diff --git a/.github/workflows/sync-with-cpython.yml b/.github/workflows/sync-with-cpython.yml index 873bd7d1..ddffe89e 100644 --- a/.github/workflows/sync-with-cpython.yml +++ b/.github/workflows/sync-with-cpython.yml @@ -21,6 +21,8 @@ concurrency: jobs: sync: runs-on: ubuntu-latest + env: + CPYTHON_TAG: ${{ github.event.inputs.cpython_tag || 'v3.14.7' }} steps: - name: Checkout translation repo uses: actions/checkout@v4 @@ -38,41 +40,12 @@ jobs: - name: Install Python dependencies run: pip install sphinx sphinx-intl - - name: Checkout CPython docs only (sparse) - run: | - git clone \ - --depth 1 \ - --filter=blob:none \ - --sparse \ - --branch ${{ github.event.inputs.cpython_tag || 'v3.14.7' }} \ - https://github.com/python/cpython.git \ - .cpython-src - cd .cpython-src - git sparse-checkout set Doc Include - - - name: Install CPython doc dependencies - run: | - python -m venv .cpython-src/Doc/venv - .cpython-src/Doc/venv/bin/pip install \ - -r .cpython-src/Doc/requirements.txt - - - name: Build .pot templates - run: | - cd .cpython-src/Doc - ./venv/bin/sphinx-build \ - -b gettext \ - . \ - ../../.pot-templates - - - name: Merge .pot into .po files - run: | - find .pot-templates -name "*.pot" | while read f; do - rel="${f#.pot-templates/}" - po="${rel%.pot}.po" - if [ -f "$po" ]; then - msgmerge --update --backup=off --no-location --no-wrap "$po" "$f" - fi - done + # Item 4: fetch/build/merge/validate now all live in one shared + # module (scripts/po_sync.py) instead of inline bash/awk here, so + # this workflow can't drift from update_python_version.py the way + # it did before (missing --no-location --no-wrap on one side). + - name: Sync msgids (fetch, build gettext, merge, validate) + run: python scripts/po_sync.py sync-only "$CPYTHON_TAG" - name: Ensure translation label exists env: @@ -87,7 +60,6 @@ jobs: - name: Open issue for fuzzy strings env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} - CPYTHON_TAG: ${{ github.event.inputs.cpython_tag || 'v3.14.7' }} run: | tmpfile=$(mktemp) while IFS= read -r f; do @@ -130,41 +102,11 @@ jobs: fi rm -f "$tmpfile" - - name: Validate .po files - run: | - tmpfile=$(mktemp) - find . -name "*.po" \ - -not -path "./.git/*" \ - -not -path "./.cpython-src/*" \ - -not -path "./.pot-templates/*" | while read f; do - msgfmt --check "$f" -o /dev/null || echo "FAIL: $f" >> "$tmpfile" - done - if [ -s "$tmpfile" ]; then - cat "$tmpfile" - rm -f "$tmpfile" - exit 1 - fi - rm -f "$tmpfile" - - - name: Clean up scratch files - run: rm -rf .cpython-src .pot-templates - - name: Stage changes run: git add --all - name: Unstage POT-Creation-Date-only changes - run: | - git diff --staged --name-only | while read f; do - if git diff --staged -U0 -- "$f" \ - | grep '^[+-]' \ - | grep -v '^[+-][+-][+-]' \ - | grep -qv 'POT-Creation-Date'; then - : # has real changes, keep staged - else - git restore --staged "$f" - git restore "$f" - fi - done + run: python scripts/unstage_cosmetic.py - name: Commit if changed run: | @@ -174,6 +116,5 @@ jobs: echo "Nothing to commit, skipping." exit 0 fi - git commit -m \ - "chore: sync msgids with CPython ${{ github.event.inputs.cpython_tag || 'v3.14.7' }}" + git commit -m "chore: sync msgids with CPython $CPYTHON_TAG" git push \ No newline at end of file diff --git a/about.po b/about.po index 561b68a3..e62834b0 100644 --- a/about.po +++ b/about.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:47+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,78 +24,32 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../about.rst:3 msgid "About this documentation" msgstr "دربارهٔ این مستندات" -#: ../../about.rst:6 -msgid "" -"Python's documentation is generated from `reStructuredText`_ sources using " -"`Sphinx`_, a documentation generator originally created for Python and now " -"maintained as an independent project." -msgstr "" -"مستندات پایتون از طریق منابع `reStructuredText`_ با استفاده از `Sphinx`_ " -"تولید می‌شوند، که یک تولیدگر مستندات است که در ابتدا برای پایتون ساخته شد و " -"اکنون به‌عنوان یک پروژه مستقل نگهداری می‌شود." +msgid "Python's documentation is generated from `reStructuredText`_ sources using `Sphinx`_, a documentation generator originally created for Python and now maintained as an independent project." +msgstr "مستندات پایتون از طریق منابع `reStructuredText`_ با استفاده از `Sphinx`_ تولید می‌شوند، که یک تولیدگر مستندات است که در ابتدا برای پایتون ساخته شد و اکنون به‌عنوان یک پروژه مستقل نگهداری می‌شود." -#: ../../about.rst:16 -msgid "" -"Development of the documentation and its toolchain is an entirely volunteer " -"effort, just like Python itself. If you want to contribute, please take a " -"look at the :ref:`reporting-bugs` page for information on how to do so. New " -"volunteers are always welcome!" -msgstr "" -"توسعهٔ مستندات و زنجیرهٔ ابزارهایش، همانند خود پایتون تلاشی کاملاً داوطلبانه " -"است. اگر می‌خواهید مشارکت کنید برای اطّلاعات در مورد چگونگی آن نگاهی به " -"صفحهٔ :ref:`reporting-bugs` بیندازید. همیشه از داوطلبان جدید استقبال می‌شود!" +msgid "Development of the documentation and its toolchain is an entirely volunteer effort, just like Python itself. If you want to contribute, please take a look at the :ref:`reporting-bugs` page for information on how to do so. New volunteers are always welcome!" +msgstr "توسعهٔ مستندات و زنجیرهٔ ابزارهایش، همانند خود پایتون تلاشی کاملاً داوطلبانه است. اگر می‌خواهید مشارکت کنید برای اطّلاعات در مورد چگونگی آن نگاهی به صفحهٔ :ref:`reporting-bugs` بیندازید. همیشه از داوطلبان جدید استقبال می‌شود!" -#: ../../about.rst:21 msgid "Many thanks go to:" msgstr "سپاس بسیار از:" -#: ../../about.rst:23 -msgid "" -"Fred L. Drake, Jr., the creator of the original Python documentation toolset " -"and author of much of the content;" -msgstr "" -"فرد ال. درک جونیور خالق مجموعه ابزارهای اصلی مستندات پایتون و نویسنده بسیاری " -"از محتواها:" +msgid "Fred L. Drake, Jr., the creator of the original Python documentation toolset and author of much of the content;" +msgstr "فرد ال. درک جونیور خالق مجموعه ابزارهای اصلی مستندات پایتون و نویسنده بسیاری از محتواها:" -#: ../../about.rst:25 -msgid "" -"the `Docutils `_ project for creating " -"reStructuredText and the Docutils suite;" -msgstr "" -"پروژه `Docutils `_ برای ایجاد " -"reStructuredText و مجموعهٔ Docutils؛" +msgid "the `Docutils `_ project for creating reStructuredText and the Docutils suite;" +msgstr "پروژه `Docutils `_ برای ایجاد reStructuredText و مجموعهٔ Docutils؛" -#: ../../about.rst:27 -msgid "" -"Fredrik Lundh for his Alternative Python Reference project from which Sphinx " -"got many good ideas." -msgstr "" -"فردریک لوند (Fredrik Lundh) برای پروژه‌ی \"Alternative Python Reference\" " -"(مرجع جایگزین پایتون) که از آن بسیاری از ایده‌های خوب برای Sphinx (اسفینکس) " -"گرفته شد." +msgid "Fredrik Lundh for his Alternative Python Reference project from which Sphinx got many good ideas." +msgstr "فردریک لوند (Fredrik Lundh) برای پروژه‌ی \"Alternative Python Reference\" (مرجع جایگزین پایتون) که از آن بسیاری از ایده‌های خوب برای Sphinx (اسفینکس) گرفته شد." -#: ../../about.rst:32 msgid "Contributors to the Python documentation" msgstr "مشارکت کنندگان مستندات پایتون" -#: ../../about.rst:34 -msgid "" -"Many people have contributed to the Python language, the Python standard " -"library, and the Python documentation. See :source:`Misc/ACKS` in the " -"Python source distribution for a partial list of contributors." -msgstr "" -"افراد زیادی در توسعه زبان پایتون، کتابخانه استاندارد پایتون، و مستندات " -"پایتون مشارکت داشته‌اند. برای مشاهده فهرستی از برخی از این مشارکت‌کنندگان، " -"به :source:`Misc/ACKS` در توزیع سورس پایتون مراجعه کنید." +msgid "Many people have contributed to the Python language, the Python standard library, and the Python documentation. See :source:`Misc/ACKS` in the Python source distribution for a partial list of contributors." +msgstr "افراد زیادی در توسعه زبان پایتون، کتابخانه استاندارد پایتون، و مستندات پایتون مشارکت داشته‌اند. برای مشاهده فهرستی از برخی از این مشارکت‌کنندگان، به :source:`Misc/ACKS` در توزیع سورس پایتون مراجعه کنید." -#: ../../about.rst:38 -msgid "" -"It is only with the input and contributions of the Python community that " -"Python has such wonderful documentation -- Thank You!" -msgstr "" -"فقط با مشارکت‌ها و کمک‌های جامعه پایتون است که پایتون چنین مستندات فوق‌العاده‌ای " -"دارد -- سپاس از شما!" +msgid "It is only with the input and contributions of the Python community that Python has such wonderful documentation -- Thank You!" +msgstr "فقط با مشارکت‌ها و کمک‌های جامعه پایتون است که پایتون چنین مستندات فوق‌العاده‌ای دارد -- سپاس از شما!" diff --git a/bugs.po b/bugs.po index 87b0e70e..8062ab76 100644 --- a/bugs.po +++ b/bugs.po @@ -16,7 +16,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2026-07-26 07:53+0330\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/)\n" @@ -27,252 +27,95 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Poedit 3.6\n" -#: ../../bugs.rst:5 msgid "Dealing with Bugs" msgstr "رفع مشکلات" -#: ../../bugs.rst:7 -msgid "" -"Python is a mature programming language which has established a reputation " -"for stability. In order to maintain this reputation, the developers would " -"like to know of any deficiencies you find in Python." -msgstr "" -"پایتون زبان برنامه نویسی بالغیست که پایداریش شهرتی به هم زده. توسعه‌دهندگانش " -"مایلند برای حفظ این شهرت از هر نقصی که در پایتون می‌یابید آگاه شوند." +msgid "Python is a mature programming language which has established a reputation for stability. In order to maintain this reputation, the developers would like to know of any deficiencies you find in Python." +msgstr "پایتون زبان برنامه نویسی بالغیست که پایداریش شهرتی به هم زده. توسعه‌دهندگانش مایلند برای حفظ این شهرت از هر نقصی که در پایتون می‌یابید آگاه شوند." -#: ../../bugs.rst:11 -msgid "" -"It can be sometimes faster to fix bugs yourself and contribute patches to " -"Python as it streamlines the process and involves fewer people. Learn how " -"to :ref:`contribute `." -msgstr "" -"گاهی حل مشکل به دست خودتان و فرستادن وصله به پایتون سریع‌تر است؛ زیرا فرایند " -"را یکسره کرده و افراد کمتری را درگیر می‌کند. آموختن چگونگی مشارکت " -"در :ref:`contribute `." +msgid "It can be sometimes faster to fix bugs yourself and contribute patches to Python as it streamlines the process and involves fewer people. Learn how to :ref:`contribute `." +msgstr "گاهی حل مشکل به دست خودتان و فرستادن وصله به پایتون سریع‌تر است؛ زیرا فرایند را یکسره کرده و افراد کمتری را درگیر می‌کند. آموختن چگونگی مشارکت در :ref:`contribute `." -#: ../../bugs.rst:16 msgid "Documentation bugs" msgstr "مشکلات مستندات" -#: ../../bugs.rst:18 -msgid "" -"If you find a bug in this documentation or would like to propose an " -"improvement, please submit a bug report on the :ref:`issue tracker `. If you have a suggestion on how to fix it, include that as " -"well." -msgstr "" -"اگر مشکلی در این مستندات یافته یا می‌خواهید بهبودی را پیشنهاد دهید، گزارش " -"مشکلی روی :ref:`issue tracker `. ثبت کنید. اگر برای حلش " -"پیشنهادی دارید، آن را هم بنویسید." +msgid "If you find a bug in this documentation or would like to propose an improvement, please submit a bug report on the :ref:`issue tracker `. If you have a suggestion on how to fix it, include that as well." +msgstr "اگر مشکلی در این مستندات یافته یا می‌خواهید بهبودی را پیشنهاد دهید، گزارش مشکلی روی :ref:`issue tracker `. ثبت کنید. اگر برای حلش پیشنهادی دارید، آن را هم بنویسید." -#: ../../bugs.rst:24 -msgid "" -"If the bug or suggested improvement concerns the translation of this " -"documentation, submit the report to the `translation’s repository " -"`_ instead." -msgstr "" -"اگر اشکال یا پیشنهاد بهبودی مربوط به ترجمهٔ این مستندات است، گزارش را به " -"`مخزن ترجمه `_ ارسال کنید." +msgid "If the bug or suggested improvement concerns the translation of this documentation, submit the report to the `translation’s repository `_ instead." +msgstr "اگر اشکال یا پیشنهاد بهبودی مربوط به ترجمهٔ این مستندات است، گزارش را به `مخزن ترجمه `_ ارسال کنید." -#: ../../bugs.rst:28 -msgid "" -"You can also open a discussion item on our `Documentation Discourse forum " -"`_." -msgstr "" -"همچنین می‌توانید گفت‌وگویی در `انجمن‌های گفتمان مستندات `_ بگشایید." +msgid "You can also open a discussion item on our `Documentation Discourse forum `_." +msgstr "همچنین می‌توانید گفت‌وگویی در `انجمن‌های گفتمان مستندات `_ بگشایید." -#: ../../bugs.rst:31 -msgid "" -"If you find a bug in the theme (HTML / CSS / JavaScript) of the " -"documentation, please submit a bug report on the `python-doc-theme issue " -"tracker `_." -msgstr "" -"اگر شما یک باگ در نحوه نمایش تم ها (اچ تی ام ال - سی اس اس - جاوا اسکریپت) " -"در مستندات پیدا کردید, لطفا یک گزارش باگ بر روی `آدرس `_ ثبت کنید." +msgid "If you find a bug in the theme (HTML / CSS / JavaScript) of the documentation, please submit a bug report on the `python-doc-theme issue tracker `_." +msgstr "اگر شما یک باگ در نحوه نمایش تم ها (اچ تی ام ال - سی اس اس - جاوا اسکریپت) در مستندات پیدا کردید, لطفا یک گزارش باگ بر روی `آدرس `_ ثبت کنید." -#: ../../bugs.rst:37 msgid "`Documentation bugs`_" msgstr "`اشکالات مستندات`_" -#: ../../bugs.rst:38 -msgid "" -"A list of documentation bugs that have been submitted to the Python issue " -"tracker." -msgstr "" -"فهرستی از باگ‌های مستندات که به پایگاه پیگیری مشکلات پایتون ارسال شده‌اند." +msgid "A list of documentation bugs that have been submitted to the Python issue tracker." +msgstr "فهرستی از باگ‌های مستندات که به پایگاه پیگیری مشکلات پایتون ارسال شده‌اند." -#: ../../bugs.rst:40 msgid "`Issue Tracking `_" msgstr "`پیگیری مشکل `_" -#: ../../bugs.rst:41 -msgid "" -"Overview of the process involved in reporting an improvement on the tracker." +msgid "Overview of the process involved in reporting an improvement on the tracker." msgstr "مروری بر فرایند ثبت پیشنهاد بهبود در پایگاه پیگیری مشکلات." -#: ../../bugs.rst:43 -msgid "" -"`Helping with Documentation `_" -msgstr "" -"`کمک به مستندسازی `_" +msgid "`Helping with Documentation `_" +msgstr "`کمک به مستندسازی `_" -#: ../../bugs.rst:44 -msgid "" -"Comprehensive guide for individuals that are interested in contributing to " -"Python documentation." -msgstr "" -"راهنمای جامع برای افرادی که علاقه‌مند به مشارکت در مستندات Python هستند." +msgid "Comprehensive guide for individuals that are interested in contributing to Python documentation." +msgstr "راهنمای جامع برای افرادی که علاقه‌مند به مشارکت در مستندات Python هستند." -#: ../../bugs.rst:46 -msgid "" -"`Documentation Translations `_" -msgstr "" -"`ترجمه های مستندات `_" +msgid "`Documentation Translations `_" +msgstr "`ترجمه های مستندات `_" -#: ../../bugs.rst:47 -msgid "" -"A list of GitHub pages for documentation translation and their primary " -"contacts." -msgstr "" -"فهرستی از صفحات GitHub مربوط به ترجمهٔ مستندات و راه‌های ارتباطی مسئولان هر یک." +msgid "A list of GitHub pages for documentation translation and their primary contacts." +msgstr "فهرستی از صفحات GitHub مربوط به ترجمهٔ مستندات و راه‌های ارتباطی مسئولان هر یک." -#: ../../bugs.rst:53 msgid "Using the Python issue tracker" msgstr "استفاده از پایگاه پیگیری مشکلات پایتون" -#: ../../bugs.rst:55 -msgid "" -"Issue reports for Python itself should be submitted via the GitHub issues " -"tracker (https://github.com/python/cpython/issues). The GitHub issues " -"tracker offers a web form which allows pertinent information to be entered " -"and submitted to the developers." -msgstr "" -"گزارش‌های خطا برای پایتون باید از طریق پایگاه پیگیری مشکلات گیت‌هاب (https://" -"github.com/python/cpython/issues) ارسال شوند. پایگاه پیگیری مشکلات گیت‌هاب یک " -"فرم وب ارائه می‌دهد که امکان وارد کردن اطلاعات مرتبط و ارسال آن به " -"توسعه‌دهندگان را فراهم می‌کند." +msgid "Issue reports for Python itself should be submitted via the GitHub issues tracker (https://github.com/python/cpython/issues). The GitHub issues tracker offers a web form which allows pertinent information to be entered and submitted to the developers." +msgstr "گزارش‌های خطا برای پایتون باید از طریق پایگاه پیگیری مشکلات گیت‌هاب (https://github.com/python/cpython/issues) ارسال شوند. پایگاه پیگیری مشکلات گیت‌هاب یک فرم وب ارائه می‌دهد که امکان وارد کردن اطلاعات مرتبط و ارسال آن به توسعه‌دهندگان را فراهم می‌کند." -#: ../../bugs.rst:60 -msgid "" -"The first step in filing a report is to determine whether the problem has " -"already been reported. The advantage in doing so, aside from saving the " -"developers' time, is that you learn what has been done to fix it; it may be " -"that the problem has already been fixed for the next release, or additional " -"information is needed (in which case you are welcome to provide it if you " -"can!). To do this, search the tracker using the search box at the top of the " -"page." -msgstr "" -"اولین گام در ارائه یک گزارش این است که مشخص کنید آیا مشکل قبلاً گزارش شده است " -"یا خیر. مزیت انجام این کار، علاوه بر صرفه جویی در وقت توسعه دهندگان، این است " -"که می‌توانید بفهمید چه اقداماتی برای رفع آن انجام شده است؛ ممکن است مشکل برای " -"نسخه بعدی قبلاً رفع شده باشد، یا اطلاعات بیشتری مورد نیاز باشد (در این صورت، " -"اگر می‌توانید، خوشحال می‌شویم آن را ارائه دهید!). برای انجام این کار، در نوار " -"جست‌وجو بالای صفحه \"tracker\" را جست‌وجو کنید." +msgid "The first step in filing a report is to determine whether the problem has already been reported. The advantage in doing so, aside from saving the developers' time, is that you learn what has been done to fix it; it may be that the problem has already been fixed for the next release, or additional information is needed (in which case you are welcome to provide it if you can!). To do this, search the tracker using the search box at the top of the page." +msgstr "اولین گام در ارائه یک گزارش این است که مشخص کنید آیا مشکل قبلاً گزارش شده است یا خیر. مزیت انجام این کار، علاوه بر صرفه جویی در وقت توسعه دهندگان، این است که می‌توانید بفهمید چه اقداماتی برای رفع آن انجام شده است؛ ممکن است مشکل برای نسخه بعدی قبلاً رفع شده باشد، یا اطلاعات بیشتری مورد نیاز باشد (در این صورت، اگر می‌توانید، خوشحال می‌شویم آن را ارائه دهید!). برای انجام این کار، در نوار جست‌وجو بالای صفحه \"tracker\" را جست‌وجو کنید." -#: ../../bugs.rst:67 -msgid "" -"If the problem you're reporting is not already in the list, log in to " -"GitHub. If you don't already have a GitHub account, create a new account " -"using the \"Sign up\" link. It is not possible to submit a bug report " -"anonymously." -msgstr "" -"اگر مشکلی که گزارش می‌دهید در فهرست موجود نباشد، وارد GitHub شوید. اگر قبلاً " -"حساب GitHub ندارید، با استفاده از لینک \"Sign up\" یک حساب جدید ایجاد کنید. " -"ارسال گزارش باگ به صورت ناشناس امکان پذیر نیست." +msgid "If the problem you're reporting is not already in the list, log in to GitHub. If you don't already have a GitHub account, create a new account using the \"Sign up\" link. It is not possible to submit a bug report anonymously." +msgstr "اگر مشکلی که گزارش می‌دهید در فهرست موجود نباشد، وارد GitHub شوید. اگر قبلاً حساب GitHub ندارید، با استفاده از لینک \"Sign up\" یک حساب جدید ایجاد کنید. ارسال گزارش باگ به صورت ناشناس امکان پذیر نیست." -#: ../../bugs.rst:72 -msgid "" -"Being now logged in, you can submit an issue. Click on the \"New issue\" " -"button in the top bar to report a new issue." -msgstr "" -"اکنون که وارد سیستم شده اید، می توانید یک مشکل ثبت کنید. برای گزارش یک مشکل " -"جدید، روی دکمه \"New issue\" در نوار بالا کلیک کنید." +msgid "Being now logged in, you can submit an issue. Click on the \"New issue\" button in the top bar to report a new issue." +msgstr "اکنون که وارد سیستم شده اید، می توانید یک مشکل ثبت کنید. برای گزارش یک مشکل جدید، روی دکمه \"New issue\" در نوار بالا کلیک کنید." -#: ../../bugs.rst:75 msgid "The submission form has two fields, \"Title\" and \"Comment\"." msgstr "فرم ارسال شامل دو فیلد است، \"Title\" و \"Comment\"." -#: ../../bugs.rst:77 -msgid "" -"For the \"Title\" field, enter a *very* short description of the problem; " -"fewer than ten words is good." -msgstr "" -"برای بخش \"Title\", یک توضیح کوتاه از مشکل وارد کنید؛ کمتر از ده کلمه مناسب " -"است." +msgid "For the \"Title\" field, enter a *very* short description of the problem; fewer than ten words is good." +msgstr "برای بخش \"Title\", یک توضیح کوتاه از مشکل وارد کنید؛ کمتر از ده کلمه مناسب است." -#: ../../bugs.rst:80 -msgid "" -"In the \"Comment\" field, describe the problem in detail, including what you " -"expected to happen and what did happen. Be sure to include whether any " -"extension modules were involved, and what hardware and software platform you " -"were using (including version information as appropriate)." -msgstr "" -"در قسمت \"Comment\", مشکل را با جزئیات بیان کنید، از جمله اینکه انتظار " -"داشتید چه اتفاقی بیفتد و چه چیزی واقعاً اتفاق افتاد. حتماً اشاره کنید که آیا " -"ماژول‌های افزونه‌ای درگیر بودند یا خیر و از چه سخت افزار و پلتفرم نرم‌‌افزاری " -"استفاده می‌کردید (شامل اطلاعات نسخه در صورت لزوم)." +msgid "In the \"Comment\" field, describe the problem in detail, including what you expected to happen and what did happen. Be sure to include whether any extension modules were involved, and what hardware and software platform you were using (including version information as appropriate)." +msgstr "در قسمت \"Comment\", مشکل را با جزئیات بیان کنید، از جمله اینکه انتظار داشتید چه اتفاقی بیفتد و چه چیزی واقعاً اتفاق افتاد. حتماً اشاره کنید که آیا ماژول‌های افزونه‌ای درگیر بودند یا خیر و از چه سخت افزار و پلتفرم نرم‌‌افزاری استفاده می‌کردید (شامل اطلاعات نسخه در صورت لزوم)." -#: ../../bugs.rst:85 -msgid "" -"Each issue report will be reviewed by a developer who will determine what " -"needs to be done to correct the problem. You will receive an update each " -"time an action is taken on the issue." -msgstr "" -"هر گزارش خطا توسط یک توسعه‌دهنده بررسی خواهد شد که تصمیم می‌گیرد چه اقداماتی " -"برای رفع مشکل نیاز است. هر بار که اقدامی روی گزارش انجام شود، به شما " -"اطلاع‌رسانی خواهد شد." +msgid "Each issue report will be reviewed by a developer who will determine what needs to be done to correct the problem. You will receive an update each time an action is taken on the issue." +msgstr "هر گزارش خطا توسط یک توسعه‌دهنده بررسی خواهد شد که تصمیم می‌گیرد چه اقداماتی برای رفع مشکل نیاز است. هر بار که اقدامی روی گزارش انجام شود، به شما اطلاع‌رسانی خواهد شد." -#: ../../bugs.rst:92 -msgid "" -"`How to Report Bugs Effectively `_" -msgstr "" -"`نحوه گزارش اشکالات به طور موثر `_" +msgid "`How to Report Bugs Effectively `_" +msgstr "`نحوه گزارش اشکالات به طور موثر `_" -#: ../../bugs.rst:93 -msgid "" -"Article which goes into some detail about how to create a useful bug report. " -"This describes what kind of information is useful and why it is useful." -msgstr "" -"مقاله‌ای که به‌طور مفصل به چگونگی ایجاد یک گزارش باگ مفید می‌پردازد. این مقاله " -"بیان می‌کند که چه نوع اطلاعاتی مفید هستند و چرا این اطلاعات مفید می‌باشند." +msgid "Article which goes into some detail about how to create a useful bug report. This describes what kind of information is useful and why it is useful." +msgstr "مقاله‌ای که به‌طور مفصل به چگونگی ایجاد یک گزارش باگ مفید می‌پردازد. این مقاله بیان می‌کند که چه نوع اطلاعاتی مفید هستند و چرا این اطلاعات مفید می‌باشند." -#: ../../bugs.rst:96 -msgid "" -"`Bug Writing Guidelines `_" -msgstr "" -"`راهنمای نوشتن گزارش خطا `_" +msgid "`Bug Writing Guidelines `_" +msgstr "`راهنمای نوشتن گزارش خطا `_" -#: ../../bugs.rst:97 -msgid "" -"Information about writing a good bug report. Some of this is specific to " -"the Mozilla project, but describes general good practices." -msgstr "" -"اطلاعاتی دربارهٔ نحوهٔ نگارش یک گزارش خطای خوب. بخشی از این اطلاعات به پروژهٔ " -"موزیلا اختصاص دارد، اما اصول کلی و خوبِ گزارش‌دهی را نیز توضیح می‌دهد." +msgid "Information about writing a good bug report. Some of this is specific to the Mozilla project, but describes general good practices." +msgstr "اطلاعاتی دربارهٔ نحوهٔ نگارش یک گزارش خطای خوب. بخشی از این اطلاعات به پروژهٔ موزیلا اختصاص دارد، اما اصول کلی و خوبِ گزارش‌دهی را نیز توضیح می‌دهد." -#: ../../bugs.rst:103 msgid "Getting started contributing to Python yourself" msgstr "شروع مشارکت در توسعهٔ پایتون" -#: ../../bugs.rst:105 -msgid "" -"Beyond just reporting bugs that you find, you are also welcome to submit " -"patches to fix them. You can find more information on how to get started " -"patching Python in the `Python Developer's Guide`_. If you have questions, " -"the `core-mentorship mailing list`_ is a friendly place to get answers to " -"any and all questions pertaining to the process of fixing issues in Python." -msgstr "" -"علاوه بر گزارش اشکالاتی که پیدا می‌کنید، می توانید وصله‌هایی برای رفع آن ها " -"ارسال کنید. می‌توانید اطلاعات بیشتری درباره‌ی نحوه‌ی شروع به وصله زدن Python را " -"در \"`Python Developer's Guide`_\" پیدا کنید. اگر سوالی دارید، \"`core-" -"mentorship mailing list`_\" جای دوستانه‌ای برای دریافت پاسخ به هر سوال مربوط " -"به فرآیند رفع اشکالات در Python است." +msgid "Beyond just reporting bugs that you find, you are also welcome to submit patches to fix them. You can find more information on how to get started patching Python in the `Python Developer's Guide`_. If you have questions, the `core-mentorship mailing list`_ is a friendly place to get answers to any and all questions pertaining to the process of fixing issues in Python." +msgstr "علاوه بر گزارش اشکالاتی که پیدا می‌کنید، می توانید وصله‌هایی برای رفع آن ها ارسال کنید. می‌توانید اطلاعات بیشتری درباره‌ی نحوه‌ی شروع به وصله زدن Python را در \"`Python Developer's Guide`_\" پیدا کنید. اگر سوالی دارید، \"`core-mentorship mailing list`_\" جای دوستانه‌ای برای دریافت پاسخ به هر سوال مربوط به فرآیند رفع اشکالات در Python است." diff --git a/c-api/abstract.po b/c-api/abstract.po index 8a446068..94ff5477 100644 --- a/c-api/abstract.po +++ b/c-api/abstract.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:47+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,30 +24,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../c-api/abstract.rst:7 msgid "Abstract Objects Layer" msgstr "لایه اشیاء انتزاعی (Abstract Objects Layer)" -#: ../../c-api/abstract.rst:9 -msgid "" -"The functions in this chapter interact with Python objects regardless of " -"their type, or with wide classes of object types (e.g. all numerical types, " -"or all sequence types). When used on object types for which they do not " -"apply, they will raise a Python exception." -msgstr "" -"توابع در این فصل با انواع اشیاء صرف نظر از نوع آنها یا با کلاس‌های گسترده‌ای " -"از انواع اشیاء ( برای مثال همه‌ی اعداد یا همه‌ی انواع توالی) تعامل دارند. اگر " -"این توابع بر روی نوعی از اشیاء استفاده شوند که برای آن‌ها تعریف نشده‌اند، یک " -"استثنا در پایتون پرتاب خواهند کرد." +msgid "The functions in this chapter interact with Python objects regardless of their type, or with wide classes of object types (e.g. all numerical types, or all sequence types). When used on object types for which they do not apply, they will raise a Python exception." +msgstr "توابع در این فصل با انواع اشیاء صرف نظر از نوع آنها یا با کلاس‌های گسترده‌ای از انواع اشیاء ( برای مثال همه‌ی اعداد یا همه‌ی انواع توالی) تعامل دارند. اگر این توابع بر روی نوعی از اشیاء استفاده شوند که برای آن‌ها تعریف نشده‌اند، یک استثنا در پایتون پرتاب خواهند کرد." -#: ../../c-api/abstract.rst:14 -msgid "" -"It is not possible to use these functions on objects that are not properly " -"initialized, such as a list object that has been created " -"by :c:func:`PyList_New`, but whose items have not been set to some non-\\ " -"``NULL`` value yet." -msgstr "" -"امکان استفاده از این توابع بر روی اشیایی که به‌درستی مقداردهی اولیه نشده‌اند " -"وجود ندارد؛ برای مثال، یک فهرست از اشیاء که با استفاده " -"از :c:func:`PyList_New` ایجاد شده اما مقادیر آیتم‌های آن هنوز به مقداری غیر " -"از ``NULL`` داده نشده است." +msgid "It is not possible to use these functions on objects that are not properly initialized, such as a list object that has been created by :c:func:`PyList_New`, but whose items have not been set to some non-\\ ``NULL`` value yet." +msgstr "امکان استفاده از این توابع بر روی اشیایی که به‌درستی مقداردهی اولیه نشده‌اند وجود ندارد؛ برای مثال، یک فهرست از اشیاء که با استفاده از :c:func:`PyList_New` ایجاد شده اما مقادیر آیتم‌های آن هنوز به مقداری غیر از ``NULL`` داده نشده است." diff --git a/c-api/allocation.po b/c-api/allocation.po index e1d4ab06..753da732 100644 --- a/c-api/allocation.po +++ b/c-api/allocation.po @@ -20,7 +20,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2026-07-25 14:55+0330\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/)\n" @@ -31,283 +31,124 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Poedit 3.6\n" -#: ../../c-api/allocation.rst:6 msgid "Allocating objects on the heap" msgstr "تخصیص اشیاء روی پشته" -#: ../../c-api/allocation.rst:17 -msgid "" -"Initialize a newly allocated object *op* with its type and initial " -"reference. Returns the initialized object. Other fields of the object are " -"not initialized. Despite its name, this function is unrelated to the " -"object's :meth:`~object.__init__` method (:c:member:`~PyTypeObject.tp_init` " -"slot). Specifically, this function does **not** call the object's :meth:`!" -"__init__` method." -msgstr "" -"یک شیء *op* که به‌تازگی تخصیص داده شده را با نوع و مرجع اولیه‌اش مقداردهی " -"اولیه می‌کند. شیء مقداردهی‌شده را برمی‌گرداند. سایر فیلدهای شیء مقداردهی اولیه " -"نمی‌شوند. با وجود نام این تابع، آن به متد :meth:`~object.__init__` شیء " -"(درگاه :c:member:`~PyTypeObject.tp_init`) مربوط نیست. به‌طور خاص، این تابع " -"متد :meth:`!__init__` شیء را **فراخوانی نمی‌کند**." +msgid "Initialize a newly allocated object *op* with its type and initial reference. Returns the initialized object. Other fields of the object are not initialized. Despite its name, this function is unrelated to the object's :meth:`~object.__init__` method (:c:member:`~PyTypeObject.tp_init` slot). Specifically, this function does **not** call the object's :meth:`!__init__` method." +msgstr "یک شیء *op* که به‌تازگی تخصیص داده شده را با نوع و مرجع اولیه‌اش مقداردهی اولیه می‌کند. شیء مقداردهی‌شده را برمی‌گرداند. سایر فیلدهای شیء مقداردهی اولیه نمی‌شوند. با وجود نام این تابع، آن به متد :meth:`~object.__init__` شیء (درگاه :c:member:`~PyTypeObject.tp_init`) مربوط نیست. به‌طور خاص، این تابع متد :meth:`!__init__` شیء را **فراخوانی نمی‌کند**." -#: ../../c-api/allocation.rst:24 -msgid "" -"In general, consider this function to be a low-level routine. " -"Use :c:member:`~PyTypeObject.tp_alloc` where possible. For " -"implementing :c:member:`!tp_alloc` for your type, " -"prefer :c:func:`PyType_GenericAlloc` or :c:func:`PyObject_New`." -msgstr "" -"در کل، این تابع را یک روتین سطح پایین در نظر بگیرید. تا جایی که ممکن است " -"از :c:member:`~PyTypeObject.tp_alloc` استفاده کنید. برای " -"پیاده‌سازی :c:member:`!tp_alloc` برای نوع خود، " -"از :c:func:`PyType_GenericAlloc` یا :c:func:`PyObject_New` استفاده کنید." +msgid "In general, consider this function to be a low-level routine. Use :c:member:`~PyTypeObject.tp_alloc` where possible. For implementing :c:member:`!tp_alloc` for your type, prefer :c:func:`PyType_GenericAlloc` or :c:func:`PyObject_New`." +msgstr "در کل، این تابع را یک روتین سطح پایین در نظر بگیرید. تا جایی که ممکن است از :c:member:`~PyTypeObject.tp_alloc` استفاده کنید. برای پیاده‌سازی :c:member:`!tp_alloc` برای نوع خود، از :c:func:`PyType_GenericAlloc` یا :c:func:`PyObject_New` استفاده کنید." -#: ../../c-api/allocation.rst:31 -msgid "" -"This function only initializes the object's memory corresponding to the " -"initial :c:type:`PyObject` structure. It does not zero the rest." -msgstr "" -"این تابع فقط حافظه‌ی شیء را که مربوط به ساختار ابتدایی :c:type:`PyObject` " -"است، مقداردهی اولیه می‌کند. بقیه‌ی حافظه را صفر نمی‌کند." +msgid "This function only initializes the object's memory corresponding to the initial :c:type:`PyObject` structure. It does not zero the rest." +msgstr "این تابع فقط حافظه‌ی شیء را که مربوط به ساختار ابتدایی :c:type:`PyObject` است، مقداردهی اولیه می‌کند. بقیه‌ی حافظه را صفر نمی‌کند." -#: ../../c-api/allocation.rst:37 -msgid "" -"This does everything :c:func:`PyObject_Init` does, and also initializes the " -"length information for a variable-size object." -msgstr "" -"این تابع همهٔ کارهایی را انجام می‌دهد که :c:func:`PyObject_Init` انجام می‌دهد، " -"و همچنین اطلاعات مربوط به طول را برای یک شیء با اندازهٔ متغیر مقداردهی می‌کند." +msgid "This does everything :c:func:`PyObject_Init` does, and also initializes the length information for a variable-size object." +msgstr "این تابع همهٔ کارهایی را انجام می‌دهد که :c:func:`PyObject_Init` انجام می‌دهد، و همچنین اطلاعات مربوط به طول را برای یک شیء با اندازهٔ متغیر مقداردهی می‌کند." -#: ../../c-api/allocation.rst:42 -msgid "" -"This function only initializes some of the object's memory. It does not " -"zero the rest." -msgstr "" -"این تابع فقط بخشی از حافظه‌ی شیء را مقداردهی اولیه می‌کند. بقیه‌ی حافظه را صفر " -"نمی‌کند." +msgid "This function only initializes some of the object's memory. It does not zero the rest." +msgstr "این تابع فقط بخشی از حافظه‌ی شیء را مقداردهی اولیه می‌کند. بقیه‌ی حافظه را صفر نمی‌کند." -#: ../../c-api/allocation.rst:48 -msgid "" -"Allocates a new Python object using the C structure type *TYPE* and the " -"Python type object *typeobj* (``PyTypeObject*``) by " -"calling :c:func:`PyObject_Malloc` to allocate memory and initializing it " -"like :c:func:`PyObject_Init`. The caller will own the only reference to the " -"object (i.e. its reference count will be one)." -msgstr "" -"یک شیء پایتونی جدید با استفاده از نوع ساختار C یعنی *TYPE* و شیء نوع پایتون " -"یعنی *typeobj* (``PyTypeObject*``) با فراخوانی :c:func:`PyObject_Malloc` " -"برای تخصیص حافظه و مقداردهی اولیه‌ی آن مانند :c:func:`PyObject_Init` تخصیص " -"می‌دهد. فراخوان‌نده، تنها مرجع به شیء را در اختیار خواهد داشت (یعنی شمارنده‌ی " -"ارجاع آن یک خواهد بود)." +msgid "Allocates a new Python object using the C structure type *TYPE* and the Python type object *typeobj* (``PyTypeObject*``) by calling :c:func:`PyObject_Malloc` to allocate memory and initializing it like :c:func:`PyObject_Init`. The caller will own the only reference to the object (i.e. its reference count will be one)." +msgstr "یک شیء پایتونی جدید با استفاده از نوع ساختار C یعنی *TYPE* و شیء نوع پایتون یعنی *typeobj* (``PyTypeObject*``) با فراخوانی :c:func:`PyObject_Malloc` برای تخصیص حافظه و مقداردهی اولیه‌ی آن مانند :c:func:`PyObject_Init` تخصیص می‌دهد. فراخوان‌نده، تنها مرجع به شیء را در اختیار خواهد داشت (یعنی شمارنده‌ی ارجاع آن یک خواهد بود)." -#: ../../c-api/allocation.rst:54 ../../c-api/allocation.rst:107 -msgid "" -"Avoid calling this directly to allocate memory for an object; call the " -"type's :c:member:`~PyTypeObject.tp_alloc` slot instead." -msgstr "" -"از فراخوانی مستقیم این تابع برای تخصیص حافظه به یک شیء خودداری کنید؛ به جای " -"آن، درگاه :c:member:`~PyTypeObject.tp_alloc` تایپ را فراخوانی کنید." +msgid "Avoid calling this directly to allocate memory for an object; call the type's :c:member:`~PyTypeObject.tp_alloc` slot instead." +msgstr "از فراخوانی مستقیم این تابع برای تخصیص حافظه به یک شیء خودداری کنید؛ به جای آن، درگاه :c:member:`~PyTypeObject.tp_alloc` تایپ را فراخوانی کنید." -#: ../../c-api/allocation.rst:57 ../../c-api/allocation.rst:110 -msgid "" -"When populating a type's :c:member:`~PyTypeObject.tp_alloc` " -"slot, :c:func:`PyType_GenericAlloc` is preferred over a custom function that " -"simply calls this macro." -msgstr "" -"هنگام پر کردن درگاه :c:member:`~PyTypeObject.tp_alloc` یک " -"تایپ، :c:func:`PyType_GenericAlloc` بر یک تابع سفارشی که صرفاً این ماکرو را " -"فراخوانی می‌کند، ترجیح داده می‌شود." +msgid "When populating a type's :c:member:`~PyTypeObject.tp_alloc` slot, :c:func:`PyType_GenericAlloc` is preferred over a custom function that simply calls this macro." +msgstr "هنگام پر کردن درگاه :c:member:`~PyTypeObject.tp_alloc` یک تایپ، :c:func:`PyType_GenericAlloc` بر یک تابع سفارشی که صرفاً این ماکرو را فراخوانی می‌کند، ترجیح داده می‌شود." -#: ../../c-api/allocation.rst:61 -msgid "" -"This macro does not " -"call :c:member:`~PyTypeObject.tp_alloc`, :c:member:`~PyTypeObject.tp_new` " -"(:meth:`~object.__new__`), or :c:member:`~PyTypeObject.tp_init` " -"(:meth:`~object.__init__`)." -msgstr "" -"این " -"ماکرو :c:member:`~PyTypeObject.tp_alloc`، :c:member:`~PyTypeObject.tp_new` " -"(:meth:`~object.__new__`) یا :c:member:`~PyTypeObject.tp_init` " -"(:meth:`~object.__init__`) را فراخوانی نمی‌کند." +msgid "This macro does not call :c:member:`~PyTypeObject.tp_alloc`, :c:member:`~PyTypeObject.tp_new` (:meth:`~object.__new__`), or :c:member:`~PyTypeObject.tp_init` (:meth:`~object.__init__`)." +msgstr "این ماکرو :c:member:`~PyTypeObject.tp_alloc`، :c:member:`~PyTypeObject.tp_new` (:meth:`~object.__new__`) یا :c:member:`~PyTypeObject.tp_init` (:meth:`~object.__init__`) را فراخوانی نمی‌کند." -#: ../../c-api/allocation.rst:65 -msgid "" -"This cannot be used for objects with :c:macro:`Py_TPFLAGS_HAVE_GC` set " -"in :c:member:`~PyTypeObject.tp_flags`; use :c:macro:`PyObject_GC_New` " -"instead." -msgstr "" -"این را نمی‌توان برای اشیایی که :c:macro:`Py_TPFLAGS_HAVE_GC` " -"در :c:member:`~PyTypeObject.tp_flags` آنها تنظیم شده است، استفاده کرد؛ به " -"جای آن از :c:macro:`PyObject_GC_New` استفاده کنید." +msgid "This cannot be used for objects with :c:macro:`Py_TPFLAGS_HAVE_GC` set in :c:member:`~PyTypeObject.tp_flags`; use :c:macro:`PyObject_GC_New` instead." +msgstr "این را نمی‌توان برای اشیایی که :c:macro:`Py_TPFLAGS_HAVE_GC` در :c:member:`~PyTypeObject.tp_flags` آنها تنظیم شده است، استفاده کرد؛ به جای آن از :c:macro:`PyObject_GC_New` استفاده کنید." -#: ../../c-api/allocation.rst:68 -msgid "" -"Memory allocated by this macro must be freed with :c:func:`PyObject_Free` " -"(usually called via the object's :c:member:`~PyTypeObject.tp_free` slot)." -msgstr "" -"حافظه‌ای که توسط این ماکرو تخصیص داده می‌شود، باید با :c:func:`PyObject_Free` " -"آزاد شود (معمولاً از طریق درگاه :c:member:`~PyTypeObject.tp_free` شیء " -"فراخوانی می‌شود)." +msgid "Memory allocated by this macro must be freed with :c:func:`PyObject_Free` (usually called via the object's :c:member:`~PyTypeObject.tp_free` slot)." +msgstr "حافظه‌ای که توسط این ماکرو تخصیص داده می‌شود، باید با :c:func:`PyObject_Free` آزاد شود (معمولاً از طریق درگاه :c:member:`~PyTypeObject.tp_free` شیء فراخوانی می‌شود)." -#: ../../c-api/allocation.rst:73 ../../c-api/allocation.rst:123 -msgid "" -"The returned memory is not guaranteed to have been completely zeroed before " -"it was initialized." -msgstr "" -"حافظه‌ی برگشتی تضمین نمی‌شود که به‌طور کامل صفر شده باشد قبل از این‌که مقداردهی " -"اولیه شود." +msgid "The returned memory is not guaranteed to have been completely zeroed before it was initialized." +msgstr "حافظه‌ی برگشتی تضمین نمی‌شود که به‌طور کامل صفر شده باشد قبل از این‌که مقداردهی اولیه شود." -#: ../../c-api/allocation.rst:78 ../../c-api/allocation.rst:128 -msgid "" -"This macro does not construct a fully initialized object of the given type; " -"it merely allocates memory and prepares it for further initialization " -"by :c:member:`~PyTypeObject.tp_init`. To construct a fully initialized " -"object, call *typeobj* instead. For example::" -msgstr "" -"این ماکرو یک شیء کاملاً مقداردهی‌شده از نوع داده‌شده را نمی‌سازد؛ بلکه صرفاً " -"حافظه تخصیص می‌دهد و آن را برای مقداردهی اولیه‌ی بیشتر " -"توسط :c:member:`~PyTypeObject.tp_init` آماده می‌کند. برای ساختن یک شیء کاملاً " -"مقداردهی‌شده، به جای آن *typeobj* را فراخوانی کنید. برای مثال::" +msgid "This macro does not construct a fully initialized object of the given type; it merely allocates memory and prepares it for further initialization by :c:member:`~PyTypeObject.tp_init`. To construct a fully initialized object, call *typeobj* instead. For example::" +msgstr "این ماکرو یک شیء کاملاً مقداردهی‌شده از نوع داده‌شده را نمی‌سازد؛ بلکه صرفاً حافظه تخصیص می‌دهد و آن را برای مقداردهی اولیه‌ی بیشتر توسط :c:member:`~PyTypeObject.tp_init` آماده می‌کند. برای ساختن یک شیء کاملاً مقداردهی‌شده، به جای آن *typeobj* را فراخوانی کنید. برای مثال::" -#: ../../c-api/allocation.rst:83 msgid "PyObject *foo = PyObject_CallNoArgs((PyObject *)&PyFoo_Type);" msgstr "PyObject *foo = PyObject_CallNoArgs((PyObject *)&PyFoo_Type);" -#: ../../c-api/allocation.rst:87 ../../c-api/allocation.rst:137 -#: ../../c-api/allocation.rst:184 ../../c-api/allocation.rst:186 -#: ../../c-api/allocation.rst:188 msgid ":c:func:`PyObject_Free`" msgstr ":c:func:`PyObject_Free`" -#: ../../c-api/allocation.rst:88 msgid ":c:macro:`PyObject_GC_New`" msgstr ":c:macro:`PyObject_GC_New`" -#: ../../c-api/allocation.rst:89 ../../c-api/allocation.rst:139 msgid ":c:func:`PyType_GenericAlloc`" msgstr ":c:func:`PyType_GenericAlloc`" -#: ../../c-api/allocation.rst:90 ../../c-api/allocation.rst:140 msgid ":c:member:`~PyTypeObject.tp_alloc`" msgstr ":c:member:`~PyTypeObject.tp_alloc`" -#: ../../c-api/allocation.rst:95 msgid "Like :c:macro:`PyObject_New` except:" msgstr "مثل :c:macro:`PyObject_New` جز:" -#: ../../c-api/allocation.rst:97 -msgid "" -"It allocates enough memory for the *TYPE* structure plus *size* " -"(``Py_ssize_t``) fields of the size given by " -"the :c:member:`~PyTypeObject.tp_itemsize` field of *typeobj*." -msgstr "" -"این (ماکرو) به اندازه‌ی کافی برای ساختار *TYPE* به اضافه‌ی *size* " -"(``Py_ssize_t``) فیلد به اندازه‌ای که توسط " -"فیلد :c:member:`~PyTypeObject.tp_itemsize` از *typeobj* مشخص شده، حافظه " -"تخصیص می‌دهد." +msgid "It allocates enough memory for the *TYPE* structure plus *size* (``Py_ssize_t``) fields of the size given by the :c:member:`~PyTypeObject.tp_itemsize` field of *typeobj*." +msgstr "این (ماکرو) به اندازه‌ی کافی برای ساختار *TYPE* به اضافه‌ی *size* (``Py_ssize_t``) فیلد به اندازه‌ای که توسط فیلد :c:member:`~PyTypeObject.tp_itemsize` از *typeobj* مشخص شده، حافظه تخصیص می‌دهد." -#: ../../c-api/allocation.rst:100 msgid "The memory is initialized like :c:func:`PyObject_InitVar`." msgstr "حافظه، مانند :c:func:`PyObject_InitVar` مقداردهی اولیه می‌شود." -#: ../../c-api/allocation.rst:102 -msgid "" -"This is useful for implementing objects like tuples, which are able to " -"determine their size at construction time. Embedding the array of fields " -"into the same allocation decreases the number of allocations, improving the " -"memory management efficiency." -msgstr "" -"این (روش) برای پیاده‌سازی اشیایی مثل تاپل‌ها مفید است، که می‌توانند اندازه‌ی خود " -"را در زمان ساخت تعیین کنند. جاسازی آرایه‌ی فیلدها در همان تخصیص، تعداد " -"تخصیص‌ها را کاهش می‌دهد و بازدهی مدیریت حافظه را بهبود می‌بخشد." +msgid "This is useful for implementing objects like tuples, which are able to determine their size at construction time. Embedding the array of fields into the same allocation decreases the number of allocations, improving the memory management efficiency." +msgstr "این (روش) برای پیاده‌سازی اشیایی مثل تاپل‌ها مفید است، که می‌توانند اندازه‌ی خود را در زمان ساخت تعیین کنند. جاسازی آرایه‌ی فیلدها در همان تخصیص، تعداد تخصیص‌ها را کاهش می‌دهد و بازدهی مدیریت حافظه را بهبود می‌بخشد." -#: ../../c-api/allocation.rst:114 -msgid "" -"This cannot be used for objects with :c:macro:`Py_TPFLAGS_HAVE_GC` set " -"in :c:member:`~PyTypeObject.tp_flags`; use :c:macro:`PyObject_GC_NewVar` " -"instead." -msgstr "" -"این را نمی‌توان برای اشیایی که :c:macro:`Py_TPFLAGS_HAVE_GC` " -"در :c:member:`~PyTypeObject.tp_flags` آنها تنظیم شده است، استفاده کرد؛ به " -"جای آن از :c:macro:`PyObject_GC_NewVar` استفاده کنید." +msgid "This cannot be used for objects with :c:macro:`Py_TPFLAGS_HAVE_GC` set in :c:member:`~PyTypeObject.tp_flags`; use :c:macro:`PyObject_GC_NewVar` instead." +msgstr "این را نمی‌توان برای اشیایی که :c:macro:`Py_TPFLAGS_HAVE_GC` در :c:member:`~PyTypeObject.tp_flags` آنها تنظیم شده است، استفاده کرد؛ به جای آن از :c:macro:`PyObject_GC_NewVar` استفاده کنید." -#: ../../c-api/allocation.rst:118 -msgid "" -"Memory allocated by this function must be freed with :c:func:`PyObject_Free` " -"(usually called via the object's :c:member:`~PyTypeObject.tp_free` slot)." -msgstr "" -"حافظه‌ای که توسط این تابع تخصیص داده می‌شود، باید با :c:func:`PyObject_Free` " -"آزاد شود (معمولاً از طریق درگاه :c:member:`~PyTypeObject.tp_free` شیء " -"فراخوانی می‌شود)." +msgid "Memory allocated by this function must be freed with :c:func:`PyObject_Free` (usually called via the object's :c:member:`~PyTypeObject.tp_free` slot)." +msgstr "حافظه‌ای که توسط این تابع تخصیص داده می‌شود، باید با :c:func:`PyObject_Free` آزاد شود (معمولاً از طریق درگاه :c:member:`~PyTypeObject.tp_free` شیء فراخوانی می‌شود)." -#: ../../c-api/allocation.rst:133 -msgid "" -"PyObject *list_instance = PyObject_CallNoArgs((PyObject *)&PyList_Type);" -msgstr "" -"PyObject *list_instance = PyObject_CallNoArgs((PyObject *)&PyList_Type);" +msgid "PyObject *list_instance = PyObject_CallNoArgs((PyObject *)&PyList_Type);" +msgstr "PyObject *list_instance = PyObject_CallNoArgs((PyObject *)&PyList_Type);" -#: ../../c-api/allocation.rst:138 msgid ":c:macro:`PyObject_GC_NewVar`" msgstr ":c:macro:`PyObject_GC_NewVar`" -#: ../../c-api/allocation.rst:145 -msgid "" -"Object which is visible in Python as ``None``. This should only be accessed " -"using the :c:macro:`Py_None` macro, which evaluates to a pointer to this " -"object." +msgid "Object which is visible in Python as ``None``. This should only be accessed using the :c:macro:`Py_None` macro, which evaluates to a pointer to this object." msgstr "" "شیء‌ای که در پایتون به صورت ``None`` قابل مشاهده است\n" -"این فقط باید با استفاده از ماکرو :c:macro:`Py_None`، که به یک اشاره‌گر به این " -"شیء ارزیابی می‌شود، دسترسی پذیر باشد." +"این فقط باید با استفاده از ماکرو :c:macro:`Py_None`، که به یک اشاره‌گر به این شیء ارزیابی می‌شود، دسترسی پذیر باشد." -#: ../../c-api/allocation.rst:152 msgid ":ref:`moduleobjects`" msgstr ":ref:`moduleobjects`" -#: ../../c-api/allocation.rst:153 msgid "To allocate and create extension modules." msgstr "برای تخصیص و ایجاد ماژول‌های افزونه." -#: ../../c-api/allocation.rst:157 msgid "Soft-deprecated aliases" msgstr "نامهای مستعار با منسوخ‌سازی نرم" -#: ../../c-api/allocation.rst:161 -msgid "" -"These are aliases to existing functions and macros. They exist solely for " -"backwards compatibility." -msgstr "" -"اینها نامهای مستعاری برای توابع و ماکروهای موجود هستند. آن‌ها صرفاً برای " -"سازگاری با نسخه‌های قبلی وجود دارند." +msgid "These are aliases to existing functions and macros. They exist solely for backwards compatibility." +msgstr "اینها نامهای مستعاری برای توابع و ماکروهای موجود هستند. آن‌ها صرفاً برای سازگاری با نسخه‌های قبلی وجود دارند." -#: ../../c-api/allocation.rst:169 msgid "Soft-deprecated alias" msgstr "نامهای مستعار با منسوخ‌سازی نرم" -#: ../../c-api/allocation.rst:170 msgid "Function" msgstr "تابع" -#: ../../c-api/allocation.rst:172 msgid ":c:macro:`PyObject_New`" msgstr ":c:macro:`PyObject_New`" -#: ../../c-api/allocation.rst:174 msgid ":c:macro:`PyObject_NewVar`" msgstr ":c:macro:`PyObject_NewVar`" -#: ../../c-api/allocation.rst:176 msgid ":c:func:`PyObject_Init`" msgstr ":c:func:`PyObject_Init`" -#: ../../c-api/allocation.rst:178 msgid ":c:func:`PyObject_InitVar`" msgstr ":c:func:`PyObject_InitVar`" -#: ../../c-api/allocation.rst:180 msgid ":c:func:`PyObject_Malloc`" msgstr ":c:func:`PyObject_Malloc`" -#: ../../c-api/allocation.rst:182 msgid ":c:func:`PyObject_Realloc`" msgstr ":c:func:`PyObject_Realloc`" diff --git a/c-api/apiabiversion.po b/c-api/apiabiversion.po index 10598048..b04049e8 100644 --- a/c-api/apiabiversion.po +++ b/c-api/apiabiversion.po @@ -17,7 +17,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:47+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -27,275 +27,177 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../c-api/apiabiversion.rst:7 msgid "API and ABI Versioning" msgstr "نسخه‌گذاری API و ABI" -#: ../../c-api/apiabiversion.rst:11 msgid "Build-time version constants" msgstr "ثابتهای نسخه در زمان ساخت" -#: ../../c-api/apiabiversion.rst:13 -msgid "" -"CPython exposes its version number in the following macros. Note that these " -"correspond to the version code is **built** with. See :c:var:`Py_Version` " -"for the version used at **run time**." -msgstr "" -"CPython شماره‌ی نسخه‌ی خود را در ماکروهای زیر در معرض دید قرار می‌دهد. توجه " -"داشته باشید که اینها مربوط به نسخه‌ای هستند که کد با آن **ساخته (build)** شده " -"است. برای نسخه‌ای که در **زمان اجرا (run time)** استفاده می‌شود، " -"به :c:var:`Py_Version` مراجعه کنید." +msgid "CPython exposes its version number in the following macros. Note that these correspond to the version code is **built** with. See :c:var:`Py_Version` for the version used at **run time**." +msgstr "CPython شماره‌ی نسخه‌ی خود را در ماکروهای زیر در معرض دید قرار می‌دهد. توجه داشته باشید که اینها مربوط به نسخه‌ای هستند که کد با آن **ساخته (build)** شده است. برای نسخه‌ای که در **زمان اجرا (run time)** استفاده می‌شود، به :c:var:`Py_Version` مراجعه کنید." -#: ../../c-api/apiabiversion.rst:17 -msgid "" -"See :ref:`stable` for a discussion of API and ABI stability across versions." -msgstr "" -"برای بحث درباره‌ی پایداری API و ABI در میان نسخه‌ها، به :ref:`stable` مراجعه " -"کنید." +msgid "See :ref:`stable` for a discussion of API and ABI stability across versions." +msgstr "برای بحث درباره‌ی پایداری API و ABI در میان نسخه‌ها، به :ref:`stable` مراجعه کنید." -#: ../../c-api/apiabiversion.rst:21 msgid "The ``3`` in ``3.4.1a2``." msgstr "``3`` در ``3.4.1a2``." -#: ../../c-api/apiabiversion.rst:25 msgid "The ``4`` in ``3.4.1a2``." msgstr "``4`` در ``3.4.1a2``." -#: ../../c-api/apiabiversion.rst:29 msgid "The ``1`` in ``3.4.1a2``." msgstr "``1`` در ``3.4.1a2``." -#: ../../c-api/apiabiversion.rst:33 -msgid "" -"The ``a`` in ``3.4.1a2``. This can be ``0xA`` for alpha, ``0xB`` for beta, " -"``0xC`` for release candidate or ``0xF`` for final." -msgstr "" -"``a`` در ``3.4.1a2``. این می‌تواند ``0xA`` برای آلفا باشد، ``0xB`` برای بتا، " -"``0xC`` برای کاندیدای انتشار (release candidate) یا ``0xF`` برای نهایی " -"(final)." +msgid "The ``a`` in ``3.4.1a2``. This can be ``0xA`` for alpha, ``0xB`` for beta, ``0xC`` for release candidate or ``0xF`` for final." +msgstr "``a`` در ``3.4.1a2``. این می‌تواند ``0xA`` برای آلفا باشد، ``0xB`` برای بتا، ``0xC`` برای کاندیدای انتشار (release candidate) یا ``0xF`` برای نهایی (final)." -#: ../../c-api/apiabiversion.rst:39 msgid "The ``2`` in ``3.4.1a2``. Zero for final releases." msgstr "``2`` در ``3.4.1a2``. برای انتشارهای نهایی، صفر است." -#: ../../c-api/apiabiversion.rst:43 -msgid "" -"The Python version number encoded in a single integer. " -"See :c:func:`Py_PACK_FULL_VERSION` for the encoding details." -msgstr "" -"شماره‌ی نسخه‌ی پایتون که در یک عدد صحیح کدگذاری شده است. برای جزئیات کدگذاری، " -"به :c:func:`Py_PACK_FULL_VERSION` مراجعه کنید." +msgid "The Python version number encoded in a single integer. See :c:func:`Py_PACK_FULL_VERSION` for the encoding details." +msgstr "شماره‌ی نسخه‌ی پایتون که در یک عدد صحیح کدگذاری شده است. برای جزئیات کدگذاری، به :c:func:`Py_PACK_FULL_VERSION` مراجعه کنید." -#: ../../c-api/apiabiversion.rst:46 -msgid "" -"Use this for numeric comparisons, for example, ``#if PY_VERSION_HEX >= ...``." -msgstr "" -"از این (مقدار) برای مقایسه‌های عددی استفاده کنید، برای مثال، ``#if " -"PY_VERSION_HEX >= ...``." +msgid "Use this for numeric comparisons, for example, ``#if PY_VERSION_HEX >= ...``." +msgstr "از این (مقدار) برای مقایسه‌های عددی استفاده کنید، برای مثال، ``#if PY_VERSION_HEX >= ...``." -#: ../../c-api/apiabiversion.rst:49 msgid "These macros are defined in :source:`Include/patchlevel.h`." msgstr "این ماکروها در :source:`Include/patchlevel.h` تعریف می‌شوند." -#: ../../c-api/apiabiversion.rst:53 msgid "Run-time version" msgstr "نسخه‌ی زمان اجرا" -#: ../../c-api/apiabiversion.rst:57 -msgid "" -"The Python runtime version number encoded in a single constant integer. " -"See :c:func:`Py_PACK_FULL_VERSION` for the encoding details. This contains " -"the Python version used at run time." -msgstr "" -"شماره‌ی نسخه‌ی زمان اجرای پایتون که در یک عدد صحیح ثابت کدگذاری شده است. برای " -"جزئیات کدگذاری، به :c:func:`Py_PACK_FULL_VERSION` مراجعه کنید. این (مقدار) " -"شامل نسخه‌ی پایتون است که در زمان اجرا استفاده می‌شود." +msgid "The Python runtime version number encoded in a single constant integer. See :c:func:`Py_PACK_FULL_VERSION` for the encoding details. This contains the Python version used at run time." +msgstr "شماره‌ی نسخه‌ی زمان اجرای پایتون که در یک عدد صحیح ثابت کدگذاری شده است. برای جزئیات کدگذاری، به :c:func:`Py_PACK_FULL_VERSION` مراجعه کنید. این (مقدار) شامل نسخه‌ی پایتون است که در زمان اجرا استفاده می‌شود." -#: ../../c-api/apiabiversion.rst:61 -msgid "" -"Use this for numeric comparisons, for example, ``if (Py_Version >= ...)``." -msgstr "" -"از این (مقدار) برای مقایسه‌های عددی استفاده کنید، برای مثال، ``if (Py_Version " -">= ...)``." +msgid "Use this for numeric comparisons, for example, ``if (Py_Version >= ...)``." +msgstr "از این (مقدار) برای مقایسه‌های عددی استفاده کنید، برای مثال، ``if (Py_Version >= ...)``." -#: ../../c-api/apiabiversion.rst:67 msgid "Bit-packing macros" msgstr "ماکروهای بسته‌بندی بیتی" -#: ../../c-api/apiabiversion.rst:71 -msgid "" -"Return the given version, encoded as a single 32-bit integer with the " -"following structure:" -msgstr "" -"نسخه‌ی داده‌شده را که به صورت یک عدد صحیح ۳۲-بیتی با ساختار زیر کدگذاری شده " -"است، برمی‌گرداند:" +msgid "Return the given version, encoded as a single 32-bit integer with the following structure:" +msgstr "نسخه‌ی داده‌شده را که به صورت یک عدد صحیح ۳۲-بیتی با ساختار زیر کدگذاری شده است، برمی‌گرداند:" -#: ../../c-api/apiabiversion.rst:77 msgid "Argument" msgstr "آرگومان" -#: ../../c-api/apiabiversion.rst:75 msgid "No. of bits" msgstr "تعداد بیت‌ها" -#: ../../c-api/apiabiversion.rst:77 msgid "Bit mask" msgstr "ماسک بیتی" -#: ../../c-api/apiabiversion.rst:77 msgid "Bit shift" msgstr "شیفت بیتی" -#: ../../c-api/apiabiversion.rst:75 msgid "Example values" msgstr "مقادیر نمونه" -#: ../../c-api/apiabiversion.rst:77 ../../c-api/apiabiversion.rst:95 msgid "``3.4.1a2``" msgstr "``3.4.1a2``" -#: ../../c-api/apiabiversion.rst:77 ../../c-api/apiabiversion.rst:97 msgid "``3.10.0``" msgstr "``3.10.0``" -#: ../../c-api/apiabiversion.rst:79 msgid "*major*" msgstr "*major*" -#: ../../c-api/apiabiversion.rst:79 ../../c-api/apiabiversion.rst:81 -#: ../../c-api/apiabiversion.rst:83 msgid "8" msgstr "8" -#: ../../c-api/apiabiversion.rst:79 msgid "``0xFF000000``" msgstr "``0xFF000000``" -#: ../../c-api/apiabiversion.rst:79 msgid "24" msgstr "24" -#: ../../c-api/apiabiversion.rst:79 msgid "``0x03``" msgstr "``0x03``" -#: ../../c-api/apiabiversion.rst:81 msgid "*minor*" msgstr "*minor*" -#: ../../c-api/apiabiversion.rst:81 msgid "``0x00FF0000``" msgstr "``0x00FF0000``" -#: ../../c-api/apiabiversion.rst:81 msgid "16" msgstr "16" -#: ../../c-api/apiabiversion.rst:81 msgid "``0x04``" msgstr "``0x04``" -#: ../../c-api/apiabiversion.rst:81 msgid "``0x0A``" msgstr "``0x0A``" -#: ../../c-api/apiabiversion.rst:83 msgid "*micro*" msgstr "*micro*" -#: ../../c-api/apiabiversion.rst:83 msgid "``0x0000FF00``" msgstr "``0x0000FF00``" -#: ../../c-api/apiabiversion.rst:83 msgid "``0x01``" msgstr "``0x01``" -#: ../../c-api/apiabiversion.rst:83 msgid "``0x00``" msgstr "``0x00``" -#: ../../c-api/apiabiversion.rst:85 msgid "*release_level*" msgstr "*release_level*" -#: ../../c-api/apiabiversion.rst:85 ../../c-api/apiabiversion.rst:87 msgid "4" msgstr "4" -#: ../../c-api/apiabiversion.rst:85 msgid "``0x000000F0``" msgstr "``0x000000F0``" -#: ../../c-api/apiabiversion.rst:85 msgid "``0xA``" msgstr "``0xA``" -#: ../../c-api/apiabiversion.rst:85 msgid "``0xF``" msgstr "``0xF``" -#: ../../c-api/apiabiversion.rst:87 msgid "*release_serial*" msgstr "*release_serial*" -#: ../../c-api/apiabiversion.rst:87 msgid "``0x0000000F``" msgstr "``0x0000000F``" -#: ../../c-api/apiabiversion.rst:87 msgid "0" msgstr "0" -#: ../../c-api/apiabiversion.rst:87 msgid "``0x2``" msgstr "``0x2``" -#: ../../c-api/apiabiversion.rst:87 msgid "``0x0``" msgstr "``0x0``" -#: ../../c-api/apiabiversion.rst:90 msgid "For example:" msgstr "برای مثال:" -#: ../../c-api/apiabiversion.rst:93 msgid "Version" msgstr "نسخه" -#: ../../c-api/apiabiversion.rst:93 msgid "``Py_PACK_FULL_VERSION`` arguments" msgstr "آرگومان‌های ``Py_PACK_FULL_VERSION``" -#: ../../c-api/apiabiversion.rst:93 msgid "Encoded version" msgstr "نسخه‌ی کدگذاری شده" -#: ../../c-api/apiabiversion.rst:95 msgid "``(3, 4, 1, 0xA, 2)``" msgstr "``(3, 4, 1, 0xA, 2)``" -#: ../../c-api/apiabiversion.rst:95 msgid "``0x030401a2``" msgstr "``0x030401a2``" -#: ../../c-api/apiabiversion.rst:97 msgid "``(3, 10, 0, 0xF, 0)``" msgstr "``(3, 10, 0, 0xF, 0)``" -#: ../../c-api/apiabiversion.rst:97 msgid "``0x030a00f0``" msgstr "``0x030a00f0``" -#: ../../c-api/apiabiversion.rst:100 -msgid "" -"Out-of range bits in the arguments are ignored. That is, the macro can be " -"defined as:" -msgstr "" -"بیت‌های خارج از محدوده در آرگومان‌ها نادیده گرفته می‌شوند. به عبارت دیگر، این " -"ماکرو را می‌توان به صورت زیر تعریف کرد:" +msgid "Out-of range bits in the arguments are ignored. That is, the macro can be defined as:" +msgstr "بیت‌های خارج از محدوده در آرگومان‌ها نادیده گرفته می‌شوند. به عبارت دیگر، این ماکرو را می‌توان به صورت زیر تعریف کرد:" -#: ../../c-api/apiabiversion.rst:103 msgid "" "#ifndef Py_PACK_FULL_VERSION\n" "#define Py_PACK_FULL_VERSION(X, Y, Z, LEVEL, SERIAL) ( \\\n" @@ -315,20 +217,8 @@ msgstr "" " (((SERIAL) & 0xf) << 0))\n" "#endif" -#: ../../c-api/apiabiversion.rst:114 -msgid "" -"``Py_PACK_FULL_VERSION`` is primarily a macro, intended for use in ``#if`` " -"directives, but it is also available as an exported function." -msgstr "" -"``Py_PACK_FULL_VERSION`` در درجه‌ی اول یک ماکرو است که برای استفاده در " -"دستورات ``#if`` در نظر گرفته شده است، اما به‌عنوان یک تابع صادرشده نیز در " -"دسترس است." +msgid "``Py_PACK_FULL_VERSION`` is primarily a macro, intended for use in ``#if`` directives, but it is also available as an exported function." +msgstr "``Py_PACK_FULL_VERSION`` در درجه‌ی اول یک ماکرو است که برای استفاده در دستورات ``#if`` در نظر گرفته شده است، اما به‌عنوان یک تابع صادرشده نیز در دسترس است." -#: ../../c-api/apiabiversion.rst:121 -msgid "" -"Equivalent to ``Py_PACK_FULL_VERSION(major, minor, 0, 0, 0)``. The result " -"does not correspond to any Python release, but is useful in numeric " -"comparisons." -msgstr "" -"معادل ``Py_PACK_FULL_VERSION(major, minor, 0, 0, 0)`` است. نتیجه با هیچ " -"نسخه‌ی انتشار یافته‌ای از پایتون مطابقت ندارد، اما در مقایسه‌های عددی مفید است." +msgid "Equivalent to ``Py_PACK_FULL_VERSION(major, minor, 0, 0, 0)``. The result does not correspond to any Python release, but is useful in numeric comparisons." +msgstr "معادل ``Py_PACK_FULL_VERSION(major, minor, 0, 0, 0)`` است. نتیجه با هیچ نسخه‌ی انتشار یافته‌ای از پایتون مطابقت ندارد، اما در مقایسه‌های عددی مفید است." diff --git a/c-api/arg.po b/c-api/arg.po index 683a785c..04a11a7b 100644 --- a/c-api/arg.po +++ b/c-api/arg.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:47+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -25,843 +25,423 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../c-api/arg.rst:6 msgid "Parsing arguments and building values" msgstr "" -#: ../../c-api/arg.rst:8 -msgid "" -"These functions are useful when creating your own extension functions and " -"methods. Additional information and examples are available " -"in :ref:`extending-index`." +msgid "These functions are useful when creating your own extension functions and methods. Additional information and examples are available in :ref:`extending-index`." msgstr "" -#: ../../c-api/arg.rst:12 -msgid "" -"The first three of these functions " -"described, :c:func:`PyArg_ParseTuple`, :c:func:`PyArg_ParseTupleAndKeywords`, " -"and :c:func:`PyArg_Parse`, all use *format strings* which are used to tell " -"the function about the expected arguments. The format strings use the same " -"syntax for each of these functions." +msgid "The first three of these functions described, :c:func:`PyArg_ParseTuple`, :c:func:`PyArg_ParseTupleAndKeywords`, and :c:func:`PyArg_Parse`, all use *format strings* which are used to tell the function about the expected arguments. The format strings use the same syntax for each of these functions." msgstr "" -#: ../../c-api/arg.rst:19 msgid "Parsing arguments" msgstr "" -#: ../../c-api/arg.rst:21 -msgid "" -"A format string consists of zero or more \"format units.\" A format unit " -"describes one Python object; it is usually a single character or a " -"parenthesized sequence of format units. With a few exceptions, a format " -"unit that is not a parenthesized sequence normally corresponds to a single " -"address argument to these functions. In the following description, the " -"quoted form is the format unit; the entry in (round) parentheses is the " -"Python object type that matches the format unit; and the entry in [square] " -"brackets is the type of the C variable(s) whose address should be passed." +msgid "A format string consists of zero or more \"format units.\" A format unit describes one Python object; it is usually a single character or a parenthesized sequence of format units. With a few exceptions, a format unit that is not a parenthesized sequence normally corresponds to a single address argument to these functions. In the following description, the quoted form is the format unit; the entry in (round) parentheses is the Python object type that matches the format unit; and the entry in [square] brackets is the type of the C variable(s) whose address should be passed." msgstr "" -#: ../../c-api/arg.rst:33 msgid "Strings and buffers" msgstr "" -#: ../../c-api/arg.rst:37 -msgid "" -"On Python 3.12 and older, the macro :c:macro:`!PY_SSIZE_T_CLEAN` must be " -"defined before including :file:`Python.h` to use all ``#`` variants of " -"formats (``s#``, ``y#``, etc.) explained below. This is not necessary on " -"Python 3.13 and later." +msgid "On Python 3.12 and older, the macro :c:macro:`!PY_SSIZE_T_CLEAN` must be defined before including :file:`Python.h` to use all ``#`` variants of formats (``s#``, ``y#``, etc.) explained below. This is not necessary on Python 3.13 and later." msgstr "" -#: ../../c-api/arg.rst:42 -msgid "" -"These formats allow accessing an object as a contiguous chunk of memory. You " -"don't have to provide raw storage for the returned unicode or bytes area." +msgid "These formats allow accessing an object as a contiguous chunk of memory. You don't have to provide raw storage for the returned unicode or bytes area." msgstr "" -#: ../../c-api/arg.rst:46 msgid "Unless otherwise stated, buffers are not NUL-terminated." msgstr "" -#: ../../c-api/arg.rst:48 msgid "There are three ways strings and buffers can be converted to C:" msgstr "" -#: ../../c-api/arg.rst:50 -msgid "" -"Formats such as ``y*`` and ``s*`` fill a :c:type:`Py_buffer` structure. This " -"locks the underlying buffer so that the caller can subsequently use the " -"buffer even inside a :c:type:`Py_BEGIN_ALLOW_THREADS` block without the risk " -"of mutable data being resized or destroyed. As a result, **you have to " -"call** :c:func:`PyBuffer_Release` after you have finished processing the " -"data (or in any early abort case)." +msgid "Formats such as ``y*`` and ``s*`` fill a :c:type:`Py_buffer` structure. This locks the underlying buffer so that the caller can subsequently use the buffer even inside a :c:type:`Py_BEGIN_ALLOW_THREADS` block without the risk of mutable data being resized or destroyed. As a result, **you have to call** :c:func:`PyBuffer_Release` after you have finished processing the data (or in any early abort case)." msgstr "" -#: ../../c-api/arg.rst:57 -msgid "" -"The ``es``, ``es#``, ``et`` and ``et#`` formats allocate the result buffer. " -"**You have to call** :c:func:`PyMem_Free` after you have finished processing " -"the data (or in any early abort case)." +msgid "The ``es``, ``es#``, ``et`` and ``et#`` formats allocate the result buffer. **You have to call** :c:func:`PyMem_Free` after you have finished processing the data (or in any early abort case)." msgstr "" -#: ../../c-api/arg.rst:63 -msgid "" -"Other formats take a :class:`str` or a read-only :term:`bytes-like object`, " -"such as :class:`bytes`, and provide a ``const char *`` pointer to its " -"buffer. In this case the buffer is \"borrowed\": it is managed by the " -"corresponding Python object, and shares the lifetime of this object. You " -"won't have to release any memory yourself." +msgid "Other formats take a :class:`str` or a read-only :term:`bytes-like object`, such as :class:`bytes`, and provide a ``const char *`` pointer to its buffer. In this case the buffer is \"borrowed\": it is managed by the corresponding Python object, and shares the lifetime of this object. You won't have to release any memory yourself." msgstr "" -#: ../../c-api/arg.rst:70 -msgid "" -"To ensure that the underlying buffer may be safely borrowed, the " -"object's :c:member:`PyBufferProcs.bf_releasebuffer` field must be ``NULL``. " -"This disallows common mutable objects such as :class:`bytearray`, but also " -"some read-only objects such as :class:`memoryview` of :class:`bytes`." +msgid "To ensure that the underlying buffer may be safely borrowed, the object's :c:member:`PyBufferProcs.bf_releasebuffer` field must be ``NULL``. This disallows common mutable objects such as :class:`bytearray`, but also some read-only objects such as :class:`memoryview` of :class:`bytes`." msgstr "" -#: ../../c-api/arg.rst:76 -msgid "" -"Besides this ``bf_releasebuffer`` requirement, there is no check to verify " -"whether the input object is immutable (e.g. whether it would honor a request " -"for a writable buffer, or whether another thread can mutate the data)." +msgid "Besides this ``bf_releasebuffer`` requirement, there is no check to verify whether the input object is immutable (e.g. whether it would honor a request for a writable buffer, or whether another thread can mutate the data)." msgstr "" -#: ../../c-api/arg.rst:80 msgid "``s`` (:class:`str`) [const char \\*]" msgstr "" -#: ../../c-api/arg.rst:81 -msgid "" -"Convert a Unicode object to a C pointer to a character string. A pointer to " -"an existing string is stored in the character pointer variable whose address " -"you pass. The C string is NUL-terminated. The Python string must not " -"contain embedded null code points; if it does, a :exc:`ValueError` exception " -"is raised. Unicode objects are converted to C strings using ``'utf-8'`` " -"encoding. If this conversion fails, a :exc:`UnicodeError` is raised." +msgid "Convert a Unicode object to a C pointer to a character string. A pointer to an existing string is stored in the character pointer variable whose address you pass. The C string is NUL-terminated. The Python string must not contain embedded null code points; if it does, a :exc:`ValueError` exception is raised. Unicode objects are converted to C strings using ``'utf-8'`` encoding. If this conversion fails, a :exc:`UnicodeError` is raised." msgstr "" -#: ../../c-api/arg.rst:90 -msgid "" -"This format does not accept :term:`bytes-like objects `. " -"If you want to accept filesystem paths and convert them to C character " -"strings, it is preferable to use the ``O&`` format " -"with :c:func:`PyUnicode_FSConverter` as *converter*." +msgid "This format does not accept :term:`bytes-like objects `. If you want to accept filesystem paths and convert them to C character strings, it is preferable to use the ``O&`` format with :c:func:`PyUnicode_FSConverter` as *converter*." msgstr "" -#: ../../c-api/arg.rst:96 -msgid "" -"Previously, :exc:`TypeError` was raised when embedded null code points were " -"encountered in the Python string." +msgid "Previously, :exc:`TypeError` was raised when embedded null code points were encountered in the Python string." msgstr "" -#: ../../c-api/arg.rst:100 msgid "``s*`` (:class:`str` or :term:`bytes-like object`) [Py_buffer]" msgstr "" -#: ../../c-api/arg.rst:101 -msgid "" -"This format accepts Unicode objects as well as bytes-like objects. It fills " -"a :c:type:`Py_buffer` structure provided by the caller. In this case the " -"resulting C string may contain embedded NUL bytes. Unicode objects are " -"converted to C strings using ``'utf-8'`` encoding." +msgid "This format accepts Unicode objects as well as bytes-like objects. It fills a :c:type:`Py_buffer` structure provided by the caller. In this case the resulting C string may contain embedded NUL bytes. Unicode objects are converted to C strings using ``'utf-8'`` encoding." msgstr "" -#: ../../c-api/arg.rst:106 -msgid "" -"``s#`` (:class:`str`, read-only :term:`bytes-like object`) [const char " -"\\*, :c:type:`Py_ssize_t`]" +msgid "``s#`` (:class:`str`, read-only :term:`bytes-like object`) [const char \\*, :c:type:`Py_ssize_t`]" msgstr "" -#: ../../c-api/arg.rst:107 -msgid "" -"Like ``s*``, except that it provides a :ref:`borrowed buffer `. The result is stored into two C variables, the first one a pointer " -"to a C string, the second one its length. The string may contain embedded " -"null bytes. Unicode objects are converted to C strings using ``'utf-8'`` " -"encoding." +msgid "Like ``s*``, except that it provides a :ref:`borrowed buffer `. The result is stored into two C variables, the first one a pointer to a C string, the second one its length. The string may contain embedded null bytes. Unicode objects are converted to C strings using ``'utf-8'`` encoding." msgstr "" -#: ../../c-api/arg.rst:113 ../../c-api/arg.rst:614 msgid "``z`` (:class:`str` or ``None``) [const char \\*]" msgstr "" -#: ../../c-api/arg.rst:114 -msgid "" -"Like ``s``, but the Python object may also be ``None``, in which case the C " -"pointer is set to ``NULL``." +msgid "Like ``s``, but the Python object may also be ``None``, in which case the C pointer is set to ``NULL``." msgstr "" -#: ../../c-api/arg.rst:117 -msgid "" -"``z*`` (:class:`str`, :term:`bytes-like object` or ``None``) [Py_buffer]" +msgid "``z*`` (:class:`str`, :term:`bytes-like object` or ``None``) [Py_buffer]" msgstr "" -#: ../../c-api/arg.rst:118 -msgid "" -"Like ``s*``, but the Python object may also be ``None``, in which case the " -"``buf`` member of the :c:type:`Py_buffer` structure is set to ``NULL``." +msgid "Like ``s*``, but the Python object may also be ``None``, in which case the ``buf`` member of the :c:type:`Py_buffer` structure is set to ``NULL``." msgstr "" -#: ../../c-api/arg.rst:121 -msgid "" -"``z#`` (:class:`str`, read-only :term:`bytes-like object` or ``None``) " -"[const char \\*, :c:type:`Py_ssize_t`]" +msgid "``z#`` (:class:`str`, read-only :term:`bytes-like object` or ``None``) [const char \\*, :c:type:`Py_ssize_t`]" msgstr "" -#: ../../c-api/arg.rst:122 -msgid "" -"Like ``s#``, but the Python object may also be ``None``, in which case the C " -"pointer is set to ``NULL``." +msgid "Like ``s#``, but the Python object may also be ``None``, in which case the C pointer is set to ``NULL``." msgstr "" -#: ../../c-api/arg.rst:125 msgid "``y`` (read-only :term:`bytes-like object`) [const char \\*]" msgstr "" -#: ../../c-api/arg.rst:126 -msgid "" -"This format converts a bytes-like object to a C pointer to a :ref:`borrowed " -"` character string; it does not accept Unicode " -"objects. The bytes buffer must not contain embedded null bytes; if it does, " -"a :exc:`ValueError` exception is raised." +msgid "This format converts a bytes-like object to a C pointer to a :ref:`borrowed ` character string; it does not accept Unicode objects. The bytes buffer must not contain embedded null bytes; if it does, a :exc:`ValueError` exception is raised." msgstr "" -#: ../../c-api/arg.rst:132 -msgid "" -"Previously, :exc:`TypeError` was raised when embedded null bytes were " -"encountered in the bytes buffer." +msgid "Previously, :exc:`TypeError` was raised when embedded null bytes were encountered in the bytes buffer." msgstr "" -#: ../../c-api/arg.rst:136 msgid "``y*`` (:term:`bytes-like object`) [Py_buffer]" msgstr "" -#: ../../c-api/arg.rst:137 -msgid "" -"This variant on ``s*`` doesn't accept Unicode objects, only bytes-like " -"objects. **This is the recommended way to accept binary data.**" +msgid "This variant on ``s*`` doesn't accept Unicode objects, only bytes-like objects. **This is the recommended way to accept binary data.**" msgstr "" -#: ../../c-api/arg.rst:141 -msgid "" -"``y#`` (read-only :term:`bytes-like object`) [const char " -"\\*, :c:type:`Py_ssize_t`]" +msgid "``y#`` (read-only :term:`bytes-like object`) [const char \\*, :c:type:`Py_ssize_t`]" msgstr "" -#: ../../c-api/arg.rst:142 -msgid "" -"This variant on ``s#`` doesn't accept Unicode objects, only bytes-like " -"objects." +msgid "This variant on ``s#`` doesn't accept Unicode objects, only bytes-like objects." msgstr "" -#: ../../c-api/arg.rst:145 msgid "``S`` (:class:`bytes`) [PyBytesObject \\*]" msgstr "" -#: ../../c-api/arg.rst:146 -msgid "" -"Requires that the Python object is a :class:`bytes` object, without " -"attempting any conversion. Raises :exc:`TypeError` if the object is not a " -"bytes object. The C variable may also be declared as :c:expr:`PyObject*`." +msgid "Requires that the Python object is a :class:`bytes` object, without attempting any conversion. Raises :exc:`TypeError` if the object is not a bytes object. The C variable may also be declared as :c:expr:`PyObject*`." msgstr "" -#: ../../c-api/arg.rst:150 msgid "``Y`` (:class:`bytearray`) [PyByteArrayObject \\*]" msgstr "" -#: ../../c-api/arg.rst:151 -msgid "" -"Requires that the Python object is a :class:`bytearray` object, without " -"attempting any conversion. Raises :exc:`TypeError` if the object is not " -"a :class:`bytearray` object. The C variable may also be declared " -"as :c:expr:`PyObject*`." +msgid "Requires that the Python object is a :class:`bytearray` object, without attempting any conversion. Raises :exc:`TypeError` if the object is not a :class:`bytearray` object. The C variable may also be declared as :c:expr:`PyObject*`." msgstr "" -#: ../../c-api/arg.rst:155 msgid "``U`` (:class:`str`) [PyObject \\*]" msgstr "" -#: ../../c-api/arg.rst:156 -msgid "" -"Requires that the Python object is a Unicode object, without attempting any " -"conversion. Raises :exc:`TypeError` if the object is not a Unicode object. " -"The C variable may also be declared as :c:expr:`PyObject*`." +msgid "Requires that the Python object is a Unicode object, without attempting any conversion. Raises :exc:`TypeError` if the object is not a Unicode object. The C variable may also be declared as :c:expr:`PyObject*`." msgstr "" -#: ../../c-api/arg.rst:160 msgid "``w*`` (read-write :term:`bytes-like object`) [Py_buffer]" msgstr "" -#: ../../c-api/arg.rst:161 -msgid "" -"This format accepts any object which implements the read-write buffer " -"interface. It fills a :c:type:`Py_buffer` structure provided by the caller. " -"The buffer may contain embedded null bytes. The caller has to " -"call :c:func:`PyBuffer_Release` when it is done with the buffer." +msgid "This format accepts any object which implements the read-write buffer interface. It fills a :c:type:`Py_buffer` structure provided by the caller. The buffer may contain embedded null bytes. The caller has to call :c:func:`PyBuffer_Release` when it is done with the buffer." msgstr "" -#: ../../c-api/arg.rst:166 msgid "``es`` (:class:`str`) [const char \\*encoding, char \\*\\*buffer]" msgstr "" -#: ../../c-api/arg.rst:167 -msgid "" -"This variant on ``s`` is used for encoding Unicode into a character buffer. " -"It only works for encoded data without embedded NUL bytes." +msgid "This variant on ``s`` is used for encoding Unicode into a character buffer. It only works for encoded data without embedded NUL bytes." msgstr "" -#: ../../c-api/arg.rst:170 -msgid "" -"This format requires two arguments. The first is only used as input, and " -"must be a :c:expr:`const char*` which points to the name of an encoding as a " -"NUL-terminated string, or ``NULL``, in which case ``'utf-8'`` encoding is " -"used. An exception is raised if the named encoding is not known to Python. " -"The second argument must be a :c:expr:`char**`; the value of the pointer it " -"references will be set to a buffer with the contents of the argument text. " -"The text will be encoded in the encoding specified by the first argument." +msgid "This format requires two arguments. The first is only used as input, and must be a :c:expr:`const char*` which points to the name of an encoding as a NUL-terminated string, or ``NULL``, in which case ``'utf-8'`` encoding is used. An exception is raised if the named encoding is not known to Python. The second argument must be a :c:expr:`char**`; the value of the pointer it references will be set to a buffer with the contents of the argument text. The text will be encoded in the encoding specified by the first argument." msgstr "" -#: ../../c-api/arg.rst:178 -msgid "" -":c:func:`PyArg_ParseTuple` will allocate a buffer of the needed size, copy " -"the encoded data into this buffer and adjust *\\*buffer* to reference the " -"newly allocated storage. The caller is responsible for " -"calling :c:func:`PyMem_Free` to free the allocated buffer after use." +msgid ":c:func:`PyArg_ParseTuple` will allocate a buffer of the needed size, copy the encoded data into this buffer and adjust *\\*buffer* to reference the newly allocated storage. The caller is responsible for calling :c:func:`PyMem_Free` to free the allocated buffer after use." msgstr "" -#: ../../c-api/arg.rst:183 -msgid "" -"``et`` (:class:`str`, :class:`bytes` or :class:`bytearray`) [const char " -"\\*encoding, char \\*\\*buffer]" +msgid "``et`` (:class:`str`, :class:`bytes` or :class:`bytearray`) [const char \\*encoding, char \\*\\*buffer]" msgstr "" -#: ../../c-api/arg.rst:184 -msgid "" -"Same as ``es`` except that byte string objects are passed through without " -"recoding them. Instead, the implementation assumes that the byte string " -"object uses the encoding passed in as parameter." +msgid "Same as ``es`` except that byte string objects are passed through without recoding them. Instead, the implementation assumes that the byte string object uses the encoding passed in as parameter." msgstr "" -#: ../../c-api/arg.rst:188 -msgid "" -"``es#`` (:class:`str`) [const char \\*encoding, char " -"\\*\\*buffer, :c:type:`Py_ssize_t` \\*buffer_length]" +msgid "``es#`` (:class:`str`) [const char \\*encoding, char \\*\\*buffer, :c:type:`Py_ssize_t` \\*buffer_length]" msgstr "" -#: ../../c-api/arg.rst:189 -msgid "" -"This variant on ``s#`` is used for encoding Unicode into a character buffer. " -"Unlike the ``es`` format, this variant allows input data which contains NUL " -"characters." +msgid "This variant on ``s#`` is used for encoding Unicode into a character buffer. Unlike the ``es`` format, this variant allows input data which contains NUL characters." +msgstr "" + +msgid "It requires three arguments. The first is only used as input, and must be a :c:expr:`const char*` which points to the name of an encoding as a NUL-terminated string, or ``NULL``, in which case ``'utf-8'`` encoding is used. An exception is raised if the named encoding is not known to Python. The second argument must be a :c:expr:`char**`; the value of the pointer it references will be set to a buffer with the contents of the argument text. The text will be encoded in the encoding specified by the first argument. The third argument must be a pointer to an integer; the referenced integer will be set to the number of bytes in the output buffer." msgstr "" -#: ../../c-api/arg.rst:193 -msgid "" -"It requires three arguments. The first is only used as input, and must be " -"a :c:expr:`const char*` which points to the name of an encoding as a NUL-" -"terminated string, or ``NULL``, in which case ``'utf-8'`` encoding is used. " -"An exception is raised if the named encoding is not known to Python. The " -"second argument must be a :c:expr:`char**`; the value of the pointer it " -"references will be set to a buffer with the contents of the argument text. " -"The text will be encoded in the encoding specified by the first argument. " -"The third argument must be a pointer to an integer; the referenced integer " -"will be set to the number of bytes in the output buffer." -msgstr "" - -#: ../../c-api/arg.rst:203 msgid "There are two modes of operation:" msgstr "" -#: ../../c-api/arg.rst:205 -msgid "" -"If *\\*buffer* points a ``NULL`` pointer, the function will allocate a " -"buffer of the needed size, copy the encoded data into this buffer and set " -"*\\*buffer* to reference the newly allocated storage. The caller is " -"responsible for calling :c:func:`PyMem_Free` to free the allocated buffer " -"after usage." +msgid "If *\\*buffer* points a ``NULL`` pointer, the function will allocate a buffer of the needed size, copy the encoded data into this buffer and set *\\*buffer* to reference the newly allocated storage. The caller is responsible for calling :c:func:`PyMem_Free` to free the allocated buffer after usage." msgstr "" -#: ../../c-api/arg.rst:210 -msgid "" -"If *\\*buffer* points to a non-``NULL`` pointer (an already allocated " -"buffer), :c:func:`PyArg_ParseTuple` will use this location as the buffer and " -"interpret the initial value of *\\*buffer_length* as the buffer size. It " -"will then copy the encoded data into the buffer and NUL-terminate it. If " -"the buffer is not large enough, a :exc:`ValueError` will be set." +msgid "If *\\*buffer* points to a non-``NULL`` pointer (an already allocated buffer), :c:func:`PyArg_ParseTuple` will use this location as the buffer and interpret the initial value of *\\*buffer_length* as the buffer size. It will then copy the encoded data into the buffer and NUL-terminate it. If the buffer is not large enough, a :exc:`ValueError` will be set." msgstr "" -#: ../../c-api/arg.rst:216 -msgid "" -"In both cases, *\\*buffer_length* is set to the length of the encoded data " -"without the trailing NUL byte." +msgid "In both cases, *\\*buffer_length* is set to the length of the encoded data without the trailing NUL byte." msgstr "" -#: ../../c-api/arg.rst:219 -msgid "" -"``et#`` (:class:`str`, :class:`bytes` or :class:`bytearray`) [const char " -"\\*encoding, char \\*\\*buffer, :c:type:`Py_ssize_t` \\*buffer_length]" +msgid "``et#`` (:class:`str`, :class:`bytes` or :class:`bytearray`) [const char \\*encoding, char \\*\\*buffer, :c:type:`Py_ssize_t` \\*buffer_length]" msgstr "" -#: ../../c-api/arg.rst:220 -msgid "" -"Same as ``es#`` except that byte string objects are passed through without " -"recoding them. Instead, the implementation assumes that the byte string " -"object uses the encoding passed in as parameter." +msgid "Same as ``es#`` except that byte string objects are passed through without recoding them. Instead, the implementation assumes that the byte string object uses the encoding passed in as parameter." msgstr "" -#: ../../c-api/arg.rst:224 -msgid "" -"``u``, ``u#``, ``Z``, and ``Z#`` are removed because they used a legacy " -"``Py_UNICODE*`` representation." +msgid "``u``, ``u#``, ``Z``, and ``Z#`` are removed because they used a legacy ``Py_UNICODE*`` representation." msgstr "" -#: ../../c-api/arg.rst:230 msgid "Numbers" msgstr "" -#: ../../c-api/arg.rst:232 -msgid "" -"These formats allow representing Python numbers or single characters as C " -"numbers. Formats that require :class:`int`, :class:`float` " -"or :class:`complex` can also use the corresponding special " -"methods :meth:`~object.__index__`, :meth:`~object.__float__` " -"or :meth:`~object.__complex__` to convert the Python object to the required " -"type." +msgid "These formats allow representing Python numbers or single characters as C numbers. Formats that require :class:`int`, :class:`float` or :class:`complex` can also use the corresponding special methods :meth:`~object.__index__`, :meth:`~object.__float__` or :meth:`~object.__complex__` to convert the Python object to the required type." msgstr "" -#: ../../c-api/arg.rst:238 -msgid "" -"For signed integer formats, :exc:`OverflowError` is raised if the value is " -"out of range for the C type. For unsigned integer formats, no range checking " -"is done --- the most significant bits are silently truncated when the " -"receiving field is too small to receive the value." +msgid "For signed integer formats, :exc:`OverflowError` is raised if the value is out of range for the C type. For unsigned integer formats, no range checking is done --- the most significant bits are silently truncated when the receiving field is too small to receive the value." msgstr "" -#: ../../c-api/arg.rst:244 msgid "``b`` (:class:`int`) [unsigned char]" msgstr "" -#: ../../c-api/arg.rst:245 -msgid "" -"Convert a nonnegative Python integer to an unsigned tiny integer, stored in " -"a C :c:expr:`unsigned char`." +msgid "Convert a nonnegative Python integer to an unsigned tiny integer, stored in a C :c:expr:`unsigned char`." msgstr "" -#: ../../c-api/arg.rst:248 ../../c-api/arg.rst:648 msgid "``B`` (:class:`int`) [unsigned char]" msgstr "" -#: ../../c-api/arg.rst:249 -msgid "" -"Convert a Python integer to a tiny integer without overflow checking, stored " -"in a C :c:expr:`unsigned char`." +msgid "Convert a Python integer to a tiny integer without overflow checking, stored in a C :c:expr:`unsigned char`." msgstr "" -#: ../../c-api/arg.rst:252 ../../c-api/arg.rst:642 msgid "``h`` (:class:`int`) [short int]" msgstr "" -#: ../../c-api/arg.rst:253 msgid "Convert a Python integer to a C :c:expr:`short int`." msgstr "" -#: ../../c-api/arg.rst:255 ../../c-api/arg.rst:651 msgid "``H`` (:class:`int`) [unsigned short int]" msgstr "" -#: ../../c-api/arg.rst:256 -msgid "" -"Convert a Python integer to a C :c:expr:`unsigned short int`, without " -"overflow checking." +msgid "Convert a Python integer to a C :c:expr:`unsigned short int`, without overflow checking." msgstr "" -#: ../../c-api/arg.rst:259 ../../c-api/arg.rst:636 msgid "``i`` (:class:`int`) [int]" msgstr "" -#: ../../c-api/arg.rst:260 msgid "Convert a Python integer to a plain C :c:expr:`int`." msgstr "" -#: ../../c-api/arg.rst:262 ../../c-api/arg.rst:654 msgid "``I`` (:class:`int`) [unsigned int]" msgstr "" -#: ../../c-api/arg.rst:263 -msgid "" -"Convert a Python integer to a C :c:expr:`unsigned int`, without overflow " -"checking." +msgid "Convert a Python integer to a C :c:expr:`unsigned int`, without overflow checking." msgstr "" -#: ../../c-api/arg.rst:266 ../../c-api/arg.rst:645 msgid "``l`` (:class:`int`) [long int]" msgstr "" -#: ../../c-api/arg.rst:267 msgid "Convert a Python integer to a C :c:expr:`long int`." msgstr "" -#: ../../c-api/arg.rst:269 ../../c-api/arg.rst:657 msgid "``k`` (:class:`int`) [unsigned long]" msgstr "" -#: ../../c-api/arg.rst:270 -msgid "" -"Convert a Python integer to a C :c:expr:`unsigned long` without overflow " -"checking." +msgid "Convert a Python integer to a C :c:expr:`unsigned long` without overflow checking." msgstr "" -#: ../../c-api/arg.rst:273 ../../c-api/arg.rst:283 msgid "Use :meth:`~object.__index__` if available." msgstr "" -#: ../../c-api/arg.rst:276 ../../c-api/arg.rst:660 msgid "``L`` (:class:`int`) [long long]" msgstr "" -#: ../../c-api/arg.rst:277 msgid "Convert a Python integer to a C :c:expr:`long long`." msgstr "" -#: ../../c-api/arg.rst:279 ../../c-api/arg.rst:665 msgid "``K`` (:class:`int`) [unsigned long long]" msgstr "" -#: ../../c-api/arg.rst:280 -msgid "" -"Convert a Python integer to a C :c:expr:`unsigned long long` without " -"overflow checking." +msgid "Convert a Python integer to a C :c:expr:`unsigned long long` without overflow checking." msgstr "" -#: ../../c-api/arg.rst:286 ../../c-api/arg.rst:668 msgid "``n`` (:class:`int`) [:c:type:`Py_ssize_t`]" msgstr "" -#: ../../c-api/arg.rst:287 msgid "Convert a Python integer to a C :c:type:`Py_ssize_t`." msgstr "" -#: ../../c-api/arg.rst:289 msgid "``c`` (:class:`bytes` or :class:`bytearray` of length 1) [char]" msgstr "" -#: ../../c-api/arg.rst:290 -msgid "" -"Convert a Python byte, represented as a :class:`bytes` or :class:`bytearray` " -"object of length 1, to a C :c:expr:`char`." +msgid "Convert a Python byte, represented as a :class:`bytes` or :class:`bytearray` object of length 1, to a C :c:expr:`char`." msgstr "" -#: ../../c-api/arg.rst:293 msgid "Allow :class:`bytearray` objects." msgstr "" -#: ../../c-api/arg.rst:296 ../../c-api/arg.rst:686 msgid "``C`` (:class:`str` of length 1) [int]" msgstr "" -#: ../../c-api/arg.rst:297 -msgid "" -"Convert a Python character, represented as a :class:`str` object of length " -"1, to a C :c:expr:`int`." +msgid "Convert a Python character, represented as a :class:`str` object of length 1, to a C :c:expr:`int`." msgstr "" -#: ../../c-api/arg.rst:300 ../../c-api/arg.rst:693 msgid "``f`` (:class:`float`) [float]" msgstr "" -#: ../../c-api/arg.rst:301 msgid "Convert a Python floating-point number to a C :c:expr:`float`." msgstr "" -#: ../../c-api/arg.rst:303 ../../c-api/arg.rst:690 msgid "``d`` (:class:`float`) [double]" msgstr "" -#: ../../c-api/arg.rst:304 msgid "Convert a Python floating-point number to a C :c:expr:`double`." msgstr "" -#: ../../c-api/arg.rst:306 msgid "``D`` (:class:`complex`) [Py_complex]" msgstr "" -#: ../../c-api/arg.rst:307 msgid "Convert a Python complex number to a C :c:type:`Py_complex` structure." msgstr "" -#: ../../c-api/arg.rst:310 msgid "Other objects" msgstr "" -#: ../../c-api/arg.rst:312 ../../c-api/arg.rst:699 msgid "``O`` (object) [PyObject \\*]" msgstr "" -#: ../../c-api/arg.rst:313 -msgid "" -"Store a Python object (without any conversion) in a C object pointer. The C " -"program thus receives the actual object that was passed. A " -"new :term:`strong reference` to the object is not created (i.e. its " -"reference count is not increased). The pointer stored is not ``NULL``." +msgid "Store a Python object (without any conversion) in a C object pointer. The C program thus receives the actual object that was passed. A new :term:`strong reference` to the object is not created (i.e. its reference count is not increased). The pointer stored is not ``NULL``." msgstr "" -#: ../../c-api/arg.rst:319 msgid "``O!`` (object) [*typeobject*, PyObject \\*]" msgstr "" -#: ../../c-api/arg.rst:320 -msgid "" -"Store a Python object in a C object pointer. This is similar to ``O``, but " -"takes two C arguments: the first is the address of a Python type object, the " -"second is the address of the C variable (of type :c:expr:`PyObject*`) into " -"which the object pointer is stored. If the Python object does not have the " -"required type, :exc:`TypeError` is raised." +msgid "Store a Python object in a C object pointer. This is similar to ``O``, but takes two C arguments: the first is the address of a Python type object, the second is the address of the C variable (of type :c:expr:`PyObject*`) into which the object pointer is stored. If the Python object does not have the required type, :exc:`TypeError` is raised." msgstr "" -#: ../../c-api/arg.rst:328 msgid "``O&`` (object) [*converter*, *address*]" msgstr "" -#: ../../c-api/arg.rst:329 -msgid "" -"Convert a Python object to a C variable through a *converter* function. " -"This takes two arguments: the first is a function, the second is the address " -"of a C variable (of arbitrary type), converted to :c:expr:`void *`. The " -"*converter* function in turn is called as follows::" +msgid "Convert a Python object to a C variable through a *converter* function. This takes two arguments: the first is a function, the second is the address of a C variable (of arbitrary type), converted to :c:expr:`void *`. The *converter* function in turn is called as follows::" msgstr "" -#: ../../c-api/arg.rst:334 msgid "status = converter(object, address);" msgstr "" -#: ../../c-api/arg.rst:336 -msgid "" -"where *object* is the Python object to be converted and *address* is " -"the :c:expr:`void*` argument that was passed to the ``PyArg_Parse*`` " -"function. The returned *status* should be ``1`` for a successful conversion " -"and ``0`` if the conversion has failed. When the conversion fails, the " -"*converter* function should raise an exception and leave the content of " -"*address* unmodified." +msgid "where *object* is the Python object to be converted and *address* is the :c:expr:`void*` argument that was passed to the ``PyArg_Parse*`` function. The returned *status* should be ``1`` for a successful conversion and ``0`` if the conversion has failed. When the conversion fails, the *converter* function should raise an exception and leave the content of *address* unmodified." msgstr "" -#: ../../c-api/arg.rst:345 -msgid "" -"If the *converter* returns :c:macro:`!Py_CLEANUP_SUPPORTED`, it may get " -"called a second time if the argument parsing eventually fails, giving the " -"converter a chance to release any memory that it had already allocated. In " -"this second call, the *object* parameter will be ``NULL``; *address* will " -"have the same value as in the original call." +msgid "If the *converter* returns :c:macro:`!Py_CLEANUP_SUPPORTED`, it may get called a second time if the argument parsing eventually fails, giving the converter a chance to release any memory that it had already allocated. In this second call, the *object* parameter will be ``NULL``; *address* will have the same value as in the original call." msgstr "" -#: ../../c-api/arg.rst:351 -msgid "" -"Examples of converters: :c:func:`PyUnicode_FSConverter` " -"and :c:func:`PyUnicode_FSDecoder`." +msgid "Examples of converters: :c:func:`PyUnicode_FSConverter` and :c:func:`PyUnicode_FSDecoder`." msgstr "" -#: ../../c-api/arg.rst:354 msgid ":c:macro:`!Py_CLEANUP_SUPPORTED` was added." msgstr "" -#: ../../c-api/arg.rst:357 ../../c-api/arg.rst:671 msgid "``p`` (:class:`bool`) [int]" msgstr "" -#: ../../c-api/arg.rst:358 -msgid "" -"Tests the value passed in for truth (a boolean **p**\\ redicate) and " -"converts the result to its equivalent C true/false integer value. Sets the " -"int to ``1`` if the expression was true and ``0`` if it was false. This " -"accepts any valid Python value. See :ref:`truth` for more information about " -"how Python tests values for truth." +msgid "Tests the value passed in for truth (a boolean **p**\\ redicate) and converts the result to its equivalent C true/false integer value. Sets the int to ``1`` if the expression was true and ``0`` if it was false. This accepts any valid Python value. See :ref:`truth` for more information about how Python tests values for truth." msgstr "" -#: ../../c-api/arg.rst:366 msgid "``(items)`` (sequence) [*matching-items*]" msgstr "" -#: ../../c-api/arg.rst:367 -msgid "" -"The object must be a Python sequence (except :class:`str`, :class:`bytes` " -"or :class:`bytearray`) whose length is the number of format units in " -"*items*. The C arguments must correspond to the individual format units in " -"*items*. Format units for sequences may be nested." +msgid "The object must be a Python sequence (except :class:`str`, :class:`bytes` or :class:`bytearray`) whose length is the number of format units in *items*. The C arguments must correspond to the individual format units in *items*. Format units for sequences may be nested." msgstr "" -#: ../../c-api/arg.rst:372 -msgid "" -"If *items* contains format units which store a :ref:`borrowed buffer ` (``s``, ``s#``, ``z``, ``z#``, ``y``, or ``y#``) or " -"a :term:`borrowed reference` (``S``, ``Y``, ``U``, ``O``, or ``O!``), the " -"object must be a Python tuple. The *converter* for the ``O&`` format unit in " -"*items* must not store a borrowed buffer or a borrowed reference." +msgid "If *items* contains format units which store a :ref:`borrowed buffer ` (``s``, ``s#``, ``z``, ``z#``, ``y``, or ``y#``) or a :term:`borrowed reference` (``S``, ``Y``, ``U``, ``O``, or ``O!``), the object must be a Python tuple. The *converter* for the ``O&`` format unit in *items* must not store a borrowed buffer or a borrowed reference." msgstr "" -#: ../../c-api/arg.rst:379 -msgid "" -":class:`str` and :class:`bytearray` objects no longer accepted as a sequence." +msgid ":class:`str` and :class:`bytearray` objects no longer accepted as a sequence." msgstr "" -#: ../../c-api/arg.rst:382 -msgid "" -"Non-tuple sequences are deprecated if *items* contains format units which " -"store a borrowed buffer or a borrowed reference." +msgid "Non-tuple sequences are deprecated if *items* contains format units which store a borrowed buffer or a borrowed reference." msgstr "" -#: ../../c-api/arg.rst:386 -msgid "" -"A few other characters have a meaning in a format string. These may not " -"occur inside nested parentheses. They are:" +msgid "A few other characters have a meaning in a format string. These may not occur inside nested parentheses. They are:" msgstr "" -#: ../../c-api/arg.rst:389 msgid "``|``" msgstr "" -#: ../../c-api/arg.rst:390 -msgid "" -"Indicates that the remaining arguments in the Python argument list are " -"optional. The C variables corresponding to optional arguments should be " -"initialized to their default value --- when an optional argument is not " -"specified, :c:func:`PyArg_ParseTuple` does not touch the contents of the " -"corresponding C variable(s)." +msgid "Indicates that the remaining arguments in the Python argument list are optional. The C variables corresponding to optional arguments should be initialized to their default value --- when an optional argument is not specified, :c:func:`PyArg_ParseTuple` does not touch the contents of the corresponding C variable(s)." msgstr "" -#: ../../c-api/arg.rst:396 msgid "``$``" msgstr "" -#: ../../c-api/arg.rst:397 -msgid "" -":c:func:`PyArg_ParseTupleAndKeywords` only: Indicates that the remaining " -"arguments in the Python argument list are keyword-only. Currently, all " -"keyword-only arguments must also be optional arguments, so ``|`` must always " -"be specified before ``$`` in the format string." +msgid ":c:func:`PyArg_ParseTupleAndKeywords` only: Indicates that the remaining arguments in the Python argument list are keyword-only. Currently, all keyword-only arguments must also be optional arguments, so ``|`` must always be specified before ``$`` in the format string." msgstr "" -#: ../../c-api/arg.rst:405 msgid "``:``" msgstr "" -#: ../../c-api/arg.rst:406 -msgid "" -"The list of format units ends here; the string after the colon is used as " -"the function name in error messages (the \"associated value\" of the " -"exception that :c:func:`PyArg_ParseTuple` raises)." +msgid "The list of format units ends here; the string after the colon is used as the function name in error messages (the \"associated value\" of the exception that :c:func:`PyArg_ParseTuple` raises)." msgstr "" -#: ../../c-api/arg.rst:410 msgid "``;``" msgstr "" -#: ../../c-api/arg.rst:411 -msgid "" -"The list of format units ends here; the string after the semicolon is used " -"as the error message *instead* of the default error message. ``:`` and " -"``;`` mutually exclude each other." +msgid "The list of format units ends here; the string after the semicolon is used as the error message *instead* of the default error message. ``:`` and ``;`` mutually exclude each other." msgstr "" -#: ../../c-api/arg.rst:415 -msgid "" -"Note that any Python object references which are provided to the caller are " -"*borrowed* references; do not release them (i.e. do not decrement their " -"reference count)!" +msgid "Note that any Python object references which are provided to the caller are *borrowed* references; do not release them (i.e. do not decrement their reference count)!" msgstr "" -#: ../../c-api/arg.rst:419 -msgid "" -"Additional arguments passed to these functions must be addresses of " -"variables whose type is determined by the format string; these are used to " -"store values from the input tuple. There are a few cases, as described in " -"the list of format units above, where these parameters are used as input " -"values; they should match what is specified for the corresponding format " -"unit in that case." +msgid "Additional arguments passed to these functions must be addresses of variables whose type is determined by the format string; these are used to store values from the input tuple. There are a few cases, as described in the list of format units above, where these parameters are used as input values; they should match what is specified for the corresponding format unit in that case." msgstr "" -#: ../../c-api/arg.rst:425 -msgid "" -"For the conversion to succeed, the *arg* object must match the format and " -"the format must be exhausted. On success, the ``PyArg_Parse*`` functions " -"return true, otherwise they return false and raise an appropriate exception. " -"When the ``PyArg_Parse*`` functions fail due to conversion failure in one of " -"the format units, the variables at the addresses corresponding to that and " -"the following format units are left untouched." +msgid "For the conversion to succeed, the *arg* object must match the format and the format must be exhausted. On success, the ``PyArg_Parse*`` functions return true, otherwise they return false and raise an appropriate exception. When the ``PyArg_Parse*`` functions fail due to conversion failure in one of the format units, the variables at the addresses corresponding to that and the following format units are left untouched." msgstr "" -#: ../../c-api/arg.rst:434 msgid "API Functions" msgstr "" -#: ../../c-api/arg.rst:438 -msgid "" -"Parse the parameters of a function that takes only positional parameters " -"into local variables. Returns true on success; on failure, it returns false " -"and raises the appropriate exception." +msgid "Parse the parameters of a function that takes only positional parameters into local variables. Returns true on success; on failure, it returns false and raises the appropriate exception." msgstr "" -#: ../../c-api/arg.rst:445 -msgid "" -"Identical to :c:func:`PyArg_ParseTuple`, except that it accepts a va_list " -"rather than a variable number of arguments." +msgid "Identical to :c:func:`PyArg_ParseTuple`, except that it accepts a va_list rather than a variable number of arguments." msgstr "" -#: ../../c-api/arg.rst:451 -msgid "" -"Parse the parameters of a function that takes both positional and keyword " -"parameters into local variables. The *keywords* argument is a ``NULL``-" -"terminated array of keyword parameter names specified as null-terminated " -"ASCII or UTF-8 encoded C strings. Empty names denote :ref:`positional-only " -"parameters `. Returns true on success; on " -"failure, it returns false and raises the appropriate exception." +msgid "Parse the parameters of a function that takes both positional and keyword parameters into local variables. The *keywords* argument is a ``NULL``-terminated array of keyword parameter names specified as null-terminated ASCII or UTF-8 encoded C strings. Empty names denote :ref:`positional-only parameters `. Returns true on success; on failure, it returns false and raises the appropriate exception." msgstr "" -#: ../../c-api/arg.rst:462 -msgid "" -"The *keywords* parameter declaration is :c:expr:`char * const *` in C " -"and :c:expr:`const char * const *` in C++. This can be overridden with " -"the :c:macro:`PY_CXX_CONST` macro." +msgid "The *keywords* parameter declaration is :c:expr:`char * const *` in C and :c:expr:`const char * const *` in C++. This can be overridden with the :c:macro:`PY_CXX_CONST` macro." msgstr "" -#: ../../c-api/arg.rst:466 -msgid "" -"Added support for :ref:`positional-only parameters `." +msgid "Added support for :ref:`positional-only parameters `." msgstr "" -#: ../../c-api/arg.rst:470 -msgid "" -"The *keywords* parameter has now type :c:expr:`char * const *` in C " -"and :c:expr:`const char * const *` in C++, instead of :c:expr:`char **`. " -"Added support for non-ASCII keyword parameter names." +msgid "The *keywords* parameter has now type :c:expr:`char * const *` in C and :c:expr:`const char * const *` in C++, instead of :c:expr:`char **`. Added support for non-ASCII keyword parameter names." msgstr "" -#: ../../c-api/arg.rst:479 -msgid "" -"Identical to :c:func:`PyArg_ParseTupleAndKeywords`, except that it accepts a " -"va_list rather than a variable number of arguments." +msgid "Identical to :c:func:`PyArg_ParseTupleAndKeywords`, except that it accepts a va_list rather than a variable number of arguments." msgstr "" -#: ../../c-api/arg.rst:485 -msgid "" -"Ensure that the keys in the keywords argument dictionary are strings. This " -"is only needed if :c:func:`PyArg_ParseTupleAndKeywords` is not used, since " -"the latter already does this check." +msgid "Ensure that the keys in the keywords argument dictionary are strings. This is only needed if :c:func:`PyArg_ParseTupleAndKeywords` is not used, since the latter already does this check." msgstr "" -#: ../../c-api/arg.rst:494 -msgid "" -"Parse the parameter of a function that takes a single positional parameter " -"into a local variable. Returns true on success; on failure, it returns " -"false and raises the appropriate exception." +msgid "Parse the parameter of a function that takes a single positional parameter into a local variable. Returns true on success; on failure, it returns false and raises the appropriate exception." msgstr "" -#: ../../c-api/arg.rst:498 msgid "Example::" msgstr "" -#: ../../c-api/arg.rst:500 msgid "" "// Function using METH_O calling convention\n" "static PyObject*\n" @@ -875,31 +455,12 @@ msgid "" "}" msgstr "" -#: ../../c-api/arg.rst:514 -msgid "" -"A simpler form of parameter retrieval which does not use a format string to " -"specify the types of the arguments. Functions which use this method to " -"retrieve their parameters should be declared as :c:macro:`METH_VARARGS` in " -"function or method tables. The tuple containing the actual parameters " -"should be passed as *args*; it must actually be a tuple. The length of the " -"tuple must be at least *min* and no more than *max*; *min* and *max* may be " -"equal. Additional arguments must be passed to the function, each of which " -"should be a pointer to a :c:expr:`PyObject*` variable; these will be filled " -"in with the values from *args*; they will contain :term:`borrowed references " -"`. The variables which correspond to optional parameters " -"not given by *args* will not be filled in; these should be initialized by " -"the caller. This function returns true on success and false if *args* is not " -"a tuple or contains the wrong number of elements; an exception will be set " -"if there was a failure." -msgstr "" - -#: ../../c-api/arg.rst:529 -msgid "" -"This is an example of the use of this function, taken from the sources for " -"the :mod:`!_weakref` helper module for weak references::" +msgid "A simpler form of parameter retrieval which does not use a format string to specify the types of the arguments. Functions which use this method to retrieve their parameters should be declared as :c:macro:`METH_VARARGS` in function or method tables. The tuple containing the actual parameters should be passed as *args*; it must actually be a tuple. The length of the tuple must be at least *min* and no more than *max*; *min* and *max* may be equal. Additional arguments must be passed to the function, each of which should be a pointer to a :c:expr:`PyObject*` variable; these will be filled in with the values from *args*; they will contain :term:`borrowed references `. The variables which correspond to optional parameters not given by *args* will not be filled in; these should be initialized by the caller. This function returns true on success and false if *args* is not a tuple or contains the wrong number of elements; an exception will be set if there was a failure." +msgstr "" + +msgid "This is an example of the use of this function, taken from the sources for the :mod:`!_weakref` helper module for weak references::" msgstr "" -#: ../../c-api/arg.rst:532 msgid "" "static PyObject *\n" "weakref_ref(PyObject *self, PyObject *args)\n" @@ -915,330 +476,188 @@ msgid "" "}" msgstr "" -#: ../../c-api/arg.rst:545 -msgid "" -"The call to :c:func:`PyArg_UnpackTuple` in this example is entirely " -"equivalent to this call to :c:func:`PyArg_ParseTuple`::" +msgid "The call to :c:func:`PyArg_UnpackTuple` in this example is entirely equivalent to this call to :c:func:`PyArg_ParseTuple`::" msgstr "" -#: ../../c-api/arg.rst:548 msgid "PyArg_ParseTuple(args, \"O|O:ref\", &object, &callback)" msgstr "" -#: ../../c-api/arg.rst:552 -msgid "" -"The value to be inserted, if any, before :c:expr:`char * const *` in the " -"*keywords* parameter declaration of :c:func:`PyArg_ParseTupleAndKeywords` " -"and :c:func:`PyArg_VaParseTupleAndKeywords`. Default empty for C and " -"``const`` for C++ (:c:expr:`const char * const *`). To override, define it " -"to the desired value before including :file:`Python.h`." +msgid "The value to be inserted, if any, before :c:expr:`char * const *` in the *keywords* parameter declaration of :c:func:`PyArg_ParseTupleAndKeywords` and :c:func:`PyArg_VaParseTupleAndKeywords`. Default empty for C and ``const`` for C++ (:c:expr:`const char * const *`). To override, define it to the desired value before including :file:`Python.h`." msgstr "" -#: ../../c-api/arg.rst:566 msgid "Building values" msgstr "" -#: ../../c-api/arg.rst:570 -msgid "" -"Create a new value based on a format string similar to those accepted by the " -"``PyArg_Parse*`` family of functions and a sequence of values. Returns the " -"value or ``NULL`` in the case of an error; an exception will be raised if " -"``NULL`` is returned." +msgid "Create a new value based on a format string similar to those accepted by the ``PyArg_Parse*`` family of functions and a sequence of values. Returns the value or ``NULL`` in the case of an error; an exception will be raised if ``NULL`` is returned." msgstr "" -#: ../../c-api/arg.rst:575 -msgid "" -":c:func:`Py_BuildValue` does not always build a tuple. It builds a tuple " -"only if its format string contains two or more format units. If the format " -"string is empty, it returns ``None``; if it contains exactly one format " -"unit, it returns whatever object is described by that format unit. To force " -"it to return a tuple of size 0 or one, parenthesize the format string." +msgid ":c:func:`Py_BuildValue` does not always build a tuple. It builds a tuple only if its format string contains two or more format units. If the format string is empty, it returns ``None``; if it contains exactly one format unit, it returns whatever object is described by that format unit. To force it to return a tuple of size 0 or one, parenthesize the format string." msgstr "" -#: ../../c-api/arg.rst:581 -msgid "" -"When memory buffers are passed as parameters to supply data to build " -"objects, as for the ``s`` and ``s#`` formats, the required data is copied. " -"Buffers provided by the caller are never referenced by the objects created " -"by :c:func:`Py_BuildValue`. In other words, if your code " -"invokes :c:func:`malloc` and passes the allocated memory " -"to :c:func:`Py_BuildValue`, your code is responsible for " -"calling :c:func:`free` for that memory once :c:func:`Py_BuildValue` returns." +msgid "When memory buffers are passed as parameters to supply data to build objects, as for the ``s`` and ``s#`` formats, the required data is copied. Buffers provided by the caller are never referenced by the objects created by :c:func:`Py_BuildValue`. In other words, if your code invokes :c:func:`malloc` and passes the allocated memory to :c:func:`Py_BuildValue`, your code is responsible for calling :c:func:`free` for that memory once :c:func:`Py_BuildValue` returns." msgstr "" -#: ../../c-api/arg.rst:589 -msgid "" -"In the following description, the quoted form is the format unit; the entry " -"in (round) parentheses is the Python object type that the format unit will " -"return; and the entry in [square] brackets is the type of the C value(s) to " -"be passed." +msgid "In the following description, the quoted form is the format unit; the entry in (round) parentheses is the Python object type that the format unit will return; and the entry in [square] brackets is the type of the C value(s) to be passed." msgstr "" -#: ../../c-api/arg.rst:593 -msgid "" -"The characters space, tab, colon and comma are ignored in format strings " -"(but not within format units such as ``s#``). This can be used to make long " -"format strings a tad more readable." +msgid "The characters space, tab, colon and comma are ignored in format strings (but not within format units such as ``s#``). This can be used to make long format strings a tad more readable." msgstr "" -#: ../../c-api/arg.rst:597 msgid "``s`` (:class:`str` or ``None``) [const char \\*]" msgstr "" -#: ../../c-api/arg.rst:598 -msgid "" -"Convert a null-terminated C string to a Python :class:`str` object using " -"``'utf-8'`` encoding. If the C string pointer is ``NULL``, ``None`` is used." +msgid "Convert a null-terminated C string to a Python :class:`str` object using ``'utf-8'`` encoding. If the C string pointer is ``NULL``, ``None`` is used." msgstr "" -#: ../../c-api/arg.rst:601 -msgid "" -"``s#`` (:class:`str` or ``None``) [const char \\*, :c:type:`Py_ssize_t`]" +msgid "``s#`` (:class:`str` or ``None``) [const char \\*, :c:type:`Py_ssize_t`]" msgstr "" -#: ../../c-api/arg.rst:602 -msgid "" -"Convert a C string and its length to a Python :class:`str` object using " -"``'utf-8'`` encoding. If the C string pointer is ``NULL``, the length is " -"ignored and ``None`` is returned." +msgid "Convert a C string and its length to a Python :class:`str` object using ``'utf-8'`` encoding. If the C string pointer is ``NULL``, the length is ignored and ``None`` is returned." msgstr "" -#: ../../c-api/arg.rst:606 msgid "``y`` (:class:`bytes`) [const char \\*]" msgstr "" -#: ../../c-api/arg.rst:607 -msgid "" -"This converts a C string to a Python :class:`bytes` object. If the C string " -"pointer is ``NULL``, ``None`` is returned." +msgid "This converts a C string to a Python :class:`bytes` object. If the C string pointer is ``NULL``, ``None`` is returned." msgstr "" -#: ../../c-api/arg.rst:610 msgid "``y#`` (:class:`bytes`) [const char \\*, :c:type:`Py_ssize_t`]" msgstr "" -#: ../../c-api/arg.rst:611 -msgid "" -"This converts a C string and its lengths to a Python object. If the C " -"string pointer is ``NULL``, ``None`` is returned." +msgid "This converts a C string and its lengths to a Python object. If the C string pointer is ``NULL``, ``None`` is returned." msgstr "" -#: ../../c-api/arg.rst:615 ../../c-api/arg.rst:631 msgid "Same as ``s``." msgstr "" -#: ../../c-api/arg.rst:617 -msgid "" -"``z#`` (:class:`str` or ``None``) [const char \\*, :c:type:`Py_ssize_t`]" +msgid "``z#`` (:class:`str` or ``None``) [const char \\*, :c:type:`Py_ssize_t`]" msgstr "" -#: ../../c-api/arg.rst:618 ../../c-api/arg.rst:634 msgid "Same as ``s#``." msgstr "" -#: ../../c-api/arg.rst:620 msgid "``u`` (:class:`str`) [const wchar_t \\*]" msgstr "" -#: ../../c-api/arg.rst:621 -msgid "" -"Convert a null-terminated :c:type:`wchar_t` buffer of Unicode (UTF-16 or " -"UCS-4) data to a Python Unicode object. If the Unicode buffer pointer is " -"``NULL``, ``None`` is returned." +msgid "Convert a null-terminated :c:type:`wchar_t` buffer of Unicode (UTF-16 or UCS-4) data to a Python Unicode object. If the Unicode buffer pointer is ``NULL``, ``None`` is returned." msgstr "" -#: ../../c-api/arg.rst:625 msgid "``u#`` (:class:`str`) [const wchar_t \\*, :c:type:`Py_ssize_t`]" msgstr "" -#: ../../c-api/arg.rst:626 -msgid "" -"Convert a Unicode (UTF-16 or UCS-4) data buffer and its length to a Python " -"Unicode object. If the Unicode buffer pointer is ``NULL``, the length is " -"ignored and ``None`` is returned." +msgid "Convert a Unicode (UTF-16 or UCS-4) data buffer and its length to a Python Unicode object. If the Unicode buffer pointer is ``NULL``, the length is ignored and ``None`` is returned." msgstr "" -#: ../../c-api/arg.rst:630 msgid "``U`` (:class:`str` or ``None``) [const char \\*]" msgstr "" -#: ../../c-api/arg.rst:633 -msgid "" -"``U#`` (:class:`str` or ``None``) [const char \\*, :c:type:`Py_ssize_t`]" +msgid "``U#`` (:class:`str` or ``None``) [const char \\*, :c:type:`Py_ssize_t`]" msgstr "" -#: ../../c-api/arg.rst:637 msgid "Convert a plain C :c:expr:`int` to a Python integer object." msgstr "" -#: ../../c-api/arg.rst:639 msgid "``b`` (:class:`int`) [char]" msgstr "" -#: ../../c-api/arg.rst:640 msgid "Convert a plain C :c:expr:`char` to a Python integer object." msgstr "" -#: ../../c-api/arg.rst:643 msgid "Convert a plain C :c:expr:`short int` to a Python integer object." msgstr "" -#: ../../c-api/arg.rst:646 msgid "Convert a C :c:expr:`long int` to a Python integer object." msgstr "" -#: ../../c-api/arg.rst:649 msgid "Convert a C :c:expr:`unsigned char` to a Python integer object." msgstr "" -#: ../../c-api/arg.rst:652 msgid "Convert a C :c:expr:`unsigned short int` to a Python integer object." msgstr "" -#: ../../c-api/arg.rst:655 msgid "Convert a C :c:expr:`unsigned int` to a Python integer object." msgstr "" -#: ../../c-api/arg.rst:658 msgid "Convert a C :c:expr:`unsigned long` to a Python integer object." msgstr "" -#: ../../c-api/arg.rst:661 msgid "Convert a C :c:expr:`long long` to a Python integer object." msgstr "" -#: ../../c-api/arg.rst:666 msgid "Convert a C :c:expr:`unsigned long long` to a Python integer object." msgstr "" -#: ../../c-api/arg.rst:669 msgid "Convert a C :c:type:`Py_ssize_t` to a Python integer." msgstr "" -#: ../../c-api/arg.rst:672 msgid "Convert a C :c:expr:`int` to a Python :class:`bool` object." msgstr "" -#: ../../c-api/arg.rst:674 -msgid "" -"Be aware that this format requires an ``int`` argument. Unlike most other " -"contexts in C, variadic arguments are not coerced to a suitable type " -"automatically. You can convert another type (for example, a pointer or a " -"float) to a suitable ``int`` value using ``(x) ? 1 : 0`` or ``!!x``." +msgid "Be aware that this format requires an ``int`` argument. Unlike most other contexts in C, variadic arguments are not coerced to a suitable type automatically. You can convert another type (for example, a pointer or a float) to a suitable ``int`` value using ``(x) ? 1 : 0`` or ``!!x``." msgstr "" -#: ../../c-api/arg.rst:682 msgid "``c`` (:class:`bytes` of length 1) [char]" msgstr "" -#: ../../c-api/arg.rst:683 -msgid "" -"Convert a C :c:expr:`int` representing a byte to a Python :class:`bytes` " -"object of length 1." +msgid "Convert a C :c:expr:`int` representing a byte to a Python :class:`bytes` object of length 1." msgstr "" -#: ../../c-api/arg.rst:687 -msgid "" -"Convert a C :c:expr:`int` representing a character to Python :class:`str` " -"object of length 1." +msgid "Convert a C :c:expr:`int` representing a character to Python :class:`str` object of length 1." msgstr "" -#: ../../c-api/arg.rst:691 msgid "Convert a C :c:expr:`double` to a Python floating-point number." msgstr "" -#: ../../c-api/arg.rst:694 msgid "Convert a C :c:expr:`float` to a Python floating-point number." msgstr "" -#: ../../c-api/arg.rst:696 msgid "``D`` (:class:`complex`) [Py_complex \\*]" msgstr "" -#: ../../c-api/arg.rst:697 msgid "Convert a C :c:type:`Py_complex` structure to a Python complex number." msgstr "" -#: ../../c-api/arg.rst:700 -msgid "" -"Pass a Python object untouched but create a new :term:`strong reference` to " -"it (i.e. its reference count is incremented by one). If the object passed in " -"is a ``NULL`` pointer, it is assumed that this was caused because the call " -"producing the argument found an error and set an exception. " -"Therefore, :c:func:`Py_BuildValue` will return ``NULL`` but won't raise an " -"exception. If no exception has been raised yet, :exc:`SystemError` is set." +msgid "Pass a Python object untouched but create a new :term:`strong reference` to it (i.e. its reference count is incremented by one). If the object passed in is a ``NULL`` pointer, it is assumed that this was caused because the call producing the argument found an error and set an exception. Therefore, :c:func:`Py_BuildValue` will return ``NULL`` but won't raise an exception. If no exception has been raised yet, :exc:`SystemError` is set." msgstr "" -#: ../../c-api/arg.rst:709 msgid "``S`` (object) [PyObject \\*]" msgstr "" -#: ../../c-api/arg.rst:710 msgid "Same as ``O``." msgstr "" -#: ../../c-api/arg.rst:712 msgid "``N`` (object) [PyObject \\*]" msgstr "" -#: ../../c-api/arg.rst:713 -msgid "" -"Same as ``O``, except it doesn't create a new :term:`strong reference`. " -"Useful when the object is created by a call to an object constructor in the " -"argument list." +msgid "Same as ``O``, except it doesn't create a new :term:`strong reference`. Useful when the object is created by a call to an object constructor in the argument list." msgstr "" -#: ../../c-api/arg.rst:717 msgid "``O&`` (object) [*converter*, *anything*]" msgstr "" -#: ../../c-api/arg.rst:718 -msgid "" -"Convert *anything* to a Python object through a *converter* function. The " -"function is called with *anything* (which should be compatible " -"with :c:expr:`void*`) as its argument and should return a \"new\" Python " -"object, or ``NULL`` if an error occurred." +msgid "Convert *anything* to a Python object through a *converter* function. The function is called with *anything* (which should be compatible with :c:expr:`void*`) as its argument and should return a \"new\" Python object, or ``NULL`` if an error occurred." msgstr "" -#: ../../c-api/arg.rst:723 msgid "``(items)`` (:class:`tuple`) [*matching-items*]" msgstr "" -#: ../../c-api/arg.rst:724 -msgid "" -"Convert a sequence of C values to a Python tuple with the same number of " -"items." +msgid "Convert a sequence of C values to a Python tuple with the same number of items." msgstr "" -#: ../../c-api/arg.rst:726 msgid "``[items]`` (:class:`list`) [*matching-items*]" msgstr "" -#: ../../c-api/arg.rst:727 -msgid "" -"Convert a sequence of C values to a Python list with the same number of " -"items." +msgid "Convert a sequence of C values to a Python list with the same number of items." msgstr "" -#: ../../c-api/arg.rst:729 msgid "``{items}`` (:class:`dict`) [*matching-items*]" msgstr "" -#: ../../c-api/arg.rst:730 -msgid "" -"Convert a sequence of C values to a Python dictionary. Each pair of " -"consecutive C values adds one item to the dictionary, serving as key and " -"value, respectively." +msgid "Convert a sequence of C values to a Python dictionary. Each pair of consecutive C values adds one item to the dictionary, serving as key and value, respectively." msgstr "" -#: ../../c-api/arg.rst:734 -msgid "" -"If there is an error in the format string, the :exc:`SystemError` exception " -"is set and ``NULL`` returned." +msgid "If there is an error in the format string, the :exc:`SystemError` exception is set and ``NULL`` returned." msgstr "" -#: ../../c-api/arg.rst:739 -msgid "" -"Identical to :c:func:`Py_BuildValue`, except that it accepts a va_list " -"rather than a variable number of arguments." +msgid "Identical to :c:func:`Py_BuildValue`, except that it accepts a va_list rather than a variable number of arguments." msgstr "" diff --git a/c-api/bool.po b/c-api/bool.po index cb695817..fbd7ca7e 100644 --- a/c-api/bool.po +++ b/c-api/bool.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:47+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -22,71 +22,35 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../c-api/bool.rst:6 msgid "Boolean Objects" msgstr "اشیاء بولین" -#: ../../c-api/bool.rst:8 -msgid "" -"Booleans in Python are implemented as a subclass of integers. There are " -"only two booleans, :c:data:`Py_False` and :c:data:`Py_True`. As such, the " -"normal creation and deletion functions don't apply to booleans. The " -"following macros are available, however." -msgstr "" -"مقدارهای بولین در پایتون به‌عنوان زیرکلاسی از اعداد صحیح پیاده‌سازی شده‌اند. " -"تنها دو مقدار بولین وجود دارد: :c:data:`Py_False` و :c:data:`Py_True`. " -"بنابراین، توابع معمول ایجاد و حذف برای مقدارهای بولین کاربرد ندارند. با این " -"حال، ماکروهای زیر در دسترس هستند." +msgid "Booleans in Python are implemented as a subclass of integers. There are only two booleans, :c:data:`Py_False` and :c:data:`Py_True`. As such, the normal creation and deletion functions don't apply to booleans. The following macros are available, however." +msgstr "مقدارهای بولین در پایتون به‌عنوان زیرکلاسی از اعداد صحیح پیاده‌سازی شده‌اند. تنها دو مقدار بولین وجود دارد: :c:data:`Py_False` و :c:data:`Py_True`. بنابراین، توابع معمول ایجاد و حذف برای مقدارهای بولین کاربرد ندارند. با این حال، ماکروهای زیر در دسترس هستند." -#: ../../c-api/bool.rst:16 -msgid "" -"This instance of :c:type:`PyTypeObject` represents the Python boolean type; " -"it is the same object as :class:`bool` in the Python layer." -msgstr "" -"این نمونه از :c:type:`PyTypeObject` نوع داده‌ی بولین پایتون را نشان می‌دهد؛ " -"این همان شیء‌ای است که در لایه‌ی پایتون با نام :class:`bool` شناخته می‌شود." +msgid "This instance of :c:type:`PyTypeObject` represents the Python boolean type; it is the same object as :class:`bool` in the Python layer." +msgstr "این نمونه از :c:type:`PyTypeObject` نوع داده‌ی بولین پایتون را نشان می‌دهد؛ این همان شیء‌ای است که در لایه‌ی پایتون با نام :class:`bool` شناخته می‌شود." -#: ../../c-api/bool.rst:22 -msgid "" -"Return true if *o* is of type :c:data:`PyBool_Type`. This function always " -"succeeds." -msgstr "" -"اگر *o* از نوع :c:data:`PyBool_Type` باشد، مقدار True را برمی‌گرداند. این " -"تابع همیشه با موفقیت اجرا می‌شود." +msgid "Return true if *o* is of type :c:data:`PyBool_Type`. This function always succeeds." +msgstr "اگر *o* از نوع :c:data:`PyBool_Type` باشد، مقدار True را برمی‌گرداند. این تابع همیشه با موفقیت اجرا می‌شود." -#: ../../c-api/bool.rst:28 -msgid "" -"The Python ``False`` object. This object has no methods and " -"is :term:`immortal`." -msgstr "" -"شیء ``False`` در پایتون. این شیء هیچ متدی ندارد و :term:`immortal` است." +msgid "The Python ``False`` object. This object has no methods and is :term:`immortal`." +msgstr "شیء ``False`` در پایتون. این شیء هیچ متدی ندارد و :term:`immortal` است." -#: ../../c-api/bool.rst:31 msgid ":c:data:`Py_False` is :term:`immortal`." msgstr ":c:data:`Py_False` :term:`immortal` است." -#: ../../c-api/bool.rst:37 -msgid "" -"The Python ``True`` object. This object has no methods and " -"is :term:`immortal`." +msgid "The Python ``True`` object. This object has no methods and is :term:`immortal`." msgstr "شیء ``True`` در پایتون. این شیء هیچ متدی ندارد و :term:`immortal` است." -#: ../../c-api/bool.rst:40 msgid ":c:data:`Py_True` is :term:`immortal`." msgstr ":c:data:`Py_True` :term:`immortal` است." -#: ../../c-api/bool.rst:46 msgid "Return :c:data:`Py_False` from a function." msgstr ":c:data:`Py_False` را از یک تابع برگردانید." -#: ../../c-api/bool.rst:51 msgid "Return :c:data:`Py_True` from a function." msgstr ":c:data:`Py_True` را از یک تابع برگردانید." -#: ../../c-api/bool.rst:56 -msgid "" -"Return :c:data:`Py_True` or :c:data:`Py_False`, depending on the truth value " -"of *v*." -msgstr "" -":c:data:`Py_True` یا :c:data:`Py_False` را، بسته به مقدار صحت (truth value) " -"*v*، برگردانید." +msgid "Return :c:data:`Py_True` or :c:data:`Py_False`, depending on the truth value of *v*." +msgstr ":c:data:`Py_True` یا :c:data:`Py_False` را، بسته به مقدار صحت (truth value) *v*، برگردانید." diff --git a/c-api/buffer.po b/c-api/buffer.po index 94ae2500..2d11569e 100644 --- a/c-api/buffer.po +++ b/c-api/buffer.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:47+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,553 +24,266 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../c-api/buffer.rst:11 msgid "Buffer Protocol" msgstr "" -#: ../../c-api/buffer.rst:18 -msgid "" -"Certain objects available in Python wrap access to an underlying memory " -"array or *buffer*. Such objects include the built-in :class:`bytes` " -"and :class:`bytearray`, and some extension types like :class:`array.array`. " -"Third-party libraries may define their own types for special purposes, such " -"as image processing or numeric analysis." +msgid "Certain objects available in Python wrap access to an underlying memory array or *buffer*. Such objects include the built-in :class:`bytes` and :class:`bytearray`, and some extension types like :class:`array.array`. Third-party libraries may define their own types for special purposes, such as image processing or numeric analysis." msgstr "" -#: ../../c-api/buffer.rst:24 -msgid "" -"While each of these types have their own semantics, they share the common " -"characteristic of being backed by a possibly large memory buffer. It is " -"then desirable, in some situations, to access that buffer directly and " -"without intermediate copying." +msgid "While each of these types have their own semantics, they share the common characteristic of being backed by a possibly large memory buffer. It is then desirable, in some situations, to access that buffer directly and without intermediate copying." msgstr "" -#: ../../c-api/buffer.rst:29 -msgid "" -"Python provides such a facility at the C and Python level in the form of " -"the :ref:`buffer protocol `. This protocol has two sides:" +msgid "Python provides such a facility at the C and Python level in the form of the :ref:`buffer protocol `. This protocol has two sides:" msgstr "" -#: ../../c-api/buffer.rst:34 -msgid "" -"on the producer side, a type can export a \"buffer interface\" which allows " -"objects of that type to expose information about their underlying buffer. " -"This interface is described in the section :ref:`buffer-structs`; for Python " -"see :ref:`python-buffer-protocol`." +msgid "on the producer side, a type can export a \"buffer interface\" which allows objects of that type to expose information about their underlying buffer. This interface is described in the section :ref:`buffer-structs`; for Python see :ref:`python-buffer-protocol`." msgstr "" -#: ../../c-api/buffer.rst:39 -msgid "" -"on the consumer side, several means are available to obtain a pointer to the " -"raw underlying data of an object (for example a method parameter). For " -"Python see :class:`memoryview`." +msgid "on the consumer side, several means are available to obtain a pointer to the raw underlying data of an object (for example a method parameter). For Python see :class:`memoryview`." msgstr "" -#: ../../c-api/buffer.rst:43 -msgid "" -"Simple objects such as :class:`bytes` and :class:`bytearray` expose their " -"underlying buffer in byte-oriented form. Other forms are possible; for " -"example, the elements exposed by an :class:`array.array` can be multi-byte " -"values." +msgid "Simple objects such as :class:`bytes` and :class:`bytearray` expose their underlying buffer in byte-oriented form. Other forms are possible; for example, the elements exposed by an :class:`array.array` can be multi-byte values." msgstr "" -#: ../../c-api/buffer.rst:47 -msgid "" -"An example consumer of the buffer interface is " -"the :meth:`~io.BufferedIOBase.write` method of file objects: any object that " -"can export a series of bytes through the buffer interface can be written to " -"a file. While :meth:`!write` only needs read-only access to the internal " -"contents of the object passed to it, other methods such " -"as :meth:`~io.BufferedIOBase.readinto` need write access to the contents of " -"their argument. The buffer interface allows objects to selectively allow or " -"reject exporting of read-write and read-only buffers." +msgid "An example consumer of the buffer interface is the :meth:`~io.BufferedIOBase.write` method of file objects: any object that can export a series of bytes through the buffer interface can be written to a file. While :meth:`!write` only needs read-only access to the internal contents of the object passed to it, other methods such as :meth:`~io.BufferedIOBase.readinto` need write access to the contents of their argument. The buffer interface allows objects to selectively allow or reject exporting of read-write and read-only buffers." msgstr "" -#: ../../c-api/buffer.rst:55 -msgid "" -"There are two ways for a consumer of the buffer interface to acquire a " -"buffer over a target object:" +msgid "There are two ways for a consumer of the buffer interface to acquire a buffer over a target object:" msgstr "" -#: ../../c-api/buffer.rst:58 msgid "call :c:func:`PyObject_GetBuffer` with the right parameters;" msgstr "" -#: ../../c-api/buffer.rst:60 -msgid "" -"call :c:func:`PyArg_ParseTuple` (or one of its siblings) with one of the " -"``y*``, ``w*`` or ``s*`` :ref:`format codes `." +msgid "call :c:func:`PyArg_ParseTuple` (or one of its siblings) with one of the ``y*``, ``w*`` or ``s*`` :ref:`format codes `." msgstr "" -#: ../../c-api/buffer.rst:63 -msgid "" -"In both cases, :c:func:`PyBuffer_Release` must be called when the buffer " -"isn't needed anymore. Failure to do so could lead to various issues such as " -"resource leaks." +msgid "In both cases, :c:func:`PyBuffer_Release` must be called when the buffer isn't needed anymore. Failure to do so could lead to various issues such as resource leaks." msgstr "" -#: ../../c-api/buffer.rst:69 -msgid "" -"The buffer protocol is now accessible in Python, see :ref:`python-buffer-" -"protocol` and :class:`memoryview`." +msgid "The buffer protocol is now accessible in Python, see :ref:`python-buffer-protocol` and :class:`memoryview`." msgstr "" -#: ../../c-api/buffer.rst:75 msgid "Buffer structure" msgstr "" -#: ../../c-api/buffer.rst:77 -msgid "" -"Buffer structures (or simply \"buffers\") are useful as a way to expose the " -"binary data from another object to the Python programmer. They can also be " -"used as a zero-copy slicing mechanism. Using their ability to reference a " -"block of memory, it is possible to expose any data to the Python programmer " -"quite easily. The memory could be a large, constant array in a C extension, " -"it could be a raw block of memory for manipulation before passing to an " -"operating system library, or it could be used to pass around structured data " -"in its native, in-memory format." +msgid "Buffer structures (or simply \"buffers\") are useful as a way to expose the binary data from another object to the Python programmer. They can also be used as a zero-copy slicing mechanism. Using their ability to reference a block of memory, it is possible to expose any data to the Python programmer quite easily. The memory could be a large, constant array in a C extension, it could be a raw block of memory for manipulation before passing to an operating system library, or it could be used to pass around structured data in its native, in-memory format." msgstr "" -#: ../../c-api/buffer.rst:86 -msgid "" -"Contrary to most data types exposed by the Python interpreter, buffers are " -"not :c:type:`PyObject` pointers but rather simple C structures. This allows " -"them to be created and copied very simply. When a generic wrapper around a " -"buffer is needed, a :ref:`memoryview ` object can be " -"created." +msgid "Contrary to most data types exposed by the Python interpreter, buffers are not :c:type:`PyObject` pointers but rather simple C structures. This allows them to be created and copied very simply. When a generic wrapper around a buffer is needed, a :ref:`memoryview ` object can be created." msgstr "" -#: ../../c-api/buffer.rst:92 -msgid "" -"For short instructions how to write an exporting object, see :ref:`Buffer " -"Object Structures `. For obtaining a buffer, " -"see :c:func:`PyObject_GetBuffer`." +msgid "For short instructions how to write an exporting object, see :ref:`Buffer Object Structures `. For obtaining a buffer, see :c:func:`PyObject_GetBuffer`." msgstr "" -#: ../../c-api/buffer.rst:100 -msgid "" -"A pointer to the start of the logical structure described by the buffer " -"fields. This can be any location within the underlying physical memory block " -"of the exporter. For example, with negative :c:member:`~Py_buffer.strides` " -"the value may point to the end of the memory block." +msgid "A pointer to the start of the logical structure described by the buffer fields. This can be any location within the underlying physical memory block of the exporter. For example, with negative :c:member:`~Py_buffer.strides` the value may point to the end of the memory block." msgstr "" -#: ../../c-api/buffer.rst:105 -msgid "" -"For :term:`contiguous` arrays, the value points to the beginning of the " -"memory block." +msgid "For :term:`contiguous` arrays, the value points to the beginning of the memory block." msgstr "" -#: ../../c-api/buffer.rst:110 -msgid "" -"A new reference to the exporting object. The reference is owned by the " -"consumer and automatically released (i.e. reference count decremented) and " -"set to ``NULL`` by :c:func:`PyBuffer_Release`. The field is the equivalent " -"of the return value of any standard C-API function." +msgid "A new reference to the exporting object. The reference is owned by the consumer and automatically released (i.e. reference count decremented) and set to ``NULL`` by :c:func:`PyBuffer_Release`. The field is the equivalent of the return value of any standard C-API function." msgstr "" -#: ../../c-api/buffer.rst:117 -msgid "" -"As a special case, for *temporary* buffers that are wrapped " -"by :c:func:`PyMemoryView_FromBuffer` or :c:func:`PyBuffer_FillInfo` this " -"field is ``NULL``. In general, exporting objects MUST NOT use this scheme." +msgid "As a special case, for *temporary* buffers that are wrapped by :c:func:`PyMemoryView_FromBuffer` or :c:func:`PyBuffer_FillInfo` this field is ``NULL``. In general, exporting objects MUST NOT use this scheme." msgstr "" -#: ../../c-api/buffer.rst:124 -msgid "" -"``product(shape) * itemsize``. For contiguous arrays, this is the length of " -"the underlying memory block. For non-contiguous arrays, it is the length " -"that the logical structure would have if it were copied to a contiguous " -"representation." +msgid "``product(shape) * itemsize``. For contiguous arrays, this is the length of the underlying memory block. For non-contiguous arrays, it is the length that the logical structure would have if it were copied to a contiguous representation." msgstr "" -#: ../../c-api/buffer.rst:129 -msgid "" -"Accessing ``((char *)buf)[0] up to ((char *)buf)[len-1]`` is only valid if " -"the buffer has been obtained by a request that guarantees contiguity. In " -"most cases such a request will be :c:macro:`PyBUF_SIMPLE` " -"or :c:macro:`PyBUF_WRITABLE`." +msgid "Accessing ``((char *)buf)[0] up to ((char *)buf)[len-1]`` is only valid if the buffer has been obtained by a request that guarantees contiguity. In most cases such a request will be :c:macro:`PyBUF_SIMPLE` or :c:macro:`PyBUF_WRITABLE`." msgstr "" -#: ../../c-api/buffer.rst:135 -msgid "" -"An indicator of whether the buffer is read-only. This field is controlled by " -"the :c:macro:`PyBUF_WRITABLE` flag." +msgid "An indicator of whether the buffer is read-only. This field is controlled by the :c:macro:`PyBUF_WRITABLE` flag." msgstr "" -#: ../../c-api/buffer.rst:140 -msgid "" -"Item size in bytes of a single element. Same as the value " -"of :func:`struct.calcsize` called on non-" -"``NULL`` :c:member:`~Py_buffer.format` values." +msgid "Item size in bytes of a single element. Same as the value of :func:`struct.calcsize` called on non-``NULL`` :c:member:`~Py_buffer.format` values." msgstr "" -#: ../../c-api/buffer.rst:143 -msgid "" -"Important exception: If a consumer requests a buffer without " -"the :c:macro:`PyBUF_FORMAT` flag, :c:member:`~Py_buffer.format` will be set " -"to ``NULL``, but :c:member:`~Py_buffer.itemsize` still has the value for " -"the original format." +msgid "Important exception: If a consumer requests a buffer without the :c:macro:`PyBUF_FORMAT` flag, :c:member:`~Py_buffer.format` will be set to ``NULL``, but :c:member:`~Py_buffer.itemsize` still has the value for the original format." msgstr "" -#: ../../c-api/buffer.rst:148 -msgid "" -"If :c:member:`~Py_buffer.shape` is present, the equality ``product(shape) * " -"itemsize == len`` still holds and the consumer can " -"use :c:member:`~Py_buffer.itemsize` to navigate the buffer." +msgid "If :c:member:`~Py_buffer.shape` is present, the equality ``product(shape) * itemsize == len`` still holds and the consumer can use :c:member:`~Py_buffer.itemsize` to navigate the buffer." msgstr "" -#: ../../c-api/buffer.rst:152 -msgid "" -"If :c:member:`~Py_buffer.shape` is ``NULL`` as a result of " -"a :c:macro:`PyBUF_SIMPLE` or a :c:macro:`PyBUF_WRITABLE` request, the " -"consumer must disregard :c:member:`~Py_buffer.itemsize` and assume " -"``itemsize == 1``." +msgid "If :c:member:`~Py_buffer.shape` is ``NULL`` as a result of a :c:macro:`PyBUF_SIMPLE` or a :c:macro:`PyBUF_WRITABLE` request, the consumer must disregard :c:member:`~Py_buffer.itemsize` and assume ``itemsize == 1``." msgstr "" -#: ../../c-api/buffer.rst:158 -msgid "" -"A *NULL* terminated string in :mod:`struct` module style syntax describing " -"the contents of a single item. If this is ``NULL``, ``\"B\"`` (unsigned " -"bytes) is assumed." +msgid "A *NULL* terminated string in :mod:`struct` module style syntax describing the contents of a single item. If this is ``NULL``, ``\"B\"`` (unsigned bytes) is assumed." msgstr "" -#: ../../c-api/buffer.rst:162 msgid "This field is controlled by the :c:macro:`PyBUF_FORMAT` flag." msgstr "" -#: ../../c-api/buffer.rst:166 -msgid "" -"The number of dimensions the memory represents as an n-dimensional array. If " -"it is ``0``, :c:member:`~Py_buffer.buf` points to a single item representing " -"a scalar. In this " -"case, :c:member:`~Py_buffer.shape`, :c:member:`~Py_buffer.strides` " -"and :c:member:`~Py_buffer.suboffsets` MUST be ``NULL``. The maximum number " -"of dimensions is given by :c:macro:`PyBUF_MAX_NDIM`." +msgid "The number of dimensions the memory represents as an n-dimensional array. If it is ``0``, :c:member:`~Py_buffer.buf` points to a single item representing a scalar. In this case, :c:member:`~Py_buffer.shape`, :c:member:`~Py_buffer.strides` and :c:member:`~Py_buffer.suboffsets` MUST be ``NULL``. The maximum number of dimensions is given by :c:macro:`PyBUF_MAX_NDIM`." msgstr "" -#: ../../c-api/buffer.rst:174 -msgid "" -"An array of :c:type:`Py_ssize_t` of length :c:member:`~Py_buffer.ndim` " -"indicating the shape of the memory as an n-dimensional array. Note that " -"``shape[0] * ... * shape[ndim-1] * itemsize`` MUST be equal " -"to :c:member:`~Py_buffer.len`." +msgid "An array of :c:type:`Py_ssize_t` of length :c:member:`~Py_buffer.ndim` indicating the shape of the memory as an n-dimensional array. Note that ``shape[0] * ... * shape[ndim-1] * itemsize`` MUST be equal to :c:member:`~Py_buffer.len`." msgstr "" -#: ../../c-api/buffer.rst:179 -msgid "" -"Shape values are restricted to ``shape[n] >= 0``. The case ``shape[n] == 0`` " -"requires special attention. See `complex arrays`_ for further information." +msgid "Shape values are restricted to ``shape[n] >= 0``. The case ``shape[n] == 0`` requires special attention. See `complex arrays`_ for further information." msgstr "" -#: ../../c-api/buffer.rst:183 msgid "The shape array is read-only for the consumer." msgstr "" -#: ../../c-api/buffer.rst:187 -msgid "" -"An array of :c:type:`Py_ssize_t` of length :c:member:`~Py_buffer.ndim` " -"giving the number of bytes to skip to get to a new element in each dimension." +msgid "An array of :c:type:`Py_ssize_t` of length :c:member:`~Py_buffer.ndim` giving the number of bytes to skip to get to a new element in each dimension." msgstr "" -#: ../../c-api/buffer.rst:191 -msgid "" -"Stride values can be any integer. For regular arrays, strides are usually " -"positive, but a consumer MUST be able to handle the case ``strides[n] <= " -"0``. See `complex arrays`_ for further information." +msgid "Stride values can be any integer. For regular arrays, strides are usually positive, but a consumer MUST be able to handle the case ``strides[n] <= 0``. See `complex arrays`_ for further information." msgstr "" -#: ../../c-api/buffer.rst:195 msgid "The strides array is read-only for the consumer." msgstr "" -#: ../../c-api/buffer.rst:199 -msgid "" -"An array of :c:type:`Py_ssize_t` of length :c:member:`~Py_buffer.ndim`. If " -"``suboffsets[n] >= 0``, the values stored along the nth dimension are " -"pointers and the suboffset value dictates how many bytes to add to each " -"pointer after de-referencing. A suboffset value that is negative indicates " -"that no de-referencing should occur (striding in a contiguous memory block)." +msgid "An array of :c:type:`Py_ssize_t` of length :c:member:`~Py_buffer.ndim`. If ``suboffsets[n] >= 0``, the values stored along the nth dimension are pointers and the suboffset value dictates how many bytes to add to each pointer after de-referencing. A suboffset value that is negative indicates that no de-referencing should occur (striding in a contiguous memory block)." msgstr "" -#: ../../c-api/buffer.rst:206 -msgid "" -"If all suboffsets are negative (i.e. no de-referencing is needed), then this " -"field must be ``NULL`` (the default value)." +msgid "If all suboffsets are negative (i.e. no de-referencing is needed), then this field must be ``NULL`` (the default value)." msgstr "" -#: ../../c-api/buffer.rst:209 -msgid "" -"This type of array representation is used by the Python Imaging Library " -"(PIL). See `complex arrays`_ for further information how to access elements " -"of such an array." +msgid "This type of array representation is used by the Python Imaging Library (PIL). See `complex arrays`_ for further information how to access elements of such an array." msgstr "" -#: ../../c-api/buffer.rst:213 msgid "The suboffsets array is read-only for the consumer." msgstr "" -#: ../../c-api/buffer.rst:217 -msgid "" -"This is for use internally by the exporting object. For example, this might " -"be re-cast as an integer by the exporter and used to store flags about " -"whether or not the shape, strides, and suboffsets arrays must be freed when " -"the buffer is released. The consumer MUST NOT alter this value." +msgid "This is for use internally by the exporting object. For example, this might be re-cast as an integer by the exporter and used to store flags about whether or not the shape, strides, and suboffsets arrays must be freed when the buffer is released. The consumer MUST NOT alter this value." msgstr "" -#: ../../c-api/buffer.rst:224 msgid "Constants:" msgstr "" -#: ../../c-api/buffer.rst:228 -msgid "" -"The maximum number of dimensions the memory represents. Exporters MUST " -"respect this limit, consumers of multi-dimensional buffers SHOULD be able to " -"handle up to :c:macro:`!PyBUF_MAX_NDIM` dimensions. Currently set to 64." +msgid "The maximum number of dimensions the memory represents. Exporters MUST respect this limit, consumers of multi-dimensional buffers SHOULD be able to handle up to :c:macro:`!PyBUF_MAX_NDIM` dimensions. Currently set to 64." msgstr "" -#: ../../c-api/buffer.rst:237 msgid "Buffer request types" msgstr "" -#: ../../c-api/buffer.rst:239 -msgid "" -"Buffers are usually obtained by sending a buffer request to an exporting " -"object via :c:func:`PyObject_GetBuffer`. Since the complexity of the logical " -"structure of the memory can vary drastically, the consumer uses the *flags* " -"argument to specify the exact buffer type it can handle." +msgid "Buffers are usually obtained by sending a buffer request to an exporting object via :c:func:`PyObject_GetBuffer`. Since the complexity of the logical structure of the memory can vary drastically, the consumer uses the *flags* argument to specify the exact buffer type it can handle." msgstr "" -#: ../../c-api/buffer.rst:244 -msgid "" -"All :c:type:`Py_buffer` fields are unambiguously defined by the request type." +msgid "All :c:type:`Py_buffer` fields are unambiguously defined by the request type." msgstr "" -#: ../../c-api/buffer.rst:248 msgid "request-independent fields" msgstr "" -#: ../../c-api/buffer.rst:249 -msgid "" -"The following fields are not influenced by *flags* and must always be filled " -"in with the correct " -"values: :c:member:`~Py_buffer.obj`, :c:member:`~Py_buffer.buf`, :c:member:`~Py_buffer.len`, :c:member:`~Py_buffer.itemsize`, :c:member:`~Py_buffer.ndim`." +msgid "The following fields are not influenced by *flags* and must always be filled in with the correct values: :c:member:`~Py_buffer.obj`, :c:member:`~Py_buffer.buf`, :c:member:`~Py_buffer.len`, :c:member:`~Py_buffer.itemsize`, :c:member:`~Py_buffer.ndim`." msgstr "" -#: ../../c-api/buffer.rst:254 msgid "readonly, format" msgstr "" -#: ../../c-api/buffer.rst:258 -msgid "" -"Controls the :c:member:`~Py_buffer.readonly` field. If set, the exporter " -"MUST provide a writable buffer or else report failure. Otherwise, the " -"exporter MAY provide either a read-only or writable buffer, but the choice " -"MUST be consistent for all consumers. For example, :c:expr:`PyBUF_SIMPLE | " -"PyBUF_WRITABLE` can be used to request a simple writable buffer." +msgid "Controls the :c:member:`~Py_buffer.readonly` field. If set, the exporter MUST provide a writable buffer or else report failure. Otherwise, the exporter MAY provide either a read-only or writable buffer, but the choice MUST be consistent for all consumers. For example, :c:expr:`PyBUF_SIMPLE | PyBUF_WRITABLE` can be used to request a simple writable buffer." msgstr "" -#: ../../c-api/buffer.rst:266 msgid "This is an alias to :c:macro:`PyBUF_WRITABLE`." msgstr "" -#: ../../c-api/buffer.rst:272 -msgid "" -"Controls the :c:member:`~Py_buffer.format` field. If set, this field MUST be " -"filled in correctly. Otherwise, this field MUST be ``NULL``." +msgid "Controls the :c:member:`~Py_buffer.format` field. If set, this field MUST be filled in correctly. Otherwise, this field MUST be ``NULL``." msgstr "" -#: ../../c-api/buffer.rst:276 -msgid "" -":c:macro:`PyBUF_WRITABLE` can be \\|'d to any of the flags in the next " -"section. Since :c:macro:`PyBUF_SIMPLE` is defined as " -"0, :c:macro:`PyBUF_WRITABLE` can be used as a stand-alone flag to request a " -"simple writable buffer." +msgid ":c:macro:`PyBUF_WRITABLE` can be \\|'d to any of the flags in the next section. Since :c:macro:`PyBUF_SIMPLE` is defined as 0, :c:macro:`PyBUF_WRITABLE` can be used as a stand-alone flag to request a simple writable buffer." msgstr "" -#: ../../c-api/buffer.rst:280 -msgid "" -":c:macro:`PyBUF_FORMAT` must be \\|'d to any of the flags " -"except :c:macro:`PyBUF_SIMPLE`, because the latter already implies format " -"``B`` (unsigned bytes). :c:macro:`!PyBUF_FORMAT` cannot be used on its own." +msgid ":c:macro:`PyBUF_FORMAT` must be \\|'d to any of the flags except :c:macro:`PyBUF_SIMPLE`, because the latter already implies format ``B`` (unsigned bytes). :c:macro:`!PyBUF_FORMAT` cannot be used on its own." msgstr "" -#: ../../c-api/buffer.rst:286 msgid "shape, strides, suboffsets" msgstr "" -#: ../../c-api/buffer.rst:288 -msgid "" -"The flags that control the logical structure of the memory are listed in " -"decreasing order of complexity. Note that each flag contains all bits of the " -"flags below it." +msgid "The flags that control the logical structure of the memory are listed in decreasing order of complexity. Note that each flag contains all bits of the flags below it." msgstr "" -#: ../../c-api/buffer.rst:295 ../../c-api/buffer.rst:319 -#: ../../c-api/buffer.rst:344 msgid "Request" msgstr "" -#: ../../c-api/buffer.rst:295 ../../c-api/buffer.rst:319 -#: ../../c-api/buffer.rst:344 msgid "shape" msgstr "" -#: ../../c-api/buffer.rst:295 ../../c-api/buffer.rst:319 -#: ../../c-api/buffer.rst:344 msgid "strides" msgstr "" -#: ../../c-api/buffer.rst:295 ../../c-api/buffer.rst:319 -#: ../../c-api/buffer.rst:344 msgid "suboffsets" msgstr "" -#: ../../c-api/buffer.rst:297 ../../c-api/buffer.rst:299 -#: ../../c-api/buffer.rst:301 ../../c-api/buffer.rst:321 -#: ../../c-api/buffer.rst:323 ../../c-api/buffer.rst:325 -#: ../../c-api/buffer.rst:327 ../../c-api/buffer.rst:346 -#: ../../c-api/buffer.rst:348 ../../c-api/buffer.rst:350 -#: ../../c-api/buffer.rst:352 ../../c-api/buffer.rst:354 -#: ../../c-api/buffer.rst:356 ../../c-api/buffer.rst:358 -#: ../../c-api/buffer.rst:360 msgid "yes" msgstr "" -#: ../../c-api/buffer.rst:297 ../../c-api/buffer.rst:346 -#: ../../c-api/buffer.rst:348 msgid "if needed" msgstr "" -#: ../../c-api/buffer.rst:299 ../../c-api/buffer.rst:301 -#: ../../c-api/buffer.rst:303 ../../c-api/buffer.rst:321 -#: ../../c-api/buffer.rst:323 ../../c-api/buffer.rst:325 -#: ../../c-api/buffer.rst:327 ../../c-api/buffer.rst:350 -#: ../../c-api/buffer.rst:352 ../../c-api/buffer.rst:354 -#: ../../c-api/buffer.rst:356 ../../c-api/buffer.rst:358 -#: ../../c-api/buffer.rst:360 msgid "NULL" msgstr "" -#: ../../c-api/buffer.rst:310 msgid "contiguity requests" msgstr "" -#: ../../c-api/buffer.rst:312 -msgid "" -"C or Fortran :term:`contiguity ` can be explicitly requested, " -"with and without stride information. Without stride information, the buffer " -"must be C-contiguous." +msgid "C or Fortran :term:`contiguity ` can be explicitly requested, with and without stride information. Without stride information, the buffer must be C-contiguous." msgstr "" -#: ../../c-api/buffer.rst:319 ../../c-api/buffer.rst:344 msgid "contig" msgstr "" -#: ../../c-api/buffer.rst:321 ../../c-api/buffer.rst:327 -#: ../../c-api/buffer.rst:358 ../../c-api/buffer.rst:360 msgid "C" msgstr "" -#: ../../c-api/buffer.rst:323 msgid "F" msgstr "" -#: ../../c-api/buffer.rst:325 msgid "C or F" msgstr "" -#: ../../c-api/buffer.rst:327 msgid ":c:macro:`PyBUF_ND`" msgstr "" -#: ../../c-api/buffer.rst:332 msgid "compound requests" msgstr "" -#: ../../c-api/buffer.rst:334 -msgid "" -"All possible requests are fully defined by some combination of the flags in " -"the previous section. For convenience, the buffer protocol provides " -"frequently used combinations as single flags." +msgid "All possible requests are fully defined by some combination of the flags in the previous section. For convenience, the buffer protocol provides frequently used combinations as single flags." msgstr "" -#: ../../c-api/buffer.rst:338 -msgid "" -"In the following table *U* stands for undefined contiguity. The consumer " -"would have to call :c:func:`PyBuffer_IsContiguous` to determine contiguity." +msgid "In the following table *U* stands for undefined contiguity. The consumer would have to call :c:func:`PyBuffer_IsContiguous` to determine contiguity." msgstr "" -#: ../../c-api/buffer.rst:344 msgid "readonly" msgstr "" -#: ../../c-api/buffer.rst:344 msgid "format" msgstr "" -#: ../../c-api/buffer.rst:346 ../../c-api/buffer.rst:348 -#: ../../c-api/buffer.rst:350 ../../c-api/buffer.rst:352 -#: ../../c-api/buffer.rst:354 ../../c-api/buffer.rst:356 msgid "U" msgstr "" -#: ../../c-api/buffer.rst:346 ../../c-api/buffer.rst:350 -#: ../../c-api/buffer.rst:354 ../../c-api/buffer.rst:358 msgid "0" msgstr "" -#: ../../c-api/buffer.rst:348 ../../c-api/buffer.rst:352 -#: ../../c-api/buffer.rst:356 ../../c-api/buffer.rst:360 msgid "1 or 0" msgstr "" -#: ../../c-api/buffer.rst:365 msgid "Complex arrays" msgstr "" -#: ../../c-api/buffer.rst:368 msgid "NumPy-style: shape and strides" msgstr "" -#: ../../c-api/buffer.rst:370 -msgid "" -"The logical structure of NumPy-style arrays is defined " -"by :c:member:`~Py_buffer.itemsize`, :c:member:`~Py_buffer.ndim`, :c:member:`~Py_buffer.shape` " -"and :c:member:`~Py_buffer.strides`." +msgid "The logical structure of NumPy-style arrays is defined by :c:member:`~Py_buffer.itemsize`, :c:member:`~Py_buffer.ndim`, :c:member:`~Py_buffer.shape` and :c:member:`~Py_buffer.strides`." msgstr "" -#: ../../c-api/buffer.rst:373 -msgid "" -"If ``ndim == 0``, the memory location pointed to " -"by :c:member:`~Py_buffer.buf` is interpreted as a scalar of " -"size :c:member:`~Py_buffer.itemsize`. In that case, " -"both :c:member:`~Py_buffer.shape` and :c:member:`~Py_buffer.strides` are " -"``NULL``." +msgid "If ``ndim == 0``, the memory location pointed to by :c:member:`~Py_buffer.buf` is interpreted as a scalar of size :c:member:`~Py_buffer.itemsize`. In that case, both :c:member:`~Py_buffer.shape` and :c:member:`~Py_buffer.strides` are ``NULL``." msgstr "" -#: ../../c-api/buffer.rst:377 -msgid "" -"If :c:member:`~Py_buffer.strides` is ``NULL``, the array is interpreted as a " -"standard n-dimensional C-array. Otherwise, the consumer must access an n-" -"dimensional array as follows:" +msgid "If :c:member:`~Py_buffer.strides` is ``NULL``, the array is interpreted as a standard n-dimensional C-array. Otherwise, the consumer must access an n-dimensional array as follows:" msgstr "" -#: ../../c-api/buffer.rst:381 msgid "" -"ptr = (char *)buf + indices[0] * strides[0] + ... + indices[n-1] * " -"strides[n-1];\n" +"ptr = (char *)buf + indices[0] * strides[0] + ... + indices[n-1] * strides[n-1];\n" "item = *((typeof(item) *)ptr);" msgstr "" -#: ../../c-api/buffer.rst:387 -msgid "" -"As noted above, :c:member:`~Py_buffer.buf` can point to any location within " -"the actual memory block. An exporter can check the validity of a buffer with " -"this function:" +msgid "As noted above, :c:member:`~Py_buffer.buf` can point to any location within the actual memory block. An exporter can check the validity of a buffer with this function:" msgstr "" -#: ../../c-api/buffer.rst:391 msgid "" "def verify_structure(memlen, itemsize, ndim, shape, strides, offset):\n" " \"\"\"Verify that the parameters represent a valid array within\n" @@ -599,29 +312,15 @@ msgid "" " return 0 <= offset+imin and offset+imax+itemsize <= memlen" msgstr "" -#: ../../c-api/buffer.rst:421 msgid "PIL-style: shape, strides and suboffsets" msgstr "" -#: ../../c-api/buffer.rst:423 -msgid "" -"In addition to the regular items, PIL-style arrays can contain pointers that " -"must be followed in order to get to the next element in a dimension. For " -"example, the regular three-dimensional C-array ``char v[2][2][3]`` can also " -"be viewed as an array of 2 pointers to 2 two-dimensional arrays: ``char " -"(*v[2])[2][3]``. In suboffsets representation, those two pointers can be " -"embedded at the start of :c:member:`~Py_buffer.buf`, pointing to two ``char " -"x[2][3]`` arrays that can be located anywhere in memory." +msgid "In addition to the regular items, PIL-style arrays can contain pointers that must be followed in order to get to the next element in a dimension. For example, the regular three-dimensional C-array ``char v[2][2][3]`` can also be viewed as an array of 2 pointers to 2 two-dimensional arrays: ``char (*v[2])[2][3]``. In suboffsets representation, those two pointers can be embedded at the start of :c:member:`~Py_buffer.buf`, pointing to two ``char x[2][3]`` arrays that can be located anywhere in memory." msgstr "" -#: ../../c-api/buffer.rst:432 -msgid "" -"Here is a function that returns a pointer to the element in an N-D array " -"pointed to by an N-dimensional index when there are both non-``NULL`` " -"strides and suboffsets::" +msgid "Here is a function that returns a pointer to the element in an N-D array pointed to by an N-dimensional index when there are both non-``NULL`` strides and suboffsets::" msgstr "" -#: ../../c-api/buffer.rst:436 msgid "" "void *get_item_pointer(int ndim, void *buf, Py_ssize_t *strides,\n" " Py_ssize_t *suboffsets, Py_ssize_t *indices) {\n" @@ -637,166 +336,86 @@ msgid "" "}" msgstr "" -#: ../../c-api/buffer.rst:451 msgid "Buffer-related functions" msgstr "" -#: ../../c-api/buffer.rst:455 -msgid "" -"Return ``1`` if *obj* supports the buffer interface otherwise ``0``. When " -"``1`` is returned, it doesn't guarantee that :c:func:`PyObject_GetBuffer` " -"will succeed. This function always succeeds." +msgid "Return ``1`` if *obj* supports the buffer interface otherwise ``0``. When ``1`` is returned, it doesn't guarantee that :c:func:`PyObject_GetBuffer` will succeed. This function always succeeds." msgstr "" -#: ../../c-api/buffer.rst:462 -msgid "" -"Send a request to *exporter* to fill in *view* as specified by *flags*. If " -"the exporter cannot provide a buffer of the exact type, it MUST " -"raise :exc:`BufferError`, set ``view->obj`` to ``NULL`` and return ``-1``." +msgid "Send a request to *exporter* to fill in *view* as specified by *flags*. If the exporter cannot provide a buffer of the exact type, it MUST raise :exc:`BufferError`, set ``view->obj`` to ``NULL`` and return ``-1``." msgstr "" -#: ../../c-api/buffer.rst:467 -msgid "" -"On success, fill in *view*, set ``view->obj`` to a new reference to " -"*exporter* and return 0. In the case of chained buffer providers that " -"redirect requests to a single object, ``view->obj`` MAY refer to this object " -"instead of *exporter* (See :ref:`Buffer Object Structures `)." +msgid "On success, fill in *view*, set ``view->obj`` to a new reference to *exporter* and return 0. In the case of chained buffer providers that redirect requests to a single object, ``view->obj`` MAY refer to this object instead of *exporter* (See :ref:`Buffer Object Structures `)." msgstr "" -#: ../../c-api/buffer.rst:472 -msgid "" -"Successful calls to :c:func:`PyObject_GetBuffer` must be paired with calls " -"to :c:func:`PyBuffer_Release`, similar to :c:func:`malloc` " -"and :c:func:`free`. Thus, after the consumer is done with the " -"buffer, :c:func:`PyBuffer_Release` must be called exactly once." +msgid "Successful calls to :c:func:`PyObject_GetBuffer` must be paired with calls to :c:func:`PyBuffer_Release`, similar to :c:func:`malloc` and :c:func:`free`. Thus, after the consumer is done with the buffer, :c:func:`PyBuffer_Release` must be called exactly once." msgstr "" -#: ../../c-api/buffer.rst:480 -msgid "" -"Release the buffer *view* and release the :term:`strong reference` (i.e. " -"decrement the reference count) to the view's supporting object, ``view-" -">obj``. This function MUST be called when the buffer is no longer being " -"used, otherwise reference leaks may occur." +msgid "Release the buffer *view* and release the :term:`strong reference` (i.e. decrement the reference count) to the view's supporting object, ``view->obj``. This function MUST be called when the buffer is no longer being used, otherwise reference leaks may occur." msgstr "" -#: ../../c-api/buffer.rst:485 -msgid "" -"It is an error to call this function on a buffer that was not obtained " -"via :c:func:`PyObject_GetBuffer`." +msgid "It is an error to call this function on a buffer that was not obtained via :c:func:`PyObject_GetBuffer`." msgstr "" -#: ../../c-api/buffer.rst:491 -msgid "" -"Return the implied :c:member:`~Py_buffer.itemsize` " -"from :c:member:`~Py_buffer.format`. On error, raise an exception and return " -"-1." +msgid "Return the implied :c:member:`~Py_buffer.itemsize` from :c:member:`~Py_buffer.format`. On error, raise an exception and return -1." msgstr "" -#: ../../c-api/buffer.rst:499 -msgid "" -"Return ``1`` if the memory defined by the *view* is C-style (*order* is " -"``'C'``) or Fortran-style (*order* is ``'F'``) :term:`contiguous` or either " -"one (*order* is ``'A'``). Return ``0`` otherwise. This function always " -"succeeds." +msgid "Return ``1`` if the memory defined by the *view* is C-style (*order* is ``'C'``) or Fortran-style (*order* is ``'F'``) :term:`contiguous` or either one (*order* is ``'A'``). Return ``0`` otherwise. This function always succeeds." msgstr "" -#: ../../c-api/buffer.rst:506 -msgid "" -"Get the memory area pointed to by the *indices* inside the given *view*. " -"*indices* must point to an array of ``view->ndim`` indices." +msgid "Get the memory area pointed to by the *indices* inside the given *view*. *indices* must point to an array of ``view->ndim`` indices." msgstr "" -#: ../../c-api/buffer.rst:512 -msgid "" -"Copy contiguous *len* bytes from *buf* to *view*. *fort* can be ``'C'`` or " -"``'F'`` (for C-style or Fortran-style ordering). ``0`` is returned on " -"success, ``-1`` on error." +msgid "Copy contiguous *len* bytes from *buf* to *view*. *fort* can be ``'C'`` or ``'F'`` (for C-style or Fortran-style ordering). ``0`` is returned on success, ``-1`` on error." msgstr "" -#: ../../c-api/buffer.rst:519 -msgid "" -"Copy *len* bytes from *src* to its contiguous representation in *buf*. " -"*order* can be ``'C'`` or ``'F'`` or ``'A'`` (for C-style or Fortran-style " -"ordering or either one). ``0`` is returned on success, ``-1`` on error." +msgid "Copy *len* bytes from *src* to its contiguous representation in *buf*. *order* can be ``'C'`` or ``'F'`` or ``'A'`` (for C-style or Fortran-style ordering or either one). ``0`` is returned on success, ``-1`` on error." msgstr "" -#: ../../c-api/buffer.rst:523 msgid "This function fails if *len* != *src->len*." msgstr "" -#: ../../c-api/buffer.rst:528 -msgid "" -"Copy data from *src* to *dest* buffer. Can convert between C-style and or " -"Fortran-style buffers." +msgid "Copy data from *src* to *dest* buffer. Can convert between C-style and or Fortran-style buffers." msgstr "" -#: ../../c-api/buffer.rst:531 msgid "``0`` is returned on success, ``-1`` on error." msgstr "" -#: ../../c-api/buffer.rst:535 -msgid "" -"Fill the *strides* array with byte-strides of a :term:`contiguous` (C-style " -"if *order* is ``'C'`` or Fortran-style if *order* is ``'F'``) array of the " -"given shape with the given number of bytes per element." +msgid "Fill the *strides* array with byte-strides of a :term:`contiguous` (C-style if *order* is ``'C'`` or Fortran-style if *order* is ``'F'``) array of the given shape with the given number of bytes per element." msgstr "" -#: ../../c-api/buffer.rst:542 -msgid "" -"Handle buffer requests for an exporter that wants to expose *buf* of size " -"*len* with writability set according to *readonly*. *buf* is interpreted as " -"a sequence of unsigned bytes." +msgid "Handle buffer requests for an exporter that wants to expose *buf* of size *len* with writability set according to *readonly*. *buf* is interpreted as a sequence of unsigned bytes." msgstr "" -#: ../../c-api/buffer.rst:546 -msgid "" -"The *flags* argument indicates the request type. This function always fills " -"in *view* as specified by flags, unless *buf* has been designated as read-" -"only and :c:macro:`PyBUF_WRITABLE` is set in *flags*." +msgid "The *flags* argument indicates the request type. This function always fills in *view* as specified by flags, unless *buf* has been designated as read-only and :c:macro:`PyBUF_WRITABLE` is set in *flags*." msgstr "" -#: ../../c-api/buffer.rst:550 -msgid "" -"On success, set ``view->obj`` to a new reference to *exporter* and return 0. " -"Otherwise, raise :exc:`BufferError`, set ``view->obj`` to ``NULL`` and " -"return ``-1``;" +msgid "On success, set ``view->obj`` to a new reference to *exporter* and return 0. Otherwise, raise :exc:`BufferError`, set ``view->obj`` to ``NULL`` and return ``-1``;" msgstr "" -#: ../../c-api/buffer.rst:554 -msgid "" -"If this function is used as part of a :ref:`getbufferproc `, " -"*exporter* MUST be set to the exporting object and *flags* must be passed " -"unmodified. Otherwise, *exporter* MUST be ``NULL``." +msgid "If this function is used as part of a :ref:`getbufferproc `, *exporter* MUST be set to the exporting object and *flags* must be passed unmodified. Otherwise, *exporter* MUST be ``NULL``." msgstr "" -#: ../../c-api/buffer.rst:3 msgid "buffer protocol" msgstr "" -#: ../../c-api/buffer.rst:3 msgid "buffer interface" msgstr "" -#: ../../c-api/buffer.rst:3 msgid "(see buffer protocol)" msgstr "" -#: ../../c-api/buffer.rst:3 msgid "buffer object" msgstr "" -#: ../../c-api/buffer.rst:32 msgid "PyBufferProcs (C type)" msgstr "" -#: ../../c-api/buffer.rst:307 msgid "contiguous" msgstr "" -#: ../../c-api/buffer.rst:307 msgid "C-contiguous" msgstr "" -#: ../../c-api/buffer.rst:307 msgid "Fortran contiguous" msgstr "" diff --git a/c-api/bytearray.po b/c-api/bytearray.po index 37265d76..caad0d22 100644 --- a/c-api/bytearray.po +++ b/c-api/bytearray.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:47+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -25,135 +25,71 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../c-api/bytearray.rst:6 msgid "Byte Array Objects" msgstr "اشیاء آرایه‌ی بایت" -#: ../../c-api/bytearray.rst:13 -msgid "" -"This subtype of :c:type:`PyObject` represents a Python bytearray object." -msgstr "" -"این زیرنوع از :c:type:`PyObject` نشان‌دهنده‌ی یک شیء bytearray پایتون است." +msgid "This subtype of :c:type:`PyObject` represents a Python bytearray object." +msgstr "این زیرنوع از :c:type:`PyObject` نشان‌دهنده‌ی یک شیء bytearray پایتون است." -#: ../../c-api/bytearray.rst:18 -msgid "" -"This instance of :c:type:`PyTypeObject` represents the Python bytearray " -"type; it is the same object as :class:`bytearray` in the Python layer." -msgstr "" -"این نمونه از :c:type:`PyTypeObject` نشان‌دهنده‌ی نوع bytearray پایتون است؛ این " -"همان شیء‌ای است که در لایه‌ی پایتون با نام :class:`bytearray` شناخته می‌شود." +msgid "This instance of :c:type:`PyTypeObject` represents the Python bytearray type; it is the same object as :class:`bytearray` in the Python layer." +msgstr "این نمونه از :c:type:`PyTypeObject` نشان‌دهنده‌ی نوع bytearray پایتون است؛ این همان شیء‌ای است که در لایه‌ی پایتون با نام :class:`bytearray` شناخته می‌شود." -#: ../../c-api/bytearray.rst:23 msgid "Type check macros" msgstr "ماکروهای بررسی نوع" -#: ../../c-api/bytearray.rst:27 -msgid "" -"Return true if the object *o* is a bytearray object or an instance of a " -"subtype of the bytearray type. This function always succeeds." -msgstr "" -"اگر شیء *o* یک شیء bytearray یا نمونه‌ای از زیرنوعی از نوع bytearray باشد، " -"مقدار True را برمی‌گرداند. این تابع همیشه با موفقیت اجرا می‌شود." +msgid "Return true if the object *o* is a bytearray object or an instance of a subtype of the bytearray type. This function always succeeds." +msgstr "اگر شیء *o* یک شیء bytearray یا نمونه‌ای از زیرنوعی از نوع bytearray باشد، مقدار True را برمی‌گرداند. این تابع همیشه با موفقیت اجرا می‌شود." -#: ../../c-api/bytearray.rst:33 -msgid "" -"Return true if the object *o* is a bytearray object, but not an instance of " -"a subtype of the bytearray type. This function always succeeds." -msgstr "" -"اگر شیء *o* یک شیء bytearray باشد، اما نمونه‌ای از زیرنوعی از نوع bytearray " -"نباشد، مقدار True را برمی‌گرداند. این تابع همیشه با موفقیت اجرا می‌شود." +msgid "Return true if the object *o* is a bytearray object, but not an instance of a subtype of the bytearray type. This function always succeeds." +msgstr "اگر شیء *o* یک شیء bytearray باشد، اما نمونه‌ای از زیرنوعی از نوع bytearray نباشد، مقدار True را برمی‌گرداند. این تابع همیشه با موفقیت اجرا می‌شود." -#: ../../c-api/bytearray.rst:38 msgid "Direct API functions" msgstr "توابع مستقیم API" -#: ../../c-api/bytearray.rst:42 -msgid "" -"Return a new bytearray object from any object, *o*, that implements " -"the :ref:`buffer protocol `." -msgstr "" -"یک شیء bytearray جدید از هر شیء *o* که :ref:`پروتکل بافر ` را " -"پیاده‌سازی کرده است، برمی‌گرداند." +msgid "Return a new bytearray object from any object, *o*, that implements the :ref:`buffer protocol `." +msgstr "یک شیء bytearray جدید از هر شیء *o* که :ref:`پروتکل بافر ` را پیاده‌سازی کرده است، برمی‌گرداند." -#: ../../c-api/bytearray.rst:45 ../../c-api/bytearray.rst:56 -#: ../../c-api/bytearray.rst:63 msgid "On failure, return ``NULL`` with an exception set." msgstr "در صورت شکست، مقدار ``NULL`` را با یک استثنا باز می‌گرداند." -#: ../../c-api/bytearray.rst:48 ../../c-api/bytearray.rst:66 -msgid "" -"If the object implements the buffer protocol, then the buffer must not be " -"mutated while the bytearray object is being created." -msgstr "" -"اگر شیء پروتکل بافر را پیاده‌سازی کرده باشد، در حین ایجاد شیء bytearray نباید " -"بافر تغییر داده شود." +msgid "If the object implements the buffer protocol, then the buffer must not be mutated while the bytearray object is being created." +msgstr "اگر شیء پروتکل بافر را پیاده‌سازی کرده باشد، در حین ایجاد شیء bytearray نباید بافر تغییر داده شود." -#: ../../c-api/bytearray.rst:54 msgid "Create a new bytearray object from *string* and its length, *len*." msgstr "یک شیء bytearray جدید از *string* و طول آن *len*، ایجاد کنید." -#: ../../c-api/bytearray.rst:61 -msgid "" -"Concat bytearrays *a* and *b* and return a new bytearray with the result." -msgstr "" -"bytearrayهای *a* و *b* را به هم متصل کنید و یک bytearray جدید با نتیجه " -"بازگردانید." +msgid "Concat bytearrays *a* and *b* and return a new bytearray with the result." +msgstr "bytearrayهای *a* و *b* را به هم متصل کنید و یک bytearray جدید با نتیجه بازگردانید." -#: ../../c-api/bytearray.rst:72 msgid "Return the size of *bytearray* after checking for a ``NULL`` pointer." msgstr "اندازهٔ *bytearray* را پس از بررسی اشاره‌گر ``NULL`` بازگردانید." -#: ../../c-api/bytearray.rst:77 -msgid "" -"Return the contents of *bytearray* as a char array after checking for a " -"``NULL`` pointer. The returned array always has an extra null byte appended." -msgstr "" -"محتوای *bytearray* را پس از بررسی اشاره‌گر ``NULL`` به‌صورت یک آرایه نویسه‌ای " -"(char array) بازگردانید. آرایه‌ی برگشتی همیشه دارای یک بایت null اضافی در " -"انتها است." +msgid "Return the contents of *bytearray* as a char array after checking for a ``NULL`` pointer. The returned array always has an extra null byte appended." +msgstr "محتوای *bytearray* را پس از بررسی اشاره‌گر ``NULL`` به‌صورت یک آرایه نویسه‌ای (char array) بازگردانید. آرایه‌ی برگشتی همیشه دارای یک بایت null اضافی در انتها است." -#: ../../c-api/bytearray.rst:82 ../../c-api/bytearray.rst:104 -msgid "" -"It is not thread-safe to mutate the bytearray object while using the " -"returned char array." -msgstr "" -"زمانی که از آرایه‌ی نویسه‌ای برگشتی استفاده می‌شود، تغییر دادن شیء bytearray " -"ایمن از نظر ریسه‌ها نیست." +msgid "It is not thread-safe to mutate the bytearray object while using the returned char array." +msgstr "زمانی که از آرایه‌ی نویسه‌ای برگشتی استفاده می‌شود، تغییر دادن شیء bytearray ایمن از نظر ریسه‌ها نیست." -#: ../../c-api/bytearray.rst:87 -msgid "" -"Resize the internal buffer of *bytearray* to *len*. Failure is a ``-1`` " -"return with an exception set." -msgstr "" -"بافر داخلی *bytearray* را به اندازه‌ی *len* تغییر اندازه دهید. در صورت شکست، " -"مقدار ``-1`` به همراه یک استثنا بازگردانده می‌شود." +msgid "Resize the internal buffer of *bytearray* to *len*. Failure is a ``-1`` return with an exception set." +msgstr "بافر داخلی *bytearray* را به اندازه‌ی *len* تغییر اندازه دهید. در صورت شکست، مقدار ``-1`` به همراه یک استثنا بازگردانده می‌شود." -#: ../../c-api/bytearray.rst:90 -msgid "" -"A negative *len* will now result in an exception being set and -1 returned." -msgstr "" -"اکنون *len* منفی باعث می‌شود که یک استثنا تنظیم شده و مقدار -1 بازگردانده شود." +msgid "A negative *len* will now result in an exception being set and -1 returned." +msgstr "اکنون *len* منفی باعث می‌شود که یک استثنا تنظیم شده و مقدار -1 بازگردانده شود." -#: ../../c-api/bytearray.rst:95 msgid "Macros" msgstr "ماکروها" -#: ../../c-api/bytearray.rst:97 msgid "These macros trade safety for speed and they don't check pointers." msgstr "این ماکروها ایمنی را فدای سرعت می‌کنند و اشاره‌گرها را بررسی نمی‌کنند." -#: ../../c-api/bytearray.rst:101 msgid "Similar to :c:func:`PyByteArray_AsString`, but without error checking." msgstr "مشابه :c:func:`PyByteArray_AsString`، اما بدون بررسی خطا." -#: ../../c-api/bytearray.rst:109 msgid "Similar to :c:func:`PyByteArray_Size`, but without error checking." msgstr "مشابه :c:func:`PyByteArray_Size`، اما بدون بررسی خطا." -#: ../../c-api/bytearray.rst:8 msgid "object" msgstr "شیء" -#: ../../c-api/bytearray.rst:8 msgid "bytearray" msgstr "bytearray" diff --git a/c-api/bytes.po b/c-api/bytes.po index ac8cd9cb..a2e513cd 100644 --- a/c-api/bytes.po +++ b/c-api/bytes.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:47+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,411 +24,233 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../c-api/bytes.rst:6 msgid "Bytes Objects" msgstr "" -#: ../../c-api/bytes.rst:8 -msgid "" -"These functions raise :exc:`TypeError` when expecting a bytes parameter and " -"called with a non-bytes parameter." +msgid "These functions raise :exc:`TypeError` when expecting a bytes parameter and called with a non-bytes parameter." msgstr "" -#: ../../c-api/bytes.rst:16 msgid "This subtype of :c:type:`PyObject` represents a Python bytes object." msgstr "" -#: ../../c-api/bytes.rst:21 -msgid "" -"This instance of :c:type:`PyTypeObject` represents the Python bytes type; it " -"is the same object as :class:`bytes` in the Python layer." +msgid "This instance of :c:type:`PyTypeObject` represents the Python bytes type; it is the same object as :class:`bytes` in the Python layer." msgstr "" -#: ../../c-api/bytes.rst:27 -msgid "" -"Return true if the object *o* is a bytes object or an instance of a subtype " -"of the bytes type. This function always succeeds." +msgid "Return true if the object *o* is a bytes object or an instance of a subtype of the bytes type. This function always succeeds." msgstr "" -#: ../../c-api/bytes.rst:33 -msgid "" -"Return true if the object *o* is a bytes object, but not an instance of a " -"subtype of the bytes type. This function always succeeds." +msgid "Return true if the object *o* is a bytes object, but not an instance of a subtype of the bytes type. This function always succeeds." msgstr "" -#: ../../c-api/bytes.rst:39 -msgid "" -"Return a new bytes object with a copy of the string *v* as value on success, " -"and ``NULL`` on failure. The parameter *v* must not be ``NULL``; it will " -"not be checked." +msgid "Return a new bytes object with a copy of the string *v* as value on success, and ``NULL`` on failure. The parameter *v* must not be ``NULL``; it will not be checked." msgstr "" -#: ../../c-api/bytes.rst:46 -msgid "" -"Return a new bytes object with a copy of the string *v* as value and length " -"*len* on success, and ``NULL`` on failure. If *v* is ``NULL``, the contents " -"of the bytes object are uninitialized." +msgid "Return a new bytes object with a copy of the string *v* as value and length *len* on success, and ``NULL`` on failure. If *v* is ``NULL``, the contents of the bytes object are uninitialized." msgstr "" -#: ../../c-api/bytes.rst:53 -msgid "" -"Take a C :c:func:`printf`\\ -style *format* string and a variable number of " -"arguments, calculate the size of the resulting Python bytes object and " -"return a bytes object with the values formatted into it. The variable " -"arguments must be C types and must correspond exactly to the format " -"characters in the *format* string. The following format characters are " -"allowed:" +msgid "Take a C :c:func:`printf`\\ -style *format* string and a variable number of arguments, calculate the size of the resulting Python bytes object and return a bytes object with the values formatted into it. The variable arguments must be C types and must correspond exactly to the format characters in the *format* string. The following format characters are allowed:" msgstr "" -#: ../../c-api/bytes.rst:65 msgid "Format Characters" msgstr "" -#: ../../c-api/bytes.rst:65 msgid "Type" msgstr "" -#: ../../c-api/bytes.rst:65 msgid "Comment" msgstr "" -#: ../../c-api/bytes.rst:67 msgid "``%%``" msgstr "" -#: ../../c-api/bytes.rst:67 msgid "*n/a*" msgstr "" -#: ../../c-api/bytes.rst:67 msgid "The literal % character." msgstr "" -#: ../../c-api/bytes.rst:69 msgid "``%c``" msgstr "" -#: ../../c-api/bytes.rst:69 ../../c-api/bytes.rst:72 ../../c-api/bytes.rst:90 -#: ../../c-api/bytes.rst:93 msgid "int" msgstr "" -#: ../../c-api/bytes.rst:69 msgid "A single byte, represented as a C int." msgstr "" -#: ../../c-api/bytes.rst:72 msgid "``%d``" msgstr "" -#: ../../c-api/bytes.rst:72 msgid "Equivalent to ``printf(\"%d\")``. [1]_" msgstr "" -#: ../../c-api/bytes.rst:75 msgid "``%u``" msgstr "" -#: ../../c-api/bytes.rst:75 msgid "unsigned int" msgstr "" -#: ../../c-api/bytes.rst:75 msgid "Equivalent to ``printf(\"%u\")``. [1]_" msgstr "" -#: ../../c-api/bytes.rst:78 msgid "``%ld``" msgstr "" -#: ../../c-api/bytes.rst:78 msgid "long" msgstr "" -#: ../../c-api/bytes.rst:78 msgid "Equivalent to ``printf(\"%ld\")``. [1]_" msgstr "" -#: ../../c-api/bytes.rst:81 msgid "``%lu``" msgstr "" -#: ../../c-api/bytes.rst:81 msgid "unsigned long" msgstr "" -#: ../../c-api/bytes.rst:81 msgid "Equivalent to ``printf(\"%lu\")``. [1]_" msgstr "" -#: ../../c-api/bytes.rst:84 msgid "``%zd``" msgstr "" -#: ../../c-api/bytes.rst:84 msgid ":c:type:`\\ Py_ssize_t`" msgstr "" -#: ../../c-api/bytes.rst:84 msgid "Equivalent to ``printf(\"%zd\")``. [1]_" msgstr "" -#: ../../c-api/bytes.rst:87 msgid "``%zu``" msgstr "" -#: ../../c-api/bytes.rst:87 msgid "size_t" msgstr "" -#: ../../c-api/bytes.rst:87 msgid "Equivalent to ``printf(\"%zu\")``. [1]_" msgstr "" -#: ../../c-api/bytes.rst:90 msgid "``%i``" msgstr "" -#: ../../c-api/bytes.rst:90 msgid "Equivalent to ``printf(\"%i\")``. [1]_" msgstr "" -#: ../../c-api/bytes.rst:93 msgid "``%x``" msgstr "" -#: ../../c-api/bytes.rst:93 msgid "Equivalent to ``printf(\"%x\")``. [1]_" msgstr "" -#: ../../c-api/bytes.rst:96 msgid "``%s``" msgstr "" -#: ../../c-api/bytes.rst:96 msgid "const char\\*" msgstr "" -#: ../../c-api/bytes.rst:96 msgid "A null-terminated C character array." msgstr "" -#: ../../c-api/bytes.rst:99 msgid "``%p``" msgstr "" -#: ../../c-api/bytes.rst:99 msgid "const void\\*" msgstr "" -#: ../../c-api/bytes.rst:99 -msgid "" -"The hex representation of a C pointer. Mostly equivalent to " -"``printf(\"%p\")`` except that it is guaranteed to start with the literal " -"``0x`` regardless of what the platform's ``printf`` yields." +msgid "The hex representation of a C pointer. Mostly equivalent to ``printf(\"%p\")`` except that it is guaranteed to start with the literal ``0x`` regardless of what the platform's ``printf`` yields." msgstr "" -#: ../../c-api/bytes.rst:108 -msgid "" -"An unrecognized format character causes all the rest of the format string to " -"be copied as-is to the result object, and any extra arguments discarded." +msgid "An unrecognized format character causes all the rest of the format string to be copied as-is to the result object, and any extra arguments discarded." msgstr "" -#: ../../c-api/bytes.rst:111 -msgid "" -"For integer specifiers (d, u, ld, lu, zd, zu, i, x): the 0-conversion flag " -"has effect even when a precision is given." +msgid "For integer specifiers (d, u, ld, lu, zd, zu, i, x): the 0-conversion flag has effect even when a precision is given." msgstr "" -#: ../../c-api/bytes.rst:117 -msgid "" -"Identical to :c:func:`PyBytes_FromFormat` except that it takes exactly two " -"arguments." +msgid "Identical to :c:func:`PyBytes_FromFormat` except that it takes exactly two arguments." msgstr "" -#: ../../c-api/bytes.rst:123 -msgid "" -"Return the bytes representation of object *o* that implements the buffer " -"protocol." +msgid "Return the bytes representation of object *o* that implements the buffer protocol." msgstr "" -#: ../../c-api/bytes.rst:127 -msgid "" -"If the object implements the buffer protocol, then the buffer must not be " -"mutated while the bytes object is being created." +msgid "If the object implements the buffer protocol, then the buffer must not be mutated while the bytes object is being created." msgstr "" -#: ../../c-api/bytes.rst:133 msgid "Return the length of the bytes in bytes object *o*." msgstr "" -#: ../../c-api/bytes.rst:138 msgid "Similar to :c:func:`PyBytes_Size`, but without error checking." msgstr "" -#: ../../c-api/bytes.rst:143 -msgid "" -"Return a pointer to the contents of *o*. The pointer refers to the internal " -"buffer of *o*, which consists of ``len(o) + 1`` bytes. The last byte in the " -"buffer is always null, regardless of whether there are any other null " -"bytes. The data must not be modified in any way, unless the object was just " -"created using ``PyBytes_FromStringAndSize(NULL, size)``. It must not be " -"deallocated. If *o* is not a bytes object at " -"all, :c:func:`PyBytes_AsString` returns ``NULL`` and raises :exc:`TypeError`." +msgid "Return a pointer to the contents of *o*. The pointer refers to the internal buffer of *o*, which consists of ``len(o) + 1`` bytes. The last byte in the buffer is always null, regardless of whether there are any other null bytes. The data must not be modified in any way, unless the object was just created using ``PyBytes_FromStringAndSize(NULL, size)``. It must not be deallocated. If *o* is not a bytes object at all, :c:func:`PyBytes_AsString` returns ``NULL`` and raises :exc:`TypeError`." msgstr "" -#: ../../c-api/bytes.rst:155 msgid "Similar to :c:func:`PyBytes_AsString`, but without error checking." msgstr "" -#: ../../c-api/bytes.rst:160 -msgid "" -"Return the null-terminated contents of the object *obj* through the output " -"variables *buffer* and *length*. Returns ``0`` on success." +msgid "Return the null-terminated contents of the object *obj* through the output variables *buffer* and *length*. Returns ``0`` on success." msgstr "" -#: ../../c-api/bytes.rst:164 -msgid "" -"If *length* is ``NULL``, the bytes object may not contain embedded null " -"bytes; if it does, the function returns ``-1`` and a :exc:`ValueError` is " -"raised." +msgid "If *length* is ``NULL``, the bytes object may not contain embedded null bytes; if it does, the function returns ``-1`` and a :exc:`ValueError` is raised." msgstr "" -#: ../../c-api/bytes.rst:168 -msgid "" -"The buffer refers to an internal buffer of *obj*, which includes an " -"additional null byte at the end (not counted in *length*). The data must " -"not be modified in any way, unless the object was just created using " -"``PyBytes_FromStringAndSize(NULL, size)``. It must not be deallocated. If " -"*obj* is not a bytes object at all, :c:func:`PyBytes_AsStringAndSize` " -"returns ``-1`` and raises :exc:`TypeError`." +msgid "The buffer refers to an internal buffer of *obj*, which includes an additional null byte at the end (not counted in *length*). The data must not be modified in any way, unless the object was just created using ``PyBytes_FromStringAndSize(NULL, size)``. It must not be deallocated. If *obj* is not a bytes object at all, :c:func:`PyBytes_AsStringAndSize` returns ``-1`` and raises :exc:`TypeError`." msgstr "" -#: ../../c-api/bytes.rst:175 -msgid "" -"Previously, :exc:`TypeError` was raised when embedded null bytes were " -"encountered in the bytes object." +msgid "Previously, :exc:`TypeError` was raised when embedded null bytes were encountered in the bytes object." msgstr "" -#: ../../c-api/bytes.rst:182 -msgid "" -"Create a new bytes object in *\\*bytes* containing the contents of *newpart* " -"appended to *bytes*; the caller will own the new reference. The reference to " -"the old value of *bytes* will be \":term:`stolen `\". If the new " -"object cannot be created, the old reference to *bytes* will still be " -"\"stolen\", the value of *\\*bytes* will be set to ``NULL``, and the " -"appropriate exception will be set." +msgid "Create a new bytes object in *\\*bytes* containing the contents of *newpart* appended to *bytes*; the caller will own the new reference. The reference to the old value of *bytes* will be \":term:`stolen `\". If the new object cannot be created, the old reference to *bytes* will still be \"stolen\", the value of *\\*bytes* will be set to ``NULL``, and the appropriate exception will be set." msgstr "" -#: ../../c-api/bytes.rst:190 ../../c-api/bytes.rst:200 -msgid "" -"If *newpart* implements the buffer protocol, then the buffer must not be " -"mutated while the new bytes object is being created." +msgid "If *newpart* implements the buffer protocol, then the buffer must not be mutated while the new bytes object is being created." msgstr "" -#: ../../c-api/bytes.rst:195 -msgid "" -"Create a new bytes object in *\\*bytes* containing the contents of *newpart* " -"appended to *bytes*. This version releases the :term:`strong reference` to " -"*newpart* (i.e. decrements its reference count)." +msgid "Create a new bytes object in *\\*bytes* containing the contents of *newpart* appended to *bytes*. This version releases the :term:`strong reference` to *newpart* (i.e. decrements its reference count)." msgstr "" -#: ../../c-api/bytes.rst:206 msgid "Similar to ``sep.join(iterable)`` in Python." msgstr "" -#: ../../c-api/bytes.rst:208 -msgid "" -"*sep* must be Python :class:`bytes` object. (Note " -"that :c:func:`PyUnicode_Join` accepts ``NULL`` separator and treats it as a " -"space, whereas :c:func:`PyBytes_Join` doesn't accept ``NULL`` separator.)" +msgid "*sep* must be Python :class:`bytes` object. (Note that :c:func:`PyUnicode_Join` accepts ``NULL`` separator and treats it as a space, whereas :c:func:`PyBytes_Join` doesn't accept ``NULL`` separator.)" msgstr "" -#: ../../c-api/bytes.rst:213 -msgid "" -"*iterable* must be an iterable object yielding objects that implement " -"the :ref:`buffer protocol `." +msgid "*iterable* must be an iterable object yielding objects that implement the :ref:`buffer protocol `." msgstr "" -#: ../../c-api/bytes.rst:216 -msgid "" -"On success, return a new :class:`bytes` object. On error, set an exception " -"and return ``NULL``." +msgid "On success, return a new :class:`bytes` object. On error, set an exception and return ``NULL``." msgstr "" -#: ../../c-api/bytes.rst:222 -msgid "" -"If *iterable* objects implement the buffer protocol, then the buffers must " -"not be mutated while the new bytes object is being created." +msgid "If *iterable* objects implement the buffer protocol, then the buffers must not be mutated while the new bytes object is being created." msgstr "" -#: ../../c-api/bytes.rst:227 -msgid "" -"Resize a bytes object. *newsize* will be the new length of the bytes object. " -"You can think of it as creating a new bytes object and destroying the old " -"one, only more efficiently. Pass the address of an existing bytes object as " -"an lvalue (it may be written into), and the new size desired. On success, " -"*\\*bytes* holds the resized bytes object and ``0`` is returned; the address " -"in *\\*bytes* may differ from its input value. If the reallocation fails, " -"the original bytes object at *\\*bytes* is deallocated, *\\*bytes* is set to " -"``NULL``, :exc:`MemoryError` is set, and ``-1`` is returned." +msgid "Resize a bytes object. *newsize* will be the new length of the bytes object. You can think of it as creating a new bytes object and destroying the old one, only more efficiently. Pass the address of an existing bytes object as an lvalue (it may be written into), and the new size desired. On success, *\\*bytes* holds the resized bytes object and ``0`` is returned; the address in *\\*bytes* may differ from its input value. If the reallocation fails, the original bytes object at *\\*bytes* is deallocated, *\\*bytes* is set to ``NULL``, :exc:`MemoryError` is set, and ``-1`` is returned." msgstr "" -#: ../../c-api/bytes.rst:241 -msgid "" -"Get the string representation of *bytes*. This function is currently used to " -"implement :meth:`!bytes.__repr__` in Python." +msgid "Get the string representation of *bytes*. This function is currently used to implement :meth:`!bytes.__repr__` in Python." msgstr "" -#: ../../c-api/bytes.rst:244 -msgid "" -"This function does not do type checking; it is undefined behavior to pass " -"*bytes* as a non-bytes object or ``NULL``." +msgid "This function does not do type checking; it is undefined behavior to pass *bytes* as a non-bytes object or ``NULL``." msgstr "" -#: ../../c-api/bytes.rst:247 -msgid "" -"If *smartquotes* is true, the representation will use a double-quoted string " -"instead of single-quoted string when single-quotes are present in *bytes*. " -"For example, the byte string ``'Python'`` would be represented as " -"``b\"'Python'\"`` when *smartquotes* is true, or ``b'\\'Python\\''`` when it " -"is false." +msgid "If *smartquotes* is true, the representation will use a double-quoted string instead of single-quoted string when single-quotes are present in *bytes*. For example, the byte string ``'Python'`` would be represented as ``b\"'Python'\"`` when *smartquotes* is true, or ``b'\\'Python\\''`` when it is false." msgstr "" -#: ../../c-api/bytes.rst:253 -msgid "" -"On success, this function returns a :term:`strong reference` to " -"a :class:`str` object containing the representation. On failure, this " -"returns ``NULL`` with an exception set." +msgid "On success, this function returns a :term:`strong reference` to a :class:`str` object containing the representation. On failure, this returns ``NULL`` with an exception set." msgstr "" -#: ../../c-api/bytes.rst:260 -msgid "" -"Unescape a backslash-escaped string *s*. *s* must not be ``NULL``. *len* " -"must be the size of *s*." +msgid "Unescape a backslash-escaped string *s*. *s* must not be ``NULL``. *len* must be the size of *s*." msgstr "" -#: ../../c-api/bytes.rst:263 -msgid "" -"*errors* must be one of ``\"strict\"``, ``\"replace\"``, or ``\"ignore\"``. " -"If *errors* is ``NULL``, then ``\"strict\"`` is used by default." +msgid "*errors* must be one of ``\"strict\"``, ``\"replace\"``, or ``\"ignore\"``. If *errors* is ``NULL``, then ``\"strict\"`` is used by default." msgstr "" -#: ../../c-api/bytes.rst:266 -msgid "" -"On success, this function returns a :term:`strong reference` to a " -"Python :class:`bytes` object containing the unescaped string. On failure, " -"this function returns ``NULL`` with an exception set." +msgid "On success, this function returns a :term:`strong reference` to a Python :class:`bytes` object containing the unescaped string. On failure, this function returns ``NULL`` with an exception set." msgstr "" -#: ../../c-api/bytes.rst:270 msgid "*unicode* and *recode_encoding* are now unused." msgstr "" -#: ../../c-api/bytes.rst:11 msgid "object" msgstr "" -#: ../../c-api/bytes.rst:11 msgid "bytes" msgstr "" diff --git a/c-api/call.po b/c-api/call.po index cac9c2b6..c58eba55 100644 --- a/c-api/call.po +++ b/c-api/call.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:47+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,560 +24,299 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../c-api/call.rst:6 msgid "Call Protocol" msgstr "" -#: ../../c-api/call.rst:8 -msgid "" -"CPython supports two different calling protocols: *tp_call* and vectorcall." +msgid "CPython supports two different calling protocols: *tp_call* and vectorcall." msgstr "" -#: ../../c-api/call.rst:12 msgid "The *tp_call* Protocol" msgstr "" -#: ../../c-api/call.rst:14 -msgid "" -"Instances of classes that set :c:member:`~PyTypeObject.tp_call` are " -"callable. The signature of the slot is::" +msgid "Instances of classes that set :c:member:`~PyTypeObject.tp_call` are callable. The signature of the slot is::" msgstr "" -#: ../../c-api/call.rst:17 -msgid "" -"PyObject *tp_call(PyObject *callable, PyObject *args, PyObject *kwargs);" +msgid "PyObject *tp_call(PyObject *callable, PyObject *args, PyObject *kwargs);" msgstr "" -#: ../../c-api/call.rst:19 -msgid "" -"A call is made using a tuple for the positional arguments and a dict for the " -"keyword arguments, similarly to ``callable(*args, **kwargs)`` in Python " -"code. *args* must be non-NULL (use an empty tuple if there are no arguments) " -"but *kwargs* may be *NULL* if there are no keyword arguments." +msgid "A call is made using a tuple for the positional arguments and a dict for the keyword arguments, similarly to ``callable(*args, **kwargs)`` in Python code. *args* must be non-NULL (use an empty tuple if there are no arguments) but *kwargs* may be *NULL* if there are no keyword arguments." msgstr "" -#: ../../c-api/call.rst:25 -msgid "" -"This convention is not only used by " -"*tp_call*: :c:member:`~PyTypeObject.tp_new` " -"and :c:member:`~PyTypeObject.tp_init` also pass arguments this way." +msgid "This convention is not only used by *tp_call*: :c:member:`~PyTypeObject.tp_new` and :c:member:`~PyTypeObject.tp_init` also pass arguments this way." msgstr "" -#: ../../c-api/call.rst:29 -msgid "" -"To call an object, use :c:func:`PyObject_Call` or another :ref:`call API " -"`." +msgid "To call an object, use :c:func:`PyObject_Call` or another :ref:`call API `." msgstr "" -#: ../../c-api/call.rst:36 msgid "The Vectorcall Protocol" msgstr "" -#: ../../c-api/call.rst:40 -msgid "" -"The vectorcall protocol was introduced in :pep:`590` as an additional " -"protocol for making calls more efficient." +msgid "The vectorcall protocol was introduced in :pep:`590` as an additional protocol for making calls more efficient." msgstr "" -#: ../../c-api/call.rst:43 -msgid "" -"As rule of thumb, CPython will prefer the vectorcall for internal calls if " -"the callable supports it. However, this is not a hard rule. Additionally, " -"some third-party extensions use *tp_call* directly (rather than " -"using :c:func:`PyObject_Call`). Therefore, a class supporting vectorcall " -"must also implement :c:member:`~PyTypeObject.tp_call`. Moreover, the " -"callable must behave the same regardless of which protocol is used. The " -"recommended way to achieve this is by " -"setting :c:member:`~PyTypeObject.tp_call` to :c:func:`PyVectorcall_Call`. " -"This bears repeating:" -msgstr "" - -#: ../../c-api/call.rst:57 -msgid "" -"A class supporting vectorcall **must** also " -"implement :c:member:`~PyTypeObject.tp_call` with the same semantics." +msgid "As rule of thumb, CPython will prefer the vectorcall for internal calls if the callable supports it. However, this is not a hard rule. Additionally, some third-party extensions use *tp_call* directly (rather than using :c:func:`PyObject_Call`). Therefore, a class supporting vectorcall must also implement :c:member:`~PyTypeObject.tp_call`. Moreover, the callable must behave the same regardless of which protocol is used. The recommended way to achieve this is by setting :c:member:`~PyTypeObject.tp_call` to :c:func:`PyVectorcall_Call`. This bears repeating:" msgstr "" -#: ../../c-api/call.rst:62 -msgid "" -"The :c:macro:`Py_TPFLAGS_HAVE_VECTORCALL` flag is now removed from a class " -"when the class's :py:meth:`~object.__call__` method is reassigned. (This " -"internally sets :c:member:`~PyTypeObject.tp_call` only, and thus may make it " -"behave differently than the vectorcall function.) In earlier Python " -"versions, vectorcall should only be used with :c:macro:`immutable " -"` or static types." +msgid "A class supporting vectorcall **must** also implement :c:member:`~PyTypeObject.tp_call` with the same semantics." msgstr "" -#: ../../c-api/call.rst:69 -msgid "" -"A class should not implement vectorcall if that would be slower than " -"*tp_call*. For example, if the callee needs to convert the arguments to an " -"args tuple and kwargs dict anyway, then there is no point in implementing " -"vectorcall." +msgid "The :c:macro:`Py_TPFLAGS_HAVE_VECTORCALL` flag is now removed from a class when the class's :py:meth:`~object.__call__` method is reassigned. (This internally sets :c:member:`~PyTypeObject.tp_call` only, and thus may make it behave differently than the vectorcall function.) In earlier Python versions, vectorcall should only be used with :c:macro:`immutable ` or static types." msgstr "" -#: ../../c-api/call.rst:74 -msgid "" -"Classes can implement the vectorcall protocol by enabling " -"the :c:macro:`Py_TPFLAGS_HAVE_VECTORCALL` flag and " -"setting :c:member:`~PyTypeObject.tp_vectorcall_offset` to the offset inside " -"the object structure where a *vectorcallfunc* appears. This is a pointer to " -"a function with the following signature:" +msgid "A class should not implement vectorcall if that would be slower than *tp_call*. For example, if the callee needs to convert the arguments to an args tuple and kwargs dict anyway, then there is no point in implementing vectorcall." +msgstr "" + +msgid "Classes can implement the vectorcall protocol by enabling the :c:macro:`Py_TPFLAGS_HAVE_VECTORCALL` flag and setting :c:member:`~PyTypeObject.tp_vectorcall_offset` to the offset inside the object structure where a *vectorcallfunc* appears. This is a pointer to a function with the following signature:" msgstr "" -#: ../../c-api/call.rst:82 msgid "*callable* is the object being called." msgstr "" -#: ../../c-api/call.rst:83 -msgid "" -"*args* is a C array consisting of the positional arguments followed by the" +msgid "*args* is a C array consisting of the positional arguments followed by the" msgstr "" -#: ../../c-api/call.rst:84 -msgid "" -"values of the keyword arguments. This can be *NULL* if there are no " -"arguments." +msgid "values of the keyword arguments. This can be *NULL* if there are no arguments." msgstr "" -#: ../../c-api/call.rst:86 msgid "*nargsf* is the number of positional arguments plus possibly the" msgstr "" -#: ../../c-api/call.rst:87 -msgid "" -":c:macro:`PY_VECTORCALL_ARGUMENTS_OFFSET` flag. To get the actual number of " -"positional arguments from *nargsf*, use :c:func:`PyVectorcall_NARGS`." +msgid ":c:macro:`PY_VECTORCALL_ARGUMENTS_OFFSET` flag. To get the actual number of positional arguments from *nargsf*, use :c:func:`PyVectorcall_NARGS`." msgstr "" -#: ../../c-api/call.rst:90 msgid "*kwnames* is a tuple containing the names of the keyword arguments;" msgstr "" -#: ../../c-api/call.rst:91 -msgid "" -"in other words, the keys of the kwargs dict. These names must be strings " -"(instances of ``str`` or a subclass) and they must be unique. If there are " -"no keyword arguments, then *kwnames* can instead be *NULL*." +msgid "in other words, the keys of the kwargs dict. These names must be strings (instances of ``str`` or a subclass) and they must be unique. If there are no keyword arguments, then *kwnames* can instead be *NULL*." msgstr "" -#: ../../c-api/call.rst:98 -msgid "" -"If this flag is set in a vectorcall *nargsf* argument, the callee is allowed " -"to temporarily change ``args[-1]``. In other words, *args* points to " -"argument 1 (not 0) in the allocated vector. The callee must restore the " -"value of ``args[-1]`` before returning." +msgid "If this flag is set in a vectorcall *nargsf* argument, the callee is allowed to temporarily change ``args[-1]``. In other words, *args* points to argument 1 (not 0) in the allocated vector. The callee must restore the value of ``args[-1]`` before returning." msgstr "" -#: ../../c-api/call.rst:103 -msgid "" -"For :c:func:`PyObject_VectorcallMethod`, this flag means instead that " -"``args[0]`` may be changed." +msgid "For :c:func:`PyObject_VectorcallMethod`, this flag means instead that ``args[0]`` may be changed." msgstr "" -#: ../../c-api/call.rst:106 -msgid "" -"Whenever they can do so cheaply (without additional allocation), callers are " -"encouraged to use :c:macro:`PY_VECTORCALL_ARGUMENTS_OFFSET`. Doing so will " -"allow callables such as bound methods to make their onward calls (which " -"include a prepended *self* argument) very efficiently." +msgid "Whenever they can do so cheaply (without additional allocation), callers are encouraged to use :c:macro:`PY_VECTORCALL_ARGUMENTS_OFFSET`. Doing so will allow callables such as bound methods to make their onward calls (which include a prepended *self* argument) very efficiently." msgstr "" -#: ../../c-api/call.rst:113 -msgid "" -"To call an object that implements vectorcall, use a :ref:`call API ` function as with any other callable. :c:func:`PyObject_Vectorcall` " -"will usually be most efficient." +msgid "To call an object that implements vectorcall, use a :ref:`call API ` function as with any other callable. :c:func:`PyObject_Vectorcall` will usually be most efficient." msgstr "" -#: ../../c-api/call.rst:119 msgid "Recursion Control" msgstr "" -#: ../../c-api/call.rst:121 -msgid "" -"When using *tp_call*, callees do not need to worry about :ref:`recursion " -"`: CPython uses :c:func:`Py_EnterRecursiveCall` " -"and :c:func:`Py_LeaveRecursiveCall` for calls made using *tp_call*." +msgid "When using *tp_call*, callees do not need to worry about :ref:`recursion `: CPython uses :c:func:`Py_EnterRecursiveCall` and :c:func:`Py_LeaveRecursiveCall` for calls made using *tp_call*." msgstr "" -#: ../../c-api/call.rst:126 -msgid "" -"For efficiency, this is not the case for calls done using vectorcall: the " -"callee should use *Py_EnterRecursiveCall* and *Py_LeaveRecursiveCall* if " -"needed." +msgid "For efficiency, this is not the case for calls done using vectorcall: the callee should use *Py_EnterRecursiveCall* and *Py_LeaveRecursiveCall* if needed." msgstr "" -#: ../../c-api/call.rst:132 msgid "Vectorcall Support API" msgstr "" -#: ../../c-api/call.rst:136 -msgid "" -"Given a vectorcall *nargsf* argument, return the actual number of arguments. " -"Currently equivalent to::" +msgid "Given a vectorcall *nargsf* argument, return the actual number of arguments. Currently equivalent to::" msgstr "" -#: ../../c-api/call.rst:140 msgid "(Py_ssize_t)(nargsf & ~PY_VECTORCALL_ARGUMENTS_OFFSET)" msgstr "" -#: ../../c-api/call.rst:142 -msgid "" -"However, the function ``PyVectorcall_NARGS`` should be used to allow for " -"future extensions." +msgid "However, the function ``PyVectorcall_NARGS`` should be used to allow for future extensions." msgstr "" -#: ../../c-api/call.rst:149 -msgid "" -"If *op* does not support the vectorcall protocol (either because the type " -"does not or because the specific instance does not), return *NULL*. " -"Otherwise, return the vectorcall function pointer stored in *op*. This " -"function never raises an exception." +msgid "If *op* does not support the vectorcall protocol (either because the type does not or because the specific instance does not), return *NULL*. Otherwise, return the vectorcall function pointer stored in *op*. This function never raises an exception." msgstr "" -#: ../../c-api/call.rst:154 -msgid "" -"This is mostly useful to check whether or not *op* supports vectorcall, " -"which can be done by checking ``PyVectorcall_Function(op) != NULL``." +msgid "This is mostly useful to check whether or not *op* supports vectorcall, which can be done by checking ``PyVectorcall_Function(op) != NULL``." msgstr "" -#: ../../c-api/call.rst:161 -msgid "" -"Call *callable*'s :c:type:`vectorcallfunc` with positional and keyword " -"arguments given in a tuple and dict, respectively." +msgid "Call *callable*'s :c:type:`vectorcallfunc` with positional and keyword arguments given in a tuple and dict, respectively." msgstr "" -#: ../../c-api/call.rst:164 -msgid "" -"This is a specialized function, intended to be put in " -"the :c:member:`~PyTypeObject.tp_call` slot or be used in an implementation " -"of ``tp_call``. It does not check the :c:macro:`Py_TPFLAGS_HAVE_VECTORCALL` " -"flag and it does not fall back to ``tp_call``." +msgid "This is a specialized function, intended to be put in the :c:member:`~PyTypeObject.tp_call` slot or be used in an implementation of ``tp_call``. It does not check the :c:macro:`Py_TPFLAGS_HAVE_VECTORCALL` flag and it does not fall back to ``tp_call``." msgstr "" -#: ../../c-api/call.rst:175 msgid "Object Calling API" msgstr "" -#: ../../c-api/call.rst:177 -msgid "" -"Various functions are available for calling a Python object. Each converts " -"its arguments to a convention supported by the called object – either " -"*tp_call* or vectorcall. In order to do as little conversion as possible, " -"pick one that best fits the format of data you have available." +msgid "Various functions are available for calling a Python object. Each converts its arguments to a convention supported by the called object – either *tp_call* or vectorcall. In order to do as little conversion as possible, pick one that best fits the format of data you have available." msgstr "" -#: ../../c-api/call.rst:183 -msgid "" -"The following table summarizes the available functions; please see " -"individual documentation for details." +msgid "The following table summarizes the available functions; please see individual documentation for details." msgstr "" -#: ../../c-api/call.rst:187 msgid "Function" msgstr "" -#: ../../c-api/call.rst:187 msgid "callable" msgstr "" -#: ../../c-api/call.rst:187 msgid "args" msgstr "" -#: ../../c-api/call.rst:187 msgid "kwargs" msgstr "" -#: ../../c-api/call.rst:189 msgid ":c:func:`PyObject_Call`" msgstr "" -#: ../../c-api/call.rst:189 ../../c-api/call.rst:191 ../../c-api/call.rst:193 -#: ../../c-api/call.rst:195 ../../c-api/call.rst:197 ../../c-api/call.rst:201 -#: ../../c-api/call.rst:209 ../../c-api/call.rst:211 msgid "``PyObject *``" msgstr "" -#: ../../c-api/call.rst:189 msgid "tuple" msgstr "" -#: ../../c-api/call.rst:189 ../../c-api/call.rst:211 msgid "dict/``NULL``" msgstr "" -#: ../../c-api/call.rst:191 msgid ":c:func:`PyObject_CallNoArgs`" msgstr "" -#: ../../c-api/call.rst:191 ../../c-api/call.rst:193 ../../c-api/call.rst:195 -#: ../../c-api/call.rst:197 ../../c-api/call.rst:199 ../../c-api/call.rst:201 -#: ../../c-api/call.rst:203 ../../c-api/call.rst:205 ../../c-api/call.rst:207 msgid "---" msgstr "" -#: ../../c-api/call.rst:193 msgid ":c:func:`PyObject_CallOneArg`" msgstr "" -#: ../../c-api/call.rst:193 ../../c-api/call.rst:207 msgid "1 object" msgstr "" -#: ../../c-api/call.rst:195 msgid ":c:func:`PyObject_CallObject`" msgstr "" -#: ../../c-api/call.rst:195 msgid "tuple/``NULL``" msgstr "" -#: ../../c-api/call.rst:197 msgid ":c:func:`PyObject_CallFunction`" msgstr "" -#: ../../c-api/call.rst:197 ../../c-api/call.rst:199 msgid "format" msgstr "" -#: ../../c-api/call.rst:199 msgid ":c:func:`PyObject_CallMethod`" msgstr "" -#: ../../c-api/call.rst:199 msgid "obj + ``char*``" msgstr "" -#: ../../c-api/call.rst:201 msgid ":c:func:`PyObject_CallFunctionObjArgs`" msgstr "" -#: ../../c-api/call.rst:201 ../../c-api/call.rst:203 msgid "variadic" msgstr "" -#: ../../c-api/call.rst:203 msgid ":c:func:`PyObject_CallMethodObjArgs`" msgstr "" -#: ../../c-api/call.rst:203 ../../c-api/call.rst:205 ../../c-api/call.rst:207 msgid "obj + name" msgstr "" -#: ../../c-api/call.rst:205 msgid ":c:func:`PyObject_CallMethodNoArgs`" msgstr "" -#: ../../c-api/call.rst:207 msgid ":c:func:`PyObject_CallMethodOneArg`" msgstr "" -#: ../../c-api/call.rst:209 msgid ":c:func:`PyObject_Vectorcall`" msgstr "" -#: ../../c-api/call.rst:209 ../../c-api/call.rst:211 ../../c-api/call.rst:213 msgid "vectorcall" msgstr "" -#: ../../c-api/call.rst:211 msgid ":c:func:`PyObject_VectorcallDict`" msgstr "" -#: ../../c-api/call.rst:213 msgid ":c:func:`PyObject_VectorcallMethod`" msgstr "" -#: ../../c-api/call.rst:213 msgid "arg + name" msgstr "" -#: ../../c-api/call.rst:219 -msgid "" -"Call a callable Python object *callable*, with arguments given by the tuple " -"*args*, and named arguments given by the dictionary *kwargs*." +msgid "Call a callable Python object *callable*, with arguments given by the tuple *args*, and named arguments given by the dictionary *kwargs*." msgstr "" -#: ../../c-api/call.rst:222 -msgid "" -"*args* must not be *NULL*; use an empty tuple if no arguments are needed. If " -"no named arguments are needed, *kwargs* can be *NULL*." +msgid "*args* must not be *NULL*; use an empty tuple if no arguments are needed. If no named arguments are needed, *kwargs* can be *NULL*." msgstr "" -#: ../../c-api/call.rst:225 ../../c-api/call.rst:237 ../../c-api/call.rst:248 -#: ../../c-api/call.rst:259 ../../c-api/call.rst:271 ../../c-api/call.rst:291 -#: ../../c-api/call.rst:310 ../../c-api/call.rst:324 ../../c-api/call.rst:333 -#: ../../c-api/call.rst:345 ../../c-api/call.rst:360 ../../c-api/call.rst:399 -msgid "" -"Return the result of the call on success, or raise an exception and return " -"*NULL* on failure." +msgid "Return the result of the call on success, or raise an exception and return *NULL* on failure." msgstr "" -#: ../../c-api/call.rst:228 -msgid "" -"This is the equivalent of the Python expression: ``callable(*args, " -"**kwargs)``." +msgid "This is the equivalent of the Python expression: ``callable(*args, **kwargs)``." msgstr "" -#: ../../c-api/call.rst:234 -msgid "" -"Call a callable Python object *callable* without any arguments. It is the " -"most efficient way to call a callable Python object without any argument." +msgid "Call a callable Python object *callable* without any arguments. It is the most efficient way to call a callable Python object without any argument." msgstr "" -#: ../../c-api/call.rst:245 -msgid "" -"Call a callable Python object *callable* with exactly 1 positional argument " -"*arg* and no keyword arguments." +msgid "Call a callable Python object *callable* with exactly 1 positional argument *arg* and no keyword arguments." msgstr "" -#: ../../c-api/call.rst:256 -msgid "" -"Call a callable Python object *callable*, with arguments given by the tuple " -"*args*. If no arguments are needed, then *args* can be *NULL*." +msgid "Call a callable Python object *callable*, with arguments given by the tuple *args*. If no arguments are needed, then *args* can be *NULL*." msgstr "" -#: ../../c-api/call.rst:262 ../../c-api/call.rst:274 msgid "This is the equivalent of the Python expression: ``callable(*args)``." msgstr "" -#: ../../c-api/call.rst:267 -msgid "" -"Call a callable Python object *callable*, with a variable number of C " -"arguments. The C arguments are described using a :c:func:`Py_BuildValue` " -"style format string. The format can be *NULL*, indicating that no arguments " -"are provided." +msgid "Call a callable Python object *callable*, with a variable number of C arguments. The C arguments are described using a :c:func:`Py_BuildValue` style format string. The format can be *NULL*, indicating that no arguments are provided." msgstr "" -#: ../../c-api/call.rst:276 -msgid "" -"Note that if you only pass :c:expr:`PyObject *` " -"args, :c:func:`PyObject_CallFunctionObjArgs` is a faster alternative." +msgid "Note that if you only pass :c:expr:`PyObject *` args, :c:func:`PyObject_CallFunctionObjArgs` is a faster alternative." msgstr "" -#: ../../c-api/call.rst:279 msgid "The type of *format* was changed from ``char *``." msgstr "" -#: ../../c-api/call.rst:285 -msgid "" -"Call the method named *name* of object *obj* with a variable number of C " -"arguments. The C arguments are described by a :c:func:`Py_BuildValue` " -"format string that should produce a tuple." +msgid "Call the method named *name* of object *obj* with a variable number of C arguments. The C arguments are described by a :c:func:`Py_BuildValue` format string that should produce a tuple." msgstr "" -#: ../../c-api/call.rst:289 msgid "The format can be *NULL*, indicating that no arguments are provided." msgstr "" -#: ../../c-api/call.rst:294 -msgid "" -"This is the equivalent of the Python expression: ``obj.name(arg1, " -"arg2, ...)``." +msgid "This is the equivalent of the Python expression: ``obj.name(arg1, arg2, ...)``." msgstr "" -#: ../../c-api/call.rst:297 -msgid "" -"Note that if you only pass :c:expr:`PyObject *` " -"args, :c:func:`PyObject_CallMethodObjArgs` is a faster alternative." +msgid "Note that if you only pass :c:expr:`PyObject *` args, :c:func:`PyObject_CallMethodObjArgs` is a faster alternative." msgstr "" -#: ../../c-api/call.rst:300 msgid "The types of *name* and *format* were changed from ``char *``." msgstr "" -#: ../../c-api/call.rst:306 -msgid "" -"Call a callable Python object *callable*, with a variable number " -"of :c:expr:`PyObject *` arguments. The arguments are provided as a variable " -"number of parameters followed by *NULL*." +msgid "Call a callable Python object *callable*, with a variable number of :c:expr:`PyObject *` arguments. The arguments are provided as a variable number of parameters followed by *NULL*." msgstr "" -#: ../../c-api/call.rst:313 -msgid "" -"This is the equivalent of the Python expression: ``callable(arg1, " -"arg2, ...)``." +msgid "This is the equivalent of the Python expression: ``callable(arg1, arg2, ...)``." msgstr "" -#: ../../c-api/call.rst:319 -msgid "" -"Call a method of the Python object *obj*, where the name of the method is " -"given as a Python string object in *name*. It is called with a variable " -"number of :c:expr:`PyObject *` arguments. The arguments are provided as a " -"variable number of parameters followed by *NULL*." +msgid "Call a method of the Python object *obj*, where the name of the method is given as a Python string object in *name*. It is called with a variable number of :c:expr:`PyObject *` arguments. The arguments are provided as a variable number of parameters followed by *NULL*." msgstr "" -#: ../../c-api/call.rst:330 -msgid "" -"Call a method of the Python object *obj* without arguments, where the name " -"of the method is given as a Python string object in *name*." +msgid "Call a method of the Python object *obj* without arguments, where the name of the method is given as a Python string object in *name*." msgstr "" -#: ../../c-api/call.rst:341 -msgid "" -"Call a method of the Python object *obj* with a single positional argument " -"*arg*, where the name of the method is given as a Python string object in " -"*name*." +msgid "Call a method of the Python object *obj* with a single positional argument *arg*, where the name of the method is given as a Python string object in *name*." msgstr "" -#: ../../c-api/call.rst:355 -msgid "" -"Call a callable Python object *callable*. The arguments are the same as " -"for :c:type:`vectorcallfunc`. If *callable* supports vectorcall_, this " -"directly calls the vectorcall function stored in *callable*." +msgid "Call a callable Python object *callable*. The arguments are the same as for :c:type:`vectorcallfunc`. If *callable* supports vectorcall_, this directly calls the vectorcall function stored in *callable*." msgstr "" -#: ../../c-api/call.rst:363 msgid "as ``_PyObject_Vectorcall``" msgstr "" -#: ../../c-api/call.rst:367 -msgid "" -"Renamed to the current name, without the leading underscore. The old " -"provisional name is :term:`soft deprecated`." +msgid "Renamed to the current name, without the leading underscore. The old provisional name is :term:`soft deprecated`." msgstr "" -#: ../../c-api/call.rst:372 -msgid "" -"Call *callable* with positional arguments passed exactly as in the " -"vectorcall_ protocol, but with keyword arguments passed as a dictionary " -"*kwdict*. The *args* array contains only the positional arguments." +msgid "Call *callable* with positional arguments passed exactly as in the vectorcall_ protocol, but with keyword arguments passed as a dictionary *kwdict*. The *args* array contains only the positional arguments." msgstr "" -#: ../../c-api/call.rst:376 -msgid "" -"Regardless of which protocol is used internally, a conversion of arguments " -"needs to be done. Therefore, this function should only be used if the caller " -"already has a dictionary ready to use for the keyword arguments, but not a " -"tuple for the positional arguments." +msgid "Regardless of which protocol is used internally, a conversion of arguments needs to be done. Therefore, this function should only be used if the caller already has a dictionary ready to use for the keyword arguments, but not a tuple for the positional arguments." msgstr "" -#: ../../c-api/call.rst:386 -msgid "" -"Call a method using the vectorcall calling convention. The name of the " -"method is given as a Python string *name*. The object whose method is called " -"is *args[0]*, and the *args* array starting at *args[1]* represents the " -"arguments of the call. There must be at least one positional argument. " -"*nargsf* is the number of positional arguments including *args[0]*, " -"plus :c:macro:`PY_VECTORCALL_ARGUMENTS_OFFSET` if the value of ``args[0]`` " -"may temporarily be changed. Keyword arguments can be passed just like " -"in :c:func:`PyObject_Vectorcall`." +msgid "Call a method using the vectorcall calling convention. The name of the method is given as a Python string *name*. The object whose method is called is *args[0]*, and the *args* array starting at *args[1]* represents the arguments of the call. There must be at least one positional argument. *nargsf* is the number of positional arguments including *args[0]*, plus :c:macro:`PY_VECTORCALL_ARGUMENTS_OFFSET` if the value of ``args[0]`` may temporarily be changed. Keyword arguments can be passed just like in :c:func:`PyObject_Vectorcall`." msgstr "" -#: ../../c-api/call.rst:395 -msgid "" -"If the object has the :c:macro:`Py_TPFLAGS_METHOD_DESCRIPTOR` feature, this " -"will call the unbound method object with the full *args* vector as arguments." +msgid "If the object has the :c:macro:`Py_TPFLAGS_METHOD_DESCRIPTOR` feature, this will call the unbound method object with the full *args* vector as arguments." msgstr "" -#: ../../c-api/call.rst:406 msgid "Call Support API" msgstr "" -#: ../../c-api/call.rst:410 -msgid "" -"Determine if the object *o* is callable. Return ``1`` if the object is " -"callable and ``0`` otherwise. This function always succeeds." +msgid "Determine if the object *o* is callable. Return ``1`` if the object is callable and ``0`` otherwise. This function always succeeds." msgstr "" diff --git a/c-api/capsule.po b/c-api/capsule.po index 7f65c8a6..98619c92 100644 --- a/c-api/capsule.po +++ b/c-api/capsule.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:47+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -22,219 +22,110 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../c-api/capsule.rst:6 msgid "Capsules" msgstr "" -#: ../../c-api/capsule.rst:10 -msgid "" -"Refer to :ref:`using-capsules` for more information on using these objects." +msgid "Refer to :ref:`using-capsules` for more information on using these objects." msgstr "" -#: ../../c-api/capsule.rst:17 -msgid "" -"This subtype of :c:type:`PyObject` represents an opaque value, useful for C " -"extension modules which need to pass an opaque value (as a :c:expr:`void*` " -"pointer) through Python code to other C code. It is often used to make a C " -"function pointer defined in one module available to other modules, so the " -"regular import mechanism can be used to access C APIs defined in dynamically " -"loaded modules." +msgid "This subtype of :c:type:`PyObject` represents an opaque value, useful for C extension modules which need to pass an opaque value (as a :c:expr:`void*` pointer) through Python code to other C code. It is often used to make a C function pointer defined in one module available to other modules, so the regular import mechanism can be used to access C APIs defined in dynamically loaded modules." msgstr "" -#: ../../c-api/capsule.rst:27 -msgid "" -"The type object corresponding to capsule objects. This is the same object " -"as :class:`types.CapsuleType` in the Python layer." +msgid "The type object corresponding to capsule objects. This is the same object as :class:`types.CapsuleType` in the Python layer." msgstr "" -#: ../../c-api/capsule.rst:33 msgid "The type of a destructor callback for a capsule. Defined as::" msgstr "" -#: ../../c-api/capsule.rst:35 msgid "typedef void (*PyCapsule_Destructor)(PyObject *);" msgstr "" -#: ../../c-api/capsule.rst:37 -msgid "" -"See :c:func:`PyCapsule_New` for the semantics of PyCapsule_Destructor " -"callbacks." +msgid "See :c:func:`PyCapsule_New` for the semantics of PyCapsule_Destructor callbacks." msgstr "" -#: ../../c-api/capsule.rst:43 -msgid "" -"Return true if its argument is a :c:type:`PyCapsule`. This function always " -"succeeds." +msgid "Return true if its argument is a :c:type:`PyCapsule`. This function always succeeds." msgstr "" -#: ../../c-api/capsule.rst:49 -msgid "" -"Create a :c:type:`PyCapsule` encapsulating the *pointer*. The *pointer* " -"argument may not be ``NULL``." +msgid "Create a :c:type:`PyCapsule` encapsulating the *pointer*. The *pointer* argument may not be ``NULL``." msgstr "" -#: ../../c-api/capsule.rst:52 msgid "On failure, set an exception and return ``NULL``." msgstr "" -#: ../../c-api/capsule.rst:54 -msgid "" -"The *name* string may either be ``NULL`` or a pointer to a valid C string. " -"If non-``NULL``, this string must outlive the capsule. (Though it is " -"permitted to free it inside the *destructor*.)" +msgid "The *name* string may either be ``NULL`` or a pointer to a valid C string. If non-``NULL``, this string must outlive the capsule. (Though it is permitted to free it inside the *destructor*.)" msgstr "" -#: ../../c-api/capsule.rst:58 -msgid "" -"If the *destructor* argument is not ``NULL``, it will be called with the " -"capsule as its argument when it is destroyed." +msgid "If the *destructor* argument is not ``NULL``, it will be called with the capsule as its argument when it is destroyed." msgstr "" -#: ../../c-api/capsule.rst:61 -msgid "" -"If this capsule will be stored as an attribute of a module, the *name* " -"should be specified as ``modulename.attributename``. This will enable other " -"modules to import the capsule using :c:func:`PyCapsule_Import`." +msgid "If this capsule will be stored as an attribute of a module, the *name* should be specified as ``modulename.attributename``. This will enable other modules to import the capsule using :c:func:`PyCapsule_Import`." msgstr "" -#: ../../c-api/capsule.rst:68 -msgid "" -"Retrieve the *pointer* stored in the capsule. On failure, set an exception " -"and return ``NULL``." +msgid "Retrieve the *pointer* stored in the capsule. On failure, set an exception and return ``NULL``." msgstr "" -#: ../../c-api/capsule.rst:71 -msgid "" -"The *name* parameter must compare exactly to the name stored in the capsule. " -"If the name stored in the capsule is ``NULL``, the *name* passed in must " -"also be ``NULL``. Python uses the C function :c:func:`!strcmp` to compare " -"capsule names." +msgid "The *name* parameter must compare exactly to the name stored in the capsule. If the name stored in the capsule is ``NULL``, the *name* passed in must also be ``NULL``. Python uses the C function :c:func:`!strcmp` to compare capsule names." msgstr "" -#: ../../c-api/capsule.rst:79 -msgid "" -"Return the current destructor stored in the capsule. On failure, set an " -"exception and return ``NULL``." +msgid "Return the current destructor stored in the capsule. On failure, set an exception and return ``NULL``." msgstr "" -#: ../../c-api/capsule.rst:82 -msgid "" -"It is legal for a capsule to have a ``NULL`` destructor. This makes a " -"``NULL`` return code somewhat ambiguous; use :c:func:`PyCapsule_IsValid` " -"or :c:func:`PyErr_Occurred` to disambiguate." +msgid "It is legal for a capsule to have a ``NULL`` destructor. This makes a ``NULL`` return code somewhat ambiguous; use :c:func:`PyCapsule_IsValid` or :c:func:`PyErr_Occurred` to disambiguate." msgstr "" -#: ../../c-api/capsule.rst:89 -msgid "" -"Return the current context stored in the capsule. On failure, set an " -"exception and return ``NULL``." +msgid "Return the current context stored in the capsule. On failure, set an exception and return ``NULL``." msgstr "" -#: ../../c-api/capsule.rst:92 -msgid "" -"It is legal for a capsule to have a ``NULL`` context. This makes a ``NULL`` " -"return code somewhat ambiguous; use :c:func:`PyCapsule_IsValid` " -"or :c:func:`PyErr_Occurred` to disambiguate." +msgid "It is legal for a capsule to have a ``NULL`` context. This makes a ``NULL`` return code somewhat ambiguous; use :c:func:`PyCapsule_IsValid` or :c:func:`PyErr_Occurred` to disambiguate." msgstr "" -#: ../../c-api/capsule.rst:99 -msgid "" -"Return the current name stored in the capsule. On failure, set an exception " -"and return ``NULL``." +msgid "Return the current name stored in the capsule. On failure, set an exception and return ``NULL``." msgstr "" -#: ../../c-api/capsule.rst:102 -msgid "" -"It is legal for a capsule to have a ``NULL`` name. This makes a ``NULL`` " -"return code somewhat ambiguous; use :c:func:`PyCapsule_IsValid` " -"or :c:func:`PyErr_Occurred` to disambiguate." +msgid "It is legal for a capsule to have a ``NULL`` name. This makes a ``NULL`` return code somewhat ambiguous; use :c:func:`PyCapsule_IsValid` or :c:func:`PyErr_Occurred` to disambiguate." msgstr "" -#: ../../c-api/capsule.rst:109 -msgid "" -"Import a pointer to a C object from a capsule attribute in a module. The " -"*name* parameter should specify the full name to the attribute, as in " -"``module.attribute``. The *name* stored in the capsule must match this " -"string exactly." +msgid "Import a pointer to a C object from a capsule attribute in a module. The *name* parameter should specify the full name to the attribute, as in ``module.attribute``. The *name* stored in the capsule must match this string exactly." msgstr "" -#: ../../c-api/capsule.rst:114 -msgid "" -"This function splits *name* on the ``.`` character, and imports the first " -"element. It then processes further elements using attribute lookups." +msgid "This function splits *name* on the ``.`` character, and imports the first element. It then processes further elements using attribute lookups." msgstr "" -#: ../../c-api/capsule.rst:117 -msgid "" -"Return the capsule's internal *pointer* on success. On failure, set an " -"exception and return ``NULL``." +msgid "Return the capsule's internal *pointer* on success. On failure, set an exception and return ``NULL``." msgstr "" -#: ../../c-api/capsule.rst:122 -msgid "" -"If *name* points to an attribute of some submodule or subpackage, this " -"submodule or subpackage must be previously imported using other means (for " -"example, by using :c:func:`PyImport_ImportModule`) for the attribute lookups " -"to succeed." +msgid "If *name* points to an attribute of some submodule or subpackage, this submodule or subpackage must be previously imported using other means (for example, by using :c:func:`PyImport_ImportModule`) for the attribute lookups to succeed." msgstr "" -#: ../../c-api/capsule.rst:127 msgid "*no_block* has no effect anymore." msgstr "" -#: ../../c-api/capsule.rst:133 -msgid "" -"Determines whether or not *capsule* is a valid capsule. A valid capsule is " -"non-``NULL``, passes :c:func:`PyCapsule_CheckExact`, has a non-``NULL`` " -"pointer stored in it, and its internal name matches the *name* parameter. " -"(See :c:func:`PyCapsule_GetPointer` for information on how capsule names are " -"compared.)" +msgid "Determines whether or not *capsule* is a valid capsule. A valid capsule is non-``NULL``, passes :c:func:`PyCapsule_CheckExact`, has a non-``NULL`` pointer stored in it, and its internal name matches the *name* parameter. (See :c:func:`PyCapsule_GetPointer` for information on how capsule names are compared.)" msgstr "" -#: ../../c-api/capsule.rst:139 -msgid "" -"In other words, if :c:func:`PyCapsule_IsValid` returns a true value, calls " -"to any of the accessors (any function starting with ``PyCapsule_Get``) are " -"guaranteed to succeed." +msgid "In other words, if :c:func:`PyCapsule_IsValid` returns a true value, calls to any of the accessors (any function starting with ``PyCapsule_Get``) are guaranteed to succeed." msgstr "" -#: ../../c-api/capsule.rst:143 -msgid "" -"Return a nonzero value if the object is valid and matches the name passed " -"in. Return ``0`` otherwise. This function will not fail." +msgid "Return a nonzero value if the object is valid and matches the name passed in. Return ``0`` otherwise. This function will not fail." msgstr "" -#: ../../c-api/capsule.rst:149 msgid "Set the context pointer inside *capsule* to *context*." msgstr "" -#: ../../c-api/capsule.rst:151 ../../c-api/capsule.rst:158 -#: ../../c-api/capsule.rst:167 ../../c-api/capsule.rst:175 -msgid "" -"Return ``0`` on success. Return nonzero and set an exception on failure." +msgid "Return ``0`` on success. Return nonzero and set an exception on failure." msgstr "" -#: ../../c-api/capsule.rst:156 msgid "Set the destructor inside *capsule* to *destructor*." msgstr "" -#: ../../c-api/capsule.rst:163 -msgid "" -"Set the name inside *capsule* to *name*. If non-``NULL``, the name must " -"outlive the capsule. If the previous *name* stored in the capsule was not " -"``NULL``, no attempt is made to free it." +msgid "Set the name inside *capsule* to *name*. If non-``NULL``, the name must outlive the capsule. If the previous *name* stored in the capsule was not ``NULL``, no attempt is made to free it." msgstr "" -#: ../../c-api/capsule.rst:172 -msgid "" -"Set the void pointer inside *capsule* to *pointer*. The pointer may not be " -"``NULL``." +msgid "Set the void pointer inside *capsule* to *pointer*. The pointer may not be ``NULL``." msgstr "" -#: ../../c-api/capsule.rst:8 msgid "object" msgstr "" -#: ../../c-api/capsule.rst:8 msgid "Capsule" msgstr "" diff --git a/c-api/cell.po b/c-api/cell.po index 43111eee..ee3a9bf4 100644 --- a/c-api/cell.po +++ b/c-api/cell.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:47+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,70 +21,35 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../c-api/cell.rst:6 msgid "Cell Objects" msgstr "" -#: ../../c-api/cell.rst:8 -msgid "" -"\"Cell\" objects are used to implement variables referenced by multiple " -"scopes. For each such variable, a cell object is created to store the value; " -"the local variables of each stack frame that references the value contain a " -"reference to the cells from outer scopes which also use that variable. When " -"the value is accessed, the value contained in the cell is used instead of " -"the cell object itself. This de-referencing of the cell object requires " -"support from the generated byte-code; these are not automatically de-" -"referenced when accessed. Cell objects are not likely to be useful elsewhere." +msgid "\"Cell\" objects are used to implement variables referenced by multiple scopes. For each such variable, a cell object is created to store the value; the local variables of each stack frame that references the value contain a reference to the cells from outer scopes which also use that variable. When the value is accessed, the value contained in the cell is used instead of the cell object itself. This de-referencing of the cell object requires support from the generated byte-code; these are not automatically de-referenced when accessed. Cell objects are not likely to be useful elsewhere." msgstr "" -#: ../../c-api/cell.rst:20 msgid "The C structure used for cell objects." msgstr "" -#: ../../c-api/cell.rst:25 msgid "The type object corresponding to cell objects." msgstr "" -#: ../../c-api/cell.rst:30 -msgid "" -"Return true if *ob* is a cell object; *ob* must not be ``NULL``. This " -"function always succeeds." +msgid "Return true if *ob* is a cell object; *ob* must not be ``NULL``. This function always succeeds." msgstr "" -#: ../../c-api/cell.rst:36 -msgid "" -"Create and return a new cell object containing the value *ob*. The parameter " -"may be ``NULL``." +msgid "Create and return a new cell object containing the value *ob*. The parameter may be ``NULL``." msgstr "" -#: ../../c-api/cell.rst:42 -msgid "" -"Return the contents of the cell *cell*, which can be ``NULL``. If *cell* is " -"not a cell object, returns ``NULL`` with an exception set." +msgid "Return the contents of the cell *cell*, which can be ``NULL``. If *cell* is not a cell object, returns ``NULL`` with an exception set." msgstr "" -#: ../../c-api/cell.rst:48 -msgid "" -"Return the contents of the cell *cell*, but without checking that *cell* is " -"non-``NULL`` and a cell object." +msgid "Return the contents of the cell *cell*, but without checking that *cell* is non-``NULL`` and a cell object." msgstr "" -#: ../../c-api/cell.rst:54 -msgid "" -"Set the contents of the cell object *cell* to *value*. This releases the " -"reference to any current content of the cell. *value* may be ``NULL``. " -"*cell* must be non-``NULL``." +msgid "Set the contents of the cell object *cell* to *value*. This releases the reference to any current content of the cell. *value* may be ``NULL``. *cell* must be non-``NULL``." msgstr "" -#: ../../c-api/cell.rst:58 -msgid "" -"On success, return ``0``. If *cell* is not a cell object, set an exception " -"and return ``-1``." +msgid "On success, return ``0``. If *cell* is not a cell object, set an exception and return ``-1``." msgstr "" -#: ../../c-api/cell.rst:64 -msgid "" -"Sets the value of the cell object *cell* to *value*. No reference counts " -"are adjusted, and no checks are made for safety; *cell* must be non-``NULL`` " -"and must be a cell object." +msgid "Sets the value of the cell object *cell* to *value*. No reference counts are adjusted, and no checks are made for safety; *cell* must be non-``NULL`` and must be a cell object." msgstr "" diff --git a/c-api/code.po b/c-api/code.po index 1ccde171..3d3d9df2 100644 --- a/c-api/code.po +++ b/c-api/code.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:48+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,458 +23,248 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../c-api/code.rst:8 msgid "Code Objects" msgstr "" -#: ../../c-api/code.rst:12 -msgid "" -"Code objects are a low-level detail of the CPython implementation. Each one " -"represents a chunk of executable code that hasn't yet been bound into a " -"function." +msgid "Code objects are a low-level detail of the CPython implementation. Each one represents a chunk of executable code that hasn't yet been bound into a function." msgstr "" -#: ../../c-api/code.rst:18 -msgid "" -"The C structure of the objects used to describe code objects. The fields of " -"this type are subject to change at any time." +msgid "The C structure of the objects used to describe code objects. The fields of this type are subject to change at any time." msgstr "" -#: ../../c-api/code.rst:24 -msgid "" -"This is an instance of :c:type:`PyTypeObject` representing the " -"Python :ref:`code object `." +msgid "This is an instance of :c:type:`PyTypeObject` representing the Python :ref:`code object `." msgstr "" -#: ../../c-api/code.rst:30 -msgid "" -"Return true if *co* is a :ref:`code object `. This function " -"always succeeds." +msgid "Return true if *co* is a :ref:`code object `. This function always succeeds." msgstr "" -#: ../../c-api/code.rst:35 -msgid "" -"Return the number of :term:`free (closure) variables ` in " -"a code object." +msgid "Return the number of :term:`free (closure) variables ` in a code object." msgstr "" -#: ../../c-api/code.rst:40 -msgid "" -"Return the position of the first :term:`free (closure) variable ` in a code object." +msgid "Return the position of the first :term:`free (closure) variable ` in a code object." msgstr "" -#: ../../c-api/code.rst:45 -msgid "" -"Renamed from ``PyCode_GetFirstFree`` as part of :ref:`unstable-c-api`. The " -"old name is deprecated, but will remain available until the signature " -"changes again." +msgid "Renamed from ``PyCode_GetFirstFree`` as part of :ref:`unstable-c-api`. The old name is deprecated, but will remain available until the signature changes again." msgstr "" -#: ../../c-api/code.rst:51 -msgid "" -"Return a new code object. If you need a dummy code object to create a " -"frame, use :c:func:`PyCode_NewEmpty` instead." +msgid "Return a new code object. If you need a dummy code object to create a frame, use :c:func:`PyCode_NewEmpty` instead." msgstr "" -#: ../../c-api/code.rst:54 -msgid "" -"Since the definition of the bytecode changes often, " -"calling :c:func:`PyUnstable_Code_New` directly can bind you to a precise " -"Python version." +msgid "Since the definition of the bytecode changes often, calling :c:func:`PyUnstable_Code_New` directly can bind you to a precise Python version." msgstr "" -#: ../../c-api/code.rst:57 -msgid "" -"The many arguments of this function are inter-dependent in complex ways, " -"meaning that subtle changes to values are likely to result in incorrect " -"execution or VM crashes. Use this function only with extreme care." +msgid "The many arguments of this function are inter-dependent in complex ways, meaning that subtle changes to values are likely to result in incorrect execution or VM crashes. Use this function only with extreme care." msgstr "" -#: ../../c-api/code.rst:61 msgid "Added ``qualname`` and ``exceptiontable`` parameters." msgstr "" -#: ../../c-api/code.rst:68 -msgid "" -"Renamed from ``PyCode_New`` as part of :ref:`unstable-c-api`. The old name " -"is deprecated, but will remain available until the signature changes again." +msgid "Renamed from ``PyCode_New`` as part of :ref:`unstable-c-api`. The old name is deprecated, but will remain available until the signature changes again." msgstr "" -#: ../../c-api/code.rst:77 -msgid "" -"Similar to :c:func:`PyUnstable_Code_New`, but with an extra " -"\"posonlyargcount\" for positional-only arguments. The same caveats that " -"apply to ``PyUnstable_Code_New`` also apply to this function." +msgid "Similar to :c:func:`PyUnstable_Code_New`, but with an extra \"posonlyargcount\" for positional-only arguments. The same caveats that apply to ``PyUnstable_Code_New`` also apply to this function." msgstr "" -#: ../../c-api/code.rst:80 msgid "as ``PyCode_NewWithPosOnlyArgs``" msgstr "" -#: ../../c-api/code.rst:82 msgid "Added ``qualname`` and ``exceptiontable`` parameters." msgstr "" -#: ../../c-api/code.rst:87 -msgid "" -"Renamed to ``PyUnstable_Code_NewWithPosOnlyArgs``. The old name is " -"deprecated, but will remain available until the signature changes again." +msgid "Renamed to ``PyUnstable_Code_NewWithPosOnlyArgs``. The old name is deprecated, but will remain available until the signature changes again." msgstr "" -#: ../../c-api/code.rst:93 -msgid "" -"Return a new empty code object with the specified filename, function name, " -"and first line number. The resulting code object will raise an ``Exception`` " -"if executed." +msgid "Return a new empty code object with the specified filename, function name, and first line number. The resulting code object will raise an ``Exception`` if executed." msgstr "" -#: ../../c-api/code.rst:99 -msgid "" -"Return the line number of the instruction that occurs on or before " -"``byte_offset`` and ends after it. If you just need the line number of a " -"frame, use :c:func:`PyFrame_GetLineNumber` instead." +msgid "Return the line number of the instruction that occurs on or before ``byte_offset`` and ends after it. If you just need the line number of a frame, use :c:func:`PyFrame_GetLineNumber` instead." msgstr "" -#: ../../c-api/code.rst:102 -msgid "" -"For efficiently iterating over the line numbers in a code object, " -"use :pep:`the API described in PEP 626 <0626#out-of-process-debuggers-and-" -"profilers>`." +msgid "For efficiently iterating over the line numbers in a code object, use :pep:`the API described in PEP 626 <0626#out-of-process-debuggers-and-profilers>`." msgstr "" -#: ../../c-api/code.rst:107 -msgid "" -"Sets the passed ``int`` pointers to the source code line and column numbers " -"for the instruction at ``byte_offset``. Sets the value to ``0`` when " -"information is not available for any particular element." +msgid "Sets the passed ``int`` pointers to the source code line and column numbers for the instruction at ``byte_offset``. Sets the value to ``0`` when information is not available for any particular element." msgstr "" -#: ../../c-api/code.rst:111 msgid "Returns ``1`` if the function succeeds and 0 otherwise." msgstr "" -#: ../../c-api/code.rst:117 -msgid "" -"Equivalent to the Python code ``getattr(co, 'co_code')``. Returns a strong " -"reference to a :c:type:`PyBytesObject` representing the bytecode in a code " -"object. On error, ``NULL`` is returned and an exception is raised." +msgid "Equivalent to the Python code ``getattr(co, 'co_code')``. Returns a strong reference to a :c:type:`PyBytesObject` representing the bytecode in a code object. On error, ``NULL`` is returned and an exception is raised." msgstr "" -#: ../../c-api/code.rst:122 -msgid "" -"This ``PyBytesObject`` may be created on-demand by the interpreter and does " -"not necessarily represent the bytecode actually executed by CPython. The " -"primary use case for this function is debuggers and profilers." +msgid "This ``PyBytesObject`` may be created on-demand by the interpreter and does not necessarily represent the bytecode actually executed by CPython. The primary use case for this function is debuggers and profilers." msgstr "" -#: ../../c-api/code.rst:130 -msgid "" -"Equivalent to the Python code ``getattr(co, 'co_varnames')``. Returns a new " -"reference to a :c:type:`PyTupleObject` containing the names of the local " -"variables. On error, ``NULL`` is returned and an exception is raised." +msgid "Equivalent to the Python code ``getattr(co, 'co_varnames')``. Returns a new reference to a :c:type:`PyTupleObject` containing the names of the local variables. On error, ``NULL`` is returned and an exception is raised." msgstr "" -#: ../../c-api/code.rst:139 -msgid "" -"Equivalent to the Python code ``getattr(co, 'co_cellvars')``. Returns a new " -"reference to a :c:type:`PyTupleObject` containing the names of the local " -"variables that are referenced by nested functions. On error, ``NULL`` is " -"returned and an exception is raised." +msgid "Equivalent to the Python code ``getattr(co, 'co_cellvars')``. Returns a new reference to a :c:type:`PyTupleObject` containing the names of the local variables that are referenced by nested functions. On error, ``NULL`` is returned and an exception is raised." msgstr "" -#: ../../c-api/code.rst:148 -msgid "" -"Equivalent to the Python code ``getattr(co, 'co_freevars')``. Returns a new " -"reference to a :c:type:`PyTupleObject` containing the names of " -"the :term:`free (closure) variables `. On error, ``NULL`` " -"is returned and an exception is raised." +msgid "Equivalent to the Python code ``getattr(co, 'co_freevars')``. Returns a new reference to a :c:type:`PyTupleObject` containing the names of the :term:`free (closure) variables `. On error, ``NULL`` is returned and an exception is raised." msgstr "" -#: ../../c-api/code.rst:157 -msgid "" -"Register *callback* as a code object watcher for the current interpreter. " -"Return an ID which may be passed to :c:func:`PyCode_ClearWatcher`. In case " -"of error (e.g. no more watcher IDs available), return ``-1`` and set an " -"exception." +msgid "Register *callback* as a code object watcher for the current interpreter. Return an ID which may be passed to :c:func:`PyCode_ClearWatcher`. In case of error (e.g. no more watcher IDs available), return ``-1`` and set an exception." msgstr "" -#: ../../c-api/code.rst:166 -msgid "" -"Clear watcher identified by *watcher_id* previously returned " -"from :c:func:`PyCode_AddWatcher` for the current interpreter. Return ``0`` " -"on success, or ``-1`` and set an exception on error (e.g. if the given " -"*watcher_id* was never registered.)" +msgid "Clear watcher identified by *watcher_id* previously returned from :c:func:`PyCode_AddWatcher` for the current interpreter. Return ``0`` on success, or ``-1`` and set an exception on error (e.g. if the given *watcher_id* was never registered.)" msgstr "" -#: ../../c-api/code.rst:175 -msgid "" -"Enumeration of possible code object watcher events: - " -"``PY_CODE_EVENT_CREATE`` - ``PY_CODE_EVENT_DESTROY``" +msgid "Enumeration of possible code object watcher events: - ``PY_CODE_EVENT_CREATE`` - ``PY_CODE_EVENT_DESTROY``" msgstr "" -#: ../../c-api/code.rst:183 msgid "Type of a code object watcher callback function." msgstr "" -#: ../../c-api/code.rst:185 -msgid "" -"If *event* is ``PY_CODE_EVENT_CREATE``, then the callback is invoked after " -"*co* has been fully initialized. Otherwise, the callback is invoked before " -"the destruction of *co* takes place, so the prior state of *co* can be " -"inspected." +msgid "If *event* is ``PY_CODE_EVENT_CREATE``, then the callback is invoked after *co* has been fully initialized. Otherwise, the callback is invoked before the destruction of *co* takes place, so the prior state of *co* can be inspected." msgstr "" -#: ../../c-api/code.rst:190 -msgid "" -"If *event* is ``PY_CODE_EVENT_DESTROY``, taking a reference in the callback " -"to the about-to-be-destroyed code object will resurrect it and prevent it " -"from being freed at this time. When the resurrected object is destroyed " -"later, any watcher callbacks active at that time will be called again." +msgid "If *event* is ``PY_CODE_EVENT_DESTROY``, taking a reference in the callback to the about-to-be-destroyed code object will resurrect it and prevent it from being freed at this time. When the resurrected object is destroyed later, any watcher callbacks active at that time will be called again." msgstr "" -#: ../../c-api/code.rst:195 -msgid "" -"Users of this API should not rely on internal runtime implementation " -"details. Such details may include, but are not limited to, the exact order " -"and timing of creation and destruction of code objects. While changes in " -"these details may result in differences observable by watchers (including " -"whether a callback is invoked or not), it does not change the semantics of " -"the Python code being executed." +msgid "Users of this API should not rely on internal runtime implementation details. Such details may include, but are not limited to, the exact order and timing of creation and destruction of code objects. While changes in these details may result in differences observable by watchers (including whether a callback is invoked or not), it does not change the semantics of the Python code being executed." msgstr "" -#: ../../c-api/code.rst:202 -msgid "" -"If the callback sets an exception, it must return ``-1``; this exception " -"will be printed as an unraisable exception " -"using :c:func:`PyErr_WriteUnraisable`. Otherwise it should return ``0``." +msgid "If the callback sets an exception, it must return ``-1``; this exception will be printed as an unraisable exception using :c:func:`PyErr_WriteUnraisable`. Otherwise it should return ``0``." msgstr "" -#: ../../c-api/code.rst:206 -msgid "" -"There may already be a pending exception set on entry to the callback. In " -"this case, the callback should return ``0`` with the same exception still " -"set. This means the callback may not call any other API that can set an " -"exception unless it saves and clears the exception state first, and restores " -"it before returning." +msgid "There may already be a pending exception set on entry to the callback. In this case, the callback should return ``0`` with the same exception still set. This means the callback may not call any other API that can set an exception unless it saves and clears the exception state first, and restores it before returning." msgstr "" -#: ../../c-api/code.rst:217 msgid "This is a function that does nothing." msgstr "" -#: ../../c-api/code.rst:219 -msgid "" -"Prior to Python 3.10, this function would perform basic optimizations to a " -"code object." +msgid "Prior to Python 3.10, this function would perform basic optimizations to a code object." msgstr "" -#: ../../c-api/code.rst:222 msgid "This function now does nothing." msgstr "" -#: ../../c-api/code.rst:231 msgid "Code Object Flags" msgstr "" -#: ../../c-api/code.rst:233 -msgid "" -"Code objects contain a bit-field of flags, which can be retrieved as " -"the :attr:`~codeobject.co_flags` Python attribute (for example " -"using :c:func:`PyObject_GetAttrString`), and set using a *flags* argument " -"to :c:func:`PyUnstable_Code_New` and similar functions." +msgid "Code objects contain a bit-field of flags, which can be retrieved as the :attr:`~codeobject.co_flags` Python attribute (for example using :c:func:`PyObject_GetAttrString`), and set using a *flags* argument to :c:func:`PyUnstable_Code_New` and similar functions." msgstr "" -#: ../../c-api/code.rst:238 -msgid "" -"Flags whose names start with ``CO_FUTURE_`` correspond to features normally " -"selectable by :ref:`future statements `. These flags can be used " -"in :c:member:`PyCompilerFlags.cf_flags`. Note that many ``CO_FUTURE_`` flags " -"are mandatory in current versions of Python, and setting them has no effect." +msgid "Flags whose names start with ``CO_FUTURE_`` correspond to features normally selectable by :ref:`future statements `. These flags can be used in :c:member:`PyCompilerFlags.cf_flags`. Note that many ``CO_FUTURE_`` flags are mandatory in current versions of Python, and setting them has no effect." msgstr "" -#: ../../c-api/code.rst:244 -msgid "" -"The following flags are available. For their meaning, see the linked " -"documentation of their Python equivalents." +msgid "The following flags are available. For their meaning, see the linked documentation of their Python equivalents." msgstr "" -#: ../../c-api/code.rst:252 msgid "Flag" msgstr "" -#: ../../c-api/code.rst:253 msgid "Meaning" msgstr "" -#: ../../c-api/code.rst:255 msgid ":py:data:`inspect.CO_OPTIMIZED`" msgstr "" -#: ../../c-api/code.rst:257 msgid ":py:data:`inspect.CO_NEWLOCALS`" msgstr "" -#: ../../c-api/code.rst:259 msgid ":py:data:`inspect.CO_VARARGS`" msgstr "" -#: ../../c-api/code.rst:261 msgid ":py:data:`inspect.CO_VARKEYWORDS`" msgstr "" -#: ../../c-api/code.rst:263 msgid ":py:data:`inspect.CO_NESTED`" msgstr "" -#: ../../c-api/code.rst:265 msgid ":py:data:`inspect.CO_GENERATOR`" msgstr "" -#: ../../c-api/code.rst:267 msgid ":py:data:`inspect.CO_COROUTINE`" msgstr "" -#: ../../c-api/code.rst:269 msgid ":py:data:`inspect.CO_ITERABLE_COROUTINE`" msgstr "" -#: ../../c-api/code.rst:271 msgid ":py:data:`inspect.CO_ASYNC_GENERATOR`" msgstr "" -#: ../../c-api/code.rst:273 msgid ":py:data:`inspect.CO_HAS_DOCSTRING`" msgstr "" -#: ../../c-api/code.rst:275 msgid ":py:data:`inspect.CO_METHOD`" msgstr "" -#: ../../c-api/code.rst:278 msgid "no effect (:py:data:`__future__.division`)" msgstr "" -#: ../../c-api/code.rst:280 msgid "no effect (:py:data:`__future__.absolute_import`)" msgstr "" -#: ../../c-api/code.rst:282 msgid "no effect (:py:data:`__future__.with_statement`)" msgstr "" -#: ../../c-api/code.rst:284 msgid "no effect (:py:data:`__future__.print_function`)" msgstr "" -#: ../../c-api/code.rst:286 msgid "no effect (:py:data:`__future__.unicode_literals`)" msgstr "" -#: ../../c-api/code.rst:288 msgid "no effect (:py:data:`__future__.generator_stop`)" msgstr "" -#: ../../c-api/code.rst:290 msgid ":py:data:`__future__.annotations`" msgstr "" -#: ../../c-api/code.rst:294 msgid "Extra information" msgstr "" -#: ../../c-api/code.rst:296 -msgid "" -"To support low-level extensions to frame evaluation, such as external just-" -"in-time compilers, it is possible to attach arbitrary extra data to code " -"objects." +msgid "To support low-level extensions to frame evaluation, such as external just-in-time compilers, it is possible to attach arbitrary extra data to code objects." msgstr "" -#: ../../c-api/code.rst:300 -msgid "" -"These functions are part of the unstable C API tier: this functionality is a " -"CPython implementation detail, and the API may change without deprecation " -"warnings." +msgid "These functions are part of the unstable C API tier: this functionality is a CPython implementation detail, and the API may change without deprecation warnings." msgstr "" -#: ../../c-api/code.rst:309 msgid "Return a new opaque index value used to adding data to code objects." msgstr "" -#: ../../c-api/code.rst:311 -msgid "" -"You generally call this function once (per interpreter) and use the result " -"with ``PyCode_GetExtra`` and ``PyCode_SetExtra`` to manipulate data on " -"individual code objects." +msgid "You generally call this function once (per interpreter) and use the result with ``PyCode_GetExtra`` and ``PyCode_SetExtra`` to manipulate data on individual code objects." msgstr "" -#: ../../c-api/code.rst:315 -msgid "" -"If *free* is not ``NULL``: when a code object is deallocated, *free* will be " -"called on non-``NULL`` data stored under the new index. " -"Use :c:func:`Py_DecRef` when storing :c:type:`PyObject`." +msgid "If *free* is not ``NULL``: when a code object is deallocated, *free* will be called on non-``NULL`` data stored under the new index. Use :c:func:`Py_DecRef` when storing :c:type:`PyObject`." msgstr "" -#: ../../c-api/code.rst:319 msgid "as ``_PyEval_RequestCodeExtraIndex``" msgstr "" -#: ../../c-api/code.rst:323 -msgid "" -"Renamed to ``PyUnstable_Eval_RequestCodeExtraIndex``. The old private name " -"is deprecated, but will be available until the API changes." +msgid "Renamed to ``PyUnstable_Eval_RequestCodeExtraIndex``. The old private name is deprecated, but will be available until the API changes." msgstr "" -#: ../../c-api/code.rst:332 -msgid "" -"Set *extra* to the extra data stored under the given index. Return 0 on " -"success. Set an exception and return -1 on failure." +msgid "Set *extra* to the extra data stored under the given index. Return 0 on success. Set an exception and return -1 on failure." msgstr "" -#: ../../c-api/code.rst:335 -msgid "" -"If no data was set under the index, set *extra* to ``NULL`` and return 0 " -"without setting an exception." +msgid "If no data was set under the index, set *extra* to ``NULL`` and return 0 without setting an exception." msgstr "" -#: ../../c-api/code.rst:338 msgid "as ``_PyCode_GetExtra``" msgstr "" -#: ../../c-api/code.rst:342 -msgid "" -"Renamed to ``PyUnstable_Code_GetExtra``. The old private name is deprecated, " -"but will be available until the API changes." +msgid "Renamed to ``PyUnstable_Code_GetExtra``. The old private name is deprecated, but will be available until the API changes." msgstr "" -#: ../../c-api/code.rst:351 -msgid "" -"Set the extra data stored under the given index to *extra*. Return 0 on " -"success. Set an exception and return -1 on failure." +msgid "Set the extra data stored under the given index to *extra*. Return 0 on success. Set an exception and return -1 on failure." msgstr "" -#: ../../c-api/code.rst:354 msgid "as ``_PyCode_SetExtra``" msgstr "" -#: ../../c-api/code.rst:358 -msgid "" -"Renamed to ``PyUnstable_Code_SetExtra``. The old private name is deprecated, " -"but will be available until the API changes." +msgid "Renamed to ``PyUnstable_Code_SetExtra``. The old private name is deprecated, but will be available until the API changes." msgstr "" -#: ../../c-api/code.rst:3 msgid "object" msgstr "" -#: ../../c-api/code.rst:3 msgid "code" msgstr "" -#: ../../c-api/code.rst:3 msgid "code object" msgstr "" -#: ../../c-api/code.rst:64 msgid "PyCode_New (C function)" msgstr "" diff --git a/c-api/codec.po b/c-api/codec.po index 2a2f4df9..0ef3359c 100644 --- a/c-api/codec.po +++ b/c-api/codec.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:48+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,168 +21,92 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../c-api/codec.rst:4 msgid "Codec registry and support functions" msgstr "" -#: ../../c-api/codec.rst:8 msgid "Register a new codec search function." msgstr "" -#: ../../c-api/codec.rst:10 -msgid "" -"As a side effect, this tries to load the :mod:`!encodings` package, if not " -"yet done, to make sure that it is always first in the list of search " -"functions." +msgid "As a side effect, this tries to load the :mod:`!encodings` package, if not yet done, to make sure that it is always first in the list of search functions." msgstr "" -#: ../../c-api/codec.rst:15 -msgid "" -"Unregister a codec search function and clear the registry's cache. If the " -"search function is not registered, do nothing. Return 0 on success. Raise an " -"exception and return -1 on error." +msgid "Unregister a codec search function and clear the registry's cache. If the search function is not registered, do nothing. Return 0 on success. Raise an exception and return -1 on error." msgstr "" -#: ../../c-api/codec.rst:23 -msgid "" -"Return ``1`` or ``0`` depending on whether there is a registered codec for " -"the given *encoding*. This function always succeeds." +msgid "Return ``1`` or ``0`` depending on whether there is a registered codec for the given *encoding*. This function always succeeds." msgstr "" -#: ../../c-api/codec.rst:28 msgid "Generic codec based encoding API." msgstr "" -#: ../../c-api/codec.rst:30 -msgid "" -"*object* is passed through the encoder function found for the given " -"*encoding* using the error handling method defined by *errors*. *errors* " -"may be ``NULL`` to use the default method defined for the codec. Raises " -"a :exc:`LookupError` if no encoder can be found." +msgid "*object* is passed through the encoder function found for the given *encoding* using the error handling method defined by *errors*. *errors* may be ``NULL`` to use the default method defined for the codec. Raises a :exc:`LookupError` if no encoder can be found." msgstr "" -#: ../../c-api/codec.rst:37 msgid "Generic codec based decoding API." msgstr "" -#: ../../c-api/codec.rst:39 -msgid "" -"*object* is passed through the decoder function found for the given " -"*encoding* using the error handling method defined by *errors*. *errors* " -"may be ``NULL`` to use the default method defined for the codec. Raises " -"a :exc:`LookupError` if no decoder can be found." +msgid "*object* is passed through the decoder function found for the given *encoding* using the error handling method defined by *errors*. *errors* may be ``NULL`` to use the default method defined for the codec. Raises a :exc:`LookupError` if no decoder can be found." msgstr "" -#: ../../c-api/codec.rst:46 msgid "Codec lookup API" msgstr "" -#: ../../c-api/codec.rst:48 -msgid "" -"In the following functions, the *encoding* string is looked up converted to " -"all lower-case characters, which makes encodings looked up through this " -"mechanism effectively case-insensitive. If no codec is found, " -"a :exc:`KeyError` is set and ``NULL`` returned." +msgid "In the following functions, the *encoding* string is looked up converted to all lower-case characters, which makes encodings looked up through this mechanism effectively case-insensitive. If no codec is found, a :exc:`KeyError` is set and ``NULL`` returned." msgstr "" -#: ../../c-api/codec.rst:55 msgid "Get an encoder function for the given *encoding*." msgstr "" -#: ../../c-api/codec.rst:59 msgid "Get a decoder function for the given *encoding*." msgstr "" -#: ../../c-api/codec.rst:63 -msgid "" -"Get an :class:`~codecs.IncrementalEncoder` object for the given *encoding*." +msgid "Get an :class:`~codecs.IncrementalEncoder` object for the given *encoding*." msgstr "" -#: ../../c-api/codec.rst:67 -msgid "" -"Get an :class:`~codecs.IncrementalDecoder` object for the given *encoding*." +msgid "Get an :class:`~codecs.IncrementalDecoder` object for the given *encoding*." msgstr "" -#: ../../c-api/codec.rst:71 -msgid "" -"Get a :class:`~codecs.StreamReader` factory function for the given " -"*encoding*." +msgid "Get a :class:`~codecs.StreamReader` factory function for the given *encoding*." msgstr "" -#: ../../c-api/codec.rst:75 -msgid "" -"Get a :class:`~codecs.StreamWriter` factory function for the given " -"*encoding*." +msgid "Get a :class:`~codecs.StreamWriter` factory function for the given *encoding*." msgstr "" -#: ../../c-api/codec.rst:79 msgid "Registry API for Unicode encoding error handlers" msgstr "" -#: ../../c-api/codec.rst:83 -msgid "" -"Register the error handling callback function *error* under the given " -"*name*. This callback function will be called by a codec when it encounters " -"unencodable characters/undecodable bytes and *name* is specified as the " -"error parameter in the call to the encode/decode function." +msgid "Register the error handling callback function *error* under the given *name*. This callback function will be called by a codec when it encounters unencodable characters/undecodable bytes and *name* is specified as the error parameter in the call to the encode/decode function." +msgstr "" + +msgid "The callback gets a single argument, an instance of :exc:`UnicodeEncodeError`, :exc:`UnicodeDecodeError` or :exc:`UnicodeTranslateError` that holds information about the problematic sequence of characters or bytes and their offset in the original string (see :ref:`unicodeexceptions` for functions to extract this information). The callback must either raise the given exception, or return a two-item tuple containing the replacement for the problematic sequence, and an integer giving the offset in the original string at which encoding/decoding should be resumed." msgstr "" -#: ../../c-api/codec.rst:88 -msgid "" -"The callback gets a single argument, an instance " -"of :exc:`UnicodeEncodeError`, :exc:`UnicodeDecodeError` " -"or :exc:`UnicodeTranslateError` that holds information about the problematic " -"sequence of characters or bytes and their offset in the original string " -"(see :ref:`unicodeexceptions` for functions to extract this information). " -"The callback must either raise the given exception, or return a two-item " -"tuple containing the replacement for the problematic sequence, and an " -"integer giving the offset in the original string at which encoding/decoding " -"should be resumed." -msgstr "" - -#: ../../c-api/codec.rst:98 msgid "Return ``0`` on success, ``-1`` on error." msgstr "" -#: ../../c-api/codec.rst:102 -msgid "" -"Lookup the error handling callback function registered under *name*. As a " -"special case ``NULL`` can be passed, in which case the error handling " -"callback for \"strict\" will be returned." +msgid "Lookup the error handling callback function registered under *name*. As a special case ``NULL`` can be passed, in which case the error handling callback for \"strict\" will be returned." msgstr "" -#: ../../c-api/codec.rst:108 msgid "Raise *exc* as an exception." msgstr "" -#: ../../c-api/codec.rst:112 msgid "Ignore the unicode error, skipping the faulty input." msgstr "" -#: ../../c-api/codec.rst:116 msgid "Replace the unicode encode error with ``?`` or ``U+FFFD``." msgstr "" -#: ../../c-api/codec.rst:120 msgid "Replace the unicode encode error with XML character references." msgstr "" -#: ../../c-api/codec.rst:124 -msgid "" -"Replace the unicode encode error with backslash escapes (``\\x``, ``\\u`` " -"and ``\\U``)." +msgid "Replace the unicode encode error with backslash escapes (``\\x``, ``\\u`` and ``\\U``)." msgstr "" -#: ../../c-api/codec.rst:129 msgid "Replace the unicode encode error with ``\\N{...}`` escapes." msgstr "" -#: ../../c-api/codec.rst:135 msgid "Codec utility variables" msgstr "" -#: ../../c-api/codec.rst:139 -msgid "" -"A string constant containing the lowercase hexadecimal digits: " -"``\"0123456789abcdef\"``." +msgid "A string constant containing the lowercase hexadecimal digits: ``\"0123456789abcdef\"``." msgstr "" diff --git a/c-api/complex.po b/c-api/complex.po index ef93b83a..a6f3f2a2 100644 --- a/c-api/complex.po +++ b/c-api/complex.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:48+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -22,42 +22,24 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../c-api/complex.rst:6 msgid "Complex Number Objects" msgstr "" -#: ../../c-api/complex.rst:10 -msgid "" -"Python's complex number objects are implemented as two distinct types when " -"viewed from the C API: one is the Python object exposed to Python programs, " -"and the other is a C structure which represents the actual complex number " -"value. The API provides functions for working with both." +msgid "Python's complex number objects are implemented as two distinct types when viewed from the C API: one is the Python object exposed to Python programs, and the other is a C structure which represents the actual complex number value. The API provides functions for working with both." msgstr "" -#: ../../c-api/complex.rst:17 msgid "Complex Numbers as C Structures" msgstr "" -#: ../../c-api/complex.rst:19 -msgid "" -"Note that the functions which accept these structures as parameters and " -"return them as results do so *by value* rather than dereferencing them " -"through pointers. This is consistent throughout the API." +msgid "Note that the functions which accept these structures as parameters and return them as results do so *by value* rather than dereferencing them through pointers. This is consistent throughout the API." msgstr "" -#: ../../c-api/complex.rst:26 -msgid "" -"The C structure which corresponds to the value portion of a Python complex " -"number object. Most of the functions for dealing with complex number " -"objects use structures of this type as input or output values, as " -"appropriate." +msgid "The C structure which corresponds to the value portion of a Python complex number object. Most of the functions for dealing with complex number objects use structures of this type as input or output values, as appropriate." msgstr "" -#: ../../c-api/complex.rst:33 msgid "The structure is defined as::" msgstr "" -#: ../../c-api/complex.rst:35 msgid "" "typedef struct {\n" " double real;\n" @@ -65,161 +47,86 @@ msgid "" "} Py_complex;" msgstr "" -#: ../../c-api/complex.rst:43 -msgid "" -"Return the sum of two complex numbers, using the C :c:type:`Py_complex` " -"representation." +msgid "Return the sum of two complex numbers, using the C :c:type:`Py_complex` representation." msgstr "" -#: ../../c-api/complex.rst:49 -msgid "" -"Return the difference between two complex numbers, using the " -"C :c:type:`Py_complex` representation." +msgid "Return the difference between two complex numbers, using the C :c:type:`Py_complex` representation." msgstr "" -#: ../../c-api/complex.rst:55 -msgid "" -"Return the negation of the complex number *num*, using the " -"C :c:type:`Py_complex` representation." +msgid "Return the negation of the complex number *num*, using the C :c:type:`Py_complex` representation." msgstr "" -#: ../../c-api/complex.rst:61 -msgid "" -"Return the product of two complex numbers, using the C :c:type:`Py_complex` " -"representation." +msgid "Return the product of two complex numbers, using the C :c:type:`Py_complex` representation." msgstr "" -#: ../../c-api/complex.rst:67 -msgid "" -"Return the quotient of two complex numbers, using the C :c:type:`Py_complex` " -"representation." +msgid "Return the quotient of two complex numbers, using the C :c:type:`Py_complex` representation." msgstr "" -#: ../../c-api/complex.rst:70 -msgid "" -"If *divisor* is null, this method returns zero and sets :c:data:`errno` " -"to :c:macro:`!EDOM`." +msgid "If *divisor* is null, this method returns zero and sets :c:data:`errno` to :c:macro:`!EDOM`." msgstr "" -#: ../../c-api/complex.rst:76 -msgid "" -"Return the exponentiation of *num* by *exp*, using the " -"C :c:type:`Py_complex` representation." +msgid "Return the exponentiation of *num* by *exp*, using the C :c:type:`Py_complex` representation." msgstr "" -#: ../../c-api/complex.rst:79 -msgid "" -"If *num* is null and *exp* is not a positive real number, this method " -"returns zero and sets :c:data:`errno` to :c:macro:`!EDOM`." +msgid "If *num* is null and *exp* is not a positive real number, this method returns zero and sets :c:data:`errno` to :c:macro:`!EDOM`." msgstr "" -#: ../../c-api/complex.rst:82 msgid "Set :c:data:`errno` to :c:macro:`!ERANGE` on overflows." msgstr "" -#: ../../c-api/complex.rst:86 msgid "Complex Numbers as Python Objects" msgstr "" -#: ../../c-api/complex.rst:91 -msgid "" -"This subtype of :c:type:`PyObject` represents a Python complex number object." +msgid "This subtype of :c:type:`PyObject` represents a Python complex number object." msgstr "" -#: ../../c-api/complex.rst:96 -msgid "" -"This instance of :c:type:`PyTypeObject` represents the Python complex number " -"type. It is the same object as :class:`complex` in the Python layer." +msgid "This instance of :c:type:`PyTypeObject` represents the Python complex number type. It is the same object as :class:`complex` in the Python layer." msgstr "" -#: ../../c-api/complex.rst:102 -msgid "" -"Return true if its argument is a :c:type:`PyComplexObject` or a subtype " -"of :c:type:`PyComplexObject`. This function always succeeds." +msgid "Return true if its argument is a :c:type:`PyComplexObject` or a subtype of :c:type:`PyComplexObject`. This function always succeeds." msgstr "" -#: ../../c-api/complex.rst:108 -msgid "" -"Return true if its argument is a :c:type:`PyComplexObject`, but not a " -"subtype of :c:type:`PyComplexObject`. This function always succeeds." +msgid "Return true if its argument is a :c:type:`PyComplexObject`, but not a subtype of :c:type:`PyComplexObject`. This function always succeeds." msgstr "" -#: ../../c-api/complex.rst:114 -msgid "" -"Create a new Python complex number object from a C :c:type:`Py_complex` " -"value. Return ``NULL`` with an exception set on error." +msgid "Create a new Python complex number object from a C :c:type:`Py_complex` value. Return ``NULL`` with an exception set on error." msgstr "" -#: ../../c-api/complex.rst:120 -msgid "" -"Return a new :c:type:`PyComplexObject` object from *real* and *imag*. Return " -"``NULL`` with an exception set on error." +msgid "Return a new :c:type:`PyComplexObject` object from *real* and *imag*. Return ``NULL`` with an exception set on error." msgstr "" -#: ../../c-api/complex.rst:126 msgid "Return the real part of *op* as a C :c:expr:`double`." msgstr "" -#: ../../c-api/complex.rst:128 -msgid "" -"If *op* is not a Python complex number object but has " -"a :meth:`~object.__complex__` method, this method will first be called to " -"convert *op* to a Python complex number object. If :meth:`!__complex__` is " -"not defined then it falls back to call :c:func:`PyFloat_AsDouble` and " -"returns its result." +msgid "If *op* is not a Python complex number object but has a :meth:`~object.__complex__` method, this method will first be called to convert *op* to a Python complex number object. If :meth:`!__complex__` is not defined then it falls back to call :c:func:`PyFloat_AsDouble` and returns its result." msgstr "" -#: ../../c-api/complex.rst:134 ../../c-api/complex.rst:150 -msgid "" -"Upon failure, this method returns ``-1.0`` with an exception set, so one " -"should call :c:func:`PyErr_Occurred` to check for errors." +msgid "Upon failure, this method returns ``-1.0`` with an exception set, so one should call :c:func:`PyErr_Occurred` to check for errors." msgstr "" -#: ../../c-api/complex.rst:137 ../../c-api/complex.rst:153 msgid "Use :meth:`~object.__complex__` if available." msgstr "" -#: ../../c-api/complex.rst:142 msgid "Return the imaginary part of *op* as a C :c:expr:`double`." msgstr "" -#: ../../c-api/complex.rst:144 -msgid "" -"If *op* is not a Python complex number object but has " -"a :meth:`~object.__complex__` method, this method will first be called to " -"convert *op* to a Python complex number object. If :meth:`!__complex__` is " -"not defined then it falls back to call :c:func:`PyFloat_AsDouble` and " -"returns ``0.0`` on success." +msgid "If *op* is not a Python complex number object but has a :meth:`~object.__complex__` method, this method will first be called to convert *op* to a Python complex number object. If :meth:`!__complex__` is not defined then it falls back to call :c:func:`PyFloat_AsDouble` and returns ``0.0`` on success." msgstr "" -#: ../../c-api/complex.rst:158 msgid "Return the :c:type:`Py_complex` value of the complex number *op*." msgstr "" -#: ../../c-api/complex.rst:160 -msgid "" -"If *op* is not a Python complex number object but has " -"a :meth:`~object.__complex__` method, this method will first be called to " -"convert *op* to a Python complex number object. If :meth:`!__complex__` is " -"not defined then it falls back to :meth:`~object.__float__`. If :meth:`!" -"__float__` is not defined then it falls back to :meth:`~object.__index__`." +msgid "If *op* is not a Python complex number object but has a :meth:`~object.__complex__` method, this method will first be called to convert *op* to a Python complex number object. If :meth:`!__complex__` is not defined then it falls back to :meth:`~object.__float__`. If :meth:`!__float__` is not defined then it falls back to :meth:`~object.__index__`." msgstr "" -#: ../../c-api/complex.rst:166 -msgid "" -"Upon failure, this method returns :c:type:`Py_complex` " -"with :c:member:`~Py_complex.real` set to ``-1.0`` and with an exception set, " -"so one should call :c:func:`PyErr_Occurred` to check for errors." +msgid "Upon failure, this method returns :c:type:`Py_complex` with :c:member:`~Py_complex.real` set to ``-1.0`` and with an exception set, so one should call :c:func:`PyErr_Occurred` to check for errors." msgstr "" -#: ../../c-api/complex.rst:170 msgid "Use :meth:`~object.__index__` if available." msgstr "" -#: ../../c-api/complex.rst:8 msgid "object" msgstr "" -#: ../../c-api/complex.rst:8 msgid "complex number" msgstr "" diff --git a/c-api/concrete.po b/c-api/concrete.po index 24daf9e8..da2b910e 100644 --- a/c-api/concrete.po +++ b/c-api/concrete.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:48+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,82 +23,50 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../c-api/concrete.rst:8 msgid "Concrete Objects Layer" msgstr "" -#: ../../c-api/concrete.rst:10 -msgid "" -"The functions in this chapter are specific to certain Python object types. " -"Passing them an object of the wrong type is not a good idea; if you receive " -"an object from a Python program and you are not sure that it has the right " -"type, you must perform a type check first; for example, to check that an " -"object is a dictionary, use :c:func:`PyDict_Check`. The chapter is " -"structured like the \"family tree\" of Python object types." +msgid "The functions in this chapter are specific to certain Python object types. Passing them an object of the wrong type is not a good idea; if you receive an object from a Python program and you are not sure that it has the right type, you must perform a type check first; for example, to check that an object is a dictionary, use :c:func:`PyDict_Check`. The chapter is structured like the \"family tree\" of Python object types." msgstr "" -#: ../../c-api/concrete.rst:19 -msgid "" -"While the functions described in this chapter carefully check the type of " -"the objects which are passed in, many of them do not check for ``NULL`` " -"being passed instead of a valid object. Allowing ``NULL`` to be passed in " -"can cause memory access violations and immediate termination of the " -"interpreter." +msgid "While the functions described in this chapter carefully check the type of the objects which are passed in, many of them do not check for ``NULL`` being passed instead of a valid object. Allowing ``NULL`` to be passed in can cause memory access violations and immediate termination of the interpreter." msgstr "" -#: ../../c-api/concrete.rst:28 msgid "Fundamental Objects" msgstr "" -#: ../../c-api/concrete.rst:30 -msgid "" -"This section describes Python type objects and the singleton object ``None``." +msgid "This section describes Python type objects and the singleton object ``None``." msgstr "" -#: ../../c-api/concrete.rst:41 msgid "Numeric Objects" msgstr "" -#: ../../c-api/concrete.rst:56 msgid "Sequence Objects" msgstr "" -#: ../../c-api/concrete.rst:60 -msgid "" -"Generic operations on sequence objects were discussed in the previous " -"chapter; this section deals with the specific kinds of sequence objects that " -"are intrinsic to the Python language." +msgid "Generic operations on sequence objects were discussed in the previous chapter; this section deals with the specific kinds of sequence objects that are intrinsic to the Python language." msgstr "" -#: ../../c-api/concrete.rst:78 msgid "Container Objects" msgstr "" -#: ../../c-api/concrete.rst:91 msgid "Function Objects" msgstr "" -#: ../../c-api/concrete.rst:102 msgid "Other Objects" msgstr "" -#: ../../c-api/concrete.rst:123 msgid "C API for extension modules" msgstr "" -#: ../../c-api/concrete.rst:43 ../../c-api/concrete.rst:58 -#: ../../c-api/concrete.rst:80 msgid "object" msgstr "" -#: ../../c-api/concrete.rst:43 msgid "numeric" msgstr "" -#: ../../c-api/concrete.rst:58 msgid "sequence" msgstr "" -#: ../../c-api/concrete.rst:80 msgid "mapping" msgstr "" diff --git a/c-api/contextvars.po b/c-api/contextvars.po index b297e045..956cf949 100644 --- a/c-api/contextvars.po +++ b/c-api/contextvars.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:48+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,19 +24,12 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../c-api/contextvars.rst:6 msgid "Context Variables Objects" msgstr "" -#: ../../c-api/contextvars.rst:15 -msgid "" -"In Python 3.7.1 the signatures of all context variables C APIs were " -"**changed** to use :c:type:`PyObject` pointers instead " -"of :c:type:`PyContext`, :c:type:`PyContextVar`, " -"and :c:type:`PyContextToken`, e.g.::" +msgid "In Python 3.7.1 the signatures of all context variables C APIs were **changed** to use :c:type:`PyObject` pointers instead of :c:type:`PyContext`, :c:type:`PyContextVar`, and :c:type:`PyContextToken`, e.g.::" msgstr "" -#: ../../c-api/contextvars.rst:20 msgid "" "// in 3.7.0:\n" "PyContext *PyContext_New(void);\n" @@ -45,198 +38,107 @@ msgid "" "PyObject *PyContext_New(void);" msgstr "" -#: ../../c-api/contextvars.rst:26 msgid "See :issue:`34762` for more details." msgstr "" -#: ../../c-api/contextvars.rst:29 -msgid "" -"This section details the public C API for the :mod:`contextvars` module." +msgid "This section details the public C API for the :mod:`contextvars` module." msgstr "" -#: ../../c-api/contextvars.rst:33 -msgid "" -"The C structure used to represent a :class:`contextvars.Context` object." +msgid "The C structure used to represent a :class:`contextvars.Context` object." msgstr "" -#: ../../c-api/contextvars.rst:38 -msgid "" -"The C structure used to represent a :class:`contextvars.ContextVar` object." +msgid "The C structure used to represent a :class:`contextvars.ContextVar` object." msgstr "" -#: ../../c-api/contextvars.rst:43 msgid "The C structure used to represent a :class:`contextvars.Token` object." msgstr "" -#: ../../c-api/contextvars.rst:47 msgid "The type object representing the *context* type." msgstr "" -#: ../../c-api/contextvars.rst:51 msgid "The type object representing the *context variable* type." msgstr "" -#: ../../c-api/contextvars.rst:55 msgid "The type object representing the *context variable token* type." msgstr "" -#: ../../c-api/contextvars.rst:58 msgid "Type-check macros:" msgstr "" -#: ../../c-api/contextvars.rst:62 -msgid "" -"Return true if *o* is of type :c:data:`PyContext_Type`. *o* must not be " -"``NULL``. This function always succeeds." +msgid "Return true if *o* is of type :c:data:`PyContext_Type`. *o* must not be ``NULL``. This function always succeeds." msgstr "" -#: ../../c-api/contextvars.rst:67 -msgid "" -"Return true if *o* is of type :c:data:`PyContextVar_Type`. *o* must not be " -"``NULL``. This function always succeeds." +msgid "Return true if *o* is of type :c:data:`PyContextVar_Type`. *o* must not be ``NULL``. This function always succeeds." msgstr "" -#: ../../c-api/contextvars.rst:72 -msgid "" -"Return true if *o* is of type :c:data:`PyContextToken_Type`. *o* must not be " -"``NULL``. This function always succeeds." +msgid "Return true if *o* is of type :c:data:`PyContextToken_Type`. *o* must not be ``NULL``. This function always succeeds." msgstr "" -#: ../../c-api/contextvars.rst:76 msgid "Context object management functions:" msgstr "" -#: ../../c-api/contextvars.rst:80 -msgid "" -"Create a new empty context object. Returns ``NULL`` if an error has " -"occurred." +msgid "Create a new empty context object. Returns ``NULL`` if an error has occurred." msgstr "" -#: ../../c-api/contextvars.rst:85 -msgid "" -"Create a shallow copy of the passed *ctx* context object. Returns ``NULL`` " -"if an error has occurred." +msgid "Create a shallow copy of the passed *ctx* context object. Returns ``NULL`` if an error has occurred." msgstr "" -#: ../../c-api/contextvars.rst:90 -msgid "" -"Create a shallow copy of the current thread context. Returns ``NULL`` if an " -"error has occurred." +msgid "Create a shallow copy of the current thread context. Returns ``NULL`` if an error has occurred." msgstr "" -#: ../../c-api/contextvars.rst:95 -msgid "" -"Set *ctx* as the current context for the current thread. Returns ``0`` on " -"success, and ``-1`` on error." +msgid "Set *ctx* as the current context for the current thread. Returns ``0`` on success, and ``-1`` on error." msgstr "" -#: ../../c-api/contextvars.rst:100 -msgid "" -"Deactivate the *ctx* context and restore the previous context as the current " -"context for the current thread. Returns ``0`` on success, and ``-1`` on " -"error." +msgid "Deactivate the *ctx* context and restore the previous context as the current context for the current thread. Returns ``0`` on success, and ``-1`` on error." msgstr "" -#: ../../c-api/contextvars.rst:106 -msgid "" -"Register *callback* as a context object watcher for the current interpreter. " -"Return an ID which may be passed to :c:func:`PyContext_ClearWatcher`. In " -"case of error (e.g. no more watcher IDs available), return ``-1`` and set an " -"exception." +msgid "Register *callback* as a context object watcher for the current interpreter. Return an ID which may be passed to :c:func:`PyContext_ClearWatcher`. In case of error (e.g. no more watcher IDs available), return ``-1`` and set an exception." msgstr "" -#: ../../c-api/contextvars.rst:115 -msgid "" -"Clear watcher identified by *watcher_id* previously returned " -"from :c:func:`PyContext_AddWatcher` for the current interpreter. Return " -"``0`` on success, or ``-1`` and set an exception on error (e.g. if the given " -"*watcher_id* was never registered.)" +msgid "Clear watcher identified by *watcher_id* previously returned from :c:func:`PyContext_AddWatcher` for the current interpreter. Return ``0`` on success, or ``-1`` and set an exception on error (e.g. if the given *watcher_id* was never registered.)" msgstr "" -#: ../../c-api/contextvars.rst:124 msgid "Enumeration of possible context object watcher events:" msgstr "" -#: ../../c-api/contextvars.rst:126 -msgid "" -"``Py_CONTEXT_SWITCHED``: The :term:`current context` has switched to a " -"different context. The object passed to the watch callback is the now-" -"current :class:`contextvars.Context` object, or None if no context is " -"current." +msgid "``Py_CONTEXT_SWITCHED``: The :term:`current context` has switched to a different context. The object passed to the watch callback is the now-current :class:`contextvars.Context` object, or None if no context is current." msgstr "" -#: ../../c-api/contextvars.rst:135 -msgid "" -"Context object watcher callback function. The object passed to the callback " -"is event-specific; see :c:type:`PyContextEvent` for details." +msgid "Context object watcher callback function. The object passed to the callback is event-specific; see :c:type:`PyContextEvent` for details." msgstr "" -#: ../../c-api/contextvars.rst:138 -msgid "" -"If the callback returns with an exception set, it must return ``-1``; this " -"exception will be printed as an unraisable exception " -"using :c:func:`PyErr_FormatUnraisable`. Otherwise it should return ``0``." +msgid "If the callback returns with an exception set, it must return ``-1``; this exception will be printed as an unraisable exception using :c:func:`PyErr_FormatUnraisable`. Otherwise it should return ``0``." msgstr "" -#: ../../c-api/contextvars.rst:142 -msgid "" -"There may already be a pending exception set on entry to the callback. In " -"this case, the callback should return ``0`` with the same exception still " -"set. This means the callback may not call any other API that can set an " -"exception unless it saves and clears the exception state first, and restores " -"it before returning." +msgid "There may already be a pending exception set on entry to the callback. In this case, the callback should return ``0`` with the same exception still set. This means the callback may not call any other API that can set an exception unless it saves and clears the exception state first, and restores it before returning." msgstr "" -#: ../../c-api/contextvars.rst:151 msgid "Context variable functions:" msgstr "" -#: ../../c-api/contextvars.rst:155 -msgid "" -"Create a new ``ContextVar`` object. The *name* parameter is used for " -"introspection and debug purposes. The *def* parameter specifies a default " -"value for the context variable, or ``NULL`` for no default. If an error has " -"occurred, this function returns ``NULL``." +msgid "Create a new ``ContextVar`` object. The *name* parameter is used for introspection and debug purposes. The *def* parameter specifies a default value for the context variable, or ``NULL`` for no default. If an error has occurred, this function returns ``NULL``." msgstr "" -#: ../../c-api/contextvars.rst:162 -msgid "" -"Get the value of a context variable. Returns ``-1`` if an error has " -"occurred during lookup, and ``0`` if no error occurred, whether or not a " -"value was found." +msgid "Get the value of a context variable. Returns ``-1`` if an error has occurred during lookup, and ``0`` if no error occurred, whether or not a value was found." msgstr "" -#: ../../c-api/contextvars.rst:166 -msgid "" -"If the context variable was found, *value* will be a pointer to it. If the " -"context variable was *not* found, *value* will point to:" +msgid "If the context variable was found, *value* will be a pointer to it. If the context variable was *not* found, *value* will point to:" msgstr "" -#: ../../c-api/contextvars.rst:169 msgid "*default_value*, if not ``NULL``;" msgstr "" -#: ../../c-api/contextvars.rst:170 msgid "the default value of *var*, if not ``NULL``;" msgstr "" -#: ../../c-api/contextvars.rst:171 msgid "``NULL``" msgstr "" -#: ../../c-api/contextvars.rst:173 msgid "Except for ``NULL``, the function returns a new reference." msgstr "" -#: ../../c-api/contextvars.rst:177 -msgid "" -"Set the value of *var* to *value* in the current context. Returns a new " -"token object for this change, or ``NULL`` if an error has occurred." +msgid "Set the value of *var* to *value* in the current context. Returns a new token object for this change, or ``NULL`` if an error has occurred." msgstr "" -#: ../../c-api/contextvars.rst:182 -msgid "" -"Reset the state of the *var* context variable to that it was in " -"before :c:func:`PyContextVar_Set` that returned the *token* was called. This " -"function returns ``0`` on success and ``-1`` on error." +msgid "Reset the state of the *var* context variable to that it was in before :c:func:`PyContextVar_Set` that returned the *token* was called. This function returns ``0`` on success and ``-1`` on error." msgstr "" diff --git a/c-api/conversion.po b/c-api/conversion.po index b1abc2d0..7e12c603 100644 --- a/c-api/conversion.po +++ b/c-api/conversion.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:48+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,325 +21,167 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../c-api/conversion.rst:6 msgid "String conversion and formatting" msgstr "" -#: ../../c-api/conversion.rst:8 msgid "Functions for number conversion and formatted string output." msgstr "" -#: ../../c-api/conversion.rst:13 -msgid "" -"Output not more than *size* bytes to *str* according to the format string " -"*format* and the extra arguments. See the Unix man " -"page :manpage:`snprintf(3)`." +msgid "Output not more than *size* bytes to *str* according to the format string *format* and the extra arguments. See the Unix man page :manpage:`snprintf(3)`." msgstr "" -#: ../../c-api/conversion.rst:19 -msgid "" -"Output not more than *size* bytes to *str* according to the format string " -"*format* and the variable argument list *va*. Unix man " -"page :manpage:`vsnprintf(3)`." +msgid "Output not more than *size* bytes to *str* according to the format string *format* and the variable argument list *va*. Unix man page :manpage:`vsnprintf(3)`." msgstr "" -#: ../../c-api/conversion.rst:23 -msgid "" -":c:func:`PyOS_snprintf` and :c:func:`PyOS_vsnprintf` wrap the Standard C " -"library functions :c:func:`snprintf` and :c:func:`vsnprintf`. Their purpose " -"is to guarantee consistent behavior in corner cases, which the Standard C " -"functions do not." +msgid ":c:func:`PyOS_snprintf` and :c:func:`PyOS_vsnprintf` wrap the Standard C library functions :c:func:`snprintf` and :c:func:`vsnprintf`. Their purpose is to guarantee consistent behavior in corner cases, which the Standard C functions do not." msgstr "" -#: ../../c-api/conversion.rst:28 -msgid "" -"The wrappers ensure that ``str[size-1]`` is always ``'\\0'`` upon return. " -"They never write more than *size* bytes (including the trailing ``'\\0'``) " -"into str. Both functions require that ``str != NULL``, ``size > 0``, " -"``format != NULL`` and ``size < INT_MAX``. Note that this means there is no " -"equivalent to the C99 ``n = snprintf(NULL, 0, ...)`` which would determine " -"the necessary buffer size." +msgid "The wrappers ensure that ``str[size-1]`` is always ``'\\0'`` upon return. They never write more than *size* bytes (including the trailing ``'\\0'``) into str. Both functions require that ``str != NULL``, ``size > 0``, ``format != NULL`` and ``size < INT_MAX``. Note that this means there is no equivalent to the C99 ``n = snprintf(NULL, 0, ...)`` which would determine the necessary buffer size." msgstr "" -#: ../../c-api/conversion.rst:34 -msgid "" -"The return value (*rv*) for these functions should be interpreted as follows:" +msgid "The return value (*rv*) for these functions should be interpreted as follows:" msgstr "" -#: ../../c-api/conversion.rst:36 -msgid "" -"When ``0 <= rv < size``, the output conversion was successful and *rv* " -"characters were written to *str* (excluding the trailing ``'\\0'`` byte at " -"``str[rv]``)." +msgid "When ``0 <= rv < size``, the output conversion was successful and *rv* characters were written to *str* (excluding the trailing ``'\\0'`` byte at ``str[rv]``)." msgstr "" -#: ../../c-api/conversion.rst:40 -msgid "" -"When ``rv >= size``, the output conversion was truncated and a buffer with " -"``rv + 1`` bytes would have been needed to succeed. ``str[size-1]`` is " -"``'\\0'`` in this case." +msgid "When ``rv >= size``, the output conversion was truncated and a buffer with ``rv + 1`` bytes would have been needed to succeed. ``str[size-1]`` is ``'\\0'`` in this case." msgstr "" -#: ../../c-api/conversion.rst:44 -msgid "" -"When ``rv < 0``, the output conversion failed and ``str[size-1]`` is " -"``'\\0'`` in this case too, but the rest of *str* is undefined. The exact " -"cause of the error depends on the underlying platform." +msgid "When ``rv < 0``, the output conversion failed and ``str[size-1]`` is ``'\\0'`` in this case too, but the rest of *str* is undefined. The exact cause of the error depends on the underlying platform." msgstr "" -#: ../../c-api/conversion.rst:49 -msgid "" -"The following functions provide locale-independent string to number " -"conversions." +msgid "The following functions provide locale-independent string to number conversions." msgstr "" -#: ../../c-api/conversion.rst:53 -msgid "" -"Convert the initial part of the string in ``str`` to an :c:expr:`unsigned " -"long` value according to the given ``base``, which must be between ``2`` and " -"``36`` inclusive, or be the special value ``0``." +msgid "Convert the initial part of the string in ``str`` to an :c:expr:`unsigned long` value according to the given ``base``, which must be between ``2`` and ``36`` inclusive, or be the special value ``0``." msgstr "" -#: ../../c-api/conversion.rst:57 -msgid "" -"Leading white space and case of characters are ignored. If ``base`` is zero " -"it looks for a leading ``0b``, ``0o`` or ``0x`` to tell which base. If " -"these are absent it defaults to ``10``. Base must be 0 or between 2 and 36 " -"(inclusive). If ``ptr`` is non-``NULL`` it will contain a pointer to the " -"end of the scan." +msgid "Leading white space and case of characters are ignored. If ``base`` is zero it looks for a leading ``0b``, ``0o`` or ``0x`` to tell which base. If these are absent it defaults to ``10``. Base must be 0 or between 2 and 36 (inclusive). If ``ptr`` is non-``NULL`` it will contain a pointer to the end of the scan." msgstr "" -#: ../../c-api/conversion.rst:63 -msgid "" -"If the converted value falls out of range of corresponding return type, " -"range error occurs (:c:data:`errno` is set to :c:macro:`!ERANGE`) " -"and :c:macro:`!ULONG_MAX` is returned. If no conversion can be performed, " -"``0`` is returned." +msgid "If the converted value falls out of range of corresponding return type, range error occurs (:c:data:`errno` is set to :c:macro:`!ERANGE`) and :c:macro:`!ULONG_MAX` is returned. If no conversion can be performed, ``0`` is returned." msgstr "" -#: ../../c-api/conversion.rst:68 msgid "See also the Unix man page :manpage:`strtoul(3)`." msgstr "" -#: ../../c-api/conversion.rst:75 -msgid "" -"Convert the initial part of the string in ``str`` to an :c:expr:`long` value " -"according to the given ``base``, which must be between ``2`` and ``36`` " -"inclusive, or be the special value ``0``." +msgid "Convert the initial part of the string in ``str`` to an :c:expr:`long` value according to the given ``base``, which must be between ``2`` and ``36`` inclusive, or be the special value ``0``." msgstr "" -#: ../../c-api/conversion.rst:79 -msgid "" -"Same as :c:func:`PyOS_strtoul`, but return a :c:expr:`long` value instead " -"and :c:macro:`LONG_MAX` on overflows." +msgid "Same as :c:func:`PyOS_strtoul`, but return a :c:expr:`long` value instead and :c:macro:`LONG_MAX` on overflows." msgstr "" -#: ../../c-api/conversion.rst:82 msgid "See also the Unix man page :manpage:`strtol(3)`." msgstr "" -#: ../../c-api/conversion.rst:89 -msgid "" -"Convert a string ``s`` to a :c:expr:`double`, raising a Python exception on " -"failure. The set of accepted strings corresponds to the set of strings " -"accepted by Python's :func:`float` constructor, except that ``s`` must not " -"have leading or trailing whitespace. The conversion is independent of the " -"current locale." +msgid "Convert a string ``s`` to a :c:expr:`double`, raising a Python exception on failure. The set of accepted strings corresponds to the set of strings accepted by Python's :func:`float` constructor, except that ``s`` must not have leading or trailing whitespace. The conversion is independent of the current locale." msgstr "" -#: ../../c-api/conversion.rst:95 -msgid "" -"If ``endptr`` is ``NULL``, convert the whole string. " -"Raise :exc:`ValueError` and return ``-1.0`` if the string is not a valid " -"representation of a floating-point number." +msgid "If ``endptr`` is ``NULL``, convert the whole string. Raise :exc:`ValueError` and return ``-1.0`` if the string is not a valid representation of a floating-point number." msgstr "" -#: ../../c-api/conversion.rst:99 -msgid "" -"If endptr is not ``NULL``, convert as much of the string as possible and set " -"``*endptr`` to point to the first unconverted character. If no initial " -"segment of the string is the valid representation of a floating-point " -"number, set ``*endptr`` to point to the beginning of the string, raise " -"ValueError, and return ``-1.0``." +msgid "If endptr is not ``NULL``, convert as much of the string as possible and set ``*endptr`` to point to the first unconverted character. If no initial segment of the string is the valid representation of a floating-point number, set ``*endptr`` to point to the beginning of the string, raise ValueError, and return ``-1.0``." msgstr "" -#: ../../c-api/conversion.rst:106 -msgid "" -"If ``s`` represents a value that is too large to store in a float (for " -"example, ``\"1e500\"`` is such a string on many platforms) then if " -"``overflow_exception`` is ``NULL`` return ``Py_INFINITY`` (with an " -"appropriate sign) and don't set any exception. Otherwise, " -"``overflow_exception`` must point to a Python exception object; raise that " -"exception and return ``-1.0``. In both cases, set ``*endptr`` to point to " -"the first character after the converted value." +msgid "If ``s`` represents a value that is too large to store in a float (for example, ``\"1e500\"`` is such a string on many platforms) then if ``overflow_exception`` is ``NULL`` return ``Py_INFINITY`` (with an appropriate sign) and don't set any exception. Otherwise, ``overflow_exception`` must point to a Python exception object; raise that exception and return ``-1.0``. In both cases, set ``*endptr`` to point to the first character after the converted value." msgstr "" -#: ../../c-api/conversion.rst:114 -msgid "" -"If any other error occurs during the conversion (for example an out-of-" -"memory error), set the appropriate Python exception and return ``-1.0``." +msgid "If any other error occurs during the conversion (for example an out-of-memory error), set the appropriate Python exception and return ``-1.0``." msgstr "" -#: ../../c-api/conversion.rst:123 -msgid "" -"Convert a :c:expr:`double` *val* to a string using supplied *format_code*, " -"*precision*, and *flags*." +msgid "Convert a :c:expr:`double` *val* to a string using supplied *format_code*, *precision*, and *flags*." msgstr "" -#: ../../c-api/conversion.rst:126 -msgid "" -"*format_code* must be one of ``'e'``, ``'E'``, ``'f'``, ``'F'``, ``'g'``, " -"``'G'`` or ``'r'``. For ``'r'``, the supplied *precision* must be 0 and is " -"ignored. The ``'r'`` format code specifies the standard :func:`repr` format." +msgid "*format_code* must be one of ``'e'``, ``'E'``, ``'f'``, ``'F'``, ``'g'``, ``'G'`` or ``'r'``. For ``'r'``, the supplied *precision* must be 0 and is ignored. The ``'r'`` format code specifies the standard :func:`repr` format." msgstr "" -#: ../../c-api/conversion.rst:131 msgid "*flags* can be zero or more of the following values or-ed together:" msgstr "" -#: ../../c-api/conversion.rst:137 -msgid "" -"Always precede the returned string with a sign character, even if *val* is " -"non-negative." +msgid "Always precede the returned string with a sign character, even if *val* is non-negative." msgstr "" -#: ../../c-api/conversion.rst:142 msgid "Ensure that the returned string will not look like an integer." msgstr "" -#: ../../c-api/conversion.rst:146 -msgid "" -"Apply \"alternate\" formatting rules. See the documentation for " -"the :c:func:`PyOS_snprintf` ``'#'`` specifier for details." +msgid "Apply \"alternate\" formatting rules. See the documentation for the :c:func:`PyOS_snprintf` ``'#'`` specifier for details." msgstr "" -#: ../../c-api/conversion.rst:152 msgid "Negative zero is converted to positive zero." msgstr "" -#: ../../c-api/conversion.rst:156 -msgid "" -"If *ptype* is non-``NULL``, then the value it points to will be set to one " -"of the following constants depending on the type of *val*:" +msgid "If *ptype* is non-``NULL``, then the value it points to will be set to one of the following constants depending on the type of *val*:" msgstr "" -#: ../../c-api/conversion.rst:163 msgid "*\\*ptype*" msgstr "" -#: ../../c-api/conversion.rst:164 msgid "type of *val*" msgstr "" -#: ../../c-api/conversion.rst:166 msgid "finite number" msgstr "" -#: ../../c-api/conversion.rst:168 msgid "infinite number" msgstr "" -#: ../../c-api/conversion.rst:170 msgid "not a number" msgstr "" -#: ../../c-api/conversion.rst:172 -msgid "" -"The return value is a pointer to *buffer* with the converted string or " -"``NULL`` if the conversion failed. The caller is responsible for freeing the " -"returned string by calling :c:func:`PyMem_Free`." +msgid "The return value is a pointer to *buffer* with the converted string or ``NULL`` if the conversion failed. The caller is responsible for freeing the returned string by calling :c:func:`PyMem_Free`." msgstr "" -#: ../../c-api/conversion.rst:182 -msgid "" -"Case insensitive comparison of strings. These functions work almost " -"identically to :c:func:`!strcmp` and :c:func:`!strncmp` (respectively), " -"except that they ignore the case of ASCII characters." +msgid "Case insensitive comparison of strings. These functions work almost identically to :c:func:`!strcmp` and :c:func:`!strncmp` (respectively), except that they ignore the case of ASCII characters." msgstr "" -#: ../../c-api/conversion.rst:186 -msgid "" -"Return ``0`` if the strings are equal, a negative value if *str1* sorts " -"lexicographically before *str2*, or a positive value if it sorts after." +msgid "Return ``0`` if the strings are equal, a negative value if *str1* sorts lexicographically before *str2*, or a positive value if it sorts after." msgstr "" -#: ../../c-api/conversion.rst:189 -msgid "" -"In the *str1* or *str2* arguments, a NUL byte marks the end of the string. " -"For :c:func:`!PyOS_mystrnicmp`, the *size* argument gives the maximum size " -"of the string, as if NUL was present at the index given by *size*." +msgid "In the *str1* or *str2* arguments, a NUL byte marks the end of the string. For :c:func:`!PyOS_mystrnicmp`, the *size* argument gives the maximum size of the string, as if NUL was present at the index given by *size*." msgstr "" -#: ../../c-api/conversion.rst:193 msgid "These functions do not use the locale." msgstr "" -#: ../../c-api/conversion.rst:199 msgid "Case insensitive comparison of strings." msgstr "" -#: ../../c-api/conversion.rst:201 -msgid "" -"On Windows, these are aliases of :c:func:`!stricmp` and :c:func:`!strnicmp`, " -"respectively." +msgid "On Windows, these are aliases of :c:func:`!stricmp` and :c:func:`!strnicmp`, respectively." msgstr "" -#: ../../c-api/conversion.rst:204 -msgid "" -"On other platforms, they are aliases of :c:func:`PyOS_mystricmp` " -"and :c:func:`PyOS_mystrnicmp`, respectively." +msgid "On other platforms, they are aliases of :c:func:`PyOS_mystricmp` and :c:func:`PyOS_mystrnicmp`, respectively." msgstr "" -#: ../../c-api/conversion.rst:209 msgid "Character classification and conversion" msgstr "" -#: ../../c-api/conversion.rst:211 -msgid "" -"The following macros provide locale-independent (unlike the C standard " -"library ``ctype.h``) character classification and conversion. The argument " -"must be a signed or unsigned :c:expr:`char`." +msgid "The following macros provide locale-independent (unlike the C standard library ``ctype.h``) character classification and conversion. The argument must be a signed or unsigned :c:expr:`char`." msgstr "" -#: ../../c-api/conversion.rst:218 msgid "Return true if the character *c* is an alphanumeric character." msgstr "" -#: ../../c-api/conversion.rst:223 -msgid "" -"Return true if the character *c* is an alphabetic character (``a-z`` and ``A-" -"Z``)." +msgid "Return true if the character *c* is an alphabetic character (``a-z`` and ``A-Z``)." msgstr "" -#: ../../c-api/conversion.rst:228 msgid "Return true if the character *c* is a decimal digit (``0-9``)." msgstr "" -#: ../../c-api/conversion.rst:233 msgid "Return true if the character *c* is a lowercase ASCII letter (``a-z``)." msgstr "" -#: ../../c-api/conversion.rst:238 -msgid "" -"Return true if the character *c* is an uppercase ASCII letter (``A-Z``)." +msgid "Return true if the character *c* is an uppercase ASCII letter (``A-Z``)." msgstr "" -#: ../../c-api/conversion.rst:243 -msgid "" -"Return true if the character *c* is a whitespace character (space, tab, " -"carriage return, newline, vertical tab, or form feed)." +msgid "Return true if the character *c* is a whitespace character (space, tab, carriage return, newline, vertical tab, or form feed)." msgstr "" -#: ../../c-api/conversion.rst:249 -msgid "" -"Return true if the character *c* is a hexadecimal digit (``0-9``, ``a-f``, " -"and ``A-F``)." +msgid "Return true if the character *c* is a hexadecimal digit (``0-9``, ``a-f``, and ``A-F``)." msgstr "" -#: ../../c-api/conversion.rst:255 msgid "Return the lowercase equivalent of the character *c*." msgstr "" -#: ../../c-api/conversion.rst:260 msgid "Return the uppercase equivalent of the character *c*." msgstr "" diff --git a/c-api/coro.po b/c-api/coro.po index 0807d05b..a46edf67 100644 --- a/c-api/coro.po +++ b/c-api/coro.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:48+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,34 +23,20 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../c-api/coro.rst:6 msgid "Coroutine Objects" msgstr "" -#: ../../c-api/coro.rst:10 -msgid "" -"Coroutine objects are what functions declared with an ``async`` keyword " -"return." +msgid "Coroutine objects are what functions declared with an ``async`` keyword return." msgstr "" -#: ../../c-api/coro.rst:16 msgid "The C structure used for coroutine objects." msgstr "" -#: ../../c-api/coro.rst:21 msgid "The type object corresponding to coroutine objects." msgstr "" -#: ../../c-api/coro.rst:26 -msgid "" -"Return true if *ob*'s type is :c:type:`PyCoro_Type`; *ob* must not be " -"``NULL``. This function always succeeds." +msgid "Return true if *ob*'s type is :c:type:`PyCoro_Type`; *ob* must not be ``NULL``. This function always succeeds." msgstr "" -#: ../../c-api/coro.rst:32 -msgid "" -"Create and return a new coroutine object based on the *frame* object, with " -"``__name__`` and ``__qualname__`` set to *name* and *qualname*. A reference " -"to *frame* is stolen by this function. The *frame* argument must not be " -"``NULL``." +msgid "Create and return a new coroutine object based on the *frame* object, with ``__name__`` and ``__qualname__`` set to *name* and *qualname*. A reference to *frame* is stolen by this function. The *frame* argument must not be ``NULL``." msgstr "" diff --git a/c-api/curses.po b/c-api/curses.po index 57cab635..af243bf3 100644 --- a/c-api/curses.po +++ b/c-api/curses.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2026-07-25 12:59+0330\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: none\n" @@ -19,116 +19,65 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../c-api/curses.rst:4 msgid "Curses C API" msgstr "" -#: ../../c-api/curses.rst:6 -msgid "" -":mod:`curses` exposes a small C interface for extension modules. Consumers " -"must include the header file :file:`py_curses.h` (which is not included by " -"default by :file:`Python.h`) and :c:func:`import_curses` must be invoked, " -"usually as part of the module initialisation function, to " -"populate :c:var:`PyCurses_API`." +msgid ":mod:`curses` exposes a small C interface for extension modules. Consumers must include the header file :file:`py_curses.h` (which is not included by default by :file:`Python.h`) and :c:func:`import_curses` must be invoked, usually as part of the module initialisation function, to populate :c:var:`PyCurses_API`." msgstr "" -#: ../../c-api/curses.rst:14 -msgid "" -"Neither the C API nor the pure Python :mod:`curses` module are compatible " -"with subinterpreters." +msgid "Neither the C API nor the pure Python :mod:`curses` module are compatible with subinterpreters." msgstr "" -#: ../../c-api/curses.rst:19 -msgid "" -"Import the curses C API. The macro does not need a semi-colon to be called." +msgid "Import the curses C API. The macro does not need a semi-colon to be called." msgstr "" -#: ../../c-api/curses.rst:21 msgid "On success, populate the :c:var:`PyCurses_API` pointer." msgstr "" -#: ../../c-api/curses.rst:23 -msgid "" -"On failure, set :c:var:`PyCurses_API` to NULL and set an exception. The " -"caller must check if an error occurred via :c:func:`PyErr_Occurred`:" +msgid "On failure, set :c:var:`PyCurses_API` to NULL and set an exception. The caller must check if an error occurred via :c:func:`PyErr_Occurred`:" msgstr "" -#: ../../c-api/curses.rst:26 msgid "" "import_curses(); // semi-colon is optional but recommended\n" "if (PyErr_Occurred()) { /* cleanup */ }" msgstr "" -#: ../../c-api/curses.rst:34 -msgid "" -"Dynamically allocated object containing the curses C API. This variable is " -"only available once :c:macro:`import_curses` succeeds." +msgid "Dynamically allocated object containing the curses C API. This variable is only available once :c:macro:`import_curses` succeeds." msgstr "" -#: ../../c-api/curses.rst:37 msgid "``PyCurses_API[0]`` corresponds to :c:data:`PyCursesWindow_Type`." msgstr "" -#: ../../c-api/curses.rst:39 -msgid "" -"``PyCurses_API[1]``, ``PyCurses_API[2]``, and ``PyCurses_API[3]`` are " -"pointers to predicate functions of type ``int (*)(void)``." +msgid "``PyCurses_API[1]``, ``PyCurses_API[2]``, and ``PyCurses_API[3]`` are pointers to predicate functions of type ``int (*)(void)``." msgstr "" -#: ../../c-api/curses.rst:42 -msgid "" -"When called, these predicates return " -"whether :func:`curses.setupterm`, :func:`curses.initscr`, " -"and :func:`curses.start_color` have been called respectively." +msgid "When called, these predicates return whether :func:`curses.setupterm`, :func:`curses.initscr`, and :func:`curses.start_color` have been called respectively." msgstr "" -#: ../../c-api/curses.rst:46 -msgid "" -"See also the convenience " -"macros :c:macro:`PyCursesSetupTermCalled`, :c:macro:`PyCursesInitialised`, " -"and :c:macro:`PyCursesInitialisedColor`." +msgid "See also the convenience macros :c:macro:`PyCursesSetupTermCalled`, :c:macro:`PyCursesInitialised`, and :c:macro:`PyCursesInitialisedColor`." msgstr "" -#: ../../c-api/curses.rst:51 -msgid "" -"The number of entries in this structure is subject to changes. Consider " -"using :c:macro:`PyCurses_API_pointers` to check if new fields are available " -"or not." +msgid "The number of entries in this structure is subject to changes. Consider using :c:macro:`PyCurses_API_pointers` to check if new fields are available or not." msgstr "" -#: ../../c-api/curses.rst:58 -msgid "" -"The number of accessible fields (``4``) in :c:var:`PyCurses_API`. This " -"number is incremented whenever new fields are added." +msgid "The number of accessible fields (``4``) in :c:var:`PyCurses_API`. This number is incremented whenever new fields are added." msgstr "" -#: ../../c-api/curses.rst:64 -msgid "" -"The :ref:`heap type ` corresponding to :class:`curses.window`." +msgid "The :ref:`heap type ` corresponding to :class:`curses.window`." msgstr "" -#: ../../c-api/curses.rst:69 -msgid "" -"Return true if *op* is a :class:`curses.window` instance, false otherwise." +msgid "Return true if *op* is a :class:`curses.window` instance, false otherwise." msgstr "" -#: ../../c-api/curses.rst:72 -msgid "" -"The following macros are convenience macros expanding into C statements. In " -"particular, they can only be used as ``macro;`` or ``macro``, but not " -"``macro()`` or ``macro();``." +msgid "The following macros are convenience macros expanding into C statements. In particular, they can only be used as ``macro;`` or ``macro``, but not ``macro()`` or ``macro();``." msgstr "" -#: ../../c-api/curses.rst:78 msgid "Macro checking if :func:`curses.setupterm` has been called." msgstr "" -#: ../../c-api/curses.rst:80 ../../c-api/curses.rst:97 -#: ../../c-api/curses.rst:114 msgid "The macro expansion is roughly equivalent to:" msgstr "" -#: ../../c-api/curses.rst:82 msgid "" "{\n" " typedef int (*predicate_t)(void);\n" @@ -139,11 +88,9 @@ msgid "" "}" msgstr "" -#: ../../c-api/curses.rst:95 msgid "Macro checking if :func:`curses.initscr` has been called." msgstr "" -#: ../../c-api/curses.rst:99 msgid "" "{\n" " typedef int (*predicate_t)(void);\n" @@ -154,11 +101,9 @@ msgid "" "}" msgstr "" -#: ../../c-api/curses.rst:112 msgid "Macro checking if :func:`curses.start_color` has been called." msgstr "" -#: ../../c-api/curses.rst:116 msgid "" "{\n" " typedef int (*predicate_t)(void);\n" @@ -169,20 +114,14 @@ msgid "" "}" msgstr "" -#: ../../c-api/curses.rst:128 msgid "Internal data" msgstr "" -#: ../../c-api/curses.rst:130 -msgid "" -"The following objects are exposed by the C API but should be considered " -"internal-only." +msgid "The following objects are exposed by the C API but should be considered internal-only." msgstr "" -#: ../../c-api/curses.rst:135 msgid "Name of the curses capsule to pass to :c:func:`PyCapsule_Import`." msgstr "" -#: ../../c-api/curses.rst:137 msgid "Internal usage only. Use :c:macro:`import_curses` instead." msgstr "" diff --git a/c-api/datetime.po b/c-api/datetime.po index 22bf3fbb..1fd43cd4 100644 --- a/c-api/datetime.po +++ b/c-api/datetime.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:48+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,352 +23,199 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../c-api/datetime.rst:6 msgid "DateTime Objects" msgstr "" -#: ../../c-api/datetime.rst:8 -msgid "" -"Various date and time objects are supplied by the :mod:`datetime` module. " -"Before using any of these functions, the header file :file:`datetime.h` must " -"be included in your source (note that this is not included " -"by :file:`Python.h`), and the macro :c:macro:`PyDateTime_IMPORT` must be " -"invoked, usually as part of the module initialisation function. The macro " -"puts a pointer to a C structure into a static " -"variable, :c:data:`PyDateTimeAPI`, that is used by the following macros." +msgid "Various date and time objects are supplied by the :mod:`datetime` module. Before using any of these functions, the header file :file:`datetime.h` must be included in your source (note that this is not included by :file:`Python.h`), and the macro :c:macro:`PyDateTime_IMPORT` must be invoked, usually as part of the module initialisation function. The macro puts a pointer to a C structure into a static variable, :c:data:`PyDateTimeAPI`, that is used by the following macros." msgstr "" -#: ../../c-api/datetime.rst:18 msgid "Import the datetime C API." msgstr "" -#: ../../c-api/datetime.rst:20 -msgid "" -"On success, populate the :c:var:`PyDateTimeAPI` pointer. On failure, " -"set :c:var:`PyDateTimeAPI` to ``NULL`` and set an exception. The caller must " -"check if an error occurred via :c:func:`PyErr_Occurred`:" +msgid "On success, populate the :c:var:`PyDateTimeAPI` pointer. On failure, set :c:var:`PyDateTimeAPI` to ``NULL`` and set an exception. The caller must check if an error occurred via :c:func:`PyErr_Occurred`:" msgstr "" -#: ../../c-api/datetime.rst:24 msgid "" "PyDateTime_IMPORT;\n" "if (PyErr_Occurred()) { /* cleanup */ }" msgstr "" -#: ../../c-api/datetime.rst:31 msgid "This is not compatible with subinterpreters." msgstr "" -#: ../../c-api/datetime.rst:35 msgid "Structure containing the fields for the datetime C API." msgstr "" -#: ../../c-api/datetime.rst:37 msgid "The fields of this structure are private and subject to change." msgstr "" -#: ../../c-api/datetime.rst:39 msgid "Do not use this directly; prefer ``PyDateTime_*`` APIs instead." msgstr "" -#: ../../c-api/datetime.rst:43 msgid "Dynamically allocated object containing the datetime C API." msgstr "" -#: ../../c-api/datetime.rst:45 -msgid "" -"This variable is only available once :c:macro:`PyDateTime_IMPORT` succeeds." +msgid "This variable is only available once :c:macro:`PyDateTime_IMPORT` succeeds." msgstr "" -#: ../../c-api/datetime.rst:49 msgid "This subtype of :c:type:`PyObject` represents a Python date object." msgstr "" -#: ../../c-api/datetime.rst:53 msgid "This subtype of :c:type:`PyObject` represents a Python datetime object." msgstr "" -#: ../../c-api/datetime.rst:57 msgid "This subtype of :c:type:`PyObject` represents a Python time object." msgstr "" -#: ../../c-api/datetime.rst:61 -msgid "" -"This subtype of :c:type:`PyObject` represents the difference between two " -"datetime values." +msgid "This subtype of :c:type:`PyObject` represents the difference between two datetime values." msgstr "" -#: ../../c-api/datetime.rst:65 -msgid "" -"This instance of :c:type:`PyTypeObject` represents the Python date type; it " -"is the same object as :class:`datetime.date` in the Python layer." +msgid "This instance of :c:type:`PyTypeObject` represents the Python date type; it is the same object as :class:`datetime.date` in the Python layer." msgstr "" -#: ../../c-api/datetime.rst:70 -msgid "" -"This instance of :c:type:`PyTypeObject` represents the Python datetime type; " -"it is the same object as :class:`datetime.datetime` in the Python layer." +msgid "This instance of :c:type:`PyTypeObject` represents the Python datetime type; it is the same object as :class:`datetime.datetime` in the Python layer." msgstr "" -#: ../../c-api/datetime.rst:75 -msgid "" -"This instance of :c:type:`PyTypeObject` represents the Python time type; it " -"is the same object as :class:`datetime.time` in the Python layer." +msgid "This instance of :c:type:`PyTypeObject` represents the Python time type; it is the same object as :class:`datetime.time` in the Python layer." msgstr "" -#: ../../c-api/datetime.rst:80 -msgid "" -"This instance of :c:type:`PyTypeObject` represents the Python type for the " -"difference between two datetime values; it is the same object " -"as :class:`datetime.timedelta` in the Python layer." +msgid "This instance of :c:type:`PyTypeObject` represents the Python type for the difference between two datetime values; it is the same object as :class:`datetime.timedelta` in the Python layer." msgstr "" -#: ../../c-api/datetime.rst:86 -msgid "" -"This instance of :c:type:`PyTypeObject` represents the Python time zone info " -"type; it is the same object as :class:`datetime.tzinfo` in the Python layer." +msgid "This instance of :c:type:`PyTypeObject` represents the Python time zone info type; it is the same object as :class:`datetime.tzinfo` in the Python layer." msgstr "" -#: ../../c-api/datetime.rst:90 msgid "Macro for access to the UTC singleton:" msgstr "" -#: ../../c-api/datetime.rst:94 -msgid "" -"Returns the time zone singleton representing UTC, the same object " -"as :attr:`datetime.timezone.utc`." +msgid "Returns the time zone singleton representing UTC, the same object as :attr:`datetime.timezone.utc`." msgstr "" -#: ../../c-api/datetime.rst:100 msgid "Type-check macros:" msgstr "" -#: ../../c-api/datetime.rst:104 -msgid "" -"Return true if *ob* is of type :c:data:`PyDateTime_DateType` or a subtype " -"of :c:data:`!PyDateTime_DateType`. *ob* must not be ``NULL``. This " -"function always succeeds." +msgid "Return true if *ob* is of type :c:data:`PyDateTime_DateType` or a subtype of :c:data:`!PyDateTime_DateType`. *ob* must not be ``NULL``. This function always succeeds." msgstr "" -#: ../../c-api/datetime.rst:111 -msgid "" -"Return true if *ob* is of type :c:data:`PyDateTime_DateType`. *ob* must not " -"be ``NULL``. This function always succeeds." +msgid "Return true if *ob* is of type :c:data:`PyDateTime_DateType`. *ob* must not be ``NULL``. This function always succeeds." msgstr "" -#: ../../c-api/datetime.rst:117 -msgid "" -"Return true if *ob* is of type :c:data:`PyDateTime_DateTimeType` or a " -"subtype of :c:data:`!PyDateTime_DateTimeType`. *ob* must not be ``NULL``. " -"This function always succeeds." +msgid "Return true if *ob* is of type :c:data:`PyDateTime_DateTimeType` or a subtype of :c:data:`!PyDateTime_DateTimeType`. *ob* must not be ``NULL``. This function always succeeds." msgstr "" -#: ../../c-api/datetime.rst:124 -msgid "" -"Return true if *ob* is of type :c:data:`PyDateTime_DateTimeType`. *ob* must " -"not be ``NULL``. This function always succeeds." +msgid "Return true if *ob* is of type :c:data:`PyDateTime_DateTimeType`. *ob* must not be ``NULL``. This function always succeeds." msgstr "" -#: ../../c-api/datetime.rst:130 -msgid "" -"Return true if *ob* is of type :c:data:`PyDateTime_TimeType` or a subtype " -"of :c:data:`!PyDateTime_TimeType`. *ob* must not be ``NULL``. This " -"function always succeeds." +msgid "Return true if *ob* is of type :c:data:`PyDateTime_TimeType` or a subtype of :c:data:`!PyDateTime_TimeType`. *ob* must not be ``NULL``. This function always succeeds." msgstr "" -#: ../../c-api/datetime.rst:137 -msgid "" -"Return true if *ob* is of type :c:data:`PyDateTime_TimeType`. *ob* must not " -"be ``NULL``. This function always succeeds." +msgid "Return true if *ob* is of type :c:data:`PyDateTime_TimeType`. *ob* must not be ``NULL``. This function always succeeds." msgstr "" -#: ../../c-api/datetime.rst:143 -msgid "" -"Return true if *ob* is of type :c:data:`PyDateTime_DeltaType` or a subtype " -"of :c:data:`!PyDateTime_DeltaType`. *ob* must not be ``NULL``. This " -"function always succeeds." +msgid "Return true if *ob* is of type :c:data:`PyDateTime_DeltaType` or a subtype of :c:data:`!PyDateTime_DeltaType`. *ob* must not be ``NULL``. This function always succeeds." msgstr "" -#: ../../c-api/datetime.rst:150 -msgid "" -"Return true if *ob* is of type :c:data:`PyDateTime_DeltaType`. *ob* must not " -"be ``NULL``. This function always succeeds." +msgid "Return true if *ob* is of type :c:data:`PyDateTime_DeltaType`. *ob* must not be ``NULL``. This function always succeeds." msgstr "" -#: ../../c-api/datetime.rst:156 -msgid "" -"Return true if *ob* is of type :c:data:`PyDateTime_TZInfoType` or a subtype " -"of :c:data:`!PyDateTime_TZInfoType`. *ob* must not be ``NULL``. This " -"function always succeeds." +msgid "Return true if *ob* is of type :c:data:`PyDateTime_TZInfoType` or a subtype of :c:data:`!PyDateTime_TZInfoType`. *ob* must not be ``NULL``. This function always succeeds." msgstr "" -#: ../../c-api/datetime.rst:163 -msgid "" -"Return true if *ob* is of type :c:data:`PyDateTime_TZInfoType`. *ob* must " -"not be ``NULL``. This function always succeeds." +msgid "Return true if *ob* is of type :c:data:`PyDateTime_TZInfoType`. *ob* must not be ``NULL``. This function always succeeds." msgstr "" -#: ../../c-api/datetime.rst:167 msgid "Macros to create objects:" msgstr "" -#: ../../c-api/datetime.rst:171 -msgid "" -"Return a :class:`datetime.date` object with the specified year, month and " -"day." +msgid "Return a :class:`datetime.date` object with the specified year, month and day." msgstr "" -#: ../../c-api/datetime.rst:176 -msgid "" -"Return a :class:`datetime.datetime` object with the specified year, month, " -"day, hour, minute, second and microsecond." +msgid "Return a :class:`datetime.datetime` object with the specified year, month, day, hour, minute, second and microsecond." msgstr "" -#: ../../c-api/datetime.rst:182 -msgid "" -"Return a :class:`datetime.datetime` object with the specified year, month, " -"day, hour, minute, second, microsecond and fold." +msgid "Return a :class:`datetime.datetime` object with the specified year, month, day, hour, minute, second, microsecond and fold." msgstr "" -#: ../../c-api/datetime.rst:190 -msgid "" -"Return a :class:`datetime.time` object with the specified hour, minute, " -"second and microsecond." +msgid "Return a :class:`datetime.time` object with the specified hour, minute, second and microsecond." msgstr "" -#: ../../c-api/datetime.rst:196 -msgid "" -"Return a :class:`datetime.time` object with the specified hour, minute, " -"second, microsecond and fold." +msgid "Return a :class:`datetime.time` object with the specified hour, minute, second, microsecond and fold." msgstr "" -#: ../../c-api/datetime.rst:204 -msgid "" -"Return a :class:`datetime.timedelta` object representing the given number of " -"days, seconds and microseconds. Normalization is performed so that the " -"resulting number of microseconds and seconds lie in the ranges documented " -"for :class:`datetime.timedelta` objects." +msgid "Return a :class:`datetime.timedelta` object representing the given number of days, seconds and microseconds. Normalization is performed so that the resulting number of microseconds and seconds lie in the ranges documented for :class:`datetime.timedelta` objects." msgstr "" -#: ../../c-api/datetime.rst:212 -msgid "" -"Return a :class:`datetime.timezone` object with an unnamed fixed offset " -"represented by the *offset* argument." +msgid "Return a :class:`datetime.timezone` object with an unnamed fixed offset represented by the *offset* argument." msgstr "" -#: ../../c-api/datetime.rst:220 -msgid "" -"Return a :class:`datetime.timezone` object with a fixed offset represented " -"by the *offset* argument and with tzname *name*." +msgid "Return a :class:`datetime.timezone` object with a fixed offset represented by the *offset* argument and with tzname *name*." msgstr "" -#: ../../c-api/datetime.rst:226 -msgid "" -"Macros to extract fields from date objects. The argument must be an " -"instance of :c:type:`PyDateTime_Date`, including subclasses (such " -"as :c:type:`PyDateTime_DateTime`). The argument must not be ``NULL``, and " -"the type is not checked:" +msgid "Macros to extract fields from date objects. The argument must be an instance of :c:type:`PyDateTime_Date`, including subclasses (such as :c:type:`PyDateTime_DateTime`). The argument must not be ``NULL``, and the type is not checked:" msgstr "" -#: ../../c-api/datetime.rst:233 msgid "Return the year, as a positive int." msgstr "" -#: ../../c-api/datetime.rst:238 msgid "Return the month, as an int from 1 through 12." msgstr "" -#: ../../c-api/datetime.rst:243 msgid "Return the day, as an int from 1 through 31." msgstr "" -#: ../../c-api/datetime.rst:246 -msgid "" -"Macros to extract fields from datetime objects. The argument must be an " -"instance of :c:type:`PyDateTime_DateTime`, including subclasses. The " -"argument must not be ``NULL``, and the type is not checked:" +msgid "Macros to extract fields from datetime objects. The argument must be an instance of :c:type:`PyDateTime_DateTime`, including subclasses. The argument must not be ``NULL``, and the type is not checked:" msgstr "" -#: ../../c-api/datetime.rst:252 ../../c-api/datetime.rst:290 msgid "Return the hour, as an int from 0 through 23." msgstr "" -#: ../../c-api/datetime.rst:257 ../../c-api/datetime.rst:295 msgid "Return the minute, as an int from 0 through 59." msgstr "" -#: ../../c-api/datetime.rst:262 ../../c-api/datetime.rst:300 msgid "Return the second, as an int from 0 through 59." msgstr "" -#: ../../c-api/datetime.rst:267 ../../c-api/datetime.rst:305 msgid "Return the microsecond, as an int from 0 through 999999." msgstr "" -#: ../../c-api/datetime.rst:272 ../../c-api/datetime.rst:310 msgid "Return the fold, as an int from 0 through 1." msgstr "" -#: ../../c-api/datetime.rst:279 ../../c-api/datetime.rst:317 msgid "Return the tzinfo (which may be ``None``)." msgstr "" -#: ../../c-api/datetime.rst:284 -msgid "" -"Macros to extract fields from time objects. The argument must be an " -"instance of :c:type:`PyDateTime_Time`, including subclasses. The argument " -"must not be ``NULL``, and the type is not checked:" +msgid "Macros to extract fields from time objects. The argument must be an instance of :c:type:`PyDateTime_Time`, including subclasses. The argument must not be ``NULL``, and the type is not checked:" msgstr "" -#: ../../c-api/datetime.rst:322 -msgid "" -"Macros to extract fields from time delta objects. The argument must be an " -"instance of :c:type:`PyDateTime_Delta`, including subclasses. The argument " -"must not be ``NULL``, and the type is not checked:" +msgid "Macros to extract fields from time delta objects. The argument must be an instance of :c:type:`PyDateTime_Delta`, including subclasses. The argument must not be ``NULL``, and the type is not checked:" msgstr "" -#: ../../c-api/datetime.rst:328 msgid "Return the number of days, as an int from -999999999 to 999999999." msgstr "" -#: ../../c-api/datetime.rst:335 msgid "Return the number of seconds, as an int from 0 through 86399." msgstr "" -#: ../../c-api/datetime.rst:342 msgid "Return the number of microseconds, as an int from 0 through 999999." msgstr "" -#: ../../c-api/datetime.rst:347 msgid "Macros for the convenience of modules implementing the DB API:" msgstr "" -#: ../../c-api/datetime.rst:351 -msgid "" -"Create and return a new :class:`datetime.datetime` object given an argument " -"tuple suitable for passing to :meth:`datetime.datetime.fromtimestamp`." +msgid "Create and return a new :class:`datetime.datetime` object given an argument tuple suitable for passing to :meth:`datetime.datetime.fromtimestamp`." msgstr "" -#: ../../c-api/datetime.rst:357 -msgid "" -"Create and return a new :class:`datetime.date` object given an argument " -"tuple suitable for passing to :meth:`datetime.date.fromtimestamp`." +msgid "Create and return a new :class:`datetime.date` object given an argument tuple suitable for passing to :meth:`datetime.date.fromtimestamp`." msgstr "" -#: ../../c-api/datetime.rst:362 msgid "Internal data" msgstr "" -#: ../../c-api/datetime.rst:364 -msgid "" -"The following symbols are exposed by the C API but should be considered " -"internal-only." +msgid "The following symbols are exposed by the C API but should be considered internal-only." msgstr "" -#: ../../c-api/datetime.rst:369 msgid "Name of the datetime capsule to pass to :c:func:`PyCapsule_Import`." msgstr "" -#: ../../c-api/datetime.rst:371 msgid "Internal usage only. Use :c:macro:`PyDateTime_IMPORT` instead." msgstr "" diff --git a/c-api/descriptor.po b/c-api/descriptor.po index 58213313..c9fc9ebd 100644 --- a/c-api/descriptor.po +++ b/c-api/descriptor.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:48+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,223 +23,101 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../c-api/descriptor.rst:6 msgid "Descriptor Objects" msgstr "" -#: ../../c-api/descriptor.rst:8 -msgid "" -"\"Descriptors\" are objects that describe some attribute of an object. They " -"are found in the dictionary of type objects." +msgid "\"Descriptors\" are objects that describe some attribute of an object. They are found in the dictionary of type objects." msgstr "" -#: ../../c-api/descriptor.rst:13 msgid "The type object for the built-in descriptor types." msgstr "" -#: ../../c-api/descriptor.rst:18 -msgid "" -"Create a new get-set descriptor for extension type *type* from " -"the :c:type:`PyGetSetDef` structure *getset*." +msgid "Create a new get-set descriptor for extension type *type* from the :c:type:`PyGetSetDef` structure *getset*." msgstr "" -#: ../../c-api/descriptor.rst:21 -msgid "" -"Get-set descriptors expose attributes implemented by C getter and setter " -"functions rather than stored directly in the instance. This is the same kind " -"of descriptor created for entries in :c:member:`~PyTypeObject.tp_getset`, " -"and it appears in Python as a :class:`types.GetSetDescriptorType` object." +msgid "Get-set descriptors expose attributes implemented by C getter and setter functions rather than stored directly in the instance. This is the same kind of descriptor created for entries in :c:member:`~PyTypeObject.tp_getset`, and it appears in Python as a :class:`types.GetSetDescriptorType` object." msgstr "" -#: ../../c-api/descriptor.rst:26 ../../c-api/descriptor.rst:39 -#: ../../c-api/descriptor.rst:70 ../../c-api/descriptor.rst:101 -#: ../../c-api/descriptor.rst:123 -msgid "" -"On success, return a :term:`strong reference` to the descriptor. Return " -"``NULL`` with an exception set on failure." +msgid "On success, return a :term:`strong reference` to the descriptor. Return ``NULL`` with an exception set on failure." msgstr "" -#: ../../c-api/descriptor.rst:31 -msgid "" -"Create a new member descriptor for extension type *type* from " -"the :c:type:`PyMemberDef` structure *member*." +msgid "Create a new member descriptor for extension type *type* from the :c:type:`PyMemberDef` structure *member*." msgstr "" -#: ../../c-api/descriptor.rst:34 -msgid "" -"Member descriptors expose fields in the type's C struct as Python " -"attributes. This is the same kind of descriptor created for entries " -"in :c:member:`~PyTypeObject.tp_members`, and it appears in Python as " -"a :class:`types.MemberDescriptorType` object." +msgid "Member descriptors expose fields in the type's C struct as Python attributes. This is the same kind of descriptor created for entries in :c:member:`~PyTypeObject.tp_members`, and it appears in Python as a :class:`types.MemberDescriptorType` object." msgstr "" -#: ../../c-api/descriptor.rst:44 -msgid "" -"The type object for member descriptor objects created " -"from :c:type:`PyMemberDef` structures. These descriptors expose fields of a " -"C struct as attributes on a type, and correspond " -"to :class:`types.MemberDescriptorType` objects in Python." +msgid "The type object for member descriptor objects created from :c:type:`PyMemberDef` structures. These descriptors expose fields of a C struct as attributes on a type, and correspond to :class:`types.MemberDescriptorType` objects in Python." msgstr "" -#: ../../c-api/descriptor.rst:53 -msgid "" -"The type object for get/set descriptor objects created " -"from :c:type:`PyGetSetDef` structures. These descriptors implement " -"attributes whose value is computed by C getter and setter functions, and are " -"used for many built-in type attributes. They correspond " -"to :class:`types.GetSetDescriptorType` objects in Python." +msgid "The type object for get/set descriptor objects created from :c:type:`PyGetSetDef` structures. These descriptors implement attributes whose value is computed by C getter and setter functions, and are used for many built-in type attributes. They correspond to :class:`types.GetSetDescriptorType` objects in Python." msgstr "" -#: ../../c-api/descriptor.rst:62 -msgid "" -"Create a new method descriptor for extension type *type* from " -"the :c:type:`PyMethodDef` structure *meth*." +msgid "Create a new method descriptor for extension type *type* from the :c:type:`PyMethodDef` structure *meth*." msgstr "" -#: ../../c-api/descriptor.rst:65 -msgid "" -"Method descriptors expose C functions as methods on a type. This is the same " -"kind of descriptor created for entries " -"in :c:member:`~PyTypeObject.tp_methods`, and it appears in Python as " -"a :class:`types.MethodDescriptorType` object." +msgid "Method descriptors expose C functions as methods on a type. This is the same kind of descriptor created for entries in :c:member:`~PyTypeObject.tp_methods`, and it appears in Python as a :class:`types.MethodDescriptorType` object." msgstr "" -#: ../../c-api/descriptor.rst:75 -msgid "" -"The type object for method descriptor objects created " -"from :c:type:`PyMethodDef` structures. These descriptors expose C functions " -"as methods on a type, and correspond to :class:`types.MethodDescriptorType` " -"objects in Python." +msgid "The type object for method descriptor objects created from :c:type:`PyMethodDef` structures. These descriptors expose C functions as methods on a type, and correspond to :class:`types.MethodDescriptorType` objects in Python." msgstr "" -#: ../../c-api/descriptor.rst:83 msgid "Describes a slot wrapper used by :c:func:`PyDescr_NewWrapper`." msgstr "" -#: ../../c-api/descriptor.rst:85 -msgid "" -"Each ``wrapperbase`` record stores the Python-visible name and metadata for " -"a special method implemented by a type slot, together with the wrapper " -"function used to adapt that slot to Python's calling convention." +msgid "Each ``wrapperbase`` record stores the Python-visible name and metadata for a special method implemented by a type slot, together with the wrapper function used to adapt that slot to Python's calling convention." msgstr "" -#: ../../c-api/descriptor.rst:91 -msgid "" -"Create a new wrapper descriptor for extension type *type* from " -"the :c:struct:`wrapperbase` structure *base* and the wrapped slot function " -"pointer *wrapped*." +msgid "Create a new wrapper descriptor for extension type *type* from the :c:struct:`wrapperbase` structure *base* and the wrapped slot function pointer *wrapped*." msgstr "" -#: ../../c-api/descriptor.rst:96 -msgid "" -"Wrapper descriptors expose special methods implemented by type slots. This " -"is the same kind of descriptor that CPython creates for slot-based special " -"methods such as ``__repr__`` or ``__add__``, and it appears in Python as " -"a :class:`types.WrapperDescriptorType` object." +msgid "Wrapper descriptors expose special methods implemented by type slots. This is the same kind of descriptor that CPython creates for slot-based special methods such as ``__repr__`` or ``__add__``, and it appears in Python as a :class:`types.WrapperDescriptorType` object." msgstr "" -#: ../../c-api/descriptor.rst:106 -msgid "" -"The type object for wrapper descriptor objects created " -"by :c:func:`PyDescr_NewWrapper` and :c:func:`PyWrapper_New`. Wrapper " -"descriptors are used internally to expose special methods implemented via " -"wrapper structures, and appear in Python " -"as :class:`types.WrapperDescriptorType` objects." +msgid "The type object for wrapper descriptor objects created by :c:func:`PyDescr_NewWrapper` and :c:func:`PyWrapper_New`. Wrapper descriptors are used internally to expose special methods implemented via wrapper structures, and appear in Python as :class:`types.WrapperDescriptorType` objects." msgstr "" -#: ../../c-api/descriptor.rst:115 -msgid "" -"Create a new class method descriptor for extension type *type* from " -"the :c:type:`PyMethodDef` structure *method*." +msgid "Create a new class method descriptor for extension type *type* from the :c:type:`PyMethodDef` structure *method*." msgstr "" -#: ../../c-api/descriptor.rst:118 -msgid "" -"Class method descriptors expose C methods that receive the class rather than " -"an instance when accessed. This is the same kind of descriptor created for " -"``METH_CLASS`` entries in :c:member:`~PyTypeObject.tp_methods`, and it " -"appears in Python as a :class:`types.ClassMethodDescriptorType` object." +msgid "Class method descriptors expose C methods that receive the class rather than an instance when accessed. This is the same kind of descriptor created for ``METH_CLASS`` entries in :c:member:`~PyTypeObject.tp_methods`, and it appears in Python as a :class:`types.ClassMethodDescriptorType` object." msgstr "" -#: ../../c-api/descriptor.rst:128 -msgid "" -"Return non-zero if the descriptor object *descr* describes a data attribute, " -"or ``0`` if it describes a method. *descr* must be a descriptor object; " -"there is no error checking." +msgid "Return non-zero if the descriptor object *descr* describes a data attribute, or ``0`` if it describes a method. *descr* must be a descriptor object; there is no error checking." msgstr "" -#: ../../c-api/descriptor.rst:135 -msgid "" -"Create a new bound wrapper object from the wrapper descriptor *d* and the " -"instance *self*." +msgid "Create a new bound wrapper object from the wrapper descriptor *d* and the instance *self*." msgstr "" -#: ../../c-api/descriptor.rst:138 -msgid "" -"This is the bound form of a wrapper descriptor created " -"by :c:func:`PyDescr_NewWrapper`. CPython creates these objects when a slot " -"wrapper is accessed through an instance, and they appear in Python " -"as :class:`types.MethodWrapperType` objects." +msgid "This is the bound form of a wrapper descriptor created by :c:func:`PyDescr_NewWrapper`. CPython creates these objects when a slot wrapper is accessed through an instance, and they appear in Python as :class:`types.MethodWrapperType` objects." msgstr "" -#: ../../c-api/descriptor.rst:143 -msgid "" -"On success, return a :term:`strong reference` to the wrapper object. Return " -"``NULL`` with an exception set on failure." +msgid "On success, return a :term:`strong reference` to the wrapper object. Return ``NULL`` with an exception set on failure." msgstr "" -#: ../../c-api/descriptor.rst:147 msgid "Built-in descriptors" msgstr "" -#: ../../c-api/descriptor.rst:151 -msgid "" -"The type object for super objects. This is the same object as :class:`super` " -"in the Python layer." +msgid "The type object for super objects. This is the same object as :class:`super` in the Python layer." msgstr "" -#: ../../c-api/descriptor.rst:157 -msgid "" -"The type of class method objects. This is the same object " -"as :class:`classmethod` in the Python layer." +msgid "The type of class method objects. This is the same object as :class:`classmethod` in the Python layer." msgstr "" -#: ../../c-api/descriptor.rst:163 -msgid "" -"The type object for C-level class method descriptor objects. This is the " -"type of the descriptors created for :func:`classmethod` defined in C " -"extension types, and corresponds to :class:`types.ClassMethodDescriptorType` " -"objects in Python." +msgid "The type object for C-level class method descriptor objects. This is the type of the descriptors created for :func:`classmethod` defined in C extension types, and corresponds to :class:`types.ClassMethodDescriptorType` objects in Python." msgstr "" -#: ../../c-api/descriptor.rst:171 -msgid "" -"Create a new :class:`classmethod` object wrapping *callable*. *callable* " -"must be a callable object and must not be ``NULL``." +msgid "Create a new :class:`classmethod` object wrapping *callable*. *callable* must be a callable object and must not be ``NULL``." msgstr "" -#: ../../c-api/descriptor.rst:174 -msgid "" -"On success, this function returns a :term:`strong reference` to a new class " -"method descriptor. On failure, this function returns ``NULL`` with an " -"exception set." +msgid "On success, this function returns a :term:`strong reference` to a new class method descriptor. On failure, this function returns ``NULL`` with an exception set." msgstr "" -#: ../../c-api/descriptor.rst:181 -msgid "" -"The type of static method objects. This is the same object " -"as :class:`staticmethod` in the Python layer." +msgid "The type of static method objects. This is the same object as :class:`staticmethod` in the Python layer." msgstr "" -#: ../../c-api/descriptor.rst:187 -msgid "" -"Create a new :class:`staticmethod` object wrapping *callable*. *callable* " -"must be a callable object and must not be ``NULL``." +msgid "Create a new :class:`staticmethod` object wrapping *callable*. *callable* must be a callable object and must not be ``NULL``." msgstr "" -#: ../../c-api/descriptor.rst:190 -msgid "" -"On success, this function returns a :term:`strong reference` to a new static " -"method descriptor. On failure, this function returns ``NULL`` with an " -"exception set." +msgid "On success, this function returns a :term:`strong reference` to a new static method descriptor. On failure, this function returns ``NULL`` with an exception set." msgstr "" diff --git a/c-api/dict.po b/c-api/dict.po index 673e7619..0e3063a7 100644 --- a/c-api/dict.po +++ b/c-api/dict.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:48+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,324 +24,150 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../c-api/dict.rst:6 msgid "Dictionary Objects" msgstr "اشیاء دیکشنری «Dictionary Objecte»" -#: ../../c-api/dict.rst:13 -msgid "" -"This subtype of :c:type:`PyObject` represents a Python dictionary object." -msgstr "" -"این زیرنوع «subtype» از :c:type:`PyObject` نمایانگر یک شیء دیکشنری پایتون " -"است." +msgid "This subtype of :c:type:`PyObject` represents a Python dictionary object." +msgstr "این زیرنوع «subtype» از :c:type:`PyObject` نمایانگر یک شیء دیکشنری پایتون است." -#: ../../c-api/dict.rst:18 -msgid "" -"This instance of :c:type:`PyTypeObject` represents the Python dictionary " -"type. This is the same object as :class:`dict` in the Python layer." +msgid "This instance of :c:type:`PyTypeObject` represents the Python dictionary type. This is the same object as :class:`dict` in the Python layer." msgstr "" -#: ../../c-api/dict.rst:24 -msgid "" -"Return true if *p* is a dict object or an instance of a subtype of the dict " -"type. This function always succeeds." +msgid "Return true if *p* is a dict object or an instance of a subtype of the dict type. This function always succeeds." msgstr "" -#: ../../c-api/dict.rst:30 -msgid "" -"Return true if *p* is a dict object, but not an instance of a subtype of the " -"dict type. This function always succeeds." +msgid "Return true if *p* is a dict object, but not an instance of a subtype of the dict type. This function always succeeds." msgstr "" -#: ../../c-api/dict.rst:36 msgid "Return a new empty dictionary, or ``NULL`` on failure." msgstr "" -#: ../../c-api/dict.rst:41 -msgid "" -"Return a :class:`types.MappingProxyType` object for a mapping which enforces " -"read-only behavior. This is normally used to create a view to prevent " -"modification of the dictionary for non-dynamic class types." +msgid "Return a :class:`types.MappingProxyType` object for a mapping which enforces read-only behavior. This is normally used to create a view to prevent modification of the dictionary for non-dynamic class types." msgstr "" -#: ../../c-api/dict.rst:48 -msgid "" -"The type object for mapping proxy objects created " -"by :c:func:`PyDictProxy_New` and for the read-only ``__dict__`` attribute of " -"many built-in types. A :c:type:`PyDictProxy_Type` instance provides a " -"dynamic, read-only view of an underlying dictionary: changes to the " -"underlying dictionary are reflected in the proxy, but the proxy itself does " -"not support mutation operations. This corresponds " -"to :class:`types.MappingProxyType` in Python." +msgid "The type object for mapping proxy objects created by :c:func:`PyDictProxy_New` and for the read-only ``__dict__`` attribute of many built-in types. A :c:type:`PyDictProxy_Type` instance provides a dynamic, read-only view of an underlying dictionary: changes to the underlying dictionary are reflected in the proxy, but the proxy itself does not support mutation operations. This corresponds to :class:`types.MappingProxyType` in Python." msgstr "" -#: ../../c-api/dict.rst:59 msgid "Empty an existing dictionary of all key-value pairs." msgstr "" -#: ../../c-api/dict.rst:64 -msgid "" -"Determine if dictionary *p* contains *key*. If an item in *p* matches " -"*key*, return ``1``, otherwise return ``0``. On error, return ``-1``. This " -"is equivalent to the Python expression ``key in p``." +msgid "Determine if dictionary *p* contains *key*. If an item in *p* matches *key*, return ``1``, otherwise return ``0``. On error, return ``-1``. This is equivalent to the Python expression ``key in p``." msgstr "" -#: ../../c-api/dict.rst:70 ../../c-api/dict.rst:97 ../../c-api/dict.rst:117 -#: ../../c-api/dict.rst:140 ../../c-api/dict.rst:257 ../../c-api/dict.rst:279 -msgid "" -"The operation is atomic on :term:`free threading ` when " -"*key* is :class:`str`, :class:`int`, :class:`float`, :class:`bool` " -"or :class:`bytes`." +msgid "The operation is atomic on :term:`free threading ` when *key* is :class:`str`, :class:`int`, :class:`float`, :class:`bool` or :class:`bytes`." msgstr "" -#: ../../c-api/dict.rst:76 -msgid "" -"This is the same as :c:func:`PyDict_Contains`, but *key* is specified as " -"a :c:expr:`const char*` UTF-8 encoded bytes string, rather than " -"a :c:expr:`PyObject*`." +msgid "This is the same as :c:func:`PyDict_Contains`, but *key* is specified as a :c:expr:`const char*` UTF-8 encoded bytes string, rather than a :c:expr:`PyObject*`." msgstr "" -#: ../../c-api/dict.rst:85 msgid "Return a new dictionary that contains the same key-value pairs as *p*." msgstr "" -#: ../../c-api/dict.rst:90 -msgid "" -"Insert *val* into the dictionary *p* with a key of *key*. *key* must " -"be :term:`hashable`; if it isn't, :exc:`TypeError` will be raised. Return " -"``0`` on success or ``-1`` on failure. This function *does not* " -"\":term:`steal`\" a reference to *val*." +msgid "Insert *val* into the dictionary *p* with a key of *key*. *key* must be :term:`hashable`; if it isn't, :exc:`TypeError` will be raised. Return ``0`` on success or ``-1`` on failure. This function *does not* \":term:`steal`\" a reference to *val*." msgstr "" -#: ../../c-api/dict.rst:103 -msgid "" -"This is the same as :c:func:`PyDict_SetItem`, but *key* is specified as " -"a :c:expr:`const char*` UTF-8 encoded bytes string, rather than " -"a :c:expr:`PyObject*`." +msgid "This is the same as :c:func:`PyDict_SetItem`, but *key* is specified as a :c:expr:`const char*` UTF-8 encoded bytes string, rather than a :c:expr:`PyObject*`." msgstr "" -#: ../../c-api/dict.rst:110 -msgid "" -"Remove the entry in dictionary *p* with key *key*. *key* must " -"be :term:`hashable`; if it isn't, :exc:`TypeError` is raised. If *key* is " -"not in the dictionary, :exc:`KeyError` is raised. Return ``0`` on success or " -"``-1`` on failure." +msgid "Remove the entry in dictionary *p* with key *key*. *key* must be :term:`hashable`; if it isn't, :exc:`TypeError` is raised. If *key* is not in the dictionary, :exc:`KeyError` is raised. Return ``0`` on success or ``-1`` on failure." msgstr "" -#: ../../c-api/dict.rst:123 -msgid "" -"This is the same as :c:func:`PyDict_DelItem`, but *key* is specified as " -"a :c:expr:`const char*` UTF-8 encoded bytes string, rather than " -"a :c:expr:`PyObject*`." +msgid "This is the same as :c:func:`PyDict_DelItem`, but *key* is specified as a :c:expr:`const char*` UTF-8 encoded bytes string, rather than a :c:expr:`PyObject*`." msgstr "" -#: ../../c-api/dict.rst:130 -msgid "" -"Return a new :term:`strong reference` to the object from dictionary *p* " -"which has a key *key*:" +msgid "Return a new :term:`strong reference` to the object from dictionary *p* which has a key *key*:" msgstr "" -#: ../../c-api/dict.rst:133 -msgid "" -"If the key is present, set *\\*result* to a new :term:`strong reference` to " -"the value and return ``1``." +msgid "If the key is present, set *\\*result* to a new :term:`strong reference` to the value and return ``1``." msgstr "" -#: ../../c-api/dict.rst:135 msgid "If the key is missing, set *\\*result* to ``NULL`` and return ``0``." msgstr "" -#: ../../c-api/dict.rst:136 -msgid "" -"On error, raise an exception, set *\\*result* to ``NULL`` and return ``-1``." +msgid "On error, raise an exception, set *\\*result* to ``NULL`` and return ``-1``." msgstr "" -#: ../../c-api/dict.rst:145 msgid "See also the :c:func:`PyObject_GetItem` function." msgstr "" -#: ../../c-api/dict.rst:150 -msgid "" -"Return a :term:`borrowed reference` to the object from dictionary *p* which " -"has a key *key*. Return ``NULL`` if the key *key* is missing *without* " -"setting an exception." +msgid "Return a :term:`borrowed reference` to the object from dictionary *p* which has a key *key*. Return ``NULL`` if the key *key* is missing *without* setting an exception." msgstr "" -#: ../../c-api/dict.rst:156 -msgid "" -"Exceptions that occur while this calls :meth:`~object.__hash__` " -"and :meth:`~object.__eq__` methods are silently ignored. Prefer " -"the :c:func:`PyDict_GetItemWithError` function instead." +msgid "Exceptions that occur while this calls :meth:`~object.__hash__` and :meth:`~object.__eq__` methods are silently ignored. Prefer the :c:func:`PyDict_GetItemWithError` function instead." msgstr "" -#: ../../c-api/dict.rst:162 ../../c-api/dict.rst:181 -msgid "" -"In the :term:`free-threaded build`, the returned :term:`borrowed reference` " -"may become invalid if another thread modifies the dictionary concurrently. " -"Prefer :c:func:`PyDict_GetItemRef`, which returns a :term:`strong reference`." +msgid "In the :term:`free-threaded build`, the returned :term:`borrowed reference` may become invalid if another thread modifies the dictionary concurrently. Prefer :c:func:`PyDict_GetItemRef`, which returns a :term:`strong reference`." msgstr "" -#: ../../c-api/dict.rst:167 -msgid "" -"Calling this API without an :term:`attached thread state` had been allowed " -"for historical reason. It is no longer allowed." +msgid "Calling this API without an :term:`attached thread state` had been allowed for historical reason. It is no longer allowed." msgstr "" -#: ../../c-api/dict.rst:174 -msgid "" -"Variant of :c:func:`PyDict_GetItem` that does not suppress exceptions. " -"Return ``NULL`` **with** an exception set if an exception occurred. Return " -"``NULL`` **without** an exception set if the key wasn't present." +msgid "Variant of :c:func:`PyDict_GetItem` that does not suppress exceptions. Return ``NULL`` **with** an exception set if an exception occurred. Return ``NULL`` **without** an exception set if the key wasn't present." msgstr "" -#: ../../c-api/dict.rst:189 -msgid "" -"This is the same as :c:func:`PyDict_GetItem`, but *key* is specified as " -"a :c:expr:`const char*` UTF-8 encoded bytes string, rather than " -"a :c:expr:`PyObject*`." +msgid "This is the same as :c:func:`PyDict_GetItem`, but *key* is specified as a :c:expr:`const char*` UTF-8 encoded bytes string, rather than a :c:expr:`PyObject*`." msgstr "" -#: ../../c-api/dict.rst:195 -msgid "" -"Exceptions that occur while this calls :meth:`~object.__hash__` " -"and :meth:`~object.__eq__` methods or while creating the " -"temporary :class:`str` object are silently ignored. Prefer using " -"the :c:func:`PyDict_GetItemWithError` function with your " -"own :c:func:`PyUnicode_FromString` *key* instead." +msgid "Exceptions that occur while this calls :meth:`~object.__hash__` and :meth:`~object.__eq__` methods or while creating the temporary :class:`str` object are silently ignored. Prefer using the :c:func:`PyDict_GetItemWithError` function with your own :c:func:`PyUnicode_FromString` *key* instead." msgstr "" -#: ../../c-api/dict.rst:203 -msgid "" -"In the :term:`free-threaded build`, the returned :term:`borrowed reference` " -"may become invalid if another thread modifies the dictionary concurrently. " -"Prefer :c:func:`PyDict_GetItemStringRef`, which returns a :term:`strong " -"reference`." +msgid "In the :term:`free-threaded build`, the returned :term:`borrowed reference` may become invalid if another thread modifies the dictionary concurrently. Prefer :c:func:`PyDict_GetItemStringRef`, which returns a :term:`strong reference`." msgstr "" -#: ../../c-api/dict.rst:211 -msgid "" -"Similar to :c:func:`PyDict_GetItemRef`, but *key* is specified as " -"a :c:expr:`const char*` UTF-8 encoded bytes string, rather than " -"a :c:expr:`PyObject*`." +msgid "Similar to :c:func:`PyDict_GetItemRef`, but *key* is specified as a :c:expr:`const char*` UTF-8 encoded bytes string, rather than a :c:expr:`PyObject*`." msgstr "" -#: ../../c-api/dict.rst:220 -msgid "" -"This is the same as the Python-level :meth:`dict.setdefault`. If present, " -"it returns the value corresponding to *key* from the dictionary *p*. If the " -"key is not in the dict, it is inserted with value *defaultobj* and " -"*defaultobj* is returned. This function evaluates the hash function of " -"*key* only once, instead of evaluating it independently for the lookup and " -"the insertion." +msgid "This is the same as the Python-level :meth:`dict.setdefault`. If present, it returns the value corresponding to *key* from the dictionary *p*. If the key is not in the dict, it is inserted with value *defaultobj* and *defaultobj* is returned. This function evaluates the hash function of *key* only once, instead of evaluating it independently for the lookup and the insertion." msgstr "" -#: ../../c-api/dict.rst:230 -msgid "" -"In the :term:`free-threaded build`, the returned :term:`borrowed reference` " -"may become invalid if another thread modifies the dictionary concurrently. " -"Prefer :c:func:`PyDict_SetDefaultRef`, which returns a :term:`strong " -"reference`." +msgid "In the :term:`free-threaded build`, the returned :term:`borrowed reference` may become invalid if another thread modifies the dictionary concurrently. Prefer :c:func:`PyDict_SetDefaultRef`, which returns a :term:`strong reference`." msgstr "" -#: ../../c-api/dict.rst:239 -msgid "" -"Inserts *default_value* into the dictionary *p* with a key of *key* if the " -"key is not already present in the dictionary. If *result* is not ``NULL``, " -"then *\\*result* is set to a :term:`strong reference` to either " -"*default_value*, if the key was not present, or the existing value, if *key* " -"was already present in the dictionary. Returns ``1`` if the key was present " -"and *default_value* was not inserted, or ``0`` if the key was not present " -"and *default_value* was inserted. On failure, returns ``-1``, sets an " -"exception, and sets ``*result`` to ``NULL``." +msgid "Inserts *default_value* into the dictionary *p* with a key of *key* if the key is not already present in the dictionary. If *result* is not ``NULL``, then *\\*result* is set to a :term:`strong reference` to either *default_value*, if the key was not present, or the existing value, if *key* was already present in the dictionary. Returns ``1`` if the key was present and *default_value* was not inserted, or ``0`` if the key was not present and *default_value* was inserted. On failure, returns ``-1``, sets an exception, and sets ``*result`` to ``NULL``." msgstr "" -#: ../../c-api/dict.rst:249 -msgid "" -"For clarity: if you have a strong reference to *default_value* before " -"calling this function, then after it returns, you hold a strong reference to " -"both *default_value* and *\\*result* (if it's not ``NULL``). These may refer " -"to the same object: in that case you hold two separate references to it." +msgid "For clarity: if you have a strong reference to *default_value* before calling this function, then after it returns, you hold a strong reference to both *default_value* and *\\*result* (if it's not ``NULL``). These may refer to the same object: in that case you hold two separate references to it." msgstr "" -#: ../../c-api/dict.rst:265 -msgid "" -"Remove *key* from dictionary *p* and optionally return the removed value. Do " -"not raise :exc:`KeyError` if the key is missing." +msgid "Remove *key* from dictionary *p* and optionally return the removed value. Do not raise :exc:`KeyError` if the key is missing." msgstr "" -#: ../../c-api/dict.rst:268 -msgid "" -"If the key is present, set *\\*result* to a new reference to the removed " -"value if *result* is not ``NULL``, and return ``1``." +msgid "If the key is present, set *\\*result* to a new reference to the removed value if *result* is not ``NULL``, and return ``1``." msgstr "" -#: ../../c-api/dict.rst:270 -msgid "" -"If the key is missing, set *\\*result* to ``NULL`` if *result* is not " -"``NULL``, and return ``0``." +msgid "If the key is missing, set *\\*result* to ``NULL`` if *result* is not ``NULL``, and return ``0``." msgstr "" -#: ../../c-api/dict.rst:272 msgid "On error, raise an exception and return ``-1``." msgstr "" -#: ../../c-api/dict.rst:274 -msgid "" -"Similar to :meth:`dict.pop`, but without the default value and not " -"raising :exc:`KeyError` if the key is missing." +msgid "Similar to :meth:`dict.pop`, but without the default value and not raising :exc:`KeyError` if the key is missing." msgstr "" -#: ../../c-api/dict.rst:287 -msgid "" -"Similar to :c:func:`PyDict_Pop`, but *key* is specified as a :c:expr:`const " -"char*` UTF-8 encoded bytes string, rather than a :c:expr:`PyObject*`." +msgid "Similar to :c:func:`PyDict_Pop`, but *key* is specified as a :c:expr:`const char*` UTF-8 encoded bytes string, rather than a :c:expr:`PyObject*`." msgstr "" -#: ../../c-api/dict.rst:296 -msgid "" -"Return a :c:type:`PyListObject` containing all the items from the dictionary." +msgid "Return a :c:type:`PyListObject` containing all the items from the dictionary." msgstr "" -#: ../../c-api/dict.rst:301 -msgid "" -"Return a :c:type:`PyListObject` containing all the keys from the dictionary." +msgid "Return a :c:type:`PyListObject` containing all the keys from the dictionary." msgstr "" -#: ../../c-api/dict.rst:306 -msgid "" -"Return a :c:type:`PyListObject` containing all the values from the " -"dictionary *p*." +msgid "Return a :c:type:`PyListObject` containing all the values from the dictionary *p*." msgstr "" -#: ../../c-api/dict.rst:314 -msgid "" -"Return the number of items in the dictionary. This is equivalent to " -"``len(p)`` on a dictionary." +msgid "Return the number of items in the dictionary. This is equivalent to ``len(p)`` on a dictionary." msgstr "" -#: ../../c-api/dict.rst:320 msgid "Similar to :c:func:`PyDict_Size`, but without error checking." msgstr "" -#: ../../c-api/dict.rst:325 -msgid "" -"Iterate over all key-value pairs in the dictionary *p*. " -"The :c:type:`Py_ssize_t` referred to by *ppos* must be initialized to ``0`` " -"prior to the first call to this function to start the iteration; the " -"function returns true for each pair in the dictionary, and false once all " -"pairs have been reported. The parameters *pkey* and *pvalue* should either " -"point to :c:expr:`PyObject*` variables that will be filled in with each key " -"and value, respectively, or may be ``NULL``. Any references returned " -"through them are borrowed. *ppos* should not be altered during iteration. " -"Its value represents offsets within the internal dictionary structure, and " -"since the structure is sparse, the offsets are not consecutive." -msgstr "" - -#: ../../c-api/dict.rst:336 +msgid "Iterate over all key-value pairs in the dictionary *p*. The :c:type:`Py_ssize_t` referred to by *ppos* must be initialized to ``0`` prior to the first call to this function to start the iteration; the function returns true for each pair in the dictionary, and false once all pairs have been reported. The parameters *pkey* and *pvalue* should either point to :c:expr:`PyObject*` variables that will be filled in with each key and value, respectively, or may be ``NULL``. Any references returned through them are borrowed. *ppos* should not be altered during iteration. Its value represents offsets within the internal dictionary structure, and since the structure is sparse, the offsets are not consecutive." +msgstr "" + msgid "For example::" msgstr "" -#: ../../c-api/dict.rst:338 msgid "" "PyObject *key, *value;\n" "Py_ssize_t pos = 0;\n" @@ -352,14 +178,9 @@ msgid "" "}" msgstr "" -#: ../../c-api/dict.rst:346 -msgid "" -"The dictionary *p* should not be mutated during iteration. It is safe to " -"modify the values of the keys as you iterate over the dictionary, but only " -"so long as the set of keys does not change. For example::" +msgid "The dictionary *p* should not be mutated during iteration. It is safe to modify the values of the keys as you iterate over the dictionary, but only so long as the set of keys does not change. For example::" msgstr "" -#: ../../c-api/dict.rst:350 msgid "" "PyObject *key, *value;\n" "Py_ssize_t pos = 0;\n" @@ -380,15 +201,9 @@ msgid "" "}" msgstr "" -#: ../../c-api/dict.rst:368 -msgid "" -"The function is not thread-safe in the :term:`free-threaded ` build without external synchronization. You can " -"use :c:macro:`Py_BEGIN_CRITICAL_SECTION` to lock the dictionary while " -"iterating over it::" +msgid "The function is not thread-safe in the :term:`free-threaded ` build without external synchronization. You can use :c:macro:`Py_BEGIN_CRITICAL_SECTION` to lock the dictionary while iterating over it::" msgstr "" -#: ../../c-api/dict.rst:373 msgid "" "Py_BEGIN_CRITICAL_SECTION(self->dict);\n" "while (PyDict_Next(self->dict, &pos, &key, &value)) {\n" @@ -397,54 +212,21 @@ msgid "" "Py_END_CRITICAL_SECTION();" msgstr "" -#: ../../c-api/dict.rst:381 -msgid "" -"On the free-threaded build, this function can be used safely inside a " -"critical section. However, the references returned for *pkey* and *pvalue* " -"are :term:`borrowed ` and are only valid while the " -"critical section is held. If you need to use these objects outside the " -"critical section or when the critical section can be suspended, create " -"a :term:`strong reference ` (for example, " -"using :c:func:`Py_NewRef`)." +msgid "On the free-threaded build, this function can be used safely inside a critical section. However, the references returned for *pkey* and *pvalue* are :term:`borrowed ` and are only valid while the critical section is held. If you need to use these objects outside the critical section or when the critical section can be suspended, create a :term:`strong reference ` (for example, using :c:func:`Py_NewRef`)." msgstr "" -#: ../../c-api/dict.rst:391 -msgid "" -"Iterate over mapping object *b* adding key-value pairs to dictionary *a*. " -"*b* may be a dictionary, or any object supporting :c:func:`PyMapping_Keys` " -"and :c:func:`PyObject_GetItem`. If *override* is true, existing pairs in *a* " -"will be replaced if a matching key is found in *b*, otherwise pairs will " -"only be added if there is not a matching key in *a*. Return ``0`` on success " -"or ``-1`` if an exception was raised." +msgid "Iterate over mapping object *b* adding key-value pairs to dictionary *a*. *b* may be a dictionary, or any object supporting :c:func:`PyMapping_Keys` and :c:func:`PyObject_GetItem`. If *override* is true, existing pairs in *a* will be replaced if a matching key is found in *b*, otherwise pairs will only be added if there is not a matching key in *a*. Return ``0`` on success or ``-1`` if an exception was raised." msgstr "" -#: ../../c-api/dict.rst:400 ../../c-api/dict.rst:416 -msgid "" -"In the :term:`free-threaded build`, when *b* is a :class:`dict` (with the " -"standard iterator), both *a* and *b* are locked for the duration of the " -"operation. When *b* is a non-dict mapping, only *a* is locked; *b* may be " -"concurrently modified by another thread." +msgid "In the :term:`free-threaded build`, when *b* is a :class:`dict` (with the standard iterator), both *a* and *b* are locked for the duration of the operation. When *b* is a non-dict mapping, only *a* is locked; *b* may be concurrently modified by another thread." msgstr "" -#: ../../c-api/dict.rst:408 -msgid "" -"This is the same as ``PyDict_Merge(a, b, 1)`` in C, and is similar to " -"``a.update(b)`` in Python except that :c:func:`PyDict_Update` doesn't fall " -"back to the iterating over a sequence of key value pairs if the second " -"argument has no \"keys\" attribute. Return ``0`` on success or ``-1`` if an " -"exception was raised." +msgid "This is the same as ``PyDict_Merge(a, b, 1)`` in C, and is similar to ``a.update(b)`` in Python except that :c:func:`PyDict_Update` doesn't fall back to the iterating over a sequence of key value pairs if the second argument has no \"keys\" attribute. Return ``0`` on success or ``-1`` if an exception was raised." msgstr "" -#: ../../c-api/dict.rst:424 -msgid "" -"Update or merge into dictionary *a*, from the key-value pairs in *seq2*. " -"*seq2* must be an iterable object producing iterable objects of length 2, " -"viewed as key-value pairs. In case of duplicate keys, the last wins if " -"*override* is true, else the first wins. Return ``0`` on success or ``-1`` " -"if an exception was raised. Equivalent Python (except for the return value)::" +msgid "Update or merge into dictionary *a*, from the key-value pairs in *seq2*. *seq2* must be an iterable object producing iterable objects of length 2, viewed as key-value pairs. In case of duplicate keys, the last wins if *override* is true, else the first wins. Return ``0`` on success or ``-1`` if an exception was raised. Equivalent Python (except for the return value)::" msgstr "" -#: ../../c-api/dict.rst:431 msgid "" "def PyDict_MergeFromSeq2(a, seq2, override):\n" " for key, value in seq2:\n" @@ -452,284 +234,152 @@ msgid "" " a[key] = value" msgstr "" -#: ../../c-api/dict.rst:438 -msgid "" -"In the :term:`free-threaded ` build, only *a* is locked. The " -"iteration over *seq2* is not synchronized; *seq2* may be concurrently " -"modified by another thread." +msgid "In the :term:`free-threaded ` build, only *a* is locked. The iteration over *seq2* is not synchronized; *seq2* may be concurrently modified by another thread." msgstr "" -#: ../../c-api/dict.rst:445 -msgid "" -"Register *callback* as a dictionary watcher. Return a non-negative integer " -"id which must be passed to future calls to :c:func:`PyDict_Watch`. In case " -"of error (e.g. no more watcher IDs available), return ``-1`` and set an " -"exception." +msgid "Register *callback* as a dictionary watcher. Return a non-negative integer id which must be passed to future calls to :c:func:`PyDict_Watch`. In case of error (e.g. no more watcher IDs available), return ``-1`` and set an exception." msgstr "" -#: ../../c-api/dict.rst:452 ../../c-api/dict.rst:467 -msgid "" -"This function is not internally synchronized. In the :term:`free-threaded " -"` build, callers should ensure no concurrent calls " -"to :c:func:`PyDict_AddWatcher` or :c:func:`PyDict_ClearWatcher` are in " -"progress." +msgid "This function is not internally synchronized. In the :term:`free-threaded ` build, callers should ensure no concurrent calls to :c:func:`PyDict_AddWatcher` or :c:func:`PyDict_ClearWatcher` are in progress." msgstr "" -#: ../../c-api/dict.rst:461 -msgid "" -"Clear watcher identified by *watcher_id* previously returned " -"from :c:func:`PyDict_AddWatcher`. Return ``0`` on success, ``-1`` on error " -"(e.g. if the given *watcher_id* was never registered.)" +msgid "Clear watcher identified by *watcher_id* previously returned from :c:func:`PyDict_AddWatcher`. Return ``0`` on success, ``-1`` on error (e.g. if the given *watcher_id* was never registered.)" msgstr "" -#: ../../c-api/dict.rst:476 -msgid "" -"Mark dictionary *dict* as watched. The callback granted *watcher_id* " -"by :c:func:`PyDict_AddWatcher` will be called when *dict* is modified or " -"deallocated. Return ``0`` on success or ``-1`` on error." +msgid "Mark dictionary *dict* as watched. The callback granted *watcher_id* by :c:func:`PyDict_AddWatcher` will be called when *dict* is modified or deallocated. Return ``0`` on success or ``-1`` on error." msgstr "" -#: ../../c-api/dict.rst:484 -msgid "" -"Mark dictionary *dict* as no longer watched. The callback granted " -"*watcher_id* by :c:func:`PyDict_AddWatcher` will no longer be called when " -"*dict* is modified or deallocated. The dict must previously have been " -"watched by this watcher. Return ``0`` on success or ``-1`` on error." +msgid "Mark dictionary *dict* as no longer watched. The callback granted *watcher_id* by :c:func:`PyDict_AddWatcher` will no longer be called when *dict* is modified or deallocated. The dict must previously have been watched by this watcher. Return ``0`` on success or ``-1`` on error." msgstr "" -#: ../../c-api/dict.rst:493 -msgid "" -"Enumeration of possible dictionary watcher events: ``PyDict_EVENT_ADDED``, " -"``PyDict_EVENT_MODIFIED``, ``PyDict_EVENT_DELETED``, " -"``PyDict_EVENT_CLONED``, ``PyDict_EVENT_CLEARED``, or " -"``PyDict_EVENT_DEALLOCATED``." +msgid "Enumeration of possible dictionary watcher events: ``PyDict_EVENT_ADDED``, ``PyDict_EVENT_MODIFIED``, ``PyDict_EVENT_DELETED``, ``PyDict_EVENT_CLONED``, ``PyDict_EVENT_CLEARED``, or ``PyDict_EVENT_DEALLOCATED``." msgstr "" -#: ../../c-api/dict.rst:501 msgid "Type of a dict watcher callback function." msgstr "" -#: ../../c-api/dict.rst:503 -msgid "" -"If *event* is ``PyDict_EVENT_CLEARED`` or ``PyDict_EVENT_DEALLOCATED``, both " -"*key* and *new_value* will be ``NULL``. If *event* is ``PyDict_EVENT_ADDED`` " -"or ``PyDict_EVENT_MODIFIED``, *new_value* will be the new value for *key*. " -"If *event* is ``PyDict_EVENT_DELETED``, *key* is being deleted from the " -"dictionary and *new_value* will be ``NULL``." +msgid "If *event* is ``PyDict_EVENT_CLEARED`` or ``PyDict_EVENT_DEALLOCATED``, both *key* and *new_value* will be ``NULL``. If *event* is ``PyDict_EVENT_ADDED`` or ``PyDict_EVENT_MODIFIED``, *new_value* will be the new value for *key*. If *event* is ``PyDict_EVENT_DELETED``, *key* is being deleted from the dictionary and *new_value* will be ``NULL``." msgstr "" -#: ../../c-api/dict.rst:509 -msgid "" -"``PyDict_EVENT_CLONED`` occurs when *dict* was previously empty and another " -"dict is merged into it. To maintain efficiency of this operation, per-key " -"``PyDict_EVENT_ADDED`` events are not issued in this case; instead a single " -"``PyDict_EVENT_CLONED`` is issued, and *key* will be the source dictionary." +msgid "``PyDict_EVENT_CLONED`` occurs when *dict* was previously empty and another dict is merged into it. To maintain efficiency of this operation, per-key ``PyDict_EVENT_ADDED`` events are not issued in this case; instead a single ``PyDict_EVENT_CLONED`` is issued, and *key* will be the source dictionary." msgstr "" -#: ../../c-api/dict.rst:515 -msgid "" -"The callback may inspect but must not modify *dict*; doing so could have " -"unpredictable effects, including infinite recursion. Do not trigger Python " -"code execution in the callback, as it could modify the dict as a side effect." +msgid "The callback may inspect but must not modify *dict*; doing so could have unpredictable effects, including infinite recursion. Do not trigger Python code execution in the callback, as it could modify the dict as a side effect." msgstr "" -#: ../../c-api/dict.rst:519 -msgid "" -"If *event* is ``PyDict_EVENT_DEALLOCATED``, taking a new reference in the " -"callback to the about-to-be-destroyed dictionary will resurrect it and " -"prevent it from being freed at this time. When the resurrected object is " -"destroyed later, any watcher callbacks active at that time will be called " -"again." +msgid "If *event* is ``PyDict_EVENT_DEALLOCATED``, taking a new reference in the callback to the about-to-be-destroyed dictionary will resurrect it and prevent it from being freed at this time. When the resurrected object is destroyed later, any watcher callbacks active at that time will be called again." msgstr "" -#: ../../c-api/dict.rst:525 -msgid "" -"Callbacks occur before the notified modification to *dict* takes place, so " -"the prior state of *dict* can be inspected." +msgid "Callbacks occur before the notified modification to *dict* takes place, so the prior state of *dict* can be inspected." msgstr "" -#: ../../c-api/dict.rst:528 -msgid "" -"If the callback sets an exception, it must return ``-1``; this exception " -"will be printed as an unraisable exception " -"using :c:func:`PyErr_WriteUnraisable`. Otherwise it should return ``0``." +msgid "If the callback sets an exception, it must return ``-1``; this exception will be printed as an unraisable exception using :c:func:`PyErr_WriteUnraisable`. Otherwise it should return ``0``." msgstr "" -#: ../../c-api/dict.rst:532 -msgid "" -"There may already be a pending exception set on entry to the callback. In " -"this case, the callback should return ``0`` with the same exception still " -"set. This means the callback may not call any other API that can set an " -"exception unless it saves and clears the exception state first, and restores " -"it before returning." +msgid "There may already be a pending exception set on entry to the callback. In this case, the callback should return ``0`` with the same exception still set. This means the callback may not call any other API that can set an exception unless it saves and clears the exception state first, and restores it before returning." msgstr "" -#: ../../c-api/dict.rst:542 msgid "Dictionary View Objects" msgstr "اشیاء نمای دیکشنری" -#: ../../c-api/dict.rst:546 -msgid "" -"Return true if *op* is a view of a set inside a dictionary. This is " -"currently equivalent to :c:expr:`PyDictKeys_Check(op) || " -"PyDictItems_Check(op)`. This function always succeeds." +msgid "Return true if *op* is a view of a set inside a dictionary. This is currently equivalent to :c:expr:`PyDictKeys_Check(op) || PyDictItems_Check(op)`. This function always succeeds." msgstr "" -#: ../../c-api/dict.rst:553 -msgid "" -"Type object for a view of dictionary keys. In Python, this is the type of " -"the object returned by :meth:`dict.keys`." +msgid "Type object for a view of dictionary keys. In Python, this is the type of the object returned by :meth:`dict.keys`." msgstr "" -#: ../../c-api/dict.rst:559 -msgid "" -"Return true if *op* is an instance of a dictionary keys view. This function " -"always succeeds." +msgid "Return true if *op* is an instance of a dictionary keys view. This function always succeeds." msgstr "" -#: ../../c-api/dict.rst:565 -msgid "" -"Type object for a view of dictionary values. In Python, this is the type of " -"the object returned by :meth:`dict.values`." +msgid "Type object for a view of dictionary values. In Python, this is the type of the object returned by :meth:`dict.values`." msgstr "" -#: ../../c-api/dict.rst:571 -msgid "" -"Return true if *op* is an instance of a dictionary values view. This " -"function always succeeds." +msgid "Return true if *op* is an instance of a dictionary values view. This function always succeeds." msgstr "" -#: ../../c-api/dict.rst:577 -msgid "" -"Type object for a view of dictionary items. In Python, this is the type of " -"the object returned by :meth:`dict.items`." +msgid "Type object for a view of dictionary items. In Python, this is the type of the object returned by :meth:`dict.items`." msgstr "" -#: ../../c-api/dict.rst:583 -msgid "" -"Return true if *op* is an instance of a dictionary items view. This function " -"always succeeds." +msgid "Return true if *op* is an instance of a dictionary items view. This function always succeeds." msgstr "" -#: ../../c-api/dict.rst:588 msgid "Ordered Dictionaries" msgstr "" -#: ../../c-api/dict.rst:590 -msgid "" -"Python's C API provides interface for :class:`collections.OrderedDict` from " -"C. Since Python 3.7, dictionaries are ordered by default, so there is " -"usually little need for these functions; prefer ``PyDict*`` where possible." +msgid "Python's C API provides interface for :class:`collections.OrderedDict` from C. Since Python 3.7, dictionaries are ordered by default, so there is usually little need for these functions; prefer ``PyDict*`` where possible." msgstr "" -#: ../../c-api/dict.rst:597 -msgid "" -"Type object for ordered dictionaries. This is the same object " -"as :class:`collections.OrderedDict` in the Python layer." +msgid "Type object for ordered dictionaries. This is the same object as :class:`collections.OrderedDict` in the Python layer." msgstr "" -#: ../../c-api/dict.rst:603 -msgid "" -"Return true if *od* is an ordered dictionary object or an instance of a " -"subtype of the :class:`~collections.OrderedDict` type. This function always " -"succeeds." +msgid "Return true if *od* is an ordered dictionary object or an instance of a subtype of the :class:`~collections.OrderedDict` type. This function always succeeds." msgstr "" -#: ../../c-api/dict.rst:610 -msgid "" -"Return true if *od* is an ordered dictionary object, but not an instance of " -"a subtype of the :class:`~collections.OrderedDict` type. This function " -"always succeeds." +msgid "Return true if *od* is an ordered dictionary object, but not an instance of a subtype of the :class:`~collections.OrderedDict` type. This function always succeeds." msgstr "" -#: ../../c-api/dict.rst:617 msgid "Analogous to :c:type:`PyDictKeys_Type` for ordered dictionaries." msgstr "" -#: ../../c-api/dict.rst:622 msgid "Analogous to :c:type:`PyDictValues_Type` for ordered dictionaries." msgstr "" -#: ../../c-api/dict.rst:627 msgid "Analogous to :c:type:`PyDictItems_Type` for ordered dictionaries." msgstr "" -#: ../../c-api/dict.rst:632 msgid "Return a new empty ordered dictionary, or ``NULL`` on failure." msgstr "" -#: ../../c-api/dict.rst:634 msgid "This is analogous to :c:func:`PyDict_New`." msgstr "" -#: ../../c-api/dict.rst:639 -msgid "" -"Insert *value* into the ordered dictionary *od* with a key of *key*. Return " -"``0`` on success or ``-1`` with an exception set on failure." +msgid "Insert *value* into the ordered dictionary *od* with a key of *key*. Return ``0`` on success or ``-1`` with an exception set on failure." msgstr "" -#: ../../c-api/dict.rst:642 msgid "This is analogous to :c:func:`PyDict_SetItem`." msgstr "" -#: ../../c-api/dict.rst:647 -msgid "" -"Remove the entry in the ordered dictionary *od* with key *key*. Return ``0`` " -"on success or ``-1`` with an exception set on failure." +msgid "Remove the entry in the ordered dictionary *od* with key *key*. Return ``0`` on success or ``-1`` with an exception set on failure." msgstr "" -#: ../../c-api/dict.rst:650 msgid "This is analogous to :c:func:`PyDict_DelItem`." msgstr "" -#: ../../c-api/dict.rst:653 msgid "These are :term:`soft deprecated` aliases to ``PyDict`` APIs:" msgstr "" -#: ../../c-api/dict.rst:660 msgid "``PyODict``" msgstr "" -#: ../../c-api/dict.rst:661 msgid "``PyDict``" msgstr "" -#: ../../c-api/dict.rst:663 msgid ":c:func:`PyDict_GetItem`" msgstr "" -#: ../../c-api/dict.rst:665 msgid ":c:func:`PyDict_GetItemWithError`" msgstr "" -#: ../../c-api/dict.rst:667 msgid ":c:func:`PyDict_GetItemString`" msgstr "" -#: ../../c-api/dict.rst:669 msgid ":c:func:`PyDict_Contains`" msgstr "" -#: ../../c-api/dict.rst:671 msgid ":c:func:`PyDict_Size`" msgstr "" -#: ../../c-api/dict.rst:673 msgid ":c:func:`PyDict_GET_SIZE`" msgstr "" -#: ../../c-api/dict.rst:8 msgid "object" msgstr "" -#: ../../c-api/dict.rst:8 msgid "dictionary" msgstr "" -#: ../../c-api/dict.rst:312 msgid "built-in function" msgstr "" -#: ../../c-api/dict.rst:312 msgid "len" msgstr "" diff --git a/c-api/exceptions.po b/c-api/exceptions.po index 561b8cf6..638e7b6d 100644 --- a/c-api/exceptions.po +++ b/c-api/exceptions.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:48+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,523 +24,225 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../c-api/exceptions.rst:8 msgid "Exception Handling" msgstr "" -#: ../../c-api/exceptions.rst:10 -msgid "" -"The functions described in this chapter will let you handle and raise Python " -"exceptions. It is important to understand some of the basics of Python " -"exception handling. It works somewhat like the POSIX :c:data:`errno` " -"variable: there is a global indicator (per thread) of the last error that " -"occurred. Most C API functions don't clear this on success, but will set it " -"to indicate the cause of the error on failure. Most C API functions also " -"return an error indicator, usually ``NULL`` if they are supposed to return a " -"pointer, or ``-1`` if they return an integer (exception: the ``PyArg_*`` " -"functions return ``1`` for success and ``0`` for failure)." -msgstr "" - -#: ../../c-api/exceptions.rst:20 -msgid "" -"Concretely, the error indicator consists of three object pointers: the " -"exception's type, the exception's value, and the traceback object. Any of " -"those pointers can be ``NULL`` if non-set (although some combinations are " -"forbidden, for example you can't have a non-``NULL`` traceback if the " -"exception type is ``NULL``)." +msgid "The functions described in this chapter will let you handle and raise Python exceptions. It is important to understand some of the basics of Python exception handling. It works somewhat like the POSIX :c:data:`errno` variable: there is a global indicator (per thread) of the last error that occurred. Most C API functions don't clear this on success, but will set it to indicate the cause of the error on failure. Most C API functions also return an error indicator, usually ``NULL`` if they are supposed to return a pointer, or ``-1`` if they return an integer (exception: the ``PyArg_*`` functions return ``1`` for success and ``0`` for failure)." msgstr "" -#: ../../c-api/exceptions.rst:26 -msgid "" -"When a function must fail because some function it called failed, it " -"generally doesn't set the error indicator; the function it called already " -"set it. It is responsible for either handling the error and clearing the " -"exception or returning after cleaning up any resources it holds (such as " -"object references or memory allocations); it should *not* continue normally " -"if it is not prepared to handle the error. If returning due to an error, it " -"is important to indicate to the caller that an error has been set. If the " -"error is not handled or carefully propagated, additional calls into the " -"Python/C API may not behave as intended and may fail in mysterious ways." -msgstr "" - -#: ../../c-api/exceptions.rst:37 -msgid "" -"The error indicator is **not** the result of :func:`sys.exc_info`. The " -"former corresponds to an exception that is not yet caught (and is therefore " -"still propagating), while the latter returns an exception after it is caught " -"(and has therefore stopped propagating)." +msgid "Concretely, the error indicator consists of three object pointers: the exception's type, the exception's value, and the traceback object. Any of those pointers can be ``NULL`` if non-set (although some combinations are forbidden, for example you can't have a non-``NULL`` traceback if the exception type is ``NULL``)." +msgstr "" + +msgid "When a function must fail because some function it called failed, it generally doesn't set the error indicator; the function it called already set it. It is responsible for either handling the error and clearing the exception or returning after cleaning up any resources it holds (such as object references or memory allocations); it should *not* continue normally if it is not prepared to handle the error. If returning due to an error, it is important to indicate to the caller that an error has been set. If the error is not handled or carefully propagated, additional calls into the Python/C API may not behave as intended and may fail in mysterious ways." +msgstr "" + +msgid "The error indicator is **not** the result of :func:`sys.exc_info`. The former corresponds to an exception that is not yet caught (and is therefore still propagating), while the latter returns an exception after it is caught (and has therefore stopped propagating)." msgstr "" -#: ../../c-api/exceptions.rst:44 msgid "Printing and clearing" msgstr "" -#: ../../c-api/exceptions.rst:49 -msgid "" -"Clear the error indicator. If the error indicator is not set, there is no " -"effect." +msgid "Clear the error indicator. If the error indicator is not set, there is no effect." msgstr "" -#: ../../c-api/exceptions.rst:55 -msgid "" -"Print a standard traceback to ``sys.stderr`` and clear the error indicator. " -"**Unless** the error is a ``SystemExit``, in that case no traceback is " -"printed and the Python process will exit with the error code specified by " -"the ``SystemExit`` instance." +msgid "Print a standard traceback to ``sys.stderr`` and clear the error indicator. **Unless** the error is a ``SystemExit``, in that case no traceback is printed and the Python process will exit with the error code specified by the ``SystemExit`` instance." msgstr "" -#: ../../c-api/exceptions.rst:60 -msgid "" -"Call this function **only** when the error indicator is set. Otherwise it " -"will cause a fatal error!" +msgid "Call this function **only** when the error indicator is set. Otherwise it will cause a fatal error!" msgstr "" -#: ../../c-api/exceptions.rst:63 -msgid "" -"If *set_sys_last_vars* is nonzero, the variable :data:`sys.last_exc` is set " -"to the printed exception. For backwards compatibility, the deprecated " -"variables :data:`sys.last_type`, :data:`sys.last_value` " -"and :data:`sys.last_traceback` are also set to the type, value and traceback " -"of this exception, respectively." +msgid "If *set_sys_last_vars* is nonzero, the variable :data:`sys.last_exc` is set to the printed exception. For backwards compatibility, the deprecated variables :data:`sys.last_type`, :data:`sys.last_value` and :data:`sys.last_traceback` are also set to the type, value and traceback of this exception, respectively." msgstr "" -#: ../../c-api/exceptions.rst:69 msgid "The setting of :data:`sys.last_exc` was added." msgstr "" -#: ../../c-api/exceptions.rst:75 msgid "Alias for ``PyErr_PrintEx(1)``." msgstr "" -#: ../../c-api/exceptions.rst:80 -msgid "" -"Call :func:`sys.unraisablehook` using the current exception and *obj* " -"argument." +msgid "Call :func:`sys.unraisablehook` using the current exception and *obj* argument." msgstr "" -#: ../../c-api/exceptions.rst:83 -msgid "" -"This utility function prints a warning message to ``sys.stderr`` when an " -"exception has been set but it is impossible for the interpreter to actually " -"raise the exception. It is used, for example, when an exception occurs in " -"an :meth:`~object.__del__` method." +msgid "This utility function prints a warning message to ``sys.stderr`` when an exception has been set but it is impossible for the interpreter to actually raise the exception. It is used, for example, when an exception occurs in an :meth:`~object.__del__` method." msgstr "" -#: ../../c-api/exceptions.rst:88 -msgid "" -"The function is called with a single argument *obj* that identifies the " -"context in which the unraisable exception occurred. If possible, the repr of " -"*obj* will be printed in the warning message. If *obj* is ``NULL``, only the " -"traceback is printed." +msgid "The function is called with a single argument *obj* that identifies the context in which the unraisable exception occurred. If possible, the repr of *obj* will be printed in the warning message. If *obj* is ``NULL``, only the traceback is printed." msgstr "" -#: ../../c-api/exceptions.rst:93 msgid "An exception must be set when calling this function." msgstr "" -#: ../../c-api/exceptions.rst:95 msgid "Print a traceback. Print only traceback if *obj* is ``NULL``." msgstr "" -#: ../../c-api/exceptions.rst:98 msgid "Use :func:`sys.unraisablehook`." msgstr "" -#: ../../c-api/exceptions.rst:104 -msgid "" -"Similar to :c:func:`PyErr_WriteUnraisable`, but the *format* and subsequent " -"parameters help format the warning message; they have the same meaning and " -"values as in :c:func:`PyUnicode_FromFormat`. ``PyErr_WriteUnraisable(obj)`` " -"is roughly equivalent to ``PyErr_FormatUnraisable(\"Exception ignored in: " -"%R\", obj)``. If *format* is ``NULL``, only the traceback is printed." +msgid "Similar to :c:func:`PyErr_WriteUnraisable`, but the *format* and subsequent parameters help format the warning message; they have the same meaning and values as in :c:func:`PyUnicode_FromFormat`. ``PyErr_WriteUnraisable(obj)`` is roughly equivalent to ``PyErr_FormatUnraisable(\"Exception ignored in: %R\", obj)``. If *format* is ``NULL``, only the traceback is printed." msgstr "" -#: ../../c-api/exceptions.rst:116 -msgid "" -"Print the standard traceback display of ``exc`` to ``sys.stderr``, including " -"chained exceptions and notes." +msgid "Print the standard traceback display of ``exc`` to ``sys.stderr``, including chained exceptions and notes." msgstr "" -#: ../../c-api/exceptions.rst:124 msgid "Legacy variant of :c:func:`PyErr_DisplayException`." msgstr "" -#: ../../c-api/exceptions.rst:126 -msgid "" -"Print the exception *value* with its traceback to :data:`sys.stderr`. If " -"*value* has no traceback set, *tb* is used as its traceback. The first " -"argument is ignored." +msgid "Print the exception *value* with its traceback to :data:`sys.stderr`. If *value* has no traceback set, *tb* is used as its traceback. The first argument is ignored." msgstr "" -#: ../../c-api/exceptions.rst:130 -msgid "" -"If :data:`sys.stderr` is ``None``, nothing is printed. If :data:`sys.stderr` " -"is not set, the exception is dumped to the C ``stderr`` stream instead." +msgid "If :data:`sys.stderr` is ``None``, nothing is printed. If :data:`sys.stderr` is not set, the exception is dumped to the C ``stderr`` stream instead." msgstr "" -#: ../../c-api/exceptions.rst:134 msgid "Use :c:func:`PyErr_DisplayException` instead." msgstr "" -#: ../../c-api/exceptions.rst:138 msgid "Raising exceptions" msgstr "" -#: ../../c-api/exceptions.rst:140 -msgid "" -"These functions help you set the current thread's error indicator. For " -"convenience, some of these functions will always return a ``NULL`` pointer " -"for use in a ``return`` statement." +msgid "These functions help you set the current thread's error indicator. For convenience, some of these functions will always return a ``NULL`` pointer for use in a ``return`` statement." msgstr "" -#: ../../c-api/exceptions.rst:147 -msgid "" -"This is the most common way to set the error indicator. The first argument " -"specifies the exception type; it is normally one of the standard exceptions, " -"e.g. :c:data:`PyExc_RuntimeError`. You need not create a new :term:`strong " -"reference` to it (e.g. with :c:func:`Py_INCREF`). The second argument is an " -"error message; it is decoded from ``'utf-8'``." +msgid "This is the most common way to set the error indicator. The first argument specifies the exception type; it is normally one of the standard exceptions, e.g. :c:data:`PyExc_RuntimeError`. You need not create a new :term:`strong reference` to it (e.g. with :c:func:`Py_INCREF`). The second argument is an error message; it is decoded from ``'utf-8'``." msgstr "" -#: ../../c-api/exceptions.rst:156 -msgid "" -"This function is similar to :c:func:`PyErr_SetString` but lets you specify " -"an arbitrary Python object for the \"value\" of the exception." +msgid "This function is similar to :c:func:`PyErr_SetString` but lets you specify an arbitrary Python object for the \"value\" of the exception." msgstr "" -#: ../../c-api/exceptions.rst:162 -msgid "" -"This function sets the error indicator and returns ``NULL``. *exception* " -"should be a Python exception class. The *format* and subsequent parameters " -"help format the error message; they have the same meaning and values as " -"in :c:func:`PyUnicode_FromFormat`. *format* is an ASCII-encoded string." +msgid "This function sets the error indicator and returns ``NULL``. *exception* should be a Python exception class. The *format* and subsequent parameters help format the error message; they have the same meaning and values as in :c:func:`PyUnicode_FromFormat`. *format* is an ASCII-encoded string." msgstr "" -#: ../../c-api/exceptions.rst:171 -msgid "" -"Same as :c:func:`PyErr_Format`, but taking a :c:type:`va_list` argument " -"rather than a variable number of arguments." +msgid "Same as :c:func:`PyErr_Format`, but taking a :c:type:`va_list` argument rather than a variable number of arguments." msgstr "" -#: ../../c-api/exceptions.rst:179 msgid "This is a shorthand for ``PyErr_SetObject(type, Py_None)``." msgstr "" -#: ../../c-api/exceptions.rst:184 -msgid "" -"This is a shorthand for ``PyErr_SetString(PyExc_TypeError, message)``, where " -"*message* indicates that a built-in operation was invoked with an illegal " -"argument. It is mostly for internal use." +msgid "This is a shorthand for ``PyErr_SetString(PyExc_TypeError, message)``, where *message* indicates that a built-in operation was invoked with an illegal argument. It is mostly for internal use." msgstr "" -#: ../../c-api/exceptions.rst:191 -msgid "" -"This is a shorthand for ``PyErr_SetNone(PyExc_MemoryError)``; it returns " -"``NULL`` so an object allocation function can write ``return " -"PyErr_NoMemory();`` when it runs out of memory." +msgid "This is a shorthand for ``PyErr_SetNone(PyExc_MemoryError)``; it returns ``NULL`` so an object allocation function can write ``return PyErr_NoMemory();`` when it runs out of memory." msgstr "" -#: ../../c-api/exceptions.rst:200 -msgid "" -"This is a convenience function to raise an exception when a C library " -"function has returned an error and set the C variable :c:data:`errno`. It " -"constructs a tuple object whose first item is the integer :c:data:`errno` " -"value and whose second item is the corresponding error message (gotten " -"from :c:func:`!strerror`), and then calls ``PyErr_SetObject(type, " -"object)``. On Unix, when the :c:data:`errno` value is :c:macro:`!EINTR`, " -"indicating an interrupted system call, this " -"calls :c:func:`PyErr_CheckSignals`, and if that set the error indicator, " -"leaves it set to that. The function always returns ``NULL``, so a wrapper " -"function around a system call can write ``return PyErr_SetFromErrno(type);`` " -"when the system call returns an error." -msgstr "" - -#: ../../c-api/exceptions.rst:214 -msgid "" -"Similar to :c:func:`PyErr_SetFromErrno`, with the additional behavior that " -"if *filenameObject* is not ``NULL``, it is passed to the constructor of " -"*type* as a third parameter. In the case of :exc:`OSError` exception, this " -"is used to define the :attr:`!filename` attribute of the exception instance." +msgid "This is a convenience function to raise an exception when a C library function has returned an error and set the C variable :c:data:`errno`. It constructs a tuple object whose first item is the integer :c:data:`errno` value and whose second item is the corresponding error message (gotten from :c:func:`!strerror`), and then calls ``PyErr_SetObject(type, object)``. On Unix, when the :c:data:`errno` value is :c:macro:`!EINTR`, indicating an interrupted system call, this calls :c:func:`PyErr_CheckSignals`, and if that set the error indicator, leaves it set to that. The function always returns ``NULL``, so a wrapper function around a system call can write ``return PyErr_SetFromErrno(type);`` when the system call returns an error." msgstr "" -#: ../../c-api/exceptions.rst:223 -msgid "" -"Similar to :c:func:`PyErr_SetFromErrnoWithFilenameObject`, but takes a " -"second filename object, for raising errors when a function that takes two " -"filenames fails." +msgid "Similar to :c:func:`PyErr_SetFromErrno`, with the additional behavior that if *filenameObject* is not ``NULL``, it is passed to the constructor of *type* as a third parameter. In the case of :exc:`OSError` exception, this is used to define the :attr:`!filename` attribute of the exception instance." msgstr "" -#: ../../c-api/exceptions.rst:232 -msgid "" -"Similar to :c:func:`PyErr_SetFromErrnoWithFilenameObject`, but the filename " -"is given as a C string. *filename* is decoded from the :term:`filesystem " -"encoding and error handler`." +msgid "Similar to :c:func:`PyErr_SetFromErrnoWithFilenameObject`, but takes a second filename object, for raising errors when a function that takes two filenames fails." +msgstr "" + +msgid "Similar to :c:func:`PyErr_SetFromErrnoWithFilenameObject`, but the filename is given as a C string. *filename* is decoded from the :term:`filesystem encoding and error handler`." +msgstr "" + +msgid "This is a convenience function to raise :exc:`OSError`. If called with *ierr* of ``0``, the error code returned by a call to :c:func:`!GetLastError` is used instead. It calls the Win32 function :c:func:`!FormatMessage` to retrieve the Windows description of error code given by *ierr* or :c:func:`!GetLastError`, then it constructs a :exc:`OSError` object with the :attr:`~OSError.winerror` attribute set to the error code, the :attr:`~OSError.strerror` attribute set to the corresponding error message (gotten from :c:func:`!FormatMessage`), and then calls ``PyErr_SetObject(PyExc_OSError, object)``. This function always returns ``NULL``." msgstr "" -#: ../../c-api/exceptions.rst:239 -msgid "" -"This is a convenience function to raise :exc:`OSError`. If called with " -"*ierr* of ``0``, the error code returned by a call to :c:func:`!" -"GetLastError` is used instead. It calls the Win32 function :c:func:`!" -"FormatMessage` to retrieve the Windows description of error code given by " -"*ierr* or :c:func:`!GetLastError`, then it constructs a :exc:`OSError` " -"object with the :attr:`~OSError.winerror` attribute set to the error code, " -"the :attr:`~OSError.strerror` attribute set to the corresponding error " -"message (gotten from :c:func:`!FormatMessage`), and then calls " -"``PyErr_SetObject(PyExc_OSError, object)``. This function always returns " -"``NULL``." -msgstr "" - -#: ../../c-api/exceptions.rst:249 ../../c-api/exceptions.rst:257 -#: ../../c-api/exceptions.rst:268 ../../c-api/exceptions.rst:278 -#: ../../c-api/exceptions.rst:286 ../../c-api/exceptions.rst:296 msgid "Availability" msgstr "" -#: ../../c-api/exceptions.rst:254 -msgid "" -"Similar to :c:func:`PyErr_SetFromWindowsErr`, with an additional parameter " -"specifying the exception type to be raised." +msgid "Similar to :c:func:`PyErr_SetFromWindowsErr`, with an additional parameter specifying the exception type to be raised." msgstr "" -#: ../../c-api/exceptions.rst:262 -msgid "" -"Similar to :c:func:`PyErr_SetFromWindowsErr`, with the additional behavior " -"that if *filename* is not ``NULL``, it is decoded from the filesystem " -"encoding (:func:`os.fsdecode`) and passed to the constructor " -"of :exc:`OSError` as a third parameter to be used to define the :attr:`!" -"filename` attribute of the exception instance." +msgid "Similar to :c:func:`PyErr_SetFromWindowsErr`, with the additional behavior that if *filename* is not ``NULL``, it is decoded from the filesystem encoding (:func:`os.fsdecode`) and passed to the constructor of :exc:`OSError` as a third parameter to be used to define the :attr:`!filename` attribute of the exception instance." msgstr "" -#: ../../c-api/exceptions.rst:273 -msgid "" -"Similar to :c:func:`PyErr_SetExcFromWindowsErr`, with the additional " -"behavior that if *filename* is not ``NULL``, it is passed to the constructor " -"of :exc:`OSError` as a third parameter to be used to define the :attr:`!" -"filename` attribute of the exception instance." +msgid "Similar to :c:func:`PyErr_SetExcFromWindowsErr`, with the additional behavior that if *filename* is not ``NULL``, it is passed to the constructor of :exc:`OSError` as a third parameter to be used to define the :attr:`!filename` attribute of the exception instance." msgstr "" -#: ../../c-api/exceptions.rst:283 -msgid "" -"Similar to :c:func:`PyErr_SetExcFromWindowsErrWithFilenameObject`, but " -"accepts a second filename object." +msgid "Similar to :c:func:`PyErr_SetExcFromWindowsErrWithFilenameObject`, but accepts a second filename object." msgstr "" -#: ../../c-api/exceptions.rst:293 -msgid "" -"Similar to :c:func:`PyErr_SetFromWindowsErrWithFilename`, with an additional " -"parameter specifying the exception type to be raised." +msgid "Similar to :c:func:`PyErr_SetFromWindowsErrWithFilename`, with an additional parameter specifying the exception type to be raised." msgstr "" -#: ../../c-api/exceptions.rst:301 -msgid "" -"This is a convenience function to raise :exc:`ImportError`. *msg* will be " -"set as the exception's message string. *name* and *path*, both of which can " -"be ``NULL``, will be set as the :exc:`ImportError`'s respective ``name`` and " -"``path`` attributes." +msgid "This is a convenience function to raise :exc:`ImportError`. *msg* will be set as the exception's message string. *name* and *path*, both of which can be ``NULL``, will be set as the :exc:`ImportError`'s respective ``name`` and ``path`` attributes." msgstr "" -#: ../../c-api/exceptions.rst:311 -msgid "" -"Much like :c:func:`PyErr_SetImportError` but this function allows for " -"specifying a subclass of :exc:`ImportError` to raise." +msgid "Much like :c:func:`PyErr_SetImportError` but this function allows for specifying a subclass of :exc:`ImportError` to raise." msgstr "" -#: ../../c-api/exceptions.rst:319 -msgid "" -"Set file, line, and offset information for the current exception. If the " -"current exception is not a :exc:`SyntaxError`, then it sets additional " -"attributes, which make the exception printing subsystem think the exception " -"is a :exc:`SyntaxError`." +msgid "Set file, line, and offset information for the current exception. If the current exception is not a :exc:`SyntaxError`, then it sets additional attributes, which make the exception printing subsystem think the exception is a :exc:`SyntaxError`." msgstr "" -#: ../../c-api/exceptions.rst:329 -msgid "" -"Similar to :c:func:`PyErr_SyntaxLocationObject`, but also sets the " -"*end_lineno* and *end_col_offset* information for the current exception." +msgid "Similar to :c:func:`PyErr_SyntaxLocationObject`, but also sets the *end_lineno* and *end_col_offset* information for the current exception." msgstr "" -#: ../../c-api/exceptions.rst:337 -msgid "" -"Like :c:func:`PyErr_SyntaxLocationObject`, but *filename* is a byte string " -"decoded from the :term:`filesystem encoding and error handler`." +msgid "Like :c:func:`PyErr_SyntaxLocationObject`, but *filename* is a byte string decoded from the :term:`filesystem encoding and error handler`." msgstr "" -#: ../../c-api/exceptions.rst:345 -msgid "" -"Like :c:func:`PyErr_SyntaxLocationEx`, but the *col_offset* parameter is " -"omitted." +msgid "Like :c:func:`PyErr_SyntaxLocationEx`, but the *col_offset* parameter is omitted." msgstr "" -#: ../../c-api/exceptions.rst:351 -msgid "" -"This is a shorthand for ``PyErr_SetString(PyExc_SystemError, message)``, " -"where *message* indicates that an internal operation (e.g. a Python/C API " -"function) was invoked with an illegal argument. It is mostly for internal " -"use." +msgid "This is a shorthand for ``PyErr_SetString(PyExc_SystemError, message)``, where *message* indicates that an internal operation (e.g. a Python/C API function) was invoked with an illegal argument. It is mostly for internal use." msgstr "" -#: ../../c-api/exceptions.rst:359 -msgid "" -"Get the source line in *filename* at line *lineno*. *filename* should be a " -"Python :class:`str` object." +msgid "Get the source line in *filename* at line *lineno*. *filename* should be a Python :class:`str` object." msgstr "" -#: ../../c-api/exceptions.rst:362 -msgid "" -"On success, this function returns a Python string object with the found " -"line. On failure, this function returns ``NULL`` without an exception set." +msgid "On success, this function returns a Python string object with the found line. On failure, this function returns ``NULL`` without an exception set." msgstr "" -#: ../../c-api/exceptions.rst:368 -msgid "" -"Similar to :c:func:`PyErr_ProgramTextObject`, but *filename* is " -"a :c:expr:`const char *`, which is decoded with the :term:`filesystem " -"encoding and error handler`, instead of a Python object reference." +msgid "Similar to :c:func:`PyErr_ProgramTextObject`, but *filename* is a :c:expr:`const char *`, which is decoded with the :term:`filesystem encoding and error handler`, instead of a Python object reference." msgstr "" -#: ../../c-api/exceptions.rst:375 msgid "Issuing warnings" msgstr "" -#: ../../c-api/exceptions.rst:377 -msgid "" -"Use these functions to issue warnings from C code. They mirror similar " -"functions exported by the Python :mod:`warnings` module. They normally " -"print a warning message to *sys.stderr*; however, it is also possible that " -"the user has specified that warnings are to be turned into errors, and in " -"that case they will raise an exception. It is also possible that the " -"functions raise an exception because of a problem with the warning " -"machinery. The return value is ``0`` if no exception is raised, or ``-1`` if " -"an exception is raised. (It is not possible to determine whether a warning " -"message is actually printed, nor what the reason is for the exception; this " -"is intentional.) If an exception is raised, the caller should do its normal " -"exception handling (for example, :c:func:`Py_DECREF` owned references and " -"return an error value)." -msgstr "" - -#: ../../c-api/exceptions.rst:392 -msgid "" -"Issue a warning message. The *category* argument is a warning category (see " -"below) or ``NULL``; the *message* argument is a UTF-8 encoded string. " -"*stack_level* is a positive number giving a number of stack frames; the " -"warning will be issued from the currently executing line of code in that " -"stack frame. A *stack_level* of 1 is the function " -"calling :c:func:`PyErr_WarnEx`, 2 is the function above that, and so forth." +msgid "Use these functions to issue warnings from C code. They mirror similar functions exported by the Python :mod:`warnings` module. They normally print a warning message to *sys.stderr*; however, it is also possible that the user has specified that warnings are to be turned into errors, and in that case they will raise an exception. It is also possible that the functions raise an exception because of a problem with the warning machinery. The return value is ``0`` if no exception is raised, or ``-1`` if an exception is raised. (It is not possible to determine whether a warning message is actually printed, nor what the reason is for the exception; this is intentional.) If an exception is raised, the caller should do its normal exception handling (for example, :c:func:`Py_DECREF` owned references and return an error value)." msgstr "" -#: ../../c-api/exceptions.rst:399 -msgid "" -"Warning categories must be subclasses " -"of :c:data:`PyExc_Warning`; :c:data:`PyExc_Warning` is a subclass " -"of :c:data:`PyExc_Exception`; the default warning category " -"is :c:data:`PyExc_RuntimeWarning`. The standard Python warning categories " -"are available as global variables whose names are enumerated " -"at :ref:`standardwarningcategories`." +msgid "Issue a warning message. The *category* argument is a warning category (see below) or ``NULL``; the *message* argument is a UTF-8 encoded string. *stack_level* is a positive number giving a number of stack frames; the warning will be issued from the currently executing line of code in that stack frame. A *stack_level* of 1 is the function calling :c:func:`PyErr_WarnEx`, 2 is the function above that, and so forth." msgstr "" -#: ../../c-api/exceptions.rst:405 -msgid "" -"For information about warning control, see the documentation for " -"the :mod:`warnings` module and the :option:`-W` option in the command line " -"documentation. There is no C API for warning control." +msgid "Warning categories must be subclasses of :c:data:`PyExc_Warning`; :c:data:`PyExc_Warning` is a subclass of :c:data:`PyExc_Exception`; the default warning category is :c:data:`PyExc_RuntimeWarning`. The standard Python warning categories are available as global variables whose names are enumerated at :ref:`standardwarningcategories`." msgstr "" -#: ../../c-api/exceptions.rst:412 -msgid "" -"Issue a warning message with explicit control over all warning attributes. " -"This is a straightforward wrapper around the Python " -"function :func:`warnings.warn_explicit`; see there for more information. " -"The *module* and *registry* arguments may be set to ``NULL`` to get the " -"default effect described there." +msgid "For information about warning control, see the documentation for the :mod:`warnings` module and the :option:`-W` option in the command line documentation. There is no C API for warning control." msgstr "" -#: ../../c-api/exceptions.rst:423 -msgid "" -"Similar to :c:func:`PyErr_WarnExplicitObject` except that *message* and " -"*module* are UTF-8 encoded strings, and *filename* is decoded from " -"the :term:`filesystem encoding and error handler`." +msgid "Issue a warning message with explicit control over all warning attributes. This is a straightforward wrapper around the Python function :func:`warnings.warn_explicit`; see there for more information. The *module* and *registry* arguments may be set to ``NULL`` to get the default effect described there." msgstr "" -#: ../../c-api/exceptions.rst:430 -msgid "" -"Function similar to :c:func:`PyErr_WarnEx`, but " -"uses :c:func:`PyUnicode_FromFormat` to format the warning message. *format* " -"is an ASCII-encoded string." +msgid "Similar to :c:func:`PyErr_WarnExplicitObject` except that *message* and *module* are UTF-8 encoded strings, and *filename* is decoded from the :term:`filesystem encoding and error handler`." msgstr "" -#: ../../c-api/exceptions.rst:439 -msgid "" -"Similar to :c:func:`PyErr_WarnExplicit`, but " -"uses :c:func:`PyUnicode_FromFormat` to format the warning message. *format* " -"is an ASCII-encoded string." +msgid "Function similar to :c:func:`PyErr_WarnEx`, but uses :c:func:`PyUnicode_FromFormat` to format the warning message. *format* is an ASCII-encoded string." msgstr "" -#: ../../c-api/exceptions.rst:448 -msgid "" -"Function similar to :c:func:`PyErr_WarnFormat`, but *category* " -"is :exc:`ResourceWarning` and it passes *source* to :class:`!" -"warnings.WarningMessage`." +msgid "Similar to :c:func:`PyErr_WarnExplicit`, but uses :c:func:`PyUnicode_FromFormat` to format the warning message. *format* is an ASCII-encoded string." +msgstr "" + +msgid "Function similar to :c:func:`PyErr_WarnFormat`, but *category* is :exc:`ResourceWarning` and it passes *source* to :class:`!warnings.WarningMessage`." msgstr "" -#: ../../c-api/exceptions.rst:455 msgid "Querying the error indicator" msgstr "" -#: ../../c-api/exceptions.rst:459 -msgid "" -"Test whether the error indicator is set. If set, return the exception " -"*type* (the first argument to the last call to one of the ``PyErr_Set*`` " -"functions or to :c:func:`PyErr_Restore`). If not set, return ``NULL``. You " -"do not own a reference to the return value, so you do not need " -"to :c:func:`Py_DECREF` it." +msgid "Test whether the error indicator is set. If set, return the exception *type* (the first argument to the last call to one of the ``PyErr_Set*`` functions or to :c:func:`PyErr_Restore`). If not set, return ``NULL``. You do not own a reference to the return value, so you do not need to :c:func:`Py_DECREF` it." msgstr "" -#: ../../c-api/exceptions.rst:465 msgid "The caller must have an :term:`attached thread state`." msgstr "" -#: ../../c-api/exceptions.rst:469 -msgid "" -"Do not compare the return value to a specific exception; " -"use :c:func:`PyErr_ExceptionMatches` instead, shown below. (The comparison " -"could easily fail since the exception may be an instance instead of a class, " -"in the case of a class exception, or it may be a subclass of the expected " -"exception.)" +msgid "Do not compare the return value to a specific exception; use :c:func:`PyErr_ExceptionMatches` instead, shown below. (The comparison could easily fail since the exception may be an instance instead of a class, in the case of a class exception, or it may be a subclass of the expected exception.)" msgstr "" -#: ../../c-api/exceptions.rst:477 -msgid "" -"Equivalent to ``PyErr_GivenExceptionMatches(PyErr_Occurred(), exc)``. This " -"should only be called when an exception is actually set; a memory access " -"violation will occur if no exception has been raised." +msgid "Equivalent to ``PyErr_GivenExceptionMatches(PyErr_Occurred(), exc)``. This should only be called when an exception is actually set; a memory access violation will occur if no exception has been raised." msgstr "" -#: ../../c-api/exceptions.rst:484 -msgid "" -"Return true if the *given* exception matches the exception type in *exc*. " -"If *exc* is a class object, this also returns true when *given* is an " -"instance of a subclass. If *exc* is a tuple, all exception types in the " -"tuple (and recursively in subtuples) are searched for a match." +msgid "Return true if the *given* exception matches the exception type in *exc*. If *exc* is a class object, this also returns true when *given* is an instance of a subclass. If *exc* is a tuple, all exception types in the tuple (and recursively in subtuples) are searched for a match." msgstr "" -#: ../../c-api/exceptions.rst:492 -msgid "" -"Return the exception currently being raised, clearing the error indicator at " -"the same time. Return ``NULL`` if the error indicator is not set." +msgid "Return the exception currently being raised, clearing the error indicator at the same time. Return ``NULL`` if the error indicator is not set." msgstr "" -#: ../../c-api/exceptions.rst:495 -msgid "" -"This function is used by code that needs to catch exceptions, or code that " -"needs to save and restore the error indicator temporarily." +msgid "This function is used by code that needs to catch exceptions, or code that needs to save and restore the error indicator temporarily." msgstr "" -#: ../../c-api/exceptions.rst:498 ../../c-api/exceptions.rst:543 msgid "For example::" msgstr "" -#: ../../c-api/exceptions.rst:500 msgid "" "{\n" " PyObject *exc = PyErr_GetRaisedException();\n" @@ -551,47 +253,27 @@ msgid "" "}" msgstr "" -#: ../../c-api/exceptions.rst:508 -msgid "" -":c:func:`PyErr_GetHandledException`, to save the exception currently being " -"handled." +msgid ":c:func:`PyErr_GetHandledException`, to save the exception currently being handled." msgstr "" -#: ../../c-api/exceptions.rst:516 -msgid "" -"Set *exc* as the exception currently being raised, clearing the existing " -"exception if one is set. If *exc* is ``NULL``, just clear the existing " -"exception." +msgid "Set *exc* as the exception currently being raised, clearing the existing exception if one is set. If *exc* is ``NULL``, just clear the existing exception." msgstr "" -#: ../../c-api/exceptions.rst:520 msgid "*exc* must be a valid exception or ``NULL``." msgstr "" -#: ../../c-api/exceptions.rst:522 msgid "This call \":term:`steals `\" a reference to *exc*." msgstr "" -#: ../../c-api/exceptions.rst:531 msgid "Use :c:func:`PyErr_GetRaisedException` instead." msgstr "" -#: ../../c-api/exceptions.rst:533 -msgid "" -"Retrieve the error indicator into three variables whose addresses are " -"passed. If the error indicator is not set, set all three variables to " -"``NULL``. If it is set, it will be cleared and you own a reference to each " -"object retrieved. The value and traceback object may be ``NULL`` even when " -"the type object is not." +msgid "Retrieve the error indicator into three variables whose addresses are passed. If the error indicator is not set, set all three variables to ``NULL``. If it is set, it will be cleared and you own a reference to each object retrieved. The value and traceback object may be ``NULL`` even when the type object is not." msgstr "" -#: ../../c-api/exceptions.rst:540 -msgid "" -"This function is normally only used by legacy code that needs to catch " -"exceptions or save and restore the error indicator temporarily." +msgid "This function is normally only used by legacy code that needs to catch exceptions or save and restore the error indicator temporarily." msgstr "" -#: ../../c-api/exceptions.rst:545 msgid "" "{\n" " PyObject *type, *value, *traceback;\n" @@ -603,1014 +285,581 @@ msgid "" "}" msgstr "" -#: ../../c-api/exceptions.rst:559 msgid "Use :c:func:`PyErr_SetRaisedException` instead." msgstr "" -#: ../../c-api/exceptions.rst:561 -msgid "" -"Set the error indicator from the three objects, *type*, *value*, and " -"*traceback*, clearing the existing exception if one is set. If the objects " -"are ``NULL``, the error indicator is cleared. Do not pass a ``NULL`` type " -"and non-``NULL`` value or traceback. The exception type should be a class. " -"Do not pass an invalid exception type or value. (Violating these rules will " -"cause subtle problems later.) This call takes away a reference to each " -"object: you must own a reference to each object before the call and after " -"the call you no longer own these references. (If you don't understand this, " -"don't use this function. I warned you.)" -msgstr "" - -#: ../../c-api/exceptions.rst:575 -msgid "" -"This function is normally only used by legacy code that needs to save and " -"restore the error indicator temporarily. Use :c:func:`PyErr_Fetch` to save " -"the current error indicator." +msgid "Set the error indicator from the three objects, *type*, *value*, and *traceback*, clearing the existing exception if one is set. If the objects are ``NULL``, the error indicator is cleared. Do not pass a ``NULL`` type and non-``NULL`` value or traceback. The exception type should be a class. Do not pass an invalid exception type or value. (Violating these rules will cause subtle problems later.) This call takes away a reference to each object: you must own a reference to each object before the call and after the call you no longer own these references. (If you don't understand this, don't use this function. I warned you.)" msgstr "" -#: ../../c-api/exceptions.rst:584 -msgid "" -"Use :c:func:`PyErr_GetRaisedException` instead, to avoid any possible de-" -"normalization." +msgid "This function is normally only used by legacy code that needs to save and restore the error indicator temporarily. Use :c:func:`PyErr_Fetch` to save the current error indicator." msgstr "" -#: ../../c-api/exceptions.rst:587 -msgid "" -"Under certain circumstances, the values returned by :c:func:`PyErr_Fetch` " -"below can be \"unnormalized\", meaning that ``*exc`` is a class object but " -"``*val`` is not an instance of the same class. This function can be used " -"to instantiate the class in that case. If the values are already " -"normalized, nothing happens. The delayed normalization is implemented to " -"improve performance." +msgid "Use :c:func:`PyErr_GetRaisedException` instead, to avoid any possible de-normalization." msgstr "" -#: ../../c-api/exceptions.rst:595 -msgid "" -"This function *does not* implicitly set " -"the :attr:`~BaseException.__traceback__` attribute on the exception value. " -"If setting the traceback appropriately is desired, the following additional " -"snippet is needed::" +msgid "Under certain circumstances, the values returned by :c:func:`PyErr_Fetch` below can be \"unnormalized\", meaning that ``*exc`` is a class object but ``*val`` is not an instance of the same class. This function can be used to instantiate the class in that case. If the values are already normalized, nothing happens. The delayed normalization is implemented to improve performance." +msgstr "" + +msgid "This function *does not* implicitly set the :attr:`~BaseException.__traceback__` attribute on the exception value. If setting the traceback appropriately is desired, the following additional snippet is needed::" msgstr "" -#: ../../c-api/exceptions.rst:600 msgid "" "if (tb != NULL) {\n" " PyException_SetTraceback(val, tb);\n" "}" msgstr "" -#: ../../c-api/exceptions.rst:607 -msgid "" -"Retrieve the active exception instance, as would be returned " -"by :func:`sys.exception`. This refers to an exception that was *already " -"caught*, not to an exception that was freshly raised. Returns a new " -"reference to the exception or ``NULL``. Does not modify the interpreter's " -"exception state." +msgid "Retrieve the active exception instance, as would be returned by :func:`sys.exception`. This refers to an exception that was *already caught*, not to an exception that was freshly raised. Returns a new reference to the exception or ``NULL``. Does not modify the interpreter's exception state." msgstr "" -#: ../../c-api/exceptions.rst:614 -msgid "" -"This function is not normally used by code that wants to handle exceptions. " -"Rather, it can be used when code needs to save and restore the exception " -"state temporarily. Use :c:func:`PyErr_SetHandledException` to restore or " -"clear the exception state." +msgid "This function is not normally used by code that wants to handle exceptions. Rather, it can be used when code needs to save and restore the exception state temporarily. Use :c:func:`PyErr_SetHandledException` to restore or clear the exception state." msgstr "" -#: ../../c-api/exceptions.rst:623 -msgid "" -"Set the active exception, as known from ``sys.exception()``. This refers to " -"an exception that was *already caught*, not to an exception that was freshly " -"raised. To clear the exception state, pass ``NULL``." +msgid "Set the active exception, as known from ``sys.exception()``. This refers to an exception that was *already caught*, not to an exception that was freshly raised. To clear the exception state, pass ``NULL``." msgstr "" -#: ../../c-api/exceptions.rst:630 -msgid "" -"This function is not normally used by code that wants to handle exceptions. " -"Rather, it can be used when code needs to save and restore the exception " -"state temporarily. Use :c:func:`PyErr_GetHandledException` to get the " -"exception state." +msgid "This function is not normally used by code that wants to handle exceptions. Rather, it can be used when code needs to save and restore the exception state temporarily. Use :c:func:`PyErr_GetHandledException` to get the exception state." msgstr "" -#: ../../c-api/exceptions.rst:639 -msgid "" -"Retrieve the old-style representation of the exception info, as known " -"from :func:`sys.exc_info`. This refers to an exception that was *already " -"caught*, not to an exception that was freshly raised. Returns new " -"references for the three objects, any of which may be ``NULL``. Does not " -"modify the exception info state. This function is kept for backwards " -"compatibility. Prefer using :c:func:`PyErr_GetHandledException`." +msgid "Retrieve the old-style representation of the exception info, as known from :func:`sys.exc_info`. This refers to an exception that was *already caught*, not to an exception that was freshly raised. Returns new references for the three objects, any of which may be ``NULL``. Does not modify the exception info state. This function is kept for backwards compatibility. Prefer using :c:func:`PyErr_GetHandledException`." msgstr "" -#: ../../c-api/exceptions.rst:648 -msgid "" -"This function is not normally used by code that wants to handle exceptions. " -"Rather, it can be used when code needs to save and restore the exception " -"state temporarily. Use :c:func:`PyErr_SetExcInfo` to restore or clear the " -"exception state." +msgid "This function is not normally used by code that wants to handle exceptions. Rather, it can be used when code needs to save and restore the exception state temporarily. Use :c:func:`PyErr_SetExcInfo` to restore or clear the exception state." msgstr "" -#: ../../c-api/exceptions.rst:658 -msgid "" -"Set the exception info, as known from ``sys.exc_info()``. This refers to an " -"exception that was *already caught*, not to an exception that was freshly " -"raised. This function \":term:`steals `\" the references of the " -"arguments. To clear the exception state, pass ``NULL`` for all three " -"arguments. This function is kept for backwards compatibility. Prefer " -"using :c:func:`PyErr_SetHandledException`." +msgid "Set the exception info, as known from ``sys.exc_info()``. This refers to an exception that was *already caught*, not to an exception that was freshly raised. This function \":term:`steals `\" the references of the arguments. To clear the exception state, pass ``NULL`` for all three arguments. This function is kept for backwards compatibility. Prefer using :c:func:`PyErr_SetHandledException`." msgstr "" -#: ../../c-api/exceptions.rst:668 -msgid "" -"This function is not normally used by code that wants to handle exceptions. " -"Rather, it can be used when code needs to save and restore the exception " -"state temporarily. Use :c:func:`PyErr_GetExcInfo` to read the exception " -"state." +msgid "This function is not normally used by code that wants to handle exceptions. Rather, it can be used when code needs to save and restore the exception state temporarily. Use :c:func:`PyErr_GetExcInfo` to read the exception state." msgstr "" -#: ../../c-api/exceptions.rst:675 -msgid "" -"The ``type`` and ``traceback`` arguments are no longer used and can be NULL. " -"The interpreter now derives them from the exception instance (the ``value`` " -"argument). The function still \":term:`steals `\" references of all " -"three arguments." +msgid "The ``type`` and ``traceback`` arguments are no longer used and can be NULL. The interpreter now derives them from the exception instance (the ``value`` argument). The function still \":term:`steals `\" references of all three arguments." msgstr "" -#: ../../c-api/exceptions.rst:683 msgid "Signal Handling" msgstr "" -#: ../../c-api/exceptions.rst:693 -msgid "" -"Handle external interruptions, such as signals or activating a debugger, " -"whose processing has been delayed until it is safe to run Python code and/or " -"raise exceptions." +msgid "Handle external interruptions, such as signals or activating a debugger, whose processing has been delayed until it is safe to run Python code and/or raise exceptions." msgstr "" -#: ../../c-api/exceptions.rst:697 -msgid "" -"For example, pressing :kbd:`Ctrl-C` causes a terminal to send " -"the :py:data:`signal.SIGINT` signal. This function executes the " -"corresponding Python signal handler, which, by default, raises " -"the :exc:`KeyboardInterrupt` exception." +msgid "For example, pressing :kbd:`Ctrl-C` causes a terminal to send the :py:data:`signal.SIGINT` signal. This function executes the corresponding Python signal handler, which, by default, raises the :exc:`KeyboardInterrupt` exception." msgstr "" -#: ../../c-api/exceptions.rst:702 -msgid "" -":c:func:`!PyErr_CheckSignals` should be called by long-running C code " -"frequently enough so that the response appears immediate to humans." +msgid ":c:func:`!PyErr_CheckSignals` should be called by long-running C code frequently enough so that the response appears immediate to humans." msgstr "" -#: ../../c-api/exceptions.rst:705 msgid "Handlers invoked by this function currently include:" msgstr "" -#: ../../c-api/exceptions.rst:707 -msgid "" -"Signal handlers, including Python functions registered using " -"the :mod:`signal` module." +msgid "Signal handlers, including Python functions registered using the :mod:`signal` module." msgstr "" -#: ../../c-api/exceptions.rst:710 -msgid "" -"Signal handlers are only run in the main thread of the main interpreter." +msgid "Signal handlers are only run in the main thread of the main interpreter." msgstr "" -#: ../../c-api/exceptions.rst:712 -msgid "" -"(This is where the function got the name: originally, signals were the only " -"way to interrupt the interpreter.)" +msgid "(This is where the function got the name: originally, signals were the only way to interrupt the interpreter.)" msgstr "" -#: ../../c-api/exceptions.rst:715 msgid "Running the garbage collector, if necessary." msgstr "" -#: ../../c-api/exceptions.rst:717 msgid "Executing a pending :ref:`remote debugger ` script." msgstr "" -#: ../../c-api/exceptions.rst:719 -msgid "" -"If any handler raises an exception, immediately return ``-1`` with that " -"exception set. Any remaining interruptions are left to be processed on the " -"next :c:func:`PyErr_CheckSignals()` invocation, if appropriate." +msgid "If any handler raises an exception, immediately return ``-1`` with that exception set. Any remaining interruptions are left to be processed on the next :c:func:`PyErr_CheckSignals()` invocation, if appropriate." msgstr "" -#: ../../c-api/exceptions.rst:724 -msgid "" -"If all handlers finish successfully, or there are no handlers to run, return " -"``0``." +msgid "If all handlers finish successfully, or there are no handlers to run, return ``0``." msgstr "" -#: ../../c-api/exceptions.rst:727 msgid "This function may now invoke the garbage collector." msgstr "" -#: ../../c-api/exceptions.rst:730 -msgid "" -"This function may now execute a remote debugger script, if remote debugging " -"is enabled." +msgid "This function may now execute a remote debugger script, if remote debugging is enabled." msgstr "" -#: ../../c-api/exceptions.rst:742 -msgid "" -"Simulate the effect of a :c:macro:`!SIGINT` signal arriving. This is " -"equivalent to ``PyErr_SetInterruptEx(SIGINT)``." +msgid "Simulate the effect of a :c:macro:`!SIGINT` signal arriving. This is equivalent to ``PyErr_SetInterruptEx(SIGINT)``." msgstr "" -#: ../../c-api/exceptions.rst:746 ../../c-api/exceptions.rst:773 -msgid "" -"This function is async-signal-safe. It can be called without " -"an :term:`attached thread state` and from a C signal handler." +msgid "This function is async-signal-safe. It can be called without an :term:`attached thread state` and from a C signal handler." msgstr "" -#: ../../c-api/exceptions.rst:756 -msgid "" -"Simulate the effect of a signal arriving. The next " -"time :c:func:`PyErr_CheckSignals` is called, the Python signal handler for " -"the given signal number will be called." +msgid "Simulate the effect of a signal arriving. The next time :c:func:`PyErr_CheckSignals` is called, the Python signal handler for the given signal number will be called." msgstr "" -#: ../../c-api/exceptions.rst:760 -msgid "" -"This function can be called by C code that sets up its own signal handling " -"and wants Python signal handlers to be invoked as expected when an " -"interruption is requested (for example when the user presses Ctrl-C to " -"interrupt an operation)." +msgid "This function can be called by C code that sets up its own signal handling and wants Python signal handlers to be invoked as expected when an interruption is requested (for example when the user presses Ctrl-C to interrupt an operation)." msgstr "" -#: ../../c-api/exceptions.rst:765 -msgid "" -"If the given signal isn't handled by Python (it was set " -"to :py:const:`signal.SIG_DFL` or :py:const:`signal.SIG_IGN`), it will be " -"ignored." +msgid "If the given signal isn't handled by Python (it was set to :py:const:`signal.SIG_DFL` or :py:const:`signal.SIG_IGN`), it will be ignored." msgstr "" -#: ../../c-api/exceptions.rst:768 -msgid "" -"If *signum* is outside of the allowed range of signal numbers, ``-1`` is " -"returned. Otherwise, ``0`` is returned. The error indicator is never " -"changed by this function." +msgid "If *signum* is outside of the allowed range of signal numbers, ``-1`` is returned. Otherwise, ``0`` is returned. The error indicator is never changed by this function." msgstr "" -#: ../../c-api/exceptions.rst:781 -msgid "" -"This utility function specifies a file descriptor to which the signal number " -"is written as a single byte whenever a signal is received. *fd* must be non-" -"blocking. It returns the previous such file descriptor." +msgid "This utility function specifies a file descriptor to which the signal number is written as a single byte whenever a signal is received. *fd* must be non-blocking. It returns the previous such file descriptor." msgstr "" -#: ../../c-api/exceptions.rst:785 -msgid "" -"The value ``-1`` disables the feature; this is the initial state. This is " -"equivalent to :func:`signal.set_wakeup_fd` in Python, but without any error " -"checking. *fd* should be a valid file descriptor. The function should only " -"be called from the main thread." +msgid "The value ``-1`` disables the feature; this is the initial state. This is equivalent to :func:`signal.set_wakeup_fd` in Python, but without any error checking. *fd* should be a valid file descriptor. The function should only be called from the main thread." msgstr "" -#: ../../c-api/exceptions.rst:790 msgid "On Windows, the function now also supports socket handles." msgstr "" -#: ../../c-api/exceptions.rst:795 msgid "Exception Classes" msgstr "" -#: ../../c-api/exceptions.rst:799 -msgid "" -"This utility function creates and returns a new exception class. The *name* " -"argument must be the name of the new exception, a C string of the form " -"``module.classname``. The *base* and *dict* arguments are normally " -"``NULL``. This creates a class object derived from :exc:`Exception` " -"(accessible in C as :c:data:`PyExc_Exception`)." +msgid "This utility function creates and returns a new exception class. The *name* argument must be the name of the new exception, a C string of the form ``module.classname``. The *base* and *dict* arguments are normally ``NULL``. This creates a class object derived from :exc:`Exception` (accessible in C as :c:data:`PyExc_Exception`)." msgstr "" -#: ../../c-api/exceptions.rst:805 -msgid "" -"The :attr:`~type.__module__` attribute of the new class is set to the first " -"part (up to the last dot) of the *name* argument, and the class name is set " -"to the last part (after the last dot). The *base* argument can be used to " -"specify alternate base classes; it can either be only one class or a tuple " -"of classes. The *dict* argument can be used to specify a dictionary of class " -"variables and methods." +msgid "The :attr:`~type.__module__` attribute of the new class is set to the first part (up to the last dot) of the *name* argument, and the class name is set to the last part (after the last dot). The *base* argument can be used to specify alternate base classes; it can either be only one class or a tuple of classes. The *dict* argument can be used to specify a dictionary of class variables and methods." msgstr "" -#: ../../c-api/exceptions.rst:814 -msgid "" -"Same as :c:func:`PyErr_NewException`, except that the new exception class " -"can easily be given a docstring: If *doc* is non-``NULL``, it will be used " -"as the docstring for the exception class." +msgid "Same as :c:func:`PyErr_NewException`, except that the new exception class can easily be given a docstring: If *doc* is non-``NULL``, it will be used as the docstring for the exception class." msgstr "" -#: ../../c-api/exceptions.rst:823 -msgid "" -"Return non-zero if *ob* is an exception class, zero otherwise. This function " -"always succeeds." +msgid "Return non-zero if *ob* is an exception class, zero otherwise. This function always succeeds." msgstr "" -#: ../../c-api/exceptions.rst:828 msgid "Return :c:member:`~PyTypeObject.tp_name` of the exception class *ob*." msgstr "" -#: ../../c-api/exceptions.rst:832 msgid "Exception Objects" msgstr "" -#: ../../c-api/exceptions.rst:836 -msgid "" -"Return true if *op* is an instance of :class:`BaseException`, false " -"otherwise. This function always succeeds." +msgid "Return true if *op* is an instance of :class:`BaseException`, false otherwise. This function always succeeds." msgstr "" -#: ../../c-api/exceptions.rst:842 msgid "Equivalent to :c:func:`Py_TYPE(op) `." msgstr "" -#: ../../c-api/exceptions.rst:847 -msgid "" -"Return the traceback associated with the exception as a new reference, as " -"accessible from Python through the :attr:`~BaseException.__traceback__` " -"attribute. If there is no traceback associated, this returns ``NULL``." +msgid "Return the traceback associated with the exception as a new reference, as accessible from Python through the :attr:`~BaseException.__traceback__` attribute. If there is no traceback associated, this returns ``NULL``." msgstr "" -#: ../../c-api/exceptions.rst:855 -msgid "" -"Set the traceback associated with the exception to *tb*. Use ``Py_None`` to " -"clear it." +msgid "Set the traceback associated with the exception to *tb*. Use ``Py_None`` to clear it." msgstr "" -#: ../../c-api/exceptions.rst:861 -msgid "" -"Return the context (another exception instance during whose handling *ex* " -"was raised) associated with the exception as a new reference, as accessible " -"from Python through the :attr:`~BaseException.__context__` attribute. If " -"there is no context associated, this returns ``NULL``." +msgid "Return the context (another exception instance during whose handling *ex* was raised) associated with the exception as a new reference, as accessible from Python through the :attr:`~BaseException.__context__` attribute. If there is no context associated, this returns ``NULL``." msgstr "" -#: ../../c-api/exceptions.rst:869 -msgid "" -"Set the context associated with the exception to *ctx*. Use ``NULL`` to " -"clear it. There is no type check to make sure that *ctx* is an exception " -"instance. This \":term:`steals `\" a reference to *ctx*." +msgid "Set the context associated with the exception to *ctx*. Use ``NULL`` to clear it. There is no type check to make sure that *ctx* is an exception instance. This \":term:`steals `\" a reference to *ctx*." msgstr "" -#: ../../c-api/exceptions.rst:876 -msgid "" -"Return the cause (either an exception instance, or ``None``, set by " -"``raise ... from ...``) associated with the exception as a new reference, as " -"accessible from Python through the :attr:`~BaseException.__cause__` " -"attribute." +msgid "Return the cause (either an exception instance, or ``None``, set by ``raise ... from ...``) associated with the exception as a new reference, as accessible from Python through the :attr:`~BaseException.__cause__` attribute." msgstr "" -#: ../../c-api/exceptions.rst:884 -msgid "" -"Set the cause associated with the exception to *cause*. Use ``NULL`` to " -"clear it. There is no type check to make sure that *cause* is either an " -"exception instance or ``None``. This \":term:`steals `\" a reference " -"to *cause*." +msgid "Set the cause associated with the exception to *cause*. Use ``NULL`` to clear it. There is no type check to make sure that *cause* is either an exception instance or ``None``. This \":term:`steals `\" a reference to *cause*." msgstr "" -#: ../../c-api/exceptions.rst:889 -msgid "" -"The :attr:`~BaseException.__suppress_context__` attribute is implicitly set " -"to ``True`` by this function." +msgid "The :attr:`~BaseException.__suppress_context__` attribute is implicitly set to ``True`` by this function." msgstr "" -#: ../../c-api/exceptions.rst:895 msgid "Return :attr:`~BaseException.args` of exception *ex*." msgstr "" -#: ../../c-api/exceptions.rst:900 msgid "Set :attr:`~BaseException.args` of exception *ex* to *args*." msgstr "" -#: ../../c-api/exceptions.rst:904 -msgid "" -"Implement part of the interpreter's implementation of :keyword:`!except*`. " -"*orig* is the original exception that was caught, and *excs* is the list of " -"the exceptions that need to be raised. This list contains the unhandled part " -"of *orig*, if any, as well as the exceptions that were raised from " -"the :keyword:`!except*` clauses (so they have a different traceback from " -"*orig*) and those that were reraised (and have the same traceback as " -"*orig*). Return the :exc:`ExceptionGroup` that needs to be reraised in the " -"end, or ``None`` if there is nothing to reraise." +msgid "Implement part of the interpreter's implementation of :keyword:`!except*`. *orig* is the original exception that was caught, and *excs* is the list of the exceptions that need to be raised. This list contains the unhandled part of *orig*, if any, as well as the exceptions that were raised from the :keyword:`!except*` clauses (so they have a different traceback from *orig*) and those that were reraised (and have the same traceback as *orig*). Return the :exc:`ExceptionGroup` that needs to be reraised in the end, or ``None`` if there is nothing to reraise." msgstr "" -#: ../../c-api/exceptions.rst:918 msgid "Unicode Exception Objects" msgstr "" -#: ../../c-api/exceptions.rst:920 -msgid "" -"The following functions are used to create and modify Unicode exceptions " -"from C." +msgid "The following functions are used to create and modify Unicode exceptions from C." msgstr "" -#: ../../c-api/exceptions.rst:924 -msgid "" -"Create a :class:`UnicodeDecodeError` object with the attributes *encoding*, " -"*object*, *length*, *start*, *end* and *reason*. *encoding* and *reason* are " -"UTF-8 encoded strings." +msgid "Create a :class:`UnicodeDecodeError` object with the attributes *encoding*, *object*, *length*, *start*, *end* and *reason*. *encoding* and *reason* are UTF-8 encoded strings." msgstr "" -#: ../../c-api/exceptions.rst:931 msgid "Return the *encoding* attribute of the given exception object." msgstr "" -#: ../../c-api/exceptions.rst:937 msgid "Return the *object* attribute of the given exception object." msgstr "" -#: ../../c-api/exceptions.rst:943 -msgid "" -"Get the *start* attribute of the given exception object and place it into " -"*\\*start*. *start* must not be ``NULL``. Return ``0`` on success, ``-1`` " -"on failure." +msgid "Get the *start* attribute of the given exception object and place it into *\\*start*. *start* must not be ``NULL``. Return ``0`` on success, ``-1`` on failure." msgstr "" -#: ../../c-api/exceptions.rst:947 -msgid "" -"If the :attr:`UnicodeError.object` is an empty sequence, the resulting " -"*start* is ``0``. Otherwise, it is clipped to ``[0, len(object) - 1]``." +msgid "If the :attr:`UnicodeError.object` is an empty sequence, the resulting *start* is ``0``. Otherwise, it is clipped to ``[0, len(object) - 1]``." msgstr "" -#: ../../c-api/exceptions.rst:950 msgid ":attr:`UnicodeError.start`" msgstr "" -#: ../../c-api/exceptions.rst:956 -msgid "" -"Set the *start* attribute of the given exception object to *start*. Return " -"``0`` on success, ``-1`` on failure." +msgid "Set the *start* attribute of the given exception object to *start*. Return ``0`` on success, ``-1`` on failure." msgstr "" -#: ../../c-api/exceptions.rst:961 -msgid "" -"While passing a negative *start* does not raise an exception, the " -"corresponding getters will not consider it as a relative offset." +msgid "While passing a negative *start* does not raise an exception, the corresponding getters will not consider it as a relative offset." msgstr "" -#: ../../c-api/exceptions.rst:969 -msgid "" -"Get the *end* attribute of the given exception object and place it into " -"*\\*end*. *end* must not be ``NULL``. Return ``0`` on success, ``-1`` on " -"failure." +msgid "Get the *end* attribute of the given exception object and place it into *\\*end*. *end* must not be ``NULL``. Return ``0`` on success, ``-1`` on failure." msgstr "" -#: ../../c-api/exceptions.rst:973 -msgid "" -"If the :attr:`UnicodeError.object` is an empty sequence, the resulting *end* " -"is ``0``. Otherwise, it is clipped to ``[1, len(object)]``." +msgid "If the :attr:`UnicodeError.object` is an empty sequence, the resulting *end* is ``0``. Otherwise, it is clipped to ``[1, len(object)]``." msgstr "" -#: ../../c-api/exceptions.rst:980 -msgid "" -"Set the *end* attribute of the given exception object to *end*. Return " -"``0`` on success, ``-1`` on failure." +msgid "Set the *end* attribute of the given exception object to *end*. Return ``0`` on success, ``-1`` on failure." msgstr "" -#: ../../c-api/exceptions.rst:983 msgid ":attr:`UnicodeError.end`" msgstr "" -#: ../../c-api/exceptions.rst:989 msgid "Return the *reason* attribute of the given exception object." msgstr "" -#: ../../c-api/exceptions.rst:995 -msgid "" -"Set the *reason* attribute of the given exception object to *reason*. " -"Return ``0`` on success, ``-1`` on failure." +msgid "Set the *reason* attribute of the given exception object to *reason*. Return ``0`` on success, ``-1`` on failure." msgstr "" -#: ../../c-api/exceptions.rst:1002 msgid "Recursion Control" msgstr "" -#: ../../c-api/exceptions.rst:1004 -msgid "" -"These two functions provide a way to perform safe recursive calls at the C " -"level, both in the core and in extension modules. They are needed if the " -"recursive code does not necessarily invoke Python code (which tracks its " -"recursion depth automatically). They are also not needed for *tp_call* " -"implementations because the :ref:`call protocol ` takes care of " -"recursion handling." +msgid "These two functions provide a way to perform safe recursive calls at the C level, both in the core and in extension modules. They are needed if the recursive code does not necessarily invoke Python code (which tracks its recursion depth automatically). They are also not needed for *tp_call* implementations because the :ref:`call protocol ` takes care of recursion handling." msgstr "" -#: ../../c-api/exceptions.rst:1013 msgid "Marks a point where a recursive C-level call is about to be performed." msgstr "" -#: ../../c-api/exceptions.rst:1015 -msgid "" -"The function then checks if the stack limit is reached. If this is the " -"case, a :exc:`RecursionError` is set and a nonzero value is returned. " -"Otherwise, zero is returned." +msgid "The function then checks if the stack limit is reached. If this is the case, a :exc:`RecursionError` is set and a nonzero value is returned. Otherwise, zero is returned." msgstr "" -#: ../../c-api/exceptions.rst:1019 -msgid "" -"*where* should be a UTF-8 encoded string such as ``\" in instance check\"`` " -"to be concatenated to the :exc:`RecursionError` message caused by the " -"recursion depth limit." +msgid "*where* should be a UTF-8 encoded string such as ``\" in instance check\"`` to be concatenated to the :exc:`RecursionError` message caused by the recursion depth limit." msgstr "" -#: ../../c-api/exceptions.rst:1024 msgid "The :c:func:`PyUnstable_ThreadState_SetStackProtection` function." msgstr "" -#: ../../c-api/exceptions.rst:1026 ../../c-api/exceptions.rst:1034 -msgid "" -"This function is now also available in the :ref:`limited API `." +msgid "This function is now also available in the :ref:`limited API `." msgstr "" -#: ../../c-api/exceptions.rst:1031 -msgid "" -"Ends a :c:func:`Py_EnterRecursiveCall`. Must be called once for each " -"*successful* invocation of :c:func:`Py_EnterRecursiveCall`." +msgid "Ends a :c:func:`Py_EnterRecursiveCall`. Must be called once for each *successful* invocation of :c:func:`Py_EnterRecursiveCall`." msgstr "" -#: ../../c-api/exceptions.rst:1037 -msgid "" -"Properly implementing :c:member:`~PyTypeObject.tp_repr` for container types " -"requires special recursion handling. In addition to protecting the " -"stack, :c:member:`~PyTypeObject.tp_repr` also needs to track objects to " -"prevent cycles. The following two functions facilitate this functionality. " -"Effectively, these are the C equivalent to :deco:`reprlib.recursive_repr`." +msgid "Properly implementing :c:member:`~PyTypeObject.tp_repr` for container types requires special recursion handling. In addition to protecting the stack, :c:member:`~PyTypeObject.tp_repr` also needs to track objects to prevent cycles. The following two functions facilitate this functionality. Effectively, these are the C equivalent to :deco:`reprlib.recursive_repr`." msgstr "" -#: ../../c-api/exceptions.rst:1045 -msgid "" -"Called at the beginning of the :c:member:`~PyTypeObject.tp_repr` " -"implementation to detect cycles." +msgid "Called at the beginning of the :c:member:`~PyTypeObject.tp_repr` implementation to detect cycles." msgstr "" -#: ../../c-api/exceptions.rst:1048 -msgid "" -"If the object has already been processed, the function returns a positive " -"integer. In that case the :c:member:`~PyTypeObject.tp_repr` implementation " -"should return a string object indicating a cycle. As " -"examples, :class:`dict` objects return ``{...}`` and :class:`list` objects " -"return ``[...]``." +msgid "If the object has already been processed, the function returns a positive integer. In that case the :c:member:`~PyTypeObject.tp_repr` implementation should return a string object indicating a cycle. As examples, :class:`dict` objects return ``{...}`` and :class:`list` objects return ``[...]``." msgstr "" -#: ../../c-api/exceptions.rst:1054 -msgid "" -"The function will return a negative integer if the recursion limit is " -"reached. In that case the :c:member:`~PyTypeObject.tp_repr` implementation " -"should typically return ``NULL``." +msgid "The function will return a negative integer if the recursion limit is reached. In that case the :c:member:`~PyTypeObject.tp_repr` implementation should typically return ``NULL``." msgstr "" -#: ../../c-api/exceptions.rst:1058 -msgid "" -"Otherwise, the function returns zero and " -"the :c:member:`~PyTypeObject.tp_repr` implementation can continue normally." +msgid "Otherwise, the function returns zero and the :c:member:`~PyTypeObject.tp_repr` implementation can continue normally." msgstr "" -#: ../../c-api/exceptions.rst:1063 -msgid "" -"Ends a :c:func:`Py_ReprEnter`. Must be called once for each invocation " -"of :c:func:`Py_ReprEnter` that returns zero." +msgid "Ends a :c:func:`Py_ReprEnter`. Must be called once for each invocation of :c:func:`Py_ReprEnter` that returns zero." msgstr "" -#: ../../c-api/exceptions.rst:1068 -msgid "" -"Get the recursion limit for the current interpreter. It can be set " -"with :c:func:`Py_SetRecursionLimit`. The recursion limit prevents the Python " -"interpreter stack from growing infinitely." +msgid "Get the recursion limit for the current interpreter. It can be set with :c:func:`Py_SetRecursionLimit`. The recursion limit prevents the Python interpreter stack from growing infinitely." msgstr "" -#: ../../c-api/exceptions.rst:1072 ../../c-api/exceptions.rst:1082 -msgid "" -"This function cannot fail, and the caller must hold an :term:`attached " -"thread state`." +msgid "This function cannot fail, and the caller must hold an :term:`attached thread state`." msgstr "" -#: ../../c-api/exceptions.rst:1076 msgid ":py:func:`sys.getrecursionlimit`" msgstr "" -#: ../../c-api/exceptions.rst:1080 msgid "Set the recursion limit for the current interpreter." msgstr "" -#: ../../c-api/exceptions.rst:1086 msgid ":py:func:`sys.setrecursionlimit`" msgstr "" -#: ../../c-api/exceptions.rst:1091 msgid "Exception and warning types" msgstr "" -#: ../../c-api/exceptions.rst:1093 -msgid "" -"All standard Python exceptions and warning categories are available as " -"global variables whose names are ``PyExc_`` followed by the Python exception " -"name. These have the type :c:expr:`PyObject*`; they are all class objects." +msgid "All standard Python exceptions and warning categories are available as global variables whose names are ``PyExc_`` followed by the Python exception name. These have the type :c:expr:`PyObject*`; they are all class objects." msgstr "" -#: ../../c-api/exceptions.rst:1097 msgid "For completeness, here are all the variables:" msgstr "" -#: ../../c-api/exceptions.rst:1100 msgid "Exception types" msgstr "" -#: ../../c-api/exceptions.rst:1107 ../../c-api/exceptions.rst:1253 -#: ../../c-api/exceptions.rst:1283 msgid "C name" msgstr "" -#: ../../c-api/exceptions.rst:1108 ../../c-api/exceptions.rst:1254 -#: ../../c-api/exceptions.rst:1284 msgid "Python name" msgstr "" -#: ../../c-api/exceptions.rst:1110 msgid ":exc:`BaseException`" msgstr "" -#: ../../c-api/exceptions.rst:1112 msgid ":exc:`BaseExceptionGroup`" msgstr "" -#: ../../c-api/exceptions.rst:1114 msgid ":exc:`Exception`" msgstr "" -#: ../../c-api/exceptions.rst:1116 msgid ":exc:`ArithmeticError`" msgstr "" -#: ../../c-api/exceptions.rst:1118 msgid ":exc:`AssertionError`" msgstr "" -#: ../../c-api/exceptions.rst:1120 msgid ":exc:`AttributeError`" msgstr "" -#: ../../c-api/exceptions.rst:1122 msgid ":exc:`BlockingIOError`" msgstr "" -#: ../../c-api/exceptions.rst:1124 msgid ":exc:`BrokenPipeError`" msgstr "" -#: ../../c-api/exceptions.rst:1126 msgid ":exc:`BufferError`" msgstr "" -#: ../../c-api/exceptions.rst:1128 msgid ":exc:`ChildProcessError`" msgstr "" -#: ../../c-api/exceptions.rst:1130 msgid ":exc:`ConnectionAbortedError`" msgstr "" -#: ../../c-api/exceptions.rst:1132 msgid ":exc:`ConnectionError`" msgstr "" -#: ../../c-api/exceptions.rst:1134 msgid ":exc:`ConnectionRefusedError`" msgstr "" -#: ../../c-api/exceptions.rst:1136 msgid ":exc:`ConnectionResetError`" msgstr "" -#: ../../c-api/exceptions.rst:1138 msgid ":exc:`EOFError`" msgstr "" -#: ../../c-api/exceptions.rst:1140 msgid ":exc:`FileExistsError`" msgstr "" -#: ../../c-api/exceptions.rst:1142 msgid ":exc:`FileNotFoundError`" msgstr "" -#: ../../c-api/exceptions.rst:1144 msgid ":exc:`FloatingPointError`" msgstr "" -#: ../../c-api/exceptions.rst:1146 msgid ":exc:`GeneratorExit`" msgstr "" -#: ../../c-api/exceptions.rst:1148 msgid ":exc:`ImportError`" msgstr "" -#: ../../c-api/exceptions.rst:1150 msgid ":exc:`IndentationError`" msgstr "" -#: ../../c-api/exceptions.rst:1152 msgid ":exc:`IndexError`" msgstr "" -#: ../../c-api/exceptions.rst:1154 msgid ":exc:`InterruptedError`" msgstr "" -#: ../../c-api/exceptions.rst:1156 msgid ":exc:`IsADirectoryError`" msgstr "" -#: ../../c-api/exceptions.rst:1158 msgid ":exc:`KeyError`" msgstr "" -#: ../../c-api/exceptions.rst:1160 msgid ":exc:`KeyboardInterrupt`" msgstr "" -#: ../../c-api/exceptions.rst:1162 msgid ":exc:`LookupError`" msgstr "" -#: ../../c-api/exceptions.rst:1164 msgid ":exc:`MemoryError`" msgstr "" -#: ../../c-api/exceptions.rst:1166 msgid ":exc:`ModuleNotFoundError`" msgstr "" -#: ../../c-api/exceptions.rst:1168 msgid ":exc:`NameError`" msgstr "" -#: ../../c-api/exceptions.rst:1170 msgid ":exc:`NotADirectoryError`" msgstr "" -#: ../../c-api/exceptions.rst:1172 msgid ":exc:`NotImplementedError`" msgstr "" -#: ../../c-api/exceptions.rst:1174 ../../c-api/exceptions.rst:1257 -#: ../../c-api/exceptions.rst:1260 ../../c-api/exceptions.rst:1263 msgid ":exc:`OSError`" msgstr "" -#: ../../c-api/exceptions.rst:1176 msgid ":exc:`OverflowError`" msgstr "" -#: ../../c-api/exceptions.rst:1178 msgid ":exc:`PermissionError`" msgstr "" -#: ../../c-api/exceptions.rst:1180 msgid ":exc:`ProcessLookupError`" msgstr "" -#: ../../c-api/exceptions.rst:1182 msgid ":exc:`PythonFinalizationError`" msgstr "" -#: ../../c-api/exceptions.rst:1184 msgid ":exc:`RecursionError`" msgstr "" -#: ../../c-api/exceptions.rst:1186 msgid ":exc:`ReferenceError`" msgstr "" -#: ../../c-api/exceptions.rst:1188 msgid ":exc:`RuntimeError`" msgstr "" -#: ../../c-api/exceptions.rst:1190 msgid ":exc:`StopAsyncIteration`" msgstr "" -#: ../../c-api/exceptions.rst:1192 msgid ":exc:`StopIteration`" msgstr "" -#: ../../c-api/exceptions.rst:1194 msgid ":exc:`SyntaxError`" msgstr "" -#: ../../c-api/exceptions.rst:1196 msgid ":exc:`SystemError`" msgstr "" -#: ../../c-api/exceptions.rst:1198 msgid ":exc:`SystemExit`" msgstr "" -#: ../../c-api/exceptions.rst:1200 msgid ":exc:`TabError`" msgstr "" -#: ../../c-api/exceptions.rst:1202 msgid ":exc:`TimeoutError`" msgstr "" -#: ../../c-api/exceptions.rst:1204 msgid ":exc:`TypeError`" msgstr "" -#: ../../c-api/exceptions.rst:1206 msgid ":exc:`UnboundLocalError`" msgstr "" -#: ../../c-api/exceptions.rst:1208 msgid ":exc:`UnicodeDecodeError`" msgstr "" -#: ../../c-api/exceptions.rst:1210 msgid ":exc:`UnicodeEncodeError`" msgstr "" -#: ../../c-api/exceptions.rst:1212 msgid ":exc:`UnicodeError`" msgstr "" -#: ../../c-api/exceptions.rst:1214 msgid ":exc:`UnicodeTranslateError`" msgstr "" -#: ../../c-api/exceptions.rst:1216 msgid ":exc:`ValueError`" msgstr "" -#: ../../c-api/exceptions.rst:1218 msgid ":exc:`ZeroDivisionError`" msgstr "" -#: ../../c-api/exceptions.rst:1220 -msgid "" -":c:data:`PyExc_BlockingIOError`, :c:data:`PyExc_BrokenPipeError`, :c:data:`PyExc_ChildProcessError`, :c:data:`PyExc_ConnectionError`, :c:data:`PyExc_ConnectionAbortedError`, :c:data:`PyExc_ConnectionRefusedError`, :c:data:`PyExc_ConnectionResetError`, :c:data:`PyExc_FileExistsError`, :c:data:`PyExc_FileNotFoundError`, :c:data:`PyExc_InterruptedError`, :c:data:`PyExc_IsADirectoryError`, :c:data:`PyExc_NotADirectoryError`, :c:data:`PyExc_PermissionError`, :c:data:`PyExc_ProcessLookupError` " -"and :c:data:`PyExc_TimeoutError` were introduced following :pep:`3151`." +msgid ":c:data:`PyExc_BlockingIOError`, :c:data:`PyExc_BrokenPipeError`, :c:data:`PyExc_ChildProcessError`, :c:data:`PyExc_ConnectionError`, :c:data:`PyExc_ConnectionAbortedError`, :c:data:`PyExc_ConnectionRefusedError`, :c:data:`PyExc_ConnectionResetError`, :c:data:`PyExc_FileExistsError`, :c:data:`PyExc_FileNotFoundError`, :c:data:`PyExc_InterruptedError`, :c:data:`PyExc_IsADirectoryError`, :c:data:`PyExc_NotADirectoryError`, :c:data:`PyExc_PermissionError`, :c:data:`PyExc_ProcessLookupError` and :c:data:`PyExc_TimeoutError` were introduced following :pep:`3151`." msgstr "" -#: ../../c-api/exceptions.rst:1230 msgid ":c:data:`PyExc_StopAsyncIteration` and :c:data:`PyExc_RecursionError`." msgstr "" -#: ../../c-api/exceptions.rst:1233 msgid ":c:data:`PyExc_ModuleNotFoundError`." msgstr "" -#: ../../c-api/exceptions.rst:1236 msgid ":c:data:`PyExc_BaseExceptionGroup`." msgstr "" -#: ../../c-api/exceptions.rst:1241 msgid "OSError aliases" msgstr "" -#: ../../c-api/exceptions.rst:1243 msgid "The following are a compatibility aliases to :c:data:`PyExc_OSError`." msgstr "" -#: ../../c-api/exceptions.rst:1245 msgid "These aliases used to be separate exception types." msgstr "" -#: ../../c-api/exceptions.rst:1255 msgid "Notes" msgstr "" -#: ../../c-api/exceptions.rst:1264 msgid "[win]_" msgstr "" -#: ../../c-api/exceptions.rst:1266 msgid "Notes:" msgstr "" -#: ../../c-api/exceptions.rst:1269 -msgid "" -":c:var:`!PyExc_WindowsError` is only defined on Windows; protect code that " -"uses this by testing that the preprocessor macro ``MS_WINDOWS`` is defined." +msgid ":c:var:`!PyExc_WindowsError` is only defined on Windows; protect code that uses this by testing that the preprocessor macro ``MS_WINDOWS`` is defined." msgstr "" -#: ../../c-api/exceptions.rst:1276 msgid "Warning types" msgstr "" -#: ../../c-api/exceptions.rst:1286 msgid ":exc:`Warning`" msgstr "" -#: ../../c-api/exceptions.rst:1288 msgid ":exc:`BytesWarning`" msgstr "" -#: ../../c-api/exceptions.rst:1290 msgid ":exc:`DeprecationWarning`" msgstr "" -#: ../../c-api/exceptions.rst:1292 msgid ":exc:`EncodingWarning`" msgstr "" -#: ../../c-api/exceptions.rst:1294 msgid ":exc:`FutureWarning`" msgstr "" -#: ../../c-api/exceptions.rst:1296 msgid ":exc:`ImportWarning`" msgstr "" -#: ../../c-api/exceptions.rst:1298 msgid ":exc:`PendingDeprecationWarning`" msgstr "" -#: ../../c-api/exceptions.rst:1300 msgid ":exc:`ResourceWarning`" msgstr "" -#: ../../c-api/exceptions.rst:1302 msgid ":exc:`RuntimeWarning`" msgstr "" -#: ../../c-api/exceptions.rst:1304 msgid ":exc:`SyntaxWarning`" msgstr "" -#: ../../c-api/exceptions.rst:1306 msgid ":exc:`UnicodeWarning`" msgstr "" -#: ../../c-api/exceptions.rst:1308 msgid ":exc:`UserWarning`" msgstr "" -#: ../../c-api/exceptions.rst:1310 msgid ":c:data:`PyExc_ResourceWarning`." msgstr "" -#: ../../c-api/exceptions.rst:1313 msgid ":c:data:`PyExc_EncodingWarning`." msgstr "" -#: ../../c-api/exceptions.rst:1318 msgid "Tracebacks" msgstr "" -#: ../../c-api/exceptions.rst:1322 -msgid "" -"Type object for traceback objects. This is available " -"as :class:`types.TracebackType` in the Python layer." +msgid "Type object for traceback objects. This is available as :class:`types.TracebackType` in the Python layer." msgstr "" -#: ../../c-api/exceptions.rst:1328 -msgid "" -"Return true if *op* is a traceback object, false otherwise. This function " -"does not account for subtypes." +msgid "Return true if *op* is a traceback object, false otherwise. This function does not account for subtypes." msgstr "" -#: ../../c-api/exceptions.rst:1334 -msgid "" -"Replace the :attr:`~BaseException.__traceback__` attribute on the current " -"exception with a new traceback prepending *f* to the existing chain." +msgid "Replace the :attr:`~BaseException.__traceback__` attribute on the current exception with a new traceback prepending *f* to the existing chain." msgstr "" -#: ../../c-api/exceptions.rst:1337 msgid "Calling this function without an exception set is undefined behavior." msgstr "" -#: ../../c-api/exceptions.rst:1339 ../../c-api/exceptions.rst:1347 -msgid "" -"This function returns ``0`` on success, and returns ``-1`` with an exception " -"set on failure." +msgid "This function returns ``0`` on success, and returns ``-1`` with an exception set on failure." msgstr "" -#: ../../c-api/exceptions.rst:1345 msgid "Write the traceback *tb* into the file *f*." msgstr "" -#: ../../c-api/exceptions.rst:198 msgid "strerror (C function)" msgstr "" -#: ../../c-api/exceptions.rst:688 ../../c-api/exceptions.rst:737 -#: ../../c-api/exceptions.rst:752 msgid "module" msgstr "" -#: ../../c-api/exceptions.rst:688 ../../c-api/exceptions.rst:737 -#: ../../c-api/exceptions.rst:752 msgid "signal" msgstr "" -#: ../../c-api/exceptions.rst:688 ../../c-api/exceptions.rst:737 msgid "SIGINT (C macro)" msgstr "" -#: ../../c-api/exceptions.rst:688 ../../c-api/exceptions.rst:737 -#: ../../c-api/exceptions.rst:752 msgid "KeyboardInterrupt (built-in exception)" msgstr "" diff --git a/c-api/extension-modules.po b/c-api/extension-modules.po index 18b75a08..db72a05b 100644 --- a/c-api/extension-modules.po +++ b/c-api/extension-modules.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2026-07-25 12:59+0330\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: none\n" @@ -19,148 +19,66 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../c-api/extension-modules.rst:6 msgid "Defining extension modules" msgstr "" -#: ../../c-api/extension-modules.rst:8 -msgid "" -"A C extension for CPython is a shared library (for example, a ``.so`` file " -"on Linux, ``.pyd`` DLL on Windows), which is loadable into the Python " -"process (for example, it is compiled with compatible compiler settings), and " -"which exports an :ref:`initialization function `." +msgid "A C extension for CPython is a shared library (for example, a ``.so`` file on Linux, ``.pyd`` DLL on Windows), which is loadable into the Python process (for example, it is compiled with compatible compiler settings), and which exports an :ref:`initialization function `." msgstr "" -#: ../../c-api/extension-modules.rst:13 -msgid "" -"To be importable by default (that is, " -"by :py:class:`importlib.machinery.ExtensionFileLoader`), the shared library " -"must be available on :py:attr:`sys.path`, and must be named after the module " -"name plus an extension listed " -"in :py:attr:`importlib.machinery.EXTENSION_SUFFIXES`." +msgid "To be importable by default (that is, by :py:class:`importlib.machinery.ExtensionFileLoader`), the shared library must be available on :py:attr:`sys.path`, and must be named after the module name plus an extension listed in :py:attr:`importlib.machinery.EXTENSION_SUFFIXES`." msgstr "" -#: ../../c-api/extension-modules.rst:21 -msgid "" -"Building, packaging and distributing extension modules is best done with " -"third-party tools, and is out of scope of this document. One suitable tool " -"is Setuptools, whose documentation can be found at https://" -"setuptools.pypa.io/en/latest/setuptools.html." +msgid "Building, packaging and distributing extension modules is best done with third-party tools, and is out of scope of this document. One suitable tool is Setuptools, whose documentation can be found at https://setuptools.pypa.io/en/latest/setuptools.html." msgstr "" -#: ../../c-api/extension-modules.rst:26 -msgid "" -"Normally, the initialization function returns a module definition " -"initialized using :c:func:`PyModuleDef_Init`. This allows splitting the " -"creation process into several phases:" +msgid "Normally, the initialization function returns a module definition initialized using :c:func:`PyModuleDef_Init`. This allows splitting the creation process into several phases:" msgstr "" -#: ../../c-api/extension-modules.rst:30 -msgid "" -"Before any substantial code is executed, Python can determine which " -"capabilities the module supports, and it can adjust the environment or " -"refuse loading an incompatible extension." +msgid "Before any substantial code is executed, Python can determine which capabilities the module supports, and it can adjust the environment or refuse loading an incompatible extension." msgstr "" -#: ../../c-api/extension-modules.rst:33 -msgid "" -"By default, Python itself creates the module object -- that is, it does the " -"equivalent of :py:meth:`object.__new__` for classes. It also sets initial " -"attributes like :attr:`~module.__package__` and :attr:`~module.__loader__`." +msgid "By default, Python itself creates the module object -- that is, it does the equivalent of :py:meth:`object.__new__` for classes. It also sets initial attributes like :attr:`~module.__package__` and :attr:`~module.__loader__`." msgstr "" -#: ../../c-api/extension-modules.rst:37 -msgid "" -"Afterwards, the module object is initialized using extension-specific code " -"-- the equivalent of :py:meth:`~object.__init__` on classes." +msgid "Afterwards, the module object is initialized using extension-specific code -- the equivalent of :py:meth:`~object.__init__` on classes." msgstr "" -#: ../../c-api/extension-modules.rst:40 -msgid "" -"This is called *multi-phase initialization* to distinguish it from the " -"legacy (but still supported) *single-phase initialization* scheme, where the " -"initialization function returns a fully constructed module. See " -"the :ref:`single-phase-initialization section below ` for details." +msgid "This is called *multi-phase initialization* to distinguish it from the legacy (but still supported) *single-phase initialization* scheme, where the initialization function returns a fully constructed module. See the :ref:`single-phase-initialization section below ` for details." msgstr "" -#: ../../c-api/extension-modules.rst:48 msgid "Added support for multi-phase initialization (:pep:`489`)." msgstr "" -#: ../../c-api/extension-modules.rst:52 msgid "Multiple module instances" msgstr "" -#: ../../c-api/extension-modules.rst:54 -msgid "" -"By default, extension modules are not singletons. For example, if " -"the :py:attr:`sys.modules` entry is removed and the module is re-imported, a " -"new module object is created, and typically populated with fresh method and " -"type objects. The old module is subject to normal garbage collection. This " -"mirrors the behavior of pure-Python modules." +msgid "By default, extension modules are not singletons. For example, if the :py:attr:`sys.modules` entry is removed and the module is re-imported, a new module object is created, and typically populated with fresh method and type objects. The old module is subject to normal garbage collection. This mirrors the behavior of pure-Python modules." msgstr "" -#: ../../c-api/extension-modules.rst:61 -msgid "" -"Additional module instances may be created in :ref:`sub-interpreters ` or after Python runtime reinitialization " -"(:c:func:`Py_Finalize` and :c:func:`Py_Initialize`). In these cases, sharing " -"Python objects between module instances would likely cause crashes or " -"undefined behavior." +msgid "Additional module instances may be created in :ref:`sub-interpreters ` or after Python runtime reinitialization (:c:func:`Py_Finalize` and :c:func:`Py_Initialize`). In these cases, sharing Python objects between module instances would likely cause crashes or undefined behavior." msgstr "" -#: ../../c-api/extension-modules.rst:68 -msgid "" -"To avoid such issues, each instance of an extension module should be " -"*isolated*: changes to one instance should not implicitly affect the others, " -"and all state owned by the module, including references to Python objects, " -"should be specific to a particular module instance. See :ref:`isolating-" -"extensions-howto` for more details and a practical guide." +msgid "To avoid such issues, each instance of an extension module should be *isolated*: changes to one instance should not implicitly affect the others, and all state owned by the module, including references to Python objects, should be specific to a particular module instance. See :ref:`isolating-extensions-howto` for more details and a practical guide." msgstr "" -#: ../../c-api/extension-modules.rst:74 -msgid "" -"A simpler way to avoid these issues is :ref:`raising an error on repeated " -"initialization `." +msgid "A simpler way to avoid these issues is :ref:`raising an error on repeated initialization `." msgstr "" -#: ../../c-api/extension-modules.rst:77 -msgid "" -"All modules are expected to support :ref:`sub-interpreters `, or otherwise explicitly signal a lack of support. This is usually " -"achieved by isolation or blocking repeated initialization, as above. A " -"module may also be limited to the main interpreter using " -"the :c:data:`Py_mod_multiple_interpreters` slot." +msgid "All modules are expected to support :ref:`sub-interpreters `, or otherwise explicitly signal a lack of support. This is usually achieved by isolation or blocking repeated initialization, as above. A module may also be limited to the main interpreter using the :c:data:`Py_mod_multiple_interpreters` slot." msgstr "" -#: ../../c-api/extension-modules.rst:89 msgid "Initialization function" msgstr "" -#: ../../c-api/extension-modules.rst:91 -msgid "" -"The initialization function defined by an extension module has the following " -"signature:" +msgid "The initialization function defined by an extension module has the following signature:" msgstr "" -#: ../../c-api/extension-modules.rst:96 -msgid "" -"Its name should be :samp:`PyInit_{}`, with ```` replaced by the " -"name of the module." +msgid "Its name should be :samp:`PyInit_{}`, with ```` replaced by the name of the module." msgstr "" -#: ../../c-api/extension-modules.rst:99 -msgid "" -"For modules with ASCII-only names, the function must instead be " -"named :samp:`PyInit_{}`, with ```` replaced by the name of the " -"module. When using :ref:`multi-phase-initialization`, non-ASCII module names " -"are allowed. In this case, the initialization function name " -"is :samp:`PyInitU_{}`, with ```` encoded using Python's " -"*punycode* encoding with hyphens replaced by underscores. In Python:" +msgid "For modules with ASCII-only names, the function must instead be named :samp:`PyInit_{}`, with ```` replaced by the name of the module. When using :ref:`multi-phase-initialization`, non-ASCII module names are allowed. In this case, the initialization function name is :samp:`PyInitU_{}`, with ```` encoded using Python's *punycode* encoding with hyphens replaced by underscores. In Python:" msgstr "" -#: ../../c-api/extension-modules.rst:106 msgid "" "def initfunc_name(name):\n" " try:\n" @@ -170,32 +88,24 @@ msgid "" " return b'PyInit' + suffix" msgstr "" -#: ../../c-api/extension-modules.rst:115 -msgid "" -"It is recommended to define the initialization function using a helper macro:" +msgid "It is recommended to define the initialization function using a helper macro:" msgstr "" -#: ../../c-api/extension-modules.rst:119 msgid "Declare an extension module initialization function. This macro:" msgstr "" -#: ../../c-api/extension-modules.rst:122 msgid "specifies the :c:expr:`PyObject*` return type," msgstr "" -#: ../../c-api/extension-modules.rst:123 msgid "adds any special linkage declarations required by the platform, and" msgstr "" -#: ../../c-api/extension-modules.rst:124 msgid "for C++, declares the function as ``extern \"C\"``." msgstr "" -#: ../../c-api/extension-modules.rst:126 msgid "For example, a module called ``spam`` would be defined like this::" msgstr "" -#: ../../c-api/extension-modules.rst:128 msgid "" "static struct PyModuleDef spam_module = {\n" " .m_base = PyModuleDef_HEAD_INIT,\n" @@ -210,102 +120,51 @@ msgid "" "}" msgstr "" -#: ../../c-api/extension-modules.rst:140 -msgid "" -"It is possible to export multiple modules from a single shared library by " -"defining multiple initialization functions. However, importing them requires " -"using symbolic links or a custom importer, because by default only the " -"function corresponding to the filename is found. See the `Multiple modules " -"in one library `__ section in :pep:`489` for details." +msgid "It is possible to export multiple modules from a single shared library by defining multiple initialization functions. However, importing them requires using symbolic links or a custom importer, because by default only the function corresponding to the filename is found. See the `Multiple modules in one library `__ section in :pep:`489` for details." msgstr "" -#: ../../c-api/extension-modules.rst:147 -msgid "" -"The initialization function is typically the only non-\\ ``static`` item " -"defined in the module's C source." +msgid "The initialization function is typically the only non-\\ ``static`` item defined in the module's C source." msgstr "" -#: ../../c-api/extension-modules.rst:154 msgid "Multi-phase initialization" msgstr "" -#: ../../c-api/extension-modules.rst:156 -msgid "" -"Normally, the :ref:`initialization function ` " -"(``PyInit_modulename``) returns a :c:type:`PyModuleDef` instance with non-" -"``NULL`` :c:member:`~PyModuleDef.m_slots`. Before it is returned, the " -"``PyModuleDef`` instance must be initialized using the following function:" +msgid "Normally, the :ref:`initialization function ` (``PyInit_modulename``) returns a :c:type:`PyModuleDef` instance with non-``NULL`` :c:member:`~PyModuleDef.m_slots`. Before it is returned, the ``PyModuleDef`` instance must be initialized using the following function:" msgstr "" -#: ../../c-api/extension-modules.rst:165 -msgid "" -"Ensure a module definition is a properly initialized Python object that " -"correctly reports its type and a reference count." +msgid "Ensure a module definition is a properly initialized Python object that correctly reports its type and a reference count." msgstr "" -#: ../../c-api/extension-modules.rst:168 msgid "Return *def* cast to ``PyObject*``, or ``NULL`` if an error occurred." msgstr "" -#: ../../c-api/extension-modules.rst:170 -msgid "" -"Calling this function is required for :ref:`multi-phase-initialization`. It " -"should not be used in other contexts." +msgid "Calling this function is required for :ref:`multi-phase-initialization`. It should not be used in other contexts." msgstr "" -#: ../../c-api/extension-modules.rst:173 -msgid "" -"Note that Python assumes that ``PyModuleDef`` structures are statically " -"allocated. This function may return either a new reference or a borrowed " -"one; this reference must not be released." +msgid "Note that Python assumes that ``PyModuleDef`` structures are statically allocated. This function may return either a new reference or a borrowed one; this reference must not be released." msgstr "" -#: ../../c-api/extension-modules.rst:184 msgid "Legacy single-phase initialization" msgstr "" -#: ../../c-api/extension-modules.rst:187 -msgid "" -"Single-phase initialization is a legacy mechanism to initialize extension " -"modules, with known drawbacks and design flaws. Extension module authors are " -"encouraged to use multi-phase initialization instead." +msgid "Single-phase initialization is a legacy mechanism to initialize extension modules, with known drawbacks and design flaws. Extension module authors are encouraged to use multi-phase initialization instead." msgstr "" -#: ../../c-api/extension-modules.rst:191 -msgid "" -"In single-phase initialization, the :ref:`initialization function ` (``PyInit_modulename``) should create, populate and return a " -"module object. This is typically done using :c:func:`PyModule_Create` and " -"functions like :c:func:`PyModule_AddObjectRef`." +msgid "In single-phase initialization, the :ref:`initialization function ` (``PyInit_modulename``) should create, populate and return a module object. This is typically done using :c:func:`PyModule_Create` and functions like :c:func:`PyModule_AddObjectRef`." msgstr "" -#: ../../c-api/extension-modules.rst:197 -msgid "" -"Single-phase initialization differs from the :ref:`default ` in the following ways:" +msgid "Single-phase initialization differs from the :ref:`default ` in the following ways:" msgstr "" -#: ../../c-api/extension-modules.rst:200 msgid "Single-phase modules are, or rather *contain*, “singletons”." msgstr "" -#: ../../c-api/extension-modules.rst:202 -msgid "" -"When the module is first initialized, Python saves the contents of the " -"module's ``__dict__`` (that is, typically, the module's functions and types)." +msgid "When the module is first initialized, Python saves the contents of the module's ``__dict__`` (that is, typically, the module's functions and types)." msgstr "" -#: ../../c-api/extension-modules.rst:206 -msgid "" -"For subsequent imports, Python does not call the initialization function " -"again. Instead, it creates a new module object with a new ``__dict__``, and " -"copies the saved contents to it. For example, given a single-phase module " -"``_testsinglephase`` [#testsinglephase]_ that defines a function ``sum`` and " -"an exception class ``error``:" +msgid "For subsequent imports, Python does not call the initialization function again. Instead, it creates a new module object with a new ``__dict__``, and copies the saved contents to it. For example, given a single-phase module ``_testsinglephase`` [#testsinglephase]_ that defines a function ``sum`` and an exception class ``error``:" msgstr "" -#: ../../c-api/extension-modules.rst:214 msgid "" ">>> import sys\n" ">>> import _testsinglephase as one\n" @@ -321,38 +180,20 @@ msgid "" "True" msgstr "" -#: ../../c-api/extension-modules.rst:229 -msgid "" -"The exact behavior should be considered a CPython implementation detail." +msgid "The exact behavior should be considered a CPython implementation detail." msgstr "" -#: ../../c-api/extension-modules.rst:231 -msgid "" -"To work around the fact that ``PyInit_modulename`` does not take a *spec* " -"argument, some state of the import machinery is saved and applied to the " -"first suitable module created during the ``PyInit_modulename`` call. " -"Specifically, when a sub-module is imported, this mechanism prepends the " -"parent package name to the name of the module." +msgid "To work around the fact that ``PyInit_modulename`` does not take a *spec* argument, some state of the import machinery is saved and applied to the first suitable module created during the ``PyInit_modulename`` call. Specifically, when a sub-module is imported, this mechanism prepends the parent package name to the name of the module." msgstr "" -#: ../../c-api/extension-modules.rst:237 -msgid "" -"A single-phase ``PyInit_modulename`` function should create “its” module " -"object as soon as possible, before any other module objects can be created." +msgid "A single-phase ``PyInit_modulename`` function should create “its” module object as soon as possible, before any other module objects can be created." msgstr "" -#: ../../c-api/extension-modules.rst:240 msgid "Non-ASCII module names (``PyInitU_modulename``) are not supported." msgstr "" -#: ../../c-api/extension-modules.rst:242 -msgid "" -"Single-phase modules support module lookup functions " -"like :c:func:`PyState_FindModule`." +msgid "Single-phase modules support module lookup functions like :c:func:`PyState_FindModule`." msgstr "" -#: ../../c-api/extension-modules.rst:245 -msgid "" -"``_testsinglephase`` is an internal module used in CPython's self-test " -"suite; your installation may or may not include it." +msgid "``_testsinglephase`` is an internal module used in CPython's self-test suite; your installation may or may not include it." msgstr "" diff --git a/c-api/file.po b/c-api/file.po index 42675876..a8a9239a 100644 --- a/c-api/file.po +++ b/c-api/file.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:48+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -22,195 +22,95 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../c-api/file.rst:6 msgid "File objects" msgstr "" -#: ../../c-api/file.rst:10 -msgid "" -"These APIs are a minimal emulation of the Python 2 C API for built-in file " -"objects, which used to rely on the buffered I/O (:c:expr:`FILE*`) support " -"from the C standard library. In Python 3, files and streams use the " -"new :mod:`io` module, which defines several layers over the low-level " -"unbuffered I/O of the operating system. The functions described below are " -"convenience C wrappers over these new APIs, and meant mostly for internal " -"error reporting in the interpreter; third-party code is advised to access " -"the :mod:`io` APIs instead." +msgid "These APIs are a minimal emulation of the Python 2 C API for built-in file objects, which used to rely on the buffered I/O (:c:expr:`FILE*`) support from the C standard library. In Python 3, files and streams use the new :mod:`io` module, which defines several layers over the low-level unbuffered I/O of the operating system. The functions described below are convenience C wrappers over these new APIs, and meant mostly for internal error reporting in the interpreter; third-party code is advised to access the :mod:`io` APIs instead." msgstr "" -#: ../../c-api/file.rst:22 -msgid "" -"Create a Python file object from the file descriptor of an already opened " -"file *fd*. The arguments *name*, *encoding*, *errors* and *newline* can be " -"``NULL`` to use the defaults; *buffering* can be *-1* to use the default. " -"*name* is ignored and kept for backward compatibility. Return ``NULL`` on " -"failure. For a more comprehensive description of the arguments, please refer " -"to the :func:`io.open` function documentation." +msgid "Create a Python file object from the file descriptor of an already opened file *fd*. The arguments *name*, *encoding*, *errors* and *newline* can be ``NULL`` to use the defaults; *buffering* can be *-1* to use the default. *name* is ignored and kept for backward compatibility. Return ``NULL`` on failure. For a more comprehensive description of the arguments, please refer to the :func:`io.open` function documentation." msgstr "" -#: ../../c-api/file.rst:31 -msgid "" -"Since Python streams have their own buffering layer, mixing them with OS-" -"level file descriptors can produce various issues (such as unexpected " -"ordering of data)." +msgid "Since Python streams have their own buffering layer, mixing them with OS-level file descriptors can produce various issues (such as unexpected ordering of data)." msgstr "" -#: ../../c-api/file.rst:35 msgid "Ignore *name* attribute." msgstr "" -#: ../../c-api/file.rst:41 -msgid "" -"Return the file descriptor associated with *p* as an :c:expr:`int`. If the " -"object is an integer, its value is returned. If not, the " -"object's :meth:`~io.IOBase.fileno` method is called if it exists; the method " -"must return an integer, which is returned as the file descriptor value. " -"Sets an exception and returns ``-1`` on failure." +msgid "Return the file descriptor associated with *p* as an :c:expr:`int`. If the object is an integer, its value is returned. If not, the object's :meth:`~io.IOBase.fileno` method is called if it exists; the method must return an integer, which is returned as the file descriptor value. Sets an exception and returns ``-1`` on failure." msgstr "" -#: ../../c-api/file.rst:52 -msgid "" -"Equivalent to ``p.readline([n])``, this function reads one line from the " -"object *p*. *p* may be a file object or any object with " -"a :meth:`~io.IOBase.readline` method. If *n* is ``0``, exactly one line is " -"read, regardless of the length of the line. If *n* is greater than ``0``, " -"no more than *n* bytes will be read from the file; a partial line can be " -"returned. In both cases, an empty string is returned if the end of the file " -"is reached immediately. If *n* is less than ``0``, however, one line is " -"read regardless of length, but :exc:`EOFError` is raised if the end of the " -"file is reached immediately." -msgstr "" - -#: ../../c-api/file.rst:65 -msgid "" -"Overrides the normal behavior of :func:`io.open_code` to pass its parameter " -"through the provided handler." +msgid "Equivalent to ``p.readline([n])``, this function reads one line from the object *p*. *p* may be a file object or any object with a :meth:`~io.IOBase.readline` method. If *n* is ``0``, exactly one line is read, regardless of the length of the line. If *n* is greater than ``0``, no more than *n* bytes will be read from the file; a partial line can be returned. In both cases, an empty string is returned if the end of the file is reached immediately. If *n* is less than ``0``, however, one line is read regardless of length, but :exc:`EOFError` is raised if the end of the file is reached immediately." +msgstr "" + +msgid "Overrides the normal behavior of :func:`io.open_code` to pass its parameter through the provided handler." msgstr "" -#: ../../c-api/file.rst:68 msgid "The *handler* is a function of type:" msgstr "" -#: ../../c-api/file.rst:73 -msgid "" -"Equivalent of :c:expr:`PyObject *(\\*)(PyObject *path, void *userData)`, " -"where *path* is guaranteed to be :c:type:`PyUnicodeObject`." +msgid "Equivalent of :c:expr:`PyObject *(\\*)(PyObject *path, void *userData)`, where *path* is guaranteed to be :c:type:`PyUnicodeObject`." msgstr "" -#: ../../c-api/file.rst:77 -msgid "" -"The *userData* pointer is passed into the hook function. Since hook " -"functions may be called from different runtimes, this pointer should not " -"refer directly to Python state." +msgid "The *userData* pointer is passed into the hook function. Since hook functions may be called from different runtimes, this pointer should not refer directly to Python state." msgstr "" -#: ../../c-api/file.rst:81 -msgid "" -"As this hook is intentionally used during import, avoid importing new " -"modules during its execution unless they are known to be frozen or available " -"in ``sys.modules``." +msgid "As this hook is intentionally used during import, avoid importing new modules during its execution unless they are known to be frozen or available in ``sys.modules``." msgstr "" -#: ../../c-api/file.rst:85 -msgid "" -"Once a hook has been set, it cannot be removed or replaced, and later calls " -"to :c:func:`PyFile_SetOpenCodeHook` will fail. On failure, the function " -"returns -1 and sets an exception if the interpreter has been initialized." +msgid "Once a hook has been set, it cannot be removed or replaced, and later calls to :c:func:`PyFile_SetOpenCodeHook` will fail. On failure, the function returns -1 and sets an exception if the interpreter has been initialized." msgstr "" -#: ../../c-api/file.rst:89 msgid "This function is safe to call before :c:func:`Py_Initialize`." msgstr "" -#: ../../c-api/file.rst:91 -msgid "" -"Raises an :ref:`auditing event ` ``setopencodehook`` with no " -"arguments." +msgid "Raises an :ref:`auditing event ` ``setopencodehook`` with no arguments." msgstr "" -#: ../../c-api/file.rst:98 -msgid "" -"Open *path* with the mode ``'rb'``. *path* must be a Python :class:`str` " -"object. The behavior of this function may be overridden " -"by :c:func:`PyFile_SetOpenCodeHook` to allow for some preprocessing of the " -"text." +msgid "Open *path* with the mode ``'rb'``. *path* must be a Python :class:`str` object. The behavior of this function may be overridden by :c:func:`PyFile_SetOpenCodeHook` to allow for some preprocessing of the text." msgstr "" -#: ../../c-api/file.rst:103 msgid "This is analogous to :func:`io.open_code` in Python." msgstr "" -#: ../../c-api/file.rst:105 -msgid "" -"On success, this function returns a :term:`strong reference` to a Python " -"file object. On failure, this function returns ``NULL`` with an exception " -"set." +msgid "On success, this function returns a :term:`strong reference` to a Python file object. On failure, this function returns ``NULL`` with an exception set." msgstr "" -#: ../../c-api/file.rst:114 -msgid "" -"Similar to :c:func:`PyFile_OpenCodeObject`, but *path* is a UTF-8 " -"encoded :c:expr:`const char*`." +msgid "Similar to :c:func:`PyFile_OpenCodeObject`, but *path* is a UTF-8 encoded :c:expr:`const char*`." msgstr "" -#: ../../c-api/file.rst:124 -msgid "" -"Write object *obj* to file object *p*. The only supported flag for *flags* " -"is :c:macro:`Py_PRINT_RAW`; if given, the :func:`str` of the object is " -"written instead of the :func:`repr`." +msgid "Write object *obj* to file object *p*. The only supported flag for *flags* is :c:macro:`Py_PRINT_RAW`; if given, the :func:`str` of the object is written instead of the :func:`repr`." msgstr "" -#: ../../c-api/file.rst:128 msgid "If *obj* is ``NULL``, write the string ``\"\"``." msgstr "" -#: ../../c-api/file.rst:130 -msgid "" -"Return ``0`` on success or ``-1`` on failure; the appropriate exception will " -"be set." +msgid "Return ``0`` on success or ``-1`` on failure; the appropriate exception will be set." msgstr "" -#: ../../c-api/file.rst:135 -msgid "" -"Write string *s* to file object *p*. Return ``0`` on success or ``-1`` on " -"failure; the appropriate exception will be set." +msgid "Write string *s* to file object *p*. Return ``0`` on success or ``-1`` on failure; the appropriate exception will be set." msgstr "" -#: ../../c-api/file.rst:140 msgid "Soft-deprecated API" msgstr "" -#: ../../c-api/file.rst:144 -msgid "" -"These are APIs that were included in Python's C API by mistake. They are " -"documented solely for completeness; use other ``PyFile*`` APIs instead." +msgid "These are APIs that were included in Python's C API by mistake. They are documented solely for completeness; use other ``PyFile*`` APIs instead." msgstr "" -#: ../../c-api/file.rst:150 -msgid "" -"Use :c:func:`PyFile_FromFd` with defaults (``fd, NULL, \"w\", -1, NULL, " -"NULL, NULL, 0``) instead." +msgid "Use :c:func:`PyFile_FromFd` with defaults (``fd, NULL, \"w\", -1, NULL, NULL, NULL, 0``) instead." msgstr "" -#: ../../c-api/file.rst:154 -msgid "" -"Type of file-like objects used internally at Python startup " -"when :py:mod:`io` is not yet available. Use Python :py:func:`open` " -"or :c:func:`PyFile_FromFd` to create file objects instead." +msgid "Type of file-like objects used internally at Python startup when :py:mod:`io` is not yet available. Use Python :py:func:`open` or :c:func:`PyFile_FromFd` to create file objects instead." msgstr "" -#: ../../c-api/file.rst:8 msgid "object" msgstr "" -#: ../../c-api/file.rst:8 msgid "file" msgstr "" -#: ../../c-api/file.rst:50 msgid "EOFError (built-in exception)" msgstr "" -#: ../../c-api/file.rst:122 msgid "Py_PRINT_RAW (C macro)" msgstr "" diff --git a/c-api/float.po b/c-api/float.po index 9e9b16e3..55d61abd 100644 --- a/c-api/float.po +++ b/c-api/float.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:48+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -22,322 +22,176 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../c-api/float.rst:6 msgid "Floating-Point Objects" msgstr "" -#: ../../c-api/float.rst:13 -msgid "" -"This subtype of :c:type:`PyObject` represents a Python floating-point object." +msgid "This subtype of :c:type:`PyObject` represents a Python floating-point object." msgstr "" -#: ../../c-api/float.rst:18 -msgid "" -"This instance of :c:type:`PyTypeObject` represents the Python floating-point " -"type. This is the same object as :class:`float` in the Python layer." +msgid "This instance of :c:type:`PyTypeObject` represents the Python floating-point type. This is the same object as :class:`float` in the Python layer." msgstr "" -#: ../../c-api/float.rst:24 -msgid "" -"Return true if its argument is a :c:type:`PyFloatObject` or a subtype " -"of :c:type:`PyFloatObject`. This function always succeeds." +msgid "Return true if its argument is a :c:type:`PyFloatObject` or a subtype of :c:type:`PyFloatObject`. This function always succeeds." msgstr "" -#: ../../c-api/float.rst:30 -msgid "" -"Return true if its argument is a :c:type:`PyFloatObject`, but not a subtype " -"of :c:type:`PyFloatObject`. This function always succeeds." +msgid "Return true if its argument is a :c:type:`PyFloatObject`, but not a subtype of :c:type:`PyFloatObject`. This function always succeeds." msgstr "" -#: ../../c-api/float.rst:36 -msgid "" -"Create a :c:type:`PyFloatObject` object based on the string value in *str*, " -"or ``NULL`` on failure." +msgid "Create a :c:type:`PyFloatObject` object based on the string value in *str*, or ``NULL`` on failure." msgstr "" -#: ../../c-api/float.rst:42 -msgid "" -"Create a :c:type:`PyFloatObject` object from *v*, or ``NULL`` on failure." +msgid "Create a :c:type:`PyFloatObject` object from *v*, or ``NULL`` on failure." msgstr "" -#: ../../c-api/float.rst:47 -msgid "" -"Return a C :c:expr:`double` representation of the contents of *pyfloat*. If " -"*pyfloat* is not a Python floating-point object but has " -"a :meth:`~object.__float__` method, this method will first be called to " -"convert *pyfloat* into a float. If :meth:`!__float__` is not defined then it " -"falls back to :meth:`~object.__index__`. This method returns ``-1.0`` upon " -"failure, so one should call :c:func:`PyErr_Occurred` to check for errors." +msgid "Return a C :c:expr:`double` representation of the contents of *pyfloat*. If *pyfloat* is not a Python floating-point object but has a :meth:`~object.__float__` method, this method will first be called to convert *pyfloat* into a float. If :meth:`!__float__` is not defined then it falls back to :meth:`~object.__index__`. This method returns ``-1.0`` upon failure, so one should call :c:func:`PyErr_Occurred` to check for errors." msgstr "" -#: ../../c-api/float.rst:54 msgid "Use :meth:`~object.__index__` if available." msgstr "" -#: ../../c-api/float.rst:60 -msgid "" -"Return a C :c:expr:`double` representation of the contents of *pyfloat*, but " -"without error checking." +msgid "Return a C :c:expr:`double` representation of the contents of *pyfloat*, but without error checking." msgstr "" -#: ../../c-api/float.rst:66 -msgid "" -"Return a structseq instance which contains information about the precision, " -"minimum and maximum values of a float. It's a thin wrapper around the header " -"file :file:`float.h`." +msgid "Return a structseq instance which contains information about the precision, minimum and maximum values of a float. It's a thin wrapper around the header file :file:`float.h`." msgstr "" -#: ../../c-api/float.rst:73 -msgid "" -"Return the maximum representable finite float *DBL_MAX* as " -"C :c:expr:`double`." +msgid "Return the maximum representable finite float *DBL_MAX* as C :c:expr:`double`." msgstr "" -#: ../../c-api/float.rst:78 -msgid "" -"Return the minimum normalized positive float *DBL_MIN* as C :c:expr:`double`." +msgid "Return the minimum normalized positive float *DBL_MIN* as C :c:expr:`double`." msgstr "" -#: ../../c-api/float.rst:83 -msgid "" -"This macro expands to a constant expression of type :c:expr:`double`, that " -"represents the positive infinity." +msgid "This macro expands to a constant expression of type :c:expr:`double`, that represents the positive infinity." msgstr "" -#: ../../c-api/float.rst:86 -msgid "" -"On most platforms, this is equivalent to the :c:macro:`!INFINITY` macro from " -"the C11 standard ```` header." +msgid "On most platforms, this is equivalent to the :c:macro:`!INFINITY` macro from the C11 standard ```` header." msgstr "" -#: ../../c-api/float.rst:92 -msgid "" -"This macro expands to a constant expression of type :c:expr:`double`, that " -"represents a quiet not-a-number (qNaN) value." +msgid "This macro expands to a constant expression of type :c:expr:`double`, that represents a quiet not-a-number (qNaN) value." msgstr "" -#: ../../c-api/float.rst:95 -msgid "" -"On most platforms, this is equivalent to the :c:macro:`!NAN` macro from the " -"C11 standard ```` header." +msgid "On most platforms, this is equivalent to the :c:macro:`!NAN` macro from the C11 standard ```` header." msgstr "" -#: ../../c-api/float.rst:101 msgid "Equivalent to :c:macro:`!INFINITY`." msgstr "" -#: ../../c-api/float.rst:103 msgid "The macro is :term:`soft deprecated`." msgstr "" -#: ../../c-api/float.rst:109 -msgid "" -"The definition (accurate for a :c:expr:`double` type) of the :data:`math.e` " -"constant." +msgid "The definition (accurate for a :c:expr:`double` type) of the :data:`math.e` constant." msgstr "" -#: ../../c-api/float.rst:114 msgid "High precision (long double) definition of :data:`~math.e` constant." msgstr "" -#: ../../c-api/float.rst:119 -msgid "" -"The definition (accurate for a :c:expr:`double` type) of the :data:`math.pi` " -"constant." +msgid "The definition (accurate for a :c:expr:`double` type) of the :data:`math.pi` constant." msgstr "" -#: ../../c-api/float.rst:124 msgid "High precision (long double) definition of :data:`~math.pi` constant." msgstr "" -#: ../../c-api/float.rst:129 -msgid "" -"The definition (accurate for a :c:expr:`double` type) of " -"the :data:`math.tau` constant." +msgid "The definition (accurate for a :c:expr:`double` type) of the :data:`math.tau` constant." msgstr "" -#: ../../c-api/float.rst:136 msgid "Return :data:`math.nan` from a function." msgstr "" -#: ../../c-api/float.rst:138 -msgid "" -"On most platforms, this is equivalent to ``return PyFloat_FromDouble(NAN)``." +msgid "On most platforms, this is equivalent to ``return PyFloat_FromDouble(NAN)``." msgstr "" -#: ../../c-api/float.rst:143 -msgid "" -"Return :data:`math.inf` or :data:`-math.inf ` from a function, " -"depending on the sign of *sign*." +msgid "Return :data:`math.inf` or :data:`-math.inf ` from a function, depending on the sign of *sign*." msgstr "" -#: ../../c-api/float.rst:146 msgid "On most platforms, this is equivalent to the following::" msgstr "" -#: ../../c-api/float.rst:148 msgid "return PyFloat_FromDouble(copysign(INFINITY, sign));" msgstr "" -#: ../../c-api/float.rst:153 -msgid "" -"Return ``1`` if the given floating-point number *X* is finite, that is, it " -"is normal, subnormal or zero, but not infinite or NaN. Return ``0`` " -"otherwise." +msgid "Return ``1`` if the given floating-point number *X* is finite, that is, it is normal, subnormal or zero, but not infinite or NaN. Return ``0`` otherwise." msgstr "" -#: ../../c-api/float.rst:157 -msgid "" -"The macro is :term:`soft deprecated`. Use :c:macro:`!isfinite` instead." +msgid "The macro is :term:`soft deprecated`. Use :c:macro:`!isfinite` instead." msgstr "" -#: ../../c-api/float.rst:163 -msgid "" -"Return ``1`` if the given floating-point number *X* is positive or negative " -"infinity. Return ``0`` otherwise." +msgid "Return ``1`` if the given floating-point number *X* is positive or negative infinity. Return ``0`` otherwise." msgstr "" -#: ../../c-api/float.rst:166 msgid "The macro is :term:`soft deprecated`. Use :c:macro:`!isinf` instead." msgstr "" -#: ../../c-api/float.rst:172 -msgid "" -"Return ``1`` if the given floating-point number *X* is a not-a-number (NaN) " -"value. Return ``0`` otherwise." +msgid "Return ``1`` if the given floating-point number *X* is a not-a-number (NaN) value. Return ``0`` otherwise." msgstr "" -#: ../../c-api/float.rst:175 msgid "The macro is :term:`soft deprecated`. Use :c:macro:`!isnan` instead." msgstr "" -#: ../../c-api/float.rst:180 msgid "Pack and Unpack functions" msgstr "" -#: ../../c-api/float.rst:182 -msgid "" -"The pack and unpack functions provide an efficient platform-independent way " -"to store floating-point values as byte strings. The Pack routines produce a " -"bytes string from a C :c:expr:`double`, and the Unpack routines produce a " -"C :c:expr:`double` from such a bytes string. The suffix (2, 4 or 8) " -"specifies the number of bytes in the bytes string." +msgid "The pack and unpack functions provide an efficient platform-independent way to store floating-point values as byte strings. The Pack routines produce a bytes string from a C :c:expr:`double`, and the Unpack routines produce a C :c:expr:`double` from such a bytes string. The suffix (2, 4 or 8) specifies the number of bytes in the bytes string." msgstr "" -#: ../../c-api/float.rst:188 -msgid "" -"On platforms that appear to use IEEE 754 formats these functions work by " -"copying bits. On other platforms, the 2-byte format is identical to the IEEE " -"754 binary16 half-precision format, the 4-byte format (32-bit) is identical " -"to the IEEE 754 binary32 single precision format, and the 8-byte format to " -"the IEEE 754 binary64 double precision format, although the packing of INFs " -"and NaNs (if such things exist on the platform) isn't handled correctly, and " -"attempting to unpack a bytes string containing an IEEE INF or NaN will raise " -"an exception." +msgid "On platforms that appear to use IEEE 754 formats these functions work by copying bits. On other platforms, the 2-byte format is identical to the IEEE 754 binary16 half-precision format, the 4-byte format (32-bit) is identical to the IEEE 754 binary32 single precision format, and the 8-byte format to the IEEE 754 binary64 double precision format, although the packing of INFs and NaNs (if such things exist on the platform) isn't handled correctly, and attempting to unpack a bytes string containing an IEEE INF or NaN will raise an exception." msgstr "" -#: ../../c-api/float.rst:197 -msgid "" -"Note that NaN type may not be preserved on IEEE platforms (signaling NaNs " -"become quiet NaNs), for example on x86 systems in 32-bit mode." +msgid "Note that NaN type may not be preserved on IEEE platforms (signaling NaNs become quiet NaNs), for example on x86 systems in 32-bit mode." msgstr "" -#: ../../c-api/float.rst:200 -msgid "" -"On non-IEEE platforms with more precision, or larger dynamic range, than " -"IEEE 754 supports, not all values can be packed; on non-IEEE platforms with " -"less precision, or smaller dynamic range, not all values can be unpacked. " -"What happens in such cases is partly accidental (alas)." +msgid "On non-IEEE platforms with more precision, or larger dynamic range, than IEEE 754 supports, not all values can be packed; on non-IEEE platforms with less precision, or smaller dynamic range, not all values can be unpacked. What happens in such cases is partly accidental (alas)." msgstr "" -#: ../../c-api/float.rst:208 msgid "Pack functions" msgstr "" -#: ../../c-api/float.rst:210 -msgid "" -"The pack routines write 2, 4 or 8 bytes, starting at *p*. *le* is " -"an :c:expr:`int` argument, non-zero if you want the bytes string in little-" -"endian format (exponent last, at ``p+1``, ``p+3``, or ``p+6`` and ``p+7``), " -"zero if you want big-endian format (exponent first, at *p*). " -"The :c:macro:`PY_BIG_ENDIAN` constant can be used to use the native endian: " -"it is equal to ``1`` on big endian processor, or ``0`` on little endian " -"processor." +msgid "The pack routines write 2, 4 or 8 bytes, starting at *p*. *le* is an :c:expr:`int` argument, non-zero if you want the bytes string in little-endian format (exponent last, at ``p+1``, ``p+3``, or ``p+6`` and ``p+7``), zero if you want big-endian format (exponent first, at *p*). The :c:macro:`PY_BIG_ENDIAN` constant can be used to use the native endian: it is equal to ``1`` on big endian processor, or ``0`` on little endian processor." msgstr "" -#: ../../c-api/float.rst:217 -msgid "" -"Return value: ``0`` if all is OK, ``-1`` if error (and an exception is set, " -"most likely :exc:`OverflowError`)." +msgid "Return value: ``0`` if all is OK, ``-1`` if error (and an exception is set, most likely :exc:`OverflowError`)." msgstr "" -#: ../../c-api/float.rst:220 msgid "There are two problems on non-IEEE platforms:" msgstr "" -#: ../../c-api/float.rst:222 msgid "What this does is undefined if *x* is a NaN or infinity." msgstr "" -#: ../../c-api/float.rst:223 msgid "``-0.0`` and ``+0.0`` produce the same bytes string." msgstr "" -#: ../../c-api/float.rst:227 msgid "Pack a C double as the IEEE 754 binary16 half-precision format." msgstr "" -#: ../../c-api/float.rst:231 msgid "Pack a C double as the IEEE 754 binary32 single precision format." msgstr "" -#: ../../c-api/float.rst:235 msgid "Pack a C double as the IEEE 754 binary64 double precision format." msgstr "" -#: ../../c-api/float.rst:239 msgid "Unpack functions" msgstr "" -#: ../../c-api/float.rst:241 -msgid "" -"The unpack routines read 2, 4 or 8 bytes, starting at *p*. *le* is " -"an :c:expr:`int` argument, non-zero if the bytes string is in little-endian " -"format (exponent last, at ``p+1``, ``p+3`` or ``p+6`` and ``p+7``), zero if " -"big-endian (exponent first, at *p*). The :c:macro:`PY_BIG_ENDIAN` constant " -"can be used to use the native endian: it is equal to ``1`` on big endian " -"processor, or ``0`` on little endian processor." +msgid "The unpack routines read 2, 4 or 8 bytes, starting at *p*. *le* is an :c:expr:`int` argument, non-zero if the bytes string is in little-endian format (exponent last, at ``p+1``, ``p+3`` or ``p+6`` and ``p+7``), zero if big-endian (exponent first, at *p*). The :c:macro:`PY_BIG_ENDIAN` constant can be used to use the native endian: it is equal to ``1`` on big endian processor, or ``0`` on little endian processor." msgstr "" -#: ../../c-api/float.rst:248 -msgid "" -"Return value: The unpacked double. On error, this is ``-1.0`` " -"and :c:func:`PyErr_Occurred` is true (and an exception is set, most " -"likely :exc:`OverflowError`)." +msgid "Return value: The unpacked double. On error, this is ``-1.0`` and :c:func:`PyErr_Occurred` is true (and an exception is set, most likely :exc:`OverflowError`)." msgstr "" -#: ../../c-api/float.rst:252 -msgid "" -"Note that on a non-IEEE platform this will refuse to unpack a bytes string " -"that represents a NaN or infinity." +msgid "Note that on a non-IEEE platform this will refuse to unpack a bytes string that represents a NaN or infinity." msgstr "" -#: ../../c-api/float.rst:257 msgid "Unpack the IEEE 754 binary16 half-precision format as a C double." msgstr "" -#: ../../c-api/float.rst:261 msgid "Unpack the IEEE 754 binary32 single precision format as a C double." msgstr "" -#: ../../c-api/float.rst:265 msgid "Unpack the IEEE 754 binary64 double precision format as a C double." msgstr "" -#: ../../c-api/float.rst:8 msgid "object" msgstr "" -#: ../../c-api/float.rst:8 msgid "floating-point" msgstr "" diff --git a/c-api/frame.po b/c-api/frame.po index e0c51a89..43472525 100644 --- a/c-api/frame.po +++ b/c-api/frame.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2022-11-05 19:48+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,299 +23,183 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../c-api/frame.rst:4 msgid "Frame objects" msgstr "" -#: ../../c-api/frame.rst:8 msgid "The C structure of the objects used to describe frame objects." msgstr "" -#: ../../c-api/frame.rst:10 msgid "There are no public members in this structure." msgstr "" -#: ../../c-api/frame.rst:12 -msgid "" -"The members of this structure were removed from the public C API. Refer to " -"the :ref:`What's New entry ` for details." +msgid "The members of this structure were removed from the public C API. Refer to the :ref:`What's New entry ` for details." msgstr "" -#: ../../c-api/frame.rst:17 -msgid "" -"The :c:func:`PyEval_GetFrame` and :c:func:`PyThreadState_GetFrame` functions " -"can be used to get a frame object." +msgid "The :c:func:`PyEval_GetFrame` and :c:func:`PyThreadState_GetFrame` functions can be used to get a frame object." msgstr "" -#: ../../c-api/frame.rst:20 msgid "See also :ref:`Reflection `." msgstr "" -#: ../../c-api/frame.rst:24 -msgid "" -"The type of frame objects. It is the same object " -"as :py:class:`types.FrameType` in the Python layer." +msgid "The type of frame objects. It is the same object as :py:class:`types.FrameType` in the Python layer." msgstr "" -#: ../../c-api/frame.rst:29 -msgid "" -"Previously, this type was only available after including ````." +msgid "Previously, this type was only available after including ````." msgstr "" -#: ../../c-api/frame.rst:34 -msgid "" -"Create a new frame object. This function returns a :term:`strong reference` " -"to the new frame object on success, and returns ``NULL`` with an exception " -"set on failure." +msgid "Create a new frame object. This function returns a :term:`strong reference` to the new frame object on success, and returns ``NULL`` with an exception set on failure." msgstr "" -#: ../../c-api/frame.rst:40 msgid "Return non-zero if *obj* is a frame object." msgstr "" -#: ../../c-api/frame.rst:44 -msgid "" -"Previously, this function was only available after including " -"````." +msgid "Previously, this function was only available after including ````." msgstr "" -#: ../../c-api/frame.rst:49 msgid "Get the *frame* next outer frame." msgstr "" -#: ../../c-api/frame.rst:51 -msgid "" -"Return a :term:`strong reference`, or ``NULL`` if *frame* has no outer " -"frame. This raises no exceptions." +msgid "Return a :term:`strong reference`, or ``NULL`` if *frame* has no outer frame. This raises no exceptions." msgstr "" -#: ../../c-api/frame.rst:60 msgid "Get the *frame*'s :attr:`~frame.f_builtins` attribute." msgstr "" -#: ../../c-api/frame.rst:62 ../../c-api/frame.rst:93 msgid "Return a :term:`strong reference`. The result cannot be ``NULL``." msgstr "" -#: ../../c-api/frame.rst:69 msgid "Get the *frame* code." msgstr "" -#: ../../c-api/frame.rst:71 ../../c-api/frame.rst:137 msgid "Return a :term:`strong reference`." msgstr "" -#: ../../c-api/frame.rst:73 msgid "The result (frame code) cannot be ``NULL``." msgstr "" -#: ../../c-api/frame.rst:80 -msgid "" -"Get the generator, coroutine, or async generator that owns this frame, or " -"``NULL`` if this frame is not owned by a generator. Does not raise an " -"exception, even if the return value is ``NULL``." +msgid "Get the generator, coroutine, or async generator that owns this frame, or ``NULL`` if this frame is not owned by a generator. Does not raise an exception, even if the return value is ``NULL``." msgstr "" -#: ../../c-api/frame.rst:84 msgid "Return a :term:`strong reference`, or ``NULL``." msgstr "" -#: ../../c-api/frame.rst:91 msgid "Get the *frame*'s :attr:`~frame.f_globals` attribute." msgstr "" -#: ../../c-api/frame.rst:100 msgid "Get the *frame*'s :attr:`~frame.f_lasti` attribute." msgstr "" -#: ../../c-api/frame.rst:102 msgid "Returns -1 if ``frame.f_lasti`` is ``None``." msgstr "" -#: ../../c-api/frame.rst:109 msgid "Get the variable *name* of *frame*." msgstr "" -#: ../../c-api/frame.rst:111 msgid "Return a :term:`strong reference` to the variable value on success." msgstr "" -#: ../../c-api/frame.rst:112 -msgid "" -"Raise :exc:`NameError` and return ``NULL`` if the variable does not exist." +msgid "Raise :exc:`NameError` and return ``NULL`` if the variable does not exist." msgstr "" -#: ../../c-api/frame.rst:113 msgid "Raise an exception and return ``NULL`` on error." msgstr "" -#: ../../c-api/frame.rst:115 msgid "*name* type must be a :class:`str`." msgstr "" -#: ../../c-api/frame.rst:122 -msgid "" -"Similar to :c:func:`PyFrame_GetVar`, but the variable name is a C string " -"encoded in UTF-8." +msgid "Similar to :c:func:`PyFrame_GetVar`, but the variable name is a C string encoded in UTF-8." msgstr "" -#: ../../c-api/frame.rst:130 -msgid "" -"Get the *frame*'s :attr:`~frame.f_locals` attribute. If the frame refers to " -"an :term:`optimized scope`, this returns a write-through proxy object that " -"allows modifying the locals. In all other cases (classes, " -"modules, :func:`exec`, :func:`eval`) it returns the mapping representing the " -"frame locals directly (as described for :func:`locals`)." +msgid "Get the *frame*'s :attr:`~frame.f_locals` attribute. If the frame refers to an :term:`optimized scope`, this returns a write-through proxy object that allows modifying the locals. In all other cases (classes, modules, :func:`exec`, :func:`eval`) it returns the mapping representing the frame locals directly (as described for :func:`locals`)." msgstr "" -#: ../../c-api/frame.rst:141 -msgid "" -"As part of :pep:`667`, return an instance " -"of :c:var:`PyFrameLocalsProxy_Type`." +msgid "As part of :pep:`667`, return an instance of :c:var:`PyFrameLocalsProxy_Type`." msgstr "" -#: ../../c-api/frame.rst:147 msgid "Return the line number that *frame* is currently executing." msgstr "" -#: ../../c-api/frame.rst:151 msgid "Frame locals proxies" msgstr "" -#: ../../c-api/frame.rst:155 -msgid "" -"The :attr:`~frame.f_locals` attribute on a :ref:`frame object ` is an instance of a \"frame-locals proxy\". The proxy object " -"exposes a write-through view of the underlying locals dictionary for the " -"frame. This ensures that the variables exposed by ``f_locals`` are always up " -"to date with the live local variables in the frame itself." +msgid "The :attr:`~frame.f_locals` attribute on a :ref:`frame object ` is an instance of a \"frame-locals proxy\". The proxy object exposes a write-through view of the underlying locals dictionary for the frame. This ensures that the variables exposed by ``f_locals`` are always up to date with the live local variables in the frame itself." msgstr "" -#: ../../c-api/frame.rst:161 msgid "See :pep:`667` for more information." msgstr "" -#: ../../c-api/frame.rst:165 msgid "The type of frame :func:`locals` proxy objects." msgstr "" -#: ../../c-api/frame.rst:169 msgid "Return non-zero if *obj* is a frame :func:`locals` proxy." msgstr "" -#: ../../c-api/frame.rst:173 msgid "Legacy local variable APIs" msgstr "" -#: ../../c-api/frame.rst:175 -msgid "" -"These APIs are :term:`soft deprecated`. As of Python 3.13, they do nothing. " -"They exist solely for backwards compatibility." +msgid "These APIs are :term:`soft deprecated`. As of Python 3.13, they do nothing. They exist solely for backwards compatibility." msgstr "" -#: ../../c-api/frame.rst:181 -msgid "" -"Prior to Python 3.13, this function would copy the :attr:`~frame.f_locals` " -"attribute of *f* to the internal \"fast\" array of local variables, allowing " -"changes in frame objects to be visible to the interpreter. If *clear* was " -"true, this function would process variables that were unset in the locals " -"dictionary." +msgid "Prior to Python 3.13, this function would copy the :attr:`~frame.f_locals` attribute of *f* to the internal \"fast\" array of local variables, allowing changes in frame objects to be visible to the interpreter. If *clear* was true, this function would process variables that were unset in the locals dictionary." msgstr "" -#: ../../c-api/frame.rst:187 ../../c-api/frame.rst:198 -#: ../../c-api/frame.rst:208 msgid "This function now does nothing." msgstr "" -#: ../../c-api/frame.rst:193 -msgid "" -"Prior to Python 3.13, this function would copy the internal \"fast\" array " -"of local variables (which is used by the interpreter) to " -"the :attr:`~frame.f_locals` attribute of *f*, allowing changes in local " -"variables to be visible to frame objects." +msgid "Prior to Python 3.13, this function would copy the internal \"fast\" array of local variables (which is used by the interpreter) to the :attr:`~frame.f_locals` attribute of *f*, allowing changes in local variables to be visible to frame objects." msgstr "" -#: ../../c-api/frame.rst:204 -msgid "" -"Prior to Python 3.13, this function was similar " -"to :c:func:`PyFrame_FastToLocals`, but would return ``0`` on success, and " -"``-1`` with an exception set on failure." +msgid "Prior to Python 3.13, this function was similar to :c:func:`PyFrame_FastToLocals`, but would return ``0`` on success, and ``-1`` with an exception set on failure." msgstr "" -#: ../../c-api/frame.rst:213 msgid ":pep:`667`" msgstr "" -#: ../../c-api/frame.rst:217 msgid "Internal frames" msgstr "" -#: ../../c-api/frame.rst:219 msgid "Unless using :pep:`523`, you will not need this." msgstr "" -#: ../../c-api/frame.rst:223 msgid "The interpreter's internal frame representation." msgstr "" -#: ../../c-api/frame.rst:229 msgid "Return a :term:`strong reference` to the code object for the frame." msgstr "" -#: ../../c-api/frame.rst:236 msgid "Return the byte offset into the last executed instruction." msgstr "" -#: ../../c-api/frame.rst:243 -msgid "" -"Return the currently executing line number, or -1 if there is no line number." +msgid "Return the currently executing line number, or -1 if there is no line number." msgstr "" -#: ../../c-api/frame.rst:250 -msgid "" -"An array of executable kinds (executor types) for frames, used for internal " -"debugging and tracing." +msgid "An array of executable kinds (executor types) for frames, used for internal debugging and tracing." msgstr "" -#: ../../c-api/frame.rst:253 -msgid "" -"Tools like debuggers and profilers can use this to identify the type of " -"execution context associated with a frame (such as to filter out internal " -"frames). The entries are indexed by the following constants:" +msgid "Tools like debuggers and profilers can use this to identify the type of execution context associated with a frame (such as to filter out internal frames). The entries are indexed by the following constants:" msgstr "" -#: ../../c-api/frame.rst:261 msgid "Constant" msgstr "" -#: ../../c-api/frame.rst:262 msgid "Description" msgstr "" -#: ../../c-api/frame.rst:264 -msgid "" -"The frame is internal (For example: inlined) and should be skipped by tools." +msgid "The frame is internal (For example: inlined) and should be skipped by tools." msgstr "" -#: ../../c-api/frame.rst:266 msgid "The frame corresponds to a standard Python function." msgstr "" -#: ../../c-api/frame.rst:268 msgid "The frame corresponds to a function defined in native code." msgstr "" -#: ../../c-api/frame.rst:270 msgid "The frame corresponds to a method on a class instance." msgstr "" -#: ../../c-api/frame.rst:272 -msgid "" -"However, Python's C API lacks a function to read the executable kind from a " -"frame. Instead, use this recipe:" +msgid "However, Python's C API lacks a function to read the executable kind from a frame. Instead, use this recipe:" msgstr "" -#: ../../c-api/frame.rst:275 msgid "" "int\n" "get_executable_kind(PyFrameObject *frame)\n" @@ -337,6 +221,5 @@ msgid "" "}" msgstr "" -#: ../../c-api/frame.rst:301 msgid "The number of entries in :c:data:`PyUnstable_ExecutableKinds`." msgstr "" diff --git a/c-api/function.po b/c-api/function.po index 7a12a505..65722d5a 100644 --- a/c-api/function.po +++ b/c-api/function.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:48+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,256 +23,131 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../c-api/function.rst:6 msgid "Function Objects" msgstr "" -#: ../../c-api/function.rst:10 msgid "There are a few functions specific to Python functions." msgstr "" -#: ../../c-api/function.rst:15 msgid "The C structure used for functions." msgstr "" -#: ../../c-api/function.rst:22 -msgid "" -"This is an instance of :c:type:`PyTypeObject` and represents the Python " -"function type. It is exposed to Python programmers as " -"``types.FunctionType``." +msgid "This is an instance of :c:type:`PyTypeObject` and represents the Python function type. It is exposed to Python programmers as ``types.FunctionType``." msgstr "" -#: ../../c-api/function.rst:28 -msgid "" -"Return true if *o* is a function object (has " -"type :c:data:`PyFunction_Type`). The parameter must not be ``NULL``. This " -"function always succeeds." +msgid "Return true if *o* is a function object (has type :c:data:`PyFunction_Type`). The parameter must not be ``NULL``. This function always succeeds." msgstr "" -#: ../../c-api/function.rst:34 -msgid "" -"Return a new function object associated with the code object *code*. " -"*globals* must be a dictionary with the global variables accessible to the " -"function." +msgid "Return a new function object associated with the code object *code*. *globals* must be a dictionary with the global variables accessible to the function." msgstr "" -#: ../../c-api/function.rst:37 -msgid "" -"The function's docstring and name are retrieved from the code " -"object. :attr:`~function.__module__` is retrieved from *globals*. The " -"argument defaults, annotations and closure are set to " -"``NULL``. :attr:`~function.__qualname__` is set to the same value as the " -"code object's :attr:`~codeobject.co_qualname` field." +msgid "The function's docstring and name are retrieved from the code object. :attr:`~function.__module__` is retrieved from *globals*. The argument defaults, annotations and closure are set to ``NULL``. :attr:`~function.__qualname__` is set to the same value as the code object's :attr:`~codeobject.co_qualname` field." msgstr "" -#: ../../c-api/function.rst:46 -msgid "" -"As :c:func:`PyFunction_New`, but also allows setting the function " -"object's :attr:`~function.__qualname__` attribute. *qualname* should be a " -"unicode object or ``NULL``; if ``NULL``, the :attr:`!__qualname__` attribute " -"is set to the same value as the code " -"object's :attr:`~codeobject.co_qualname` field." +msgid "As :c:func:`PyFunction_New`, but also allows setting the function object's :attr:`~function.__qualname__` attribute. *qualname* should be a unicode object or ``NULL``; if ``NULL``, the :attr:`!__qualname__` attribute is set to the same value as the code object's :attr:`~codeobject.co_qualname` field." msgstr "" -#: ../../c-api/function.rst:57 msgid "Return the code object associated with the function object *op*." msgstr "" -#: ../../c-api/function.rst:62 msgid "Return the globals dictionary associated with the function object *op*." msgstr "" -#: ../../c-api/function.rst:67 -msgid "" -"Return a :term:`borrowed reference` to the :attr:`~function.__module__` " -"attribute of the :ref:`function object ` *op*. It can be " -"*NULL*." +msgid "Return a :term:`borrowed reference` to the :attr:`~function.__module__` attribute of the :ref:`function object ` *op*. It can be *NULL*." msgstr "" -#: ../../c-api/function.rst:71 -msgid "" -"This is normally a :class:`string ` containing the module name, but can " -"be set to any other object by Python code." +msgid "This is normally a :class:`string ` containing the module name, but can be set to any other object by Python code." msgstr "" -#: ../../c-api/function.rst:77 -msgid "" -"Return the argument default values of the function object *op*. This can be " -"a tuple of arguments or ``NULL``." +msgid "Return the argument default values of the function object *op*. This can be a tuple of arguments or ``NULL``." msgstr "" -#: ../../c-api/function.rst:83 -msgid "" -"Set the argument default values for the function object *op*. *defaults* " -"must be ``Py_None`` or a tuple." +msgid "Set the argument default values for the function object *op*. *defaults* must be ``Py_None`` or a tuple." msgstr "" -#: ../../c-api/function.rst:86 ../../c-api/function.rst:125 -#: ../../c-api/function.rst:139 msgid "Raises :exc:`SystemError` and returns ``-1`` on failure." msgstr "" -#: ../../c-api/function.rst:91 msgid "Set the vectorcall field of a given function object *func*." msgstr "" -#: ../../c-api/function.rst:93 -msgid "" -"Warning: extensions using this API must preserve the behavior of the " -"unaltered (default) vectorcall function!" +msgid "Warning: extensions using this API must preserve the behavior of the unaltered (default) vectorcall function!" msgstr "" -#: ../../c-api/function.rst:101 -msgid "" -"Return the keyword-only argument default values of the function object *op*. " -"This can be a dictionary of arguments or ``NULL``." +msgid "Return the keyword-only argument default values of the function object *op*. This can be a dictionary of arguments or ``NULL``." msgstr "" -#: ../../c-api/function.rst:107 -msgid "" -"Set the keyword-only argument default values of the function object *op*. " -"*defaults* must be a dictionary of keyword-only arguments or ``Py_None``." +msgid "Set the keyword-only argument default values of the function object *op*. *defaults* must be a dictionary of keyword-only arguments or ``Py_None``." msgstr "" -#: ../../c-api/function.rst:110 -msgid "" -"This function returns ``0`` on success, and returns ``-1`` with an exception " -"set on failure." +msgid "This function returns ``0`` on success, and returns ``-1`` with an exception set on failure." msgstr "" -#: ../../c-api/function.rst:116 -msgid "" -"Return the closure associated with the function object *op*. This can be " -"``NULL`` or a tuple of cell objects." +msgid "Return the closure associated with the function object *op*. This can be ``NULL`` or a tuple of cell objects." msgstr "" -#: ../../c-api/function.rst:122 -msgid "" -"Set the closure associated with the function object *op*. *closure* must be " -"``Py_None`` or a tuple of cell objects." +msgid "Set the closure associated with the function object *op*. *closure* must be ``Py_None`` or a tuple of cell objects." msgstr "" -#: ../../c-api/function.rst:130 -msgid "" -"Return the annotations of the function object *op*. This can be a mutable " -"dictionary or ``NULL``." +msgid "Return the annotations of the function object *op*. This can be a mutable dictionary or ``NULL``." msgstr "" -#: ../../c-api/function.rst:136 -msgid "" -"Set the annotations for the function object *op*. *annotations* must be a " -"dictionary or ``Py_None``." +msgid "Set the annotations for the function object *op*. *annotations* must be a dictionary or ``Py_None``." msgstr "" -#: ../../c-api/function.rst:150 -msgid "" -"These functions are similar to their ``PyFunction_Get*`` counterparts, but " -"do not do type checking. Passing anything other than an instance " -"of :c:data:`PyFunction_Type` is undefined behavior." +msgid "These functions are similar to their ``PyFunction_Get*`` counterparts, but do not do type checking. Passing anything other than an instance of :c:data:`PyFunction_Type` is undefined behavior." msgstr "" -#: ../../c-api/function.rst:157 -msgid "" -"Register *callback* as a function watcher for the current interpreter. " -"Return an ID which may be passed to :c:func:`PyFunction_ClearWatcher`. In " -"case of error (e.g. no more watcher IDs available), return ``-1`` and set an " -"exception." +msgid "Register *callback* as a function watcher for the current interpreter. Return an ID which may be passed to :c:func:`PyFunction_ClearWatcher`. In case of error (e.g. no more watcher IDs available), return ``-1`` and set an exception." msgstr "" -#: ../../c-api/function.rst:167 -msgid "" -"Clear watcher identified by *watcher_id* previously returned " -"from :c:func:`PyFunction_AddWatcher` for the current interpreter. Return " -"``0`` on success, or ``-1`` and set an exception on error (e.g. if the " -"given *watcher_id* was never registered.)" +msgid "Clear watcher identified by *watcher_id* previously returned from :c:func:`PyFunction_AddWatcher` for the current interpreter. Return ``0`` on success, or ``-1`` and set an exception on error (e.g. if the given *watcher_id* was never registered.)" msgstr "" -#: ../../c-api/function.rst:177 msgid "Enumeration of possible function watcher events:" msgstr "" -#: ../../c-api/function.rst:179 msgid "``PyFunction_EVENT_CREATE``" msgstr "" -#: ../../c-api/function.rst:180 msgid "``PyFunction_EVENT_DESTROY``" msgstr "" -#: ../../c-api/function.rst:181 msgid "``PyFunction_EVENT_MODIFY_CODE``" msgstr "" -#: ../../c-api/function.rst:182 msgid "``PyFunction_EVENT_MODIFY_DEFAULTS``" msgstr "" -#: ../../c-api/function.rst:183 msgid "``PyFunction_EVENT_MODIFY_KWDEFAULTS``" msgstr "" -#: ../../c-api/function.rst:190 msgid "Type of a function watcher callback function." msgstr "" -#: ../../c-api/function.rst:192 -msgid "" -"If *event* is ``PyFunction_EVENT_CREATE`` or ``PyFunction_EVENT_DESTROY`` " -"then *new_value* will be ``NULL``. Otherwise, *new_value* will hold " -"a :term:`borrowed reference` to the new value that is about to be stored in " -"*func* for the attribute that is being modified." +msgid "If *event* is ``PyFunction_EVENT_CREATE`` or ``PyFunction_EVENT_DESTROY`` then *new_value* will be ``NULL``. Otherwise, *new_value* will hold a :term:`borrowed reference` to the new value that is about to be stored in *func* for the attribute that is being modified." msgstr "" -#: ../../c-api/function.rst:197 -msgid "" -"The callback may inspect but must not modify *func*; doing so could have " -"unpredictable effects, including infinite recursion." +msgid "The callback may inspect but must not modify *func*; doing so could have unpredictable effects, including infinite recursion." msgstr "" -#: ../../c-api/function.rst:200 -msgid "" -"If *event* is ``PyFunction_EVENT_CREATE``, then the callback is invoked " -"after *func* has been fully initialized. Otherwise, the callback is invoked " -"before the modification to *func* takes place, so the prior state of *func* " -"can be inspected. The runtime is permitted to optimize away the creation of " -"function objects when possible. In such cases no event will be emitted. " -"Although this creates the possibility of an observable difference of runtime " -"behavior depending on optimization decisions, it does not change the " -"semantics of the Python code being executed." +msgid "If *event* is ``PyFunction_EVENT_CREATE``, then the callback is invoked after *func* has been fully initialized. Otherwise, the callback is invoked before the modification to *func* takes place, so the prior state of *func* can be inspected. The runtime is permitted to optimize away the creation of function objects when possible. In such cases no event will be emitted. Although this creates the possibility of an observable difference of runtime behavior depending on optimization decisions, it does not change the semantics of the Python code being executed." msgstr "" -#: ../../c-api/function.rst:209 -msgid "" -"If *event* is ``PyFunction_EVENT_DESTROY``, Taking a reference in the " -"callback to the about-to-be-destroyed function will resurrect it, preventing " -"it from being freed at this time. When the resurrected object is destroyed " -"later, any watcher callbacks active at that time will be called again." +msgid "If *event* is ``PyFunction_EVENT_DESTROY``, Taking a reference in the callback to the about-to-be-destroyed function will resurrect it, preventing it from being freed at this time. When the resurrected object is destroyed later, any watcher callbacks active at that time will be called again." msgstr "" -#: ../../c-api/function.rst:214 -msgid "" -"If the callback sets an exception, it must return ``-1``; this exception " -"will be printed as an unraisable exception " -"using :c:func:`PyErr_WriteUnraisable`. Otherwise it should return ``0``." +msgid "If the callback sets an exception, it must return ``-1``; this exception will be printed as an unraisable exception using :c:func:`PyErr_WriteUnraisable`. Otherwise it should return ``0``." msgstr "" -#: ../../c-api/function.rst:218 -msgid "" -"There may already be a pending exception set on entry to the callback. In " -"this case, the callback should return ``0`` with the same exception still " -"set. This means the callback may not call any other API that can set an " -"exception unless it saves and clears the exception state first, and restores " -"it before returning." +msgid "There may already be a pending exception set on entry to the callback. In this case, the callback should return ``0`` with the same exception still set. This means the callback may not call any other API that can set an exception unless it saves and clears the exception state first, and restores it before returning." msgstr "" -#: ../../c-api/function.rst:8 msgid "object" msgstr "" -#: ../../c-api/function.rst:8 msgid "function" msgstr "" -#: ../../c-api/function.rst:20 msgid "MethodType (in module types)" msgstr "" diff --git a/c-api/gcsupport.po b/c-api/gcsupport.po index 229050dc..c940948d 100644 --- a/c-api/gcsupport.po +++ b/c-api/gcsupport.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:48+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,333 +23,162 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../c-api/gcsupport.rst:6 msgid "Supporting Cyclic Garbage Collection" msgstr "" -#: ../../c-api/gcsupport.rst:8 -msgid "" -"Python's support for detecting and collecting garbage which involves " -"circular references requires support from object types which are " -"\"containers\" for other objects which may also be containers. Types which " -"do not store references to other objects, or which only store references to " -"atomic types (such as numbers or strings), do not need to provide any " -"explicit support for garbage collection." +msgid "Python's support for detecting and collecting garbage which involves circular references requires support from object types which are \"containers\" for other objects which may also be containers. Types which do not store references to other objects, or which only store references to atomic types (such as numbers or strings), do not need to provide any explicit support for garbage collection." msgstr "" -#: ../../c-api/gcsupport.rst:15 -msgid "" -"To create a container type, the :c:member:`~PyTypeObject.tp_flags` field of " -"the type object must include the :c:macro:`Py_TPFLAGS_HAVE_GC` and provide " -"an implementation of the :c:member:`~PyTypeObject.tp_traverse` handler. If " -"instances of the type are mutable, a :c:member:`~PyTypeObject.tp_clear` " -"implementation must also be provided." +msgid "To create a container type, the :c:member:`~PyTypeObject.tp_flags` field of the type object must include the :c:macro:`Py_TPFLAGS_HAVE_GC` and provide an implementation of the :c:member:`~PyTypeObject.tp_traverse` handler. If instances of the type are mutable, a :c:member:`~PyTypeObject.tp_clear` implementation must also be provided." msgstr "" -#: ../../c-api/gcsupport.rst:21 msgid ":c:macro:`Py_TPFLAGS_HAVE_GC`" msgstr "" -#: ../../c-api/gcsupport.rst:22 -msgid "" -"Objects with a type with this flag set must conform with the rules " -"documented here. For convenience these objects will be referred to as " -"container objects." +msgid "Objects with a type with this flag set must conform with the rules documented here. For convenience these objects will be referred to as container objects." msgstr "" -#: ../../c-api/gcsupport.rst:26 msgid "Constructors for container types must conform to two rules:" msgstr "" -#: ../../c-api/gcsupport.rst:28 -msgid "" -"The memory for the object must be allocated using :c:macro:`PyObject_GC_New` " -"or :c:macro:`PyObject_GC_NewVar`." +msgid "The memory for the object must be allocated using :c:macro:`PyObject_GC_New` or :c:macro:`PyObject_GC_NewVar`." msgstr "" -#: ../../c-api/gcsupport.rst:31 -msgid "" -"Once all the fields which may contain references to other containers are " -"initialized, it must call :c:func:`PyObject_GC_Track`." +msgid "Once all the fields which may contain references to other containers are initialized, it must call :c:func:`PyObject_GC_Track`." msgstr "" -#: ../../c-api/gcsupport.rst:34 -msgid "" -"Similarly, the deallocator for the object must conform to a similar pair of " -"rules:" +msgid "Similarly, the deallocator for the object must conform to a similar pair of rules:" msgstr "" -#: ../../c-api/gcsupport.rst:37 -msgid "" -"Before fields which refer to other containers are " -"invalidated, :c:func:`PyObject_GC_UnTrack` must be called." +msgid "Before fields which refer to other containers are invalidated, :c:func:`PyObject_GC_UnTrack` must be called." msgstr "" -#: ../../c-api/gcsupport.rst:40 -msgid "" -"The object's memory must be deallocated using :c:func:`PyObject_GC_Del`." +msgid "The object's memory must be deallocated using :c:func:`PyObject_GC_Del`." msgstr "" -#: ../../c-api/gcsupport.rst:43 -msgid "" -"If a type adds the Py_TPFLAGS_HAVE_GC, then it *must* implement at least " -"a :c:member:`~PyTypeObject.tp_traverse` handler or explicitly use one from " -"its subclass or subclasses." +msgid "If a type adds the Py_TPFLAGS_HAVE_GC, then it *must* implement at least a :c:member:`~PyTypeObject.tp_traverse` handler or explicitly use one from its subclass or subclasses." msgstr "" -#: ../../c-api/gcsupport.rst:47 -msgid "" -"When calling :c:func:`PyType_Ready` or some of the APIs that indirectly call " -"it like :c:func:`PyType_FromSpecWithBases` or :c:func:`PyType_FromSpec` the " -"interpreter will automatically populate " -"the :c:member:`~PyTypeObject.tp_flags`, :c:member:`~PyTypeObject.tp_traverse` " -"and :c:member:`~PyTypeObject.tp_clear` fields if the type inherits from a " -"class that implements the garbage collector protocol and the child class " -"does *not* include the :c:macro:`Py_TPFLAGS_HAVE_GC` flag." +msgid "When calling :c:func:`PyType_Ready` or some of the APIs that indirectly call it like :c:func:`PyType_FromSpecWithBases` or :c:func:`PyType_FromSpec` the interpreter will automatically populate the :c:member:`~PyTypeObject.tp_flags`, :c:member:`~PyTypeObject.tp_traverse` and :c:member:`~PyTypeObject.tp_clear` fields if the type inherits from a class that implements the garbage collector protocol and the child class does *not* include the :c:macro:`Py_TPFLAGS_HAVE_GC` flag." msgstr "" -#: ../../c-api/gcsupport.rst:57 -msgid "" -"Analogous to :c:macro:`PyObject_New` but for container objects with " -"the :c:macro:`Py_TPFLAGS_HAVE_GC` flag set." +msgid "Analogous to :c:macro:`PyObject_New` but for container objects with the :c:macro:`Py_TPFLAGS_HAVE_GC` flag set." msgstr "" -#: ../../c-api/gcsupport.rst:60 ../../c-api/gcsupport.rst:84 -msgid "" -"Do not call this directly to allocate memory for an object; call the " -"type's :c:member:`~PyTypeObject.tp_alloc` slot instead." +msgid "Do not call this directly to allocate memory for an object; call the type's :c:member:`~PyTypeObject.tp_alloc` slot instead." msgstr "" -#: ../../c-api/gcsupport.rst:63 ../../c-api/gcsupport.rst:87 -msgid "" -"When populating a type's :c:member:`~PyTypeObject.tp_alloc` " -"slot, :c:func:`PyType_GenericAlloc` is preferred over a custom function that " -"simply calls this macro." +msgid "When populating a type's :c:member:`~PyTypeObject.tp_alloc` slot, :c:func:`PyType_GenericAlloc` is preferred over a custom function that simply calls this macro." msgstr "" -#: ../../c-api/gcsupport.rst:67 ../../c-api/gcsupport.rst:91 -msgid "" -"Memory allocated by this macro must be freed with :c:func:`PyObject_GC_Del` " -"(usually called via the object's :c:member:`~PyTypeObject.tp_free` slot)." +msgid "Memory allocated by this macro must be freed with :c:func:`PyObject_GC_Del` (usually called via the object's :c:member:`~PyTypeObject.tp_free` slot)." msgstr "" -#: ../../c-api/gcsupport.rst:73 ../../c-api/gcsupport.rst:97 msgid ":c:func:`PyObject_GC_Del`" msgstr "" -#: ../../c-api/gcsupport.rst:74 msgid ":c:macro:`PyObject_New`" msgstr "" -#: ../../c-api/gcsupport.rst:75 ../../c-api/gcsupport.rst:99 -#: ../../c-api/gcsupport.rst:193 msgid ":c:func:`PyType_GenericAlloc`" msgstr "" -#: ../../c-api/gcsupport.rst:76 ../../c-api/gcsupport.rst:100 msgid ":c:member:`~PyTypeObject.tp_alloc`" msgstr "" -#: ../../c-api/gcsupport.rst:81 -msgid "" -"Analogous to :c:macro:`PyObject_NewVar` but for container objects with " -"the :c:macro:`Py_TPFLAGS_HAVE_GC` flag set." +msgid "Analogous to :c:macro:`PyObject_NewVar` but for container objects with the :c:macro:`Py_TPFLAGS_HAVE_GC` flag set." msgstr "" -#: ../../c-api/gcsupport.rst:98 msgid ":c:macro:`PyObject_NewVar`" msgstr "" -#: ../../c-api/gcsupport.rst:105 -msgid "" -"Analogous to :c:macro:`PyObject_GC_New` but allocates *extra_size* bytes at " -"the end of the object (at offset :c:member:`~PyTypeObject.tp_basicsize`). " -"The allocated memory is initialized to zeros, except for the :c:type:`Python " -"object header `." +msgid "Analogous to :c:macro:`PyObject_GC_New` but allocates *extra_size* bytes at the end of the object (at offset :c:member:`~PyTypeObject.tp_basicsize`). The allocated memory is initialized to zeros, except for the :c:type:`Python object header `." msgstr "" -#: ../../c-api/gcsupport.rst:111 -msgid "" -"The extra data will be deallocated with the object, but otherwise it is not " -"managed by Python." +msgid "The extra data will be deallocated with the object, but otherwise it is not managed by Python." msgstr "" -#: ../../c-api/gcsupport.rst:114 -msgid "" -"Memory allocated by this function must be freed " -"with :c:func:`PyObject_GC_Del` (usually called via the " -"object's :c:member:`~PyTypeObject.tp_free` slot)." +msgid "Memory allocated by this function must be freed with :c:func:`PyObject_GC_Del` (usually called via the object's :c:member:`~PyTypeObject.tp_free` slot)." msgstr "" -#: ../../c-api/gcsupport.rst:119 -msgid "" -"The function is marked as unstable because the final mechanism for reserving " -"extra data after an instance is not yet decided. For allocating a variable " -"number of fields, prefer using :c:type:`PyVarObject` " -"and :c:member:`~PyTypeObject.tp_itemsize` instead." +msgid "The function is marked as unstable because the final mechanism for reserving extra data after an instance is not yet decided. For allocating a variable number of fields, prefer using :c:type:`PyVarObject` and :c:member:`~PyTypeObject.tp_itemsize` instead." msgstr "" -#: ../../c-api/gcsupport.rst:130 -msgid "" -"Resize an object allocated by :c:macro:`PyObject_NewVar`. Returns the " -"resized object of type ``TYPE*`` (refers to any C type) or ``NULL`` on " -"failure." +msgid "Resize an object allocated by :c:macro:`PyObject_NewVar`. Returns the resized object of type ``TYPE*`` (refers to any C type) or ``NULL`` on failure." msgstr "" -#: ../../c-api/gcsupport.rst:134 -msgid "" -"*op* must be of type :c:expr:`PyVarObject *` and must not be tracked by the " -"collector yet. *newsize* must be of type :c:type:`Py_ssize_t`." +msgid "*op* must be of type :c:expr:`PyVarObject *` and must not be tracked by the collector yet. *newsize* must be of type :c:type:`Py_ssize_t`." msgstr "" -#: ../../c-api/gcsupport.rst:141 -msgid "" -"Adds the object *op* to the set of container objects tracked by the " -"collector. The collector can run at unexpected times so objects must be " -"valid while being tracked. This should be called once all the fields " -"followed by the :c:member:`~PyTypeObject.tp_traverse` handler become valid, " -"usually near the end of the constructor." +msgid "Adds the object *op* to the set of container objects tracked by the collector. The collector can run at unexpected times so objects must be valid while being tracked. This should be called once all the fields followed by the :c:member:`~PyTypeObject.tp_traverse` handler become valid, usually near the end of the constructor." msgstr "" -#: ../../c-api/gcsupport.rst:150 -msgid "" -"Returns non-zero if the object implements the garbage collector protocol, " -"otherwise returns 0." +msgid "Returns non-zero if the object implements the garbage collector protocol, otherwise returns 0." msgstr "" -#: ../../c-api/gcsupport.rst:153 -msgid "" -"The object cannot be tracked by the garbage collector if this function " -"returns 0." +msgid "The object cannot be tracked by the garbage collector if this function returns 0." msgstr "" -#: ../../c-api/gcsupport.rst:158 -msgid "" -"Returns 1 if the object type of *op* implements the GC protocol and *op* is " -"being currently tracked by the garbage collector and 0 otherwise." +msgid "Returns 1 if the object type of *op* implements the GC protocol and *op* is being currently tracked by the garbage collector and 0 otherwise." msgstr "" -#: ../../c-api/gcsupport.rst:161 msgid "This is analogous to the Python function :func:`gc.is_tracked`." msgstr "" -#: ../../c-api/gcsupport.rst:168 -msgid "" -"Returns 1 if the object type of *op* implements the GC protocol and *op* has " -"been already finalized by the garbage collector and 0 otherwise." +msgid "Returns 1 if the object type of *op* implements the GC protocol and *op* has been already finalized by the garbage collector and 0 otherwise." msgstr "" -#: ../../c-api/gcsupport.rst:171 msgid "This is analogous to the Python function :func:`gc.is_finalized`." msgstr "" -#: ../../c-api/gcsupport.rst:178 -msgid "" -"Releases memory allocated to an object using :c:macro:`PyObject_GC_New` " -"or :c:macro:`PyObject_GC_NewVar`." +msgid "Releases memory allocated to an object using :c:macro:`PyObject_GC_New` or :c:macro:`PyObject_GC_NewVar`." msgstr "" -#: ../../c-api/gcsupport.rst:181 -msgid "" -"Do not call this directly to free an object's memory; call the " -"type's :c:member:`~PyTypeObject.tp_free` slot instead." +msgid "Do not call this directly to free an object's memory; call the type's :c:member:`~PyTypeObject.tp_free` slot instead." msgstr "" -#: ../../c-api/gcsupport.rst:184 -msgid "" -"Do not use this for memory allocated " -"by :c:macro:`PyObject_New`, :c:macro:`PyObject_NewVar`, or related " -"allocation functions; use :c:func:`PyObject_Free` instead." +msgid "Do not use this for memory allocated by :c:macro:`PyObject_New`, :c:macro:`PyObject_NewVar`, or related allocation functions; use :c:func:`PyObject_Free` instead." msgstr "" -#: ../../c-api/gcsupport.rst:190 msgid ":c:func:`PyObject_Free` is the non-GC equivalent of this function." msgstr "" -#: ../../c-api/gcsupport.rst:191 msgid ":c:macro:`PyObject_GC_New`" msgstr "" -#: ../../c-api/gcsupport.rst:192 msgid ":c:macro:`PyObject_GC_NewVar`" msgstr "" -#: ../../c-api/gcsupport.rst:194 msgid ":c:member:`~PyTypeObject.tp_free`" msgstr "" -#: ../../c-api/gcsupport.rst:199 -msgid "" -"Remove the object *op* from the set of container objects tracked by the " -"collector. Note that :c:func:`PyObject_GC_Track` can be called again on " -"this object to add it back to the set of tracked objects. The deallocator " -"(:c:member:`~PyTypeObject.tp_dealloc` handler) should call this for the " -"object before any of the fields used by " -"the :c:member:`~PyTypeObject.tp_traverse` handler become invalid." +msgid "Remove the object *op* from the set of container objects tracked by the collector. Note that :c:func:`PyObject_GC_Track` can be called again on this object to add it back to the set of tracked objects. The deallocator (:c:member:`~PyTypeObject.tp_dealloc` handler) should call this for the object before any of the fields used by the :c:member:`~PyTypeObject.tp_traverse` handler become invalid." msgstr "" -#: ../../c-api/gcsupport.rst:208 -msgid "" -"The :c:func:`!_PyObject_GC_TRACK` and :c:func:`!_PyObject_GC_UNTRACK` macros " -"have been removed from the public C API." +msgid "The :c:func:`!_PyObject_GC_TRACK` and :c:func:`!_PyObject_GC_UNTRACK` macros have been removed from the public C API." msgstr "" -#: ../../c-api/gcsupport.rst:211 -msgid "" -"The :c:member:`~PyTypeObject.tp_traverse` handler accepts a function " -"parameter of this type:" +msgid "The :c:member:`~PyTypeObject.tp_traverse` handler accepts a function parameter of this type:" msgstr "" -#: ../../c-api/gcsupport.rst:216 -msgid "" -"Type of the visitor function passed to " -"the :c:member:`~PyTypeObject.tp_traverse` handler. The function should be " -"called with an object to traverse as *object* and the third parameter to " -"the :c:member:`~PyTypeObject.tp_traverse` handler as *arg*. The Python core " -"uses several visitor functions to implement cyclic garbage detection; it's " -"not expected that users will need to write their own visitor functions." +msgid "Type of the visitor function passed to the :c:member:`~PyTypeObject.tp_traverse` handler. The function should be called with an object to traverse as *object* and the third parameter to the :c:member:`~PyTypeObject.tp_traverse` handler as *arg*. The Python core uses several visitor functions to implement cyclic garbage detection; it's not expected that users will need to write their own visitor functions." msgstr "" -#: ../../c-api/gcsupport.rst:223 -msgid "" -"The :c:member:`~PyTypeObject.tp_traverse` handler must have the following " -"type:" +msgid "The :c:member:`~PyTypeObject.tp_traverse` handler must have the following type:" msgstr "" -#: ../../c-api/gcsupport.rst:228 -msgid "" -"Traversal function for a container object. Implementations must call the " -"*visit* function for each object directly contained by *self*, with the " -"parameters to *visit* being the contained object and the *arg* value passed " -"to the handler. The *visit* function must not be called with a ``NULL`` " -"object argument. If *visit* returns a non-zero value that value should be " -"returned immediately." +msgid "Traversal function for a container object. Implementations must call the *visit* function for each object directly contained by *self*, with the parameters to *visit* being the contained object and the *arg* value passed to the handler. The *visit* function must not be called with a ``NULL`` object argument. If *visit* returns a non-zero value that value should be returned immediately." msgstr "" -#: ../../c-api/gcsupport.rst:235 -msgid "" -"The traversal function must not have any side effects. Implementations may " -"not modify the reference counts of any Python objects nor create or destroy " -"any Python objects." +msgid "The traversal function must not have any side effects. Implementations may not modify the reference counts of any Python objects nor create or destroy any Python objects." msgstr "" -#: ../../c-api/gcsupport.rst:239 -msgid "" -"To simplify writing :c:member:`~PyTypeObject.tp_traverse` handlers, " -"a :c:func:`Py_VISIT` macro is provided. In order to use this macro, " -"the :c:member:`~PyTypeObject.tp_traverse` implementation must name its " -"arguments exactly *visit* and *arg*:" +msgid "To simplify writing :c:member:`~PyTypeObject.tp_traverse` handlers, a :c:func:`Py_VISIT` macro is provided. In order to use this macro, the :c:member:`~PyTypeObject.tp_traverse` implementation must name its arguments exactly *visit* and *arg*:" msgstr "" -#: ../../c-api/gcsupport.rst:246 -msgid "" -"If the :c:expr:`PyObject *` *o* is not ``NULL``, call the *visit* callback, " -"with arguments *o* and *arg*. If *visit* returns a non-zero value, then " -"return it. Using this macro, :c:member:`~PyTypeObject.tp_traverse` handlers " -"look like::" +msgid "If the :c:expr:`PyObject *` *o* is not ``NULL``, call the *visit* callback, with arguments *o* and *arg*. If *visit* returns a non-zero value, then return it. Using this macro, :c:member:`~PyTypeObject.tp_traverse` handlers look like::" msgstr "" -#: ../../c-api/gcsupport.rst:251 msgid "" "static int\n" "my_traverse(Noddy *self, visitproc visit, void *arg)\n" @@ -360,98 +189,47 @@ msgid "" "}" msgstr "" -#: ../../c-api/gcsupport.rst:259 -msgid "" -"The :c:member:`~PyTypeObject.tp_clear` handler must be of " -"the :c:type:`inquiry` type, or ``NULL`` if the object is immutable." +msgid "The :c:member:`~PyTypeObject.tp_clear` handler must be of the :c:type:`inquiry` type, or ``NULL`` if the object is immutable." msgstr "" -#: ../../c-api/gcsupport.rst:265 -msgid "" -"Drop references that may have created reference cycles. Immutable objects " -"do not have to define this method since they can never directly create " -"reference cycles. Note that the object must still be valid after calling " -"this method (don't just call :c:func:`Py_DECREF` on a reference). The " -"collector will call this method if it detects that this object is involved " -"in a reference cycle." +msgid "Drop references that may have created reference cycles. Immutable objects do not have to define this method since they can never directly create reference cycles. Note that the object must still be valid after calling this method (don't just call :c:func:`Py_DECREF` on a reference). The collector will call this method if it detects that this object is involved in a reference cycle." msgstr "" -#: ../../c-api/gcsupport.rst:274 msgid "Controlling the Garbage Collector State" msgstr "" -#: ../../c-api/gcsupport.rst:276 -msgid "" -"The C-API provides the following functions for controlling garbage " -"collection runs." +msgid "The C-API provides the following functions for controlling garbage collection runs." msgstr "" -#: ../../c-api/gcsupport.rst:281 -msgid "" -"Perform a full garbage collection, if the garbage collector is enabled. " -"(Note that :func:`gc.collect` runs it unconditionally.)" +msgid "Perform a full garbage collection, if the garbage collector is enabled. (Note that :func:`gc.collect` runs it unconditionally.)" msgstr "" -#: ../../c-api/gcsupport.rst:284 -msgid "" -"Returns the number of collected + unreachable objects which cannot be " -"collected. If the garbage collector is disabled or already collecting, " -"returns ``0`` immediately. Errors during garbage collection are passed " -"to :data:`sys.unraisablehook`. This function does not raise exceptions." +msgid "Returns the number of collected + unreachable objects which cannot be collected. If the garbage collector is disabled or already collecting, returns ``0`` immediately. Errors during garbage collection are passed to :data:`sys.unraisablehook`. This function does not raise exceptions." msgstr "" -#: ../../c-api/gcsupport.rst:294 -msgid "" -"Enable the garbage collector: similar to :func:`gc.enable`. Returns the " -"previous state, 0 for disabled and 1 for enabled." +msgid "Enable the garbage collector: similar to :func:`gc.enable`. Returns the previous state, 0 for disabled and 1 for enabled." msgstr "" -#: ../../c-api/gcsupport.rst:302 -msgid "" -"Disable the garbage collector: similar to :func:`gc.disable`. Returns the " -"previous state, 0 for disabled and 1 for enabled." +msgid "Disable the garbage collector: similar to :func:`gc.disable`. Returns the previous state, 0 for disabled and 1 for enabled." msgstr "" -#: ../../c-api/gcsupport.rst:310 -msgid "" -"Query the state of the garbage collector: similar to :func:`gc.isenabled`. " -"Returns the current state, 0 for disabled and 1 for enabled." +msgid "Query the state of the garbage collector: similar to :func:`gc.isenabled`. Returns the current state, 0 for disabled and 1 for enabled." msgstr "" -#: ../../c-api/gcsupport.rst:317 msgid "Querying Garbage Collector State" msgstr "" -#: ../../c-api/gcsupport.rst:319 -msgid "" -"The C-API provides the following interface for querying information about " -"the garbage collector." +msgid "The C-API provides the following interface for querying information about the garbage collector." msgstr "" -#: ../../c-api/gcsupport.rst:324 -msgid "" -"Run supplied *callback* on all live GC-capable objects. *arg* is passed " -"through to all invocations of *callback*." +msgid "Run supplied *callback* on all live GC-capable objects. *arg* is passed through to all invocations of *callback*." msgstr "" -#: ../../c-api/gcsupport.rst:328 -msgid "" -"If new objects are (de)allocated by the callback it is undefined if they " -"will be visited." +msgid "If new objects are (de)allocated by the callback it is undefined if they will be visited." msgstr "" -#: ../../c-api/gcsupport.rst:331 -msgid "" -"Garbage collection is disabled during operation. Explicitly running a " -"collection in the callback may lead to undefined behaviour e.g. visiting the " -"same objects multiple times or not at all." +msgid "Garbage collection is disabled during operation. Explicitly running a collection in the callback may lead to undefined behaviour e.g. visiting the same objects multiple times or not at all." msgstr "" -#: ../../c-api/gcsupport.rst:339 -msgid "" -"Type of the visitor function to be passed " -"to :c:func:`PyUnstable_GC_VisitObjects`. *arg* is the same as the *arg* " -"passed to ``PyUnstable_GC_VisitObjects``. Return ``1`` to continue " -"iteration, return ``0`` to stop iteration. Other return values are reserved " -"for now so behavior on returning anything else is undefined." +msgid "Type of the visitor function to be passed to :c:func:`PyUnstable_GC_VisitObjects`. *arg* is the same as the *arg* passed to ``PyUnstable_GC_VisitObjects``. Return ``1`` to continue iteration, return ``0`` to stop iteration. Other return values are reserved for now so behavior on returning anything else is undefined." msgstr "" diff --git a/c-api/gen.po b/c-api/gen.po index bb71594d..4a83cb95 100644 --- a/c-api/gen.po +++ b/c-api/gen.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:48+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,101 +21,56 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../c-api/gen.rst:6 msgid "Generator Objects" msgstr "" -#: ../../c-api/gen.rst:8 -msgid "" -"Generator objects are what Python uses to implement generator iterators. " -"They are normally created by iterating over a function that yields values, " -"rather than explicitly calling :c:func:`PyGen_New` " -"or :c:func:`PyGen_NewWithQualName`." +msgid "Generator objects are what Python uses to implement generator iterators. They are normally created by iterating over a function that yields values, rather than explicitly calling :c:func:`PyGen_New` or :c:func:`PyGen_NewWithQualName`." msgstr "" -#: ../../c-api/gen.rst:15 msgid "The C structure used for generator objects." msgstr "" -#: ../../c-api/gen.rst:20 msgid "The type object corresponding to generator objects." msgstr "" -#: ../../c-api/gen.rst:25 -msgid "" -"Return true if *ob* is a generator object; *ob* must not be ``NULL``. This " -"function always succeeds." +msgid "Return true if *ob* is a generator object; *ob* must not be ``NULL``. This function always succeeds." msgstr "" -#: ../../c-api/gen.rst:31 -msgid "" -"Return true if *ob*'s type is :c:type:`PyGen_Type`; *ob* must not be " -"``NULL``. This function always succeeds." +msgid "Return true if *ob*'s type is :c:type:`PyGen_Type`; *ob* must not be ``NULL``. This function always succeeds." msgstr "" -#: ../../c-api/gen.rst:37 -msgid "" -"Create and return a new generator object based on the *frame* object. A " -"reference to *frame* is \":term:`stolen `\" by this function (even on " -"error). The argument must not be ``NULL``." +msgid "Create and return a new generator object based on the *frame* object. A reference to *frame* is \":term:`stolen `\" by this function (even on error). The argument must not be ``NULL``." msgstr "" -#: ../../c-api/gen.rst:43 -msgid "" -"Create and return a new generator object based on the *frame* object, with " -"``__name__`` and ``__qualname__`` set to *name* and *qualname*. A reference " -"to *frame* is \":term:`stolen `\" by this function (even on error). " -"The *frame* argument must not be ``NULL``." +msgid "Create and return a new generator object based on the *frame* object, with ``__name__`` and ``__qualname__`` set to *name* and *qualname*. A reference to *frame* is \":term:`stolen `\" by this function (even on error). The *frame* argument must not be ``NULL``." msgstr "" -#: ../../c-api/gen.rst:51 -msgid "" -"Return a new :term:`strong reference` to the code object wrapped by *gen*. " -"This function always succeeds." +msgid "Return a new :term:`strong reference` to the code object wrapped by *gen*. This function always succeeds." msgstr "" -#: ../../c-api/gen.rst:56 msgid "Asynchronous Generator Objects" msgstr "" -#: ../../c-api/gen.rst:59 msgid ":pep:`525`" msgstr "" -#: ../../c-api/gen.rst:63 -msgid "" -"The type object corresponding to asynchronous generator objects. This is " -"available as :class:`types.AsyncGeneratorType` in the Python layer." +msgid "The type object corresponding to asynchronous generator objects. This is available as :class:`types.AsyncGeneratorType` in the Python layer." msgstr "" -#: ../../c-api/gen.rst:70 -msgid "" -"Create a new asynchronous generator wrapping *frame*, with ``__name__`` and " -"``__qualname__`` set to *name* and *qualname*. *frame* is \":term:`stolen " -"`\" by this function (even on error) and must not be ``NULL``." +msgid "Create a new asynchronous generator wrapping *frame*, with ``__name__`` and ``__qualname__`` set to *name* and *qualname*. *frame* is \":term:`stolen `\" by this function (even on error) and must not be ``NULL``." msgstr "" -#: ../../c-api/gen.rst:75 -msgid "" -"On success, this function returns a :term:`strong reference` to the new " -"asynchronous generator. On failure, this function returns ``NULL`` with an " -"exception set." +msgid "On success, this function returns a :term:`strong reference` to the new asynchronous generator. On failure, this function returns ``NULL`` with an exception set." msgstr "" -#: ../../c-api/gen.rst:83 -msgid "" -"Return true if *op* is an asynchronous generator object, false otherwise. " -"This function always succeeds." +msgid "Return true if *op* is an asynchronous generator object, false otherwise. This function always succeeds." msgstr "" -#: ../../c-api/gen.rst:90 msgid "Deprecated API" msgstr "" -#: ../../c-api/gen.rst:94 msgid "This is an API that was included in Python's C API by mistake." msgstr "" -#: ../../c-api/gen.rst:97 msgid "It is solely here for completeness; do not use this API." msgstr "" diff --git a/c-api/hash.po b/c-api/hash.po index 586c6478..6c7b9759 100644 --- a/c-api/hash.po +++ b/c-api/hash.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2024-02-23 14:15+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,187 +21,122 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../c-api/hash.rst:4 msgid "PyHash API" msgstr "" -#: ../../c-api/hash.rst:6 -msgid "" -"See also the :c:member:`PyTypeObject.tp_hash` member and :ref:`numeric-hash`." +msgid "See also the :c:member:`PyTypeObject.tp_hash` member and :ref:`numeric-hash`." msgstr "" -#: ../../c-api/hash.rst:10 msgid "Hash value type: signed integer." msgstr "" -#: ../../c-api/hash.rst:17 msgid "Hash value type: unsigned integer." msgstr "" -#: ../../c-api/hash.rst:24 -msgid "" -"A numerical value indicating the algorithm for hashing " -"of :class:`str`, :class:`bytes`, and :class:`memoryview`." +msgid "A numerical value indicating the algorithm for hashing of :class:`str`, :class:`bytes`, and :class:`memoryview`." msgstr "" -#: ../../c-api/hash.rst:27 msgid "The algorithm name is exposed by :data:`sys.hash_info.algorithm`." msgstr "" -#: ../../c-api/hash.rst:36 -msgid "" -"Numerical values to compare to :c:macro:`Py_HASH_ALGORITHM` to determine " -"which algorithm is used for hashing. The hash algorithm can be configured " -"via the configure :option:`--with-hash-algorithm` option." +msgid "Numerical values to compare to :c:macro:`Py_HASH_ALGORITHM` to determine which algorithm is used for hashing. The hash algorithm can be configured via the configure :option:`--with-hash-algorithm` option." msgstr "" -#: ../../c-api/hash.rst:40 msgid "Add :c:macro:`!Py_HASH_FNV` and :c:macro:`!Py_HASH_SIPHASH24`." msgstr "" -#: ../../c-api/hash.rst:43 msgid "Add :c:macro:`!Py_HASH_SIPHASH13`." msgstr "" -#: ../../c-api/hash.rst:49 -msgid "" -"Buffers of length in range ``[1, Py_HASH_CUTOFF)`` are hashed using DJBX33A " -"instead of the algorithm described by :c:macro:`Py_HASH_ALGORITHM`." +msgid "Buffers of length in range ``[1, Py_HASH_CUTOFF)`` are hashed using DJBX33A instead of the algorithm described by :c:macro:`Py_HASH_ALGORITHM`." msgstr "" -#: ../../c-api/hash.rst:52 msgid "A :c:macro:`!Py_HASH_CUTOFF` of 0 disables the optimization." msgstr "" -#: ../../c-api/hash.rst:53 -msgid "" -":c:macro:`!Py_HASH_CUTOFF` must be non-negative and less or equal than 7." +msgid ":c:macro:`!Py_HASH_CUTOFF` must be non-negative and less or equal than 7." msgstr "" -#: ../../c-api/hash.rst:55 -msgid "" -"32-bit platforms should use a cutoff smaller than 64-bit platforms because " -"it is easier to create colliding strings. A cutoff of 7 on 64-bit platforms " -"and 5 on 32-bit platforms should provide a decent safety margin." +msgid "32-bit platforms should use a cutoff smaller than 64-bit platforms because it is easier to create colliding strings. A cutoff of 7 on 64-bit platforms and 5 on 32-bit platforms should provide a decent safety margin." msgstr "" -#: ../../c-api/hash.rst:59 msgid "This corresponds to the :data:`sys.hash_info.cutoff` constant." msgstr "" -#: ../../c-api/hash.rst:66 -msgid "" -"The `Mersenne prime `_ ``P = " -"2**n -1``, used for numeric hash scheme." +msgid "The `Mersenne prime `_ ``P = 2**n -1``, used for numeric hash scheme." msgstr "" -#: ../../c-api/hash.rst:69 msgid "This corresponds to the :data:`sys.hash_info.modulus` constant." msgstr "" -#: ../../c-api/hash.rst:76 msgid "The exponent ``n`` of ``P`` in :c:macro:`PyHASH_MODULUS`." msgstr "" -#: ../../c-api/hash.rst:83 msgid "Prime multiplier used in string and various other hashes." msgstr "" -#: ../../c-api/hash.rst:90 msgid "The hash value returned for a positive infinity." msgstr "" -#: ../../c-api/hash.rst:92 msgid "This corresponds to the :data:`sys.hash_info.inf` constant." msgstr "" -#: ../../c-api/hash.rst:99 msgid "The multiplier used for the imaginary part of a complex number." msgstr "" -#: ../../c-api/hash.rst:101 msgid "This corresponds to the :data:`sys.hash_info.imag` constant." msgstr "" -#: ../../c-api/hash.rst:108 msgid "Hash function definition used by :c:func:`PyHash_GetFuncDef`." msgstr "" -#: ../../c-api/hash.rst:112 msgid "Hash function." msgstr "" -#: ../../c-api/hash.rst:116 msgid "Hash function name (UTF-8 encoded string)." msgstr "" -#: ../../c-api/hash.rst:118 msgid "This corresponds to the :data:`sys.hash_info.algorithm` constant." msgstr "" -#: ../../c-api/hash.rst:122 msgid "Internal size of the hash value in bits." msgstr "" -#: ../../c-api/hash.rst:124 msgid "This corresponds to the :data:`sys.hash_info.hash_bits` constant." msgstr "" -#: ../../c-api/hash.rst:128 msgid "Size of seed input in bits." msgstr "" -#: ../../c-api/hash.rst:130 msgid "This corresponds to the :data:`sys.hash_info.seed_bits` constant." msgstr "" -#: ../../c-api/hash.rst:137 msgid "Get the hash function definition." msgstr "" -#: ../../c-api/hash.rst:140 msgid ":pep:`456` \"Secure and interchangeable hash algorithm\"." msgstr "" -#: ../../c-api/hash.rst:147 -msgid "" -"Hash a pointer value: process the pointer value as an integer (cast it to " -"``uintptr_t`` internally). The pointer is not dereferenced." +msgid "Hash a pointer value: process the pointer value as an integer (cast it to ``uintptr_t`` internally). The pointer is not dereferenced." msgstr "" -#: ../../c-api/hash.rst:150 msgid "The function cannot fail: it cannot return ``-1``." msgstr "" -#: ../../c-api/hash.rst:157 -msgid "" -"Compute and return the hash value of a buffer of *len* bytes starting at " -"address *ptr*. The hash is guaranteed to match that " -"of :class:`bytes`, :class:`memoryview`, and other built-in objects that " -"implement the :ref:`buffer protocol `." +msgid "Compute and return the hash value of a buffer of *len* bytes starting at address *ptr*. The hash is guaranteed to match that of :class:`bytes`, :class:`memoryview`, and other built-in objects that implement the :ref:`buffer protocol `." msgstr "" -#: ../../c-api/hash.rst:162 -msgid "" -"Use this function to implement hashing for immutable objects " -"whose :c:member:`~PyTypeObject.tp_richcompare` function compares to another " -"object's buffer." +msgid "Use this function to implement hashing for immutable objects whose :c:member:`~PyTypeObject.tp_richcompare` function compares to another object's buffer." msgstr "" -#: ../../c-api/hash.rst:166 msgid "*len* must be greater than or equal to ``0``." msgstr "" -#: ../../c-api/hash.rst:168 msgid "This function always succeeds." msgstr "" -#: ../../c-api/hash.rst:175 -msgid "" -"Generic hashing function that is meant to be put into a type object's " -"``tp_hash`` slot. Its result only depends on the object's identity." +msgid "Generic hashing function that is meant to be put into a type object's ``tp_hash`` slot. Its result only depends on the object's identity." msgstr "" -#: ../../c-api/hash.rst:180 msgid "In CPython, it is equivalent to :c:func:`Py_HashPointer`." msgstr "" diff --git a/c-api/import.po b/c-api/import.po index 14de6ecf..c495a7e9 100644 --- a/c-api/import.po +++ b/c-api/import.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:48+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -22,296 +22,141 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../c-api/import.rst:6 msgid "Importing Modules" msgstr "" -#: ../../c-api/import.rst:16 -msgid "" -"This is a wrapper around :c:func:`PyImport_Import()` which takes " -"a :c:expr:`const char *` as an argument instead of a :c:expr:`PyObject *`." +msgid "This is a wrapper around :c:func:`PyImport_Import()` which takes a :c:expr:`const char *` as an argument instead of a :c:expr:`PyObject *`." msgstr "" -#: ../../c-api/import.rst:21 msgid "This function is a deprecated alias of :c:func:`PyImport_ImportModule`." msgstr "" -#: ../../c-api/import.rst:23 -msgid "" -"This function used to fail immediately when the import lock was held by " -"another thread. In Python 3.3 though, the locking scheme switched to per-" -"module locks for most purposes, so this function's special behaviour isn't " -"needed anymore." +msgid "This function used to fail immediately when the import lock was held by another thread. In Python 3.3 though, the locking scheme switched to per-module locks for most purposes, so this function's special behaviour isn't needed anymore." msgstr "" -#: ../../c-api/import.rst:29 msgid "Use :c:func:`PyImport_ImportModule` instead." msgstr "" -#: ../../c-api/import.rst:37 -msgid "" -"Import a module. This is best described by referring to the built-in Python " -"function :func:`__import__`." +msgid "Import a module. This is best described by referring to the built-in Python function :func:`__import__`." msgstr "" -#: ../../c-api/import.rst:40 ../../c-api/import.rst:56 -msgid "" -"The return value is a new reference to the imported module or top-level " -"package, or ``NULL`` with an exception set on failure. Like " -"for :func:`__import__`, the return value when a submodule of a package was " -"requested is normally the top-level package, unless a non-empty *fromlist* " -"was given." +msgid "The return value is a new reference to the imported module or top-level package, or ``NULL`` with an exception set on failure. Like for :func:`__import__`, the return value when a submodule of a package was requested is normally the top-level package, unless a non-empty *fromlist* was given." msgstr "" -#: ../../c-api/import.rst:46 -msgid "" -"Failing imports remove incomplete module objects, like " -"with :c:func:`PyImport_ImportModule`." +msgid "Failing imports remove incomplete module objects, like with :c:func:`PyImport_ImportModule`." msgstr "" -#: ../../c-api/import.rst:52 -msgid "" -"Import a module. This is best described by referring to the built-in Python " -"function :func:`__import__`, as the standard :func:`__import__` function " -"calls this function directly." +msgid "Import a module. This is best described by referring to the built-in Python function :func:`__import__`, as the standard :func:`__import__` function calls this function directly." msgstr "" -#: ../../c-api/import.rst:66 -msgid "" -"Similar to :c:func:`PyImport_ImportModuleLevelObject`, but the name is a " -"UTF-8 encoded string instead of a Unicode object." +msgid "Similar to :c:func:`PyImport_ImportModuleLevelObject`, but the name is a UTF-8 encoded string instead of a Unicode object." msgstr "" -#: ../../c-api/import.rst:69 msgid "Negative values for *level* are no longer accepted." msgstr "" -#: ../../c-api/import.rst:74 -msgid "" -"This is a higher-level interface that calls the current \"import hook " -"function\" (with an explicit *level* of 0, meaning absolute import). It " -"invokes the :func:`__import__` function from the ``__builtins__`` of the " -"current globals. This means that the import is done using whatever import " -"hooks are installed in the current environment." +msgid "This is a higher-level interface that calls the current \"import hook function\" (with an explicit *level* of 0, meaning absolute import). It invokes the :func:`__import__` function from the ``__builtins__`` of the current globals. This means that the import is done using whatever import hooks are installed in the current environment." msgstr "" -#: ../../c-api/import.rst:80 msgid "This function always uses absolute imports." msgstr "" -#: ../../c-api/import.rst:85 -msgid "" -"Reload a module. Return a new reference to the reloaded module, or ``NULL`` " -"with an exception set on failure (the module still exists in this case)." +msgid "Reload a module. Return a new reference to the reloaded module, or ``NULL`` with an exception set on failure (the module still exists in this case)." msgstr "" -#: ../../c-api/import.rst:91 msgid "Return the module object corresponding to a module name." msgstr "" -#: ../../c-api/import.rst:93 -msgid "" -"The *name* argument may be of the form ``package.module``. First check the " -"modules dictionary if there's one there, and if not, create a new one and " -"insert it in the modules dictionary." +msgid "The *name* argument may be of the form ``package.module``. First check the modules dictionary if there's one there, and if not, create a new one and insert it in the modules dictionary." msgstr "" -#: ../../c-api/import.rst:97 -msgid "" -"Return a :term:`strong reference` to the module on success. Return ``NULL`` " -"with an exception set on failure." +msgid "Return a :term:`strong reference` to the module on success. Return ``NULL`` with an exception set on failure." msgstr "" -#: ../../c-api/import.rst:100 msgid "The module name *name* is decoded from UTF-8." msgstr "" -#: ../../c-api/import.rst:102 -msgid "" -"This function does not load or import the module; if the module wasn't " -"already loaded, you will get an empty module object. " -"Use :c:func:`PyImport_ImportModule` or one of its variants to import a " -"module. Package structures implied by a dotted name for *name* are not " -"created if not already present." +msgid "This function does not load or import the module; if the module wasn't already loaded, you will get an empty module object. Use :c:func:`PyImport_ImportModule` or one of its variants to import a module. Package structures implied by a dotted name for *name* are not created if not already present." msgstr "" -#: ../../c-api/import.rst:113 -msgid "" -"Similar to :c:func:`PyImport_AddModuleRef`, but return a :term:`borrowed " -"reference` and *name* is a Python :class:`str` object." +msgid "Similar to :c:func:`PyImport_AddModuleRef`, but return a :term:`borrowed reference` and *name* is a Python :class:`str` object." msgstr "" -#: ../../c-api/import.rst:121 -msgid "" -"Similar to :c:func:`PyImport_AddModuleRef`, but return a :term:`borrowed " -"reference`." +msgid "Similar to :c:func:`PyImport_AddModuleRef`, but return a :term:`borrowed reference`." msgstr "" -#: ../../c-api/import.rst:129 -msgid "" -"Given a module name (possibly of the form ``package.module``) and a code " -"object read from a Python bytecode file or obtained from the built-in " -"function :func:`compile`, load the module. Return a new reference to the " -"module object, or ``NULL`` with an exception set if an error occurred. " -"*name* is removed from :data:`sys.modules` in error cases, even if *name* " -"was already in :data:`sys.modules` on entry " -"to :c:func:`PyImport_ExecCodeModule`. Leaving incompletely initialized " -"modules in :data:`sys.modules` is dangerous, as imports of such modules have " -"no way to know that the module object is an unknown (and probably damaged " -"with respect to the module author's intents) state." -msgstr "" - -#: ../../c-api/import.rst:139 -msgid "" -"The module's :attr:`~module.__spec__` and :attr:`~module.__loader__` will be " -"set, if not set already, with the appropriate values. The spec's loader " -"will be set to the module's :attr:`!__loader__` (if set) and to an instance " -"of :class:`~importlib.machinery.SourceFileLoader` otherwise." +msgid "Given a module name (possibly of the form ``package.module``) and a code object read from a Python bytecode file or obtained from the built-in function :func:`compile`, load the module. Return a new reference to the module object, or ``NULL`` with an exception set if an error occurred. *name* is removed from :data:`sys.modules` in error cases, even if *name* was already in :data:`sys.modules` on entry to :c:func:`PyImport_ExecCodeModule`. Leaving incompletely initialized modules in :data:`sys.modules` is dangerous, as imports of such modules have no way to know that the module object is an unknown (and probably damaged with respect to the module author's intents) state." msgstr "" -#: ../../c-api/import.rst:144 -msgid "" -"The module's :attr:`~module.__file__` attribute will be set to the code " -"object's :attr:`~codeobject.co_filename`. If " -"applicable, :attr:`~module.__cached__` will also be set." +msgid "The module's :attr:`~module.__spec__` and :attr:`~module.__loader__` will be set, if not set already, with the appropriate values. The spec's loader will be set to the module's :attr:`!__loader__` (if set) and to an instance of :class:`~importlib.machinery.SourceFileLoader` otherwise." msgstr "" -#: ../../c-api/import.rst:148 -msgid "" -"This function will reload the module if it was already imported. " -"See :c:func:`PyImport_ReloadModule` for the intended way to reload a module." +msgid "The module's :attr:`~module.__file__` attribute will be set to the code object's :attr:`~codeobject.co_filename`. If applicable, :attr:`~module.__cached__` will also be set." msgstr "" -#: ../../c-api/import.rst:151 -msgid "" -"If *name* points to a dotted name of the form ``package.module``, any " -"package structures not already created will still not be created." +msgid "This function will reload the module if it was already imported. See :c:func:`PyImport_ReloadModule` for the intended way to reload a module." msgstr "" -#: ../../c-api/import.rst:154 -msgid "" -"See also :c:func:`PyImport_ExecCodeModuleEx` " -"and :c:func:`PyImport_ExecCodeModuleWithPathnames`." +msgid "If *name* points to a dotted name of the form ``package.module``, any package structures not already created will still not be created." msgstr "" -#: ../../c-api/import.rst:157 -msgid "" -"The setting of :attr:`~module.__cached__` and :attr:`~module.__loader__` is " -"deprecated. See :class:`~importlib.machinery.ModuleSpec` for alternatives." +msgid "See also :c:func:`PyImport_ExecCodeModuleEx` and :c:func:`PyImport_ExecCodeModuleWithPathnames`." msgstr "" -#: ../../c-api/import.rst:165 -msgid "" -"Like :c:func:`PyImport_ExecCodeModule`, but the :attr:`~module.__file__` " -"attribute of the module object is set to *pathname* if it is non-``NULL``." +msgid "The setting of :attr:`~module.__cached__` and :attr:`~module.__loader__` is deprecated. See :class:`~importlib.machinery.ModuleSpec` for alternatives." +msgstr "" + +msgid "Like :c:func:`PyImport_ExecCodeModule`, but the :attr:`~module.__file__` attribute of the module object is set to *pathname* if it is non-``NULL``." msgstr "" -#: ../../c-api/import.rst:168 msgid "See also :c:func:`PyImport_ExecCodeModuleWithPathnames`." msgstr "" -#: ../../c-api/import.rst:173 -msgid "" -"Like :c:func:`PyImport_ExecCodeModuleEx`, but the :attr:`~module.__cached__` " -"attribute of the module object is set to *cpathname* if it is non-``NULL``. " -"Of the three functions, this is the preferred one to use." +msgid "Like :c:func:`PyImport_ExecCodeModuleEx`, but the :attr:`~module.__cached__` attribute of the module object is set to *cpathname* if it is non-``NULL``. Of the three functions, this is the preferred one to use." msgstr "" -#: ../../c-api/import.rst:179 -msgid "" -"Setting :attr:`~module.__cached__` is deprecated. " -"See :class:`~importlib.machinery.ModuleSpec` for alternatives." +msgid "Setting :attr:`~module.__cached__` is deprecated. See :class:`~importlib.machinery.ModuleSpec` for alternatives." msgstr "" -#: ../../c-api/import.rst:186 -msgid "" -"Like :c:func:`PyImport_ExecCodeModuleObject`, but *name*, *pathname* and " -"*cpathname* are UTF-8 encoded strings. Attempts are also made to figure out " -"what the value for *pathname* should be from *cpathname* if the former is " -"set to ``NULL``." +msgid "Like :c:func:`PyImport_ExecCodeModuleObject`, but *name*, *pathname* and *cpathname* are UTF-8 encoded strings. Attempts are also made to figure out what the value for *pathname* should be from *cpathname* if the former is set to ``NULL``." msgstr "" -#: ../../c-api/import.rst:192 -msgid "" -"Uses :func:`!imp.source_from_cache` in calculating the source path if only " -"the bytecode path is provided." +msgid "Uses :func:`!imp.source_from_cache` in calculating the source path if only the bytecode path is provided." msgstr "" -#: ../../c-api/import.rst:195 msgid "No longer uses the removed :mod:`!imp` module." msgstr "" -#: ../../c-api/import.rst:201 -msgid "" -"Return the magic number for Python bytecode files (a.k.a. :file:`.pyc` " -"file). The magic number should be present in the first four bytes of the " -"bytecode file, in little-endian byte order. Returns ``-1`` on error." +msgid "Return the magic number for Python bytecode files (a.k.a. :file:`.pyc` file). The magic number should be present in the first four bytes of the bytecode file, in little-endian byte order. Returns ``-1`` on error." msgstr "" -#: ../../c-api/import.rst:205 msgid "Return value of ``-1`` upon failure." msgstr "" -#: ../../c-api/import.rst:211 -msgid "" -"Return the magic tag string for :pep:`3147` format Python bytecode file " -"names. Keep in mind that the value at ``sys.implementation.cache_tag`` is " -"authoritative and should be used instead of this function." +msgid "Return the magic tag string for :pep:`3147` format Python bytecode file names. Keep in mind that the value at ``sys.implementation.cache_tag`` is authoritative and should be used instead of this function." msgstr "" -#: ../../c-api/import.rst:219 -msgid "" -"Return the dictionary used for the module administration (a.k.a. " -"``sys.modules``). Note that this is a per-interpreter variable." +msgid "Return the dictionary used for the module administration (a.k.a. ``sys.modules``). Note that this is a per-interpreter variable." msgstr "" -#: ../../c-api/import.rst:224 -msgid "" -"Return the already imported module with the given name. If the module has " -"not been imported yet then returns ``NULL`` but does not set an error. " -"Returns ``NULL`` and sets an error if the lookup failed." +msgid "Return the already imported module with the given name. If the module has not been imported yet then returns ``NULL`` but does not set an error. Returns ``NULL`` and sets an error if the lookup failed." msgstr "" -#: ../../c-api/import.rst:232 -msgid "" -"Return a finder object for a :data:`sys.path`/:attr:`!pkg.__path__` item " -"*path*, possibly by fetching it from the :data:`sys.path_importer_cache` " -"dict. If it wasn't yet cached, traverse :data:`sys.path_hooks` until a hook " -"is found that can handle the path item. Return ``None`` if no hook could; " -"this tells our caller that the :term:`path based finder` could not find a " -"finder for this path item. Cache the result " -"in :data:`sys.path_importer_cache`. Return a new reference to the finder " -"object." +msgid "Return a finder object for a :data:`sys.path`/:attr:`!pkg.__path__` item *path*, possibly by fetching it from the :data:`sys.path_importer_cache` dict. If it wasn't yet cached, traverse :data:`sys.path_hooks` until a hook is found that can handle the path item. Return ``None`` if no hook could; this tells our caller that the :term:`path based finder` could not find a finder for this path item. Cache the result in :data:`sys.path_importer_cache`. Return a new reference to the finder object." msgstr "" -#: ../../c-api/import.rst:243 -msgid "" -"Load a frozen module named *name*. Return ``1`` for success, ``0`` if the " -"module is not found, and ``-1`` with an exception set if the initialization " -"failed. To access the imported module on a successful load, " -"use :c:func:`PyImport_ImportModule`. (Note the misnomer --- this function " -"would reload the module if it was already imported.)" +msgid "Load a frozen module named *name*. Return ``1`` for success, ``0`` if the module is not found, and ``-1`` with an exception set if the initialization failed. To access the imported module on a successful load, use :c:func:`PyImport_ImportModule`. (Note the misnomer --- this function would reload the module if it was already imported.)" msgstr "" -#: ../../c-api/import.rst:251 msgid "The ``__file__`` attribute is no longer set on the module." msgstr "" -#: ../../c-api/import.rst:257 -msgid "" -"Similar to :c:func:`PyImport_ImportFrozenModuleObject`, but the name is a " -"UTF-8 encoded string instead of a Unicode object." +msgid "Similar to :c:func:`PyImport_ImportFrozenModuleObject`, but the name is a UTF-8 encoded string instead of a Unicode object." msgstr "" -#: ../../c-api/import.rst:265 -msgid "" -"This is the structure type definition for frozen module descriptors, as " -"generated by the :program:`freeze` utility (see :file:`Tools/freeze/` in the " -"Python source distribution). Its definition, found in :file:`Include/" -"import.h`, is::" +msgid "This is the structure type definition for frozen module descriptors, as generated by the :program:`freeze` utility (see :file:`Tools/freeze/` in the Python source distribution). Its definition, found in :file:`Include/import.h`, is::" msgstr "" -#: ../../c-api/import.rst:270 msgid "" "struct _frozen {\n" " const char *name;\n" @@ -321,122 +166,65 @@ msgid "" "};" msgstr "" -#: ../../c-api/import.rst:277 -msgid "" -"The new ``is_package`` field indicates whether the module is a package or " -"not. This replaces setting the ``size`` field to a negative value." +msgid "The new ``is_package`` field indicates whether the module is a package or not. This replaces setting the ``size`` field to a negative value." msgstr "" -#: ../../c-api/import.rst:283 -msgid "" -"This pointer is initialized to point to an array of :c:struct:`_frozen` " -"records, terminated by one whose members are all ``NULL`` or zero. When a " -"frozen module is imported, it is searched in this table. Third-party code " -"could play tricks with this to provide a dynamically created collection of " -"frozen modules." +msgid "This pointer is initialized to point to an array of :c:struct:`_frozen` records, terminated by one whose members are all ``NULL`` or zero. When a frozen module is imported, it is searched in this table. Third-party code could play tricks with this to provide a dynamically created collection of frozen modules." msgstr "" -#: ../../c-api/import.rst:291 -msgid "" -"Add a single module to the existing table of built-in modules. This is a " -"convenience wrapper around :c:func:`PyImport_ExtendInittab`, returning " -"``-1`` if the table could not be extended. The new module can be imported " -"by the name *name*, and uses the function *initfunc* as the initialization " -"function called on the first attempted import. This should be called " -"before :c:func:`Py_Initialize`." +msgid "Add a single module to the existing table of built-in modules. This is a convenience wrapper around :c:func:`PyImport_ExtendInittab`, returning ``-1`` if the table could not be extended. The new module can be imported by the name *name*, and uses the function *initfunc* as the initialization function called on the first attempted import. This should be called before :c:func:`Py_Initialize`." msgstr "" -#: ../../c-api/import.rst:301 -msgid "" -"Structure describing a single entry in the list of built-in modules. " -"Programs which embed Python may use an array of these structures in " -"conjunction with :c:func:`PyImport_ExtendInittab` to provide additional " -"built-in modules. The structure consists of two members:" +msgid "Structure describing a single entry in the list of built-in modules. Programs which embed Python may use an array of these structures in conjunction with :c:func:`PyImport_ExtendInittab` to provide additional built-in modules. The structure consists of two members:" msgstr "" -#: ../../c-api/import.rst:309 msgid "The module name, as an ASCII encoded string." msgstr "" -#: ../../c-api/import.rst:313 msgid "Initialization function for a module built into the interpreter." msgstr "" -#: ../../c-api/import.rst:318 -msgid "" -"Add a collection of modules to the table of built-in modules. The *newtab* " -"array must end with a sentinel entry which contains ``NULL`` for " -"the :c:member:`~_inittab.name` field; failure to provide the sentinel value " -"can result in a memory fault. Returns ``0`` on success or ``-1`` if " -"insufficient memory could be allocated to extend the internal table. In the " -"event of failure, no modules are added to the internal table. This must be " -"called before :c:func:`Py_Initialize`." +msgid "Add a collection of modules to the table of built-in modules. The *newtab* array must end with a sentinel entry which contains ``NULL`` for the :c:member:`~_inittab.name` field; failure to provide the sentinel value can result in a memory fault. Returns ``0`` on success or ``-1`` if insufficient memory could be allocated to extend the internal table. In the event of failure, no modules are added to the internal table. This must be called before :c:func:`Py_Initialize`." msgstr "" -#: ../../c-api/import.rst:325 -msgid "" -"If Python is initialized multiple times, :c:func:`PyImport_AppendInittab` " -"or :c:func:`PyImport_ExtendInittab` must be called before each Python " -"initialization." +msgid "If Python is initialized multiple times, :c:func:`PyImport_AppendInittab` or :c:func:`PyImport_ExtendInittab` must be called before each Python initialization." msgstr "" -#: ../../c-api/import.rst:332 -msgid "" -"The table of built-in modules used by Python initialization. Do not use this " -"directly; use :c:func:`PyImport_AppendInittab` " -"and :c:func:`PyImport_ExtendInittab` instead." +msgid "The table of built-in modules used by Python initialization. Do not use this directly; use :c:func:`PyImport_AppendInittab` and :c:func:`PyImport_ExtendInittab` instead." msgstr "" -#: ../../c-api/import.rst:339 msgid "Import the module *mod_name* and get its attribute *attr_name*." msgstr "" -#: ../../c-api/import.rst:341 msgid "Names must be Python :class:`str` objects." msgstr "" -#: ../../c-api/import.rst:343 -msgid "" -"Helper function combining :c:func:`PyImport_Import` " -"and :c:func:`PyObject_GetAttr`. For example, it can raise :exc:`ImportError` " -"if the module is not found, and :exc:`AttributeError` if the attribute " -"doesn't exist." +msgid "Helper function combining :c:func:`PyImport_Import` and :c:func:`PyObject_GetAttr`. For example, it can raise :exc:`ImportError` if the module is not found, and :exc:`AttributeError` if the attribute doesn't exist." msgstr "" -#: ../../c-api/import.rst:352 -msgid "" -"Similar to :c:func:`PyImport_ImportModuleAttr`, but names are UTF-8 encoded " -"strings instead of Python :class:`str` objects." +msgid "Similar to :c:func:`PyImport_ImportModuleAttr`, but names are UTF-8 encoded strings instead of Python :class:`str` objects." msgstr "" -#: ../../c-api/import.rst:11 msgid "package variable" msgstr "" -#: ../../c-api/import.rst:11 msgid "__all__" msgstr "" -#: ../../c-api/import.rst:11 msgid "__all__ (package variable)" msgstr "" -#: ../../c-api/import.rst:11 msgid "modules (in module sys)" msgstr "" -#: ../../c-api/import.rst:35 ../../c-api/import.rst:127 msgid "built-in function" msgstr "" -#: ../../c-api/import.rst:35 msgid "__import__" msgstr "" -#: ../../c-api/import.rst:127 msgid "compile" msgstr "" -#: ../../c-api/import.rst:263 msgid "freeze utility" msgstr "" diff --git a/c-api/index.po b/c-api/index.po index 99001d98..26bf8301 100644 --- a/c-api/index.po +++ b/c-api/index.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:48+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,14 +23,8 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../c-api/index.rst:5 msgid "Python/C API reference manual" msgstr "" -#: ../../c-api/index.rst:7 -msgid "" -"This manual documents the API used by C and C++ programmers who want to " -"write extension modules or embed Python. It is a companion " -"to :ref:`extending-index`, which describes the general principles of " -"extension writing but does not document the API functions in detail." +msgid "This manual documents the API used by C and C++ programmers who want to write extension modules or embed Python. It is a companion to :ref:`extending-index`, which describes the general principles of extension writing but does not document the API functions in detail." msgstr "" diff --git a/c-api/init.po b/c-api/init.po index e5e57a3d..e0661be5 100644 --- a/c-api/init.po +++ b/c-api/init.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:49+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,34 +24,26 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../c-api/init.rst:4 msgid "Initialization, finalization, and threads" msgstr "" -#: ../../c-api/init.rst:6 msgid "This page has been split up into the following:" msgstr "" -#: ../../c-api/init.rst:8 msgid ":ref:`initialization`" msgstr "" -#: ../../c-api/init.rst:9 msgid ":ref:`threads`" msgstr "" -#: ../../c-api/init.rst:10 msgid ":ref:`synchronization`" msgstr "" -#: ../../c-api/init.rst:11 msgid ":ref:`thread-local-storage`" msgstr "" -#: ../../c-api/init.rst:12 msgid ":ref:`sub-interpreter-support`" msgstr "" -#: ../../c-api/init.rst:13 msgid ":ref:`profiling`" msgstr "" diff --git a/c-api/init_config.po b/c-api/init_config.po index e36f335a..9a045c9c 100644 --- a/c-api/init_config.po +++ b/c-api/init_config.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:49+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,44 +24,30 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../c-api/init_config.rst:7 msgid "Python Initialization Configuration" msgstr "" -#: ../../c-api/init_config.rst:13 msgid "PyInitConfig C API" msgstr "" -#: ../../c-api/init_config.rst:17 msgid "Python can be initialized with :c:func:`Py_InitializeFromInitConfig`." msgstr "" -#: ../../c-api/init_config.rst:19 ../../c-api/init_config.rst:654 -msgid "" -"The :c:func:`Py_RunMain` function can be used to write a customized Python " -"program." +msgid "The :c:func:`Py_RunMain` function can be used to write a customized Python program." msgstr "" -#: ../../c-api/init_config.rst:22 ../../c-api/init_config.rst:657 -msgid "" -"See also :ref:`Initialization, Finalization, and Threads `." +msgid "See also :ref:`Initialization, Finalization, and Threads `." msgstr "" -#: ../../c-api/init_config.rst:25 msgid ":pep:`741` \"Python Configuration C API\"." msgstr "" -#: ../../c-api/init_config.rst:29 ../../c-api/init_config.rst:664 msgid "Example" msgstr "" -#: ../../c-api/init_config.rst:31 -msgid "" -"Example of customized Python always running with the :ref:`Python " -"Development Mode ` enabled; return ``-1`` on error:" +msgid "Example of customized Python always running with the :ref:`Python Development Mode ` enabled; return ``-1`` on error:" msgstr "" -#: ../../c-api/init_config.rst:34 msgid "" "int init_python(void)\n" "{\n" @@ -98,1045 +84,684 @@ msgid "" "}" msgstr "" -#: ../../c-api/init_config.rst:71 msgid "Create Config" msgstr "" -#: ../../c-api/init_config.rst:75 msgid "Opaque structure to configure the Python initialization." msgstr "" -#: ../../c-api/init_config.rst:80 -msgid "" -"Create a new initialization configuration using :ref:`Isolated Configuration " -"` default values." +msgid "Create a new initialization configuration using :ref:`Isolated Configuration ` default values." msgstr "" -#: ../../c-api/init_config.rst:83 msgid "It must be freed by :c:func:`PyInitConfig_Free`." msgstr "" -#: ../../c-api/init_config.rst:85 msgid "Return ``NULL`` on memory allocation failure." msgstr "" -#: ../../c-api/init_config.rst:90 msgid "Free memory of the initialization configuration *config*." msgstr "" -#: ../../c-api/init_config.rst:92 msgid "If *config* is ``NULL``, no operation is performed." msgstr "" -#: ../../c-api/init_config.rst:96 msgid "Error Handling" msgstr "" -#: ../../c-api/init_config.rst:100 msgid "Get the *config* error message." msgstr "" -#: ../../c-api/init_config.rst:102 msgid "Set *\\*err_msg* and return ``1`` if an error is set." msgstr "" -#: ../../c-api/init_config.rst:103 msgid "Set *\\*err_msg* to ``NULL`` and return ``0`` otherwise." msgstr "" -#: ../../c-api/init_config.rst:105 msgid "An error message is a UTF-8 encoded string." msgstr "" -#: ../../c-api/init_config.rst:107 msgid "If *config* has an exit code, format the exit code as an error message." msgstr "" -#: ../../c-api/init_config.rst:110 -msgid "" -"The error message remains valid until another ``PyInitConfig`` function is " -"called with *config*. The caller doesn't have to free the error message." +msgid "The error message remains valid until another ``PyInitConfig`` function is called with *config*. The caller doesn't have to free the error message." msgstr "" -#: ../../c-api/init_config.rst:117 msgid "Get the *config* exit code." msgstr "" -#: ../../c-api/init_config.rst:119 msgid "Set *\\*exitcode* and return ``1`` if *config* has an exit code set." msgstr "" -#: ../../c-api/init_config.rst:120 msgid "Return ``0`` if *config* has no exit code set." msgstr "" -#: ../../c-api/init_config.rst:122 -msgid "" -"Only the ``Py_InitializeFromInitConfig()`` function can set an exit code if " -"the ``parse_argv`` option is non-zero." +msgid "Only the ``Py_InitializeFromInitConfig()`` function can set an exit code if the ``parse_argv`` option is non-zero." msgstr "" -#: ../../c-api/init_config.rst:125 -msgid "" -"An exit code can be set when parsing the command line failed (exit code " -"``2``) or when a command line option asks to display the command line help " -"(exit code ``0``)." +msgid "An exit code can be set when parsing the command line failed (exit code ``2``) or when a command line option asks to display the command line help (exit code ``0``)." msgstr "" -#: ../../c-api/init_config.rst:131 msgid "Get Options" msgstr "" -#: ../../c-api/init_config.rst:133 ../../c-api/init_config.rst:187 -#: ../../c-api/init_config.rst:559 -msgid "" -"The configuration option *name* parameter must be a non-NULL null-terminated " -"UTF-8 encoded string. See :ref:`Configuration Options `." +msgid "The configuration option *name* parameter must be a non-NULL null-terminated UTF-8 encoded string. See :ref:`Configuration Options `." msgstr "" -#: ../../c-api/init_config.rst:138 msgid "Test if the configuration has an option called *name*." msgstr "" -#: ../../c-api/init_config.rst:140 msgid "Return ``1`` if the option exists, or return ``0`` otherwise." msgstr "" -#: ../../c-api/init_config.rst:145 msgid "Get an integer configuration option." msgstr "" -#: ../../c-api/init_config.rst:147 ../../c-api/init_config.rst:156 msgid "Set *\\*value*, and return ``0`` on success." msgstr "" -#: ../../c-api/init_config.rst:148 ../../c-api/init_config.rst:157 -#: ../../c-api/init_config.rst:172 ../../c-api/init_config.rst:200 -#: ../../c-api/init_config.rst:209 ../../c-api/init_config.rst:218 -#: ../../c-api/init_config.rst:233 ../../c-api/init_config.rst:249 msgid "Set an error in *config* and return ``-1`` on error." msgstr "" -#: ../../c-api/init_config.rst:153 -msgid "" -"Get a string configuration option as a null-terminated UTF-8 encoded string." +msgid "Get a string configuration option as a null-terminated UTF-8 encoded string." msgstr "" -#: ../../c-api/init_config.rst:159 -msgid "" -"*\\*value* can be set to ``NULL`` if the option is an optional string and " -"the option is unset." +msgid "*\\*value* can be set to ``NULL`` if the option is an optional string and the option is unset." msgstr "" -#: ../../c-api/init_config.rst:162 -msgid "" -"On success, the string must be released with ``free(value)`` if it's not " -"``NULL``." +msgid "On success, the string must be released with ``free(value)`` if it's not ``NULL``." msgstr "" -#: ../../c-api/init_config.rst:168 -msgid "" -"Get a string list configuration option as an array of null-terminated UTF-8 " -"encoded strings." +msgid "Get a string list configuration option as an array of null-terminated UTF-8 encoded strings." msgstr "" -#: ../../c-api/init_config.rst:171 msgid "Set *\\*length* and *\\*value*, and return ``0`` on success." msgstr "" -#: ../../c-api/init_config.rst:174 -msgid "" -"On success, the string list must be released with " -"``PyInitConfig_FreeStrList(length, items)``." +msgid "On success, the string list must be released with ``PyInitConfig_FreeStrList(length, items)``." msgstr "" -#: ../../c-api/init_config.rst:180 msgid "Free memory of a string list created by ``PyInitConfig_GetStrList()``." msgstr "" -#: ../../c-api/init_config.rst:185 msgid "Set Options" msgstr "" -#: ../../c-api/init_config.rst:190 -msgid "" -"Some configuration options have side effects on other options. This logic is " -"only implemented when ``Py_InitializeFromInitConfig()`` is called, not by " -"the \"Set\" functions below. For example, setting ``dev_mode`` to ``1`` does " -"not set ``faulthandler`` to ``1``." +msgid "Some configuration options have side effects on other options. This logic is only implemented when ``Py_InitializeFromInitConfig()`` is called, not by the \"Set\" functions below. For example, setting ``dev_mode`` to ``1`` does not set ``faulthandler`` to ``1``." msgstr "" -#: ../../c-api/init_config.rst:197 msgid "Set an integer configuration option." msgstr "" -#: ../../c-api/init_config.rst:199 ../../c-api/init_config.rst:208 -#: ../../c-api/init_config.rst:217 ../../c-api/init_config.rst:232 -#: ../../c-api/init_config.rst:248 ../../c-api/init_config.rst:591 msgid "Return ``0`` on success." msgstr "" -#: ../../c-api/init_config.rst:205 -msgid "" -"Set a string configuration option from a null-terminated UTF-8 encoded " -"string. The string is copied." +msgid "Set a string configuration option from a null-terminated UTF-8 encoded string. The string is copied." msgstr "" -#: ../../c-api/init_config.rst:214 -msgid "" -"Set a string list configuration option from an array of null-terminated " -"UTF-8 encoded strings. The string list is copied." +msgid "Set a string list configuration option from an array of null-terminated UTF-8 encoded strings. The string list is copied." msgstr "" -#: ../../c-api/init_config.rst:222 msgid "Module" msgstr "" -#: ../../c-api/init_config.rst:226 msgid "Add a built-in extension module to the table of built-in modules." msgstr "" -#: ../../c-api/init_config.rst:228 -msgid "" -"The new module can be imported by the name *name*, and uses the function " -"*initfunc* as the initialization function called on the first attempted " -"import." +msgid "The new module can be imported by the name *name*, and uses the function *initfunc* as the initialization function called on the first attempted import." msgstr "" -#: ../../c-api/init_config.rst:235 -msgid "" -"If Python is initialized multiple times, ``PyInitConfig_AddModule()`` must " -"be called at each Python initialization." +msgid "If Python is initialized multiple times, ``PyInitConfig_AddModule()`` must be called at each Python initialization." msgstr "" -#: ../../c-api/init_config.rst:238 msgid "Similar to the :c:func:`PyImport_AppendInittab` function." msgstr "" -#: ../../c-api/init_config.rst:242 msgid "Initialize Python" msgstr "" -#: ../../c-api/init_config.rst:246 msgid "Initialize Python from the initialization configuration." msgstr "" -#: ../../c-api/init_config.rst:250 msgid "Set an exit code in *config* and return ``-1`` if Python wants to exit." msgstr "" -#: ../../c-api/init_config.rst:253 msgid "See ``PyInitConfig_GetExitcode()`` for the exit code case." msgstr "" -#: ../../c-api/init_config.rst:259 msgid "Configuration Options" msgstr "" -#: ../../c-api/init_config.rst:264 msgid "Option" msgstr "" -#: ../../c-api/init_config.rst:265 msgid "PyConfig/PyPreConfig member" msgstr "" -#: ../../c-api/init_config.rst:266 msgid "Type" msgstr "" -#: ../../c-api/init_config.rst:267 msgid "Visibility" msgstr "" -#: ../../c-api/init_config.rst:268 msgid "``\"allocator\"``" msgstr "" -#: ../../c-api/init_config.rst:269 msgid ":c:member:`allocator `" msgstr "" -#: ../../c-api/init_config.rst:270 ../../c-api/init_config.rst:294 -#: ../../c-api/init_config.rst:322 ../../c-api/init_config.rst:358 -#: ../../c-api/init_config.rst:366 ../../c-api/init_config.rst:378 -#: ../../c-api/init_config.rst:406 ../../c-api/init_config.rst:494 -#: ../../c-api/init_config.rst:522 ../../c-api/init_config.rst:576 msgid "``int``" msgstr "" -#: ../../c-api/init_config.rst:271 ../../c-api/init_config.rst:291 -#: ../../c-api/init_config.rst:299 ../../c-api/init_config.rst:303 -#: ../../c-api/init_config.rst:307 ../../c-api/init_config.rst:311 -#: ../../c-api/init_config.rst:315 ../../c-api/init_config.rst:319 -#: ../../c-api/init_config.rst:327 ../../c-api/init_config.rst:331 -#: ../../c-api/init_config.rst:335 ../../c-api/init_config.rst:347 -#: ../../c-api/init_config.rst:351 ../../c-api/init_config.rst:355 -#: ../../c-api/init_config.rst:359 ../../c-api/init_config.rst:363 -#: ../../c-api/init_config.rst:367 ../../c-api/init_config.rst:375 -#: ../../c-api/init_config.rst:387 ../../c-api/init_config.rst:391 -#: ../../c-api/init_config.rst:395 ../../c-api/init_config.rst:399 -#: ../../c-api/init_config.rst:411 ../../c-api/init_config.rst:415 -#: ../../c-api/init_config.rst:423 ../../c-api/init_config.rst:427 -#: ../../c-api/init_config.rst:439 ../../c-api/init_config.rst:451 -#: ../../c-api/init_config.rst:455 ../../c-api/init_config.rst:459 -#: ../../c-api/init_config.rst:463 ../../c-api/init_config.rst:467 -#: ../../c-api/init_config.rst:471 ../../c-api/init_config.rst:475 -#: ../../c-api/init_config.rst:479 ../../c-api/init_config.rst:483 -#: ../../c-api/init_config.rst:487 ../../c-api/init_config.rst:495 -#: ../../c-api/init_config.rst:503 ../../c-api/init_config.rst:507 -#: ../../c-api/init_config.rst:511 ../../c-api/init_config.rst:515 -#: ../../c-api/init_config.rst:519 ../../c-api/init_config.rst:527 -#: ../../c-api/init_config.rst:543 msgid "Read-only" msgstr "" -#: ../../c-api/init_config.rst:272 msgid "``\"argv\"``" msgstr "" -#: ../../c-api/init_config.rst:273 msgid ":c:member:`argv `" msgstr "" -#: ../../c-api/init_config.rst:274 ../../c-api/init_config.rst:402 -#: ../../c-api/init_config.rst:410 ../../c-api/init_config.rst:530 -#: ../../c-api/init_config.rst:578 msgid "``list[str]``" msgstr "" -#: ../../c-api/init_config.rst:275 ../../c-api/init_config.rst:279 -#: ../../c-api/init_config.rst:283 ../../c-api/init_config.rst:287 -#: ../../c-api/init_config.rst:295 ../../c-api/init_config.rst:323 -#: ../../c-api/init_config.rst:339 ../../c-api/init_config.rst:343 -#: ../../c-api/init_config.rst:371 ../../c-api/init_config.rst:379 -#: ../../c-api/init_config.rst:383 ../../c-api/init_config.rst:403 -#: ../../c-api/init_config.rst:407 ../../c-api/init_config.rst:419 -#: ../../c-api/init_config.rst:431 ../../c-api/init_config.rst:435 -#: ../../c-api/init_config.rst:443 ../../c-api/init_config.rst:447 -#: ../../c-api/init_config.rst:491 ../../c-api/init_config.rst:499 -#: ../../c-api/init_config.rst:523 ../../c-api/init_config.rst:531 -#: ../../c-api/init_config.rst:535 ../../c-api/init_config.rst:539 msgid "Public" msgstr "" -#: ../../c-api/init_config.rst:276 msgid "``\"base_exec_prefix\"``" msgstr "" -#: ../../c-api/init_config.rst:277 msgid ":c:member:`base_exec_prefix `" msgstr "" -#: ../../c-api/init_config.rst:278 ../../c-api/init_config.rst:282 -#: ../../c-api/init_config.rst:286 ../../c-api/init_config.rst:298 -#: ../../c-api/init_config.rst:334 ../../c-api/init_config.rst:338 -#: ../../c-api/init_config.rst:342 ../../c-api/init_config.rst:350 -#: ../../c-api/init_config.rst:354 ../../c-api/init_config.rst:362 -#: ../../c-api/init_config.rst:430 ../../c-api/init_config.rst:434 -#: ../../c-api/init_config.rst:438 ../../c-api/init_config.rst:442 -#: ../../c-api/init_config.rst:450 ../../c-api/init_config.rst:454 -#: ../../c-api/init_config.rst:458 ../../c-api/init_config.rst:462 -#: ../../c-api/init_config.rst:482 ../../c-api/init_config.rst:486 -#: ../../c-api/init_config.rst:490 ../../c-api/init_config.rst:577 msgid "``str``" msgstr "" -#: ../../c-api/init_config.rst:280 msgid "``\"base_executable\"``" msgstr "" -#: ../../c-api/init_config.rst:281 msgid ":c:member:`base_executable `" msgstr "" -#: ../../c-api/init_config.rst:284 msgid "``\"base_prefix\"``" msgstr "" -#: ../../c-api/init_config.rst:285 msgid ":c:member:`base_prefix `" msgstr "" -#: ../../c-api/init_config.rst:288 msgid "``\"buffered_stdio\"``" msgstr "" -#: ../../c-api/init_config.rst:289 msgid ":c:member:`buffered_stdio `" msgstr "" -#: ../../c-api/init_config.rst:290 ../../c-api/init_config.rst:302 -#: ../../c-api/init_config.rst:306 ../../c-api/init_config.rst:310 -#: ../../c-api/init_config.rst:314 ../../c-api/init_config.rst:318 -#: ../../c-api/init_config.rst:326 ../../c-api/init_config.rst:330 -#: ../../c-api/init_config.rst:346 ../../c-api/init_config.rst:370 -#: ../../c-api/init_config.rst:374 ../../c-api/init_config.rst:382 -#: ../../c-api/init_config.rst:386 ../../c-api/init_config.rst:390 -#: ../../c-api/init_config.rst:394 ../../c-api/init_config.rst:398 -#: ../../c-api/init_config.rst:414 ../../c-api/init_config.rst:418 -#: ../../c-api/init_config.rst:422 ../../c-api/init_config.rst:426 -#: ../../c-api/init_config.rst:446 ../../c-api/init_config.rst:466 -#: ../../c-api/init_config.rst:470 ../../c-api/init_config.rst:474 -#: ../../c-api/init_config.rst:478 ../../c-api/init_config.rst:498 -#: ../../c-api/init_config.rst:502 ../../c-api/init_config.rst:506 -#: ../../c-api/init_config.rst:510 ../../c-api/init_config.rst:514 -#: ../../c-api/init_config.rst:518 ../../c-api/init_config.rst:526 -#: ../../c-api/init_config.rst:534 ../../c-api/init_config.rst:542 -#: ../../c-api/init_config.rst:575 msgid "``bool``" msgstr "" -#: ../../c-api/init_config.rst:292 msgid "``\"bytes_warning\"``" msgstr "" -#: ../../c-api/init_config.rst:293 msgid ":c:member:`bytes_warning `" msgstr "" -#: ../../c-api/init_config.rst:296 msgid "``\"check_hash_pycs_mode\"``" msgstr "" -#: ../../c-api/init_config.rst:297 msgid ":c:member:`check_hash_pycs_mode `" msgstr "" -#: ../../c-api/init_config.rst:300 msgid "``\"code_debug_ranges\"``" msgstr "" -#: ../../c-api/init_config.rst:301 msgid ":c:member:`code_debug_ranges `" msgstr "" -#: ../../c-api/init_config.rst:304 msgid "``\"coerce_c_locale\"``" msgstr "" -#: ../../c-api/init_config.rst:305 msgid ":c:member:`coerce_c_locale `" msgstr "" -#: ../../c-api/init_config.rst:308 msgid "``\"coerce_c_locale_warn\"``" msgstr "" -#: ../../c-api/init_config.rst:309 msgid ":c:member:`coerce_c_locale_warn `" msgstr "" -#: ../../c-api/init_config.rst:312 msgid "``\"configure_c_stdio\"``" msgstr "" -#: ../../c-api/init_config.rst:313 msgid ":c:member:`configure_c_stdio `" msgstr "" -#: ../../c-api/init_config.rst:316 msgid "``\"configure_locale\"``" msgstr "" -#: ../../c-api/init_config.rst:317 msgid ":c:member:`configure_locale `" msgstr "" -#: ../../c-api/init_config.rst:320 msgid "``\"cpu_count\"``" msgstr "" -#: ../../c-api/init_config.rst:321 msgid ":c:member:`cpu_count `" msgstr "" -#: ../../c-api/init_config.rst:324 msgid "``\"dev_mode\"``" msgstr "" -#: ../../c-api/init_config.rst:325 msgid ":c:member:`dev_mode `" msgstr "" -#: ../../c-api/init_config.rst:328 msgid "``\"dump_refs\"``" msgstr "" -#: ../../c-api/init_config.rst:329 msgid ":c:member:`dump_refs `" msgstr "" -#: ../../c-api/init_config.rst:332 msgid "``\"dump_refs_file\"``" msgstr "" -#: ../../c-api/init_config.rst:333 msgid ":c:member:`dump_refs_file `" msgstr "" -#: ../../c-api/init_config.rst:336 msgid "``\"exec_prefix\"``" msgstr "" -#: ../../c-api/init_config.rst:337 msgid ":c:member:`exec_prefix `" msgstr "" -#: ../../c-api/init_config.rst:340 msgid "``\"executable\"``" msgstr "" -#: ../../c-api/init_config.rst:341 msgid ":c:member:`executable `" msgstr "" -#: ../../c-api/init_config.rst:344 msgid "``\"faulthandler\"``" msgstr "" -#: ../../c-api/init_config.rst:345 msgid ":c:member:`faulthandler `" msgstr "" -#: ../../c-api/init_config.rst:348 msgid "``\"filesystem_encoding\"``" msgstr "" -#: ../../c-api/init_config.rst:349 msgid ":c:member:`filesystem_encoding `" msgstr "" -#: ../../c-api/init_config.rst:352 msgid "``\"filesystem_errors\"``" msgstr "" -#: ../../c-api/init_config.rst:353 msgid ":c:member:`filesystem_errors `" msgstr "" -#: ../../c-api/init_config.rst:356 msgid "``\"hash_seed\"``" msgstr "" -#: ../../c-api/init_config.rst:357 msgid ":c:member:`hash_seed `" msgstr "" -#: ../../c-api/init_config.rst:360 msgid "``\"home\"``" msgstr "" -#: ../../c-api/init_config.rst:361 msgid ":c:member:`home `" msgstr "" -#: ../../c-api/init_config.rst:364 msgid "``\"import_time\"``" msgstr "" -#: ../../c-api/init_config.rst:365 msgid ":c:member:`import_time `" msgstr "" -#: ../../c-api/init_config.rst:368 msgid "``\"inspect\"``" msgstr "" -#: ../../c-api/init_config.rst:369 msgid ":c:member:`inspect `" msgstr "" -#: ../../c-api/init_config.rst:372 msgid "``\"install_signal_handlers\"``" msgstr "" -#: ../../c-api/init_config.rst:373 msgid ":c:member:`install_signal_handlers `" msgstr "" -#: ../../c-api/init_config.rst:376 msgid "``\"int_max_str_digits\"``" msgstr "" -#: ../../c-api/init_config.rst:377 msgid ":c:member:`int_max_str_digits `" msgstr "" -#: ../../c-api/init_config.rst:380 msgid "``\"interactive\"``" msgstr "" -#: ../../c-api/init_config.rst:381 msgid ":c:member:`interactive `" msgstr "" -#: ../../c-api/init_config.rst:384 msgid "``\"isolated\"``" msgstr "" -#: ../../c-api/init_config.rst:385 msgid ":c:member:`isolated `" msgstr "" -#: ../../c-api/init_config.rst:388 msgid "``\"legacy_windows_fs_encoding\"``" msgstr "" -#: ../../c-api/init_config.rst:389 -msgid "" -":c:member:`legacy_windows_fs_encoding " -"`" +msgid ":c:member:`legacy_windows_fs_encoding `" msgstr "" -#: ../../c-api/init_config.rst:392 msgid "``\"legacy_windows_stdio\"``" msgstr "" -#: ../../c-api/init_config.rst:393 msgid ":c:member:`legacy_windows_stdio `" msgstr "" -#: ../../c-api/init_config.rst:396 msgid "``\"malloc_stats\"``" msgstr "" -#: ../../c-api/init_config.rst:397 msgid ":c:member:`malloc_stats `" msgstr "" -#: ../../c-api/init_config.rst:400 msgid "``\"module_search_paths\"``" msgstr "" -#: ../../c-api/init_config.rst:401 msgid ":c:member:`module_search_paths `" msgstr "" -#: ../../c-api/init_config.rst:404 msgid "``\"optimization_level\"``" msgstr "" -#: ../../c-api/init_config.rst:405 msgid ":c:member:`optimization_level `" msgstr "" -#: ../../c-api/init_config.rst:408 msgid "``\"orig_argv\"``" msgstr "" -#: ../../c-api/init_config.rst:409 msgid ":c:member:`orig_argv `" msgstr "" -#: ../../c-api/init_config.rst:412 msgid "``\"parse_argv\"``" msgstr "" -#: ../../c-api/init_config.rst:413 msgid ":c:member:`parse_argv `" msgstr "" -#: ../../c-api/init_config.rst:416 msgid "``\"parser_debug\"``" msgstr "" -#: ../../c-api/init_config.rst:417 msgid ":c:member:`parser_debug `" msgstr "" -#: ../../c-api/init_config.rst:420 msgid "``\"pathconfig_warnings\"``" msgstr "" -#: ../../c-api/init_config.rst:421 msgid ":c:member:`pathconfig_warnings `" msgstr "" -#: ../../c-api/init_config.rst:424 msgid "``\"perf_profiling\"``" msgstr "" -#: ../../c-api/init_config.rst:425 msgid ":c:member:`perf_profiling `" msgstr "" -#: ../../c-api/init_config.rst:428 msgid "``\"platlibdir\"``" msgstr "" -#: ../../c-api/init_config.rst:429 msgid ":c:member:`platlibdir `" msgstr "" -#: ../../c-api/init_config.rst:432 msgid "``\"prefix\"``" msgstr "" -#: ../../c-api/init_config.rst:433 msgid ":c:member:`prefix `" msgstr "" -#: ../../c-api/init_config.rst:436 msgid "``\"program_name\"``" msgstr "" -#: ../../c-api/init_config.rst:437 msgid ":c:member:`program_name `" msgstr "" -#: ../../c-api/init_config.rst:440 msgid "``\"pycache_prefix\"``" msgstr "" -#: ../../c-api/init_config.rst:441 msgid ":c:member:`pycache_prefix `" msgstr "" -#: ../../c-api/init_config.rst:444 msgid "``\"quiet\"``" msgstr "" -#: ../../c-api/init_config.rst:445 msgid ":c:member:`quiet `" msgstr "" -#: ../../c-api/init_config.rst:448 msgid "``\"run_command\"``" msgstr "" -#: ../../c-api/init_config.rst:449 msgid ":c:member:`run_command `" msgstr "" -#: ../../c-api/init_config.rst:452 msgid "``\"run_filename\"``" msgstr "" -#: ../../c-api/init_config.rst:453 msgid ":c:member:`run_filename `" msgstr "" -#: ../../c-api/init_config.rst:456 msgid "``\"run_module\"``" msgstr "" -#: ../../c-api/init_config.rst:457 msgid ":c:member:`run_module `" msgstr "" -#: ../../c-api/init_config.rst:460 msgid "``\"run_presite\"``" msgstr "" -#: ../../c-api/init_config.rst:461 msgid ":c:member:`run_presite `" msgstr "" -#: ../../c-api/init_config.rst:464 msgid "``\"safe_path\"``" msgstr "" -#: ../../c-api/init_config.rst:465 msgid ":c:member:`safe_path `" msgstr "" -#: ../../c-api/init_config.rst:468 msgid "``\"show_ref_count\"``" msgstr "" -#: ../../c-api/init_config.rst:469 msgid ":c:member:`show_ref_count `" msgstr "" -#: ../../c-api/init_config.rst:472 msgid "``\"site_import\"``" msgstr "" -#: ../../c-api/init_config.rst:473 msgid ":c:member:`site_import `" msgstr "" -#: ../../c-api/init_config.rst:476 msgid "``\"skip_source_first_line\"``" msgstr "" -#: ../../c-api/init_config.rst:477 msgid ":c:member:`skip_source_first_line `" msgstr "" -#: ../../c-api/init_config.rst:480 msgid "``\"stdio_encoding\"``" msgstr "" -#: ../../c-api/init_config.rst:481 msgid ":c:member:`stdio_encoding `" msgstr "" -#: ../../c-api/init_config.rst:484 msgid "``\"stdio_errors\"``" msgstr "" -#: ../../c-api/init_config.rst:485 msgid ":c:member:`stdio_errors `" msgstr "" -#: ../../c-api/init_config.rst:488 msgid "``\"stdlib_dir\"``" msgstr "" -#: ../../c-api/init_config.rst:489 msgid ":c:member:`stdlib_dir `" msgstr "" -#: ../../c-api/init_config.rst:492 msgid "``\"tracemalloc\"``" msgstr "" -#: ../../c-api/init_config.rst:493 msgid ":c:member:`tracemalloc `" msgstr "" -#: ../../c-api/init_config.rst:496 msgid "``\"use_environment\"``" msgstr "" -#: ../../c-api/init_config.rst:497 msgid ":c:member:`use_environment `" msgstr "" -#: ../../c-api/init_config.rst:500 msgid "``\"use_frozen_modules\"``" msgstr "" -#: ../../c-api/init_config.rst:501 msgid ":c:member:`use_frozen_modules `" msgstr "" -#: ../../c-api/init_config.rst:504 msgid "``\"use_hash_seed\"``" msgstr "" -#: ../../c-api/init_config.rst:505 msgid ":c:member:`use_hash_seed `" msgstr "" -#: ../../c-api/init_config.rst:508 msgid "``\"use_system_logger\"``" msgstr "" -#: ../../c-api/init_config.rst:509 msgid ":c:member:`use_system_logger `" msgstr "" -#: ../../c-api/init_config.rst:512 msgid "``\"user_site_directory\"``" msgstr "" -#: ../../c-api/init_config.rst:513 msgid ":c:member:`user_site_directory `" msgstr "" -#: ../../c-api/init_config.rst:516 msgid "``\"utf8_mode\"``" msgstr "" -#: ../../c-api/init_config.rst:517 msgid ":c:member:`utf8_mode `" msgstr "" -#: ../../c-api/init_config.rst:520 msgid "``\"verbose\"``" msgstr "" -#: ../../c-api/init_config.rst:521 msgid ":c:member:`verbose `" msgstr "" -#: ../../c-api/init_config.rst:524 msgid "``\"warn_default_encoding\"``" msgstr "" -#: ../../c-api/init_config.rst:525 msgid ":c:member:`warn_default_encoding `" msgstr "" -#: ../../c-api/init_config.rst:528 msgid "``\"warnoptions\"``" msgstr "" -#: ../../c-api/init_config.rst:529 msgid ":c:member:`warnoptions `" msgstr "" -#: ../../c-api/init_config.rst:532 msgid "``\"write_bytecode\"``" msgstr "" -#: ../../c-api/init_config.rst:533 msgid ":c:member:`write_bytecode `" msgstr "" -#: ../../c-api/init_config.rst:536 msgid "``\"xoptions\"``" msgstr "" -#: ../../c-api/init_config.rst:537 msgid ":c:member:`xoptions `" msgstr "" -#: ../../c-api/init_config.rst:538 ../../c-api/init_config.rst:579 msgid "``dict[str, str]``" msgstr "" -#: ../../c-api/init_config.rst:540 msgid "``\"_pystats\"``" msgstr "" -#: ../../c-api/init_config.rst:541 msgid ":c:member:`_pystats `" msgstr "" -#: ../../c-api/init_config.rst:545 msgid "Visibility:" msgstr "" -#: ../../c-api/init_config.rst:547 -msgid "" -"Public: Can be retrieved by :c:func:`PyConfig_Get` and set " -"by :c:func:`PyConfig_Set`." +msgid "Public: Can be retrieved by :c:func:`PyConfig_Get` and set by :c:func:`PyConfig_Set`." msgstr "" -#: ../../c-api/init_config.rst:549 -msgid "" -"Read-only: Can be retrieved by :c:func:`PyConfig_Get`, but cannot be set " -"by :c:func:`PyConfig_Set`." +msgid "Read-only: Can be retrieved by :c:func:`PyConfig_Get`, but cannot be set by :c:func:`PyConfig_Set`." msgstr "" -#: ../../c-api/init_config.rst:554 msgid "Runtime Python configuration API" msgstr "" -#: ../../c-api/init_config.rst:556 -msgid "" -"At runtime, it's possible to get and set configuration options " -"using :c:func:`PyConfig_Get` and :c:func:`PyConfig_Set` functions." +msgid "At runtime, it's possible to get and set configuration options using :c:func:`PyConfig_Get` and :c:func:`PyConfig_Set` functions." msgstr "" -#: ../../c-api/init_config.rst:562 -msgid "" -"Some options are read from the :mod:`sys` attributes. For example, the " -"option ``\"argv\"`` is read from :data:`sys.argv`." +msgid "Some options are read from the :mod:`sys` attributes. For example, the option ``\"argv\"`` is read from :data:`sys.argv`." msgstr "" -#: ../../c-api/init_config.rst:568 -msgid "" -"Get the current runtime value of a configuration option as a Python object." +msgid "Get the current runtime value of a configuration option as a Python object." msgstr "" -#: ../../c-api/init_config.rst:570 ../../c-api/init_config.rst:601 msgid "Return a new reference on success." msgstr "" -#: ../../c-api/init_config.rst:571 ../../c-api/init_config.rst:602 msgid "Set an exception and return ``NULL`` on error." msgstr "" -#: ../../c-api/init_config.rst:573 msgid "The object type depends on the configuration option. It can be:" msgstr "" -#: ../../c-api/init_config.rst:581 ../../c-api/init_config.rst:604 -#: ../../c-api/init_config.rst:619 -msgid "" -"The caller must have an :term:`attached thread state`. The function cannot " -"be called before Python initialization nor after Python finalization." +msgid "The caller must have an :term:`attached thread state`. The function cannot be called before Python initialization nor after Python finalization." msgstr "" -#: ../../c-api/init_config.rst:589 msgid "Similar to :c:func:`PyConfig_Get`, but get the value as a C int." msgstr "" -#: ../../c-api/init_config.rst:592 msgid "Set an exception and return ``-1`` on error." msgstr "" -#: ../../c-api/init_config.rst:599 msgid "Get all configuration option names as a ``frozenset``." msgstr "" -#: ../../c-api/init_config.rst:612 msgid "Set the current runtime value of a configuration option." msgstr "" -#: ../../c-api/init_config.rst:614 msgid "Raise a :exc:`ValueError` if there is no option *name*." msgstr "" -#: ../../c-api/init_config.rst:615 msgid "Raise a :exc:`ValueError` if *value* is an invalid value." msgstr "" -#: ../../c-api/init_config.rst:616 msgid "Raise a :exc:`ValueError` if the option is read-only (cannot be set)." msgstr "" -#: ../../c-api/init_config.rst:617 msgid "Raise a :exc:`TypeError` if *value* has not the proper type." msgstr "" -#: ../../c-api/init_config.rst:622 -msgid "" -"Raises an :ref:`auditing event ` ``cpython.PyConfig_Set`` with " -"arguments ``name``, ``value``." +msgid "Raises an :ref:`auditing event ` ``cpython.PyConfig_Set`` with arguments ``name``, ``value``." msgstr "" -#: ../../c-api/init_config.rst:626 -msgid "" -"The function now replaces :data:`sys.flags` (create a new object), instead " -"of modifying :data:`sys.flags` in-place." +msgid "The function now replaces :data:`sys.flags` (create a new object), instead of modifying :data:`sys.flags` in-place." msgstr "" -#: ../../c-api/init_config.rst:634 msgid "PyConfig C API" msgstr "" -#: ../../c-api/init_config.rst:638 -msgid "" -"Python can be initialized with :c:func:`Py_InitializeFromConfig` and " -"the :c:type:`PyConfig` structure. It can be preinitialized " -"with :c:func:`Py_PreInitialize` and the :c:type:`PyPreConfig` structure." +msgid "Python can be initialized with :c:func:`Py_InitializeFromConfig` and the :c:type:`PyConfig` structure. It can be preinitialized with :c:func:`Py_PreInitialize` and the :c:type:`PyPreConfig` structure." msgstr "" -#: ../../c-api/init_config.rst:642 msgid "There are two kinds of configuration:" msgstr "" -#: ../../c-api/init_config.rst:644 -msgid "" -"The :ref:`Python Configuration ` can be used to build a " -"customized Python which behaves as the regular Python. For example, " -"environment variables and command line arguments are used to configure " -"Python." +msgid "The :ref:`Python Configuration ` can be used to build a customized Python which behaves as the regular Python. For example, environment variables and command line arguments are used to configure Python." msgstr "" -#: ../../c-api/init_config.rst:649 -msgid "" -"The :ref:`Isolated Configuration ` can be used to embed " -"Python into an application. It isolates Python from the system. For example, " -"environment variables are ignored, the LC_CTYPE locale is left unchanged and " -"no signal handler is registered." +msgid "The :ref:`Isolated Configuration ` can be used to embed Python into an application. It isolates Python from the system. For example, environment variables are ignored, the LC_CTYPE locale is left unchanged and no signal handler is registered." msgstr "" -#: ../../c-api/init_config.rst:660 msgid ":pep:`587` \"Python Initialization Configuration\"." msgstr "" -#: ../../c-api/init_config.rst:666 msgid "Example of customized Python always running in isolated mode::" msgstr "" -#: ../../c-api/init_config.rst:668 msgid "" "int main(int argc, char **argv)\n" "{\n" @@ -1172,144 +797,99 @@ msgid "" "}" msgstr "" -#: ../../c-api/init_config.rst:703 msgid "PyWideStringList" msgstr "" -#: ../../c-api/init_config.rst:707 msgid "List of ``wchar_t*`` strings." msgstr "" -#: ../../c-api/init_config.rst:709 -msgid "" -"If *length* is non-zero, *items* must be non-``NULL`` and all strings must " -"be non-``NULL``." +msgid "If *length* is non-zero, *items* must be non-``NULL`` and all strings must be non-``NULL``." msgstr "" -#: ../../c-api/init_config.rst:714 msgid "Methods:" msgstr "" -#: ../../c-api/init_config.rst:718 msgid "Append *item* to *list*." msgstr "" -#: ../../c-api/init_config.rst:720 ../../c-api/init_config.rst:731 msgid "Python must be preinitialized to call this function." msgstr "" -#: ../../c-api/init_config.rst:724 msgid "Insert *item* into *list* at *index*." msgstr "" -#: ../../c-api/init_config.rst:726 -msgid "" -"If *index* is greater than or equal to *list* length, append *item* to " -"*list*." +msgid "If *index* is greater than or equal to *list* length, append *item* to *list*." msgstr "" -#: ../../c-api/init_config.rst:729 msgid "*index* must be greater than or equal to ``0``." msgstr "" -#: ../../c-api/init_config.rst:735 ../../c-api/init_config.rst:755 -#: ../../c-api/init_config.rst:862 ../../c-api/init_config.rst:1181 msgid "Structure fields:" msgstr "" -#: ../../c-api/init_config.rst:739 msgid "List length." msgstr "" -#: ../../c-api/init_config.rst:743 msgid "List items." msgstr "" -#: ../../c-api/init_config.rst:746 msgid "PyStatus" msgstr "" -#: ../../c-api/init_config.rst:750 -msgid "" -"Structure to store an initialization function status: success, error or exit." +msgid "Structure to store an initialization function status: success, error or exit." msgstr "" -#: ../../c-api/init_config.rst:753 msgid "For an error, it can store the C function name which created the error." msgstr "" -#: ../../c-api/init_config.rst:759 msgid "Exit code. Argument passed to ``exit()``." msgstr "" -#: ../../c-api/init_config.rst:763 msgid "Error message." msgstr "" -#: ../../c-api/init_config.rst:767 msgid "Name of the function which created an error, can be ``NULL``." msgstr "" -#: ../../c-api/init_config.rst:771 msgid "Functions to create a status:" msgstr "" -#: ../../c-api/init_config.rst:775 msgid "Success." msgstr "" -#: ../../c-api/init_config.rst:779 msgid "Initialization error with a message." msgstr "" -#: ../../c-api/init_config.rst:781 msgid "*err_msg* must not be ``NULL``." msgstr "" -#: ../../c-api/init_config.rst:785 msgid "Memory allocation failure (out of memory)." msgstr "" -#: ../../c-api/init_config.rst:789 msgid "Exit Python with the specified exit code." msgstr "" -#: ../../c-api/init_config.rst:791 msgid "Functions to handle a status:" msgstr "" -#: ../../c-api/init_config.rst:795 -msgid "" -"Is the status an error or an exit? If true, the exception must be handled; " -"by calling :c:func:`Py_ExitStatusException` for example." +msgid "Is the status an error or an exit? If true, the exception must be handled; by calling :c:func:`Py_ExitStatusException` for example." msgstr "" -#: ../../c-api/init_config.rst:800 msgid "Is the result an error?" msgstr "" -#: ../../c-api/init_config.rst:804 msgid "Is the result an exit?" msgstr "" -#: ../../c-api/init_config.rst:808 -msgid "" -"Call ``exit(exitcode)`` if *status* is an exit. Print the error message and " -"exit with a non-zero exit code if *status* is an error. Must only be called " -"if ``PyStatus_Exception(status)`` is non-zero." +msgid "Call ``exit(exitcode)`` if *status* is an exit. Print the error message and exit with a non-zero exit code if *status* is an error. Must only be called if ``PyStatus_Exception(status)`` is non-zero." msgstr "" -#: ../../c-api/init_config.rst:813 -msgid "" -"Internally, Python uses macros which set ``PyStatus.func``, whereas " -"functions to create a status set ``func`` to ``NULL``." +msgid "Internally, Python uses macros which set ``PyStatus.func``, whereas functions to create a status set ``func`` to ``NULL``." msgstr "" -#: ../../c-api/init_config.rst:816 msgid "Example::" msgstr "" -#: ../../c-api/init_config.rst:818 msgid "" "PyStatus alloc(void **ptr, size_t size)\n" "{\n" @@ -1332,331 +912,189 @@ msgid "" "}" msgstr "" -#: ../../c-api/init_config.rst:840 msgid "PyPreConfig" msgstr "" -#: ../../c-api/init_config.rst:844 msgid "Structure used to preinitialize Python." msgstr "" -#: ../../c-api/init_config.rst:848 msgid "Function to initialize a preconfiguration:" msgstr "" -#: ../../c-api/init_config.rst:852 -msgid "" -"Initialize the preconfiguration with :ref:`Python Configuration `." +msgid "Initialize the preconfiguration with :ref:`Python Configuration `." msgstr "" -#: ../../c-api/init_config.rst:857 -msgid "" -"Initialize the preconfiguration with :ref:`Isolated Configuration `." +msgid "Initialize the preconfiguration with :ref:`Isolated Configuration `." msgstr "" -#: ../../c-api/init_config.rst:866 msgid "Name of the Python memory allocators:" msgstr "" -#: ../../c-api/init_config.rst:868 -msgid "" -"``PYMEM_ALLOCATOR_NOT_SET`` (``0``): don't change memory allocators (use " -"defaults)." +msgid "``PYMEM_ALLOCATOR_NOT_SET`` (``0``): don't change memory allocators (use defaults)." msgstr "" -#: ../../c-api/init_config.rst:870 -msgid "" -"``PYMEM_ALLOCATOR_DEFAULT`` (``1``): :ref:`default memory allocators " -"`." +msgid "``PYMEM_ALLOCATOR_DEFAULT`` (``1``): :ref:`default memory allocators `." msgstr "" -#: ../../c-api/init_config.rst:872 -msgid "" -"``PYMEM_ALLOCATOR_DEBUG`` (``2``): :ref:`default memory allocators ` with :ref:`debug hooks `." +msgid "``PYMEM_ALLOCATOR_DEBUG`` (``2``): :ref:`default memory allocators ` with :ref:`debug hooks `." msgstr "" -#: ../../c-api/init_config.rst:875 msgid "``PYMEM_ALLOCATOR_MALLOC`` (``3``): use ``malloc()`` of the C library." msgstr "" -#: ../../c-api/init_config.rst:876 -msgid "" -"``PYMEM_ALLOCATOR_MALLOC_DEBUG`` (``4``): force usage of ``malloc()`` " -"with :ref:`debug hooks `." +msgid "``PYMEM_ALLOCATOR_MALLOC_DEBUG`` (``4``): force usage of ``malloc()`` with :ref:`debug hooks `." msgstr "" -#: ../../c-api/init_config.rst:878 -msgid "" -"``PYMEM_ALLOCATOR_PYMALLOC`` (``5``): :ref:`Python pymalloc memory allocator " -"`." +msgid "``PYMEM_ALLOCATOR_PYMALLOC`` (``5``): :ref:`Python pymalloc memory allocator `." msgstr "" -#: ../../c-api/init_config.rst:880 -msgid "" -"``PYMEM_ALLOCATOR_PYMALLOC_DEBUG`` (``6``): :ref:`Python pymalloc memory " -"allocator ` with :ref:`debug hooks `." +msgid "``PYMEM_ALLOCATOR_PYMALLOC_DEBUG`` (``6``): :ref:`Python pymalloc memory allocator ` with :ref:`debug hooks `." msgstr "" -#: ../../c-api/init_config.rst:883 -msgid "" -"``PYMEM_ALLOCATOR_MIMALLOC`` (``6``): use ``mimalloc``, a fast malloc " -"replacement." +msgid "``PYMEM_ALLOCATOR_MIMALLOC`` (``6``): use ``mimalloc``, a fast malloc replacement." msgstr "" -#: ../../c-api/init_config.rst:885 -msgid "" -"``PYMEM_ALLOCATOR_MIMALLOC_DEBUG`` (``7``): use ``mimalloc``, a fast malloc " -"replacement with :ref:`debug hooks `." +msgid "``PYMEM_ALLOCATOR_MIMALLOC_DEBUG`` (``7``): use ``mimalloc``, a fast malloc replacement with :ref:`debug hooks `." msgstr "" -#: ../../c-api/init_config.rst:889 -msgid "" -"``PYMEM_ALLOCATOR_PYMALLOC`` and ``PYMEM_ALLOCATOR_PYMALLOC_DEBUG`` are not " -"supported if Python is :option:`configured using --without-pymalloc <--" -"without-pymalloc>`." +msgid "``PYMEM_ALLOCATOR_PYMALLOC`` and ``PYMEM_ALLOCATOR_PYMALLOC_DEBUG`` are not supported if Python is :option:`configured using --without-pymalloc <--without-pymalloc>`." msgstr "" -#: ../../c-api/init_config.rst:893 -msgid "" -"``PYMEM_ALLOCATOR_MIMALLOC`` and ``PYMEM_ALLOCATOR_MIMALLOC_DEBUG`` are not " -"supported if Python is :option:`configured using --without-mimalloc <--" -"without-mimalloc>` or if the underlying atomic support isn't available." +msgid "``PYMEM_ALLOCATOR_MIMALLOC`` and ``PYMEM_ALLOCATOR_MIMALLOC_DEBUG`` are not supported if Python is :option:`configured using --without-mimalloc <--without-mimalloc>` or if the underlying atomic support isn't available." msgstr "" -#: ../../c-api/init_config.rst:898 msgid "See :ref:`Memory Management `." msgstr "" -#: ../../c-api/init_config.rst:900 msgid "Default: ``PYMEM_ALLOCATOR_NOT_SET``." msgstr "" -#: ../../c-api/init_config.rst:904 msgid "Set the LC_CTYPE locale to the user preferred locale." msgstr "" -#: ../../c-api/init_config.rst:906 -msgid "" -"If equals to ``0``, set :c:member:`~PyPreConfig.coerce_c_locale` " -"and :c:member:`~PyPreConfig.coerce_c_locale_warn` members to ``0``." +msgid "If equals to ``0``, set :c:member:`~PyPreConfig.coerce_c_locale` and :c:member:`~PyPreConfig.coerce_c_locale_warn` members to ``0``." msgstr "" -#: ../../c-api/init_config.rst:909 ../../c-api/init_config.rst:920 msgid "See the :term:`locale encoding`." msgstr "" -#: ../../c-api/init_config.rst:911 ../../c-api/init_config.rst:966 -#: ../../c-api/init_config.rst:1337 msgid "Default: ``1`` in Python config, ``0`` in isolated config." msgstr "" -#: ../../c-api/init_config.rst:915 msgid "If equals to ``2``, coerce the C locale." msgstr "" -#: ../../c-api/init_config.rst:917 -msgid "" -"If equals to ``1``, read the LC_CTYPE locale to decide if it should be " -"coerced." +msgid "If equals to ``1``, read the LC_CTYPE locale to decide if it should be coerced." msgstr "" -#: ../../c-api/init_config.rst:922 ../../c-api/init_config.rst:928 msgid "Default: ``-1`` in Python config, ``0`` in isolated config." msgstr "" -#: ../../c-api/init_config.rst:926 msgid "If non-zero, emit a warning if the C locale is coerced." msgstr "" -#: ../../c-api/init_config.rst:932 -msgid "" -":ref:`Python Development Mode `: see :c:member:`PyConfig.dev_mode`." +msgid ":ref:`Python Development Mode `: see :c:member:`PyConfig.dev_mode`." msgstr "" -#: ../../c-api/init_config.rst:935 ../../c-api/init_config.rst:1346 -#: ../../c-api/init_config.rst:1402 ../../c-api/init_config.rst:1896 msgid "Default: ``-1`` in Python mode, ``0`` in isolated mode." msgstr "" -#: ../../c-api/init_config.rst:939 msgid "Isolated mode: see :c:member:`PyConfig.isolated`." msgstr "" -#: ../../c-api/init_config.rst:941 ../../c-api/init_config.rst:1573 msgid "Default: ``0`` in Python mode, ``1`` in isolated mode." msgstr "" -#: ../../c-api/init_config.rst:945 msgid "If non-zero:" msgstr "" -#: ../../c-api/init_config.rst:947 msgid "Set :c:member:`PyPreConfig.utf8_mode` to ``0``," msgstr "" -#: ../../c-api/init_config.rst:948 msgid "Set :c:member:`PyConfig.filesystem_encoding` to ``\"mbcs\"``," msgstr "" -#: ../../c-api/init_config.rst:949 msgid "Set :c:member:`PyConfig.filesystem_errors` to ``\"replace\"``." msgstr "" -#: ../../c-api/init_config.rst:951 -msgid "" -"Initialized from the :envvar:`PYTHONLEGACYWINDOWSFSENCODING` environment " -"variable value." +msgid "Initialized from the :envvar:`PYTHONLEGACYWINDOWSFSENCODING` environment variable value." +msgstr "" + +msgid "Only available on Windows. ``#ifdef MS_WINDOWS`` macro can be used for Windows specific code." msgstr "" -#: ../../c-api/init_config.rst:954 ../../c-api/init_config.rst:1587 -msgid "" -"Only available on Windows. ``#ifdef MS_WINDOWS`` macro can be used for " -"Windows specific code." -msgstr "" - -#: ../../c-api/init_config.rst:957 ../../c-api/init_config.rst:1285 -#: ../../c-api/init_config.rst:1292 ../../c-api/init_config.rst:1359 -#: ../../c-api/init_config.rst:1491 ../../c-api/init_config.rst:1509 -#: ../../c-api/init_config.rst:1523 ../../c-api/init_config.rst:1590 -#: ../../c-api/init_config.rst:1604 ../../c-api/init_config.rst:1664 -#: ../../c-api/init_config.rst:1716 ../../c-api/init_config.rst:1778 -#: ../../c-api/init_config.rst:1832 ../../c-api/init_config.rst:1861 -#: ../../c-api/init_config.rst:1975 ../../c-api/init_config.rst:2021 msgid "Default: ``0``." msgstr "" -#: ../../c-api/init_config.rst:961 -msgid "" -"If non-zero, :c:func:`Py_PreInitializeFromArgs` " -"and :c:func:`Py_PreInitializeFromBytesArgs` parse their ``argv`` argument " -"the same way the regular Python parses command line arguments: " -"see :ref:`Command Line Arguments `." +msgid "If non-zero, :c:func:`Py_PreInitializeFromArgs` and :c:func:`Py_PreInitializeFromBytesArgs` parse their ``argv`` argument the same way the regular Python parses command line arguments: see :ref:`Command Line Arguments `." msgstr "" -#: ../../c-api/init_config.rst:970 -msgid "" -"Use :ref:`environment variables `? " -"See :c:member:`PyConfig.use_environment`." +msgid "Use :ref:`environment variables `? See :c:member:`PyConfig.use_environment`." msgstr "" -#: ../../c-api/init_config.rst:973 ../../c-api/init_config.rst:1937 msgid "Default: ``1`` in Python config and ``0`` in isolated config." msgstr "" -#: ../../c-api/init_config.rst:977 msgid "If non-zero, enable the :ref:`Python UTF-8 Mode `." msgstr "" -#: ../../c-api/init_config.rst:979 -msgid "" -"Set to ``0`` or ``1`` by the :option:`-X utf8 <-X>` command line option and " -"the :envvar:`PYTHONUTF8` environment variable." +msgid "Set to ``0`` or ``1`` by the :option:`-X utf8 <-X>` command line option and the :envvar:`PYTHONUTF8` environment variable." msgstr "" -#: ../../c-api/init_config.rst:982 msgid "Also set to ``1`` if the ``LC_CTYPE`` locale is ``C`` or ``POSIX``." msgstr "" -#: ../../c-api/init_config.rst:984 msgid "Default: ``-1`` in Python config and ``0`` in isolated config." msgstr "" -#: ../../c-api/init_config.rst:990 msgid "Preinitialize Python with PyPreConfig" msgstr "" -#: ../../c-api/init_config.rst:992 msgid "The preinitialization of Python:" msgstr "" -#: ../../c-api/init_config.rst:994 msgid "Set the Python memory allocators (:c:member:`PyPreConfig.allocator`)" msgstr "" -#: ../../c-api/init_config.rst:995 msgid "Configure the LC_CTYPE locale (:term:`locale encoding`)" msgstr "" -#: ../../c-api/init_config.rst:996 -msgid "" -"Set the :ref:`Python UTF-8 Mode ` " -"(:c:member:`PyPreConfig.utf8_mode`)" +msgid "Set the :ref:`Python UTF-8 Mode ` (:c:member:`PyPreConfig.utf8_mode`)" msgstr "" -#: ../../c-api/init_config.rst:999 -msgid "" -"The current preconfiguration (``PyPreConfig`` type) is stored in " -"``_PyRuntime.preconfig``." +msgid "The current preconfiguration (``PyPreConfig`` type) is stored in ``_PyRuntime.preconfig``." msgstr "" -#: ../../c-api/init_config.rst:1002 msgid "Functions to preinitialize Python:" msgstr "" -#: ../../c-api/init_config.rst:1006 ../../c-api/init_config.rst:1012 -#: ../../c-api/init_config.rst:1021 msgid "Preinitialize Python from *preconfig* preconfiguration." msgstr "" -#: ../../c-api/init_config.rst:1008 ../../c-api/init_config.rst:1017 -#: ../../c-api/init_config.rst:1026 msgid "*preconfig* must not be ``NULL``." msgstr "" -#: ../../c-api/init_config.rst:1014 -msgid "" -"Parse *argv* command line arguments (bytes strings) " -"if :c:member:`~PyPreConfig.parse_argv` of *preconfig* is non-zero." +msgid "Parse *argv* command line arguments (bytes strings) if :c:member:`~PyPreConfig.parse_argv` of *preconfig* is non-zero." msgstr "" -#: ../../c-api/init_config.rst:1023 -msgid "" -"Parse *argv* command line arguments (wide strings) " -"if :c:member:`~PyPreConfig.parse_argv` of *preconfig* is non-zero." +msgid "Parse *argv* command line arguments (wide strings) if :c:member:`~PyPreConfig.parse_argv` of *preconfig* is non-zero." msgstr "" -#: ../../c-api/init_config.rst:1028 ../../c-api/init_config.rst:2044 -msgid "" -"The caller is responsible to handle exceptions (error or exit) " -"using :c:func:`PyStatus_Exception` and :c:func:`Py_ExitStatusException`." +msgid "The caller is responsible to handle exceptions (error or exit) using :c:func:`PyStatus_Exception` and :c:func:`Py_ExitStatusException`." msgstr "" -#: ../../c-api/init_config.rst:1031 -msgid "" -"For :ref:`Python Configuration ` " -"(:c:func:`PyPreConfig_InitPythonConfig`), if Python is initialized with " -"command line arguments, the command line arguments must also be passed to " -"preinitialize Python, since they have an effect on the pre-configuration " -"like encodings. For example, the :option:`-X utf8 <-X>` command line option " -"enables the :ref:`Python UTF-8 Mode `." +msgid "For :ref:`Python Configuration ` (:c:func:`PyPreConfig_InitPythonConfig`), if Python is initialized with command line arguments, the command line arguments must also be passed to preinitialize Python, since they have an effect on the pre-configuration like encodings. For example, the :option:`-X utf8 <-X>` command line option enables the :ref:`Python UTF-8 Mode `." msgstr "" -#: ../../c-api/init_config.rst:1038 -msgid "" -"``PyMem_SetAllocator()`` can be called after :c:func:`Py_PreInitialize` and " -"before :c:func:`Py_InitializeFromConfig` to install a custom memory " -"allocator. It can be called before :c:func:`Py_PreInitialize` " -"if :c:member:`PyPreConfig.allocator` is set to ``PYMEM_ALLOCATOR_NOT_SET``." +msgid "``PyMem_SetAllocator()`` can be called after :c:func:`Py_PreInitialize` and before :c:func:`Py_InitializeFromConfig` to install a custom memory allocator. It can be called before :c:func:`Py_PreInitialize` if :c:member:`PyPreConfig.allocator` is set to ``PYMEM_ALLOCATOR_NOT_SET``." msgstr "" -#: ../../c-api/init_config.rst:1043 -msgid "" -"Python memory allocation functions like :c:func:`PyMem_RawMalloc` must not " -"be used before the Python preinitialization, whereas calling directly " -"``malloc()`` and ``free()`` is always safe. :c:func:`Py_DecodeLocale` must " -"not be called before the Python preinitialization." +msgid "Python memory allocation functions like :c:func:`PyMem_RawMalloc` must not be used before the Python preinitialization, whereas calling directly ``malloc()`` and ``free()`` is always safe. :c:func:`Py_DecodeLocale` must not be called before the Python preinitialization." msgstr "" -#: ../../c-api/init_config.rst:1048 -msgid "" -"Example using the preinitialization to enable the :ref:`Python UTF-8 Mode " -"`::" +msgid "Example using the preinitialization to enable the :ref:`Python UTF-8 Mode `::" msgstr "" -#: ../../c-api/init_config.rst:1051 msgid "" "PyStatus status;\n" "PyPreConfig preconfig;\n" @@ -1676,1320 +1114,747 @@ msgid "" "Py_Finalize();" msgstr "" -#: ../../c-api/init_config.rst:1070 msgid "PyConfig" msgstr "" -#: ../../c-api/init_config.rst:1074 msgid "Structure containing most parameters to configure Python." msgstr "" -#: ../../c-api/init_config.rst:1076 -msgid "" -"When done, the :c:func:`PyConfig_Clear` function must be used to release the " -"configuration memory." +msgid "When done, the :c:func:`PyConfig_Clear` function must be used to release the configuration memory." msgstr "" -#: ../../c-api/init_config.rst:1081 msgid "Structure methods:" msgstr "" -#: ../../c-api/init_config.rst:1085 -msgid "" -"Initialize configuration with the :ref:`Python Configuration `." +msgid "Initialize configuration with the :ref:`Python Configuration `." msgstr "" -#: ../../c-api/init_config.rst:1090 -msgid "" -"Initialize configuration with the :ref:`Isolated Configuration `." +msgid "Initialize configuration with the :ref:`Isolated Configuration `." msgstr "" -#: ../../c-api/init_config.rst:1095 msgid "Copy the wide character string *str* into ``*config_str``." msgstr "" -#: ../../c-api/init_config.rst:1097 ../../c-api/init_config.rst:1104 -#: ../../c-api/init_config.rst:1111 ../../c-api/init_config.rst:1119 -#: ../../c-api/init_config.rst:1125 ../../c-api/init_config.rst:1142 msgid ":ref:`Preinitialize Python ` if needed." msgstr "" -#: ../../c-api/init_config.rst:1101 -msgid "" -"Decode *str* using :c:func:`Py_DecodeLocale` and set the result into " -"``*config_str``." +msgid "Decode *str* using :c:func:`Py_DecodeLocale` and set the result into ``*config_str``." msgstr "" -#: ../../c-api/init_config.rst:1108 -msgid "" -"Set command line arguments (:c:member:`~PyConfig.argv` member of *config*) " -"from the *argv* list of wide character strings." +msgid "Set command line arguments (:c:member:`~PyConfig.argv` member of *config*) from the *argv* list of wide character strings." msgstr "" -#: ../../c-api/init_config.rst:1115 -msgid "" -"Set command line arguments (:c:member:`~PyConfig.argv` member of *config*) " -"from the *argv* list of bytes strings. Decode bytes " -"using :c:func:`Py_DecodeLocale`." +msgid "Set command line arguments (:c:member:`~PyConfig.argv` member of *config*) from the *argv* list of bytes strings. Decode bytes using :c:func:`Py_DecodeLocale`." msgstr "" -#: ../../c-api/init_config.rst:1123 msgid "Set the list of wide strings *list* to *length* and *items*." msgstr "" -#: ../../c-api/init_config.rst:1129 msgid "Read all Python configuration." msgstr "" -#: ../../c-api/init_config.rst:1131 msgid "Fields which are already initialized are left unchanged." msgstr "" -#: ../../c-api/init_config.rst:1133 -msgid "" -"Fields for :ref:`path configuration ` are no longer " -"calculated or modified when calling this function, as of Python 3.11." +msgid "Fields for :ref:`path configuration ` are no longer calculated or modified when calling this function, as of Python 3.11." msgstr "" -#: ../../c-api/init_config.rst:1136 ../../c-api/init_config.rst:1693 -msgid "" -"The :c:func:`PyConfig_Read` function only parses :c:member:`PyConfig.argv` " -"arguments once: :c:member:`PyConfig.parse_argv` is set to ``2`` after " -"arguments are parsed. Since Python arguments are stripped " -"from :c:member:`PyConfig.argv`, parsing arguments twice would parse the " -"application options as Python options." +msgid "The :c:func:`PyConfig_Read` function only parses :c:member:`PyConfig.argv` arguments once: :c:member:`PyConfig.parse_argv` is set to ``2`` after arguments are parsed. Since Python arguments are stripped from :c:member:`PyConfig.argv`, parsing arguments twice would parse the application options as Python options." msgstr "" -#: ../../c-api/init_config.rst:1144 -msgid "" -"The :c:member:`PyConfig.argv` arguments are now only parsed " -"once, :c:member:`PyConfig.parse_argv` is set to ``2`` after arguments are " -"parsed, and arguments are only parsed if :c:member:`PyConfig.parse_argv` " -"equals ``1``." +msgid "The :c:member:`PyConfig.argv` arguments are now only parsed once, :c:member:`PyConfig.parse_argv` is set to ``2`` after arguments are parsed, and arguments are only parsed if :c:member:`PyConfig.parse_argv` equals ``1``." msgstr "" -#: ../../c-api/init_config.rst:1150 -msgid "" -":c:func:`PyConfig_Read` no longer calculates all paths, and so fields listed " -"under :ref:`Python Path Configuration ` may no longer be " -"updated until :c:func:`Py_InitializeFromConfig` is called." +msgid ":c:func:`PyConfig_Read` no longer calculates all paths, and so fields listed under :ref:`Python Path Configuration ` may no longer be updated until :c:func:`Py_InitializeFromConfig` is called." msgstr "" -#: ../../c-api/init_config.rst:1158 msgid "Release configuration memory." msgstr "" -#: ../../c-api/init_config.rst:1160 -msgid "" -"Most ``PyConfig`` methods :ref:`preinitialize Python ` if needed. " -"In that case, the Python preinitialization configuration " -"(:c:type:`PyPreConfig`) is based on the :c:type:`PyConfig`. If configuration " -"fields which are in common with :c:type:`PyPreConfig` are tuned, they must " -"be set before calling a :c:type:`PyConfig` method:" +msgid "Most ``PyConfig`` methods :ref:`preinitialize Python ` if needed. In that case, the Python preinitialization configuration (:c:type:`PyPreConfig`) is based on the :c:type:`PyConfig`. If configuration fields which are in common with :c:type:`PyPreConfig` are tuned, they must be set before calling a :c:type:`PyConfig` method:" msgstr "" -#: ../../c-api/init_config.rst:1166 msgid ":c:member:`PyConfig.dev_mode`" msgstr "" -#: ../../c-api/init_config.rst:1167 msgid ":c:member:`PyConfig.isolated`" msgstr "" -#: ../../c-api/init_config.rst:1168 msgid ":c:member:`PyConfig.parse_argv`" msgstr "" -#: ../../c-api/init_config.rst:1169 msgid ":c:member:`PyConfig.use_environment`" msgstr "" -#: ../../c-api/init_config.rst:1171 -msgid "" -"Moreover, if :c:func:`PyConfig_SetArgv` or :c:func:`PyConfig_SetBytesArgv` " -"is used, this method must be called before other methods, since the " -"preinitialization configuration depends on command line arguments " -"(if :c:member:`~PyConfig.parse_argv` is non-zero)." +msgid "Moreover, if :c:func:`PyConfig_SetArgv` or :c:func:`PyConfig_SetBytesArgv` is used, this method must be called before other methods, since the preinitialization configuration depends on command line arguments (if :c:member:`~PyConfig.parse_argv` is non-zero)." msgstr "" -#: ../../c-api/init_config.rst:1176 -msgid "" -"The caller of these methods is responsible to handle exceptions (error or " -"exit) using ``PyStatus_Exception()`` and ``Py_ExitStatusException()``." +msgid "The caller of these methods is responsible to handle exceptions (error or exit) using ``PyStatus_Exception()`` and ``Py_ExitStatusException()``." msgstr "" -#: ../../c-api/init_config.rst:1189 -msgid "" -"Set :data:`sys.argv` command line arguments based " -"on :c:member:`~PyConfig.argv`. These parameters are similar to those passed " -"to the program's :c:func:`main` function with the difference that the first " -"entry should refer to the script file to be executed rather than the " -"executable hosting the Python interpreter. If there isn't a script that " -"will be run, the first entry in :c:member:`~PyConfig.argv` can be an empty " -"string." +msgid "Set :data:`sys.argv` command line arguments based on :c:member:`~PyConfig.argv`. These parameters are similar to those passed to the program's :c:func:`main` function with the difference that the first entry should refer to the script file to be executed rather than the executable hosting the Python interpreter. If there isn't a script that will be run, the first entry in :c:member:`~PyConfig.argv` can be an empty string." msgstr "" -#: ../../c-api/init_config.rst:1197 -msgid "" -"Set :c:member:`~PyConfig.parse_argv` to ``1`` to " -"parse :c:member:`~PyConfig.argv` the same way the regular Python parses " -"Python command line arguments and then to strip Python arguments " -"from :c:member:`~PyConfig.argv`." +msgid "Set :c:member:`~PyConfig.parse_argv` to ``1`` to parse :c:member:`~PyConfig.argv` the same way the regular Python parses Python command line arguments and then to strip Python arguments from :c:member:`~PyConfig.argv`." +msgstr "" + +msgid "If :c:member:`~PyConfig.argv` is empty, an empty string is added to ensure that :data:`sys.argv` always exists and is never empty." msgstr "" -#: ../../c-api/init_config.rst:1202 -msgid "" -"If :c:member:`~PyConfig.argv` is empty, an empty string is added to ensure " -"that :data:`sys.argv` always exists and is never empty." -msgstr "" - -#: ../../c-api/init_config.rst:1205 ../../c-api/init_config.rst:1232 -#: ../../c-api/init_config.rst:1246 ../../c-api/init_config.rst:1256 -#: ../../c-api/init_config.rst:1367 ../../c-api/init_config.rst:1376 -#: ../../c-api/init_config.rst:1387 ../../c-api/init_config.rst:1478 -#: ../../c-api/init_config.rst:1634 ../../c-api/init_config.rst:1735 -#: ../../c-api/init_config.rst:1754 ../../c-api/init_config.rst:1769 -#: ../../c-api/init_config.rst:1786 ../../c-api/init_config.rst:1799 -#: ../../c-api/init_config.rst:1807 ../../c-api/init_config.rst:1821 -#: ../../c-api/init_config.rst:1924 msgid "Default: ``NULL``." msgstr "" -#: ../../c-api/init_config.rst:1207 msgid "See also the :c:member:`~PyConfig.orig_argv` member." msgstr "" -#: ../../c-api/init_config.rst:1211 -msgid "" -"If equals to zero, ``Py_RunMain()`` prepends a potentially unsafe path " -"to :data:`sys.path` at startup:" +msgid "If equals to zero, ``Py_RunMain()`` prepends a potentially unsafe path to :data:`sys.path` at startup:" msgstr "" -#: ../../c-api/init_config.rst:1214 -msgid "" -"If :c:member:`argv[0] ` is equal to ``L\"-m\"`` (``python -m " -"module``), prepend the current working directory." +msgid "If :c:member:`argv[0] ` is equal to ``L\"-m\"`` (``python -m module``), prepend the current working directory." msgstr "" -#: ../../c-api/init_config.rst:1216 -msgid "" -"If running a script (``python script.py``), prepend the script's directory. " -"If it's a symbolic link, resolve symbolic links." +msgid "If running a script (``python script.py``), prepend the script's directory. If it's a symbolic link, resolve symbolic links." msgstr "" -#: ../../c-api/init_config.rst:1218 -msgid "" -"Otherwise (``python -c code`` and ``python``), prepend an empty string, " -"which means the current working directory." +msgid "Otherwise (``python -c code`` and ``python``), prepend an empty string, which means the current working directory." msgstr "" -#: ../../c-api/init_config.rst:1221 -msgid "" -"Set to ``1`` by the :option:`-P` command line option and " -"the :envvar:`PYTHONSAFEPATH` environment variable." +msgid "Set to ``1`` by the :option:`-P` command line option and the :envvar:`PYTHONSAFEPATH` environment variable." msgstr "" -#: ../../c-api/init_config.rst:1224 msgid "Default: ``0`` in Python config, ``1`` in isolated config." msgstr "" -#: ../../c-api/init_config.rst:1230 msgid ":data:`sys.base_exec_prefix`." msgstr "" -#: ../../c-api/init_config.rst:1234 ../../c-api/init_config.rst:1248 -#: ../../c-api/init_config.rst:1258 ../../c-api/init_config.rst:1378 -#: ../../c-api/init_config.rst:1389 ../../c-api/init_config.rst:1651 -#: ../../c-api/init_config.rst:1737 msgid "Part of the :ref:`Python Path Configuration ` output." msgstr "" -#: ../../c-api/init_config.rst:1236 msgid "See also :c:member:`PyConfig.exec_prefix`." msgstr "" -#: ../../c-api/init_config.rst:1240 msgid "Python base executable: ``sys._base_executable``." msgstr "" -#: ../../c-api/init_config.rst:1242 msgid "Set by the ``__PYVENV_LAUNCHER__`` environment variable." msgstr "" -#: ../../c-api/init_config.rst:1244 msgid "Set from :c:member:`PyConfig.executable` if ``NULL``." msgstr "" -#: ../../c-api/init_config.rst:1250 msgid "See also :c:member:`PyConfig.executable`." msgstr "" -#: ../../c-api/init_config.rst:1254 msgid ":data:`sys.base_prefix`." msgstr "" -#: ../../c-api/init_config.rst:1260 msgid "See also :c:member:`PyConfig.prefix`." msgstr "" -#: ../../c-api/init_config.rst:1264 -msgid "" -"If equals to ``0`` and :c:member:`~PyConfig.configure_c_stdio` is non-zero, " -"disable buffering on the C streams stdout and stderr." +msgid "If equals to ``0`` and :c:member:`~PyConfig.configure_c_stdio` is non-zero, disable buffering on the C streams stdout and stderr." msgstr "" -#: ../../c-api/init_config.rst:1267 -msgid "" -"Set to ``0`` by the :option:`-u` command line option and " -"the :envvar:`PYTHONUNBUFFERED` environment variable." +msgid "Set to ``0`` by the :option:`-u` command line option and the :envvar:`PYTHONUNBUFFERED` environment variable." msgstr "" -#: ../../c-api/init_config.rst:1270 msgid "stdin is always opened in buffered mode." msgstr "" -#: ../../c-api/init_config.rst:1272 ../../c-api/init_config.rst:1305 -#: ../../c-api/init_config.rst:1849 ../../c-api/init_config.rst:2006 msgid "Default: ``1``." msgstr "" -#: ../../c-api/init_config.rst:1276 -msgid "" -"If equals to ``1``, issue a warning when comparing :class:`bytes` " -"or :class:`bytearray` with :class:`str`, or comparing :class:`bytes` " -"with :class:`int`." +msgid "If equals to ``1``, issue a warning when comparing :class:`bytes` or :class:`bytearray` with :class:`str`, or comparing :class:`bytes` with :class:`int`." msgstr "" -#: ../../c-api/init_config.rst:1280 -msgid "" -"If equal or greater to ``2``, raise a :exc:`BytesWarning` exception in these " -"cases." +msgid "If equal or greater to ``2``, raise a :exc:`BytesWarning` exception in these cases." msgstr "" -#: ../../c-api/init_config.rst:1283 msgid "Incremented by the :option:`-b` command line option." msgstr "" -#: ../../c-api/init_config.rst:1289 -msgid "" -"If non-zero, emit a :exc:`EncodingWarning` warning " -"when :class:`io.TextIOWrapper` uses its default encoding. See :ref:`io-" -"encoding-warning` for details." +msgid "If non-zero, emit a :exc:`EncodingWarning` warning when :class:`io.TextIOWrapper` uses its default encoding. See :ref:`io-encoding-warning` for details." msgstr "" -#: ../../c-api/init_config.rst:1298 -msgid "" -"If equals to ``0``, disables the inclusion of the end line and column " -"mappings in code objects. Also disables traceback printing carets to " -"specific error locations." +msgid "If equals to ``0``, disables the inclusion of the end line and column mappings in code objects. Also disables traceback printing carets to specific error locations." msgstr "" -#: ../../c-api/init_config.rst:1302 -msgid "" -"Set to ``0`` by the :envvar:`PYTHONNODEBUGRANGES` environment variable and " -"by the :option:`-X no_debug_ranges <-X>` command line option." +msgid "Set to ``0`` by the :envvar:`PYTHONNODEBUGRANGES` environment variable and by the :option:`-X no_debug_ranges <-X>` command line option." msgstr "" -#: ../../c-api/init_config.rst:1311 -msgid "" -"Control the validation behavior of hash-based ``.pyc`` files: value of " -"the :option:`--check-hash-based-pycs` command line option." +msgid "Control the validation behavior of hash-based ``.pyc`` files: value of the :option:`--check-hash-based-pycs` command line option." msgstr "" -#: ../../c-api/init_config.rst:1314 msgid "Valid values:" msgstr "" -#: ../../c-api/init_config.rst:1316 -msgid "" -"``L\"always\"``: Hash the source file for invalidation regardless of value " -"of the 'check_source' flag." +msgid "``L\"always\"``: Hash the source file for invalidation regardless of value of the 'check_source' flag." msgstr "" -#: ../../c-api/init_config.rst:1318 msgid "``L\"never\"``: Assume that hash-based pycs always are valid." msgstr "" -#: ../../c-api/init_config.rst:1319 -msgid "" -"``L\"default\"``: The 'check_source' flag in hash-based pycs determines " -"invalidation." +msgid "``L\"default\"``: The 'check_source' flag in hash-based pycs determines invalidation." msgstr "" -#: ../../c-api/init_config.rst:1322 msgid "Default: ``L\"default\"``." msgstr "" -#: ../../c-api/init_config.rst:1324 msgid "See also :pep:`552` \"Deterministic pycs\"." msgstr "" -#: ../../c-api/init_config.rst:1328 msgid "If non-zero, configure C standard streams:" msgstr "" -#: ../../c-api/init_config.rst:1330 -msgid "" -"On Windows, set the binary mode (``O_BINARY``) on stdin, stdout and stderr." +msgid "On Windows, set the binary mode (``O_BINARY``) on stdin, stdout and stderr." msgstr "" -#: ../../c-api/init_config.rst:1332 -msgid "" -"If :c:member:`~PyConfig.buffered_stdio` equals zero, disable buffering of " -"stdin, stdout and stderr streams." +msgid "If :c:member:`~PyConfig.buffered_stdio` equals zero, disable buffering of stdin, stdout and stderr streams." msgstr "" -#: ../../c-api/init_config.rst:1334 -msgid "" -"If :c:member:`~PyConfig.interactive` is non-zero, enable stream buffering on " -"stdin and stdout (only stdout on Windows)." +msgid "If :c:member:`~PyConfig.interactive` is non-zero, enable stream buffering on stdin and stdout (only stdout on Windows)." msgstr "" -#: ../../c-api/init_config.rst:1341 msgid "If non-zero, enable the :ref:`Python Development Mode `." msgstr "" -#: ../../c-api/init_config.rst:1343 -msgid "" -"Set to ``1`` by the :option:`-X dev <-X>` option and " -"the :envvar:`PYTHONDEVMODE` environment variable." +msgid "Set to ``1`` by the :option:`-X dev <-X>` option and the :envvar:`PYTHONDEVMODE` environment variable." msgstr "" -#: ../../c-api/init_config.rst:1350 msgid "Dump Python references?" msgstr "" -#: ../../c-api/init_config.rst:1352 msgid "If non-zero, dump all objects which are still alive at exit." msgstr "" -#: ../../c-api/init_config.rst:1354 msgid "Set to ``1`` by the :envvar:`PYTHONDUMPREFS` environment variable." msgstr "" -#: ../../c-api/init_config.rst:1356 -msgid "" -"Needs a special build of Python with the ``Py_TRACE_REFS`` macro defined: " -"see the :option:`configure --with-trace-refs option <--with-trace-refs>`." +msgid "Needs a special build of Python with the ``Py_TRACE_REFS`` macro defined: see the :option:`configure --with-trace-refs option <--with-trace-refs>`." msgstr "" -#: ../../c-api/init_config.rst:1363 msgid "Filename where to dump Python references." msgstr "" -#: ../../c-api/init_config.rst:1365 msgid "Set by the :envvar:`PYTHONDUMPREFSFILE` environment variable." msgstr "" -#: ../../c-api/init_config.rst:1373 -msgid "" -"The site-specific directory prefix where the platform-dependent Python files " -"are installed: :data:`sys.exec_prefix`." +msgid "The site-specific directory prefix where the platform-dependent Python files are installed: :data:`sys.exec_prefix`." msgstr "" -#: ../../c-api/init_config.rst:1380 msgid "See also :c:member:`PyConfig.base_exec_prefix`." msgstr "" -#: ../../c-api/init_config.rst:1384 -msgid "" -"The absolute path of the executable binary for the Python " -"interpreter: :data:`sys.executable`." +msgid "The absolute path of the executable binary for the Python interpreter: :data:`sys.executable`." msgstr "" -#: ../../c-api/init_config.rst:1391 msgid "See also :c:member:`PyConfig.base_executable`." msgstr "" -#: ../../c-api/init_config.rst:1395 msgid "Enable faulthandler?" msgstr "" -#: ../../c-api/init_config.rst:1397 msgid "If non-zero, call :func:`faulthandler.enable` at startup." msgstr "" -#: ../../c-api/init_config.rst:1399 -msgid "" -"Set to ``1`` by :option:`-X faulthandler <-X>` and " -"the :envvar:`PYTHONFAULTHANDLER` environment variable." +msgid "Set to ``1`` by :option:`-X faulthandler <-X>` and the :envvar:`PYTHONFAULTHANDLER` environment variable." msgstr "" -#: ../../c-api/init_config.rst:1406 -msgid "" -":term:`Filesystem encoding `: :func:`sys.getfilesystemencoding`." +msgid ":term:`Filesystem encoding `: :func:`sys.getfilesystemencoding`." msgstr "" -#: ../../c-api/init_config.rst:1409 msgid "On macOS, Android and VxWorks: use ``\"utf-8\"`` by default." msgstr "" -#: ../../c-api/init_config.rst:1411 -msgid "" -"On Windows: use ``\"utf-8\"`` by default, or ``\"mbcs\"`` " -"if :c:member:`~PyPreConfig.legacy_windows_fs_encoding` " -"of :c:type:`PyPreConfig` is non-zero." +msgid "On Windows: use ``\"utf-8\"`` by default, or ``\"mbcs\"`` if :c:member:`~PyPreConfig.legacy_windows_fs_encoding` of :c:type:`PyPreConfig` is non-zero." msgstr "" -#: ../../c-api/init_config.rst:1415 msgid "Default encoding on other platforms:" msgstr "" -#: ../../c-api/init_config.rst:1417 msgid "``\"utf-8\"`` if :c:member:`PyPreConfig.utf8_mode` is non-zero." msgstr "" -#: ../../c-api/init_config.rst:1418 -msgid "" -"``\"ascii\"`` if Python detects that ``nl_langinfo(CODESET)`` announces the " -"ASCII encoding, whereas the ``mbstowcs()`` function decodes from a different " -"encoding (usually Latin1)." +msgid "``\"ascii\"`` if Python detects that ``nl_langinfo(CODESET)`` announces the ASCII encoding, whereas the ``mbstowcs()`` function decodes from a different encoding (usually Latin1)." msgstr "" -#: ../../c-api/init_config.rst:1421 msgid "``\"utf-8\"`` if ``nl_langinfo(CODESET)`` returns an empty string." msgstr "" -#: ../../c-api/init_config.rst:1422 -msgid "" -"Otherwise, use the :term:`locale encoding`: ``nl_langinfo(CODESET)`` result." +msgid "Otherwise, use the :term:`locale encoding`: ``nl_langinfo(CODESET)`` result." msgstr "" -#: ../../c-api/init_config.rst:1425 -msgid "" -"At Python startup, the encoding name is normalized to the Python codec name. " -"For example, ``\"ANSI_X3.4-1968\"`` is replaced with ``\"ascii\"``." +msgid "At Python startup, the encoding name is normalized to the Python codec name. For example, ``\"ANSI_X3.4-1968\"`` is replaced with ``\"ascii\"``." msgstr "" -#: ../../c-api/init_config.rst:1428 msgid "See also the :c:member:`~PyConfig.filesystem_errors` member." msgstr "" -#: ../../c-api/init_config.rst:1432 -msgid "" -":term:`Filesystem error handler `: :func:`sys.getfilesystemencodeerrors`." +msgid ":term:`Filesystem error handler `: :func:`sys.getfilesystemencodeerrors`." msgstr "" -#: ../../c-api/init_config.rst:1435 -msgid "" -"On Windows: use ``\"surrogatepass\"`` by default, or ``\"replace\"`` " -"if :c:member:`~PyPreConfig.legacy_windows_fs_encoding` " -"of :c:type:`PyPreConfig` is non-zero." +msgid "On Windows: use ``\"surrogatepass\"`` by default, or ``\"replace\"`` if :c:member:`~PyPreConfig.legacy_windows_fs_encoding` of :c:type:`PyPreConfig` is non-zero." msgstr "" -#: ../../c-api/init_config.rst:1439 msgid "On other platforms: use ``\"surrogateescape\"`` by default." msgstr "" -#: ../../c-api/init_config.rst:1441 msgid "Supported error handlers:" msgstr "" -#: ../../c-api/init_config.rst:1443 msgid "``\"strict\"``" msgstr "" -#: ../../c-api/init_config.rst:1444 msgid "``\"surrogateescape\"``" msgstr "" -#: ../../c-api/init_config.rst:1445 msgid "``\"surrogatepass\"`` (only supported with the UTF-8 encoding)" msgstr "" -#: ../../c-api/init_config.rst:1447 msgid "See also the :c:member:`~PyConfig.filesystem_encoding` member." msgstr "" -#: ../../c-api/init_config.rst:1451 msgid "If non-zero, use frozen modules." msgstr "" -#: ../../c-api/init_config.rst:1453 msgid "Set by the :envvar:`PYTHON_FROZEN_MODULES` environment variable." msgstr "" -#: ../../c-api/init_config.rst:1455 -msgid "" -"Default: ``1`` in a release build, or ``0`` in a :ref:`debug build `." +msgid "Default: ``1`` in a release build, or ``0`` in a :ref:`debug build `." msgstr "" -#: ../../c-api/init_config.rst:1461 msgid "Randomized hash function seed." msgstr "" -#: ../../c-api/init_config.rst:1463 -msgid "" -"If :c:member:`~PyConfig.use_hash_seed` is zero, a seed is chosen randomly at " -"Python startup, and :c:member:`~PyConfig.hash_seed` is ignored." +msgid "If :c:member:`~PyConfig.use_hash_seed` is zero, a seed is chosen randomly at Python startup, and :c:member:`~PyConfig.hash_seed` is ignored." msgstr "" -#: ../../c-api/init_config.rst:1466 msgid "Set by the :envvar:`PYTHONHASHSEED` environment variable." msgstr "" -#: ../../c-api/init_config.rst:1468 -msgid "" -"Default *use_hash_seed* value: ``-1`` in Python mode, ``0`` in isolated mode." +msgid "Default *use_hash_seed* value: ``-1`` in Python mode, ``0`` in isolated mode." msgstr "" -#: ../../c-api/init_config.rst:1473 -msgid "" -"Set the default Python \"home\" directory, that is, the location of the " -"standard Python libraries (see :envvar:`PYTHONHOME`)." +msgid "Set the default Python \"home\" directory, that is, the location of the standard Python libraries (see :envvar:`PYTHONHOME`)." msgstr "" -#: ../../c-api/init_config.rst:1476 msgid "Set by the :envvar:`PYTHONHOME` environment variable." msgstr "" -#: ../../c-api/init_config.rst:1480 ../../c-api/init_config.rst:1616 -#: ../../c-api/init_config.rst:1636 ../../c-api/init_config.rst:1725 -#: ../../c-api/init_config.rst:1756 msgid "Part of the :ref:`Python Path Configuration ` input." msgstr "" -#: ../../c-api/init_config.rst:1484 -msgid "" -"If ``1``, profile import time. If ``2``, include additional output that " -"indicates when an imported module has already been loaded." +msgid "If ``1``, profile import time. If ``2``, include additional output that indicates when an imported module has already been loaded." msgstr "" -#: ../../c-api/init_config.rst:1488 -msgid "" -"Set by the :option:`-X importtime <-X>` option and " -"the :envvar:`PYTHONPROFILEIMPORTTIME` environment variable." +msgid "Set by the :option:`-X importtime <-X>` option and the :envvar:`PYTHONPROFILEIMPORTTIME` environment variable." msgstr "" -#: ../../c-api/init_config.rst:1495 msgid "Added support for ``import_time = 2``" msgstr "" -#: ../../c-api/init_config.rst:1499 msgid "Enter interactive mode after executing a script or a command." msgstr "" -#: ../../c-api/init_config.rst:1501 -msgid "" -"If greater than ``0``, enable inspect: when a script is passed as first " -"argument or the -c option is used, enter interactive mode after executing " -"the script or the command, even when :data:`sys.stdin` does not appear to be " -"a terminal." +msgid "If greater than ``0``, enable inspect: when a script is passed as first argument or the -c option is used, enter interactive mode after executing the script or the command, even when :data:`sys.stdin` does not appear to be a terminal." msgstr "" -#: ../../c-api/init_config.rst:1506 -msgid "" -"Incremented by the :option:`-i` command line option. Set to ``1`` if " -"the :envvar:`PYTHONINSPECT` environment variable is non-empty." +msgid "Incremented by the :option:`-i` command line option. Set to ``1`` if the :envvar:`PYTHONINSPECT` environment variable is non-empty." msgstr "" -#: ../../c-api/init_config.rst:1513 msgid "Install Python signal handlers?" msgstr "" -#: ../../c-api/init_config.rst:1515 ../../c-api/init_config.rst:1699 -#: ../../c-api/init_config.rst:1723 ../../c-api/init_config.rst:1959 msgid "Default: ``1`` in Python mode, ``0`` in isolated mode." msgstr "" -#: ../../c-api/init_config.rst:1519 msgid "If greater than ``0``, enable the interactive mode (REPL)." msgstr "" -#: ../../c-api/init_config.rst:1521 msgid "Incremented by the :option:`-i` command line option." msgstr "" -#: ../../c-api/init_config.rst:1527 -msgid "" -"Configures the :ref:`integer string conversion length limitation " -"`. An initial value of ``-1`` means the value will be " -"taken from the command line or environment or otherwise default to 4300 " -"(:data:`sys.int_info.default_max_str_digits`). A value of ``0`` disables " -"the limitation. Values greater than zero but less than 640 " -"(:data:`sys.int_info.str_digits_check_threshold`) are unsupported and will " -"produce an error." +msgid "Configures the :ref:`integer string conversion length limitation `. An initial value of ``-1`` means the value will be taken from the command line or environment or otherwise default to 4300 (:data:`sys.int_info.default_max_str_digits`). A value of ``0`` disables the limitation. Values greater than zero but less than 640 (:data:`sys.int_info.str_digits_check_threshold`) are unsupported and will produce an error." msgstr "" -#: ../../c-api/init_config.rst:1535 -msgid "" -"Configured by the :option:`-X int_max_str_digits <-X>` command line flag or " -"the :envvar:`PYTHONINTMAXSTRDIGITS` environment variable." +msgid "Configured by the :option:`-X int_max_str_digits <-X>` command line flag or the :envvar:`PYTHONINTMAXSTRDIGITS` environment variable." msgstr "" -#: ../../c-api/init_config.rst:1538 -msgid "" -"Default: ``-1`` in Python mode. 4300 " -"(:data:`sys.int_info.default_max_str_digits`) in isolated mode." +msgid "Default: ``-1`` in Python mode. 4300 (:data:`sys.int_info.default_max_str_digits`) in isolated mode." msgstr "" -#: ../../c-api/init_config.rst:1545 -msgid "" -"If the value of :c:member:`~PyConfig.cpu_count` is not ``-1`` then it will " -"override the return values " -"of :func:`os.cpu_count`, :func:`os.process_cpu_count`, " -"and :func:`multiprocessing.cpu_count`." +msgid "If the value of :c:member:`~PyConfig.cpu_count` is not ``-1`` then it will override the return values of :func:`os.cpu_count`, :func:`os.process_cpu_count`, and :func:`multiprocessing.cpu_count`." msgstr "" -#: ../../c-api/init_config.rst:1549 -msgid "" -"Configured by the :samp:`-X cpu_count={n|default}` command line flag or " -"the :envvar:`PYTHON_CPU_COUNT` environment variable." +msgid "Configured by the :samp:`-X cpu_count={n|default}` command line flag or the :envvar:`PYTHON_CPU_COUNT` environment variable." msgstr "" -#: ../../c-api/init_config.rst:1552 ../../c-api/init_config.rst:1913 msgid "Default: ``-1``." msgstr "" -#: ../../c-api/init_config.rst:1558 msgid "If greater than ``0``, enable isolated mode:" msgstr "" -#: ../../c-api/init_config.rst:1560 -msgid "" -"Set :c:member:`~PyConfig.safe_path` to ``1``: don't prepend a potentially " -"unsafe path to :data:`sys.path` at Python startup, such as the current " -"directory, the script's directory or an empty string." +msgid "Set :c:member:`~PyConfig.safe_path` to ``1``: don't prepend a potentially unsafe path to :data:`sys.path` at Python startup, such as the current directory, the script's directory or an empty string." msgstr "" -#: ../../c-api/init_config.rst:1564 -msgid "" -"Set :c:member:`~PyConfig.use_environment` to ``0``: ignore ``PYTHON`` " -"environment variables." +msgid "Set :c:member:`~PyConfig.use_environment` to ``0``: ignore ``PYTHON`` environment variables." msgstr "" -#: ../../c-api/init_config.rst:1566 -msgid "" -"Set :c:member:`~PyConfig.user_site_directory` to ``0``: don't add the user " -"site directory to :data:`sys.path`." +msgid "Set :c:member:`~PyConfig.user_site_directory` to ``0``: don't add the user site directory to :data:`sys.path`." msgstr "" -#: ../../c-api/init_config.rst:1568 -msgid "" -"Python REPL doesn't import :mod:`readline` nor enable default readline " -"configuration on interactive prompts." +msgid "Python REPL doesn't import :mod:`readline` nor enable default readline configuration on interactive prompts." msgstr "" -#: ../../c-api/init_config.rst:1571 msgid "Set to ``1`` by the :option:`-I` command line option." msgstr "" -#: ../../c-api/init_config.rst:1575 -msgid "" -"See also the :ref:`Isolated Configuration ` " -"and :c:member:`PyPreConfig.isolated`." +msgid "See also the :ref:`Isolated Configuration ` and :c:member:`PyPreConfig.isolated`." msgstr "" -#: ../../c-api/init_config.rst:1580 -msgid "" -"If non-zero, use :class:`io.FileIO` instead of :class:`!" -"io._WindowsConsoleIO` for :data:`sys.stdin`, :data:`sys.stdout` " -"and :data:`sys.stderr`." +msgid "If non-zero, use :class:`io.FileIO` instead of :class:`!io._WindowsConsoleIO` for :data:`sys.stdin`, :data:`sys.stdout` and :data:`sys.stderr`." msgstr "" -#: ../../c-api/init_config.rst:1584 -msgid "" -"Set to ``1`` if the :envvar:`PYTHONLEGACYWINDOWSSTDIO` environment variable " -"is set to a non-empty string." +msgid "Set to ``1`` if the :envvar:`PYTHONLEGACYWINDOWSSTDIO` environment variable is set to a non-empty string." msgstr "" -#: ../../c-api/init_config.rst:1592 msgid "See also the :pep:`528` (Change Windows console encoding to UTF-8)." msgstr "" -#: ../../c-api/init_config.rst:1596 -msgid "" -"If non-zero, dump statistics on :ref:`Python pymalloc memory allocator " -"` at exit." +msgid "If non-zero, dump statistics on :ref:`Python pymalloc memory allocator ` at exit." msgstr "" -#: ../../c-api/init_config.rst:1599 msgid "Set to ``1`` by the :envvar:`PYTHONMALLOCSTATS` environment variable." msgstr "" -#: ../../c-api/init_config.rst:1601 -msgid "" -"The option is ignored if Python is :option:`configured using the --without-" -"pymalloc option <--without-pymalloc>`." +msgid "The option is ignored if Python is :option:`configured using the --without-pymalloc option <--without-pymalloc>`." msgstr "" -#: ../../c-api/init_config.rst:1608 msgid "Platform library directory name: :data:`sys.platlibdir`." msgstr "" -#: ../../c-api/init_config.rst:1610 msgid "Set by the :envvar:`PYTHONPLATLIBDIR` environment variable." msgstr "" -#: ../../c-api/init_config.rst:1612 -msgid "" -"Default: value of the ``PLATLIBDIR`` macro which is set by " -"the :option:`configure --with-platlibdir option <--with-platlibdir>` " -"(default: ``\"lib\"``, or ``\"DLLs\"`` on Windows)." +msgid "Default: value of the ``PLATLIBDIR`` macro which is set by the :option:`configure --with-platlibdir option <--with-platlibdir>` (default: ``\"lib\"``, or ``\"DLLs\"`` on Windows)." msgstr "" -#: ../../c-api/init_config.rst:1620 -msgid "" -"This macro is now used on Windows to locate the standard library extension " -"modules, typically under ``DLLs``. However, for compatibility, note that " -"this value is ignored for any non-standard layouts, including in-tree builds " -"and virtual environments." +msgid "This macro is now used on Windows to locate the standard library extension modules, typically under ``DLLs``. However, for compatibility, note that this value is ignored for any non-standard layouts, including in-tree builds and virtual environments." msgstr "" -#: ../../c-api/init_config.rst:1629 -msgid "" -"Module search paths (:data:`sys.path`) as a string separated by ``DELIM`` " -"(:data:`os.pathsep`)." +msgid "Module search paths (:data:`sys.path`) as a string separated by ``DELIM`` (:data:`os.pathsep`)." msgstr "" -#: ../../c-api/init_config.rst:1632 msgid "Set by the :envvar:`PYTHONPATH` environment variable." msgstr "" -#: ../../c-api/init_config.rst:1641 msgid "Module search paths: :data:`sys.path`." msgstr "" -#: ../../c-api/init_config.rst:1643 -msgid "" -"If :c:member:`~PyConfig.module_search_paths_set` is equal to " -"``0``, :c:func:`Py_InitializeFromConfig` will " -"replace :c:member:`~PyConfig.module_search_paths` and " -"sets :c:member:`~PyConfig.module_search_paths_set` to ``1``." +msgid "If :c:member:`~PyConfig.module_search_paths_set` is equal to ``0``, :c:func:`Py_InitializeFromConfig` will replace :c:member:`~PyConfig.module_search_paths` and sets :c:member:`~PyConfig.module_search_paths_set` to ``1``." msgstr "" -#: ../../c-api/init_config.rst:1648 -msgid "" -"Default: empty list (``module_search_paths``) and ``0`` " -"(``module_search_paths_set``)." +msgid "Default: empty list (``module_search_paths``) and ``0`` (``module_search_paths_set``)." msgstr "" -#: ../../c-api/init_config.rst:1655 msgid "Compilation optimization level:" msgstr "" -#: ../../c-api/init_config.rst:1657 msgid "``0``: Peephole optimizer, set ``__debug__`` to ``True``." msgstr "" -#: ../../c-api/init_config.rst:1658 msgid "``1``: Level 0, remove assertions, set ``__debug__`` to ``False``." msgstr "" -#: ../../c-api/init_config.rst:1659 msgid "``2``: Level 1, strip docstrings." msgstr "" -#: ../../c-api/init_config.rst:1661 -msgid "" -"Incremented by the :option:`-O` command line option. Set to " -"the :envvar:`PYTHONOPTIMIZE` environment variable value." +msgid "Incremented by the :option:`-O` command line option. Set to the :envvar:`PYTHONOPTIMIZE` environment variable value." msgstr "" -#: ../../c-api/init_config.rst:1668 -msgid "" -"The list of the original command line arguments passed to the Python " -"executable: :data:`sys.orig_argv`." +msgid "The list of the original command line arguments passed to the Python executable: :data:`sys.orig_argv`." msgstr "" -#: ../../c-api/init_config.rst:1671 -msgid "" -"If :c:member:`~PyConfig.orig_argv` list is empty " -"and :c:member:`~PyConfig.argv` is not a list only containing an empty " -"string, :c:func:`PyConfig_Read` copies :c:member:`~PyConfig.argv` " -"into :c:member:`~PyConfig.orig_argv` before " -"modifying :c:member:`~PyConfig.argv` (if :c:member:`~PyConfig.parse_argv` is " -"non-zero)." +msgid "If :c:member:`~PyConfig.orig_argv` list is empty and :c:member:`~PyConfig.argv` is not a list only containing an empty string, :c:func:`PyConfig_Read` copies :c:member:`~PyConfig.argv` into :c:member:`~PyConfig.orig_argv` before modifying :c:member:`~PyConfig.argv` (if :c:member:`~PyConfig.parse_argv` is non-zero)." msgstr "" -#: ../../c-api/init_config.rst:1678 -msgid "" -"See also the :c:member:`~PyConfig.argv` member and " -"the :c:func:`Py_GetArgcArgv` function." +msgid "See also the :c:member:`~PyConfig.argv` member and the :c:func:`Py_GetArgcArgv` function." msgstr "" -#: ../../c-api/init_config.rst:1681 ../../c-api/init_config.rst:1993 -#: ../../c-api/init_config.rst:2012 msgid "Default: empty list." msgstr "" -#: ../../c-api/init_config.rst:1687 msgid "Parse command line arguments?" msgstr "" -#: ../../c-api/init_config.rst:1689 -msgid "" -"If equals to ``1``, parse :c:member:`~PyConfig.argv` the same way the " -"regular Python parses :ref:`command line arguments `, and " -"strip Python arguments from :c:member:`~PyConfig.argv`." +msgid "If equals to ``1``, parse :c:member:`~PyConfig.argv` the same way the regular Python parses :ref:`command line arguments `, and strip Python arguments from :c:member:`~PyConfig.argv`." msgstr "" -#: ../../c-api/init_config.rst:1701 -msgid "" -"The :c:member:`PyConfig.argv` arguments are now only parsed " -"if :c:member:`PyConfig.parse_argv` equals to ``1``." +msgid "The :c:member:`PyConfig.argv` arguments are now only parsed if :c:member:`PyConfig.parse_argv` equals to ``1``." msgstr "" -#: ../../c-api/init_config.rst:1707 -msgid "" -"Parser debug mode. If greater than ``0``, turn on parser debugging output " -"(for expert only, depending on compilation options)." +msgid "Parser debug mode. If greater than ``0``, turn on parser debugging output (for expert only, depending on compilation options)." msgstr "" -#: ../../c-api/init_config.rst:1710 -msgid "" -"Incremented by the :option:`-d` command line option. Set to " -"the :envvar:`PYTHONDEBUG` environment variable value." +msgid "Incremented by the :option:`-d` command line option. Set to the :envvar:`PYTHONDEBUG` environment variable value." msgstr "" -#: ../../c-api/init_config.rst:1713 ../../c-api/init_config.rst:1818 -msgid "" -"Needs a :ref:`debug build of Python ` (the ``Py_DEBUG`` macro " -"must be defined)." +msgid "Needs a :ref:`debug build of Python ` (the ``Py_DEBUG`` macro must be defined)." msgstr "" -#: ../../c-api/init_config.rst:1720 -msgid "" -"If non-zero, calculation of path configuration is allowed to log warnings " -"into ``stderr``. If equals to ``0``, suppress these warnings." +msgid "If non-zero, calculation of path configuration is allowed to log warnings into ``stderr``. If equals to ``0``, suppress these warnings." msgstr "" -#: ../../c-api/init_config.rst:1727 msgid "Now also applies on Windows." msgstr "" -#: ../../c-api/init_config.rst:1732 -msgid "" -"The site-specific directory prefix where the platform independent Python " -"files are installed: :data:`sys.prefix`." +msgid "The site-specific directory prefix where the platform independent Python files are installed: :data:`sys.prefix`." msgstr "" -#: ../../c-api/init_config.rst:1739 msgid "See also :c:member:`PyConfig.base_prefix`." msgstr "" -#: ../../c-api/init_config.rst:1743 -msgid "" -"Program name used to initialize :c:member:`~PyConfig.executable` and in " -"early error messages during Python initialization." +msgid "Program name used to initialize :c:member:`~PyConfig.executable` and in early error messages during Python initialization." msgstr "" -#: ../../c-api/init_config.rst:1746 msgid "On macOS, use :envvar:`PYTHONEXECUTABLE` environment variable if set." msgstr "" -#: ../../c-api/init_config.rst:1747 -msgid "" -"If the ``WITH_NEXT_FRAMEWORK`` macro is defined, use ``__PYVENV_LAUNCHER__`` " -"environment variable if set." +msgid "If the ``WITH_NEXT_FRAMEWORK`` macro is defined, use ``__PYVENV_LAUNCHER__`` environment variable if set." msgstr "" -#: ../../c-api/init_config.rst:1749 -msgid "" -"Use ``argv[0]`` of :c:member:`~PyConfig.argv` if available and non-empty." +msgid "Use ``argv[0]`` of :c:member:`~PyConfig.argv` if available and non-empty." msgstr "" -#: ../../c-api/init_config.rst:1751 -msgid "" -"Otherwise, use ``L\"python\"`` on Windows, or ``L\"python3\"`` on other " -"platforms." +msgid "Otherwise, use ``L\"python\"`` on Windows, or ``L\"python3\"`` on other platforms." msgstr "" -#: ../../c-api/init_config.rst:1760 -msgid "" -"Directory where cached ``.pyc`` files are " -"written: :data:`sys.pycache_prefix`." +msgid "Directory where cached ``.pyc`` files are written: :data:`sys.pycache_prefix`." msgstr "" -#: ../../c-api/init_config.rst:1763 -msgid "" -"Set by the :option:`-X pycache_prefix=PATH <-X>` command line option and " -"the :envvar:`PYTHONPYCACHEPREFIX` environment variable. The command-line " -"option takes precedence." +msgid "Set by the :option:`-X pycache_prefix=PATH <-X>` command line option and the :envvar:`PYTHONPYCACHEPREFIX` environment variable. The command-line option takes precedence." msgstr "" -#: ../../c-api/init_config.rst:1767 msgid "If ``NULL``, :data:`sys.pycache_prefix` is set to ``None``." msgstr "" -#: ../../c-api/init_config.rst:1773 -msgid "" -"Quiet mode. If greater than ``0``, don't display the copyright and version " -"at Python startup in interactive mode." +msgid "Quiet mode. If greater than ``0``, don't display the copyright and version at Python startup in interactive mode." msgstr "" -#: ../../c-api/init_config.rst:1776 msgid "Incremented by the :option:`-q` command line option." msgstr "" -#: ../../c-api/init_config.rst:1782 msgid "Value of the :option:`-c` command line option." msgstr "" -#: ../../c-api/init_config.rst:1784 ../../c-api/init_config.rst:1805 msgid "Used by :c:func:`Py_RunMain`." msgstr "" -#: ../../c-api/init_config.rst:1790 -msgid "" -"Filename passed on the command line: trailing command line argument " -"without :option:`-c` or :option:`-m`. It is used by the :c:func:`Py_RunMain` " -"function." +msgid "Filename passed on the command line: trailing command line argument without :option:`-c` or :option:`-m`. It is used by the :c:func:`Py_RunMain` function." msgstr "" -#: ../../c-api/init_config.rst:1794 -msgid "" -"For example, it is set to ``script.py`` by the ``python3 script.py arg`` " -"command line." +msgid "For example, it is set to ``script.py`` by the ``python3 script.py arg`` command line." msgstr "" -#: ../../c-api/init_config.rst:1797 msgid "See also the :c:member:`PyConfig.skip_source_first_line` option." msgstr "" -#: ../../c-api/init_config.rst:1803 msgid "Value of the :option:`-m` command line option." msgstr "" -#: ../../c-api/init_config.rst:1811 -msgid "" -"``package.module`` path to module that should be imported before ``site.py`` " -"is run." +msgid "``package.module`` path to module that should be imported before ``site.py`` is run." msgstr "" -#: ../../c-api/init_config.rst:1814 -msgid "" -"Set by the :option:`-X presite=package.module <-X>` command-line option and " -"the :envvar:`PYTHON_PRESITE` environment variable. The command-line option " -"takes precedence." +msgid "Set by the :option:`-X presite=package.module <-X>` command-line option and the :envvar:`PYTHON_PRESITE` environment variable. The command-line option takes precedence." msgstr "" -#: ../../c-api/init_config.rst:1825 -msgid "" -"Show total reference count at exit (excluding :term:`immortal` objects)?" +msgid "Show total reference count at exit (excluding :term:`immortal` objects)?" msgstr "" -#: ../../c-api/init_config.rst:1827 msgid "Set to ``1`` by :option:`-X showrefcount <-X>` command line option." msgstr "" -#: ../../c-api/init_config.rst:1829 -msgid "" -"Needs a :ref:`debug build of Python ` (the ``Py_REF_DEBUG`` " -"macro must be defined)." +msgid "Needs a :ref:`debug build of Python ` (the ``Py_REF_DEBUG`` macro must be defined)." msgstr "" -#: ../../c-api/init_config.rst:1836 msgid "Import the :mod:`site` module at startup?" msgstr "" -#: ../../c-api/init_config.rst:1838 -msgid "" -"If equal to zero, disable the import of the module site and the site-" -"dependent manipulations of :data:`sys.path` that it entails." +msgid "If equal to zero, disable the import of the module site and the site-dependent manipulations of :data:`sys.path` that it entails." msgstr "" -#: ../../c-api/init_config.rst:1841 -msgid "" -"Also disable these manipulations if the :mod:`site` module is explicitly " -"imported later (call :func:`site.main` if you want them to be triggered)." +msgid "Also disable these manipulations if the :mod:`site` module is explicitly imported later (call :func:`site.main` if you want them to be triggered)." msgstr "" -#: ../../c-api/init_config.rst:1844 msgid "Set to ``0`` by the :option:`-S` command line option." msgstr "" -#: ../../c-api/init_config.rst:1846 -msgid "" -":data:`sys.flags.no_site ` is set to the inverted value " -"of :c:member:`~PyConfig.site_import`." +msgid ":data:`sys.flags.no_site ` is set to the inverted value of :c:member:`~PyConfig.site_import`." msgstr "" -#: ../../c-api/init_config.rst:1853 -msgid "" -"If non-zero, skip the first line of the :c:member:`PyConfig.run_filename` " -"source." +msgid "If non-zero, skip the first line of the :c:member:`PyConfig.run_filename` source." msgstr "" -#: ../../c-api/init_config.rst:1856 -msgid "" -"It allows the usage of non-Unix forms of ``#!cmd``. This is intended for a " -"DOS specific hack only." +msgid "It allows the usage of non-Unix forms of ``#!cmd``. This is intended for a DOS specific hack only." msgstr "" -#: ../../c-api/init_config.rst:1859 msgid "Set to ``1`` by the :option:`-x` command line option." msgstr "" -#: ../../c-api/init_config.rst:1866 -msgid "" -"Encoding and encoding errors of :data:`sys.stdin`, :data:`sys.stdout` " -"and :data:`sys.stderr` (but :data:`sys.stderr` always uses " -"``\"backslashreplace\"`` error handler)." +msgid "Encoding and encoding errors of :data:`sys.stdin`, :data:`sys.stdout` and :data:`sys.stderr` (but :data:`sys.stderr` always uses ``\"backslashreplace\"`` error handler)." msgstr "" -#: ../../c-api/init_config.rst:1870 -msgid "" -"Use the :envvar:`PYTHONIOENCODING` environment variable if it is non-empty." +msgid "Use the :envvar:`PYTHONIOENCODING` environment variable if it is non-empty." msgstr "" -#: ../../c-api/init_config.rst:1873 msgid "Default encoding:" msgstr "" -#: ../../c-api/init_config.rst:1875 msgid "``\"UTF-8\"`` if :c:member:`PyPreConfig.utf8_mode` is non-zero." msgstr "" -#: ../../c-api/init_config.rst:1876 msgid "Otherwise, use the :term:`locale encoding`." msgstr "" -#: ../../c-api/init_config.rst:1878 msgid "Default error handler:" msgstr "" -#: ../../c-api/init_config.rst:1880 msgid "On Windows: use ``\"surrogateescape\"``." msgstr "" -#: ../../c-api/init_config.rst:1881 -msgid "" -"``\"surrogateescape\"`` if :c:member:`PyPreConfig.utf8_mode` is non-zero, or " -"if the LC_CTYPE locale is \"C\" or \"POSIX\"." +msgid "``\"surrogateescape\"`` if :c:member:`PyPreConfig.utf8_mode` is non-zero, or if the LC_CTYPE locale is \"C\" or \"POSIX\"." msgstr "" -#: ../../c-api/init_config.rst:1883 msgid "``\"strict\"`` otherwise." msgstr "" -#: ../../c-api/init_config.rst:1885 msgid "See also :c:member:`PyConfig.legacy_windows_stdio`." msgstr "" -#: ../../c-api/init_config.rst:1889 msgid "Enable tracemalloc?" msgstr "" -#: ../../c-api/init_config.rst:1891 msgid "If non-zero, call :func:`tracemalloc.start` at startup." msgstr "" -#: ../../c-api/init_config.rst:1893 -msgid "" -"Set by :option:`-X tracemalloc=N <-X>` command line option and by " -"the :envvar:`PYTHONTRACEMALLOC` environment variable." +msgid "Set by :option:`-X tracemalloc=N <-X>` command line option and by the :envvar:`PYTHONTRACEMALLOC` environment variable." msgstr "" -#: ../../c-api/init_config.rst:1900 msgid "Enable the Linux ``perf`` profiler support?" msgstr "" -#: ../../c-api/init_config.rst:1902 msgid "If equals to ``1``, enable support for the Linux ``perf`` profiler." msgstr "" -#: ../../c-api/init_config.rst:1904 -msgid "" -"If equals to ``2``, enable support for the Linux ``perf`` profiler with " -"DWARF JIT support." +msgid "If equals to ``2``, enable support for the Linux ``perf`` profiler with DWARF JIT support." msgstr "" -#: ../../c-api/init_config.rst:1907 -msgid "" -"Set to ``1`` by :option:`-X perf <-X>` command-line option and " -"the :envvar:`PYTHONPERFSUPPORT` environment variable." +msgid "Set to ``1`` by :option:`-X perf <-X>` command-line option and the :envvar:`PYTHONPERFSUPPORT` environment variable." msgstr "" -#: ../../c-api/init_config.rst:1910 -msgid "" -"Set to ``2`` by the :option:`-X perf_jit <-X>` command-line option and " -"the :envvar:`PYTHON_PERF_JIT_SUPPORT` environment variable." +msgid "Set to ``2`` by the :option:`-X perf_jit <-X>` command-line option and the :envvar:`PYTHON_PERF_JIT_SUPPORT` environment variable." msgstr "" -#: ../../c-api/init_config.rst:1916 msgid "See :ref:`perf_profiling` for more information." msgstr "" -#: ../../c-api/init_config.rst:1922 msgid "Directory of the Python standard library." msgstr "" -#: ../../c-api/init_config.rst:1930 msgid "Use :ref:`environment variables `?" msgstr "" -#: ../../c-api/init_config.rst:1932 -msgid "" -"If equals to zero, ignore the :ref:`environment variables `." +msgid "If equals to zero, ignore the :ref:`environment variables `." msgstr "" -#: ../../c-api/init_config.rst:1935 msgid "Set to ``0`` by the :option:`-E` environment variable." msgstr "" -#: ../../c-api/init_config.rst:1941 -msgid "" -"If non-zero, ``stdout`` and ``stderr`` will be redirected to the system log." +msgid "If non-zero, ``stdout`` and ``stderr`` will be redirected to the system log." msgstr "" -#: ../../c-api/init_config.rst:1944 msgid "Only available on macOS 10.12 and later, and on iOS." msgstr "" -#: ../../c-api/init_config.rst:1946 -msgid "" -"Default: ``0`` (don't use the system log) on macOS; ``1`` on iOS (use the " -"system log)." +msgid "Default: ``0`` (don't use the system log) on macOS; ``1`` on iOS (use the system log)." msgstr "" -#: ../../c-api/init_config.rst:1953 msgid "If non-zero, add the user site directory to :data:`sys.path`." msgstr "" -#: ../../c-api/init_config.rst:1955 msgid "Set to ``0`` by the :option:`-s` and :option:`-I` command line options." msgstr "" -#: ../../c-api/init_config.rst:1957 msgid "Set to ``0`` by the :envvar:`PYTHONNOUSERSITE` environment variable." msgstr "" -#: ../../c-api/init_config.rst:1963 -msgid "" -"Verbose mode. If greater than ``0``, print a message each time a module is " -"imported, showing the place (filename or built-in module) from which it is " -"loaded." +msgid "Verbose mode. If greater than ``0``, print a message each time a module is imported, showing the place (filename or built-in module) from which it is loaded." msgstr "" -#: ../../c-api/init_config.rst:1967 -msgid "" -"If greater than or equal to ``2``, print a message for each file that is " -"checked for when searching for a module. Also provides information on module " -"cleanup at exit." +msgid "If greater than or equal to ``2``, print a message for each file that is checked for when searching for a module. Also provides information on module cleanup at exit." msgstr "" -#: ../../c-api/init_config.rst:1971 msgid "Incremented by the :option:`-v` command line option." msgstr "" -#: ../../c-api/init_config.rst:1973 msgid "Set by the :envvar:`PYTHONVERBOSE` environment variable value." msgstr "" -#: ../../c-api/init_config.rst:1979 -msgid "" -"Options of the :mod:`warnings` module to build warnings filters, lowest to " -"highest priority: :data:`sys.warnoptions`." +msgid "Options of the :mod:`warnings` module to build warnings filters, lowest to highest priority: :data:`sys.warnoptions`." msgstr "" -#: ../../c-api/init_config.rst:1982 -msgid "" -"The :mod:`warnings` module adds :data:`sys.warnoptions` in the reverse " -"order: the last :c:member:`PyConfig.warnoptions` item becomes the first item " -"of ``warnings.filters`` which is checked first (highest priority)." +msgid "The :mod:`warnings` module adds :data:`sys.warnoptions` in the reverse order: the last :c:member:`PyConfig.warnoptions` item becomes the first item of ``warnings.filters`` which is checked first (highest priority)." msgstr "" -#: ../../c-api/init_config.rst:1986 -msgid "" -"The :option:`-W` command line options adds its value " -"to :c:member:`~PyConfig.warnoptions`, it can be used multiple times." +msgid "The :option:`-W` command line options adds its value to :c:member:`~PyConfig.warnoptions`, it can be used multiple times." msgstr "" -#: ../../c-api/init_config.rst:1989 -msgid "" -"The :envvar:`PYTHONWARNINGS` environment variable can also be used to add " -"warning options. Multiple options can be specified, separated by commas " -"(``,``)." +msgid "The :envvar:`PYTHONWARNINGS` environment variable can also be used to add warning options. Multiple options can be specified, separated by commas (``,``)." msgstr "" -#: ../../c-api/init_config.rst:1997 -msgid "" -"If equal to ``0``, Python won't try to write ``.pyc`` files on the import of " -"source modules." +msgid "If equal to ``0``, Python won't try to write ``.pyc`` files on the import of source modules." msgstr "" -#: ../../c-api/init_config.rst:2000 -msgid "" -"Set to ``0`` by the :option:`-B` command line option and " -"the :envvar:`PYTHONDONTWRITEBYTECODE` environment variable." +msgid "Set to ``0`` by the :option:`-B` command line option and the :envvar:`PYTHONDONTWRITEBYTECODE` environment variable." msgstr "" -#: ../../c-api/init_config.rst:2003 -msgid "" -":data:`sys.dont_write_bytecode` is initialized to the inverted value " -"of :c:member:`~PyConfig.write_bytecode`." +msgid ":data:`sys.dont_write_bytecode` is initialized to the inverted value of :c:member:`~PyConfig.write_bytecode`." msgstr "" -#: ../../c-api/init_config.rst:2010 msgid "Values of the :option:`-X` command line options: :data:`sys._xoptions`." msgstr "" -#: ../../c-api/init_config.rst:2016 msgid "If non-zero, write performance statistics at Python exit." msgstr "" -#: ../../c-api/init_config.rst:2018 -msgid "" -"Need a special build with the ``Py_STATS`` macro: see :option:`--enable-" -"pystats`." +msgid "Need a special build with the ``Py_STATS`` macro: see :option:`--enable-pystats`." msgstr "" -#: ../../c-api/init_config.rst:2023 -msgid "" -"If :c:member:`~PyConfig.parse_argv` is non-zero, :c:member:`~PyConfig.argv` " -"arguments are parsed the same way the regular Python parses :ref:`command " -"line arguments `, and Python arguments are stripped " -"from :c:member:`~PyConfig.argv`." +msgid "If :c:member:`~PyConfig.parse_argv` is non-zero, :c:member:`~PyConfig.argv` arguments are parsed the same way the regular Python parses :ref:`command line arguments `, and Python arguments are stripped from :c:member:`~PyConfig.argv`." msgstr "" -#: ../../c-api/init_config.rst:2028 -msgid "" -"The :c:member:`~PyConfig.xoptions` options are parsed to set other options: " -"see the :option:`-X` command line option." +msgid "The :c:member:`~PyConfig.xoptions` options are parsed to set other options: see the :option:`-X` command line option." msgstr "" -#: ../../c-api/init_config.rst:2033 msgid "The ``show_alloc_count`` field has been removed." msgstr "" -#: ../../c-api/init_config.rst:2039 msgid "Initialization with PyConfig" msgstr "" -#: ../../c-api/init_config.rst:2041 -msgid "" -"Initializing the interpreter from a populated configuration struct is " -"handled by calling :c:func:`Py_InitializeFromConfig`." +msgid "Initializing the interpreter from a populated configuration struct is handled by calling :c:func:`Py_InitializeFromConfig`." msgstr "" -#: ../../c-api/init_config.rst:2047 -msgid "" -"If :c:func:`PyImport_FrozenModules`, :c:func:`PyImport_AppendInittab` " -"or :c:func:`PyImport_ExtendInittab` are used, they must be set or called " -"after Python preinitialization and before the Python initialization. If " -"Python is initialized multiple times, :c:func:`PyImport_AppendInittab` " -"or :c:func:`PyImport_ExtendInittab` must be called before each Python " -"initialization." +msgid "If :c:func:`PyImport_FrozenModules`, :c:func:`PyImport_AppendInittab` or :c:func:`PyImport_ExtendInittab` are used, they must be set or called after Python preinitialization and before the Python initialization. If Python is initialized multiple times, :c:func:`PyImport_AppendInittab` or :c:func:`PyImport_ExtendInittab` must be called before each Python initialization." msgstr "" -#: ../../c-api/init_config.rst:2054 -msgid "" -"The current configuration (``PyConfig`` type) is stored in " -"``PyInterpreterState.config``." +msgid "The current configuration (``PyConfig`` type) is stored in ``PyInterpreterState.config``." msgstr "" -#: ../../c-api/init_config.rst:2057 msgid "Example setting the program name::" msgstr "" -#: ../../c-api/init_config.rst:2059 msgid "" "void init_python(void)\n" "{\n" @@ -3018,16 +1883,9 @@ msgid "" "}" msgstr "" -#: ../../c-api/init_config.rst:2085 -msgid "" -"More complete example modifying the default configuration, read the " -"configuration, and then override some parameters. Note that since 3.11, many " -"parameters are not calculated until initialization, and so values cannot be " -"read from the configuration structure. Any values set before initialize is " -"called will be left unchanged by initialization::" +msgid "More complete example modifying the default configuration, read the configuration, and then override some parameters. Note that since 3.11, many parameters are not calculated until initialization, and so values cannot be read from the configuration structure. Any values set before initialize is called will be left unchanged by initialization::" msgstr "" -#: ../../c-api/init_config.rst:2092 msgid "" "PyStatus init_python(const char *program_name)\n" "{\n" @@ -3082,311 +1940,179 @@ msgid "" "}" msgstr "" -#: ../../c-api/init_config.rst:2148 msgid "Isolated Configuration" msgstr "" -#: ../../c-api/init_config.rst:2150 -msgid "" -":c:func:`PyPreConfig_InitIsolatedConfig` " -"and :c:func:`PyConfig_InitIsolatedConfig` functions create a configuration " -"to isolate Python from the system. For example, to embed Python into an " -"application." +msgid ":c:func:`PyPreConfig_InitIsolatedConfig` and :c:func:`PyConfig_InitIsolatedConfig` functions create a configuration to isolate Python from the system. For example, to embed Python into an application." msgstr "" -#: ../../c-api/init_config.rst:2155 -msgid "" -"This configuration ignores global configuration variables, environment " -"variables, command line arguments (:c:member:`PyConfig.argv` is not parsed) " -"and user site directory. The C standard streams (ex: ``stdout``) and the " -"LC_CTYPE locale are left unchanged. Signal handlers are not installed." +msgid "This configuration ignores global configuration variables, environment variables, command line arguments (:c:member:`PyConfig.argv` is not parsed) and user site directory. The C standard streams (ex: ``stdout``) and the LC_CTYPE locale are left unchanged. Signal handlers are not installed." msgstr "" -#: ../../c-api/init_config.rst:2160 -msgid "" -"Configuration files are still used with this configuration to determine " -"paths that are unspecified. Ensure :c:member:`PyConfig.home` is specified to " -"avoid computing the default path configuration." +msgid "Configuration files are still used with this configuration to determine paths that are unspecified. Ensure :c:member:`PyConfig.home` is specified to avoid computing the default path configuration." msgstr "" -#: ../../c-api/init_config.rst:2168 msgid "Python Configuration" msgstr "" -#: ../../c-api/init_config.rst:2170 -msgid "" -":c:func:`PyPreConfig_InitPythonConfig` " -"and :c:func:`PyConfig_InitPythonConfig` functions create a configuration to " -"build a customized Python which behaves as the regular Python." +msgid ":c:func:`PyPreConfig_InitPythonConfig` and :c:func:`PyConfig_InitPythonConfig` functions create a configuration to build a customized Python which behaves as the regular Python." msgstr "" -#: ../../c-api/init_config.rst:2174 -msgid "" -"Environments variables and command line arguments are used to configure " -"Python, whereas global configuration variables are ignored." +msgid "Environments variables and command line arguments are used to configure Python, whereas global configuration variables are ignored." msgstr "" -#: ../../c-api/init_config.rst:2177 -msgid "" -"This function enables C locale coercion (:pep:`538`) and :ref:`Python UTF-8 " -"Mode ` (:pep:`540`) depending on the LC_CTYPE " -"locale, :envvar:`PYTHONUTF8` and :envvar:`PYTHONCOERCECLOCALE` environment " -"variables." +msgid "This function enables C locale coercion (:pep:`538`) and :ref:`Python UTF-8 Mode ` (:pep:`540`) depending on the LC_CTYPE locale, :envvar:`PYTHONUTF8` and :envvar:`PYTHONCOERCECLOCALE` environment variables." msgstr "" -#: ../../c-api/init_config.rst:2186 msgid "Python Path Configuration" msgstr "" -#: ../../c-api/init_config.rst:2188 msgid ":c:type:`PyConfig` contains multiple fields for the path configuration:" msgstr "" -#: ../../c-api/init_config.rst:2190 msgid "Path configuration inputs:" msgstr "" -#: ../../c-api/init_config.rst:2192 msgid ":c:member:`PyConfig.home`" msgstr "" -#: ../../c-api/init_config.rst:2193 msgid ":c:member:`PyConfig.platlibdir`" msgstr "" -#: ../../c-api/init_config.rst:2194 msgid ":c:member:`PyConfig.pathconfig_warnings`" msgstr "" -#: ../../c-api/init_config.rst:2195 msgid ":c:member:`PyConfig.program_name`" msgstr "" -#: ../../c-api/init_config.rst:2196 msgid ":c:member:`PyConfig.pythonpath_env`" msgstr "" -#: ../../c-api/init_config.rst:2197 msgid "current working directory: to get absolute paths" msgstr "" -#: ../../c-api/init_config.rst:2198 -msgid "" -"``PATH`` environment variable to get the program full path " -"(from :c:member:`PyConfig.program_name`)" +msgid "``PATH`` environment variable to get the program full path (from :c:member:`PyConfig.program_name`)" msgstr "" -#: ../../c-api/init_config.rst:2200 msgid "``__PYVENV_LAUNCHER__`` environment variable" msgstr "" -#: ../../c-api/init_config.rst:2201 -msgid "" -"(Windows only) Application paths in the registry under " -"\"Software\\Python\\PythonCore\\X.Y\\PythonPath\" of HKEY_CURRENT_USER and " -"HKEY_LOCAL_MACHINE (where X.Y is the Python version)." +msgid "(Windows only) Application paths in the registry under \"Software\\Python\\PythonCore\\X.Y\\PythonPath\" of HKEY_CURRENT_USER and HKEY_LOCAL_MACHINE (where X.Y is the Python version)." msgstr "" -#: ../../c-api/init_config.rst:2205 msgid "Path configuration output fields:" msgstr "" -#: ../../c-api/init_config.rst:2207 msgid ":c:member:`PyConfig.base_exec_prefix`" msgstr "" -#: ../../c-api/init_config.rst:2208 msgid ":c:member:`PyConfig.base_executable`" msgstr "" -#: ../../c-api/init_config.rst:2209 msgid ":c:member:`PyConfig.base_prefix`" msgstr "" -#: ../../c-api/init_config.rst:2210 msgid ":c:member:`PyConfig.exec_prefix`" msgstr "" -#: ../../c-api/init_config.rst:2211 msgid ":c:member:`PyConfig.executable`" msgstr "" -#: ../../c-api/init_config.rst:2212 msgid ":c:member:`PyConfig.module_search_paths_set`, :c:member:`PyConfig.module_search_paths`" msgstr "" -#: ../../c-api/init_config.rst:2214 msgid ":c:member:`PyConfig.prefix`" msgstr "" -#: ../../c-api/init_config.rst:2216 -msgid "" -"If at least one \"output field\" is not set, Python calculates the path " -"configuration to fill unset fields. " -"If :c:member:`~PyConfig.module_search_paths_set` is equal to " -"``0``, :c:member:`~PyConfig.module_search_paths` is overridden " -"and :c:member:`~PyConfig.module_search_paths_set` is set to ``1``." +msgid "If at least one \"output field\" is not set, Python calculates the path configuration to fill unset fields. If :c:member:`~PyConfig.module_search_paths_set` is equal to ``0``, :c:member:`~PyConfig.module_search_paths` is overridden and :c:member:`~PyConfig.module_search_paths_set` is set to ``1``." msgstr "" -#: ../../c-api/init_config.rst:2222 -msgid "" -"It is possible to completely ignore the function calculating the default " -"path configuration by setting explicitly all path configuration output " -"fields listed above. A string is considered as set even if it is non-empty. " -"``module_search_paths`` is considered as set if ``module_search_paths_set`` " -"is set to ``1``. In this case, ``module_search_paths`` will be used without " -"modification." +msgid "It is possible to completely ignore the function calculating the default path configuration by setting explicitly all path configuration output fields listed above. A string is considered as set even if it is non-empty. ``module_search_paths`` is considered as set if ``module_search_paths_set`` is set to ``1``. In this case, ``module_search_paths`` will be used without modification." msgstr "" -#: ../../c-api/init_config.rst:2229 -msgid "" -"Set :c:member:`~PyConfig.pathconfig_warnings` to ``0`` to suppress warnings " -"when calculating the path configuration (Unix only, Windows does not log any " -"warning)." +msgid "Set :c:member:`~PyConfig.pathconfig_warnings` to ``0`` to suppress warnings when calculating the path configuration (Unix only, Windows does not log any warning)." msgstr "" -#: ../../c-api/init_config.rst:2232 -msgid "" -"If :c:member:`~PyConfig.base_prefix` " -"or :c:member:`~PyConfig.base_exec_prefix` fields are not set, they inherit " -"their value from :c:member:`~PyConfig.prefix` " -"and :c:member:`~PyConfig.exec_prefix` respectively." +msgid "If :c:member:`~PyConfig.base_prefix` or :c:member:`~PyConfig.base_exec_prefix` fields are not set, they inherit their value from :c:member:`~PyConfig.prefix` and :c:member:`~PyConfig.exec_prefix` respectively." msgstr "" -#: ../../c-api/init_config.rst:2236 msgid ":c:func:`Py_RunMain` and :c:func:`Py_Main` modify :data:`sys.path`:" msgstr "" -#: ../../c-api/init_config.rst:2238 -msgid "" -"If :c:member:`~PyConfig.run_filename` is set and is a directory which " -"contains a ``__main__.py`` script, " -"prepend :c:member:`~PyConfig.run_filename` to :data:`sys.path`." +msgid "If :c:member:`~PyConfig.run_filename` is set and is a directory which contains a ``__main__.py`` script, prepend :c:member:`~PyConfig.run_filename` to :data:`sys.path`." msgstr "" -#: ../../c-api/init_config.rst:2241 msgid "If :c:member:`~PyConfig.isolated` is zero:" msgstr "" -#: ../../c-api/init_config.rst:2243 -msgid "" -"If :c:member:`~PyConfig.run_module` is set, prepend the current directory " -"to :data:`sys.path`. Do nothing if the current directory cannot be read." +msgid "If :c:member:`~PyConfig.run_module` is set, prepend the current directory to :data:`sys.path`. Do nothing if the current directory cannot be read." msgstr "" -#: ../../c-api/init_config.rst:2245 -msgid "" -"If :c:member:`~PyConfig.run_filename` is set, prepend the directory of the " -"filename to :data:`sys.path`." +msgid "If :c:member:`~PyConfig.run_filename` is set, prepend the directory of the filename to :data:`sys.path`." msgstr "" -#: ../../c-api/init_config.rst:2247 msgid "Otherwise, prepend an empty string to :data:`sys.path`." msgstr "" -#: ../../c-api/init_config.rst:2249 -msgid "" -"If :c:member:`~PyConfig.site_import` is non-zero, :data:`sys.path` can be " -"modified by the :mod:`site` module. " -"If :c:member:`~PyConfig.user_site_directory` is non-zero and the user's site-" -"package directory exists, the :mod:`site` module appends the user's site-" -"package directory to :data:`sys.path`." +msgid "If :c:member:`~PyConfig.site_import` is non-zero, :data:`sys.path` can be modified by the :mod:`site` module. If :c:member:`~PyConfig.user_site_directory` is non-zero and the user's site-package directory exists, the :mod:`site` module appends the user's site-package directory to :data:`sys.path`." msgstr "" -#: ../../c-api/init_config.rst:2255 msgid "The following configuration files are used by the path configuration:" msgstr "" -#: ../../c-api/init_config.rst:2257 msgid "``pyvenv.cfg``" msgstr "" -#: ../../c-api/init_config.rst:2258 msgid "``._pth`` file (ex: ``python._pth``)" msgstr "" -#: ../../c-api/init_config.rst:2259 msgid "``pybuilddir.txt`` (Unix only)" msgstr "" -#: ../../c-api/init_config.rst:2261 msgid "If a ``._pth`` file is present:" msgstr "" -#: ../../c-api/init_config.rst:2263 msgid "Set :c:member:`~PyConfig.isolated` to ``1``." msgstr "" -#: ../../c-api/init_config.rst:2264 msgid "Set :c:member:`~PyConfig.use_environment` to ``0``." msgstr "" -#: ../../c-api/init_config.rst:2265 msgid "Set :c:member:`~PyConfig.site_import` to ``0``." msgstr "" -#: ../../c-api/init_config.rst:2266 msgid "Set :c:member:`~PyConfig.safe_path` to ``1``." msgstr "" -#: ../../c-api/init_config.rst:2268 -msgid "" -"If :c:member:`~PyConfig.home` is not set and a ``pyvenv.cfg`` file is " -"present in the same directory as :c:member:`~PyConfig.executable`, or its " -"parent, :c:member:`~PyConfig.prefix` and :c:member:`~PyConfig.exec_prefix` " -"are set that location. When this happens, :c:member:`~PyConfig.base_prefix` " -"and :c:member:`~PyConfig.base_exec_prefix` still keep their value, pointing " -"to the base installation. See :ref:`sys-path-init-virtual-environments` for " -"more information." +msgid "If :c:member:`~PyConfig.home` is not set and a ``pyvenv.cfg`` file is present in the same directory as :c:member:`~PyConfig.executable`, or its parent, :c:member:`~PyConfig.prefix` and :c:member:`~PyConfig.exec_prefix` are set that location. When this happens, :c:member:`~PyConfig.base_prefix` and :c:member:`~PyConfig.base_exec_prefix` still keep their value, pointing to the base installation. See :ref:`sys-path-init-virtual-environments` for more information." msgstr "" -#: ../../c-api/init_config.rst:2276 -msgid "" -"The ``__PYVENV_LAUNCHER__`` environment variable is used to " -"set :c:member:`PyConfig.base_executable`." +msgid "The ``__PYVENV_LAUNCHER__`` environment variable is used to set :c:member:`PyConfig.base_executable`." msgstr "" -#: ../../c-api/init_config.rst:2281 -msgid "" -":c:member:`~PyConfig.prefix`, and :c:member:`~PyConfig.exec_prefix`, are now " -"set to the ``pyvenv.cfg`` directory. This was previously done " -"by :mod:`site`, therefore affected by :option:`-S`." +msgid ":c:member:`~PyConfig.prefix`, and :c:member:`~PyConfig.exec_prefix`, are now set to the ``pyvenv.cfg`` directory. This was previously done by :mod:`site`, therefore affected by :option:`-S`." msgstr "" -#: ../../c-api/init_config.rst:2287 msgid "Py_GetArgcArgv()" msgstr "" -#: ../../c-api/init_config.rst:2291 msgid "Get the original command line arguments, before Python modified them." msgstr "" -#: ../../c-api/init_config.rst:2293 msgid "See also :c:member:`PyConfig.orig_argv` member." msgstr "" -#: ../../c-api/init_config.rst:2296 msgid "Delaying main module execution" msgstr "" -#: ../../c-api/init_config.rst:2298 -msgid "" -"In some embedding use cases, it may be desirable to separate interpreter " -"initialization from the execution of the main module." +msgid "In some embedding use cases, it may be desirable to separate interpreter initialization from the execution of the main module." msgstr "" -#: ../../c-api/init_config.rst:2301 -msgid "" -"This separation can be achieved by setting ``PyConfig.run_command`` to the " -"empty string during initialization (to prevent the interpreter from dropping " -"into the interactive prompt), and then subsequently executing the desired " -"main module code using ``__main__.__dict__`` as the global namespace." +msgid "This separation can be achieved by setting ``PyConfig.run_command`` to the empty string during initialization (to prevent the interpreter from dropping into the interactive prompt), and then subsequently executing the desired main module code using ``__main__.__dict__`` as the global namespace." msgstr "" -#: ../../c-api/init_config.rst:1185 msgid "main()" msgstr "" -#: ../../c-api/init_config.rst:1185 msgid "argv (in module sys)" msgstr "" diff --git a/c-api/interp-lifecycle.po b/c-api/interp-lifecycle.po index dcc5878f..508702e0 100644 --- a/c-api/interp-lifecycle.po +++ b/c-api/interp-lifecycle.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2026-07-25 12:59+0330\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: none\n" @@ -19,709 +19,369 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../c-api/interp-lifecycle.rst:6 msgid "Interpreter initialization and finalization" msgstr "" -#: ../../c-api/interp-lifecycle.rst:8 -msgid "" -"See :ref:`Python Initialization Configuration ` for details on " -"how to configure the interpreter prior to initialization." +msgid "See :ref:`Python Initialization Configuration ` for details on how to configure the interpreter prior to initialization." msgstr "" -#: ../../c-api/interp-lifecycle.rst:14 msgid "Before Python initialization" msgstr "" -#: ../../c-api/interp-lifecycle.rst:16 -msgid "" -"In an application embedding Python, the :c:func:`Py_Initialize` function " -"must be called before using any other Python/C API functions; with the " -"exception of a few functions and the :ref:`global configuration variables " -"`." +msgid "In an application embedding Python, the :c:func:`Py_Initialize` function must be called before using any other Python/C API functions; with the exception of a few functions and the :ref:`global configuration variables `." msgstr "" -#: ../../c-api/interp-lifecycle.rst:21 -msgid "" -"The following functions can be safely called before Python is initialized:" +msgid "The following functions can be safely called before Python is initialized:" msgstr "" -#: ../../c-api/interp-lifecycle.rst:23 msgid "Functions that initialize the interpreter:" msgstr "" -#: ../../c-api/interp-lifecycle.rst:25 msgid ":c:func:`Py_Initialize`" msgstr "" -#: ../../c-api/interp-lifecycle.rst:26 msgid ":c:func:`Py_InitializeEx`" msgstr "" -#: ../../c-api/interp-lifecycle.rst:27 msgid ":c:func:`Py_InitializeFromConfig`" msgstr "" -#: ../../c-api/interp-lifecycle.rst:28 msgid ":c:func:`Py_BytesMain`" msgstr "" -#: ../../c-api/interp-lifecycle.rst:29 msgid ":c:func:`Py_Main`" msgstr "" -#: ../../c-api/interp-lifecycle.rst:30 msgid "the runtime pre-initialization functions covered in :ref:`init-config`" msgstr "" -#: ../../c-api/interp-lifecycle.rst:32 msgid "Configuration functions:" msgstr "" -#: ../../c-api/interp-lifecycle.rst:34 msgid ":c:func:`PyImport_AppendInittab`" msgstr "" -#: ../../c-api/interp-lifecycle.rst:35 msgid ":c:func:`PyImport_ExtendInittab`" msgstr "" -#: ../../c-api/interp-lifecycle.rst:36 msgid ":c:func:`!PyInitFrozenExtensions`" msgstr "" -#: ../../c-api/interp-lifecycle.rst:37 msgid ":c:func:`PyMem_SetAllocator`" msgstr "" -#: ../../c-api/interp-lifecycle.rst:38 msgid ":c:func:`PyMem_SetupDebugHooks`" msgstr "" -#: ../../c-api/interp-lifecycle.rst:39 msgid ":c:func:`PyObject_SetArenaAllocator`" msgstr "" -#: ../../c-api/interp-lifecycle.rst:40 msgid ":c:func:`Py_SetProgramName`" msgstr "" -#: ../../c-api/interp-lifecycle.rst:41 msgid ":c:func:`Py_SetPythonHome`" msgstr "" -#: ../../c-api/interp-lifecycle.rst:42 msgid "the configuration functions covered in :ref:`init-config`" msgstr "" -#: ../../c-api/interp-lifecycle.rst:44 msgid "Informative functions:" msgstr "" -#: ../../c-api/interp-lifecycle.rst:46 ../../c-api/interp-lifecycle.rst:54 msgid ":c:func:`Py_IsInitialized`" msgstr "" -#: ../../c-api/interp-lifecycle.rst:47 msgid ":c:func:`PyMem_GetAllocator`" msgstr "" -#: ../../c-api/interp-lifecycle.rst:48 msgid ":c:func:`PyObject_GetArenaAllocator`" msgstr "" -#: ../../c-api/interp-lifecycle.rst:49 msgid ":c:func:`Py_GetBuildInfo`" msgstr "" -#: ../../c-api/interp-lifecycle.rst:50 msgid ":c:func:`Py_GetCompiler`" msgstr "" -#: ../../c-api/interp-lifecycle.rst:51 msgid ":c:func:`Py_GetCopyright`" msgstr "" -#: ../../c-api/interp-lifecycle.rst:52 msgid ":c:func:`Py_GetPlatform`" msgstr "" -#: ../../c-api/interp-lifecycle.rst:53 msgid ":c:func:`Py_GetVersion`" msgstr "" -#: ../../c-api/interp-lifecycle.rst:56 msgid "Utilities:" msgstr "" -#: ../../c-api/interp-lifecycle.rst:58 msgid ":c:func:`Py_DecodeLocale`" msgstr "" -#: ../../c-api/interp-lifecycle.rst:59 -msgid "" -"the status reporting and utility functions covered in :ref:`init-config`" +msgid "the status reporting and utility functions covered in :ref:`init-config`" msgstr "" -#: ../../c-api/interp-lifecycle.rst:61 msgid "Memory allocators:" msgstr "" -#: ../../c-api/interp-lifecycle.rst:63 msgid ":c:func:`PyMem_RawMalloc`" msgstr "" -#: ../../c-api/interp-lifecycle.rst:64 msgid ":c:func:`PyMem_RawRealloc`" msgstr "" -#: ../../c-api/interp-lifecycle.rst:65 msgid ":c:func:`PyMem_RawCalloc`" msgstr "" -#: ../../c-api/interp-lifecycle.rst:66 msgid ":c:func:`PyMem_RawFree`" msgstr "" -#: ../../c-api/interp-lifecycle.rst:68 msgid "Synchronization:" msgstr "" -#: ../../c-api/interp-lifecycle.rst:70 msgid ":c:func:`PyMutex_Lock`" msgstr "" -#: ../../c-api/interp-lifecycle.rst:71 msgid ":c:func:`PyMutex_Unlock`" msgstr "" -#: ../../c-api/interp-lifecycle.rst:75 -msgid "" -"Despite their apparent similarity to some of the functions listed above, the " -"following functions **should not be called** before the interpreter has been " -"initialized: :c:func:`Py_EncodeLocale`, :c:func:`PyEval_InitThreads`, " -"and :c:func:`Py_RunMain`." +msgid "Despite their apparent similarity to some of the functions listed above, the following functions **should not be called** before the interpreter has been initialized: :c:func:`Py_EncodeLocale`, :c:func:`PyEval_InitThreads`, and :c:func:`Py_RunMain`." msgstr "" -#: ../../c-api/interp-lifecycle.rst:84 msgid "Global configuration variables" msgstr "" -#: ../../c-api/interp-lifecycle.rst:86 -msgid "" -"Python has variables for the global configuration to control different " -"features and options. By default, these flags are controlled " -"by :ref:`command line options `." +msgid "Python has variables for the global configuration to control different features and options. By default, these flags are controlled by :ref:`command line options `." msgstr "" -#: ../../c-api/interp-lifecycle.rst:90 -msgid "" -"When a flag is set by an option, the value of the flag is the number of " -"times that the option was set. For example, ``-b`` " -"sets :c:data:`Py_BytesWarningFlag` to 1 and ``-bb`` " -"sets :c:data:`Py_BytesWarningFlag` to 2." +msgid "When a flag is set by an option, the value of the flag is the number of times that the option was set. For example, ``-b`` sets :c:data:`Py_BytesWarningFlag` to 1 and ``-bb`` sets :c:data:`Py_BytesWarningFlag` to 2." msgstr "" -#: ../../c-api/interp-lifecycle.rst:97 -msgid "" -"This API is kept for backward compatibility: " -"setting :c:member:`PyConfig.bytes_warning` should be used instead, " -"see :ref:`Python Initialization Configuration `." +msgid "This API is kept for backward compatibility: setting :c:member:`PyConfig.bytes_warning` should be used instead, see :ref:`Python Initialization Configuration `." msgstr "" -#: ../../c-api/interp-lifecycle.rst:101 -msgid "" -"Issue a warning when comparing :class:`bytes` or :class:`bytearray` " -"with :class:`str` or :class:`bytes` with :class:`int`. Issue an error if " -"greater or equal to ``2``." +msgid "Issue a warning when comparing :class:`bytes` or :class:`bytearray` with :class:`str` or :class:`bytes` with :class:`int`. Issue an error if greater or equal to ``2``." msgstr "" -#: ../../c-api/interp-lifecycle.rst:105 msgid "Set by the :option:`-b` option." msgstr "" -#: ../../c-api/interp-lifecycle.rst:112 -msgid "" -"This API is kept for backward compatibility: " -"setting :c:member:`PyConfig.parser_debug` should be used instead, " -"see :ref:`Python Initialization Configuration `." +msgid "This API is kept for backward compatibility: setting :c:member:`PyConfig.parser_debug` should be used instead, see :ref:`Python Initialization Configuration `." msgstr "" -#: ../../c-api/interp-lifecycle.rst:116 -msgid "" -"Turn on parser debugging output (for expert only, depending on compilation " -"options)." +msgid "Turn on parser debugging output (for expert only, depending on compilation options)." msgstr "" -#: ../../c-api/interp-lifecycle.rst:119 -msgid "" -"Set by the :option:`-d` option and the :envvar:`PYTHONDEBUG` environment " -"variable." +msgid "Set by the :option:`-d` option and the :envvar:`PYTHONDEBUG` environment variable." msgstr "" -#: ../../c-api/interp-lifecycle.rst:127 -msgid "" -"This API is kept for backward compatibility: " -"setting :c:member:`PyConfig.write_bytecode` should be used instead, " -"see :ref:`Python Initialization Configuration `." +msgid "This API is kept for backward compatibility: setting :c:member:`PyConfig.write_bytecode` should be used instead, see :ref:`Python Initialization Configuration `." msgstr "" -#: ../../c-api/interp-lifecycle.rst:131 -msgid "" -"If set to non-zero, Python won't try to write ``.pyc`` files on the import " -"of source modules." +msgid "If set to non-zero, Python won't try to write ``.pyc`` files on the import of source modules." msgstr "" -#: ../../c-api/interp-lifecycle.rst:134 -msgid "" -"Set by the :option:`-B` option and the :envvar:`PYTHONDONTWRITEBYTECODE` " -"environment variable." +msgid "Set by the :option:`-B` option and the :envvar:`PYTHONDONTWRITEBYTECODE` environment variable." msgstr "" -#: ../../c-api/interp-lifecycle.rst:142 -msgid "" -"This API is kept for backward compatibility: " -"setting :c:member:`PyConfig.pathconfig_warnings` should be used instead, " -"see :ref:`Python Initialization Configuration `." +msgid "This API is kept for backward compatibility: setting :c:member:`PyConfig.pathconfig_warnings` should be used instead, see :ref:`Python Initialization Configuration `." msgstr "" -#: ../../c-api/interp-lifecycle.rst:146 msgid "Private flag used by ``_freeze_module`` and ``frozenmain`` programs." msgstr "" -#: ../../c-api/interp-lifecycle.rst:153 -msgid "" -"This API is kept for backward compatibility: " -"setting :c:member:`PyConfig.hash_seed` " -"and :c:member:`PyConfig.use_hash_seed` should be used instead, " -"see :ref:`Python Initialization Configuration `." +msgid "This API is kept for backward compatibility: setting :c:member:`PyConfig.hash_seed` and :c:member:`PyConfig.use_hash_seed` should be used instead, see :ref:`Python Initialization Configuration `." msgstr "" -#: ../../c-api/interp-lifecycle.rst:158 -msgid "" -"Set to ``1`` if the :envvar:`PYTHONHASHSEED` environment variable is set to " -"a non-empty string." +msgid "Set to ``1`` if the :envvar:`PYTHONHASHSEED` environment variable is set to a non-empty string." msgstr "" -#: ../../c-api/interp-lifecycle.rst:161 -msgid "" -"If the flag is non-zero, read the :envvar:`PYTHONHASHSEED` environment " -"variable to initialize the secret hash seed." +msgid "If the flag is non-zero, read the :envvar:`PYTHONHASHSEED` environment variable to initialize the secret hash seed." msgstr "" -#: ../../c-api/interp-lifecycle.rst:169 -msgid "" -"This API is kept for backward compatibility: " -"setting :c:member:`PyConfig.use_environment` should be used instead, " -"see :ref:`Python Initialization Configuration `." +msgid "This API is kept for backward compatibility: setting :c:member:`PyConfig.use_environment` should be used instead, see :ref:`Python Initialization Configuration `." msgstr "" -#: ../../c-api/interp-lifecycle.rst:173 -msgid "" -"Ignore all :envvar:`!PYTHON*` environment variables, " -"e.g. :envvar:`PYTHONPATH` and :envvar:`PYTHONHOME`, that might be set." +msgid "Ignore all :envvar:`!PYTHON*` environment variables, e.g. :envvar:`PYTHONPATH` and :envvar:`PYTHONHOME`, that might be set." msgstr "" -#: ../../c-api/interp-lifecycle.rst:176 msgid "Set by the :option:`-E` and :option:`-I` options." msgstr "" -#: ../../c-api/interp-lifecycle.rst:183 -msgid "" -"This API is kept for backward compatibility: " -"setting :c:member:`PyConfig.inspect` should be used instead, " -"see :ref:`Python Initialization Configuration `." +msgid "This API is kept for backward compatibility: setting :c:member:`PyConfig.inspect` should be used instead, see :ref:`Python Initialization Configuration `." msgstr "" -#: ../../c-api/interp-lifecycle.rst:187 -msgid "" -"When a script is passed as first argument or the :option:`-c` option is " -"used, enter interactive mode after executing the script or the command, even " -"when :data:`sys.stdin` does not appear to be a terminal." +msgid "When a script is passed as first argument or the :option:`-c` option is used, enter interactive mode after executing the script or the command, even when :data:`sys.stdin` does not appear to be a terminal." msgstr "" -#: ../../c-api/interp-lifecycle.rst:191 -msgid "" -"Set by the :option:`-i` option and the :envvar:`PYTHONINSPECT` environment " -"variable." +msgid "Set by the :option:`-i` option and the :envvar:`PYTHONINSPECT` environment variable." msgstr "" -#: ../../c-api/interp-lifecycle.rst:199 -msgid "" -"This API is kept for backward compatibility: " -"setting :c:member:`PyConfig.interactive` should be used instead, " -"see :ref:`Python Initialization Configuration `." +msgid "This API is kept for backward compatibility: setting :c:member:`PyConfig.interactive` should be used instead, see :ref:`Python Initialization Configuration `." msgstr "" -#: ../../c-api/interp-lifecycle.rst:203 msgid "Set by the :option:`-i` option." msgstr "" -#: ../../c-api/interp-lifecycle.rst:210 -msgid "" -"This API is kept for backward compatibility: " -"setting :c:member:`PyConfig.isolated` should be used instead, " -"see :ref:`Python Initialization Configuration `." +msgid "This API is kept for backward compatibility: setting :c:member:`PyConfig.isolated` should be used instead, see :ref:`Python Initialization Configuration `." msgstr "" -#: ../../c-api/interp-lifecycle.rst:214 -msgid "" -"Run Python in isolated mode. In isolated mode :data:`sys.path` contains " -"neither the script's directory nor the user's site-packages directory." +msgid "Run Python in isolated mode. In isolated mode :data:`sys.path` contains neither the script's directory nor the user's site-packages directory." msgstr "" -#: ../../c-api/interp-lifecycle.rst:217 msgid "Set by the :option:`-I` option." msgstr "" -#: ../../c-api/interp-lifecycle.rst:226 -msgid "" -"This API is kept for backward compatibility: " -"setting :c:member:`PyPreConfig.legacy_windows_fs_encoding` should be used " -"instead, see :ref:`Python Initialization Configuration `." +msgid "This API is kept for backward compatibility: setting :c:member:`PyPreConfig.legacy_windows_fs_encoding` should be used instead, see :ref:`Python Initialization Configuration `." msgstr "" -#: ../../c-api/interp-lifecycle.rst:230 -msgid "" -"If the flag is non-zero, use the ``mbcs`` encoding with ``replace`` error " -"handler, instead of the UTF-8 encoding with ``surrogatepass`` error handler, " -"for the :term:`filesystem encoding and error handler`." +msgid "If the flag is non-zero, use the ``mbcs`` encoding with ``replace`` error handler, instead of the UTF-8 encoding with ``surrogatepass`` error handler, for the :term:`filesystem encoding and error handler`." msgstr "" -#: ../../c-api/interp-lifecycle.rst:234 -msgid "" -"Set to ``1`` if the :envvar:`PYTHONLEGACYWINDOWSFSENCODING` environment " -"variable is set to a non-empty string." +msgid "Set to ``1`` if the :envvar:`PYTHONLEGACYWINDOWSFSENCODING` environment variable is set to a non-empty string." msgstr "" -#: ../../c-api/interp-lifecycle.rst:237 msgid "See :pep:`529` for more details." msgstr "" -#: ../../c-api/interp-lifecycle.rst:239 ../../c-api/interp-lifecycle.rst:258 msgid "Availability" msgstr "" -#: ../../c-api/interp-lifecycle.rst:246 -msgid "" -"This API is kept for backward compatibility: " -"setting :c:member:`PyConfig.legacy_windows_stdio` should be used instead, " -"see :ref:`Python Initialization Configuration `." +msgid "This API is kept for backward compatibility: setting :c:member:`PyConfig.legacy_windows_stdio` should be used instead, see :ref:`Python Initialization Configuration `." msgstr "" -#: ../../c-api/interp-lifecycle.rst:250 -msgid "" -"If the flag is non-zero, use :class:`io.FileIO` instead of :class:`!" -"io._WindowsConsoleIO` for :mod:`sys` standard streams." +msgid "If the flag is non-zero, use :class:`io.FileIO` instead of :class:`!io._WindowsConsoleIO` for :mod:`sys` standard streams." msgstr "" -#: ../../c-api/interp-lifecycle.rst:253 -msgid "" -"Set to ``1`` if the :envvar:`PYTHONLEGACYWINDOWSSTDIO` environment variable " -"is set to a non-empty string." +msgid "Set to ``1`` if the :envvar:`PYTHONLEGACYWINDOWSSTDIO` environment variable is set to a non-empty string." msgstr "" -#: ../../c-api/interp-lifecycle.rst:256 msgid "See :pep:`528` for more details." msgstr "" -#: ../../c-api/interp-lifecycle.rst:265 -msgid "" -"This API is kept for backward compatibility: " -"setting :c:member:`PyConfig.site_import` should be used instead, " -"see :ref:`Python Initialization Configuration `." +msgid "This API is kept for backward compatibility: setting :c:member:`PyConfig.site_import` should be used instead, see :ref:`Python Initialization Configuration `." msgstr "" -#: ../../c-api/interp-lifecycle.rst:269 -msgid "" -"Disable the import of the module :mod:`site` and the site-dependent " -"manipulations of :data:`sys.path` that it entails. Also disable these " -"manipulations if :mod:`site` is explicitly imported later " -"(call :func:`site.main` if you want them to be triggered)." +msgid "Disable the import of the module :mod:`site` and the site-dependent manipulations of :data:`sys.path` that it entails. Also disable these manipulations if :mod:`site` is explicitly imported later (call :func:`site.main` if you want them to be triggered)." msgstr "" -#: ../../c-api/interp-lifecycle.rst:274 msgid "Set by the :option:`-S` option." msgstr "" -#: ../../c-api/interp-lifecycle.rst:281 -msgid "" -"This API is kept for backward compatibility: " -"setting :c:member:`PyConfig.user_site_directory` should be used instead, " -"see :ref:`Python Initialization Configuration `." +msgid "This API is kept for backward compatibility: setting :c:member:`PyConfig.user_site_directory` should be used instead, see :ref:`Python Initialization Configuration `." msgstr "" -#: ../../c-api/interp-lifecycle.rst:285 -msgid "" -"Don't add the :data:`user site-packages directory ` " -"to :data:`sys.path`." +msgid "Don't add the :data:`user site-packages directory ` to :data:`sys.path`." msgstr "" -#: ../../c-api/interp-lifecycle.rst:288 -msgid "" -"Set by the :option:`-s` and :option:`-I` options, and " -"the :envvar:`PYTHONNOUSERSITE` environment variable." +msgid "Set by the :option:`-s` and :option:`-I` options, and the :envvar:`PYTHONNOUSERSITE` environment variable." msgstr "" -#: ../../c-api/interp-lifecycle.rst:296 -msgid "" -"This API is kept for backward compatibility: " -"setting :c:member:`PyConfig.optimization_level` should be used instead, " -"see :ref:`Python Initialization Configuration `." +msgid "This API is kept for backward compatibility: setting :c:member:`PyConfig.optimization_level` should be used instead, see :ref:`Python Initialization Configuration `." msgstr "" -#: ../../c-api/interp-lifecycle.rst:300 -msgid "" -"Set by the :option:`-O` option and the :envvar:`PYTHONOPTIMIZE` environment " -"variable." +msgid "Set by the :option:`-O` option and the :envvar:`PYTHONOPTIMIZE` environment variable." msgstr "" -#: ../../c-api/interp-lifecycle.rst:308 -msgid "" -"This API is kept for backward compatibility: " -"setting :c:member:`PyConfig.quiet` should be used instead, see :ref:`Python " -"Initialization Configuration `." +msgid "This API is kept for backward compatibility: setting :c:member:`PyConfig.quiet` should be used instead, see :ref:`Python Initialization Configuration `." msgstr "" -#: ../../c-api/interp-lifecycle.rst:312 -msgid "" -"Don't display the copyright and version messages even in interactive mode." +msgid "Don't display the copyright and version messages even in interactive mode." msgstr "" -#: ../../c-api/interp-lifecycle.rst:314 msgid "Set by the :option:`-q` option." msgstr "" -#: ../../c-api/interp-lifecycle.rst:323 -msgid "" -"This API is kept for backward compatibility: " -"setting :c:member:`PyConfig.buffered_stdio` should be used instead, " -"see :ref:`Python Initialization Configuration `." +msgid "This API is kept for backward compatibility: setting :c:member:`PyConfig.buffered_stdio` should be used instead, see :ref:`Python Initialization Configuration `." msgstr "" -#: ../../c-api/interp-lifecycle.rst:327 msgid "Force the stdout and stderr streams to be unbuffered." msgstr "" -#: ../../c-api/interp-lifecycle.rst:329 -msgid "" -"Set by the :option:`-u` option and the :envvar:`PYTHONUNBUFFERED` " -"environment variable." +msgid "Set by the :option:`-u` option and the :envvar:`PYTHONUNBUFFERED` environment variable." msgstr "" -#: ../../c-api/interp-lifecycle.rst:337 -msgid "" -"This API is kept for backward compatibility: " -"setting :c:member:`PyConfig.verbose` should be used instead, " -"see :ref:`Python Initialization Configuration `." +msgid "This API is kept for backward compatibility: setting :c:member:`PyConfig.verbose` should be used instead, see :ref:`Python Initialization Configuration `." msgstr "" -#: ../../c-api/interp-lifecycle.rst:341 -msgid "" -"Print a message each time a module is initialized, showing the place " -"(filename or built-in module) from which it is loaded. If greater or equal " -"to ``2``, print a message for each file that is checked for when searching " -"for a module. Also provides information on module cleanup at exit." +msgid "Print a message each time a module is initialized, showing the place (filename or built-in module) from which it is loaded. If greater or equal to ``2``, print a message for each file that is checked for when searching for a module. Also provides information on module cleanup at exit." msgstr "" -#: ../../c-api/interp-lifecycle.rst:346 -msgid "" -"Set by the :option:`-v` option and the :envvar:`PYTHONVERBOSE` environment " -"variable." +msgid "Set by the :option:`-v` option and the :envvar:`PYTHONVERBOSE` environment variable." msgstr "" -#: ../../c-api/interp-lifecycle.rst:353 msgid "Initializing and finalizing the interpreter" msgstr "" -#: ../../c-api/interp-lifecycle.rst:367 -msgid "" -"Initialize the Python interpreter. In an application embedding Python, this " -"should be called before using any other Python/C API functions; " -"see :ref:`Before Python Initialization ` for the few " -"exceptions." +msgid "Initialize the Python interpreter. In an application embedding Python, this should be called before using any other Python/C API functions; see :ref:`Before Python Initialization ` for the few exceptions." msgstr "" -#: ../../c-api/interp-lifecycle.rst:371 -msgid "" -"This initializes the table of loaded modules (``sys.modules``), and creates " -"the fundamental modules :mod:`builtins`, :mod:`__main__` and :mod:`sys`. It " -"also initializes the module search path (``sys.path``). It does not set " -"``sys.argv``; use the :ref:`Python Initialization Configuration ` API for that. This is a no-op when called for a second time " -"(without calling :c:func:`Py_FinalizeEx` first). There is no return value; " -"it is a fatal error if the initialization fails." +msgid "This initializes the table of loaded modules (``sys.modules``), and creates the fundamental modules :mod:`builtins`, :mod:`__main__` and :mod:`sys`. It also initializes the module search path (``sys.path``). It does not set ``sys.argv``; use the :ref:`Python Initialization Configuration ` API for that. This is a no-op when called for a second time (without calling :c:func:`Py_FinalizeEx` first). There is no return value; it is a fatal error if the initialization fails." msgstr "" -#: ../../c-api/interp-lifecycle.rst:379 ../../c-api/interp-lifecycle.rst:393 -msgid "" -"Use :c:func:`Py_InitializeFromConfig` to customize the :ref:`Python " -"Initialization Configuration `." +msgid "Use :c:func:`Py_InitializeFromConfig` to customize the :ref:`Python Initialization Configuration `." msgstr "" -#: ../../c-api/interp-lifecycle.rst:383 -msgid "" -"On Windows, changes the console mode from ``O_TEXT`` to ``O_BINARY``, which " -"will also affect non-Python uses of the console using the C Runtime." +msgid "On Windows, changes the console mode from ``O_TEXT`` to ``O_BINARY``, which will also affect non-Python uses of the console using the C Runtime." msgstr "" -#: ../../c-api/interp-lifecycle.rst:389 -msgid "" -"This function works like :c:func:`Py_Initialize` if *initsigs* is ``1``. If " -"*initsigs* is ``0``, it skips initialization registration of signal " -"handlers, which may be useful when CPython is embedded as part of a larger " -"application." +msgid "This function works like :c:func:`Py_Initialize` if *initsigs* is ``1``. If *initsigs* is ``0``, it skips initialization registration of signal handlers, which may be useful when CPython is embedded as part of a larger application." msgstr "" -#: ../../c-api/interp-lifecycle.rst:399 -msgid "" -"Initialize Python from *config* configuration, as described in :ref:`init-" -"from-config`." +msgid "Initialize Python from *config* configuration, as described in :ref:`init-from-config`." msgstr "" -#: ../../c-api/interp-lifecycle.rst:402 -msgid "" -"See the :ref:`init-config` section for details on pre-initializing the " -"interpreter, populating the runtime configuration structure, and querying " -"the returned status structure." +msgid "See the :ref:`init-config` section for details on pre-initializing the interpreter, populating the runtime configuration structure, and querying the returned status structure." msgstr "" -#: ../../c-api/interp-lifecycle.rst:409 -msgid "" -"Return true (nonzero) when the Python interpreter has been initialized, " -"false (zero) if not. After :c:func:`Py_FinalizeEx` is called, this returns " -"false until :c:func:`Py_Initialize` is called again." +msgid "Return true (nonzero) when the Python interpreter has been initialized, false (zero) if not. After :c:func:`Py_FinalizeEx` is called, this returns false until :c:func:`Py_Initialize` is called again." msgstr "" -#: ../../c-api/interp-lifecycle.rst:416 -msgid "" -"Return true (non-zero) if the main Python interpreter is :term:`shutting " -"down `. Return false (zero) otherwise." +msgid "Return true (non-zero) if the main Python interpreter is :term:`shutting down `. Return false (zero) otherwise." msgstr "" -#: ../../c-api/interp-lifecycle.rst:424 -msgid "" -"Undo all initializations made by :c:func:`Py_Initialize` and subsequent use " -"of Python/C API functions, and destroy all sub-interpreters " -"(see :c:func:`Py_NewInterpreter` below) that were created and not yet " -"destroyed since the last call to :c:func:`Py_Initialize`. This is a no-op " -"when called for a second time (without calling :c:func:`Py_Initialize` again " -"first)." +msgid "Undo all initializations made by :c:func:`Py_Initialize` and subsequent use of Python/C API functions, and destroy all sub-interpreters (see :c:func:`Py_NewInterpreter` below) that were created and not yet destroyed since the last call to :c:func:`Py_Initialize`. This is a no-op when called for a second time (without calling :c:func:`Py_Initialize` again first)." msgstr "" -#: ../../c-api/interp-lifecycle.rst:430 -msgid "" -"Since this is the reverse of :c:func:`Py_Initialize`, it should be called in " -"the same thread with the same interpreter active. That means the main " -"thread and the main interpreter. This should never be called " -"while :c:func:`Py_RunMain` is running." +msgid "Since this is the reverse of :c:func:`Py_Initialize`, it should be called in the same thread with the same interpreter active. That means the main thread and the main interpreter. This should never be called while :c:func:`Py_RunMain` is running." msgstr "" -#: ../../c-api/interp-lifecycle.rst:435 -msgid "" -"Normally the return value is ``0``. If there were errors during finalization " -"(flushing buffered data), ``-1`` is returned." +msgid "Normally the return value is ``0``. If there were errors during finalization (flushing buffered data), ``-1`` is returned." msgstr "" -#: ../../c-api/interp-lifecycle.rst:439 -msgid "" -"Note that Python will do a best effort at freeing all memory allocated by " -"the Python interpreter. Therefore, any C-Extension should make sure to " -"correctly clean up all of the previously allocated PyObjects before using " -"them in subsequent calls to :c:func:`Py_Initialize`. Otherwise it could " -"introduce vulnerabilities and incorrect behavior." +msgid "Note that Python will do a best effort at freeing all memory allocated by the Python interpreter. Therefore, any C-Extension should make sure to correctly clean up all of the previously allocated PyObjects before using them in subsequent calls to :c:func:`Py_Initialize`. Otherwise it could introduce vulnerabilities and incorrect behavior." msgstr "" -#: ../../c-api/interp-lifecycle.rst:445 -msgid "" -"This function is provided for a number of reasons. An embedding application " -"might want to restart Python without having to restart the application " -"itself. An application that has loaded the Python interpreter from a " -"dynamically loadable library (or DLL) might want to free all memory " -"allocated by Python before unloading the DLL. During a hunt for memory leaks " -"in an application a developer might want to free all memory allocated by " -"Python before exiting from the application." +msgid "This function is provided for a number of reasons. An embedding application might want to restart Python without having to restart the application itself. An application that has loaded the Python interpreter from a dynamically loadable library (or DLL) might want to free all memory allocated by Python before unloading the DLL. During a hunt for memory leaks in an application a developer might want to free all memory allocated by Python before exiting from the application." msgstr "" -#: ../../c-api/interp-lifecycle.rst:453 -msgid "" -"**Bugs and caveats:** The destruction of modules and objects in modules is " -"done in random order; this may cause destructors (:meth:`~object.__del__` " -"methods) to fail when they depend on other objects (even functions) or " -"modules. Dynamically loaded extension modules loaded by Python are not " -"unloaded. Small amounts of memory allocated by the Python interpreter may " -"not be freed (if you find a leak, please report it). Memory tied up in " -"circular references between objects is not freed. Interned strings will all " -"be deallocated regardless of their reference count. Some memory allocated by " -"extension modules may not be freed. Some extensions may not work properly " -"if their initialization routine is called more than once; this can happen if " -"an application calls :c:func:`Py_Initialize` and :c:func:`Py_FinalizeEx` " -"more than once. :c:func:`Py_FinalizeEx` must not be called recursively from " -"within itself. Therefore, it must not be called by any code that may be run " -"as part of the interpreter shutdown process, such as :py:mod:`atexit` " -"handlers, object finalizers, or any code that may be run while flushing the " -"stdout and stderr files." -msgstr "" - -#: ../../c-api/interp-lifecycle.rst:469 -msgid "" -"Raises an :ref:`auditing event ` " -"``cpython._PySys_ClearAuditHooks`` with no arguments." +msgid "**Bugs and caveats:** The destruction of modules and objects in modules is done in random order; this may cause destructors (:meth:`~object.__del__` methods) to fail when they depend on other objects (even functions) or modules. Dynamically loaded extension modules loaded by Python are not unloaded. Small amounts of memory allocated by the Python interpreter may not be freed (if you find a leak, please report it). Memory tied up in circular references between objects is not freed. Interned strings will all be deallocated regardless of their reference count. Some memory allocated by extension modules may not be freed. Some extensions may not work properly if their initialization routine is called more than once; this can happen if an application calls :c:func:`Py_Initialize` and :c:func:`Py_FinalizeEx` more than once. :c:func:`Py_FinalizeEx` must not be called recursively from within itself. Therefore, it must not be called by any code that may be run as part of the interpreter shutdown process, such as :py:mod:`atexit` handlers, object finalizers, or any code that may be run while flushing the stdout and stderr files." msgstr "" -#: ../../c-api/interp-lifecycle.rst:476 -msgid "" -"This is a backwards-compatible version of :c:func:`Py_FinalizeEx` that " -"disregards the return value." +msgid "Raises an :ref:`auditing event ` ``cpython._PySys_ClearAuditHooks`` with no arguments." msgstr "" -#: ../../c-api/interp-lifecycle.rst:482 -msgid "" -"Similar to :c:func:`Py_Main` but *argv* is an array of bytes strings, " -"allowing the calling application to delegate the text decoding step to the " -"CPython runtime." +msgid "This is a backwards-compatible version of :c:func:`Py_FinalizeEx` that disregards the return value." msgstr "" -#: ../../c-api/interp-lifecycle.rst:491 -msgid "" -"The main program for the standard interpreter, encapsulating a full " -"initialization/finalization cycle, as well as additional behaviour to " -"implement reading configurations settings from the environment and command " -"line, and then executing ``__main__`` in accordance with :ref:`using-on-" -"cmdline`." +msgid "Similar to :c:func:`Py_Main` but *argv* is an array of bytes strings, allowing the calling application to delegate the text decoding step to the CPython runtime." msgstr "" -#: ../../c-api/interp-lifecycle.rst:497 -msgid "" -"This is made available for programs which wish to support the full CPython " -"command line interface, rather than just embedding a Python runtime in a " -"larger application." +msgid "The main program for the standard interpreter, encapsulating a full initialization/finalization cycle, as well as additional behaviour to implement reading configurations settings from the environment and command line, and then executing ``__main__`` in accordance with :ref:`using-on-cmdline`." msgstr "" -#: ../../c-api/interp-lifecycle.rst:501 -msgid "" -"The *argc* and *argv* parameters are similar to those which are passed to a " -"C program's :c:func:`main` function, except that the *argv* entries are " -"first converted to ``wchar_t`` using :c:func:`Py_DecodeLocale`. It is also " -"important to note that the argument list entries may be modified to point to " -"strings other than those passed in (however, the contents of the strings " -"pointed to by the argument list are not modified)." +msgid "This is made available for programs which wish to support the full CPython command line interface, rather than just embedding a Python runtime in a larger application." msgstr "" -#: ../../c-api/interp-lifecycle.rst:508 -msgid "" -"The return value is ``2`` if the argument list does not represent a valid " -"Python command line, and otherwise the same as :c:func:`Py_RunMain`." +msgid "The *argc* and *argv* parameters are similar to those which are passed to a C program's :c:func:`main` function, except that the *argv* entries are first converted to ``wchar_t`` using :c:func:`Py_DecodeLocale`. It is also important to note that the argument list entries may be modified to point to strings other than those passed in (however, the contents of the strings pointed to by the argument list are not modified)." msgstr "" -#: ../../c-api/interp-lifecycle.rst:511 -msgid "" -"In terms of the CPython runtime configuration APIs documented in " -"the :ref:`runtime configuration ` section (and without " -"accounting for error handling), ``Py_Main`` is approximately equivalent to::" +msgid "The return value is ``2`` if the argument list does not represent a valid Python command line, and otherwise the same as :c:func:`Py_RunMain`." +msgstr "" + +msgid "In terms of the CPython runtime configuration APIs documented in the :ref:`runtime configuration ` section (and without accounting for error handling), ``Py_Main`` is approximately equivalent to::" msgstr "" -#: ../../c-api/interp-lifecycle.rst:515 msgid "" "PyConfig config;\n" "PyConfig_InitPythonConfig(&config);\n" @@ -732,542 +392,242 @@ msgid "" "Py_RunMain();" msgstr "" -#: ../../c-api/interp-lifecycle.rst:523 -msgid "" -"In normal usage, an embedding application will call this function *instead* " -"of calling :c:func:`Py_Initialize`, :c:func:`Py_InitializeEx` " -"or :c:func:`Py_InitializeFromConfig` directly, and all settings will be " -"applied as described elsewhere in this documentation. If this function is " -"instead called *after* a preceding runtime initialization API call, then " -"exactly which environmental and command line configuration settings will be " -"updated is version dependent (as it depends on which settings correctly " -"support being modified after they have already been set once when the " -"runtime was first initialized)." -msgstr "" - -#: ../../c-api/interp-lifecycle.rst:536 +msgid "In normal usage, an embedding application will call this function *instead* of calling :c:func:`Py_Initialize`, :c:func:`Py_InitializeEx` or :c:func:`Py_InitializeFromConfig` directly, and all settings will be applied as described elsewhere in this documentation. If this function is instead called *after* a preceding runtime initialization API call, then exactly which environmental and command line configuration settings will be updated is version dependent (as it depends on which settings correctly support being modified after they have already been set once when the runtime was first initialized)." +msgstr "" + msgid "Executes the main module in a fully configured CPython runtime." msgstr "" -#: ../../c-api/interp-lifecycle.rst:538 -msgid "" -"Executes the command (:c:member:`PyConfig.run_command`), the script " -"(:c:member:`PyConfig.run_filename`) or the module " -"(:c:member:`PyConfig.run_module`) specified on the command line or in the " -"configuration. If none of these values are set, runs the interactive Python " -"prompt (REPL) using the ``__main__`` module's global namespace." +msgid "Executes the command (:c:member:`PyConfig.run_command`), the script (:c:member:`PyConfig.run_filename`) or the module (:c:member:`PyConfig.run_module`) specified on the command line or in the configuration. If none of these values are set, runs the interactive Python prompt (REPL) using the ``__main__`` module's global namespace." msgstr "" -#: ../../c-api/interp-lifecycle.rst:544 -msgid "" -"If :c:member:`PyConfig.inspect` is not set (the default), the return value " -"will be ``0`` if the interpreter exits normally (that is, without raising an " -"exception), the exit status of an unhandled :exc:`SystemExit`, or ``1`` for " -"any other unhandled exception." +msgid "If :c:member:`PyConfig.inspect` is not set (the default), the return value will be ``0`` if the interpreter exits normally (that is, without raising an exception), the exit status of an unhandled :exc:`SystemExit`, or ``1`` for any other unhandled exception." msgstr "" -#: ../../c-api/interp-lifecycle.rst:549 -msgid "" -"If :c:member:`PyConfig.inspect` is set (such as when the :option:`-i` option " -"is used), rather than returning when the interpreter exits, execution will " -"instead resume in an interactive Python prompt (REPL) using the ``__main__`` " -"module's global namespace. If the interpreter exited with an exception, it " -"is immediately raised in the REPL session. The function return value is then " -"determined by the way the *REPL session* terminates: ``0``, ``1``, or the " -"status of a :exc:`SystemExit`, as specified above." +msgid "If :c:member:`PyConfig.inspect` is set (such as when the :option:`-i` option is used), rather than returning when the interpreter exits, execution will instead resume in an interactive Python prompt (REPL) using the ``__main__`` module's global namespace. If the interpreter exited with an exception, it is immediately raised in the REPL session. The function return value is then determined by the way the *REPL session* terminates: ``0``, ``1``, or the status of a :exc:`SystemExit`, as specified above." msgstr "" -#: ../../c-api/interp-lifecycle.rst:557 -msgid "" -"This function always finalizes the Python interpreter before it returns." +msgid "This function always finalizes the Python interpreter before it returns." msgstr "" -#: ../../c-api/interp-lifecycle.rst:559 -msgid "" -"See :ref:`Python Configuration ` for an example of a " -"customized Python that always runs in isolated mode " -"using :c:func:`Py_RunMain`." +msgid "See :ref:`Python Configuration ` for an example of a customized Python that always runs in isolated mode using :c:func:`Py_RunMain`." msgstr "" -#: ../../c-api/interp-lifecycle.rst:565 -msgid "" -"Register an :mod:`atexit` callback for the target interpreter *interp*. This " -"is similar to :c:func:`Py_AtExit`, but takes an explicit interpreter and " -"data pointer for the callback." +msgid "Register an :mod:`atexit` callback for the target interpreter *interp*. This is similar to :c:func:`Py_AtExit`, but takes an explicit interpreter and data pointer for the callback." msgstr "" -#: ../../c-api/interp-lifecycle.rst:569 msgid "There must be an :term:`attached thread state` for *interp*." msgstr "" -#: ../../c-api/interp-lifecycle.rst:577 msgid "Cautions regarding runtime finalization" msgstr "" -#: ../../c-api/interp-lifecycle.rst:579 -msgid "" -"In the late stage of :term:`interpreter shutdown`, after attempting to wait " -"for non-daemon threads to exit (though this can be interrupted " -"by :class:`KeyboardInterrupt`) and running the :mod:`atexit` functions, the " -"runtime is marked as *finalizing*: :c:func:`Py_IsFinalizing` " -"and :func:`sys.is_finalizing` return true. At this point, only the " -"*finalization thread* that initiated finalization (typically the main " -"thread) is allowed to acquire the :term:`GIL`." +msgid "In the late stage of :term:`interpreter shutdown`, after attempting to wait for non-daemon threads to exit (though this can be interrupted by :class:`KeyboardInterrupt`) and running the :mod:`atexit` functions, the runtime is marked as *finalizing*: :c:func:`Py_IsFinalizing` and :func:`sys.is_finalizing` return true. At this point, only the *finalization thread* that initiated finalization (typically the main thread) is allowed to acquire the :term:`GIL`." msgstr "" -#: ../../c-api/interp-lifecycle.rst:587 -msgid "" -"If any thread, other than the finalization thread, attempts to attach " -"a :term:`thread state` during finalization, either explicitly or implicitly, " -"the thread enters **a permanently blocked state** where it remains until the " -"program exits. In most cases this is harmless, but this can result in " -"deadlock if a later stage of finalization attempts to acquire a lock owned " -"by the blocked thread, or otherwise waits on the blocked thread." +msgid "If any thread, other than the finalization thread, attempts to attach a :term:`thread state` during finalization, either explicitly or implicitly, the thread enters **a permanently blocked state** where it remains until the program exits. In most cases this is harmless, but this can result in deadlock if a later stage of finalization attempts to acquire a lock owned by the blocked thread, or otherwise waits on the blocked thread." msgstr "" -#: ../../c-api/interp-lifecycle.rst:594 -msgid "" -"Gross? Yes. This prevents random crashes and/or unexpectedly skipped C++ " -"finalizations further up the call stack when such threads were forcibly " -"exited here in CPython 3.13 and earlier. The CPython runtime :term:`thread " -"state` C APIs have never had any error reporting or handling expectations " -"at :term:`thread state` attachment time that would've allowed for graceful " -"exit from this situation. Changing that would require new stable C APIs and " -"rewriting the majority of C code in the CPython ecosystem to use those with " -"error handling." +msgid "Gross? Yes. This prevents random crashes and/or unexpectedly skipped C++ finalizations further up the call stack when such threads were forcibly exited here in CPython 3.13 and earlier. The CPython runtime :term:`thread state` C APIs have never had any error reporting or handling expectations at :term:`thread state` attachment time that would've allowed for graceful exit from this situation. Changing that would require new stable C APIs and rewriting the majority of C code in the CPython ecosystem to use those with error handling." msgstr "" -#: ../../c-api/interp-lifecycle.rst:604 msgid "Process-wide parameters" msgstr "" -#: ../../c-api/interp-lifecycle.rst:613 -msgid "" -"This API is kept for backward compatibility: " -"setting :c:member:`PyConfig.program_name` should be used instead, " -"see :ref:`Python Initialization Configuration `." +msgid "This API is kept for backward compatibility: setting :c:member:`PyConfig.program_name` should be used instead, see :ref:`Python Initialization Configuration `." msgstr "" -#: ../../c-api/interp-lifecycle.rst:617 -msgid "" -"This function should be called before :c:func:`Py_Initialize` is called for " -"the first time, if it is called at all. It tells the interpreter the value " -"of the ``argv[0]`` argument to the :c:func:`main` function of the program " -"(converted to wide characters). This is used by :c:func:`Py_GetPath` and " -"some other functions below to find the Python run-time libraries relative to " -"the interpreter executable. The default value is ``'python'``. The " -"argument should point to a zero-terminated wide character string in static " -"storage whose contents will not change for the duration of the program's " -"execution. No code in the Python interpreter will change the contents of " -"this storage." -msgstr "" - -#: ../../c-api/interp-lifecycle.rst:628 ../../c-api/interp-lifecycle.rst:877 -#: ../../c-api/interp-lifecycle.rst:910 ../../c-api/interp-lifecycle.rst:936 -msgid "" -"Use :c:func:`Py_DecodeLocale` to decode a bytes string to get " -"a :c:expr:`wchar_t*` string." +msgid "This function should be called before :c:func:`Py_Initialize` is called for the first time, if it is called at all. It tells the interpreter the value of the ``argv[0]`` argument to the :c:func:`main` function of the program (converted to wide characters). This is used by :c:func:`Py_GetPath` and some other functions below to find the Python run-time libraries relative to the interpreter executable. The default value is ``'python'``. The argument should point to a zero-terminated wide character string in static storage whose contents will not change for the duration of the program's execution. No code in the Python interpreter will change the contents of this storage." msgstr "" -#: ../../c-api/interp-lifecycle.rst:636 -msgid "" -"Return the program name set with :c:member:`PyConfig.program_name`, or the " -"default. The returned string points into static storage; the caller should " -"not modify its value." +msgid "Use :c:func:`Py_DecodeLocale` to decode a bytes string to get a :c:expr:`wchar_t*` string." msgstr "" -#: ../../c-api/interp-lifecycle.rst:640 ../../c-api/interp-lifecycle.rst:663 -#: ../../c-api/interp-lifecycle.rst:711 ../../c-api/interp-lifecycle.rst:736 -#: ../../c-api/interp-lifecycle.rst:763 ../../c-api/interp-lifecycle.rst:948 -msgid "" -"This function should not be called before :c:func:`Py_Initialize`, otherwise " -"it returns ``NULL``." +msgid "Return the program name set with :c:member:`PyConfig.program_name`, or the default. The returned string points into static storage; the caller should not modify its value." +msgstr "" + +msgid "This function should not be called before :c:func:`Py_Initialize`, otherwise it returns ``NULL``." msgstr "" -#: ../../c-api/interp-lifecycle.rst:643 ../../c-api/interp-lifecycle.rst:666 -#: ../../c-api/interp-lifecycle.rst:714 ../../c-api/interp-lifecycle.rst:739 -#: ../../c-api/interp-lifecycle.rst:768 ../../c-api/interp-lifecycle.rst:951 msgid "It now returns ``NULL`` if called before :c:func:`Py_Initialize`." msgstr "" -#: ../../c-api/interp-lifecycle.rst:646 ../../c-api/interp-lifecycle.rst:742 -msgid "" -"Use :c:func:`PyConfig_Get(\"executable\") ` " -"(:data:`sys.executable`) instead." +msgid "Use :c:func:`PyConfig_Get(\"executable\") ` (:data:`sys.executable`) instead." msgstr "" -#: ../../c-api/interp-lifecycle.rst:653 -msgid "" -"Return the *prefix* for installed platform-independent files. This is " -"derived through a number of complicated rules from the program name set " -"with :c:member:`PyConfig.program_name` and some environment variables; for " -"example, if the program name is ``'/usr/local/bin/python'``, the prefix is " -"``'/usr/local'``. The returned string points into static storage; the caller " -"should not modify its value. This corresponds to the :makevar:`prefix` " -"variable in the top-level :file:`Makefile` and the :option:`--prefix` " -"argument to the :program:`configure` script at build time. The value is " -"available to Python code as ``sys.base_prefix``. It is only useful on Unix. " -"See also the next function." -msgstr "" - -#: ../../c-api/interp-lifecycle.rst:669 -msgid "" -"Use :c:func:`PyConfig_Get(\"base_prefix\") ` " -"(:data:`sys.base_prefix`) instead. Use :c:func:`PyConfig_Get(\"prefix\") " -"` (:data:`sys.prefix`) if :ref:`virtual environments ` need to be handled." +msgid "Return the *prefix* for installed platform-independent files. This is derived through a number of complicated rules from the program name set with :c:member:`PyConfig.program_name` and some environment variables; for example, if the program name is ``'/usr/local/bin/python'``, the prefix is ``'/usr/local'``. The returned string points into static storage; the caller should not modify its value. This corresponds to the :makevar:`prefix` variable in the top-level :file:`Makefile` and the :option:`--prefix` argument to the :program:`configure` script at build time. The value is available to Python code as ``sys.base_prefix``. It is only useful on Unix. See also the next function." msgstr "" -#: ../../c-api/interp-lifecycle.rst:678 -msgid "" -"Return the *exec-prefix* for installed platform-*dependent* files. This is " -"derived through a number of complicated rules from the program name set " -"with :c:member:`PyConfig.program_name` and some environment variables; for " -"example, if the program name is ``'/usr/local/bin/python'``, the exec-prefix " -"is ``'/usr/local'``. The returned string points into static storage; the " -"caller should not modify its value. This corresponds to " -"the :makevar:`exec_prefix` variable in the top-level :file:`Makefile` and " -"the ``--exec-prefix`` argument to the :program:`configure` script at build " -"time. The value is available to Python code as ``sys.base_exec_prefix``. " -"It is only useful on Unix." -msgstr "" - -#: ../../c-api/interp-lifecycle.rst:689 -msgid "" -"Background: The exec-prefix differs from the prefix when platform dependent " -"files (such as executables and shared libraries) are installed in a " -"different directory tree. In a typical installation, platform dependent " -"files may be installed in the :file:`/usr/local/plat` subtree while platform " -"independent may be installed in :file:`/usr/local`." +msgid "Use :c:func:`PyConfig_Get(\"base_prefix\") ` (:data:`sys.base_prefix`) instead. Use :c:func:`PyConfig_Get(\"prefix\") ` (:data:`sys.prefix`) if :ref:`virtual environments ` need to be handled." msgstr "" -#: ../../c-api/interp-lifecycle.rst:695 -msgid "" -"Generally speaking, a platform is a combination of hardware and software " -"families, e.g. Sparc machines running the Solaris 2.x operating system are " -"considered the same platform, but Intel machines running Solaris 2.x are " -"another platform, and Intel machines running Linux are yet another " -"platform. Different major revisions of the same operating system generally " -"also form different platforms. Non-Unix operating systems are a different " -"story; the installation strategies on those systems are so different that " -"the prefix and exec-prefix are meaningless, and set to the empty string. " -"Note that compiled Python bytecode files are platform independent (but not " -"independent from the Python version by which they were compiled!)." -msgstr "" - -#: ../../c-api/interp-lifecycle.rst:706 -msgid "" -"System administrators will know how to configure the :program:`mount` " -"or :program:`automount` programs to share :file:`/usr/local` between " -"platforms while having :file:`/usr/local/plat` be a different filesystem for " -"each platform." +msgid "Return the *exec-prefix* for installed platform-*dependent* files. This is derived through a number of complicated rules from the program name set with :c:member:`PyConfig.program_name` and some environment variables; for example, if the program name is ``'/usr/local/bin/python'``, the exec-prefix is ``'/usr/local'``. The returned string points into static storage; the caller should not modify its value. This corresponds to the :makevar:`exec_prefix` variable in the top-level :file:`Makefile` and the ``--exec-prefix`` argument to the :program:`configure` script at build time. The value is available to Python code as ``sys.base_exec_prefix``. It is only useful on Unix." msgstr "" -#: ../../c-api/interp-lifecycle.rst:717 -msgid "" -"Use :c:func:`PyConfig_Get(\"base_exec_prefix\") ` " -"(:data:`sys.base_exec_prefix`) instead. " -"Use :c:func:`PyConfig_Get(\"exec_prefix\") ` " -"(:data:`sys.exec_prefix`) if :ref:`virtual environments ` need to " -"be handled." +msgid "Background: The exec-prefix differs from the prefix when platform dependent files (such as executables and shared libraries) are installed in a different directory tree. In a typical installation, platform dependent files may be installed in the :file:`/usr/local/plat` subtree while platform independent may be installed in :file:`/usr/local`." msgstr "" -#: ../../c-api/interp-lifecycle.rst:730 -msgid "" -"Return the full program name of the Python executable; this is computed as " -"a side-effect of deriving the default module search path from the program " -"name (set by :c:member:`PyConfig.program_name`). The returned string points " -"into static storage; the caller should not modify its value. The value is " -"available to Python code as ``sys.executable``." +msgid "Generally speaking, a platform is a combination of hardware and software families, e.g. Sparc machines running the Solaris 2.x operating system are considered the same platform, but Intel machines running Solaris 2.x are another platform, and Intel machines running Linux are yet another platform. Different major revisions of the same operating system generally also form different platforms. Non-Unix operating systems are a different story; the installation strategies on those systems are so different that the prefix and exec-prefix are meaningless, and set to the empty string. Note that compiled Python bytecode files are platform independent (but not independent from the Python version by which they were compiled!)." msgstr "" -#: ../../c-api/interp-lifecycle.rst:753 -msgid "" -"Return the default module search path; this is computed from the program " -"name (set by :c:member:`PyConfig.program_name`) and some environment " -"variables. The returned string consists of a series of directory names " -"separated by a platform dependent delimiter character. The delimiter " -"character is ``':'`` on Unix and macOS, ``';'`` on Windows. The returned " -"string points into static storage; the caller should not modify its value. " -"The list :data:`sys.path` is initialized with this value on interpreter " -"startup; it can be (and usually is) modified later to change the search path " -"for loading modules." -msgstr "" - -#: ../../c-api/interp-lifecycle.rst:771 -msgid "" -"Use :c:func:`PyConfig_Get(\"module_search_paths\") ` " -"(:data:`sys.path`) instead." +msgid "System administrators will know how to configure the :program:`mount` or :program:`automount` programs to share :file:`/usr/local` between platforms while having :file:`/usr/local/plat` be a different filesystem for each platform." msgstr "" -#: ../../c-api/interp-lifecycle.rst:777 -msgid "" -"Return the version of this Python interpreter. This is a string that looks " -"something like ::" +msgid "Use :c:func:`PyConfig_Get(\"base_exec_prefix\") ` (:data:`sys.base_exec_prefix`) instead. Use :c:func:`PyConfig_Get(\"exec_prefix\") ` (:data:`sys.exec_prefix`) if :ref:`virtual environments ` need to be handled." +msgstr "" + +msgid "Return the full program name of the Python executable; this is computed as a side-effect of deriving the default module search path from the program name (set by :c:member:`PyConfig.program_name`). The returned string points into static storage; the caller should not modify its value. The value is available to Python code as ``sys.executable``." +msgstr "" + +msgid "Return the default module search path; this is computed from the program name (set by :c:member:`PyConfig.program_name`) and some environment variables. The returned string consists of a series of directory names separated by a platform dependent delimiter character. The delimiter character is ``':'`` on Unix and macOS, ``';'`` on Windows. The returned string points into static storage; the caller should not modify its value. The list :data:`sys.path` is initialized with this value on interpreter startup; it can be (and usually is) modified later to change the search path for loading modules." +msgstr "" + +msgid "Use :c:func:`PyConfig_Get(\"module_search_paths\") ` (:data:`sys.path`) instead." +msgstr "" + +msgid "Return the version of this Python interpreter. This is a string that looks something like ::" msgstr "" -#: ../../c-api/interp-lifecycle.rst:780 msgid "\"3.0a5+ (py3k:63103M, May 12 2008, 00:53:55) \\n[GCC 4.2.3]\"" msgstr "" -#: ../../c-api/interp-lifecycle.rst:784 -msgid "" -"The first word (up to the first space character) is the current Python " -"version; the first characters are the major and minor version separated by a " -"period. The returned string points into static storage; the caller should " -"not modify its value. The value is available to Python code " -"as :data:`sys.version`." +msgid "The first word (up to the first space character) is the current Python version; the first characters are the major and minor version separated by a period. The returned string points into static storage; the caller should not modify its value. The value is available to Python code as :data:`sys.version`." msgstr "" -#: ../../c-api/interp-lifecycle.rst:789 msgid "See also the :c:var:`Py_Version` constant." msgstr "" -#: ../../c-api/interp-lifecycle.rst:796 -msgid "" -"Return the platform identifier for the current platform. On Unix, this is " -"formed from the \"official\" name of the operating system, converted to " -"lower case, followed by the major revision number; e.g., for Solaris 2.x, " -"which is also known as SunOS 5.x, the value is ``'sunos5'``. On macOS, it " -"is ``'darwin'``. On Windows, it is ``'win'``. The returned string points " -"into static storage; the caller should not modify its value. The value is " -"available to Python code as ``sys.platform``." +msgid "Return the platform identifier for the current platform. On Unix, this is formed from the \"official\" name of the operating system, converted to lower case, followed by the major revision number; e.g., for Solaris 2.x, which is also known as SunOS 5.x, the value is ``'sunos5'``. On macOS, it is ``'darwin'``. On Windows, it is ``'win'``. The returned string points into static storage; the caller should not modify its value. The value is available to Python code as ``sys.platform``." msgstr "" -#: ../../c-api/interp-lifecycle.rst:807 -msgid "" -"Return the official copyright string for the current Python version, for " -"example" +msgid "Return the official copyright string for the current Python version, for example" msgstr "" -#: ../../c-api/interp-lifecycle.rst:809 msgid "``'Copyright 1991-1995 Stichting Mathematisch Centrum, Amsterdam'``" msgstr "" -#: ../../c-api/interp-lifecycle.rst:813 -msgid "" -"The returned string points into static storage; the caller should not modify " -"its value. The value is available to Python code as ``sys.copyright``." +msgid "The returned string points into static storage; the caller should not modify its value. The value is available to Python code as ``sys.copyright``." msgstr "" -#: ../../c-api/interp-lifecycle.rst:819 -msgid "" -"Return an indication of the compiler used to build the current Python " -"version, in square brackets, for example::" +msgid "Return an indication of the compiler used to build the current Python version, in square brackets, for example::" msgstr "" -#: ../../c-api/interp-lifecycle.rst:822 msgid "\"[GCC 2.7.2.2]\"" msgstr "" -#: ../../c-api/interp-lifecycle.rst:826 ../../c-api/interp-lifecycle.rst:840 -msgid "" -"The returned string points into static storage; the caller should not modify " -"its value. The value is available to Python code as part of the variable " -"``sys.version``." +msgid "The returned string points into static storage; the caller should not modify its value. The value is available to Python code as part of the variable ``sys.version``." msgstr "" -#: ../../c-api/interp-lifecycle.rst:833 -msgid "" -"Return information about the sequence number and build date and time of the " -"current Python interpreter instance, for example ::" +msgid "Return information about the sequence number and build date and time of the current Python interpreter instance, for example ::" msgstr "" -#: ../../c-api/interp-lifecycle.rst:836 msgid "\"#67, Aug 1 1997, 22:34:28\"" msgstr "" -#: ../../c-api/interp-lifecycle.rst:852 -msgid "" -"This API is kept for backward compatibility: " -"setting :c:member:`PyConfig.argv`, :c:member:`PyConfig.parse_argv` " -"and :c:member:`PyConfig.safe_path` should be used instead, see :ref:`Python " -"Initialization Configuration `." +msgid "This API is kept for backward compatibility: setting :c:member:`PyConfig.argv`, :c:member:`PyConfig.parse_argv` and :c:member:`PyConfig.safe_path` should be used instead, see :ref:`Python Initialization Configuration `." msgstr "" -#: ../../c-api/interp-lifecycle.rst:857 -msgid "" -"Set :data:`sys.argv` based on *argc* and *argv*. These parameters are " -"similar to those passed to the program's :c:func:`main` function with the " -"difference that the first entry should refer to the script file to be " -"executed rather than the executable hosting the Python interpreter. If " -"there isn't a script that will be run, the first entry in *argv* can be an " -"empty string. If this function fails to initialize :data:`sys.argv`, a " -"fatal condition is signalled using :c:func:`Py_FatalError`." +msgid "Set :data:`sys.argv` based on *argc* and *argv*. These parameters are similar to those passed to the program's :c:func:`main` function with the difference that the first entry should refer to the script file to be executed rather than the executable hosting the Python interpreter. If there isn't a script that will be run, the first entry in *argv* can be an empty string. If this function fails to initialize :data:`sys.argv`, a fatal condition is signalled using :c:func:`Py_FatalError`." msgstr "" -#: ../../c-api/interp-lifecycle.rst:865 -msgid "" -"If *updatepath* is zero, this is all the function does. If *updatepath* is " -"non-zero, the function also modifies :data:`sys.path` according to the " -"following algorithm:" +msgid "If *updatepath* is zero, this is all the function does. If *updatepath* is non-zero, the function also modifies :data:`sys.path` according to the following algorithm:" msgstr "" -#: ../../c-api/interp-lifecycle.rst:869 -msgid "" -"If the name of an existing script is passed in ``argv[0]``, the absolute " -"path of the directory where the script is located is prepended " -"to :data:`sys.path`." +msgid "If the name of an existing script is passed in ``argv[0]``, the absolute path of the directory where the script is located is prepended to :data:`sys.path`." msgstr "" -#: ../../c-api/interp-lifecycle.rst:872 -msgid "" -"Otherwise (that is, if *argc* is ``0`` or ``argv[0]`` doesn't point to an " -"existing file name), an empty string is prepended to :data:`sys.path`, which " -"is the same as prepending the current working directory (``\".\"``)." +msgid "Otherwise (that is, if *argc* is ``0`` or ``argv[0]`` doesn't point to an existing file name), an empty string is prepended to :data:`sys.path`, which is the same as prepending the current working directory (``\".\"``)." msgstr "" -#: ../../c-api/interp-lifecycle.rst:880 ../../c-api/interp-lifecycle.rst:913 -msgid "" -"See also :c:member:`PyConfig.orig_argv` and :c:member:`PyConfig.argv` " -"members of the :ref:`Python Initialization Configuration `." +msgid "See also :c:member:`PyConfig.orig_argv` and :c:member:`PyConfig.argv` members of the :ref:`Python Initialization Configuration `." msgstr "" -#: ../../c-api/interp-lifecycle.rst:884 -msgid "" -"It is recommended that applications embedding the Python interpreter for " -"purposes other than executing a single script pass ``0`` as *updatepath*, " -"and update :data:`sys.path` themselves if desired. See :cve:`2008-5983`." +msgid "It is recommended that applications embedding the Python interpreter for purposes other than executing a single script pass ``0`` as *updatepath*, and update :data:`sys.path` themselves if desired. See :cve:`2008-5983`." msgstr "" -#: ../../c-api/interp-lifecycle.rst:889 -msgid "" -"On versions before 3.1.3, you can achieve the same effect by manually " -"popping the first :data:`sys.path` element after having " -"called :c:func:`PySys_SetArgv`, for example using::" +msgid "On versions before 3.1.3, you can achieve the same effect by manually popping the first :data:`sys.path` element after having called :c:func:`PySys_SetArgv`, for example using::" msgstr "" -#: ../../c-api/interp-lifecycle.rst:893 msgid "PyRun_SimpleString(\"import sys; sys.path.pop(0)\\n\");" msgstr "" -#: ../../c-api/interp-lifecycle.rst:902 -msgid "" -"This API is kept for backward compatibility: " -"setting :c:member:`PyConfig.argv` and :c:member:`PyConfig.parse_argv` should " -"be used instead, see :ref:`Python Initialization Configuration `." +msgid "This API is kept for backward compatibility: setting :c:member:`PyConfig.argv` and :c:member:`PyConfig.parse_argv` should be used instead, see :ref:`Python Initialization Configuration `." msgstr "" -#: ../../c-api/interp-lifecycle.rst:906 -msgid "" -"This function works like :c:func:`PySys_SetArgvEx` with *updatepath* set to " -"``1`` unless the :program:`python` interpreter was started with " -"the :option:`-I`." +msgid "This function works like :c:func:`PySys_SetArgvEx` with *updatepath* set to ``1`` unless the :program:`python` interpreter was started with the :option:`-I`." msgstr "" -#: ../../c-api/interp-lifecycle.rst:916 msgid "The *updatepath* value depends on :option:`-I`." msgstr "" -#: ../../c-api/interp-lifecycle.rst:923 -msgid "" -"This API is kept for backward compatibility: " -"setting :c:member:`PyConfig.home` should be used instead, see :ref:`Python " -"Initialization Configuration `." +msgid "This API is kept for backward compatibility: setting :c:member:`PyConfig.home` should be used instead, see :ref:`Python Initialization Configuration `." msgstr "" -#: ../../c-api/interp-lifecycle.rst:927 -msgid "" -"Set the default \"home\" directory, that is, the location of the standard " -"Python libraries. See :envvar:`PYTHONHOME` for the meaning of the argument " -"string." +msgid "Set the default \"home\" directory, that is, the location of the standard Python libraries. See :envvar:`PYTHONHOME` for the meaning of the argument string." msgstr "" -#: ../../c-api/interp-lifecycle.rst:931 -msgid "" -"The argument should point to a zero-terminated character string in static " -"storage whose contents will not change for the duration of the program's " -"execution. No code in the Python interpreter will change the contents of " -"this storage." +msgid "The argument should point to a zero-terminated character string in static storage whose contents will not change for the duration of the program's execution. No code in the Python interpreter will change the contents of this storage." msgstr "" -#: ../../c-api/interp-lifecycle.rst:944 -msgid "" -"Return the default \"home\", that is, the value set " -"by :c:member:`PyConfig.home`, or the value of the :envvar:`PYTHONHOME` " -"environment variable if it is set." +msgid "Return the default \"home\", that is, the value set by :c:member:`PyConfig.home`, or the value of the :envvar:`PYTHONHOME` environment variable if it is set." msgstr "" -#: ../../c-api/interp-lifecycle.rst:954 -msgid "" -"Use :c:func:`PyConfig_Get(\"home\") ` or " -"the :envvar:`PYTHONHOME` environment variable instead." +msgid "Use :c:func:`PyConfig_Get(\"home\") ` or the :envvar:`PYTHONHOME` environment variable instead." msgstr "" -#: ../../c-api/interp-lifecycle.rst:357 msgid "PyEval_InitThreads()" msgstr "" -#: ../../c-api/interp-lifecycle.rst:357 msgid "modules (in module sys)" msgstr "" -#: ../../c-api/interp-lifecycle.rst:357 ../../c-api/interp-lifecycle.rst:749 msgid "path (in module sys)" msgstr "" -#: ../../c-api/interp-lifecycle.rst:357 ../../c-api/interp-lifecycle.rst:749 msgid "module" msgstr "" -#: ../../c-api/interp-lifecycle.rst:357 msgid "builtins" msgstr "" -#: ../../c-api/interp-lifecycle.rst:357 msgid "__main__" msgstr "" -#: ../../c-api/interp-lifecycle.rst:357 msgid "sys" msgstr "" -#: ../../c-api/interp-lifecycle.rst:357 ../../c-api/interp-lifecycle.rst:749 msgid "search" msgstr "" -#: ../../c-api/interp-lifecycle.rst:357 ../../c-api/interp-lifecycle.rst:749 msgid "path" msgstr "" -#: ../../c-api/interp-lifecycle.rst:357 msgid "Py_FinalizeEx (C function)" msgstr "" -#: ../../c-api/interp-lifecycle.rst:608 msgid "Py_Initialize()" msgstr "" -#: ../../c-api/interp-lifecycle.rst:608 ../../c-api/interp-lifecycle.rst:847 msgid "main()" msgstr "" -#: ../../c-api/interp-lifecycle.rst:608 msgid "Py_GetPath()" msgstr "" -#: ../../c-api/interp-lifecycle.rst:727 msgid "executable (in module sys)" msgstr "" -#: ../../c-api/interp-lifecycle.rst:782 ../../c-api/interp-lifecycle.rst:824 -#: ../../c-api/interp-lifecycle.rst:838 msgid "version (in module sys)" msgstr "" -#: ../../c-api/interp-lifecycle.rst:794 msgid "platform (in module sys)" msgstr "" -#: ../../c-api/interp-lifecycle.rst:811 msgid "copyright (in module sys)" msgstr "" -#: ../../c-api/interp-lifecycle.rst:847 msgid "Py_FatalError()" msgstr "" -#: ../../c-api/interp-lifecycle.rst:847 msgid "argv (in module sys)" msgstr "" diff --git a/c-api/intro.po b/c-api/intro.po index 0148af84..1bd1cbef 100644 --- a/c-api/intro.po +++ b/c-api/intro.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:49+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,197 +24,92 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../c-api/intro.rst:8 msgid "Introduction" msgstr "" -#: ../../c-api/intro.rst:10 -msgid "" -"The Application Programmer's Interface to Python gives C and C++ programmers " -"access to the Python interpreter at a variety of levels. The API is equally " -"usable from C++, but for brevity it is generally referred to as the Python/C " -"API. There are two fundamentally different reasons for using the Python/C " -"API. The first reason is to write *extension modules* for specific purposes; " -"these are C modules that extend the Python interpreter. This is probably " -"the most common use. The second reason is to use Python as a component in a " -"larger application; this technique is generally referred to " -"as :dfn:`embedding` Python in an application." -msgstr "" - -#: ../../c-api/intro.rst:20 -msgid "" -"Writing an extension module is a relatively well-understood process, where a " -"\"cookbook\" approach works well. There are several tools that automate the " -"process to some extent. While people have embedded Python in other " -"applications since its early existence, the process of embedding Python is " -"less straightforward than writing an extension." +msgid "The Application Programmer's Interface to Python gives C and C++ programmers access to the Python interpreter at a variety of levels. The API is equally usable from C++, but for brevity it is generally referred to as the Python/C API. There are two fundamentally different reasons for using the Python/C API. The first reason is to write *extension modules* for specific purposes; these are C modules that extend the Python interpreter. This is probably the most common use. The second reason is to use Python as a component in a larger application; this technique is generally referred to as :dfn:`embedding` Python in an application." msgstr "" -#: ../../c-api/intro.rst:26 -msgid "" -"Many API functions are useful independent of whether you're embedding or " -"extending Python; moreover, most applications that embed Python will need " -"to provide a custom extension as well, so it's probably a good idea to " -"become familiar with writing an extension before attempting to embed Python " -"in a real application." +msgid "Writing an extension module is a relatively well-understood process, where a \"cookbook\" approach works well. There are several tools that automate the process to some extent. While people have embedded Python in other applications since its early existence, the process of embedding Python is less straightforward than writing an extension." +msgstr "" + +msgid "Many API functions are useful independent of whether you're embedding or extending Python; moreover, most applications that embed Python will need to provide a custom extension as well, so it's probably a good idea to become familiar with writing an extension before attempting to embed Python in a real application." msgstr "" -#: ../../c-api/intro.rst:34 msgid "Language version compatibility" msgstr "" -#: ../../c-api/intro.rst:36 msgid "Python's C API is compatible with C11 and C++11 versions of C and C++." msgstr "" -#: ../../c-api/intro.rst:38 -msgid "" -"This is a lower limit: the C API does not require features from later C/C++ " -"versions. You do *not* need to enable your compiler's \"c11 mode\"." +msgid "This is a lower limit: the C API does not require features from later C/C++ versions. You do *not* need to enable your compiler's \"c11 mode\"." msgstr "" -#: ../../c-api/intro.rst:44 msgid "Coding standards" msgstr "" -#: ../../c-api/intro.rst:46 -msgid "" -"If you're writing C code for inclusion in CPython, you **must** follow the " -"guidelines and standards defined in :PEP:`7`. These guidelines apply " -"regardless of the version of Python you are contributing to. Following " -"these conventions is not necessary for your own third party extension " -"modules, unless you eventually expect to contribute them to Python." +msgid "If you're writing C code for inclusion in CPython, you **must** follow the guidelines and standards defined in :PEP:`7`. These guidelines apply regardless of the version of Python you are contributing to. Following these conventions is not necessary for your own third party extension modules, unless you eventually expect to contribute them to Python." msgstr "" -#: ../../c-api/intro.rst:56 msgid "Include Files" msgstr "" -#: ../../c-api/intro.rst:58 -msgid "" -"All function, type and macro definitions needed to use the Python/C API are " -"included in your code by the following line::" +msgid "All function, type and macro definitions needed to use the Python/C API are included in your code by the following line::" msgstr "" -#: ../../c-api/intro.rst:61 msgid "" "#define PY_SSIZE_T_CLEAN\n" "#include " msgstr "" -#: ../../c-api/intro.rst:64 -msgid "" -"This implies inclusion of the following standard headers: ````, " -"````, ````, ````, ```` and " -"```` (if available)." +msgid "This implies inclusion of the following standard headers: ````, ````, ````, ````, ```` and ```` (if available)." msgstr "" -#: ../../c-api/intro.rst:70 -msgid "" -"Since Python may define some pre-processor definitions which affect the " -"standard headers on some systems, you *must* include :file:`Python.h` before " -"any standard headers are included." +msgid "Since Python may define some pre-processor definitions which affect the standard headers on some systems, you *must* include :file:`Python.h` before any standard headers are included." msgstr "" -#: ../../c-api/intro.rst:74 -msgid "" -"It is recommended to always define ``PY_SSIZE_T_CLEAN`` before including " -"``Python.h``. See :ref:`arg-parsing` for a description of this macro." +msgid "It is recommended to always define ``PY_SSIZE_T_CLEAN`` before including ``Python.h``. See :ref:`arg-parsing` for a description of this macro." msgstr "" -#: ../../c-api/intro.rst:77 -msgid "" -"All user visible names defined by Python.h (except those defined by the " -"included standard headers) have one of the prefixes ``Py`` or ``_Py``. " -"Names beginning with ``_Py`` are for internal use by the Python " -"implementation and should not be used by extension writers. Structure member " -"names do not have a reserved prefix." +msgid "All user visible names defined by Python.h (except those defined by the included standard headers) have one of the prefixes ``Py`` or ``_Py``. Names beginning with ``_Py`` are for internal use by the Python implementation and should not be used by extension writers. Structure member names do not have a reserved prefix." msgstr "" -#: ../../c-api/intro.rst:84 -msgid "" -"User code should never define names that begin with ``Py`` or ``_Py``. This " -"confuses the reader, and jeopardizes the portability of the user code to " -"future Python versions, which may define additional names beginning with one " -"of these prefixes." +msgid "User code should never define names that begin with ``Py`` or ``_Py``. This confuses the reader, and jeopardizes the portability of the user code to future Python versions, which may define additional names beginning with one of these prefixes." msgstr "" -#: ../../c-api/intro.rst:89 -msgid "" -"The header files are typically installed with Python. On Unix, these are " -"located in the directories :file:`{prefix}/include/pythonversion/` " -"and :file:`{exec_prefix}/include/pythonversion/`, where :option:`prefix <--" -"prefix>` and :option:`exec_prefix <--exec-prefix>` are defined by the " -"corresponding parameters to Python's :program:`configure` script and " -"*version* is ``'%d.%d' % sys.version_info[:2]``. On Windows, the headers " -"are installed in :file:`{prefix}/include`, where ``prefix`` is the " -"installation directory specified to the installer." +msgid "The header files are typically installed with Python. On Unix, these are located in the directories :file:`{prefix}/include/pythonversion/` and :file:`{exec_prefix}/include/pythonversion/`, where :option:`prefix <--prefix>` and :option:`exec_prefix <--exec-prefix>` are defined by the corresponding parameters to Python's :program:`configure` script and *version* is ``'%d.%d' % sys.version_info[:2]``. On Windows, the headers are installed in :file:`{prefix}/include`, where ``prefix`` is the installation directory specified to the installer." msgstr "" -#: ../../c-api/intro.rst:98 -msgid "" -"To include the headers, place both directories (if different) on your " -"compiler's search path for includes. Do *not* place the parent directories " -"on the search path and then use ``#include ``; this will " -"break on multi-platform builds since the platform independent headers " -"under :option:`prefix <--prefix>` include the platform specific headers " -"from :option:`exec_prefix <--exec-prefix>`." +msgid "To include the headers, place both directories (if different) on your compiler's search path for includes. Do *not* place the parent directories on the search path and then use ``#include ``; this will break on multi-platform builds since the platform independent headers under :option:`prefix <--prefix>` include the platform specific headers from :option:`exec_prefix <--exec-prefix>`." msgstr "" -#: ../../c-api/intro.rst:105 -msgid "" -"C++ users should note that although the API is defined entirely using C, the " -"header files properly declare the entry points to be ``extern \"C\"``. As a " -"result, there is no need to do anything special to use the API from C++." +msgid "C++ users should note that although the API is defined entirely using C, the header files properly declare the entry points to be ``extern \"C\"``. As a result, there is no need to do anything special to use the API from C++." msgstr "" -#: ../../c-api/intro.rst:111 msgid "Useful macros" msgstr "" -#: ../../c-api/intro.rst:113 -msgid "" -"Several useful macros are defined in the Python header files. Many are " -"defined closer to where they are useful (for " -"example, :c:macro:`Py_RETURN_NONE`, :c:macro:`PyMODINIT_FUNC`). Others of a " -"more general utility are defined here. This is not necessarily a complete " -"listing." +msgid "Several useful macros are defined in the Python header files. Many are defined closer to where they are useful (for example, :c:macro:`Py_RETURN_NONE`, :c:macro:`PyMODINIT_FUNC`). Others of a more general utility are defined here. This is not necessarily a complete listing." msgstr "" -#: ../../c-api/intro.rst:121 -msgid "" -"If this macro is defined, then the current system is able to start threads." +msgid "If this macro is defined, then the current system is able to start threads." msgstr "" -#: ../../c-api/intro.rst:123 -msgid "" -"Currently, all systems supported by CPython (per :pep:`11`), with the " -"exception of some WebAssembly platforms, support starting threads." +msgid "Currently, all systems supported by CPython (per :pep:`11`), with the exception of some WebAssembly platforms, support starting threads." msgstr "" -#: ../../c-api/intro.rst:130 -msgid "" -"Like :samp:`getenv({s})`, but returns ``NULL`` if :option:`-E` was passed on " -"the command line (see :c:member:`PyConfig.use_environment`)." +msgid "Like :samp:`getenv({s})`, but returns ``NULL`` if :option:`-E` was passed on the command line (see :c:member:`PyConfig.use_environment`)." msgstr "" -#: ../../c-api/intro.rst:135 msgid "Docstring macros" msgstr "" -#: ../../c-api/intro.rst:139 -msgid "" -"Creates a variable with name *name* that can be used in docstrings. If " -"Python is built without docstrings (:option:`--without-doc-strings`), the " -"value will be an empty string." +msgid "Creates a variable with name *name* that can be used in docstrings. If Python is built without docstrings (:option:`--without-doc-strings`), the value will be an empty string." msgstr "" -#: ../../c-api/intro.rst:143 ../../c-api/intro.rst:160 -#: ../../c-api/intro.rst:428 msgid "Example::" msgstr "" -#: ../../c-api/intro.rst:145 msgid "" "PyDoc_STRVAR(pop_doc, \"Remove and return the rightmost element.\");\n" "\n" @@ -225,17 +120,12 @@ msgid "" "}" msgstr "" -#: ../../c-api/intro.rst:153 msgid "Expands to :samp:`PyDoc_VAR({name}) = PyDoc_STR({str})`." msgstr "" -#: ../../c-api/intro.rst:157 -msgid "" -"Expands to the given input string, or an empty string if docstrings are " -"disabled (:option:`--without-doc-strings`)." +msgid "Expands to the given input string, or an empty string if docstrings are disabled (:option:`--without-doc-strings`)." msgstr "" -#: ../../c-api/intro.rst:162 msgid "" "static PyMethodDef pysqlite_row_methods[] = {\n" " {\"keys\", (PyCFunction)pysqlite_row_keys, METH_NOARGS,\n" @@ -244,626 +134,302 @@ msgid "" "};" msgstr "" -#: ../../c-api/intro.rst:170 -msgid "" -"Declares a static character array variable with the given *name*. Expands " -"to :samp:`static const char {name}[]`" +msgid "Declares a static character array variable with the given *name*. Expands to :samp:`static const char {name}[]`" msgstr "" -#: ../../c-api/intro.rst:173 ../../c-api/intro.rst:314 -#: ../../c-api/intro.rst:325 msgid "For example::" msgstr "" -#: ../../c-api/intro.rst:175 msgid "" "PyDoc_VAR(python_doc) = PyDoc_STR(\n" " \"A genus of constricting snakes in the Pythonidae family native \"\n" " \"to the tropics and subtropics of the Eastern Hemisphere.\");" msgstr "" -#: ../../c-api/intro.rst:181 msgid "General utility macros" msgstr "" -#: ../../c-api/intro.rst:183 msgid "The following macros are for common tasks not specific to Python." msgstr "" -#: ../../c-api/intro.rst:187 -msgid "" -"Use this for unused arguments in a function definition to silence compiler " -"warnings. Example: ``int func(int a, int Py_UNUSED(b)) { return a; }``." +msgid "Use this for unused arguments in a function definition to silence compiler warnings. Example: ``int func(int a, int Py_UNUSED(b)) { return a; }``." msgstr "" -#: ../../c-api/intro.rst:194 -msgid "" -"Use a GCC attribute *name*, hiding it from compilers that don't support GCC " -"attributes (such as MSVC)." +msgid "Use a GCC attribute *name*, hiding it from compilers that don't support GCC attributes (such as MSVC)." msgstr "" -#: ../../c-api/intro.rst:197 -msgid "" -"This expands to :samp:`__attribute__(({name)})` on a GCC compiler, and " -"expands to nothing on compilers that don't support GCC attributes." +msgid "This expands to :samp:`__attribute__(({name)})` on a GCC compiler, and expands to nothing on compilers that don't support GCC attributes." msgstr "" -#: ../../c-api/intro.rst:202 msgid "Numeric utilities" msgstr "" -#: ../../c-api/intro.rst:206 msgid "Return the absolute value of ``x``." msgstr "" -#: ../../c-api/intro.rst:208 -msgid "" -"The argument may be evaluated more than once. Consequently, do not pass an " -"expression with side-effects directly to this macro." +msgid "The argument may be evaluated more than once. Consequently, do not pass an expression with side-effects directly to this macro." msgstr "" -#: ../../c-api/intro.rst:212 -msgid "" -"If the result cannot be represented (for example, if ``x`` has :c:macro:`!" -"INT_MIN` value for :c:expr:`int` type), the behavior is undefined." +msgid "If the result cannot be represented (for example, if ``x`` has :c:macro:`!INT_MIN` value for :c:expr:`int` type), the behavior is undefined." msgstr "" -#: ../../c-api/intro.rst:216 msgid "Corresponds roughly to :samp:`(({x}) < 0 ? -({x}) : ({x}))`" msgstr "" -#: ../../c-api/intro.rst:223 msgid "Return the larger or smaller of the arguments, respectively." msgstr "" -#: ../../c-api/intro.rst:225 -msgid "" -"Any arguments may be evaluated more than once. Consequently, do not pass an " -"expression with side-effects directly to this macro." +msgid "Any arguments may be evaluated more than once. Consequently, do not pass an expression with side-effects directly to this macro." msgstr "" -#: ../../c-api/intro.rst:229 -msgid "" -":c:macro:`!Py_MAX` corresponds roughly to :samp:`((({x}) > ({y})) ? ({x}) : " -"({y}))`." +msgid ":c:macro:`!Py_MAX` corresponds roughly to :samp:`((({x}) > ({y})) ? ({x}) : ({y}))`." msgstr "" -#: ../../c-api/intro.rst:236 -msgid "" -"Similar to :samp:`{integer} >> {positions}`, but forces sign extension, as " -"the C standard does not define whether a right-shift of a signed integer " -"will perform sign extension or a zero-fill." +msgid "Similar to :samp:`{integer} >> {positions}`, but forces sign extension, as the C standard does not define whether a right-shift of a signed integer will perform sign extension or a zero-fill." msgstr "" -#: ../../c-api/intro.rst:240 -msgid "" -"*integer* should be any signed integer type. *positions* is the number of " -"positions to shift to the right." +msgid "*integer* should be any signed integer type. *positions* is the number of positions to shift to the right." msgstr "" -#: ../../c-api/intro.rst:243 -msgid "" -"Both *integer* and *positions* can be evaluated more than once; " -"consequently, avoid directly passing a function call or some other operation " -"with side-effects to this macro. Instead, store the result as a variable and " -"then pass it." +msgid "Both *integer* and *positions* can be evaluated more than once; consequently, avoid directly passing a function call or some other operation with side-effects to this macro. Instead, store the result as a variable and then pass it." msgstr "" -#: ../../c-api/intro.rst:248 -msgid "" -"*type* is unused and only kept for backwards compatibility. Historically, " -"*type* was used to cast *integer*." +msgid "*type* is unused and only kept for backwards compatibility. Historically, *type* was used to cast *integer*." msgstr "" -#: ../../c-api/intro.rst:253 -msgid "" -"This macro is now valid for all signed integer types, not just those for " -"which ``unsigned type`` is legal. As a result, *type* is no longer used." +msgid "This macro is now valid for all signed integer types, not just those for which ``unsigned type`` is legal. As a result, *type* is no longer used." msgstr "" -#: ../../c-api/intro.rst:259 -msgid "" -"Argument must be a character or an integer in the range [-128, 127] or [0, " -"255]. This macro returns ``c`` cast to an ``unsigned char``." +msgid "Argument must be a character or an integer in the range [-128, 127] or [0, 255]. This macro returns ``c`` cast to an ``unsigned char``." msgstr "" -#: ../../c-api/intro.rst:264 msgid "Assertion utilities" msgstr "" -#: ../../c-api/intro.rst:268 -msgid "" -"Use this when you have a code path that cannot be reached by design. For " -"example, in the ``default:`` clause in a ``switch`` statement for which all " -"possible values are covered in ``case`` statements. Use this in places " -"where you might be tempted to put an ``assert(0)`` or ``abort()`` call." +msgid "Use this when you have a code path that cannot be reached by design. For example, in the ``default:`` clause in a ``switch`` statement for which all possible values are covered in ``case`` statements. Use this in places where you might be tempted to put an ``assert(0)`` or ``abort()`` call." msgstr "" -#: ../../c-api/intro.rst:273 -msgid "" -"In release mode, the macro helps the compiler to optimize the code, and " -"avoids a warning about unreachable code. For example, the macro is " -"implemented with ``__builtin_unreachable()`` on GCC in release mode." +msgid "In release mode, the macro helps the compiler to optimize the code, and avoids a warning about unreachable code. For example, the macro is implemented with ``__builtin_unreachable()`` on GCC in release mode." msgstr "" -#: ../../c-api/intro.rst:277 -msgid "" -"In debug mode, and on unsupported compilers, the macro expands to a call " -"to :c:func:`Py_FatalError`." +msgid "In debug mode, and on unsupported compilers, the macro expands to a call to :c:func:`Py_FatalError`." msgstr "" -#: ../../c-api/intro.rst:280 -msgid "" -"A use for ``Py_UNREACHABLE()`` is following a call to a function that never " -"returns but that is not declared ``_Noreturn``." +msgid "A use for ``Py_UNREACHABLE()`` is following a call to a function that never returns but that is not declared ``_Noreturn``." msgstr "" -#: ../../c-api/intro.rst:283 -msgid "" -"If a code path is very unlikely code but can be reached under exceptional " -"case, this macro must not be used. For example, under low memory condition " -"or if a system call returns a value out of the expected range. In this " -"case, it's better to report the error to the caller. If the error cannot be " -"reported to caller, :c:func:`Py_FatalError` can be used." +msgid "If a code path is very unlikely code but can be reached under exceptional case, this macro must not be used. For example, under low memory condition or if a system call returns a value out of the expected range. In this case, it's better to report the error to the caller. If the error cannot be reported to caller, :c:func:`Py_FatalError` can be used." msgstr "" -#: ../../c-api/intro.rst:293 -msgid "" -"Cast *value* to type *smaller* from type *larger*, validating that no " -"information was lost." +msgid "Cast *value* to type *smaller* from type *larger*, validating that no information was lost." msgstr "" -#: ../../c-api/intro.rst:296 -msgid "" -"On release builds of Python, this is roughly equivalent " -"to :samp:`(({smaller}) {value})` (in C++, :samp:`static_cast<{smaller}" -">({value})` will be used instead)." +msgid "On release builds of Python, this is roughly equivalent to :samp:`(({smaller}) {value})` (in C++, :samp:`static_cast<{smaller}>({value})` will be used instead)." msgstr "" -#: ../../c-api/intro.rst:300 -msgid "" -"On debug builds (implying that :c:macro:`Py_DEBUG` is defined), this asserts " -"that no information was lost with the cast from *larger* to *smaller*." +msgid "On debug builds (implying that :c:macro:`Py_DEBUG` is defined), this asserts that no information was lost with the cast from *larger* to *smaller*." msgstr "" -#: ../../c-api/intro.rst:303 -msgid "" -"*value*, *larger*, and *smaller* may all be evaluated more than once in the " -"expression; consequently, do not pass an expression with side-effects " -"directly to this macro." +msgid "*value*, *larger*, and *smaller* may all be evaluated more than once in the expression; consequently, do not pass an expression with side-effects directly to this macro." msgstr "" -#: ../../c-api/intro.rst:309 -msgid "" -"Asserts a compile-time condition *cond*, as a statement. The build will fail " -"if the condition is false or cannot be evaluated at compile time." +msgid "Asserts a compile-time condition *cond*, as a statement. The build will fail if the condition is false or cannot be evaluated at compile time." msgstr "" -#: ../../c-api/intro.rst:312 msgid "Corresponds roughly to :samp:`static_assert({cond})` on C23 and above." msgstr "" -#: ../../c-api/intro.rst:316 msgid "Py_BUILD_ASSERT(sizeof(PyTime_t) == sizeof(int64_t));" msgstr "" -#: ../../c-api/intro.rst:322 -msgid "" -"Asserts a compile-time condition *cond*, as an expression that evaluates to " -"``0``. The build will fail if the condition is false or cannot be evaluated " -"at compile time." +msgid "Asserts a compile-time condition *cond*, as an expression that evaluates to ``0``. The build will fail if the condition is false or cannot be evaluated at compile time." msgstr "" -#: ../../c-api/intro.rst:327 msgid "" "#define foo_to_char(foo) \\\n" " ((char *)(foo) + Py_BUILD_ASSERT_EXPR(offsetof(struct foo, string) == 0))" msgstr "" -#: ../../c-api/intro.rst:334 msgid "Type size utilities" msgstr "" -#: ../../c-api/intro.rst:338 msgid "Compute the length of a statically allocated C array at compile time." msgstr "" -#: ../../c-api/intro.rst:340 -msgid "" -"The *array* argument must be a C array with a size known at compile time. " -"Passing an array with an unknown size, such as a heap-allocated array, will " -"result in a compilation error on some compilers, or otherwise produce " -"incorrect results." +msgid "The *array* argument must be a C array with a size known at compile time. Passing an array with an unknown size, such as a heap-allocated array, will result in a compilation error on some compilers, or otherwise produce incorrect results." msgstr "" -#: ../../c-api/intro.rst:345 msgid "This is roughly equivalent to::" msgstr "" -#: ../../c-api/intro.rst:347 msgid "sizeof(array) / sizeof((array)[0])" msgstr "" -#: ../../c-api/intro.rst:351 msgid "Return the size of a structure (*type*) *member* in bytes." msgstr "" -#: ../../c-api/intro.rst:353 msgid "Corresponds roughly to :samp:`sizeof((({type} *)NULL)->{member})`." msgstr "" -#: ../../c-api/intro.rst:359 msgid "Macro definition utilities" msgstr "" -#: ../../c-api/intro.rst:363 -msgid "" -"This is equivalent to :samp:`{X}`, which is useful for token-pasting in " -"macros, as macro expansions in *X* are forcefully evaluated by the " -"preprocessor." +msgid "This is equivalent to :samp:`{X}`, which is useful for token-pasting in macros, as macro expansions in *X* are forcefully evaluated by the preprocessor." msgstr "" -#: ../../c-api/intro.rst:369 -msgid "" -"Convert ``x`` to a C string. For example, ``Py_STRINGIFY(123)`` returns " -"``\"123\"``." +msgid "Convert ``x`` to a C string. For example, ``Py_STRINGIFY(123)`` returns ``\"123\"``." msgstr "" -#: ../../c-api/intro.rst:376 msgid "Declaration utilities" msgstr "" -#: ../../c-api/intro.rst:378 -msgid "" -"The following macros can be used in declarations. They are most useful for " -"defining the C API itself, and have limited use for extension authors. Most " -"of them expand to compiler-specific spellings of common extensions to the C " -"language." +msgid "The following macros can be used in declarations. They are most useful for defining the C API itself, and have limited use for extension authors. Most of them expand to compiler-specific spellings of common extensions to the C language." msgstr "" -#: ../../c-api/intro.rst:386 -msgid "" -"Ask the compiler to always inline a static inline function. The compiler can " -"ignore it and decide to not inline the function." +msgid "Ask the compiler to always inline a static inline function. The compiler can ignore it and decide to not inline the function." msgstr "" -#: ../../c-api/intro.rst:389 -msgid "" -"Corresponds to ``always_inline`` attribute in GCC and ``__forceinline`` in " -"MSVC." +msgid "Corresponds to ``always_inline`` attribute in GCC and ``__forceinline`` in MSVC." msgstr "" -#: ../../c-api/intro.rst:392 -msgid "" -"It can be used to inline performance critical static inline functions when " -"building Python in debug mode with function inlining disabled. For example, " -"MSC disables function inlining when building in debug mode." +msgid "It can be used to inline performance critical static inline functions when building Python in debug mode with function inlining disabled. For example, MSC disables function inlining when building in debug mode." msgstr "" -#: ../../c-api/intro.rst:396 -msgid "" -"Marking blindly a static inline function with Py_ALWAYS_INLINE can result in " -"worse performances (due to increased code size for example). The compiler is " -"usually smarter than the developer for the cost/benefit analysis." +msgid "Marking blindly a static inline function with Py_ALWAYS_INLINE can result in worse performances (due to increased code size for example). The compiler is usually smarter than the developer for the cost/benefit analysis." msgstr "" -#: ../../c-api/intro.rst:400 -msgid "" -"If Python is :ref:`built in debug mode ` (if " -"the :c:macro:`Py_DEBUG` macro is defined), the :c:macro:`Py_ALWAYS_INLINE` " -"macro does nothing." +msgid "If Python is :ref:`built in debug mode ` (if the :c:macro:`Py_DEBUG` macro is defined), the :c:macro:`Py_ALWAYS_INLINE` macro does nothing." msgstr "" -#: ../../c-api/intro.rst:403 msgid "It must be specified before the function return type. Usage::" msgstr "" -#: ../../c-api/intro.rst:405 msgid "static inline Py_ALWAYS_INLINE int random(void) { return 4; }" msgstr "" -#: ../../c-api/intro.rst:411 -msgid "" -"Disable inlining on a function. For example, it reduces the C stack " -"consumption: useful on LTO+PGO builds which heavily inline code " -"(see :issue:`33720`)." +msgid "Disable inlining on a function. For example, it reduces the C stack consumption: useful on LTO+PGO builds which heavily inline code (see :issue:`33720`)." msgstr "" -#: ../../c-api/intro.rst:415 -msgid "" -"Corresponds to the ``noinline`` attribute/specification on GCC and MSVC." +msgid "Corresponds to the ``noinline`` attribute/specification on GCC and MSVC." msgstr "" -#: ../../c-api/intro.rst:417 msgid "Usage::" msgstr "" -#: ../../c-api/intro.rst:419 msgid "Py_NO_INLINE static int random(void) { return 4; }" msgstr "" -#: ../../c-api/intro.rst:425 -msgid "" -"Use this to declare APIs that were deprecated in a specific CPython version. " -"The macro must be placed before the symbol name." +msgid "Use this to declare APIs that were deprecated in a specific CPython version. The macro must be placed before the symbol name." msgstr "" -#: ../../c-api/intro.rst:430 msgid "Py_DEPRECATED(3.8) PyAPI_FUNC(int) Py_OldFunction(void);" msgstr "" -#: ../../c-api/intro.rst:432 msgid "MSVC support was added." msgstr "" -#: ../../c-api/intro.rst:437 -msgid "" -"Declare a function returning the specified *type* using a fast-calling " -"qualifier for functions that are local to the current file. Semantically, " -"this is equivalent to :samp:`static {type}`." +msgid "Declare a function returning the specified *type* using a fast-calling qualifier for functions that are local to the current file. Semantically, this is equivalent to :samp:`static {type}`." msgstr "" -#: ../../c-api/intro.rst:443 -msgid "" -"Equivalent to :c:macro:`Py_LOCAL` but additionally requests the function be " -"inlined." +msgid "Equivalent to :c:macro:`Py_LOCAL` but additionally requests the function be inlined." msgstr "" -#: ../../c-api/intro.rst:448 -msgid "" -"Macro used to declare a symbol as local to the shared library (hidden). On " -"supported platforms, it ensures the symbol is not exported." +msgid "Macro used to declare a symbol as local to the shared library (hidden). On supported platforms, it ensures the symbol is not exported." msgstr "" -#: ../../c-api/intro.rst:451 -msgid "" -"On compatible versions of GCC/Clang, it expands to " -"``__attribute__((visibility(\"hidden\")))``." +msgid "On compatible versions of GCC/Clang, it expands to ``__attribute__((visibility(\"hidden\")))``." msgstr "" -#: ../../c-api/intro.rst:456 -msgid "" -"Macro used to declare a symbol (function or data) as exported. On Windows, " -"this expands to ``__declspec(dllexport)``. On compatible versions of GCC/" -"Clang, it expands to ``__attribute__((visibility(\"default\")))``. This " -"macro is for defining the C API itself; extension modules should not use it." +msgid "Macro used to declare a symbol (function or data) as exported. On Windows, this expands to ``__declspec(dllexport)``. On compatible versions of GCC/Clang, it expands to ``__attribute__((visibility(\"default\")))``. This macro is for defining the C API itself; extension modules should not use it." msgstr "" -#: ../../c-api/intro.rst:465 -msgid "" -"Macro used to declare a symbol as imported. On Windows, this expands to " -"``__declspec(dllimport)``. This macro is for defining the C API itself; " -"extension modules should not use it." +msgid "Macro used to declare a symbol as imported. On Windows, this expands to ``__declspec(dllimport)``. This macro is for defining the C API itself; extension modules should not use it." msgstr "" -#: ../../c-api/intro.rst:472 -msgid "" -"Macro used by CPython to declare a function as part of the C API. Its " -"expansion depends on the platform and build configuration. This macro is " -"intended for defining CPython's C API itself; extension modules should not " -"use it for their own symbols." +msgid "Macro used by CPython to declare a function as part of the C API. Its expansion depends on the platform and build configuration. This macro is intended for defining CPython's C API itself; extension modules should not use it for their own symbols." msgstr "" -#: ../../c-api/intro.rst:480 -msgid "" -"Macro used by CPython to declare a public global variable as part of the C " -"API. Its expansion depends on the platform and build configuration. This " -"macro is intended for defining CPython's C API itself; extension modules " -"should not use it for their own symbols." +msgid "Macro used by CPython to declare a public global variable as part of the C API. Its expansion depends on the platform and build configuration. This macro is intended for defining CPython's C API itself; extension modules should not use it for their own symbols." msgstr "" -#: ../../c-api/intro.rst:487 msgid "Outdated macros" msgstr "" -#: ../../c-api/intro.rst:489 -msgid "" -"The following macros have been used to features that have been standardized " -"in C11." +msgid "The following macros have been used to features that have been standardized in C11." msgstr "" -#: ../../c-api/intro.rst:494 msgid "Specify alignment to *num* bytes on compilers that support it." msgstr "" -#: ../../c-api/intro.rst:496 msgid "Consider using the C11 standard ``_Alignas`` specifier over this macro." msgstr "" -#: ../../c-api/intro.rst:501 -msgid "" -"Use *number* as a ``long long`` or ``unsigned long long`` integer literal, " -"respectively." +msgid "Use *number* as a ``long long`` or ``unsigned long long`` integer literal, respectively." msgstr "" -#: ../../c-api/intro.rst:504 -msgid "" -"Expands to *number* followed by ``LL`` or ``LLU``, respectively, but will " -"expand to some compiler-specific suffixes on some older compilers." +msgid "Expands to *number* followed by ``LL`` or ``LLU``, respectively, but will expand to some compiler-specific suffixes on some older compilers." msgstr "" -#: ../../c-api/intro.rst:507 msgid "Consider using the C99 standard suffixes ``LL`` and ``LLU`` directly." msgstr "" -#: ../../c-api/intro.rst:511 msgid "This is an alias to :c:func:`!memcpy`." msgstr "" -#: ../../c-api/intro.rst:513 msgid "Use :c:func:`!memcpy` directly instead." msgstr "" -#: ../../c-api/intro.rst:518 msgid "This is an alias to the C99-standard ``va_copy`` function." msgstr "" -#: ../../c-api/intro.rst:520 -msgid "" -"Historically, this would use a compiler-specific method to copy a " -"``va_list``." +msgid "Historically, this would use a compiler-specific method to copy a ``va_list``." msgstr "" -#: ../../c-api/intro.rst:522 msgid "This is now an alias to ``va_copy``." msgstr "" -#: ../../c-api/intro.rst:531 msgid "Objects, Types and Reference Counts" msgstr "" -#: ../../c-api/intro.rst:535 -msgid "" -"Most Python/C API functions have one or more arguments as well as a return " -"value of type :c:expr:`PyObject*`. This type is a pointer to an opaque data " -"type representing an arbitrary Python object. Since all Python object types " -"are treated the same way by the Python language in most situations (e.g., " -"assignments, scope rules, and argument passing), it is only fitting that " -"they should be represented by a single C type. Almost all Python objects " -"live on the heap: you never declare an automatic or static variable of " -"type :c:type:`PyObject`, only pointer variables of type :c:expr:`PyObject*` " -"can be declared. The sole exception are the type objects; since these must " -"never be deallocated, they are typically static :c:type:`PyTypeObject` " -"objects." -msgstr "" - -#: ../../c-api/intro.rst:546 -msgid "" -"All Python objects (even Python integers) have a :dfn:`type` and " -"a :dfn:`reference count`. An object's type determines what kind of object " -"it is (e.g., an integer, a list, or a user-defined function; there are many " -"more as explained in :ref:`types`). For each of the well-known types there " -"is a macro to check whether an object is of that type; for instance, " -"``PyList_Check(a)`` is true if (and only if) the object pointed to by *a* is " -"a Python list." +msgid "Most Python/C API functions have one or more arguments as well as a return value of type :c:expr:`PyObject*`. This type is a pointer to an opaque data type representing an arbitrary Python object. Since all Python object types are treated the same way by the Python language in most situations (e.g., assignments, scope rules, and argument passing), it is only fitting that they should be represented by a single C type. Almost all Python objects live on the heap: you never declare an automatic or static variable of type :c:type:`PyObject`, only pointer variables of type :c:expr:`PyObject*` can be declared. The sole exception are the type objects; since these must never be deallocated, they are typically static :c:type:`PyTypeObject` objects." +msgstr "" + +msgid "All Python objects (even Python integers) have a :dfn:`type` and a :dfn:`reference count`. An object's type determines what kind of object it is (e.g., an integer, a list, or a user-defined function; there are many more as explained in :ref:`types`). For each of the well-known types there is a macro to check whether an object is of that type; for instance, ``PyList_Check(a)`` is true if (and only if) the object pointed to by *a* is a Python list." msgstr "" -#: ../../c-api/intro.rst:557 msgid "Reference Counts" msgstr "" -#: ../../c-api/intro.rst:559 -msgid "" -"The reference count is important because today's computers have a finite " -"(and often severely limited) memory size; it counts how many different " -"places there are that have a :term:`strong reference` to an object. Such a " -"place could be another object, or a global (or static) C variable, or a " -"local variable in some C function. When the last :term:`strong reference` to " -"an object is released (i.e. its reference count becomes zero), the object is " -"deallocated. If it contains references to other objects, those references " -"are released. Those other objects may be deallocated in turn, if there are " -"no more references to them, and so on. (There's an obvious problem with " -"objects that reference each other here; for now, the solution is \"don't do " -"that.\")" -msgstr "" - -#: ../../c-api/intro.rst:576 -msgid "" -"Reference counts are always manipulated explicitly. The normal way is to " -"use the macro :c:func:`Py_INCREF` to take a new reference to an object (i.e. " -"increment its reference count by one), and :c:func:`Py_DECREF` to release " -"that reference (i.e. decrement the reference count by one). " -"The :c:func:`Py_DECREF` macro is considerably more complex than the incref " -"one, since it must check whether the reference count becomes zero and then " -"cause the object's deallocator to be called. The deallocator is a function " -"pointer contained in the object's type structure. The type-specific " -"deallocator takes care of releasing references for other objects contained " -"in the object if this is a compound object type, such as a list, as well as " -"performing any additional finalization that's needed. There's no chance " -"that the reference count can overflow; at least as many bits are used to " -"hold the reference count as there are distinct memory locations in virtual " -"memory (assuming ``sizeof(Py_ssize_t) >= sizeof(void*)``). Thus, the " -"reference count increment is a simple operation." -msgstr "" - -#: ../../c-api/intro.rst:592 -msgid "" -"It is not necessary to hold a :term:`strong reference` (i.e. increment the " -"reference count) for every local variable that contains a pointer to an " -"object. In theory, the object's reference count goes up by one when the " -"variable is made to point to it and it goes down by one when the variable " -"goes out of scope. However, these two cancel each other out, so at the end " -"the reference count hasn't changed. The only real reason to use the " -"reference count is to prevent the object from being deallocated as long as " -"our variable is pointing to it. If we know that there is at least one " -"other reference to the object that lives at least as long as our variable, " -"there is no need to take a new :term:`strong reference` (i.e. increment the " -"reference count) temporarily. An important situation where this arises is in " -"objects that are passed as arguments to C functions in an extension module " -"that are called from Python; the call mechanism guarantees to hold a " -"reference to every argument for the duration of the call." -msgstr "" - -#: ../../c-api/intro.rst:608 -msgid "" -"However, a common pitfall is to extract an object from a list and hold on to " -"it for a while without taking a new reference. Some other operation might " -"conceivably remove the object from the list, releasing that reference, and " -"possibly deallocating it. The real danger is that innocent-looking " -"operations may invoke arbitrary Python code which could do this; there is a " -"code path which allows control to flow back to the user from " -"a :c:func:`Py_DECREF`, so almost any operation is potentially dangerous." +msgid "The reference count is important because today's computers have a finite (and often severely limited) memory size; it counts how many different places there are that have a :term:`strong reference` to an object. Such a place could be another object, or a global (or static) C variable, or a local variable in some C function. When the last :term:`strong reference` to an object is released (i.e. its reference count becomes zero), the object is deallocated. If it contains references to other objects, those references are released. Those other objects may be deallocated in turn, if there are no more references to them, and so on. (There's an obvious problem with objects that reference each other here; for now, the solution is \"don't do that.\")" msgstr "" -#: ../../c-api/intro.rst:616 -msgid "" -"A safe approach is to always use the generic operations (functions whose " -"name begins with ``PyObject_``, ``PyNumber_``, ``PySequence_`` or " -"``PyMapping_``). These operations always create a new :term:`strong " -"reference` (i.e. increment the reference count) of the object they return. " -"This leaves the caller with the responsibility to call :c:func:`Py_DECREF` " -"when they are done with the result; this soon becomes second nature." +msgid "Reference counts are always manipulated explicitly. The normal way is to use the macro :c:func:`Py_INCREF` to take a new reference to an object (i.e. increment its reference count by one), and :c:func:`Py_DECREF` to release that reference (i.e. decrement the reference count by one). The :c:func:`Py_DECREF` macro is considerably more complex than the incref one, since it must check whether the reference count becomes zero and then cause the object's deallocator to be called. The deallocator is a function pointer contained in the object's type structure. The type-specific deallocator takes care of releasing references for other objects contained in the object if this is a compound object type, such as a list, as well as performing any additional finalization that's needed. There's no chance that the reference count can overflow; at least as many bits are used to hold the reference count as there are distinct memory locations in virtual memory (assuming ``sizeof(Py_ssize_t) >= sizeof(void*)``). Thus, the reference count increment is a simple operation." +msgstr "" + +msgid "It is not necessary to hold a :term:`strong reference` (i.e. increment the reference count) for every local variable that contains a pointer to an object. In theory, the object's reference count goes up by one when the variable is made to point to it and it goes down by one when the variable goes out of scope. However, these two cancel each other out, so at the end the reference count hasn't changed. The only real reason to use the reference count is to prevent the object from being deallocated as long as our variable is pointing to it. If we know that there is at least one other reference to the object that lives at least as long as our variable, there is no need to take a new :term:`strong reference` (i.e. increment the reference count) temporarily. An important situation where this arises is in objects that are passed as arguments to C functions in an extension module that are called from Python; the call mechanism guarantees to hold a reference to every argument for the duration of the call." +msgstr "" + +msgid "However, a common pitfall is to extract an object from a list and hold on to it for a while without taking a new reference. Some other operation might conceivably remove the object from the list, releasing that reference, and possibly deallocating it. The real danger is that innocent-looking operations may invoke arbitrary Python code which could do this; there is a code path which allows control to flow back to the user from a :c:func:`Py_DECREF`, so almost any operation is potentially dangerous." +msgstr "" + +msgid "A safe approach is to always use the generic operations (functions whose name begins with ``PyObject_``, ``PyNumber_``, ``PySequence_`` or ``PyMapping_``). These operations always create a new :term:`strong reference` (i.e. increment the reference count) of the object they return. This leaves the caller with the responsibility to call :c:func:`Py_DECREF` when they are done with the result; this soon becomes second nature." msgstr "" -#: ../../c-api/intro.rst:627 msgid "Reference Count Details" msgstr "" -#: ../../c-api/intro.rst:629 -msgid "" -"The reference count behavior of functions in the Python/C API is best " -"explained in terms of *ownership of references*. Ownership pertains to " -"references, never to objects (objects are not owned: they are always " -"shared). \"Owning a reference\" means being responsible for calling " -"Py_DECREF on it when the reference is no longer needed. Ownership can also " -"be transferred, meaning that the code that receives ownership of the " -"reference then becomes responsible for eventually releasing it by " -"calling :c:func:`Py_DECREF` or :c:func:`Py_XDECREF` when it's no longer " -"needed---or passing on this responsibility (usually to its caller). When a " -"function passes ownership of a reference on to its caller, the caller is " -"said to receive a *new* reference. When no ownership is transferred, the " -"caller is said to *borrow* the reference. Nothing needs to be done for " -"a :term:`borrowed reference`." -msgstr "" - -#: ../../c-api/intro.rst:642 -msgid "" -"Conversely, when a calling function passes in a reference to an object, " -"there are two possibilities: the function *steals* a reference to the " -"object, or it does not." +msgid "The reference count behavior of functions in the Python/C API is best explained in terms of *ownership of references*. Ownership pertains to references, never to objects (objects are not owned: they are always shared). \"Owning a reference\" means being responsible for calling Py_DECREF on it when the reference is no longer needed. Ownership can also be transferred, meaning that the code that receives ownership of the reference then becomes responsible for eventually releasing it by calling :c:func:`Py_DECREF` or :c:func:`Py_XDECREF` when it's no longer needed---or passing on this responsibility (usually to its caller). When a function passes ownership of a reference on to its caller, the caller is said to receive a *new* reference. When no ownership is transferred, the caller is said to *borrow* the reference. Nothing needs to be done for a :term:`borrowed reference`." msgstr "" -#: ../../c-api/intro.rst:646 -msgid "" -"*Stealing a reference* means that when you pass a reference to a function, " -"that function assumes that it now owns that reference. Since the new owner " -"can use :c:func:`!Py_DECREF` at its discretion, you (the caller) must not " -"use that reference after the call." +msgid "Conversely, when a calling function passes in a reference to an object, there are two possibilities: the function *steals* a reference to the object, or it does not." msgstr "" -#: ../../c-api/intro.rst:655 -msgid "" -"Few functions steal references; the two notable exceptions " -"are :c:func:`PyList_SetItem` and :c:func:`PyTuple_SetItem`, which steal a " -"reference to the item (but not to the tuple or list into which the item is " -"put!). These functions were designed to steal a reference because of a " -"common idiom for populating a tuple or list with newly created objects; for " -"example, the code to create the tuple ``(1, 2, \"three\")`` could look like " -"this (forgetting about error handling for the moment; a better way to code " -"this is shown below)::" +msgid "*Stealing a reference* means that when you pass a reference to a function, that function assumes that it now owns that reference. Since the new owner can use :c:func:`!Py_DECREF` at its discretion, you (the caller) must not use that reference after the call." +msgstr "" + +msgid "Few functions steal references; the two notable exceptions are :c:func:`PyList_SetItem` and :c:func:`PyTuple_SetItem`, which steal a reference to the item (but not to the tuple or list into which the item is put!). These functions were designed to steal a reference because of a common idiom for populating a tuple or list with newly created objects; for example, the code to create the tuple ``(1, 2, \"three\")`` could look like this (forgetting about error handling for the moment; a better way to code this is shown below)::" msgstr "" -#: ../../c-api/intro.rst:663 msgid "" "PyObject *t;\n" "\n" @@ -873,39 +439,18 @@ msgid "" "PyTuple_SetItem(t, 2, PyUnicode_FromString(\"three\"));" msgstr "" -#: ../../c-api/intro.rst:670 -msgid "" -"Here, :c:func:`PyLong_FromLong` returns a new reference which is immediately " -"stolen by :c:func:`PyTuple_SetItem`. When you want to keep using an object " -"although the reference to it will be stolen, use :c:func:`Py_INCREF` to grab " -"another reference before calling the reference-stealing function." +msgid "Here, :c:func:`PyLong_FromLong` returns a new reference which is immediately stolen by :c:func:`PyTuple_SetItem`. When you want to keep using an object although the reference to it will be stolen, use :c:func:`Py_INCREF` to grab another reference before calling the reference-stealing function." msgstr "" -#: ../../c-api/intro.rst:675 -msgid "" -"Incidentally, :c:func:`PyTuple_SetItem` is the *only* way to set tuple " -"items; :c:func:`PySequence_SetItem` and :c:func:`PyObject_SetItem` refuse to " -"do this since tuples are an immutable data type. You should only " -"use :c:func:`PyTuple_SetItem` for tuples that you are creating yourself." +msgid "Incidentally, :c:func:`PyTuple_SetItem` is the *only* way to set tuple items; :c:func:`PySequence_SetItem` and :c:func:`PyObject_SetItem` refuse to do this since tuples are an immutable data type. You should only use :c:func:`PyTuple_SetItem` for tuples that you are creating yourself." msgstr "" -#: ../../c-api/intro.rst:680 -msgid "" -"Equivalent code for populating a list can be written " -"using :c:func:`PyList_New` and :c:func:`PyList_SetItem`." +msgid "Equivalent code for populating a list can be written using :c:func:`PyList_New` and :c:func:`PyList_SetItem`." msgstr "" -#: ../../c-api/intro.rst:683 -msgid "" -"However, in practice, you will rarely use these ways of creating and " -"populating a tuple or list. There's a generic " -"function, :c:func:`Py_BuildValue`, that can create most common objects from " -"C values, directed by a :dfn:`format string`. For example, the above two " -"blocks of code could be replaced by the following (which also takes care of " -"the error checking)::" +msgid "However, in practice, you will rarely use these ways of creating and populating a tuple or list. There's a generic function, :c:func:`Py_BuildValue`, that can create most common objects from C values, directed by a :dfn:`format string`. For example, the above two blocks of code could be replaced by the following (which also takes care of the error checking)::" msgstr "" -#: ../../c-api/intro.rst:689 msgid "" "PyObject *tuple, *list;\n" "\n" @@ -913,18 +458,9 @@ msgid "" "list = Py_BuildValue(\"[iis]\", 1, 2, \"three\");" msgstr "" -#: ../../c-api/intro.rst:694 -msgid "" -"It is much more common to use :c:func:`PyObject_SetItem` and friends with " -"items whose references you are only borrowing, like arguments that were " -"passed in to the function you are writing. In that case, their behaviour " -"regarding references is much saner, since you don't have to take a new " -"reference just so you can give that reference away (\"have it be stolen\"). " -"For example, this function sets all items of a list (actually, any mutable " -"sequence) to a given item::" +msgid "It is much more common to use :c:func:`PyObject_SetItem` and friends with items whose references you are only borrowing, like arguments that were passed in to the function you are writing. In that case, their behaviour regarding references is much saner, since you don't have to take a new reference just so you can give that reference away (\"have it be stolen\"). For example, this function sets all items of a list (actually, any mutable sequence) to a given item::" msgstr "" -#: ../../c-api/intro.rst:701 msgid "" "int\n" "set_all(PyObject *target, PyObject *item)\n" @@ -948,38 +484,15 @@ msgid "" "}" msgstr "" -#: ../../c-api/intro.rst:724 -msgid "" -"The situation is slightly different for function return values. While " -"passing a reference to most functions does not change your ownership " -"responsibilities for that reference, many functions that return a reference " -"to an object give you ownership of the reference. The reason is simple: in " -"many cases, the returned object is created on the fly, and the reference " -"you get is the only reference to the object. Therefore, the generic " -"functions that return object references, like :c:func:`PyObject_GetItem` " -"and :c:func:`PySequence_GetItem`, always return a new reference (the caller " -"becomes the owner of the reference)." -msgstr "" - -#: ../../c-api/intro.rst:733 -msgid "" -"It is important to realize that whether you own a reference returned by a " -"function depends on which function you call only --- *the plumage* (the type " -"of the object passed as an argument to the function) *doesn't enter into it!" -"* Thus, if you extract an item from a list using :c:func:`PyList_GetItem`, " -"you don't own the reference --- but if you obtain the same item from the " -"same list using :c:func:`PySequence_GetItem` (which happens to take exactly " -"the same arguments), you do own a reference to the returned object." +msgid "The situation is slightly different for function return values. While passing a reference to most functions does not change your ownership responsibilities for that reference, many functions that return a reference to an object give you ownership of the reference. The reason is simple: in many cases, the returned object is created on the fly, and the reference you get is the only reference to the object. Therefore, the generic functions that return object references, like :c:func:`PyObject_GetItem` and :c:func:`PySequence_GetItem`, always return a new reference (the caller becomes the owner of the reference)." msgstr "" -#: ../../c-api/intro.rst:745 -msgid "" -"Here is an example of how you could write a function that computes the sum " -"of the items in a list of integers; once using :c:func:`PyList_GetItem`, " -"and once using :c:func:`PySequence_GetItem`. ::" +msgid "It is important to realize that whether you own a reference returned by a function depends on which function you call only --- *the plumage* (the type of the object passed as an argument to the function) *doesn't enter into it!* Thus, if you extract an item from a list using :c:func:`PyList_GetItem`, you don't own the reference --- but if you obtain the same item from the same list using :c:func:`PySequence_GetItem` (which happens to take exactly the same arguments), you do own a reference to the returned object." +msgstr "" + +msgid "Here is an example of how you could write a function that computes the sum of the items in a list of integers; once using :c:func:`PyList_GetItem`, and once using :c:func:`PySequence_GetItem`. ::" msgstr "" -#: ../../c-api/intro.rst:749 msgid "" "long\n" "sum_list(PyObject *list)\n" @@ -1004,7 +517,6 @@ msgid "" "}" msgstr "" -#: ../../c-api/intro.rst:775 msgid "" "long\n" "sum_sequence(PyObject *sequence)\n" @@ -1035,118 +547,39 @@ msgid "" "}" msgstr "" -#: ../../c-api/intro.rst:809 msgid "Types" msgstr "" -#: ../../c-api/intro.rst:811 -msgid "" -"There are few other data types that play a significant role in the Python/C " -"API; most are simple C types such " -"as :c:expr:`int`, :c:expr:`long`, :c:expr:`double` and :c:expr:`char*`. A " -"few structure types are used to describe static tables used to list the " -"functions exported by a module or the data attributes of a new object type, " -"and another is used to describe the value of a complex number. These will " -"be discussed together with the functions that use them." +msgid "There are few other data types that play a significant role in the Python/C API; most are simple C types such as :c:expr:`int`, :c:expr:`long`, :c:expr:`double` and :c:expr:`char*`. A few structure types are used to describe static tables used to list the functions exported by a module or the data attributes of a new object type, and another is used to describe the value of a complex number. These will be discussed together with the functions that use them." msgstr "" -#: ../../c-api/intro.rst:821 -msgid "" -"A signed integral type such that ``sizeof(Py_ssize_t) == sizeof(size_t)``. " -"C99 doesn't define such a thing directly (size_t is an unsigned integral " -"type). See :pep:`353` for details. ``PY_SSIZE_T_MAX`` is the largest " -"positive value of type :c:type:`Py_ssize_t`." +msgid "A signed integral type such that ``sizeof(Py_ssize_t) == sizeof(size_t)``. C99 doesn't define such a thing directly (size_t is an unsigned integral type). See :pep:`353` for details. ``PY_SSIZE_T_MAX`` is the largest positive value of type :c:type:`Py_ssize_t`." msgstr "" -#: ../../c-api/intro.rst:830 msgid "Exceptions" msgstr "" -#: ../../c-api/intro.rst:832 -msgid "" -"The Python programmer only needs to deal with exceptions if specific error " -"handling is required; unhandled exceptions are automatically propagated to " -"the caller, then to the caller's caller, and so on, until they reach the top-" -"level interpreter, where they are reported to the user accompanied by a " -"stack traceback." +msgid "The Python programmer only needs to deal with exceptions if specific error handling is required; unhandled exceptions are automatically propagated to the caller, then to the caller's caller, and so on, until they reach the top-level interpreter, where they are reported to the user accompanied by a stack traceback." msgstr "" -#: ../../c-api/intro.rst:840 -msgid "" -"For C programmers, however, error checking always has to be explicit. All " -"functions in the Python/C API can raise exceptions, unless an explicit claim " -"is made otherwise in a function's documentation. In general, when a " -"function encounters an error, it sets an exception, discards any object " -"references that it owns, and returns an error indicator. If not documented " -"otherwise, this indicator is either ``NULL`` or ``-1``, depending on the " -"function's return type. A few functions return a Boolean true/false result, " -"with false indicating an error. Very few functions return no explicit error " -"indicator or have an ambiguous return value, and require explicit testing " -"for errors with :c:func:`PyErr_Occurred`. These exceptions are always " -"explicitly documented." -msgstr "" - -#: ../../c-api/intro.rst:855 -msgid "" -"Exception state is maintained in per-thread storage (this is equivalent to " -"using global storage in an unthreaded application). A thread can be in one " -"of two states: an exception has occurred, or not. The " -"function :c:func:`PyErr_Occurred` can be used to check for this: it returns " -"a borrowed reference to the exception type object when an exception has " -"occurred, and ``NULL`` otherwise. There are a number of functions to set " -"the exception state: :c:func:`PyErr_SetString` is the most common (though " -"not the most general) function to set the exception state, " -"and :c:func:`PyErr_Clear` clears the exception state." -msgstr "" - -#: ../../c-api/intro.rst:865 -msgid "" -"The full exception state consists of three objects (all of which can be " -"``NULL``): the exception type, the corresponding exception value, and the " -"traceback. These have the same meanings as the Python result of " -"``sys.exc_info()``; however, they are not the same: the Python objects " -"represent the last exception being handled by a " -"Python :keyword:`try` ... :keyword:`except` statement, while the C level " -"exception state only exists while an exception is being passed on between C " -"functions until it reaches the Python bytecode interpreter's main loop, " -"which takes care of transferring it to ``sys.exc_info()`` and friends." -msgstr "" - -#: ../../c-api/intro.rst:877 -msgid "" -"Note that starting with Python 1.5, the preferred, thread-safe way to access " -"the exception state from Python code is to call the " -"function :func:`sys.exc_info`, which returns the per-thread exception state " -"for Python code. Also, the semantics of both ways to access the exception " -"state have changed so that a function which catches an exception will save " -"and restore its thread's exception state so as to preserve the exception " -"state of its caller. This prevents common bugs in exception handling code " -"caused by an innocent-looking function overwriting the exception being " -"handled; it also reduces the often unwanted lifetime extension for objects " -"that are referenced by the stack frames in the traceback." -msgstr "" - -#: ../../c-api/intro.rst:888 -msgid "" -"As a general principle, a function that calls another function to perform " -"some task should check whether the called function raised an exception, and " -"if so, pass the exception state on to its caller. It should discard any " -"object references that it owns, and return an error indicator, but it " -"should *not* set another exception --- that would overwrite the exception " -"that was just raised, and lose important information about the exact cause " -"of the error." +msgid "For C programmers, however, error checking always has to be explicit. All functions in the Python/C API can raise exceptions, unless an explicit claim is made otherwise in a function's documentation. In general, when a function encounters an error, it sets an exception, discards any object references that it owns, and returns an error indicator. If not documented otherwise, this indicator is either ``NULL`` or ``-1``, depending on the function's return type. A few functions return a Boolean true/false result, with false indicating an error. Very few functions return no explicit error indicator or have an ambiguous return value, and require explicit testing for errors with :c:func:`PyErr_Occurred`. These exceptions are always explicitly documented." msgstr "" -#: ../../c-api/intro.rst:897 -msgid "" -"A simple example of detecting exceptions and passing them on is shown in " -"the :c:func:`!sum_sequence` example above. It so happens that this example " -"doesn't need to clean up any owned references when it detects an error. The " -"following example function shows some error cleanup. First, to remind you " -"why you like Python, we show the equivalent Python code::" +msgid "Exception state is maintained in per-thread storage (this is equivalent to using global storage in an unthreaded application). A thread can be in one of two states: an exception has occurred, or not. The function :c:func:`PyErr_Occurred` can be used to check for this: it returns a borrowed reference to the exception type object when an exception has occurred, and ``NULL`` otherwise. There are a number of functions to set the exception state: :c:func:`PyErr_SetString` is the most common (though not the most general) function to set the exception state, and :c:func:`PyErr_Clear` clears the exception state." +msgstr "" + +msgid "The full exception state consists of three objects (all of which can be ``NULL``): the exception type, the corresponding exception value, and the traceback. These have the same meanings as the Python result of ``sys.exc_info()``; however, they are not the same: the Python objects represent the last exception being handled by a Python :keyword:`try` ... :keyword:`except` statement, while the C level exception state only exists while an exception is being passed on between C functions until it reaches the Python bytecode interpreter's main loop, which takes care of transferring it to ``sys.exc_info()`` and friends." +msgstr "" + +msgid "Note that starting with Python 1.5, the preferred, thread-safe way to access the exception state from Python code is to call the function :func:`sys.exc_info`, which returns the per-thread exception state for Python code. Also, the semantics of both ways to access the exception state have changed so that a function which catches an exception will save and restore its thread's exception state so as to preserve the exception state of its caller. This prevents common bugs in exception handling code caused by an innocent-looking function overwriting the exception being handled; it also reduces the often unwanted lifetime extension for objects that are referenced by the stack frames in the traceback." +msgstr "" + +msgid "As a general principle, a function that calls another function to perform some task should check whether the called function raised an exception, and if so, pass the exception state on to its caller. It should discard any object references that it owns, and return an error indicator, but it should *not* set another exception --- that would overwrite the exception that was just raised, and lose important information about the exact cause of the error." +msgstr "" + +msgid "A simple example of detecting exceptions and passing them on is shown in the :c:func:`!sum_sequence` example above. It so happens that this example doesn't need to clean up any owned references when it detects an error. The following example function shows some error cleanup. First, to remind you why you like Python, we show the equivalent Python code::" msgstr "" -#: ../../c-api/intro.rst:903 msgid "" "def incr_item(dict, key):\n" " try:\n" @@ -1156,11 +589,9 @@ msgid "" " dict[key] = item + 1" msgstr "" -#: ../../c-api/intro.rst:912 msgid "Here is the corresponding C code, in all its glory::" msgstr "" -#: ../../c-api/intro.rst:914 msgid "" "int\n" "incr_item(PyObject *dict, PyObject *key)\n" @@ -1206,346 +637,185 @@ msgid "" "}" msgstr "" -#: ../../c-api/intro.rst:964 -msgid "" -"This example represents an endorsed use of the ``goto`` statement in C! It " -"illustrates the use of :c:func:`PyErr_ExceptionMatches` " -"and :c:func:`PyErr_Clear` to handle specific exceptions, and the use " -"of :c:func:`Py_XDECREF` to dispose of owned references that may be ``NULL`` " -"(note the ``'X'`` in the name; :c:func:`Py_DECREF` would crash when " -"confronted with a ``NULL`` reference). It is important that the variables " -"used to hold owned references are initialized to ``NULL`` for this to work; " -"likewise, the proposed return value is initialized to ``-1`` (failure) and " -"only set to success after the final call made is successful." -msgstr "" - -#: ../../c-api/intro.rst:978 +msgid "This example represents an endorsed use of the ``goto`` statement in C! It illustrates the use of :c:func:`PyErr_ExceptionMatches` and :c:func:`PyErr_Clear` to handle specific exceptions, and the use of :c:func:`Py_XDECREF` to dispose of owned references that may be ``NULL`` (note the ``'X'`` in the name; :c:func:`Py_DECREF` would crash when confronted with a ``NULL`` reference). It is important that the variables used to hold owned references are initialized to ``NULL`` for this to work; likewise, the proposed return value is initialized to ``-1`` (failure) and only set to success after the final call made is successful." +msgstr "" + msgid "Embedding Python" msgstr "" -#: ../../c-api/intro.rst:980 -msgid "" -"The one important task that only embedders (as opposed to extension writers) " -"of the Python interpreter have to worry about is the initialization, and " -"possibly the finalization, of the Python interpreter. Most functionality of " -"the interpreter can only be used after the interpreter has been initialized." +msgid "The one important task that only embedders (as opposed to extension writers) of the Python interpreter have to worry about is the initialization, and possibly the finalization, of the Python interpreter. Most functionality of the interpreter can only be used after the interpreter has been initialized." msgstr "" -#: ../../c-api/intro.rst:993 -msgid "" -"The basic initialization function is :c:func:`Py_Initialize`. This " -"initializes the table of loaded modules, and creates the fundamental " -"modules :mod:`builtins`, :mod:`__main__`, and :mod:`sys`. It also " -"initializes the module search path (``sys.path``)." +msgid "The basic initialization function is :c:func:`Py_Initialize`. This initializes the table of loaded modules, and creates the fundamental modules :mod:`builtins`, :mod:`__main__`, and :mod:`sys`. It also initializes the module search path (``sys.path``)." msgstr "" -#: ../../c-api/intro.rst:998 -msgid "" -":c:func:`Py_Initialize` does not set the \"script argument list\" " -"(``sys.argv``). If this variable is needed by Python code that will be " -"executed later, setting :c:member:`PyConfig.argv` " -"and :c:member:`PyConfig.parse_argv` must be set: see :ref:`Python " -"Initialization Configuration `." +msgid ":c:func:`Py_Initialize` does not set the \"script argument list\" (``sys.argv``). If this variable is needed by Python code that will be executed later, setting :c:member:`PyConfig.argv` and :c:member:`PyConfig.parse_argv` must be set: see :ref:`Python Initialization Configuration `." msgstr "" -#: ../../c-api/intro.rst:1003 -msgid "" -"On most systems (in particular, on Unix and Windows, although the details " -"are slightly different), :c:func:`Py_Initialize` calculates the module " -"search path based upon its best guess for the location of the standard " -"Python interpreter executable, assuming that the Python library is found in " -"a fixed location relative to the Python interpreter executable. In " -"particular, it looks for a directory named :file:`lib/python{X.Y}` relative " -"to the parent directory where the executable named :file:`python` is found " -"on the shell command search path (the environment variable :envvar:`PATH`)." +msgid "On most systems (in particular, on Unix and Windows, although the details are slightly different), :c:func:`Py_Initialize` calculates the module search path based upon its best guess for the location of the standard Python interpreter executable, assuming that the Python library is found in a fixed location relative to the Python interpreter executable. In particular, it looks for a directory named :file:`lib/python{X.Y}` relative to the parent directory where the executable named :file:`python` is found on the shell command search path (the environment variable :envvar:`PATH`)." msgstr "" -#: ../../c-api/intro.rst:1012 -msgid "" -"For instance, if the Python executable is found in :file:`/usr/local/bin/" -"python`, it will assume that the libraries are in :file:`/usr/local/lib/" -"python{X.Y}`. (In fact, this particular path is also the \"fallback\" " -"location, used when no executable file named :file:`python` is found " -"along :envvar:`PATH`.) The user can override this behavior by setting the " -"environment variable :envvar:`PYTHONHOME`, or insert additional directories " -"in front of the standard path by setting :envvar:`PYTHONPATH`." +msgid "For instance, if the Python executable is found in :file:`/usr/local/bin/python`, it will assume that the libraries are in :file:`/usr/local/lib/python{X.Y}`. (In fact, this particular path is also the \"fallback\" location, used when no executable file named :file:`python` is found along :envvar:`PATH`.) The user can override this behavior by setting the environment variable :envvar:`PYTHONHOME`, or insert additional directories in front of the standard path by setting :envvar:`PYTHONPATH`." +msgstr "" + +msgid "The embedding application can steer the search by setting :c:member:`PyConfig.program_name` *before* calling :c:func:`Py_InitializeFromConfig`. Note that :envvar:`PYTHONHOME` still overrides this and :envvar:`PYTHONPATH` is still inserted in front of the standard path. An application that requires total control has to provide its own implementation of :c:func:`Py_GetPath`, :c:func:`Py_GetPrefix`, :c:func:`Py_GetExecPrefix`, and :c:func:`Py_GetProgramFullPath` (all defined in :file:`Modules/getpath.c`)." +msgstr "" + +msgid "Sometimes, it is desirable to \"uninitialize\" Python. For instance, the application may want to start over (make another call to :c:func:`Py_Initialize`) or the application is simply done with its use of Python and wants to free memory allocated by Python. This can be accomplished by calling :c:func:`Py_FinalizeEx`. The function :c:func:`Py_IsInitialized` returns true if Python is currently in the initialized state. More information about these functions is given in a later chapter. Notice that :c:func:`Py_FinalizeEx` does *not* free all memory allocated by the Python interpreter, e.g. memory allocated by extension modules currently cannot be released." msgstr "" -#: ../../c-api/intro.rst:1026 -msgid "" -"The embedding application can steer the search by " -"setting :c:member:`PyConfig.program_name` *before* " -"calling :c:func:`Py_InitializeFromConfig`. Note that :envvar:`PYTHONHOME` " -"still overrides this and :envvar:`PYTHONPATH` is still inserted in front of " -"the standard path. An application that requires total control has to " -"provide its own implementation " -"of :c:func:`Py_GetPath`, :c:func:`Py_GetPrefix`, :c:func:`Py_GetExecPrefix`, " -"and :c:func:`Py_GetProgramFullPath` (all defined in :file:`Modules/" -"getpath.c`)." -msgstr "" - -#: ../../c-api/intro.rst:1037 -msgid "" -"Sometimes, it is desirable to \"uninitialize\" Python. For instance, the " -"application may want to start over (make another call " -"to :c:func:`Py_Initialize`) or the application is simply done with its use " -"of Python and wants to free memory allocated by Python. This can be " -"accomplished by calling :c:func:`Py_FinalizeEx`. The " -"function :c:func:`Py_IsInitialized` returns true if Python is currently in " -"the initialized state. More information about these functions is given in a " -"later chapter. Notice that :c:func:`Py_FinalizeEx` does *not* free all " -"memory allocated by the Python interpreter, e.g. memory allocated by " -"extension modules currently cannot be released." -msgstr "" - -#: ../../c-api/intro.rst:1051 msgid "Debugging Builds" msgstr "" -#: ../../c-api/intro.rst:1053 -msgid "" -"Python can be built with several macros to enable extra checks of the " -"interpreter and extension modules. These checks tend to add a large amount " -"of overhead to the runtime so they are not enabled by default." +msgid "Python can be built with several macros to enable extra checks of the interpreter and extension modules. These checks tend to add a large amount of overhead to the runtime so they are not enabled by default." msgstr "" -#: ../../c-api/intro.rst:1057 -msgid "" -"A full list of the various types of debugging builds is in the " -"file :file:`Misc/SpecialBuilds.txt` in the Python source distribution. " -"Builds are available that support tracing of reference counts, debugging the " -"memory allocator, or low-level profiling of the main interpreter loop. Only " -"the most frequently used builds will be described in the remainder of this " -"section." +msgid "A full list of the various types of debugging builds is in the file :file:`Misc/SpecialBuilds.txt` in the Python source distribution. Builds are available that support tracing of reference counts, debugging the memory allocator, or low-level profiling of the main interpreter loop. Only the most frequently used builds will be described in the remainder of this section." msgstr "" -#: ../../c-api/intro.rst:1065 -msgid "" -"Compiling the interpreter with the :c:macro:`!Py_DEBUG` macro defined " -"produces what is generally meant by :ref:`a debug build of Python `. :c:macro:`!Py_DEBUG` is enabled in the Unix build by " -"adding :option:`--with-pydebug` to the :file:`./configure` command. It is " -"also implied by the presence of the not-Python-specific :c:macro:`!_DEBUG` " -"macro. When :c:macro:`!Py_DEBUG` is enabled in the Unix build, compiler " -"optimization is disabled." +msgid "Compiling the interpreter with the :c:macro:`!Py_DEBUG` macro defined produces what is generally meant by :ref:`a debug build of Python `. :c:macro:`!Py_DEBUG` is enabled in the Unix build by adding :option:`--with-pydebug` to the :file:`./configure` command. It is also implied by the presence of the not-Python-specific :c:macro:`!_DEBUG` macro. When :c:macro:`!Py_DEBUG` is enabled in the Unix build, compiler optimization is disabled." msgstr "" -#: ../../c-api/intro.rst:1073 -msgid "" -"In addition to the reference count debugging described below, extra checks " -"are performed, see :ref:`Python Debug Build `." +msgid "In addition to the reference count debugging described below, extra checks are performed, see :ref:`Python Debug Build `." msgstr "" -#: ../../c-api/intro.rst:1076 -msgid "" -"Defining ``Py_TRACE_REFS`` enables reference tracing (see " -"the :option:`configure --with-trace-refs option <--with-trace-refs>`). When " -"defined, a circular doubly linked list of active objects is maintained by " -"adding two extra fields to every :c:type:`PyObject`. Total allocations are " -"tracked as well. Upon exit, all existing references are printed. (In " -"interactive mode this happens after every statement run by the interpreter.)" +msgid "Defining ``Py_TRACE_REFS`` enables reference tracing (see the :option:`configure --with-trace-refs option <--with-trace-refs>`). When defined, a circular doubly linked list of active objects is maintained by adding two extra fields to every :c:type:`PyObject`. Total allocations are tracked as well. Upon exit, all existing references are printed. (In interactive mode this happens after every statement run by the interpreter.)" msgstr "" -#: ../../c-api/intro.rst:1083 -msgid "" -"Please refer to :file:`Misc/SpecialBuilds.txt` in the Python source " -"distribution for more detailed information." +msgid "Please refer to :file:`Misc/SpecialBuilds.txt` in the Python source distribution for more detailed information." msgstr "" -#: ../../c-api/intro.rst:1090 msgid "Recommended third party tools" msgstr "" -#: ../../c-api/intro.rst:1092 -msgid "" -"The following third party tools offer both simpler and more sophisticated " -"approaches to creating C, C++ and Rust extensions for Python:" +msgid "The following third party tools offer both simpler and more sophisticated approaches to creating C, C++ and Rust extensions for Python:" msgstr "" -#: ../../c-api/intro.rst:1095 msgid "`Cython `_" msgstr "" -#: ../../c-api/intro.rst:1096 msgid "`cffi `_" msgstr "" -#: ../../c-api/intro.rst:1097 msgid "`HPy `_" msgstr "" -#: ../../c-api/intro.rst:1098 msgid "`nanobind `_ (C++)" msgstr "" -#: ../../c-api/intro.rst:1099 msgid "`Numba `_" msgstr "" -#: ../../c-api/intro.rst:1100 msgid "`pybind11 `_ (C++)" msgstr "" -#: ../../c-api/intro.rst:1101 msgid "`PyO3 `_ (Rust)" msgstr "" -#: ../../c-api/intro.rst:1102 msgid "`SWIG `_" msgstr "" -#: ../../c-api/intro.rst:1104 -msgid "" -"Using tools such as these can help avoid writing code that is tightly bound " -"to a particular version of CPython, avoid reference counting errors, and " -"focus more on your own code than on using the CPython API. In general, new " -"versions of Python can be supported by updating the tool, and your code will " -"often use newer and more efficient APIs automatically. Some tools also " -"support compiling for other implementations of Python from a single set of " -"sources." +msgid "Using tools such as these can help avoid writing code that is tightly bound to a particular version of CPython, avoid reference counting errors, and focus more on your own code than on using the CPython API. In general, new versions of Python can be supported by updating the tool, and your code will often use newer and more efficient APIs automatically. Some tools also support compiling for other implementations of Python from a single set of sources." msgstr "" -#: ../../c-api/intro.rst:1111 -msgid "" -"These projects are not supported by the same people who maintain Python, and " -"issues need to be raised with the projects directly. Remember to check that " -"the project is still maintained and supported, as the list above may become " -"outdated." +msgid "These projects are not supported by the same people who maintain Python, and issues need to be raised with the projects directly. Remember to check that the project is still maintained and supported, as the list above may become outdated." msgstr "" -#: ../../c-api/intro.rst:1118 -msgid "" -"`Python Packaging User Guide: Binary Extensions `_" +msgid "`Python Packaging User Guide: Binary Extensions `_" msgstr "" -#: ../../c-api/intro.rst:1119 -msgid "" -"The Python Packaging User Guide not only covers several available tools that " -"simplify the creation of binary extensions, but also discusses the various " -"reasons why creating an extension module may be desirable in the first place." +msgid "The Python Packaging User Guide not only covers several available tools that simplify the creation of binary extensions, but also discusses the various reasons why creating an extension module may be desirable in the first place." msgstr "" -#: ../../c-api/intro.rst:533 msgid "object" msgstr "" -#: ../../c-api/intro.rst:533 msgid "type" msgstr "" -#: ../../c-api/intro.rst:572 msgid "Py_INCREF (C function)" msgstr "" -#: ../../c-api/intro.rst:572 msgid "Py_DECREF (C function)" msgstr "" -#: ../../c-api/intro.rst:651 msgid "PyList_SetItem (C function)" msgstr "" -#: ../../c-api/intro.rst:651 msgid "PyTuple_SetItem (C function)" msgstr "" -#: ../../c-api/intro.rst:722 msgid "set_all()" msgstr "" -#: ../../c-api/intro.rst:741 msgid "PyList_GetItem (C function)" msgstr "" -#: ../../c-api/intro.rst:741 msgid "PySequence_GetItem (C function)" msgstr "" -#: ../../c-api/intro.rst:771 msgid "sum_list()" msgstr "" -#: ../../c-api/intro.rst:803 ../../c-api/intro.rst:895 msgid "sum_sequence()" msgstr "" -#: ../../c-api/intro.rst:838 msgid "PyErr_Occurred (C function)" msgstr "" -#: ../../c-api/intro.rst:851 msgid "PyErr_SetString (C function)" msgstr "" -#: ../../c-api/intro.rst:851 ../../c-api/intro.rst:959 msgid "PyErr_Clear (C function)" msgstr "" -#: ../../c-api/intro.rst:875 msgid "exc_info (in module sys)" msgstr "" -#: ../../c-api/intro.rst:910 ../../c-api/intro.rst:957 msgid "incr_item()" msgstr "" -#: ../../c-api/intro.rst:959 msgid "PyErr_ExceptionMatches (C function)" msgstr "" -#: ../../c-api/intro.rst:959 msgid "Py_XDECREF (C function)" msgstr "" -#: ../../c-api/intro.rst:985 msgid "Py_Initialize (C function)" msgstr "" -#: ../../c-api/intro.rst:985 msgid "module" msgstr "" -#: ../../c-api/intro.rst:985 msgid "builtins" msgstr "" -#: ../../c-api/intro.rst:985 msgid "__main__" msgstr "" -#: ../../c-api/intro.rst:985 msgid "sys" msgstr "" -#: ../../c-api/intro.rst:985 msgid "search" msgstr "" -#: ../../c-api/intro.rst:985 msgid "path" msgstr "" -#: ../../c-api/intro.rst:985 msgid "path (in module sys)" msgstr "" -#: ../../c-api/intro.rst:1020 msgid "Py_GetPath (C function)" msgstr "" -#: ../../c-api/intro.rst:1020 msgid "Py_GetPrefix (C function)" msgstr "" -#: ../../c-api/intro.rst:1020 msgid "Py_GetExecPrefix (C function)" msgstr "" -#: ../../c-api/intro.rst:1020 msgid "Py_GetProgramFullPath (C function)" msgstr "" -#: ../../c-api/intro.rst:1035 msgid "Py_IsInitialized (C function)" msgstr "" diff --git a/c-api/iter.po b/c-api/iter.po index 7aba17ce..35d70b8b 100644 --- a/c-api/iter.po +++ b/c-api/iter.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:49+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,71 +21,38 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../c-api/iter.rst:6 msgid "Iterator Protocol" msgstr "" -#: ../../c-api/iter.rst:8 msgid "There are two functions specifically for working with iterators." msgstr "" -#: ../../c-api/iter.rst:12 -msgid "" -"Return non-zero if the object *o* can be safely passed " -"to :c:func:`PyIter_NextItem` and ``0`` otherwise. This function always " -"succeeds." +msgid "Return non-zero if the object *o* can be safely passed to :c:func:`PyIter_NextItem` and ``0`` otherwise. This function always succeeds." msgstr "" -#: ../../c-api/iter.rst:18 -msgid "" -"Return non-zero if the object *o* provides the :class:`AsyncIterator` " -"protocol, and ``0`` otherwise. This function always succeeds." +msgid "Return non-zero if the object *o* provides the :class:`AsyncIterator` protocol, and ``0`` otherwise. This function always succeeds." msgstr "" -#: ../../c-api/iter.rst:25 -msgid "" -"Return ``1`` and set *item* to a :term:`strong reference` of the next value " -"of the iterator *iter* on success. Return ``0`` and set *item* to ``NULL`` " -"if there are no remaining values. Return ``-1``, set *item* to ``NULL`` and " -"set an exception on error." +msgid "Return ``1`` and set *item* to a :term:`strong reference` of the next value of the iterator *iter* on success. Return ``0`` and set *item* to ``NULL`` if there are no remaining values. Return ``-1``, set *item* to ``NULL`` and set an exception on error." msgstr "" -#: ../../c-api/iter.rst:34 -msgid "" -"This is an older version of :c:func:`!PyIter_NextItem`, which is retained " -"for backwards compatibility. Prefer :c:func:`PyIter_NextItem`." +msgid "This is an older version of :c:func:`!PyIter_NextItem`, which is retained for backwards compatibility. Prefer :c:func:`PyIter_NextItem`." msgstr "" -#: ../../c-api/iter.rst:38 -msgid "" -"Return the next value from the iterator *o*. The object must be an iterator " -"according to :c:func:`PyIter_Check` (it is up to the caller to check this). " -"If there are no remaining values, returns ``NULL`` with no exception set. If " -"an error occurs while retrieving the item, returns ``NULL`` and passes along " -"the exception." +msgid "Return the next value from the iterator *o*. The object must be an iterator according to :c:func:`PyIter_Check` (it is up to the caller to check this). If there are no remaining values, returns ``NULL`` with no exception set. If an error occurs while retrieving the item, returns ``NULL`` and passes along the exception." msgstr "" -#: ../../c-api/iter.rst:46 -msgid "" -"The enum value used to represent different results of :c:func:`PyIter_Send`." +msgid "The enum value used to represent different results of :c:func:`PyIter_Send`." msgstr "" -#: ../../c-api/iter.rst:53 msgid "Sends the *arg* value into the iterator *iter*. Returns:" msgstr "" -#: ../../c-api/iter.rst:55 -msgid "" -"``PYGEN_RETURN`` if iterator returns. Return value is returned via *presult*." +msgid "``PYGEN_RETURN`` if iterator returns. Return value is returned via *presult*." msgstr "" -#: ../../c-api/iter.rst:56 -msgid "" -"``PYGEN_NEXT`` if iterator yields. Yielded value is returned via *presult*." +msgid "``PYGEN_NEXT`` if iterator yields. Yielded value is returned via *presult*." msgstr "" -#: ../../c-api/iter.rst:57 -msgid "" -"``PYGEN_ERROR`` if iterator has raised and exception. *presult* is set to " -"``NULL``." +msgid "``PYGEN_ERROR`` if iterator has raised and exception. *presult* is set to ``NULL``." msgstr "" diff --git a/c-api/iterator.po b/c-api/iterator.po index 96cbcfe5..50655a5d 100644 --- a/c-api/iterator.po +++ b/c-api/iterator.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:49+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,129 +21,74 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../c-api/iterator.rst:6 msgid "Iterator Objects" msgstr "" -#: ../../c-api/iterator.rst:8 -msgid "" -"Python provides two general-purpose iterator objects. The first, a sequence " -"iterator, works with an arbitrary sequence supporting " -"the :meth:`~object.__getitem__` method. The second works with a callable " -"object and a sentinel value, calling the callable for each item in the " -"sequence, and ending the iteration when the sentinel value is returned." +msgid "Python provides two general-purpose iterator objects. The first, a sequence iterator, works with an arbitrary sequence supporting the :meth:`~object.__getitem__` method. The second works with a callable object and a sentinel value, calling the callable for each item in the sequence, and ending the iteration when the sentinel value is returned." msgstr "" -#: ../../c-api/iterator.rst:17 -msgid "" -"Type object for iterator objects returned by :c:func:`PySeqIter_New` and the " -"one-argument form of the :func:`iter` built-in function for built-in " -"sequence types." +msgid "Type object for iterator objects returned by :c:func:`PySeqIter_New` and the one-argument form of the :func:`iter` built-in function for built-in sequence types." msgstr "" -#: ../../c-api/iterator.rst:24 -msgid "" -"Return true if the type of *op* is :c:data:`PySeqIter_Type`. This function " -"always succeeds." +msgid "Return true if the type of *op* is :c:data:`PySeqIter_Type`. This function always succeeds." msgstr "" -#: ../../c-api/iterator.rst:30 -msgid "" -"Return an iterator that works with a general sequence object, *seq*. The " -"iteration ends when the sequence raises :exc:`IndexError` for the " -"subscripting operation." +msgid "Return an iterator that works with a general sequence object, *seq*. The iteration ends when the sequence raises :exc:`IndexError` for the subscripting operation." msgstr "" -#: ../../c-api/iterator.rst:37 -msgid "" -"Type object for iterator objects returned by :c:func:`PyCallIter_New` and " -"the two-argument form of the :func:`iter` built-in function." +msgid "Type object for iterator objects returned by :c:func:`PyCallIter_New` and the two-argument form of the :func:`iter` built-in function." msgstr "" -#: ../../c-api/iterator.rst:43 -msgid "" -"Return true if the type of *op* is :c:data:`PyCallIter_Type`. This function " -"always succeeds." +msgid "Return true if the type of *op* is :c:data:`PyCallIter_Type`. This function always succeeds." msgstr "" -#: ../../c-api/iterator.rst:49 -msgid "" -"Return a new iterator. The first parameter, *callable*, can be any Python " -"callable object that can be called with no parameters; each call to it " -"should return the next item in the iteration. When *callable* returns a " -"value equal to *sentinel*, the iteration will be terminated." +msgid "Return a new iterator. The first parameter, *callable*, can be any Python callable object that can be called with no parameters; each call to it should return the next item in the iteration. When *callable* returns a value equal to *sentinel*, the iteration will be terminated." msgstr "" -#: ../../c-api/iterator.rst:56 msgid "Range Objects" msgstr "" -#: ../../c-api/iterator.rst:60 msgid "The type object for :class:`range` objects." msgstr "" -#: ../../c-api/iterator.rst:65 -msgid "" -"Return true if the object *o* is an instance of a :class:`range` object. " -"This function always succeeds." +msgid "Return true if the object *o* is an instance of a :class:`range` object. This function always succeeds." msgstr "" -#: ../../c-api/iterator.rst:70 msgid "Builtin Iterator Types" msgstr "" -#: ../../c-api/iterator.rst:72 -msgid "" -"These are built-in iteration types that are included in Python's C API, but " -"provide no additional functions. They are here for completeness." +msgid "These are built-in iteration types that are included in Python's C API, but provide no additional functions. They are here for completeness." msgstr "" -#: ../../c-api/iterator.rst:80 msgid "C type" msgstr "" -#: ../../c-api/iterator.rst:81 msgid "Python type" msgstr "" -#: ../../c-api/iterator.rst:83 msgid ":py:class:`enumerate`" msgstr "" -#: ../../c-api/iterator.rst:85 msgid ":py:class:`filter`" msgstr "" -#: ../../c-api/iterator.rst:87 msgid ":py:class:`map`" msgstr "" -#: ../../c-api/iterator.rst:89 msgid ":py:class:`reversed`" msgstr "" -#: ../../c-api/iterator.rst:91 msgid ":py:class:`zip`" msgstr "" -#: ../../c-api/iterator.rst:95 msgid "Other Iterator Objects" msgstr "" -#: ../../c-api/iterator.rst:113 msgid "Type objects for iterators of various built-in objects." msgstr "" -#: ../../c-api/iterator.rst:115 -msgid "" -"Do not create instances of these directly; prefer " -"calling :c:func:`PyObject_GetIter` instead." +msgid "Do not create instances of these directly; prefer calling :c:func:`PyObject_GetIter` instead." msgstr "" -#: ../../c-api/iterator.rst:118 -msgid "" -"Note that there is no guarantee that a given built-in type uses a given " -"iterator type. For example, iterating over :class:`range` will use one of " -"two iterator types depending on the size of the range. Other types may start " -"using a similar scheme in the future, without warning." +msgid "Note that there is no guarantee that a given built-in type uses a given iterator type. For example, iterating over :class:`range` will use one of two iterator types depending on the size of the range. Other types may start using a similar scheme in the future, without warning." msgstr "" diff --git a/c-api/lifecycle.po b/c-api/lifecycle.po index a651b021..606767cf 100644 --- a/c-api/lifecycle.po +++ b/c-api/lifecycle.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2026-07-25 12:59+0330\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: none\n" @@ -19,349 +19,137 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../c-api/lifecycle.rst:6 msgid "Object Life Cycle" msgstr "" -#: ../../c-api/lifecycle.rst:8 -msgid "" -"This section explains how a type's slots relate to each other throughout the " -"life of an object. It is not intended to be a complete canonical reference " -"for the slots; instead, refer to the slot-specific documentation " -"in :ref:`type-structs` for details about a particular slot." +msgid "This section explains how a type's slots relate to each other throughout the life of an object. It is not intended to be a complete canonical reference for the slots; instead, refer to the slot-specific documentation in :ref:`type-structs` for details about a particular slot." msgstr "" -#: ../../c-api/lifecycle.rst:15 msgid "Life Events" msgstr "" -#: ../../c-api/lifecycle.rst:17 -msgid "" -"The figure below illustrates the order of events that can occur throughout " -"an object's life. An arrow from *A* to *B* indicates that event *B* can " -"occur after event *A* has occurred, with the arrow's label indicating the " -"condition that must be true for *B* to occur after *A*." +msgid "The figure below illustrates the order of events that can occur throughout an object's life. An arrow from *A* to *B* indicates that event *B* can occur after event *A* has occurred, with the arrow's label indicating the condition that must be true for *B* to occur after *A*." msgstr "" -#: ../../c-api/lifecycle.rst:55 msgid "Diagram showing events in an object's life. Explained in detail below." msgstr "" -#: ../../c-api/lifecycle.rst:63 msgid "Explanation:" msgstr "" -#: ../../c-api/lifecycle.rst:65 msgid "When a new object is constructed by calling its type:" msgstr "" -#: ../../c-api/lifecycle.rst:67 msgid ":c:member:`~PyTypeObject.tp_new` is called to create a new object." msgstr "" -#: ../../c-api/lifecycle.rst:68 -msgid "" -":c:member:`~PyTypeObject.tp_alloc` is directly called " -"by :c:member:`~PyTypeObject.tp_new` to allocate the memory for the new " -"object." +msgid ":c:member:`~PyTypeObject.tp_alloc` is directly called by :c:member:`~PyTypeObject.tp_new` to allocate the memory for the new object." msgstr "" -#: ../../c-api/lifecycle.rst:71 -msgid "" -":c:member:`~PyTypeObject.tp_init` initializes the newly created " -"object. :c:member:`!tp_init` can be called again to re-initialize an object, " -"if desired. The :c:member:`!tp_init` call can also be skipped entirely, for " -"example by Python code calling :py:meth:`~object.__new__`." +msgid ":c:member:`~PyTypeObject.tp_init` initializes the newly created object. :c:member:`!tp_init` can be called again to re-initialize an object, if desired. The :c:member:`!tp_init` call can also be skipped entirely, for example by Python code calling :py:meth:`~object.__new__`." msgstr "" -#: ../../c-api/lifecycle.rst:76 msgid "After :c:member:`!tp_init` completes, the object is ready to use." msgstr "" -#: ../../c-api/lifecycle.rst:77 msgid "Some time after the last reference to an object is removed:" msgstr "" -#: ../../c-api/lifecycle.rst:79 -msgid "" -"If an object is not marked as *finalized*, it might be finalized by marking " -"it as *finalized* and calling its :c:member:`~PyTypeObject.tp_finalize` " -"function. Python does *not* finalize an object when the last reference to " -"it is deleted; use :c:func:`PyObject_CallFinalizerFromDealloc` to ensure " -"that :c:member:`~PyTypeObject.tp_finalize` is always called." +msgid "If an object is not marked as *finalized*, it might be finalized by marking it as *finalized* and calling its :c:member:`~PyTypeObject.tp_finalize` function. Python does *not* finalize an object when the last reference to it is deleted; use :c:func:`PyObject_CallFinalizerFromDealloc` to ensure that :c:member:`~PyTypeObject.tp_finalize` is always called." msgstr "" -#: ../../c-api/lifecycle.rst:85 -msgid "" -"If the object is marked as finalized, :c:member:`~PyTypeObject.tp_clear` " -"might be called by the garbage collector to clear references held by the " -"object. It is *not* called when the object's reference count reaches zero." +msgid "If the object is marked as finalized, :c:member:`~PyTypeObject.tp_clear` might be called by the garbage collector to clear references held by the object. It is *not* called when the object's reference count reaches zero." msgstr "" -#: ../../c-api/lifecycle.rst:89 -msgid "" -":c:member:`~PyTypeObject.tp_dealloc` is called to destroy the object. To " -"avoid code duplication, :c:member:`~PyTypeObject.tp_dealloc` typically calls " -"into :c:member:`~PyTypeObject.tp_clear` to free up the object's references." +msgid ":c:member:`~PyTypeObject.tp_dealloc` is called to destroy the object. To avoid code duplication, :c:member:`~PyTypeObject.tp_dealloc` typically calls into :c:member:`~PyTypeObject.tp_clear` to free up the object's references." msgstr "" -#: ../../c-api/lifecycle.rst:93 -msgid "" -"When :c:member:`~PyTypeObject.tp_dealloc` finishes object destruction, it " -"directly calls :c:member:`~PyTypeObject.tp_free` (usually set " -"to :c:func:`PyObject_Free` or :c:func:`PyObject_GC_Del` automatically as " -"appropriate for the type) to deallocate the memory." +msgid "When :c:member:`~PyTypeObject.tp_dealloc` finishes object destruction, it directly calls :c:member:`~PyTypeObject.tp_free` (usually set to :c:func:`PyObject_Free` or :c:func:`PyObject_GC_Del` automatically as appropriate for the type) to deallocate the memory." msgstr "" -#: ../../c-api/lifecycle.rst:98 -msgid "" -"The :c:member:`~PyTypeObject.tp_finalize` function is permitted to add a " -"reference to the object if desired. If it does, the object is " -"*resurrected*, preventing its pending destruction. (Only :c:member:`!" -"tp_finalize` is allowed to resurrect an " -"object; :c:member:`~PyTypeObject.tp_clear` " -"and :c:member:`~PyTypeObject.tp_dealloc` cannot without calling " -"into :c:member:`!tp_finalize`.) Resurrecting an object may or may not cause " -"the object's *finalized* mark to be removed. Currently, Python does not " -"remove the *finalized* mark from a resurrected object if it supports garbage " -"collection (i.e., the :c:macro:`Py_TPFLAGS_HAVE_GC` flag is set) but does " -"remove the mark if the object does not support garbage collection; either or " -"both of these behaviors may change in the future." -msgstr "" - -#: ../../c-api/lifecycle.rst:111 -msgid "" -":c:member:`~PyTypeObject.tp_dealloc` can optionally " -"call :c:member:`~PyTypeObject.tp_finalize` " -"via :c:func:`PyObject_CallFinalizerFromDealloc` if it wishes to reuse that " -"code to help with object destruction. This is recommended because it " -"guarantees that :c:member:`!tp_finalize` is always called before " -"destruction. See the :c:member:`~PyTypeObject.tp_dealloc` documentation for " -"example code." +msgid "The :c:member:`~PyTypeObject.tp_finalize` function is permitted to add a reference to the object if desired. If it does, the object is *resurrected*, preventing its pending destruction. (Only :c:member:`!tp_finalize` is allowed to resurrect an object; :c:member:`~PyTypeObject.tp_clear` and :c:member:`~PyTypeObject.tp_dealloc` cannot without calling into :c:member:`!tp_finalize`.) Resurrecting an object may or may not cause the object's *finalized* mark to be removed. Currently, Python does not remove the *finalized* mark from a resurrected object if it supports garbage collection (i.e., the :c:macro:`Py_TPFLAGS_HAVE_GC` flag is set) but does remove the mark if the object does not support garbage collection; either or both of these behaviors may change in the future." msgstr "" -#: ../../c-api/lifecycle.rst:118 -msgid "" -"If the object is a member of a :term:`cyclic isolate` and " -"either :c:member:`~PyTypeObject.tp_clear` fails to break the reference cycle " -"or the cyclic isolate is not detected (perhaps :func:`gc.disable` was " -"called, or the :c:macro:`Py_TPFLAGS_HAVE_GC` flag was erroneously omitted in " -"one of the involved types), the objects remain indefinitely uncollectable " -"(they \"leak\"). See :data:`gc.garbage`." +msgid ":c:member:`~PyTypeObject.tp_dealloc` can optionally call :c:member:`~PyTypeObject.tp_finalize` via :c:func:`PyObject_CallFinalizerFromDealloc` if it wishes to reuse that code to help with object destruction. This is recommended because it guarantees that :c:member:`!tp_finalize` is always called before destruction. See the :c:member:`~PyTypeObject.tp_dealloc` documentation for example code." msgstr "" -#: ../../c-api/lifecycle.rst:125 -msgid "" -"If the object is marked as supporting garbage collection " -"(the :c:macro:`Py_TPFLAGS_HAVE_GC` flag is set " -"in :c:member:`~PyTypeObject.tp_flags`), the following events are also " -"possible:" +msgid "If the object is a member of a :term:`cyclic isolate` and either :c:member:`~PyTypeObject.tp_clear` fails to break the reference cycle or the cyclic isolate is not detected (perhaps :func:`gc.disable` was called, or the :c:macro:`Py_TPFLAGS_HAVE_GC` flag was erroneously omitted in one of the involved types), the objects remain indefinitely uncollectable (they \"leak\"). See :data:`gc.garbage`." msgstr "" -#: ../../c-api/lifecycle.rst:129 -msgid "" -"The garbage collector occasionally " -"calls :c:member:`~PyTypeObject.tp_traverse` to identify :term:`cyclic " -"isolates `." +msgid "If the object is marked as supporting garbage collection (the :c:macro:`Py_TPFLAGS_HAVE_GC` flag is set in :c:member:`~PyTypeObject.tp_flags`), the following events are also possible:" msgstr "" -#: ../../c-api/lifecycle.rst:132 -msgid "" -"When the garbage collector discovers a :term:`cyclic isolate`, it finalizes " -"one of the objects in the group by marking it as *finalized* and calling " -"its :c:member:`~PyTypeObject.tp_finalize` function, if it has one. This " -"repeats until the cyclic isolate doesn't exist or all of the objects have " -"been finalized." +msgid "The garbage collector occasionally calls :c:member:`~PyTypeObject.tp_traverse` to identify :term:`cyclic isolates `." msgstr "" -#: ../../c-api/lifecycle.rst:137 -msgid "" -":c:member:`~PyTypeObject.tp_finalize` is permitted to resurrect the object " -"by adding a reference from outside the :term:`cyclic isolate`. The new " -"reference causes the group of objects to no longer form a cyclic isolate " -"(the reference cycle may still exist, but if it does the objects are no " -"longer isolated)." +msgid "When the garbage collector discovers a :term:`cyclic isolate`, it finalizes one of the objects in the group by marking it as *finalized* and calling its :c:member:`~PyTypeObject.tp_finalize` function, if it has one. This repeats until the cyclic isolate doesn't exist or all of the objects have been finalized." msgstr "" -#: ../../c-api/lifecycle.rst:142 -msgid "" -"When the garbage collector discovers a :term:`cyclic isolate` and all of the " -"objects in the group have already been marked as *finalized*, the garbage " -"collector clears one or more of the uncleared objects in the group (possibly " -"concurrently) by calling each's :c:member:`~PyTypeObject.tp_clear` " -"function. This repeats as long as the cyclic isolate still exists and not " -"all of the objects have been cleared." +msgid ":c:member:`~PyTypeObject.tp_finalize` is permitted to resurrect the object by adding a reference from outside the :term:`cyclic isolate`. The new reference causes the group of objects to no longer form a cyclic isolate (the reference cycle may still exist, but if it does the objects are no longer isolated)." +msgstr "" + +msgid "When the garbage collector discovers a :term:`cyclic isolate` and all of the objects in the group have already been marked as *finalized*, the garbage collector clears one or more of the uncleared objects in the group (possibly concurrently) by calling each's :c:member:`~PyTypeObject.tp_clear` function. This repeats as long as the cyclic isolate still exists and not all of the objects have been cleared." msgstr "" -#: ../../c-api/lifecycle.rst:151 msgid "Cyclic Isolate Destruction" msgstr "" -#: ../../c-api/lifecycle.rst:153 -msgid "" -"Listed below are the stages of life of a hypothetical :term:`cyclic isolate` " -"that continues to exist after each member object is finalized or cleared. " -"It is a memory leak if a cyclic isolate progresses through all of these " -"stages; it should vanish once all objects are cleared, if not sooner. A " -"cyclic isolate can vanish either because the reference cycle is broken or " -"because the objects are no longer isolated due to finalizer resurrection " -"(see :c:member:`~PyTypeObject.tp_finalize`)." +msgid "Listed below are the stages of life of a hypothetical :term:`cyclic isolate` that continues to exist after each member object is finalized or cleared. It is a memory leak if a cyclic isolate progresses through all of these stages; it should vanish once all objects are cleared, if not sooner. A cyclic isolate can vanish either because the reference cycle is broken or because the objects are no longer isolated due to finalizer resurrection (see :c:member:`~PyTypeObject.tp_finalize`)." msgstr "" -#: ../../c-api/lifecycle.rst:161 -msgid "" -"**Reachable** (not yet a cyclic isolate): All objects are in their normal, " -"reachable state. A reference cycle could exist, but an external reference " -"means the objects are not yet isolated." +msgid "**Reachable** (not yet a cyclic isolate): All objects are in their normal, reachable state. A reference cycle could exist, but an external reference means the objects are not yet isolated." msgstr "" -#: ../../c-api/lifecycle.rst:164 -msgid "" -"**Unreachable but consistent:** The final reference from outside the cyclic " -"group of objects has been removed, causing the objects to become isolated " -"(thus a cyclic isolate is born). None of the group's objects have been " -"finalized or cleared yet. The cyclic isolate remains at this stage until " -"some future run of the garbage collector (not necessarily the next run " -"because the next run might not scan every object)." +msgid "**Unreachable but consistent:** The final reference from outside the cyclic group of objects has been removed, causing the objects to become isolated (thus a cyclic isolate is born). None of the group's objects have been finalized or cleared yet. The cyclic isolate remains at this stage until some future run of the garbage collector (not necessarily the next run because the next run might not scan every object)." msgstr "" -#: ../../c-api/lifecycle.rst:170 -msgid "" -"**Mix of finalized and not finalized:** Objects in a cyclic isolate are " -"finalized one at a time, which means that there is a period of time when the " -"cyclic isolate is composed of a mix of finalized and non-finalized objects. " -"Finalization order is unspecified, so it can appear random. A finalized " -"object must behave in a sane manner when non-finalized objects interact with " -"it, and a non-finalized object must be able to tolerate the finalization of " -"an arbitrary subset of its referents." +msgid "**Mix of finalized and not finalized:** Objects in a cyclic isolate are finalized one at a time, which means that there is a period of time when the cyclic isolate is composed of a mix of finalized and non-finalized objects. Finalization order is unspecified, so it can appear random. A finalized object must behave in a sane manner when non-finalized objects interact with it, and a non-finalized object must be able to tolerate the finalization of an arbitrary subset of its referents." msgstr "" -#: ../../c-api/lifecycle.rst:177 -msgid "" -"**All finalized:** All objects in a cyclic isolate are finalized before any " -"of them are cleared." +msgid "**All finalized:** All objects in a cyclic isolate are finalized before any of them are cleared." msgstr "" -#: ../../c-api/lifecycle.rst:179 -msgid "" -"**Mix of finalized and cleared:** The objects can be cleared serially or " -"concurrently (but with the :term:`GIL` held); either way, some will finish " -"before others. A finalized object must be able to tolerate the clearing of " -"a subset of its referents. :pep:`442` calls this stage \"cyclic trash\"." +msgid "**Mix of finalized and cleared:** The objects can be cleared serially or concurrently (but with the :term:`GIL` held); either way, some will finish before others. A finalized object must be able to tolerate the clearing of a subset of its referents. :pep:`442` calls this stage \"cyclic trash\"." msgstr "" -#: ../../c-api/lifecycle.rst:183 -msgid "" -"**Leaked:** If a cyclic isolate still exists after all objects in the group " -"have been finalized and cleared, then the objects remain indefinitely " -"uncollectable (see :data:`gc.garbage`). It is a bug if a cyclic isolate " -"reaches this stage---it means the :c:member:`~PyTypeObject.tp_clear` methods " -"of the participating objects have failed to break the reference cycle as " -"required." +msgid "**Leaked:** If a cyclic isolate still exists after all objects in the group have been finalized and cleared, then the objects remain indefinitely uncollectable (see :data:`gc.garbage`). It is a bug if a cyclic isolate reaches this stage---it means the :c:member:`~PyTypeObject.tp_clear` methods of the participating objects have failed to break the reference cycle as required." msgstr "" -#: ../../c-api/lifecycle.rst:190 -msgid "" -"If :c:member:`~PyTypeObject.tp_clear` did not exist, then Python would have " -"no way to safely break a reference cycle. Simply destroying an object in a " -"cyclic isolate would result in a dangling pointer, triggering undefined " -"behavior when an object referencing the destroyed object is itself " -"destroyed. The clearing step makes object destruction a two-phase process: " -"first :c:member:`~PyTypeObject.tp_clear` is called to partially destroy the " -"objects enough to detangle them from each other, " -"then :c:member:`~PyTypeObject.tp_dealloc` is called to complete the " -"destruction." -msgstr "" - -#: ../../c-api/lifecycle.rst:199 -msgid "" -"Unlike clearing, finalization is not a phase of destruction. A finalized " -"object must still behave properly by continuing to fulfill its design " -"contracts. An object's finalizer is allowed to execute arbitrary Python " -"code, and is even allowed to prevent the impending destruction by adding a " -"reference. The finalizer is only related to destruction by call order---if " -"it runs, it runs before destruction, which starts " -"with :c:member:`~PyTypeObject.tp_clear` (if called) and concludes " -"with :c:member:`~PyTypeObject.tp_dealloc`." +msgid "If :c:member:`~PyTypeObject.tp_clear` did not exist, then Python would have no way to safely break a reference cycle. Simply destroying an object in a cyclic isolate would result in a dangling pointer, triggering undefined behavior when an object referencing the destroyed object is itself destroyed. The clearing step makes object destruction a two-phase process: first :c:member:`~PyTypeObject.tp_clear` is called to partially destroy the objects enough to detangle them from each other, then :c:member:`~PyTypeObject.tp_dealloc` is called to complete the destruction." msgstr "" -#: ../../c-api/lifecycle.rst:207 -msgid "" -"The finalization step is not necessary to safely reclaim the objects in a " -"cyclic isolate, but its existence makes it easier to design types that " -"behave in a sane manner when objects are cleared. Clearing an object might " -"necessarily leave it in a broken, partially destroyed state---it might be " -"unsafe to call any of the cleared object's methods or access any of its " -"attributes. With finalization, only finalized objects can possibly interact " -"with cleared objects; non-finalized objects are guaranteed to interact with " -"only non-cleared (but potentially finalized) objects." +msgid "Unlike clearing, finalization is not a phase of destruction. A finalized object must still behave properly by continuing to fulfill its design contracts. An object's finalizer is allowed to execute arbitrary Python code, and is even allowed to prevent the impending destruction by adding a reference. The finalizer is only related to destruction by call order---if it runs, it runs before destruction, which starts with :c:member:`~PyTypeObject.tp_clear` (if called) and concludes with :c:member:`~PyTypeObject.tp_dealloc`." +msgstr "" + +msgid "The finalization step is not necessary to safely reclaim the objects in a cyclic isolate, but its existence makes it easier to design types that behave in a sane manner when objects are cleared. Clearing an object might necessarily leave it in a broken, partially destroyed state---it might be unsafe to call any of the cleared object's methods or access any of its attributes. With finalization, only finalized objects can possibly interact with cleared objects; non-finalized objects are guaranteed to interact with only non-cleared (but potentially finalized) objects." msgstr "" -#: ../../c-api/lifecycle.rst:216 msgid "To summarize the possible interactions:" msgstr "" -#: ../../c-api/lifecycle.rst:218 -msgid "" -"A non-finalized object might have references to or from non-finalized and " -"finalized objects, but not to or from cleared objects." +msgid "A non-finalized object might have references to or from non-finalized and finalized objects, but not to or from cleared objects." msgstr "" -#: ../../c-api/lifecycle.rst:220 -msgid "" -"A finalized object might have references to or from non-finalized, " -"finalized, and cleared objects." +msgid "A finalized object might have references to or from non-finalized, finalized, and cleared objects." msgstr "" -#: ../../c-api/lifecycle.rst:222 -msgid "" -"A cleared object might have references to or from finalized and cleared " -"objects, but not to or from non-finalized objects." +msgid "A cleared object might have references to or from finalized and cleared objects, but not to or from non-finalized objects." +msgstr "" + +msgid "Without any reference cycles, an object can be simply destroyed once its last reference is deleted; the finalization and clearing steps are not necessary to safely reclaim unused objects. However, it can be useful to automatically call :c:member:`~PyTypeObject.tp_finalize` and :c:member:`~PyTypeObject.tp_clear` before destruction anyway because type design is simplified when all objects always experience the same series of events regardless of whether they participated in a cyclic isolate. Python currently only calls :c:member:`~PyTypeObject.tp_finalize` and :c:member:`~PyTypeObject.tp_clear` as needed to destroy a cyclic isolate; this may change in a future version." msgstr "" -#: ../../c-api/lifecycle.rst:225 -msgid "" -"Without any reference cycles, an object can be simply destroyed once its " -"last reference is deleted; the finalization and clearing steps are not " -"necessary to safely reclaim unused objects. However, it can be useful to " -"automatically call :c:member:`~PyTypeObject.tp_finalize` " -"and :c:member:`~PyTypeObject.tp_clear` before destruction anyway because " -"type design is simplified when all objects always experience the same series " -"of events regardless of whether they participated in a cyclic isolate. " -"Python currently only calls :c:member:`~PyTypeObject.tp_finalize` " -"and :c:member:`~PyTypeObject.tp_clear` as needed to destroy a cyclic " -"isolate; this may change in a future version." -msgstr "" - -#: ../../c-api/lifecycle.rst:237 msgid "Functions" msgstr "" -#: ../../c-api/lifecycle.rst:239 msgid "To allocate and free memory, see :ref:`allocating-objects`." msgstr "" -#: ../../c-api/lifecycle.rst:244 -msgid "" -"Finalizes the object as described in :c:member:`~PyTypeObject.tp_finalize`. " -"Call this function (or :c:func:`PyObject_CallFinalizerFromDealloc`) instead " -"of calling :c:member:`~PyTypeObject.tp_finalize` directly because this " -"function may deduplicate multiple calls to :c:member:`!tp_finalize`. " -"Currently, calls are only deduplicated if the type supports garbage " -"collection (i.e., the :c:macro:`Py_TPFLAGS_HAVE_GC` flag is set); this may " -"change in the future." +msgid "Finalizes the object as described in :c:member:`~PyTypeObject.tp_finalize`. Call this function (or :c:func:`PyObject_CallFinalizerFromDealloc`) instead of calling :c:member:`~PyTypeObject.tp_finalize` directly because this function may deduplicate multiple calls to :c:member:`!tp_finalize`. Currently, calls are only deduplicated if the type supports garbage collection (i.e., the :c:macro:`Py_TPFLAGS_HAVE_GC` flag is set); this may change in the future." msgstr "" -#: ../../c-api/lifecycle.rst:257 -msgid "" -"Same as :c:func:`PyObject_CallFinalizer` but meant to be called at the " -"beginning of the object's destructor (:c:member:`~PyTypeObject.tp_dealloc`). " -"There must not be any references to the object. If the object's finalizer " -"resurrects the object, this function returns -1; no further destruction " -"should happen. Otherwise, this function returns 0 and destruction can " -"continue normally." +msgid "Same as :c:func:`PyObject_CallFinalizer` but meant to be called at the beginning of the object's destructor (:c:member:`~PyTypeObject.tp_dealloc`). There must not be any references to the object. If the object's finalizer resurrects the object, this function returns -1; no further destruction should happen. Otherwise, this function returns 0 and destruction can continue normally." msgstr "" -#: ../../c-api/lifecycle.rst:268 msgid ":c:member:`~PyTypeObject.tp_dealloc` for example code." msgstr "" diff --git a/c-api/list.po b/c-api/list.po index aa6e5696..0ea2bcf7 100644 --- a/c-api/list.po +++ b/c-api/list.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:49+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -22,241 +22,116 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../c-api/list.rst:6 msgid "List Objects" msgstr "" -#: ../../c-api/list.rst:13 msgid "This subtype of :c:type:`PyObject` represents a Python list object." msgstr "" -#: ../../c-api/list.rst:18 -msgid "" -"This instance of :c:type:`PyTypeObject` represents the Python list type. " -"This is the same object as :class:`list` in the Python layer." +msgid "This instance of :c:type:`PyTypeObject` represents the Python list type. This is the same object as :class:`list` in the Python layer." msgstr "" -#: ../../c-api/list.rst:24 -msgid "" -"Return true if *p* is a list object or an instance of a subtype of the list " -"type. This function always succeeds." +msgid "Return true if *p* is a list object or an instance of a subtype of the list type. This function always succeeds." msgstr "" -#: ../../c-api/list.rst:30 -msgid "" -"Return true if *p* is a list object, but not an instance of a subtype of the " -"list type. This function always succeeds." +msgid "Return true if *p* is a list object, but not an instance of a subtype of the list type. This function always succeeds." msgstr "" -#: ../../c-api/list.rst:36 msgid "Return a new list of length *len* on success, or ``NULL`` on failure." msgstr "" -#: ../../c-api/list.rst:40 -msgid "" -"If *len* is greater than zero, the returned list object's items are set to " -"``NULL``. Thus you cannot use abstract API functions such " -"as :c:func:`PySequence_SetItem` or expose the object to Python code before " -"setting all items to a real object with :c:func:`PyList_SetItem` " -"or :c:func:`PyList_SET_ITEM()`. The following APIs are safe APIs before the " -"list is fully initialized: :c:func:`PyList_SetItem()` " -"and :c:func:`PyList_SET_ITEM()`." +msgid "If *len* is greater than zero, the returned list object's items are set to ``NULL``. Thus you cannot use abstract API functions such as :c:func:`PySequence_SetItem` or expose the object to Python code before setting all items to a real object with :c:func:`PyList_SetItem` or :c:func:`PyList_SET_ITEM()`. The following APIs are safe APIs before the list is fully initialized: :c:func:`PyList_SetItem()` and :c:func:`PyList_SET_ITEM()`." msgstr "" -#: ../../c-api/list.rst:53 -msgid "" -"Return the length of the list object in *list*; this is equivalent to " -"``len(list)`` on a list object." +msgid "Return the length of the list object in *list*; this is equivalent to ``len(list)`` on a list object." msgstr "" -#: ../../c-api/list.rst:59 msgid "Similar to :c:func:`PyList_Size`, but without error checking." msgstr "" -#: ../../c-api/list.rst:64 -msgid "" -"Return the object at position *index* in the list pointed to by *list*. The " -"position must be non-negative; indexing from the end of the list is not " -"supported. If *index* is out of bounds (:code:`<0 or >=len(list)`), return " -"``NULL`` and set an :exc:`IndexError` exception." +msgid "Return the object at position *index* in the list pointed to by *list*. The position must be non-negative; indexing from the end of the list is not supported. If *index* is out of bounds (:code:`<0 or >=len(list)`), return ``NULL`` and set an :exc:`IndexError` exception." msgstr "" -#: ../../c-api/list.rst:74 -msgid "" -"Like :c:func:`PyList_GetItemRef`, but returns a :term:`borrowed reference` " -"instead of a :term:`strong reference`." +msgid "Like :c:func:`PyList_GetItemRef`, but returns a :term:`borrowed reference` instead of a :term:`strong reference`." msgstr "" -#: ../../c-api/list.rst:79 ../../c-api/list.rst:91 -msgid "" -"In the :term:`free-threaded build`, the returned :term:`borrowed reference` " -"may become invalid if another thread modifies the list concurrently. " -"Prefer :c:func:`PyList_GetItemRef`, which returns a :term:`strong reference`." +msgid "In the :term:`free-threaded build`, the returned :term:`borrowed reference` may become invalid if another thread modifies the list concurrently. Prefer :c:func:`PyList_GetItemRef`, which returns a :term:`strong reference`." msgstr "" -#: ../../c-api/list.rst:87 msgid "Similar to :c:func:`PyList_GetItem`, but without error checking." msgstr "" -#: ../../c-api/list.rst:99 -msgid "" -"Set the item at index *index* in list to *item*. Return ``0`` on success. " -"If *index* is out of bounds, return ``-1`` and set an :exc:`IndexError` " -"exception." +msgid "Set the item at index *index* in list to *item*. Return ``0`` on success. If *index* is out of bounds, return ``-1`` and set an :exc:`IndexError` exception." msgstr "" -#: ../../c-api/list.rst:105 -msgid "" -"This function \":term:`steals `\" a reference to *item*, even on " -"error. On success, it discards a reference to an item already in the list at " -"the affected position (unless it was ``NULL``)." +msgid "This function \":term:`steals `\" a reference to *item*, even on error. On success, it discards a reference to an item already in the list at the affected position (unless it was ``NULL``)." msgstr "" -#: ../../c-api/list.rst:113 -msgid "" -"Macro form of :c:func:`PyList_SetItem` without error checking. This is " -"normally only used to fill in new lists where there is no previous content." +msgid "Macro form of :c:func:`PyList_SetItem` without error checking. This is normally only used to fill in new lists where there is no previous content." msgstr "" -#: ../../c-api/list.rst:116 -msgid "" -"Bounds checking is performed as an assertion if Python is built " -"in :ref:`debug mode ` or :option:`with assertions <--with-" -"assertions>`." +msgid "Bounds checking is performed as an assertion if Python is built in :ref:`debug mode ` or :option:`with assertions <--with-assertions>`." msgstr "" -#: ../../c-api/list.rst:122 -msgid "" -"This macro \":term:`steals `\" a reference to *item*, and, " -"unlike :c:func:`PyList_SetItem`, does *not* discard a reference to any item " -"that is being replaced; any reference in *list* at position *i* will be " -"leaked." +msgid "This macro \":term:`steals `\" a reference to *item*, and, unlike :c:func:`PyList_SetItem`, does *not* discard a reference to any item that is being replaced; any reference in *list* at position *i* will be leaked." msgstr "" -#: ../../c-api/list.rst:129 -msgid "" -"In the :term:`free-threaded build`, this macro has no internal " -"synchronization. It is normally only used to fill in new lists where no " -"other thread has a reference to the list. If the list may be shared, " -"use :c:func:`PyList_SetItem` instead, which uses a :term:`per-object lock`." +msgid "In the :term:`free-threaded build`, this macro has no internal synchronization. It is normally only used to fill in new lists where no other thread has a reference to the list. If the list may be shared, use :c:func:`PyList_SetItem` instead, which uses a :term:`per-object lock`." msgstr "" -#: ../../c-api/list.rst:138 -msgid "" -"Insert the item *item* into list *list* in front of index *index*. Return " -"``0`` if successful; return ``-1`` and set an exception if unsuccessful. " -"Analogous to ``list.insert(index, item)``." +msgid "Insert the item *item* into list *list* in front of index *index*. Return ``0`` if successful; return ``-1`` and set an exception if unsuccessful. Analogous to ``list.insert(index, item)``." msgstr "" -#: ../../c-api/list.rst:145 -msgid "" -"Append the object *item* at the end of list *list*. Return ``0`` if " -"successful; return ``-1`` and set an exception if unsuccessful. Analogous " -"to ``list.append(item)``." +msgid "Append the object *item* at the end of list *list*. Return ``0`` if successful; return ``-1`` and set an exception if unsuccessful. Analogous to ``list.append(item)``." msgstr "" -#: ../../c-api/list.rst:152 -msgid "" -"Return a list of the objects in *list* containing the objects *between* " -"*low* and *high*. Return ``NULL`` and set an exception if unsuccessful. " -"Analogous to ``list[low:high]``. Indexing from the end of the list is not " -"supported." +msgid "Return a list of the objects in *list* containing the objects *between* *low* and *high*. Return ``NULL`` and set an exception if unsuccessful. Analogous to ``list[low:high]``. Indexing from the end of the list is not supported." msgstr "" -#: ../../c-api/list.rst:159 -msgid "" -"Set the slice of *list* between *low* and *high* to the contents of " -"*itemlist*. Analogous to ``list[low:high] = itemlist``. The *itemlist* may " -"be ``NULL``, indicating the assignment of an empty list (slice deletion). " -"Return ``0`` on success, ``-1`` on failure. Indexing from the end of the " -"list is not supported." +msgid "Set the slice of *list* between *low* and *high* to the contents of *itemlist*. Analogous to ``list[low:high] = itemlist``. The *itemlist* may be ``NULL``, indicating the assignment of an empty list (slice deletion). Return ``0`` on success, ``-1`` on failure. Indexing from the end of the list is not supported." msgstr "" -#: ../../c-api/list.rst:167 -msgid "" -"In the :term:`free-threaded build`, when *itemlist* is a :class:`list`, both " -"*list* and *itemlist* are locked for the duration of the operation. For " -"other iterables (or ``NULL``), only *list* is locked." +msgid "In the :term:`free-threaded build`, when *itemlist* is a :class:`list`, both *list* and *itemlist* are locked for the duration of the operation. For other iterables (or ``NULL``), only *list* is locked." msgstr "" -#: ../../c-api/list.rst:174 -msgid "" -"Extend *list* with the contents of *iterable*. This is the same as " -"``PyList_SetSlice(list, PY_SSIZE_T_MAX, PY_SSIZE_T_MAX, iterable)`` and " -"analogous to ``list.extend(iterable)`` or ``list += iterable``." +msgid "Extend *list* with the contents of *iterable*. This is the same as ``PyList_SetSlice(list, PY_SSIZE_T_MAX, PY_SSIZE_T_MAX, iterable)`` and analogous to ``list.extend(iterable)`` or ``list += iterable``." msgstr "" -#: ../../c-api/list.rst:178 -msgid "" -"Raise an exception and return ``-1`` if *list* is not a :class:`list` " -"object. Return 0 on success." +msgid "Raise an exception and return ``-1`` if *list* is not a :class:`list` object. Return 0 on success." msgstr "" -#: ../../c-api/list.rst:185 -msgid "" -"In the :term:`free-threaded build`, when *iterable* is " -"a :class:`list`, :class:`set`, :class:`dict`, or dict view, both *list* and " -"*iterable* (or its underlying dict) are locked for the duration of the " -"operation. For other iterables, only *list* is locked; *iterable* may be " -"concurrently modified by another thread." +msgid "In the :term:`free-threaded build`, when *iterable* is a :class:`list`, :class:`set`, :class:`dict`, or dict view, both *list* and *iterable* (or its underlying dict) are locked for the duration of the operation. For other iterables, only *list* is locked; *iterable* may be concurrently modified by another thread." msgstr "" -#: ../../c-api/list.rst:194 -msgid "" -"Remove all items from *list*. This is the same as ``PyList_SetSlice(list, " -"0, PY_SSIZE_T_MAX, NULL)`` and analogous to ``list.clear()`` or ``del " -"list[:]``." +msgid "Remove all items from *list*. This is the same as ``PyList_SetSlice(list, 0, PY_SSIZE_T_MAX, NULL)`` and analogous to ``list.clear()`` or ``del list[:]``." msgstr "" -#: ../../c-api/list.rst:198 -msgid "" -"Raise an exception and return ``-1`` if *list* is not a :class:`list` " -"object. Return 0 on success." +msgid "Raise an exception and return ``-1`` if *list* is not a :class:`list` object. Return 0 on success." msgstr "" -#: ../../c-api/list.rst:206 -msgid "" -"Sort the items of *list* in place. Return ``0`` on success, ``-1`` on " -"failure. This is equivalent to ``list.sort()``." +msgid "Sort the items of *list* in place. Return ``0`` on success, ``-1`` on failure. This is equivalent to ``list.sort()``." msgstr "" -#: ../../c-api/list.rst:211 -msgid "" -"In the :term:`free-threaded build`, element comparison " -"via :meth:`~object.__lt__` can execute arbitrary Python code, during which " -"the :term:`per-object lock` may be temporarily released. For built-in types " -"(:class:`str`, :class:`int`, :class:`float`), the lock is not released " -"during comparison." +msgid "In the :term:`free-threaded build`, element comparison via :meth:`~object.__lt__` can execute arbitrary Python code, during which the :term:`per-object lock` may be temporarily released. For built-in types (:class:`str`, :class:`int`, :class:`float`), the lock is not released during comparison." msgstr "" -#: ../../c-api/list.rst:220 -msgid "" -"Reverse the items of *list* in place. Return ``0`` on success, ``-1`` on " -"failure. This is the equivalent of ``list.reverse()``." +msgid "Reverse the items of *list* in place. Return ``0`` on success, ``-1`` on failure. This is the equivalent of ``list.reverse()``." msgstr "" -#: ../../c-api/list.rst:228 -msgid "" -"Return a new tuple object containing the contents of *list*; equivalent to " -"``tuple(list)``." +msgid "Return a new tuple object containing the contents of *list*; equivalent to ``tuple(list)``." msgstr "" -#: ../../c-api/list.rst:8 msgid "object" msgstr "" -#: ../../c-api/list.rst:8 msgid "list" msgstr "" -#: ../../c-api/list.rst:51 ../../c-api/list.rst:226 msgid "built-in function" msgstr "" -#: ../../c-api/list.rst:51 msgid "len" msgstr "" -#: ../../c-api/list.rst:226 msgid "tuple" msgstr "" diff --git a/c-api/long.po b/c-api/long.po index 8a70d236..f5da800e 100644 --- a/c-api/long.po +++ b/c-api/long.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:49+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,476 +24,234 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../c-api/long.rst:6 msgid "Integer Objects" msgstr "" -#: ../../c-api/long.rst:11 -msgid "" -"All integers are implemented as \"long\" integer objects of arbitrary size." +msgid "All integers are implemented as \"long\" integer objects of arbitrary size." msgstr "" -#: ../../c-api/long.rst:13 -msgid "" -"On error, most ``PyLong_As*`` APIs return ``(return type)-1`` which cannot " -"be distinguished from a number. Use :c:func:`PyErr_Occurred` to " -"disambiguate." +msgid "On error, most ``PyLong_As*`` APIs return ``(return type)-1`` which cannot be distinguished from a number. Use :c:func:`PyErr_Occurred` to disambiguate." msgstr "" -#: ../../c-api/long.rst:18 msgid "This subtype of :c:type:`PyObject` represents a Python integer object." msgstr "" -#: ../../c-api/long.rst:23 -msgid "" -"This instance of :c:type:`PyTypeObject` represents the Python integer type. " -"This is the same object as :class:`int` in the Python layer." +msgid "This instance of :c:type:`PyTypeObject` represents the Python integer type. This is the same object as :class:`int` in the Python layer." msgstr "" -#: ../../c-api/long.rst:29 -msgid "" -"Return true if its argument is a :c:type:`PyLongObject` or a subtype " -"of :c:type:`PyLongObject`. This function always succeeds." +msgid "Return true if its argument is a :c:type:`PyLongObject` or a subtype of :c:type:`PyLongObject`. This function always succeeds." msgstr "" -#: ../../c-api/long.rst:35 -msgid "" -"Return true if its argument is a :c:type:`PyLongObject`, but not a subtype " -"of :c:type:`PyLongObject`. This function always succeeds." +msgid "Return true if its argument is a :c:type:`PyLongObject`, but not a subtype of :c:type:`PyLongObject`. This function always succeeds." msgstr "" -#: ../../c-api/long.rst:41 -msgid "" -"Return a new :c:type:`PyLongObject` object from *v*, or ``NULL`` on failure." +msgid "Return a new :c:type:`PyLongObject` object from *v*, or ``NULL`` on failure." msgstr "" -#: ../../c-api/long.rst:45 -msgid "" -"CPython keeps an array of integer objects for all integers between ``-5`` " -"and ``256``. When you create an int in that range you actually just get " -"back a reference to the existing object." +msgid "CPython keeps an array of integer objects for all integers between ``-5`` and ``256``. When you create an int in that range you actually just get back a reference to the existing object." msgstr "" -#: ../../c-api/long.rst:52 -msgid "" -"Return a new :c:type:`PyLongObject` object from a C :c:expr:`unsigned long`, " -"or ``NULL`` on failure." +msgid "Return a new :c:type:`PyLongObject` object from a C :c:expr:`unsigned long`, or ``NULL`` on failure." msgstr "" -#: ../../c-api/long.rst:58 -msgid "" -"Return a new :c:type:`PyLongObject` object from a C :c:type:`Py_ssize_t`, or " -"``NULL`` on failure." +msgid "Return a new :c:type:`PyLongObject` object from a C :c:type:`Py_ssize_t`, or ``NULL`` on failure." msgstr "" -#: ../../c-api/long.rst:64 -msgid "" -"Return a new :c:type:`PyLongObject` object from a C :c:type:`size_t`, or " -"``NULL`` on failure." +msgid "Return a new :c:type:`PyLongObject` object from a C :c:type:`size_t`, or ``NULL`` on failure." msgstr "" -#: ../../c-api/long.rst:70 -msgid "" -"Return a new :c:type:`PyLongObject` object from a C :c:expr:`long long`, or " -"``NULL`` on failure." +msgid "Return a new :c:type:`PyLongObject` object from a C :c:expr:`long long`, or ``NULL`` on failure." msgstr "" -#: ../../c-api/long.rst:76 -msgid "" -"Return a new :c:type:`PyLongObject` object from a C :c:expr:`unsigned long " -"long`, or ``NULL`` on failure." +msgid "Return a new :c:type:`PyLongObject` object from a C :c:expr:`unsigned long long`, or ``NULL`` on failure." msgstr "" -#: ../../c-api/long.rst:83 -msgid "" -"Return a new :c:type:`PyLongObject` object from a signed C :c:expr:`int32_t` " -"or :c:expr:`int64_t`, or ``NULL`` with an exception set on failure." +msgid "Return a new :c:type:`PyLongObject` object from a signed C :c:expr:`int32_t` or :c:expr:`int64_t`, or ``NULL`` with an exception set on failure." msgstr "" -#: ../../c-api/long.rst:93 -msgid "" -"Return a new :c:type:`PyLongObject` object from an unsigned " -"C :c:expr:`uint32_t` or :c:expr:`uint64_t`, or ``NULL`` with an exception " -"set on failure." +msgid "Return a new :c:type:`PyLongObject` object from an unsigned C :c:expr:`uint32_t` or :c:expr:`uint64_t`, or ``NULL`` with an exception set on failure." msgstr "" -#: ../../c-api/long.rst:102 -msgid "" -"Return a new :c:type:`PyLongObject` object from the integer part of *v*, or " -"``NULL`` on failure." +msgid "Return a new :c:type:`PyLongObject` object from the integer part of *v*, or ``NULL`` on failure." msgstr "" -#: ../../c-api/long.rst:108 -msgid "" -"Return a new :c:type:`PyLongObject` based on the string value in *str*, " -"which is interpreted according to the radix in *base*, or ``NULL`` on " -"failure. If *pend* is non-``NULL``, *\\*pend* will point to the end of " -"*str* on success or to the first character that could not be processed on " -"error. If *base* is ``0``, *str* is interpreted using the :ref:`integers` " -"definition; in this case, leading zeros in a non-zero decimal number raises " -"a :exc:`ValueError`. If *base* is not ``0``, it must be between ``2`` and " -"``36``, inclusive. Leading and trailing whitespace and single underscores " -"after a base specifier and between digits are ignored. If there are no " -"digits or *str* is not NULL-terminated following the digits and trailing " -"whitespace, :exc:`ValueError` will be raised." -msgstr "" - -#: ../../c-api/long.rst:119 -msgid "" -":c:func:`PyLong_AsNativeBytes()` and :c:func:`PyLong_FromNativeBytes()` " -"functions can be used to convert a :c:type:`PyLongObject` to/from an array " -"of bytes in base ``256``." +msgid "Return a new :c:type:`PyLongObject` based on the string value in *str*, which is interpreted according to the radix in *base*, or ``NULL`` on failure. If *pend* is non-``NULL``, *\\*pend* will point to the end of *str* on success or to the first character that could not be processed on error. If *base* is ``0``, *str* is interpreted using the :ref:`integers` definition; in this case, leading zeros in a non-zero decimal number raises a :exc:`ValueError`. If *base* is not ``0``, it must be between ``2`` and ``36``, inclusive. Leading and trailing whitespace and single underscores after a base specifier and between digits are ignored. If there are no digits or *str* is not NULL-terminated following the digits and trailing whitespace, :exc:`ValueError` will be raised." msgstr "" -#: ../../c-api/long.rst:126 -msgid "" -"Convert a sequence of Unicode digits in the string *u* to a Python integer " -"value." +msgid ":c:func:`PyLong_AsNativeBytes()` and :c:func:`PyLong_FromNativeBytes()` functions can be used to convert a :c:type:`PyLongObject` to/from an array of bytes in base ``256``." msgstr "" -#: ../../c-api/long.rst:134 -msgid "" -"Create a Python integer from the pointer *p*. The pointer value can be " -"retrieved from the resulting value using :c:func:`PyLong_AsVoidPtr`." +msgid "Convert a sequence of Unicode digits in the string *u* to a Python integer value." msgstr "" -#: ../../c-api/long.rst:140 -msgid "" -"Create a Python integer from the value contained in the first *n_bytes* of " -"*buffer*, interpreted as a two's-complement signed number." +msgid "Create a Python integer from the pointer *p*. The pointer value can be retrieved from the resulting value using :c:func:`PyLong_AsVoidPtr`." msgstr "" -#: ../../c-api/long.rst:143 -msgid "" -"*flags* are as for :c:func:`PyLong_AsNativeBytes`. Passing ``-1`` will " -"select the native endian that CPython was compiled with and assume that the " -"most-significant bit is a sign bit. Passing " -"``Py_ASNATIVEBYTES_UNSIGNED_BUFFER`` will produce the same result as " -"calling :c:func:`PyLong_FromUnsignedNativeBytes`. Other flags are ignored." +msgid "Create a Python integer from the value contained in the first *n_bytes* of *buffer*, interpreted as a two's-complement signed number." msgstr "" -#: ../../c-api/long.rst:154 -msgid "" -"Create a Python integer from the value contained in the first *n_bytes* of " -"*buffer*, interpreted as an unsigned number." +msgid "*flags* are as for :c:func:`PyLong_AsNativeBytes`. Passing ``-1`` will select the native endian that CPython was compiled with and assume that the most-significant bit is a sign bit. Passing ``Py_ASNATIVEBYTES_UNSIGNED_BUFFER`` will produce the same result as calling :c:func:`PyLong_FromUnsignedNativeBytes`. Other flags are ignored." msgstr "" -#: ../../c-api/long.rst:157 -msgid "" -"*flags* are as for :c:func:`PyLong_AsNativeBytes`. Passing ``-1`` will " -"select the native endian that CPython was compiled with and assume that the " -"most-significant bit is not a sign bit. Flags other than endian are ignored." +msgid "Create a Python integer from the value contained in the first *n_bytes* of *buffer*, interpreted as an unsigned number." +msgstr "" + +msgid "*flags* are as for :c:func:`PyLong_AsNativeBytes`. Passing ``-1`` will select the native endian that CPython was compiled with and assume that the most-significant bit is not a sign bit. Flags other than endian are ignored." msgstr "" -#: ../../c-api/long.rst:166 msgid "Macro for creating a Python integer from a process identifier." msgstr "" -#: ../../c-api/long.rst:168 -msgid "" -"This can be defined as an alias to :c:func:`PyLong_FromLong` " -"or :c:func:`PyLong_FromLongLong`, depending on the size of the system's PID " -"type." +msgid "This can be defined as an alias to :c:func:`PyLong_FromLong` or :c:func:`PyLong_FromLongLong`, depending on the size of the system's PID type." msgstr "" -#: ../../c-api/long.rst:181 ../../c-api/long.rst:215 -msgid "" -"Return a C :c:expr:`long` representation of *obj*. If *obj* is not an " -"instance of :c:type:`PyLongObject`, first call its :meth:`~object.__index__` " -"method (if present) to convert it to a :c:type:`PyLongObject`." +msgid "Return a C :c:expr:`long` representation of *obj*. If *obj* is not an instance of :c:type:`PyLongObject`, first call its :meth:`~object.__index__` method (if present) to convert it to a :c:type:`PyLongObject`." msgstr "" -#: ../../c-api/long.rst:185 -msgid "" -"Raise :exc:`OverflowError` if the value of *obj* is out of range for " -"a :c:expr:`long`." +msgid "Raise :exc:`OverflowError` if the value of *obj* is out of range for a :c:expr:`long`." msgstr "" -#: ../../c-api/long.rst:188 ../../c-api/long.rst:224 ../../c-api/long.rst:245 -#: ../../c-api/long.rst:265 ../../c-api/long.rst:288 msgid "Returns ``-1`` on error. Use :c:func:`PyErr_Occurred` to disambiguate." msgstr "" -#: ../../c-api/long.rst:190 ../../c-api/long.rst:226 ../../c-api/long.rst:247 -#: ../../c-api/long.rst:269 ../../c-api/long.rst:353 ../../c-api/long.rst:373 msgid "Use :meth:`~object.__index__` if available." msgstr "" -#: ../../c-api/long.rst:193 ../../c-api/long.rst:229 ../../c-api/long.rst:250 -#: ../../c-api/long.rst:272 ../../c-api/long.rst:356 ../../c-api/long.rst:376 msgid "This function will no longer use :meth:`~object.__int__`." msgstr "" -#: ../../c-api/long.rst:200 -msgid "" -"Exactly equivalent to the preferred ``PyLong_AsLong``. In particular, it can " -"fail with :exc:`OverflowError` or another exception." +msgid "Exactly equivalent to the preferred ``PyLong_AsLong``. In particular, it can fail with :exc:`OverflowError` or another exception." msgstr "" -#: ../../c-api/long.rst:207 -msgid "" -"Similar to :c:func:`PyLong_AsLong`, but store the result in a " -"C :c:expr:`int` instead of a C :c:expr:`long`." +msgid "Similar to :c:func:`PyLong_AsLong`, but store the result in a C :c:expr:`int` instead of a C :c:expr:`long`." msgstr "" -#: ../../c-api/long.rst:219 -msgid "" -"If the value of *obj* is greater than :c:macro:`LONG_MAX` or less " -"than :c:macro:`LONG_MIN`, set *\\*overflow* to ``1`` or ``-1``, " -"respectively, and return ``-1``; otherwise, set *\\*overflow* to ``0``. If " -"any other exception occurs set *\\*overflow* to ``0`` and return ``-1`` as " -"usual." +msgid "If the value of *obj* is greater than :c:macro:`LONG_MAX` or less than :c:macro:`LONG_MIN`, set *\\*overflow* to ``1`` or ``-1``, respectively, and return ``-1``; otherwise, set *\\*overflow* to ``0``. If any other exception occurs set *\\*overflow* to ``0`` and return ``-1`` as usual." msgstr "" -#: ../../c-api/long.rst:238 ../../c-api/long.rst:256 -msgid "" -"Return a C :c:expr:`long long` representation of *obj*. If *obj* is not an " -"instance of :c:type:`PyLongObject`, first call its :meth:`~object.__index__` " -"method (if present) to convert it to a :c:type:`PyLongObject`." +msgid "Return a C :c:expr:`long long` representation of *obj*. If *obj* is not an instance of :c:type:`PyLongObject`, first call its :meth:`~object.__index__` method (if present) to convert it to a :c:type:`PyLongObject`." msgstr "" -#: ../../c-api/long.rst:242 -msgid "" -"Raise :exc:`OverflowError` if the value of *obj* is out of range for " -"a :c:expr:`long long`." +msgid "Raise :exc:`OverflowError` if the value of *obj* is out of range for a :c:expr:`long long`." msgstr "" -#: ../../c-api/long.rst:260 -msgid "" -"If the value of *obj* is greater than :c:macro:`LLONG_MAX` or less " -"than :c:macro:`LLONG_MIN`, set *\\*overflow* to ``1`` or ``-1``, " -"respectively, and return ``-1``; otherwise, set *\\*overflow* to ``0``. If " -"any other exception occurs set *\\*overflow* to ``0`` and return ``-1`` as " -"usual." +msgid "If the value of *obj* is greater than :c:macro:`LLONG_MAX` or less than :c:macro:`LLONG_MIN`, set *\\*overflow* to ``1`` or ``-1``, respectively, and return ``-1``; otherwise, set *\\*overflow* to ``0``. If any other exception occurs set *\\*overflow* to ``0`` and return ``-1`` as usual." msgstr "" -#: ../../c-api/long.rst:282 -msgid "" -"Return a C :c:type:`Py_ssize_t` representation of *pylong*. *pylong* must " -"be an instance of :c:type:`PyLongObject`." +msgid "Return a C :c:type:`Py_ssize_t` representation of *pylong*. *pylong* must be an instance of :c:type:`PyLongObject`." msgstr "" -#: ../../c-api/long.rst:285 -msgid "" -"Raise :exc:`OverflowError` if the value of *pylong* is out of range for " -"a :c:type:`Py_ssize_t`." +msgid "Raise :exc:`OverflowError` if the value of *pylong* is out of range for a :c:type:`Py_ssize_t`." msgstr "" -#: ../../c-api/long.rst:297 -msgid "" -"Return a C :c:expr:`unsigned long` representation of *pylong*. *pylong* " -"must be an instance of :c:type:`PyLongObject`." +msgid "Return a C :c:expr:`unsigned long` representation of *pylong*. *pylong* must be an instance of :c:type:`PyLongObject`." msgstr "" -#: ../../c-api/long.rst:300 -msgid "" -"Raise :exc:`OverflowError` if the value of *pylong* is out of range for " -"a :c:expr:`unsigned long`." +msgid "Raise :exc:`OverflowError` if the value of *pylong* is out of range for a :c:expr:`unsigned long`." msgstr "" -#: ../../c-api/long.rst:303 -msgid "" -"Returns ``(unsigned long)-1`` on error. Use :c:func:`PyErr_Occurred` to " -"disambiguate." +msgid "Returns ``(unsigned long)-1`` on error. Use :c:func:`PyErr_Occurred` to disambiguate." msgstr "" -#: ../../c-api/long.rst:313 -msgid "" -"Return a C :c:type:`size_t` representation of *pylong*. *pylong* must be an " -"instance of :c:type:`PyLongObject`." +msgid "Return a C :c:type:`size_t` representation of *pylong*. *pylong* must be an instance of :c:type:`PyLongObject`." msgstr "" -#: ../../c-api/long.rst:316 -msgid "" -"Raise :exc:`OverflowError` if the value of *pylong* is out of range for " -"a :c:type:`size_t`." +msgid "Raise :exc:`OverflowError` if the value of *pylong* is out of range for a :c:type:`size_t`." msgstr "" -#: ../../c-api/long.rst:319 -msgid "" -"Returns ``(size_t)-1`` on error. Use :c:func:`PyErr_Occurred` to " -"disambiguate." +msgid "Returns ``(size_t)-1`` on error. Use :c:func:`PyErr_Occurred` to disambiguate." msgstr "" -#: ../../c-api/long.rst:328 -msgid "" -"Return a C :c:expr:`unsigned long long` representation of *pylong*. " -"*pylong* must be an instance of :c:type:`PyLongObject`." +msgid "Return a C :c:expr:`unsigned long long` representation of *pylong*. *pylong* must be an instance of :c:type:`PyLongObject`." msgstr "" -#: ../../c-api/long.rst:331 -msgid "" -"Raise :exc:`OverflowError` if the value of *pylong* is out of range for " -"an :c:expr:`unsigned long long`." +msgid "Raise :exc:`OverflowError` if the value of *pylong* is out of range for an :c:expr:`unsigned long long`." msgstr "" -#: ../../c-api/long.rst:334 -msgid "" -"Returns ``(unsigned long long)-1`` on error. Use :c:func:`PyErr_Occurred` to " -"disambiguate." +msgid "Returns ``(unsigned long long)-1`` on error. Use :c:func:`PyErr_Occurred` to disambiguate." msgstr "" -#: ../../c-api/long.rst:337 -msgid "" -"A negative *pylong* now raises :exc:`OverflowError`, not :exc:`TypeError`." +msgid "A negative *pylong* now raises :exc:`OverflowError`, not :exc:`TypeError`." msgstr "" -#: ../../c-api/long.rst:343 -msgid "" -"Return a C :c:expr:`unsigned long` representation of *obj*. If *obj* is not " -"an instance of :c:type:`PyLongObject`, first call " -"its :meth:`~object.__index__` method (if present) to convert it to " -"a :c:type:`PyLongObject`." +msgid "Return a C :c:expr:`unsigned long` representation of *obj*. If *obj* is not an instance of :c:type:`PyLongObject`, first call its :meth:`~object.__index__` method (if present) to convert it to a :c:type:`PyLongObject`." msgstr "" -#: ../../c-api/long.rst:347 -msgid "" -"If the value of *obj* is out of range for an :c:expr:`unsigned long`, return " -"the reduction of that value modulo ``ULONG_MAX + 1``." +msgid "If the value of *obj* is out of range for an :c:expr:`unsigned long`, return the reduction of that value modulo ``ULONG_MAX + 1``." msgstr "" -#: ../../c-api/long.rst:350 -msgid "" -"Returns ``(unsigned long)-1`` on error. Use :c:func:`PyErr_Occurred` to " -"disambiguate." +msgid "Returns ``(unsigned long)-1`` on error. Use :c:func:`PyErr_Occurred` to disambiguate." msgstr "" -#: ../../c-api/long.rst:362 -msgid "" -"Return a C :c:expr:`unsigned long long` representation of *obj*. If *obj* " -"is not an instance of :c:type:`PyLongObject`, first call " -"its :meth:`~object.__index__` method (if present) to convert it to " -"a :c:type:`PyLongObject`." +msgid "Return a C :c:expr:`unsigned long long` representation of *obj*. If *obj* is not an instance of :c:type:`PyLongObject`, first call its :meth:`~object.__index__` method (if present) to convert it to a :c:type:`PyLongObject`." msgstr "" -#: ../../c-api/long.rst:367 -msgid "" -"If the value of *obj* is out of range for an :c:expr:`unsigned long long`, " -"return the reduction of that value modulo ``ULLONG_MAX + 1``." +msgid "If the value of *obj* is out of range for an :c:expr:`unsigned long long`, return the reduction of that value modulo ``ULLONG_MAX + 1``." msgstr "" -#: ../../c-api/long.rst:370 -msgid "" -"Returns ``(unsigned long long)-1`` on error. Use :c:func:`PyErr_Occurred` " -"to disambiguate." +msgid "Returns ``(unsigned long long)-1`` on error. Use :c:func:`PyErr_Occurred` to disambiguate." msgstr "" -#: ../../c-api/long.rst:383 -msgid "" -"Set *\\*value* to a signed C :c:expr:`int32_t` or :c:expr:`int64_t` " -"representation of *obj*." +msgid "Set *\\*value* to a signed C :c:expr:`int32_t` or :c:expr:`int64_t` representation of *obj*." msgstr "" -#: ../../c-api/long.rst:386 ../../c-api/long.rst:406 -msgid "" -"If *obj* is not an instance of :c:type:`PyLongObject`, first call " -"its :meth:`~object.__index__` method (if present) to convert it to " -"a :c:type:`PyLongObject`." +msgid "If *obj* is not an instance of :c:type:`PyLongObject`, first call its :meth:`~object.__index__` method (if present) to convert it to a :c:type:`PyLongObject`." msgstr "" -#: ../../c-api/long.rst:390 ../../c-api/long.rst:411 msgid "If the *obj* value is out of range, raise an :exc:`OverflowError`." msgstr "" -#: ../../c-api/long.rst:392 ../../c-api/long.rst:413 -msgid "" -"Set *\\*value* and return ``0`` on success. Set an exception and return " -"``-1`` on error." +msgid "Set *\\*value* and return ``0`` on success. Set an exception and return ``-1`` on error." msgstr "" -#: ../../c-api/long.rst:395 ../../c-api/long.rst:416 msgid "*value* must not be ``NULL``." msgstr "" -#: ../../c-api/long.rst:403 -msgid "" -"Set *\\*value* to an unsigned C :c:expr:`uint32_t` or :c:expr:`uint64_t` " -"representation of *obj*." +msgid "Set *\\*value* to an unsigned C :c:expr:`uint32_t` or :c:expr:`uint64_t` representation of *obj*." msgstr "" -#: ../../c-api/long.rst:410 msgid "If *obj* is negative, raise a :exc:`ValueError`." msgstr "" -#: ../../c-api/long.rst:423 -msgid "" -"Return a C :c:expr:`double` representation of *pylong*. *pylong* must be an " -"instance of :c:type:`PyLongObject`." +msgid "Return a C :c:expr:`double` representation of *pylong*. *pylong* must be an instance of :c:type:`PyLongObject`." msgstr "" -#: ../../c-api/long.rst:426 -msgid "" -"Raise :exc:`OverflowError` if the value of *pylong* is out of range for " -"a :c:expr:`double`." +msgid "Raise :exc:`OverflowError` if the value of *pylong* is out of range for a :c:expr:`double`." msgstr "" -#: ../../c-api/long.rst:429 -msgid "" -"Returns ``-1.0`` on error. Use :c:func:`PyErr_Occurred` to disambiguate." +msgid "Returns ``-1.0`` on error. Use :c:func:`PyErr_Occurred` to disambiguate." msgstr "" -#: ../../c-api/long.rst:434 -msgid "" -"Convert a Python integer *pylong* to a C :c:expr:`void` pointer. If *pylong* " -"cannot be converted, an :exc:`OverflowError` will be raised. This is only " -"assured to produce a usable :c:expr:`void` pointer for values created " -"with :c:func:`PyLong_FromVoidPtr`." +msgid "Convert a Python integer *pylong* to a C :c:expr:`void` pointer. If *pylong* cannot be converted, an :exc:`OverflowError` will be raised. This is only assured to produce a usable :c:expr:`void` pointer for values created with :c:func:`PyLong_FromVoidPtr`." msgstr "" -#: ../../c-api/long.rst:439 -msgid "" -"Returns ``NULL`` on error. Use :c:func:`PyErr_Occurred` to disambiguate." +msgid "Returns ``NULL`` on error. Use :c:func:`PyErr_Occurred` to disambiguate." msgstr "" -#: ../../c-api/long.rst:444 -msgid "" -"Copy the Python integer value *pylong* to a native *buffer* of size " -"*n_bytes*. The *flags* can be set to ``-1`` to behave similarly to a C cast, " -"or to values documented below to control the behavior." +msgid "Copy the Python integer value *pylong* to a native *buffer* of size *n_bytes*. The *flags* can be set to ``-1`` to behave similarly to a C cast, or to values documented below to control the behavior." msgstr "" -#: ../../c-api/long.rst:448 -msgid "" -"Returns ``-1`` with an exception raised on error. This may happen if " -"*pylong* cannot be interpreted as an integer, or if *pylong* was negative " -"and the ``Py_ASNATIVEBYTES_REJECT_NEGATIVE`` flag was set." +msgid "Returns ``-1`` with an exception raised on error. This may happen if *pylong* cannot be interpreted as an integer, or if *pylong* was negative and the ``Py_ASNATIVEBYTES_REJECT_NEGATIVE`` flag was set." msgstr "" -#: ../../c-api/long.rst:452 -msgid "" -"Otherwise, returns the number of bytes required to store the value. If this " -"is equal to or less than *n_bytes*, the entire value was copied. All " -"*n_bytes* of the buffer are written: remaining bytes filled by copies of the " -"sign bit." +msgid "Otherwise, returns the number of bytes required to store the value. If this is equal to or less than *n_bytes*, the entire value was copied. All *n_bytes* of the buffer are written: remaining bytes filled by copies of the sign bit." msgstr "" -#: ../../c-api/long.rst:457 -msgid "" -"If the returned value is greater than *n_bytes*, the value was truncated: as " -"many of the lowest bits of the value as could fit are written, and the " -"higher bits are ignored. This matches the typical behavior of a C-style " -"downcast." +msgid "If the returned value is greater than *n_bytes*, the value was truncated: as many of the lowest bits of the value as could fit are written, and the higher bits are ignored. This matches the typical behavior of a C-style downcast." msgstr "" -#: ../../c-api/long.rst:464 -msgid "" -"Overflow is not considered an error. If the returned value is larger than " -"*n_bytes*, most significant bits were discarded." +msgid "Overflow is not considered an error. If the returned value is larger than *n_bytes*, most significant bits were discarded." msgstr "" -#: ../../c-api/long.rst:467 msgid "``0`` will never be returned." msgstr "" -#: ../../c-api/long.rst:469 msgid "Values are always copied as two's-complement." msgstr "" -#: ../../c-api/long.rst:471 msgid "Usage example::" msgstr "" -#: ../../c-api/long.rst:473 msgid "" "int32_t value;\n" "Py_ssize_t bytes = PyLong_AsNativeBytes(pylong, &value, sizeof(value), -1);\n" @@ -510,26 +268,15 @@ msgid "" "}" msgstr "" -#: ../../c-api/long.rst:487 -msgid "" -"Passing zero to *n_bytes* will return the size of a buffer that would be " -"large enough to hold the value. This may be larger than technically " -"necessary, but not unreasonably so. If *n_bytes=0*, *buffer* may be ``NULL``." +msgid "Passing zero to *n_bytes* will return the size of a buffer that would be large enough to hold the value. This may be larger than technically necessary, but not unreasonably so. If *n_bytes=0*, *buffer* may be ``NULL``." msgstr "" -#: ../../c-api/long.rst:494 -msgid "" -"Passing *n_bytes=0* to this function is not an accurate way to determine the " -"bit length of the value." +msgid "Passing *n_bytes=0* to this function is not an accurate way to determine the bit length of the value." msgstr "" -#: ../../c-api/long.rst:497 -msgid "" -"To get at the entire Python value of an unknown size, the function can be " -"called twice: first to determine the buffer size, then to fill it::" +msgid "To get at the entire Python value of an unknown size, the function can be called twice: first to determine the buffer size, then to fill it::" msgstr "" -#: ../../c-api/long.rst:500 msgid "" "// Ask how much space we need.\n" "Py_ssize_t expected = PyLong_AsNativeBytes(pylong, NULL, 0, -1);\n" @@ -560,516 +307,296 @@ msgid "" "free(bignum);" msgstr "" -#: ../../c-api/long.rst:528 -msgid "" -"*flags* is either ``-1`` (``Py_ASNATIVEBYTES_DEFAULTS``) to select defaults " -"that behave most like a C cast, or a combination of the other flags in the " -"table below. Note that ``-1`` cannot be combined with other flags." +msgid "*flags* is either ``-1`` (``Py_ASNATIVEBYTES_DEFAULTS``) to select defaults that behave most like a C cast, or a combination of the other flags in the table below. Note that ``-1`` cannot be combined with other flags." msgstr "" -#: ../../c-api/long.rst:533 -msgid "" -"Currently, ``-1`` corresponds to ``Py_ASNATIVEBYTES_NATIVE_ENDIAN | " -"Py_ASNATIVEBYTES_UNSIGNED_BUFFER``." +msgid "Currently, ``-1`` corresponds to ``Py_ASNATIVEBYTES_NATIVE_ENDIAN | Py_ASNATIVEBYTES_UNSIGNED_BUFFER``." msgstr "" -#: ../../c-api/long.rst:539 msgid "Flag" msgstr "" -#: ../../c-api/long.rst:539 msgid "Value" msgstr "" -#: ../../c-api/long.rst:541 msgid "``-1``" msgstr "" -#: ../../c-api/long.rst:542 msgid "``0``" msgstr "" -#: ../../c-api/long.rst:543 msgid "``1``" msgstr "" -#: ../../c-api/long.rst:544 msgid "``3``" msgstr "" -#: ../../c-api/long.rst:545 msgid "``4``" msgstr "" -#: ../../c-api/long.rst:546 msgid "``8``" msgstr "" -#: ../../c-api/long.rst:547 msgid "``16``" msgstr "" -#: ../../c-api/long.rst:550 -msgid "" -"Specifying ``Py_ASNATIVEBYTES_NATIVE_ENDIAN`` will override any other endian " -"flags. Passing ``2`` is reserved." +msgid "Specifying ``Py_ASNATIVEBYTES_NATIVE_ENDIAN`` will override any other endian flags. Passing ``2`` is reserved." msgstr "" -#: ../../c-api/long.rst:553 -msgid "" -"By default, sufficient buffer will be requested to include a sign bit. For " -"example, when converting 128 with *n_bytes=1*, the function will return 2 " -"(or more) in order to store a zero sign bit." +msgid "By default, sufficient buffer will be requested to include a sign bit. For example, when converting 128 with *n_bytes=1*, the function will return 2 (or more) in order to store a zero sign bit." msgstr "" -#: ../../c-api/long.rst:557 -msgid "" -"If ``Py_ASNATIVEBYTES_UNSIGNED_BUFFER`` is specified, a zero sign bit will " -"be omitted from size calculations. This allows, for example, 128 to fit in a " -"single-byte buffer. If the destination buffer is later treated as signed, a " -"positive input value may become negative. Note that the flag does not affect " -"handling of negative values: for those, space for a sign bit is always " -"requested." +msgid "If ``Py_ASNATIVEBYTES_UNSIGNED_BUFFER`` is specified, a zero sign bit will be omitted from size calculations. This allows, for example, 128 to fit in a single-byte buffer. If the destination buffer is later treated as signed, a positive input value may become negative. Note that the flag does not affect handling of negative values: for those, space for a sign bit is always requested." msgstr "" -#: ../../c-api/long.rst:564 -msgid "" -"Specifying ``Py_ASNATIVEBYTES_REJECT_NEGATIVE`` causes an exception to be " -"set if *pylong* is negative. Without this flag, negative values will be " -"copied provided there is enough space for at least one sign bit, regardless " -"of whether ``Py_ASNATIVEBYTES_UNSIGNED_BUFFER`` was specified." +msgid "Specifying ``Py_ASNATIVEBYTES_REJECT_NEGATIVE`` causes an exception to be set if *pylong* is negative. Without this flag, negative values will be copied provided there is enough space for at least one sign bit, regardless of whether ``Py_ASNATIVEBYTES_UNSIGNED_BUFFER`` was specified." msgstr "" -#: ../../c-api/long.rst:569 -msgid "" -"If ``Py_ASNATIVEBYTES_ALLOW_INDEX`` is specified and a non-integer value is " -"passed, its :meth:`~object.__index__` method will be called first. This may " -"result in Python code executing and other threads being allowed to run, " -"which could cause changes to other objects or values in use. When *flags* is " -"``-1``, this option is not set, and non-integer values will " -"raise :exc:`TypeError`." +msgid "If ``Py_ASNATIVEBYTES_ALLOW_INDEX`` is specified and a non-integer value is passed, its :meth:`~object.__index__` method will be called first. This may result in Python code executing and other threads being allowed to run, which could cause changes to other objects or values in use. When *flags* is ``-1``, this option is not set, and non-integer values will raise :exc:`TypeError`." msgstr "" -#: ../../c-api/long.rst:578 -msgid "" -"With the default *flags* (``-1``, or *UNSIGNED_BUFFER* without " -"*REJECT_NEGATIVE*), multiple Python integers can map to a single value " -"without overflow. For example, both ``255`` and ``-1`` fit a single-byte " -"buffer and set all its bits. This matches typical C cast behavior." +msgid "With the default *flags* (``-1``, or *UNSIGNED_BUFFER* without *REJECT_NEGATIVE*), multiple Python integers can map to a single value without overflow. For example, both ``255`` and ``-1`` fit a single-byte buffer and set all its bits. This matches typical C cast behavior." msgstr "" -#: ../../c-api/long.rst:589 msgid "Macro for converting a Python integer into a process identifier." msgstr "" -#: ../../c-api/long.rst:591 -msgid "" -"This can be defined as an alias " -"to :c:func:`PyLong_AsLong`, :c:func:`PyLong_FromLongLong`, " -"or :c:func:`PyLong_AsInt`, depending on the size of the system's PID type." +msgid "This can be defined as an alias to :c:func:`PyLong_AsLong`, :c:func:`PyLong_FromLongLong`, or :c:func:`PyLong_AsInt`, depending on the size of the system's PID type." msgstr "" -#: ../../c-api/long.rst:600 msgid "Get the sign of the integer object *obj*." msgstr "" -#: ../../c-api/long.rst:602 -msgid "" -"On success, set *\\*sign* to the integer sign (0, -1 or +1 for zero, " -"negative or positive integer, respectively) and return 0." +msgid "On success, set *\\*sign* to the integer sign (0, -1 or +1 for zero, negative or positive integer, respectively) and return 0." msgstr "" -#: ../../c-api/long.rst:605 -msgid "" -"On failure, return -1 with an exception set. This function always succeeds " -"if *obj* is a :c:type:`PyLongObject` or its subtype." +msgid "On failure, return -1 with an exception set. This function always succeeds if *obj* is a :c:type:`PyLongObject` or its subtype." msgstr "" -#: ../../c-api/long.rst:613 msgid "Check if the integer object *obj* is positive (``obj > 0``)." msgstr "" -#: ../../c-api/long.rst:615 -msgid "" -"If *obj* is an instance of :c:type:`PyLongObject` or its subtype, return " -"``1`` when it's positive and ``0`` otherwise. Else set an exception and " -"return ``-1``." +msgid "If *obj* is an instance of :c:type:`PyLongObject` or its subtype, return ``1`` when it's positive and ``0`` otherwise. Else set an exception and return ``-1``." msgstr "" -#: ../../c-api/long.rst:624 msgid "Check if the integer object *obj* is negative (``obj < 0``)." msgstr "" -#: ../../c-api/long.rst:626 -msgid "" -"If *obj* is an instance of :c:type:`PyLongObject` or its subtype, return " -"``1`` when it's negative and ``0`` otherwise. Else set an exception and " -"return ``-1``." +msgid "If *obj* is an instance of :c:type:`PyLongObject` or its subtype, return ``1`` when it's negative and ``0`` otherwise. Else set an exception and return ``-1``." msgstr "" -#: ../../c-api/long.rst:635 msgid "Check if the integer object *obj* is zero." msgstr "" -#: ../../c-api/long.rst:637 -msgid "" -"If *obj* is an instance of :c:type:`PyLongObject` or its subtype, return " -"``1`` when it's zero and ``0`` otherwise. Else set an exception and return " -"``-1``." +msgid "If *obj* is an instance of :c:type:`PyLongObject` or its subtype, return ``1`` when it's zero and ``0`` otherwise. Else set an exception and return ``-1``." msgstr "" -#: ../../c-api/long.rst:646 -msgid "" -"On success, return a read only :term:`named tuple`, that holds information " -"about Python's internal representation of integers. See :data:`sys.int_info` " -"for description of individual fields." +msgid "On success, return a read only :term:`named tuple`, that holds information about Python's internal representation of integers. See :data:`sys.int_info` for description of individual fields." msgstr "" -#: ../../c-api/long.rst:650 msgid "On failure, return ``NULL`` with an exception set." msgstr "" -#: ../../c-api/long.rst:657 msgid "Return 1 if *op* is compact, 0 otherwise." msgstr "" -#: ../../c-api/long.rst:659 -msgid "" -"This function makes it possible for performance-critical code to implement a " -"“fast path” for small integers. For compact values " -"use :c:func:`PyUnstable_Long_CompactValue`; for others fall back to " -"a :c:func:`PyLong_As* ` function " -"or :c:func:`PyLong_AsNativeBytes`." +msgid "This function makes it possible for performance-critical code to implement a “fast path” for small integers. For compact values use :c:func:`PyUnstable_Long_CompactValue`; for others fall back to a :c:func:`PyLong_As* ` function or :c:func:`PyLong_AsNativeBytes`." msgstr "" -#: ../../c-api/long.rst:665 msgid "The speedup is expected to be negligible for most users." msgstr "" -#: ../../c-api/long.rst:667 -msgid "" -"Exactly what values are considered compact is an implementation detail and " -"is subject to change." +msgid "Exactly what values are considered compact is an implementation detail and is subject to change." msgstr "" -#: ../../c-api/long.rst:675 -msgid "" -"If *op* is compact, as determined by :c:func:`PyUnstable_Long_IsCompact`, " -"return its value." +msgid "If *op* is compact, as determined by :c:func:`PyUnstable_Long_IsCompact`, return its value." msgstr "" -#: ../../c-api/long.rst:678 msgid "Otherwise, the return value is undefined." msgstr "" -#: ../../c-api/long.rst:684 msgid "Export API" msgstr "" -#: ../../c-api/long.rst:690 -msgid "" -"Layout of an array of \"digits\" (\"limbs\" in the GMP terminology), used to " -"represent absolute value for arbitrary precision integers." +msgid "Layout of an array of \"digits\" (\"limbs\" in the GMP terminology), used to represent absolute value for arbitrary precision integers." msgstr "" -#: ../../c-api/long.rst:693 -msgid "" -"Use :c:func:`PyLong_GetNativeLayout` to get the native layout of " -"Python :class:`int` objects, used internally for integers with \"big " -"enough\" absolute value." +msgid "Use :c:func:`PyLong_GetNativeLayout` to get the native layout of Python :class:`int` objects, used internally for integers with \"big enough\" absolute value." msgstr "" -#: ../../c-api/long.rst:697 -msgid "" -"See also :data:`sys.int_info` which exposes similar information in Python." +msgid "See also :data:`sys.int_info` which exposes similar information in Python." msgstr "" -#: ../../c-api/long.rst:701 -msgid "" -"Bits per digit. For example, a 15 bit digit means that bits 0-14 contain " -"meaningful information." +msgid "Bits per digit. For example, a 15 bit digit means that bits 0-14 contain meaningful information." msgstr "" -#: ../../c-api/long.rst:706 -msgid "" -"Digit size in bytes. For example, a 15 bit digit will require at least 2 " -"bytes." +msgid "Digit size in bytes. For example, a 15 bit digit will require at least 2 bytes." msgstr "" -#: ../../c-api/long.rst:711 msgid "Digits order:" msgstr "" -#: ../../c-api/long.rst:713 msgid "``1`` for most significant digit first" msgstr "" -#: ../../c-api/long.rst:714 msgid "``-1`` for least significant digit first" msgstr "" -#: ../../c-api/long.rst:718 msgid "Digit endianness:" msgstr "" -#: ../../c-api/long.rst:720 msgid "``1`` for most significant byte first (big endian)" msgstr "" -#: ../../c-api/long.rst:721 msgid "``-1`` for least significant byte first (little endian)" msgstr "" -#: ../../c-api/long.rst:726 msgid "Get the native layout of Python :class:`int` objects." msgstr "" -#: ../../c-api/long.rst:728 msgid "See the :c:struct:`PyLongLayout` structure." msgstr "" -#: ../../c-api/long.rst:730 -msgid "" -"The function must not be called before Python initialization nor after " -"Python finalization. The returned layout is valid until Python is finalized. " -"The layout is the same for all Python sub-interpreters in a process, and so " -"it can be cached." +msgid "The function must not be called before Python initialization nor after Python finalization. The returned layout is valid until Python is finalized. The layout is the same for all Python sub-interpreters in a process, and so it can be cached." msgstr "" -#: ../../c-api/long.rst:738 msgid "Export of a Python :class:`int` object." msgstr "" -#: ../../c-api/long.rst:740 msgid "There are two cases:" msgstr "" -#: ../../c-api/long.rst:742 -msgid "" -"If :c:member:`digits` is ``NULL``, only use the :c:member:`value` member." +msgid "If :c:member:`digits` is ``NULL``, only use the :c:member:`value` member." msgstr "" -#: ../../c-api/long.rst:743 -msgid "" -"If :c:member:`digits` is not ``NULL``, " -"use :c:member:`negative`, :c:member:`ndigits` and :c:member:`digits` members." +msgid "If :c:member:`digits` is not ``NULL``, use :c:member:`negative`, :c:member:`ndigits` and :c:member:`digits` members." msgstr "" -#: ../../c-api/long.rst:748 -msgid "" -"The native integer value of the exported :class:`int` object. Only valid " -"if :c:member:`digits` is ``NULL``." +msgid "The native integer value of the exported :class:`int` object. Only valid if :c:member:`digits` is ``NULL``." msgstr "" -#: ../../c-api/long.rst:753 -msgid "" -"``1`` if the number is negative, ``0`` otherwise. Only valid " -"if :c:member:`digits` is not ``NULL``." +msgid "``1`` if the number is negative, ``0`` otherwise. Only valid if :c:member:`digits` is not ``NULL``." msgstr "" -#: ../../c-api/long.rst:758 -msgid "" -"Number of digits in :c:member:`digits` array. Only valid " -"if :c:member:`digits` is not ``NULL``." +msgid "Number of digits in :c:member:`digits` array. Only valid if :c:member:`digits` is not ``NULL``." msgstr "" -#: ../../c-api/long.rst:763 msgid "Read-only array of unsigned digits. Can be ``NULL``." msgstr "" -#: ../../c-api/long.rst:768 msgid "Export a Python :class:`int` object." msgstr "" -#: ../../c-api/long.rst:770 -msgid "" -"*export_long* must point to a :c:struct:`PyLongExport` structure allocated " -"by the caller. It must not be ``NULL``." +msgid "*export_long* must point to a :c:struct:`PyLongExport` structure allocated by the caller. It must not be ``NULL``." msgstr "" -#: ../../c-api/long.rst:773 -msgid "" -"On success, fill in *\\*export_long* and return ``0``. On error, set an " -"exception and return ``-1``." +msgid "On success, fill in *\\*export_long* and return ``0``. On error, set an exception and return ``-1``." msgstr "" -#: ../../c-api/long.rst:776 -msgid "" -":c:func:`PyLong_FreeExport` must be called when the export is no longer " -"needed." +msgid ":c:func:`PyLong_FreeExport` must be called when the export is no longer needed." msgstr "" -#: ../../c-api/long.rst:780 -msgid "" -"This function always succeeds if *obj* is a Python :class:`int` object or a " -"subclass." +msgid "This function always succeeds if *obj* is a Python :class:`int` object or a subclass." msgstr "" -#: ../../c-api/long.rst:786 msgid "Release the export *export_long* created by :c:func:`PyLong_Export`." msgstr "" -#: ../../c-api/long.rst:789 -msgid "" -"Calling :c:func:`PyLong_FreeExport` is optional if *export_long->digits* is " -"``NULL``." +msgid "Calling :c:func:`PyLong_FreeExport` is optional if *export_long->digits* is ``NULL``." msgstr "" -#: ../../c-api/long.rst:794 msgid "PyLongWriter API" msgstr "" -#: ../../c-api/long.rst:796 msgid "The :c:type:`PyLongWriter` API can be used to import an integer." msgstr "" -#: ../../c-api/long.rst:802 msgid "A Python :class:`int` writer instance." msgstr "" -#: ../../c-api/long.rst:804 -msgid "" -"The instance must be destroyed by :c:func:`PyLongWriter_Finish` " -"or :c:func:`PyLongWriter_Discard`." +msgid "The instance must be destroyed by :c:func:`PyLongWriter_Finish` or :c:func:`PyLongWriter_Discard`." msgstr "" -#: ../../c-api/long.rst:810 msgid "Create a :c:type:`PyLongWriter`." msgstr "" -#: ../../c-api/long.rst:812 -msgid "" -"On success, allocate *\\*digits* and return a writer. On error, set an " -"exception and return ``NULL``." +msgid "On success, allocate *\\*digits* and return a writer. On error, set an exception and return ``NULL``." msgstr "" -#: ../../c-api/long.rst:815 msgid "*negative* is ``1`` if the number is negative, or ``0`` otherwise." msgstr "" -#: ../../c-api/long.rst:817 -msgid "" -"*ndigits* is the number of digits in the *digits* array. It must be greater " -"than 0." +msgid "*ndigits* is the number of digits in the *digits* array. It must be greater than 0." msgstr "" -#: ../../c-api/long.rst:820 msgid "*digits* must not be NULL." msgstr "" -#: ../../c-api/long.rst:822 -msgid "" -"After a successful call to this function, the caller should fill in the " -"array of digits *digits* and then call :c:func:`PyLongWriter_Finish` to get " -"a Python :class:`int`. The layout of *digits* is described " -"by :c:func:`PyLong_GetNativeLayout`." +msgid "After a successful call to this function, the caller should fill in the array of digits *digits* and then call :c:func:`PyLongWriter_Finish` to get a Python :class:`int`. The layout of *digits* is described by :c:func:`PyLong_GetNativeLayout`." msgstr "" -#: ../../c-api/long.rst:827 -msgid "" -"Digits must be in the range [``0``; ``(1 << bits_per_digit) - 1``] (where " -"the :c:struct:`~PyLongLayout.bits_per_digit` is the number of bits per " -"digit). Any unused most significant digits must be set to ``0``." +msgid "Digits must be in the range [``0``; ``(1 << bits_per_digit) - 1``] (where the :c:struct:`~PyLongLayout.bits_per_digit` is the number of bits per digit). Any unused most significant digits must be set to ``0``." msgstr "" -#: ../../c-api/long.rst:832 -msgid "" -"Alternately, call :c:func:`PyLongWriter_Discard` to destroy the writer " -"instance without creating an :class:`~int` object." +msgid "Alternately, call :c:func:`PyLongWriter_Discard` to destroy the writer instance without creating an :class:`~int` object." msgstr "" -#: ../../c-api/long.rst:838 -msgid "" -"Finish a :c:type:`PyLongWriter` created by :c:func:`PyLongWriter_Create`." +msgid "Finish a :c:type:`PyLongWriter` created by :c:func:`PyLongWriter_Create`." msgstr "" -#: ../../c-api/long.rst:840 -msgid "" -"On success, return a Python :class:`int` object. On error, set an exception " -"and return ``NULL``." +msgid "On success, return a Python :class:`int` object. On error, set an exception and return ``NULL``." msgstr "" -#: ../../c-api/long.rst:843 -msgid "" -"The function takes care of normalizing the digits and converts the object to " -"a compact integer if needed." +msgid "The function takes care of normalizing the digits and converts the object to a compact integer if needed." msgstr "" -#: ../../c-api/long.rst:846 ../../c-api/long.rst:855 msgid "The writer instance and the *digits* array are invalid after the call." msgstr "" -#: ../../c-api/long.rst:851 -msgid "" -"Discard a :c:type:`PyLongWriter` created by :c:func:`PyLongWriter_Create`." +msgid "Discard a :c:type:`PyLongWriter` created by :c:func:`PyLongWriter_Create`." msgstr "" -#: ../../c-api/long.rst:853 msgid "If *writer* is ``NULL``, no operation is performed." msgstr "" -#: ../../c-api/long.rst:859 msgid "Deprecated API" msgstr "" -#: ../../c-api/long.rst:861 -msgid "" -"These macros are :term:`soft deprecated`. They describe parameters of the " -"internal representation of :c:type:`PyLongObject` instances." +msgid "These macros are :term:`soft deprecated`. They describe parameters of the internal representation of :c:type:`PyLongObject` instances." msgstr "" -#: ../../c-api/long.rst:864 -msgid "" -"Use :c:func:`PyLong_GetNativeLayout` instead, along " -"with :c:func:`PyLong_Export` to read integer data or :c:type:`PyLongWriter` " -"to write it. These currently use the same layout, but are designed to " -"continue working correctly even if CPython's internal integer representation " -"changes." +msgid "Use :c:func:`PyLong_GetNativeLayout` instead, along with :c:func:`PyLong_Export` to read integer data or :c:type:`PyLongWriter` to write it. These currently use the same layout, but are designed to continue working correctly even if CPython's internal integer representation changes." msgstr "" -#: ../../c-api/long.rst:872 -msgid "" -"This is equivalent to :c:member:`~PyLongLayout.bits_per_digit` in the output " -"of :c:func:`PyLong_GetNativeLayout`." +msgid "This is equivalent to :c:member:`~PyLongLayout.bits_per_digit` in the output of :c:func:`PyLong_GetNativeLayout`." msgstr "" -#: ../../c-api/long.rst:878 msgid "This is currently equivalent to :c:expr:`1 << PyLong_SHIFT`." msgstr "" -#: ../../c-api/long.rst:883 msgid "This is currently equivalent to :c:expr:`(1 << PyLong_SHIFT) - 1`" msgstr "" -#: ../../c-api/long.rst:8 msgid "object" msgstr "" -#: ../../c-api/long.rst:8 msgid "long integer" msgstr "" -#: ../../c-api/long.rst:8 msgid "integer" msgstr "" -#: ../../c-api/long.rst:177 msgid "LONG_MAX (C macro)" msgstr "" -#: ../../c-api/long.rst:177 ../../c-api/long.rst:235 ../../c-api/long.rst:278 -#: ../../c-api/long.rst:293 ../../c-api/long.rst:309 ../../c-api/long.rst:325 msgid "OverflowError (built-in exception)" msgstr "" -#: ../../c-api/long.rst:278 msgid "PY_SSIZE_T_MAX (C macro)" msgstr "" -#: ../../c-api/long.rst:293 msgid "ULONG_MAX (C macro)" msgstr "" -#: ../../c-api/long.rst:309 msgid "SIZE_MAX (C macro)" msgstr "" diff --git a/c-api/mapping.po b/c-api/mapping.po index 798a1d40..5f3603b7 100644 --- a/c-api/mapping.po +++ b/c-api/mapping.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:49+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -22,150 +22,71 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../c-api/mapping.rst:6 msgid "Mapping Protocol" msgstr "" -#: ../../c-api/mapping.rst:8 -msgid "" -"See also :c:func:`PyObject_GetItem`, :c:func:`PyObject_SetItem` " -"and :c:func:`PyObject_DelItem`." +msgid "See also :c:func:`PyObject_GetItem`, :c:func:`PyObject_SetItem` and :c:func:`PyObject_DelItem`." msgstr "" -#: ../../c-api/mapping.rst:14 -msgid "" -"Return ``1`` if the object provides the mapping protocol or supports " -"slicing, and ``0`` otherwise. Note that it returns ``1`` for Python classes " -"with a :meth:`~object.__getitem__` method, since in general it is impossible " -"to determine what type of keys the class supports. This function always " -"succeeds." +msgid "Return ``1`` if the object provides the mapping protocol or supports slicing, and ``0`` otherwise. Note that it returns ``1`` for Python classes with a :meth:`~object.__getitem__` method, since in general it is impossible to determine what type of keys the class supports. This function always succeeds." msgstr "" -#: ../../c-api/mapping.rst:25 -msgid "" -"Returns the number of keys in object *o* on success, and ``-1`` on failure. " -"This is equivalent to the Python expression ``len(o)``." +msgid "Returns the number of keys in object *o* on success, and ``-1`` on failure. This is equivalent to the Python expression ``len(o)``." msgstr "" -#: ../../c-api/mapping.rst:31 -msgid "" -"This is the same as :c:func:`PyObject_GetItem`, but *key* is specified as " -"a :c:expr:`const char*` UTF-8 encoded bytes string, rather than " -"a :c:expr:`PyObject*`." +msgid "This is the same as :c:func:`PyObject_GetItem`, but *key* is specified as a :c:expr:`const char*` UTF-8 encoded bytes string, rather than a :c:expr:`PyObject*`." msgstr "" -#: ../../c-api/mapping.rst:38 -msgid "" -"Variant of :c:func:`PyObject_GetItem` which doesn't raise :exc:`KeyError` if " -"the key is not found." +msgid "Variant of :c:func:`PyObject_GetItem` which doesn't raise :exc:`KeyError` if the key is not found." msgstr "" -#: ../../c-api/mapping.rst:41 -msgid "" -"If the key is found, return ``1`` and set *\\*result* to a new :term:`strong " -"reference` to the corresponding value. If the key is not found, return ``0`` " -"and set *\\*result* to ``NULL``; the :exc:`KeyError` is silenced. If an " -"error other than :exc:`KeyError` is raised, return ``-1`` and set " -"*\\*result* to ``NULL``." +msgid "If the key is found, return ``1`` and set *\\*result* to a new :term:`strong reference` to the corresponding value. If the key is not found, return ``0`` and set *\\*result* to ``NULL``; the :exc:`KeyError` is silenced. If an error other than :exc:`KeyError` is raised, return ``-1`` and set *\\*result* to ``NULL``." msgstr "" -#: ../../c-api/mapping.rst:53 -msgid "" -"This is the same as :c:func:`PyMapping_GetOptionalItem`, but *key* is " -"specified as a :c:expr:`const char*` UTF-8 encoded bytes string, rather than " -"a :c:expr:`PyObject*`." +msgid "This is the same as :c:func:`PyMapping_GetOptionalItem`, but *key* is specified as a :c:expr:`const char*` UTF-8 encoded bytes string, rather than a :c:expr:`PyObject*`." msgstr "" -#: ../../c-api/mapping.rst:62 -msgid "" -"This is the same as :c:func:`PyObject_SetItem`, but *key* is specified as " -"a :c:expr:`const char*` UTF-8 encoded bytes string, rather than " -"a :c:expr:`PyObject*`." +msgid "This is the same as :c:func:`PyObject_SetItem`, but *key* is specified as a :c:expr:`const char*` UTF-8 encoded bytes string, rather than a :c:expr:`PyObject*`." msgstr "" -#: ../../c-api/mapping.rst:69 msgid "This is an alias of :c:func:`PyObject_DelItem`." msgstr "" -#: ../../c-api/mapping.rst:74 -msgid "" -"This is the same as :c:func:`PyObject_DelItem`, but *key* is specified as " -"a :c:expr:`const char*` UTF-8 encoded bytes string, rather than " -"a :c:expr:`PyObject*`." +msgid "This is the same as :c:func:`PyObject_DelItem`, but *key* is specified as a :c:expr:`const char*` UTF-8 encoded bytes string, rather than a :c:expr:`PyObject*`." msgstr "" -#: ../../c-api/mapping.rst:81 -msgid "" -"Return ``1`` if the mapping object has the key *key* and ``0`` otherwise. " -"This is equivalent to the Python expression ``key in o``. On failure, return " -"``-1``." +msgid "Return ``1`` if the mapping object has the key *key* and ``0`` otherwise. This is equivalent to the Python expression ``key in o``. On failure, return ``-1``." msgstr "" -#: ../../c-api/mapping.rst:90 -msgid "" -"This is the same as :c:func:`PyMapping_HasKeyWithError`, but *key* is " -"specified as a :c:expr:`const char*` UTF-8 encoded bytes string, rather than " -"a :c:expr:`PyObject*`." +msgid "This is the same as :c:func:`PyMapping_HasKeyWithError`, but *key* is specified as a :c:expr:`const char*` UTF-8 encoded bytes string, rather than a :c:expr:`PyObject*`." msgstr "" -#: ../../c-api/mapping.rst:99 -msgid "" -"Return ``1`` if the mapping object has the key *key* and ``0`` otherwise. " -"This is equivalent to the Python expression ``key in o``. This function " -"always succeeds." +msgid "Return ``1`` if the mapping object has the key *key* and ``0`` otherwise. This is equivalent to the Python expression ``key in o``. This function always succeeds." msgstr "" -#: ../../c-api/mapping.rst:105 -msgid "" -"Exceptions which occur when this calls the :meth:`~object.__getitem__` " -"method are silently ignored. For proper error handling, " -"use :c:func:`PyMapping_HasKeyWithError`, :c:func:`PyMapping_GetOptionalItem` " -"or :c:func:`PyObject_GetItem()` instead." +msgid "Exceptions which occur when this calls the :meth:`~object.__getitem__` method are silently ignored. For proper error handling, use :c:func:`PyMapping_HasKeyWithError`, :c:func:`PyMapping_GetOptionalItem` or :c:func:`PyObject_GetItem()` instead." msgstr "" -#: ../../c-api/mapping.rst:113 -msgid "" -"This is the same as :c:func:`PyMapping_HasKey`, but *key* is specified as " -"a :c:expr:`const char*` UTF-8 encoded bytes string, rather than " -"a :c:expr:`PyObject*`." +msgid "This is the same as :c:func:`PyMapping_HasKey`, but *key* is specified as a :c:expr:`const char*` UTF-8 encoded bytes string, rather than a :c:expr:`PyObject*`." msgstr "" -#: ../../c-api/mapping.rst:119 -msgid "" -"Exceptions that occur when this calls the :meth:`~object.__getitem__` method " -"or while creating the temporary :class:`str` object are silently ignored. " -"For proper error handling, " -"use :c:func:`PyMapping_HasKeyStringWithError`, :c:func:`PyMapping_GetOptionalItemString` " -"or :c:func:`PyMapping_GetItemString` instead." +msgid "Exceptions that occur when this calls the :meth:`~object.__getitem__` method or while creating the temporary :class:`str` object are silently ignored. For proper error handling, use :c:func:`PyMapping_HasKeyStringWithError`, :c:func:`PyMapping_GetOptionalItemString` or :c:func:`PyMapping_GetItemString` instead." msgstr "" -#: ../../c-api/mapping.rst:129 -msgid "" -"On success, return a list of the keys in object *o*. On failure, return " -"``NULL``." +msgid "On success, return a list of the keys in object *o*. On failure, return ``NULL``." msgstr "" -#: ../../c-api/mapping.rst:132 ../../c-api/mapping.rst:141 -#: ../../c-api/mapping.rst:150 msgid "Previously, the function returned a list or a tuple." msgstr "" -#: ../../c-api/mapping.rst:138 -msgid "" -"On success, return a list of the values in object *o*. On failure, return " -"``NULL``." +msgid "On success, return a list of the values in object *o*. On failure, return ``NULL``." msgstr "" -#: ../../c-api/mapping.rst:147 -msgid "" -"On success, return a list of the items in object *o*, where each item is a " -"tuple containing a key-value pair. On failure, return ``NULL``." +msgid "On success, return a list of the items in object *o*, where each item is a tuple containing a key-value pair. On failure, return ``NULL``." msgstr "" -#: ../../c-api/mapping.rst:23 msgid "built-in function" msgstr "" -#: ../../c-api/mapping.rst:23 msgid "len" msgstr "" diff --git a/c-api/marshal.po b/c-api/marshal.po index 1548d8a3..36d67c41 100644 --- a/c-api/marshal.po +++ b/c-api/marshal.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:49+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,108 +21,53 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../c-api/marshal.rst:6 msgid "Data marshalling support" msgstr "" -#: ../../c-api/marshal.rst:8 -msgid "" -"These routines allow C code to work with serialized objects using the same " -"data format as the :mod:`marshal` module. There are functions to write data " -"into the serialization format, and additional functions that can be used to " -"read the data back. Files used to store marshalled data must be opened in " -"binary mode." +msgid "These routines allow C code to work with serialized objects using the same data format as the :mod:`marshal` module. There are functions to write data into the serialization format, and additional functions that can be used to read the data back. Files used to store marshalled data must be opened in binary mode." msgstr "" -#: ../../c-api/marshal.rst:14 msgid "Numeric values are stored with the least significant byte first." msgstr "" -#: ../../c-api/marshal.rst:16 -msgid "" -"The module supports several versions of the data format; see " -"the :py:mod:`Python module documentation ` for details." +msgid "The module supports several versions of the data format; see the :py:mod:`Python module documentation ` for details." msgstr "" -#: ../../c-api/marshal.rst:21 msgid "The current format version. See :py:data:`marshal.version`." msgstr "" -#: ../../c-api/marshal.rst:25 -msgid "" -"Marshal a :c:expr:`long` integer, *value*, to *file*. This will only write " -"the least-significant 32 bits of *value*; regardless of the size of the " -"native :c:expr:`long` type. *version* indicates the file format." +msgid "Marshal a :c:expr:`long` integer, *value*, to *file*. This will only write the least-significant 32 bits of *value*; regardless of the size of the native :c:expr:`long` type. *version* indicates the file format." msgstr "" -#: ../../c-api/marshal.rst:29 ../../c-api/marshal.rst:37 -msgid "" -"This function can fail, in which case it sets the error indicator. " -"Use :c:func:`PyErr_Occurred` to check for that." +msgid "This function can fail, in which case it sets the error indicator. Use :c:func:`PyErr_Occurred` to check for that." msgstr "" -#: ../../c-api/marshal.rst:34 -msgid "" -"Marshal a Python object, *value*, to *file*. *version* indicates the file " -"format." +msgid "Marshal a Python object, *value*, to *file*. *version* indicates the file format." msgstr "" -#: ../../c-api/marshal.rst:42 -msgid "" -"Return a bytes object containing the marshalled representation of *value*. " -"*version* indicates the file format." +msgid "Return a bytes object containing the marshalled representation of *value*. *version* indicates the file format." msgstr "" -#: ../../c-api/marshal.rst:46 msgid "The following functions allow marshalled values to be read back in." msgstr "" -#: ../../c-api/marshal.rst:51 -msgid "" -"Return a C :c:expr:`long` from the data stream in a :c:expr:`FILE*` opened " -"for reading. Only a 32-bit value can be read in using this function, " -"regardless of the native size of :c:expr:`long`." +msgid "Return a C :c:expr:`long` from the data stream in a :c:expr:`FILE*` opened for reading. Only a 32-bit value can be read in using this function, regardless of the native size of :c:expr:`long`." msgstr "" -#: ../../c-api/marshal.rst:55 ../../c-api/marshal.rst:65 -msgid "" -"On error, sets the appropriate exception (:exc:`EOFError`) and returns " -"``-1``." +msgid "On error, sets the appropriate exception (:exc:`EOFError`) and returns ``-1``." msgstr "" -#: ../../c-api/marshal.rst:61 -msgid "" -"Return a C :c:expr:`short` from the data stream in a :c:expr:`FILE*` opened " -"for reading. Only a 16-bit value can be read in using this function, " -"regardless of the native size of :c:expr:`short`." +msgid "Return a C :c:expr:`short` from the data stream in a :c:expr:`FILE*` opened for reading. Only a 16-bit value can be read in using this function, regardless of the native size of :c:expr:`short`." msgstr "" -#: ../../c-api/marshal.rst:71 -msgid "" -"Return a Python object from the data stream in a :c:expr:`FILE*` opened for " -"reading." +msgid "Return a Python object from the data stream in a :c:expr:`FILE*` opened for reading." msgstr "" -#: ../../c-api/marshal.rst:74 ../../c-api/marshal.rst:88 -#: ../../c-api/marshal.rst:97 -msgid "" -"On error, sets the appropriate exception (:exc:`EOFError`, :exc:`ValueError` " -"or :exc:`TypeError`) and returns ``NULL``." +msgid "On error, sets the appropriate exception (:exc:`EOFError`, :exc:`ValueError` or :exc:`TypeError`) and returns ``NULL``." msgstr "" -#: ../../c-api/marshal.rst:80 -msgid "" -"Return a Python object from the data stream in a :c:expr:`FILE*` opened for " -"reading. Unlike :c:func:`PyMarshal_ReadObjectFromFile`, this function " -"assumes that no further objects will be read from the file, allowing it to " -"aggressively load file data into memory so that the de-serialization can " -"operate from data in memory rather than reading a byte at a time from the " -"file. Only use this variant if you are certain that you won't be reading " -"anything else from the file." +msgid "Return a Python object from the data stream in a :c:expr:`FILE*` opened for reading. Unlike :c:func:`PyMarshal_ReadObjectFromFile`, this function assumes that no further objects will be read from the file, allowing it to aggressively load file data into memory so that the de-serialization can operate from data in memory rather than reading a byte at a time from the file. Only use this variant if you are certain that you won't be reading anything else from the file." msgstr "" -#: ../../c-api/marshal.rst:94 -msgid "" -"Return a Python object from the data stream in a byte buffer containing " -"*len* bytes pointed to by *data*." +msgid "Return a Python object from the data stream in a byte buffer containing *len* bytes pointed to by *data*." msgstr "" diff --git a/c-api/memory.po b/c-api/memory.po index b682dfb2..571ae15a 100644 --- a/c-api/memory.po +++ b/c-api/memory.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:49+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,61 +24,24 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../c-api/memory.rst:8 msgid "Memory Management" msgstr "" -#: ../../c-api/memory.rst:17 msgid "Overview" msgstr "" -#: ../../c-api/memory.rst:19 -msgid "" -"Memory management in Python involves a private heap containing all Python " -"objects and data structures. The management of this private heap is ensured " -"internally by the *Python memory manager*. The Python memory manager has " -"different components which deal with various dynamic storage management " -"aspects, like sharing, segmentation, preallocation or caching." +msgid "Memory management in Python involves a private heap containing all Python objects and data structures. The management of this private heap is ensured internally by the *Python memory manager*. The Python memory manager has different components which deal with various dynamic storage management aspects, like sharing, segmentation, preallocation or caching." msgstr "" -#: ../../c-api/memory.rst:25 -msgid "" -"At the lowest level, a raw memory allocator ensures that there is enough " -"room in the private heap for storing all Python-related data by interacting " -"with the memory manager of the operating system. On top of the raw memory " -"allocator, several object-specific allocators operate on the same heap and " -"implement distinct memory management policies adapted to the peculiarities " -"of every object type. For example, integer objects are managed differently " -"within the heap than strings, tuples or dictionaries because integers imply " -"different storage requirements and speed/space tradeoffs. The Python memory " -"manager thus delegates some of the work to the object-specific allocators, " -"but ensures that the latter operate within the bounds of the private heap." -msgstr "" - -#: ../../c-api/memory.rst:36 -msgid "" -"It is important to understand that the management of the Python heap is " -"performed by the interpreter itself and that the user has no control over " -"it, even if they regularly manipulate object pointers to memory blocks " -"inside that heap. The allocation of heap space for Python objects and other " -"internal buffers is performed on demand by the Python memory manager through " -"the Python/C API functions listed in this document." +msgid "At the lowest level, a raw memory allocator ensures that there is enough room in the private heap for storing all Python-related data by interacting with the memory manager of the operating system. On top of the raw memory allocator, several object-specific allocators operate on the same heap and implement distinct memory management policies adapted to the peculiarities of every object type. For example, integer objects are managed differently within the heap than strings, tuples or dictionaries because integers imply different storage requirements and speed/space tradeoffs. The Python memory manager thus delegates some of the work to the object-specific allocators, but ensures that the latter operate within the bounds of the private heap." +msgstr "" + +msgid "It is important to understand that the management of the Python heap is performed by the interpreter itself and that the user has no control over it, even if they regularly manipulate object pointers to memory blocks inside that heap. The allocation of heap space for Python objects and other internal buffers is performed on demand by the Python memory manager through the Python/C API functions listed in this document." +msgstr "" + +msgid "To avoid memory corruption, extension writers should never try to operate on Python objects with the functions exported by the C library: :c:func:`malloc`, :c:func:`calloc`, :c:func:`realloc` and :c:func:`free`. This will result in mixed calls between the C allocator and the Python memory manager with fatal consequences, because they implement different algorithms and operate on different heaps. However, one may safely allocate and release memory blocks with the C library allocator for individual purposes, as shown in the following example::" msgstr "" -#: ../../c-api/memory.rst:49 -msgid "" -"To avoid memory corruption, extension writers should never try to operate on " -"Python objects with the functions exported by the C " -"library: :c:func:`malloc`, :c:func:`calloc`, :c:func:`realloc` " -"and :c:func:`free`. This will result in mixed calls between the C " -"allocator and the Python memory manager with fatal consequences, because " -"they implement different algorithms and operate on different heaps. " -"However, one may safely allocate and release memory blocks with the C " -"library allocator for individual purposes, as shown in the following " -"example::" -msgstr "" - -#: ../../c-api/memory.rst:58 msgid "" "PyObject *res;\n" "char *buf = (char *) malloc(BUFSIZ); /* for I/O */\n" @@ -91,1119 +54,609 @@ msgid "" "return res;" msgstr "" -#: ../../c-api/memory.rst:68 -msgid "" -"In this example, the memory request for the I/O buffer is handled by the C " -"library allocator. The Python memory manager is involved only in the " -"allocation of the bytes object returned as a result." +msgid "In this example, the memory request for the I/O buffer is handled by the C library allocator. The Python memory manager is involved only in the allocation of the bytes object returned as a result." msgstr "" -#: ../../c-api/memory.rst:72 -msgid "" -"In most situations, however, it is recommended to allocate memory from the " -"Python heap specifically because the latter is under control of the Python " -"memory manager. For example, this is required when the interpreter is " -"extended with new object types written in C. Another reason for using the " -"Python heap is the desire to *inform* the Python memory manager about the " -"memory needs of the extension module. Even when the requested memory is used " -"exclusively for internal, highly specific purposes, delegating all memory " -"requests to the Python memory manager causes the interpreter to have a more " -"accurate image of its memory footprint as a whole. Consequently, under " -"certain circumstances, the Python memory manager may or may not trigger " -"appropriate actions, like garbage collection, memory compaction or other " -"preventive procedures. Note that by using the C library allocator as shown " -"in the previous example, the allocated memory for the I/O buffer completely " -"escapes the Python memory manager." -msgstr "" - -#: ../../c-api/memory.rst:88 -msgid "" -"The :envvar:`PYTHONMALLOC` environment variable can be used to configure the " -"memory allocators used by Python." +msgid "In most situations, however, it is recommended to allocate memory from the Python heap specifically because the latter is under control of the Python memory manager. For example, this is required when the interpreter is extended with new object types written in C. Another reason for using the Python heap is the desire to *inform* the Python memory manager about the memory needs of the extension module. Even when the requested memory is used exclusively for internal, highly specific purposes, delegating all memory requests to the Python memory manager causes the interpreter to have a more accurate image of its memory footprint as a whole. Consequently, under certain circumstances, the Python memory manager may or may not trigger appropriate actions, like garbage collection, memory compaction or other preventive procedures. Note that by using the C library allocator as shown in the previous example, the allocated memory for the I/O buffer completely escapes the Python memory manager." msgstr "" -#: ../../c-api/memory.rst:91 -msgid "" -"The :envvar:`PYTHONMALLOCSTATS` environment variable can be used to print " -"statistics of the :ref:`pymalloc memory allocator ` every time a " -"new pymalloc object arena is created, and on shutdown." +msgid "The :envvar:`PYTHONMALLOC` environment variable can be used to configure the memory allocators used by Python." +msgstr "" + +msgid "The :envvar:`PYTHONMALLOCSTATS` environment variable can be used to print statistics of the :ref:`pymalloc memory allocator ` every time a new pymalloc object arena is created, and on shutdown." msgstr "" -#: ../../c-api/memory.rst:96 msgid "Allocator Domains" msgstr "" -#: ../../c-api/memory.rst:100 -msgid "" -"All allocating functions belong to one of three different \"domains\" (see " -"also :c:type:`PyMemAllocatorDomain`). These domains represent different " -"allocation strategies and are optimized for different purposes. The specific " -"details on how every domain allocates memory or what internal functions each " -"domain calls is considered an implementation detail, but for debugging " -"purposes a simplified table can be found at :ref:`default-memory-" -"allocators`. The APIs used to allocate and free a block of memory must be " -"from the same domain. For example, :c:func:`PyMem_Free` must be used to free " -"memory allocated using :c:func:`PyMem_Malloc`." -msgstr "" - -#: ../../c-api/memory.rst:109 +msgid "All allocating functions belong to one of three different \"domains\" (see also :c:type:`PyMemAllocatorDomain`). These domains represent different allocation strategies and are optimized for different purposes. The specific details on how every domain allocates memory or what internal functions each domain calls is considered an implementation detail, but for debugging purposes a simplified table can be found at :ref:`default-memory-allocators`. The APIs used to allocate and free a block of memory must be from the same domain. For example, :c:func:`PyMem_Free` must be used to free memory allocated using :c:func:`PyMem_Malloc`." +msgstr "" + msgid "The three allocation domains are:" msgstr "" -#: ../../c-api/memory.rst:111 -msgid "" -"Raw domain: intended for allocating memory for general-purpose memory " -"buffers where the allocation *must* go to the system allocator or where the " -"allocator can operate without an :term:`attached thread state`. The memory " -"is requested directly from the system. See :ref:`Raw Memory Interface `." +msgid "Raw domain: intended for allocating memory for general-purpose memory buffers where the allocation *must* go to the system allocator or where the allocator can operate without an :term:`attached thread state`. The memory is requested directly from the system. See :ref:`Raw Memory Interface `." msgstr "" -#: ../../c-api/memory.rst:116 -msgid "" -"\"Mem\" domain: intended for allocating memory for Python buffers and " -"general-purpose memory buffers where the allocation must be performed with " -"an :term:`attached thread state`. The memory is taken from the Python " -"private heap. See :ref:`Memory Interface `." +msgid "\"Mem\" domain: intended for allocating memory for Python buffers and general-purpose memory buffers where the allocation must be performed with an :term:`attached thread state`. The memory is taken from the Python private heap. See :ref:`Memory Interface `." msgstr "" -#: ../../c-api/memory.rst:121 -msgid "" -"Object domain: intended for allocating memory for Python objects. The memory " -"is taken from the Python private heap. See :ref:`Object allocators " -"`." +msgid "Object domain: intended for allocating memory for Python objects. The memory is taken from the Python private heap. See :ref:`Object allocators `." msgstr "" -#: ../../c-api/memory.rst:126 -msgid "" -"The :term:`free-threaded ` build requires that only Python " -"objects are allocated using the \"object\" domain and that all Python " -"objects are allocated using that domain. This differs from the prior Python " -"versions, where this was only a best practice and not a hard requirement." +msgid "The :term:`free-threaded ` build requires that only Python objects are allocated using the \"object\" domain and that all Python objects are allocated using that domain. This differs from the prior Python versions, where this was only a best practice and not a hard requirement." msgstr "" -#: ../../c-api/memory.rst:130 -msgid "" -"For example, buffers (non-Python objects) should be allocated " -"using :c:func:`PyMem_Malloc`, :c:func:`PyMem_RawMalloc`, " -"or :c:func:`malloc`, but not :c:func:`PyObject_Malloc`." +msgid "For example, buffers (non-Python objects) should be allocated using :c:func:`PyMem_Malloc`, :c:func:`PyMem_RawMalloc`, or :c:func:`malloc`, but not :c:func:`PyObject_Malloc`." msgstr "" -#: ../../c-api/memory.rst:133 msgid "See :ref:`Memory Allocation APIs `." msgstr "" -#: ../../c-api/memory.rst:139 msgid "Raw Memory Interface" msgstr "" -#: ../../c-api/memory.rst:141 -msgid "" -"The following function sets are wrappers to the system allocator. These " -"functions are thread-safe, so a :term:`thread state` does not need to " -"be :term:`attached `." +msgid "The following function sets are wrappers to the system allocator. These functions are thread-safe, so a :term:`thread state` does not need to be :term:`attached `." msgstr "" -#: ../../c-api/memory.rst:145 -msgid "" -"The :ref:`default raw memory allocator ` uses the " -"following functions: :c:func:`malloc`, :c:func:`calloc`, :c:func:`realloc` " -"and :c:func:`!free`; call ``malloc(1)`` (or ``calloc(1, 1)``) when " -"requesting zero bytes." +msgid "The :ref:`default raw memory allocator ` uses the following functions: :c:func:`malloc`, :c:func:`calloc`, :c:func:`realloc` and :c:func:`!free`; call ``malloc(1)`` (or ``calloc(1, 1)``) when requesting zero bytes." msgstr "" -#: ../../c-api/memory.rst:154 ../../c-api/memory.rst:232 -#: ../../c-api/memory.rst:365 -msgid "" -"Allocates *n* bytes and returns a pointer of type :c:expr:`void*` to the " -"allocated memory, or ``NULL`` if the request fails." +msgid "Allocates *n* bytes and returns a pointer of type :c:expr:`void*` to the allocated memory, or ``NULL`` if the request fails." msgstr "" -#: ../../c-api/memory.rst:157 -msgid "" -"Requesting zero bytes returns a distinct non-``NULL`` pointer if possible, " -"as if ``PyMem_RawMalloc(1)`` had been called instead. The memory will not " -"have been initialized in any way." +msgid "Requesting zero bytes returns a distinct non-``NULL`` pointer if possible, as if ``PyMem_RawMalloc(1)`` had been called instead. The memory will not have been initialized in any way." msgstr "" -#: ../../c-api/memory.rst:164 ../../c-api/memory.rst:242 -#: ../../c-api/memory.rst:375 -msgid "" -"Allocates *nelem* elements each of size *elsize* bytes and returns a pointer " -"of type :c:expr:`void*` to the allocated memory, or ``NULL`` if the request " -"fails. The memory is initialized to zeros." +msgid "Allocates *nelem* elements each of size *elsize* bytes and returns a pointer of type :c:expr:`void*` to the allocated memory, or ``NULL`` if the request fails. The memory is initialized to zeros." msgstr "" -#: ../../c-api/memory.rst:168 -msgid "" -"Requesting zero elements or elements of size zero bytes returns a distinct " -"non-``NULL`` pointer if possible, as if ``PyMem_RawCalloc(1, 1)`` had been " -"called instead." +msgid "Requesting zero elements or elements of size zero bytes returns a distinct non-``NULL`` pointer if possible, as if ``PyMem_RawCalloc(1, 1)`` had been called instead." msgstr "" -#: ../../c-api/memory.rst:177 ../../c-api/memory.rst:255 -#: ../../c-api/memory.rst:388 -msgid "" -"Resizes the memory block pointed to by *p* to *n* bytes. The contents will " -"be unchanged to the minimum of the old and the new sizes." +msgid "Resizes the memory block pointed to by *p* to *n* bytes. The contents will be unchanged to the minimum of the old and the new sizes." msgstr "" -#: ../../c-api/memory.rst:180 -msgid "" -"If *p* is ``NULL``, the call is equivalent to ``PyMem_RawMalloc(n)``; else " -"if *n* is equal to zero, the memory block is resized but is not freed, and " -"the returned pointer is non-``NULL``." +msgid "If *p* is ``NULL``, the call is equivalent to ``PyMem_RawMalloc(n)``; else if *n* is equal to zero, the memory block is resized but is not freed, and the returned pointer is non-``NULL``." msgstr "" -#: ../../c-api/memory.rst:184 -msgid "" -"Unless *p* is ``NULL``, it must have been returned by a previous call " -"to :c:func:`PyMem_RawMalloc`, :c:func:`PyMem_RawRealloc` " -"or :c:func:`PyMem_RawCalloc`." +msgid "Unless *p* is ``NULL``, it must have been returned by a previous call to :c:func:`PyMem_RawMalloc`, :c:func:`PyMem_RawRealloc` or :c:func:`PyMem_RawCalloc`." msgstr "" -#: ../../c-api/memory.rst:188 -msgid "" -"If the request fails, :c:func:`PyMem_RawRealloc` returns ``NULL`` and *p* " -"remains a valid pointer to the previous memory area." +msgid "If the request fails, :c:func:`PyMem_RawRealloc` returns ``NULL`` and *p* remains a valid pointer to the previous memory area." msgstr "" -#: ../../c-api/memory.rst:194 -msgid "" -"Frees the memory block pointed to by *p*, which must have been returned by a " -"previous call to :c:func:`PyMem_RawMalloc`, :c:func:`PyMem_RawRealloc` " -"or :c:func:`PyMem_RawCalloc`. Otherwise, or if ``PyMem_RawFree(p)`` has " -"been called before, undefined behavior occurs." +msgid "Frees the memory block pointed to by *p*, which must have been returned by a previous call to :c:func:`PyMem_RawMalloc`, :c:func:`PyMem_RawRealloc` or :c:func:`PyMem_RawCalloc`. Otherwise, or if ``PyMem_RawFree(p)`` has been called before, undefined behavior occurs." msgstr "" -#: ../../c-api/memory.rst:199 ../../c-api/memory.rst:276 -#: ../../c-api/memory.rst:409 msgid "If *p* is ``NULL``, no operation is performed." msgstr "" -#: ../../c-api/memory.rst:205 msgid "Memory Interface" msgstr "" -#: ../../c-api/memory.rst:207 ../../c-api/memory.rst:344 -msgid "" -"The following function sets, modeled after the ANSI C standard, but " -"specifying behavior when requesting zero bytes, are available for allocating " -"and releasing memory from the Python heap." +msgid "The following function sets, modeled after the ANSI C standard, but specifying behavior when requesting zero bytes, are available for allocating and releasing memory from the Python heap." msgstr "" -#: ../../c-api/memory.rst:211 -msgid "" -"In the GIL-enabled build (default build) the :ref:`default memory allocator " -"` uses the :ref:`pymalloc memory allocator " -"`, whereas in the :term:`free-threaded build`, the default is " -"the :ref:`mimalloc memory allocator ` instead." +msgid "In the GIL-enabled build (default build) the :ref:`default memory allocator ` uses the :ref:`pymalloc memory allocator `, whereas in the :term:`free-threaded build`, the default is the :ref:`mimalloc memory allocator ` instead." msgstr "" -#: ../../c-api/memory.rst:219 ../../c-api/memory.rst:361 -msgid "" -"There must be an :term:`attached thread state` when using these functions." +msgid "There must be an :term:`attached thread state` when using these functions." msgstr "" -#: ../../c-api/memory.rst:223 -msgid "" -"The default allocator is now pymalloc instead of system :c:func:`malloc`." +msgid "The default allocator is now pymalloc instead of system :c:func:`malloc`." msgstr "" -#: ../../c-api/memory.rst:227 -msgid "" -"In the :term:`free-threaded ` build, the default allocator " -"is now :ref:`mimalloc `." +msgid "In the :term:`free-threaded ` build, the default allocator is now :ref:`mimalloc `." msgstr "" -#: ../../c-api/memory.rst:235 -msgid "" -"Requesting zero bytes returns a distinct non-``NULL`` pointer if possible, " -"as if ``PyMem_Malloc(1)`` had been called instead. The memory will not have " -"been initialized in any way." +msgid "Requesting zero bytes returns a distinct non-``NULL`` pointer if possible, as if ``PyMem_Malloc(1)`` had been called instead. The memory will not have been initialized in any way." msgstr "" -#: ../../c-api/memory.rst:246 -msgid "" -"Requesting zero elements or elements of size zero bytes returns a distinct " -"non-``NULL`` pointer if possible, as if ``PyMem_Calloc(1, 1)`` had been " -"called instead." +msgid "Requesting zero elements or elements of size zero bytes returns a distinct non-``NULL`` pointer if possible, as if ``PyMem_Calloc(1, 1)`` had been called instead." msgstr "" -#: ../../c-api/memory.rst:258 -msgid "" -"If *p* is ``NULL``, the call is equivalent to ``PyMem_Malloc(n)``; else if " -"*n* is equal to zero, the memory block is resized but is not freed, and the " -"returned pointer is non-``NULL``." +msgid "If *p* is ``NULL``, the call is equivalent to ``PyMem_Malloc(n)``; else if *n* is equal to zero, the memory block is resized but is not freed, and the returned pointer is non-``NULL``." msgstr "" -#: ../../c-api/memory.rst:262 -msgid "" -"Unless *p* is ``NULL``, it must have been returned by a previous call " -"to :c:func:`PyMem_Malloc`, :c:func:`PyMem_Realloc` or :c:func:`PyMem_Calloc`." +msgid "Unless *p* is ``NULL``, it must have been returned by a previous call to :c:func:`PyMem_Malloc`, :c:func:`PyMem_Realloc` or :c:func:`PyMem_Calloc`." msgstr "" -#: ../../c-api/memory.rst:265 -msgid "" -"If the request fails, :c:func:`PyMem_Realloc` returns ``NULL`` and *p* " -"remains a valid pointer to the previous memory area." +msgid "If the request fails, :c:func:`PyMem_Realloc` returns ``NULL`` and *p* remains a valid pointer to the previous memory area." msgstr "" -#: ../../c-api/memory.rst:271 -msgid "" -"Frees the memory block pointed to by *p*, which must have been returned by a " -"previous call to :c:func:`PyMem_Malloc`, :c:func:`PyMem_Realloc` " -"or :c:func:`PyMem_Calloc`. Otherwise, or if ``PyMem_Free(p)`` has been " -"called before, undefined behavior occurs." +msgid "Frees the memory block pointed to by *p*, which must have been returned by a previous call to :c:func:`PyMem_Malloc`, :c:func:`PyMem_Realloc` or :c:func:`PyMem_Calloc`. Otherwise, or if ``PyMem_Free(p)`` has been called before, undefined behavior occurs." msgstr "" -#: ../../c-api/memory.rst:278 -msgid "" -"The following type-oriented macros are provided for convenience. Note that " -"*TYPE* refers to any C type." +msgid "The following type-oriented macros are provided for convenience. Note that *TYPE* refers to any C type." msgstr "" -#: ../../c-api/memory.rst:284 -msgid "" -"Same as :c:func:`PyMem_Malloc`, but allocates ``(n * sizeof(TYPE))`` bytes " -"of memory. Returns a pointer cast to ``TYPE*``. The memory will not have " -"been initialized in any way." +msgid "Same as :c:func:`PyMem_Malloc`, but allocates ``(n * sizeof(TYPE))`` bytes of memory. Returns a pointer cast to ``TYPE*``. The memory will not have been initialized in any way." msgstr "" -#: ../../c-api/memory.rst:291 -msgid "" -"Same as :c:func:`PyMem_Realloc`, but the memory block is resized to ``(n * " -"sizeof(TYPE))`` bytes. Returns a pointer cast to ``TYPE*``. On return, *p* " -"will be a pointer to the new memory area, or ``NULL`` in the event of " -"failure." +msgid "Same as :c:func:`PyMem_Realloc`, but the memory block is resized to ``(n * sizeof(TYPE))`` bytes. Returns a pointer cast to ``TYPE*``. On return, *p* will be a pointer to the new memory area, or ``NULL`` in the event of failure." msgstr "" -#: ../../c-api/memory.rst:296 -msgid "" -"This is a C preprocessor macro; *p* is always reassigned. Save the original " -"value of *p* to avoid losing memory when handling errors." +msgid "This is a C preprocessor macro; *p* is always reassigned. Save the original value of *p* to avoid losing memory when handling errors." msgstr "" -#: ../../c-api/memory.rst:302 msgid "Same as :c:func:`PyMem_Free`." msgstr "" -#: ../../c-api/memory.rst:306 msgid "Deprecated aliases" msgstr "" -#: ../../c-api/memory.rst:308 -msgid "" -"These are :term:`soft deprecated` aliases to existing functions and macros. " -"They exist solely for backwards compatibility." +msgid "These are :term:`soft deprecated` aliases to existing functions and macros. They exist solely for backwards compatibility." msgstr "" -#: ../../c-api/memory.rst:315 msgid "Deprecated alias" msgstr "" -#: ../../c-api/memory.rst:316 msgid "Corresponding function or macro" msgstr "" -#: ../../c-api/memory.rst:318 msgid ":c:func:`PyMem_Malloc`" msgstr "" -#: ../../c-api/memory.rst:320 msgid ":c:macro:`PyMem_New`" msgstr "" -#: ../../c-api/memory.rst:322 ../../c-api/memory.rst:511 msgid ":c:func:`PyMem_Realloc`" msgstr "" -#: ../../c-api/memory.rst:324 msgid ":c:macro:`PyMem_Resize`" msgstr "" -#: ../../c-api/memory.rst:326 ../../c-api/memory.rst:328 -#: ../../c-api/memory.rst:513 msgid ":c:func:`PyMem_Free`" msgstr "" -#: ../../c-api/memory.rst:332 -msgid "" -"The macros are now aliases of the corresponding functions and macros. " -"Previously, their behavior was the same, but their use did not necessarily " -"preserve binary compatibility across Python versions." +msgid "The macros are now aliases of the corresponding functions and macros. Previously, their behavior was the same, but their use did not necessarily preserve binary compatibility across Python versions." msgstr "" -#: ../../c-api/memory.rst:342 msgid "Object allocators" msgstr "" -#: ../../c-api/memory.rst:349 -msgid "" -"There is no guarantee that the memory returned by these allocators can be " -"successfully cast to a Python object when intercepting the allocating " -"functions in this domain by the methods described in the :ref:`Customize " -"Memory Allocators ` section." +msgid "There is no guarantee that the memory returned by these allocators can be successfully cast to a Python object when intercepting the allocating functions in this domain by the methods described in the :ref:`Customize Memory Allocators ` section." msgstr "" -#: ../../c-api/memory.rst:354 -msgid "" -"The :ref:`default object allocator ` uses " -"the :ref:`pymalloc memory allocator `. In the :term:`free-" -"threaded ` build, the default is the :ref:`mimalloc memory " -"allocator ` instead." +msgid "The :ref:`default object allocator ` uses the :ref:`pymalloc memory allocator `. In the :term:`free-threaded ` build, the default is the :ref:`mimalloc memory allocator ` instead." msgstr "" -#: ../../c-api/memory.rst:368 -msgid "" -"Requesting zero bytes returns a distinct non-``NULL`` pointer if possible, " -"as if ``PyObject_Malloc(1)`` had been called instead. The memory will not " -"have been initialized in any way." +msgid "Requesting zero bytes returns a distinct non-``NULL`` pointer if possible, as if ``PyObject_Malloc(1)`` had been called instead. The memory will not have been initialized in any way." msgstr "" -#: ../../c-api/memory.rst:379 -msgid "" -"Requesting zero elements or elements of size zero bytes returns a distinct " -"non-``NULL`` pointer if possible, as if ``PyObject_Calloc(1, 1)`` had been " -"called instead." +msgid "Requesting zero elements or elements of size zero bytes returns a distinct non-``NULL`` pointer if possible, as if ``PyObject_Calloc(1, 1)`` had been called instead." msgstr "" -#: ../../c-api/memory.rst:391 -msgid "" -"If *p* is ``NULL``, the call is equivalent to ``PyObject_Malloc(n)``; else " -"if *n* is equal to zero, the memory block is resized but is not freed, and " -"the returned pointer is non-``NULL``." +msgid "If *p* is ``NULL``, the call is equivalent to ``PyObject_Malloc(n)``; else if *n* is equal to zero, the memory block is resized but is not freed, and the returned pointer is non-``NULL``." msgstr "" -#: ../../c-api/memory.rst:395 -msgid "" -"Unless *p* is ``NULL``, it must have been returned by a previous call " -"to :c:func:`PyObject_Malloc`, :c:func:`PyObject_Realloc` " -"or :c:func:`PyObject_Calloc`." +msgid "Unless *p* is ``NULL``, it must have been returned by a previous call to :c:func:`PyObject_Malloc`, :c:func:`PyObject_Realloc` or :c:func:`PyObject_Calloc`." msgstr "" -#: ../../c-api/memory.rst:398 -msgid "" -"If the request fails, :c:func:`PyObject_Realloc` returns ``NULL`` and *p* " -"remains a valid pointer to the previous memory area." +msgid "If the request fails, :c:func:`PyObject_Realloc` returns ``NULL`` and *p* remains a valid pointer to the previous memory area." msgstr "" -#: ../../c-api/memory.rst:404 -msgid "" -"Frees the memory block pointed to by *p*, which must have been returned by a " -"previous call to :c:func:`PyObject_Malloc`, :c:func:`PyObject_Realloc` " -"or :c:func:`PyObject_Calloc`. Otherwise, or if ``PyObject_Free(p)`` has " -"been called before, undefined behavior occurs." +msgid "Frees the memory block pointed to by *p*, which must have been returned by a previous call to :c:func:`PyObject_Malloc`, :c:func:`PyObject_Realloc` or :c:func:`PyObject_Calloc`. Otherwise, or if ``PyObject_Free(p)`` has been called before, undefined behavior occurs." msgstr "" -#: ../../c-api/memory.rst:411 -msgid "" -"Do not call this directly to free an object's memory; call the " -"type's :c:member:`~PyTypeObject.tp_free` slot instead." +msgid "Do not call this directly to free an object's memory; call the type's :c:member:`~PyTypeObject.tp_free` slot instead." msgstr "" -#: ../../c-api/memory.rst:414 -msgid "" -"Do not use this for memory allocated by :c:macro:`PyObject_GC_New` " -"or :c:macro:`PyObject_GC_NewVar`; use :c:func:`PyObject_GC_Del` instead." +msgid "Do not use this for memory allocated by :c:macro:`PyObject_GC_New` or :c:macro:`PyObject_GC_NewVar`; use :c:func:`PyObject_GC_Del` instead." msgstr "" -#: ../../c-api/memory.rst:419 -msgid "" -":c:func:`PyObject_GC_Del` is the equivalent of this function for memory " -"allocated by types that support garbage collection." +msgid ":c:func:`PyObject_GC_Del` is the equivalent of this function for memory allocated by types that support garbage collection." msgstr "" -#: ../../c-api/memory.rst:421 ../../c-api/memory.rst:519 msgid ":c:func:`PyObject_Malloc`" msgstr "" -#: ../../c-api/memory.rst:422 ../../c-api/memory.rst:520 msgid ":c:func:`PyObject_Realloc`" msgstr "" -#: ../../c-api/memory.rst:423 ../../c-api/memory.rst:521 msgid ":c:func:`PyObject_Calloc`" msgstr "" -#: ../../c-api/memory.rst:424 msgid ":c:macro:`PyObject_New`" msgstr "" -#: ../../c-api/memory.rst:425 msgid ":c:macro:`PyObject_NewVar`" msgstr "" -#: ../../c-api/memory.rst:426 msgid ":c:func:`PyType_GenericAlloc`" msgstr "" -#: ../../c-api/memory.rst:427 msgid ":c:member:`~PyTypeObject.tp_free`" msgstr "" -#: ../../c-api/memory.rst:433 msgid "Default Memory Allocators" msgstr "" -#: ../../c-api/memory.rst:435 msgid "Default memory allocators:" msgstr "" -#: ../../c-api/memory.rst:438 msgid "Configuration" msgstr "" -#: ../../c-api/memory.rst:438 msgid "Name" msgstr "" -#: ../../c-api/memory.rst:438 msgid "PyMem_RawMalloc" msgstr "" -#: ../../c-api/memory.rst:438 msgid "PyMem_Malloc" msgstr "" -#: ../../c-api/memory.rst:438 msgid "PyObject_Malloc" msgstr "" -#: ../../c-api/memory.rst:440 msgid "Release build" msgstr "" -#: ../../c-api/memory.rst:440 msgid "``\"pymalloc\"``" msgstr "" -#: ../../c-api/memory.rst:440 ../../c-api/memory.rst:442 msgid "``malloc``" msgstr "" -#: ../../c-api/memory.rst:440 msgid "``pymalloc``" msgstr "" -#: ../../c-api/memory.rst:441 msgid "Debug build" msgstr "" -#: ../../c-api/memory.rst:441 msgid "``\"pymalloc_debug\"``" msgstr "" -#: ../../c-api/memory.rst:441 ../../c-api/memory.rst:443 msgid "``malloc`` + debug" msgstr "" -#: ../../c-api/memory.rst:441 msgid "``pymalloc`` + debug" msgstr "" -#: ../../c-api/memory.rst:442 msgid "Release build, without pymalloc" msgstr "" -#: ../../c-api/memory.rst:442 msgid "``\"malloc\"``" msgstr "" -#: ../../c-api/memory.rst:443 msgid "Debug build, without pymalloc" msgstr "" -#: ../../c-api/memory.rst:443 msgid "``\"malloc_debug\"``" msgstr "" -#: ../../c-api/memory.rst:444 msgid "Free-threaded build" msgstr "" -#: ../../c-api/memory.rst:444 msgid "``\"mimalloc\"``" msgstr "" -#: ../../c-api/memory.rst:444 msgid "``mimalloc``" msgstr "" -#: ../../c-api/memory.rst:445 msgid "Free-threaded debug build" msgstr "" -#: ../../c-api/memory.rst:445 msgid "``\"mimalloc_debug\"``" msgstr "" -#: ../../c-api/memory.rst:445 msgid "``mimalloc`` + debug" msgstr "" -#: ../../c-api/memory.rst:448 msgid "Legend:" msgstr "" -#: ../../c-api/memory.rst:450 msgid "Name: value for :envvar:`PYTHONMALLOC` environment variable." msgstr "" -#: ../../c-api/memory.rst:451 -msgid "" -"``malloc``: system allocators from the standard C library, C " -"functions: :c:func:`malloc`, :c:func:`calloc`, :c:func:`realloc` " -"and :c:func:`free`." +msgid "``malloc``: system allocators from the standard C library, C functions: :c:func:`malloc`, :c:func:`calloc`, :c:func:`realloc` and :c:func:`free`." msgstr "" -#: ../../c-api/memory.rst:453 msgid "``pymalloc``: :ref:`pymalloc memory allocator `." msgstr "" -#: ../../c-api/memory.rst:454 msgid "``mimalloc``: :ref:`mimalloc memory allocator `." msgstr "" -#: ../../c-api/memory.rst:455 -msgid "" -"\"+ debug\": with :ref:`debug hooks on the Python memory allocators `." +msgid "\"+ debug\": with :ref:`debug hooks on the Python memory allocators `." msgstr "" -#: ../../c-api/memory.rst:457 msgid "\"Debug build\": :ref:`Python build in debug mode `." msgstr "" -#: ../../c-api/memory.rst:462 msgid "Customize Memory Allocators" msgstr "" -#: ../../c-api/memory.rst:468 -msgid "" -"Structure used to describe a memory block allocator. The structure has the " -"following fields:" +msgid "Structure used to describe a memory block allocator. The structure has the following fields:" msgstr "" -#: ../../c-api/memory.rst:472 ../../c-api/memory.rst:723 msgid "Field" msgstr "" -#: ../../c-api/memory.rst:472 ../../c-api/memory.rst:723 msgid "Meaning" msgstr "" -#: ../../c-api/memory.rst:474 ../../c-api/memory.rst:725 msgid "``void *ctx``" msgstr "" -#: ../../c-api/memory.rst:474 ../../c-api/memory.rst:725 msgid "user context passed as first argument" msgstr "" -#: ../../c-api/memory.rst:476 msgid "``void* malloc(void *ctx, size_t size)``" msgstr "" -#: ../../c-api/memory.rst:476 msgid "allocate a memory block" msgstr "" -#: ../../c-api/memory.rst:478 msgid "``void* calloc(void *ctx, size_t nelem, size_t elsize)``" msgstr "" -#: ../../c-api/memory.rst:478 msgid "allocate a memory block initialized with zeros" msgstr "" -#: ../../c-api/memory.rst:481 msgid "``void* realloc(void *ctx, void *ptr, size_t new_size)``" msgstr "" -#: ../../c-api/memory.rst:481 msgid "allocate or resize a memory block" msgstr "" -#: ../../c-api/memory.rst:483 msgid "``void free(void *ctx, void *ptr)``" msgstr "" -#: ../../c-api/memory.rst:483 msgid "free a memory block" msgstr "" -#: ../../c-api/memory.rst:486 -msgid "" -"The :c:type:`!PyMemAllocator` structure was renamed " -"to :c:type:`PyMemAllocatorEx` and a new ``calloc`` field was added." +msgid "The :c:type:`!PyMemAllocator` structure was renamed to :c:type:`PyMemAllocatorEx` and a new ``calloc`` field was added." msgstr "" -#: ../../c-api/memory.rst:493 msgid "Enum used to identify an allocator domain. Domains:" msgstr "" -#: ../../c-api/memory.rst:499 ../../c-api/memory.rst:508 -#: ../../c-api/memory.rst:517 msgid "Functions:" msgstr "" -#: ../../c-api/memory.rst:501 msgid ":c:func:`PyMem_RawMalloc`" msgstr "" -#: ../../c-api/memory.rst:502 msgid ":c:func:`PyMem_RawRealloc`" msgstr "" -#: ../../c-api/memory.rst:503 msgid ":c:func:`PyMem_RawCalloc`" msgstr "" -#: ../../c-api/memory.rst:504 msgid ":c:func:`PyMem_RawFree`" msgstr "" -#: ../../c-api/memory.rst:510 msgid ":c:func:`PyMem_Malloc`," msgstr "" -#: ../../c-api/memory.rst:512 msgid ":c:func:`PyMem_Calloc`" msgstr "" -#: ../../c-api/memory.rst:522 msgid ":c:func:`PyObject_Free`" msgstr "" -#: ../../c-api/memory.rst:526 msgid "Get the memory block allocator of the specified domain." msgstr "" -#: ../../c-api/memory.rst:531 msgid "Set the memory block allocator of the specified domain." msgstr "" -#: ../../c-api/memory.rst:533 -msgid "" -"The new allocator must return a distinct non-``NULL`` pointer when " -"requesting zero bytes." +msgid "The new allocator must return a distinct non-``NULL`` pointer when requesting zero bytes." msgstr "" -#: ../../c-api/memory.rst:536 -msgid "" -"For the :c:macro:`PYMEM_DOMAIN_RAW` domain, the allocator must be thread-" -"safe: a :term:`thread state` is not :term:`attached ` " -"when the allocator is called." +msgid "For the :c:macro:`PYMEM_DOMAIN_RAW` domain, the allocator must be thread-safe: a :term:`thread state` is not :term:`attached ` when the allocator is called." msgstr "" -#: ../../c-api/memory.rst:540 -msgid "" -"For the remaining domains, the allocator must also be thread-safe: the " -"allocator may be called in different interpreters that do not share " -"a :term:`GIL`." +msgid "For the remaining domains, the allocator must also be thread-safe: the allocator may be called in different interpreters that do not share a :term:`GIL`." msgstr "" -#: ../../c-api/memory.rst:544 -msgid "" -"If the new allocator is not a hook (does not call the previous allocator), " -"the :c:func:`PyMem_SetupDebugHooks` function must be called to reinstall the " -"debug hooks on top on the new allocator." +msgid "If the new allocator is not a hook (does not call the previous allocator), the :c:func:`PyMem_SetupDebugHooks` function must be called to reinstall the debug hooks on top on the new allocator." msgstr "" -#: ../../c-api/memory.rst:548 -msgid "" -"See also :c:member:`PyPreConfig.allocator` and :ref:`Preinitialize Python " -"with PyPreConfig `." +msgid "See also :c:member:`PyPreConfig.allocator` and :ref:`Preinitialize Python with PyPreConfig `." msgstr "" -#: ../../c-api/memory.rst:553 msgid ":c:func:`PyMem_SetAllocator` does have the following contract:" msgstr "" -#: ../../c-api/memory.rst:555 -msgid "" -"It can be called after :c:func:`Py_PreInitialize` and " -"before :c:func:`Py_InitializeFromConfig` to install a custom memory " -"allocator. There are no restrictions over the installed allocator other than " -"the ones imposed by the domain (for instance, the Raw Domain allows the " -"allocator to be called without an :term:`attached thread state`). " -"See :ref:`the section on allocator domains ` for more " -"information." +msgid "It can be called after :c:func:`Py_PreInitialize` and before :c:func:`Py_InitializeFromConfig` to install a custom memory allocator. There are no restrictions over the installed allocator other than the ones imposed by the domain (for instance, the Raw Domain allows the allocator to be called without an :term:`attached thread state`). See :ref:`the section on allocator domains ` for more information." msgstr "" -#: ../../c-api/memory.rst:563 -msgid "" -"If called after Python has finish initializing " -"(after :c:func:`Py_InitializeFromConfig` has been called) the allocator " -"**must** wrap the existing allocator. Substituting the current allocator for " -"some other arbitrary one is **not supported**." +msgid "If called after Python has finish initializing (after :c:func:`Py_InitializeFromConfig` has been called) the allocator **must** wrap the existing allocator. Substituting the current allocator for some other arbitrary one is **not supported**." msgstr "" -#: ../../c-api/memory.rst:568 msgid "All allocators must be thread-safe." msgstr "" -#: ../../c-api/memory.rst:574 -msgid "" -"Setup :ref:`debug hooks in the Python memory allocators ` " -"to detect memory errors." +msgid "Setup :ref:`debug hooks in the Python memory allocators ` to detect memory errors." msgstr "" -#: ../../c-api/memory.rst:581 msgid "Debug hooks on the Python memory allocators" msgstr "" -#: ../../c-api/memory.rst:583 -msgid "" -"When :ref:`Python is built in debug mode `, " -"the :c:func:`PyMem_SetupDebugHooks` function is called at the :ref:`Python " -"preinitialization ` to setup debug hooks on Python memory " -"allocators to detect memory errors." +msgid "When :ref:`Python is built in debug mode `, the :c:func:`PyMem_SetupDebugHooks` function is called at the :ref:`Python preinitialization ` to setup debug hooks on Python memory allocators to detect memory errors." msgstr "" -#: ../../c-api/memory.rst:588 -msgid "" -"The :envvar:`PYTHONMALLOC` environment variable can be used to install debug " -"hooks on a Python compiled in release mode (ex: ``PYTHONMALLOC=debug``)." +msgid "The :envvar:`PYTHONMALLOC` environment variable can be used to install debug hooks on a Python compiled in release mode (ex: ``PYTHONMALLOC=debug``)." msgstr "" -#: ../../c-api/memory.rst:591 -msgid "" -"The :c:func:`PyMem_SetupDebugHooks` function can be used to set debug hooks " -"after calling :c:func:`PyMem_SetAllocator`." +msgid "The :c:func:`PyMem_SetupDebugHooks` function can be used to set debug hooks after calling :c:func:`PyMem_SetAllocator`." msgstr "" -#: ../../c-api/memory.rst:594 -msgid "" -"These debug hooks fill dynamically allocated memory blocks with special, " -"recognizable bit patterns. Newly allocated memory is filled with the byte " -"``0xCD`` (``PYMEM_CLEANBYTE``), freed memory is filled with the byte " -"``0xDD`` (``PYMEM_DEADBYTE``). Memory blocks are surrounded by \"forbidden " -"bytes\" filled with the byte ``0xFD`` (``PYMEM_FORBIDDENBYTE``). Strings of " -"these bytes are unlikely to be valid addresses, floats, or ASCII strings." +msgid "These debug hooks fill dynamically allocated memory blocks with special, recognizable bit patterns. Newly allocated memory is filled with the byte ``0xCD`` (``PYMEM_CLEANBYTE``), freed memory is filled with the byte ``0xDD`` (``PYMEM_DEADBYTE``). Memory blocks are surrounded by \"forbidden bytes\" filled with the byte ``0xFD`` (``PYMEM_FORBIDDENBYTE``). Strings of these bytes are unlikely to be valid addresses, floats, or ASCII strings." msgstr "" -#: ../../c-api/memory.rst:601 msgid "Runtime checks:" msgstr "" -#: ../../c-api/memory.rst:603 -msgid "" -"Detect API violations. For example, detect if :c:func:`PyObject_Free` is " -"called on a memory block allocated by :c:func:`PyMem_Malloc`." +msgid "Detect API violations. For example, detect if :c:func:`PyObject_Free` is called on a memory block allocated by :c:func:`PyMem_Malloc`." msgstr "" -#: ../../c-api/memory.rst:605 msgid "Detect write before the start of the buffer (buffer underflow)." msgstr "" -#: ../../c-api/memory.rst:606 msgid "Detect write after the end of the buffer (buffer overflow)." msgstr "" -#: ../../c-api/memory.rst:607 -msgid "" -"Check that there is an :term:`attached thread state` when allocator " -"functions of :c:macro:`PYMEM_DOMAIN_OBJ` (ex: :c:func:`PyObject_Malloc`) " -"and :c:macro:`PYMEM_DOMAIN_MEM` (ex: :c:func:`PyMem_Malloc`) domains are " -"called." +msgid "Check that there is an :term:`attached thread state` when allocator functions of :c:macro:`PYMEM_DOMAIN_OBJ` (ex: :c:func:`PyObject_Malloc`) and :c:macro:`PYMEM_DOMAIN_MEM` (ex: :c:func:`PyMem_Malloc`) domains are called." msgstr "" -#: ../../c-api/memory.rst:612 -msgid "" -"On error, the debug hooks use the :mod:`tracemalloc` module to get the " -"traceback where a memory block was allocated. The traceback is only " -"displayed if :mod:`tracemalloc` is tracing Python memory allocations and the " -"memory block was traced." +msgid "On error, the debug hooks use the :mod:`tracemalloc` module to get the traceback where a memory block was allocated. The traceback is only displayed if :mod:`tracemalloc` is tracing Python memory allocations and the memory block was traced." msgstr "" -#: ../../c-api/memory.rst:617 -msgid "" -"Let *S* = ``sizeof(size_t)``. ``2*S`` bytes are added at each end of each " -"block of *N* bytes requested. The memory layout is like so, where p " -"represents the address returned by a malloc-like or realloc-like function " -"(``p[i:j]`` means the slice of bytes from ``*(p+i)`` inclusive up to " -"``*(p+j)`` exclusive; note that the treatment of negative indices differs " -"from a Python slice):" +msgid "Let *S* = ``sizeof(size_t)``. ``2*S`` bytes are added at each end of each block of *N* bytes requested. The memory layout is like so, where p represents the address returned by a malloc-like or realloc-like function (``p[i:j]`` means the slice of bytes from ``*(p+i)`` inclusive up to ``*(p+j)`` exclusive; note that the treatment of negative indices differs from a Python slice):" msgstr "" -#: ../../c-api/memory.rst:623 msgid "``p[-2*S:-S]``" msgstr "" -#: ../../c-api/memory.rst:624 -msgid "" -"Number of bytes originally asked for. This is a size_t, big-endian (easier " -"to read in a memory dump)." +msgid "Number of bytes originally asked for. This is a size_t, big-endian (easier to read in a memory dump)." msgstr "" -#: ../../c-api/memory.rst:626 msgid "``p[-S]``" msgstr "" -#: ../../c-api/memory.rst:627 msgid "API identifier (ASCII character):" msgstr "" -#: ../../c-api/memory.rst:629 msgid "``'r'`` for :c:macro:`PYMEM_DOMAIN_RAW`." msgstr "" -#: ../../c-api/memory.rst:630 msgid "``'m'`` for :c:macro:`PYMEM_DOMAIN_MEM`." msgstr "" -#: ../../c-api/memory.rst:631 msgid "``'o'`` for :c:macro:`PYMEM_DOMAIN_OBJ`." msgstr "" -#: ../../c-api/memory.rst:633 msgid "``p[-S+1:0]``" msgstr "" -#: ../../c-api/memory.rst:634 msgid "Copies of PYMEM_FORBIDDENBYTE. Used to catch under- writes and reads." msgstr "" -#: ../../c-api/memory.rst:636 msgid "``p[0:N]``" msgstr "" -#: ../../c-api/memory.rst:637 -msgid "" -"The requested memory, filled with copies of PYMEM_CLEANBYTE, used to catch " -"reference to uninitialized memory. When a realloc-like function is called " -"requesting a larger memory block, the new excess bytes are also filled with " -"PYMEM_CLEANBYTE. When a free-like function is called, these are overwritten " -"with PYMEM_DEADBYTE, to catch reference to freed memory. When a realloc- " -"like function is called requesting a smaller memory block, the excess old " -"bytes are also filled with PYMEM_DEADBYTE." +msgid "The requested memory, filled with copies of PYMEM_CLEANBYTE, used to catch reference to uninitialized memory. When a realloc-like function is called requesting a larger memory block, the new excess bytes are also filled with PYMEM_CLEANBYTE. When a free-like function is called, these are overwritten with PYMEM_DEADBYTE, to catch reference to freed memory. When a realloc- like function is called requesting a smaller memory block, the excess old bytes are also filled with PYMEM_DEADBYTE." msgstr "" -#: ../../c-api/memory.rst:645 msgid "``p[N:N+S]``" msgstr "" -#: ../../c-api/memory.rst:646 msgid "Copies of PYMEM_FORBIDDENBYTE. Used to catch over- writes and reads." msgstr "" -#: ../../c-api/memory.rst:648 msgid "``p[N+S:N+2*S]``" msgstr "" -#: ../../c-api/memory.rst:649 -msgid "" -"Only used if the ``PYMEM_DEBUG_SERIALNO`` macro is defined (not defined by " -"default)." +msgid "Only used if the ``PYMEM_DEBUG_SERIALNO`` macro is defined (not defined by default)." msgstr "" -#: ../../c-api/memory.rst:652 -msgid "" -"A serial number, incremented by 1 on each call to a malloc-like or realloc-" -"like function. Big-endian :c:type:`size_t`. If \"bad memory\" is detected " -"later, the serial number gives an excellent way to set a breakpoint on the " -"next run, to capture the instant at which this block was passed out. The " -"static function bumpserialno() in obmalloc.c is the only place the serial " -"number is incremented, and exists so you can set such a breakpoint easily." +msgid "A serial number, incremented by 1 on each call to a malloc-like or realloc-like function. Big-endian :c:type:`size_t`. If \"bad memory\" is detected later, the serial number gives an excellent way to set a breakpoint on the next run, to capture the instant at which this block was passed out. The static function bumpserialno() in obmalloc.c is the only place the serial number is incremented, and exists so you can set such a breakpoint easily." msgstr "" -#: ../../c-api/memory.rst:659 -msgid "" -"A realloc-like or free-like function first checks that the " -"PYMEM_FORBIDDENBYTE bytes at each end are intact. If they've been altered, " -"diagnostic output is written to stderr, and the program is aborted via " -"Py_FatalError(). The other main failure mode is provoking a memory error " -"when a program reads up one of the special bit patterns and tries to use it " -"as an address. If you get in a debugger then and look at the object, you're " -"likely to see that it's entirely filled with PYMEM_DEADBYTE (meaning freed " -"memory is getting used) or PYMEM_CLEANBYTE (meaning uninitialized memory is " -"getting used)." -msgstr "" - -#: ../../c-api/memory.rst:668 -msgid "" -"The :c:func:`PyMem_SetupDebugHooks` function now also works on Python " -"compiled in release mode. On error, the debug hooks now " -"use :mod:`tracemalloc` to get the traceback where a memory block was " -"allocated. The debug hooks now also check if there is an :term:`attached " -"thread state` when functions of :c:macro:`PYMEM_DOMAIN_OBJ` " -"and :c:macro:`PYMEM_DOMAIN_MEM` domains are called." +msgid "A realloc-like or free-like function first checks that the PYMEM_FORBIDDENBYTE bytes at each end are intact. If they've been altered, diagnostic output is written to stderr, and the program is aborted via Py_FatalError(). The other main failure mode is provoking a memory error when a program reads up one of the special bit patterns and tries to use it as an address. If you get in a debugger then and look at the object, you're likely to see that it's entirely filled with PYMEM_DEADBYTE (meaning freed memory is getting used) or PYMEM_CLEANBYTE (meaning uninitialized memory is getting used)." msgstr "" -#: ../../c-api/memory.rst:676 -msgid "" -"Byte patterns ``0xCB`` (``PYMEM_CLEANBYTE``), ``0xDB`` (``PYMEM_DEADBYTE``) " -"and ``0xFB`` (``PYMEM_FORBIDDENBYTE``) have been replaced with ``0xCD``, " -"``0xDD`` and ``0xFD`` to use the same values than Windows CRT debug " -"``malloc()`` and ``free()``." +msgid "The :c:func:`PyMem_SetupDebugHooks` function now also works on Python compiled in release mode. On error, the debug hooks now use :mod:`tracemalloc` to get the traceback where a memory block was allocated. The debug hooks now also check if there is an :term:`attached thread state` when functions of :c:macro:`PYMEM_DOMAIN_OBJ` and :c:macro:`PYMEM_DOMAIN_MEM` domains are called." +msgstr "" + +msgid "Byte patterns ``0xCB`` (``PYMEM_CLEANBYTE``), ``0xDB`` (``PYMEM_DEADBYTE``) and ``0xFB`` (``PYMEM_FORBIDDENBYTE``) have been replaced with ``0xCD``, ``0xDD`` and ``0xFD`` to use the same values than Windows CRT debug ``malloc()`` and ``free()``." msgstr "" -#: ../../c-api/memory.rst:686 msgid "The pymalloc allocator" msgstr "" -#: ../../c-api/memory.rst:688 -msgid "" -"Python has a *pymalloc* allocator optimized for small objects (smaller or " -"equal to 512 bytes) with a short lifetime. It uses memory mappings called " -"\"arenas\" with a fixed size of either 256 KiB on 32-bit platforms or 1 MiB " -"on 64-bit platforms. It falls back to :c:func:`PyMem_RawMalloc` " -"and :c:func:`PyMem_RawRealloc` for allocations larger than 512 bytes." +msgid "Python has a *pymalloc* allocator optimized for small objects (smaller or equal to 512 bytes) with a short lifetime. It uses memory mappings called \"arenas\" with a fixed size of either 256 KiB on 32-bit platforms or 1 MiB on 64-bit platforms. It falls back to :c:func:`PyMem_RawMalloc` and :c:func:`PyMem_RawRealloc` for allocations larger than 512 bytes." msgstr "" -#: ../../c-api/memory.rst:694 -msgid "" -"*pymalloc* is the :ref:`default allocator ` of " -"the :c:macro:`PYMEM_DOMAIN_MEM` (ex: :c:func:`PyMem_Malloc`) " -"and :c:macro:`PYMEM_DOMAIN_OBJ` (ex: :c:func:`PyObject_Malloc`) domains." +msgid "*pymalloc* is the :ref:`default allocator ` of the :c:macro:`PYMEM_DOMAIN_MEM` (ex: :c:func:`PyMem_Malloc`) and :c:macro:`PYMEM_DOMAIN_OBJ` (ex: :c:func:`PyObject_Malloc`) domains." msgstr "" -#: ../../c-api/memory.rst:698 msgid "The arena allocator uses the following functions:" msgstr "" -#: ../../c-api/memory.rst:700 msgid ":c:func:`!VirtualAlloc` and :c:func:`!VirtualFree` on Windows," msgstr "" -#: ../../c-api/memory.rst:701 msgid ":c:func:`!mmap` and :c:func:`!munmap` if available," msgstr "" -#: ../../c-api/memory.rst:702 msgid ":c:func:`malloc` and :c:func:`free` otherwise." msgstr "" -#: ../../c-api/memory.rst:704 -msgid "" -"This allocator is disabled if Python is configured with the :option:`--" -"without-pymalloc` option. It can also be disabled at runtime using " -"the :envvar:`PYTHONMALLOC` environment variable (ex: " -"``PYTHONMALLOC=malloc``)." +msgid "This allocator is disabled if Python is configured with the :option:`--without-pymalloc` option. It can also be disabled at runtime using the :envvar:`PYTHONMALLOC` environment variable (ex: ``PYTHONMALLOC=malloc``)." msgstr "" -#: ../../c-api/memory.rst:708 -msgid "" -"Typically, it makes sense to disable the pymalloc allocator when building " -"Python with AddressSanitizer (:option:`--with-address-sanitizer`) which " -"helps uncover low level bugs within the C code." +msgid "Typically, it makes sense to disable the pymalloc allocator when building Python with AddressSanitizer (:option:`--with-address-sanitizer`) which helps uncover low level bugs within the C code." msgstr "" -#: ../../c-api/memory.rst:713 msgid "Customize pymalloc Arena Allocator" msgstr "" -#: ../../c-api/memory.rst:719 -msgid "" -"Structure used to describe an arena allocator. The structure has three " -"fields:" +msgid "Structure used to describe an arena allocator. The structure has three fields:" msgstr "" -#: ../../c-api/memory.rst:727 msgid "``void* alloc(void *ctx, size_t size)``" msgstr "" -#: ../../c-api/memory.rst:727 msgid "allocate an arena of size bytes" msgstr "" -#: ../../c-api/memory.rst:729 msgid "``void free(void *ctx, void *ptr, size_t size)``" msgstr "" -#: ../../c-api/memory.rst:729 msgid "free an arena" msgstr "" -#: ../../c-api/memory.rst:734 msgid "Get the arena allocator." msgstr "" -#: ../../c-api/memory.rst:738 msgid "Set the arena allocator." msgstr "" -#: ../../c-api/memory.rst:743 msgid "The mimalloc allocator" msgstr "" -#: ../../c-api/memory.rst:747 -msgid "" -"Python supports the `mimalloc `__ " -"allocator when the underlying platform support is available. mimalloc is a " -"general purpose allocator with excellent performance characteristics, " -"initially developed by Daan Leijen for the runtime systems of the Koka and " -"Lean languages." +msgid "Python supports the `mimalloc `__ allocator when the underlying platform support is available. mimalloc is a general purpose allocator with excellent performance characteristics, initially developed by Daan Leijen for the runtime systems of the Koka and Lean languages." msgstr "" -#: ../../c-api/memory.rst:753 -msgid "" -"Unlike :ref:`pymalloc `, which is optimized for small objects (512 " -"bytes or fewer), mimalloc handles allocations of any size." +msgid "Unlike :ref:`pymalloc `, which is optimized for small objects (512 bytes or fewer), mimalloc handles allocations of any size." msgstr "" -#: ../../c-api/memory.rst:756 -msgid "" -"In the :term:`free-threaded ` build, mimalloc is the default " -"and **required** allocator for the :c:macro:`PYMEM_DOMAIN_MEM` " -"and :c:macro:`PYMEM_DOMAIN_OBJ` domains. It cannot be disabled in free-" -"threaded builds. The free-threaded build uses per-thread mimalloc heaps, " -"which allows allocation and deallocation to proceed without locking in most " -"cases." +msgid "In the :term:`free-threaded ` build, mimalloc is the default and **required** allocator for the :c:macro:`PYMEM_DOMAIN_MEM` and :c:macro:`PYMEM_DOMAIN_OBJ` domains. It cannot be disabled in free-threaded builds. The free-threaded build uses per-thread mimalloc heaps, which allows allocation and deallocation to proceed without locking in most cases." msgstr "" -#: ../../c-api/memory.rst:762 -msgid "" -"In the default (non-free-threaded) build, mimalloc is available but not the " -"default allocator. It can be selected at runtime " -"using :envvar:`PYTHONMALLOC`\\ ``=mimalloc`` (or ``mimalloc_debug`` to " -"include :ref:`debug hooks `). It can be disabled at " -"build time using the :option:`--without-mimalloc` configure option, but this " -"option cannot be combined with :option:`--disable-gil`." +msgid "In the default (non-free-threaded) build, mimalloc is available but not the default allocator. It can be selected at runtime using :envvar:`PYTHONMALLOC`\\ ``=mimalloc`` (or ``mimalloc_debug`` to include :ref:`debug hooks `). It can be disabled at build time using the :option:`--without-mimalloc` configure option, but this option cannot be combined with :option:`--disable-gil`." msgstr "" -#: ../../c-api/memory.rst:770 msgid "tracemalloc C API" msgstr "" -#: ../../c-api/memory.rst:776 msgid "Track an allocated memory block in the :mod:`tracemalloc` module." msgstr "" -#: ../../c-api/memory.rst:778 -msgid "" -"Return ``0`` on success, return ``-1`` on error (failed to allocate memory " -"to store the trace). Return ``-2`` if tracemalloc is disabled." +msgid "Return ``0`` on success, return ``-1`` on error (failed to allocate memory to store the trace). Return ``-2`` if tracemalloc is disabled." msgstr "" -#: ../../c-api/memory.rst:781 msgid "If memory block is already tracked, update the existing trace." msgstr "" -#: ../../c-api/memory.rst:785 -msgid "" -"Untrack an allocated memory block in the :mod:`tracemalloc` module. Do " -"nothing if the block was not tracked." +msgid "Untrack an allocated memory block in the :mod:`tracemalloc` module. Do nothing if the block was not tracked." msgstr "" -#: ../../c-api/memory.rst:788 msgid "Return ``-2`` if tracemalloc is disabled, otherwise return ``0``." msgstr "" -#: ../../c-api/memory.rst:794 msgid "Examples" msgstr "" -#: ../../c-api/memory.rst:796 -msgid "" -"Here is the example from section :ref:`memoryoverview`, rewritten so that " -"the I/O buffer is allocated from the Python heap by using the first function " -"set::" +msgid "Here is the example from section :ref:`memoryoverview`, rewritten so that the I/O buffer is allocated from the Python heap by using the first function set::" msgstr "" -#: ../../c-api/memory.rst:799 msgid "" "PyObject *res;\n" "char *buf = (char *) PyMem_Malloc(BUFSIZ); /* for I/O */\n" @@ -1216,11 +669,9 @@ msgid "" "return res;" msgstr "" -#: ../../c-api/memory.rst:809 msgid "The same code using the type-oriented function set::" msgstr "" -#: ../../c-api/memory.rst:811 msgid "" "PyObject *res;\n" "char *buf = PyMem_New(char, BUFSIZ); /* for I/O */\n" @@ -1233,17 +684,9 @@ msgid "" "return res;" msgstr "" -#: ../../c-api/memory.rst:821 -msgid "" -"Note that in the two examples above, the buffer is always manipulated via " -"functions belonging to the same set. Indeed, it is required to use the same " -"memory API family for a given memory block, so that the risk of mixing " -"different allocators is reduced to a minimum. The following code sequence " -"contains two errors, one of which is labeled as *fatal* because it mixes two " -"different allocators operating on different heaps. ::" +msgid "Note that in the two examples above, the buffer is always manipulated via functions belonging to the same set. Indeed, it is required to use the same memory API family for a given memory block, so that the risk of mixing different allocators is reduced to a minimum. The following code sequence contains two errors, one of which is labeled as *fatal* because it mixes two different allocators operating on different heaps. ::" msgstr "" -#: ../../c-api/memory.rst:828 msgid "" "char *buf1 = PyMem_New(char, BUFSIZ);\n" "char *buf2 = (char *) malloc(BUFSIZ);\n" @@ -1254,32 +697,20 @@ msgid "" "free(buf1); /* Fatal -- should be PyMem_Free() */" msgstr "" -#: ../../c-api/memory.rst:836 -msgid "" -"In addition to the functions aimed at handling raw memory blocks from the " -"Python heap, objects in Python are allocated and released " -"with :c:macro:`PyObject_New`, :c:macro:`PyObject_NewVar` " -"and :c:func:`PyObject_Free`." +msgid "In addition to the functions aimed at handling raw memory blocks from the Python heap, objects in Python are allocated and released with :c:macro:`PyObject_New`, :c:macro:`PyObject_NewVar` and :c:func:`PyObject_Free`." msgstr "" -#: ../../c-api/memory.rst:840 -msgid "" -"These will be explained in the next chapter on defining and implementing new " -"object types in C." +msgid "These will be explained in the next chapter on defining and implementing new object types in C." msgstr "" -#: ../../c-api/memory.rst:43 msgid "malloc (C function)" msgstr "" -#: ../../c-api/memory.rst:43 msgid "calloc (C function)" msgstr "" -#: ../../c-api/memory.rst:43 msgid "realloc (C function)" msgstr "" -#: ../../c-api/memory.rst:43 msgid "free (C function)" msgstr "" diff --git a/c-api/memoryview.po b/c-api/memoryview.po index ae002b64..f349208b 100644 --- a/c-api/memoryview.po +++ b/c-api/memoryview.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:49+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -22,93 +22,47 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../c-api/memoryview.rst:9 msgid "MemoryView objects" msgstr "" -#: ../../c-api/memoryview.rst:11 -msgid "" -"A :class:`memoryview` object exposes the C level :ref:`buffer interface " -"` as a Python object which can then be passed around like any " -"other object." +msgid "A :class:`memoryview` object exposes the C level :ref:`buffer interface ` as a Python object which can then be passed around like any other object." msgstr "" -#: ../../c-api/memoryview.rst:18 -msgid "" -"This instance of :c:type:`PyTypeObject` represents the Python memoryview " -"type. This is the same object as :class:`memoryview` in the Python layer." +msgid "This instance of :c:type:`PyTypeObject` represents the Python memoryview type. This is the same object as :class:`memoryview` in the Python layer." msgstr "" -#: ../../c-api/memoryview.rst:24 -msgid "" -"Create a memoryview object from an object that provides the buffer " -"interface. If *obj* supports writable buffer exports, the memoryview object " -"will be read/write, otherwise it may be either read-only or read/write at " -"the discretion of the exporter." +msgid "Create a memoryview object from an object that provides the buffer interface. If *obj* supports writable buffer exports, the memoryview object will be read/write, otherwise it may be either read-only or read/write at the discretion of the exporter." msgstr "" -#: ../../c-api/memoryview.rst:32 msgid "Flag to request a readonly buffer." msgstr "" -#: ../../c-api/memoryview.rst:37 msgid "Flag to request a writable buffer." msgstr "" -#: ../../c-api/memoryview.rst:42 -msgid "" -"Create a memoryview object using *mem* as the underlying buffer. *flags* can " -"be one of :c:macro:`PyBUF_READ` or :c:macro:`PyBUF_WRITE`." +msgid "Create a memoryview object using *mem* as the underlying buffer. *flags* can be one of :c:macro:`PyBUF_READ` or :c:macro:`PyBUF_WRITE`." msgstr "" -#: ../../c-api/memoryview.rst:49 -msgid "" -"Create a memoryview object wrapping the given buffer structure *view*. For " -"simple byte buffers, :c:func:`PyMemoryView_FromMemory` is the preferred " -"function." +msgid "Create a memoryview object wrapping the given buffer structure *view*. For simple byte buffers, :c:func:`PyMemoryView_FromMemory` is the preferred function." msgstr "" -#: ../../c-api/memoryview.rst:55 -msgid "" -"Create a memoryview object to a :term:`contiguous` chunk of memory (in " -"either 'C' or 'F'ortran *order*) from an object that defines the buffer " -"interface. If memory is contiguous, the memoryview object points to the " -"original memory. Otherwise, a copy is made and the memoryview points to a " -"new bytes object." +msgid "Create a memoryview object to a :term:`contiguous` chunk of memory (in either 'C' or 'F'ortran *order*) from an object that defines the buffer interface. If memory is contiguous, the memoryview object points to the original memory. Otherwise, a copy is made and the memoryview points to a new bytes object." msgstr "" -#: ../../c-api/memoryview.rst:61 -msgid "" -"*buffertype* can be one of :c:macro:`PyBUF_READ` or :c:macro:`PyBUF_WRITE`." +msgid "*buffertype* can be one of :c:macro:`PyBUF_READ` or :c:macro:`PyBUF_WRITE`." msgstr "" -#: ../../c-api/memoryview.rst:66 -msgid "" -"Return true if the object *obj* is a memoryview object. It is not currently " -"allowed to create subclasses of :class:`memoryview`. This function always " -"succeeds." +msgid "Return true if the object *obj* is a memoryview object. It is not currently allowed to create subclasses of :class:`memoryview`. This function always succeeds." msgstr "" -#: ../../c-api/memoryview.rst:73 -msgid "" -"Return a pointer to the memoryview's private copy of the exporter's buffer. " -"*mview* **must** be a memoryview instance; this macro doesn't check its " -"type, you must do it yourself or you will risk crashes." +msgid "Return a pointer to the memoryview's private copy of the exporter's buffer. *mview* **must** be a memoryview instance; this macro doesn't check its type, you must do it yourself or you will risk crashes." msgstr "" -#: ../../c-api/memoryview.rst:79 -msgid "" -"Return either a pointer to the exporting object that the memoryview is based " -"on or ``NULL`` if the memoryview has been created by one of the " -"functions :c:func:`PyMemoryView_FromMemory` " -"or :c:func:`PyMemoryView_FromBuffer`. *mview* **must** be a memoryview " -"instance." +msgid "Return either a pointer to the exporting object that the memoryview is based on or ``NULL`` if the memoryview has been created by one of the functions :c:func:`PyMemoryView_FromMemory` or :c:func:`PyMemoryView_FromBuffer`. *mview* **must** be a memoryview instance." msgstr "" -#: ../../c-api/memoryview.rst:5 msgid "object" msgstr "" -#: ../../c-api/memoryview.rst:5 msgid "memoryview" msgstr "" diff --git a/c-api/method.po b/c-api/method.po index c07d5590..4bd9d3fc 100644 --- a/c-api/method.po +++ b/c-api/method.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:49+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,106 +23,62 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../c-api/method.rst:6 msgid "Instance Method Objects" msgstr "" -#: ../../c-api/method.rst:10 -msgid "" -"An instance method is a wrapper for a :c:type:`PyCFunction` and the new way " -"to bind a :c:type:`PyCFunction` to a class object. It replaces the former " -"call ``PyMethod_New(func, NULL, class)``." +msgid "An instance method is a wrapper for a :c:type:`PyCFunction` and the new way to bind a :c:type:`PyCFunction` to a class object. It replaces the former call ``PyMethod_New(func, NULL, class)``." msgstr "" -#: ../../c-api/method.rst:17 -msgid "" -"This instance of :c:type:`PyTypeObject` represents the Python instance " -"method type. It is not exposed to Python programs." +msgid "This instance of :c:type:`PyTypeObject` represents the Python instance method type. It is not exposed to Python programs." msgstr "" -#: ../../c-api/method.rst:23 -msgid "" -"Return true if *o* is an instance method object (has " -"type :c:data:`PyInstanceMethod_Type`). The parameter must not be ``NULL``. " -"This function always succeeds." +msgid "Return true if *o* is an instance method object (has type :c:data:`PyInstanceMethod_Type`). The parameter must not be ``NULL``. This function always succeeds." msgstr "" -#: ../../c-api/method.rst:30 -msgid "" -"Return a new instance method object, with *func* being any callable object. " -"*func* is the function that will be called when the instance method is " -"called." +msgid "Return a new instance method object, with *func* being any callable object. *func* is the function that will be called when the instance method is called." msgstr "" -#: ../../c-api/method.rst:37 msgid "Return the function object associated with the instance method *im*." msgstr "" -#: ../../c-api/method.rst:42 -msgid "" -"Macro version of :c:func:`PyInstanceMethod_Function` which avoids error " -"checking." +msgid "Macro version of :c:func:`PyInstanceMethod_Function` which avoids error checking." msgstr "" -#: ../../c-api/method.rst:48 msgid "Method Objects" msgstr "" -#: ../../c-api/method.rst:52 -msgid "" -"Methods are bound function objects. Methods are always bound to an instance " -"of a user-defined class. Unbound methods (methods bound to a class object) " -"are no longer available." +msgid "Methods are bound function objects. Methods are always bound to an instance of a user-defined class. Unbound methods (methods bound to a class object) are no longer available." msgstr "" -#: ../../c-api/method.rst:61 -msgid "" -"This instance of :c:type:`PyTypeObject` represents the Python method type. " -"This is exposed to Python programs as ``types.MethodType``." +msgid "This instance of :c:type:`PyTypeObject` represents the Python method type. This is exposed to Python programs as ``types.MethodType``." msgstr "" -#: ../../c-api/method.rst:67 -msgid "" -"Return true if *o* is a method object (has type :c:data:`PyMethod_Type`). " -"The parameter must not be ``NULL``. This function always succeeds." +msgid "Return true if *o* is a method object (has type :c:data:`PyMethod_Type`). The parameter must not be ``NULL``. This function always succeeds." msgstr "" -#: ../../c-api/method.rst:73 -msgid "" -"Return a new method object, with *func* being any callable object and *self* " -"the instance the method should be bound. *func* is the function that will be " -"called when the method is called. *self* must not be ``NULL``." +msgid "Return a new method object, with *func* being any callable object and *self* the instance the method should be bound. *func* is the function that will be called when the method is called. *self* must not be ``NULL``." msgstr "" -#: ../../c-api/method.rst:80 msgid "Return the function object associated with the method *meth*." msgstr "" -#: ../../c-api/method.rst:85 -msgid "" -"Macro version of :c:func:`PyMethod_Function` which avoids error checking." +msgid "Macro version of :c:func:`PyMethod_Function` which avoids error checking." msgstr "" -#: ../../c-api/method.rst:90 msgid "Return the instance associated with the method *meth*." msgstr "" -#: ../../c-api/method.rst:95 msgid "Macro version of :c:func:`PyMethod_Self` which avoids error checking." msgstr "" -#: ../../c-api/method.rst:8 ../../c-api/method.rst:50 msgid "object" msgstr "" -#: ../../c-api/method.rst:8 msgid "instancemethod" msgstr "" -#: ../../c-api/method.rst:50 msgid "method" msgstr "" -#: ../../c-api/method.rst:59 msgid "MethodType (in module types)" msgstr "" diff --git a/c-api/module.po b/c-api/module.po index 103b6dc7..4d23e76a 100644 --- a/c-api/module.po +++ b/c-api/module.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:49+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,555 +23,270 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../c-api/module.rst:6 msgid "Module Objects" msgstr "" -#: ../../c-api/module.rst:15 -msgid "" -"This instance of :c:type:`PyTypeObject` represents the Python module type. " -"This is exposed to Python programs as :py:class:`types.ModuleType`." +msgid "This instance of :c:type:`PyTypeObject` represents the Python module type. This is exposed to Python programs as :py:class:`types.ModuleType`." msgstr "" -#: ../../c-api/module.rst:21 -msgid "" -"Return true if *p* is a module object, or a subtype of a module object. This " -"function always succeeds." +msgid "Return true if *p* is a module object, or a subtype of a module object. This function always succeeds." msgstr "" -#: ../../c-api/module.rst:27 -msgid "" -"Return true if *p* is a module object, but not a subtype " -"of :c:data:`PyModule_Type`. This function always succeeds." +msgid "Return true if *p* is a module object, but not a subtype of :c:data:`PyModule_Type`. This function always succeeds." msgstr "" -#: ../../c-api/module.rst:40 -msgid "" -"Return a new module object with :attr:`module.__name__` set to *name*. The " -"module's :attr:`!" -"__name__`, :attr:`~module.__doc__`, :attr:`~module.__package__` " -"and :attr:`~module.__loader__` attributes are filled in (all but :attr:`!" -"__name__` are set to ``None``). The caller is responsible for setting " -"a :attr:`~module.__file__` attribute." +msgid "Return a new module object with :attr:`module.__name__` set to *name*. The module's :attr:`!__name__`, :attr:`~module.__doc__`, :attr:`~module.__package__` and :attr:`~module.__loader__` attributes are filled in (all but :attr:`!__name__` are set to ``None``). The caller is responsible for setting a :attr:`~module.__file__` attribute." msgstr "" -#: ../../c-api/module.rst:46 ../../c-api/module.rst:439 -#: ../../c-api/module.rst:466 msgid "Return ``NULL`` with an exception set on error." msgstr "" -#: ../../c-api/module.rst:50 -msgid "" -":attr:`~module.__package__` and :attr:`~module.__loader__` are now set to " -"``None``." +msgid ":attr:`~module.__package__` and :attr:`~module.__loader__` are now set to ``None``." msgstr "" -#: ../../c-api/module.rst:57 -msgid "" -"Similar to :c:func:`PyModule_NewObject`, but the name is a UTF-8 encoded " -"string instead of a Unicode object." +msgid "Similar to :c:func:`PyModule_NewObject`, but the name is a UTF-8 encoded string instead of a Unicode object." msgstr "" -#: ../../c-api/module.rst:65 -msgid "" -"Return the dictionary object that implements *module*'s namespace; this " -"object is the same as the :attr:`~object.__dict__` attribute of the module " -"object. If *module* is not a module object (or a subtype of a module " -"object), :exc:`SystemError` is raised and ``NULL`` is returned." +msgid "Return the dictionary object that implements *module*'s namespace; this object is the same as the :attr:`~object.__dict__` attribute of the module object. If *module* is not a module object (or a subtype of a module object), :exc:`SystemError` is raised and ``NULL`` is returned." msgstr "" -#: ../../c-api/module.rst:70 -msgid "" -"It is recommended extensions use other ``PyModule_*`` and ``PyObject_*`` " -"functions rather than directly manipulate a " -"module's :attr:`~object.__dict__`." +msgid "It is recommended extensions use other ``PyModule_*`` and ``PyObject_*`` functions rather than directly manipulate a module's :attr:`~object.__dict__`." msgstr "" -#: ../../c-api/module.rst:74 -msgid "" -"The returned reference is borrowed from the module; it is valid until the " -"module is destroyed." +msgid "The returned reference is borrowed from the module; it is valid until the module is destroyed." msgstr "" -#: ../../c-api/module.rst:84 -msgid "" -"Return *module*'s :attr:`~module.__name__` value. If the module does not " -"provide one, or if it is not a string, :exc:`SystemError` is raised and " -"``NULL`` is returned." +msgid "Return *module*'s :attr:`~module.__name__` value. If the module does not provide one, or if it is not a string, :exc:`SystemError` is raised and ``NULL`` is returned." msgstr "" -#: ../../c-api/module.rst:93 -msgid "" -"Similar to :c:func:`PyModule_GetNameObject` but return the name encoded to " -"``'utf-8'``." +msgid "Similar to :c:func:`PyModule_GetNameObject` but return the name encoded to ``'utf-8'``." msgstr "" -#: ../../c-api/module.rst:96 -msgid "" -"The returned buffer is only valid until the module is renamed or destroyed. " -"Note that Python code may rename a module by setting " -"its :py:attr:`~module.__name__` attribute." +msgid "The returned buffer is only valid until the module is renamed or destroyed. Note that Python code may rename a module by setting its :py:attr:`~module.__name__` attribute." msgstr "" -#: ../../c-api/module.rst:102 -msgid "" -"Return the \"state\" of the module, that is, a pointer to the block of " -"memory allocated at module creation time, or ``NULL``. " -"See :c:member:`PyModuleDef.m_size`." +msgid "Return the \"state\" of the module, that is, a pointer to the block of memory allocated at module creation time, or ``NULL``. See :c:member:`PyModuleDef.m_size`." msgstr "" -#: ../../c-api/module.rst:109 -msgid "" -"Return a pointer to the :c:type:`PyModuleDef` struct from which the module " -"was created, or ``NULL`` if the module wasn't created from a definition." +msgid "Return a pointer to the :c:type:`PyModuleDef` struct from which the module was created, or ``NULL`` if the module wasn't created from a definition." msgstr "" -#: ../../c-api/module.rst:112 -msgid "" -"On error, return ``NULL`` with an exception set. " -"Use :c:func:`PyErr_Occurred` to tell this case apart from a " -"missing :c:type:`!PyModuleDef`." +msgid "On error, return ``NULL`` with an exception set. Use :c:func:`PyErr_Occurred` to tell this case apart from a missing :c:type:`!PyModuleDef`." msgstr "" -#: ../../c-api/module.rst:123 -msgid "" -"Return the name of the file from which *module* was loaded using " -"*module*'s :attr:`~module.__file__` attribute. If this is not defined, or " -"if it is not a string, raise :exc:`SystemError` and return ``NULL``; " -"otherwise return a reference to a Unicode object." +msgid "Return the name of the file from which *module* was loaded using *module*'s :attr:`~module.__file__` attribute. If this is not defined, or if it is not a string, raise :exc:`SystemError` and return ``NULL``; otherwise return a reference to a Unicode object." msgstr "" -#: ../../c-api/module.rst:133 -msgid "" -"Similar to :c:func:`PyModule_GetFilenameObject` but return the filename " -"encoded to 'utf-8'." +msgid "Similar to :c:func:`PyModule_GetFilenameObject` but return the filename encoded to 'utf-8'." msgstr "" -#: ../../c-api/module.rst:136 -msgid "" -"The returned buffer is only valid until the " -"module's :py:attr:`~module.__file__` attribute is reassigned or the module " -"is destroyed." +msgid "The returned buffer is only valid until the module's :py:attr:`~module.__file__` attribute is reassigned or the module is destroyed." msgstr "" -#: ../../c-api/module.rst:139 -msgid "" -":c:func:`PyModule_GetFilename` raises :exc:`UnicodeEncodeError` on " -"unencodable filenames, use :c:func:`PyModule_GetFilenameObject` instead." +msgid ":c:func:`PyModule_GetFilename` raises :exc:`UnicodeEncodeError` on unencodable filenames, use :c:func:`PyModule_GetFilenameObject` instead." msgstr "" -#: ../../c-api/module.rst:147 msgid "Module definitions" msgstr "" -#: ../../c-api/module.rst:149 -msgid "" -"The functions in the previous section work on any module object, including " -"modules imported from Python code." +msgid "The functions in the previous section work on any module object, including modules imported from Python code." msgstr "" -#: ../../c-api/module.rst:152 -msgid "" -"Modules defined using the C API typically use a *module " -"definition*, :c:type:`PyModuleDef` -- a statically allocated, constant " -"“description\" of how a module should be created." +msgid "Modules defined using the C API typically use a *module definition*, :c:type:`PyModuleDef` -- a statically allocated, constant “description\" of how a module should be created." msgstr "" -#: ../../c-api/module.rst:156 -msgid "" -"The definition is usually used to define an extension's “main” module object " -"(see :ref:`extension-modules` for details). It is also used to :ref:`create " -"extension modules dynamically `." +msgid "The definition is usually used to define an extension's “main” module object (see :ref:`extension-modules` for details). It is also used to :ref:`create extension modules dynamically `." msgstr "" -#: ../../c-api/module.rst:161 -msgid "" -"Unlike :c:func:`PyModule_New`, the definition allows management of *module " -"state* -- a piece of memory that is allocated and cleared together with the " -"module object. Unlike the module's Python attributes, Python code cannot " -"replace or delete data stored in module state." +msgid "Unlike :c:func:`PyModule_New`, the definition allows management of *module state* -- a piece of memory that is allocated and cleared together with the module object. Unlike the module's Python attributes, Python code cannot replace or delete data stored in module state." msgstr "" -#: ../../c-api/module.rst:169 -msgid "" -"The module definition struct, which holds all information needed to create a " -"module object. This structure must be statically allocated (or be otherwise " -"guaranteed to be valid while any modules created from it exist). Usually, " -"there is only one variable of this type for each extension module." +msgid "The module definition struct, which holds all information needed to create a module object. This structure must be statically allocated (or be otherwise guaranteed to be valid while any modules created from it exist). Usually, there is only one variable of this type for each extension module." msgstr "" -#: ../../c-api/module.rst:177 msgid "Always initialize this member to :c:macro:`PyModuleDef_HEAD_INIT`." msgstr "" -#: ../../c-api/module.rst:181 msgid "Name for the new module." msgstr "" -#: ../../c-api/module.rst:185 -msgid "" -"Docstring for the module; usually a docstring variable created " -"with :c:macro:`PyDoc_STRVAR` is used." +msgid "Docstring for the module; usually a docstring variable created with :c:macro:`PyDoc_STRVAR` is used." msgstr "" -#: ../../c-api/module.rst:190 -msgid "" -"Module state may be kept in a per-module memory area that can be retrieved " -"with :c:func:`PyModule_GetState`, rather than in static globals. This makes " -"modules safe for use in multiple sub-interpreters." +msgid "Module state may be kept in a per-module memory area that can be retrieved with :c:func:`PyModule_GetState`, rather than in static globals. This makes modules safe for use in multiple sub-interpreters." msgstr "" -#: ../../c-api/module.rst:194 -msgid "" -"This memory area is allocated based on *m_size* on module creation, and " -"freed when the module object is deallocated, after " -"the :c:member:`~PyModuleDef.m_free` function has been called, if present." +msgid "This memory area is allocated based on *m_size* on module creation, and freed when the module object is deallocated, after the :c:member:`~PyModuleDef.m_free` function has been called, if present." msgstr "" -#: ../../c-api/module.rst:198 -msgid "" -"Setting it to a non-negative value means that the module can be re-" -"initialized and specifies the additional amount of memory it requires for " -"its state." +msgid "Setting it to a non-negative value means that the module can be re-initialized and specifies the additional amount of memory it requires for its state." msgstr "" -#: ../../c-api/module.rst:202 -msgid "" -"Setting ``m_size`` to ``-1`` means that the module does not support sub-" -"interpreters, because it has global state. Negative ``m_size`` is only " -"allowed when using :ref:`legacy single-phase initialization ` or when :ref:`creating modules dynamically `." +msgid "Setting ``m_size`` to ``-1`` means that the module does not support sub-interpreters, because it has global state. Negative ``m_size`` is only allowed when using :ref:`legacy single-phase initialization ` or when :ref:`creating modules dynamically `." msgstr "" -#: ../../c-api/module.rst:208 msgid "See :PEP:`3121` for more details." msgstr "" -#: ../../c-api/module.rst:212 -msgid "" -"A pointer to a table of module-level functions, described " -"by :c:type:`PyMethodDef` values. Can be ``NULL`` if no functions are " -"present." +msgid "A pointer to a table of module-level functions, described by :c:type:`PyMethodDef` values. Can be ``NULL`` if no functions are present." msgstr "" -#: ../../c-api/module.rst:217 -msgid "" -"An array of slot definitions for multi-phase initialization, terminated by a " -"``{0, NULL}`` entry. When using legacy single-phase initialization, " -"*m_slots* must be ``NULL``." +msgid "An array of slot definitions for multi-phase initialization, terminated by a ``{0, NULL}`` entry. When using legacy single-phase initialization, *m_slots* must be ``NULL``." msgstr "" -#: ../../c-api/module.rst:223 -msgid "" -"Prior to version 3.5, this member was always set to ``NULL``, and was " -"defined as:" +msgid "Prior to version 3.5, this member was always set to ``NULL``, and was defined as:" msgstr "" -#: ../../c-api/module.rst:230 -msgid "" -"A traversal function to call during GC traversal of the module object, or " -"``NULL`` if not needed." +msgid "A traversal function to call during GC traversal of the module object, or ``NULL`` if not needed." msgstr "" -#: ../../c-api/module.rst:233 ../../c-api/module.rst:248 -#: ../../c-api/module.rst:269 -msgid "" -"This function is not called if the module state was requested but is not " -"allocated yet. This is the case immediately after the module is created and " -"before the module is executed (:c:data:`Py_mod_exec` function). More " -"precisely, this function is not called if :c:member:`~PyModuleDef.m_size` is " -"greater than 0 and the module state (as returned " -"by :c:func:`PyModule_GetState`) is ``NULL``." +msgid "This function is not called if the module state was requested but is not allocated yet. This is the case immediately after the module is created and before the module is executed (:c:data:`Py_mod_exec` function). More precisely, this function is not called if :c:member:`~PyModuleDef.m_size` is greater than 0 and the module state (as returned by :c:func:`PyModule_GetState`) is ``NULL``." msgstr "" -#: ../../c-api/module.rst:240 ../../c-api/module.rst:261 -#: ../../c-api/module.rst:276 msgid "No longer called before the module state is allocated." msgstr "" -#: ../../c-api/module.rst:245 -msgid "" -"A clear function to call during GC clearing of the module object, or " -"``NULL`` if not needed." +msgid "A clear function to call during GC clearing of the module object, or ``NULL`` if not needed." msgstr "" -#: ../../c-api/module.rst:255 -msgid "" -"Like :c:member:`PyTypeObject.tp_clear`, this function is not *always* called " -"before a module is deallocated. For example, when reference counting is " -"enough to determine that an object is no longer used, the cyclic garbage " -"collector is not involved and :c:member:`~PyModuleDef.m_free` is called " -"directly." +msgid "Like :c:member:`PyTypeObject.tp_clear`, this function is not *always* called before a module is deallocated. For example, when reference counting is enough to determine that an object is no longer used, the cyclic garbage collector is not involved and :c:member:`~PyModuleDef.m_free` is called directly." msgstr "" -#: ../../c-api/module.rst:266 -msgid "" -"A function to call during deallocation of the module object, or ``NULL`` if " -"not needed." +msgid "A function to call during deallocation of the module object, or ``NULL`` if not needed." msgstr "" -#: ../../c-api/module.rst:282 msgid "The type of ``PyModuleDef`` objects." msgstr "" -#: ../../c-api/module.rst:286 msgid "Module slots" msgstr "" -#: ../../c-api/module.rst:292 msgid "A slot ID, chosen from the available values explained below." msgstr "" -#: ../../c-api/module.rst:296 msgid "Value of the slot, whose meaning depends on the slot ID." msgstr "" -#: ../../c-api/module.rst:300 msgid "The available slot types are:" msgstr "" -#: ../../c-api/module.rst:304 -msgid "" -"Specifies a function that is called to create the module object itself. The " -"*value* pointer of this slot must point to a function of the signature:" +msgid "Specifies a function that is called to create the module object itself. The *value* pointer of this slot must point to a function of the signature:" msgstr "" -#: ../../c-api/module.rst:311 -msgid "" -"The function receives a :py:class:`~importlib.machinery.ModuleSpec` " -"instance, as defined in :PEP:`451`, and the module definition. It should " -"return a new module object, or set an error and return ``NULL``." +msgid "The function receives a :py:class:`~importlib.machinery.ModuleSpec` instance, as defined in :PEP:`451`, and the module definition. It should return a new module object, or set an error and return ``NULL``." msgstr "" -#: ../../c-api/module.rst:316 -msgid "" -"This function should be kept minimal. In particular, it should not call " -"arbitrary Python code, as trying to import the same module again may result " -"in an infinite loop." +msgid "This function should be kept minimal. In particular, it should not call arbitrary Python code, as trying to import the same module again may result in an infinite loop." msgstr "" -#: ../../c-api/module.rst:320 -msgid "" -"Multiple ``Py_mod_create`` slots may not be specified in one module " -"definition." +msgid "Multiple ``Py_mod_create`` slots may not be specified in one module definition." msgstr "" -#: ../../c-api/module.rst:323 -msgid "" -"If ``Py_mod_create`` is not specified, the import machinery will create a " -"normal module object using :c:func:`PyModule_New`. The name is taken from " -"*spec*, not the definition, to allow extension modules to dynamically adjust " -"to their place in the module hierarchy and be imported under different names " -"through symlinks, all while sharing a single module definition." +msgid "If ``Py_mod_create`` is not specified, the import machinery will create a normal module object using :c:func:`PyModule_New`. The name is taken from *spec*, not the definition, to allow extension modules to dynamically adjust to their place in the module hierarchy and be imported under different names through symlinks, all while sharing a single module definition." msgstr "" -#: ../../c-api/module.rst:329 -msgid "" -"There is no requirement for the returned object to be an instance " -"of :c:type:`PyModule_Type`. Any type can be used, as long as it supports " -"setting and getting import-related attributes. However, only " -"``PyModule_Type`` instances may be returned if the ``PyModuleDef`` has non-" -"``NULL`` ``m_traverse``, ``m_clear``, ``m_free``; non-zero ``m_size``; or " -"slots other than ``Py_mod_create``." +msgid "There is no requirement for the returned object to be an instance of :c:type:`PyModule_Type`. Any type can be used, as long as it supports setting and getting import-related attributes. However, only ``PyModule_Type`` instances may be returned if the ``PyModuleDef`` has non-``NULL`` ``m_traverse``, ``m_clear``, ``m_free``; non-zero ``m_size``; or slots other than ``Py_mod_create``." msgstr "" -#: ../../c-api/module.rst:340 -msgid "" -"Specifies a function that is called to *execute* the module. This is " -"equivalent to executing the code of a Python module: typically, this " -"function adds classes and constants to the module. The signature of the " -"function is:" +msgid "Specifies a function that is called to *execute* the module. This is equivalent to executing the code of a Python module: typically, this function adds classes and constants to the module. The signature of the function is:" msgstr "" -#: ../../c-api/module.rst:349 -msgid "" -"If multiple ``Py_mod_exec`` slots are specified, they are processed in the " -"order they appear in the *m_slots* array." +msgid "If multiple ``Py_mod_exec`` slots are specified, they are processed in the order they appear in the *m_slots* array." msgstr "" -#: ../../c-api/module.rst:356 ../../c-api/module.rst:389 msgid "Specifies one of the following values:" msgstr "" -#: ../../c-api/module.rst:362 msgid "The module does not support being imported in subinterpreters." msgstr "" -#: ../../c-api/module.rst:366 -msgid "" -"The module supports being imported in subinterpreters, but only when they " -"share the main interpreter's GIL. (See :ref:`isolating-extensions-howto`.)" +msgid "The module supports being imported in subinterpreters, but only when they share the main interpreter's GIL. (See :ref:`isolating-extensions-howto`.)" msgstr "" -#: ../../c-api/module.rst:372 -msgid "" -"The module supports being imported in subinterpreters, even when they have " -"their own GIL. (See :ref:`isolating-extensions-howto`.)" +msgid "The module supports being imported in subinterpreters, even when they have their own GIL. (See :ref:`isolating-extensions-howto`.)" msgstr "" -#: ../../c-api/module.rst:376 -msgid "" -"This slot determines whether or not importing this module in a " -"subinterpreter will fail." +msgid "This slot determines whether or not importing this module in a subinterpreter will fail." msgstr "" -#: ../../c-api/module.rst:379 -msgid "" -"Multiple ``Py_mod_multiple_interpreters`` slots may not be specified in one " -"module definition." +msgid "Multiple ``Py_mod_multiple_interpreters`` slots may not be specified in one module definition." msgstr "" -#: ../../c-api/module.rst:382 -msgid "" -"If ``Py_mod_multiple_interpreters`` is not specified, the import machinery " -"defaults to ``Py_MOD_MULTIPLE_INTERPRETERS_SUPPORTED``." +msgid "If ``Py_mod_multiple_interpreters`` is not specified, the import machinery defaults to ``Py_MOD_MULTIPLE_INTERPRETERS_SUPPORTED``." msgstr "" -#: ../../c-api/module.rst:395 -msgid "" -"The module depends on the presence of the global interpreter lock (GIL), and " -"may access global state without synchronization." +msgid "The module depends on the presence of the global interpreter lock (GIL), and may access global state without synchronization." msgstr "" -#: ../../c-api/module.rst:400 msgid "The module is safe to run without an active GIL." msgstr "" -#: ../../c-api/module.rst:402 -msgid "" -"This slot is ignored by Python builds not configured with :option:`--disable-" -"gil`. Otherwise, it determines whether or not importing this module will " -"cause the GIL to be automatically enabled. See :ref:`whatsnew313-free-" -"threaded-cpython` for more detail." +msgid "This slot is ignored by Python builds not configured with :option:`--disable-gil`. Otherwise, it determines whether or not importing this module will cause the GIL to be automatically enabled. See :ref:`whatsnew313-free-threaded-cpython` for more detail." msgstr "" -#: ../../c-api/module.rst:407 -msgid "" -"Multiple ``Py_mod_gil`` slots may not be specified in one module definition." +msgid "Multiple ``Py_mod_gil`` slots may not be specified in one module definition." msgstr "" -#: ../../c-api/module.rst:409 -msgid "" -"If ``Py_mod_gil`` is not specified, the import machinery defaults to " -"``Py_MOD_GIL_USED``." +msgid "If ``Py_mod_gil`` is not specified, the import machinery defaults to ``Py_MOD_GIL_USED``." msgstr "" -#: ../../c-api/module.rst:418 msgid "Creating extension modules dynamically" msgstr "" -#: ../../c-api/module.rst:420 -msgid "" -"The following functions may be used to create a module outside of an " -"extension's :ref:`initialization function `. They are " -"also used in :ref:`single-phase initialization `." +msgid "The following functions may be used to create a module outside of an extension's :ref:`initialization function `. They are also used in :ref:`single-phase initialization `." msgstr "" -#: ../../c-api/module.rst:427 -msgid "" -"Create a new module object, given the definition in *def*. This is a macro " -"that calls :c:func:`PyModule_Create2` with *module_api_version* set " -"to :c:macro:`PYTHON_API_VERSION`, or to :c:macro:`PYTHON_ABI_VERSION` if " -"using the :ref:`limited API `." +msgid "Create a new module object, given the definition in *def*. This is a macro that calls :c:func:`PyModule_Create2` with *module_api_version* set to :c:macro:`PYTHON_API_VERSION`, or to :c:macro:`PYTHON_ABI_VERSION` if using the :ref:`limited API `." msgstr "" -#: ../../c-api/module.rst:435 -msgid "" -"Create a new module object, given the definition in *def*, assuming the API " -"version *module_api_version*. If that version does not match the version of " -"the running interpreter, a :exc:`RuntimeWarning` is emitted." +msgid "Create a new module object, given the definition in *def*, assuming the API version *module_api_version*. If that version does not match the version of the running interpreter, a :exc:`RuntimeWarning` is emitted." msgstr "" -#: ../../c-api/module.rst:441 -msgid "" -"This function does not support slots. The :c:member:`~PyModuleDef.m_slots` " -"member of *def* must be ``NULL``." +msgid "This function does not support slots. The :c:member:`~PyModuleDef.m_slots` member of *def* must be ``NULL``." msgstr "" -#: ../../c-api/module.rst:447 -msgid "" -"Most uses of this function should be using :c:func:`PyModule_Create` " -"instead; only use this if you are sure you need it." +msgid "Most uses of this function should be using :c:func:`PyModule_Create` instead; only use this if you are sure you need it." msgstr "" -#: ../../c-api/module.rst:452 -msgid "" -"This macro calls :c:func:`PyModule_FromDefAndSpec2` with " -"*module_api_version* set to :c:macro:`PYTHON_API_VERSION`, or " -"to :c:macro:`PYTHON_ABI_VERSION` if using the :ref:`limited API `." +msgid "This macro calls :c:func:`PyModule_FromDefAndSpec2` with *module_api_version* set to :c:macro:`PYTHON_API_VERSION`, or to :c:macro:`PYTHON_ABI_VERSION` if using the :ref:`limited API `." msgstr "" -#: ../../c-api/module.rst:461 -msgid "" -"Create a new module object, given the definition in *def* and the ModuleSpec " -"*spec*, assuming the API version *module_api_version*. If that version does " -"not match the version of the running interpreter, a :exc:`RuntimeWarning` is " -"emitted." +msgid "Create a new module object, given the definition in *def* and the ModuleSpec *spec*, assuming the API version *module_api_version*. If that version does not match the version of the running interpreter, a :exc:`RuntimeWarning` is emitted." msgstr "" -#: ../../c-api/module.rst:468 -msgid "" -"Note that this does not process execution slots (:c:data:`Py_mod_exec`). " -"Both ``PyModule_FromDefAndSpec`` and ``PyModule_ExecDef`` must be called to " -"fully initialize a module." +msgid "Note that this does not process execution slots (:c:data:`Py_mod_exec`). Both ``PyModule_FromDefAndSpec`` and ``PyModule_ExecDef`` must be called to fully initialize a module." msgstr "" -#: ../../c-api/module.rst:474 -msgid "" -"Most uses of this function should be using :c:func:`PyModule_FromDefAndSpec` " -"instead; only use this if you are sure you need it." +msgid "Most uses of this function should be using :c:func:`PyModule_FromDefAndSpec` instead; only use this if you are sure you need it." msgstr "" -#: ../../c-api/module.rst:481 msgid "Process any execution slots (:c:data:`Py_mod_exec`) given in *def*." msgstr "" -#: ../../c-api/module.rst:487 msgid "The C API version. Defined for backwards compatibility." msgstr "" -#: ../../c-api/module.rst:489 ../../c-api/module.rst:496 -msgid "" -"Currently, this constant is not updated in new Python versions, and is not " -"useful for versioning. This may change in the future." +msgid "Currently, this constant is not updated in new Python versions, and is not useful for versioning. This may change in the future." msgstr "" -#: ../../c-api/module.rst:494 msgid "Defined as ``3`` for backwards compatibility." msgstr "" -#: ../../c-api/module.rst:501 msgid "Support functions" msgstr "" -#: ../../c-api/module.rst:503 -msgid "" -"The following functions are provided to help initialize a module state. They " -"are intended for a module's execution slots (:c:data:`Py_mod_exec`), the " -"initialization function for legacy :ref:`single-phase initialization `, or code that creates modules dynamically." +msgid "The following functions are provided to help initialize a module state. They are intended for a module's execution slots (:c:data:`Py_mod_exec`), the initialization function for legacy :ref:`single-phase initialization `, or code that creates modules dynamically." msgstr "" -#: ../../c-api/module.rst:511 -msgid "" -"Add an object to *module* as *name*. This is a convenience function which " -"can be used from the module's initialization function." +msgid "Add an object to *module* as *name*. This is a convenience function which can be used from the module's initialization function." msgstr "" -#: ../../c-api/module.rst:514 -msgid "" -"On success, return ``0``. On error, raise an exception and return ``-1``." +msgid "On success, return ``0``. On error, raise an exception and return ``-1``." msgstr "" -#: ../../c-api/module.rst:516 ../../c-api/module.rst:567 -#: ../../c-api/module.rst:594 msgid "Example usage::" msgstr "" -#: ../../c-api/module.rst:518 msgid "" "static int\n" "add_spam(PyObject *module, int value)\n" @@ -586,20 +301,12 @@ msgid "" " }" msgstr "" -#: ../../c-api/module.rst:530 -msgid "" -"To be convenient, the function accepts ``NULL`` *value* with an exception " -"set. In this case, return ``-1`` and just leave the raised exception " -"unchanged." +msgid "To be convenient, the function accepts ``NULL`` *value* with an exception set. In this case, return ``-1`` and just leave the raised exception unchanged." msgstr "" -#: ../../c-api/module.rst:534 -msgid "" -"The example can also be written without checking explicitly if *obj* is " -"``NULL``::" +msgid "The example can also be written without checking explicitly if *obj* is ``NULL``::" msgstr "" -#: ../../c-api/module.rst:537 msgid "" "static int\n" "add_spam(PyObject *module, int value)\n" @@ -611,63 +318,33 @@ msgid "" " }" msgstr "" -#: ../../c-api/module.rst:546 -msgid "" -"Note that ``Py_XDECREF()`` should be used instead of ``Py_DECREF()`` in this " -"case, since *obj* can be ``NULL``." +msgid "Note that ``Py_XDECREF()`` should be used instead of ``Py_DECREF()`` in this case, since *obj* can be ``NULL``." msgstr "" -#: ../../c-api/module.rst:549 -msgid "" -"The number of different *name* strings passed to this function should be " -"kept small, usually by only using statically allocated strings as *name*. " -"For names that aren't known at compile time, prefer " -"calling :c:func:`PyUnicode_FromString` and :c:func:`PyObject_SetAttr` " -"directly. For more details, see :c:func:`PyUnicode_InternFromString`, which " -"may be used internally to create a key object." +msgid "The number of different *name* strings passed to this function should be kept small, usually by only using statically allocated strings as *name*. For names that aren't known at compile time, prefer calling :c:func:`PyUnicode_FromString` and :c:func:`PyObject_SetAttr` directly. For more details, see :c:func:`PyUnicode_InternFromString`, which may be used internally to create a key object." msgstr "" -#: ../../c-api/module.rst:562 -msgid "" -"Similar to :c:func:`PyModule_AddObjectRef`, but \":term:`steals `\" a " -"reference to *value* (even on error). It can be called with a result of " -"function that returns a new reference without bothering to check its result " -"or even saving it to a variable." +msgid "Similar to :c:func:`PyModule_AddObjectRef`, but \":term:`steals `\" a reference to *value* (even on error). It can be called with a result of function that returns a new reference without bothering to check its result or even saving it to a variable." msgstr "" -#: ../../c-api/module.rst:569 msgid "" "if (PyModule_Add(module, \"spam\", PyBytes_FromString(value)) < 0) {\n" " goto error;\n" "}" msgstr "" -#: ../../c-api/module.rst:578 -msgid "" -"Similar to :c:func:`PyModule_AddObjectRef`, but :term:`steals ` a " -"reference to *value* on success (if it returns ``0``)." +msgid "Similar to :c:func:`PyModule_AddObjectRef`, but :term:`steals ` a reference to *value* on success (if it returns ``0``)." msgstr "" -#: ../../c-api/module.rst:581 -msgid "" -"The new :c:func:`PyModule_Add` or :c:func:`PyModule_AddObjectRef` functions " -"are recommended, since it is easy to introduce reference leaks by misusing " -"the :c:func:`PyModule_AddObject` function." +msgid "The new :c:func:`PyModule_Add` or :c:func:`PyModule_AddObjectRef` functions are recommended, since it is easy to introduce reference leaks by misusing the :c:func:`PyModule_AddObject` function." msgstr "" -#: ../../c-api/module.rst:588 -msgid "" -"Unlike other functions that steal references, ``PyModule_AddObject()`` only " -"releases the reference to *value* **on success**." +msgid "Unlike other functions that steal references, ``PyModule_AddObject()`` only releases the reference to *value* **on success**." msgstr "" -#: ../../c-api/module.rst:591 -msgid "" -"This means that its return value must be checked, and calling code " -"must :c:func:`Py_XDECREF` *value* manually on error." +msgid "This means that its return value must be checked, and calling code must :c:func:`Py_XDECREF` *value* manually on error." msgstr "" -#: ../../c-api/module.rst:596 msgid "" "PyObject *obj = PyBytes_FromString(value);\n" "if (PyModule_AddObject(module, \"spam\", obj) < 0) {\n" @@ -681,209 +358,104 @@ msgid "" "// Py_XDECREF(obj) is not needed here." msgstr "" -#: ../../c-api/module.rst:612 -msgid "" -"Add an integer constant to *module* as *name*. This convenience function " -"can be used from the module's initialization function. Return ``-1`` with an " -"exception set on error, ``0`` on success." +msgid "Add an integer constant to *module* as *name*. This convenience function can be used from the module's initialization function. Return ``-1`` with an exception set on error, ``0`` on success." msgstr "" -#: ../../c-api/module.rst:616 -msgid "" -"This is a convenience function that calls :c:func:`PyLong_FromLong` " -"and :c:func:`PyModule_AddObjectRef`; see their documentation for details." +msgid "This is a convenience function that calls :c:func:`PyLong_FromLong` and :c:func:`PyModule_AddObjectRef`; see their documentation for details." msgstr "" -#: ../../c-api/module.rst:622 -msgid "" -"Add a string constant to *module* as *name*. This convenience function can " -"be used from the module's initialization function. The string *value* must " -"be ``NULL``-terminated. Return ``-1`` with an exception set on error, ``0`` " -"on success." +msgid "Add a string constant to *module* as *name*. This convenience function can be used from the module's initialization function. The string *value* must be ``NULL``-terminated. Return ``-1`` with an exception set on error, ``0`` on success." msgstr "" -#: ../../c-api/module.rst:627 -msgid "" -"This is a convenience function that " -"calls :c:func:`PyUnicode_InternFromString` " -"and :c:func:`PyModule_AddObjectRef`; see their documentation for details." +msgid "This is a convenience function that calls :c:func:`PyUnicode_InternFromString` and :c:func:`PyModule_AddObjectRef`; see their documentation for details." msgstr "" -#: ../../c-api/module.rst:634 -msgid "" -"Add an int constant to *module*. The name and the value are taken from " -"*macro*. For example ``PyModule_AddIntMacro(module, AF_INET)`` adds the int " -"constant *AF_INET* with the value of *AF_INET* to *module*. Return ``-1`` " -"with an exception set on error, ``0`` on success." +msgid "Add an int constant to *module*. The name and the value are taken from *macro*. For example ``PyModule_AddIntMacro(module, AF_INET)`` adds the int constant *AF_INET* with the value of *AF_INET* to *module*. Return ``-1`` with an exception set on error, ``0`` on success." msgstr "" -#: ../../c-api/module.rst:642 msgid "Add a string constant to *module*." msgstr "" -#: ../../c-api/module.rst:646 -msgid "" -"Add a type object to *module*. The type object is finalized by calling " -"internally :c:func:`PyType_Ready`. The name of the type object is taken from " -"the last component of :c:member:`~PyTypeObject.tp_name` after dot. Return " -"``-1`` with an exception set on error, ``0`` on success." +msgid "Add a type object to *module*. The type object is finalized by calling internally :c:func:`PyType_Ready`. The name of the type object is taken from the last component of :c:member:`~PyTypeObject.tp_name` after dot. Return ``-1`` with an exception set on error, ``0`` on success." msgstr "" -#: ../../c-api/module.rst:656 -msgid "" -"Add the functions from the ``NULL`` terminated *functions* array to " -"*module*. Refer to the :c:type:`PyMethodDef` documentation for details on " -"individual entries (due to the lack of a shared module namespace, module " -"level \"functions\" implemented in C typically receive the module as their " -"first parameter, making them similar to instance methods on Python classes)." +msgid "Add the functions from the ``NULL`` terminated *functions* array to *module*. Refer to the :c:type:`PyMethodDef` documentation for details on individual entries (due to the lack of a shared module namespace, module level \"functions\" implemented in C typically receive the module as their first parameter, making them similar to instance methods on Python classes)." msgstr "" -#: ../../c-api/module.rst:662 -msgid "" -"This function is called automatically when creating a module from " -"``PyModuleDef`` (such as when using :ref:`multi-phase-initialization`, " -"``PyModule_Create``, or ``PyModule_FromDefAndSpec``). Some module authors " -"may prefer defining functions in multiple :c:type:`PyMethodDef` arrays; in " -"that case they should call this function directly." +msgid "This function is called automatically when creating a module from ``PyModuleDef`` (such as when using :ref:`multi-phase-initialization`, ``PyModule_Create``, or ``PyModule_FromDefAndSpec``). Some module authors may prefer defining functions in multiple :c:type:`PyMethodDef` arrays; in that case they should call this function directly." msgstr "" -#: ../../c-api/module.rst:669 -msgid "" -"The *functions* array must be statically allocated (or otherwise guaranteed " -"to outlive the module object)." +msgid "The *functions* array must be statically allocated (or otherwise guaranteed to outlive the module object)." msgstr "" -#: ../../c-api/module.rst:676 -msgid "" -"Set the docstring for *module* to *docstring*. This function is called " -"automatically when creating a module from ``PyModuleDef`` (such as when " -"using :ref:`multi-phase-initialization`, ``PyModule_Create``, or " -"``PyModule_FromDefAndSpec``)." +msgid "Set the docstring for *module* to *docstring*. This function is called automatically when creating a module from ``PyModuleDef`` (such as when using :ref:`multi-phase-initialization`, ``PyModule_Create``, or ``PyModule_FromDefAndSpec``)." msgstr "" -#: ../../c-api/module.rst:681 msgid "Return ``0`` on success. Return ``-1`` with an exception set on error." msgstr "" -#: ../../c-api/module.rst:688 -msgid "" -"Indicate that *module* does or does not support running without the global " -"interpreter lock (GIL), using one of the values from :c:macro:`Py_mod_gil`. " -"It must be called during *module*'s initialization function when " -"using :ref:`single-phase-initialization`. If this function is not called " -"during module initialization, the import machinery assumes the module does " -"not support running without the GIL. This function is only available in " -"Python builds configured with :option:`--disable-gil`. Return ``-1`` with an " -"exception set on error, ``0`` on success." +msgid "Indicate that *module* does or does not support running without the global interpreter lock (GIL), using one of the values from :c:macro:`Py_mod_gil`. It must be called during *module*'s initialization function when using :ref:`single-phase-initialization`. If this function is not called during module initialization, the import machinery assumes the module does not support running without the GIL. This function is only available in Python builds configured with :option:`--disable-gil`. Return ``-1`` with an exception set on error, ``0`` on success." msgstr "" -#: ../../c-api/module.rst:702 msgid "Module lookup (single-phase initialization)" msgstr "" -#: ../../c-api/module.rst:704 -msgid "" -"The legacy :ref:`single-phase initialization ` " -"initialization scheme creates singleton modules that can be looked up in the " -"context of the current interpreter. This allows the module object to be " -"retrieved later with only a reference to the module definition." +msgid "The legacy :ref:`single-phase initialization ` initialization scheme creates singleton modules that can be looked up in the context of the current interpreter. This allows the module object to be retrieved later with only a reference to the module definition." msgstr "" -#: ../../c-api/module.rst:709 -msgid "" -"These functions will not work on modules created using multi-phase " -"initialization, since multiple such modules can be created from a single " -"definition." +msgid "These functions will not work on modules created using multi-phase initialization, since multiple such modules can be created from a single definition." msgstr "" -#: ../../c-api/module.rst:714 -msgid "" -"Returns the module object that was created from *def* for the current " -"interpreter. This method requires that the module object has been attached " -"to the interpreter state with :c:func:`PyState_AddModule` beforehand. In " -"case the corresponding module object is not found or has not been attached " -"to the interpreter state yet, it returns ``NULL``." +msgid "Returns the module object that was created from *def* for the current interpreter. This method requires that the module object has been attached to the interpreter state with :c:func:`PyState_AddModule` beforehand. In case the corresponding module object is not found or has not been attached to the interpreter state yet, it returns ``NULL``." msgstr "" -#: ../../c-api/module.rst:721 -msgid "" -"Attaches the module object passed to the function to the interpreter state. " -"This allows the module object to be accessible " -"via :c:func:`PyState_FindModule`." +msgid "Attaches the module object passed to the function to the interpreter state. This allows the module object to be accessible via :c:func:`PyState_FindModule`." msgstr "" -#: ../../c-api/module.rst:724 msgid "Only effective on modules created using single-phase initialization." msgstr "" -#: ../../c-api/module.rst:726 -msgid "" -"Python calls ``PyState_AddModule`` automatically after importing a module " -"that uses :ref:`single-phase initialization `, " -"so it is unnecessary (but harmless) to call it from module initialization " -"code. An explicit call is needed only if the module's own init code " -"subsequently calls ``PyState_FindModule``. The function is mainly intended " -"for implementing alternative import mechanisms (either by calling it " -"directly, or by referring to its implementation for details of the required " -"state updates)." +msgid "Python calls ``PyState_AddModule`` automatically after importing a module that uses :ref:`single-phase initialization `, so it is unnecessary (but harmless) to call it from module initialization code. An explicit call is needed only if the module's own init code subsequently calls ``PyState_FindModule``. The function is mainly intended for implementing alternative import mechanisms (either by calling it directly, or by referring to its implementation for details of the required state updates)." msgstr "" -#: ../../c-api/module.rst:735 -msgid "" -"If a module was attached previously using the same *def*, it is replaced by " -"the new *module*." +msgid "If a module was attached previously using the same *def*, it is replaced by the new *module*." msgstr "" -#: ../../c-api/module.rst:738 ../../c-api/module.rst:749 msgid "The caller must have an :term:`attached thread state`." msgstr "" -#: ../../c-api/module.rst:740 msgid "Return ``-1`` with an exception set on error, ``0`` on success." msgstr "" -#: ../../c-api/module.rst:746 -msgid "" -"Removes the module object created from *def* from the interpreter state. " -"Return ``-1`` with an exception set on error, ``0`` on success." +msgid "Removes the module object created from *def* from the interpreter state. Return ``-1`` with an exception set on error, ``0`` on success." msgstr "" -#: ../../c-api/module.rst:8 msgid "object" msgstr "" -#: ../../c-api/module.rst:8 msgid "module" msgstr "" -#: ../../c-api/module.rst:13 msgid "ModuleType (in module types)" msgstr "" -#: ../../c-api/module.rst:33 ../../c-api/module.rst:80 msgid "__name__ (module attribute)" msgstr "" -#: ../../c-api/module.rst:33 msgid "__doc__ (module attribute)" msgstr "" -#: ../../c-api/module.rst:33 ../../c-api/module.rst:119 msgid "__file__ (module attribute)" msgstr "" -#: ../../c-api/module.rst:33 msgid "__package__ (module attribute)" msgstr "" -#: ../../c-api/module.rst:33 msgid "__loader__ (module attribute)" msgstr "" -#: ../../c-api/module.rst:63 msgid "__dict__ (module attribute)" msgstr "" -#: ../../c-api/module.rst:80 ../../c-api/module.rst:119 msgid "SystemError (built-in exception)" msgstr "" diff --git a/c-api/monitoring.po b/c-api/monitoring.po index a22f3d11..5f394e5b 100644 --- a/c-api/monitoring.po +++ b/c-api/monitoring.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2024-05-11 01:07+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,283 +23,167 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../c-api/monitoring.rst:6 msgid "Monitoring C API" msgstr "" -#: ../../c-api/monitoring.rst:8 msgid "Added in version 3.13." msgstr "" -#: ../../c-api/monitoring.rst:10 -msgid "" -"An extension may need to interact with the event monitoring system. " -"Subscribing to events and registering callbacks can be done via the Python " -"API exposed in :mod:`sys.monitoring`." +msgid "An extension may need to interact with the event monitoring system. Subscribing to events and registering callbacks can be done via the Python API exposed in :mod:`sys.monitoring`." msgstr "" -#: ../../c-api/monitoring.rst:15 msgid "Generating Execution Events" msgstr "" -#: ../../c-api/monitoring.rst:17 -msgid "" -"The functions below make it possible for an extension to fire monitoring " -"events as it emulates the execution of Python code. Each of these functions " -"accepts a ``PyMonitoringState`` struct which contains concise information " -"about the activation state of events, as well as the event arguments, which " -"include a ``PyObject*`` representing the code object, the instruction offset " -"and sometimes additional, event-specific arguments " -"(see :mod:`sys.monitoring` for details about the signatures of the different " -"event callbacks). The ``codelike`` argument should be an instance " -"of :class:`types.CodeType` or of a type that emulates it." -msgstr "" - -#: ../../c-api/monitoring.rst:27 -msgid "" -"The VM disables tracing when firing an event, so there is no need for user " -"code to do that." +msgid "The functions below make it possible for an extension to fire monitoring events as it emulates the execution of Python code. Each of these functions accepts a ``PyMonitoringState`` struct which contains concise information about the activation state of events, as well as the event arguments, which include a ``PyObject*`` representing the code object, the instruction offset and sometimes additional, event-specific arguments (see :mod:`sys.monitoring` for details about the signatures of the different event callbacks). The ``codelike`` argument should be an instance of :class:`types.CodeType` or of a type that emulates it." msgstr "" -#: ../../c-api/monitoring.rst:30 -msgid "" -"Monitoring functions should not be called with an exception set, except " -"those listed below as working with the current exception." +msgid "The VM disables tracing when firing an event, so there is no need for user code to do that." msgstr "" -#: ../../c-api/monitoring.rst:35 -msgid "" -"Representation of the state of an event type. It is allocated by the user " -"while its contents are maintained by the monitoring API functions described " -"below." +msgid "Monitoring functions should not be called with an exception set, except those listed below as working with the current exception." msgstr "" -#: ../../c-api/monitoring.rst:39 -msgid "" -"All of the functions below return 0 on success and -1 (with an exception " -"set) on error." +msgid "Representation of the state of an event type. It is allocated by the user while its contents are maintained by the monitoring API functions described below." +msgstr "" + +msgid "All of the functions below return 0 on success and -1 (with an exception set) on error." msgstr "" -#: ../../c-api/monitoring.rst:41 msgid "See :mod:`sys.monitoring` for descriptions of the events." msgstr "" -#: ../../c-api/monitoring.rst:45 msgid "Fire a ``PY_START`` event." msgstr "" -#: ../../c-api/monitoring.rst:50 msgid "Fire a ``PY_RESUME`` event." msgstr "" -#: ../../c-api/monitoring.rst:55 msgid "Fire a ``PY_RETURN`` event." msgstr "" -#: ../../c-api/monitoring.rst:60 msgid "Fire a ``PY_YIELD`` event." msgstr "" -#: ../../c-api/monitoring.rst:65 msgid "Fire a ``CALL`` event." msgstr "" -#: ../../c-api/monitoring.rst:70 msgid "Fire a ``LINE`` event." msgstr "" -#: ../../c-api/monitoring.rst:75 msgid "Fire a ``JUMP`` event." msgstr "" -#: ../../c-api/monitoring.rst:80 msgid "Fire a ``BRANCH_LEFT`` event." msgstr "" -#: ../../c-api/monitoring.rst:85 msgid "Fire a ``BRANCH_RIGHT`` event." msgstr "" -#: ../../c-api/monitoring.rst:90 msgid "Fire a ``C_RETURN`` event." msgstr "" -#: ../../c-api/monitoring.rst:95 -msgid "" -"Fire a ``PY_THROW`` event with the current exception (as returned " -"by :c:func:`PyErr_GetRaisedException`)." +msgid "Fire a ``PY_THROW`` event with the current exception (as returned by :c:func:`PyErr_GetRaisedException`)." msgstr "" -#: ../../c-api/monitoring.rst:101 -msgid "" -"Fire a ``RAISE`` event with the current exception (as returned " -"by :c:func:`PyErr_GetRaisedException`)." +msgid "Fire a ``RAISE`` event with the current exception (as returned by :c:func:`PyErr_GetRaisedException`)." msgstr "" -#: ../../c-api/monitoring.rst:107 -msgid "" -"Fire a ``C_RAISE`` event with the current exception (as returned " -"by :c:func:`PyErr_GetRaisedException`)." +msgid "Fire a ``C_RAISE`` event with the current exception (as returned by :c:func:`PyErr_GetRaisedException`)." msgstr "" -#: ../../c-api/monitoring.rst:113 -msgid "" -"Fire a ``RERAISE`` event with the current exception (as returned " -"by :c:func:`PyErr_GetRaisedException`)." +msgid "Fire a ``RERAISE`` event with the current exception (as returned by :c:func:`PyErr_GetRaisedException`)." msgstr "" -#: ../../c-api/monitoring.rst:119 -msgid "" -"Fire an ``EXCEPTION_HANDLED`` event with the current exception (as returned " -"by :c:func:`PyErr_GetRaisedException`)." +msgid "Fire an ``EXCEPTION_HANDLED`` event with the current exception (as returned by :c:func:`PyErr_GetRaisedException`)." msgstr "" -#: ../../c-api/monitoring.rst:125 -msgid "" -"Fire a ``PY_UNWIND`` event with the current exception (as returned " -"by :c:func:`PyErr_GetRaisedException`)." +msgid "Fire a ``PY_UNWIND`` event with the current exception (as returned by :c:func:`PyErr_GetRaisedException`)." msgstr "" -#: ../../c-api/monitoring.rst:131 -msgid "" -"Fire a ``STOP_ITERATION`` event. If ``value`` is an instance " -"of :exc:`StopIteration`, it is used. Otherwise, a new :exc:`StopIteration` " -"instance is created with ``value`` as its argument." +msgid "Fire a ``STOP_ITERATION`` event. If ``value`` is an instance of :exc:`StopIteration`, it is used. Otherwise, a new :exc:`StopIteration` instance is created with ``value`` as its argument." msgstr "" -#: ../../c-api/monitoring.rst:136 msgid "Managing the Monitoring State" msgstr "" -#: ../../c-api/monitoring.rst:138 -msgid "" -"Monitoring states can be managed with the help of monitoring scopes. A scope " -"would typically correspond to a Python function." +msgid "Monitoring states can be managed with the help of monitoring scopes. A scope would typically correspond to a Python function." msgstr "" -#: ../../c-api/monitoring.rst:143 -msgid "" -"Enter a monitored scope. ``event_types`` is an array of the event IDs for " -"events that may be fired from the scope. For example, the ID of a " -"``PY_START`` event is the value ``PY_MONITORING_EVENT_PY_START``, which is " -"numerically equal to the base-2 logarithm of " -"``sys.monitoring.events.PY_START``. ``state_array`` is an array with a " -"monitoring state entry for each event in ``event_types``, it is allocated by " -"the user but populated by :c:func:`!PyMonitoring_EnterScope` with " -"information about the activation state of the event. The size of " -"``event_types`` (and hence also of ``state_array``) is given in ``length``." -msgstr "" - -#: ../../c-api/monitoring.rst:153 -msgid "" -"The ``version`` argument is a pointer to a value which should be allocated " -"by the user together with ``state_array`` and initialized to 0, and then set " -"only by :c:func:`!PyMonitoring_EnterScope` itself. It allows this function " -"to determine whether event states have changed since the previous call, and " -"to return quickly if they have not." +msgid "Enter a monitored scope. ``event_types`` is an array of the event IDs for events that may be fired from the scope. For example, the ID of a ``PY_START`` event is the value ``PY_MONITORING_EVENT_PY_START``, which is numerically equal to the base-2 logarithm of ``sys.monitoring.events.PY_START``. ``state_array`` is an array with a monitoring state entry for each event in ``event_types``, it is allocated by the user but populated by :c:func:`!PyMonitoring_EnterScope` with information about the activation state of the event. The size of ``event_types`` (and hence also of ``state_array``) is given in ``length``." msgstr "" -#: ../../c-api/monitoring.rst:159 -msgid "" -"The scopes referred to here are lexical scopes: a function, class or " -"method. :c:func:`!PyMonitoring_EnterScope` should be called whenever the " -"lexical scope is entered. Scopes can be reentered, reusing the same " -"*state_array* and *version*, in situations like when emulating a recursive " -"Python function. When a code-like's execution is paused, such as when " -"emulating a generator, the scope needs to be exited and re-entered." +msgid "The ``version`` argument is a pointer to a value which should be allocated by the user together with ``state_array`` and initialized to 0, and then set only by :c:func:`!PyMonitoring_EnterScope` itself. It allows this function to determine whether event states have changed since the previous call, and to return quickly if they have not." +msgstr "" + +msgid "The scopes referred to here are lexical scopes: a function, class or method. :c:func:`!PyMonitoring_EnterScope` should be called whenever the lexical scope is entered. Scopes can be reentered, reusing the same *state_array* and *version*, in situations like when emulating a recursive Python function. When a code-like's execution is paused, such as when emulating a generator, the scope needs to be exited and re-entered." msgstr "" -#: ../../c-api/monitoring.rst:166 msgid "The macros for *event_types* are:" msgstr "" -#: ../../c-api/monitoring.rst:174 msgid "Macro" msgstr "" -#: ../../c-api/monitoring.rst:174 msgid "Event" msgstr "" -#: ../../c-api/monitoring.rst:176 msgid ":monitoring-event:`BRANCH_LEFT`" msgstr "" -#: ../../c-api/monitoring.rst:177 msgid ":monitoring-event:`BRANCH_RIGHT`" msgstr "" -#: ../../c-api/monitoring.rst:178 msgid ":monitoring-event:`CALL`" msgstr "" -#: ../../c-api/monitoring.rst:179 msgid ":monitoring-event:`C_RAISE`" msgstr "" -#: ../../c-api/monitoring.rst:180 msgid ":monitoring-event:`C_RETURN`" msgstr "" -#: ../../c-api/monitoring.rst:181 msgid ":monitoring-event:`EXCEPTION_HANDLED`" msgstr "" -#: ../../c-api/monitoring.rst:182 msgid ":monitoring-event:`INSTRUCTION`" msgstr "" -#: ../../c-api/monitoring.rst:183 msgid ":monitoring-event:`JUMP`" msgstr "" -#: ../../c-api/monitoring.rst:184 msgid ":monitoring-event:`LINE`" msgstr "" -#: ../../c-api/monitoring.rst:185 msgid ":monitoring-event:`PY_RESUME`" msgstr "" -#: ../../c-api/monitoring.rst:186 msgid ":monitoring-event:`PY_RETURN`" msgstr "" -#: ../../c-api/monitoring.rst:187 msgid ":monitoring-event:`PY_START`" msgstr "" -#: ../../c-api/monitoring.rst:188 msgid ":monitoring-event:`PY_THROW`" msgstr "" -#: ../../c-api/monitoring.rst:189 msgid ":monitoring-event:`PY_UNWIND`" msgstr "" -#: ../../c-api/monitoring.rst:190 msgid ":monitoring-event:`PY_YIELD`" msgstr "" -#: ../../c-api/monitoring.rst:191 msgid ":monitoring-event:`RAISE`" msgstr "" -#: ../../c-api/monitoring.rst:192 msgid ":monitoring-event:`RERAISE`" msgstr "" -#: ../../c-api/monitoring.rst:193 msgid ":monitoring-event:`STOP_ITERATION`" msgstr "" -#: ../../c-api/monitoring.rst:198 -msgid "" -"Exit the last scope that was entered with :c:func:`!PyMonitoring_EnterScope`." +msgid "Exit the last scope that was entered with :c:func:`!PyMonitoring_EnterScope`." msgstr "" -#: ../../c-api/monitoring.rst:203 -msgid "" -"Return true if the event corresponding to the event ID *ev* is a :ref:`local " -"event `." +msgid "Return true if the event corresponding to the event ID *ev* is a :ref:`local event `." msgstr "" diff --git a/c-api/none.po b/c-api/none.po index 92d05583..068fa838 100644 --- a/c-api/none.po +++ b/c-api/none.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:49+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,36 +23,23 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../c-api/none.rst:6 msgid "The ``None`` Object" msgstr "" -#: ../../c-api/none.rst:10 -msgid "" -"Note that the :c:type:`PyTypeObject` for ``None`` is not directly exposed in " -"the Python/C API. Since ``None`` is a singleton, testing for object " -"identity (using ``==`` in C) is sufficient. There is no :c:func:`!" -"PyNone_Check` function for the same reason." +msgid "Note that the :c:type:`PyTypeObject` for ``None`` is not directly exposed in the Python/C API. Since ``None`` is a singleton, testing for object identity (using ``==`` in C) is sufficient. There is no :c:func:`!PyNone_Check` function for the same reason." msgstr "" -#: ../../c-api/none.rst:18 -msgid "" -"The Python ``None`` object, denoting lack of value. This object has no " -"methods and is :term:`immortal`." +msgid "The Python ``None`` object, denoting lack of value. This object has no methods and is :term:`immortal`." msgstr "" -#: ../../c-api/none.rst:21 msgid ":c:data:`Py_None` is :term:`immortal`." msgstr "" -#: ../../c-api/none.rst:26 msgid "Return :c:data:`Py_None` from a function." msgstr "" -#: ../../c-api/none.rst:8 msgid "object" msgstr "" -#: ../../c-api/none.rst:8 msgid "None" msgstr "" diff --git a/c-api/number.po b/c-api/number.po index e1586713..b7834293 100644 --- a/c-api/number.po +++ b/c-api/number.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:49+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -22,311 +22,146 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../c-api/number.rst:6 msgid "Number Protocol" msgstr "" -#: ../../c-api/number.rst:11 -msgid "" -"Returns ``1`` if the object *o* provides numeric protocols, and false " -"otherwise. This function always succeeds." +msgid "Returns ``1`` if the object *o* provides numeric protocols, and false otherwise. This function always succeeds." msgstr "" -#: ../../c-api/number.rst:14 msgid "Returns ``1`` if *o* is an index integer." msgstr "" -#: ../../c-api/number.rst:20 -msgid "" -"Returns the result of adding *o1* and *o2*, or ``NULL`` on failure. This is " -"the equivalent of the Python expression ``o1 + o2``." +msgid "Returns the result of adding *o1* and *o2*, or ``NULL`` on failure. This is the equivalent of the Python expression ``o1 + o2``." msgstr "" -#: ../../c-api/number.rst:26 -msgid "" -"Returns the result of subtracting *o2* from *o1*, or ``NULL`` on failure. " -"This is the equivalent of the Python expression ``o1 - o2``." +msgid "Returns the result of subtracting *o2* from *o1*, or ``NULL`` on failure. This is the equivalent of the Python expression ``o1 - o2``." msgstr "" -#: ../../c-api/number.rst:32 -msgid "" -"Returns the result of multiplying *o1* and *o2*, or ``NULL`` on failure. " -"This is the equivalent of the Python expression ``o1 * o2``." +msgid "Returns the result of multiplying *o1* and *o2*, or ``NULL`` on failure. This is the equivalent of the Python expression ``o1 * o2``." msgstr "" -#: ../../c-api/number.rst:38 -msgid "" -"Returns the result of matrix multiplication on *o1* and *o2*, or ``NULL`` on " -"failure. This is the equivalent of the Python expression ``o1 @ o2``." +msgid "Returns the result of matrix multiplication on *o1* and *o2*, or ``NULL`` on failure. This is the equivalent of the Python expression ``o1 @ o2``." msgstr "" -#: ../../c-api/number.rst:46 -msgid "" -"Return the floor of *o1* divided by *o2*, or ``NULL`` on failure. This is " -"the equivalent of the Python expression ``o1 // o2``." +msgid "Return the floor of *o1* divided by *o2*, or ``NULL`` on failure. This is the equivalent of the Python expression ``o1 // o2``." msgstr "" -#: ../../c-api/number.rst:52 -msgid "" -"Return a reasonable approximation for the mathematical value of *o1* divided " -"by *o2*, or ``NULL`` on failure. The return value is \"approximate\" " -"because binary floating-point numbers are approximate; it is not possible to " -"represent all real numbers in base two. This function can return a floating-" -"point value when passed two integers. This is the equivalent of the Python " -"expression ``o1 / o2``." +msgid "Return a reasonable approximation for the mathematical value of *o1* divided by *o2*, or ``NULL`` on failure. The return value is \"approximate\" because binary floating-point numbers are approximate; it is not possible to represent all real numbers in base two. This function can return a floating-point value when passed two integers. This is the equivalent of the Python expression ``o1 / o2``." msgstr "" -#: ../../c-api/number.rst:61 -msgid "" -"Returns the remainder of dividing *o1* by *o2*, or ``NULL`` on failure. " -"This is the equivalent of the Python expression ``o1 % o2``." +msgid "Returns the remainder of dividing *o1* by *o2*, or ``NULL`` on failure. This is the equivalent of the Python expression ``o1 % o2``." msgstr "" -#: ../../c-api/number.rst:69 -msgid "" -"See the built-in function :func:`divmod`. Returns ``NULL`` on failure. This " -"is the equivalent of the Python expression ``divmod(o1, o2)``." +msgid "See the built-in function :func:`divmod`. Returns ``NULL`` on failure. This is the equivalent of the Python expression ``divmod(o1, o2)``." msgstr "" -#: ../../c-api/number.rst:77 -msgid "" -"See the built-in function :func:`pow`. Returns ``NULL`` on failure. This is " -"the equivalent of the Python expression ``pow(o1, o2, o3)``, where *o3* is " -"optional. If *o3* is to be ignored, pass :c:data:`Py_None` in its place " -"(passing ``NULL`` for *o3* would cause an illegal memory access)." +msgid "See the built-in function :func:`pow`. Returns ``NULL`` on failure. This is the equivalent of the Python expression ``pow(o1, o2, o3)``, where *o3* is optional. If *o3* is to be ignored, pass :c:data:`Py_None` in its place (passing ``NULL`` for *o3* would cause an illegal memory access)." msgstr "" -#: ../../c-api/number.rst:85 -msgid "" -"Returns the negation of *o* on success, or ``NULL`` on failure. This is the " -"equivalent of the Python expression ``-o``." +msgid "Returns the negation of *o* on success, or ``NULL`` on failure. This is the equivalent of the Python expression ``-o``." msgstr "" -#: ../../c-api/number.rst:91 -msgid "" -"Returns *o* on success, or ``NULL`` on failure. This is the equivalent of " -"the Python expression ``+o``." +msgid "Returns *o* on success, or ``NULL`` on failure. This is the equivalent of the Python expression ``+o``." msgstr "" -#: ../../c-api/number.rst:99 -msgid "" -"Returns the absolute value of *o*, or ``NULL`` on failure. This is the " -"equivalent of the Python expression ``abs(o)``." +msgid "Returns the absolute value of *o*, or ``NULL`` on failure. This is the equivalent of the Python expression ``abs(o)``." msgstr "" -#: ../../c-api/number.rst:105 -msgid "" -"Returns the bitwise negation of *o* on success, or ``NULL`` on failure. " -"This is the equivalent of the Python expression ``~o``." +msgid "Returns the bitwise negation of *o* on success, or ``NULL`` on failure. This is the equivalent of the Python expression ``~o``." msgstr "" -#: ../../c-api/number.rst:111 -msgid "" -"Returns the result of left shifting *o1* by *o2* on success, or ``NULL`` on " -"failure. This is the equivalent of the Python expression ``o1 << o2``." +msgid "Returns the result of left shifting *o1* by *o2* on success, or ``NULL`` on failure. This is the equivalent of the Python expression ``o1 << o2``." msgstr "" -#: ../../c-api/number.rst:117 -msgid "" -"Returns the result of right shifting *o1* by *o2* on success, or ``NULL`` on " -"failure. This is the equivalent of the Python expression ``o1 >> o2``." +msgid "Returns the result of right shifting *o1* by *o2* on success, or ``NULL`` on failure. This is the equivalent of the Python expression ``o1 >> o2``." msgstr "" -#: ../../c-api/number.rst:123 -msgid "" -"Returns the \"bitwise and\" of *o1* and *o2* on success and ``NULL`` on " -"failure. This is the equivalent of the Python expression ``o1 & o2``." +msgid "Returns the \"bitwise and\" of *o1* and *o2* on success and ``NULL`` on failure. This is the equivalent of the Python expression ``o1 & o2``." msgstr "" -#: ../../c-api/number.rst:129 -msgid "" -"Returns the \"bitwise exclusive or\" of *o1* by *o2* on success, or ``NULL`` " -"on failure. This is the equivalent of the Python expression ``o1 ^ o2``." +msgid "Returns the \"bitwise exclusive or\" of *o1* by *o2* on success, or ``NULL`` on failure. This is the equivalent of the Python expression ``o1 ^ o2``." msgstr "" -#: ../../c-api/number.rst:135 -msgid "" -"Returns the \"bitwise or\" of *o1* and *o2* on success, or ``NULL`` on " -"failure. This is the equivalent of the Python expression ``o1 | o2``." +msgid "Returns the \"bitwise or\" of *o1* and *o2* on success, or ``NULL`` on failure. This is the equivalent of the Python expression ``o1 | o2``." msgstr "" -#: ../../c-api/number.rst:141 -msgid "" -"Returns the result of adding *o1* and *o2*, or ``NULL`` on failure. The " -"operation is done *in-place* when *o1* supports it. This is the equivalent " -"of the Python statement ``o1 += o2``." +msgid "Returns the result of adding *o1* and *o2*, or ``NULL`` on failure. The operation is done *in-place* when *o1* supports it. This is the equivalent of the Python statement ``o1 += o2``." msgstr "" -#: ../../c-api/number.rst:148 -msgid "" -"Returns the result of subtracting *o2* from *o1*, or ``NULL`` on failure. " -"The operation is done *in-place* when *o1* supports it. This is the " -"equivalent of the Python statement ``o1 -= o2``." +msgid "Returns the result of subtracting *o2* from *o1*, or ``NULL`` on failure. The operation is done *in-place* when *o1* supports it. This is the equivalent of the Python statement ``o1 -= o2``." msgstr "" -#: ../../c-api/number.rst:155 -msgid "" -"Returns the result of multiplying *o1* and *o2*, or ``NULL`` on failure. " -"The operation is done *in-place* when *o1* supports it. This is the " -"equivalent of the Python statement ``o1 *= o2``." +msgid "Returns the result of multiplying *o1* and *o2*, or ``NULL`` on failure. The operation is done *in-place* when *o1* supports it. This is the equivalent of the Python statement ``o1 *= o2``." msgstr "" -#: ../../c-api/number.rst:162 -msgid "" -"Returns the result of matrix multiplication on *o1* and *o2*, or ``NULL`` on " -"failure. The operation is done *in-place* when *o1* supports it. This is " -"the equivalent of the Python statement ``o1 @= o2``." +msgid "Returns the result of matrix multiplication on *o1* and *o2*, or ``NULL`` on failure. The operation is done *in-place* when *o1* supports it. This is the equivalent of the Python statement ``o1 @= o2``." msgstr "" -#: ../../c-api/number.rst:171 -msgid "" -"Returns the mathematical floor of dividing *o1* by *o2*, or ``NULL`` on " -"failure. The operation is done *in-place* when *o1* supports it. This is " -"the equivalent of the Python statement ``o1 //= o2``." +msgid "Returns the mathematical floor of dividing *o1* by *o2*, or ``NULL`` on failure. The operation is done *in-place* when *o1* supports it. This is the equivalent of the Python statement ``o1 //= o2``." msgstr "" -#: ../../c-api/number.rst:178 -msgid "" -"Return a reasonable approximation for the mathematical value of *o1* divided " -"by *o2*, or ``NULL`` on failure. The return value is \"approximate\" " -"because binary floating-point numbers are approximate; it is not possible to " -"represent all real numbers in base two. This function can return a floating-" -"point value when passed two integers. The operation is done *in-place* when " -"*o1* supports it. This is the equivalent of the Python statement ``o1 /= " -"o2``." +msgid "Return a reasonable approximation for the mathematical value of *o1* divided by *o2*, or ``NULL`` on failure. The return value is \"approximate\" because binary floating-point numbers are approximate; it is not possible to represent all real numbers in base two. This function can return a floating-point value when passed two integers. The operation is done *in-place* when *o1* supports it. This is the equivalent of the Python statement ``o1 /= o2``." msgstr "" -#: ../../c-api/number.rst:188 -msgid "" -"Returns the remainder of dividing *o1* by *o2*, or ``NULL`` on failure. The " -"operation is done *in-place* when *o1* supports it. This is the equivalent " -"of the Python statement ``o1 %= o2``." +msgid "Returns the remainder of dividing *o1* by *o2*, or ``NULL`` on failure. The operation is done *in-place* when *o1* supports it. This is the equivalent of the Python statement ``o1 %= o2``." msgstr "" -#: ../../c-api/number.rst:197 -msgid "" -"See the built-in function :func:`pow`. Returns ``NULL`` on failure. The " -"operation is done *in-place* when *o1* supports it. This is the equivalent " -"of the Python statement ``o1 **= o2`` when o3 is :c:data:`Py_None`, or an in-" -"place variant of ``pow(o1, o2, o3)`` otherwise. If *o3* is to be ignored, " -"pass :c:data:`Py_None` in its place (passing ``NULL`` for *o3* would cause " -"an illegal memory access)." +msgid "See the built-in function :func:`pow`. Returns ``NULL`` on failure. The operation is done *in-place* when *o1* supports it. This is the equivalent of the Python statement ``o1 **= o2`` when o3 is :c:data:`Py_None`, or an in-place variant of ``pow(o1, o2, o3)`` otherwise. If *o3* is to be ignored, pass :c:data:`Py_None` in its place (passing ``NULL`` for *o3* would cause an illegal memory access)." msgstr "" -#: ../../c-api/number.rst:206 -msgid "" -"Returns the result of left shifting *o1* by *o2* on success, or ``NULL`` on " -"failure. The operation is done *in-place* when *o1* supports it. This is " -"the equivalent of the Python statement ``o1 <<= o2``." +msgid "Returns the result of left shifting *o1* by *o2* on success, or ``NULL`` on failure. The operation is done *in-place* when *o1* supports it. This is the equivalent of the Python statement ``o1 <<= o2``." msgstr "" -#: ../../c-api/number.rst:213 -msgid "" -"Returns the result of right shifting *o1* by *o2* on success, or ``NULL`` on " -"failure. The operation is done *in-place* when *o1* supports it. This is " -"the equivalent of the Python statement ``o1 >>= o2``." +msgid "Returns the result of right shifting *o1* by *o2* on success, or ``NULL`` on failure. The operation is done *in-place* when *o1* supports it. This is the equivalent of the Python statement ``o1 >>= o2``." msgstr "" -#: ../../c-api/number.rst:220 -msgid "" -"Returns the \"bitwise and\" of *o1* and *o2* on success and ``NULL`` on " -"failure. The operation is done *in-place* when *o1* supports it. This is " -"the equivalent of the Python statement ``o1 &= o2``." +msgid "Returns the \"bitwise and\" of *o1* and *o2* on success and ``NULL`` on failure. The operation is done *in-place* when *o1* supports it. This is the equivalent of the Python statement ``o1 &= o2``." msgstr "" -#: ../../c-api/number.rst:227 -msgid "" -"Returns the \"bitwise exclusive or\" of *o1* by *o2* on success, or ``NULL`` " -"on failure. The operation is done *in-place* when *o1* supports it. This " -"is the equivalent of the Python statement ``o1 ^= o2``." +msgid "Returns the \"bitwise exclusive or\" of *o1* by *o2* on success, or ``NULL`` on failure. The operation is done *in-place* when *o1* supports it. This is the equivalent of the Python statement ``o1 ^= o2``." msgstr "" -#: ../../c-api/number.rst:234 -msgid "" -"Returns the \"bitwise or\" of *o1* and *o2* on success, or ``NULL`` on " -"failure. The operation is done *in-place* when *o1* supports it. This is " -"the equivalent of the Python statement ``o1 |= o2``." +msgid "Returns the \"bitwise or\" of *o1* and *o2* on success, or ``NULL`` on failure. The operation is done *in-place* when *o1* supports it. This is the equivalent of the Python statement ``o1 |= o2``." msgstr "" -#: ../../c-api/number.rst:243 -msgid "" -"Returns the *o* converted to an integer object on success, or ``NULL`` on " -"failure. This is the equivalent of the Python expression ``int(o)``." +msgid "Returns the *o* converted to an integer object on success, or ``NULL`` on failure. This is the equivalent of the Python expression ``int(o)``." msgstr "" -#: ../../c-api/number.rst:251 -msgid "" -"Returns the *o* converted to a float object on success, or ``NULL`` on " -"failure. This is the equivalent of the Python expression ``float(o)``." +msgid "Returns the *o* converted to a float object on success, or ``NULL`` on failure. This is the equivalent of the Python expression ``float(o)``." msgstr "" -#: ../../c-api/number.rst:257 -msgid "" -"Returns the *o* converted to a Python int on success or ``NULL`` with " -"a :exc:`TypeError` exception raised on failure." +msgid "Returns the *o* converted to a Python int on success or ``NULL`` with a :exc:`TypeError` exception raised on failure." msgstr "" -#: ../../c-api/number.rst:260 -msgid "" -"The result always has exact type :class:`int`. Previously, the result could " -"have been an instance of a subclass of ``int``." +msgid "The result always has exact type :class:`int`. Previously, the result could have been an instance of a subclass of ``int``." msgstr "" -#: ../../c-api/number.rst:267 -msgid "" -"Returns the integer *n* converted to base *base* as a string. The *base* " -"argument must be one of 2, 8, 10, or 16. For base 2, 8, or 16, the returned " -"string is prefixed with a base marker of ``'0b'``, ``'0o'``, or ``'0x'``, " -"respectively. If *n* is not a Python int, it is converted " -"with :c:func:`PyNumber_Index` first." +msgid "Returns the integer *n* converted to base *base* as a string. The *base* argument must be one of 2, 8, 10, or 16. For base 2, 8, or 16, the returned string is prefixed with a base marker of ``'0b'``, ``'0o'``, or ``'0x'``, respectively. If *n* is not a Python int, it is converted with :c:func:`PyNumber_Index` first." msgstr "" -#: ../../c-api/number.rst:276 -msgid "" -"Returns *o* converted to a :c:type:`Py_ssize_t` value if *o* can be " -"interpreted as an integer. If the call fails, an exception is raised and " -"``-1`` is returned." +msgid "Returns *o* converted to a :c:type:`Py_ssize_t` value if *o* can be interpreted as an integer. If the call fails, an exception is raised and ``-1`` is returned." msgstr "" -#: ../../c-api/number.rst:279 -msgid "" -"If *o* can be converted to a Python int but the attempt to convert to " -"a :c:type:`Py_ssize_t` value would raise an :exc:`OverflowError`, then the " -"*exc* argument is the type of exception that will be raised " -"(usually :exc:`IndexError` or :exc:`OverflowError`). If *exc* is ``NULL``, " -"then the exception is cleared and the value is clipped to ``PY_SSIZE_T_MIN`` " -"for a negative integer or ``PY_SSIZE_T_MAX`` for a positive integer." +msgid "If *o* can be converted to a Python int but the attempt to convert to a :c:type:`Py_ssize_t` value would raise an :exc:`OverflowError`, then the *exc* argument is the type of exception that will be raised (usually :exc:`IndexError` or :exc:`OverflowError`). If *exc* is ``NULL``, then the exception is cleared and the value is clipped to ``PY_SSIZE_T_MIN`` for a negative integer or ``PY_SSIZE_T_MAX`` for a positive integer." msgstr "" -#: ../../c-api/number.rst:289 -msgid "" -"Returns ``1`` if *o* is an index integer (has the ``nb_index`` slot of the " -"``tp_as_number`` structure filled in), and ``0`` otherwise. This function " -"always succeeds." +msgid "Returns ``1`` if *o* is an index integer (has the ``nb_index`` slot of the ``tp_as_number`` structure filled in), and ``0`` otherwise. This function always succeeds." msgstr "" -#: ../../c-api/number.rst:67 ../../c-api/number.rst:75 -#: ../../c-api/number.rst:97 ../../c-api/number.rst:195 -#: ../../c-api/number.rst:241 ../../c-api/number.rst:249 msgid "built-in function" msgstr "" -#: ../../c-api/number.rst:67 msgid "divmod" msgstr "" -#: ../../c-api/number.rst:75 ../../c-api/number.rst:195 msgid "pow" msgstr "" -#: ../../c-api/number.rst:97 msgid "abs" msgstr "" -#: ../../c-api/number.rst:241 msgid "int" msgstr "" -#: ../../c-api/number.rst:249 msgid "float" msgstr "" diff --git a/c-api/object.po b/c-api/object.po index e88d795d..ada0d57e 100644 --- a/c-api/object.po +++ b/c-api/object.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:49+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,831 +24,395 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../c-api/object.rst:6 msgid "Object Protocol" msgstr "" -#: ../../c-api/object.rst:11 msgid "Get a :term:`strong reference` to a constant." msgstr "" -#: ../../c-api/object.rst:13 msgid "Set an exception and return ``NULL`` if *constant_id* is invalid." msgstr "" -#: ../../c-api/object.rst:15 msgid "*constant_id* must be one of these constant identifiers:" msgstr "" -#: ../../c-api/object.rst:20 msgid "Constant Identifier" msgstr "" -#: ../../c-api/object.rst:20 msgid "Value" msgstr "" -#: ../../c-api/object.rst:20 msgid "Returned object" msgstr "" -#: ../../c-api/object.rst:22 ../../c-api/object.rst:27 msgid "``0``" msgstr "" -#: ../../c-api/object.rst:22 msgid ":py:data:`None`" msgstr "" -#: ../../c-api/object.rst:23 ../../c-api/object.rst:28 msgid "``1``" msgstr "" -#: ../../c-api/object.rst:23 msgid ":py:data:`False`" msgstr "" -#: ../../c-api/object.rst:24 msgid "``2``" msgstr "" -#: ../../c-api/object.rst:24 msgid ":py:data:`True`" msgstr "" -#: ../../c-api/object.rst:25 msgid "``3``" msgstr "" -#: ../../c-api/object.rst:25 msgid ":py:data:`Ellipsis`" msgstr "" -#: ../../c-api/object.rst:26 msgid "``4``" msgstr "" -#: ../../c-api/object.rst:26 msgid ":py:data:`NotImplemented`" msgstr "" -#: ../../c-api/object.rst:27 msgid "``5``" msgstr "" -#: ../../c-api/object.rst:28 msgid "``6``" msgstr "" -#: ../../c-api/object.rst:29 msgid "``7``" msgstr "" -#: ../../c-api/object.rst:29 msgid "``''``" msgstr "" -#: ../../c-api/object.rst:30 msgid "``8``" msgstr "" -#: ../../c-api/object.rst:30 msgid "``b''``" msgstr "" -#: ../../c-api/object.rst:31 msgid "``9``" msgstr "" -#: ../../c-api/object.rst:31 msgid "``()``" msgstr "" -#: ../../c-api/object.rst:34 -msgid "" -"Numeric values are only given for projects which cannot use the constant " -"identifiers." +msgid "Numeric values are only given for projects which cannot use the constant identifiers." msgstr "" -#: ../../c-api/object.rst:42 msgid "In CPython, all of these constants are :term:`immortal`." msgstr "" -#: ../../c-api/object.rst:47 -msgid "" -"Similar to :c:func:`Py_GetConstant`, but return a :term:`borrowed reference`." +msgid "Similar to :c:func:`Py_GetConstant`, but return a :term:`borrowed reference`." msgstr "" -#: ../../c-api/object.rst:50 -msgid "" -"This function is primarily intended for backwards compatibility: " -"using :c:func:`Py_GetConstant` is recommended for new code." +msgid "This function is primarily intended for backwards compatibility: using :c:func:`Py_GetConstant` is recommended for new code." msgstr "" -#: ../../c-api/object.rst:53 -msgid "" -"The reference is borrowed from the interpreter, and is valid until the " -"interpreter finalization." +msgid "The reference is borrowed from the interpreter, and is valid until the interpreter finalization." msgstr "" -#: ../../c-api/object.rst:61 -msgid "" -"The ``NotImplemented`` singleton, used to signal that an operation is not " -"implemented for the given type combination." +msgid "The ``NotImplemented`` singleton, used to signal that an operation is not implemented for the given type combination." msgstr "" -#: ../../c-api/object.rst:67 -msgid "" -"Properly handle returning :c:data:`Py_NotImplemented` from within a C " -"function (that is, create a new :term:`strong reference` " -"to :const:`NotImplemented` and return it)." +msgid "Properly handle returning :c:data:`Py_NotImplemented` from within a C function (that is, create a new :term:`strong reference` to :const:`NotImplemented` and return it)." msgstr "" -#: ../../c-api/object.rst:74 -msgid "" -"Flag to be used with multiple functions that print the object " -"(like :c:func:`PyObject_Print` and :c:func:`PyFile_WriteObject`). If passed, " -"these functions use the :func:`str` of the object instead of " -"the :func:`repr`." +msgid "Flag to be used with multiple functions that print the object (like :c:func:`PyObject_Print` and :c:func:`PyFile_WriteObject`). If passed, these functions use the :func:`str` of the object instead of the :func:`repr`." msgstr "" -#: ../../c-api/object.rst:82 -msgid "" -"Print an object *o*, on file *fp*. Returns ``-1`` on error. The flags " -"argument is used to enable certain printing options. The only option " -"currently supported is :c:macro:`Py_PRINT_RAW`; if given, the :func:`str` of " -"the object is written instead of the :func:`repr`." +msgid "Print an object *o*, on file *fp*. Returns ``-1`` on error. The flags argument is used to enable certain printing options. The only option currently supported is :c:macro:`Py_PRINT_RAW`; if given, the :func:`str` of the object is written instead of the :func:`repr`." msgstr "" -#: ../../c-api/object.rst:90 -msgid "" -"Returns ``1`` if *o* has the attribute *attr_name*, and ``0`` otherwise. " -"This is equivalent to the Python expression ``hasattr(o, attr_name)``. On " -"failure, return ``-1``." +msgid "Returns ``1`` if *o* has the attribute *attr_name*, and ``0`` otherwise. This is equivalent to the Python expression ``hasattr(o, attr_name)``. On failure, return ``-1``." msgstr "" -#: ../../c-api/object.rst:99 -msgid "" -"This is the same as :c:func:`PyObject_HasAttrWithError`, but *attr_name* is " -"specified as a :c:expr:`const char*` UTF-8 encoded bytes string, rather than " -"a :c:expr:`PyObject*`." +msgid "This is the same as :c:func:`PyObject_HasAttrWithError`, but *attr_name* is specified as a :c:expr:`const char*` UTF-8 encoded bytes string, rather than a :c:expr:`PyObject*`." msgstr "" -#: ../../c-api/object.rst:108 -msgid "" -"Returns ``1`` if *o* has the attribute *attr_name*, and ``0`` otherwise. " -"This function always succeeds." +msgid "Returns ``1`` if *o* has the attribute *attr_name*, and ``0`` otherwise. This function always succeeds." msgstr "" -#: ../../c-api/object.rst:113 -msgid "" -"Exceptions that occur when this calls :meth:`~object.__getattr__` " -"and :meth:`~object.__getattribute__` methods aren't propagated, but instead " -"given to :func:`sys.unraisablehook`. For proper error handling, " -"use :c:func:`PyObject_HasAttrWithError`, :c:func:`PyObject_GetOptionalAttr` " -"or :c:func:`PyObject_GetAttr` instead." +msgid "Exceptions that occur when this calls :meth:`~object.__getattr__` and :meth:`~object.__getattribute__` methods aren't propagated, but instead given to :func:`sys.unraisablehook`. For proper error handling, use :c:func:`PyObject_HasAttrWithError`, :c:func:`PyObject_GetOptionalAttr` or :c:func:`PyObject_GetAttr` instead." msgstr "" -#: ../../c-api/object.rst:122 -msgid "" -"This is the same as :c:func:`PyObject_HasAttr`, but *attr_name* is specified " -"as a :c:expr:`const char*` UTF-8 encoded bytes string, rather than " -"a :c:expr:`PyObject*`." +msgid "This is the same as :c:func:`PyObject_HasAttr`, but *attr_name* is specified as a :c:expr:`const char*` UTF-8 encoded bytes string, rather than a :c:expr:`PyObject*`." msgstr "" -#: ../../c-api/object.rst:128 -msgid "" -"Exceptions that occur when this calls :meth:`~object.__getattr__` " -"and :meth:`~object.__getattribute__` methods or while creating the " -"temporary :class:`str` object are silently ignored. For proper error " -"handling, " -"use :c:func:`PyObject_HasAttrStringWithError`, :c:func:`PyObject_GetOptionalAttrString` " -"or :c:func:`PyObject_GetAttrString` instead." +msgid "Exceptions that occur when this calls :meth:`~object.__getattr__` and :meth:`~object.__getattribute__` methods or while creating the temporary :class:`str` object are silently ignored. For proper error handling, use :c:func:`PyObject_HasAttrStringWithError`, :c:func:`PyObject_GetOptionalAttrString` or :c:func:`PyObject_GetAttrString` instead." msgstr "" -#: ../../c-api/object.rst:138 -msgid "" -"Retrieve an attribute named *attr_name* from object *o*. Returns the " -"attribute value on success, or ``NULL`` on failure. This is the equivalent " -"of the Python expression ``o.attr_name``." +msgid "Retrieve an attribute named *attr_name* from object *o*. Returns the attribute value on success, or ``NULL`` on failure. This is the equivalent of the Python expression ``o.attr_name``." msgstr "" -#: ../../c-api/object.rst:142 -msgid "" -"If the missing attribute should not be treated as a failure, you can " -"use :c:func:`PyObject_GetOptionalAttr` instead." +msgid "If the missing attribute should not be treated as a failure, you can use :c:func:`PyObject_GetOptionalAttr` instead." msgstr "" -#: ../../c-api/object.rst:148 -msgid "" -"This is the same as :c:func:`PyObject_GetAttr`, but *attr_name* is specified " -"as a :c:expr:`const char*` UTF-8 encoded bytes string, rather than " -"a :c:expr:`PyObject*`." +msgid "This is the same as :c:func:`PyObject_GetAttr`, but *attr_name* is specified as a :c:expr:`const char*` UTF-8 encoded bytes string, rather than a :c:expr:`PyObject*`." msgstr "" -#: ../../c-api/object.rst:152 -msgid "" -"If the missing attribute should not be treated as a failure, you can " -"use :c:func:`PyObject_GetOptionalAttrString` instead." +msgid "If the missing attribute should not be treated as a failure, you can use :c:func:`PyObject_GetOptionalAttrString` instead." msgstr "" -#: ../../c-api/object.rst:158 -msgid "" -"Variant of :c:func:`PyObject_GetAttr` which doesn't " -"raise :exc:`AttributeError` if the attribute is not found." +msgid "Variant of :c:func:`PyObject_GetAttr` which doesn't raise :exc:`AttributeError` if the attribute is not found." msgstr "" -#: ../../c-api/object.rst:161 -msgid "" -"If the attribute is found, return ``1`` and set *\\*result* to a " -"new :term:`strong reference` to the attribute. If the attribute is not " -"found, return ``0`` and set *\\*result* to ``NULL``; " -"the :exc:`AttributeError` is silenced. If an error other " -"than :exc:`AttributeError` is raised, return ``-1`` and set *\\*result* to " -"``NULL``." +msgid "If the attribute is found, return ``1`` and set *\\*result* to a new :term:`strong reference` to the attribute. If the attribute is not found, return ``0`` and set *\\*result* to ``NULL``; the :exc:`AttributeError` is silenced. If an error other than :exc:`AttributeError` is raised, return ``-1`` and set *\\*result* to ``NULL``." msgstr "" -#: ../../c-api/object.rst:173 -msgid "" -"This is the same as :c:func:`PyObject_GetOptionalAttr`, but *attr_name* is " -"specified as a :c:expr:`const char*` UTF-8 encoded bytes string, rather than " -"a :c:expr:`PyObject*`." +msgid "This is the same as :c:func:`PyObject_GetOptionalAttr`, but *attr_name* is specified as a :c:expr:`const char*` UTF-8 encoded bytes string, rather than a :c:expr:`PyObject*`." msgstr "" -#: ../../c-api/object.rst:181 -msgid "" -"Generic attribute getter function that is meant to be put into a type " -"object's ``tp_getattro`` slot. It looks for a descriptor in the dictionary " -"of classes in the object's MRO as well as an attribute in the " -"object's :attr:`~object.__dict__` (if present). As outlined " -"in :ref:`descriptors`, data descriptors take preference over instance " -"attributes, while non-data descriptors don't. Otherwise, " -"an :exc:`AttributeError` is raised." +msgid "Generic attribute getter function that is meant to be put into a type object's ``tp_getattro`` slot. It looks for a descriptor in the dictionary of classes in the object's MRO as well as an attribute in the object's :attr:`~object.__dict__` (if present). As outlined in :ref:`descriptors`, data descriptors take preference over instance attributes, while non-data descriptors don't. Otherwise, an :exc:`AttributeError` is raised." msgstr "" -#: ../../c-api/object.rst:191 -msgid "" -"Set the value of the attribute named *attr_name*, for object *o*, to the " -"value *v*. Raise an exception and return ``-1`` on failure; return ``0`` on " -"success. This is the equivalent of the Python statement ``o.attr_name = v``." +msgid "Set the value of the attribute named *attr_name*, for object *o*, to the value *v*. Raise an exception and return ``-1`` on failure; return ``0`` on success. This is the equivalent of the Python statement ``o.attr_name = v``." msgstr "" -#: ../../c-api/object.rst:196 -msgid "" -"If *v* is ``NULL``, the attribute is deleted. This behaviour is deprecated " -"in favour of using :c:func:`PyObject_DelAttr`, but there are currently no " -"plans to remove it." +msgid "If *v* is ``NULL``, the attribute is deleted. This behaviour is deprecated in favour of using :c:func:`PyObject_DelAttr`, but there are currently no plans to remove it." msgstr "" -#: ../../c-api/object.rst:203 -msgid "" -"This is the same as :c:func:`PyObject_SetAttr`, but *attr_name* is specified " -"as a :c:expr:`const char*` UTF-8 encoded bytes string, rather than " -"a :c:expr:`PyObject*`." +msgid "This is the same as :c:func:`PyObject_SetAttr`, but *attr_name* is specified as a :c:expr:`const char*` UTF-8 encoded bytes string, rather than a :c:expr:`PyObject*`." msgstr "" -#: ../../c-api/object.rst:207 -msgid "" -"If *v* is ``NULL``, the attribute is deleted, but this feature is deprecated " -"in favour of using :c:func:`PyObject_DelAttrString`." +msgid "If *v* is ``NULL``, the attribute is deleted, but this feature is deprecated in favour of using :c:func:`PyObject_DelAttrString`." msgstr "" -#: ../../c-api/object.rst:210 -msgid "" -"The number of different attribute names passed to this function should be " -"kept small, usually by using a statically allocated string as *attr_name*. " -"For attribute names that aren't known at compile time, prefer " -"calling :c:func:`PyUnicode_FromString` and :c:func:`PyObject_SetAttr` " -"directly. For more details, see :c:func:`PyUnicode_InternFromString`, which " -"may be used internally to create a key object." +msgid "The number of different attribute names passed to this function should be kept small, usually by using a statically allocated string as *attr_name*. For attribute names that aren't known at compile time, prefer calling :c:func:`PyUnicode_FromString` and :c:func:`PyObject_SetAttr` directly. For more details, see :c:func:`PyUnicode_InternFromString`, which may be used internally to create a key object." msgstr "" -#: ../../c-api/object.rst:220 -msgid "" -"Generic attribute setter and deleter function that is meant to be put into a " -"type object's :c:member:`~PyTypeObject.tp_setattro` slot. It looks for a " -"data descriptor in the dictionary of classes in the object's MRO, and if " -"found it takes preference over setting or deleting the attribute in the " -"instance dictionary. Otherwise, the attribute is set or deleted in the " -"object's :attr:`~object.__dict__` (if present). On success, ``0`` is " -"returned, otherwise an :exc:`AttributeError` is raised and ``-1`` is " -"returned." +msgid "Generic attribute setter and deleter function that is meant to be put into a type object's :c:member:`~PyTypeObject.tp_setattro` slot. It looks for a data descriptor in the dictionary of classes in the object's MRO, and if found it takes preference over setting or deleting the attribute in the instance dictionary. Otherwise, the attribute is set or deleted in the object's :attr:`~object.__dict__` (if present). On success, ``0`` is returned, otherwise an :exc:`AttributeError` is raised and ``-1`` is returned." msgstr "" -#: ../../c-api/object.rst:232 -msgid "" -"Delete attribute named *attr_name*, for object *o*. Returns ``-1`` on " -"failure. This is the equivalent of the Python statement ``del o.attr_name``." +msgid "Delete attribute named *attr_name*, for object *o*. Returns ``-1`` on failure. This is the equivalent of the Python statement ``del o.attr_name``." msgstr "" -#: ../../c-api/object.rst:238 -msgid "" -"This is the same as :c:func:`PyObject_DelAttr`, but *attr_name* is specified " -"as a :c:expr:`const char*` UTF-8 encoded bytes string, rather than " -"a :c:expr:`PyObject*`." +msgid "This is the same as :c:func:`PyObject_DelAttr`, but *attr_name* is specified as a :c:expr:`const char*` UTF-8 encoded bytes string, rather than a :c:expr:`PyObject*`." msgstr "" -#: ../../c-api/object.rst:242 -msgid "" -"The number of different attribute names passed to this function should be " -"kept small, usually by using a statically allocated string as *attr_name*. " -"For attribute names that aren't known at compile time, prefer " -"calling :c:func:`PyUnicode_FromString` and :c:func:`PyObject_DelAttr` " -"directly. For more details, see :c:func:`PyUnicode_InternFromString`, which " -"may be used internally to create a key object for lookup." +msgid "The number of different attribute names passed to this function should be kept small, usually by using a statically allocated string as *attr_name*. For attribute names that aren't known at compile time, prefer calling :c:func:`PyUnicode_FromString` and :c:func:`PyObject_DelAttr` directly. For more details, see :c:func:`PyUnicode_InternFromString`, which may be used internally to create a key object for lookup." msgstr "" -#: ../../c-api/object.rst:253 -msgid "" -"A generic implementation for the getter of a ``__dict__`` descriptor. It " -"creates the dictionary if necessary." +msgid "A generic implementation for the getter of a ``__dict__`` descriptor. It creates the dictionary if necessary." msgstr "" -#: ../../c-api/object.rst:256 -msgid "" -"This function may also be called to get the :py:attr:`~object.__dict__` of " -"the object *o*. Pass ``NULL`` for *context* when calling it. Since this " -"function may need to allocate memory for the dictionary, it may be more " -"efficient to call :c:func:`PyObject_GetAttr` when accessing an attribute on " -"the object." +msgid "This function may also be called to get the :py:attr:`~object.__dict__` of the object *o*. Pass ``NULL`` for *context* when calling it. Since this function may need to allocate memory for the dictionary, it may be more efficient to call :c:func:`PyObject_GetAttr` when accessing an attribute on the object." msgstr "" -#: ../../c-api/object.rst:262 msgid "On failure, returns ``NULL`` with an exception set." msgstr "" -#: ../../c-api/object.rst:269 -msgid "" -"A generic implementation for the setter of a ``__dict__`` descriptor. This " -"implementation does not allow the dictionary to be deleted." +msgid "A generic implementation for the setter of a ``__dict__`` descriptor. This implementation does not allow the dictionary to be deleted." msgstr "" -#: ../../c-api/object.rst:277 -msgid "" -"Return a pointer to :py:attr:`~object.__dict__` of the object *obj*. If " -"there is no ``__dict__``, return ``NULL`` without setting an exception." +msgid "Return a pointer to :py:attr:`~object.__dict__` of the object *obj*. If there is no ``__dict__``, return ``NULL`` without setting an exception." msgstr "" -#: ../../c-api/object.rst:280 -msgid "" -"This function may need to allocate memory for the dictionary, so it may be " -"more efficient to call :c:func:`PyObject_GetAttr` when accessing an " -"attribute on the object." +msgid "This function may need to allocate memory for the dictionary, so it may be more efficient to call :c:func:`PyObject_GetAttr` when accessing an attribute on the object." msgstr "" -#: ../../c-api/object.rst:287 -msgid "" -"Compare the values of *o1* and *o2* using the operation specified by *opid*, " -"which must be one " -"of :c:macro:`Py_LT`, :c:macro:`Py_LE`, :c:macro:`Py_EQ`, :c:macro:`Py_NE`, :c:macro:`Py_GT`, " -"or :c:macro:`Py_GE`, corresponding to ``<``, ``<=``, ``==``, ``!=``, ``>``, " -"or ``>=`` respectively. This is the equivalent of the Python expression ``o1 " -"op o2``, where ``op`` is the operator corresponding to *opid*. Returns the " -"value of the comparison on success, or ``NULL`` on failure." +msgid "Compare the values of *o1* and *o2* using the operation specified by *opid*, which must be one of :c:macro:`Py_LT`, :c:macro:`Py_LE`, :c:macro:`Py_EQ`, :c:macro:`Py_NE`, :c:macro:`Py_GT`, or :c:macro:`Py_GE`, corresponding to ``<``, ``<=``, ``==``, ``!=``, ``>``, or ``>=`` respectively. This is the equivalent of the Python expression ``o1 op o2``, where ``op`` is the operator corresponding to *opid*. Returns the value of the comparison on success, or ``NULL`` on failure." msgstr "" -#: ../../c-api/object.rst:297 -msgid "" -"Compare the values of *o1* and *o2* using the operation specified by *opid*, " -"like :c:func:`PyObject_RichCompare`, but returns ``-1`` on error, ``0`` if " -"the result is false, ``1`` otherwise." +msgid "Compare the values of *o1* and *o2* using the operation specified by *opid*, like :c:func:`PyObject_RichCompare`, but returns ``-1`` on error, ``0`` if the result is false, ``1`` otherwise." msgstr "" -#: ../../c-api/object.rst:302 -msgid "" -"If *o1* and *o2* are the same object, :c:func:`PyObject_RichCompareBool` " -"will always return ``1`` for :c:macro:`Py_EQ` and ``0`` for :c:macro:`Py_NE`." +msgid "If *o1* and *o2* are the same object, :c:func:`PyObject_RichCompareBool` will always return ``1`` for :c:macro:`Py_EQ` and ``0`` for :c:macro:`Py_NE`." msgstr "" -#: ../../c-api/object.rst:307 -msgid "" -"Format *obj* using *format_spec*. This is equivalent to the Python " -"expression ``format(obj, format_spec)``." +msgid "Format *obj* using *format_spec*. This is equivalent to the Python expression ``format(obj, format_spec)``." msgstr "" -#: ../../c-api/object.rst:310 -msgid "" -"*format_spec* may be ``NULL``. In this case the call is equivalent to " -"``format(obj)``. Returns the formatted string on success, ``NULL`` on " -"failure." +msgid "*format_spec* may be ``NULL``. In this case the call is equivalent to ``format(obj)``. Returns the formatted string on success, ``NULL`` on failure." msgstr "" -#: ../../c-api/object.rst:318 -msgid "" -"Compute a string representation of object *o*. Returns the string " -"representation on success, ``NULL`` on failure. This is the equivalent of " -"the Python expression ``repr(o)``. Called by the :func:`repr` built-in " -"function." +msgid "Compute a string representation of object *o*. Returns the string representation on success, ``NULL`` on failure. This is the equivalent of the Python expression ``repr(o)``. Called by the :func:`repr` built-in function." msgstr "" -#: ../../c-api/object.rst:322 ../../c-api/object.rst:338 -#: ../../c-api/object.rst:350 msgid "If argument is ``NULL``, return the string ``''``." msgstr "" -#: ../../c-api/object.rst:324 ../../c-api/object.rst:352 -msgid "" -"This function now includes a debug assertion to help ensure that it does not " -"silently discard an active exception." +msgid "This function now includes a debug assertion to help ensure that it does not silently discard an active exception." msgstr "" -#: ../../c-api/object.rst:332 -msgid "" -"As :c:func:`PyObject_Repr`, compute a string representation of object *o*, " -"but escape the non-ASCII characters in the string returned " -"by :c:func:`PyObject_Repr` with ``\\x``, ``\\u`` or ``\\U`` escapes. This " -"generates a string similar to that returned by :c:func:`PyObject_Repr` in " -"Python 2. Called by the :func:`ascii` built-in function." +msgid "As :c:func:`PyObject_Repr`, compute a string representation of object *o*, but escape the non-ASCII characters in the string returned by :c:func:`PyObject_Repr` with ``\\x``, ``\\u`` or ``\\U`` escapes. This generates a string similar to that returned by :c:func:`PyObject_Repr` in Python 2. Called by the :func:`ascii` built-in function." msgstr "" -#: ../../c-api/object.rst:345 -msgid "" -"Compute a string representation of object *o*. Returns the string " -"representation on success, ``NULL`` on failure. This is the equivalent of " -"the Python expression ``str(o)``. Called by the :func:`str` built-in " -"function and, therefore, by the :func:`print` function." +msgid "Compute a string representation of object *o*. Returns the string representation on success, ``NULL`` on failure. This is the equivalent of the Python expression ``str(o)``. Called by the :func:`str` built-in function and, therefore, by the :func:`print` function." msgstr "" -#: ../../c-api/object.rst:361 -msgid "" -"Compute a bytes representation of object *o*. ``NULL`` is returned on " -"failure and a bytes object on success. This is equivalent to the Python " -"expression ``bytes(o)``, when *o* is not an integer. Unlike ``bytes(o)``, a " -"TypeError is raised when *o* is an integer instead of a zero-initialized " -"bytes object." +msgid "Compute a bytes representation of object *o*. ``NULL`` is returned on failure and a bytes object on success. This is equivalent to the Python expression ``bytes(o)``, when *o* is not an integer. Unlike ``bytes(o)``, a TypeError is raised when *o* is an integer instead of a zero-initialized bytes object." msgstr "" -#: ../../c-api/object.rst:367 -msgid "" -"If argument is ``NULL``, return the :class:`bytes` object ``b''``." +msgid "If argument is ``NULL``, return the :class:`bytes` object ``b''``." msgstr "" -#: ../../c-api/object.rst:372 -msgid "" -"Return ``1`` if the class *derived* is identical to or derived from the " -"class *cls*, otherwise return ``0``. In case of an error, return ``-1``." +msgid "Return ``1`` if the class *derived* is identical to or derived from the class *cls*, otherwise return ``0``. In case of an error, return ``-1``." msgstr "" -#: ../../c-api/object.rst:375 ../../c-api/object.rst:394 -msgid "" -"If *cls* is a tuple, the check will be done against every entry in *cls*. " -"The result will be ``1`` when at least one of the checks returns ``1``, " -"otherwise it will be ``0``." +msgid "If *cls* is a tuple, the check will be done against every entry in *cls*. The result will be ``1`` when at least one of the checks returns ``1``, otherwise it will be ``0``." msgstr "" -#: ../../c-api/object.rst:379 -msgid "" -"If *cls* has a :meth:`~type.__subclasscheck__` method, it will be called to " -"determine the subclass status as described in :pep:`3119`. Otherwise, " -"*derived* is a subclass of *cls* if it is a direct or indirect subclass, " -"i.e. contained in :attr:`cls.__mro__ `." +msgid "If *cls* has a :meth:`~type.__subclasscheck__` method, it will be called to determine the subclass status as described in :pep:`3119`. Otherwise, *derived* is a subclass of *cls* if it is a direct or indirect subclass, i.e. contained in :attr:`cls.__mro__ `." msgstr "" -#: ../../c-api/object.rst:384 -msgid "" -"Normally only class objects, i.e. instances of :class:`type` or a derived " -"class, are considered classes. However, objects can override this by having " -"a :attr:`~type.__bases__` attribute (which must be a tuple of base classes)." +msgid "Normally only class objects, i.e. instances of :class:`type` or a derived class, are considered classes. However, objects can override this by having a :attr:`~type.__bases__` attribute (which must be a tuple of base classes)." msgstr "" -#: ../../c-api/object.rst:391 -msgid "" -"Return ``1`` if *inst* is an instance of the class *cls* or a subclass of " -"*cls*, or ``0`` if not. On error, returns ``-1`` and sets an exception." +msgid "Return ``1`` if *inst* is an instance of the class *cls* or a subclass of *cls*, or ``0`` if not. On error, returns ``-1`` and sets an exception." msgstr "" -#: ../../c-api/object.rst:398 -msgid "" -"If *cls* has a :meth:`~type.__instancecheck__` method, it will be called to " -"determine the subclass status as described in :pep:`3119`. Otherwise, " -"*inst* is an instance of *cls* if its class is a subclass of *cls*." +msgid "If *cls* has a :meth:`~type.__instancecheck__` method, it will be called to determine the subclass status as described in :pep:`3119`. Otherwise, *inst* is an instance of *cls* if its class is a subclass of *cls*." msgstr "" -#: ../../c-api/object.rst:402 -msgid "" -"An instance *inst* can override what is considered its class by having " -"a :attr:`~object.__class__` attribute." +msgid "An instance *inst* can override what is considered its class by having a :attr:`~object.__class__` attribute." msgstr "" -#: ../../c-api/object.rst:405 -msgid "" -"An object *cls* can override if it is considered a class, and what its base " -"classes are, by having a :attr:`~type.__bases__` attribute (which must be a " -"tuple of base classes)." +msgid "An object *cls* can override if it is considered a class, and what its base classes are, by having a :attr:`~type.__bases__` attribute (which must be a tuple of base classes)." msgstr "" -#: ../../c-api/object.rst:414 -msgid "" -"Compute and return the hash value of an object *o*. On failure, return " -"``-1``. This is the equivalent of the Python expression ``hash(o)``." +msgid "Compute and return the hash value of an object *o*. On failure, return ``-1``. This is the equivalent of the Python expression ``hash(o)``." msgstr "" -#: ../../c-api/object.rst:417 -msgid "" -"The return type is now Py_hash_t. This is a signed integer the same size " -"as :c:type:`Py_ssize_t`." +msgid "The return type is now Py_hash_t. This is a signed integer the same size as :c:type:`Py_ssize_t`." msgstr "" -#: ../../c-api/object.rst:424 -msgid "" -"Set a :exc:`TypeError` indicating that ``type(o)`` is not :term:`hashable` " -"and return ``-1``. This function receives special treatment when stored in a " -"``tp_hash`` slot, allowing a type to explicitly indicate to the interpreter " -"that it is not hashable." +msgid "Set a :exc:`TypeError` indicating that ``type(o)`` is not :term:`hashable` and return ``-1``. This function receives special treatment when stored in a ``tp_hash`` slot, allowing a type to explicitly indicate to the interpreter that it is not hashable." msgstr "" -#: ../../c-api/object.rst:432 -msgid "" -"Returns ``1`` if the object *o* is considered to be true, and ``0`` " -"otherwise. This is equivalent to the Python expression ``not not o``. On " -"failure, return ``-1``." +msgid "Returns ``1`` if the object *o* is considered to be true, and ``0`` otherwise. This is equivalent to the Python expression ``not not o``. On failure, return ``-1``." msgstr "" -#: ../../c-api/object.rst:439 -msgid "" -"Returns ``0`` if the object *o* is considered to be true, and ``1`` " -"otherwise. This is equivalent to the Python expression ``not o``. On " -"failure, return ``-1``." +msgid "Returns ``0`` if the object *o* is considered to be true, and ``1`` otherwise. This is equivalent to the Python expression ``not o``. On failure, return ``-1``." msgstr "" -#: ../../c-api/object.rst:448 -msgid "" -"When *o* is non-``NULL``, returns a type object corresponding to the object " -"type of object *o*. On failure, raises :exc:`SystemError` and returns " -"``NULL``. This is equivalent to the Python expression ``type(o)``. This " -"function creates a new :term:`strong reference` to the return value. There's " -"really no reason to use this function instead of the :c:func:`Py_TYPE()` " -"function, which returns a pointer of type :c:expr:`PyTypeObject*`, except " -"when a new :term:`strong reference` is needed." +msgid "When *o* is non-``NULL``, returns a type object corresponding to the object type of object *o*. On failure, raises :exc:`SystemError` and returns ``NULL``. This is equivalent to the Python expression ``type(o)``. This function creates a new :term:`strong reference` to the return value. There's really no reason to use this function instead of the :c:func:`Py_TYPE()` function, which returns a pointer of type :c:expr:`PyTypeObject*`, except when a new :term:`strong reference` is needed." msgstr "" -#: ../../c-api/object.rst:460 -msgid "" -"Return non-zero if the object *o* is of type *type* or a subtype of *type*, " -"and ``0`` otherwise. Both parameters must be non-``NULL``." +msgid "Return non-zero if the object *o* is of type *type* or a subtype of *type*, and ``0`` otherwise. Both parameters must be non-``NULL``." msgstr "" -#: ../../c-api/object.rst:469 -msgid "" -"Return the length of object *o*. If the object *o* provides either the " -"sequence and mapping protocols, the sequence length is returned. On error, " -"``-1`` is returned. This is the equivalent to the Python expression " -"``len(o)``." +msgid "Return the length of object *o*. If the object *o* provides either the sequence and mapping protocols, the sequence length is returned. On error, ``-1`` is returned. This is the equivalent to the Python expression ``len(o)``." msgstr "" -#: ../../c-api/object.rst:476 -msgid "" -"Return an estimated length for the object *o*. First try to return its " -"actual length, then an estimate using :meth:`~object.__length_hint__`, and " -"finally return the default value. On error return ``-1``. This is the " -"equivalent to the Python expression ``operator.length_hint(o, " -"defaultvalue)``." +msgid "Return an estimated length for the object *o*. First try to return its actual length, then an estimate using :meth:`~object.__length_hint__`, and finally return the default value. On error return ``-1``. This is the equivalent to the Python expression ``operator.length_hint(o, defaultvalue)``." msgstr "" -#: ../../c-api/object.rst:486 -msgid "" -"Return element of *o* corresponding to the object *key* or ``NULL`` on " -"failure. This is the equivalent of the Python expression ``o[key]``." +msgid "Return element of *o* corresponding to the object *key* or ``NULL`` on failure. This is the equivalent of the Python expression ``o[key]``." msgstr "" -#: ../../c-api/object.rst:492 -msgid "" -"Map the object *key* to the value *v*. Raise an exception and return ``-1`` " -"on failure; return ``0`` on success. This is the equivalent of the Python " -"statement ``o[key] = v``. This function *does not* steal a reference to *v*." +msgid "Map the object *key* to the value *v*. Raise an exception and return ``-1`` on failure; return ``0`` on success. This is the equivalent of the Python statement ``o[key] = v``. This function *does not* steal a reference to *v*." msgstr "" -#: ../../c-api/object.rst:500 -msgid "" -"Remove the mapping for the object *key* from the object *o*. Return ``-1`` " -"on failure. This is equivalent to the Python statement ``del o[key]``." +msgid "Remove the mapping for the object *key* from the object *o*. Return ``-1`` on failure. This is equivalent to the Python statement ``del o[key]``." msgstr "" -#: ../../c-api/object.rst:506 -msgid "" -"This is the same as :c:func:`PyObject_DelItem`, but *key* is specified as " -"a :c:expr:`const char*` UTF-8 encoded bytes string, rather than " -"a :c:expr:`PyObject*`." +msgid "This is the same as :c:func:`PyObject_DelItem`, but *key* is specified as a :c:expr:`const char*` UTF-8 encoded bytes string, rather than a :c:expr:`PyObject*`." msgstr "" -#: ../../c-api/object.rst:513 -msgid "" -"This is equivalent to the Python expression ``dir(o)``, returning a " -"(possibly empty) list of strings appropriate for the object argument, or " -"``NULL`` if there was an error. If the argument is ``NULL``, this is like " -"the Python ``dir()``, returning the names of the current locals; in this " -"case, if no execution frame is active then ``NULL`` is returned " -"but :c:func:`PyErr_Occurred` will return false." +msgid "This is equivalent to the Python expression ``dir(o)``, returning a (possibly empty) list of strings appropriate for the object argument, or ``NULL`` if there was an error. If the argument is ``NULL``, this is like the Python ``dir()``, returning the names of the current locals; in this case, if no execution frame is active then ``NULL`` is returned but :c:func:`PyErr_Occurred` will return false." msgstr "" -#: ../../c-api/object.rst:522 -msgid "" -"This is equivalent to the Python expression ``iter(o)``. It returns a new " -"iterator for the object argument, or the object itself if the object is " -"already an iterator. Raises :exc:`TypeError` and returns ``NULL`` if the " -"object cannot be iterated." +msgid "This is equivalent to the Python expression ``iter(o)``. It returns a new iterator for the object argument, or the object itself if the object is already an iterator. Raises :exc:`TypeError` and returns ``NULL`` if the object cannot be iterated." msgstr "" -#: ../../c-api/object.rst:530 -msgid "" -"This is equivalent to the Python ``__iter__(self): return self`` method. It " -"is intended for :term:`iterator` types, to be used in " -"the :c:member:`PyTypeObject.tp_iter` slot." +msgid "This is equivalent to the Python ``__iter__(self): return self`` method. It is intended for :term:`iterator` types, to be used in the :c:member:`PyTypeObject.tp_iter` slot." msgstr "" -#: ../../c-api/object.rst:536 -msgid "" -"This is the equivalent to the Python expression ``aiter(o)``. Takes " -"an :class:`AsyncIterable` object and returns an :class:`AsyncIterator` for " -"it. This is typically a new iterator but if the argument is " -"an :class:`AsyncIterator`, this returns itself. Raises :exc:`TypeError` and " -"returns ``NULL`` if the object cannot be iterated." +msgid "This is the equivalent to the Python expression ``aiter(o)``. Takes an :class:`AsyncIterable` object and returns an :class:`AsyncIterator` for it. This is typically a new iterator but if the argument is an :class:`AsyncIterator`, this returns itself. Raises :exc:`TypeError` and returns ``NULL`` if the object cannot be iterated." msgstr "" -#: ../../c-api/object.rst:546 msgid "Get a pointer to subclass-specific data reserved for *cls*." msgstr "" -#: ../../c-api/object.rst:548 -msgid "" -"The object *o* must be an instance of *cls*, and *cls* must have been " -"created using negative :c:member:`PyType_Spec.basicsize`. Python does not " -"check this." +msgid "The object *o* must be an instance of *cls*, and *cls* must have been created using negative :c:member:`PyType_Spec.basicsize`. Python does not check this." msgstr "" -#: ../../c-api/object.rst:552 msgid "On error, set an exception and return ``NULL``." msgstr "" -#: ../../c-api/object.rst:558 -msgid "" -"Return the size of the instance memory space reserved for *cls*, i.e. the " -"size of the memory :c:func:`PyObject_GetTypeData` returns." +msgid "Return the size of the instance memory space reserved for *cls*, i.e. the size of the memory :c:func:`PyObject_GetTypeData` returns." msgstr "" -#: ../../c-api/object.rst:561 -msgid "" -"This may be larger than requested using :c:member:`-PyType_Spec.basicsize " -"`; it is safe to use this larger size (e.g. " -"with :c:func:`!memset`)." +msgid "This may be larger than requested using :c:member:`-PyType_Spec.basicsize `; it is safe to use this larger size (e.g. with :c:func:`!memset`)." msgstr "" -#: ../../c-api/object.rst:564 -msgid "" -"The type *cls* **must** have been created using " -"negative :c:member:`PyType_Spec.basicsize`. Python does not check this." +msgid "The type *cls* **must** have been created using negative :c:member:`PyType_Spec.basicsize`. Python does not check this." msgstr "" -#: ../../c-api/object.rst:568 msgid "On error, set an exception and return a negative value." msgstr "" -#: ../../c-api/object.rst:574 -msgid "" -"Get a pointer to per-item data for a class " -"with :c:macro:`Py_TPFLAGS_ITEMS_AT_END`." +msgid "Get a pointer to per-item data for a class with :c:macro:`Py_TPFLAGS_ITEMS_AT_END`." msgstr "" -#: ../../c-api/object.rst:577 -msgid "" -"On error, set an exception and return ``NULL``. :py:exc:`TypeError` is " -"raised if *o* does not have :c:macro:`Py_TPFLAGS_ITEMS_AT_END` set." +msgid "On error, set an exception and return ``NULL``. :py:exc:`TypeError` is raised if *o* does not have :c:macro:`Py_TPFLAGS_ITEMS_AT_END` set." msgstr "" -#: ../../c-api/object.rst:585 msgid "Visit the managed dictionary of *obj*." msgstr "" -#: ../../c-api/object.rst:587 -msgid "" -"This function must only be called in a traverse function of the type which " -"has the :c:macro:`Py_TPFLAGS_MANAGED_DICT` flag set." +msgid "This function must only be called in a traverse function of the type which has the :c:macro:`Py_TPFLAGS_MANAGED_DICT` flag set." msgstr "" -#: ../../c-api/object.rst:594 msgid "Clear the managed dictionary of *obj*." msgstr "" -#: ../../c-api/object.rst:596 -msgid "" -"This function must only be called in a clear function of the type which has " -"the :c:macro:`Py_TPFLAGS_MANAGED_DICT` flag set." +msgid "This function must only be called in a clear function of the type which has the :c:macro:`Py_TPFLAGS_MANAGED_DICT` flag set." msgstr "" -#: ../../c-api/object.rst:603 -msgid "" -"Enable `deferred reference counting `_ on *obj*, if supported by the runtime. In " -"the :term:`free-threaded ` build, this allows the " -"interpreter to avoid reference count adjustments to *obj*, which may improve " -"multi-threaded performance. The tradeoff is that *obj* will only be " -"deallocated by the tracing garbage collector, and not when the interpreter " -"no longer has any references to it." +msgid "Enable `deferred reference counting `_ on *obj*, if supported by the runtime. In the :term:`free-threaded ` build, this allows the interpreter to avoid reference count adjustments to *obj*, which may improve multi-threaded performance. The tradeoff is that *obj* will only be deallocated by the tracing garbage collector, and not when the interpreter no longer has any references to it." msgstr "" -#: ../../c-api/object.rst:610 -msgid "" -"This function returns ``1`` if deferred reference counting is enabled on " -"*obj*, and ``0`` if deferred reference counting is not supported or if the " -"hint was ignored by the interpreter, such as when deferred reference " -"counting is already enabled on *obj*. This function is thread-safe, and " -"cannot fail." +msgid "This function returns ``1`` if deferred reference counting is enabled on *obj*, and ``0`` if deferred reference counting is not supported or if the hint was ignored by the interpreter, such as when deferred reference counting is already enabled on *obj*. This function is thread-safe, and cannot fail." msgstr "" -#: ../../c-api/object.rst:615 -msgid "" -"This function does nothing on builds with the :term:`GIL` enabled, which do " -"not support deferred reference counting. This also does nothing if *obj* is " -"not an object tracked by the garbage collector (see :func:`gc.is_tracked` " -"and :c:func:`PyObject_GC_IsTracked`)." +msgid "This function does nothing on builds with the :term:`GIL` enabled, which do not support deferred reference counting. This also does nothing if *obj* is not an object tracked by the garbage collector (see :func:`gc.is_tracked` and :c:func:`PyObject_GC_IsTracked`)." msgstr "" -#: ../../c-api/object.rst:620 -msgid "" -"This function is intended to be used soon after *obj* is created, by the " -"code that creates it, such as in the " -"object's :c:member:`~PyTypeObject.tp_new` slot." +msgid "This function is intended to be used soon after *obj* is created, by the code that creates it, such as in the object's :c:member:`~PyTypeObject.tp_new` slot." msgstr "" -#: ../../c-api/object.rst:628 -msgid "" -"Check if *obj* is a unique temporary object. Returns ``1`` if *obj* is known " -"to be a unique temporary object, and ``0`` otherwise. This function cannot " -"fail, but the check is conservative, and may return ``0`` in some cases even " -"if *obj* is a unique temporary object." +msgid "Check if *obj* is a unique temporary object. Returns ``1`` if *obj* is known to be a unique temporary object, and ``0`` otherwise. This function cannot fail, but the check is conservative, and may return ``0`` in some cases even if *obj* is a unique temporary object." msgstr "" -#: ../../c-api/object.rst:634 -msgid "" -"If an object is a unique temporary, it is guaranteed that the current code " -"has the only reference to the object. For arguments to C functions, this " -"should be used instead of checking if the reference count is ``1``. Starting " -"with Python 3.14, the interpreter internally avoids some reference count " -"modifications when loading objects onto the operands stack " -"by :term:`borrowing ` references when possible, which " -"means that a reference count of ``1`` by itself does not guarantee that a " -"function argument uniquely referenced." +msgid "If an object is a unique temporary, it is guaranteed that the current code has the only reference to the object. For arguments to C functions, this should be used instead of checking if the reference count is ``1``. Starting with Python 3.14, the interpreter internally avoids some reference count modifications when loading objects onto the operands stack by :term:`borrowing ` references when possible, which means that a reference count of ``1`` by itself does not guarantee that a function argument uniquely referenced." msgstr "" -#: ../../c-api/object.rst:643 -msgid "" -"In the example below, ``my_func`` is called with a unique temporary object " -"as its argument::" +msgid "In the example below, ``my_func`` is called with a unique temporary object as its argument::" msgstr "" -#: ../../c-api/object.rst:646 msgid "my_func([1, 2, 3])" msgstr "" -#: ../../c-api/object.rst:648 -msgid "" -"In the example below, ``my_func`` is **not** called with a unique temporary " -"object as its argument, even if its refcount is ``1``::" +msgid "In the example below, ``my_func`` is **not** called with a unique temporary object as its argument, even if its refcount is ``1``::" msgstr "" -#: ../../c-api/object.rst:651 msgid "" "my_list = [1, 2, 3]\n" "my_func(my_list)" msgstr "" -#: ../../c-api/object.rst:654 msgid "See also the function :c:func:`Py_REFCNT`." msgstr "" -#: ../../c-api/object.rst:660 -msgid "" -"This function returns non-zero if *obj* is :term:`immortal`, and zero " -"otherwise. This function cannot fail." +msgid "This function returns non-zero if *obj* is :term:`immortal`, and zero otherwise. This function cannot fail." msgstr "" -#: ../../c-api/object.rst:665 -msgid "" -"Objects that are immortal in one CPython version are not guaranteed to be " -"immortal in another." +msgid "Objects that are immortal in one CPython version are not guaranteed to be immortal in another." msgstr "" -#: ../../c-api/object.rst:672 -msgid "" -"Increments the reference count of *obj* if it is not zero. Returns ``1`` if " -"the object's reference count was successfully incremented. Otherwise, this " -"function returns ``0``." +msgid "Increments the reference count of *obj* if it is not zero. Returns ``1`` if the object's reference count was successfully incremented. Otherwise, this function returns ``0``." msgstr "" -#: ../../c-api/object.rst:676 -msgid "" -":c:func:`PyUnstable_EnableTryIncRef` must have been called earlier on *obj* " -"or this function may spuriously return ``0`` in the :term:`free-threaded " -"build`." +msgid ":c:func:`PyUnstable_EnableTryIncRef` must have been called earlier on *obj* or this function may spuriously return ``0`` in the :term:`free-threaded build`." msgstr "" -#: ../../c-api/object.rst:680 -msgid "" -"This function is logically equivalent to the following C code, except that " -"it behaves atomically in the :term:`free-threaded build`::" +msgid "This function is logically equivalent to the following C code, except that it behaves atomically in the :term:`free-threaded build`::" msgstr "" -#: ../../c-api/object.rst:683 msgid "" "if (Py_REFCNT(op) > 0) {\n" " Py_INCREF(op);\n" @@ -857,21 +421,12 @@ msgid "" "return 0;" msgstr "" -#: ../../c-api/object.rst:689 -msgid "" -"This is intended as a building block for managing weak references without " -"the overhead of a Python :ref:`weak reference object `." +msgid "This is intended as a building block for managing weak references without the overhead of a Python :ref:`weak reference object `." msgstr "" -#: ../../c-api/object.rst:692 -msgid "" -"Typically, correct use of this function requires support from *obj*'s " -"deallocator (:c:member:`~PyTypeObject.tp_dealloc`). For example, the " -"following sketch could be adapted to implement a \"weakmap\" that works like " -"a :py:class:`~weakref.WeakValueDictionary` for a specific type:" +msgid "Typically, correct use of this function requires support from *obj*'s deallocator (:c:member:`~PyTypeObject.tp_dealloc`). For example, the following sketch could be adapted to implement a \"weakmap\" that works like a :py:class:`~weakref.WeakValueDictionary` for a specific type:" msgstr "" -#: ../../c-api/object.rst:698 msgid "" "PyMutex mutex;\n" "\n" @@ -916,71 +471,44 @@ msgid "" "}" msgstr "" -#: ../../c-api/object.rst:746 -msgid "" -"Enables subsequent uses of :c:func:`PyUnstable_TryIncRef` on *obj*. The " -"caller must hold a :term:`strong reference` to *obj* when calling this." +msgid "Enables subsequent uses of :c:func:`PyUnstable_TryIncRef` on *obj*. The caller must hold a :term:`strong reference` to *obj* when calling this." msgstr "" -#: ../../c-api/object.rst:753 msgid "Determine if *op* only has one reference." msgstr "" -#: ../../c-api/object.rst:755 -msgid "" -"On GIL-enabled builds, this function is equivalent to :c:expr:`Py_REFCNT(op) " -"== 1`." +msgid "On GIL-enabled builds, this function is equivalent to :c:expr:`Py_REFCNT(op) == 1`." msgstr "" -#: ../../c-api/object.rst:758 -msgid "" -"On a :term:`free-threaded build`, this checks if *op*'s :term:`reference " -"count` is equal to one and additionally checks if *op* is only used by this " -"thread. :c:expr:`Py_REFCNT(op) == 1` is **not** thread-safe on free-threaded " -"builds; prefer this function." +msgid "On a :term:`free-threaded build`, this checks if *op*'s :term:`reference count` is equal to one and additionally checks if *op* is only used by this thread. :c:expr:`Py_REFCNT(op) == 1` is **not** thread-safe on free-threaded builds; prefer this function." msgstr "" -#: ../../c-api/object.rst:763 -msgid "" -"The caller must hold an :term:`attached thread state`, despite the fact that " -"this function doesn't call into the Python interpreter. This function cannot " -"fail." +msgid "The caller must hold an :term:`attached thread state`, despite the fact that this function doesn't call into the Python interpreter. This function cannot fail." msgstr "" -#: ../../c-api/object.rst:316 ../../c-api/object.rst:330 -#: ../../c-api/object.rst:359 ../../c-api/object.rst:412 -#: ../../c-api/object.rst:446 ../../c-api/object.rst:467 msgid "built-in function" msgstr "" -#: ../../c-api/object.rst:316 msgid "repr" msgstr "" -#: ../../c-api/object.rst:330 msgid "ascii" msgstr "" -#: ../../c-api/object.rst:340 msgid "string" msgstr "" -#: ../../c-api/object.rst:340 msgid "PyObject_Str (C function)" msgstr "" -#: ../../c-api/object.rst:359 msgid "bytes" msgstr "" -#: ../../c-api/object.rst:412 msgid "hash" msgstr "" -#: ../../c-api/object.rst:446 msgid "type" msgstr "" -#: ../../c-api/object.rst:467 msgid "len" msgstr "" diff --git a/c-api/objimpl.po b/c-api/objimpl.po index d34d1396..90df6483 100644 --- a/c-api/objimpl.po +++ b/c-api/objimpl.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:49+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,12 +21,8 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../c-api/objimpl.rst:7 msgid "Object Implementation Support" msgstr "" -#: ../../c-api/objimpl.rst:9 -msgid "" -"This chapter describes the functions, types, and macros used when defining " -"new object types." +msgid "This chapter describes the functions, types, and macros used when defining new object types." msgstr "" diff --git a/c-api/perfmaps.po b/c-api/perfmaps.po index cefb956f..18576043 100644 --- a/c-api/perfmaps.po +++ b/c-api/perfmaps.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2023-05-24 13:07+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,143 +21,76 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../c-api/perfmaps.rst:6 msgid "Support for Perf Maps" msgstr "" -#: ../../c-api/perfmaps.rst:8 -msgid "" -"On supported platforms (as of this writing, only Linux), the runtime can " -"take advantage of *perf map files* to make Python functions visible to an " -"external profiling tool (such as `perf `_). A running process may create a file in the ``/tmp`` " -"directory, which contains entries that can map a section of executable code " -"to a name. This interface is described in the `documentation of the Linux " -"Perf tool `_." +msgid "On supported platforms (as of this writing, only Linux), the runtime can take advantage of *perf map files* to make Python functions visible to an external profiling tool (such as `perf `_). A running process may create a file in the ``/tmp`` directory, which contains entries that can map a section of executable code to a name. This interface is described in the `documentation of the Linux Perf tool `_." msgstr "" -#: ../../c-api/perfmaps.rst:16 -msgid "" -"In Python, these helper APIs can be used by libraries and features that rely " -"on generating machine code on the fly." +msgid "In Python, these helper APIs can be used by libraries and features that rely on generating machine code on the fly." msgstr "" -#: ../../c-api/perfmaps.rst:19 -msgid "" -"Note that holding an :term:`attached thread state` is not required for these " -"APIs." +msgid "Note that holding an :term:`attached thread state` is not required for these APIs." msgstr "" -#: ../../c-api/perfmaps.rst:23 -msgid "" -"Open the ``/tmp/perf-$pid.map`` file, unless it's already opened, and create " -"a lock to ensure thread-safe writes to the file (provided the writes are " -"done through :c:func:`PyUnstable_WritePerfMapEntry`). Normally, there's no " -"need to call this explicitly; just " -"use :c:func:`PyUnstable_WritePerfMapEntry` and it will initialize the state " -"on first call." +msgid "Open the ``/tmp/perf-$pid.map`` file, unless it's already opened, and create a lock to ensure thread-safe writes to the file (provided the writes are done through :c:func:`PyUnstable_WritePerfMapEntry`). Normally, there's no need to call this explicitly; just use :c:func:`PyUnstable_WritePerfMapEntry` and it will initialize the state on first call." msgstr "" -#: ../../c-api/perfmaps.rst:29 -msgid "" -"Returns ``0`` on success, ``-1`` on failure to create/open the perf map " -"file, or ``-2`` on failure to create a lock. Check ``errno`` for more " -"information about the cause of a failure." +msgid "Returns ``0`` on success, ``-1`` on failure to create/open the perf map file, or ``-2`` on failure to create a lock. Check ``errno`` for more information about the cause of a failure." msgstr "" -#: ../../c-api/perfmaps.rst:35 -msgid "" -"Write one single entry to the ``/tmp/perf-$pid.map`` file. This function is " -"thread safe. Here is what an example entry looks like::" +msgid "Write one single entry to the ``/tmp/perf-$pid.map`` file. This function is thread safe. Here is what an example entry looks like::" msgstr "" -#: ../../c-api/perfmaps.rst:38 msgid "" "# address size name\n" "7f3529fcf759 b py::bar:/run/t.py" msgstr "" -#: ../../c-api/perfmaps.rst:41 -msgid "" -"Will call :c:func:`PyUnstable_PerfMapState_Init` before writing the entry, " -"if the perf map file is not already opened. Returns ``0`` on success, or the " -"same error codes as :c:func:`PyUnstable_PerfMapState_Init` on failure." +msgid "Will call :c:func:`PyUnstable_PerfMapState_Init` before writing the entry, if the perf map file is not already opened. Returns ``0`` on success, or the same error codes as :c:func:`PyUnstable_PerfMapState_Init` on failure." msgstr "" -#: ../../c-api/perfmaps.rst:47 -msgid "" -"Close the perf map file opened by :c:func:`PyUnstable_PerfMapState_Init`. " -"This is called by the runtime itself during interpreter shut-down. In " -"general, there shouldn't be a reason to explicitly call this, except to " -"handle specific scenarios such as forking." +msgid "Close the perf map file opened by :c:func:`PyUnstable_PerfMapState_Init`. This is called by the runtime itself during interpreter shut-down. In general, there shouldn't be a reason to explicitly call this, except to handle specific scenarios such as forking." msgstr "" -#: ../../c-api/perfmaps.rst:54 -msgid "" -"Open the ``/tmp/perf-$pid.map`` file and append the content of " -"*parent_filename* to it." +msgid "Open the ``/tmp/perf-$pid.map`` file and append the content of *parent_filename* to it." msgstr "" -#: ../../c-api/perfmaps.rst:57 -msgid "" -"This function is available on all platforms but only generates output on " -"platforms that support perf maps (currently only Linux). On other platforms, " -"it does nothing." +msgid "This function is available on all platforms but only generates output on platforms that support perf maps (currently only Linux). On other platforms, it does nothing." msgstr "" -#: ../../c-api/perfmaps.rst:64 msgid "Compile the given code object using the current perf trampoline." msgstr "" -#: ../../c-api/perfmaps.rst:66 -msgid "" -"The \"current\" trampoline is the one set by the runtime or the most " -"recent :c:func:`PyUnstable_PerfTrampoline_SetPersistAfterFork` call." +msgid "The \"current\" trampoline is the one set by the runtime or the most recent :c:func:`PyUnstable_PerfTrampoline_SetPersistAfterFork` call." msgstr "" -#: ../../c-api/perfmaps.rst:69 -msgid "" -"If no trampoline is set, falls back to normal compilation (no perf map " -"entry)." +msgid "If no trampoline is set, falls back to normal compilation (no perf map entry)." msgstr "" -#: ../../c-api/perfmaps.rst:0 msgid "Parameters" msgstr "" -#: ../../c-api/perfmaps.rst:71 msgid "The code object to compile." msgstr "" -#: ../../c-api/perfmaps.rst:0 msgid "Returns" msgstr "" -#: ../../c-api/perfmaps.rst:72 ../../c-api/perfmaps.rst:88 msgid "0 on success, -1 on failure." msgstr "" -#: ../../c-api/perfmaps.rst:78 msgid "Set whether the perf trampoline should persist after a fork." msgstr "" -#: ../../c-api/perfmaps.rst:80 -msgid "" -"If ``enable`` is true (non-zero): perf map file remains open/valid post-" -"fork. Child process inherits all existing perf map entries." +msgid "If ``enable`` is true (non-zero): perf map file remains open/valid post-fork. Child process inherits all existing perf map entries." msgstr "" -#: ../../c-api/perfmaps.rst:82 -msgid "" -"If ``enable`` is false (zero): perf map closes post-fork. Child process gets " -"empty perf map." +msgid "If ``enable`` is false (zero): perf map closes post-fork. Child process gets empty perf map." msgstr "" -#: ../../c-api/perfmaps.rst:85 msgid "Default: false (clears on fork)." msgstr "" -#: ../../c-api/perfmaps.rst:87 msgid "1 to enable, 0 to disable." msgstr "" diff --git a/c-api/picklebuffer.po b/c-api/picklebuffer.po index 36cd78e7..bb05e03c 100644 --- a/c-api/picklebuffer.po +++ b/c-api/picklebuffer.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2026-07-25 12:59+0330\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: none\n" @@ -19,86 +19,50 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../c-api/picklebuffer.rst:9 msgid "Pickle buffer objects" msgstr "" -#: ../../c-api/picklebuffer.rst:13 -msgid "" -"A :class:`pickle.PickleBuffer` object wraps a :ref:`buffer-providing object " -"` for out-of-band data transfer with the :mod:`pickle` module." +msgid "A :class:`pickle.PickleBuffer` object wraps a :ref:`buffer-providing object ` for out-of-band data transfer with the :mod:`pickle` module." msgstr "" -#: ../../c-api/picklebuffer.rst:19 -msgid "" -"This instance of :c:type:`PyTypeObject` represents the Python pickle buffer " -"type. This is the same object as :class:`pickle.PickleBuffer` in the Python " -"layer." +msgid "This instance of :c:type:`PyTypeObject` represents the Python pickle buffer type. This is the same object as :class:`pickle.PickleBuffer` in the Python layer." msgstr "" -#: ../../c-api/picklebuffer.rst:25 -msgid "" -"Return true if *op* is a pickle buffer instance. This function always " -"succeeds." +msgid "Return true if *op* is a pickle buffer instance. This function always succeeds." msgstr "" -#: ../../c-api/picklebuffer.rst:31 msgid "Create a pickle buffer from the object *obj*." msgstr "" -#: ../../c-api/picklebuffer.rst:33 -msgid "" -"This function will fail if *obj* doesn't support the :ref:`buffer protocol " -"`." +msgid "This function will fail if *obj* doesn't support the :ref:`buffer protocol `." msgstr "" -#: ../../c-api/picklebuffer.rst:35 -msgid "" -"On success, return a new pickle buffer instance. On failure, set an " -"exception and return ``NULL``." +msgid "On success, return a new pickle buffer instance. On failure, set an exception and return ``NULL``." msgstr "" -#: ../../c-api/picklebuffer.rst:38 msgid "Analogous to calling :class:`pickle.PickleBuffer` with *obj* in Python." msgstr "" -#: ../../c-api/picklebuffer.rst:43 -msgid "" -"Get a pointer to the underlying :c:type:`Py_buffer` that the pickle buffer " -"wraps." +msgid "Get a pointer to the underlying :c:type:`Py_buffer` that the pickle buffer wraps." msgstr "" -#: ../../c-api/picklebuffer.rst:45 -msgid "" -"The returned pointer is valid as long as *picklebuf* is alive and has not " -"been released. The caller must not modify or free the " -"returned :c:type:`Py_buffer`. If the pickle buffer has been released, " -"raise :exc:`ValueError`." +msgid "The returned pointer is valid as long as *picklebuf* is alive and has not been released. The caller must not modify or free the returned :c:type:`Py_buffer`. If the pickle buffer has been released, raise :exc:`ValueError`." msgstr "" -#: ../../c-api/picklebuffer.rst:49 -msgid "" -"On success, return a pointer to the buffer view. On failure, set an " -"exception and return ``NULL``." +msgid "On success, return a pointer to the buffer view. On failure, set an exception and return ``NULL``." msgstr "" -#: ../../c-api/picklebuffer.rst:55 msgid "Release the underlying buffer held by the pickle buffer." msgstr "" -#: ../../c-api/picklebuffer.rst:57 -msgid "" -"Return ``0`` on success. On failure, set an exception and return ``-1``." +msgid "Return ``0`` on success. On failure, set an exception and return ``-1``." msgstr "" -#: ../../c-api/picklebuffer.rst:59 msgid "Analogous to calling :meth:`pickle.PickleBuffer.release` in Python." msgstr "" -#: ../../c-api/picklebuffer.rst:5 msgid "object" msgstr "" -#: ../../c-api/picklebuffer.rst:5 msgid "PickleBuffer" msgstr "" diff --git a/c-api/profiling.po b/c-api/profiling.po index 4ff27be3..bbce616b 100644 --- a/c-api/profiling.po +++ b/c-api/profiling.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2026-07-25 12:59+0330\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: none\n" @@ -19,291 +19,140 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../c-api/profiling.rst:6 msgid "Profiling and tracing" msgstr "" -#: ../../c-api/profiling.rst:8 -msgid "" -"The Python interpreter provides some low-level support for attaching " -"profiling and execution tracing facilities. These are used for profiling, " -"debugging, and coverage analysis tools." +msgid "The Python interpreter provides some low-level support for attaching profiling and execution tracing facilities. These are used for profiling, debugging, and coverage analysis tools." msgstr "" -#: ../../c-api/profiling.rst:12 -msgid "" -"This C interface allows the profiling or tracing code to avoid the overhead " -"of calling through Python-level callable objects, making a direct C function " -"call instead. The essential attributes of the facility have not changed; " -"the interface allows trace functions to be installed per-thread, and the " -"basic events reported to the trace function are the same as had been " -"reported to the Python-level trace functions in previous versions." +msgid "This C interface allows the profiling or tracing code to avoid the overhead of calling through Python-level callable objects, making a direct C function call instead. The essential attributes of the facility have not changed; the interface allows trace functions to be installed per-thread, and the basic events reported to the trace function are the same as had been reported to the Python-level trace functions in previous versions." msgstr "" -#: ../../c-api/profiling.rst:22 -msgid "" -"The type of the trace function registered using :c:func:`PyEval_SetProfile` " -"and :c:func:`PyEval_SetTrace`. The first parameter is the object passed to " -"the registration function as *obj*, *frame* is the frame object to which the " -"event pertains, *what* is one of the " -"constants :c:data:`PyTrace_CALL`, :c:data:`PyTrace_EXCEPTION`, :c:data:`PyTrace_LINE`, :c:data:`PyTrace_RETURN`, :c:data:`PyTrace_C_CALL`, :c:data:`PyTrace_C_EXCEPTION`, :c:data:`PyTrace_C_RETURN`, " -"or :c:data:`PyTrace_OPCODE`, and *arg* depends on the value of *what*:" +msgid "The type of the trace function registered using :c:func:`PyEval_SetProfile` and :c:func:`PyEval_SetTrace`. The first parameter is the object passed to the registration function as *obj*, *frame* is the frame object to which the event pertains, *what* is one of the constants :c:data:`PyTrace_CALL`, :c:data:`PyTrace_EXCEPTION`, :c:data:`PyTrace_LINE`, :c:data:`PyTrace_RETURN`, :c:data:`PyTrace_C_CALL`, :c:data:`PyTrace_C_EXCEPTION`, :c:data:`PyTrace_C_RETURN`, or :c:data:`PyTrace_OPCODE`, and *arg* depends on the value of *what*:" msgstr "" -#: ../../c-api/profiling.rst:31 msgid "Value of *what*" msgstr "" -#: ../../c-api/profiling.rst:31 msgid "Meaning of *arg*" msgstr "" -#: ../../c-api/profiling.rst:33 msgid ":c:data:`PyTrace_CALL`" msgstr "" -#: ../../c-api/profiling.rst:33 ../../c-api/profiling.rst:38 -#: ../../c-api/profiling.rst:49 msgid "Always :c:data:`Py_None`." msgstr "" -#: ../../c-api/profiling.rst:35 msgid ":c:data:`PyTrace_EXCEPTION`" msgstr "" -#: ../../c-api/profiling.rst:35 msgid "Exception information as returned by :func:`sys.exc_info`." msgstr "" -#: ../../c-api/profiling.rst:38 msgid ":c:data:`PyTrace_LINE`" msgstr "" -#: ../../c-api/profiling.rst:40 msgid ":c:data:`PyTrace_RETURN`" msgstr "" -#: ../../c-api/profiling.rst:40 -msgid "" -"Value being returned to the caller, or ``NULL`` if caused by an exception." +msgid "Value being returned to the caller, or ``NULL`` if caused by an exception." msgstr "" -#: ../../c-api/profiling.rst:43 msgid ":c:data:`PyTrace_C_CALL`" msgstr "" -#: ../../c-api/profiling.rst:43 ../../c-api/profiling.rst:45 -#: ../../c-api/profiling.rst:47 msgid "Function object being called." msgstr "" -#: ../../c-api/profiling.rst:45 msgid ":c:data:`PyTrace_C_EXCEPTION`" msgstr "" -#: ../../c-api/profiling.rst:47 msgid ":c:data:`PyTrace_C_RETURN`" msgstr "" -#: ../../c-api/profiling.rst:49 msgid ":c:data:`PyTrace_OPCODE`" msgstr "" -#: ../../c-api/profiling.rst:54 -msgid "" -"The value of the *what* parameter to a :c:type:`Py_tracefunc` function when " -"a new call to a function or method is being reported, or a new entry into a " -"generator. Note that the creation of the iterator for a generator function " -"is not reported as there is no control transfer to the Python bytecode in " -"the corresponding frame." +msgid "The value of the *what* parameter to a :c:type:`Py_tracefunc` function when a new call to a function or method is being reported, or a new entry into a generator. Note that the creation of the iterator for a generator function is not reported as there is no control transfer to the Python bytecode in the corresponding frame." msgstr "" -#: ../../c-api/profiling.rst:63 -msgid "" -"The value of the *what* parameter to a :c:type:`Py_tracefunc` function when " -"an exception has been raised. The callback function is called with this " -"value for *what* when after any bytecode is processed after which the " -"exception becomes set within the frame being executed. The effect of this " -"is that as exception propagation causes the Python stack to unwind, the " -"callback is called upon return to each frame as the exception propagates. " -"Only trace functions receive these events; they are not needed by the " -"profiler." +msgid "The value of the *what* parameter to a :c:type:`Py_tracefunc` function when an exception has been raised. The callback function is called with this value for *what* when after any bytecode is processed after which the exception becomes set within the frame being executed. The effect of this is that as exception propagation causes the Python stack to unwind, the callback is called upon return to each frame as the exception propagates. Only trace functions receive these events; they are not needed by the profiler." msgstr "" -#: ../../c-api/profiling.rst:74 -msgid "" -"The value passed as the *what* parameter to a :c:type:`Py_tracefunc` " -"function (but not a profiling function) when a line-number event is being " -"reported. It may be disabled for a frame by " -"setting :attr:`~frame.f_trace_lines` to *0* on that frame." +msgid "The value passed as the *what* parameter to a :c:type:`Py_tracefunc` function (but not a profiling function) when a line-number event is being reported. It may be disabled for a frame by setting :attr:`~frame.f_trace_lines` to *0* on that frame." msgstr "" -#: ../../c-api/profiling.rst:82 -msgid "" -"The value for the *what* parameter to :c:type:`Py_tracefunc` functions when " -"a call is about to return." +msgid "The value for the *what* parameter to :c:type:`Py_tracefunc` functions when a call is about to return." msgstr "" -#: ../../c-api/profiling.rst:88 -msgid "" -"The value for the *what* parameter to :c:type:`Py_tracefunc` functions when " -"a C function is about to be called." +msgid "The value for the *what* parameter to :c:type:`Py_tracefunc` functions when a C function is about to be called." msgstr "" -#: ../../c-api/profiling.rst:94 -msgid "" -"The value for the *what* parameter to :c:type:`Py_tracefunc` functions when " -"a C function has raised an exception." +msgid "The value for the *what* parameter to :c:type:`Py_tracefunc` functions when a C function has raised an exception." msgstr "" -#: ../../c-api/profiling.rst:100 -msgid "" -"The value for the *what* parameter to :c:type:`Py_tracefunc` functions when " -"a C function has returned." +msgid "The value for the *what* parameter to :c:type:`Py_tracefunc` functions when a C function has returned." msgstr "" -#: ../../c-api/profiling.rst:106 -msgid "" -"The value for the *what* parameter to :c:type:`Py_tracefunc` functions (but " -"not profiling functions) when a new opcode is about to be executed. This " -"event is not emitted by default: it must be explicitly requested by " -"setting :attr:`~frame.f_trace_opcodes` to *1* on the frame." +msgid "The value for the *what* parameter to :c:type:`Py_tracefunc` functions (but not profiling functions) when a new opcode is about to be executed. This event is not emitted by default: it must be explicitly requested by setting :attr:`~frame.f_trace_opcodes` to *1* on the frame." msgstr "" -#: ../../c-api/profiling.rst:114 -msgid "" -"Set the profiler function to *func*. The *obj* parameter is passed to the " -"function as its first parameter, and may be any Python object, or ``NULL``. " -"If the profile function needs to maintain state, using a different value for " -"*obj* for each thread provides a convenient and thread-safe place to store " -"it. The profile function is called for all monitored events " -"except :c:data:`PyTrace_LINE` :c:data:`PyTrace_OPCODE` " -"and :c:data:`PyTrace_EXCEPTION`." +msgid "Set the profiler function to *func*. The *obj* parameter is passed to the function as its first parameter, and may be any Python object, or ``NULL``. If the profile function needs to maintain state, using a different value for *obj* for each thread provides a convenient and thread-safe place to store it. The profile function is called for all monitored events except :c:data:`PyTrace_LINE` :c:data:`PyTrace_OPCODE` and :c:data:`PyTrace_EXCEPTION`." msgstr "" -#: ../../c-api/profiling.rst:121 msgid "See also the :func:`sys.setprofile` function." msgstr "" -#: ../../c-api/profiling.rst:123 ../../c-api/profiling.rst:131 -#: ../../c-api/profiling.rst:150 ../../c-api/profiling.rst:158 msgid "The caller must have an :term:`attached thread state`." msgstr "" -#: ../../c-api/profiling.rst:128 -msgid "" -"Like :c:func:`PyEval_SetProfile` but sets the profile function in all " -"running threads belonging to the current interpreter instead of the setting " -"it only on the current thread." +msgid "Like :c:func:`PyEval_SetProfile` but sets the profile function in all running threads belonging to the current interpreter instead of the setting it only on the current thread." msgstr "" -#: ../../c-api/profiling.rst:133 -msgid "" -"As :c:func:`PyEval_SetProfile`, this function ignores any exceptions raised " -"while setting the profile functions in all threads." +msgid "As :c:func:`PyEval_SetProfile`, this function ignores any exceptions raised while setting the profile functions in all threads." msgstr "" -#: ../../c-api/profiling.rst:141 -msgid "" -"Set the tracing function to *func*. This is similar " -"to :c:func:`PyEval_SetProfile`, except the tracing function does receive " -"line-number events and per-opcode events, but does not receive any event " -"related to C function objects being called. Any trace function registered " -"using :c:func:`PyEval_SetTrace` will not " -"receive :c:data:`PyTrace_C_CALL`, :c:data:`PyTrace_C_EXCEPTION` " -"or :c:data:`PyTrace_C_RETURN` as a value for the *what* parameter." +msgid "Set the tracing function to *func*. This is similar to :c:func:`PyEval_SetProfile`, except the tracing function does receive line-number events and per-opcode events, but does not receive any event related to C function objects being called. Any trace function registered using :c:func:`PyEval_SetTrace` will not receive :c:data:`PyTrace_C_CALL`, :c:data:`PyTrace_C_EXCEPTION` or :c:data:`PyTrace_C_RETURN` as a value for the *what* parameter." msgstr "" -#: ../../c-api/profiling.rst:148 msgid "See also the :func:`sys.settrace` function." msgstr "" -#: ../../c-api/profiling.rst:155 -msgid "" -"Like :c:func:`PyEval_SetTrace` but sets the tracing function in all running " -"threads belonging to the current interpreter instead of the setting it only " -"on the current thread." +msgid "Like :c:func:`PyEval_SetTrace` but sets the tracing function in all running threads belonging to the current interpreter instead of the setting it only on the current thread." msgstr "" -#: ../../c-api/profiling.rst:160 -msgid "" -"As :c:func:`PyEval_SetTrace`, this function ignores any exceptions raised " -"while setting the trace functions in all threads." +msgid "As :c:func:`PyEval_SetTrace`, this function ignores any exceptions raised while setting the trace functions in all threads." msgstr "" -#: ../../c-api/profiling.rst:167 msgid "Reference tracing" msgstr "" -#: ../../c-api/profiling.rst:174 -msgid "" -"The type of the trace function registered " -"using :c:func:`PyRefTracer_SetTracer`. The first parameter is a Python " -"object that has been just created (when **event** is set " -"to :c:data:`PyRefTracer_CREATE`) or about to be destroyed (when **event** is " -"set to :c:data:`PyRefTracer_DESTROY`). The **data** argument is the opaque " -"pointer that was provided when :c:func:`PyRefTracer_SetTracer` was called." +msgid "The type of the trace function registered using :c:func:`PyRefTracer_SetTracer`. The first parameter is a Python object that has been just created (when **event** is set to :c:data:`PyRefTracer_CREATE`) or about to be destroyed (when **event** is set to :c:data:`PyRefTracer_DESTROY`). The **data** argument is the opaque pointer that was provided when :c:func:`PyRefTracer_SetTracer` was called." msgstr "" -#: ../../c-api/profiling.rst:180 -msgid "" -"If a new tracing function is registered replacing the current one, a call to " -"the trace function will be made with the object set to **NULL** and " -"**event** set to :c:data:`PyRefTracer_TRACKER_REMOVED`. This will happen " -"just before the new function is registered." +msgid "If a new tracing function is registered replacing the current one, a call to the trace function will be made with the object set to **NULL** and **event** set to :c:data:`PyRefTracer_TRACKER_REMOVED`. This will happen just before the new function is registered." msgstr "" -#: ../../c-api/profiling.rst:190 -msgid "" -"The value for the *event* parameter to :c:type:`PyRefTracer` functions when " -"a Python object has been created." +msgid "The value for the *event* parameter to :c:type:`PyRefTracer` functions when a Python object has been created." msgstr "" -#: ../../c-api/profiling.rst:196 -msgid "" -"The value for the *event* parameter to :c:type:`PyRefTracer` functions when " -"a Python object has been destroyed." +msgid "The value for the *event* parameter to :c:type:`PyRefTracer` functions when a Python object has been destroyed." msgstr "" -#: ../../c-api/profiling.rst:202 -msgid "" -"The value for the *event* parameter to :c:type:`PyRefTracer` functions when " -"the current tracer is about to be replaced by a new one." +msgid "The value for the *event* parameter to :c:type:`PyRefTracer` functions when the current tracer is about to be replaced by a new one." msgstr "" -#: ../../c-api/profiling.rst:210 -msgid "" -"Register a reference tracer function. The function will be called when a new " -"Python object has been created or when an object is going to be destroyed. " -"If **data** is provided it must be an opaque pointer that will be provided " -"when the tracer function is called. Return ``0`` on success. Set an " -"exception and return ``-1`` on error." +msgid "Register a reference tracer function. The function will be called when a new Python object has been created or when an object is going to be destroyed. If **data** is provided it must be an opaque pointer that will be provided when the tracer function is called. Return ``0`` on success. Set an exception and return ``-1`` on error." msgstr "" -#: ../../c-api/profiling.rst:216 -msgid "" -"Note that tracer functions **must not** create Python objects inside or " -"otherwise the call will be re-entrant. The tracer also **must not** clear " -"any existing exception or set an exception. A :term:`thread state` will be " -"active every time the tracer function is called." +msgid "Note that tracer functions **must not** create Python objects inside or otherwise the call will be re-entrant. The tracer also **must not** clear any existing exception or set an exception. A :term:`thread state` will be active every time the tracer function is called." msgstr "" -#: ../../c-api/profiling.rst:221 ../../c-api/profiling.rst:237 -msgid "" -"There must be an :term:`attached thread state` when calling this function." +msgid "There must be an :term:`attached thread state` when calling this function." msgstr "" -#: ../../c-api/profiling.rst:223 -msgid "" -"If another tracer function was already registered, the old function will be " -"called with **event** set to :c:data:`PyRefTracer_TRACKER_REMOVED` just " -"before the new function is registered." +msgid "If another tracer function was already registered, the old function will be called with **event** set to :c:data:`PyRefTracer_TRACKER_REMOVED` just before the new function is registered." msgstr "" -#: ../../c-api/profiling.rst:232 -msgid "" -"Get the registered reference tracer function and the value of the opaque " -"data pointer that was registered when :c:func:`PyRefTracer_SetTracer` was " -"called. If no tracer was registered this function will return NULL and will " -"set the **data** pointer to NULL." +msgid "Get the registered reference tracer function and the value of the opaque data pointer that was registered when :c:func:`PyRefTracer_SetTracer` was called. If no tracer was registered this function will return NULL and will set the **data** pointer to NULL." msgstr "" diff --git a/c-api/refcounting.po b/c-api/refcounting.po index 4959d407..b463f520 100644 --- a/c-api/refcounting.po +++ b/c-api/refcounting.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:50+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,289 +23,156 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../c-api/refcounting.rst:8 msgid "Reference Counting" msgstr "" -#: ../../c-api/refcounting.rst:10 -msgid "" -"The functions and macros in this section are used for managing reference " -"counts of Python objects." +msgid "The functions and macros in this section are used for managing reference counts of Python objects." msgstr "" -#: ../../c-api/refcounting.rst:16 msgid "Get the reference count of the Python object *o*." msgstr "" -#: ../../c-api/refcounting.rst:18 -msgid "" -"Note that the returned value may not actually reflect how many references to " -"the object are actually held. For example, some objects " -"are :term:`immortal` and have a very high refcount that does not reflect the " -"actual number of references. Consequently, do not rely on the returned " -"value to be accurate, other than a value of 0 or 1." +msgid "Note that the returned value may not actually reflect how many references to the object are actually held. For example, some objects are :term:`immortal` and have a very high refcount that does not reflect the actual number of references. Consequently, do not rely on the returned value to be accurate, other than a value of 0 or 1." msgstr "" -#: ../../c-api/refcounting.rst:24 -msgid "" -"Use the :c:func:`Py_SET_REFCNT()` function to set an object reference count." +msgid "Use the :c:func:`Py_SET_REFCNT()` function to set an object reference count." msgstr "" -#: ../../c-api/refcounting.rst:28 -msgid "" -"On :term:`free-threaded builds ` of Python, returning 1 " -"isn't sufficient to determine if it's safe to treat *o* as having no access " -"by other threads. Use :c:func:`PyUnstable_Object_IsUniquelyReferenced` for " -"that instead." +msgid "On :term:`free-threaded builds ` of Python, returning 1 isn't sufficient to determine if it's safe to treat *o* as having no access by other threads. Use :c:func:`PyUnstable_Object_IsUniquelyReferenced` for that instead." msgstr "" -#: ../../c-api/refcounting.rst:33 -msgid "" -"See also the " -"function :c:func:`PyUnstable_Object_IsUniqueReferencedTemporary()`." +msgid "See also the function :c:func:`PyUnstable_Object_IsUniqueReferencedTemporary()`." msgstr "" -#: ../../c-api/refcounting.rst:35 msgid ":c:func:`Py_REFCNT()` is changed to the inline static function." msgstr "" -#: ../../c-api/refcounting.rst:38 msgid "The parameter type is no longer :c:expr:`const PyObject*`." msgstr "" -#: ../../c-api/refcounting.rst:44 msgid "Set the object *o* reference counter to *refcnt*." msgstr "" -#: ../../c-api/refcounting.rst:46 -msgid "" -"On :ref:`Python build with Free Threading `, if " -"*refcnt* is larger than ``UINT32_MAX``, the object is made :term:`immortal`." +msgid "On :ref:`Python build with Free Threading `, if *refcnt* is larger than ``UINT32_MAX``, the object is made :term:`immortal`." msgstr "" -#: ../../c-api/refcounting.rst:49 ../../c-api/refcounting.rst:62 -#: ../../c-api/refcounting.rst:128 msgid "This function has no effect on :term:`immortal` objects." msgstr "" -#: ../../c-api/refcounting.rst:53 ../../c-api/refcounting.rst:77 -#: ../../c-api/refcounting.rst:156 msgid "Immortal objects are not modified." msgstr "" -#: ../../c-api/refcounting.rst:59 -msgid "" -"Indicate taking a new :term:`strong reference` to object *o*, indicating it " -"is in use and should not be destroyed." +msgid "Indicate taking a new :term:`strong reference` to object *o*, indicating it is in use and should not be destroyed." msgstr "" -#: ../../c-api/refcounting.rst:64 -msgid "" -"This function is usually used to convert a :term:`borrowed reference` to " -"a :term:`strong reference` in-place. The :c:func:`Py_NewRef` function can be " -"used to create a new :term:`strong reference`." +msgid "This function is usually used to convert a :term:`borrowed reference` to a :term:`strong reference` in-place. The :c:func:`Py_NewRef` function can be used to create a new :term:`strong reference`." msgstr "" -#: ../../c-api/refcounting.rst:68 msgid "When done using the object, release is by calling :c:func:`Py_DECREF`." msgstr "" -#: ../../c-api/refcounting.rst:70 -msgid "" -"The object must not be ``NULL``; if you aren't sure that it isn't ``NULL``, " -"use :c:func:`Py_XINCREF`." +msgid "The object must not be ``NULL``; if you aren't sure that it isn't ``NULL``, use :c:func:`Py_XINCREF`." msgstr "" -#: ../../c-api/refcounting.rst:73 -msgid "" -"Do not expect this function to actually modify *o* in any way. For at " -"least :pep:`some objects <0683>`, this function has no effect." +msgid "Do not expect this function to actually modify *o* in any way. For at least :pep:`some objects <0683>`, this function has no effect." msgstr "" -#: ../../c-api/refcounting.rst:83 -msgid "" -"Similar to :c:func:`Py_INCREF`, but the object *o* can be ``NULL``, in which " -"case this has no effect." +msgid "Similar to :c:func:`Py_INCREF`, but the object *o* can be ``NULL``, in which case this has no effect." msgstr "" -#: ../../c-api/refcounting.rst:86 msgid "See also :c:func:`Py_XNewRef`." msgstr "" -#: ../../c-api/refcounting.rst:91 -msgid "" -"Create a new :term:`strong reference` to an object: call :c:func:`Py_INCREF` " -"on *o* and return the object *o*." +msgid "Create a new :term:`strong reference` to an object: call :c:func:`Py_INCREF` on *o* and return the object *o*." msgstr "" -#: ../../c-api/refcounting.rst:94 -msgid "" -"When the :term:`strong reference` is no longer needed, :c:func:`Py_DECREF` " -"should be called on it to release the reference." +msgid "When the :term:`strong reference` is no longer needed, :c:func:`Py_DECREF` should be called on it to release the reference." msgstr "" -#: ../../c-api/refcounting.rst:97 -msgid "" -"The object *o* must not be ``NULL``; use :c:func:`Py_XNewRef` if *o* can be " -"``NULL``." +msgid "The object *o* must not be ``NULL``; use :c:func:`Py_XNewRef` if *o* can be ``NULL``." msgstr "" -#: ../../c-api/refcounting.rst:100 msgid "For example::" msgstr "" -#: ../../c-api/refcounting.rst:102 msgid "" "Py_INCREF(obj);\n" "self->attr = obj;" msgstr "" -#: ../../c-api/refcounting.rst:105 msgid "can be written as::" msgstr "" -#: ../../c-api/refcounting.rst:107 msgid "self->attr = Py_NewRef(obj);" msgstr "" -#: ../../c-api/refcounting.rst:109 msgid "See also :c:func:`Py_INCREF`." msgstr "" -#: ../../c-api/refcounting.rst:116 msgid "Similar to :c:func:`Py_NewRef`, but the object *o* can be NULL." msgstr "" -#: ../../c-api/refcounting.rst:118 msgid "If the object *o* is ``NULL``, the function just returns ``NULL``." msgstr "" -#: ../../c-api/refcounting.rst:125 -msgid "" -"Release a :term:`strong reference` to object *o*, indicating the reference " -"is no longer used." +msgid "Release a :term:`strong reference` to object *o*, indicating the reference is no longer used." msgstr "" -#: ../../c-api/refcounting.rst:130 -msgid "" -"Once the last :term:`strong reference` is released (i.e. the object's " -"reference count reaches 0), the object's type's deallocation function (which " -"must not be ``NULL``) is invoked." +msgid "Once the last :term:`strong reference` is released (i.e. the object's reference count reaches 0), the object's type's deallocation function (which must not be ``NULL``) is invoked." msgstr "" -#: ../../c-api/refcounting.rst:135 -msgid "" -"This function is usually used to delete a :term:`strong reference` before " -"exiting its scope." +msgid "This function is usually used to delete a :term:`strong reference` before exiting its scope." msgstr "" -#: ../../c-api/refcounting.rst:138 -msgid "" -"The object must not be ``NULL``; if you aren't sure that it isn't ``NULL``, " -"use :c:func:`Py_XDECREF`." +msgid "The object must not be ``NULL``; if you aren't sure that it isn't ``NULL``, use :c:func:`Py_XDECREF`." msgstr "" -#: ../../c-api/refcounting.rst:141 -msgid "" -"Do not expect this function to actually modify *o* in any way. For at " -"least :pep:`some objects <683>`, this function has no effect." +msgid "Do not expect this function to actually modify *o* in any way. For at least :pep:`some objects <683>`, this function has no effect." msgstr "" -#: ../../c-api/refcounting.rst:147 -msgid "" -"The deallocation function can cause arbitrary Python code to be invoked " -"(e.g. when a class instance with a :meth:`~object.__del__` method is " -"deallocated). While exceptions in such code are not propagated, the " -"executed code has free access to all Python global variables. This means " -"that any object that is reachable from a global variable should be in a " -"consistent state before :c:func:`Py_DECREF` is invoked. For example, code " -"to delete an object from a list should copy a reference to the deleted " -"object in a temporary variable, update the list data structure, and then " -"call :c:func:`Py_DECREF` for the temporary variable." -msgstr "" - -#: ../../c-api/refcounting.rst:162 -msgid "" -"Similar to :c:func:`Py_DECREF`, but the object *o* can be ``NULL``, in which " -"case this has no effect. The same warning from :c:func:`Py_DECREF` applies " -"here as well." +msgid "The deallocation function can cause arbitrary Python code to be invoked (e.g. when a class instance with a :meth:`~object.__del__` method is deallocated). While exceptions in such code are not propagated, the executed code has free access to all Python global variables. This means that any object that is reachable from a global variable should be in a consistent state before :c:func:`Py_DECREF` is invoked. For example, code to delete an object from a list should copy a reference to the deleted object in a temporary variable, update the list data structure, and then call :c:func:`Py_DECREF` for the temporary variable." msgstr "" -#: ../../c-api/refcounting.rst:169 -msgid "" -"Release a :term:`strong reference` for object *o*. The object may be " -"``NULL``, in which case the macro has no effect; otherwise the effect is the " -"same as for :c:func:`Py_DECREF`, except that the argument is also set to " -"``NULL``. The warning for :c:func:`Py_DECREF` does not apply with respect " -"to the object passed because the macro carefully uses a temporary variable " -"and sets the argument to ``NULL`` before releasing the reference." +msgid "Similar to :c:func:`Py_DECREF`, but the object *o* can be ``NULL``, in which case this has no effect. The same warning from :c:func:`Py_DECREF` applies here as well." msgstr "" -#: ../../c-api/refcounting.rst:177 -msgid "" -"It is a good idea to use this macro whenever releasing a reference to an " -"object that might be traversed during garbage collection." +msgid "Release a :term:`strong reference` for object *o*. The object may be ``NULL``, in which case the macro has no effect; otherwise the effect is the same as for :c:func:`Py_DECREF`, except that the argument is also set to ``NULL``. The warning for :c:func:`Py_DECREF` does not apply with respect to the object passed because the macro carefully uses a temporary variable and sets the argument to ``NULL`` before releasing the reference." msgstr "" -#: ../../c-api/refcounting.rst:180 -msgid "" -"The macro argument is now only evaluated once. If the argument has side " -"effects, these are no longer duplicated." +msgid "It is a good idea to use this macro whenever releasing a reference to an object that might be traversed during garbage collection." msgstr "" -#: ../../c-api/refcounting.rst:187 -msgid "" -"Indicate taking a new :term:`strong reference` to object *o*. A function " -"version of :c:func:`Py_XINCREF`. It can be used for runtime dynamic " -"embedding of Python." +msgid "The macro argument is now only evaluated once. If the argument has side effects, these are no longer duplicated." msgstr "" -#: ../../c-api/refcounting.rst:194 -msgid "" -"Release a :term:`strong reference` to object *o*. A function version " -"of :c:func:`Py_XDECREF`. It can be used for runtime dynamic embedding of " -"Python." +msgid "Indicate taking a new :term:`strong reference` to object *o*. A function version of :c:func:`Py_XINCREF`. It can be used for runtime dynamic embedding of Python." msgstr "" -#: ../../c-api/refcounting.rst:201 -msgid "" -"Macro safely releasing a :term:`strong reference` to object *dst* and " -"setting *dst* to *src*." +msgid "Release a :term:`strong reference` to object *o*. A function version of :c:func:`Py_XDECREF`. It can be used for runtime dynamic embedding of Python." +msgstr "" + +msgid "Macro safely releasing a :term:`strong reference` to object *dst* and setting *dst* to *src*." msgstr "" -#: ../../c-api/refcounting.rst:204 msgid "As in case of :c:func:`Py_CLEAR`, \"the obvious\" code can be deadly::" msgstr "" -#: ../../c-api/refcounting.rst:206 msgid "" "Py_DECREF(dst);\n" "dst = src;" msgstr "" -#: ../../c-api/refcounting.rst:209 msgid "The safe way is::" msgstr "" -#: ../../c-api/refcounting.rst:211 msgid "Py_SETREF(dst, src);" msgstr "" -#: ../../c-api/refcounting.rst:213 -msgid "" -"That arranges to set *dst* to *src* *before* releasing the reference to the " -"old value of *dst*, so that any code triggered as a side-effect of *dst* " -"getting torn down no longer believes *dst* points to a valid object." +msgid "That arranges to set *dst* to *src* *before* releasing the reference to the old value of *dst*, so that any code triggered as a side-effect of *dst* getting torn down no longer believes *dst* points to a valid object." msgstr "" -#: ../../c-api/refcounting.rst:220 ../../c-api/refcounting.rst:232 -msgid "" -"The macro arguments are now only evaluated once. If an argument has side " -"effects, these are no longer duplicated." +msgid "The macro arguments are now only evaluated once. If an argument has side effects, these are no longer duplicated." msgstr "" -#: ../../c-api/refcounting.rst:227 -msgid "" -"Variant of :c:macro:`Py_SETREF` macro that uses :c:func:`Py_XDECREF` instead " -"of :c:func:`Py_DECREF`." +msgid "Variant of :c:macro:`Py_SETREF` macro that uses :c:func:`Py_XDECREF` instead of :c:func:`Py_DECREF`." msgstr "" diff --git a/c-api/reflection.po b/c-api/reflection.po index 3826d427..41efd147 100644 --- a/c-api/reflection.po +++ b/c-api/reflection.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:50+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,111 +24,53 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../c-api/reflection.rst:6 msgid "Reflection" msgstr "" -#: ../../c-api/reflection.rst:12 msgid "Use :c:func:`PyEval_GetFrameBuiltins` instead." msgstr "" -#: ../../c-api/reflection.rst:14 ../../c-api/reflection.rst:66 -msgid "" -"Return a dictionary of the builtins in the current execution frame, or the " -"interpreter of the thread state if no frame is currently executing." +msgid "Return a dictionary of the builtins in the current execution frame, or the interpreter of the thread state if no frame is currently executing." msgstr "" -#: ../../c-api/reflection.rst:22 -msgid "" -"Use either :c:func:`PyEval_GetFrameLocals` to obtain the same behaviour as " -"calling :func:`locals` in Python code, or else " -"call :c:func:`PyFrame_GetLocals` on the result of :c:func:`PyEval_GetFrame` " -"to access the :attr:`~frame.f_locals` attribute of the currently executing " -"frame." +msgid "Use either :c:func:`PyEval_GetFrameLocals` to obtain the same behaviour as calling :func:`locals` in Python code, or else call :c:func:`PyFrame_GetLocals` on the result of :c:func:`PyEval_GetFrame` to access the :attr:`~frame.f_locals` attribute of the currently executing frame." msgstr "" -#: ../../c-api/reflection.rst:27 -msgid "" -"Return a mapping providing access to the local variables in the current " -"execution frame, or ``NULL`` if no frame is currently executing." +msgid "Return a mapping providing access to the local variables in the current execution frame, or ``NULL`` if no frame is currently executing." msgstr "" -#: ../../c-api/reflection.rst:30 -msgid "" -"Refer to :func:`locals` for details of the mapping returned at different " -"scopes." +msgid "Refer to :func:`locals` for details of the mapping returned at different scopes." msgstr "" -#: ../../c-api/reflection.rst:32 -msgid "" -"As this function returns a :term:`borrowed reference`, the dictionary " -"returned for :term:`optimized scopes ` is cached on the " -"frame object and will remain alive as long as the frame object does. " -"Unlike :c:func:`PyEval_GetFrameLocals` and :func:`locals`, subsequent calls " -"to this function in the same frame will update the contents of the cached " -"dictionary to reflect changes in the state of the local variables rather " -"than returning a new snapshot." +msgid "As this function returns a :term:`borrowed reference`, the dictionary returned for :term:`optimized scopes ` is cached on the frame object and will remain alive as long as the frame object does. Unlike :c:func:`PyEval_GetFrameLocals` and :func:`locals`, subsequent calls to this function in the same frame will update the contents of the cached dictionary to reflect changes in the state of the local variables rather than returning a new snapshot." msgstr "" -#: ../../c-api/reflection.rst:39 -msgid "" -"As part of :pep:`667`, :c:func:`PyFrame_GetLocals`, :func:`locals`, " -"and :attr:`FrameType.f_locals ` no longer make use of the " -"shared cache dictionary. Refer to the :ref:`What's New entry ` for additional details." +msgid "As part of :pep:`667`, :c:func:`PyFrame_GetLocals`, :func:`locals`, and :attr:`FrameType.f_locals ` no longer make use of the shared cache dictionary. Refer to the :ref:`What's New entry ` for additional details." msgstr "" -#: ../../c-api/reflection.rst:50 msgid "Use :c:func:`PyEval_GetFrameGlobals` instead." msgstr "" -#: ../../c-api/reflection.rst:52 -msgid "" -"Return a dictionary of the global variables in the current execution frame, " -"or ``NULL`` if no frame is currently executing." +msgid "Return a dictionary of the global variables in the current execution frame, or ``NULL`` if no frame is currently executing." msgstr "" -#: ../../c-api/reflection.rst:58 -msgid "" -"Return the :term:`attached thread state`'s frame, which is ``NULL`` if no " -"frame is currently executing." +msgid "Return the :term:`attached thread state`'s frame, which is ``NULL`` if no frame is currently executing." msgstr "" -#: ../../c-api/reflection.rst:61 msgid "See also :c:func:`PyThreadState_GetFrame`." msgstr "" -#: ../../c-api/reflection.rst:74 -msgid "" -"Return a dictionary of the local variables in the current execution frame, " -"or ``NULL`` if no frame is currently executing. Equivalent to " -"calling :func:`locals` in Python code." +msgid "Return a dictionary of the local variables in the current execution frame, or ``NULL`` if no frame is currently executing. Equivalent to calling :func:`locals` in Python code." msgstr "" -#: ../../c-api/reflection.rst:78 -msgid "" -"To access :attr:`~frame.f_locals` on the current frame without making an " -"independent snapshot in :term:`optimized scopes `, " -"call :c:func:`PyFrame_GetLocals` on the result of :c:func:`PyEval_GetFrame`." +msgid "To access :attr:`~frame.f_locals` on the current frame without making an independent snapshot in :term:`optimized scopes `, call :c:func:`PyFrame_GetLocals` on the result of :c:func:`PyEval_GetFrame`." msgstr "" -#: ../../c-api/reflection.rst:87 -msgid "" -"Return a dictionary of the global variables in the current execution frame, " -"or ``NULL`` if no frame is currently executing. Equivalent to " -"calling :func:`globals` in Python code." +msgid "Return a dictionary of the global variables in the current execution frame, or ``NULL`` if no frame is currently executing. Equivalent to calling :func:`globals` in Python code." msgstr "" -#: ../../c-api/reflection.rst:96 -msgid "" -"Return the name of *func* if it is a function, class or instance object, " -"else the name of *func*\\s type." +msgid "Return the name of *func* if it is a function, class or instance object, else the name of *func*\\s type." msgstr "" -#: ../../c-api/reflection.rst:102 -msgid "" -"Return a description string, depending on the type of *func*. Return values " -"include \"()\" for functions and methods, \" constructor\", \" instance\", " -"and \" object\". Concatenated with the result " -"of :c:func:`PyEval_GetFuncName`, the result will be a description of *func*." +msgid "Return a description string, depending on the type of *func*. Return values include \"()\" for functions and methods, \" constructor\", \" instance\", and \" object\". Concatenated with the result of :c:func:`PyEval_GetFuncName`, the result will be a description of *func*." msgstr "" diff --git a/c-api/sequence.po b/c-api/sequence.po index 57e0f755..5c179220 100644 --- a/c-api/sequence.po +++ b/c-api/sequence.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:50+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -22,205 +22,98 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../c-api/sequence.rst:6 msgid "Sequence Protocol" msgstr "" -#: ../../c-api/sequence.rst:11 -msgid "" -"Return ``1`` if the object provides the sequence protocol, and ``0`` " -"otherwise. Note that it returns ``1`` for Python classes with " -"a :meth:`~object.__getitem__` method, unless they are :class:`dict` " -"subclasses, since in general it is impossible to determine what type of keys " -"the class supports. This function always succeeds." +msgid "Return ``1`` if the object provides the sequence protocol, and ``0`` otherwise. Note that it returns ``1`` for Python classes with a :meth:`~object.__getitem__` method, unless they are :class:`dict` subclasses, since in general it is impossible to determine what type of keys the class supports. This function always succeeds." msgstr "" -#: ../../c-api/sequence.rst:23 -msgid "" -"Returns the number of objects in sequence *o* on success, and ``-1`` on " -"failure. This is equivalent to the Python expression ``len(o)``." +msgid "Returns the number of objects in sequence *o* on success, and ``-1`` on failure. This is equivalent to the Python expression ``len(o)``." msgstr "" -#: ../../c-api/sequence.rst:29 -msgid "" -"Return the concatenation of *o1* and *o2* on success, and ``NULL`` on " -"failure. This is the equivalent of the Python expression ``o1 + o2``." +msgid "Return the concatenation of *o1* and *o2* on success, and ``NULL`` on failure. This is the equivalent of the Python expression ``o1 + o2``." msgstr "" -#: ../../c-api/sequence.rst:35 -msgid "" -"Return the result of repeating sequence object *o* *count* times, or " -"``NULL`` on failure. This is the equivalent of the Python expression ``o * " -"count``." +msgid "Return the result of repeating sequence object *o* *count* times, or ``NULL`` on failure. This is the equivalent of the Python expression ``o * count``." msgstr "" -#: ../../c-api/sequence.rst:41 -msgid "" -"Return the concatenation of *o1* and *o2* on success, and ``NULL`` on " -"failure. The operation is done *in-place* when *o1* supports it. This is " -"the equivalent of the Python expression ``o1 += o2``." +msgid "Return the concatenation of *o1* and *o2* on success, and ``NULL`` on failure. The operation is done *in-place* when *o1* supports it. This is the equivalent of the Python expression ``o1 += o2``." msgstr "" -#: ../../c-api/sequence.rst:48 -msgid "" -"Return the result of repeating sequence object *o* *count* times, or " -"``NULL`` on failure. The operation is done *in-place* when *o* supports " -"it. This is the equivalent of the Python expression ``o *= count``." +msgid "Return the result of repeating sequence object *o* *count* times, or ``NULL`` on failure. The operation is done *in-place* when *o* supports it. This is the equivalent of the Python expression ``o *= count``." msgstr "" -#: ../../c-api/sequence.rst:55 -msgid "" -"Return the *i*\\ th element of *o*, or ``NULL`` on failure. This is the " -"equivalent of the Python expression ``o[i]``." +msgid "Return the *i*\\ th element of *o*, or ``NULL`` on failure. This is the equivalent of the Python expression ``o[i]``." msgstr "" -#: ../../c-api/sequence.rst:61 -msgid "" -"Return the slice of sequence object *o* between *i1* and *i2*, or ``NULL`` " -"on failure. This is the equivalent of the Python expression ``o[i1:i2]``." +msgid "Return the slice of sequence object *o* between *i1* and *i2*, or ``NULL`` on failure. This is the equivalent of the Python expression ``o[i1:i2]``." msgstr "" -#: ../../c-api/sequence.rst:67 -msgid "" -"Assign object *v* to the *i*\\ th element of *o*. Raise an exception and " -"return ``-1`` on failure; return ``0`` on success. This is the equivalent " -"of the Python statement ``o[i] = v``. This function *does not* " -"\":term:`steal`\" a reference to *v*." +msgid "Assign object *v* to the *i*\\ th element of *o*. Raise an exception and return ``-1`` on failure; return ``0`` on success. This is the equivalent of the Python statement ``o[i] = v``. This function *does not* \":term:`steal`\" a reference to *v*." msgstr "" -#: ../../c-api/sequence.rst:72 -msgid "" -"If *v* is ``NULL``, the element is deleted, but this feature is deprecated " -"in favour of using :c:func:`PySequence_DelItem`." +msgid "If *v* is ``NULL``, the element is deleted, but this feature is deprecated in favour of using :c:func:`PySequence_DelItem`." msgstr "" -#: ../../c-api/sequence.rst:78 -msgid "" -"Delete the *i*\\ th element of object *o*. Returns ``-1`` on failure. This " -"is the equivalent of the Python statement ``del o[i]``." +msgid "Delete the *i*\\ th element of object *o*. Returns ``-1`` on failure. This is the equivalent of the Python statement ``del o[i]``." msgstr "" -#: ../../c-api/sequence.rst:84 -msgid "" -"Assign the sequence object *v* to the slice in sequence object *o* from *i1* " -"to *i2*. This is the equivalent of the Python statement ``o[i1:i2] = v``." +msgid "Assign the sequence object *v* to the slice in sequence object *o* from *i1* to *i2*. This is the equivalent of the Python statement ``o[i1:i2] = v``." msgstr "" -#: ../../c-api/sequence.rst:90 -msgid "" -"Delete the slice in sequence object *o* from *i1* to *i2*. Returns ``-1`` " -"on failure. This is the equivalent of the Python statement ``del o[i1:i2]``." +msgid "Delete the slice in sequence object *o* from *i1* to *i2*. Returns ``-1`` on failure. This is the equivalent of the Python statement ``del o[i1:i2]``." msgstr "" -#: ../../c-api/sequence.rst:96 -msgid "" -"Return the number of occurrences of *value* in *o*, that is, return the " -"number of keys for which ``o[key] == value``. On failure, return ``-1``. " -"This is equivalent to the Python expression ``o.count(value)``." +msgid "Return the number of occurrences of *value* in *o*, that is, return the number of keys for which ``o[key] == value``. On failure, return ``-1``. This is equivalent to the Python expression ``o.count(value)``." msgstr "" -#: ../../c-api/sequence.rst:103 -msgid "" -"Determine if *o* contains *value*. If an item in *o* is equal to *value*, " -"return ``1``, otherwise return ``0``. On error, return ``-1``. This is " -"equivalent to the Python expression ``value in o``." +msgid "Determine if *o* contains *value*. If an item in *o* is equal to *value*, return ``1``, otherwise return ``0``. On error, return ``-1``. This is equivalent to the Python expression ``value in o``." msgstr "" -#: ../../c-api/sequence.rst:110 msgid "Alias for :c:func:`PySequence_Contains`." msgstr "" -#: ../../c-api/sequence.rst:112 msgid "The function should no longer be used to write new code." msgstr "" -#: ../../c-api/sequence.rst:118 -msgid "" -"Return the first index *i* for which ``o[i] == value``. On error, return " -"``-1``. This is equivalent to the Python expression ``o.index(value)``." +msgid "Return the first index *i* for which ``o[i] == value``. On error, return ``-1``. This is equivalent to the Python expression ``o.index(value)``." msgstr "" -#: ../../c-api/sequence.rst:124 -msgid "" -"Return a list object with the same contents as the sequence or iterable *o*, " -"or ``NULL`` on failure. The returned list is guaranteed to be new. This is " -"equivalent to the Python expression ``list(o)``." +msgid "Return a list object with the same contents as the sequence or iterable *o*, or ``NULL`` on failure. The returned list is guaranteed to be new. This is equivalent to the Python expression ``list(o)``." msgstr "" -#: ../../c-api/sequence.rst:133 -msgid "" -"Return a tuple object with the same contents as the sequence or iterable " -"*o*, or ``NULL`` on failure. If *o* is a tuple, a new reference will be " -"returned, otherwise a tuple will be constructed with the appropriate " -"contents. This is equivalent to the Python expression ``tuple(o)``." +msgid "Return a tuple object with the same contents as the sequence or iterable *o*, or ``NULL`` on failure. If *o* is a tuple, a new reference will be returned, otherwise a tuple will be constructed with the appropriate contents. This is equivalent to the Python expression ``tuple(o)``." msgstr "" -#: ../../c-api/sequence.rst:141 -msgid "" -"Return the sequence or iterable *o* as an object usable by the other " -"``PySequence_Fast*`` family of functions. If the object is not a sequence or " -"iterable, raises :exc:`TypeError` with *m* as the message text. Returns " -"``NULL`` on failure." +msgid "Return the sequence or iterable *o* as an object usable by the other ``PySequence_Fast*`` family of functions. If the object is not a sequence or iterable, raises :exc:`TypeError` with *m* as the message text. Returns ``NULL`` on failure." msgstr "" -#: ../../c-api/sequence.rst:146 -msgid "" -"The ``PySequence_Fast*`` functions are thus named because they assume *o* is " -"a :c:type:`PyTupleObject` or a :c:type:`PyListObject` and access the data " -"fields of *o* directly." +msgid "The ``PySequence_Fast*`` functions are thus named because they assume *o* is a :c:type:`PyTupleObject` or a :c:type:`PyListObject` and access the data fields of *o* directly." msgstr "" -#: ../../c-api/sequence.rst:150 -msgid "" -"As a CPython implementation detail, if *o* is already a sequence or list, it " -"will be returned." +msgid "As a CPython implementation detail, if *o* is already a sequence or list, it will be returned." msgstr "" -#: ../../c-api/sequence.rst:156 -msgid "" -"Returns the length of *o*, assuming that *o* was returned " -"by :c:func:`PySequence_Fast` and that *o* is not ``NULL``. The size can " -"also be retrieved by calling :c:func:`PySequence_Size` on *o*, " -"but :c:func:`PySequence_Fast_GET_SIZE` is faster because it can assume *o* " -"is a list or tuple." +msgid "Returns the length of *o*, assuming that *o* was returned by :c:func:`PySequence_Fast` and that *o* is not ``NULL``. The size can also be retrieved by calling :c:func:`PySequence_Size` on *o*, but :c:func:`PySequence_Fast_GET_SIZE` is faster because it can assume *o* is a list or tuple." msgstr "" -#: ../../c-api/sequence.rst:165 -msgid "" -"Return the *i*\\ th element of *o*, assuming that *o* was returned " -"by :c:func:`PySequence_Fast`, *o* is not ``NULL``, and that *i* is within " -"bounds." +msgid "Return the *i*\\ th element of *o*, assuming that *o* was returned by :c:func:`PySequence_Fast`, *o* is not ``NULL``, and that *i* is within bounds." msgstr "" -#: ../../c-api/sequence.rst:171 -msgid "" -"Return the underlying array of PyObject pointers. Assumes that *o* was " -"returned by :c:func:`PySequence_Fast` and *o* is not ``NULL``." +msgid "Return the underlying array of PyObject pointers. Assumes that *o* was returned by :c:func:`PySequence_Fast` and *o* is not ``NULL``." msgstr "" -#: ../../c-api/sequence.rst:174 -msgid "" -"Note, if a list gets resized, the reallocation may relocate the items array. " -"So, only use the underlying array pointer in contexts where the sequence " -"cannot change." +msgid "Note, if a list gets resized, the reallocation may relocate the items array. So, only use the underlying array pointer in contexts where the sequence cannot change." msgstr "" -#: ../../c-api/sequence.rst:181 -msgid "" -"Return the *i*\\ th element of *o* or ``NULL`` on failure. Faster form " -"of :c:func:`PySequence_GetItem` but without checking " -"that :c:func:`PySequence_Check` on *o* is true and without adjustment for " -"negative indices." +msgid "Return the *i*\\ th element of *o* or ``NULL`` on failure. Faster form of :c:func:`PySequence_GetItem` but without checking that :c:func:`PySequence_Check` on *o* is true and without adjustment for negative indices." msgstr "" -#: ../../c-api/sequence.rst:21 ../../c-api/sequence.rst:131 msgid "built-in function" msgstr "" -#: ../../c-api/sequence.rst:21 msgid "len" msgstr "" -#: ../../c-api/sequence.rst:131 msgid "tuple" msgstr "" diff --git a/c-api/set.po b/c-api/set.po index b6299012..fcd28f22 100644 --- a/c-api/set.po +++ b/c-api/set.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:50+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,231 +24,107 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../c-api/set.rst:6 msgid "Set Objects" msgstr "" -#: ../../c-api/set.rst:15 -msgid "" -"This section details the public API for :class:`set` and :class:`frozenset` " -"objects. Any functionality not listed below is best accessed using either " -"the abstract object protocol " -"(including :c:func:`PyObject_CallMethod`, :c:func:`PyObject_RichCompareBool`, :c:func:`PyObject_Hash`, :c:func:`PyObject_Repr`, :c:func:`PyObject_IsTrue`, :c:func:`PyObject_Print`, " -"and :c:func:`PyObject_GetIter`) or the abstract number protocol " -"(including :c:func:`PyNumber_And`, :c:func:`PyNumber_Subtract`, :c:func:`PyNumber_Or`, :c:func:`PyNumber_Xor`, :c:func:`PyNumber_InPlaceAnd`, :c:func:`PyNumber_InPlaceSubtract`, :c:func:`PyNumber_InPlaceOr`, " -"and :c:func:`PyNumber_InPlaceXor`)." +msgid "This section details the public API for :class:`set` and :class:`frozenset` objects. Any functionality not listed below is best accessed using either the abstract object protocol (including :c:func:`PyObject_CallMethod`, :c:func:`PyObject_RichCompareBool`, :c:func:`PyObject_Hash`, :c:func:`PyObject_Repr`, :c:func:`PyObject_IsTrue`, :c:func:`PyObject_Print`, and :c:func:`PyObject_GetIter`) or the abstract number protocol (including :c:func:`PyNumber_And`, :c:func:`PyNumber_Subtract`, :c:func:`PyNumber_Or`, :c:func:`PyNumber_Xor`, :c:func:`PyNumber_InPlaceAnd`, :c:func:`PyNumber_InPlaceSubtract`, :c:func:`PyNumber_InPlaceOr`, and :c:func:`PyNumber_InPlaceXor`)." msgstr "" -#: ../../c-api/set.rst:29 -msgid "" -"This subtype of :c:type:`PyObject` is used to hold the internal data for " -"both :class:`set` and :class:`frozenset` objects. It is like " -"a :c:type:`PyDictObject` in that it is a fixed size for small sets (much " -"like tuple storage) and will point to a separate, variable sized block of " -"memory for medium and large sized sets (much like list storage). None of the " -"fields of this structure should be considered public and all are subject to " -"change. All access should be done through the documented API rather than by " -"manipulating the values in the structure." +msgid "This subtype of :c:type:`PyObject` is used to hold the internal data for both :class:`set` and :class:`frozenset` objects. It is like a :c:type:`PyDictObject` in that it is a fixed size for small sets (much like tuple storage) and will point to a separate, variable sized block of memory for medium and large sized sets (much like list storage). None of the fields of this structure should be considered public and all are subject to change. All access should be done through the documented API rather than by manipulating the values in the structure." msgstr "" -#: ../../c-api/set.rst:40 -msgid "" -"This is an instance of :c:type:`PyTypeObject` representing the " -"Python :class:`set` type." +msgid "This is an instance of :c:type:`PyTypeObject` representing the Python :class:`set` type." msgstr "" -#: ../../c-api/set.rst:46 -msgid "" -"This is an instance of :c:type:`PyTypeObject` representing the " -"Python :class:`frozenset` type." +msgid "This is an instance of :c:type:`PyTypeObject` representing the Python :class:`frozenset` type." msgstr "" -#: ../../c-api/set.rst:49 -msgid "" -"The following type check macros work on pointers to any Python object. " -"Likewise, the constructor functions work with any iterable Python object." +msgid "The following type check macros work on pointers to any Python object. Likewise, the constructor functions work with any iterable Python object." msgstr "" -#: ../../c-api/set.rst:55 -msgid "" -"Return true if *p* is a :class:`set` object or an instance of a subtype. " -"This function always succeeds." +msgid "Return true if *p* is a :class:`set` object or an instance of a subtype. This function always succeeds." msgstr "" -#: ../../c-api/set.rst:60 -msgid "" -"Return true if *p* is a :class:`frozenset` object or an instance of a " -"subtype. This function always succeeds." +msgid "Return true if *p* is a :class:`frozenset` object or an instance of a subtype. This function always succeeds." msgstr "" -#: ../../c-api/set.rst:65 -msgid "" -"Return true if *p* is a :class:`set` object, a :class:`frozenset` object, or " -"an instance of a subtype. This function always succeeds." +msgid "Return true if *p* is a :class:`set` object, a :class:`frozenset` object, or an instance of a subtype. This function always succeeds." msgstr "" -#: ../../c-api/set.rst:70 -msgid "" -"Return true if *p* is a :class:`set` object but not an instance of a " -"subtype. This function always succeeds." +msgid "Return true if *p* is a :class:`set` object but not an instance of a subtype. This function always succeeds." msgstr "" -#: ../../c-api/set.rst:77 -msgid "" -"Return true if *p* is a :class:`set` object or a :class:`frozenset` object " -"but not an instance of a subtype. This function always succeeds." +msgid "Return true if *p* is a :class:`set` object or a :class:`frozenset` object but not an instance of a subtype. This function always succeeds." msgstr "" -#: ../../c-api/set.rst:83 -msgid "" -"Return true if *p* is a :class:`frozenset` object but not an instance of a " -"subtype. This function always succeeds." +msgid "Return true if *p* is a :class:`frozenset` object but not an instance of a subtype. This function always succeeds." msgstr "" -#: ../../c-api/set.rst:89 -msgid "" -"Return a new :class:`set` containing objects returned by the *iterable*. " -"The *iterable* may be ``NULL`` to create a new empty set. Return the new " -"set on success or ``NULL`` on failure. Raise :exc:`TypeError` if *iterable* " -"is not actually iterable. The constructor is also useful for copying a set " -"(``c=set(s)``)." +msgid "Return a new :class:`set` containing objects returned by the *iterable*. The *iterable* may be ``NULL`` to create a new empty set. Return the new set on success or ``NULL`` on failure. Raise :exc:`TypeError` if *iterable* is not actually iterable. The constructor is also useful for copying a set (``c=set(s)``)." msgstr "" -#: ../../c-api/set.rst:97 ../../c-api/set.rst:110 -msgid "" -"The operation is atomic on :term:`free threading ` when " -"*iterable* is a :class:`set`, :class:`frozenset` or :class:`dict`." +msgid "The operation is atomic on :term:`free threading ` when *iterable* is a :class:`set`, :class:`frozenset` or :class:`dict`." msgstr "" -#: ../../c-api/set.rst:103 -msgid "" -"Return a new :class:`frozenset` containing objects returned by the " -"*iterable*. The *iterable* may be ``NULL`` to create a new empty frozenset. " -"Return the new set on success or ``NULL`` on failure. " -"Raise :exc:`TypeError` if *iterable* is not actually iterable." +msgid "Return a new :class:`frozenset` containing objects returned by the *iterable*. The *iterable* may be ``NULL`` to create a new empty frozenset. Return the new set on success or ``NULL`` on failure. Raise :exc:`TypeError` if *iterable* is not actually iterable." msgstr "" -#: ../../c-api/set.rst:114 -msgid "" -"The following functions and macros are available for instances " -"of :class:`set` or :class:`frozenset` or instances of their subtypes." +msgid "The following functions and macros are available for instances of :class:`set` or :class:`frozenset` or instances of their subtypes." msgstr "" -#: ../../c-api/set.rst:122 -msgid "" -"Return the length of a :class:`set` or :class:`frozenset` object. Equivalent " -"to ``len(anyset)``. Raises a :exc:`SystemError` if *anyset* is not " -"a :class:`set`, :class:`frozenset`, or an instance of a subtype." +msgid "Return the length of a :class:`set` or :class:`frozenset` object. Equivalent to ``len(anyset)``. Raises a :exc:`SystemError` if *anyset* is not a :class:`set`, :class:`frozenset`, or an instance of a subtype." msgstr "" -#: ../../c-api/set.rst:129 msgid "Macro form of :c:func:`PySet_Size` without error checking." msgstr "" -#: ../../c-api/set.rst:134 -msgid "" -"Return ``1`` if found, ``0`` if not found, and ``-1`` if an error is " -"encountered. Unlike the Python :meth:`~object.__contains__` method, this " -"function does not automatically convert unhashable sets into temporary " -"frozensets. Raise a :exc:`TypeError` if the *key* is unhashable. " -"Raise :exc:`SystemError` if *anyset* is not " -"a :class:`set`, :class:`frozenset`, or an instance of a subtype." +msgid "Return ``1`` if found, ``0`` if not found, and ``-1`` if an error is encountered. Unlike the Python :meth:`~object.__contains__` method, this function does not automatically convert unhashable sets into temporary frozensets. Raise a :exc:`TypeError` if the *key* is unhashable. Raise :exc:`SystemError` if *anyset* is not a :class:`set`, :class:`frozenset`, or an instance of a subtype." msgstr "" -#: ../../c-api/set.rst:142 ../../c-api/set.rst:157 ../../c-api/set.rst:177 -msgid "" -"The operation is atomic on :term:`free threading ` when " -"*key* is :class:`str`, :class:`int`, :class:`float`, :class:`bool` " -"or :class:`bytes`." +msgid "The operation is atomic on :term:`free threading ` when *key* is :class:`str`, :class:`int`, :class:`float`, :class:`bool` or :class:`bytes`." msgstr "" -#: ../../c-api/set.rst:147 -msgid "" -"Add *key* to a :class:`set` instance. Also works with :class:`frozenset` " -"instances (like :c:func:`PyTuple_SetItem` it can be used to fill in the " -"values of brand new frozensets before they are exposed to other code). " -"Return ``0`` on success or ``-1`` on failure. Raise a :exc:`TypeError` if " -"the *key* is unhashable. Raise a :exc:`MemoryError` if there is no room to " -"grow. Raise a :exc:`SystemError` if *set* is not an instance " -"of :class:`set` or its subtype." +msgid "Add *key* to a :class:`set` instance. Also works with :class:`frozenset` instances (like :c:func:`PyTuple_SetItem` it can be used to fill in the values of brand new frozensets before they are exposed to other code). Return ``0`` on success or ``-1`` on failure. Raise a :exc:`TypeError` if the *key* is unhashable. Raise a :exc:`MemoryError` if there is no room to grow. Raise a :exc:`SystemError` if *set* is not an instance of :class:`set` or its subtype." msgstr "" -#: ../../c-api/set.rst:162 -msgid "" -"The following functions are available for instances of :class:`set` or its " -"subtypes but not for instances of :class:`frozenset` or its subtypes." +msgid "The following functions are available for instances of :class:`set` or its subtypes but not for instances of :class:`frozenset` or its subtypes." msgstr "" -#: ../../c-api/set.rst:168 -msgid "" -"Return ``1`` if found and removed, ``0`` if not found (no action taken), and " -"``-1`` if an error is encountered. Does not raise :exc:`KeyError` for " -"missing keys. Raise a :exc:`TypeError` if the *key* is unhashable. Unlike " -"the Python :meth:`~set.discard` method, this function does not automatically " -"convert unhashable sets into temporary frozensets. Raise :exc:`SystemError` " -"if *set* is not an instance of :class:`set` or its subtype." +msgid "Return ``1`` if found and removed, ``0`` if not found (no action taken), and ``-1`` if an error is encountered. Does not raise :exc:`KeyError` for missing keys. Raise a :exc:`TypeError` if the *key* is unhashable. Unlike the Python :meth:`~set.discard` method, this function does not automatically convert unhashable sets into temporary frozensets. Raise :exc:`SystemError` if *set* is not an instance of :class:`set` or its subtype." msgstr "" -#: ../../c-api/set.rst:183 -msgid "" -"Return a new reference to an arbitrary object in the *set*, and removes the " -"object from the *set*. Return ``NULL`` on failure. Raise :exc:`KeyError` " -"if the set is empty. Raise a :exc:`SystemError` if *set* is not an instance " -"of :class:`set` or its subtype." +msgid "Return a new reference to an arbitrary object in the *set*, and removes the object from the *set*. Return ``NULL`` on failure. Raise :exc:`KeyError` if the set is empty. Raise a :exc:`SystemError` if *set* is not an instance of :class:`set` or its subtype." msgstr "" -#: ../../c-api/set.rst:191 -msgid "" -"Empty an existing set of all elements. Return ``0`` on success. Return " -"``-1`` and raise :exc:`SystemError` if *set* is not an instance " -"of :class:`set` or its subtype." +msgid "Empty an existing set of all elements. Return ``0`` on success. Return ``-1`` and raise :exc:`SystemError` if *set* is not an instance of :class:`set` or its subtype." msgstr "" -#: ../../c-api/set.rst:197 -msgid "" -"In the :term:`free-threaded build`, the set is emptied before its entries " -"are cleared, so other threads will observe an empty set rather than " -"intermediate states." +msgid "In the :term:`free-threaded build`, the set is emptied before its entries are cleared, so other threads will observe an empty set rather than intermediate states." msgstr "" -#: ../../c-api/set.rst:203 msgid "Deprecated API" msgstr "" -#: ../../c-api/set.rst:207 -msgid "" -"A constant representing the size of an internal preallocated table " -"inside :c:type:`PySetObject` instances." +msgid "A constant representing the size of an internal preallocated table inside :c:type:`PySetObject` instances." msgstr "" -#: ../../c-api/set.rst:210 -msgid "" -"This is documented solely for completeness, as there are no guarantees that " -"a given version of CPython uses preallocated tables with a fixed size. In " -"code that does not deal with unstable set internals, :c:macro:`!" -"PySet_MINSIZE` can be replaced with a small constant like ``8``." +msgid "This is documented solely for completeness, as there are no guarantees that a given version of CPython uses preallocated tables with a fixed size. In code that does not deal with unstable set internals, :c:macro:`!PySet_MINSIZE` can be replaced with a small constant like ``8``." msgstr "" -#: ../../c-api/set.rst:216 msgid "If looking for the size of a set, use :c:func:`PySet_Size` instead." msgstr "" -#: ../../c-api/set.rst:11 msgid "object" msgstr "" -#: ../../c-api/set.rst:11 msgid "set" msgstr "" -#: ../../c-api/set.rst:11 msgid "frozenset" msgstr "" -#: ../../c-api/set.rst:120 msgid "built-in function" msgstr "" -#: ../../c-api/set.rst:120 msgid "len" msgstr "" diff --git a/c-api/slice.po b/c-api/slice.po index a9f11241..fb3fada5 100644 --- a/c-api/slice.po +++ b/c-api/slice.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:50+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,92 +21,51 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../c-api/slice.rst:6 msgid "Slice Objects" msgstr "" -#: ../../c-api/slice.rst:11 -msgid "" -"The type object for slice objects. This is the same as :class:`slice` in " -"the Python layer." +msgid "The type object for slice objects. This is the same as :class:`slice` in the Python layer." msgstr "" -#: ../../c-api/slice.rst:17 -msgid "" -"Return true if *ob* is a slice object; *ob* must not be ``NULL``. This " -"function always succeeds." +msgid "Return true if *ob* is a slice object; *ob* must not be ``NULL``. This function always succeeds." msgstr "" -#: ../../c-api/slice.rst:23 -msgid "" -"Return a new slice object with the given values. The *start*, *stop*, and " -"*step* parameters are used as the values of the slice object attributes of " -"the same names. Any of the values may be ``NULL``, in which case the " -"``None`` will be used for the corresponding attribute." +msgid "Return a new slice object with the given values. The *start*, *stop*, and *step* parameters are used as the values of the slice object attributes of the same names. Any of the values may be ``NULL``, in which case the ``None`` will be used for the corresponding attribute." msgstr "" -#: ../../c-api/slice.rst:28 -msgid "" -"Return ``NULL`` with an exception set if the new object could not be " -"allocated." +msgid "Return ``NULL`` with an exception set if the new object could not be allocated." msgstr "" -#: ../../c-api/slice.rst:34 -msgid "" -"Retrieve the start, stop and step indices from the slice object *slice*, " -"assuming a sequence of length *length*. Treats indices greater than *length* " -"as errors." +msgid "Retrieve the start, stop and step indices from the slice object *slice*, assuming a sequence of length *length*. Treats indices greater than *length* as errors." msgstr "" -#: ../../c-api/slice.rst:38 -msgid "" -"Returns ``0`` on success and ``-1`` on error with no exception set (unless " -"one of the indices was not ``None`` and failed to be converted to an " -"integer, in which case ``-1`` is returned with an exception set)." +msgid "Returns ``0`` on success and ``-1`` on error with no exception set (unless one of the indices was not ``None`` and failed to be converted to an integer, in which case ``-1`` is returned with an exception set)." msgstr "" -#: ../../c-api/slice.rst:42 msgid "You probably do not want to use this function." msgstr "" -#: ../../c-api/slice.rst:44 ../../c-api/slice.rst:75 -msgid "" -"The parameter type for the *slice* parameter was ``PySliceObject*`` before." +msgid "The parameter type for the *slice* parameter was ``PySliceObject*`` before." msgstr "" -#: ../../c-api/slice.rst:51 -msgid "" -"Usable replacement for :c:func:`PySlice_GetIndices`. Retrieve the start, " -"stop, and step indices from the slice object *slice* assuming a sequence of " -"length *length*, and store the length of the slice in *slicelength*. Out of " -"bounds indices are clipped in a manner consistent with the handling of " -"normal slices." +msgid "Usable replacement for :c:func:`PySlice_GetIndices`. Retrieve the start, stop, and step indices from the slice object *slice* assuming a sequence of length *length*, and store the length of the slice in *slicelength*. Out of bounds indices are clipped in a manner consistent with the handling of normal slices." msgstr "" -#: ../../c-api/slice.rst:57 msgid "Return ``0`` on success and ``-1`` on error with an exception set." msgstr "" -#: ../../c-api/slice.rst:60 -msgid "" -"This function is considered not safe for resizable sequences. Its invocation " -"should be replaced by a combination of :c:func:`PySlice_Unpack` " -"and :c:func:`PySlice_AdjustIndices` where ::" +msgid "This function is considered not safe for resizable sequences. Its invocation should be replaced by a combination of :c:func:`PySlice_Unpack` and :c:func:`PySlice_AdjustIndices` where ::" msgstr "" -#: ../../c-api/slice.rst:64 msgid "" -"if (PySlice_GetIndicesEx(slice, length, &start, &stop, &step, &slicelength) " -"< 0) {\n" +"if (PySlice_GetIndicesEx(slice, length, &start, &stop, &step, &slicelength) < 0) {\n" " // return error\n" "}" msgstr "" -#: ../../c-api/slice.rst:68 msgid "is replaced by ::" msgstr "" -#: ../../c-api/slice.rst:70 msgid "" "if (PySlice_Unpack(slice, &start, &stop, &step) < 0) {\n" " // return error\n" @@ -114,64 +73,32 @@ msgid "" "slicelength = PySlice_AdjustIndices(length, &start, &stop, step);" msgstr "" -#: ../../c-api/slice.rst:79 -msgid "" -"If ``Py_LIMITED_API`` is not set or set to the value between ``0x03050400`` " -"and ``0x03060000`` (not including) or ``0x03060100`` or higher :c:func:`!" -"PySlice_GetIndicesEx` is implemented as a macro using :c:func:`!" -"PySlice_Unpack` and :c:func:`!PySlice_AdjustIndices`. Arguments *start*, " -"*stop* and *step* are evaluated more than once." +msgid "If ``Py_LIMITED_API`` is not set or set to the value between ``0x03050400`` and ``0x03060000`` (not including) or ``0x03060100`` or higher :c:func:`!PySlice_GetIndicesEx` is implemented as a macro using :c:func:`!PySlice_Unpack` and :c:func:`!PySlice_AdjustIndices`. Arguments *start*, *stop* and *step* are evaluated more than once." msgstr "" -#: ../../c-api/slice.rst:86 -msgid "" -"If ``Py_LIMITED_API`` is set to the value less than ``0x03050400`` or " -"between ``0x03060000`` and ``0x03060100`` (not including) :c:func:`!" -"PySlice_GetIndicesEx` is a deprecated function." +msgid "If ``Py_LIMITED_API`` is set to the value less than ``0x03050400`` or between ``0x03060000`` and ``0x03060100`` (not including) :c:func:`!PySlice_GetIndicesEx` is a deprecated function." msgstr "" -#: ../../c-api/slice.rst:94 -msgid "" -"Extract the start, stop and step data members from a slice object as C " -"integers. Silently reduce values larger than ``PY_SSIZE_T_MAX`` to " -"``PY_SSIZE_T_MAX``, silently boost the start and stop values less than " -"``PY_SSIZE_T_MIN`` to ``PY_SSIZE_T_MIN``, and silently boost the step values " -"less than ``-PY_SSIZE_T_MAX`` to ``-PY_SSIZE_T_MAX``." +msgid "Extract the start, stop and step data members from a slice object as C integers. Silently reduce values larger than ``PY_SSIZE_T_MAX`` to ``PY_SSIZE_T_MAX``, silently boost the start and stop values less than ``PY_SSIZE_T_MIN`` to ``PY_SSIZE_T_MIN``, and silently boost the step values less than ``-PY_SSIZE_T_MAX`` to ``-PY_SSIZE_T_MAX``." msgstr "" -#: ../../c-api/slice.rst:100 msgid "Return ``-1`` with an exception set on error, ``0`` on success." msgstr "" -#: ../../c-api/slice.rst:107 -msgid "" -"Adjust start/end slice indices assuming a sequence of the specified length. " -"Out of bounds indices are clipped in a manner consistent with the handling " -"of normal slices." +msgid "Adjust start/end slice indices assuming a sequence of the specified length. Out of bounds indices are clipped in a manner consistent with the handling of normal slices." msgstr "" -#: ../../c-api/slice.rst:111 -msgid "" -"Return the length of the slice. Always successful. Doesn't call Python " -"code." +msgid "Return the length of the slice. Always successful. Doesn't call Python code." msgstr "" -#: ../../c-api/slice.rst:118 msgid "Ellipsis Object" msgstr "" -#: ../../c-api/slice.rst:123 -msgid "" -"The type of Python :const:`Ellipsis` object. Same " -"as :class:`types.EllipsisType` in the Python layer." +msgid "The type of Python :const:`Ellipsis` object. Same as :class:`types.EllipsisType` in the Python layer." msgstr "" -#: ../../c-api/slice.rst:129 -msgid "" -"The Python ``Ellipsis`` object. This object has no methods. " -"Like :c:data:`Py_None`, it is an :term:`immortal` singleton object." +msgid "The Python ``Ellipsis`` object. This object has no methods. Like :c:data:`Py_None`, it is an :term:`immortal` singleton object." msgstr "" -#: ../../c-api/slice.rst:132 msgid ":c:data:`Py_Ellipsis` is immortal." msgstr "" diff --git a/c-api/stable.po b/c-api/stable.po index abe5649b..80d66ec9 100644 --- a/c-api/stable.po +++ b/c-api/stable.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:50+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,296 +21,137 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../c-api/stable.rst:7 msgid "C API Stability" msgstr "" -#: ../../c-api/stable.rst:9 -msgid "" -"Unless documented otherwise, Python's C API is covered by the Backwards " -"Compatibility Policy, :pep:`387`. Most changes to it are source-compatible " -"(typically by only adding new API). Changing existing API or removing API is " -"only done after a deprecation period or to fix serious issues." +msgid "Unless documented otherwise, Python's C API is covered by the Backwards Compatibility Policy, :pep:`387`. Most changes to it are source-compatible (typically by only adding new API). Changing existing API or removing API is only done after a deprecation period or to fix serious issues." msgstr "" -#: ../../c-api/stable.rst:15 -msgid "" -"CPython's Application Binary Interface (ABI) is forward- and backwards-" -"compatible across a minor release (if these are compiled the same way; " -"see :ref:`stable-abi-platform` below). So, code compiled for Python 3.10.0 " -"will work on 3.10.8 and vice versa, but will need to be compiled separately " -"for 3.9.x and 3.11.x." +msgid "CPython's Application Binary Interface (ABI) is forward- and backwards-compatible across a minor release (if these are compiled the same way; see :ref:`stable-abi-platform` below). So, code compiled for Python 3.10.0 will work on 3.10.8 and vice versa, but will need to be compiled separately for 3.9.x and 3.11.x." msgstr "" -#: ../../c-api/stable.rst:21 msgid "There are two tiers of C API with different stability expectations:" msgstr "" -#: ../../c-api/stable.rst:23 -msgid "" -":ref:`Unstable API `, may change in minor versions without a " -"deprecation period. It is marked by the ``PyUnstable`` prefix in names." +msgid ":ref:`Unstable API `, may change in minor versions without a deprecation period. It is marked by the ``PyUnstable`` prefix in names." msgstr "" -#: ../../c-api/stable.rst:25 -msgid "" -":ref:`Limited API `, is compatible across several minor " -"releases. When :c:macro:`Py_LIMITED_API` is defined, only this subset is " -"exposed from ``Python.h``." +msgid ":ref:`Limited API `, is compatible across several minor releases. When :c:macro:`Py_LIMITED_API` is defined, only this subset is exposed from ``Python.h``." msgstr "" -#: ../../c-api/stable.rst:29 msgid "These are discussed in more detail below." msgstr "" -#: ../../c-api/stable.rst:31 -msgid "" -"Names prefixed by an underscore, such as ``_Py_InternalState``, are private " -"API that can change without notice even in patch releases. If you need to " -"use this API, consider reaching out to `CPython developers `_ to discuss adding public API for " -"your use case." +msgid "Names prefixed by an underscore, such as ``_Py_InternalState``, are private API that can change without notice even in patch releases. If you need to use this API, consider reaching out to `CPython developers `_ to discuss adding public API for your use case." msgstr "" -#: ../../c-api/stable.rst:40 msgid "Unstable C API" msgstr "" -#: ../../c-api/stable.rst:44 -msgid "" -"Any API named with the ``PyUnstable`` prefix exposes CPython implementation " -"details, and may change in every minor release (e.g. from 3.9 to 3.10) " -"without any deprecation warnings. However, it will not change in a bugfix " -"release (e.g. from 3.10.0 to 3.10.1)." +msgid "Any API named with the ``PyUnstable`` prefix exposes CPython implementation details, and may change in every minor release (e.g. from 3.9 to 3.10) without any deprecation warnings. However, it will not change in a bugfix release (e.g. from 3.10.0 to 3.10.1)." msgstr "" -#: ../../c-api/stable.rst:49 -msgid "" -"It is generally intended for specialized, low-level tools like debuggers." +msgid "It is generally intended for specialized, low-level tools like debuggers." msgstr "" -#: ../../c-api/stable.rst:51 -msgid "" -"Projects that use this API are expected to follow CPython development and " -"spend extra effort adjusting to changes." +msgid "Projects that use this API are expected to follow CPython development and spend extra effort adjusting to changes." msgstr "" -#: ../../c-api/stable.rst:57 msgid "Stable Application Binary Interface" msgstr "" -#: ../../c-api/stable.rst:59 -msgid "" -"For simplicity, this document talks about *extensions*, but the Limited API " -"and Stable ABI work the same way for all uses of the API – for example, " -"embedding Python." +msgid "For simplicity, this document talks about *extensions*, but the Limited API and Stable ABI work the same way for all uses of the API – for example, embedding Python." msgstr "" -#: ../../c-api/stable.rst:66 msgid "Limited C API" msgstr "" -#: ../../c-api/stable.rst:68 -msgid "" -"Python 3.2 introduced the *Limited API*, a subset of Python's C API. " -"Extensions that only use the Limited API can be compiled once and be loaded " -"on multiple versions of Python. Contents of the Limited API are :ref:`listed " -"below `." +msgid "Python 3.2 introduced the *Limited API*, a subset of Python's C API. Extensions that only use the Limited API can be compiled once and be loaded on multiple versions of Python. Contents of the Limited API are :ref:`listed below `." msgstr "" -#: ../../c-api/stable.rst:75 -msgid "" -"Define this macro before including ``Python.h`` to opt in to only use the " -"Limited API, and to select the Limited API version." +msgid "Define this macro before including ``Python.h`` to opt in to only use the Limited API, and to select the Limited API version." msgstr "" -#: ../../c-api/stable.rst:78 -msgid "" -"Define ``Py_LIMITED_API`` to the value of :c:macro:`PY_VERSION_HEX` " -"corresponding to the lowest Python version your extension supports. The " -"extension will be ABI-compatible with all Python 3 releases from the " -"specified one onward, and can use Limited API introduced up to that version." +msgid "Define ``Py_LIMITED_API`` to the value of :c:macro:`PY_VERSION_HEX` corresponding to the lowest Python version your extension supports. The extension will be ABI-compatible with all Python 3 releases from the specified one onward, and can use Limited API introduced up to that version." msgstr "" -#: ../../c-api/stable.rst:84 -msgid "" -"Rather than using the ``PY_VERSION_HEX`` macro directly, hardcode a minimum " -"minor version (e.g. ``0x030A0000`` for Python 3.10) for stability when " -"compiling with future Python versions." +msgid "Rather than using the ``PY_VERSION_HEX`` macro directly, hardcode a minimum minor version (e.g. ``0x030A0000`` for Python 3.10) for stability when compiling with future Python versions." msgstr "" -#: ../../c-api/stable.rst:88 -msgid "" -"You can also define ``Py_LIMITED_API`` to ``3``. This works the same as " -"``0x03020000`` (Python 3.2, the version that introduced Limited API)." +msgid "You can also define ``Py_LIMITED_API`` to ``3``. This works the same as ``0x03020000`` (Python 3.2, the version that introduced Limited API)." msgstr "" -#: ../../c-api/stable.rst:95 msgid "Stable ABI" msgstr "" -#: ../../c-api/stable.rst:97 -msgid "" -"To enable this, Python provides a *Stable ABI*: a set of symbols that will " -"remain ABI-compatible across Python 3.x versions." +msgid "To enable this, Python provides a *Stable ABI*: a set of symbols that will remain ABI-compatible across Python 3.x versions." msgstr "" -#: ../../c-api/stable.rst:102 -msgid "" -"The Stable ABI prevents ABI issues, like linker errors due to missing " -"symbols or data corruption due to changes in structure layouts or function " -"signatures. However, other changes in Python can change the *behavior* of " -"extensions. See Python's Backwards Compatibility Policy (:pep:`387`) for " -"details." +msgid "The Stable ABI prevents ABI issues, like linker errors due to missing symbols or data corruption due to changes in structure layouts or function signatures. However, other changes in Python can change the *behavior* of extensions. See Python's Backwards Compatibility Policy (:pep:`387`) for details." msgstr "" -#: ../../c-api/stable.rst:108 -msgid "" -"The Stable ABI contains symbols exposed in the :ref:`Limited API `, but also other ones – for example, functions necessary to support " -"older versions of the Limited API." +msgid "The Stable ABI contains symbols exposed in the :ref:`Limited API `, but also other ones – for example, functions necessary to support older versions of the Limited API." msgstr "" -#: ../../c-api/stable.rst:112 -msgid "" -"On Windows, extensions that use the Stable ABI should be linked against " -"``python3.dll`` rather than a version-specific library such as " -"``python39.dll``." +msgid "On Windows, extensions that use the Stable ABI should be linked against ``python3.dll`` rather than a version-specific library such as ``python39.dll``." msgstr "" -#: ../../c-api/stable.rst:116 -msgid "" -"On some platforms, Python will look for and load shared library files named " -"with the ``abi3`` tag (e.g. ``mymodule.abi3.so``). It does not check if such " -"extensions conform to a Stable ABI. The user (or their packaging tools) need " -"to ensure that, for example, extensions built with the 3.10+ Limited API are " -"not installed for lower versions of Python." +msgid "On some platforms, Python will look for and load shared library files named with the ``abi3`` tag (e.g. ``mymodule.abi3.so``). It does not check if such extensions conform to a Stable ABI. The user (or their packaging tools) need to ensure that, for example, extensions built with the 3.10+ Limited API are not installed for lower versions of Python." msgstr "" -#: ../../c-api/stable.rst:123 -msgid "" -"All functions in the Stable ABI are present as functions in Python's shared " -"library, not solely as macros. This makes them usable from languages that " -"don't use the C preprocessor." +msgid "All functions in the Stable ABI are present as functions in Python's shared library, not solely as macros. This makes them usable from languages that don't use the C preprocessor." msgstr "" -#: ../../c-api/stable.rst:129 msgid "Limited API Scope and Performance" msgstr "" -#: ../../c-api/stable.rst:131 -msgid "" -"The goal for the Limited API is to allow everything that is possible with " -"the full C API, but possibly with a performance penalty." +msgid "The goal for the Limited API is to allow everything that is possible with the full C API, but possibly with a performance penalty." msgstr "" -#: ../../c-api/stable.rst:134 -msgid "" -"For example, while :c:func:`PyList_GetItem` is available, its “unsafe” macro " -"variant :c:func:`PyList_GET_ITEM` is not. The macro can be faster because it " -"can rely on version-specific implementation details of the list object." +msgid "For example, while :c:func:`PyList_GetItem` is available, its “unsafe” macro variant :c:func:`PyList_GET_ITEM` is not. The macro can be faster because it can rely on version-specific implementation details of the list object." msgstr "" -#: ../../c-api/stable.rst:139 -msgid "" -"Without ``Py_LIMITED_API`` defined, some C API functions are inlined or " -"replaced by macros. Defining ``Py_LIMITED_API`` disables this inlining, " -"allowing stability as Python's data structures are improved, but possibly " -"reducing performance." +msgid "Without ``Py_LIMITED_API`` defined, some C API functions are inlined or replaced by macros. Defining ``Py_LIMITED_API`` disables this inlining, allowing stability as Python's data structures are improved, but possibly reducing performance." msgstr "" -#: ../../c-api/stable.rst:144 -msgid "" -"By leaving out the ``Py_LIMITED_API`` definition, it is possible to compile " -"a Limited API extension with a version-specific ABI. This can improve " -"performance for that Python version, but will limit compatibility. Compiling " -"with ``Py_LIMITED_API`` will then yield an extension that can be distributed " -"where a version-specific one is not available – for example, for prereleases " -"of an upcoming Python version." +msgid "By leaving out the ``Py_LIMITED_API`` definition, it is possible to compile a Limited API extension with a version-specific ABI. This can improve performance for that Python version, but will limit compatibility. Compiling with ``Py_LIMITED_API`` will then yield an extension that can be distributed where a version-specific one is not available – for example, for prereleases of an upcoming Python version." msgstr "" -#: ../../c-api/stable.rst:153 msgid "Limited API Caveats" msgstr "" -#: ../../c-api/stable.rst:155 -msgid "" -"Note that compiling with ``Py_LIMITED_API`` is *not* a complete guarantee " -"that code conforms to the :ref:`Limited API ` or " -"the :ref:`Stable ABI `. ``Py_LIMITED_API`` only covers " -"definitions, but an API also includes other issues, such as expected " -"semantics." +msgid "Note that compiling with ``Py_LIMITED_API`` is *not* a complete guarantee that code conforms to the :ref:`Limited API ` or the :ref:`Stable ABI `. ``Py_LIMITED_API`` only covers definitions, but an API also includes other issues, such as expected semantics." msgstr "" -#: ../../c-api/stable.rst:160 -msgid "" -"One issue that ``Py_LIMITED_API`` does not guard against is calling a " -"function with arguments that are invalid in a lower Python version. For " -"example, consider a function that starts accepting ``NULL`` for an argument. " -"In Python 3.9, ``NULL`` now selects a default behavior, but in Python 3.8, " -"the argument will be used directly, causing a ``NULL`` dereference and " -"crash. A similar argument works for fields of structs." +msgid "One issue that ``Py_LIMITED_API`` does not guard against is calling a function with arguments that are invalid in a lower Python version. For example, consider a function that starts accepting ``NULL`` for an argument. In Python 3.9, ``NULL`` now selects a default behavior, but in Python 3.8, the argument will be used directly, causing a ``NULL`` dereference and crash. A similar argument works for fields of structs." msgstr "" -#: ../../c-api/stable.rst:167 -msgid "" -"Another issue is that some struct fields are currently not hidden when " -"``Py_LIMITED_API`` is defined, even though they're part of the Limited API." +msgid "Another issue is that some struct fields are currently not hidden when ``Py_LIMITED_API`` is defined, even though they're part of the Limited API." msgstr "" -#: ../../c-api/stable.rst:170 -msgid "" -"For these reasons, we recommend testing an extension with *all* minor Python " -"versions it supports, and preferably to build with the *lowest* such version." +msgid "For these reasons, we recommend testing an extension with *all* minor Python versions it supports, and preferably to build with the *lowest* such version." msgstr "" -#: ../../c-api/stable.rst:173 -msgid "" -"We also recommend reviewing documentation of all used API to check if it is " -"explicitly part of the Limited API. Even with ``Py_LIMITED_API`` defined, a " -"few private declarations are exposed for technical reasons (or even " -"unintentionally, as bugs)." +msgid "We also recommend reviewing documentation of all used API to check if it is explicitly part of the Limited API. Even with ``Py_LIMITED_API`` defined, a few private declarations are exposed for technical reasons (or even unintentionally, as bugs)." msgstr "" -#: ../../c-api/stable.rst:178 -msgid "" -"Also note that the Limited API is not necessarily stable: compiling with " -"``Py_LIMITED_API`` with Python 3.8 means that the extension will run with " -"Python 3.12, but it will not necessarily *compile* with Python 3.12. In " -"particular, parts of the Limited API may be deprecated and removed, provided " -"that the Stable ABI stays stable." +msgid "Also note that the Limited API is not necessarily stable: compiling with ``Py_LIMITED_API`` with Python 3.8 means that the extension will run with Python 3.12, but it will not necessarily *compile* with Python 3.12. In particular, parts of the Limited API may be deprecated and removed, provided that the Stable ABI stays stable." msgstr "" -#: ../../c-api/stable.rst:188 msgid "Platform Considerations" msgstr "" -#: ../../c-api/stable.rst:190 -msgid "" -"ABI stability depends not only on Python, but also on the compiler used, " -"lower-level libraries and compiler options. For the purposes of " -"the :ref:`Stable ABI `, these details define a “platform”. They " -"usually depend on the OS type and processor architecture" +msgid "ABI stability depends not only on Python, but also on the compiler used, lower-level libraries and compiler options. For the purposes of the :ref:`Stable ABI `, these details define a “platform”. They usually depend on the OS type and processor architecture" msgstr "" -#: ../../c-api/stable.rst:195 -msgid "" -"It is the responsibility of each particular distributor of Python to ensure " -"that all Python versions on a particular platform are built in a way that " -"does not break the Stable ABI. This is the case with Windows and macOS " -"releases from ``python.org`` and many third-party distributors." +msgid "It is the responsibility of each particular distributor of Python to ensure that all Python versions on a particular platform are built in a way that does not break the Stable ABI. This is the case with Windows and macOS releases from ``python.org`` and many third-party distributors." msgstr "" -#: ../../c-api/stable.rst:205 msgid "Contents of Limited API" msgstr "" -#: ../../c-api/stable.rst:208 -msgid "" -"Currently, the :ref:`Limited API ` includes the following " -"items:" +msgid "Currently, the :ref:`Limited API ` includes the following items:" msgstr "" -#: ../../c-api/stable.rst:42 msgid "PyUnstable" msgstr "" diff --git a/c-api/structures.po b/c-api/structures.po index c3c5c39d..d484582b 100644 --- a/c-api/structures.po +++ b/c-api/structures.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:50+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,307 +24,168 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../c-api/structures.rst:6 msgid "Common Object Structures" msgstr "" -#: ../../c-api/structures.rst:8 -msgid "" -"There are a large number of structures which are used in the definition of " -"object types for Python. This section describes these structures and how " -"they are used." +msgid "There are a large number of structures which are used in the definition of object types for Python. This section describes these structures and how they are used." msgstr "" -#: ../../c-api/structures.rst:14 msgid "Base object types and macros" msgstr "" -#: ../../c-api/structures.rst:16 -msgid "" -"All Python objects ultimately share a small number of fields at the " -"beginning of the object's representation in memory. These are represented " -"by the :c:type:`PyObject` and :c:type:`PyVarObject` types, which are " -"defined, in turn, by the expansions of some macros also used, whether " -"directly or indirectly, in the definition of all other Python objects. " -"Additional macros can be found under :ref:`reference counting " -"`." +msgid "All Python objects ultimately share a small number of fields at the beginning of the object's representation in memory. These are represented by the :c:type:`PyObject` and :c:type:`PyVarObject` types, which are defined, in turn, by the expansions of some macros also used, whether directly or indirectly, in the definition of all other Python objects. Additional macros can be found under :ref:`reference counting `." msgstr "" -#: ../../c-api/structures.rst:26 -msgid "" -"All object types are extensions of this type. This is a type which contains " -"the information Python needs to treat a pointer to an object as an object. " -"In a normal \"release\" build, it contains only the object's reference count " -"and a pointer to the corresponding type object. Nothing is actually declared " -"to be a :c:type:`PyObject`, but every pointer to a Python object can be cast " -"to a :c:expr:`PyObject*`." +msgid "All object types are extensions of this type. This is a type which contains the information Python needs to treat a pointer to an object as an object. In a normal \"release\" build, it contains only the object's reference count and a pointer to the corresponding type object. Nothing is actually declared to be a :c:type:`PyObject`, but every pointer to a Python object can be cast to a :c:expr:`PyObject*`." msgstr "" -#: ../../c-api/structures.rst:33 -msgid "" -"The members must not be accessed directly; instead use macros such " -"as :c:macro:`Py_REFCNT` and :c:macro:`Py_TYPE`." +msgid "The members must not be accessed directly; instead use macros such as :c:macro:`Py_REFCNT` and :c:macro:`Py_TYPE`." msgstr "" -#: ../../c-api/structures.rst:38 -msgid "" -"The object's reference count, as returned by :c:macro:`Py_REFCNT`. Do not " -"use this field directly; instead use functions and macros such as :c:macro:`!" -"Py_REFCNT`, :c:func:`Py_INCREF` and :c:func:`Py_DecRef`." +msgid "The object's reference count, as returned by :c:macro:`Py_REFCNT`. Do not use this field directly; instead use functions and macros such as :c:macro:`!Py_REFCNT`, :c:func:`Py_INCREF` and :c:func:`Py_DecRef`." msgstr "" -#: ../../c-api/structures.rst:42 -msgid "" -"The field type may be different from ``Py_ssize_t``, depending on build " -"configuration and platform." +msgid "The field type may be different from ``Py_ssize_t``, depending on build configuration and platform." msgstr "" -#: ../../c-api/structures.rst:47 -msgid "" -"The object's type. Do not use this field directly; use :c:macro:`Py_TYPE` " -"and :c:func:`Py_SET_TYPE` instead." +msgid "The object's type. Do not use this field directly; use :c:macro:`Py_TYPE` and :c:func:`Py_SET_TYPE` instead." msgstr "" -#: ../../c-api/structures.rst:54 -msgid "" -"An extension of :c:type:`PyObject` that adds " -"the :c:member:`~PyVarObject.ob_size` field. This is intended for objects " -"that have some notion of *length*." +msgid "An extension of :c:type:`PyObject` that adds the :c:member:`~PyVarObject.ob_size` field. This is intended for objects that have some notion of *length*." msgstr "" -#: ../../c-api/structures.rst:58 -msgid "" -"As with :c:type:`!PyObject`, the members must not be accessed directly; " -"instead use macros such as :c:macro:`Py_SIZE`, :c:macro:`Py_REFCNT` " -"and :c:macro:`Py_TYPE`." +msgid "As with :c:type:`!PyObject`, the members must not be accessed directly; instead use macros such as :c:macro:`Py_SIZE`, :c:macro:`Py_REFCNT` and :c:macro:`Py_TYPE`." msgstr "" -#: ../../c-api/structures.rst:64 -msgid "" -"A size field, whose contents should be considered an object's internal " -"implementation detail." +msgid "A size field, whose contents should be considered an object's internal implementation detail." msgstr "" -#: ../../c-api/structures.rst:67 msgid "Do not use this field directly; use :c:macro:`Py_SIZE` instead." msgstr "" -#: ../../c-api/structures.rst:69 -msgid "" -"Object creation functions such as :c:func:`PyObject_NewVar` will generally " -"set this field to the requested size (number of items). After creation, " -"arbitrary values can be stored in :c:member:`!ob_size` " -"using :c:macro:`Py_SET_SIZE`." +msgid "Object creation functions such as :c:func:`PyObject_NewVar` will generally set this field to the requested size (number of items). After creation, arbitrary values can be stored in :c:member:`!ob_size` using :c:macro:`Py_SET_SIZE`." msgstr "" -#: ../../c-api/structures.rst:74 -msgid "" -"To get an object's publicly exposed length, as returned by the Python " -"function :py:func:`len`, use :c:func:`PyObject_Length` instead." +msgid "To get an object's publicly exposed length, as returned by the Python function :py:func:`len`, use :c:func:`PyObject_Length` instead." msgstr "" -#: ../../c-api/structures.rst:81 -msgid "" -"This is a macro used when declaring new types which represent objects " -"without a varying length. The PyObject_HEAD macro expands to::" +msgid "This is a macro used when declaring new types which represent objects without a varying length. The PyObject_HEAD macro expands to::" msgstr "" -#: ../../c-api/structures.rst:84 msgid "PyObject ob_base;" msgstr "" -#: ../../c-api/structures.rst:86 msgid "See documentation of :c:type:`PyObject` above." msgstr "" -#: ../../c-api/structures.rst:91 -msgid "" -"This is a macro used when declaring new types which represent objects with a " -"length that varies from instance to instance. The PyObject_VAR_HEAD macro " -"expands to::" +msgid "This is a macro used when declaring new types which represent objects with a length that varies from instance to instance. The PyObject_VAR_HEAD macro expands to::" msgstr "" -#: ../../c-api/structures.rst:95 msgid "PyVarObject ob_base;" msgstr "" -#: ../../c-api/structures.rst:97 msgid "See documentation of :c:type:`PyVarObject` above." msgstr "" -#: ../../c-api/structures.rst:102 -msgid "" -"The base class of all other objects, the same as :class:`object` in Python." +msgid "The base class of all other objects, the same as :class:`object` in Python." msgstr "" -#: ../../c-api/structures.rst:107 -msgid "" -"Test if the *x* object is the *y* object, the same as ``x is y`` in Python." +msgid "Test if the *x* object is the *y* object, the same as ``x is y`` in Python." msgstr "" -#: ../../c-api/structures.rst:114 -msgid "" -"Test if an object is the ``None`` singleton, the same as ``x is None`` in " -"Python." +msgid "Test if an object is the ``None`` singleton, the same as ``x is None`` in Python." msgstr "" -#: ../../c-api/structures.rst:122 -msgid "" -"Test if an object is the ``True`` singleton, the same as ``x is True`` in " -"Python." +msgid "Test if an object is the ``True`` singleton, the same as ``x is True`` in Python." msgstr "" -#: ../../c-api/structures.rst:130 -msgid "" -"Test if an object is the ``False`` singleton, the same as ``x is False`` in " -"Python." +msgid "Test if an object is the ``False`` singleton, the same as ``x is False`` in Python." msgstr "" -#: ../../c-api/structures.rst:138 msgid "Get the type of the Python object *o*." msgstr "" -#: ../../c-api/structures.rst:140 -msgid "" -"The returned reference is :term:`borrowed ` from *o*. Do " -"not release it with :c:func:`Py_DECREF` or similar." +msgid "The returned reference is :term:`borrowed ` from *o*. Do not release it with :c:func:`Py_DECREF` or similar." msgstr "" -#: ../../c-api/structures.rst:143 -msgid "" -":c:func:`Py_TYPE()` is changed to an inline static function. The parameter " -"type is no longer :c:expr:`const PyObject*`." +msgid ":c:func:`Py_TYPE()` is changed to an inline static function. The parameter type is no longer :c:expr:`const PyObject*`." msgstr "" -#: ../../c-api/structures.rst:150 -msgid "" -"Return non-zero if the object *o* type is *type*. Return zero otherwise. " -"Equivalent to: ``Py_TYPE(o) == type``." +msgid "Return non-zero if the object *o* type is *type*. Return zero otherwise. Equivalent to: ``Py_TYPE(o) == type``." msgstr "" -#: ../../c-api/structures.rst:158 -msgid "" -"Set the type of object *o* to *type*, without any checking or reference " -"counting." +msgid "Set the type of object *o* to *type*, without any checking or reference counting." msgstr "" -#: ../../c-api/structures.rst:161 -msgid "" -"This is a very low-level operation. Consider instead setting the Python " -"attribute :attr:`~object.__class__` using :c:func:`PyObject_SetAttrString` " -"or similar." +msgid "This is a very low-level operation. Consider instead setting the Python attribute :attr:`~object.__class__` using :c:func:`PyObject_SetAttrString` or similar." msgstr "" -#: ../../c-api/structures.rst:165 -msgid "" -"Note that assigning an incompatible type can lead to undefined behavior." +msgid "Note that assigning an incompatible type can lead to undefined behavior." msgstr "" -#: ../../c-api/structures.rst:167 -msgid "" -"If *type* is a :ref:`heap type `, the caller must create a new " -"reference to it. Similarly, if the old type of *o* is a heap type, the " -"caller must release a reference to that type." +msgid "If *type* is a :ref:`heap type `, the caller must create a new reference to it. Similarly, if the old type of *o* is a heap type, the caller must release a reference to that type." msgstr "" -#: ../../c-api/structures.rst:177 msgid "Get the :c:member:`~PyVarObject.ob_size` field of *o*." msgstr "" -#: ../../c-api/structures.rst:179 -msgid "" -":c:func:`Py_SIZE()` is changed to an inline static function. The parameter " -"type is no longer :c:expr:`const PyVarObject*`." +msgid ":c:func:`Py_SIZE()` is changed to an inline static function. The parameter type is no longer :c:expr:`const PyVarObject*`." msgstr "" -#: ../../c-api/structures.rst:186 msgid "Set the :c:member:`~PyVarObject.ob_size` field of *o* to *size*." msgstr "" -#: ../../c-api/structures.rst:193 -msgid "" -"This is a macro which expands to initialization values for a " -"new :c:type:`PyObject` type. This macro expands to::" +msgid "This is a macro which expands to initialization values for a new :c:type:`PyObject` type. This macro expands to::" msgstr "" -#: ../../c-api/structures.rst:196 msgid "" "_PyObject_EXTRA_INIT\n" "1, type," msgstr "" -#: ../../c-api/structures.rst:202 -msgid "" -"This is a macro which expands to initialization values for a " -"new :c:type:`PyVarObject` type, including " -"the :c:member:`~PyVarObject.ob_size` field. This macro expands to::" +msgid "This is a macro which expands to initialization values for a new :c:type:`PyVarObject` type, including the :c:member:`~PyVarObject.ob_size` field. This macro expands to::" msgstr "" -#: ../../c-api/structures.rst:206 msgid "" "_PyObject_EXTRA_INIT\n" "1, type, size," msgstr "" -#: ../../c-api/structures.rst:211 msgid "Implementing functions and methods" msgstr "" -#: ../../c-api/structures.rst:215 -msgid "" -"Type of the functions used to implement most Python callables in C. " -"Functions of this type take two :c:expr:`PyObject*` parameters and return " -"one such value. If the return value is ``NULL``, an exception shall have " -"been set. If not ``NULL``, the return value is interpreted as the return " -"value of the function as exposed in Python. The function must return a new " -"reference." +msgid "Type of the functions used to implement most Python callables in C. Functions of this type take two :c:expr:`PyObject*` parameters and return one such value. If the return value is ``NULL``, an exception shall have been set. If not ``NULL``, the return value is interpreted as the return value of the function as exposed in Python. The function must return a new reference." msgstr "" -#: ../../c-api/structures.rst:222 msgid "The function signature is::" msgstr "" -#: ../../c-api/structures.rst:224 msgid "" "PyObject *PyCFunction(PyObject *self,\n" " PyObject *args);" msgstr "" -#: ../../c-api/structures.rst:229 -msgid "" -"Type of the functions used to implement Python callables in C with " -"signature :ref:`METH_VARARGS | METH_KEYWORDS `. " -"The function signature is::" +msgid "Type of the functions used to implement Python callables in C with signature :ref:`METH_VARARGS | METH_KEYWORDS `. The function signature is::" msgstr "" -#: ../../c-api/structures.rst:233 msgid "" "PyObject *PyCFunctionWithKeywords(PyObject *self,\n" " PyObject *args,\n" " PyObject *kwargs);" msgstr "" -#: ../../c-api/structures.rst:240 -msgid "" -"Type of the functions used to implement Python callables in C with " -"signature :c:macro:`METH_FASTCALL`. The function signature is::" +msgid "Type of the functions used to implement Python callables in C with signature :c:macro:`METH_FASTCALL`. The function signature is::" msgstr "" -#: ../../c-api/structures.rst:244 msgid "" "PyObject *PyCFunctionFast(PyObject *self,\n" " PyObject *const *args,\n" " Py_ssize_t nargs);" msgstr "" -#: ../../c-api/structures.rst:250 -msgid "" -"Type of the functions used to implement Python callables in C with " -"signature :ref:`METH_FASTCALL | METH_KEYWORDS `. The function signature is::" +msgid "Type of the functions used to implement Python callables in C with signature :ref:`METH_FASTCALL | METH_KEYWORDS `. The function signature is::" msgstr "" -#: ../../c-api/structures.rst:254 msgid "" "PyObject *PyCFunctionFastWithKeywords(PyObject *self,\n" " PyObject *const *args,\n" @@ -332,14 +193,9 @@ msgid "" " PyObject *kwnames);" msgstr "" -#: ../../c-api/structures.rst:261 -msgid "" -"Type of the functions used to implement Python callables in C with " -"signature :ref:`METH_METHOD | METH_FASTCALL | METH_KEYWORDS `. The function signature is::" +msgid "Type of the functions used to implement Python callables in C with signature :ref:`METH_METHOD | METH_FASTCALL | METH_KEYWORDS `. The function signature is::" msgstr "" -#: ../../c-api/structures.rst:265 msgid "" "PyObject *PyCMethod(PyObject *self,\n" " PyTypeObject *defining_class,\n" @@ -348,405 +204,192 @@ msgid "" " PyObject *kwnames)" msgstr "" -#: ../../c-api/structures.rst:276 -msgid "" -"Structure used to describe a method of an extension type. This structure " -"has four fields:" +msgid "Structure used to describe a method of an extension type. This structure has four fields:" msgstr "" -#: ../../c-api/structures.rst:281 msgid "Name of the method." msgstr "" -#: ../../c-api/structures.rst:285 msgid "Pointer to the C implementation." msgstr "" -#: ../../c-api/structures.rst:289 msgid "Flags bits indicating how the call should be constructed." msgstr "" -#: ../../c-api/structures.rst:293 msgid "Points to the contents of the docstring." msgstr "" -#: ../../c-api/structures.rst:295 -msgid "" -"The :c:member:`~PyMethodDef.ml_meth` is a C function pointer. The functions " -"may be of different types, but they always return :c:expr:`PyObject*`. If " -"the function is not of the :c:type:`PyCFunction`, the compiler will require " -"a cast in the method table. Even though :c:type:`PyCFunction` defines the " -"first parameter as :c:expr:`PyObject*`, it is common that the method " -"implementation uses the specific C type of the *self* object." +msgid "The :c:member:`~PyMethodDef.ml_meth` is a C function pointer. The functions may be of different types, but they always return :c:expr:`PyObject*`. If the function is not of the :c:type:`PyCFunction`, the compiler will require a cast in the method table. Even though :c:type:`PyCFunction` defines the first parameter as :c:expr:`PyObject*`, it is common that the method implementation uses the specific C type of the *self* object." msgstr "" -#: ../../c-api/structures.rst:303 -msgid "" -"The :c:member:`~PyMethodDef.ml_flags` field is a bitfield which can include " -"the following flags. The individual flags indicate either a calling " -"convention or a binding convention." +msgid "The :c:member:`~PyMethodDef.ml_flags` field is a bitfield which can include the following flags. The individual flags indicate either a calling convention or a binding convention." msgstr "" -#: ../../c-api/structures.rst:308 msgid "There are these calling conventions:" msgstr "" -#: ../../c-api/structures.rst:312 -msgid "" -"This is the typical calling convention, where the methods have the " -"type :c:type:`PyCFunction`. The function expects two :c:expr:`PyObject*` " -"values. The first one is the *self* object for methods; for module " -"functions, it is the module object. The second parameter (often called " -"*args*) is a tuple object representing all arguments. This parameter is " -"typically processed using :c:func:`PyArg_ParseTuple` " -"or :c:func:`PyArg_UnpackTuple`." +msgid "This is the typical calling convention, where the methods have the type :c:type:`PyCFunction`. The function expects two :c:expr:`PyObject*` values. The first one is the *self* object for methods; for module functions, it is the module object. The second parameter (often called *args*) is a tuple object representing all arguments. This parameter is typically processed using :c:func:`PyArg_ParseTuple` or :c:func:`PyArg_UnpackTuple`." msgstr "" -#: ../../c-api/structures.rst:322 -msgid "" -"Can only be used in certain combinations with other " -"flags: :ref:`METH_VARARGS | METH_KEYWORDS `, :ref:`METH_FASTCALL | METH_KEYWORDS ` and :ref:`METH_METHOD | METH_FASTCALL | METH_KEYWORDS " -"`." +msgid "Can only be used in certain combinations with other flags: :ref:`METH_VARARGS | METH_KEYWORDS `, :ref:`METH_FASTCALL | METH_KEYWORDS ` and :ref:`METH_METHOD | METH_FASTCALL | METH_KEYWORDS `." msgstr "" -#: ../../c-api/structures.rst:330 msgid ":c:expr:`METH_VARARGS | METH_KEYWORDS`" msgstr "" -#: ../../c-api/structures.rst:331 -msgid "" -"Methods with these flags must be of type :c:type:`PyCFunctionWithKeywords`. " -"The function expects three parameters: *self*, *args*, *kwargs* where " -"*kwargs* is a dictionary of all the keyword arguments or possibly ``NULL`` " -"if there are no keyword arguments. The parameters are typically processed " -"using :c:func:`PyArg_ParseTupleAndKeywords`." +msgid "Methods with these flags must be of type :c:type:`PyCFunctionWithKeywords`. The function expects three parameters: *self*, *args*, *kwargs* where *kwargs* is a dictionary of all the keyword arguments or possibly ``NULL`` if there are no keyword arguments. The parameters are typically processed using :c:func:`PyArg_ParseTupleAndKeywords`." msgstr "" -#: ../../c-api/structures.rst:340 -msgid "" -"Fast calling convention supporting only positional arguments. The methods " -"have the type :c:type:`PyCFunctionFast`. The first parameter is *self*, the " -"second parameter is a C array of :c:expr:`PyObject*` values indicating the " -"arguments and the third parameter is the number of arguments (the length of " -"the array)." +msgid "Fast calling convention supporting only positional arguments. The methods have the type :c:type:`PyCFunctionFast`. The first parameter is *self*, the second parameter is a C array of :c:expr:`PyObject*` values indicating the arguments and the third parameter is the number of arguments (the length of the array)." msgstr "" -#: ../../c-api/structures.rst:350 msgid "``METH_FASTCALL`` is now part of the :ref:`stable ABI `." msgstr "" -#: ../../c-api/structures.rst:355 msgid ":c:expr:`METH_FASTCALL | METH_KEYWORDS`" msgstr "" -#: ../../c-api/structures.rst:356 -msgid "" -"Extension of :c:macro:`METH_FASTCALL` supporting also keyword arguments, " -"with methods of type :c:type:`PyCFunctionFastWithKeywords`. Keyword " -"arguments are passed the same way as in the :ref:`vectorcall protocol " -"`: there is an additional fourth :c:expr:`PyObject*` parameter " -"which is a tuple representing the names of the keyword arguments (which are " -"guaranteed to be strings) or possibly ``NULL`` if there are no keywords. " -"The values of the keyword arguments are stored in the *args* array, after " -"the positional arguments." +msgid "Extension of :c:macro:`METH_FASTCALL` supporting also keyword arguments, with methods of type :c:type:`PyCFunctionFastWithKeywords`. Keyword arguments are passed the same way as in the :ref:`vectorcall protocol `: there is an additional fourth :c:expr:`PyObject*` parameter which is a tuple representing the names of the keyword arguments (which are guaranteed to be strings) or possibly ``NULL`` if there are no keywords. The values of the keyword arguments are stored in the *args* array, after the positional arguments." msgstr "" -#: ../../c-api/structures.rst:371 -msgid "" -"Can only be used in the combination with other flags: :ref:`METH_METHOD | " -"METH_FASTCALL | METH_KEYWORDS `." +msgid "Can only be used in the combination with other flags: :ref:`METH_METHOD | METH_FASTCALL | METH_KEYWORDS `." msgstr "" -#: ../../c-api/structures.rst:377 msgid ":c:expr:`METH_METHOD | METH_FASTCALL | METH_KEYWORDS`" msgstr "" -#: ../../c-api/structures.rst:378 -msgid "" -"Extension of :ref:`METH_FASTCALL | METH_KEYWORDS ` supporting the *defining class*, that is, the class that " -"contains the method in question. The defining class might be a superclass of " -"``Py_TYPE(self)``." +msgid "Extension of :ref:`METH_FASTCALL | METH_KEYWORDS ` supporting the *defining class*, that is, the class that contains the method in question. The defining class might be a superclass of ``Py_TYPE(self)``." msgstr "" -#: ../../c-api/structures.rst:383 -msgid "" -"The method needs to be of type :c:type:`PyCMethod`, the same as for " -"``METH_FASTCALL | METH_KEYWORDS`` with ``defining_class`` argument added " -"after ``self``." +msgid "The method needs to be of type :c:type:`PyCMethod`, the same as for ``METH_FASTCALL | METH_KEYWORDS`` with ``defining_class`` argument added after ``self``." msgstr "" -#: ../../c-api/structures.rst:392 -msgid "" -"Methods without parameters don't need to check whether arguments are given " -"if they are listed with the :c:macro:`METH_NOARGS` flag. They need to be of " -"type :c:type:`PyCFunction`. The first parameter is typically named *self* " -"and will hold a reference to the module or object instance. In all cases " -"the second parameter will be ``NULL``." +msgid "Methods without parameters don't need to check whether arguments are given if they are listed with the :c:macro:`METH_NOARGS` flag. They need to be of type :c:type:`PyCFunction`. The first parameter is typically named *self* and will hold a reference to the module or object instance. In all cases the second parameter will be ``NULL``." msgstr "" -#: ../../c-api/structures.rst:398 -msgid "" -"The function must have 2 parameters. Since the second parameter is " -"unused, :c:macro:`Py_UNUSED` can be used to prevent a compiler warning." +msgid "The function must have 2 parameters. Since the second parameter is unused, :c:macro:`Py_UNUSED` can be used to prevent a compiler warning." msgstr "" -#: ../../c-api/structures.rst:404 -msgid "" -"Methods with a single object argument can be listed with " -"the :c:macro:`METH_O` flag, instead of invoking :c:func:`PyArg_ParseTuple` " -"with a ``\"O\"`` argument. They have the type :c:type:`PyCFunction`, with " -"the *self* parameter, and a :c:expr:`PyObject*` parameter representing the " -"single argument." +msgid "Methods with a single object argument can be listed with the :c:macro:`METH_O` flag, instead of invoking :c:func:`PyArg_ParseTuple` with a ``\"O\"`` argument. They have the type :c:type:`PyCFunction`, with the *self* parameter, and a :c:expr:`PyObject*` parameter representing the single argument." msgstr "" -#: ../../c-api/structures.rst:410 -msgid "" -"These two constants are not used to indicate the calling convention but the " -"binding when used with methods of classes. These may not be used for " -"functions defined for modules. At most one of these flags may be set for " -"any given method." +msgid "These two constants are not used to indicate the calling convention but the binding when used with methods of classes. These may not be used for functions defined for modules. At most one of these flags may be set for any given method." msgstr "" -#: ../../c-api/structures.rst:420 -msgid "" -"The method will be passed the type object as the first parameter rather than " -"an instance of the type. This is used to create *class methods*, similar to " -"what is created when using the :deco:`classmethod` built-in decorator." +msgid "The method will be passed the type object as the first parameter rather than an instance of the type. This is used to create *class methods*, similar to what is created when using the :deco:`classmethod` built-in decorator." msgstr "" -#: ../../c-api/structures.rst:430 -msgid "" -"The method will be passed ``NULL`` as the first parameter rather than an " -"instance of the type. This is used to create *static methods*, similar to " -"what is created when using the :deco:`staticmethod` built-in decorator." +msgid "The method will be passed ``NULL`` as the first parameter rather than an instance of the type. This is used to create *static methods*, similar to what is created when using the :deco:`staticmethod` built-in decorator." msgstr "" -#: ../../c-api/structures.rst:434 -msgid "" -"One other constant controls whether a method is loaded in place of another " -"definition with the same method name." +msgid "One other constant controls whether a method is loaded in place of another definition with the same method name." msgstr "" -#: ../../c-api/structures.rst:440 -msgid "" -"The method will be loaded in place of existing definitions. Without " -"*METH_COEXIST*, the default is to skip repeated definitions. Since slot " -"wrappers are loaded before the method table, the existence of a " -"*sq_contains* slot, for example, would generate a wrapped method " -"named :meth:`~object.__contains__` and preclude the loading of a " -"corresponding PyCFunction with the same name. With the flag defined, the " -"PyCFunction will be loaded in place of the wrapper object and will co-exist " -"with the slot. This is helpful because calls to PyCFunctions are optimized " -"more than wrapper object calls." -msgstr "" - -#: ../../c-api/structures.rst:453 -msgid "" -"The type object corresponding to Python C method objects. This is available " -"as :class:`types.BuiltinMethodType` in the Python layer." +msgid "The method will be loaded in place of existing definitions. Without *METH_COEXIST*, the default is to skip repeated definitions. Since slot wrappers are loaded before the method table, the existence of a *sq_contains* slot, for example, would generate a wrapped method named :meth:`~object.__contains__` and preclude the loading of a corresponding PyCFunction with the same name. With the flag defined, the PyCFunction will be loaded in place of the wrapper object and will co-exist with the slot. This is helpful because calls to PyCFunctions are optimized more than wrapper object calls." msgstr "" -#: ../../c-api/structures.rst:459 -msgid "" -"Return true if *op* is an instance of the :c:type:`PyCMethod_Type` type or a " -"subtype of it. This function always succeeds." +msgid "The type object corresponding to Python C method objects. This is available as :class:`types.BuiltinMethodType` in the Python layer." msgstr "" -#: ../../c-api/structures.rst:465 -msgid "" -"This is the same as :c:func:`PyCMethod_Check`, but does not account for " -"subtypes." +msgid "Return true if *op* is an instance of the :c:type:`PyCMethod_Type` type or a subtype of it. This function always succeeds." msgstr "" -#: ../../c-api/structures.rst:471 -msgid "" -"Turn *ml* into a Python :term:`callable` object. The caller must ensure that " -"*ml* outlives the :term:`callable`. Typically, *ml* is defined as a static " -"variable." +msgid "This is the same as :c:func:`PyCMethod_Check`, but does not account for subtypes." msgstr "" -#: ../../c-api/structures.rst:475 -msgid "" -"The *self* parameter will be passed as the *self* argument to the C function " -"in ``ml->ml_meth`` when invoked. *self* can be ``NULL``." +msgid "Turn *ml* into a Python :term:`callable` object. The caller must ensure that *ml* outlives the :term:`callable`. Typically, *ml* is defined as a static variable." msgstr "" -#: ../../c-api/structures.rst:479 -msgid "" -"The :term:`callable` object's ``__module__`` attribute can be set from the " -"given *module* argument. *module* should be a Python string, which will be " -"used as name of the module the function is defined in. If unavailable, it " -"can be set to :const:`None` or ``NULL``." +msgid "The *self* parameter will be passed as the *self* argument to the C function in ``ml->ml_meth`` when invoked. *self* can be ``NULL``." +msgstr "" + +msgid "The :term:`callable` object's ``__module__`` attribute can be set from the given *module* argument. *module* should be a Python string, which will be used as name of the module the function is defined in. If unavailable, it can be set to :const:`None` or ``NULL``." msgstr "" -#: ../../c-api/structures.rst:485 msgid ":attr:`function.__module__`" msgstr "" -#: ../../c-api/structures.rst:487 -msgid "" -"The *cls* parameter will be passed as the *defining_class* argument to the C " -"function. Must be set if :c:macro:`METH_METHOD` is set on ``ml->ml_flags``." +msgid "The *cls* parameter will be passed as the *defining_class* argument to the C function. Must be set if :c:macro:`METH_METHOD` is set on ``ml->ml_flags``." msgstr "" -#: ../../c-api/structures.rst:496 -msgid "" -"The type object corresponding to Python C function objects. This is " -"available as :class:`types.BuiltinFunctionType` in the Python layer." +msgid "The type object corresponding to Python C function objects. This is available as :class:`types.BuiltinFunctionType` in the Python layer." msgstr "" -#: ../../c-api/structures.rst:502 -msgid "" -"Return true if *op* is an instance of the :c:type:`PyCFunction_Type` type or " -"a subtype of it. This function always succeeds." +msgid "Return true if *op* is an instance of the :c:type:`PyCFunction_Type` type or a subtype of it. This function always succeeds." msgstr "" -#: ../../c-api/structures.rst:508 -msgid "" -"This is the same as :c:func:`PyCFunction_Check`, but does not account for " -"subtypes." +msgid "This is the same as :c:func:`PyCFunction_Check`, but does not account for subtypes." msgstr "" -#: ../../c-api/structures.rst:514 msgid "Equivalent to ``PyCMethod_New(ml, self, module, NULL)``." msgstr "" -#: ../../c-api/structures.rst:519 msgid "Equivalent to ``PyCMethod_New(ml, self, NULL, NULL)``." msgstr "" -#: ../../c-api/structures.rst:524 -msgid "" -"Get the function's flags on *func* as they were passed " -"to :c:member:`~PyMethodDef.ml_flags`." +msgid "Get the function's flags on *func* as they were passed to :c:member:`~PyMethodDef.ml_flags`." msgstr "" -#: ../../c-api/structures.rst:527 ../../c-api/structures.rst:545 -#: ../../c-api/structures.rst:565 -msgid "" -"If *func* is not a C function object, this fails with an exception. *func* " -"must not be ``NULL``." +msgid "If *func* is not a C function object, this fails with an exception. *func* must not be ``NULL``." msgstr "" -#: ../../c-api/structures.rst:530 -msgid "" -"This function returns the function's flags on success, and ``-1`` with an " -"exception set on failure." +msgid "This function returns the function's flags on success, and ``-1`` with an exception set on failure." msgstr "" -#: ../../c-api/structures.rst:536 -msgid "" -"This is the same as :c:func:`PyCFunction_GetFlags`, but without error or " -"type checking." +msgid "This is the same as :c:func:`PyCFunction_GetFlags`, but without error or type checking." msgstr "" -#: ../../c-api/structures.rst:542 -msgid "" -"Get the function pointer on *func* as it was passed " -"to :c:member:`~PyMethodDef.ml_meth`." +msgid "Get the function pointer on *func* as it was passed to :c:member:`~PyMethodDef.ml_meth`." msgstr "" -#: ../../c-api/structures.rst:548 -msgid "" -"This function returns the function pointer on success, and ``NULL`` with an " -"exception set on failure." +msgid "This function returns the function pointer on success, and ``NULL`` with an exception set on failure." msgstr "" -#: ../../c-api/structures.rst:554 -msgid "" -"This is the same as :c:func:`PyCFunction_GetFunction`, but without error or " -"type checking." +msgid "This is the same as :c:func:`PyCFunction_GetFunction`, but without error or type checking." msgstr "" -#: ../../c-api/structures.rst:560 -msgid "" -"Get the \"self\" object on *func*. This is the object that would be passed " -"to the first argument of a :c:type:`PyCFunction`. For C function objects " -"created through a :c:type:`PyMethodDef` on a :c:type:`PyModuleDef`, this is " -"the resulting module object." +msgid "Get the \"self\" object on *func*. This is the object that would be passed to the first argument of a :c:type:`PyCFunction`. For C function objects created through a :c:type:`PyMethodDef` on a :c:type:`PyModuleDef`, this is the resulting module object." msgstr "" -#: ../../c-api/structures.rst:568 -msgid "" -"This function returns a :term:`borrowed reference` to the \"self\" object on " -"success, and ``NULL`` with an exception set on failure." +msgid "This function returns a :term:`borrowed reference` to the \"self\" object on success, and ``NULL`` with an exception set on failure." msgstr "" -#: ../../c-api/structures.rst:574 -msgid "" -"This is the same as :c:func:`PyCFunction_GetSelf`, but without error or type " -"checking." +msgid "This is the same as :c:func:`PyCFunction_GetSelf`, but without error or type checking." msgstr "" -#: ../../c-api/structures.rst:579 msgid "Accessing attributes of extension types" msgstr "" -#: ../../c-api/structures.rst:583 -msgid "" -"Structure which describes an attribute of a type which corresponds to a C " -"struct member. When defining a class, put a NULL-terminated array of these " -"structures in the :c:member:`~PyTypeObject.tp_members` slot." +msgid "Structure which describes an attribute of a type which corresponds to a C struct member. When defining a class, put a NULL-terminated array of these structures in the :c:member:`~PyTypeObject.tp_members` slot." msgstr "" -#: ../../c-api/structures.rst:588 msgid "Its fields are, in order:" msgstr "" -#: ../../c-api/structures.rst:592 -msgid "" -"Name of the member. A NULL value marks the end of a ``PyMemberDef[]`` array." +msgid "Name of the member. A NULL value marks the end of a ``PyMemberDef[]`` array." msgstr "" -#: ../../c-api/structures.rst:595 msgid "The string should be static, no copy is made of it." msgstr "" -#: ../../c-api/structures.rst:599 -msgid "" -"The type of the member in the C struct. See :ref:`PyMemberDef-types` for the " -"possible values." +msgid "The type of the member in the C struct. See :ref:`PyMemberDef-types` for the possible values." msgstr "" -#: ../../c-api/structures.rst:604 -msgid "" -"The offset in bytes that the member is located on the type’s object struct." +msgid "The offset in bytes that the member is located on the type’s object struct." msgstr "" -#: ../../c-api/structures.rst:608 -msgid "" -"Zero or more of the :ref:`PyMemberDef-flags`, combined using bitwise OR." +msgid "Zero or more of the :ref:`PyMemberDef-flags`, combined using bitwise OR." msgstr "" -#: ../../c-api/structures.rst:612 -msgid "" -"The docstring, or NULL. The string should be static, no copy is made of it. " -"Typically, it is defined using :c:macro:`PyDoc_STR`." +msgid "The docstring, or NULL. The string should be static, no copy is made of it. Typically, it is defined using :c:macro:`PyDoc_STR`." msgstr "" -#: ../../c-api/structures.rst:616 -msgid "" -"By default (when :c:member:`~PyMemberDef.flags` is ``0``), members allow " -"both read and write access. Use the :c:macro:`Py_READONLY` flag for read-" -"only access. Certain types, like :c:macro:`Py_T_STRING`, " -"imply :c:macro:`Py_READONLY`. Only :c:macro:`Py_T_OBJECT_EX` (and " -"legacy :c:macro:`T_OBJECT`) members can be deleted." +msgid "By default (when :c:member:`~PyMemberDef.flags` is ``0``), members allow both read and write access. Use the :c:macro:`Py_READONLY` flag for read-only access. Certain types, like :c:macro:`Py_T_STRING`, imply :c:macro:`Py_READONLY`. Only :c:macro:`Py_T_OBJECT_EX` (and legacy :c:macro:`T_OBJECT`) members can be deleted." msgstr "" -#: ../../c-api/structures.rst:625 -msgid "" -"For heap-allocated types (created using :c:func:`PyType_FromSpec` or " -"similar), ``PyMemberDef`` may contain a definition for the special member " -"``\"__vectorcalloffset__\"``, corresponding " -"to :c:member:`~PyTypeObject.tp_vectorcall_offset` in type objects. This " -"member must be defined with ``Py_T_PYSSIZET``, and either ``Py_READONLY`` or " -"``Py_READONLY | Py_RELATIVE_OFFSET``. For example::" +msgid "For heap-allocated types (created using :c:func:`PyType_FromSpec` or similar), ``PyMemberDef`` may contain a definition for the special member ``\"__vectorcalloffset__\"``, corresponding to :c:member:`~PyTypeObject.tp_vectorcall_offset` in type objects. This member must be defined with ``Py_T_PYSSIZET``, and either ``Py_READONLY`` or ``Py_READONLY | Py_RELATIVE_OFFSET``. For example::" msgstr "" -#: ../../c-api/structures.rst:632 msgid "" "static PyMemberDef spam_type_members[] = {\n" " {\"__vectorcalloffset__\", Py_T_PYSSIZET,\n" @@ -755,439 +398,272 @@ msgid "" "};" msgstr "" -#: ../../c-api/structures.rst:638 msgid "(You may need to ``#include `` for :c:func:`!offsetof`.)" msgstr "" -#: ../../c-api/structures.rst:640 -msgid "" -"The legacy offsets :c:member:`~PyTypeObject.tp_dictoffset` " -"and :c:member:`~PyTypeObject.tp_weaklistoffset` can be defined similarly " -"using ``\"__dictoffset__\"`` and ``\"__weaklistoffset__\"`` members, but " -"extensions are strongly encouraged to use :c:macro:`Py_TPFLAGS_MANAGED_DICT` " -"and :c:macro:`Py_TPFLAGS_MANAGED_WEAKREF` instead." +msgid "The legacy offsets :c:member:`~PyTypeObject.tp_dictoffset` and :c:member:`~PyTypeObject.tp_weaklistoffset` can be defined similarly using ``\"__dictoffset__\"`` and ``\"__weaklistoffset__\"`` members, but extensions are strongly encouraged to use :c:macro:`Py_TPFLAGS_MANAGED_DICT` and :c:macro:`Py_TPFLAGS_MANAGED_WEAKREF` instead." msgstr "" -#: ../../c-api/structures.rst:648 -msgid "" -"``PyMemberDef`` is always available. Previously, it required including " -"``\"structmember.h\"``." +msgid "``PyMemberDef`` is always available. Previously, it required including ``\"structmember.h\"``." msgstr "" -#: ../../c-api/structures.rst:653 -msgid "" -":c:macro:`Py_RELATIVE_OFFSET` is now allowed for " -"``\"__vectorcalloffset__\"``, ``\"__dictoffset__\"`` and " -"``\"__weaklistoffset__\"``." +msgid ":c:macro:`Py_RELATIVE_OFFSET` is now allowed for ``\"__vectorcalloffset__\"``, ``\"__dictoffset__\"`` and ``\"__weaklistoffset__\"``." msgstr "" -#: ../../c-api/structures.rst:659 -msgid "" -"Get an attribute belonging to the object at address *obj_addr*. The " -"attribute is described by ``PyMemberDef`` *m*. Returns ``NULL`` on error." +msgid "Get an attribute belonging to the object at address *obj_addr*. The attribute is described by ``PyMemberDef`` *m*. Returns ``NULL`` on error." msgstr "" -#: ../../c-api/structures.rst:665 -msgid "" -"``PyMember_GetOne`` is always available. Previously, it required including " -"``\"structmember.h\"``." +msgid "``PyMember_GetOne`` is always available. Previously, it required including ``\"structmember.h\"``." msgstr "" -#: ../../c-api/structures.rst:670 -msgid "" -"Set an attribute belonging to the object at address *obj_addr* to object " -"*o*. The attribute to set is described by ``PyMemberDef`` *m*. Returns " -"``0`` if successful and a negative value on failure." +msgid "Set an attribute belonging to the object at address *obj_addr* to object *o*. The attribute to set is described by ``PyMemberDef`` *m*. Returns ``0`` if successful and a negative value on failure." msgstr "" -#: ../../c-api/structures.rst:676 -msgid "" -"``PyMember_SetOne`` is always available. Previously, it required including " -"``\"structmember.h\"``." +msgid "``PyMember_SetOne`` is always available. Previously, it required including ``\"structmember.h\"``." msgstr "" -#: ../../c-api/structures.rst:682 msgid "Member flags" msgstr "" -#: ../../c-api/structures.rst:684 msgid "The following flags can be used with :c:member:`PyMemberDef.flags`:" msgstr "" -#: ../../c-api/structures.rst:688 msgid "Not writable." msgstr "" -#: ../../c-api/structures.rst:692 -msgid "" -"Emit an ``object.__getattr__`` :ref:`audit event ` before " -"reading." +msgid "Emit an ``object.__getattr__`` :ref:`audit event ` before reading." msgstr "" -#: ../../c-api/structures.rst:697 -msgid "" -"Indicates that the :c:member:`~PyMemberDef.offset` of this ``PyMemberDef`` " -"entry indicates an offset from the subclass-specific data, rather than from " -"``PyObject``." +msgid "Indicates that the :c:member:`~PyMemberDef.offset` of this ``PyMemberDef`` entry indicates an offset from the subclass-specific data, rather than from ``PyObject``." msgstr "" -#: ../../c-api/structures.rst:701 -msgid "" -"Can only be used as part of the :c:data:`Py_tp_members` :c:type:`slot " -"` when creating a class using " -"negative :c:member:`~PyType_Spec.basicsize`. It is mandatory in that case. " -"When setting :c:member:`~PyTypeObject.tp_members` from the slot during class " -"creation, Python clears the flag and sets :c:member:`PyMemberDef.offset` to " -"the offset from the ``PyObject`` struct." +msgid "Can only be used as part of the :c:data:`Py_tp_members` :c:type:`slot ` when creating a class using negative :c:member:`~PyType_Spec.basicsize`. It is mandatory in that case. When setting :c:member:`~PyTypeObject.tp_members` from the slot during class creation, Python clears the flag and sets :c:member:`PyMemberDef.offset` to the offset from the ``PyObject`` struct." msgstr "" -#: ../../c-api/structures.rst:716 -msgid "" -"The :c:macro:`!RESTRICTED`, :c:macro:`!READ_RESTRICTED` and :c:macro:`!" -"WRITE_RESTRICTED` macros available with ``#include \"structmember.h\"`` are " -"deprecated. :c:macro:`!READ_RESTRICTED` and :c:macro:`!RESTRICTED` are " -"equivalent to :c:macro:`Py_AUDIT_READ`; :c:macro:`!WRITE_RESTRICTED` does " -"nothing." +msgid "The :c:macro:`!RESTRICTED`, :c:macro:`!READ_RESTRICTED` and :c:macro:`!WRITE_RESTRICTED` macros available with ``#include \"structmember.h\"`` are deprecated. :c:macro:`!READ_RESTRICTED` and :c:macro:`!RESTRICTED` are equivalent to :c:macro:`Py_AUDIT_READ`; :c:macro:`!WRITE_RESTRICTED` does nothing." msgstr "" -#: ../../c-api/structures.rst:727 -msgid "" -"The :c:macro:`!READONLY` macro was renamed to :c:macro:`Py_READONLY`. " -"The :c:macro:`!PY_AUDIT_READ` macro was renamed with the ``Py_`` prefix. The " -"new names are now always available. Previously, these required ``#include " -"\"structmember.h\"``. The header is still available and it provides the old " -"names." +msgid "The :c:macro:`!READONLY` macro was renamed to :c:macro:`Py_READONLY`. The :c:macro:`!PY_AUDIT_READ` macro was renamed with the ``Py_`` prefix. The new names are now always available. Previously, these required ``#include \"structmember.h\"``. The header is still available and it provides the old names." msgstr "" -#: ../../c-api/structures.rst:736 msgid "Member types" msgstr "" -#: ../../c-api/structures.rst:738 -msgid "" -":c:member:`PyMemberDef.type` can be one of the following macros " -"corresponding to various C types. When the member is accessed in Python, it " -"will be converted to the equivalent Python type. When it is set from Python, " -"it will be converted back to the C type. If that is not possible, an " -"exception such as :exc:`TypeError` or :exc:`ValueError` is raised." +msgid ":c:member:`PyMemberDef.type` can be one of the following macros corresponding to various C types. When the member is accessed in Python, it will be converted to the equivalent Python type. When it is set from Python, it will be converted back to the C type. If that is not possible, an exception such as :exc:`TypeError` or :exc:`ValueError` is raised." msgstr "" -#: ../../c-api/structures.rst:746 -msgid "" -"Unless marked (D), attributes defined this way cannot be deleted using " -"e.g. :keyword:`del` or :py:func:`delattr`." +msgid "Unless marked (D), attributes defined this way cannot be deleted using e.g. :keyword:`del` or :py:func:`delattr`." msgstr "" -#: ../../c-api/structures.rst:750 msgid "Macro name" msgstr "" -#: ../../c-api/structures.rst:750 msgid "C type" msgstr "" -#: ../../c-api/structures.rst:750 msgid "Python type" msgstr "" -#: ../../c-api/structures.rst:752 msgid ":c:expr:`char`" msgstr "" -#: ../../c-api/structures.rst:752 ../../c-api/structures.rst:753 -#: ../../c-api/structures.rst:754 ../../c-api/structures.rst:755 -#: ../../c-api/structures.rst:756 ../../c-api/structures.rst:757 -#: ../../c-api/structures.rst:758 ../../c-api/structures.rst:759 -#: ../../c-api/structures.rst:760 ../../c-api/structures.rst:761 -#: ../../c-api/structures.rst:762 msgid ":py:class:`int`" msgstr "" -#: ../../c-api/structures.rst:753 msgid ":c:expr:`short`" msgstr "" -#: ../../c-api/structures.rst:754 msgid ":c:expr:`int`" msgstr "" -#: ../../c-api/structures.rst:755 msgid ":c:expr:`long`" msgstr "" -#: ../../c-api/structures.rst:756 msgid ":c:expr:`long long`" msgstr "" -#: ../../c-api/structures.rst:757 msgid ":c:expr:`unsigned char`" msgstr "" -#: ../../c-api/structures.rst:758 msgid ":c:expr:`unsigned int`" msgstr "" -#: ../../c-api/structures.rst:759 msgid ":c:expr:`unsigned short`" msgstr "" -#: ../../c-api/structures.rst:760 msgid ":c:expr:`unsigned long`" msgstr "" -#: ../../c-api/structures.rst:761 msgid ":c:expr:`unsigned long long`" msgstr "" -#: ../../c-api/structures.rst:762 msgid ":c:expr:`Py_ssize_t`" msgstr "" -#: ../../c-api/structures.rst:763 msgid ":c:expr:`float`" msgstr "" -#: ../../c-api/structures.rst:763 ../../c-api/structures.rst:764 msgid ":py:class:`float`" msgstr "" -#: ../../c-api/structures.rst:764 msgid ":c:expr:`double`" msgstr "" -#: ../../c-api/structures.rst:765 msgid ":c:expr:`char` (written as 0 or 1)" msgstr "" -#: ../../c-api/structures.rst:765 msgid ":py:class:`bool`" msgstr "" -#: ../../c-api/structures.rst:767 msgid ":c:expr:`const char *` (*)" msgstr "" -#: ../../c-api/structures.rst:767 ../../c-api/structures.rst:768 msgid ":py:class:`str` (RO)" msgstr "" -#: ../../c-api/structures.rst:768 msgid ":c:expr:`const char[]` (*)" msgstr "" -#: ../../c-api/structures.rst:769 msgid ":c:expr:`char` (0-127)" msgstr "" -#: ../../c-api/structures.rst:769 msgid ":py:class:`str` (**)" msgstr "" -#: ../../c-api/structures.rst:770 msgid ":c:expr:`PyObject *`" msgstr "" -#: ../../c-api/structures.rst:770 msgid ":py:class:`object` (D)" msgstr "" -#: ../../c-api/structures.rst:773 -msgid "" -"(*): Zero-terminated, UTF8-encoded C string. With :c:macro:`!Py_T_STRING` " -"the C representation is a pointer; with :c:macro:`!Py_T_STRING_INPLACE` the " -"string is stored directly in the structure." +msgid "(*): Zero-terminated, UTF8-encoded C string. With :c:macro:`!Py_T_STRING` the C representation is a pointer; with :c:macro:`!Py_T_STRING_INPLACE` the string is stored directly in the structure." msgstr "" -#: ../../c-api/structures.rst:778 msgid "(**): String of length 1. Only ASCII is accepted." msgstr "" -#: ../../c-api/structures.rst:780 msgid "(RO): Implies :c:macro:`Py_READONLY`." msgstr "" -#: ../../c-api/structures.rst:782 -msgid "" -"(D): Can be deleted, in which case the pointer is set to ``NULL``. Reading a " -"``NULL`` pointer raises :py:exc:`AttributeError`." +msgid "(D): Can be deleted, in which case the pointer is set to ``NULL``. Reading a ``NULL`` pointer raises :py:exc:`AttributeError`." msgstr "" -#: ../../c-api/structures.rst:808 -msgid "" -"In previous versions, the macros were only available with ``#include " -"\"structmember.h\"`` and were named without the ``Py_`` prefix (e.g. as " -"``T_INT``). The header is still available and contains the old names, along " -"with the following deprecated types:" +msgid "In previous versions, the macros were only available with ``#include \"structmember.h\"`` and were named without the ``Py_`` prefix (e.g. as ``T_INT``). The header is still available and contains the old names, along with the following deprecated types:" msgstr "" -#: ../../c-api/structures.rst:816 -msgid "" -"Like ``Py_T_OBJECT_EX``, but ``NULL`` is converted to ``None``. This results " -"in surprising behavior in Python: deleting the attribute effectively sets it " -"to ``None``." +msgid "Like ``Py_T_OBJECT_EX``, but ``NULL`` is converted to ``None``. This results in surprising behavior in Python: deleting the attribute effectively sets it to ``None``." msgstr "" -#: ../../c-api/structures.rst:822 msgid "Always ``None``. Must be used with :c:macro:`Py_READONLY`." msgstr "" -#: ../../c-api/structures.rst:825 msgid "Defining Getters and Setters" msgstr "" -#: ../../c-api/structures.rst:829 -msgid "" -"Structure to define property-like access for a type. See also description of " -"the :c:member:`PyTypeObject.tp_getset` slot." +msgid "Structure to define property-like access for a type. See also description of the :c:member:`PyTypeObject.tp_getset` slot." msgstr "" -#: ../../c-api/structures.rst:834 msgid "attribute name" msgstr "" -#: ../../c-api/structures.rst:838 msgid "C function to get the attribute." msgstr "" -#: ../../c-api/structures.rst:842 -msgid "" -"Optional C function to set or delete the attribute. If ``NULL``, the " -"attribute is read-only." +msgid "Optional C function to set or delete the attribute. If ``NULL``, the attribute is read-only." msgstr "" -#: ../../c-api/structures.rst:847 msgid "optional docstring" msgstr "" -#: ../../c-api/structures.rst:851 -msgid "" -"Optional user data pointer, providing additional data for getter and setter." +msgid "Optional user data pointer, providing additional data for getter and setter." msgstr "" -#: ../../c-api/structures.rst:855 -msgid "" -"The ``get`` function takes one :c:expr:`PyObject*` parameter (the instance) " -"and a user data pointer (the associated ``closure``):" +msgid "The ``get`` function takes one :c:expr:`PyObject*` parameter (the instance) and a user data pointer (the associated ``closure``):" msgstr "" -#: ../../c-api/structures.rst:858 -msgid "" -"It should return a new reference on success or ``NULL`` with a set exception " -"on failure." +msgid "It should return a new reference on success or ``NULL`` with a set exception on failure." msgstr "" -#: ../../c-api/structures.rst:863 -msgid "" -"``set`` functions take two :c:expr:`PyObject*` parameters (the instance and " -"the value to be set) and a user data pointer (the associated ``closure``):" +msgid "``set`` functions take two :c:expr:`PyObject*` parameters (the instance and the value to be set) and a user data pointer (the associated ``closure``):" msgstr "" -#: ../../c-api/structures.rst:866 -msgid "" -"In case the attribute should be deleted the second parameter is ``NULL``. " -"Should return ``0`` on success or ``-1`` with a set exception on failure." +msgid "In case the attribute should be deleted the second parameter is ``NULL``. Should return ``0`` on success or ``-1`` with a set exception on failure." msgstr "" -#: ../../c-api/structures.rst:418 ../../c-api/structures.rst:428 msgid "built-in function" msgstr "" -#: ../../c-api/structures.rst:418 msgid "classmethod" msgstr "" -#: ../../c-api/structures.rst:428 msgid "staticmethod" msgstr "" -#: ../../c-api/structures.rst:709 msgid "READ_RESTRICTED (C macro)" msgstr "" -#: ../../c-api/structures.rst:709 msgid "WRITE_RESTRICTED (C macro)" msgstr "" -#: ../../c-api/structures.rst:709 msgid "RESTRICTED (C macro)" msgstr "" -#: ../../c-api/structures.rst:722 msgid "READONLY (C macro)" msgstr "" -#: ../../c-api/structures.rst:785 msgid "T_BYTE (C macro)" msgstr "" -#: ../../c-api/structures.rst:785 msgid "T_SHORT (C macro)" msgstr "" -#: ../../c-api/structures.rst:785 msgid "T_INT (C macro)" msgstr "" -#: ../../c-api/structures.rst:785 msgid "T_LONG (C macro)" msgstr "" -#: ../../c-api/structures.rst:785 msgid "T_LONGLONG (C macro)" msgstr "" -#: ../../c-api/structures.rst:785 msgid "T_UBYTE (C macro)" msgstr "" -#: ../../c-api/structures.rst:785 msgid "T_USHORT (C macro)" msgstr "" -#: ../../c-api/structures.rst:785 msgid "T_UINT (C macro)" msgstr "" -#: ../../c-api/structures.rst:785 msgid "T_ULONG (C macro)" msgstr "" -#: ../../c-api/structures.rst:785 msgid "T_ULONGULONG (C macro)" msgstr "" -#: ../../c-api/structures.rst:785 msgid "T_PYSSIZET (C macro)" msgstr "" -#: ../../c-api/structures.rst:785 msgid "T_FLOAT (C macro)" msgstr "" -#: ../../c-api/structures.rst:785 msgid "T_DOUBLE (C macro)" msgstr "" -#: ../../c-api/structures.rst:785 msgid "T_BOOL (C macro)" msgstr "" -#: ../../c-api/structures.rst:785 msgid "T_CHAR (C macro)" msgstr "" -#: ../../c-api/structures.rst:785 msgid "T_STRING (C macro)" msgstr "" -#: ../../c-api/structures.rst:785 msgid "T_STRING_INPLACE (C macro)" msgstr "" -#: ../../c-api/structures.rst:785 msgid "T_OBJECT_EX (C macro)" msgstr "" -#: ../../c-api/structures.rst:785 msgid "structmember.h" msgstr "" diff --git a/c-api/subinterpreters.po b/c-api/subinterpreters.po index 5de3b938..ddf903b2 100644 --- a/c-api/subinterpreters.po +++ b/c-api/subinterpreters.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2026-07-25 12:59+0330\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: none\n" @@ -19,187 +19,84 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../c-api/subinterpreters.rst:6 msgid "Multiple interpreters in a Python process" msgstr "" -#: ../../c-api/subinterpreters.rst:8 -msgid "" -"While in most uses, you will only embed a single Python interpreter, there " -"are cases where you need to create several independent interpreters in the " -"same process and perhaps even in the same thread. Sub-interpreters allow you " -"to do that." +msgid "While in most uses, you will only embed a single Python interpreter, there are cases where you need to create several independent interpreters in the same process and perhaps even in the same thread. Sub-interpreters allow you to do that." msgstr "" -#: ../../c-api/subinterpreters.rst:13 -msgid "" -"The \"main\" interpreter is the first one created when the runtime " -"initializes. It is usually the only Python interpreter in a process. Unlike " -"sub-interpreters, the main interpreter has unique process-global " -"responsibilities like signal handling. It is also responsible for execution " -"during runtime initialization and is usually the active interpreter during " -"runtime finalization. The :c:func:`PyInterpreterState_Main` function " -"returns a pointer to its state." +msgid "The \"main\" interpreter is the first one created when the runtime initializes. It is usually the only Python interpreter in a process. Unlike sub-interpreters, the main interpreter has unique process-global responsibilities like signal handling. It is also responsible for execution during runtime initialization and is usually the active interpreter during runtime finalization. The :c:func:`PyInterpreterState_Main` function returns a pointer to its state." msgstr "" -#: ../../c-api/subinterpreters.rst:20 -msgid "" -"You can switch between sub-interpreters using " -"the :c:func:`PyThreadState_Swap` function. You can create and destroy them " -"using the following functions:" +msgid "You can switch between sub-interpreters using the :c:func:`PyThreadState_Swap` function. You can create and destroy them using the following functions:" msgstr "" -#: ../../c-api/subinterpreters.rst:26 -msgid "" -"Structure containing most parameters to configure a sub-interpreter. Its " -"values are used only in :c:func:`Py_NewInterpreterFromConfig` and never " -"modified by the runtime." +msgid "Structure containing most parameters to configure a sub-interpreter. Its values are used only in :c:func:`Py_NewInterpreterFromConfig` and never modified by the runtime." msgstr "" -#: ../../c-api/subinterpreters.rst:32 msgid "Structure fields:" msgstr "" -#: ../../c-api/subinterpreters.rst:36 -msgid "" -"If this is ``0`` then the sub-interpreter will use its own \"object\" " -"allocator state. Otherwise it will use (share) the main interpreter's." +msgid "If this is ``0`` then the sub-interpreter will use its own \"object\" allocator state. Otherwise it will use (share) the main interpreter's." msgstr "" -#: ../../c-api/subinterpreters.rst:40 -msgid "" -"If this is ``0`` " -"then :c:member:`~PyInterpreterConfig.check_multi_interp_extensions` must be " -"``1`` (non-zero). If this is ``1`` then :c:member:`~PyInterpreterConfig.gil` " -"must not be :c:macro:`PyInterpreterConfig_OWN_GIL`." +msgid "If this is ``0`` then :c:member:`~PyInterpreterConfig.check_multi_interp_extensions` must be ``1`` (non-zero). If this is ``1`` then :c:member:`~PyInterpreterConfig.gil` must not be :c:macro:`PyInterpreterConfig_OWN_GIL`." msgstr "" -#: ../../c-api/subinterpreters.rst:48 -msgid "" -"If this is ``0`` then the runtime will not support forking the process in " -"any thread where the sub-interpreter is currently active. Otherwise fork is " -"unrestricted." +msgid "If this is ``0`` then the runtime will not support forking the process in any thread where the sub-interpreter is currently active. Otherwise fork is unrestricted." msgstr "" -#: ../../c-api/subinterpreters.rst:52 -msgid "" -"Note that the :mod:`subprocess` module still works when fork is disallowed." +msgid "Note that the :mod:`subprocess` module still works when fork is disallowed." msgstr "" -#: ../../c-api/subinterpreters.rst:57 -msgid "" -"If this is ``0`` then the runtime will not support replacing the current " -"process via exec (e.g. :func:`os.execv`) in any thread where the sub-" -"interpreter is currently active. Otherwise exec is unrestricted." +msgid "If this is ``0`` then the runtime will not support replacing the current process via exec (e.g. :func:`os.execv`) in any thread where the sub-interpreter is currently active. Otherwise exec is unrestricted." msgstr "" -#: ../../c-api/subinterpreters.rst:62 -msgid "" -"Note that the :mod:`subprocess` module still works when exec is disallowed." +msgid "Note that the :mod:`subprocess` module still works when exec is disallowed." msgstr "" -#: ../../c-api/subinterpreters.rst:67 -msgid "" -"If this is ``0`` then the sub-interpreter's :mod:`threading` module won't " -"create threads. Otherwise threads are allowed." +msgid "If this is ``0`` then the sub-interpreter's :mod:`threading` module won't create threads. Otherwise threads are allowed." msgstr "" -#: ../../c-api/subinterpreters.rst:73 -msgid "" -"If this is ``0`` then the sub-interpreter's :mod:`threading` module won't " -"create daemon threads. Otherwise daemon threads are allowed (as long " -"as :c:member:`~PyInterpreterConfig.allow_threads` is non-zero)." +msgid "If this is ``0`` then the sub-interpreter's :mod:`threading` module won't create daemon threads. Otherwise daemon threads are allowed (as long as :c:member:`~PyInterpreterConfig.allow_threads` is non-zero)." msgstr "" -#: ../../c-api/subinterpreters.rst:80 -msgid "" -"If this is ``0`` then all extension modules may be imported, including " -"legacy (single-phase init) modules, in any thread where the sub-interpreter " -"is currently active. Otherwise only multi-phase init extension modules " -"(see :pep:`489`) may be imported. (Also " -"see :c:macro:`Py_mod_multiple_interpreters`.)" +msgid "If this is ``0`` then all extension modules may be imported, including legacy (single-phase init) modules, in any thread where the sub-interpreter is currently active. Otherwise only multi-phase init extension modules (see :pep:`489`) may be imported. (Also see :c:macro:`Py_mod_multiple_interpreters`.)" msgstr "" -#: ../../c-api/subinterpreters.rst:87 -msgid "" -"This must be ``1`` (non-zero) " -"if :c:member:`~PyInterpreterConfig.use_main_obmalloc` is ``0``." +msgid "This must be ``1`` (non-zero) if :c:member:`~PyInterpreterConfig.use_main_obmalloc` is ``0``." msgstr "" -#: ../../c-api/subinterpreters.rst:92 -msgid "" -"This determines the operation of the GIL for the sub-interpreter. It may be " -"one of the following:" +msgid "This determines the operation of the GIL for the sub-interpreter. It may be one of the following:" msgstr "" -#: ../../c-api/subinterpreters.rst:99 msgid "Use the default selection (:c:macro:`PyInterpreterConfig_SHARED_GIL`)." msgstr "" -#: ../../c-api/subinterpreters.rst:103 msgid "Use (share) the main interpreter's GIL." msgstr "" -#: ../../c-api/subinterpreters.rst:107 msgid "Use the sub-interpreter's own GIL." msgstr "" -#: ../../c-api/subinterpreters.rst:109 -msgid "" -"If this is :c:macro:`PyInterpreterConfig_OWN_GIL` " -"then :c:member:`PyInterpreterConfig.use_main_obmalloc` must be ``0``." +msgid "If this is :c:macro:`PyInterpreterConfig_OWN_GIL` then :c:member:`PyInterpreterConfig.use_main_obmalloc` must be ``0``." msgstr "" -#: ../../c-api/subinterpreters.rst:123 -msgid "" -"Create a new sub-interpreter. This is an (almost) totally separate " -"environment for the execution of Python code. In particular, the new " -"interpreter has separate, independent versions of all imported modules, " -"including the fundamental modules :mod:`builtins`, :mod:`__main__` " -"and :mod:`sys`. The table of loaded modules (``sys.modules``) and the " -"module search path (``sys.path``) are also separate. The new environment " -"has no ``sys.argv`` variable. It has new standard I/O stream file objects " -"``sys.stdin``, ``sys.stdout`` and ``sys.stderr`` (however these refer to the " -"same underlying file descriptors)." -msgstr "" - -#: ../../c-api/subinterpreters.rst:133 -msgid "" -"The given *config* controls the options with which the interpreter is " -"initialized." +msgid "Create a new sub-interpreter. This is an (almost) totally separate environment for the execution of Python code. In particular, the new interpreter has separate, independent versions of all imported modules, including the fundamental modules :mod:`builtins`, :mod:`__main__` and :mod:`sys`. The table of loaded modules (``sys.modules``) and the module search path (``sys.path``) are also separate. The new environment has no ``sys.argv`` variable. It has new standard I/O stream file objects ``sys.stdin``, ``sys.stdout`` and ``sys.stderr`` (however these refer to the same underlying file descriptors)." msgstr "" -#: ../../c-api/subinterpreters.rst:136 -msgid "" -"Upon success, *tstate_p* will be set to the first :term:`thread state` " -"created in the new sub-interpreter. This thread state is :term:`attached " -"`. Note that no actual thread is created; see the " -"discussion of thread states below. If creation of the new interpreter is " -"unsuccessful, *tstate_p* is set to ``NULL``; no exception is set since the " -"exception state is stored in the :term:`attached thread state`, which might " -"not exist." +msgid "The given *config* controls the options with which the interpreter is initialized." msgstr "" -#: ../../c-api/subinterpreters.rst:145 -msgid "" -"Like all other Python/C API functions, an :term:`attached thread state` must " -"be present before calling this function, but it might be detached upon " -"returning. On success, the returned thread state will be :term:`attached " -"`. If the sub-interpreter is created with its " -"own :term:`GIL` then the :term:`attached thread state` of the calling " -"interpreter will be detached. When the function returns, the new " -"interpreter's :term:`thread state` will be :term:`attached ` to the current thread and the previous interpreter's :term:`attached " -"thread state` will remain detached." -msgstr "" - -#: ../../c-api/subinterpreters.rst:156 -msgid "" -"Sub-interpreters are most effective when isolated from each other, with " -"certain functionality restricted::" +msgid "Upon success, *tstate_p* will be set to the first :term:`thread state` created in the new sub-interpreter. This thread state is :term:`attached `. Note that no actual thread is created; see the discussion of thread states below. If creation of the new interpreter is unsuccessful, *tstate_p* is set to ``NULL``; no exception is set since the exception state is stored in the :term:`attached thread state`, which might not exist." +msgstr "" + +msgid "Like all other Python/C API functions, an :term:`attached thread state` must be present before calling this function, but it might be detached upon returning. On success, the returned thread state will be :term:`attached `. If the sub-interpreter is created with its own :term:`GIL` then the :term:`attached thread state` of the calling interpreter will be detached. When the function returns, the new interpreter's :term:`thread state` will be :term:`attached ` to the current thread and the previous interpreter's :term:`attached thread state` will remain detached." +msgstr "" + +msgid "Sub-interpreters are most effective when isolated from each other, with certain functionality restricted::" msgstr "" -#: ../../c-api/subinterpreters.rst:159 msgid "" "PyInterpreterConfig config = {\n" " .use_main_obmalloc = 0,\n" @@ -217,376 +114,182 @@ msgid "" "}" msgstr "" -#: ../../c-api/subinterpreters.rst:174 -msgid "" -"Note that the config is used only briefly and does not get modified. During " -"initialization the config's values are converted into " -"various :c:type:`PyInterpreterState` values. A read-only copy of the config " -"may be stored internally on the :c:type:`PyInterpreterState`." +msgid "Note that the config is used only briefly and does not get modified. During initialization the config's values are converted into various :c:type:`PyInterpreterState` values. A read-only copy of the config may be stored internally on the :c:type:`PyInterpreterState`." msgstr "" -#: ../../c-api/subinterpreters.rst:183 msgid "Extension modules are shared between (sub-)interpreters as follows:" msgstr "" -#: ../../c-api/subinterpreters.rst:185 -msgid "" -"For modules using multi-phase initialization, " -"e.g. :c:func:`PyModule_FromDefAndSpec`, a separate module object is created " -"and initialized for each interpreter. Only C-level static and global " -"variables are shared between these module objects." +msgid "For modules using multi-phase initialization, e.g. :c:func:`PyModule_FromDefAndSpec`, a separate module object is created and initialized for each interpreter. Only C-level static and global variables are shared between these module objects." msgstr "" -#: ../../c-api/subinterpreters.rst:191 -msgid "" -"For modules using legacy :ref:`single-phase initialization `, e.g. :c:func:`PyModule_Create`, the first time a " -"particular extension is imported, it is initialized normally, and a " -"(shallow) copy of its module's dictionary is squirreled away. When the same " -"extension is imported by another (sub-)interpreter, a new module is " -"initialized and filled with the contents of this copy; the extension's " -"``init`` function is not called. Objects in the module's dictionary thus end " -"up shared across (sub-)interpreters, which might cause unwanted behavior " -"(see `Bugs and caveats`_ below)." -msgstr "" - -#: ../../c-api/subinterpreters.rst:203 -msgid "" -"Note that this is different from what happens when an extension is imported " -"after the interpreter has been completely re-initialized by " -"calling :c:func:`Py_FinalizeEx` and :c:func:`Py_Initialize`; in that case, " -"the extension's ``initmodule`` function *is* called again. As with multi-" -"phase initialization, this means that only C-level static and global " -"variables are shared between these modules." +msgid "For modules using legacy :ref:`single-phase initialization `, e.g. :c:func:`PyModule_Create`, the first time a particular extension is imported, it is initialized normally, and a (shallow) copy of its module's dictionary is squirreled away. When the same extension is imported by another (sub-)interpreter, a new module is initialized and filled with the contents of this copy; the extension's ``init`` function is not called. Objects in the module's dictionary thus end up shared across (sub-)interpreters, which might cause unwanted behavior (see `Bugs and caveats`_ below)." msgstr "" -#: ../../c-api/subinterpreters.rst:223 -msgid "" -"Create a new sub-interpreter. This is essentially just a wrapper " -"around :c:func:`Py_NewInterpreterFromConfig` with a config that preserves " -"the existing behavior. The result is an unisolated sub-interpreter that " -"shares the main interpreter's GIL, allows fork/exec, allows daemon threads, " -"and allows single-phase init modules." +msgid "Note that this is different from what happens when an extension is imported after the interpreter has been completely re-initialized by calling :c:func:`Py_FinalizeEx` and :c:func:`Py_Initialize`; in that case, the extension's ``initmodule`` function *is* called again. As with multi-phase initialization, this means that only C-level static and global variables are shared between these modules." msgstr "" -#: ../../c-api/subinterpreters.rst:235 -msgid "" -"Destroy the (sub-)interpreter represented by the given :term:`thread state`. " -"The given thread state must be :term:`attached `. " -"When the call returns, there will be no :term:`attached thread state`. All " -"thread states associated with this interpreter are destroyed." +msgid "Create a new sub-interpreter. This is essentially just a wrapper around :c:func:`Py_NewInterpreterFromConfig` with a config that preserves the existing behavior. The result is an unisolated sub-interpreter that shares the main interpreter's GIL, allows fork/exec, allows daemon threads, and allows single-phase init modules." msgstr "" -#: ../../c-api/subinterpreters.rst:240 -msgid "" -":c:func:`Py_FinalizeEx` will destroy all sub-interpreters that haven't been " -"explicitly destroyed at that point." +msgid "Destroy the (sub-)interpreter represented by the given :term:`thread state`. The given thread state must be :term:`attached `. When the call returns, there will be no :term:`attached thread state`. All thread states associated with this interpreter are destroyed." +msgstr "" + +msgid ":c:func:`Py_FinalizeEx` will destroy all sub-interpreters that haven't been explicitly destroyed at that point." msgstr "" -#: ../../c-api/subinterpreters.rst:247 msgid "A per-interpreter GIL" msgstr "" -#: ../../c-api/subinterpreters.rst:251 -msgid "" -"Using :c:func:`Py_NewInterpreterFromConfig` you can create a sub-interpreter " -"that is completely isolated from other interpreters, including having its " -"own GIL. The most important benefit of this isolation is that such an " -"interpreter can execute Python code without being blocked by other " -"interpreters or blocking any others. Thus a single Python process can truly " -"take advantage of multiple CPU cores when running Python code. The " -"isolation also encourages a different approach to concurrency than that of " -"just using threads. (See :pep:`554` and :pep:`684`.)" +msgid "Using :c:func:`Py_NewInterpreterFromConfig` you can create a sub-interpreter that is completely isolated from other interpreters, including having its own GIL. The most important benefit of this isolation is that such an interpreter can execute Python code without being blocked by other interpreters or blocking any others. Thus a single Python process can truly take advantage of multiple CPU cores when running Python code. The isolation also encourages a different approach to concurrency than that of just using threads. (See :pep:`554` and :pep:`684`.)" msgstr "" -#: ../../c-api/subinterpreters.rst:261 -msgid "" -"Using an isolated interpreter requires vigilance in preserving that " -"isolation. That especially means not sharing any objects or mutable state " -"without guarantees about thread-safety. Even objects that are otherwise " -"immutable (e.g. ``None``, ``(1, 5)``) can't normally be shared because of " -"the refcount. One simple but less-efficient approach around this is to use " -"a global lock around all use of some state (or object). Alternately, " -"effectively immutable objects (like integers or strings) can be made safe in " -"spite of their refcounts by making them :term:`immortal`. In fact, this has " -"been done for the builtin singletons, small integers, and a number of other " -"builtin objects." -msgstr "" - -#: ../../c-api/subinterpreters.rst:272 -msgid "" -"If you preserve isolation then you will have access to proper multi-core " -"computing without the complications that come with free-threading. Failure " -"to preserve isolation will expose you to the full consequences of free-" -"threading, including races and hard-to-debug crashes." +msgid "Using an isolated interpreter requires vigilance in preserving that isolation. That especially means not sharing any objects or mutable state without guarantees about thread-safety. Even objects that are otherwise immutable (e.g. ``None``, ``(1, 5)``) can't normally be shared because of the refcount. One simple but less-efficient approach around this is to use a global lock around all use of some state (or object). Alternately, effectively immutable objects (like integers or strings) can be made safe in spite of their refcounts by making them :term:`immortal`. In fact, this has been done for the builtin singletons, small integers, and a number of other builtin objects." msgstr "" -#: ../../c-api/subinterpreters.rst:277 -msgid "" -"Aside from that, one of the main challenges of using multiple isolated " -"interpreters is how to communicate between them safely (not break isolation) " -"and efficiently. The runtime and stdlib do not provide any standard " -"approach to this yet. A future stdlib module would help mitigate the effort " -"of preserving isolation and expose effective tools for communicating (and " -"sharing) data between interpreters." +msgid "If you preserve isolation then you will have access to proper multi-core computing without the complications that come with free-threading. Failure to preserve isolation will expose you to the full consequences of free-threading, including races and hard-to-debug crashes." +msgstr "" + +msgid "Aside from that, one of the main challenges of using multiple isolated interpreters is how to communicate between them safely (not break isolation) and efficiently. The runtime and stdlib do not provide any standard approach to this yet. A future stdlib module would help mitigate the effort of preserving isolation and expose effective tools for communicating (and sharing) data between interpreters." msgstr "" -#: ../../c-api/subinterpreters.rst:286 msgid "Bugs and caveats" msgstr "" -#: ../../c-api/subinterpreters.rst:288 -msgid "" -"Because sub-interpreters (and the main interpreter) are part of the same " -"process, the insulation between them isn't perfect --- for example, using " -"low-level file operations like :func:`os.close` they can (accidentally or " -"maliciously) affect each other's open files. Because of the way extensions " -"are shared between (sub-)interpreters, some extensions may not work " -"properly; this is especially likely when using single-phase initialization " -"or (static) global variables. It is possible to insert objects created in " -"one sub-interpreter into a namespace of another (sub-)interpreter; this " -"should be avoided if possible." -msgstr "" - -#: ../../c-api/subinterpreters.rst:298 -msgid "" -"Special care should be taken to avoid sharing user-defined functions, " -"methods, instances or classes between sub-interpreters, since import " -"operations executed by such objects may affect the wrong (sub-)interpreter's " -"dictionary of loaded modules. It is equally important to avoid sharing " -"objects from which the above are reachable." +msgid "Because sub-interpreters (and the main interpreter) are part of the same process, the insulation between them isn't perfect --- for example, using low-level file operations like :func:`os.close` they can (accidentally or maliciously) affect each other's open files. Because of the way extensions are shared between (sub-)interpreters, some extensions may not work properly; this is especially likely when using single-phase initialization or (static) global variables. It is possible to insert objects created in one sub-interpreter into a namespace of another (sub-)interpreter; this should be avoided if possible." msgstr "" -#: ../../c-api/subinterpreters.rst:304 -msgid "" -"Also note that combining this functionality with ``PyGILState_*`` APIs is " -"delicate, because these APIs assume a bijection between Python thread states " -"and OS-level threads, an assumption broken by the presence of sub-" -"interpreters. It is highly recommended that you don't switch sub-" -"interpreters between a pair of matching :c:func:`PyGILState_Ensure` " -"and :c:func:`PyGILState_Release` calls. Furthermore, extensions (such " -"as :mod:`ctypes`) using these APIs to allow calling of Python code from non-" -"Python created threads will probably be broken when using sub-interpreters." +msgid "Special care should be taken to avoid sharing user-defined functions, methods, instances or classes between sub-interpreters, since import operations executed by such objects may affect the wrong (sub-)interpreter's dictionary of loaded modules. It is equally important to avoid sharing objects from which the above are reachable." +msgstr "" + +msgid "Also note that combining this functionality with ``PyGILState_*`` APIs is delicate, because these APIs assume a bijection between Python thread states and OS-level threads, an assumption broken by the presence of sub-interpreters. It is highly recommended that you don't switch sub-interpreters between a pair of matching :c:func:`PyGILState_Ensure` and :c:func:`PyGILState_Release` calls. Furthermore, extensions (such as :mod:`ctypes`) using these APIs to allow calling of Python code from non-Python created threads will probably be broken when using sub-interpreters." msgstr "" -#: ../../c-api/subinterpreters.rst:315 msgid "High-level APIs" msgstr "" -#: ../../c-api/subinterpreters.rst:319 -msgid "" -"This data structure represents the state shared by a number of cooperating " -"threads. Threads belonging to the same interpreter share their module " -"administration and a few other internal items. There are no public members " -"in this structure." +msgid "This data structure represents the state shared by a number of cooperating threads. Threads belonging to the same interpreter share their module administration and a few other internal items. There are no public members in this structure." msgstr "" -#: ../../c-api/subinterpreters.rst:324 -msgid "" -"Threads belonging to different interpreters initially share nothing, except " -"process state like available memory, open file descriptors and such. The " -"global interpreter lock is also shared by all threads, regardless of to " -"which interpreter they belong." +msgid "Threads belonging to different interpreters initially share nothing, except process state like available memory, open file descriptors and such. The global interpreter lock is also shared by all threads, regardless of to which interpreter they belong." msgstr "" -#: ../../c-api/subinterpreters.rst:331 -msgid "" -":pep:`684` introduced the possibility of a :ref:`per-interpreter GIL `. See :c:func:`Py_NewInterpreterFromConfig`." +msgid ":pep:`684` introduced the possibility of a :ref:`per-interpreter GIL `. See :c:func:`Py_NewInterpreterFromConfig`." msgstr "" -#: ../../c-api/subinterpreters.rst:338 msgid "Get the current interpreter." msgstr "" -#: ../../c-api/subinterpreters.rst:340 -msgid "" -"Issue a fatal error if there is no :term:`attached thread state`. It cannot " -"return NULL." +msgid "Issue a fatal error if there is no :term:`attached thread state`. It cannot return NULL." msgstr "" -#: ../../c-api/subinterpreters.rst:348 -msgid "" -"Return the interpreter's unique ID. If there was any error in doing so then " -"``-1`` is returned and an error is set." +msgid "Return the interpreter's unique ID. If there was any error in doing so then ``-1`` is returned and an error is set." msgstr "" -#: ../../c-api/subinterpreters.rst:351 msgid "The caller must have an :term:`attached thread state`." msgstr "" -#: ../../c-api/subinterpreters.rst:358 -msgid "" -"Return a dictionary in which interpreter-specific data may be stored. If " -"this function returns ``NULL`` then no exception has been raised and the " -"caller should assume no interpreter-specific dict is available." +msgid "Return a dictionary in which interpreter-specific data may be stored. If this function returns ``NULL`` then no exception has been raised and the caller should assume no interpreter-specific dict is available." msgstr "" -#: ../../c-api/subinterpreters.rst:362 -msgid "" -"This is not a replacement for :c:func:`PyModule_GetState()`, which " -"extensions should use to store interpreter-specific state information." +msgid "This is not a replacement for :c:func:`PyModule_GetState()`, which extensions should use to store interpreter-specific state information." msgstr "" -#: ../../c-api/subinterpreters.rst:365 -msgid "" -"The returned dictionary is borrowed from the interpreter and is valid until " -"interpreter shutdown." +msgid "The returned dictionary is borrowed from the interpreter and is valid until interpreter shutdown." msgstr "" -#: ../../c-api/subinterpreters.rst:373 msgid "Type of a frame evaluation function." msgstr "" -#: ../../c-api/subinterpreters.rst:375 -msgid "" -"The *throwflag* parameter is used by the ``throw()`` method of generators: " -"if non-zero, handle the current exception." +msgid "The *throwflag* parameter is used by the ``throw()`` method of generators: if non-zero, handle the current exception." msgstr "" -#: ../../c-api/subinterpreters.rst:378 msgid "The function now takes a *tstate* parameter." msgstr "" -#: ../../c-api/subinterpreters.rst:381 -msgid "" -"The *frame* parameter changed from ``PyFrameObject*`` to " -"``_PyInterpreterFrame*``." +msgid "The *frame* parameter changed from ``PyFrameObject*`` to ``_PyInterpreterFrame*``." msgstr "" -#: ../../c-api/subinterpreters.rst:387 msgid "Get the frame evaluation function." msgstr "" -#: ../../c-api/subinterpreters.rst:389 ../../c-api/subinterpreters.rst:398 msgid "See the :pep:`523` \"Adding a frame evaluation API to CPython\"." msgstr "" -#: ../../c-api/subinterpreters.rst:396 msgid "Set the frame evaluation function." msgstr "" -#: ../../c-api/subinterpreters.rst:404 msgid "Low-level APIs" msgstr "" -#: ../../c-api/subinterpreters.rst:406 -msgid "" -"All of the following functions must be called after :c:func:`Py_Initialize`." +msgid "All of the following functions must be called after :c:func:`Py_Initialize`." msgstr "" -#: ../../c-api/subinterpreters.rst:408 -msgid "" -":c:func:`Py_Initialize()` now initializes the :term:`GIL` and sets " -"an :term:`attached thread state`." +msgid ":c:func:`Py_Initialize()` now initializes the :term:`GIL` and sets an :term:`attached thread state`." msgstr "" -#: ../../c-api/subinterpreters.rst:415 -msgid "" -"Create a new interpreter state object. An :term:`attached thread state` is " -"not needed, but may optionally exist if it is necessary to serialize calls " -"to this function." +msgid "Create a new interpreter state object. An :term:`attached thread state` is not needed, but may optionally exist if it is necessary to serialize calls to this function." msgstr "" -#: ../../c-api/subinterpreters.rst:419 -msgid "" -"Raises an :ref:`auditing event ` " -"``cpython.PyInterpreterState_New`` with no arguments." +msgid "Raises an :ref:`auditing event ` ``cpython.PyInterpreterState_New`` with no arguments." msgstr "" -#: ../../c-api/subinterpreters.rst:424 -msgid "" -"Reset all information in an interpreter state object. There must be " -"an :term:`attached thread state` for the interpreter." +msgid "Reset all information in an interpreter state object. There must be an :term:`attached thread state` for the interpreter." msgstr "" -#: ../../c-api/subinterpreters.rst:427 -msgid "" -"Raises an :ref:`auditing event ` " -"``cpython.PyInterpreterState_Clear`` with no arguments." +msgid "Raises an :ref:`auditing event ` ``cpython.PyInterpreterState_Clear`` with no arguments." msgstr "" -#: ../../c-api/subinterpreters.rst:432 -msgid "" -"Destroy an interpreter state object. There **should not** be " -"an :term:`attached thread state` for the target interpreter. The interpreter " -"state must have been reset with a previous call " -"to :c:func:`PyInterpreterState_Clear`." +msgid "Destroy an interpreter state object. There **should not** be an :term:`attached thread state` for the target interpreter. The interpreter state must have been reset with a previous call to :c:func:`PyInterpreterState_Clear`." msgstr "" -#: ../../c-api/subinterpreters.rst:440 msgid "Advanced debugger support" msgstr "" -#: ../../c-api/subinterpreters.rst:442 -msgid "" -"These functions are only intended to be used by advanced debugging tools." +msgid "These functions are only intended to be used by advanced debugging tools." msgstr "" -#: ../../c-api/subinterpreters.rst:447 -msgid "" -"Return the interpreter state object at the head of the list of all such " -"objects." +msgid "Return the interpreter state object at the head of the list of all such objects." msgstr "" -#: ../../c-api/subinterpreters.rst:452 msgid "Return the main interpreter state object." msgstr "" -#: ../../c-api/subinterpreters.rst:457 -msgid "" -"Return the next interpreter state object after *interp* from the list of all " -"such objects." +msgid "Return the next interpreter state object after *interp* from the list of all such objects." msgstr "" -#: ../../c-api/subinterpreters.rst:463 -msgid "" -"Return the pointer to the first :c:type:`PyThreadState` object in the list " -"of threads associated with the interpreter *interp*." +msgid "Return the pointer to the first :c:type:`PyThreadState` object in the list of threads associated with the interpreter *interp*." msgstr "" -#: ../../c-api/subinterpreters.rst:469 -msgid "" -"Return the next thread state object after *tstate* from the list of all such " -"objects belonging to the same :c:type:`PyInterpreterState` object." +msgid "Return the next thread state object after *tstate* from the list of all such objects belonging to the same :c:type:`PyInterpreterState` object." msgstr "" -#: ../../c-api/subinterpreters.rst:115 ../../c-api/subinterpreters.rst:215 msgid "module" msgstr "" -#: ../../c-api/subinterpreters.rst:115 ../../c-api/subinterpreters.rst:215 msgid "builtins" msgstr "" -#: ../../c-api/subinterpreters.rst:115 ../../c-api/subinterpreters.rst:215 msgid "__main__" msgstr "" -#: ../../c-api/subinterpreters.rst:115 ../../c-api/subinterpreters.rst:215 msgid "sys" msgstr "" -#: ../../c-api/subinterpreters.rst:115 ../../c-api/subinterpreters.rst:215 msgid "stdout (in module sys)" msgstr "" -#: ../../c-api/subinterpreters.rst:115 ../../c-api/subinterpreters.rst:215 msgid "stderr (in module sys)" msgstr "" -#: ../../c-api/subinterpreters.rst:115 ../../c-api/subinterpreters.rst:215 msgid "stdin (in module sys)" msgstr "" -#: ../../c-api/subinterpreters.rst:179 ../../c-api/subinterpreters.rst:233 msgid "Py_FinalizeEx (C function)" msgstr "" -#: ../../c-api/subinterpreters.rst:179 msgid "Py_Initialize (C function)" msgstr "" -#: ../../c-api/subinterpreters.rst:210 msgid "close (in module os)" msgstr "" diff --git a/c-api/synchronization.po b/c-api/synchronization.po index 85025648..78cd1c0e 100644 --- a/c-api/synchronization.po +++ b/c-api/synchronization.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2026-07-25 12:59+0330\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: none\n" @@ -19,127 +19,60 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../c-api/synchronization.rst:6 msgid "Synchronization primitives" msgstr "" -#: ../../c-api/synchronization.rst:8 msgid "The C-API provides a basic mutual exclusion lock." msgstr "" -#: ../../c-api/synchronization.rst:12 -msgid "" -"A mutual exclusion lock. The :c:type:`!PyMutex` should be initialized to " -"zero to represent the unlocked state. For example::" +msgid "A mutual exclusion lock. The :c:type:`!PyMutex` should be initialized to zero to represent the unlocked state. For example::" msgstr "" -#: ../../c-api/synchronization.rst:15 msgid "PyMutex mutex = {0};" msgstr "" -#: ../../c-api/synchronization.rst:17 -msgid "" -"Instances of :c:type:`!PyMutex` should not be copied or moved. Both the " -"contents and address of a :c:type:`!PyMutex` are meaningful, and it must " -"remain at a fixed, writable location in memory." +msgid "Instances of :c:type:`!PyMutex` should not be copied or moved. Both the contents and address of a :c:type:`!PyMutex` are meaningful, and it must remain at a fixed, writable location in memory." msgstr "" -#: ../../c-api/synchronization.rst:23 -msgid "" -"A :c:type:`!PyMutex` currently occupies one byte, but the size should be " -"considered unstable. The size may change in future Python releases without " -"a deprecation period." +msgid "A :c:type:`!PyMutex` currently occupies one byte, but the size should be considered unstable. The size may change in future Python releases without a deprecation period." msgstr "" -#: ../../c-api/synchronization.rst:31 -msgid "" -"Lock mutex *m*. If another thread has already locked it, the calling thread " -"will block until the mutex is unlocked. While blocked, the thread will " -"temporarily detach the :term:`thread state ` if one " -"exists." +msgid "Lock mutex *m*. If another thread has already locked it, the calling thread will block until the mutex is unlocked. While blocked, the thread will temporarily detach the :term:`thread state ` if one exists." msgstr "" -#: ../../c-api/synchronization.rst:39 -msgid "" -"Unlock mutex *m*. The mutex must be locked --- otherwise, the function will " -"issue a fatal error." +msgid "Unlock mutex *m*. The mutex must be locked --- otherwise, the function will issue a fatal error." msgstr "" -#: ../../c-api/synchronization.rst:46 msgid "Returns non-zero if the mutex *m* is currently locked, zero otherwise." msgstr "" -#: ../../c-api/synchronization.rst:50 -msgid "" -"This function is intended for use in assertions and debugging only and " -"should not be used to make concurrency control decisions, as the lock state " -"may change immediately after the check." +msgid "This function is intended for use in assertions and debugging only and should not be used to make concurrency control decisions, as the lock state may change immediately after the check." msgstr "" -#: ../../c-api/synchronization.rst:59 msgid "Python critical section API" msgstr "" -#: ../../c-api/synchronization.rst:61 -msgid "" -"The critical section API provides a deadlock avoidance layer on top of per-" -"object locks for :term:`free-threaded ` CPython. They are " -"intended to replace reliance on the :term:`global interpreter lock`, and are " -"no-ops in versions of Python with the global interpreter lock." +msgid "The critical section API provides a deadlock avoidance layer on top of per-object locks for :term:`free-threaded ` CPython. They are intended to replace reliance on the :term:`global interpreter lock`, and are no-ops in versions of Python with the global interpreter lock." msgstr "" -#: ../../c-api/synchronization.rst:66 -msgid "" -"Critical sections are intended to be used for custom types implemented in C-" -"API extensions. They should generally not be used with built-in types " -"like :class:`list` and :class:`dict` because their public C-APIs already use " -"critical sections internally, with the notable exception " -"of :c:func:`PyDict_Next`, which requires critical section to be acquired " -"externally." +msgid "Critical sections are intended to be used for custom types implemented in C-API extensions. They should generally not be used with built-in types like :class:`list` and :class:`dict` because their public C-APIs already use critical sections internally, with the notable exception of :c:func:`PyDict_Next`, which requires critical section to be acquired externally." msgstr "" -#: ../../c-api/synchronization.rst:73 -msgid "" -"Critical sections avoid deadlocks by implicitly suspending active critical " -"sections, hence, they do not provide exclusive access such as provided by " -"traditional locks like :c:type:`PyMutex`. When a critical section is " -"started, the per-object lock for the object is acquired. If the code " -"executed inside the critical section calls C-API functions then it can " -"suspend the critical section thereby releasing the per-object lock, so other " -"threads can acquire the per-object lock for the same object." +msgid "Critical sections avoid deadlocks by implicitly suspending active critical sections, hence, they do not provide exclusive access such as provided by traditional locks like :c:type:`PyMutex`. When a critical section is started, the per-object lock for the object is acquired. If the code executed inside the critical section calls C-API functions then it can suspend the critical section thereby releasing the per-object lock, so other threads can acquire the per-object lock for the same object." msgstr "" -#: ../../c-api/synchronization.rst:81 -msgid "" -"Variants that accept :c:type:`PyMutex` pointers rather than Python objects " -"are also available. Use these variants to start a critical section in a " -"situation where there is no :c:type:`PyObject` -- for example, when working " -"with a C type that does not extend or wrap :c:type:`PyObject` but still " -"needs to call into the C API in a manner that might lead to deadlocks." +msgid "Variants that accept :c:type:`PyMutex` pointers rather than Python objects are also available. Use these variants to start a critical section in a situation where there is no :c:type:`PyObject` -- for example, when working with a C type that does not extend or wrap :c:type:`PyObject` but still needs to call into the C API in a manner that might lead to deadlocks." msgstr "" -#: ../../c-api/synchronization.rst:87 -msgid "" -"The functions and structs used by the macros are exposed for cases where C " -"macros are not available. They should only be used as in the given macro " -"expansions. Note that the sizes and contents of the structures may change in " -"future Python versions." +msgid "The functions and structs used by the macros are exposed for cases where C macros are not available. They should only be used as in the given macro expansions. Note that the sizes and contents of the structures may change in future Python versions." msgstr "" -#: ../../c-api/synchronization.rst:94 -msgid "" -"Operations that need to lock two objects at once must " -"use :c:macro:`Py_BEGIN_CRITICAL_SECTION2`. You *cannot* use nested critical " -"sections to lock more than one object at once, because the inner critical " -"section may suspend the outer critical sections. This API does not provide " -"a way to lock more than two objects at once." +msgid "Operations that need to lock two objects at once must use :c:macro:`Py_BEGIN_CRITICAL_SECTION2`. You *cannot* use nested critical sections to lock more than one object at once, because the inner critical section may suspend the outer critical sections. This API does not provide a way to lock more than two objects at once." msgstr "" -#: ../../c-api/synchronization.rst:100 msgid "Example usage::" msgstr "" -#: ../../c-api/synchronization.rst:102 msgid "" "static PyObject *\n" "set_field(MyObject *self, PyObject *value)\n" @@ -151,218 +84,135 @@ msgid "" "}" msgstr "" -#: ../../c-api/synchronization.rst:111 -msgid "" -"In the above example, :c:macro:`Py_SETREF` calls :c:macro:`Py_DECREF`, which " -"can call arbitrary code through an object's deallocation function. The " -"critical section API avoids potential deadlocks due to reentrancy and lock " -"ordering by allowing the runtime to temporarily suspend the critical section " -"if the code triggered by the finalizer blocks and " -"calls :c:func:`PyEval_SaveThread`." +msgid "In the above example, :c:macro:`Py_SETREF` calls :c:macro:`Py_DECREF`, which can call arbitrary code through an object's deallocation function. The critical section API avoids potential deadlocks due to reentrancy and lock ordering by allowing the runtime to temporarily suspend the critical section if the code triggered by the finalizer blocks and calls :c:func:`PyEval_SaveThread`." msgstr "" -#: ../../c-api/synchronization.rst:119 -msgid "" -"Acquires the per-object lock for the object *op* and begins a critical " -"section." +msgid "Acquires the per-object lock for the object *op* and begins a critical section." msgstr "" -#: ../../c-api/synchronization.rst:122 ../../c-api/synchronization.rst:136 -#: ../../c-api/synchronization.rst:153 ../../c-api/synchronization.rst:168 -#: ../../c-api/synchronization.rst:182 ../../c-api/synchronization.rst:199 msgid "In the free-threaded build, this macro expands to::" msgstr "" -#: ../../c-api/synchronization.rst:124 msgid "" "{\n" " PyCriticalSection _py_cs;\n" " PyCriticalSection_Begin(&_py_cs, (PyObject*)(op))" msgstr "" -#: ../../c-api/synchronization.rst:128 ../../c-api/synchronization.rst:174 msgid "In the default build, this macro expands to ``{``." msgstr "" -#: ../../c-api/synchronization.rst:134 msgid "Locks the mutex *m* and begins a critical section." msgstr "" -#: ../../c-api/synchronization.rst:138 msgid "" "{\n" " PyCriticalSection _py_cs;\n" " PyCriticalSection_BeginMutex(&_py_cs, m)" msgstr "" -#: ../../c-api/synchronization.rst:142 -msgid "" -"Note that unlike :c:macro:`Py_BEGIN_CRITICAL_SECTION`, there is no cast for " -"the argument of the macro - it must be a :c:type:`PyMutex` pointer." +msgid "Note that unlike :c:macro:`Py_BEGIN_CRITICAL_SECTION`, there is no cast for the argument of the macro - it must be a :c:type:`PyMutex` pointer." msgstr "" -#: ../../c-api/synchronization.rst:145 ../../c-api/synchronization.rst:191 msgid "On the default build, this macro expands to ``{``." msgstr "" -#: ../../c-api/synchronization.rst:151 msgid "Ends the critical section and releases the per-object lock." msgstr "" -#: ../../c-api/synchronization.rst:155 msgid "" " PyCriticalSection_End(&_py_cs);\n" "}" msgstr "" -#: ../../c-api/synchronization.rst:158 ../../c-api/synchronization.rst:204 msgid "In the default build, this macro expands to ``}``." msgstr "" -#: ../../c-api/synchronization.rst:164 -msgid "" -"Acquires the per-object locks for the objects *a* and *b* and begins a " -"critical section. The locks are acquired in a consistent order (lowest " -"address first) to avoid lock ordering deadlocks." +msgid "Acquires the per-object locks for the objects *a* and *b* and begins a critical section. The locks are acquired in a consistent order (lowest address first) to avoid lock ordering deadlocks." msgstr "" -#: ../../c-api/synchronization.rst:170 msgid "" "{\n" " PyCriticalSection2 _py_cs2;\n" " PyCriticalSection2_Begin(&_py_cs2, (PyObject*)(a), (PyObject*)(b))" msgstr "" -#: ../../c-api/synchronization.rst:180 msgid "Locks the mutexes *m1* and *m2* and begins a critical section." msgstr "" -#: ../../c-api/synchronization.rst:184 msgid "" "{\n" " PyCriticalSection2 _py_cs2;\n" " PyCriticalSection2_BeginMutex(&_py_cs2, m1, m2)" msgstr "" -#: ../../c-api/synchronization.rst:188 -msgid "" -"Note that unlike :c:macro:`Py_BEGIN_CRITICAL_SECTION2`, there is no cast for " -"the arguments of the macro - they must be :c:type:`PyMutex` pointers." +msgid "Note that unlike :c:macro:`Py_BEGIN_CRITICAL_SECTION2`, there is no cast for the arguments of the macro - they must be :c:type:`PyMutex` pointers." msgstr "" -#: ../../c-api/synchronization.rst:197 msgid "Ends the critical section and releases the per-object locks." msgstr "" -#: ../../c-api/synchronization.rst:201 msgid "" " PyCriticalSection2_End(&_py_cs2);\n" "}" msgstr "" -#: ../../c-api/synchronization.rst:210 msgid "Legacy locking APIs" msgstr "" -#: ../../c-api/synchronization.rst:212 -msgid "" -"These APIs are obsolete since Python 3.13 with the introduction " -"of :c:type:`PyMutex`." +msgid "These APIs are obsolete since Python 3.13 with the introduction of :c:type:`PyMutex`." msgstr "" -#: ../../c-api/synchronization.rst:218 msgid "A pointer to a mutual exclusion lock." msgstr "" -#: ../../c-api/synchronization.rst:223 msgid "The result of acquiring a lock with a timeout." msgstr "" -#: ../../c-api/synchronization.rst:229 msgid "Failed to acquire the lock." msgstr "" -#: ../../c-api/synchronization.rst:233 msgid "The lock was successfully acquired." msgstr "" -#: ../../c-api/synchronization.rst:237 msgid "The lock was interrupted by a signal." msgstr "" -#: ../../c-api/synchronization.rst:242 msgid "Allocate a new lock." msgstr "" -#: ../../c-api/synchronization.rst:244 -msgid "" -"On success, this function returns a lock; on failure, this function returns " -"``0`` without an exception set." +msgid "On success, this function returns a lock; on failure, this function returns ``0`` without an exception set." msgstr "" -#: ../../c-api/synchronization.rst:247 ../../c-api/synchronization.rst:255 -#: ../../c-api/synchronization.rst:275 ../../c-api/synchronization.rst:293 -#: ../../c-api/synchronization.rst:301 msgid "The caller does not need to hold an :term:`attached thread state`." msgstr "" -#: ../../c-api/synchronization.rst:252 -msgid "" -"Destroy *lock*. The lock should not be held by any thread when calling this." +msgid "Destroy *lock*. The lock should not be held by any thread when calling this." msgstr "" -#: ../../c-api/synchronization.rst:260 msgid "Acquire *lock* with a timeout." msgstr "" -#: ../../c-api/synchronization.rst:262 -msgid "" -"This will wait for *microseconds* microseconds to acquire the lock. If the " -"timeout expires, this function returns :c:enumerator:`PY_LOCK_FAILURE`. If " -"*microseconds* is ``-1``, this will wait indefinitely until the lock has " -"been released." +msgid "This will wait for *microseconds* microseconds to acquire the lock. If the timeout expires, this function returns :c:enumerator:`PY_LOCK_FAILURE`. If *microseconds* is ``-1``, this will wait indefinitely until the lock has been released." msgstr "" -#: ../../c-api/synchronization.rst:267 -msgid "" -"If *intr_flag* is ``1``, acquiring the lock may be interrupted by a signal, " -"in which case this function returns :c:enumerator:`PY_LOCK_INTR`. Upon " -"interruption, it's generally expected that the caller makes a call " -"to :c:func:`Py_MakePendingCalls` to propagate an exception to Python code." +msgid "If *intr_flag* is ``1``, acquiring the lock may be interrupted by a signal, in which case this function returns :c:enumerator:`PY_LOCK_INTR`. Upon interruption, it's generally expected that the caller makes a call to :c:func:`Py_MakePendingCalls` to propagate an exception to Python code." msgstr "" -#: ../../c-api/synchronization.rst:272 -msgid "" -"If the lock is successfully acquired, this function " -"returns :c:enumerator:`PY_LOCK_ACQUIRED`." +msgid "If the lock is successfully acquired, this function returns :c:enumerator:`PY_LOCK_ACQUIRED`." msgstr "" -#: ../../c-api/synchronization.rst:280 msgid "Acquire *lock*." msgstr "" -#: ../../c-api/synchronization.rst:282 -msgid "" -"If *waitflag* is ``1`` and another thread currently holds the lock, this " -"function will wait until the lock can be acquired and will always return " -"``1``." +msgid "If *waitflag* is ``1`` and another thread currently holds the lock, this function will wait until the lock can be acquired and will always return ``1``." msgstr "" -#: ../../c-api/synchronization.rst:286 -msgid "" -"If *waitflag* is ``0`` and another thread holds the lock, this function will " -"not wait and instead return ``0``. If the lock is not held by any other " -"thread, then this function will acquire it and return ``1``." +msgid "If *waitflag* is ``0`` and another thread holds the lock, this function will not wait and instead return ``0``. If the lock is not held by any other thread, then this function will acquire it and return ``1``." msgstr "" -#: ../../c-api/synchronization.rst:290 -msgid "" -"Unlike :c:func:`PyThread_acquire_lock_timed`, acquiring the lock cannot be " -"interrupted by a signal." +msgid "Unlike :c:func:`PyThread_acquire_lock_timed`, acquiring the lock cannot be interrupted by a signal." msgstr "" -#: ../../c-api/synchronization.rst:298 -msgid "" -"Release *lock*. If *lock* is not held, then this function issues a fatal " -"error." +msgid "Release *lock*. If *lock* is not held, then this function issues a fatal error." msgstr "" diff --git a/c-api/sys.po b/c-api/sys.po index ebdda8f8..c78f1f1f 100644 --- a/c-api/sys.po +++ b/c-api/sys.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:50+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,562 +21,263 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../c-api/sys.rst:6 msgid "Operating System Utilities" msgstr "" -#: ../../c-api/sys.rst:11 -msgid "" -"Return the file system representation for *path*. If the object is " -"a :class:`str` or :class:`bytes` object, then a new :term:`strong reference` " -"is returned. If the object implements the :class:`os.PathLike` interface, " -"then :meth:`~os.PathLike.__fspath__` is returned as long as it is " -"a :class:`str` or :class:`bytes` object. Otherwise :exc:`TypeError` is " -"raised and ``NULL`` is returned." +msgid "Return the file system representation for *path*. If the object is a :class:`str` or :class:`bytes` object, then a new :term:`strong reference` is returned. If the object implements the :class:`os.PathLike` interface, then :meth:`~os.PathLike.__fspath__` is returned as long as it is a :class:`str` or :class:`bytes` object. Otherwise :exc:`TypeError` is raised and ``NULL`` is returned." msgstr "" -#: ../../c-api/sys.rst:24 -msgid "" -"Return true (nonzero) if the standard I/O file *fp* with name *filename* is " -"deemed interactive. This is the case for files for which " -"``isatty(fileno(fp))`` is true. If the :c:member:`PyConfig.interactive` is " -"non-zero, this function also returns true if the *filename* pointer is " -"``NULL`` or if the name is equal to one of the strings ``''`` or " -"``'???'``." +msgid "Return true (nonzero) if the standard I/O file *fp* with name *filename* is deemed interactive. This is the case for files for which ``isatty(fileno(fp))`` is true. If the :c:member:`PyConfig.interactive` is non-zero, this function also returns true if the *filename* pointer is ``NULL`` or if the name is equal to one of the strings ``''`` or ``'???'``." msgstr "" -#: ../../c-api/sys.rst:30 msgid "This function must not be called before Python is initialized." msgstr "" -#: ../../c-api/sys.rst:35 -msgid "" -"Function to prepare some internal state before a process fork. This should " -"be called before calling :c:func:`fork` or any similar function that clones " -"the current process. Only available on systems where :c:func:`fork` is " -"defined." +msgid "Function to prepare some internal state before a process fork. This should be called before calling :c:func:`fork` or any similar function that clones the current process. Only available on systems where :c:func:`fork` is defined." msgstr "" -#: ../../c-api/sys.rst:41 -msgid "" -"The C :c:func:`fork` call should only be made from the :ref:`\"main\" thread " -"` (of the :ref:`\"main\" interpreter `). The same is true for ``PyOS_BeforeFork()``." +msgid "The C :c:func:`fork` call should only be made from the :ref:`\"main\" thread ` (of the :ref:`\"main\" interpreter `). The same is true for ``PyOS_BeforeFork()``." msgstr "" -#: ../../c-api/sys.rst:51 -msgid "" -"Function to update some internal state after a process fork. This should be " -"called from the parent process after calling :c:func:`fork` or any similar " -"function that clones the current process, regardless of whether process " -"cloning was successful. Only available on systems where :c:func:`fork` is " -"defined." +msgid "Function to update some internal state after a process fork. This should be called from the parent process after calling :c:func:`fork` or any similar function that clones the current process, regardless of whether process cloning was successful. Only available on systems where :c:func:`fork` is defined." msgstr "" -#: ../../c-api/sys.rst:58 -msgid "" -"The C :c:func:`fork` call should only be made from the :ref:`\"main\" thread " -"` (of the :ref:`\"main\" interpreter `). The same is true for ``PyOS_AfterFork_Parent()``." +msgid "The C :c:func:`fork` call should only be made from the :ref:`\"main\" thread ` (of the :ref:`\"main\" interpreter `). The same is true for ``PyOS_AfterFork_Parent()``." msgstr "" -#: ../../c-api/sys.rst:68 -msgid "" -"Function to update internal interpreter state after a process fork. This " -"must be called from the child process after calling :c:func:`fork`, or any " -"similar function that clones the current process, if there is any chance the " -"process will call back into the Python interpreter. Only available on " -"systems where :c:func:`fork` is defined." +msgid "Function to update internal interpreter state after a process fork. This must be called from the child process after calling :c:func:`fork`, or any similar function that clones the current process, if there is any chance the process will call back into the Python interpreter. Only available on systems where :c:func:`fork` is defined." msgstr "" -#: ../../c-api/sys.rst:75 -msgid "" -"The C :c:func:`fork` call should only be made from the :ref:`\"main\" thread " -"` (of the :ref:`\"main\" interpreter `). The same is true for ``PyOS_AfterFork_Child()``." +msgid "The C :c:func:`fork` call should only be made from the :ref:`\"main\" thread ` (of the :ref:`\"main\" interpreter `). The same is true for ``PyOS_AfterFork_Child()``." msgstr "" -#: ../../c-api/sys.rst:83 -msgid "" -":func:`os.register_at_fork` allows registering custom Python functions to be " -"called by :c:func:`PyOS_BeforeFork()`, :c:func:`PyOS_AfterFork_Parent` " -"and :c:func:`PyOS_AfterFork_Child`." +msgid ":func:`os.register_at_fork` allows registering custom Python functions to be called by :c:func:`PyOS_BeforeFork()`, :c:func:`PyOS_AfterFork_Parent` and :c:func:`PyOS_AfterFork_Child`." msgstr "" -#: ../../c-api/sys.rst:90 -msgid "" -"Function to update some internal state after a process fork; this should be " -"called in the new process if the Python interpreter will continue to be " -"used. If a new executable is loaded into the new process, this function does " -"not need to be called." +msgid "Function to update some internal state after a process fork; this should be called in the new process if the Python interpreter will continue to be used. If a new executable is loaded into the new process, this function does not need to be called." msgstr "" -#: ../../c-api/sys.rst:95 msgid "This function is superseded by :c:func:`PyOS_AfterFork_Child()`." msgstr "" -#: ../../c-api/sys.rst:103 -msgid "" -"Return true when the interpreter runs out of stack space. This is a " -"reliable check, but is only available when :c:macro:`!USE_STACKCHECK` is " -"defined (currently on certain versions of Windows using the Microsoft Visual " -"C++ compiler). :c:macro:`!USE_STACKCHECK` will be defined automatically; you " -"should never change the definition in your own code." +msgid "Return true when the interpreter runs out of stack space. This is a reliable check, but is only available when :c:macro:`!USE_STACKCHECK` is defined (currently on certain versions of Windows using the Microsoft Visual C++ compiler). :c:macro:`!USE_STACKCHECK` will be defined automatically; you should never change the definition in your own code." msgstr "" -#: ../../c-api/sys.rst:115 -msgid "" -"Return the current signal handler for signal *i*. This is a thin wrapper " -"around either :c:func:`!sigaction` or :c:func:`!signal`. Do not call those " -"functions directly!" +msgid "Return the current signal handler for signal *i*. This is a thin wrapper around either :c:func:`!sigaction` or :c:func:`!signal`. Do not call those functions directly!" msgstr "" -#: ../../c-api/sys.rst:122 -msgid "" -"Set the signal handler for signal *i* to be *h*; return the old signal " -"handler. This is a thin wrapper around either :c:func:`!sigaction` " -"or :c:func:`!signal`. Do not call those functions directly!" +msgid "Set the signal handler for signal *i* to be *h*; return the old signal handler. This is a thin wrapper around either :c:func:`!sigaction` or :c:func:`!signal`. Do not call those functions directly!" msgstr "" -#: ../../c-api/sys.rst:129 msgid "Check if a :c:macro:`!SIGINT` signal has been received." msgstr "" -#: ../../c-api/sys.rst:131 -msgid "" -"Returns ``1`` if a :c:macro:`!SIGINT` has occurred and clears the signal " -"flag, or ``0`` otherwise." +msgid "Returns ``1`` if a :c:macro:`!SIGINT` has occurred and clears the signal flag, or ``0`` otherwise." msgstr "" -#: ../../c-api/sys.rst:134 -msgid "" -"In most cases, you should prefer :c:func:`PyErr_CheckSignals` over this " -"function. :c:func:`!PyErr_CheckSignals` invokes the appropriate signal " -"handlers for all pending signals, allowing Python code to handle the signal " -"properly. This function only detects :c:macro:`!SIGINT` and does not invoke " -"any Python signal handlers." +msgid "In most cases, you should prefer :c:func:`PyErr_CheckSignals` over this function. :c:func:`!PyErr_CheckSignals` invokes the appropriate signal handlers for all pending signals, allowing Python code to handle the signal properly. This function only detects :c:macro:`!SIGINT` and does not invoke any Python signal handlers." msgstr "" -#: ../../c-api/sys.rst:140 -msgid "" -"This function is async-signal-safe and this function cannot fail. The caller " -"must hold an :term:`attached thread state`." +msgid "This function is async-signal-safe and this function cannot fail. The caller must hold an :term:`attached thread state`." msgstr "" -#: ../../c-api/sys.rst:147 -msgid "" -"This function should not be called directly: use the :c:type:`PyConfig` API " -"with the :c:func:`PyConfig_SetBytesString` function which ensures " -"that :ref:`Python is preinitialized `." +msgid "This function should not be called directly: use the :c:type:`PyConfig` API with the :c:func:`PyConfig_SetBytesString` function which ensures that :ref:`Python is preinitialized `." msgstr "" -#: ../../c-api/sys.rst:151 ../../c-api/sys.rst:218 -msgid "" -"This function must not be called before :ref:`Python is preinitialized ` and so that the LC_CTYPE locale is properly configured: see " -"the :c:func:`Py_PreInitialize` function." +msgid "This function must not be called before :ref:`Python is preinitialized ` and so that the LC_CTYPE locale is properly configured: see the :c:func:`Py_PreInitialize` function." msgstr "" -#: ../../c-api/sys.rst:155 -msgid "" -"Decode a byte string from the :term:`filesystem encoding and error handler`. " -"If the error handler is :ref:`surrogateescape error handler " -"`, undecodable bytes are decoded as characters in range " -"U+DC80..U+DCFF; and if a byte sequence can be decoded as a surrogate " -"character, the bytes are escaped using the surrogateescape error handler " -"instead of decoding them." +msgid "Decode a byte string from the :term:`filesystem encoding and error handler`. If the error handler is :ref:`surrogateescape error handler `, undecodable bytes are decoded as characters in range U+DC80..U+DCFF; and if a byte sequence can be decoded as a surrogate character, the bytes are escaped using the surrogateescape error handler instead of decoding them." msgstr "" -#: ../../c-api/sys.rst:162 -msgid "" -"Return a pointer to a newly allocated wide character string, " -"use :c:func:`PyMem_RawFree` to free the memory. If size is not ``NULL``, " -"write the number of wide characters excluding the null character into " -"``*size``" +msgid "Return a pointer to a newly allocated wide character string, use :c:func:`PyMem_RawFree` to free the memory. If size is not ``NULL``, write the number of wide characters excluding the null character into ``*size``" msgstr "" -#: ../../c-api/sys.rst:166 -msgid "" -"Return ``NULL`` on decoding error or memory allocation error. If *size* is " -"not ``NULL``, ``*size`` is set to ``(size_t)-1`` on memory error or set to " -"``(size_t)-2`` on decoding error." +msgid "Return ``NULL`` on decoding error or memory allocation error. If *size* is not ``NULL``, ``*size`` is set to ``(size_t)-1`` on memory error or set to ``(size_t)-2`` on decoding error." msgstr "" -#: ../../c-api/sys.rst:170 ../../c-api/sys.rst:210 -msgid "" -"The :term:`filesystem encoding and error handler` are selected " -"by :c:func:`PyConfig_Read`: see :c:member:`~PyConfig.filesystem_encoding` " -"and :c:member:`~PyConfig.filesystem_errors` members of :c:type:`PyConfig`." +msgid "The :term:`filesystem encoding and error handler` are selected by :c:func:`PyConfig_Read`: see :c:member:`~PyConfig.filesystem_encoding` and :c:member:`~PyConfig.filesystem_errors` members of :c:type:`PyConfig`." msgstr "" -#: ../../c-api/sys.rst:174 -msgid "" -"Decoding errors should never happen, unless there is a bug in the C library." +msgid "Decoding errors should never happen, unless there is a bug in the C library." msgstr "" -#: ../../c-api/sys.rst:177 -msgid "" -"Use the :c:func:`Py_EncodeLocale` function to encode the character string " -"back to a byte string." +msgid "Use the :c:func:`Py_EncodeLocale` function to encode the character string back to a byte string." msgstr "" -#: ../../c-api/sys.rst:182 -msgid "" -"The :c:func:`PyUnicode_DecodeFSDefaultAndSize` " -"and :c:func:`PyUnicode_DecodeLocaleAndSize` functions." +msgid "The :c:func:`PyUnicode_DecodeFSDefaultAndSize` and :c:func:`PyUnicode_DecodeLocaleAndSize` functions." msgstr "" -#: ../../c-api/sys.rst:187 ../../c-api/sys.rst:229 -msgid "" -"The function now uses the UTF-8 encoding in the :ref:`Python UTF-8 Mode " -"`." +msgid "The function now uses the UTF-8 encoding in the :ref:`Python UTF-8 Mode `." msgstr "" -#: ../../c-api/sys.rst:191 -msgid "" -"The function now uses the UTF-8 encoding on Windows " -"if :c:member:`PyPreConfig.legacy_windows_fs_encoding` is zero;" +msgid "The function now uses the UTF-8 encoding on Windows if :c:member:`PyPreConfig.legacy_windows_fs_encoding` is zero;" msgstr "" -#: ../../c-api/sys.rst:198 -msgid "" -"Encode a wide character string to the :term:`filesystem encoding and error " -"handler`. If the error handler is :ref:`surrogateescape error handler " -"`, surrogate characters in the range U+DC80..U+DCFF are " -"converted to bytes 0x80..0xFF." +msgid "Encode a wide character string to the :term:`filesystem encoding and error handler`. If the error handler is :ref:`surrogateescape error handler `, surrogate characters in the range U+DC80..U+DCFF are converted to bytes 0x80..0xFF." msgstr "" -#: ../../c-api/sys.rst:203 -msgid "" -"Return a pointer to a newly allocated byte string, use :c:func:`PyMem_Free` " -"to free the memory. Return ``NULL`` on encoding error or memory allocation " -"error." +msgid "Return a pointer to a newly allocated byte string, use :c:func:`PyMem_Free` to free the memory. Return ``NULL`` on encoding error or memory allocation error." msgstr "" -#: ../../c-api/sys.rst:207 -msgid "" -"If error_pos is not ``NULL``, ``*error_pos`` is set to ``(size_t)-1`` on " -"success, or set to the index of the invalid character on encoding error." +msgid "If error_pos is not ``NULL``, ``*error_pos`` is set to ``(size_t)-1`` on success, or set to the index of the invalid character on encoding error." msgstr "" -#: ../../c-api/sys.rst:214 -msgid "" -"Use the :c:func:`Py_DecodeLocale` function to decode the bytes string back " -"to a wide character string." +msgid "Use the :c:func:`Py_DecodeLocale` function to decode the bytes string back to a wide character string." msgstr "" -#: ../../c-api/sys.rst:224 -msgid "" -"The :c:func:`PyUnicode_EncodeFSDefault` and :c:func:`PyUnicode_EncodeLocale` " -"functions." +msgid "The :c:func:`PyUnicode_EncodeFSDefault` and :c:func:`PyUnicode_EncodeLocale` functions." msgstr "" -#: ../../c-api/sys.rst:233 -msgid "" -"The function now uses the UTF-8 encoding on Windows " -"if :c:member:`PyPreConfig.legacy_windows_fs_encoding` is zero." +msgid "The function now uses the UTF-8 encoding on Windows if :c:member:`PyPreConfig.legacy_windows_fs_encoding` is zero." msgstr "" -#: ../../c-api/sys.rst:239 -msgid "" -"Similar to :c:func:`!fopen`, but *path* is a Python object and an exception " -"is set on error." +msgid "Similar to :c:func:`!fopen`, but *path* is a Python object and an exception is set on error." msgstr "" -#: ../../c-api/sys.rst:242 -msgid "" -"*path* must be a :class:`str` object, a :class:`bytes` object, or " -"a :term:`path-like object`." +msgid "*path* must be a :class:`str` object, a :class:`bytes` object, or a :term:`path-like object`." msgstr "" -#: ../../c-api/sys.rst:245 -msgid "" -"On success, return the new file pointer. On error, set an exception and " -"return ``NULL``." +msgid "On success, return the new file pointer. On error, set an exception and return ``NULL``." msgstr "" -#: ../../c-api/sys.rst:248 -msgid "" -"The file must be closed by :c:func:`Py_fclose` rather than calling " -"directly :c:func:`!fclose`." +msgid "The file must be closed by :c:func:`Py_fclose` rather than calling directly :c:func:`!fclose`." msgstr "" -#: ../../c-api/sys.rst:251 msgid "The file descriptor is created non-inheritable (:pep:`446`)." msgstr "" -#: ../../c-api/sys.rst:253 msgid "The caller must have an :term:`attached thread state`." msgstr "" -#: ../../c-api/sys.rst:260 msgid "Close a file that was opened by :c:func:`Py_fopen`." msgstr "" -#: ../../c-api/sys.rst:262 -msgid "" -"On success, return ``0``. On error, return ``EOF`` and ``errno`` is set to " -"indicate the error. In either case, any further access (including another " -"call to :c:func:`Py_fclose`) to the stream results in undefined behavior." +msgid "On success, return ``0``. On error, return ``EOF`` and ``errno`` is set to indicate the error. In either case, any further access (including another call to :c:func:`Py_fclose`) to the stream results in undefined behavior." msgstr "" -#: ../../c-api/sys.rst:273 msgid "System Functions" msgstr "" -#: ../../c-api/sys.rst:275 -msgid "" -"These are utility functions that make functionality from the :mod:`sys` " -"module accessible to C code. They all work with the current interpreter " -"thread's :mod:`sys` module's dict, which is contained in the internal thread " -"state structure." +msgid "These are utility functions that make functionality from the :mod:`sys` module accessible to C code. They all work with the current interpreter thread's :mod:`sys` module's dict, which is contained in the internal thread state structure." msgstr "" -#: ../../c-api/sys.rst:281 -msgid "" -"Return the object *name* from the :mod:`sys` module or ``NULL`` if it does " -"not exist, without setting an exception." +msgid "Return the object *name* from the :mod:`sys` module or ``NULL`` if it does not exist, without setting an exception." msgstr "" -#: ../../c-api/sys.rst:286 -msgid "" -"Set *name* in the :mod:`sys` module to *v* unless *v* is ``NULL``, in which " -"case *name* is deleted from the sys module. Returns ``0`` on success, ``-1`` " -"on error." +msgid "Set *name* in the :mod:`sys` module to *v* unless *v* is ``NULL``, in which case *name* is deleted from the sys module. Returns ``0`` on success, ``-1`` on error." msgstr "" -#: ../../c-api/sys.rst:292 -msgid "" -"Reset :data:`sys.warnoptions` to an empty list. This function may be called " -"prior to :c:func:`Py_Initialize`." +msgid "Reset :data:`sys.warnoptions` to an empty list. This function may be called prior to :c:func:`Py_Initialize`." msgstr "" -#: ../../c-api/sys.rst:295 msgid "Clear :data:`sys.warnoptions` and :data:`!warnings.filters` instead." msgstr "" -#: ../../c-api/sys.rst:300 -msgid "" -"Write the output string described by *format* to :data:`sys.stdout`. No " -"exceptions are raised, even if truncation occurs (see below)." +msgid "Write the output string described by *format* to :data:`sys.stdout`. No exceptions are raised, even if truncation occurs (see below)." msgstr "" -#: ../../c-api/sys.rst:303 -msgid "" -"*format* should limit the total size of the formatted output string to 1000 " -"bytes or less -- after 1000 bytes, the output string is truncated. In " -"particular, this means that no unrestricted \"%s\" formats should occur; " -"these should be limited using \"%.s\" where is a decimal number " -"calculated so that plus the maximum size of other formatted text does " -"not exceed 1000 bytes. Also watch out for \"%f\", which can print hundreds " -"of digits for very large numbers." +msgid "*format* should limit the total size of the formatted output string to 1000 bytes or less -- after 1000 bytes, the output string is truncated. In particular, this means that no unrestricted \"%s\" formats should occur; these should be limited using \"%.s\" where is a decimal number calculated so that plus the maximum size of other formatted text does not exceed 1000 bytes. Also watch out for \"%f\", which can print hundreds of digits for very large numbers." msgstr "" -#: ../../c-api/sys.rst:311 -msgid "" -"If a problem occurs, or :data:`sys.stdout` is unset, the formatted message " -"is written to the real (C level) *stdout*." +msgid "If a problem occurs, or :data:`sys.stdout` is unset, the formatted message is written to the real (C level) *stdout*." msgstr "" -#: ../../c-api/sys.rst:316 -msgid "" -"As :c:func:`PySys_WriteStdout`, but write to :data:`sys.stderr` or *stderr* " -"instead." +msgid "As :c:func:`PySys_WriteStdout`, but write to :data:`sys.stderr` or *stderr* instead." msgstr "" -#: ../../c-api/sys.rst:321 -msgid "" -"Function similar to PySys_WriteStdout() but format the message " -"using :c:func:`PyUnicode_FromFormatV` and don't truncate the message to an " -"arbitrary length." +msgid "Function similar to PySys_WriteStdout() but format the message using :c:func:`PyUnicode_FromFormatV` and don't truncate the message to an arbitrary length." msgstr "" -#: ../../c-api/sys.rst:329 -msgid "" -"As :c:func:`PySys_FormatStdout`, but write to :data:`sys.stderr` or *stderr* " -"instead." +msgid "As :c:func:`PySys_FormatStdout`, but write to :data:`sys.stderr` or *stderr* instead." msgstr "" -#: ../../c-api/sys.rst:336 -msgid "" -"Return the current dictionary of :option:`-X` options, similarly " -"to :data:`sys._xoptions`. On error, ``NULL`` is returned and an exception " -"is set." +msgid "Return the current dictionary of :option:`-X` options, similarly to :data:`sys._xoptions`. On error, ``NULL`` is returned and an exception is set." msgstr "" -#: ../../c-api/sys.rst:345 -msgid "" -"Raise an auditing event with any active hooks. Return zero for success and " -"non-zero with an exception set on failure." +msgid "Raise an auditing event with any active hooks. Return zero for success and non-zero with an exception set on failure." msgstr "" -#: ../../c-api/sys.rst:348 msgid "The *event* string argument must not be *NULL*." msgstr "" -#: ../../c-api/sys.rst:350 -msgid "" -"If any hooks have been added, *format* and other arguments will be used to " -"construct a tuple to pass. Apart from ``N``, the same format characters as " -"used in :c:func:`Py_BuildValue` are available. If the built value is not a " -"tuple, it will be added into a single-element tuple." +msgid "If any hooks have been added, *format* and other arguments will be used to construct a tuple to pass. Apart from ``N``, the same format characters as used in :c:func:`Py_BuildValue` are available. If the built value is not a tuple, it will be added into a single-element tuple." msgstr "" -#: ../../c-api/sys.rst:355 -msgid "" -"The ``N`` format option must not be used. It consumes a reference, but since " -"there is no way to know whether arguments to this function will be consumed, " -"using it may cause reference leaks." +msgid "The ``N`` format option must not be used. It consumes a reference, but since there is no way to know whether arguments to this function will be consumed, using it may cause reference leaks." msgstr "" -#: ../../c-api/sys.rst:359 -msgid "" -"Note that ``#`` format characters should always be treated " -"as :c:type:`Py_ssize_t`, regardless of whether ``PY_SSIZE_T_CLEAN`` was " -"defined." +msgid "Note that ``#`` format characters should always be treated as :c:type:`Py_ssize_t`, regardless of whether ``PY_SSIZE_T_CLEAN`` was defined." msgstr "" -#: ../../c-api/sys.rst:362 msgid ":func:`sys.audit` performs the same function from Python code." msgstr "" -#: ../../c-api/sys.rst:364 msgid "See also :c:func:`PySys_AuditTuple`." msgstr "" -#: ../../c-api/sys.rst:370 -msgid "" -"Require :c:type:`Py_ssize_t` for ``#`` format characters. Previously, an " -"unavoidable deprecation warning was raised." +msgid "Require :c:type:`Py_ssize_t` for ``#`` format characters. Previously, an unavoidable deprecation warning was raised." msgstr "" -#: ../../c-api/sys.rst:376 -msgid "" -"Similar to :c:func:`PySys_Audit`, but pass arguments as a Python object. " -"*args* must be a :class:`tuple`. To pass no arguments, *args* can be *NULL*." +msgid "Similar to :c:func:`PySys_Audit`, but pass arguments as a Python object. *args* must be a :class:`tuple`. To pass no arguments, *args* can be *NULL*." msgstr "" -#: ../../c-api/sys.rst:384 -msgid "" -"Append the callable *hook* to the list of active auditing hooks. Return zero " -"on success and non-zero on failure. If the runtime has been initialized, " -"also set an error on failure. Hooks added through this API are called for " -"all interpreters created by the runtime." +msgid "Append the callable *hook* to the list of active auditing hooks. Return zero on success and non-zero on failure. If the runtime has been initialized, also set an error on failure. Hooks added through this API are called for all interpreters created by the runtime." msgstr "" -#: ../../c-api/sys.rst:390 -msgid "" -"The *userData* pointer is passed into the hook function. Since hook " -"functions may be called from different runtimes, this pointer should not " -"refer directly to Python state." +msgid "The *userData* pointer is passed into the hook function. Since hook functions may be called from different runtimes, this pointer should not refer directly to Python state." msgstr "" -#: ../../c-api/sys.rst:394 -msgid "" -"This function is safe to call before :c:func:`Py_Initialize`. When called " -"after runtime initialization, existing audit hooks are notified and may " -"silently abort the operation by raising an error subclassed " -"from :class:`Exception` (other errors will not be silenced)." +msgid "This function is safe to call before :c:func:`Py_Initialize`. When called after runtime initialization, existing audit hooks are notified and may silently abort the operation by raising an error subclassed from :class:`Exception` (other errors will not be silenced)." msgstr "" -#: ../../c-api/sys.rst:399 -msgid "" -"The hook function is always called with an :term:`attached thread state` by " -"the Python interpreter that raised the event." +msgid "The hook function is always called with an :term:`attached thread state` by the Python interpreter that raised the event." msgstr "" -#: ../../c-api/sys.rst:402 -msgid "" -"See :pep:`578` for a detailed description of auditing. Functions in the " -"runtime and standard library that raise events are listed in the :ref:`audit " -"events table `. Details are in each function's documentation." +msgid "See :pep:`578` for a detailed description of auditing. Functions in the runtime and standard library that raise events are listed in the :ref:`audit events table `. Details are in each function's documentation." msgstr "" -#: ../../c-api/sys.rst:407 ../../c-api/sys.rst:409 -msgid "" -"If the interpreter is initialized, this function raises an auditing event " -"``sys.addaudithook`` with no arguments. If any existing hooks raise an " -"exception derived from :class:`Exception`, the new hook will not be added " -"and the exception is cleared. As a result, callers cannot assume that their " -"hook has been added unless they control all existing hooks." +msgid "If the interpreter is initialized, this function raises an auditing event ``sys.addaudithook`` with no arguments. If any existing hooks raise an exception derived from :class:`Exception`, the new hook will not be added and the exception is cleared. As a result, callers cannot assume that their hook has been added unless they control all existing hooks." msgstr "" -#: ../../c-api/sys.rst:418 -msgid "" -"The type of the hook function. *event* is the C string event argument passed " -"to :c:func:`PySys_Audit` or :c:func:`PySys_AuditTuple`. *args* is guaranteed " -"to be a :c:type:`PyTupleObject`. *userData* is the argument passed to " -"PySys_AddAuditHook()." +msgid "The type of the hook function. *event* is the C string event argument passed to :c:func:`PySys_Audit` or :c:func:`PySys_AuditTuple`. *args* is guaranteed to be a :c:type:`PyTupleObject`. *userData* is the argument passed to PySys_AddAuditHook()." msgstr "" -#: ../../c-api/sys.rst:430 msgid "Process Control" msgstr "" -#: ../../c-api/sys.rst:437 -msgid "" -"Print a fatal error message and kill the process. No cleanup is performed. " -"This function should only be invoked when a condition is detected that would " -"make it dangerous to continue using the Python interpreter; e.g., when the " -"object administration appears to be corrupted. On Unix, the standard C " -"library function :c:func:`!abort` is called which will attempt to produce " -"a :file:`core` file." +msgid "Print a fatal error message and kill the process. No cleanup is performed. This function should only be invoked when a condition is detected that would make it dangerous to continue using the Python interpreter; e.g., when the object administration appears to be corrupted. On Unix, the standard C library function :c:func:`!abort` is called which will attempt to produce a :file:`core` file." msgstr "" -#: ../../c-api/sys.rst:444 -msgid "" -"The ``Py_FatalError()`` function is replaced with a macro which logs " -"automatically the name of the current function, unless the " -"``Py_LIMITED_API`` macro is defined." +msgid "The ``Py_FatalError()`` function is replaced with a macro which logs automatically the name of the current function, unless the ``Py_LIMITED_API`` macro is defined." msgstr "" -#: ../../c-api/sys.rst:448 msgid "Log the function name automatically." msgstr "" -#: ../../c-api/sys.rst:458 -msgid "" -"Exit the current process. This calls :c:func:`Py_FinalizeEx` and then calls " -"the standard C library function ``exit(status)``. " -"If :c:func:`Py_FinalizeEx` indicates an error, the exit status is set to 120." +msgid "Exit the current process. This calls :c:func:`Py_FinalizeEx` and then calls the standard C library function ``exit(status)``. If :c:func:`Py_FinalizeEx` indicates an error, the exit status is set to 120." msgstr "" -#: ../../c-api/sys.rst:462 msgid "Errors from finalization no longer ignored." msgstr "" -#: ../../c-api/sys.rst:472 -msgid "" -"Register a cleanup function to be called by :c:func:`Py_FinalizeEx`. The " -"cleanup function will be called with no arguments and should return no " -"value. At most 32 cleanup functions can be registered. When the " -"registration is successful, :c:func:`Py_AtExit` returns ``0``; on failure, " -"it returns ``-1``. The cleanup function registered last is called first. " -"Each cleanup function will be called at most once. Since Python's internal " -"finalization will have completed before the cleanup function, no Python APIs " -"should be called by *func*." +msgid "Register a cleanup function to be called by :c:func:`Py_FinalizeEx`. The cleanup function will be called with no arguments and should return no value. At most 32 cleanup functions can be registered. When the registration is successful, :c:func:`Py_AtExit` returns ``0``; on failure, it returns ``-1``. The cleanup function registered last is called first. Each cleanup function will be called at most once. Since Python's internal finalization will have completed before the cleanup function, no Python APIs should be called by *func*." msgstr "" -#: ../../c-api/sys.rst:482 msgid ":c:func:`PyUnstable_AtExit` for passing a ``void *data`` argument." msgstr "" -#: ../../c-api/sys.rst:101 msgid "USE_STACKCHECK (C macro)" msgstr "" -#: ../../c-api/sys.rst:435 msgid "abort (C function)" msgstr "" -#: ../../c-api/sys.rst:454 ../../c-api/sys.rst:468 msgid "Py_FinalizeEx (C function)" msgstr "" -#: ../../c-api/sys.rst:454 msgid "exit (C function)" msgstr "" -#: ../../c-api/sys.rst:468 msgid "cleanup functions" msgstr "" diff --git a/c-api/threads.po b/c-api/threads.po index ef891cdc..b7626dba 100644 --- a/c-api/threads.po +++ b/c-api/threads.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2026-07-25 12:59+0330\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: none\n" @@ -19,126 +19,63 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../c-api/threads.rst:6 msgid "Thread states and the global interpreter lock" msgstr "" -#: ../../c-api/threads.rst:13 -msgid "" -"Unless on a :term:`free-threaded build` of :term:`CPython`, the Python " -"interpreter is generally not thread-safe. In order to support multi-" -"threaded Python programs, there's a global lock, called the :term:`global " -"interpreter lock` or :term:`GIL`, that must be held by a thread before " -"accessing Python objects. Without the lock, even the simplest operations " -"could cause problems in a multi-threaded program: for example, when two " -"threads simultaneously increment the reference count of the same object, the " -"reference count could end up being incremented only once instead of twice." +msgid "Unless on a :term:`free-threaded build` of :term:`CPython`, the Python interpreter is generally not thread-safe. In order to support multi-threaded Python programs, there's a global lock, called the :term:`global interpreter lock` or :term:`GIL`, that must be held by a thread before accessing Python objects. Without the lock, even the simplest operations could cause problems in a multi-threaded program: for example, when two threads simultaneously increment the reference count of the same object, the reference count could end up being incremented only once instead of twice." msgstr "" -#: ../../c-api/threads.rst:22 -msgid "" -"As such, only a thread that holds the GIL may operate on Python objects or " -"invoke Python's C API." +msgid "As such, only a thread that holds the GIL may operate on Python objects or invoke Python's C API." msgstr "" -#: ../../c-api/threads.rst:27 -msgid "" -"In order to emulate concurrency, the interpreter regularly tries to switch " -"threads between bytecode instructions (see :func:`sys.setswitchinterval`). " -"This is why locks are also necessary for thread-safety in pure-Python code." +msgid "In order to emulate concurrency, the interpreter regularly tries to switch threads between bytecode instructions (see :func:`sys.setswitchinterval`). This is why locks are also necessary for thread-safety in pure-Python code." msgstr "" -#: ../../c-api/threads.rst:31 -msgid "" -"Additionally, the global interpreter lock is released around blocking I/O " -"operations, such as reading or writing to a file. From the C API, this is " -"done by :ref:`detaching the thread state `." +msgid "Additionally, the global interpreter lock is released around blocking I/O operations, such as reading or writing to a file. From the C API, this is done by :ref:`detaching the thread state `." msgstr "" -#: ../../c-api/threads.rst:39 -msgid "" -"The Python interpreter keeps some thread-local information inside a data " -"structure called :c:type:`PyThreadState`, known as a :term:`thread state`. " -"Each thread has a thread-local pointer to a :c:type:`PyThreadState`; a " -"thread state referenced by this pointer is considered to be :term:`attached " -"`." +msgid "The Python interpreter keeps some thread-local information inside a data structure called :c:type:`PyThreadState`, known as a :term:`thread state`. Each thread has a thread-local pointer to a :c:type:`PyThreadState`; a thread state referenced by this pointer is considered to be :term:`attached `." msgstr "" -#: ../../c-api/threads.rst:44 -msgid "" -"A thread can only have one :term:`attached thread state` at a time. An " -"attached thread state is typically analogous with holding the GIL, except on " -"free-threaded builds. On builds with the GIL enabled, attaching a thread " -"state will block until the GIL can be acquired. However, even on builds with " -"the GIL disabled, it is still required to have an attached thread state, as " -"the interpreter needs to keep track of which threads may access Python " -"objects." +msgid "A thread can only have one :term:`attached thread state` at a time. An attached thread state is typically analogous with holding the GIL, except on free-threaded builds. On builds with the GIL enabled, attaching a thread state will block until the GIL can be acquired. However, even on builds with the GIL disabled, it is still required to have an attached thread state, as the interpreter needs to keep track of which threads may access Python objects." msgstr "" -#: ../../c-api/threads.rst:53 -msgid "" -"Even on the free-threaded build, attaching a thread state may block, as the " -"GIL can be re-enabled or threads might be temporarily suspended (such as " -"during a garbage collection)." +msgid "Even on the free-threaded build, attaching a thread state may block, as the GIL can be re-enabled or threads might be temporarily suspended (such as during a garbage collection)." msgstr "" -#: ../../c-api/threads.rst:57 -msgid "" -"Generally, there will always be an attached thread state when using Python's " -"C API, including during embedding and when implementing methods, so it's " -"uncommon to need to set up a thread state on your own. Only in some specific " -"cases, such as in a :c:macro:`Py_BEGIN_ALLOW_THREADS` block or in a fresh " -"thread, will the thread not have an attached thread state. If uncertain, " -"check if :c:func:`PyThreadState_GetUnchecked` returns ``NULL``." +msgid "Generally, there will always be an attached thread state when using Python's C API, including during embedding and when implementing methods, so it's uncommon to need to set up a thread state on your own. Only in some specific cases, such as in a :c:macro:`Py_BEGIN_ALLOW_THREADS` block or in a fresh thread, will the thread not have an attached thread state. If uncertain, check if :c:func:`PyThreadState_GetUnchecked` returns ``NULL``." msgstr "" -#: ../../c-api/threads.rst:64 -msgid "" -"If it turns out that you do need to create a thread state, " -"call :c:func:`PyThreadState_New` followed by :c:func:`PyThreadState_Swap`, " -"or use the dangerous :c:func:`PyGILState_Ensure` function." +msgid "If it turns out that you do need to create a thread state, call :c:func:`PyThreadState_New` followed by :c:func:`PyThreadState_Swap`, or use the dangerous :c:func:`PyGILState_Ensure` function." msgstr "" -#: ../../c-api/threads.rst:72 msgid "Detaching the thread state from extension code" msgstr "" -#: ../../c-api/threads.rst:74 -msgid "" -"Most extension code manipulating the :term:`thread state` has the following " -"simple structure::" +msgid "Most extension code manipulating the :term:`thread state` has the following simple structure::" msgstr "" -#: ../../c-api/threads.rst:77 msgid "" "Save the thread state in a local variable.\n" "... Do some blocking I/O operation ...\n" "Restore the thread state from the local variable." msgstr "" -#: ../../c-api/threads.rst:81 msgid "This is so common that a pair of macros exists to simplify it::" msgstr "" -#: ../../c-api/threads.rst:83 msgid "" "Py_BEGIN_ALLOW_THREADS\n" "... Do some blocking I/O operation ...\n" "Py_END_ALLOW_THREADS" msgstr "" -#: ../../c-api/threads.rst:91 -msgid "" -"The :c:macro:`Py_BEGIN_ALLOW_THREADS` macro opens a new block and declares a " -"hidden local variable; the :c:macro:`Py_END_ALLOW_THREADS` macro closes the " -"block." +msgid "The :c:macro:`Py_BEGIN_ALLOW_THREADS` macro opens a new block and declares a hidden local variable; the :c:macro:`Py_END_ALLOW_THREADS` macro closes the block." msgstr "" -#: ../../c-api/threads.rst:95 msgid "The block above expands to the following code::" msgstr "" -#: ../../c-api/threads.rst:97 msgid "" "PyThreadState *_save;\n" "\n" @@ -147,137 +84,63 @@ msgid "" "PyEval_RestoreThread(_save);" msgstr "" -#: ../../c-api/threads.rst:107 msgid "Here is how these functions work:" msgstr "" -#: ../../c-api/threads.rst:109 -msgid "" -"The attached thread state implies that the GIL is held for the interpreter. " -"To detach it, :c:func:`PyEval_SaveThread` is called and the result is stored " -"in a local variable." +msgid "The attached thread state implies that the GIL is held for the interpreter. To detach it, :c:func:`PyEval_SaveThread` is called and the result is stored in a local variable." msgstr "" -#: ../../c-api/threads.rst:113 -msgid "" -"By detaching the thread state, the GIL is released, which allows other " -"threads to attach to the interpreter and execute while the current thread " -"performs blocking I/O. When the I/O operation is complete, the old thread " -"state is reattached by calling :c:func:`PyEval_RestoreThread`, which will " -"wait until the GIL can be acquired." +msgid "By detaching the thread state, the GIL is released, which allows other threads to attach to the interpreter and execute while the current thread performs blocking I/O. When the I/O operation is complete, the old thread state is reattached by calling :c:func:`PyEval_RestoreThread`, which will wait until the GIL can be acquired." msgstr "" -#: ../../c-api/threads.rst:120 -msgid "" -"Performing blocking I/O is the most common use case for detaching the thread " -"state, but it is also useful to call it over long-running native code that " -"doesn't need access to Python objects or Python's C API. For example, the " -"standard :mod:`zlib` and :mod:`hashlib` modules detach the :term:`thread " -"state ` when compressing or hashing data." +msgid "Performing blocking I/O is the most common use case for detaching the thread state, but it is also useful to call it over long-running native code that doesn't need access to Python objects or Python's C API. For example, the standard :mod:`zlib` and :mod:`hashlib` modules detach the :term:`thread state ` when compressing or hashing data." msgstr "" -#: ../../c-api/threads.rst:127 -msgid "" -"On a :term:`free-threaded build`, the :term:`GIL` is usually out of the " -"question, but **detaching the thread state is still required**, because the " -"interpreter periodically needs to block all threads to get a consistent view " -"of Python objects without the risk of race conditions. For example, CPython " -"currently suspends all threads for a short period of time while running the " -"garbage collector." +msgid "On a :term:`free-threaded build`, the :term:`GIL` is usually out of the question, but **detaching the thread state is still required**, because the interpreter periodically needs to block all threads to get a consistent view of Python objects without the risk of race conditions. For example, CPython currently suspends all threads for a short period of time while running the garbage collector." msgstr "" -#: ../../c-api/threads.rst:136 -msgid "" -"Detaching the thread state can lead to unexpected behavior during " -"interpreter finalization. See :ref:`cautions-regarding-runtime-finalization` " -"for more details." +msgid "Detaching the thread state can lead to unexpected behavior during interpreter finalization. See :ref:`cautions-regarding-runtime-finalization` for more details." msgstr "" -#: ../../c-api/threads.rst:142 msgid "APIs" msgstr "" -#: ../../c-api/threads.rst:144 -msgid "" -"The following macros are normally used without a trailing semicolon; look " -"for example usage in the Python source distribution." +msgid "The following macros are normally used without a trailing semicolon; look for example usage in the Python source distribution." msgstr "" -#: ../../c-api/threads.rst:149 -msgid "" -"These macros are still necessary on the :term:`free-threaded build` to " -"prevent deadlocks." +msgid "These macros are still necessary on the :term:`free-threaded build` to prevent deadlocks." msgstr "" -#: ../../c-api/threads.rst:154 -msgid "" -"This macro expands to ``{ PyThreadState *_save; _save = " -"PyEval_SaveThread();``. Note that it contains an opening brace; it must be " -"matched with a following :c:macro:`Py_END_ALLOW_THREADS` macro. See above " -"for further discussion of this macro." +msgid "This macro expands to ``{ PyThreadState *_save; _save = PyEval_SaveThread();``. Note that it contains an opening brace; it must be matched with a following :c:macro:`Py_END_ALLOW_THREADS` macro. See above for further discussion of this macro." msgstr "" -#: ../../c-api/threads.rst:162 -msgid "" -"This macro expands to ``PyEval_RestoreThread(_save); }``. Note that it " -"contains a closing brace; it must be matched with an " -"earlier :c:macro:`Py_BEGIN_ALLOW_THREADS` macro. See above for further " -"discussion of this macro." +msgid "This macro expands to ``PyEval_RestoreThread(_save); }``. Note that it contains a closing brace; it must be matched with an earlier :c:macro:`Py_BEGIN_ALLOW_THREADS` macro. See above for further discussion of this macro." msgstr "" -#: ../../c-api/threads.rst:170 -msgid "" -"This macro expands to ``PyEval_RestoreThread(_save);``: it is equivalent " -"to :c:macro:`Py_END_ALLOW_THREADS` without the closing brace." +msgid "This macro expands to ``PyEval_RestoreThread(_save);``: it is equivalent to :c:macro:`Py_END_ALLOW_THREADS` without the closing brace." msgstr "" -#: ../../c-api/threads.rst:176 -msgid "" -"This macro expands to ``_save = PyEval_SaveThread();``: it is equivalent " -"to :c:macro:`Py_BEGIN_ALLOW_THREADS` without the opening brace and variable " -"declaration." +msgid "This macro expands to ``_save = PyEval_SaveThread();``: it is equivalent to :c:macro:`Py_BEGIN_ALLOW_THREADS` without the opening brace and variable declaration." msgstr "" -#: ../../c-api/threads.rst:182 msgid "Non-Python created threads" msgstr "" -#: ../../c-api/threads.rst:184 -msgid "" -"When threads are created using the dedicated Python APIs (such as " -"the :mod:`threading` module), a thread state is automatically associated " -"with them, However, when a thread is created from native code (for example, " -"by a third-party library with its own thread management), it doesn't hold an " -"attached thread state." +msgid "When threads are created using the dedicated Python APIs (such as the :mod:`threading` module), a thread state is automatically associated with them, However, when a thread is created from native code (for example, by a third-party library with its own thread management), it doesn't hold an attached thread state." msgstr "" -#: ../../c-api/threads.rst:190 -msgid "" -"If you need to call Python code from these threads (often this will be part " -"of a callback API provided by the aforementioned third-party library), you " -"must first register these threads with the interpreter by creating a new " -"thread state and attaching it." +msgid "If you need to call Python code from these threads (often this will be part of a callback API provided by the aforementioned third-party library), you must first register these threads with the interpreter by creating a new thread state and attaching it." msgstr "" -#: ../../c-api/threads.rst:195 -msgid "" -"The most robust way to do this is through :c:func:`PyThreadState_New` " -"followed by :c:func:`PyThreadState_Swap`." +msgid "The most robust way to do this is through :c:func:`PyThreadState_New` followed by :c:func:`PyThreadState_Swap`." msgstr "" -#: ../../c-api/threads.rst:199 -msgid "" -"``PyThreadState_New`` requires an argument pointing to the desired " -"interpreter; such a pointer can be acquired via a call " -"to :c:func:`PyInterpreterState_Get` from the code where the thread was " -"created." +msgid "``PyThreadState_New`` requires an argument pointing to the desired interpreter; such a pointer can be acquired via a call to :c:func:`PyInterpreterState_Get` from the code where the thread was created." msgstr "" -#: ../../c-api/threads.rst:204 msgid "For example::" msgstr "" -#: ../../c-api/threads.rst:206 msgid "" "/* The return value of PyInterpreterState_Get() from the\n" " function that created this thread. */\n" @@ -299,44 +162,24 @@ msgid "" "PyThreadState_DeleteCurrent();" msgstr "" -#: ../../c-api/threads.rst:227 -msgid "" -"If the interpreter finalized before ``PyThreadState_Swap`` was called, then " -"``interp`` will be a dangling pointer!" +msgid "If the interpreter finalized before ``PyThreadState_Swap`` was called, then ``interp`` will be a dangling pointer!" msgstr "" -#: ../../c-api/threads.rst:233 msgid "Legacy API" msgstr "" -#: ../../c-api/threads.rst:235 -msgid "" -"Another common pattern to call Python code from a non-Python thread is to " -"use :c:func:`PyGILState_Ensure` followed by a call " -"to :c:func:`PyGILState_Release`." +msgid "Another common pattern to call Python code from a non-Python thread is to use :c:func:`PyGILState_Ensure` followed by a call to :c:func:`PyGILState_Release`." msgstr "" -#: ../../c-api/threads.rst:238 -msgid "" -"These functions do not work well when multiple interpreters exist in the " -"Python process. If no Python interpreter has ever been used in the current " -"thread (which is common for threads created outside Python), " -"``PyGILState_Ensure`` will create and attach a thread state for the \"main\" " -"interpreter (the first interpreter in the Python process)." +msgid "These functions do not work well when multiple interpreters exist in the Python process. If no Python interpreter has ever been used in the current thread (which is common for threads created outside Python), ``PyGILState_Ensure`` will create and attach a thread state for the \"main\" interpreter (the first interpreter in the Python process)." msgstr "" -#: ../../c-api/threads.rst:244 -msgid "" -"Additionally, these functions have thread-safety issues during interpreter " -"finalization. Using ``PyGILState_Ensure`` during finalization will likely " -"crash the process." +msgid "Additionally, these functions have thread-safety issues during interpreter finalization. Using ``PyGILState_Ensure`` during finalization will likely crash the process." msgstr "" -#: ../../c-api/threads.rst:248 msgid "Usage of these functions look like such::" msgstr "" -#: ../../c-api/threads.rst:250 msgid "" "PyGILState_STATE gstate;\n" "gstate = PyGILState_Ensure();\n" @@ -349,783 +192,395 @@ msgid "" "PyGILState_Release(gstate);" msgstr "" -#: ../../c-api/threads.rst:264 msgid "Cautions about fork()" msgstr "" -#: ../../c-api/threads.rst:266 -msgid "" -"Another important thing to note about threads is their behaviour in the face " -"of the C :c:func:`fork` call. On most systems with :c:func:`fork`, after a " -"process forks only the thread that issued the fork will exist. This has a " -"concrete impact both on how locks must be handled and on all stored state in " -"CPython's runtime." +msgid "Another important thing to note about threads is their behaviour in the face of the C :c:func:`fork` call. On most systems with :c:func:`fork`, after a process forks only the thread that issued the fork will exist. This has a concrete impact both on how locks must be handled and on all stored state in CPython's runtime." +msgstr "" + +msgid "The fact that only the \"current\" thread remains means any locks held by other threads will never be released. Python solves this for :func:`os.fork` by acquiring the locks it uses internally before the fork, and releasing them afterwards. In addition, it resets any :ref:`lock-objects` in the child. When extending or embedding Python, there is no way to inform Python of additional (non-Python) locks that need to be acquired before or reset after a fork. OS facilities such as :c:func:`!pthread_atfork` would need to be used to accomplish the same thing. Additionally, when extending or embedding Python, calling :c:func:`fork` directly rather than through :func:`os.fork` (and returning to or calling into Python) may result in a deadlock by one of Python's internal locks being held by a thread that is defunct after the fork. :c:func:`PyOS_AfterFork_Child` tries to reset the necessary locks, but is not always able to." +msgstr "" + +msgid "The fact that all other threads go away also means that CPython's runtime state there must be cleaned up properly, which :func:`os.fork` does. This means finalizing all other :c:type:`PyThreadState` objects belonging to the current interpreter and all other :c:type:`PyInterpreterState` objects. Due to this and the special nature of the :ref:`\"main\" interpreter `, :c:func:`fork` should only be called in that interpreter's \"main\" thread, where the CPython global runtime was originally initialized. The only exception is if :c:func:`exec` will be called immediately after." msgstr "" -#: ../../c-api/threads.rst:272 -msgid "" -"The fact that only the \"current\" thread remains means any locks held by " -"other threads will never be released. Python solves this for :func:`os.fork` " -"by acquiring the locks it uses internally before the fork, and releasing " -"them afterwards. In addition, it resets any :ref:`lock-objects` in the " -"child. When extending or embedding Python, there is no way to inform Python " -"of additional (non-Python) locks that need to be acquired before or reset " -"after a fork. OS facilities such as :c:func:`!pthread_atfork` would need to " -"be used to accomplish the same thing. Additionally, when extending or " -"embedding Python, calling :c:func:`fork` directly rather than " -"through :func:`os.fork` (and returning to or calling into Python) may result " -"in a deadlock by one of Python's internal locks being held by a thread that " -"is defunct after the fork. :c:func:`PyOS_AfterFork_Child` tries to reset the " -"necessary locks, but is not always able to." -msgstr "" - -#: ../../c-api/threads.rst:287 -msgid "" -"The fact that all other threads go away also means that CPython's runtime " -"state there must be cleaned up properly, which :func:`os.fork` does. This " -"means finalizing all other :c:type:`PyThreadState` objects belonging to the " -"current interpreter and all other :c:type:`PyInterpreterState` objects. Due " -"to this and the special nature of the :ref:`\"main\" interpreter `, :c:func:`fork` should only be called in that " -"interpreter's \"main\" thread, where the CPython global runtime was " -"originally initialized. The only exception is if :c:func:`exec` will be " -"called immediately after." -msgstr "" - -#: ../../c-api/threads.rst:300 msgid "High-level APIs" msgstr "" -#: ../../c-api/threads.rst:302 -msgid "" -"These are the most commonly used types and functions when writing multi-" -"threaded C extensions." +msgid "These are the most commonly used types and functions when writing multi-threaded C extensions." msgstr "" -#: ../../c-api/threads.rst:308 -msgid "" -"This data structure represents the state of a single thread. The only " -"public data member is:" +msgid "This data structure represents the state of a single thread. The only public data member is:" msgstr "" -#: ../../c-api/threads.rst:313 msgid "This thread's interpreter state." msgstr "" -#: ../../c-api/threads.rst:324 msgid "Deprecated function which does nothing." msgstr "" -#: ../../c-api/threads.rst:326 -msgid "" -"In Python 3.6 and older, this function created the GIL if it didn't exist." +msgid "In Python 3.6 and older, this function created the GIL if it didn't exist." msgstr "" -#: ../../c-api/threads.rst:328 msgid "The function now does nothing." msgstr "" -#: ../../c-api/threads.rst:331 -msgid "" -"This function is now called by :c:func:`Py_Initialize()`, so you don't have " -"to call it yourself anymore." +msgid "This function is now called by :c:func:`Py_Initialize()`, so you don't have to call it yourself anymore." msgstr "" -#: ../../c-api/threads.rst:335 -msgid "" -"This function cannot be called before :c:func:`Py_Initialize()` anymore." +msgid "This function cannot be called before :c:func:`Py_Initialize()` anymore." msgstr "" -#: ../../c-api/threads.rst:345 -msgid "" -"Detach the :term:`attached thread state` and return it. The thread will have " -"no :term:`thread state` upon returning." +msgid "Detach the :term:`attached thread state` and return it. The thread will have no :term:`thread state` upon returning." msgstr "" -#: ../../c-api/threads.rst:351 -msgid "" -"Set the :term:`attached thread state` to *tstate*. The passed :term:`thread " -"state` **should not** be :term:`attached `, otherwise " -"deadlock ensues. *tstate* will be attached upon returning." +msgid "Set the :term:`attached thread state` to *tstate*. The passed :term:`thread state` **should not** be :term:`attached `, otherwise deadlock ensues. *tstate* will be attached upon returning." msgstr "" -#: ../../c-api/threads.rst:356 ../../c-api/threads.rst:640 -msgid "" -"Calling this function from a thread when the runtime is finalizing will hang " -"the thread until the program exits, even if the thread was not created by " -"Python. Refer to :ref:`cautions-regarding-runtime-finalization` for more " -"details." +msgid "Calling this function from a thread when the runtime is finalizing will hang the thread until the program exits, even if the thread was not created by Python. Refer to :ref:`cautions-regarding-runtime-finalization` for more details." msgstr "" -#: ../../c-api/threads.rst:361 ../../c-api/threads.rst:448 -#: ../../c-api/threads.rst:650 -msgid "" -"Hangs the current thread, rather than terminating it, if called while the " -"interpreter is finalizing." +msgid "Hangs the current thread, rather than terminating it, if called while the interpreter is finalizing." msgstr "" -#: ../../c-api/threads.rst:367 -msgid "" -"Return the :term:`attached thread state`. If the thread has no attached " -"thread state, (such as when inside of :c:macro:`Py_BEGIN_ALLOW_THREADS` " -"block), then this issues a fatal error (so that the caller needn't check for " -"``NULL``)." +msgid "Return the :term:`attached thread state`. If the thread has no attached thread state, (such as when inside of :c:macro:`Py_BEGIN_ALLOW_THREADS` block), then this issues a fatal error (so that the caller needn't check for ``NULL``)." msgstr "" -#: ../../c-api/threads.rst:372 msgid "See also :c:func:`PyThreadState_GetUnchecked`." msgstr "" -#: ../../c-api/threads.rst:376 -msgid "" -"Similar to :c:func:`PyThreadState_Get`, but don't kill the process with a " -"fatal error if it is NULL. The caller is responsible to check if the result " -"is NULL." +msgid "Similar to :c:func:`PyThreadState_Get`, but don't kill the process with a fatal error if it is NULL. The caller is responsible to check if the result is NULL." msgstr "" -#: ../../c-api/threads.rst:380 -msgid "" -"In Python 3.5 to 3.12, the function was private and known as " -"``_PyThreadState_UncheckedGet()``." +msgid "In Python 3.5 to 3.12, the function was private and known as ``_PyThreadState_UncheckedGet()``." msgstr "" -#: ../../c-api/threads.rst:387 -msgid "" -"Set the :term:`attached thread state` to *tstate*, and return " -"the :term:`thread state` that was attached prior to calling." +msgid "Set the :term:`attached thread state` to *tstate*, and return the :term:`thread state` that was attached prior to calling." msgstr "" -#: ../../c-api/threads.rst:390 -msgid "" -"This function is safe to call without an :term:`attached thread state`; it " -"will simply return ``NULL`` indicating that there was no prior thread state." +msgid "This function is safe to call without an :term:`attached thread state`; it will simply return ``NULL`` indicating that there was no prior thread state." msgstr "" -#: ../../c-api/threads.rst:394 msgid ":c:func:`PyEval_ReleaseThread`" msgstr "" -#: ../../c-api/threads.rst:397 -msgid "" -"Similar to :c:func:`PyGILState_Ensure`, this function will hang the thread " -"if the runtime is finalizing." +msgid "Similar to :c:func:`PyGILState_Ensure`, this function will hang the thread if the runtime is finalizing." msgstr "" -#: ../../c-api/threads.rst:402 msgid "GIL-state APIs" msgstr "" -#: ../../c-api/threads.rst:404 -msgid "" -"The following functions use thread-local storage, and are not compatible " -"with sub-interpreters:" +msgid "The following functions use thread-local storage, and are not compatible with sub-interpreters:" msgstr "" -#: ../../c-api/threads.rst:409 -msgid "" -"The type of the value returned by :c:func:`PyGILState_Ensure` and passed " -"to :c:func:`PyGILState_Release`." +msgid "The type of the value returned by :c:func:`PyGILState_Ensure` and passed to :c:func:`PyGILState_Release`." msgstr "" -#: ../../c-api/threads.rst:414 msgid "The GIL was already held when :c:func:`PyGILState_Ensure` was called." msgstr "" -#: ../../c-api/threads.rst:418 msgid "The GIL was not held when :c:func:`PyGILState_Ensure` was called." msgstr "" -#: ../../c-api/threads.rst:422 -msgid "" -"Ensure that the current thread is ready to call the Python C API regardless " -"of the current state of Python, or of the :term:`attached thread state`. " -"This may be called as many times as desired by a thread as long as each call " -"is matched with a call to :c:func:`PyGILState_Release`. In general, other " -"thread-related APIs may be used between :c:func:`PyGILState_Ensure` " -"and :c:func:`PyGILState_Release` calls as long as the thread state is " -"restored to its previous state before the Release(). For example, normal " -"usage of the :c:macro:`Py_BEGIN_ALLOW_THREADS` " -"and :c:macro:`Py_END_ALLOW_THREADS` macros is acceptable." -msgstr "" - -#: ../../c-api/threads.rst:432 -msgid "" -"The return value is an opaque \"handle\" to the :term:`attached thread " -"state` when :c:func:`PyGILState_Ensure` was called, and must be passed " -"to :c:func:`PyGILState_Release` to ensure Python is left in the same state. " -"Even though recursive calls are allowed, these handles *cannot* be shared - " -"each unique call to :c:func:`PyGILState_Ensure` must save the handle for its " -"call to :c:func:`PyGILState_Release`." +msgid "Ensure that the current thread is ready to call the Python C API regardless of the current state of Python, or of the :term:`attached thread state`. This may be called as many times as desired by a thread as long as each call is matched with a call to :c:func:`PyGILState_Release`. In general, other thread-related APIs may be used between :c:func:`PyGILState_Ensure` and :c:func:`PyGILState_Release` calls as long as the thread state is restored to its previous state before the Release(). For example, normal usage of the :c:macro:`Py_BEGIN_ALLOW_THREADS` and :c:macro:`Py_END_ALLOW_THREADS` macros is acceptable." msgstr "" -#: ../../c-api/threads.rst:439 -msgid "" -"When the function returns, there will be an :term:`attached thread state` " -"and the thread will be able to call arbitrary Python code. Failure is a " -"fatal error." +msgid "The return value is an opaque \"handle\" to the :term:`attached thread state` when :c:func:`PyGILState_Ensure` was called, and must be passed to :c:func:`PyGILState_Release` to ensure Python is left in the same state. Even though recursive calls are allowed, these handles *cannot* be shared - each unique call to :c:func:`PyGILState_Ensure` must save the handle for its call to :c:func:`PyGILState_Release`." msgstr "" -#: ../../c-api/threads.rst:443 -msgid "" -"Calling this function when the runtime is finalizing is unsafe. Doing so " -"will either hang the thread until the program ends, or fully crash the " -"interpreter in rare cases. Refer to :ref:`cautions-regarding-runtime-" -"finalization` for more details." +msgid "When the function returns, there will be an :term:`attached thread state` and the thread will be able to call arbitrary Python code. Failure is a fatal error." msgstr "" -#: ../../c-api/threads.rst:454 -msgid "" -"Release any resources previously acquired. After this call, Python's state " -"will be the same as it was prior to the " -"corresponding :c:func:`PyGILState_Ensure` call (but generally this state " -"will be unknown to the caller, hence the use of the GILState API)." +msgid "Calling this function when the runtime is finalizing is unsafe. Doing so will either hang the thread until the program ends, or fully crash the interpreter in rare cases. Refer to :ref:`cautions-regarding-runtime-finalization` for more details." msgstr "" -#: ../../c-api/threads.rst:459 -msgid "" -"Every call to :c:func:`PyGILState_Ensure` must be matched by a call " -"to :c:func:`PyGILState_Release` on the same thread." +msgid "Release any resources previously acquired. After this call, Python's state will be the same as it was prior to the corresponding :c:func:`PyGILState_Ensure` call (but generally this state will be unknown to the caller, hence the use of the GILState API)." msgstr "" -#: ../../c-api/threads.rst:464 -msgid "" -"Get the :term:`attached thread state` for this thread. May return ``NULL`` " -"if no GILState API has been used on the current thread. Note that the main " -"thread always has such a thread-state, even if no auto-thread-state call has " -"been made on the main thread. This is mainly a helper/diagnostic function." +msgid "Every call to :c:func:`PyGILState_Ensure` must be matched by a call to :c:func:`PyGILState_Release` on the same thread." msgstr "" -#: ../../c-api/threads.rst:470 -msgid "" -"This function may return non-``NULL`` even when the :term:`thread state` is " -"detached. Prefer :c:func:`PyThreadState_Get` " -"or :c:func:`PyThreadState_GetUnchecked` for most cases." +msgid "Get the :term:`attached thread state` for this thread. May return ``NULL`` if no GILState API has been used on the current thread. Note that the main thread always has such a thread-state, even if no auto-thread-state call has been made on the main thread. This is mainly a helper/diagnostic function." +msgstr "" + +msgid "This function may return non-``NULL`` even when the :term:`thread state` is detached. Prefer :c:func:`PyThreadState_Get` or :c:func:`PyThreadState_GetUnchecked` for most cases." msgstr "" -#: ../../c-api/threads.rst:475 msgid ":c:func:`PyThreadState_Get`" msgstr "" -#: ../../c-api/threads.rst:479 -msgid "" -"Return ``1`` if the current thread is holding the :term:`GIL` and ``0`` " -"otherwise. This function can be called from any thread at any time. Only if " -"it has had its :term:`thread state ` initialized " -"via :c:func:`PyGILState_Ensure` will it return ``1``. This is mainly a " -"helper/diagnostic function. It can be useful for example in callback " -"contexts or memory allocation functions when knowing that the :term:`GIL` is " -"locked can allow the caller to perform sensitive actions or otherwise behave " -"differently." +msgid "Return ``1`` if the current thread is holding the :term:`GIL` and ``0`` otherwise. This function can be called from any thread at any time. Only if it has had its :term:`thread state ` initialized via :c:func:`PyGILState_Ensure` will it return ``1``. This is mainly a helper/diagnostic function. It can be useful for example in callback contexts or memory allocation functions when knowing that the :term:`GIL` is locked can allow the caller to perform sensitive actions or otherwise behave differently." msgstr "" -#: ../../c-api/threads.rst:489 -msgid "" -"If the current Python process has ever created a subinterpreter, this " -"function will *always* return ``1``. " -"Prefer :c:func:`PyThreadState_GetUnchecked` for most cases." +msgid "If the current Python process has ever created a subinterpreter, this function will *always* return ``1``. Prefer :c:func:`PyThreadState_GetUnchecked` for most cases." msgstr "" -#: ../../c-api/threads.rst:497 msgid "Low-level APIs" msgstr "" -#: ../../c-api/threads.rst:501 -msgid "" -"Create a new thread state object belonging to the given interpreter object. " -"An :term:`attached thread state` is not needed." +msgid "Create a new thread state object belonging to the given interpreter object. An :term:`attached thread state` is not needed." msgstr "" -#: ../../c-api/threads.rst:506 -msgid "" -"Reset all information in a :term:`thread state` object. *tstate* must " -"be :term:`attached `" +msgid "Reset all information in a :term:`thread state` object. *tstate* must be :term:`attached `" msgstr "" -#: ../../c-api/threads.rst:509 -msgid "" -"This function now calls the :c:member:`!PyThreadState.on_delete` callback. " -"Previously, that happened in :c:func:`PyThreadState_Delete`." +msgid "This function now calls the :c:member:`!PyThreadState.on_delete` callback. Previously, that happened in :c:func:`PyThreadState_Delete`." msgstr "" -#: ../../c-api/threads.rst:513 msgid "The :c:member:`!PyThreadState.on_delete` callback was removed." msgstr "" -#: ../../c-api/threads.rst:519 -msgid "" -"Destroy a :term:`thread state` object. *tstate* should not " -"be :term:`attached ` to any thread. *tstate* must " -"have been reset with a previous call to :c:func:`PyThreadState_Clear`." +msgid "Destroy a :term:`thread state` object. *tstate* should not be :term:`attached ` to any thread. *tstate* must have been reset with a previous call to :c:func:`PyThreadState_Clear`." msgstr "" -#: ../../c-api/threads.rst:527 -msgid "" -"Detach the :term:`attached thread state` (which must have been reset with a " -"previous call to :c:func:`PyThreadState_Clear`) and then destroy it." +msgid "Detach the :term:`attached thread state` (which must have been reset with a previous call to :c:func:`PyThreadState_Clear`) and then destroy it." msgstr "" -#: ../../c-api/threads.rst:530 -msgid "" -"No :term:`thread state` will be :term:`attached ` " -"upon returning." +msgid "No :term:`thread state` will be :term:`attached ` upon returning." msgstr "" -#: ../../c-api/threads.rst:535 msgid "Get the current frame of the Python thread state *tstate*." msgstr "" -#: ../../c-api/threads.rst:537 -msgid "" -"Return a :term:`strong reference`. Return ``NULL`` if no frame is currently " -"executing." +msgid "Return a :term:`strong reference`. Return ``NULL`` if no frame is currently executing." msgstr "" -#: ../../c-api/threads.rst:540 msgid "See also :c:func:`PyEval_GetFrame`." msgstr "" -#: ../../c-api/threads.rst:542 ../../c-api/threads.rst:551 -#: ../../c-api/threads.rst:560 -msgid "" -"*tstate* must not be ``NULL``, and must be :term:`attached `." +msgid "*tstate* must not be ``NULL``, and must be :term:`attached `." msgstr "" -#: ../../c-api/threads.rst:549 -msgid "" -"Get the unique :term:`thread state` identifier of the Python thread state " -"*tstate*." +msgid "Get the unique :term:`thread state` identifier of the Python thread state *tstate*." msgstr "" -#: ../../c-api/threads.rst:558 msgid "Get the interpreter of the Python thread state *tstate*." msgstr "" -#: ../../c-api/threads.rst:567 msgid "Suspend tracing and profiling in the Python thread state *tstate*." msgstr "" -#: ../../c-api/threads.rst:569 msgid "Resume them using the :c:func:`PyThreadState_LeaveTracing` function." msgstr "" -#: ../../c-api/threads.rst:576 -msgid "" -"Resume tracing and profiling in the Python thread state *tstate* suspended " -"by the :c:func:`PyThreadState_EnterTracing` function." +msgid "Resume tracing and profiling in the Python thread state *tstate* suspended by the :c:func:`PyThreadState_EnterTracing` function." msgstr "" -#: ../../c-api/threads.rst:579 -msgid "" -"See also :c:func:`PyEval_SetTrace` and :c:func:`PyEval_SetProfile` functions." +msgid "See also :c:func:`PyEval_SetTrace` and :c:func:`PyEval_SetProfile` functions." msgstr "" -#: ../../c-api/threads.rst:587 -msgid "" -"Set the stack protection start address and stack protection size of a Python " -"thread state." +msgid "Set the stack protection start address and stack protection size of a Python thread state." msgstr "" -#: ../../c-api/threads.rst:590 -msgid "" -"On success, return ``0``. On failure, set an exception and return ``-1``." +msgid "On success, return ``0``. On failure, set an exception and return ``-1``." msgstr "" -#: ../../c-api/threads.rst:593 -msgid "" -"CPython implements :ref:`recursion control ` for C code by " -"raising :py:exc:`RecursionError` when it notices that the machine execution " -"stack is close to overflow. See for example " -"the :c:func:`Py_EnterRecursiveCall` function. For this, it needs to know the " -"location of the current thread's stack, which it normally gets from the " -"operating system. When the stack is changed, for example using context " -"switching techniques like the Boost library's ``boost::context``, you must " -"call :c:func:`~PyUnstable_ThreadState_SetStackProtection` to inform CPython " -"of the change." -msgstr "" - -#: ../../c-api/threads.rst:602 -msgid "" -"Call :c:func:`~PyUnstable_ThreadState_SetStackProtection` either before or " -"after changing the stack. Do not call any other Python C API between the " -"call and the stack change." +msgid "CPython implements :ref:`recursion control ` for C code by raising :py:exc:`RecursionError` when it notices that the machine execution stack is close to overflow. See for example the :c:func:`Py_EnterRecursiveCall` function. For this, it needs to know the location of the current thread's stack, which it normally gets from the operating system. When the stack is changed, for example using context switching techniques like the Boost library's ``boost::context``, you must call :c:func:`~PyUnstable_ThreadState_SetStackProtection` to inform CPython of the change." msgstr "" -#: ../../c-api/threads.rst:607 -msgid "" -"See :c:func:`PyUnstable_ThreadState_ResetStackProtection` for undoing this " -"operation." +msgid "Call :c:func:`~PyUnstable_ThreadState_SetStackProtection` either before or after changing the stack. Do not call any other Python C API between the call and the stack change." msgstr "" -#: ../../c-api/threads.rst:614 -msgid "" -"Reset the stack protection start address and stack protection size of a " -"Python thread state to the operating system defaults." +msgid "See :c:func:`PyUnstable_ThreadState_ResetStackProtection` for undoing this operation." msgstr "" -#: ../../c-api/threads.rst:617 -msgid "" -"See :c:func:`PyUnstable_ThreadState_SetStackProtection` for an explanation." +msgid "Reset the stack protection start address and stack protection size of a Python thread state to the operating system defaults." msgstr "" -#: ../../c-api/threads.rst:624 -msgid "" -"Return a dictionary in which extensions can store thread-specific state " -"information. Each extension should use a unique key to use to store state " -"in the dictionary. It is okay to call this function when no :term:`thread " -"state` is :term:`attached `. If this function returns " -"``NULL``, no exception has been raised and the caller should assume no " -"thread state is attached." +msgid "See :c:func:`PyUnstable_ThreadState_SetStackProtection` for an explanation." msgstr "" -#: ../../c-api/threads.rst:634 -msgid "" -":term:`Attach ` *tstate* to the current thread, which " -"must not be ``NULL`` or already :term:`attached `." +msgid "Return a dictionary in which extensions can store thread-specific state information. Each extension should use a unique key to use to store state in the dictionary. It is okay to call this function when no :term:`thread state` is :term:`attached `. If this function returns ``NULL``, no exception has been raised and the caller should assume no thread state is attached." msgstr "" -#: ../../c-api/threads.rst:637 -msgid "" -"The calling thread must not already have an :term:`attached thread state`." +msgid ":term:`Attach ` *tstate* to the current thread, which must not be ``NULL`` or already :term:`attached `." msgstr "" -#: ../../c-api/threads.rst:645 -msgid "" -"Updated to be consistent " -"with :c:func:`PyEval_RestoreThread`, :c:func:`Py_END_ALLOW_THREADS`, " -"and :c:func:`PyGILState_Ensure`, and terminate the current thread if called " -"while the interpreter is finalizing." +msgid "The calling thread must not already have an :term:`attached thread state`." msgstr "" -#: ../../c-api/threads.rst:654 -msgid "" -":c:func:`PyEval_RestoreThread` is a higher-level function which is always " -"available (even when threads have not been initialized)." +msgid "Updated to be consistent with :c:func:`PyEval_RestoreThread`, :c:func:`Py_END_ALLOW_THREADS`, and :c:func:`PyGILState_Ensure`, and terminate the current thread if called while the interpreter is finalizing." msgstr "" -#: ../../c-api/threads.rst:660 -msgid "" -"Detach the :term:`attached thread state`. The *tstate* argument, which must " -"not be ``NULL``, is only used to check that it represents " -"the :term:`attached thread state` --- if it isn't, a fatal error is reported." +msgid ":c:func:`PyEval_RestoreThread` is a higher-level function which is always available (even when threads have not been initialized)." msgstr "" -#: ../../c-api/threads.rst:665 -msgid "" -":c:func:`PyEval_SaveThread` is a higher-level function which is always " -"available (even when threads have not been initialized)." +msgid "Detach the :term:`attached thread state`. The *tstate* argument, which must not be ``NULL``, is only used to check that it represents the :term:`attached thread state` --- if it isn't, a fatal error is reported." +msgstr "" + +msgid ":c:func:`PyEval_SaveThread` is a higher-level function which is always available (even when threads have not been initialized)." msgstr "" -#: ../../c-api/threads.rst:670 msgid "Asynchronous notifications" msgstr "" -#: ../../c-api/threads.rst:672 -msgid "" -"A mechanism is provided to make asynchronous notifications to the main " -"interpreter thread. These notifications take the form of a function pointer " -"and a void pointer argument." +msgid "A mechanism is provided to make asynchronous notifications to the main interpreter thread. These notifications take the form of a function pointer and a void pointer argument." msgstr "" -#: ../../c-api/threads.rst:679 -msgid "" -"Schedule a function to be called from the main interpreter thread. On " -"success, ``0`` is returned and *func* is queued for being called in the main " -"thread. On failure, ``-1`` is returned without setting any exception." +msgid "Schedule a function to be called from the main interpreter thread. On success, ``0`` is returned and *func* is queued for being called in the main thread. On failure, ``-1`` is returned without setting any exception." msgstr "" -#: ../../c-api/threads.rst:683 -msgid "" -"When successfully queued, *func* will be *eventually* called from the main " -"interpreter thread with the argument *arg*. It will be called " -"asynchronously with respect to normally running Python code, but with both " -"these conditions met:" +msgid "When successfully queued, *func* will be *eventually* called from the main interpreter thread with the argument *arg*. It will be called asynchronously with respect to normally running Python code, but with both these conditions met:" msgstr "" -#: ../../c-api/threads.rst:688 msgid "on a :term:`bytecode` boundary;" msgstr "" -#: ../../c-api/threads.rst:689 -msgid "" -"with the main thread holding an :term:`attached thread state` (*func* can " -"therefore use the full C API)." +msgid "with the main thread holding an :term:`attached thread state` (*func* can therefore use the full C API)." msgstr "" -#: ../../c-api/threads.rst:692 -msgid "" -"*func* must return ``0`` on success, or ``-1`` on failure with an exception " -"set. *func* won't be interrupted to perform another asynchronous " -"notification recursively, but it can still be interrupted to switch threads " -"if the :term:`thread state ` is detached." +msgid "*func* must return ``0`` on success, or ``-1`` on failure with an exception set. *func* won't be interrupted to perform another asynchronous notification recursively, but it can still be interrupted to switch threads if the :term:`thread state ` is detached." msgstr "" -#: ../../c-api/threads.rst:697 -msgid "" -"This function doesn't need an :term:`attached thread state`. However, to " -"call this function in a subinterpreter, the caller must have " -"an :term:`attached thread state`. Otherwise, the function *func* can be " -"scheduled to be called from the wrong interpreter." +msgid "This function doesn't need an :term:`attached thread state`. However, to call this function in a subinterpreter, the caller must have an :term:`attached thread state`. Otherwise, the function *func* can be scheduled to be called from the wrong interpreter." msgstr "" -#: ../../c-api/threads.rst:702 -msgid "" -"This is a low-level function, only useful for very special cases. There is " -"no guarantee that *func* will be called as quick as possible. If the main " -"thread is busy executing a system call, *func* won't be called before the " -"system call returns. This function is generally **not** suitable for " -"calling Python code from arbitrary C threads. Instead, use " -"the :ref:`PyGILState API`." +msgid "This is a low-level function, only useful for very special cases. There is no guarantee that *func* will be called as quick as possible. If the main thread is busy executing a system call, *func* won't be called before the system call returns. This function is generally **not** suitable for calling Python code from arbitrary C threads. Instead, use the :ref:`PyGILState API`." msgstr "" -#: ../../c-api/threads.rst:711 -msgid "" -"If this function is called in a subinterpreter, the function *func* is now " -"scheduled to be called from the subinterpreter, rather than being called " -"from the main interpreter. Each subinterpreter now has its own list of " -"scheduled calls." +msgid "If this function is called in a subinterpreter, the function *func* is now scheduled to be called from the subinterpreter, rather than being called from the main interpreter. Each subinterpreter now has its own list of scheduled calls." msgstr "" -#: ../../c-api/threads.rst:717 -msgid "" -"This function now always schedules *func* to be run in the main interpreter." +msgid "This function now always schedules *func* to be run in the main interpreter." msgstr "" -#: ../../c-api/threads.rst:724 -msgid "" -"Execute all pending calls. This is usually executed automatically by the " -"interpreter." +msgid "Execute all pending calls. This is usually executed automatically by the interpreter." msgstr "" -#: ../../c-api/threads.rst:727 -msgid "" -"This function returns ``0`` on success, and returns ``-1`` with an exception " -"set on failure." +msgid "This function returns ``0`` on success, and returns ``-1`` with an exception set on failure." msgstr "" -#: ../../c-api/threads.rst:730 -msgid "" -"If this is not called in the main thread of the main interpreter, this " -"function does nothing and returns ``0``. The caller must hold " -"an :term:`attached thread state`." +msgid "If this is not called in the main thread of the main interpreter, this function does nothing and returns ``0``. The caller must hold an :term:`attached thread state`." msgstr "" -#: ../../c-api/threads.rst:736 msgid "This function only runs pending calls in the main interpreter." msgstr "" -#: ../../c-api/threads.rst:742 -msgid "" -"Asynchronously raise an exception in a thread. The *id* argument is the " -"thread id of the target thread; *exc* is the exception object to be raised. " -"This function does not :term:`steal` any references to *exc*. To prevent " -"naive misuse, you must write your own C extension to call this. Must be " -"called with an :term:`attached thread state`. Returns the number of thread " -"states modified; this is normally one, but will be zero if the thread id " -"isn't found. If *exc* is ``NULL``, the pending exception (if any) for the " -"thread is cleared. This raises no exceptions." +msgid "Asynchronously raise an exception in a thread. The *id* argument is the thread id of the target thread; *exc* is the exception object to be raised. This function does not :term:`steal` any references to *exc*. To prevent naive misuse, you must write your own C extension to call this. Must be called with an :term:`attached thread state`. Returns the number of thread states modified; this is normally one, but will be zero if the thread id isn't found. If *exc* is ``NULL``, the pending exception (if any) for the thread is cleared. This raises no exceptions." msgstr "" -#: ../../c-api/threads.rst:750 -msgid "" -"The type of the *id* parameter changed from :c:expr:`long` " -"to :c:expr:`unsigned long`." +msgid "The type of the *id* parameter changed from :c:expr:`long` to :c:expr:`unsigned long`." msgstr "" -#: ../../c-api/threads.rst:756 msgid "Operating system thread APIs" msgstr "" -#: ../../c-api/threads.rst:760 msgid "Sentinel value for an invalid thread ID." msgstr "" -#: ../../c-api/threads.rst:762 msgid "This is currently equivalent to ``(unsigned long)-1``." msgstr "" -#: ../../c-api/threads.rst:767 -msgid "" -"Start function *func* in a new thread with argument *arg*. The resulting " -"thread is not intended to be joined." +msgid "Start function *func* in a new thread with argument *arg*. The resulting thread is not intended to be joined." msgstr "" -#: ../../c-api/threads.rst:770 msgid "*func* must not be ``NULL``, but *arg* may be ``NULL``." msgstr "" -#: ../../c-api/threads.rst:772 -msgid "" -"On success, this function returns the identifier of the new thread; on " -"failure, this returns :c:macro:`PYTHREAD_INVALID_THREAD_ID`." +msgid "On success, this function returns the identifier of the new thread; on failure, this returns :c:macro:`PYTHREAD_INVALID_THREAD_ID`." msgstr "" -#: ../../c-api/threads.rst:775 ../../c-api/threads.rst:859 -#: ../../c-api/threads.rst:867 msgid "The caller does not need to hold an :term:`attached thread state`." msgstr "" -#: ../../c-api/threads.rst:780 msgid "Return the identifier of the current thread, which will never be zero." msgstr "" -#: ../../c-api/threads.rst:782 ../../c-api/threads.rst:814 -msgid "" -"This function cannot fail, and the caller does not need to hold " -"an :term:`attached thread state`." +msgid "This function cannot fail, and the caller does not need to hold an :term:`attached thread state`." msgstr "" -#: ../../c-api/threads.rst:786 msgid ":py:func:`threading.get_ident`" msgstr "" -#: ../../c-api/threads.rst:791 -msgid "" -"Get general information about the current thread in the form of " -"a :ref:`struct sequence ` object. This information " -"is accessible as :py:attr:`sys.thread_info` in Python." +msgid "Get general information about the current thread in the form of a :ref:`struct sequence ` object. This information is accessible as :py:attr:`sys.thread_info` in Python." msgstr "" -#: ../../c-api/threads.rst:795 -msgid "" -"On success, this returns a new :term:`strong reference` to the thread " -"information; on failure, this returns ``NULL`` with an exception set." +msgid "On success, this returns a new :term:`strong reference` to the thread information; on failure, this returns ``NULL`` with an exception set." msgstr "" -#: ../../c-api/threads.rst:798 msgid "The caller must hold an :term:`attached thread state`." msgstr "" -#: ../../c-api/threads.rst:803 msgid "This macro is defined when the system supports native thread IDs." msgstr "" -#: ../../c-api/threads.rst:808 -msgid "" -"Get the native identifier of the current thread as it was assigned by the " -"operating system's kernel, which will never be less than zero." +msgid "Get the native identifier of the current thread as it was assigned by the operating system's kernel, which will never be less than zero." msgstr "" -#: ../../c-api/threads.rst:811 -msgid "" -"This function is only available when :c:macro:`PY_HAVE_THREAD_NATIVE_ID` is " -"defined." +msgid "This function is only available when :c:macro:`PY_HAVE_THREAD_NATIVE_ID` is defined." msgstr "" -#: ../../c-api/threads.rst:818 msgid ":py:func:`threading.get_native_id`" msgstr "" -#: ../../c-api/threads.rst:823 -msgid "" -"Terminate the current thread. This function is generally considered unsafe " -"and should be avoided. It is kept solely for backwards compatibility." +msgid "Terminate the current thread. This function is generally considered unsafe and should be avoided. It is kept solely for backwards compatibility." msgstr "" -#: ../../c-api/threads.rst:826 -msgid "" -"This function is only safe to call if all functions in the full call stack " -"are written to safely allow it." +msgid "This function is only safe to call if all functions in the full call stack are written to safely allow it." msgstr "" -#: ../../c-api/threads.rst:831 -msgid "" -"If the current system uses POSIX threads (also known as \"pthreads\"), this " -"calls :manpage:`pthread_exit(3)`, which attempts to unwind the stack and " -"call C++ destructors on some libc implementations. However, if a " -"``noexcept`` function is reached, it may terminate the process. Other " -"systems, such as macOS, do unwinding." +msgid "If the current system uses POSIX threads (also known as \"pthreads\"), this calls :manpage:`pthread_exit(3)`, which attempts to unwind the stack and call C++ destructors on some libc implementations. However, if a ``noexcept`` function is reached, it may terminate the process. Other systems, such as macOS, do unwinding." msgstr "" -#: ../../c-api/threads.rst:837 -msgid "" -"On Windows, this function calls ``_endthreadex()``, which kills the thread " -"without calling C++ destructors." +msgid "On Windows, this function calls ``_endthreadex()``, which kills the thread without calling C++ destructors." msgstr "" -#: ../../c-api/threads.rst:840 msgid "In any case, there is a risk of corruption on the thread's stack." msgstr "" -#: ../../c-api/threads.rst:847 -msgid "" -"Initialize ``PyThread*`` APIs. Python executes this function automatically, " -"so there's little need to call it from an extension module." +msgid "Initialize ``PyThread*`` APIs. Python executes this function automatically, so there's little need to call it from an extension module." msgstr "" -#: ../../c-api/threads.rst:853 msgid "Set the stack size of the current thread to *size* bytes." msgstr "" -#: ../../c-api/threads.rst:855 -msgid "" -"This function returns ``0`` on success, ``-1`` if *size* is invalid, or " -"``-2`` if the system does not support changing the stack size. This function " -"does not set exceptions." +msgid "This function returns ``0`` on success, ``-1`` if *size* is invalid, or ``-2`` if the system does not support changing the stack size. This function does not set exceptions." msgstr "" -#: ../../c-api/threads.rst:864 -msgid "" -"Return the stack size of the current thread in bytes, or ``0`` if the " -"system's default stack size is in use." +msgid "Return the stack size of the current thread in bytes, or ``0`` if the system's default stack size is in use." msgstr "" -#: ../../c-api/threads.rst:8 msgid "global interpreter lock" msgstr "" -#: ../../c-api/threads.rst:8 msgid "interpreter lock" msgstr "" -#: ../../c-api/threads.rst:8 msgid "lock, interpreter" msgstr "" -#: ../../c-api/threads.rst:25 msgid "setswitchinterval (in module sys)" msgstr "" -#: ../../c-api/threads.rst:36 msgid "PyThreadState (C type)" msgstr "" -#: ../../c-api/threads.rst:87 msgid "Py_BEGIN_ALLOW_THREADS (C macro)" msgstr "" -#: ../../c-api/threads.rst:87 msgid "Py_END_ALLOW_THREADS (C macro)" msgstr "" -#: ../../c-api/threads.rst:103 msgid "PyEval_RestoreThread (C function)" msgstr "" -#: ../../c-api/threads.rst:103 msgid "PyEval_SaveThread (C function)" msgstr "" -#: ../../c-api/threads.rst:318 msgid "PyEval_AcquireThread()" msgstr "" -#: ../../c-api/threads.rst:318 msgid "PyEval_ReleaseThread()" msgstr "" -#: ../../c-api/threads.rst:318 msgid "PyEval_SaveThread()" msgstr "" -#: ../../c-api/threads.rst:318 msgid "PyEval_RestoreThread()" msgstr "" -#: ../../c-api/threads.rst:340 msgid "module" msgstr "" -#: ../../c-api/threads.rst:340 msgid "_thread" msgstr "" diff --git a/c-api/time.po b/c-api/time.po index e1d46adc..af03410e 100644 --- a/c-api/time.po +++ b/c-api/time.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2024-05-11 01:07+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,152 +23,83 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../c-api/time.rst:6 msgid "PyTime C API" msgstr "" -#: ../../c-api/time.rst:10 -msgid "" -"The clock C API provides access to system clocks. It is similar to the " -"Python :mod:`time` module." +msgid "The clock C API provides access to system clocks. It is similar to the Python :mod:`time` module." msgstr "" -#: ../../c-api/time.rst:13 -msgid "" -"For C API related to the :mod:`datetime` module, see :ref:`datetimeobjects`." +msgid "For C API related to the :mod:`datetime` module, see :ref:`datetimeobjects`." msgstr "" -#: ../../c-api/time.rst:17 msgid "Types" msgstr "" -#: ../../c-api/time.rst:21 -msgid "" -"A timestamp or duration in nanoseconds, represented as a signed 64-bit " -"integer." +msgid "A timestamp or duration in nanoseconds, represented as a signed 64-bit integer." msgstr "" -#: ../../c-api/time.rst:24 -msgid "" -"The reference point for timestamps depends on the clock used. For " -"example, :c:func:`PyTime_Time` returns timestamps relative to the UNIX epoch." +msgid "The reference point for timestamps depends on the clock used. For example, :c:func:`PyTime_Time` returns timestamps relative to the UNIX epoch." msgstr "" -#: ../../c-api/time.rst:27 -msgid "" -"The supported range is around [-292.3 years; +292.3 years]. Using the Unix " -"epoch (January 1st, 1970) as reference, the supported date range is around " -"[1677-09-21; 2262-04-11]. The exact limits are exposed as constants:" +msgid "The supported range is around [-292.3 years; +292.3 years]. Using the Unix epoch (January 1st, 1970) as reference, the supported date range is around [1677-09-21; 2262-04-11]. The exact limits are exposed as constants:" msgstr "" -#: ../../c-api/time.rst:34 msgid "Minimum value of :c:type:`PyTime_t`." msgstr "" -#: ../../c-api/time.rst:38 msgid "Maximum value of :c:type:`PyTime_t`." msgstr "" -#: ../../c-api/time.rst:42 msgid "Clock Functions" msgstr "" -#: ../../c-api/time.rst:44 -msgid "" -"The following functions take a pointer to a :c:expr:`PyTime_t` that they set " -"to the value of a particular clock. Details of each clock are given in the " -"documentation of the corresponding Python function." +msgid "The following functions take a pointer to a :c:expr:`PyTime_t` that they set to the value of a particular clock. Details of each clock are given in the documentation of the corresponding Python function." msgstr "" -#: ../../c-api/time.rst:49 -msgid "" -"The functions return ``0`` on success, or ``-1`` (with an exception set) on " -"failure." +msgid "The functions return ``0`` on success, or ``-1`` (with an exception set) on failure." msgstr "" -#: ../../c-api/time.rst:52 -msgid "" -"On integer overflow, they set the :c:data:`PyExc_OverflowError` exception " -"and set ``*result`` to the value clamped to the ``[PyTime_MIN; PyTime_MAX]`` " -"range. (On current systems, integer overflows are likely caused by " -"misconfigured system time.)" +msgid "On integer overflow, they set the :c:data:`PyExc_OverflowError` exception and set ``*result`` to the value clamped to the ``[PyTime_MIN; PyTime_MAX]`` range. (On current systems, integer overflows are likely caused by misconfigured system time.)" msgstr "" -#: ../../c-api/time.rst:58 -msgid "" -"As any other C API (unless otherwise specified), the functions must be " -"called with an :term:`attached thread state`." +msgid "As any other C API (unless otherwise specified), the functions must be called with an :term:`attached thread state`." msgstr "" -#: ../../c-api/time.rst:63 -msgid "" -"Read the monotonic clock. See :func:`time.monotonic` for important details " -"on this clock." +msgid "Read the monotonic clock. See :func:`time.monotonic` for important details on this clock." msgstr "" -#: ../../c-api/time.rst:68 -msgid "" -"Read the performance counter. See :func:`time.perf_counter` for important " -"details on this clock." +msgid "Read the performance counter. See :func:`time.perf_counter` for important details on this clock." msgstr "" -#: ../../c-api/time.rst:73 -msgid "" -"Read the “wall clock” time. See :func:`time.time` for details important on " -"this clock." +msgid "Read the “wall clock” time. See :func:`time.time` for details important on this clock." msgstr "" -#: ../../c-api/time.rst:78 msgid "Raw Clock Functions" msgstr "" -#: ../../c-api/time.rst:80 -msgid "" -"Similar to clock functions, but don't set an exception on error and don't " -"require the caller to have an :term:`attached thread state`." +msgid "Similar to clock functions, but don't set an exception on error and don't require the caller to have an :term:`attached thread state`." msgstr "" -#: ../../c-api/time.rst:83 msgid "On success, the functions return ``0``." msgstr "" -#: ../../c-api/time.rst:85 -msgid "" -"On failure, they set ``*result`` to ``0`` and return ``-1``, *without* " -"setting an exception. To get the cause of the error, :term:`attach ` a :term:`thread state`, and call the regular (non-``Raw``) " -"function. Note that the regular function may succeed after the ``Raw`` one " -"failed." +msgid "On failure, they set ``*result`` to ``0`` and return ``-1``, *without* setting an exception. To get the cause of the error, :term:`attach ` a :term:`thread state`, and call the regular (non-``Raw``) function. Note that the regular function may succeed after the ``Raw`` one failed." msgstr "" -#: ../../c-api/time.rst:92 -msgid "" -"Similar to :c:func:`PyTime_Monotonic`, but don't set an exception on error " -"and don't require an :term:`attached thread state`." +msgid "Similar to :c:func:`PyTime_Monotonic`, but don't set an exception on error and don't require an :term:`attached thread state`." msgstr "" -#: ../../c-api/time.rst:97 -msgid "" -"Similar to :c:func:`PyTime_PerfCounter`, but don't set an exception on error " -"and don't require an :term:`attached thread state`." +msgid "Similar to :c:func:`PyTime_PerfCounter`, but don't set an exception on error and don't require an :term:`attached thread state`." msgstr "" -#: ../../c-api/time.rst:102 -msgid "" -"Similar to :c:func:`PyTime_Time`, but don't set an exception on error and " -"don't require an :term:`attached thread state`." +msgid "Similar to :c:func:`PyTime_Time`, but don't set an exception on error and don't require an :term:`attached thread state`." msgstr "" -#: ../../c-api/time.rst:107 msgid "Conversion functions" msgstr "" -#: ../../c-api/time.rst:111 msgid "Convert a timestamp to a number of seconds as a C :c:expr:`double`." msgstr "" -#: ../../c-api/time.rst:113 -msgid "" -"The function cannot fail, but note that :c:expr:`double` has limited " -"accuracy for large values." +msgid "The function cannot fail, but note that :c:expr:`double` has limited accuracy for large values." msgstr "" diff --git a/c-api/tls.po b/c-api/tls.po index 0b0811d6..1072341c 100644 --- a/c-api/tls.po +++ b/c-api/tls.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2026-07-25 12:59+0330\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: none\n" @@ -19,176 +19,83 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../c-api/tls.rst:6 msgid "Thread-local storage support" msgstr "" -#: ../../c-api/tls.rst:8 -msgid "" -"The Python interpreter provides low-level support for thread-local storage " -"(TLS) which wraps the underlying native TLS implementation to support the " -"Python-level thread-local storage API (:class:`threading.local`). The " -"CPython C level APIs are similar to those offered by pthreads and Windows: " -"use a thread key and functions to associate a :c:expr:`void*` value per " -"thread." +msgid "The Python interpreter provides low-level support for thread-local storage (TLS) which wraps the underlying native TLS implementation to support the Python-level thread-local storage API (:class:`threading.local`). The CPython C level APIs are similar to those offered by pthreads and Windows: use a thread key and functions to associate a :c:expr:`void*` value per thread." msgstr "" -#: ../../c-api/tls.rst:15 -msgid "" -"A :term:`thread state` does *not* need to be :term:`attached ` when calling these functions; they supply their own locking." +msgid "A :term:`thread state` does *not* need to be :term:`attached ` when calling these functions; they supply their own locking." msgstr "" -#: ../../c-api/tls.rst:18 -msgid "" -"Note that :file:`Python.h` does not include the declaration of the TLS APIs, " -"you need to include :file:`pythread.h` to use thread-local storage." +msgid "Note that :file:`Python.h` does not include the declaration of the TLS APIs, you need to include :file:`pythread.h` to use thread-local storage." msgstr "" -#: ../../c-api/tls.rst:22 -msgid "" -"None of these API functions handle memory management on behalf of " -"the :c:expr:`void*` values. You need to allocate and deallocate them " -"yourself. If the :c:expr:`void*` values happen to be :c:expr:`PyObject*`, " -"these functions don't do refcount operations on them either." +msgid "None of these API functions handle memory management on behalf of the :c:expr:`void*` values. You need to allocate and deallocate them yourself. If the :c:expr:`void*` values happen to be :c:expr:`PyObject*`, these functions don't do refcount operations on them either." msgstr "" -#: ../../c-api/tls.rst:30 msgid "Thread-specific storage API" msgstr "" -#: ../../c-api/tls.rst:32 -msgid "" -"The thread-specific storage (TSS) API was introduced to supersede the use of " -"the existing TLS API within the CPython interpreter. This API uses a new " -"type :c:type:`Py_tss_t` instead of :c:expr:`int` to represent thread keys." +msgid "The thread-specific storage (TSS) API was introduced to supersede the use of the existing TLS API within the CPython interpreter. This API uses a new type :c:type:`Py_tss_t` instead of :c:expr:`int` to represent thread keys." msgstr "" -#: ../../c-api/tls.rst:38 msgid "\"A New C-API for Thread-Local Storage in CPython\" (:pep:`539`)" msgstr "" -#: ../../c-api/tls.rst:43 -msgid "" -"This data structure represents the state of a thread key, the definition of " -"which may depend on the underlying TLS implementation, and it has an " -"internal field representing the key's initialization state. There are no " -"public members in this structure." +msgid "This data structure represents the state of a thread key, the definition of which may depend on the underlying TLS implementation, and it has an internal field representing the key's initialization state. There are no public members in this structure." msgstr "" -#: ../../c-api/tls.rst:48 -msgid "" -"When :ref:`Py_LIMITED_API ` is not defined, static allocation of " -"this type by :c:macro:`Py_tss_NEEDS_INIT` is allowed." +msgid "When :ref:`Py_LIMITED_API ` is not defined, static allocation of this type by :c:macro:`Py_tss_NEEDS_INIT` is allowed." msgstr "" -#: ../../c-api/tls.rst:54 -msgid "" -"This macro expands to the initializer for :c:type:`Py_tss_t` variables. Note " -"that this macro won't be defined with :ref:`Py_LIMITED_API `." +msgid "This macro expands to the initializer for :c:type:`Py_tss_t` variables. Note that this macro won't be defined with :ref:`Py_LIMITED_API `." msgstr "" -#: ../../c-api/tls.rst:59 msgid "Dynamic allocation" msgstr "" -#: ../../c-api/tls.rst:61 -msgid "" -"Dynamic allocation of the :c:type:`Py_tss_t`, required in extension modules " -"built with :ref:`Py_LIMITED_API `, where static allocation of this " -"type is not possible due to its implementation being opaque at build time." +msgid "Dynamic allocation of the :c:type:`Py_tss_t`, required in extension modules built with :ref:`Py_LIMITED_API `, where static allocation of this type is not possible due to its implementation being opaque at build time." msgstr "" -#: ../../c-api/tls.rst:68 -msgid "" -"Return a value which is the same state as a value initialized " -"with :c:macro:`Py_tss_NEEDS_INIT`, or ``NULL`` in the case of dynamic " -"allocation failure." +msgid "Return a value which is the same state as a value initialized with :c:macro:`Py_tss_NEEDS_INIT`, or ``NULL`` in the case of dynamic allocation failure." msgstr "" -#: ../../c-api/tls.rst:75 -msgid "" -"Free the given *key* allocated by :c:func:`PyThread_tss_alloc`, after first " -"calling :c:func:`PyThread_tss_delete` to ensure any associated thread locals " -"have been unassigned. This is a no-op if the *key* argument is ``NULL``." +msgid "Free the given *key* allocated by :c:func:`PyThread_tss_alloc`, after first calling :c:func:`PyThread_tss_delete` to ensure any associated thread locals have been unassigned. This is a no-op if the *key* argument is ``NULL``." msgstr "" -#: ../../c-api/tls.rst:81 -msgid "" -"A freed key becomes a dangling pointer. You should reset the key to ``NULL``." +msgid "A freed key becomes a dangling pointer. You should reset the key to ``NULL``." msgstr "" -#: ../../c-api/tls.rst:86 msgid "Methods" msgstr "" -#: ../../c-api/tls.rst:88 -msgid "" -"The parameter *key* of these functions must not be ``NULL``. Moreover, the " -"behaviors of :c:func:`PyThread_tss_set` and :c:func:`PyThread_tss_get` are " -"undefined if the given :c:type:`Py_tss_t` has not been initialized " -"by :c:func:`PyThread_tss_create`." +msgid "The parameter *key* of these functions must not be ``NULL``. Moreover, the behaviors of :c:func:`PyThread_tss_set` and :c:func:`PyThread_tss_get` are undefined if the given :c:type:`Py_tss_t` has not been initialized by :c:func:`PyThread_tss_create`." msgstr "" -#: ../../c-api/tls.rst:96 -msgid "" -"Return a non-zero value if the given :c:type:`Py_tss_t` has been initialized " -"by :c:func:`PyThread_tss_create`." +msgid "Return a non-zero value if the given :c:type:`Py_tss_t` has been initialized by :c:func:`PyThread_tss_create`." msgstr "" -#: ../../c-api/tls.rst:102 -msgid "" -"Return a zero value on successful initialization of a TSS key. The behavior " -"is undefined if the value pointed to by the *key* argument is not " -"initialized by :c:macro:`Py_tss_NEEDS_INIT`. This function can be called " -"repeatedly on the same key -- calling it on an already initialized key is a " -"no-op and immediately returns success." +msgid "Return a zero value on successful initialization of a TSS key. The behavior is undefined if the value pointed to by the *key* argument is not initialized by :c:macro:`Py_tss_NEEDS_INIT`. This function can be called repeatedly on the same key -- calling it on an already initialized key is a no-op and immediately returns success." msgstr "" -#: ../../c-api/tls.rst:111 -msgid "" -"Destroy a TSS key to forget the values associated with the key across all " -"threads, and change the key's initialization state to uninitialized. A " -"destroyed key is able to be initialized again " -"by :c:func:`PyThread_tss_create`. This function can be called repeatedly on " -"the same key -- calling it on an already destroyed key is a no-op." +msgid "Destroy a TSS key to forget the values associated with the key across all threads, and change the key's initialization state to uninitialized. A destroyed key is able to be initialized again by :c:func:`PyThread_tss_create`. This function can be called repeatedly on the same key -- calling it on an already destroyed key is a no-op." msgstr "" -#: ../../c-api/tls.rst:120 -msgid "" -"Return a zero value to indicate successfully associating a :c:expr:`void*` " -"value with a TSS key in the current thread. Each thread has a distinct " -"mapping of the key to a :c:expr:`void*` value." +msgid "Return a zero value to indicate successfully associating a :c:expr:`void*` value with a TSS key in the current thread. Each thread has a distinct mapping of the key to a :c:expr:`void*` value." msgstr "" -#: ../../c-api/tls.rst:127 -msgid "" -"Return the :c:expr:`void*` value associated with a TSS key in the current " -"thread. This returns ``NULL`` if no value is associated with the key in the " -"current thread." +msgid "Return the :c:expr:`void*` value associated with a TSS key in the current thread. This returns ``NULL`` if no value is associated with the key in the current thread." msgstr "" -#: ../../c-api/tls.rst:135 msgid "Legacy APIs" msgstr "" -#: ../../c-api/tls.rst:137 -msgid "" -"This API is superseded by the :ref:`thread-specific storage (TSS) API " -"`." +msgid "This API is superseded by the :ref:`thread-specific storage (TSS) API `." msgstr "" -#: ../../c-api/tls.rst:142 -msgid "" -"This version of the API does not support platforms where the native TLS key " -"is defined in a way that cannot be safely cast to ``int``. On such " -"platforms, :c:func:`PyThread_create_key` will return immediately with a " -"failure status, and the other TLS functions will all be no-ops on such " -"platforms." +msgid "This version of the API does not support platforms where the native TLS key is defined in a way that cannot be safely cast to ``int``. On such platforms, :c:func:`PyThread_create_key` will return immediately with a failure status, and the other TLS functions will all be no-ops on such platforms." msgstr "" -#: ../../c-api/tls.rst:147 -msgid "" -"Due to the compatibility problem noted above, this version of the API should " -"not be used in new code." +msgid "Due to the compatibility problem noted above, this version of the API should not be used in new code." msgstr "" diff --git a/c-api/tuple.po b/c-api/tuple.po index a105519a..a7f84295 100644 --- a/c-api/tuple.po +++ b/c-api/tuple.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:50+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,269 +23,143 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../c-api/tuple.rst:6 msgid "Tuple Objects" msgstr "" -#: ../../c-api/tuple.rst:13 msgid "This subtype of :c:type:`PyObject` represents a Python tuple object." msgstr "" -#: ../../c-api/tuple.rst:18 -msgid "" -"This instance of :c:type:`PyTypeObject` represents the Python tuple type; it " -"is the same object as :class:`tuple` in the Python layer." +msgid "This instance of :c:type:`PyTypeObject` represents the Python tuple type; it is the same object as :class:`tuple` in the Python layer." msgstr "" -#: ../../c-api/tuple.rst:24 -msgid "" -"Return true if *p* is a tuple object or an instance of a subtype of the " -"tuple type. This function always succeeds." +msgid "Return true if *p* is a tuple object or an instance of a subtype of the tuple type. This function always succeeds." msgstr "" -#: ../../c-api/tuple.rst:30 -msgid "" -"Return true if *p* is a tuple object, but not an instance of a subtype of " -"the tuple type. This function always succeeds." +msgid "Return true if *p* is a tuple object, but not an instance of a subtype of the tuple type. This function always succeeds." msgstr "" -#: ../../c-api/tuple.rst:36 -msgid "" -"Return a new tuple object of size *len*, or ``NULL`` with an exception set " -"on failure." +msgid "Return a new tuple object of size *len*, or ``NULL`` with an exception set on failure." msgstr "" -#: ../../c-api/tuple.rst:42 -msgid "" -"Return a new tuple object of size *n*, or ``NULL`` with an exception set on " -"failure. The tuple values are initialized to the subsequent *n* C arguments " -"pointing to Python objects. ``PyTuple_Pack(2, a, b)`` is equivalent to " -"``Py_BuildValue(\"(OO)\", a, b)``." +msgid "Return a new tuple object of size *n*, or ``NULL`` with an exception set on failure. The tuple values are initialized to the subsequent *n* C arguments pointing to Python objects. ``PyTuple_Pack(2, a, b)`` is equivalent to ``Py_BuildValue(\"(OO)\", a, b)``." msgstr "" -#: ../../c-api/tuple.rst:50 -msgid "" -"Take a pointer to a tuple object, and return the size of that tuple. On " -"error, return ``-1`` with an exception set." +msgid "Take a pointer to a tuple object, and return the size of that tuple. On error, return ``-1`` with an exception set." msgstr "" -#: ../../c-api/tuple.rst:56 msgid "Like :c:func:`PyTuple_Size`, but without error checking." msgstr "" -#: ../../c-api/tuple.rst:61 -msgid "" -"Return the object at position *pos* in the tuple pointed to by *p*. If " -"*pos* is negative or out of bounds, return ``NULL`` and set " -"an :exc:`IndexError` exception." +msgid "Return the object at position *pos* in the tuple pointed to by *p*. If *pos* is negative or out of bounds, return ``NULL`` and set an :exc:`IndexError` exception." msgstr "" -#: ../../c-api/tuple.rst:64 -msgid "" -"The returned reference is borrowed from the tuple *p* (that is: it is only " -"valid as long as you hold a reference to *p*). To get a :term:`strong " -"reference`, use :c:func:`Py_NewRef(PyTuple_GetItem(...)) ` " -"or :c:func:`PySequence_GetItem`." +msgid "The returned reference is borrowed from the tuple *p* (that is: it is only valid as long as you hold a reference to *p*). To get a :term:`strong reference`, use :c:func:`Py_NewRef(PyTuple_GetItem(...)) ` or :c:func:`PySequence_GetItem`." msgstr "" -#: ../../c-api/tuple.rst:73 msgid "Like :c:func:`PyTuple_GetItem`, but does no checking of its arguments." msgstr "" -#: ../../c-api/tuple.rst:78 -msgid "" -"Return the slice of the tuple pointed to by *p* between *low* and *high*, or " -"``NULL`` with an exception set on failure." +msgid "Return the slice of the tuple pointed to by *p* between *low* and *high*, or ``NULL`` with an exception set on failure." msgstr "" -#: ../../c-api/tuple.rst:81 -msgid "" -"This is the equivalent of the Python expression ``p[low:high]``. Indexing " -"from the end of the tuple is not supported." +msgid "This is the equivalent of the Python expression ``p[low:high]``. Indexing from the end of the tuple is not supported." msgstr "" -#: ../../c-api/tuple.rst:87 -msgid "" -"Insert a reference to object *o* at position *pos* of the tuple pointed to " -"by *p*. Return ``0`` on success. If *pos* is out of bounds, return ``-1`` " -"and set an :exc:`IndexError` exception." +msgid "Insert a reference to object *o* at position *pos* of the tuple pointed to by *p*. Return ``0`` on success. If *pos* is out of bounds, return ``-1`` and set an :exc:`IndexError` exception." msgstr "" -#: ../../c-api/tuple.rst:93 -msgid "" -"This function \":term:`steals `\" a reference to *o* and discards a " -"reference to an item already in the tuple at the affected position (unless " -"it was NULL)." +msgid "This function \":term:`steals `\" a reference to *o* and discards a reference to an item already in the tuple at the affected position (unless it was NULL)." msgstr "" -#: ../../c-api/tuple.rst:100 -msgid "" -"Like :c:func:`PyTuple_SetItem`, but does no error checking, and should " -"*only* be used to fill in brand new tuples." +msgid "Like :c:func:`PyTuple_SetItem`, but does no error checking, and should *only* be used to fill in brand new tuples." msgstr "" -#: ../../c-api/tuple.rst:103 ../../c-api/tuple.rst:225 -#: ../../c-api/tuple.rst:243 -msgid "" -"Bounds checking is performed as an assertion if Python is built " -"in :ref:`debug mode ` or :option:`with assertions <--with-" -"assertions>`." +msgid "Bounds checking is performed as an assertion if Python is built in :ref:`debug mode ` or :option:`with assertions <--with-assertions>`." msgstr "" -#: ../../c-api/tuple.rst:108 -msgid "" -"This function \":term:`steals `\" a reference to *o*, and, " -"unlike :c:func:`PyTuple_SetItem`, does *not* discard a reference to any item " -"that is being replaced; any reference in the tuple at position *pos* will be " -"leaked." +msgid "This function \":term:`steals `\" a reference to *o*, and, unlike :c:func:`PyTuple_SetItem`, does *not* discard a reference to any item that is being replaced; any reference in the tuple at position *pos* will be leaked." msgstr "" -#: ../../c-api/tuple.rst:115 -msgid "" -"This macro should *only* be used on tuples that are newly created. Using " -"this macro on a tuple that is already in use (or in other words, has a " -"refcount > 1) could lead to undefined behavior." +msgid "This macro should *only* be used on tuples that are newly created. Using this macro on a tuple that is already in use (or in other words, has a refcount > 1) could lead to undefined behavior." +msgstr "" + +msgid "Can be used to resize a tuple. *newsize* will be the new length of the tuple. Because tuples are *supposed* to be immutable, this should only be used if there is only one reference to the object. Do *not* use this if the tuple may already be known to some other part of the code. The tuple will always grow or shrink at the end. Think of this as destroying the old tuple and creating a new one, only more efficiently. Returns ``0`` on success. Client code should never assume that the resulting value of ``*p`` will be the same as before calling this function. If the object referenced by ``*p`` is replaced, the original ``*p`` is destroyed. On failure, returns ``-1`` and sets ``*p`` to ``NULL``, and raises :exc:`MemoryError` or :exc:`SystemError`." msgstr "" -#: ../../c-api/tuple.rst:122 -msgid "" -"Can be used to resize a tuple. *newsize* will be the new length of the " -"tuple. Because tuples are *supposed* to be immutable, this should only be " -"used if there is only one reference to the object. Do *not* use this if the " -"tuple may already be known to some other part of the code. The tuple will " -"always grow or shrink at the end. Think of this as destroying the old tuple " -"and creating a new one, only more efficiently. Returns ``0`` on success. " -"Client code should never assume that the resulting value of ``*p`` will be " -"the same as before calling this function. If the object referenced by ``*p`` " -"is replaced, the original ``*p`` is destroyed. On failure, returns ``-1`` " -"and sets ``*p`` to ``NULL``, and raises :exc:`MemoryError` " -"or :exc:`SystemError`." -msgstr "" - -#: ../../c-api/tuple.rst:137 msgid "Struct Sequence Objects" msgstr "" -#: ../../c-api/tuple.rst:139 -msgid "" -"Struct sequence objects are the C equivalent " -"of :func:`~collections.namedtuple` objects, i.e. a sequence whose items can " -"also be accessed through attributes. To create a struct sequence, you first " -"have to create a specific struct sequence type." +msgid "Struct sequence objects are the C equivalent of :func:`~collections.namedtuple` objects, i.e. a sequence whose items can also be accessed through attributes. To create a struct sequence, you first have to create a specific struct sequence type." msgstr "" -#: ../../c-api/tuple.rst:146 -msgid "" -"Create a new struct sequence type from the data in *desc*, described below. " -"Instances of the resulting type can be created " -"with :c:func:`PyStructSequence_New`." +msgid "Create a new struct sequence type from the data in *desc*, described below. Instances of the resulting type can be created with :c:func:`PyStructSequence_New`." msgstr "" -#: ../../c-api/tuple.rst:149 ../../c-api/tuple.rst:218 msgid "Return ``NULL`` with an exception set on failure." msgstr "" -#: ../../c-api/tuple.rst:154 msgid "Initializes a struct sequence type *type* from *desc* in place." msgstr "" -#: ../../c-api/tuple.rst:159 -msgid "" -"Like :c:func:`PyStructSequence_InitType`, but returns ``0`` on success and " -"``-1`` with an exception set on failure." +msgid "Like :c:func:`PyStructSequence_InitType`, but returns ``0`` on success and ``-1`` with an exception set on failure." msgstr "" -#: ../../c-api/tuple.rst:167 msgid "Contains the meta information of a struct sequence type to create." msgstr "" -#: ../../c-api/tuple.rst:171 -msgid "" -"Fully qualified name of the type; null-terminated UTF-8 encoded. The name " -"must contain the module name." +msgid "Fully qualified name of the type; null-terminated UTF-8 encoded. The name must contain the module name." msgstr "" -#: ../../c-api/tuple.rst:176 msgid "Pointer to docstring for the type or ``NULL`` to omit." msgstr "" -#: ../../c-api/tuple.rst:180 msgid "Pointer to ``NULL``-terminated array with field names of the new type." msgstr "" -#: ../../c-api/tuple.rst:184 msgid "Number of fields visible to the Python side (if used as tuple)." msgstr "" -#: ../../c-api/tuple.rst:189 -msgid "" -"Describes a field of a struct sequence. As a struct sequence is modeled as a " -"tuple, all fields are typed as :c:expr:`PyObject*`. The index in " -"the :c:member:`~PyStructSequence_Desc.fields` array of " -"the :c:type:`PyStructSequence_Desc` determines which field of the struct " -"sequence is described." +msgid "Describes a field of a struct sequence. As a struct sequence is modeled as a tuple, all fields are typed as :c:expr:`PyObject*`. The index in the :c:member:`~PyStructSequence_Desc.fields` array of the :c:type:`PyStructSequence_Desc` determines which field of the struct sequence is described." msgstr "" -#: ../../c-api/tuple.rst:197 -msgid "" -"Name for the field or ``NULL`` to end the list of named fields, set " -"to :c:data:`PyStructSequence_UnnamedField` to leave unnamed." +msgid "Name for the field or ``NULL`` to end the list of named fields, set to :c:data:`PyStructSequence_UnnamedField` to leave unnamed." msgstr "" -#: ../../c-api/tuple.rst:202 msgid "Field docstring or ``NULL`` to omit." msgstr "" -#: ../../c-api/tuple.rst:207 msgid "Special value for a field name to leave it unnamed." msgstr "" -#: ../../c-api/tuple.rst:209 msgid "The type was changed from ``char *``." msgstr "" -#: ../../c-api/tuple.rst:215 -msgid "" -"Creates an instance of *type*, which must have been created " -"with :c:func:`PyStructSequence_NewType`." +msgid "Creates an instance of *type*, which must have been created with :c:func:`PyStructSequence_NewType`." msgstr "" -#: ../../c-api/tuple.rst:223 -msgid "" -"Return the object at position *pos* in the struct sequence pointed to by *p*." +msgid "Return the object at position *pos* in the struct sequence pointed to by *p*." msgstr "" -#: ../../c-api/tuple.rst:231 msgid "Alias to :c:func:`PyStructSequence_GetItem`." msgstr "" -#: ../../c-api/tuple.rst:233 msgid "Now implemented as an alias to :c:func:`PyStructSequence_GetItem`." msgstr "" -#: ../../c-api/tuple.rst:239 -msgid "" -"Sets the field at index *pos* of the struct sequence *p* to value *o*. " -"Like :c:func:`PyTuple_SET_ITEM`, this should only be used to fill in brand " -"new instances." +msgid "Sets the field at index *pos* of the struct sequence *p* to value *o*. Like :c:func:`PyTuple_SET_ITEM`, this should only be used to fill in brand new instances." msgstr "" -#: ../../c-api/tuple.rst:248 msgid "This function \":term:`steals `\" a reference to *o*." msgstr "" -#: ../../c-api/tuple.rst:253 msgid "Alias to :c:func:`PyStructSequence_SetItem`." msgstr "" -#: ../../c-api/tuple.rst:255 msgid "Now implemented as an alias to :c:func:`PyStructSequence_SetItem`." msgstr "" -#: ../../c-api/tuple.rst:8 msgid "object" msgstr "" -#: ../../c-api/tuple.rst:8 msgid "tuple" msgstr "" diff --git a/c-api/type.po b/c-api/type.po index 8d3737ab..78529694 100644 --- a/c-api/type.po +++ b/c-api/type.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:50+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,822 +23,415 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../c-api/type.rst:6 msgid "Type Objects" msgstr "" -#: ../../c-api/type.rst:13 msgid "The C structure of the objects used to describe built-in types." msgstr "" -#: ../../c-api/type.rst:18 -msgid "" -"This is the type object for type objects; it is the same object " -"as :class:`type` in the Python layer." +msgid "This is the type object for type objects; it is the same object as :class:`type` in the Python layer." msgstr "" -#: ../../c-api/type.rst:24 -msgid "" -"Return non-zero if the object *o* is a type object, including instances of " -"types derived from the standard type object. Return 0 in all other cases. " -"This function always succeeds." +msgid "Return non-zero if the object *o* is a type object, including instances of types derived from the standard type object. Return 0 in all other cases. This function always succeeds." msgstr "" -#: ../../c-api/type.rst:31 -msgid "" -"Return non-zero if the object *o* is a type object, but not a subtype of the " -"standard type object. Return 0 in all other cases. This function always " -"succeeds." +msgid "Return non-zero if the object *o* is a type object, but not a subtype of the standard type object. Return 0 in all other cases. This function always succeeds." msgstr "" -#: ../../c-api/type.rst:38 msgid "Clear the internal lookup cache. Return the current version tag." msgstr "" -#: ../../c-api/type.rst:42 -msgid "" -"Return the :c:member:`~PyTypeObject.tp_flags` member of *type*. This " -"function is primarily meant for use with ``Py_LIMITED_API``; the individual " -"flag bits are guaranteed to be stable across Python releases, but access " -"to :c:member:`~PyTypeObject.tp_flags` itself is not part of " -"the :ref:`limited API `." +msgid "Return the :c:member:`~PyTypeObject.tp_flags` member of *type*. This function is primarily meant for use with ``Py_LIMITED_API``; the individual flag bits are guaranteed to be stable across Python releases, but access to :c:member:`~PyTypeObject.tp_flags` itself is not part of the :ref:`limited API `." msgstr "" -#: ../../c-api/type.rst:49 msgid "The return type is now ``unsigned long`` rather than ``long``." msgstr "" -#: ../../c-api/type.rst:55 -msgid "" -"Return the type object's internal namespace, which is otherwise only exposed " -"via a read-only proxy (:attr:`cls.__dict__ `). This is a " -"replacement for accessing :c:member:`~PyTypeObject.tp_dict` directly. The " -"returned dictionary must be treated as read-only." +msgid "Return the type object's internal namespace, which is otherwise only exposed via a read-only proxy (:attr:`cls.__dict__ `). This is a replacement for accessing :c:member:`~PyTypeObject.tp_dict` directly. The returned dictionary must be treated as read-only." msgstr "" -#: ../../c-api/type.rst:61 -msgid "" -"This function is meant for specific embedding and language-binding cases, " -"where direct access to the dict is necessary and indirect access (e.g. via " -"the proxy or :c:func:`PyObject_GetAttr`) isn't adequate." +msgid "This function is meant for specific embedding and language-binding cases, where direct access to the dict is necessary and indirect access (e.g. via the proxy or :c:func:`PyObject_GetAttr`) isn't adequate." msgstr "" -#: ../../c-api/type.rst:65 -msgid "" -"Extension modules should continue to use ``tp_dict``, directly or " -"indirectly, when setting up their own types." +msgid "Extension modules should continue to use ``tp_dict``, directly or indirectly, when setting up their own types." msgstr "" -#: ../../c-api/type.rst:73 -msgid "" -"Invalidate the internal lookup cache for the type and all of its subtypes. " -"This function must be called after any manual modification of the attributes " -"or base classes of the type." +msgid "Invalidate the internal lookup cache for the type and all of its subtypes. This function must be called after any manual modification of the attributes or base classes of the type." msgstr "" -#: ../../c-api/type.rst:80 -msgid "" -"Register *callback* as a type watcher. Return a non-negative integer ID " -"which must be passed to future calls to :c:func:`PyType_Watch`. In case of " -"error (e.g. no more watcher IDs available), return ``-1`` and set an " -"exception." +msgid "Register *callback* as a type watcher. Return a non-negative integer ID which must be passed to future calls to :c:func:`PyType_Watch`. In case of error (e.g. no more watcher IDs available), return ``-1`` and set an exception." msgstr "" -#: ../../c-api/type.rst:85 -msgid "" -"In free-threaded builds, :c:func:`PyType_AddWatcher` is not thread-safe, so " -"it must be called at start up (before spawning the first thread)." +msgid "In free-threaded builds, :c:func:`PyType_AddWatcher` is not thread-safe, so it must be called at start up (before spawning the first thread)." msgstr "" -#: ../../c-api/type.rst:93 -msgid "" -"Clear watcher identified by *watcher_id* (previously returned " -"from :c:func:`PyType_AddWatcher`). Return ``0`` on success, ``-1`` on error " -"(e.g. if *watcher_id* was never registered.)" +msgid "Clear watcher identified by *watcher_id* (previously returned from :c:func:`PyType_AddWatcher`). Return ``0`` on success, ``-1`` on error (e.g. if *watcher_id* was never registered.)" msgstr "" -#: ../../c-api/type.rst:97 -msgid "" -"An extension should never call ``PyType_ClearWatcher`` with a *watcher_id* " -"that was not returned to it by a previous call " -"to :c:func:`PyType_AddWatcher`." +msgid "An extension should never call ``PyType_ClearWatcher`` with a *watcher_id* that was not returned to it by a previous call to :c:func:`PyType_AddWatcher`." msgstr "" -#: ../../c-api/type.rst:106 -msgid "" -"Mark *type* as watched. The callback granted *watcher_id* " -"by :c:func:`PyType_AddWatcher` will be called " -"whenever :c:func:`PyType_Modified` reports a change to *type*. (The callback " -"may be called only once for a series of consecutive modifications to *type*, " -"if :c:func:`!_PyType_Lookup` is not called on *type* between the " -"modifications; this is an implementation detail and subject to change.)" +msgid "Mark *type* as watched. The callback granted *watcher_id* by :c:func:`PyType_AddWatcher` will be called whenever :c:func:`PyType_Modified` reports a change to *type*. (The callback may be called only once for a series of consecutive modifications to *type*, if :c:func:`!_PyType_Lookup` is not called on *type* between the modifications; this is an implementation detail and subject to change.)" msgstr "" -#: ../../c-api/type.rst:113 -msgid "" -"An extension should never call ``PyType_Watch`` with a *watcher_id* that was " -"not returned to it by a previous call to :c:func:`PyType_AddWatcher`." +msgid "An extension should never call ``PyType_Watch`` with a *watcher_id* that was not returned to it by a previous call to :c:func:`PyType_AddWatcher`." msgstr "" -#: ../../c-api/type.rst:121 -msgid "" -"Mark *type* as not watched. This undoes a previous call " -"to :c:func:`PyType_Watch`. *type* must not be ``NULL``." +msgid "Mark *type* as not watched. This undoes a previous call to :c:func:`PyType_Watch`. *type* must not be ``NULL``." msgstr "" -#: ../../c-api/type.rst:124 -msgid "" -"An extension should never call this function with a *watcher_id* that was " -"not returned to it by a previous call to :c:func:`PyType_AddWatcher`." +msgid "An extension should never call this function with a *watcher_id* that was not returned to it by a previous call to :c:func:`PyType_AddWatcher`." msgstr "" -#: ../../c-api/type.rst:127 -msgid "" -"On success, this function returns ``0``. On failure, this function returns " -"``-1`` with an exception set." +msgid "On success, this function returns ``0``. On failure, this function returns ``-1`` with an exception set." msgstr "" -#: ../../c-api/type.rst:135 msgid "Type of a type-watcher callback function." msgstr "" -#: ../../c-api/type.rst:137 -msgid "" -"The callback must not modify *type* or cause :c:func:`PyType_Modified` to be " -"called on *type* or any type in its MRO; violating this rule could cause " -"infinite recursion." +msgid "The callback must not modify *type* or cause :c:func:`PyType_Modified` to be called on *type* or any type in its MRO; violating this rule could cause infinite recursion." msgstr "" -#: ../../c-api/type.rst:146 -msgid "" -"Return non-zero if the type object *o* sets the feature *feature*. Type " -"features are denoted by single bit flags." +msgid "Return non-zero if the type object *o* sets the feature *feature*. Type features are denoted by single bit flags." msgstr "" -#: ../../c-api/type.rst:152 -msgid "" -"Return non-zero if the type object *type* sets the subclass flag *flag*. " -"Subclass flags are denoted by :c:macro:`Py_TPFLAGS_*_SUBCLASS " -"`. This function is used by many ``_Check`` " -"functions for common types." +msgid "Return non-zero if the type object *type* sets the subclass flag *flag*. Subclass flags are denoted by :c:macro:`Py_TPFLAGS_*_SUBCLASS `. This function is used by many ``_Check`` functions for common types." msgstr "" -#: ../../c-api/type.rst:158 -msgid "" -":c:func:`PyObject_TypeCheck`, which is used as a slower alternative in " -"``_Check`` functions for types that don't come with subclass flags." +msgid ":c:func:`PyObject_TypeCheck`, which is used as a slower alternative in ``_Check`` functions for types that don't come with subclass flags." msgstr "" -#: ../../c-api/type.rst:164 -msgid "" -"Return true if the type object includes support for the cycle detector; this " -"tests the type flag :c:macro:`Py_TPFLAGS_HAVE_GC`." +msgid "Return true if the type object includes support for the cycle detector; this tests the type flag :c:macro:`Py_TPFLAGS_HAVE_GC`." msgstr "" -#: ../../c-api/type.rst:170 msgid "Return true if *a* is a subtype of *b*." msgstr "" -#: ../../c-api/type.rst:172 -msgid "" -"This function only checks for actual subtypes, which means " -"that :meth:`~type.__subclasscheck__` is not called on *b*. " -"Call :c:func:`PyObject_IsSubclass` to do the same check " -"that :func:`issubclass` would do." +msgid "This function only checks for actual subtypes, which means that :meth:`~type.__subclasscheck__` is not called on *b*. Call :c:func:`PyObject_IsSubclass` to do the same check that :func:`issubclass` would do." msgstr "" -#: ../../c-api/type.rst:180 -msgid "" -"Generic handler for the :c:member:`~PyTypeObject.tp_alloc` slot of a type " -"object. Uses Python's default memory allocation mechanism to allocate " -"memory for a new instance, zeros the memory, then initializes the memory as " -"if by calling :c:func:`PyObject_Init` or :c:func:`PyObject_InitVar`." +msgid "Generic handler for the :c:member:`~PyTypeObject.tp_alloc` slot of a type object. Uses Python's default memory allocation mechanism to allocate memory for a new instance, zeros the memory, then initializes the memory as if by calling :c:func:`PyObject_Init` or :c:func:`PyObject_InitVar`." msgstr "" -#: ../../c-api/type.rst:185 -msgid "" -"Do not call this directly to allocate memory for an object; call the " -"type's :c:member:`~PyTypeObject.tp_alloc` slot instead." +msgid "Do not call this directly to allocate memory for an object; call the type's :c:member:`~PyTypeObject.tp_alloc` slot instead." msgstr "" -#: ../../c-api/type.rst:188 -msgid "" -"For types that support garbage collection (i.e., " -"the :c:macro:`Py_TPFLAGS_HAVE_GC` flag is set), this function behaves " -"like :c:macro:`PyObject_GC_New` or :c:macro:`PyObject_GC_NewVar` (except the " -"memory is guaranteed to be zeroed before initialization), and should be " -"paired with :c:func:`PyObject_GC_Del` in :c:member:`~PyTypeObject.tp_free`. " -"Otherwise, it behaves like :c:macro:`PyObject_New` " -"or :c:macro:`PyObject_NewVar` (except the memory is guaranteed to be zeroed " -"before initialization) and should be paired with :c:func:`PyObject_Free` " -"in :c:member:`~PyTypeObject.tp_free`." -msgstr "" - -#: ../../c-api/type.rst:201 -msgid "" -"Generic handler for the :c:member:`~PyTypeObject.tp_new` slot of a type " -"object. Creates a new instance using the " -"type's :c:member:`~PyTypeObject.tp_alloc` slot and returns the resulting " -"object." +msgid "For types that support garbage collection (i.e., the :c:macro:`Py_TPFLAGS_HAVE_GC` flag is set), this function behaves like :c:macro:`PyObject_GC_New` or :c:macro:`PyObject_GC_NewVar` (except the memory is guaranteed to be zeroed before initialization), and should be paired with :c:func:`PyObject_GC_Del` in :c:member:`~PyTypeObject.tp_free`. Otherwise, it behaves like :c:macro:`PyObject_New` or :c:macro:`PyObject_NewVar` (except the memory is guaranteed to be zeroed before initialization) and should be paired with :c:func:`PyObject_Free` in :c:member:`~PyTypeObject.tp_free`." msgstr "" -#: ../../c-api/type.rst:208 -msgid "" -"Finalize a type object. This should be called on all type objects to finish " -"their initialization. This function is responsible for adding inherited " -"slots from a type's base class. Return ``0`` on success, or return ``-1`` " -"and sets an exception on error." +msgid "Generic handler for the :c:member:`~PyTypeObject.tp_new` slot of a type object. Creates a new instance using the type's :c:member:`~PyTypeObject.tp_alloc` slot and returns the resulting object." msgstr "" -#: ../../c-api/type.rst:214 -msgid "" -"If some of the base classes implements the GC protocol and the provided type " -"does not include the :c:macro:`Py_TPFLAGS_HAVE_GC` in its flags, then the GC " -"protocol will be automatically implemented from its parents. On the " -"contrary, if the type being created does " -"include :c:macro:`Py_TPFLAGS_HAVE_GC` in its flags then it **must** " -"implement the GC protocol itself by at least implementing " -"the :c:member:`~PyTypeObject.tp_traverse` handle." +msgid "Finalize a type object. This should be called on all type objects to finish their initialization. This function is responsible for adding inherited slots from a type's base class. Return ``0`` on success, or return ``-1`` and sets an exception on error." msgstr "" -#: ../../c-api/type.rst:225 -msgid "" -"Return the type's name. Equivalent to getting the " -"type's :attr:`~type.__name__` attribute." +msgid "If some of the base classes implements the GC protocol and the provided type does not include the :c:macro:`Py_TPFLAGS_HAVE_GC` in its flags, then the GC protocol will be automatically implemented from its parents. On the contrary, if the type being created does include :c:macro:`Py_TPFLAGS_HAVE_GC` in its flags then it **must** implement the GC protocol itself by at least implementing the :c:member:`~PyTypeObject.tp_traverse` handle." msgstr "" -#: ../../c-api/type.rst:233 -msgid "" -"Return the type's qualified name. Equivalent to getting the " -"type's :attr:`~type.__qualname__` attribute." +msgid "Return the type's name. Equivalent to getting the type's :attr:`~type.__name__` attribute." msgstr "" -#: ../../c-api/type.rst:240 -msgid "" -"Return the type's fully qualified name. Equivalent to ``f\"{type.__module__}." -"{type.__qualname__}\"``, or :attr:`type.__qualname__` " -"if :attr:`type.__module__` is not a string or is equal to ``\"builtins\"``." +msgid "Return the type's qualified name. Equivalent to getting the type's :attr:`~type.__qualname__` attribute." msgstr "" -#: ../../c-api/type.rst:249 -msgid "" -"Return the type's module name. Equivalent to getting " -"the :attr:`type.__module__` attribute." +msgid "Return the type's fully qualified name. Equivalent to ``f\"{type.__module__}.{type.__qualname__}\"``, or :attr:`type.__qualname__` if :attr:`type.__module__` is not a string or is equal to ``\"builtins\"``." msgstr "" -#: ../../c-api/type.rst:257 -msgid "" -"Return the function pointer stored in the given slot. If the result is " -"``NULL``, this indicates that either the slot is ``NULL``, or that the " -"function was called with invalid parameters. Callers will typically cast the " -"result pointer into the appropriate function type." +msgid "Return the type's module name. Equivalent to getting the :attr:`type.__module__` attribute." msgstr "" -#: ../../c-api/type.rst:263 -msgid "" -"See :c:member:`PyType_Slot.slot` for possible values of the *slot* argument." +msgid "Return the function pointer stored in the given slot. If the result is ``NULL``, this indicates that either the slot is ``NULL``, or that the function was called with invalid parameters. Callers will typically cast the result pointer into the appropriate function type." msgstr "" -#: ../../c-api/type.rst:267 -msgid "" -":c:func:`PyType_GetSlot` can now accept all types. Previously, it was " -"limited to :ref:`heap types `." +msgid "See :c:member:`PyType_Slot.slot` for possible values of the *slot* argument." msgstr "" -#: ../../c-api/type.rst:274 -msgid "" -"Return the module object associated with the given type when the type was " -"created using :c:func:`PyType_FromModuleAndSpec`." +msgid ":c:func:`PyType_GetSlot` can now accept all types. Previously, it was limited to :ref:`heap types `." msgstr "" -#: ../../c-api/type.rst:277 ../../c-api/type.rst:324 -msgid "" -"The returned reference is :term:`borrowed ` from *type*, " -"and will be valid as long as you hold a reference to *type*. Do not release " -"it with :c:func:`Py_DECREF` or similar." +msgid "Return the module object associated with the given type when the type was created using :c:func:`PyType_FromModuleAndSpec`." msgstr "" -#: ../../c-api/type.rst:281 ../../c-api/type.rst:302 -msgid "" -"If no module is associated with the given type, sets :py:class:`TypeError` " -"and returns ``NULL``." +msgid "The returned reference is :term:`borrowed ` from *type*, and will be valid as long as you hold a reference to *type*. Do not release it with :c:func:`Py_DECREF` or similar." msgstr "" -#: ../../c-api/type.rst:284 -msgid "" -"This function is usually used to get the module in which a method is " -"defined. Note that in such a method, ``PyType_GetModule(Py_TYPE(self))`` may " -"not return the intended result. ``Py_TYPE(self)`` may be a *subclass* of the " -"intended class, and subclasses are not necessarily defined in the same " -"module as their superclass. See :c:type:`PyCMethod` to get the class that " -"defines the method. See :c:func:`PyType_GetModuleByDef` for cases " -"when :c:type:`!PyCMethod` cannot be used." +msgid "If no module is associated with the given type, sets :py:class:`TypeError` and returns ``NULL``." msgstr "" -#: ../../c-api/type.rst:298 -msgid "" -"Return the state of the module object associated with the given type. This " -"is a shortcut for calling :c:func:`PyModule_GetState()` on the result " -"of :c:func:`PyType_GetModule`." +msgid "This function is usually used to get the module in which a method is defined. Note that in such a method, ``PyType_GetModule(Py_TYPE(self))`` may not return the intended result. ``Py_TYPE(self)`` may be a *subclass* of the intended class, and subclasses are not necessarily defined in the same module as their superclass. See :c:type:`PyCMethod` to get the class that defines the method. See :c:func:`PyType_GetModuleByDef` for cases when :c:type:`!PyCMethod` cannot be used." msgstr "" -#: ../../c-api/type.rst:305 -msgid "" -"If the *type* has an associated module but its state is ``NULL``, returns " -"``NULL`` without setting an exception." +msgid "Return the state of the module object associated with the given type. This is a shortcut for calling :c:func:`PyModule_GetState()` on the result of :c:func:`PyType_GetModule`." msgstr "" -#: ../../c-api/type.rst:313 -msgid "" -"Find the first superclass whose module was created from the " -"given :c:type:`PyModuleDef` *def*, and return that module." +msgid "If the *type* has an associated module but its state is ``NULL``, returns ``NULL`` without setting an exception." msgstr "" -#: ../../c-api/type.rst:316 -msgid "" -"If no module is found, raises a :py:class:`TypeError` and returns ``NULL``." +msgid "Find the first superclass whose module was created from the given :c:type:`PyModuleDef` *def*, and return that module." msgstr "" -#: ../../c-api/type.rst:318 -msgid "" -"This function is intended to be used together " -"with :c:func:`PyModule_GetState()` to get module state from slot methods " -"(such as :c:member:`~PyTypeObject.tp_init` " -"or :c:member:`~PyNumberMethods.nb_add`) and other places where a method's " -"defining class cannot be passed using the :c:type:`PyCMethod` calling " -"convention." +msgid "If no module is found, raises a :py:class:`TypeError` and returns ``NULL``." msgstr "" -#: ../../c-api/type.rst:333 -msgid "" -"Find the first superclass in *type*'s :term:`method resolution order` " -"whose :c:macro:`Py_tp_token` token is equal to the given one." +msgid "This function is intended to be used together with :c:func:`PyModule_GetState()` to get module state from slot methods (such as :c:member:`~PyTypeObject.tp_init` or :c:member:`~PyNumberMethods.nb_add`) and other places where a method's defining class cannot be passed using the :c:type:`PyCMethod` calling convention." msgstr "" -#: ../../c-api/type.rst:336 -msgid "" -"If found, set *\\*result* to a new :term:`strong reference` to it and return " -"``1``." +msgid "Find the first superclass in *type*'s :term:`method resolution order` whose :c:macro:`Py_tp_token` token is equal to the given one." +msgstr "" + +msgid "If found, set *\\*result* to a new :term:`strong reference` to it and return ``1``." msgstr "" -#: ../../c-api/type.rst:338 msgid "If not found, set *\\*result* to ``NULL`` and return ``0``." msgstr "" -#: ../../c-api/type.rst:339 -msgid "" -"On error, set *\\*result* to ``NULL`` and return ``-1`` with an exception " -"set." +msgid "On error, set *\\*result* to ``NULL`` and return ``-1`` with an exception set." msgstr "" -#: ../../c-api/type.rst:342 -msgid "" -"The *result* argument may be ``NULL``, in which case *\\*result* is not set. " -"Use this if you need only the return value." +msgid "The *result* argument may be ``NULL``, in which case *\\*result* is not set. Use this if you need only the return value." msgstr "" -#: ../../c-api/type.rst:345 msgid "The *token* argument may not be ``NULL``." msgstr "" -#: ../../c-api/type.rst:352 msgid "Attempt to assign a version tag to the given type." msgstr "" -#: ../../c-api/type.rst:354 -msgid "" -"Returns 1 if the type already had a valid version tag or a new one was " -"assigned, or 0 if a new tag could not be assigned." +msgid "Returns 1 if the type already had a valid version tag or a new one was assigned, or 0 if a new tag could not be assigned." msgstr "" -#: ../../c-api/type.rst:362 -msgid "" -"Return true if instances of *type* support creating weak references, false " -"otherwise. This function always succeeds. *type* must not be ``NULL``." +msgid "Return true if instances of *type* support creating weak references, false otherwise. This function always succeeds. *type* must not be ``NULL``." msgstr "" -#: ../../c-api/type.rst:366 msgid ":ref:`weakrefobjects`" msgstr "" -#: ../../c-api/type.rst:367 msgid ":py:mod:`weakref`" msgstr "" -#: ../../c-api/type.rst:371 msgid "Creating Heap-Allocated Types" msgstr "" -#: ../../c-api/type.rst:373 -msgid "" -"The following functions and structs are used to create :ref:`heap types " -"`." +msgid "The following functions and structs are used to create :ref:`heap types `." msgstr "" -#: ../../c-api/type.rst:378 -msgid "" -"Create and return a :ref:`heap type ` from the *spec* " -"(see :c:macro:`Py_TPFLAGS_HEAPTYPE`)." +msgid "Create and return a :ref:`heap type ` from the *spec* (see :c:macro:`Py_TPFLAGS_HEAPTYPE`)." msgstr "" -#: ../../c-api/type.rst:381 -msgid "" -"The metaclass *metaclass* is used to construct the resulting type object. " -"When *metaclass* is ``NULL``, the metaclass is derived from *bases* (or " -"*Py_tp_base[s]* slots if *bases* is ``NULL``, see below)." +msgid "The metaclass *metaclass* is used to construct the resulting type object. When *metaclass* is ``NULL``, the metaclass is derived from *bases* (or *Py_tp_base[s]* slots if *bases* is ``NULL``, see below)." msgstr "" -#: ../../c-api/type.rst:385 -msgid "" -"Metaclasses that override :c:member:`~PyTypeObject.tp_new` are not " -"supported, except if ``tp_new`` is ``NULL``." +msgid "Metaclasses that override :c:member:`~PyTypeObject.tp_new` are not supported, except if ``tp_new`` is ``NULL``." msgstr "" -#: ../../c-api/type.rst:388 -msgid "" -"The *bases* argument can be used to specify base classes; it can either be " -"only one class or a tuple of classes. If *bases* is ``NULL``, " -"the :c:data:`Py_tp_bases` slot is used instead. If that also is ``NULL``, " -"the :c:data:`Py_tp_base` slot is used instead. If that also is ``NULL``, the " -"new type derives from :class:`object`." +msgid "The *bases* argument can be used to specify base classes; it can either be only one class or a tuple of classes. If *bases* is ``NULL``, the :c:data:`Py_tp_bases` slot is used instead. If that also is ``NULL``, the :c:data:`Py_tp_base` slot is used instead. If that also is ``NULL``, the new type derives from :class:`object`." msgstr "" -#: ../../c-api/type.rst:394 -msgid "" -"The *module* argument can be used to record the module in which the new " -"class is defined. It must be a module object or ``NULL``. If not ``NULL``, " -"the module is associated with the new type and can later be retrieved " -"with :c:func:`PyType_GetModule`. The associated module is not inherited by " -"subclasses; it must be specified for each class individually." +msgid "The *module* argument can be used to record the module in which the new class is defined. It must be a module object or ``NULL``. If not ``NULL``, the module is associated with the new type and can later be retrieved with :c:func:`PyType_GetModule`. The associated module is not inherited by subclasses; it must be specified for each class individually." msgstr "" -#: ../../c-api/type.rst:401 msgid "This function calls :c:func:`PyType_Ready` on the new type." msgstr "" -#: ../../c-api/type.rst:403 -msgid "" -"Note that this function does *not* fully match the behavior of " -"calling :py:class:`type() ` or using the :keyword:`class` statement. " -"With user-provided base types or metaclasses, prefer :ref:`calling ` :py:class:`type` (or the metaclass) over ``PyType_From*`` functions. " -"Specifically:" +msgid "Note that this function does *not* fully match the behavior of calling :py:class:`type() ` or using the :keyword:`class` statement. With user-provided base types or metaclasses, prefer :ref:`calling ` :py:class:`type` (or the metaclass) over ``PyType_From*`` functions. Specifically:" msgstr "" -#: ../../c-api/type.rst:410 -msgid "" -":py:meth:`~object.__new__` is not called on the new class (and it must be " -"set to ``type.__new__``)." +msgid ":py:meth:`~object.__new__` is not called on the new class (and it must be set to ``type.__new__``)." msgstr "" -#: ../../c-api/type.rst:412 msgid ":py:meth:`~object.__init__` is not called on the new class." msgstr "" -#: ../../c-api/type.rst:413 msgid ":py:meth:`~object.__init_subclass__` is not called on any bases." msgstr "" -#: ../../c-api/type.rst:414 msgid ":py:meth:`~object.__set_name__` is not called on new descriptors." msgstr "" -#: ../../c-api/type.rst:421 msgid "Equivalent to ``PyType_FromMetaclass(NULL, module, spec, bases)``." msgstr "" -#: ../../c-api/type.rst:427 -msgid "" -"The function now accepts a single class as the *bases* argument and ``NULL`` " -"as the ``tp_doc`` slot." +msgid "The function now accepts a single class as the *bases* argument and ``NULL`` as the ``tp_doc`` slot." msgstr "" -#: ../../c-api/type.rst:432 ../../c-api/type.rst:454 -msgid "" -"The function now finds and uses a metaclass corresponding to the provided " -"base classes. Previously, only :class:`type` instances were returned." +msgid "The function now finds and uses a metaclass corresponding to the provided base classes. Previously, only :class:`type` instances were returned." msgstr "" -#: ../../c-api/type.rst:435 ../../c-api/type.rst:457 ../../c-api/type.rst:478 -msgid "" -"The :c:member:`~PyTypeObject.tp_new` of the metaclass is *ignored*. which " -"may result in incomplete initialization. Creating classes whose metaclass " -"overrides :c:member:`~PyTypeObject.tp_new` is deprecated." +msgid "The :c:member:`~PyTypeObject.tp_new` of the metaclass is *ignored*. which may result in incomplete initialization. Creating classes whose metaclass overrides :c:member:`~PyTypeObject.tp_new` is deprecated." msgstr "" -#: ../../c-api/type.rst:442 ../../c-api/type.rst:464 ../../c-api/type.rst:485 -msgid "" -"Creating classes whose metaclass overrides :c:member:`~PyTypeObject.tp_new` " -"is no longer allowed." +msgid "Creating classes whose metaclass overrides :c:member:`~PyTypeObject.tp_new` is no longer allowed." msgstr "" -#: ../../c-api/type.rst:448 msgid "Equivalent to ``PyType_FromMetaclass(NULL, NULL, spec, bases)``." msgstr "" -#: ../../c-api/type.rst:470 msgid "Equivalent to ``PyType_FromMetaclass(NULL, NULL, spec, NULL)``." msgstr "" -#: ../../c-api/type.rst:474 -msgid "" -"The function now finds and uses a metaclass corresponding to the base " -"classes provided in *Py_tp_base[s]* slots. Previously, only :class:`type` " -"instances were returned." +msgid "The function now finds and uses a metaclass corresponding to the base classes provided in *Py_tp_base[s]* slots. Previously, only :class:`type` instances were returned." msgstr "" -#: ../../c-api/type.rst:491 -msgid "" -"Make a type immutable: set the :c:macro:`Py_TPFLAGS_IMMUTABLETYPE` flag." +msgid "Make a type immutable: set the :c:macro:`Py_TPFLAGS_IMMUTABLETYPE` flag." msgstr "" -#: ../../c-api/type.rst:493 msgid "All base classes of *type* must be immutable." msgstr "" -#: ../../c-api/type.rst:495 msgid "On success, return ``0``. On error, set an exception and return ``-1``." msgstr "" -#: ../../c-api/type.rst:498 -msgid "" -"The type must not be used before it's made immutable. For example, type " -"instances must not be created before the type is made immutable." +msgid "The type must not be used before it's made immutable. For example, type instances must not be created before the type is made immutable." msgstr "" -#: ../../c-api/type.rst:514 msgid "Structure defining a type's behavior." msgstr "" -#: ../../c-api/type.rst:518 msgid "Name of the type, used to set :c:member:`PyTypeObject.tp_name`." msgstr "" -#: ../../c-api/type.rst:522 -msgid "" -"If positive, specifies the size of the instance in bytes. It is used to " -"set :c:member:`PyTypeObject.tp_basicsize`." +msgid "If positive, specifies the size of the instance in bytes. It is used to set :c:member:`PyTypeObject.tp_basicsize`." msgstr "" -#: ../../c-api/type.rst:525 -msgid "" -"If zero, specifies that :c:member:`~PyTypeObject.tp_basicsize` should be " -"inherited." +msgid "If zero, specifies that :c:member:`~PyTypeObject.tp_basicsize` should be inherited." msgstr "" -#: ../../c-api/type.rst:528 -msgid "" -"If negative, the absolute value specifies how much space instances of the " -"class need *in addition* to the superclass. " -"Use :c:func:`PyObject_GetTypeData` to get a pointer to subclass-specific " -"memory reserved this way. For negative :c:member:`!basicsize`, Python will " -"insert padding when needed to meet :c:member:`~PyTypeObject.tp_basicsize`'s " -"alignment requirements." +msgid "If negative, the absolute value specifies how much space instances of the class need *in addition* to the superclass. Use :c:func:`PyObject_GetTypeData` to get a pointer to subclass-specific memory reserved this way. For negative :c:member:`!basicsize`, Python will insert padding when needed to meet :c:member:`~PyTypeObject.tp_basicsize`'s alignment requirements." msgstr "" -#: ../../c-api/type.rst:538 msgid "Previously, this field could not be negative." msgstr "" -#: ../../c-api/type.rst:542 -msgid "" -"Size of one element of a variable-size type, in bytes. Used to " -"set :c:member:`PyTypeObject.tp_itemsize`. See ``tp_itemsize`` documentation " -"for caveats." +msgid "Size of one element of a variable-size type, in bytes. Used to set :c:member:`PyTypeObject.tp_itemsize`. See ``tp_itemsize`` documentation for caveats." msgstr "" -#: ../../c-api/type.rst:546 -msgid "" -"If zero, :c:member:`~PyTypeObject.tp_itemsize` is inherited. Extending " -"arbitrary variable-sized classes is dangerous, since some types use a fixed " -"offset for variable-sized memory, which can then overlap fixed-sized memory " -"used by a subclass. To help prevent mistakes, inheriting ``itemsize`` is " -"only possible in the following situations:" +msgid "If zero, :c:member:`~PyTypeObject.tp_itemsize` is inherited. Extending arbitrary variable-sized classes is dangerous, since some types use a fixed offset for variable-sized memory, which can then overlap fixed-sized memory used by a subclass. To help prevent mistakes, inheriting ``itemsize`` is only possible in the following situations:" msgstr "" -#: ../../c-api/type.rst:553 -msgid "" -"The base is not variable-sized (its :c:member:`~PyTypeObject.tp_itemsize` is " -"zero)." +msgid "The base is not variable-sized (its :c:member:`~PyTypeObject.tp_itemsize` is zero)." msgstr "" -#: ../../c-api/type.rst:555 -msgid "" -"The requested :c:member:`PyType_Spec.basicsize` is positive, suggesting that " -"the memory layout of the base class is known." +msgid "The requested :c:member:`PyType_Spec.basicsize` is positive, suggesting that the memory layout of the base class is known." msgstr "" -#: ../../c-api/type.rst:557 -msgid "" -"The requested :c:member:`PyType_Spec.basicsize` is zero, suggesting that the " -"subclass does not access the instance's memory directly." +msgid "The requested :c:member:`PyType_Spec.basicsize` is zero, suggesting that the subclass does not access the instance's memory directly." msgstr "" -#: ../../c-api/type.rst:560 msgid "With the :c:macro:`Py_TPFLAGS_ITEMS_AT_END` flag." msgstr "" -#: ../../c-api/type.rst:564 msgid "Type flags, used to set :c:member:`PyTypeObject.tp_flags`." msgstr "" -#: ../../c-api/type.rst:566 -msgid "" -"If the ``Py_TPFLAGS_HEAPTYPE`` flag is not " -"set, :c:func:`PyType_FromSpecWithBases` sets it automatically." +msgid "If the ``Py_TPFLAGS_HEAPTYPE`` flag is not set, :c:func:`PyType_FromSpecWithBases` sets it automatically." msgstr "" -#: ../../c-api/type.rst:571 -msgid "" -"Array of :c:type:`PyType_Slot` structures. Terminated by the special slot " -"value ``{0, NULL}``." +msgid "Array of :c:type:`PyType_Slot` structures. Terminated by the special slot value ``{0, NULL}``." msgstr "" -#: ../../c-api/type.rst:574 msgid "Each slot ID should be specified at most once." msgstr "" -#: ../../c-api/type.rst:584 -msgid "" -"Structure defining optional functionality of a type, containing a slot ID " -"and a value pointer." +msgid "Structure defining optional functionality of a type, containing a slot ID and a value pointer." msgstr "" -#: ../../c-api/type.rst:589 msgid "A slot ID." msgstr "" -#: ../../c-api/type.rst:591 -msgid "" -"Slot IDs are named like the field names of the " -"structures :c:type:`PyTypeObject`, :c:type:`PyNumberMethods`, :c:type:`PySequenceMethods`, :c:type:`PyMappingMethods` " -"and :c:type:`PyAsyncMethods` with an added ``Py_`` prefix. For example, use:" +msgid "Slot IDs are named like the field names of the structures :c:type:`PyTypeObject`, :c:type:`PyNumberMethods`, :c:type:`PySequenceMethods`, :c:type:`PyMappingMethods` and :c:type:`PyAsyncMethods` with an added ``Py_`` prefix. For example, use:" msgstr "" -#: ../../c-api/type.rst:597 msgid ":c:data:`Py_tp_dealloc` to set :c:member:`PyTypeObject.tp_dealloc`" msgstr "" -#: ../../c-api/type.rst:598 msgid ":c:data:`Py_nb_add` to set :c:member:`PyNumberMethods.nb_add`" msgstr "" -#: ../../c-api/type.rst:599 msgid ":c:data:`Py_sq_length` to set :c:member:`PySequenceMethods.sq_length`" msgstr "" -#: ../../c-api/type.rst:601 -msgid "" -"An additional slot is supported that does not correspond to a :c:type:`!" -"PyTypeObject` struct field:" +msgid "An additional slot is supported that does not correspond to a :c:type:`!PyTypeObject` struct field:" msgstr "" -#: ../../c-api/type.rst:604 msgid ":c:data:`Py_tp_token`" msgstr "" -#: ../../c-api/type.rst:606 -msgid "" -"The following “offset” fields cannot be set using :c:type:`PyType_Slot`:" +msgid "The following “offset” fields cannot be set using :c:type:`PyType_Slot`:" msgstr "" -#: ../../c-api/type.rst:608 -msgid "" -":c:member:`~PyTypeObject.tp_weaklistoffset` " -"(use :c:macro:`Py_TPFLAGS_MANAGED_WEAKREF` instead if possible)" +msgid ":c:member:`~PyTypeObject.tp_weaklistoffset` (use :c:macro:`Py_TPFLAGS_MANAGED_WEAKREF` instead if possible)" msgstr "" -#: ../../c-api/type.rst:610 -msgid "" -":c:member:`~PyTypeObject.tp_dictoffset` " -"(use :c:macro:`Py_TPFLAGS_MANAGED_DICT` instead if possible)" +msgid ":c:member:`~PyTypeObject.tp_dictoffset` (use :c:macro:`Py_TPFLAGS_MANAGED_DICT` instead if possible)" msgstr "" -#: ../../c-api/type.rst:612 -msgid "" -":c:member:`~PyTypeObject.tp_vectorcall_offset` (use " -"``\"__vectorcalloffset__\"`` in :ref:`PyMemberDef `)" +msgid ":c:member:`~PyTypeObject.tp_vectorcall_offset` (use ``\"__vectorcalloffset__\"`` in :ref:`PyMemberDef `)" msgstr "" -#: ../../c-api/type.rst:616 -msgid "" -"If it is not possible to switch to a ``MANAGED`` flag (for example, for " -"vectorcall or to support Python older than 3.12), specify the offset " -"in :c:data:`Py_tp_members`. See :ref:`PyMemberDef documentation ` for details." +msgid "If it is not possible to switch to a ``MANAGED`` flag (for example, for vectorcall or to support Python older than 3.12), specify the offset in :c:data:`Py_tp_members`. See :ref:`PyMemberDef documentation ` for details." msgstr "" -#: ../../c-api/type.rst:622 -msgid "" -"The following internal fields cannot be set at all when creating a heap type:" +msgid "The following internal fields cannot be set at all when creating a heap type:" msgstr "" -#: ../../c-api/type.rst:625 -msgid "" -":c:member:`~PyTypeObject.tp_dict`, :c:member:`~PyTypeObject.tp_mro`, :c:member:`~PyTypeObject.tp_cache`, :c:member:`~PyTypeObject.tp_subclasses`, " -"and :c:member:`~PyTypeObject.tp_weaklist`." +msgid ":c:member:`~PyTypeObject.tp_dict`, :c:member:`~PyTypeObject.tp_mro`, :c:member:`~PyTypeObject.tp_cache`, :c:member:`~PyTypeObject.tp_subclasses`, and :c:member:`~PyTypeObject.tp_weaklist`." msgstr "" -#: ../../c-api/type.rst:631 -msgid "" -"Setting :c:data:`Py_tp_bases` or :c:data:`Py_tp_base` may be problematic on " -"some platforms. To avoid issues, use the *bases* argument " -"of :c:func:`PyType_FromSpecWithBases` instead." +msgid "Setting :c:data:`Py_tp_bases` or :c:data:`Py_tp_base` may be problematic on some platforms. To avoid issues, use the *bases* argument of :c:func:`PyType_FromSpecWithBases` instead." msgstr "" -#: ../../c-api/type.rst:636 msgid "Slots in :c:type:`PyBufferProcs` may be set in the unlimited API." msgstr "" -#: ../../c-api/type.rst:639 -msgid "" -":c:member:`~PyBufferProcs.bf_getbuffer` " -"and :c:member:`~PyBufferProcs.bf_releasebuffer` are now available under " -"the :ref:`limited API `." +msgid ":c:member:`~PyBufferProcs.bf_getbuffer` and :c:member:`~PyBufferProcs.bf_releasebuffer` are now available under the :ref:`limited API `." msgstr "" -#: ../../c-api/type.rst:644 -msgid "" -"The field :c:member:`~PyTypeObject.tp_vectorcall` can now be set " -"using :c:data:`Py_tp_vectorcall`. See the field's documentation for details." +msgid "The field :c:member:`~PyTypeObject.tp_vectorcall` can now be set using :c:data:`Py_tp_vectorcall`. See the field's documentation for details." msgstr "" -#: ../../c-api/type.rst:651 -msgid "" -"The desired value of the slot. In most cases, this is a pointer to a " -"function." +msgid "The desired value of the slot. In most cases, this is a pointer to a function." msgstr "" -#: ../../c-api/type.rst:654 msgid "*pfunc* values may not be ``NULL``, except for the following slots:" msgstr "" -#: ../../c-api/type.rst:656 msgid ":c:data:`Py_tp_doc`" msgstr "" -#: ../../c-api/type.rst:657 -msgid "" -":c:data:`Py_tp_token` (for clarity, prefer :c:data:`Py_TP_USE_SPEC` rather " -"than ``NULL``)" +msgid ":c:data:`Py_tp_token` (for clarity, prefer :c:data:`Py_TP_USE_SPEC` rather than ``NULL``)" msgstr "" -#: ../../c-api/type.rst:663 -msgid "" -"A :c:member:`~PyType_Slot.slot` that records a static memory layout ID for a " -"class." +msgid "A :c:member:`~PyType_Slot.slot` that records a static memory layout ID for a class." msgstr "" -#: ../../c-api/type.rst:666 -msgid "" -"If the :c:type:`PyType_Spec` of the class is statically allocated, the token " -"can be set to the spec using the special value :c:data:`Py_TP_USE_SPEC`:" +msgid "If the :c:type:`PyType_Spec` of the class is statically allocated, the token can be set to the spec using the special value :c:data:`Py_TP_USE_SPEC`:" msgstr "" -#: ../../c-api/type.rst:670 msgid "" "static PyType_Slot foo_slots[] = {\n" " {Py_tp_token, Py_TP_USE_SPEC}," msgstr "" -#: ../../c-api/type.rst:675 msgid "It can also be set to an arbitrary pointer, but you must ensure that:" msgstr "" -#: ../../c-api/type.rst:677 -msgid "" -"The pointer outlives the class, so it's not reused for something else while " -"the class exists." +msgid "The pointer outlives the class, so it's not reused for something else while the class exists." msgstr "" -#: ../../c-api/type.rst:679 -msgid "" -"It \"belongs\" to the extension module where the class lives, so it will not " -"clash with other extensions." +msgid "It \"belongs\" to the extension module where the class lives, so it will not clash with other extensions." msgstr "" -#: ../../c-api/type.rst:682 -msgid "" -"Use :c:func:`PyType_GetBaseByToken` to check if a class's superclass has a " -"given token -- that is, check whether the memory layout is compatible." +msgid "Use :c:func:`PyType_GetBaseByToken` to check if a class's superclass has a given token -- that is, check whether the memory layout is compatible." msgstr "" -#: ../../c-api/type.rst:685 -msgid "" -"To get the token for a given class (without considering superclasses), " -"use :c:func:`PyType_GetSlot` with ``Py_tp_token``." +msgid "To get the token for a given class (without considering superclasses), use :c:func:`PyType_GetSlot` with ``Py_tp_token``." msgstr "" -#: ../../c-api/type.rst:694 -msgid "" -"Used as a value with :c:data:`Py_tp_token` to set the token to the " -"class's :c:type:`PyType_Spec`. Expands to ``NULL``." +msgid "Used as a value with :c:data:`Py_tp_token` to set the token to the class's :c:type:`PyType_Spec`. Expands to ``NULL``." msgstr "" -#: ../../c-api/type.rst:8 msgid "object" msgstr "" -#: ../../c-api/type.rst:8 msgid "type" msgstr "" diff --git a/c-api/typehints.po b/c-api/typehints.po index acde9770..1b2f1da6 100644 --- a/c-api/typehints.po +++ b/c-api/typehints.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:50+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,54 +21,30 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../c-api/typehints.rst:6 msgid "Objects for Type Hinting" msgstr "" -#: ../../c-api/typehints.rst:8 -msgid "" -"Various built-in types for type hinting are provided. Currently, two types " -"exist -- :ref:`GenericAlias ` and :ref:`Union `. Only ``GenericAlias`` is exposed to C." +msgid "Various built-in types for type hinting are provided. Currently, two types exist -- :ref:`GenericAlias ` and :ref:`Union `. Only ``GenericAlias`` is exposed to C." msgstr "" -#: ../../c-api/typehints.rst:14 -msgid "" -"Create a :ref:`GenericAlias ` object. Equivalent to " -"calling the Python class :class:`types.GenericAlias`. The *origin* and " -"*args* arguments set the ``GenericAlias``\\ 's ``__origin__`` and " -"``__args__`` attributes respectively. *origin* should be " -"a :c:expr:`PyTypeObject*`, and *args* can be a :c:expr:`PyTupleObject*` or " -"any ``PyObject*``. If *args* passed is not a tuple, a 1-tuple is " -"automatically constructed and ``__args__`` is set to ``(args,)``. Minimal " -"checking is done for the arguments, so the function will succeed even if " -"*origin* is not a type. The ``GenericAlias``\\ 's ``__parameters__`` " -"attribute is constructed lazily from ``__args__``. On failure, an exception " -"is raised and ``NULL`` is returned." +msgid "Create a :ref:`GenericAlias ` object. Equivalent to calling the Python class :class:`types.GenericAlias`. The *origin* and *args* arguments set the ``GenericAlias``\\ 's ``__origin__`` and ``__args__`` attributes respectively. *origin* should be a :c:expr:`PyTypeObject*`, and *args* can be a :c:expr:`PyTupleObject*` or any ``PyObject*``. If *args* passed is not a tuple, a 1-tuple is automatically constructed and ``__args__`` is set to ``(args,)``. Minimal checking is done for the arguments, so the function will succeed even if *origin* is not a type. The ``GenericAlias``\\ 's ``__parameters__`` attribute is constructed lazily from ``__args__``. On failure, an exception is raised and ``NULL`` is returned." msgstr "" -#: ../../c-api/typehints.rst:28 msgid "Here's an example of how to make an extension type generic::" msgstr "" -#: ../../c-api/typehints.rst:30 msgid "" "...\n" "static PyMethodDef my_obj_methods[] = {\n" " // Other methods.\n" " ...\n" -" {\"__class_getitem__\", Py_GenericAlias, METH_O|METH_CLASS, \"my_obj is " -"generic over its contained type\"}\n" +" {\"__class_getitem__\", Py_GenericAlias, METH_O|METH_CLASS, \"my_obj is generic over its contained type\"}\n" " ...\n" "}" msgstr "" -#: ../../c-api/typehints.rst:38 msgid "The data model method :meth:`~object.__class_getitem__`." msgstr "" -#: ../../c-api/typehints.rst:44 -msgid "" -"The C type of the object returned by :c:func:`Py_GenericAlias`. Equivalent " -"to :class:`types.GenericAlias` in Python." +msgid "The C type of the object returned by :c:func:`Py_GenericAlias`. Equivalent to :class:`types.GenericAlias` in Python." msgstr "" diff --git a/c-api/typeobj.po b/c-api/typeobj.po index a3f13d1c..bd65827b 100644 --- a/c-api/typeobj.po +++ b/c-api/typeobj.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:50+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,608 +24,408 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../c-api/typeobj.rst:6 msgid "Type Object Structures" msgstr "" -#: ../../c-api/typeobj.rst:8 -msgid "" -"Perhaps one of the most important structures of the Python object system is " -"the structure that defines a new type: the :c:type:`PyTypeObject` " -"structure. Type objects can be handled using any of the ``PyObject_*`` or " -"``PyType_*`` functions, but do not offer much that's interesting to most " -"Python applications. These objects are fundamental to how objects behave, so " -"they are very important to the interpreter itself and to any extension " -"module that implements new types." +msgid "Perhaps one of the most important structures of the Python object system is the structure that defines a new type: the :c:type:`PyTypeObject` structure. Type objects can be handled using any of the ``PyObject_*`` or ``PyType_*`` functions, but do not offer much that's interesting to most Python applications. These objects are fundamental to how objects behave, so they are very important to the interpreter itself and to any extension module that implements new types." msgstr "" -#: ../../c-api/typeobj.rst:16 -msgid "" -"Type objects are fairly large compared to most of the standard types. The " -"reason for the size is that each type object stores a large number of " -"values, mostly C function pointers, each of which implements a small part of " -"the type's functionality. The fields of the type object are examined in " -"detail in this section. The fields will be described in the order in which " -"they occur in the structure." +msgid "Type objects are fairly large compared to most of the standard types. The reason for the size is that each type object stores a large number of values, mostly C function pointers, each of which implements a small part of the type's functionality. The fields of the type object are examined in detail in this section. The fields will be described in the order in which they occur in the structure." msgstr "" -#: ../../c-api/typeobj.rst:23 -msgid "" -"In addition to the following quick reference, the :ref:`typedef-examples` " -"section provides at-a-glance insight into the meaning and use " -"of :c:type:`PyTypeObject`." +msgid "In addition to the following quick reference, the :ref:`typedef-examples` section provides at-a-glance insight into the meaning and use of :c:type:`PyTypeObject`." msgstr "" -#: ../../c-api/typeobj.rst:29 msgid "Quick Reference" msgstr "" -#: ../../c-api/typeobj.rst:34 msgid "\"tp slots\"" msgstr "" -#: ../../c-api/typeobj.rst:40 msgid "PyTypeObject Slot [#slots]_" msgstr "" -#: ../../c-api/typeobj.rst:40 ../../c-api/typeobj.rst:201 msgid ":ref:`Type `" msgstr "" -#: ../../c-api/typeobj.rst:40 msgid "special methods/attrs" msgstr "" -#: ../../c-api/typeobj.rst:40 msgid "Info [#cols]_" msgstr "" -#: ../../c-api/typeobj.rst:42 msgid "O" msgstr "" -#: ../../c-api/typeobj.rst:42 msgid "T" msgstr "" -#: ../../c-api/typeobj.rst:42 msgid "D" msgstr "" -#: ../../c-api/typeobj.rst:42 msgid "I" msgstr "" -#: ../../c-api/typeobj.rst:44 msgid " :c:member:`~PyTypeObject.tp_name`" msgstr "" -#: ../../c-api/typeobj.rst:0 ../../c-api/typeobj.rst:44 -#: ../../c-api/typeobj.rst:86 msgid "const char *" msgstr "" -#: ../../c-api/typeobj.rst:44 msgid "__name__" msgstr "" -#: ../../c-api/typeobj.rst:44 ../../c-api/typeobj.rst:46 -#: ../../c-api/typeobj.rst:48 ../../c-api/typeobj.rst:50 -#: ../../c-api/typeobj.rst:52 ../../c-api/typeobj.rst:62 -#: ../../c-api/typeobj.rst:70 ../../c-api/typeobj.rst:72 -#: ../../c-api/typeobj.rst:74 ../../c-api/typeobj.rst:76 -#: ../../c-api/typeobj.rst:79 ../../c-api/typeobj.rst:84 -#: ../../c-api/typeobj.rst:86 ../../c-api/typeobj.rst:88 -#: ../../c-api/typeobj.rst:90 ../../c-api/typeobj.rst:92 -#: ../../c-api/typeobj.rst:99 ../../c-api/typeobj.rst:101 -#: ../../c-api/typeobj.rst:103 ../../c-api/typeobj.rst:105 -#: ../../c-api/typeobj.rst:107 ../../c-api/typeobj.rst:109 -#: ../../c-api/typeobj.rst:111 ../../c-api/typeobj.rst:115 -#: ../../c-api/typeobj.rst:117 ../../c-api/typeobj.rst:120 -#: ../../c-api/typeobj.rst:122 ../../c-api/typeobj.rst:124 -#: ../../c-api/typeobj.rst:126 ../../c-api/typeobj.rst:128 -#: ../../c-api/typeobj.rst:130 ../../c-api/typeobj.rst:146 msgid "X" msgstr "" -#: ../../c-api/typeobj.rst:46 msgid ":c:member:`~PyTypeObject.tp_basicsize`" msgstr "" -#: ../../c-api/typeobj.rst:0 ../../c-api/typeobj.rst:46 -#: ../../c-api/typeobj.rst:48 ../../c-api/typeobj.rst:52 -#: ../../c-api/typeobj.rst:99 ../../c-api/typeobj.rst:120 -#: ../../c-api/typeobj.rst:417 msgid ":c:type:`Py_ssize_t`" msgstr "" -#: ../../c-api/typeobj.rst:48 msgid ":c:member:`~PyTypeObject.tp_itemsize`" msgstr "" -#: ../../c-api/typeobj.rst:50 msgid ":c:member:`~PyTypeObject.tp_dealloc`" msgstr "" -#: ../../c-api/typeobj.rst:50 ../../c-api/typeobj.rst:142 -#: ../../c-api/typeobj.rst:146 ../../c-api/typeobj.rst:347 msgid ":c:type:`destructor`" msgstr "" -#: ../../c-api/typeobj.rst:52 msgid ":c:member:`~PyTypeObject.tp_vectorcall_offset`" msgstr "" -#: ../../c-api/typeobj.rst:54 msgid "(:c:member:`~PyTypeObject.tp_getattr`)" msgstr "" -#: ../../c-api/typeobj.rst:54 ../../c-api/typeobj.rst:371 msgid ":c:type:`getattrfunc`" msgstr "" -#: ../../c-api/typeobj.rst:54 ../../c-api/typeobj.rst:76 msgid "__getattribute__, __getattr__" msgstr "" -#: ../../c-api/typeobj.rst:54 ../../c-api/typeobj.rst:57 -#: ../../c-api/typeobj.rst:70 ../../c-api/typeobj.rst:76 -#: ../../c-api/typeobj.rst:79 ../../c-api/typeobj.rst:88 -#: ../../c-api/typeobj.rst:90 ../../c-api/typeobj.rst:92 msgid "G" msgstr "" -#: ../../c-api/typeobj.rst:57 msgid "(:c:member:`~PyTypeObject.tp_setattr`)" msgstr "" -#: ../../c-api/typeobj.rst:57 ../../c-api/typeobj.rst:376 msgid ":c:type:`setattrfunc`" msgstr "" -#: ../../c-api/typeobj.rst:57 ../../c-api/typeobj.rst:79 msgid "__setattr__, __delattr__" msgstr "" -#: ../../c-api/typeobj.rst:60 msgid ":c:member:`~PyTypeObject.tp_as_async`" msgstr "" -#: ../../c-api/typeobj.rst:60 msgid ":c:type:`PyAsyncMethods` *" msgstr "" -#: ../../c-api/typeobj.rst:60 ../../c-api/typeobj.rst:64 -#: ../../c-api/typeobj.rst:66 ../../c-api/typeobj.rst:68 -#: ../../c-api/typeobj.rst:82 msgid ":ref:`sub-slots`" msgstr "" -#: ../../c-api/typeobj.rst:60 ../../c-api/typeobj.rst:64 -#: ../../c-api/typeobj.rst:66 ../../c-api/typeobj.rst:68 -#: ../../c-api/typeobj.rst:82 msgid "%" msgstr "" -#: ../../c-api/typeobj.rst:62 msgid ":c:member:`~PyTypeObject.tp_repr`" msgstr "" -#: ../../c-api/typeobj.rst:62 ../../c-api/typeobj.rst:74 -#: ../../c-api/typeobj.rst:369 msgid ":c:type:`reprfunc`" msgstr "" -#: ../../c-api/typeobj.rst:62 msgid "__repr__" msgstr "" -#: ../../c-api/typeobj.rst:64 msgid ":c:member:`~PyTypeObject.tp_as_number`" msgstr "" -#: ../../c-api/typeobj.rst:64 msgid ":c:type:`PyNumberMethods` *" msgstr "" -#: ../../c-api/typeobj.rst:66 msgid ":c:member:`~PyTypeObject.tp_as_sequence`" msgstr "" -#: ../../c-api/typeobj.rst:66 msgid ":c:type:`PySequenceMethods` *" msgstr "" -#: ../../c-api/typeobj.rst:68 msgid ":c:member:`~PyTypeObject.tp_as_mapping`" msgstr "" -#: ../../c-api/typeobj.rst:68 msgid ":c:type:`PyMappingMethods` *" msgstr "" -#: ../../c-api/typeobj.rst:70 msgid ":c:member:`~PyTypeObject.tp_hash`" msgstr "" -#: ../../c-api/typeobj.rst:70 ../../c-api/typeobj.rst:405 msgid ":c:type:`hashfunc`" msgstr "" -#: ../../c-api/typeobj.rst:70 msgid "__hash__" msgstr "" -#: ../../c-api/typeobj.rst:72 msgid ":c:member:`~PyTypeObject.tp_call`" msgstr "" -#: ../../c-api/typeobj.rst:72 ../../c-api/typeobj.rst:237 -#: ../../c-api/typeobj.rst:240 ../../c-api/typeobj.rst:441 msgid ":c:type:`ternaryfunc`" msgstr "" -#: ../../c-api/typeobj.rst:72 msgid "__call__" msgstr "" -#: ../../c-api/typeobj.rst:74 msgid ":c:member:`~PyTypeObject.tp_str`" msgstr "" -#: ../../c-api/typeobj.rst:74 msgid "__str__" msgstr "" -#: ../../c-api/typeobj.rst:76 msgid ":c:member:`~PyTypeObject.tp_getattro`" msgstr "" -#: ../../c-api/typeobj.rst:76 ../../c-api/typeobj.rst:382 msgid ":c:type:`getattrofunc`" msgstr "" -#: ../../c-api/typeobj.rst:79 msgid ":c:member:`~PyTypeObject.tp_setattro`" msgstr "" -#: ../../c-api/typeobj.rst:79 ../../c-api/typeobj.rst:387 msgid ":c:type:`setattrofunc`" msgstr "" -#: ../../c-api/typeobj.rst:82 msgid ":c:member:`~PyTypeObject.tp_as_buffer`" msgstr "" -#: ../../c-api/typeobj.rst:82 msgid ":c:type:`PyBufferProcs` *" msgstr "" -#: ../../c-api/typeobj.rst:84 msgid ":c:member:`~PyTypeObject.tp_flags`" msgstr "" -#: ../../c-api/typeobj.rst:84 msgid "unsigned long" msgstr "" -#: ../../c-api/typeobj.rst:84 ../../c-api/typeobj.rst:99 -#: ../../c-api/typeobj.rst:113 ../../c-api/typeobj.rst:120 -#: ../../c-api/typeobj.rst:124 ../../c-api/typeobj.rst:126 -#: ../../c-api/typeobj.rst:128 msgid "?" msgstr "" -#: ../../c-api/typeobj.rst:86 msgid ":c:member:`~PyTypeObject.tp_doc`" msgstr "" -#: ../../c-api/typeobj.rst:86 msgid "__doc__" msgstr "" -#: ../../c-api/typeobj.rst:88 msgid ":c:member:`~PyTypeObject.tp_traverse`" msgstr "" -#: ../../c-api/typeobj.rst:88 ../../c-api/typeobj.rst:351 msgid ":c:type:`traverseproc`" msgstr "" -#: ../../c-api/typeobj.rst:90 msgid ":c:member:`~PyTypeObject.tp_clear`" msgstr "" -#: ../../c-api/typeobj.rst:90 ../../c-api/typeobj.rst:130 -#: ../../c-api/typeobj.rst:248 ../../c-api/typeobj.rst:430 msgid ":c:type:`inquiry`" msgstr "" -#: ../../c-api/typeobj.rst:92 msgid ":c:member:`~PyTypeObject.tp_richcompare`" msgstr "" -#: ../../c-api/typeobj.rst:92 ../../c-api/typeobj.rst:407 msgid ":c:type:`richcmpfunc`" msgstr "" -#: ../../c-api/typeobj.rst:92 msgid "__lt__, __le__, __eq__, __ne__, __gt__, __ge__" msgstr "" -#: ../../c-api/typeobj.rst:99 msgid "(:c:member:`~PyTypeObject.tp_weaklistoffset`)" msgstr "" -#: ../../c-api/typeobj.rst:101 msgid ":c:member:`~PyTypeObject.tp_iter`" msgstr "" -#: ../../c-api/typeobj.rst:101 ../../c-api/typeobj.rst:413 msgid ":c:type:`getiterfunc`" msgstr "" -#: ../../c-api/typeobj.rst:101 msgid "__iter__" msgstr "" -#: ../../c-api/typeobj.rst:103 msgid ":c:member:`~PyTypeObject.tp_iternext`" msgstr "" -#: ../../c-api/typeobj.rst:103 ../../c-api/typeobj.rst:415 msgid ":c:type:`iternextfunc`" msgstr "" -#: ../../c-api/typeobj.rst:103 msgid "__next__" msgstr "" -#: ../../c-api/typeobj.rst:105 msgid ":c:member:`~PyTypeObject.tp_methods`" msgstr "" -#: ../../c-api/typeobj.rst:105 msgid ":c:type:`PyMethodDef` []" msgstr "" -#: ../../c-api/typeobj.rst:107 msgid ":c:member:`~PyTypeObject.tp_members`" msgstr "" -#: ../../c-api/typeobj.rst:107 msgid ":c:type:`PyMemberDef` []" msgstr "" -#: ../../c-api/typeobj.rst:109 msgid ":c:member:`~PyTypeObject.tp_getset`" msgstr "" -#: ../../c-api/typeobj.rst:109 msgid ":c:type:`PyGetSetDef` []" msgstr "" -#: ../../c-api/typeobj.rst:111 msgid ":c:member:`~PyTypeObject.tp_base`" msgstr "" -#: ../../c-api/typeobj.rst:0 ../../c-api/typeobj.rst:111 msgid ":c:type:`PyTypeObject` *" msgstr "" -#: ../../c-api/typeobj.rst:111 msgid "__base__" msgstr "" -#: ../../c-api/typeobj.rst:113 msgid ":c:member:`~PyTypeObject.tp_dict`" msgstr "" -#: ../../c-api/typeobj.rst:0 ../../c-api/typeobj.rst:113 -#: ../../c-api/typeobj.rst:132 ../../c-api/typeobj.rst:134 -#: ../../c-api/typeobj.rst:136 ../../c-api/typeobj.rst:140 -#: ../../c-api/typeobj.rst:342 ../../c-api/typeobj.rst:347 -#: ../../c-api/typeobj.rst:357 ../../c-api/typeobj.rst:369 -#: ../../c-api/typeobj.rst:371 ../../c-api/typeobj.rst:382 -#: ../../c-api/typeobj.rst:393 ../../c-api/typeobj.rst:405 -#: ../../c-api/typeobj.rst:407 ../../c-api/typeobj.rst:413 -#: ../../c-api/typeobj.rst:415 ../../c-api/typeobj.rst:417 -#: ../../c-api/typeobj.rst:430 ../../c-api/typeobj.rst:432 -#: ../../c-api/typeobj.rst:436 ../../c-api/typeobj.rst:441 -#: ../../c-api/typeobj.rst:447 msgid ":c:type:`PyObject` *" msgstr "" -#: ../../c-api/typeobj.rst:113 msgid "__dict__" msgstr "" -#: ../../c-api/typeobj.rst:115 msgid ":c:member:`~PyTypeObject.tp_descr_get`" msgstr "" -#: ../../c-api/typeobj.rst:115 ../../c-api/typeobj.rst:393 msgid ":c:type:`descrgetfunc`" msgstr "" -#: ../../c-api/typeobj.rst:115 msgid "__get__" msgstr "" -#: ../../c-api/typeobj.rst:117 msgid ":c:member:`~PyTypeObject.tp_descr_set`" msgstr "" -#: ../../c-api/typeobj.rst:117 ../../c-api/typeobj.rst:399 msgid ":c:type:`descrsetfunc`" msgstr "" -#: ../../c-api/typeobj.rst:117 msgid "__set__, __delete__" msgstr "" -#: ../../c-api/typeobj.rst:120 msgid "(:c:member:`~PyTypeObject.tp_dictoffset`)" msgstr "" -#: ../../c-api/typeobj.rst:122 msgid ":c:member:`~PyTypeObject.tp_init`" msgstr "" -#: ../../c-api/typeobj.rst:122 ../../c-api/typeobj.rst:363 msgid ":c:type:`initproc`" msgstr "" -#: ../../c-api/typeobj.rst:122 msgid "__init__" msgstr "" -#: ../../c-api/typeobj.rst:124 msgid ":c:member:`~PyTypeObject.tp_alloc`" msgstr "" -#: ../../c-api/typeobj.rst:124 ../../c-api/typeobj.rst:342 msgid ":c:type:`allocfunc`" msgstr "" -#: ../../c-api/typeobj.rst:126 msgid ":c:member:`~PyTypeObject.tp_new`" msgstr "" -#: ../../c-api/typeobj.rst:126 ../../c-api/typeobj.rst:357 msgid ":c:type:`newfunc`" msgstr "" -#: ../../c-api/typeobj.rst:126 msgid "__new__" msgstr "" -#: ../../c-api/typeobj.rst:128 msgid ":c:member:`~PyTypeObject.tp_free`" msgstr "" -#: ../../c-api/typeobj.rst:128 ../../c-api/typeobj.rst:349 msgid ":c:type:`freefunc`" msgstr "" -#: ../../c-api/typeobj.rst:130 msgid ":c:member:`~PyTypeObject.tp_is_gc`" msgstr "" -#: ../../c-api/typeobj.rst:132 msgid "<:c:member:`~PyTypeObject.tp_bases`>" msgstr "" -#: ../../c-api/typeobj.rst:132 msgid "__bases__" msgstr "" -#: ../../c-api/typeobj.rst:132 ../../c-api/typeobj.rst:134 msgid "~" msgstr "" -#: ../../c-api/typeobj.rst:134 msgid "<:c:member:`~PyTypeObject.tp_mro`>" msgstr "" -#: ../../c-api/typeobj.rst:134 msgid "__mro__" msgstr "" -#: ../../c-api/typeobj.rst:136 msgid "[:c:member:`~PyTypeObject.tp_cache`]" msgstr "" -#: ../../c-api/typeobj.rst:138 msgid "[:c:member:`~PyTypeObject.tp_subclasses`]" msgstr "" -#: ../../c-api/typeobj.rst:0 ../../c-api/typeobj.rst:138 -#: ../../c-api/typeobj.rst:279 ../../c-api/typeobj.rst:349 msgid "void *" msgstr "" -#: ../../c-api/typeobj.rst:138 msgid "__subclasses__" msgstr "" -#: ../../c-api/typeobj.rst:140 msgid "[:c:member:`~PyTypeObject.tp_weaklist`]" msgstr "" -#: ../../c-api/typeobj.rst:142 msgid "(:c:member:`~PyTypeObject.tp_del`)" msgstr "" -#: ../../c-api/typeobj.rst:144 msgid "[:c:member:`~PyTypeObject.tp_version_tag`]" msgstr "" -#: ../../c-api/typeobj.rst:144 msgid "unsigned int" msgstr "" -#: ../../c-api/typeobj.rst:146 msgid ":c:member:`~PyTypeObject.tp_finalize`" msgstr "" -#: ../../c-api/typeobj.rst:146 msgid "__del__" msgstr "" -#: ../../c-api/typeobj.rst:148 msgid ":c:member:`~PyTypeObject.tp_vectorcall`" msgstr "" -#: ../../c-api/typeobj.rst:148 msgid ":c:type:`vectorcallfunc`" msgstr "" -#: ../../c-api/typeobj.rst:150 msgid "[:c:member:`~PyTypeObject.tp_watched`]" msgstr "" -#: ../../c-api/typeobj.rst:150 msgid "unsigned char" msgstr "" -#: ../../c-api/typeobj.rst:155 -msgid "" -"**()**: A slot name in parentheses indicates it is (effectively) deprecated." +msgid "**()**: A slot name in parentheses indicates it is (effectively) deprecated." msgstr "" -#: ../../c-api/typeobj.rst:157 -msgid "" -"**<>**: Names in angle brackets should be initially set to ``NULL`` and " -"treated as read-only." +msgid "**<>**: Names in angle brackets should be initially set to ``NULL`` and treated as read-only." msgstr "" -#: ../../c-api/typeobj.rst:160 msgid "**[]**: Names in square brackets are for internal use only." msgstr "" -#: ../../c-api/typeobj.rst:162 -msgid "" -"**** (as a prefix) means the field is required (must be non-``NULL``)." +msgid "**** (as a prefix) means the field is required (must be non-``NULL``)." msgstr "" -#: ../../c-api/typeobj.rst:164 msgid "Columns:" msgstr "" -#: ../../c-api/typeobj.rst:166 msgid "**\"O\"**: set on :c:data:`PyBaseObject_Type`" msgstr "" -#: ../../c-api/typeobj.rst:168 msgid "**\"T\"**: set on :c:data:`PyType_Type`" msgstr "" -#: ../../c-api/typeobj.rst:170 msgid "**\"D\"**: default (if slot is set to ``NULL``)" msgstr "" -#: ../../c-api/typeobj.rst:172 msgid "" "X - PyType_Ready sets this value if it is NULL\n" "~ - PyType_Ready always sets this value (it should be NULL)\n" @@ -634,565 +434,400 @@ msgid "" "Also see the inheritance column (\"I\")." msgstr "" -#: ../../c-api/typeobj.rst:180 msgid "**\"I\"**: inheritance" msgstr "" -#: ../../c-api/typeobj.rst:182 msgid "" -"X - type slot is inherited via *PyType_Ready* if defined with a *NULL* " -"value\n" +"X - type slot is inherited via *PyType_Ready* if defined with a *NULL* value\n" "% - the slots of the sub-struct are inherited individually\n" -"G - inherited, but only in combination with other slots; see the slot's " -"description\n" +"G - inherited, but only in combination with other slots; see the slot's description\n" "? - it's complicated; see the slot's description" msgstr "" -#: ../../c-api/typeobj.rst:189 -msgid "" -"Note that some slots are effectively inherited through the normal attribute " -"lookup chain." +msgid "Note that some slots are effectively inherited through the normal attribute lookup chain." msgstr "" -#: ../../c-api/typeobj.rst:195 msgid "sub-slots" msgstr "" -#: ../../c-api/typeobj.rst:201 msgid "Slot" msgstr "" -#: ../../c-api/typeobj.rst:201 msgid "special methods" msgstr "" -#: ../../c-api/typeobj.rst:204 msgid ":c:member:`~PyAsyncMethods.am_await`" msgstr "" -#: ../../c-api/typeobj.rst:204 ../../c-api/typeobj.rst:206 -#: ../../c-api/typeobj.rst:208 ../../c-api/typeobj.rst:242 -#: ../../c-api/typeobj.rst:244 ../../c-api/typeobj.rst:246 -#: ../../c-api/typeobj.rst:250 ../../c-api/typeobj.rst:277 -#: ../../c-api/typeobj.rst:281 ../../c-api/typeobj.rst:291 -#: ../../c-api/typeobj.rst:432 msgid ":c:type:`unaryfunc`" msgstr "" -#: ../../c-api/typeobj.rst:204 msgid "__await__" msgstr "" -#: ../../c-api/typeobj.rst:206 msgid ":c:member:`~PyAsyncMethods.am_aiter`" msgstr "" -#: ../../c-api/typeobj.rst:206 msgid "__aiter__" msgstr "" -#: ../../c-api/typeobj.rst:208 msgid ":c:member:`~PyAsyncMethods.am_anext`" msgstr "" -#: ../../c-api/typeobj.rst:208 msgid "__anext__" msgstr "" -#: ../../c-api/typeobj.rst:210 msgid ":c:member:`~PyAsyncMethods.am_send`" msgstr "" -#: ../../c-api/typeobj.rst:210 msgid ":c:type:`sendfunc`" msgstr "" -#: ../../c-api/typeobj.rst:214 msgid ":c:member:`~PyNumberMethods.nb_add`" msgstr "" -#: ../../c-api/typeobj.rst:214 ../../c-api/typeobj.rst:217 -#: ../../c-api/typeobj.rst:219 ../../c-api/typeobj.rst:222 -#: ../../c-api/typeobj.rst:224 ../../c-api/typeobj.rst:227 -#: ../../c-api/typeobj.rst:229 ../../c-api/typeobj.rst:232 -#: ../../c-api/typeobj.rst:234 ../../c-api/typeobj.rst:252 -#: ../../c-api/typeobj.rst:255 ../../c-api/typeobj.rst:257 -#: ../../c-api/typeobj.rst:260 ../../c-api/typeobj.rst:262 -#: ../../c-api/typeobj.rst:265 ../../c-api/typeobj.rst:267 -#: ../../c-api/typeobj.rst:270 ../../c-api/typeobj.rst:272 -#: ../../c-api/typeobj.rst:275 ../../c-api/typeobj.rst:283 -#: ../../c-api/typeobj.rst:285 ../../c-api/typeobj.rst:287 -#: ../../c-api/typeobj.rst:289 ../../c-api/typeobj.rst:293 -#: ../../c-api/typeobj.rst:296 ../../c-api/typeobj.rst:302 -#: ../../c-api/typeobj.rst:311 ../../c-api/typeobj.rst:322 -#: ../../c-api/typeobj.rst:436 msgid ":c:type:`binaryfunc`" msgstr "" -#: ../../c-api/typeobj.rst:214 msgid "__add__ __radd__" msgstr "" -#: ../../c-api/typeobj.rst:217 msgid ":c:member:`~PyNumberMethods.nb_inplace_add`" msgstr "" -#: ../../c-api/typeobj.rst:217 ../../c-api/typeobj.rst:322 msgid "__iadd__" msgstr "" -#: ../../c-api/typeobj.rst:219 msgid ":c:member:`~PyNumberMethods.nb_subtract`" msgstr "" -#: ../../c-api/typeobj.rst:219 msgid "__sub__ __rsub__" msgstr "" -#: ../../c-api/typeobj.rst:222 msgid ":c:member:`~PyNumberMethods.nb_inplace_subtract`" msgstr "" -#: ../../c-api/typeobj.rst:222 msgid "__isub__" msgstr "" -#: ../../c-api/typeobj.rst:224 msgid ":c:member:`~PyNumberMethods.nb_multiply`" msgstr "" -#: ../../c-api/typeobj.rst:224 msgid "__mul__ __rmul__" msgstr "" -#: ../../c-api/typeobj.rst:227 msgid ":c:member:`~PyNumberMethods.nb_inplace_multiply`" msgstr "" -#: ../../c-api/typeobj.rst:227 ../../c-api/typeobj.rst:324 msgid "__imul__" msgstr "" -#: ../../c-api/typeobj.rst:229 msgid ":c:member:`~PyNumberMethods.nb_remainder`" msgstr "" -#: ../../c-api/typeobj.rst:229 msgid "__mod__ __rmod__" msgstr "" -#: ../../c-api/typeobj.rst:232 msgid ":c:member:`~PyNumberMethods.nb_inplace_remainder`" msgstr "" -#: ../../c-api/typeobj.rst:232 msgid "__imod__" msgstr "" -#: ../../c-api/typeobj.rst:234 msgid ":c:member:`~PyNumberMethods.nb_divmod`" msgstr "" -#: ../../c-api/typeobj.rst:234 msgid "__divmod__ __rdivmod__" msgstr "" -#: ../../c-api/typeobj.rst:237 msgid ":c:member:`~PyNumberMethods.nb_power`" msgstr "" -#: ../../c-api/typeobj.rst:237 msgid "__pow__ __rpow__" msgstr "" -#: ../../c-api/typeobj.rst:240 msgid ":c:member:`~PyNumberMethods.nb_inplace_power`" msgstr "" -#: ../../c-api/typeobj.rst:240 msgid "__ipow__" msgstr "" -#: ../../c-api/typeobj.rst:242 msgid ":c:member:`~PyNumberMethods.nb_negative`" msgstr "" -#: ../../c-api/typeobj.rst:242 msgid "__neg__" msgstr "" -#: ../../c-api/typeobj.rst:244 msgid ":c:member:`~PyNumberMethods.nb_positive`" msgstr "" -#: ../../c-api/typeobj.rst:244 msgid "__pos__" msgstr "" -#: ../../c-api/typeobj.rst:246 msgid ":c:member:`~PyNumberMethods.nb_absolute`" msgstr "" -#: ../../c-api/typeobj.rst:246 msgid "__abs__" msgstr "" -#: ../../c-api/typeobj.rst:248 msgid ":c:member:`~PyNumberMethods.nb_bool`" msgstr "" -#: ../../c-api/typeobj.rst:248 msgid "__bool__" msgstr "" -#: ../../c-api/typeobj.rst:250 msgid ":c:member:`~PyNumberMethods.nb_invert`" msgstr "" -#: ../../c-api/typeobj.rst:250 msgid "__invert__" msgstr "" -#: ../../c-api/typeobj.rst:252 msgid ":c:member:`~PyNumberMethods.nb_lshift`" msgstr "" -#: ../../c-api/typeobj.rst:252 msgid "__lshift__ __rlshift__" msgstr "" -#: ../../c-api/typeobj.rst:255 msgid ":c:member:`~PyNumberMethods.nb_inplace_lshift`" msgstr "" -#: ../../c-api/typeobj.rst:255 msgid "__ilshift__" msgstr "" -#: ../../c-api/typeobj.rst:257 msgid ":c:member:`~PyNumberMethods.nb_rshift`" msgstr "" -#: ../../c-api/typeobj.rst:257 msgid "__rshift__ __rrshift__" msgstr "" -#: ../../c-api/typeobj.rst:260 msgid ":c:member:`~PyNumberMethods.nb_inplace_rshift`" msgstr "" -#: ../../c-api/typeobj.rst:260 msgid "__irshift__" msgstr "" -#: ../../c-api/typeobj.rst:262 msgid ":c:member:`~PyNumberMethods.nb_and`" msgstr "" -#: ../../c-api/typeobj.rst:262 msgid "__and__ __rand__" msgstr "" -#: ../../c-api/typeobj.rst:265 msgid ":c:member:`~PyNumberMethods.nb_inplace_and`" msgstr "" -#: ../../c-api/typeobj.rst:265 msgid "__iand__" msgstr "" -#: ../../c-api/typeobj.rst:267 msgid ":c:member:`~PyNumberMethods.nb_xor`" msgstr "" -#: ../../c-api/typeobj.rst:267 msgid "__xor__ __rxor__" msgstr "" -#: ../../c-api/typeobj.rst:270 msgid ":c:member:`~PyNumberMethods.nb_inplace_xor`" msgstr "" -#: ../../c-api/typeobj.rst:270 msgid "__ixor__" msgstr "" -#: ../../c-api/typeobj.rst:272 msgid ":c:member:`~PyNumberMethods.nb_or`" msgstr "" -#: ../../c-api/typeobj.rst:272 msgid "__or__ __ror__" msgstr "" -#: ../../c-api/typeobj.rst:275 msgid ":c:member:`~PyNumberMethods.nb_inplace_or`" msgstr "" -#: ../../c-api/typeobj.rst:275 msgid "__ior__" msgstr "" -#: ../../c-api/typeobj.rst:277 msgid ":c:member:`~PyNumberMethods.nb_int`" msgstr "" -#: ../../c-api/typeobj.rst:277 msgid "__int__" msgstr "" -#: ../../c-api/typeobj.rst:279 msgid ":c:member:`~PyNumberMethods.nb_reserved`" msgstr "" -#: ../../c-api/typeobj.rst:281 msgid ":c:member:`~PyNumberMethods.nb_float`" msgstr "" -#: ../../c-api/typeobj.rst:281 msgid "__float__" msgstr "" -#: ../../c-api/typeobj.rst:283 msgid ":c:member:`~PyNumberMethods.nb_floor_divide`" msgstr "" -#: ../../c-api/typeobj.rst:283 msgid "__floordiv__" msgstr "" -#: ../../c-api/typeobj.rst:285 msgid ":c:member:`~PyNumberMethods.nb_inplace_floor_divide`" msgstr "" -#: ../../c-api/typeobj.rst:285 msgid "__ifloordiv__" msgstr "" -#: ../../c-api/typeobj.rst:287 msgid ":c:member:`~PyNumberMethods.nb_true_divide`" msgstr "" -#: ../../c-api/typeobj.rst:287 msgid "__truediv__" msgstr "" -#: ../../c-api/typeobj.rst:289 msgid ":c:member:`~PyNumberMethods.nb_inplace_true_divide`" msgstr "" -#: ../../c-api/typeobj.rst:289 msgid "__itruediv__" msgstr "" -#: ../../c-api/typeobj.rst:291 msgid ":c:member:`~PyNumberMethods.nb_index`" msgstr "" -#: ../../c-api/typeobj.rst:291 msgid "__index__" msgstr "" -#: ../../c-api/typeobj.rst:293 msgid ":c:member:`~PyNumberMethods.nb_matrix_multiply`" msgstr "" -#: ../../c-api/typeobj.rst:293 msgid "__matmul__ __rmatmul__" msgstr "" -#: ../../c-api/typeobj.rst:296 msgid ":c:member:`~PyNumberMethods.nb_inplace_matrix_multiply`" msgstr "" -#: ../../c-api/typeobj.rst:296 msgid "__imatmul__" msgstr "" -#: ../../c-api/typeobj.rst:300 msgid ":c:member:`~PyMappingMethods.mp_length`" msgstr "" -#: ../../c-api/typeobj.rst:300 ../../c-api/typeobj.rst:309 -#: ../../c-api/typeobj.rst:417 msgid ":c:type:`lenfunc`" msgstr "" -#: ../../c-api/typeobj.rst:300 ../../c-api/typeobj.rst:309 msgid "__len__" msgstr "" -#: ../../c-api/typeobj.rst:302 msgid ":c:member:`~PyMappingMethods.mp_subscript`" msgstr "" -#: ../../c-api/typeobj.rst:302 ../../c-api/typeobj.rst:315 msgid "__getitem__" msgstr "" -#: ../../c-api/typeobj.rst:304 msgid ":c:member:`~PyMappingMethods.mp_ass_subscript`" msgstr "" -#: ../../c-api/typeobj.rst:304 ../../c-api/typeobj.rst:463 msgid ":c:type:`objobjargproc`" msgstr "" -#: ../../c-api/typeobj.rst:304 msgid "__setitem__, __delitem__" msgstr "" -#: ../../c-api/typeobj.rst:309 msgid ":c:member:`~PySequenceMethods.sq_length`" msgstr "" -#: ../../c-api/typeobj.rst:311 msgid ":c:member:`~PySequenceMethods.sq_concat`" msgstr "" -#: ../../c-api/typeobj.rst:311 msgid "__add__" msgstr "" -#: ../../c-api/typeobj.rst:313 msgid ":c:member:`~PySequenceMethods.sq_repeat`" msgstr "" -#: ../../c-api/typeobj.rst:313 ../../c-api/typeobj.rst:315 -#: ../../c-api/typeobj.rst:324 ../../c-api/typeobj.rst:447 msgid ":c:type:`ssizeargfunc`" msgstr "" -#: ../../c-api/typeobj.rst:313 msgid "__mul__" msgstr "" -#: ../../c-api/typeobj.rst:315 msgid ":c:member:`~PySequenceMethods.sq_item`" msgstr "" -#: ../../c-api/typeobj.rst:317 msgid ":c:member:`~PySequenceMethods.sq_ass_item`" msgstr "" -#: ../../c-api/typeobj.rst:317 ../../c-api/typeobj.rst:452 msgid ":c:type:`ssizeobjargproc`" msgstr "" -#: ../../c-api/typeobj.rst:317 msgid "__setitem__ __delitem__" msgstr "" -#: ../../c-api/typeobj.rst:320 msgid ":c:member:`~PySequenceMethods.sq_contains`" msgstr "" -#: ../../c-api/typeobj.rst:320 ../../c-api/typeobj.rst:458 msgid ":c:type:`objobjproc`" msgstr "" -#: ../../c-api/typeobj.rst:320 msgid "__contains__" msgstr "" -#: ../../c-api/typeobj.rst:322 msgid ":c:member:`~PySequenceMethods.sq_inplace_concat`" msgstr "" -#: ../../c-api/typeobj.rst:324 msgid ":c:member:`~PySequenceMethods.sq_inplace_repeat`" msgstr "" -#: ../../c-api/typeobj.rst:328 msgid ":c:member:`~PyBufferProcs.bf_getbuffer`" msgstr "" -#: ../../c-api/typeobj.rst:328 msgid ":c:func:`getbufferproc`" msgstr "" -#: ../../c-api/typeobj.rst:328 msgid "__buffer__" msgstr "" -#: ../../c-api/typeobj.rst:330 msgid ":c:member:`~PyBufferProcs.bf_releasebuffer`" msgstr "" -#: ../../c-api/typeobj.rst:330 msgid ":c:func:`releasebufferproc`" msgstr "" -#: ../../c-api/typeobj.rst:330 msgid "__release_\\ buffer\\__" msgstr "" -#: ../../c-api/typeobj.rst:337 msgid "slot typedefs" msgstr "" -#: ../../c-api/typeobj.rst:340 msgid "typedef" msgstr "" -#: ../../c-api/typeobj.rst:340 msgid "Parameter Types" msgstr "" -#: ../../c-api/typeobj.rst:340 msgid "Return Type" msgstr "" -#: ../../c-api/typeobj.rst:347 ../../c-api/typeobj.rst:349 -#: ../../c-api/typeobj.rst:425 msgid "void" msgstr "" -#: ../../c-api/typeobj.rst:0 msgid ":c:type:`visitproc`" msgstr "" -#: ../../c-api/typeobj.rst:0 ../../c-api/typeobj.rst:351 -#: ../../c-api/typeobj.rst:363 ../../c-api/typeobj.rst:376 -#: ../../c-api/typeobj.rst:387 ../../c-api/typeobj.rst:399 -#: ../../c-api/typeobj.rst:419 ../../c-api/typeobj.rst:430 -#: ../../c-api/typeobj.rst:452 ../../c-api/typeobj.rst:458 -#: ../../c-api/typeobj.rst:463 msgid "int" msgstr "" -#: ../../c-api/typeobj.rst:405 msgid "Py_hash_t" msgstr "" -#: ../../c-api/typeobj.rst:419 msgid ":c:type:`getbufferproc`" msgstr "" -#: ../../c-api/typeobj.rst:0 msgid ":c:type:`Py_buffer` *" msgstr "" -#: ../../c-api/typeobj.rst:425 msgid ":c:type:`releasebufferproc`" msgstr "" -#: ../../c-api/typeobj.rst:470 msgid "See :ref:`slot-typedefs` below for more detail." msgstr "" -#: ../../c-api/typeobj.rst:474 msgid "PyTypeObject Definition" msgstr "" -#: ../../c-api/typeobj.rst:476 -msgid "" -"The structure definition for :c:type:`PyTypeObject` can be found " -"in :file:`Include/cpython/object.h`. For convenience of reference, this " -"repeats the definition found there:" +msgid "The structure definition for :c:type:`PyTypeObject` can be found in :file:`Include/cpython/object.h`. For convenience of reference, this repeats the definition found there:" msgstr "" -#: ../../c-api/typeobj.rst:482 msgid "" "typedef struct _typeobject {\n" " PyObject_VAR_HEAD\n" @@ -1291,340 +926,132 @@ msgid "" "} PyTypeObject;\n" msgstr "" -#: ../../c-api/typeobj.rst:486 msgid "PyObject Slots" msgstr "" -#: ../../c-api/typeobj.rst:488 -msgid "" -"The type object structure extends the :c:type:`PyVarObject` structure. " -"The :c:member:`~PyVarObject.ob_size` field is used for dynamic types " -"(created by :c:func:`!type_new`, usually called from a class statement). " -"Note that :c:data:`PyType_Type` (the metatype) " -"initializes :c:member:`~PyTypeObject.tp_itemsize`, which means that its " -"instances (i.e. type objects) *must* have " -"the :c:member:`~PyVarObject.ob_size` field." +msgid "The type object structure extends the :c:type:`PyVarObject` structure. The :c:member:`~PyVarObject.ob_size` field is used for dynamic types (created by :c:func:`!type_new`, usually called from a class statement). Note that :c:data:`PyType_Type` (the metatype) initializes :c:member:`~PyTypeObject.tp_itemsize`, which means that its instances (i.e. type objects) *must* have the :c:member:`~PyVarObject.ob_size` field." msgstr "" -#: ../../c-api/typeobj.rst:495 msgid ":c:member:`PyObject.ob_refcnt`" msgstr "" -#: ../../c-api/typeobj.rst:497 -msgid "" -"The type object's reference count is initialized to ``1`` by the " -"``PyObject_HEAD_INIT`` macro. Note that for :ref:`statically allocated type " -"objects `, the type's instances (objects " -"whose :c:member:`~PyObject.ob_type` points back to the type) do *not* count " -"as references. But for :ref:`dynamically allocated type objects `, the instances *do* count as references." -msgstr "" - -#: ../../c-api/typeobj.rst:504 ../../c-api/typeobj.rst:527 -#: ../../c-api/typeobj.rst:543 ../../c-api/typeobj.rst:587 -#: ../../c-api/typeobj.rst:665 ../../c-api/typeobj.rst:809 -#: ../../c-api/typeobj.rst:854 ../../c-api/typeobj.rst:873 -#: ../../c-api/typeobj.rst:892 ../../c-api/typeobj.rst:910 -#: ../../c-api/typeobj.rst:936 ../../c-api/typeobj.rst:953 -#: ../../c-api/typeobj.rst:965 ../../c-api/typeobj.rst:977 -#: ../../c-api/typeobj.rst:1012 ../../c-api/typeobj.rst:1036 -#: ../../c-api/typeobj.rst:1058 ../../c-api/typeobj.rst:1081 -#: ../../c-api/typeobj.rst:1109 ../../c-api/typeobj.rst:1128 -#: ../../c-api/typeobj.rst:1144 ../../c-api/typeobj.rst:1184 -#: ../../c-api/typeobj.rst:1195 ../../c-api/typeobj.rst:1205 -#: ../../c-api/typeobj.rst:1215 ../../c-api/typeobj.rst:1229 -#: ../../c-api/typeobj.rst:1247 ../../c-api/typeobj.rst:1270 -#: ../../c-api/typeobj.rst:1288 ../../c-api/typeobj.rst:1301 -#: ../../c-api/typeobj.rst:1323 ../../c-api/typeobj.rst:1370 -#: ../../c-api/typeobj.rst:1396 ../../c-api/typeobj.rst:1415 -#: ../../c-api/typeobj.rst:1445 ../../c-api/typeobj.rst:1467 -#: ../../c-api/typeobj.rst:1505 ../../c-api/typeobj.rst:1517 -#: ../../c-api/typeobj.rst:1543 ../../c-api/typeobj.rst:1641 -#: ../../c-api/typeobj.rst:1787 ../../c-api/typeobj.rst:1854 -#: ../../c-api/typeobj.rst:1890 ../../c-api/typeobj.rst:1917 -#: ../../c-api/typeobj.rst:1942 ../../c-api/typeobj.rst:1957 -#: ../../c-api/typeobj.rst:1974 ../../c-api/typeobj.rst:1990 -#: ../../c-api/typeobj.rst:2022 ../../c-api/typeobj.rst:2054 -#: ../../c-api/typeobj.rst:2082 ../../c-api/typeobj.rst:2102 -#: ../../c-api/typeobj.rst:2131 ../../c-api/typeobj.rst:2177 -#: ../../c-api/typeobj.rst:2196 ../../c-api/typeobj.rst:2238 -#: ../../c-api/typeobj.rst:2263 ../../c-api/typeobj.rst:2303 -#: ../../c-api/typeobj.rst:2333 ../../c-api/typeobj.rst:2346 -#: ../../c-api/typeobj.rst:2356 ../../c-api/typeobj.rst:2373 -#: ../../c-api/typeobj.rst:2390 ../../c-api/typeobj.rst:2406 -#: ../../c-api/typeobj.rst:2550 ../../c-api/typeobj.rst:2610 +msgid "The type object's reference count is initialized to ``1`` by the ``PyObject_HEAD_INIT`` macro. Note that for :ref:`statically allocated type objects `, the type's instances (objects whose :c:member:`~PyObject.ob_type` points back to the type) do *not* count as references. But for :ref:`dynamically allocated type objects `, the instances *do* count as references." +msgstr "" + msgid "**Inheritance:**" msgstr "" -#: ../../c-api/typeobj.rst:506 ../../c-api/typeobj.rst:545 -#: ../../c-api/typeobj.rst:589 msgid "This field is not inherited by subtypes." msgstr "" -#: ../../c-api/typeobj.rst:509 msgid ":c:member:`PyObject.ob_type`" msgstr "" -#: ../../c-api/typeobj.rst:511 -msgid "" -"This is the type's type, in other words its metatype. It is initialized by " -"the argument to the ``PyObject_HEAD_INIT`` macro, and its value should " -"normally be ``&PyType_Type``. However, for dynamically loadable extension " -"modules that must be usable on Windows (at least), the compiler complains " -"that this is not a valid initializer. Therefore, the convention is to pass " -"``NULL`` to the ``PyObject_HEAD_INIT`` macro and to initialize this field " -"explicitly at the start of the module's initialization function, before " -"doing anything else. This is typically done like this::" +msgid "This is the type's type, in other words its metatype. It is initialized by the argument to the ``PyObject_HEAD_INIT`` macro, and its value should normally be ``&PyType_Type``. However, for dynamically loadable extension modules that must be usable on Windows (at least), the compiler complains that this is not a valid initializer. Therefore, the convention is to pass ``NULL`` to the ``PyObject_HEAD_INIT`` macro and to initialize this field explicitly at the start of the module's initialization function, before doing anything else. This is typically done like this::" msgstr "" -#: ../../c-api/typeobj.rst:520 msgid "Foo_Type.ob_type = &PyType_Type;" msgstr "" -#: ../../c-api/typeobj.rst:522 -msgid "" -"This should be done before any instances of the type are " -"created. :c:func:`PyType_Ready` checks if :c:member:`~PyObject.ob_type` is " -"``NULL``, and if so, initializes it to the :c:member:`~PyObject.ob_type` " -"field of the base class. :c:func:`PyType_Ready` will not change this field " -"if it is non-zero." -msgstr "" - -#: ../../c-api/typeobj.rst:529 ../../c-api/typeobj.rst:811 -#: ../../c-api/typeobj.rst:938 ../../c-api/typeobj.rst:1038 -#: ../../c-api/typeobj.rst:1060 ../../c-api/typeobj.rst:1919 -#: ../../c-api/typeobj.rst:1944 ../../c-api/typeobj.rst:2084 -#: ../../c-api/typeobj.rst:2104 ../../c-api/typeobj.rst:2179 -#: ../../c-api/typeobj.rst:2305 ../../c-api/typeobj.rst:2552 +msgid "This should be done before any instances of the type are created. :c:func:`PyType_Ready` checks if :c:member:`~PyObject.ob_type` is ``NULL``, and if so, initializes it to the :c:member:`~PyObject.ob_type` field of the base class. :c:func:`PyType_Ready` will not change this field if it is non-zero." +msgstr "" + msgid "This field is inherited by subtypes." msgstr "" -#: ../../c-api/typeobj.rst:533 msgid "PyVarObject Slots" msgstr "" -#: ../../c-api/typeobj.rst:535 msgid ":c:member:`PyVarObject.ob_size`" msgstr "" -#: ../../c-api/typeobj.rst:537 -msgid "" -"For :ref:`statically allocated type objects `, this should be " -"initialized to zero. For :ref:`dynamically allocated type objects `, this field has a special internal meaning." +msgid "For :ref:`statically allocated type objects `, this should be initialized to zero. For :ref:`dynamically allocated type objects `, this field has a special internal meaning." msgstr "" -#: ../../c-api/typeobj.rst:541 msgid "This field should be accessed using the :c:func:`Py_SIZE()` macro." msgstr "" -#: ../../c-api/typeobj.rst:549 msgid "PyTypeObject Slots" msgstr "" -#: ../../c-api/typeobj.rst:551 -msgid "" -"Each slot has a section describing inheritance. If :c:func:`PyType_Ready` " -"may set a value when the field is set to ``NULL`` then there will also be a " -"\"Default\" section. (Note that many fields set " -"on :c:data:`PyBaseObject_Type` and :c:data:`PyType_Type` effectively act as " -"defaults.)" +msgid "Each slot has a section describing inheritance. If :c:func:`PyType_Ready` may set a value when the field is set to ``NULL`` then there will also be a \"Default\" section. (Note that many fields set on :c:data:`PyBaseObject_Type` and :c:data:`PyType_Type` effectively act as defaults.)" msgstr "" -#: ../../c-api/typeobj.rst:558 -msgid "" -"Pointer to a NUL-terminated string containing the name of the type. For " -"types that are accessible as module globals, the string should be the full " -"module name, followed by a dot, followed by the type name; for built-in " -"types, it should be just the type name. If the module is a submodule of a " -"package, the full package name is part of the full module name. For " -"example, a type named :class:`!T` defined in module :mod:`!M` in " -"subpackage :mod:`!Q` in package :mod:`!P` should have " -"the :c:member:`~PyTypeObject.tp_name` initializer ``\"P.Q.M.T\"``." +msgid "Pointer to a NUL-terminated string containing the name of the type. For types that are accessible as module globals, the string should be the full module name, followed by a dot, followed by the type name; for built-in types, it should be just the type name. If the module is a submodule of a package, the full package name is part of the full module name. For example, a type named :class:`!T` defined in module :mod:`!M` in subpackage :mod:`!Q` in package :mod:`!P` should have the :c:member:`~PyTypeObject.tp_name` initializer ``\"P.Q.M.T\"``." msgstr "" -#: ../../c-api/typeobj.rst:566 -msgid "" -"For :ref:`dynamically allocated type objects `, this should just " -"be the type name, and the module name explicitly stored in the type dict as " -"the value for key ``'__module__'``." +msgid "For :ref:`dynamically allocated type objects `, this should just be the type name, and the module name explicitly stored in the type dict as the value for key ``'__module__'``." msgstr "" -#: ../../c-api/typeobj.rst:571 -msgid "" -"For :ref:`statically allocated type objects `, the *tp_name* " -"field should contain a dot. Everything before the last dot is made " -"accessible as the :attr:`~type.__module__` attribute, and everything after " -"the last dot is made accessible as the :attr:`~type.__name__` attribute." +msgid "For :ref:`statically allocated type objects `, the *tp_name* field should contain a dot. Everything before the last dot is made accessible as the :attr:`~type.__module__` attribute, and everything after the last dot is made accessible as the :attr:`~type.__name__` attribute." msgstr "" -#: ../../c-api/typeobj.rst:577 -msgid "" -"If no dot is present, the entire :c:member:`~PyTypeObject.tp_name` field is " -"made accessible as the :attr:`~type.__name__` attribute, and " -"the :attr:`~type.__module__` attribute is undefined (unless explicitly set " -"in the dictionary, as explained above). This means your type will be " -"impossible to pickle. Additionally, it will not be listed in module " -"documentations created with pydoc." +msgid "If no dot is present, the entire :c:member:`~PyTypeObject.tp_name` field is made accessible as the :attr:`~type.__name__` attribute, and the :attr:`~type.__module__` attribute is undefined (unless explicitly set in the dictionary, as explained above). This means your type will be impossible to pickle. Additionally, it will not be listed in module documentations created with pydoc." msgstr "" -#: ../../c-api/typeobj.rst:583 -msgid "" -"This field must not be ``NULL``. It is the only required field " -"in :c:func:`PyTypeObject` (other than " -"potentially :c:member:`~PyTypeObject.tp_itemsize`)." +msgid "This field must not be ``NULL``. It is the only required field in :c:func:`PyTypeObject` (other than potentially :c:member:`~PyTypeObject.tp_itemsize`)." msgstr "" -#: ../../c-api/typeobj.rst:595 -msgid "" -"These fields allow calculating the size in bytes of instances of the type." +msgid "These fields allow calculating the size in bytes of instances of the type." msgstr "" -#: ../../c-api/typeobj.rst:597 -msgid "" -"There are two kinds of types: types with fixed-length instances have a " -"zero :c:member:`!tp_itemsize` field, types with variable-length instances " -"have a non-zero :c:member:`!tp_itemsize` field. For a type with fixed-" -"length instances, all instances have the same size, given in :c:member:`!" -"tp_basicsize`. (Exceptions to this rule can be made " -"using :c:func:`PyUnstable_Object_GC_NewWithExtraData`.)" +msgid "There are two kinds of types: types with fixed-length instances have a zero :c:member:`!tp_itemsize` field, types with variable-length instances have a non-zero :c:member:`!tp_itemsize` field. For a type with fixed-length instances, all instances have the same size, given in :c:member:`!tp_basicsize`. (Exceptions to this rule can be made using :c:func:`PyUnstable_Object_GC_NewWithExtraData`.)" msgstr "" -#: ../../c-api/typeobj.rst:604 -msgid "" -"For a type with variable-length instances, the instances must have " -"an :c:member:`~PyVarObject.ob_size` field, and the instance size " -"is :c:member:`!tp_basicsize` plus N times :c:member:`!tp_itemsize`, where N " -"is the \"length\" of the object." +msgid "For a type with variable-length instances, the instances must have an :c:member:`~PyVarObject.ob_size` field, and the instance size is :c:member:`!tp_basicsize` plus N times :c:member:`!tp_itemsize`, where N is the \"length\" of the object." msgstr "" -#: ../../c-api/typeobj.rst:609 -msgid "" -"Functions like :c:func:`PyObject_NewVar` will take the value of N as an " -"argument, and store in the instance's :c:member:`~PyVarObject.ob_size` " -"field. Note that the :c:member:`~PyVarObject.ob_size` field may later be " -"used for other purposes. For example, :py:type:`int` instances use the bits " -"of :c:member:`~PyVarObject.ob_size` in an implementation-defined way; the " -"underlying storage and its size should be accessed " -"using :c:func:`PyLong_Export`." +msgid "Functions like :c:func:`PyObject_NewVar` will take the value of N as an argument, and store in the instance's :c:member:`~PyVarObject.ob_size` field. Note that the :c:member:`~PyVarObject.ob_size` field may later be used for other purposes. For example, :py:type:`int` instances use the bits of :c:member:`~PyVarObject.ob_size` in an implementation-defined way; the underlying storage and its size should be accessed using :c:func:`PyLong_Export`." msgstr "" -#: ../../c-api/typeobj.rst:619 -msgid "" -"The :c:member:`~PyVarObject.ob_size` field should be accessed using " -"the :c:func:`Py_SIZE()` and :c:func:`Py_SET_SIZE()` macros." +msgid "The :c:member:`~PyVarObject.ob_size` field should be accessed using the :c:func:`Py_SIZE()` and :c:func:`Py_SET_SIZE()` macros." msgstr "" -#: ../../c-api/typeobj.rst:622 -msgid "" -"Also, the presence of an :c:member:`~PyVarObject.ob_size` field in the " -"instance layout doesn't mean that the instance structure is variable-length. " -"For example, the :py:type:`list` type has fixed-length instances, yet those " -"instances have a :c:member:`~PyVarObject.ob_size` field. (As " -"with :py:type:`int`, avoid reading lists' :c:member:`!ob_size` directly. " -"Call :c:func:`PyList_Size` instead.)" +msgid "Also, the presence of an :c:member:`~PyVarObject.ob_size` field in the instance layout doesn't mean that the instance structure is variable-length. For example, the :py:type:`list` type has fixed-length instances, yet those instances have a :c:member:`~PyVarObject.ob_size` field. (As with :py:type:`int`, avoid reading lists' :c:member:`!ob_size` directly. Call :c:func:`PyList_Size` instead.)" msgstr "" -#: ../../c-api/typeobj.rst:629 -msgid "" -"The :c:member:`!tp_basicsize` includes size needed for data of the " -"type's :c:member:`~PyTypeObject.tp_base`, plus any extra data needed by each " -"instance." +msgid "The :c:member:`!tp_basicsize` includes size needed for data of the type's :c:member:`~PyTypeObject.tp_base`, plus any extra data needed by each instance." msgstr "" -#: ../../c-api/typeobj.rst:633 -msgid "" -"The correct way to set :c:member:`!tp_basicsize` is to use the ``sizeof`` " -"operator on the struct used to declare the instance layout. This struct must " -"include the struct used to declare the base type. In other " -"words, :c:member:`!tp_basicsize` must be greater than or equal to the " -"base's :c:member:`!tp_basicsize`." +msgid "The correct way to set :c:member:`!tp_basicsize` is to use the ``sizeof`` operator on the struct used to declare the instance layout. This struct must include the struct used to declare the base type. In other words, :c:member:`!tp_basicsize` must be greater than or equal to the base's :c:member:`!tp_basicsize`." msgstr "" -#: ../../c-api/typeobj.rst:639 -msgid "" -"Since every type is a subtype of :py:type:`object`, this struct must " -"include :c:type:`PyObject` or :c:type:`PyVarObject` (depending on " -"whether :c:member:`~PyVarObject.ob_size` should be included). These are " -"usually defined by the macro :c:macro:`PyObject_HEAD` " -"or :c:macro:`PyObject_VAR_HEAD`, respectively." +msgid "Since every type is a subtype of :py:type:`object`, this struct must include :c:type:`PyObject` or :c:type:`PyVarObject` (depending on whether :c:member:`~PyVarObject.ob_size` should be included). These are usually defined by the macro :c:macro:`PyObject_HEAD` or :c:macro:`PyObject_VAR_HEAD`, respectively." msgstr "" -#: ../../c-api/typeobj.rst:645 -msgid "" -"The basic size does not include the GC header size, as that header is not " -"part of :c:macro:`PyObject_HEAD`." +msgid "The basic size does not include the GC header size, as that header is not part of :c:macro:`PyObject_HEAD`." msgstr "" -#: ../../c-api/typeobj.rst:648 -msgid "" -"For cases where struct used to declare the base type is unknown, " -"see :c:member:`PyType_Spec.basicsize` and :c:func:`PyType_FromMetaclass`." +msgid "For cases where struct used to declare the base type is unknown, see :c:member:`PyType_Spec.basicsize` and :c:func:`PyType_FromMetaclass`." msgstr "" -#: ../../c-api/typeobj.rst:651 msgid "Notes about alignment:" msgstr "" -#: ../../c-api/typeobj.rst:653 -msgid "" -":c:member:`!tp_basicsize` must be a multiple of ``_Alignof(PyObject)``. When " -"using ``sizeof`` on a ``struct`` that includes :c:macro:`PyObject_HEAD`, as " -"recommended, the compiler ensures this. When not using a C ``struct``, or " -"when using compiler extensions like ``__attribute__((packed))``, it is up to " -"you." +msgid ":c:member:`!tp_basicsize` must be a multiple of ``_Alignof(PyObject)``. When using ``sizeof`` on a ``struct`` that includes :c:macro:`PyObject_HEAD`, as recommended, the compiler ensures this. When not using a C ``struct``, or when using compiler extensions like ``__attribute__((packed))``, it is up to you." msgstr "" -#: ../../c-api/typeobj.rst:658 -msgid "" -"If the variable items require a particular alignment, :c:member:`!" -"tp_basicsize` and :c:member:`!tp_itemsize` must each be a multiple of that " -"alignment. For example, if a type's variable part stores a ``double``, it is " -"your responsibility that both fields are a multiple of ``_Alignof(double)``." +msgid "If the variable items require a particular alignment, :c:member:`!tp_basicsize` and :c:member:`!tp_itemsize` must each be a multiple of that alignment. For example, if a type's variable part stores a ``double``, it is your responsibility that both fields are a multiple of ``_Alignof(double)``." msgstr "" -#: ../../c-api/typeobj.rst:667 -msgid "" -"These fields are inherited separately by subtypes. (That is, if the field is " -"set to zero, :c:func:`PyType_Ready` will copy the value from the base type, " -"indicating that the instances do not need additional storage.)" +msgid "These fields are inherited separately by subtypes. (That is, if the field is set to zero, :c:func:`PyType_Ready` will copy the value from the base type, indicating that the instances do not need additional storage.)" msgstr "" -#: ../../c-api/typeobj.rst:672 -msgid "" -"If the base type has a non-zero :c:member:`~PyTypeObject.tp_itemsize`, it is " -"generally not safe to set :c:member:`~PyTypeObject.tp_itemsize` to a " -"different non-zero value in a subtype (though this depends on the " -"implementation of the base type)." +msgid "If the base type has a non-zero :c:member:`~PyTypeObject.tp_itemsize`, it is generally not safe to set :c:member:`~PyTypeObject.tp_itemsize` to a different non-zero value in a subtype (though this depends on the implementation of the base type)." msgstr "" -#: ../../c-api/typeobj.rst:681 -msgid "" -"A pointer to the instance destructor function. The function signature is::" +msgid "A pointer to the instance destructor function. The function signature is::" msgstr "" -#: ../../c-api/typeobj.rst:683 msgid "void tp_dealloc(PyObject *self);" msgstr "" -#: ../../c-api/typeobj.rst:685 -msgid "" -"The destructor function should remove all references which the instance owns " -"(e.g., call :c:func:`Py_CLEAR`), free all memory buffers owned by the " -"instance, and call the type's :c:member:`~PyTypeObject.tp_free` function to " -"free the object itself." +msgid "The destructor function should remove all references which the instance owns (e.g., call :c:func:`Py_CLEAR`), free all memory buffers owned by the instance, and call the type's :c:member:`~PyTypeObject.tp_free` function to free the object itself." msgstr "" -#: ../../c-api/typeobj.rst:690 -msgid "" -"If you may call functions that may set the error indicator, you must " -"use :c:func:`PyErr_GetRaisedException` " -"and :c:func:`PyErr_SetRaisedException` to ensure you don't clobber a " -"preexisting error indicator (the deallocation could have occurred while " -"processing a different error):" +msgid "If you may call functions that may set the error indicator, you must use :c:func:`PyErr_GetRaisedException` and :c:func:`PyErr_SetRaisedException` to ensure you don't clobber a preexisting error indicator (the deallocation could have occurred while processing a different error):" msgstr "" -#: ../../c-api/typeobj.rst:695 msgid "" "static void\n" "foo_dealloc(foo_object *self)\n" @@ -1636,69 +1063,33 @@ msgid "" "}" msgstr "" -#: ../../c-api/typeobj.rst:706 -msgid "" -"The dealloc handler itself must not raise an exception; if it hits an error " -"case it should call :c:func:`PyErr_FormatUnraisable` to log (and clear) an " -"unraisable exception." +msgid "The dealloc handler itself must not raise an exception; if it hits an error case it should call :c:func:`PyErr_FormatUnraisable` to log (and clear) an unraisable exception." msgstr "" -#: ../../c-api/typeobj.rst:710 msgid "No guarantees are made about when an object is destroyed, except:" msgstr "" -#: ../../c-api/typeobj.rst:712 -msgid "" -"Python will destroy an object immediately or some time after the final " -"reference to the object is deleted, unless its finalizer " -"(:c:member:`~PyTypeObject.tp_finalize`) subsequently resurrects the object." +msgid "Python will destroy an object immediately or some time after the final reference to the object is deleted, unless its finalizer (:c:member:`~PyTypeObject.tp_finalize`) subsequently resurrects the object." msgstr "" -#: ../../c-api/typeobj.rst:716 -msgid "" -"An object will not be destroyed while it is being automatically finalized " -"(:c:member:`~PyTypeObject.tp_finalize`) or automatically cleared " -"(:c:member:`~PyTypeObject.tp_clear`)." +msgid "An object will not be destroyed while it is being automatically finalized (:c:member:`~PyTypeObject.tp_finalize`) or automatically cleared (:c:member:`~PyTypeObject.tp_clear`)." msgstr "" -#: ../../c-api/typeobj.rst:720 -msgid "" -"CPython currently destroys an object immediately from :c:func:`Py_DECREF` " -"when the new reference count is zero, but this may change in a future " -"version." +msgid "CPython currently destroys an object immediately from :c:func:`Py_DECREF` when the new reference count is zero, but this may change in a future version." msgstr "" -#: ../../c-api/typeobj.rst:724 -msgid "" -"It is recommended to call :c:func:`PyObject_CallFinalizerFromDealloc` at the " -"beginning of :c:member:`!tp_dealloc` to guarantee that the object is always " -"finalized before destruction." +msgid "It is recommended to call :c:func:`PyObject_CallFinalizerFromDealloc` at the beginning of :c:member:`!tp_dealloc` to guarantee that the object is always finalized before destruction." msgstr "" -#: ../../c-api/typeobj.rst:728 -msgid "" -"If the type supports garbage collection (the :c:macro:`Py_TPFLAGS_HAVE_GC` " -"flag is set), the destructor should call :c:func:`PyObject_GC_UnTrack` " -"before clearing any member fields." +msgid "If the type supports garbage collection (the :c:macro:`Py_TPFLAGS_HAVE_GC` flag is set), the destructor should call :c:func:`PyObject_GC_UnTrack` before clearing any member fields." msgstr "" -#: ../../c-api/typeobj.rst:732 -msgid "" -"It is permissible to call :c:member:`~PyTypeObject.tp_clear` " -"from :c:member:`!tp_dealloc` to reduce code duplication and to guarantee " -"that the object is always cleared before destruction. Beware " -"that :c:member:`!tp_clear` might have already been called." +msgid "It is permissible to call :c:member:`~PyTypeObject.tp_clear` from :c:member:`!tp_dealloc` to reduce code duplication and to guarantee that the object is always cleared before destruction. Beware that :c:member:`!tp_clear` might have already been called." msgstr "" -#: ../../c-api/typeobj.rst:737 -msgid "" -"If the type is heap allocated (:c:macro:`Py_TPFLAGS_HEAPTYPE`), the " -"deallocator should release the owned reference to its type object " -"(via :c:func:`Py_DECREF`) after calling the type deallocator. See the " -"example code below.::" +msgid "If the type is heap allocated (:c:macro:`Py_TPFLAGS_HEAPTYPE`), the deallocator should release the owned reference to its type object (via :c:func:`Py_DECREF`) after calling the type deallocator. See the example code below.::" msgstr "" -#: ../../c-api/typeobj.rst:742 msgid "" "static void\n" "foo_dealloc(PyObject *op)\n" @@ -1710,19 +1101,12 @@ msgid "" "}" msgstr "" -#: ../../c-api/typeobj.rst:751 -msgid "" -":c:member:`!tp_dealloc` must leave the exception status unchanged. If it " -"needs to call something that might raise an exception, the exception state " -"must be backed up first and restored later (after logging any exceptions " -"with :c:func:`PyErr_WriteUnraisable`)." +msgid ":c:member:`!tp_dealloc` must leave the exception status unchanged. If it needs to call something that might raise an exception, the exception state must be backed up first and restored later (after logging any exceptions with :c:func:`PyErr_WriteUnraisable`)." msgstr "" -#: ../../c-api/typeobj.rst:756 msgid "Example::" msgstr "" -#: ../../c-api/typeobj.rst:758 msgid "" "static void\n" "foo_dealloc(PyObject *self)\n" @@ -1764,851 +1148,393 @@ msgid "" "}" msgstr "" -#: ../../c-api/typeobj.rst:797 -msgid "" -":c:member:`!tp_dealloc` may be called from any Python thread, not just the " -"thread which created the object (if the object becomes part of a refcount " -"cycle, that cycle might be collected by a garbage collection on any " -"thread). This is not a problem for Python API calls, since the thread on " -"which :c:member:`!tp_dealloc` is called with an :term:`attached thread " -"state`. However, if the object being destroyed in turn destroys objects " -"from some other C library, care should be taken to ensure that destroying " -"those objects on the thread which called :c:member:`!tp_dealloc` will not " -"violate any assumptions of the library." -msgstr "" - -#: ../../c-api/typeobj.rst:815 ../../c-api/typeobj.rst:1798 -#: ../../c-api/typeobj.rst:2565 -msgid "" -":ref:`life-cycle` for details about how this slot relates to other slots." +msgid ":c:member:`!tp_dealloc` may be called from any Python thread, not just the thread which created the object (if the object becomes part of a refcount cycle, that cycle might be collected by a garbage collection on any thread). This is not a problem for Python API calls, since the thread on which :c:member:`!tp_dealloc` is called with an :term:`attached thread state`. However, if the object being destroyed in turn destroys objects from some other C library, care should be taken to ensure that destroying those objects on the thread which called :c:member:`!tp_dealloc` will not violate any assumptions of the library." msgstr "" -#: ../../c-api/typeobj.rst:820 -msgid "" -"An optional offset to a per-instance function that implements calling the " -"object using the :ref:`vectorcall protocol `, a more efficient " -"alternative of the simpler :c:member:`~PyTypeObject.tp_call`." +msgid ":ref:`life-cycle` for details about how this slot relates to other slots." msgstr "" -#: ../../c-api/typeobj.rst:825 -msgid "" -"This field is only used if the flag :c:macro:`Py_TPFLAGS_HAVE_VECTORCALL` is " -"set. If so, this must be a positive integer containing the offset in the " -"instance of a :c:type:`vectorcallfunc` pointer." +msgid "An optional offset to a per-instance function that implements calling the object using the :ref:`vectorcall protocol `, a more efficient alternative of the simpler :c:member:`~PyTypeObject.tp_call`." msgstr "" -#: ../../c-api/typeobj.rst:829 -msgid "" -"The *vectorcallfunc* pointer may be ``NULL``, in which case the instance " -"behaves as if :c:macro:`Py_TPFLAGS_HAVE_VECTORCALL` was not set: calling the " -"instance falls back to :c:member:`~PyTypeObject.tp_call`." +msgid "This field is only used if the flag :c:macro:`Py_TPFLAGS_HAVE_VECTORCALL` is set. If so, this must be a positive integer containing the offset in the instance of a :c:type:`vectorcallfunc` pointer." msgstr "" -#: ../../c-api/typeobj.rst:833 -msgid "" -"Any class that sets ``Py_TPFLAGS_HAVE_VECTORCALL`` must also " -"set :c:member:`~PyTypeObject.tp_call` and make sure its behaviour is " -"consistent with the *vectorcallfunc* function. This can be done by setting " -"*tp_call* to :c:func:`PyVectorcall_Call`." +msgid "The *vectorcallfunc* pointer may be ``NULL``, in which case the instance behaves as if :c:macro:`Py_TPFLAGS_HAVE_VECTORCALL` was not set: calling the instance falls back to :c:member:`~PyTypeObject.tp_call`." msgstr "" -#: ../../c-api/typeobj.rst:840 -msgid "" -"Before version 3.8, this slot was named ``tp_print``. In Python 2.x, it was " -"used for printing to a file. In Python 3.0 to 3.7, it was unused." +msgid "Any class that sets ``Py_TPFLAGS_HAVE_VECTORCALL`` must also set :c:member:`~PyTypeObject.tp_call` and make sure its behaviour is consistent with the *vectorcallfunc* function. This can be done by setting *tp_call* to :c:func:`PyVectorcall_Call`." msgstr "" -#: ../../c-api/typeobj.rst:846 -msgid "" -"Before version 3.12, it was not recommended for :ref:`mutable heap types " -"` to implement the vectorcall protocol. When a user " -"sets :attr:`~object.__call__` in Python code, only *tp_call* is updated, " -"likely making it inconsistent with the vectorcall function. Since 3.12, " -"setting ``__call__`` will disable vectorcall optimization by clearing " -"the :c:macro:`Py_TPFLAGS_HAVE_VECTORCALL` flag." +msgid "Before version 3.8, this slot was named ``tp_print``. In Python 2.x, it was used for printing to a file. In Python 3.0 to 3.7, it was unused." msgstr "" -#: ../../c-api/typeobj.rst:856 -msgid "" -"This field is always inherited. However, " -"the :c:macro:`Py_TPFLAGS_HAVE_VECTORCALL` flag is not always inherited. If " -"it's not set, then the subclass won't use :ref:`vectorcall `, " -"except when :c:func:`PyVectorcall_Call` is explicitly called." +msgid "Before version 3.12, it was not recommended for :ref:`mutable heap types ` to implement the vectorcall protocol. When a user sets :attr:`~object.__call__` in Python code, only *tp_call* is updated, likely making it inconsistent with the vectorcall function. Since 3.12, setting ``__call__`` will disable vectorcall optimization by clearing the :c:macro:`Py_TPFLAGS_HAVE_VECTORCALL` flag." +msgstr "" + +msgid "This field is always inherited. However, the :c:macro:`Py_TPFLAGS_HAVE_VECTORCALL` flag is not always inherited. If it's not set, then the subclass won't use :ref:`vectorcall `, except when :c:func:`PyVectorcall_Call` is explicitly called." msgstr "" -#: ../../c-api/typeobj.rst:867 msgid "An optional pointer to the get-attribute-string function." msgstr "" -#: ../../c-api/typeobj.rst:869 -msgid "" -"This field is deprecated. When it is defined, it should point to a function " -"that acts the same as the :c:member:`~PyTypeObject.tp_getattro` function, " -"but taking a C string instead of a Python string object to give the " -"attribute name." +msgid "This field is deprecated. When it is defined, it should point to a function that acts the same as the :c:member:`~PyTypeObject.tp_getattro` function, but taking a C string instead of a Python string object to give the attribute name." msgstr "" -#: ../../c-api/typeobj.rst:875 ../../c-api/typeobj.rst:1083 msgid "Group: :c:member:`~PyTypeObject.tp_getattr`, :c:member:`~PyTypeObject.tp_getattro`" msgstr "" -#: ../../c-api/typeobj.rst:877 -msgid "" -"This field is inherited by subtypes together " -"with :c:member:`~PyTypeObject.tp_getattro`: a subtype inherits " -"both :c:member:`~PyTypeObject.tp_getattr` " -"and :c:member:`~PyTypeObject.tp_getattro` from its base type when the " -"subtype's :c:member:`~PyTypeObject.tp_getattr` " -"and :c:member:`~PyTypeObject.tp_getattro` are both ``NULL``." +msgid "This field is inherited by subtypes together with :c:member:`~PyTypeObject.tp_getattro`: a subtype inherits both :c:member:`~PyTypeObject.tp_getattr` and :c:member:`~PyTypeObject.tp_getattro` from its base type when the subtype's :c:member:`~PyTypeObject.tp_getattr` and :c:member:`~PyTypeObject.tp_getattro` are both ``NULL``." msgstr "" -#: ../../c-api/typeobj.rst:886 ../../c-api/typeobj.rst:1098 -msgid "" -"An optional pointer to the function for setting and deleting attributes." +msgid "An optional pointer to the function for setting and deleting attributes." msgstr "" -#: ../../c-api/typeobj.rst:888 -msgid "" -"This field is deprecated. When it is defined, it should point to a function " -"that acts the same as the :c:member:`~PyTypeObject.tp_setattro` function, " -"but taking a C string instead of a Python string object to give the " -"attribute name." +msgid "This field is deprecated. When it is defined, it should point to a function that acts the same as the :c:member:`~PyTypeObject.tp_setattro` function, but taking a C string instead of a Python string object to give the attribute name." msgstr "" -#: ../../c-api/typeobj.rst:894 ../../c-api/typeobj.rst:1111 msgid "Group: :c:member:`~PyTypeObject.tp_setattr`, :c:member:`~PyTypeObject.tp_setattro`" msgstr "" -#: ../../c-api/typeobj.rst:896 -msgid "" -"This field is inherited by subtypes together " -"with :c:member:`~PyTypeObject.tp_setattro`: a subtype inherits " -"both :c:member:`~PyTypeObject.tp_setattr` " -"and :c:member:`~PyTypeObject.tp_setattro` from its base type when the " -"subtype's :c:member:`~PyTypeObject.tp_setattr` " -"and :c:member:`~PyTypeObject.tp_setattro` are both ``NULL``." +msgid "This field is inherited by subtypes together with :c:member:`~PyTypeObject.tp_setattro`: a subtype inherits both :c:member:`~PyTypeObject.tp_setattr` and :c:member:`~PyTypeObject.tp_setattro` from its base type when the subtype's :c:member:`~PyTypeObject.tp_setattr` and :c:member:`~PyTypeObject.tp_setattro` are both ``NULL``." msgstr "" -#: ../../c-api/typeobj.rst:903 -msgid "" -"Pointer to an additional structure that contains fields relevant only to " -"objects which implement :term:`awaitable` and :term:`asynchronous iterator` " -"protocols at the C-level. See :ref:`async-structs` for details." +msgid "Pointer to an additional structure that contains fields relevant only to objects which implement :term:`awaitable` and :term:`asynchronous iterator` protocols at the C-level. See :ref:`async-structs` for details." msgstr "" -#: ../../c-api/typeobj.rst:907 msgid "Formerly known as ``tp_compare`` and ``tp_reserved``." msgstr "" -#: ../../c-api/typeobj.rst:912 -msgid "" -"The :c:member:`~PyTypeObject.tp_as_async` field is not inherited, but the " -"contained fields are inherited individually." +msgid "The :c:member:`~PyTypeObject.tp_as_async` field is not inherited, but the contained fields are inherited individually." msgstr "" -#: ../../c-api/typeobj.rst:922 -msgid "" -"An optional pointer to a function that implements the built-in " -"function :func:`repr`." +msgid "An optional pointer to a function that implements the built-in function :func:`repr`." msgstr "" -#: ../../c-api/typeobj.rst:925 msgid "The signature is the same as for :c:func:`PyObject_Repr`::" msgstr "" -#: ../../c-api/typeobj.rst:927 msgid "PyObject *tp_repr(PyObject *self);" msgstr "" -#: ../../c-api/typeobj.rst:929 -msgid "" -"The function must return a string or a Unicode object. Ideally, this " -"function should return a string that, when passed to :func:`eval`, given a " -"suitable environment, returns an object with the same value. If this is not " -"feasible, it should return a string starting with ``'<'`` and ending with " -"``'>'`` from which both the type and the value of the object can be deduced." -msgstr "" - -#: ../../c-api/typeobj.rst:940 ../../c-api/typeobj.rst:1021 -#: ../../c-api/typeobj.rst:1062 ../../c-api/typeobj.rst:1089 -#: ../../c-api/typeobj.rst:1117 ../../c-api/typeobj.rst:1159 -#: ../../c-api/typeobj.rst:1863 ../../c-api/typeobj.rst:1897 -#: ../../c-api/typeobj.rst:2026 ../../c-api/typeobj.rst:2059 -#: ../../c-api/typeobj.rst:2138 ../../c-api/typeobj.rst:2181 -#: ../../c-api/typeobj.rst:2203 ../../c-api/typeobj.rst:2244 -#: ../../c-api/typeobj.rst:2274 ../../c-api/typeobj.rst:2307 +msgid "The function must return a string or a Unicode object. Ideally, this function should return a string that, when passed to :func:`eval`, given a suitable environment, returns an object with the same value. If this is not feasible, it should return a string starting with ``'<'`` and ending with ``'>'`` from which both the type and the value of the object can be deduced." +msgstr "" + msgid "**Default:**" msgstr "" -#: ../../c-api/typeobj.rst:942 -msgid "" -"When this field is not set, a string of the form ``<%s object at %p>`` is " -"returned, where ``%s`` is replaced by the type name, and ``%p`` by the " -"object's memory address." +msgid "When this field is not set, a string of the form ``<%s object at %p>`` is returned, where ``%s`` is replaced by the type name, and ``%p`` by the object's memory address." msgstr "" -#: ../../c-api/typeobj.rst:949 -msgid "" -"Pointer to an additional structure that contains fields relevant only to " -"objects which implement the number protocol. These fields are documented " -"in :ref:`number-structs`." +msgid "Pointer to an additional structure that contains fields relevant only to objects which implement the number protocol. These fields are documented in :ref:`number-structs`." msgstr "" -#: ../../c-api/typeobj.rst:955 -msgid "" -"The :c:member:`~PyTypeObject.tp_as_number` field is not inherited, but the " -"contained fields are inherited individually." +msgid "The :c:member:`~PyTypeObject.tp_as_number` field is not inherited, but the contained fields are inherited individually." msgstr "" -#: ../../c-api/typeobj.rst:961 -msgid "" -"Pointer to an additional structure that contains fields relevant only to " -"objects which implement the sequence protocol. These fields are documented " -"in :ref:`sequence-structs`." +msgid "Pointer to an additional structure that contains fields relevant only to objects which implement the sequence protocol. These fields are documented in :ref:`sequence-structs`." msgstr "" -#: ../../c-api/typeobj.rst:967 -msgid "" -"The :c:member:`~PyTypeObject.tp_as_sequence` field is not inherited, but the " -"contained fields are inherited individually." +msgid "The :c:member:`~PyTypeObject.tp_as_sequence` field is not inherited, but the contained fields are inherited individually." msgstr "" -#: ../../c-api/typeobj.rst:973 -msgid "" -"Pointer to an additional structure that contains fields relevant only to " -"objects which implement the mapping protocol. These fields are documented " -"in :ref:`mapping-structs`." +msgid "Pointer to an additional structure that contains fields relevant only to objects which implement the mapping protocol. These fields are documented in :ref:`mapping-structs`." msgstr "" -#: ../../c-api/typeobj.rst:979 -msgid "" -"The :c:member:`~PyTypeObject.tp_as_mapping` field is not inherited, but the " -"contained fields are inherited individually." +msgid "The :c:member:`~PyTypeObject.tp_as_mapping` field is not inherited, but the contained fields are inherited individually." msgstr "" -#: ../../c-api/typeobj.rst:989 -msgid "" -"An optional pointer to a function that implements the built-in " -"function :func:`hash`." +msgid "An optional pointer to a function that implements the built-in function :func:`hash`." msgstr "" -#: ../../c-api/typeobj.rst:992 msgid "The signature is the same as for :c:func:`PyObject_Hash`::" msgstr "" -#: ../../c-api/typeobj.rst:994 msgid "Py_hash_t tp_hash(PyObject *);" msgstr "" -#: ../../c-api/typeobj.rst:996 -msgid "" -"The value ``-1`` should not be returned as a normal return value; when an " -"error occurs during the computation of the hash value, the function should " -"set an exception and return ``-1``." +msgid "The value ``-1`` should not be returned as a normal return value; when an error occurs during the computation of the hash value, the function should set an exception and return ``-1``." msgstr "" -#: ../../c-api/typeobj.rst:1000 -msgid "" -"When this field is not set (*and* :c:member:`~PyTypeObject.tp_richcompare` " -"is not set), an attempt to take the hash of the object " -"raises :exc:`TypeError`. This is the same as setting it " -"to :c:func:`PyObject_HashNotImplemented`." +msgid "When this field is not set (*and* :c:member:`~PyTypeObject.tp_richcompare` is not set), an attempt to take the hash of the object raises :exc:`TypeError`. This is the same as setting it to :c:func:`PyObject_HashNotImplemented`." msgstr "" -#: ../../c-api/typeobj.rst:1004 -msgid "" -"This field can be set explicitly to :c:func:`PyObject_HashNotImplemented` to " -"block inheritance of the hash method from a parent type. This is interpreted " -"as the equivalent of ``__hash__ = None`` at the Python level, causing " -"``isinstance(o, collections.Hashable)`` to correctly return ``False``. Note " -"that the converse is also true - setting ``__hash__ = None`` on a class at " -"the Python level will result in the ``tp_hash`` slot being set " -"to :c:func:`PyObject_HashNotImplemented`." +msgid "This field can be set explicitly to :c:func:`PyObject_HashNotImplemented` to block inheritance of the hash method from a parent type. This is interpreted as the equivalent of ``__hash__ = None`` at the Python level, causing ``isinstance(o, collections.Hashable)`` to correctly return ``False``. Note that the converse is also true - setting ``__hash__ = None`` on a class at the Python level will result in the ``tp_hash`` slot being set to :c:func:`PyObject_HashNotImplemented`." msgstr "" -#: ../../c-api/typeobj.rst:1014 ../../c-api/typeobj.rst:1856 msgid "Group: :c:member:`~PyTypeObject.tp_hash`, :c:member:`~PyTypeObject.tp_richcompare`" msgstr "" -#: ../../c-api/typeobj.rst:1016 -msgid "" -"This field is inherited by subtypes together " -"with :c:member:`~PyTypeObject.tp_richcompare`: a subtype inherits both " -"of :c:member:`~PyTypeObject.tp_richcompare` " -"and :c:member:`~PyTypeObject.tp_hash`, when the " -"subtype's :c:member:`~PyTypeObject.tp_richcompare` " -"and :c:member:`~PyTypeObject.tp_hash` are both ``NULL``." +msgid "This field is inherited by subtypes together with :c:member:`~PyTypeObject.tp_richcompare`: a subtype inherits both of :c:member:`~PyTypeObject.tp_richcompare` and :c:member:`~PyTypeObject.tp_hash`, when the subtype's :c:member:`~PyTypeObject.tp_richcompare` and :c:member:`~PyTypeObject.tp_hash` are both ``NULL``." msgstr "" -#: ../../c-api/typeobj.rst:1023 msgid ":c:data:`PyBaseObject_Type` uses :c:func:`PyObject_GenericHash`." msgstr "" -#: ../../c-api/typeobj.rst:1030 -msgid "" -"An optional pointer to a function that implements calling the object. This " -"should be ``NULL`` if the object is not callable. The signature is the same " -"as for :c:func:`PyObject_Call`::" +msgid "An optional pointer to a function that implements calling the object. This should be ``NULL`` if the object is not callable. The signature is the same as for :c:func:`PyObject_Call`::" msgstr "" -#: ../../c-api/typeobj.rst:1034 msgid "PyObject *tp_call(PyObject *self, PyObject *args, PyObject *kwargs);" msgstr "" -#: ../../c-api/typeobj.rst:1045 -msgid "" -"An optional pointer to a function that implements the built-in " -"operation :func:`str`. (Note that :class:`str` is a type now, " -"and :func:`str` calls the constructor for that type. This constructor " -"calls :c:func:`PyObject_Str` to do the actual work, " -"and :c:func:`PyObject_Str` will call this handler.)" +msgid "An optional pointer to a function that implements the built-in operation :func:`str`. (Note that :class:`str` is a type now, and :func:`str` calls the constructor for that type. This constructor calls :c:func:`PyObject_Str` to do the actual work, and :c:func:`PyObject_Str` will call this handler.)" msgstr "" -#: ../../c-api/typeobj.rst:1050 msgid "The signature is the same as for :c:func:`PyObject_Str`::" msgstr "" -#: ../../c-api/typeobj.rst:1052 msgid "PyObject *tp_str(PyObject *self);" msgstr "" -#: ../../c-api/typeobj.rst:1054 -msgid "" -"The function must return a string or a Unicode object. It should be a " -"\"friendly\" string representation of the object, as this is the " -"representation that will be used, among other things, by the :func:`print` " -"function." +msgid "The function must return a string or a Unicode object. It should be a \"friendly\" string representation of the object, as this is the representation that will be used, among other things, by the :func:`print` function." msgstr "" -#: ../../c-api/typeobj.rst:1064 -msgid "" -"When this field is not set, :c:func:`PyObject_Repr` is called to return a " -"string representation." +msgid "When this field is not set, :c:func:`PyObject_Repr` is called to return a string representation." msgstr "" -#: ../../c-api/typeobj.rst:1072 msgid "An optional pointer to the get-attribute function." msgstr "" -#: ../../c-api/typeobj.rst:1074 msgid "The signature is the same as for :c:func:`PyObject_GetAttr`::" msgstr "" -#: ../../c-api/typeobj.rst:1076 msgid "PyObject *tp_getattro(PyObject *self, PyObject *attr);" msgstr "" -#: ../../c-api/typeobj.rst:1078 -msgid "" -"It is usually convenient to set this field " -"to :c:func:`PyObject_GenericGetAttr`, which implements the normal way of " -"looking for object attributes." +msgid "It is usually convenient to set this field to :c:func:`PyObject_GenericGetAttr`, which implements the normal way of looking for object attributes." msgstr "" -#: ../../c-api/typeobj.rst:1085 -msgid "" -"This field is inherited by subtypes together " -"with :c:member:`~PyTypeObject.tp_getattr`: a subtype inherits " -"both :c:member:`~PyTypeObject.tp_getattr` " -"and :c:member:`~PyTypeObject.tp_getattro` from its base type when the " -"subtype's :c:member:`~PyTypeObject.tp_getattr` " -"and :c:member:`~PyTypeObject.tp_getattro` are both ``NULL``." +msgid "This field is inherited by subtypes together with :c:member:`~PyTypeObject.tp_getattr`: a subtype inherits both :c:member:`~PyTypeObject.tp_getattr` and :c:member:`~PyTypeObject.tp_getattro` from its base type when the subtype's :c:member:`~PyTypeObject.tp_getattr` and :c:member:`~PyTypeObject.tp_getattro` are both ``NULL``." msgstr "" -#: ../../c-api/typeobj.rst:1091 msgid ":c:data:`PyBaseObject_Type` uses :c:func:`PyObject_GenericGetAttr`." msgstr "" -#: ../../c-api/typeobj.rst:1100 msgid "The signature is the same as for :c:func:`PyObject_SetAttr`::" msgstr "" -#: ../../c-api/typeobj.rst:1102 msgid "int tp_setattro(PyObject *self, PyObject *attr, PyObject *value);" msgstr "" -#: ../../c-api/typeobj.rst:1104 -msgid "" -"In addition, setting *value* to ``NULL`` to delete an attribute must be " -"supported. It is usually convenient to set this field " -"to :c:func:`PyObject_GenericSetAttr`, which implements the normal way of " -"setting object attributes." +msgid "In addition, setting *value* to ``NULL`` to delete an attribute must be supported. It is usually convenient to set this field to :c:func:`PyObject_GenericSetAttr`, which implements the normal way of setting object attributes." msgstr "" -#: ../../c-api/typeobj.rst:1113 -msgid "" -"This field is inherited by subtypes together " -"with :c:member:`~PyTypeObject.tp_setattr`: a subtype inherits " -"both :c:member:`~PyTypeObject.tp_setattr` " -"and :c:member:`~PyTypeObject.tp_setattro` from its base type when the " -"subtype's :c:member:`~PyTypeObject.tp_setattr` " -"and :c:member:`~PyTypeObject.tp_setattro` are both ``NULL``." +msgid "This field is inherited by subtypes together with :c:member:`~PyTypeObject.tp_setattr`: a subtype inherits both :c:member:`~PyTypeObject.tp_setattr` and :c:member:`~PyTypeObject.tp_setattro` from its base type when the subtype's :c:member:`~PyTypeObject.tp_setattr` and :c:member:`~PyTypeObject.tp_setattro` are both ``NULL``." msgstr "" -#: ../../c-api/typeobj.rst:1119 msgid ":c:data:`PyBaseObject_Type` uses :c:func:`PyObject_GenericSetAttr`." msgstr "" -#: ../../c-api/typeobj.rst:1124 -msgid "" -"Pointer to an additional structure that contains fields relevant only to " -"objects which implement the buffer interface. These fields are documented " -"in :ref:`buffer-structs`." +msgid "Pointer to an additional structure that contains fields relevant only to objects which implement the buffer interface. These fields are documented in :ref:`buffer-structs`." msgstr "" -#: ../../c-api/typeobj.rst:1130 -msgid "" -"The :c:member:`~PyTypeObject.tp_as_buffer` field is not inherited, but the " -"contained fields are inherited individually." +msgid "The :c:member:`~PyTypeObject.tp_as_buffer` field is not inherited, but the contained fields are inherited individually." msgstr "" -#: ../../c-api/typeobj.rst:1136 -msgid "" -"This field is a bit mask of various flags. Some flags indicate variant " -"semantics for certain situations; others are used to indicate that certain " -"fields in the type object (or in the extension structures referenced " -"via :c:member:`~PyTypeObject.tp_as_number`, :c:member:`~PyTypeObject.tp_as_sequence`, :c:member:`~PyTypeObject.tp_as_mapping`, " -"and :c:member:`~PyTypeObject.tp_as_buffer`) that were historically not " -"always present are valid; if such a flag bit is clear, the type fields it " -"guards must not be accessed and must be considered to have a zero or " -"``NULL`` value instead." +msgid "This field is a bit mask of various flags. Some flags indicate variant semantics for certain situations; others are used to indicate that certain fields in the type object (or in the extension structures referenced via :c:member:`~PyTypeObject.tp_as_number`, :c:member:`~PyTypeObject.tp_as_sequence`, :c:member:`~PyTypeObject.tp_as_mapping`, and :c:member:`~PyTypeObject.tp_as_buffer`) that were historically not always present are valid; if such a flag bit is clear, the type fields it guards must not be accessed and must be considered to have a zero or ``NULL`` value instead." msgstr "" -#: ../../c-api/typeobj.rst:1146 -msgid "" -"Inheritance of this field is complicated. Most flag bits are inherited " -"individually, i.e. if the base type has a flag bit set, the subtype inherits " -"this flag bit. The flag bits that pertain to extension structures are " -"strictly inherited if the extension structure is inherited, i.e. the base " -"type's value of the flag bit is copied into the subtype together with a " -"pointer to the extension structure. The :c:macro:`Py_TPFLAGS_HAVE_GC` flag " -"bit is inherited together with the :c:member:`~PyTypeObject.tp_traverse` " -"and :c:member:`~PyTypeObject.tp_clear` fields, i.e. if " -"the :c:macro:`Py_TPFLAGS_HAVE_GC` flag bit is clear in the subtype and " -"the :c:member:`~PyTypeObject.tp_traverse` " -"and :c:member:`~PyTypeObject.tp_clear` fields in the subtype exist and have " -"``NULL`` values." -msgstr "" - -#: ../../c-api/typeobj.rst:1161 -msgid "" -":c:data:`PyBaseObject_Type` uses ``Py_TPFLAGS_DEFAULT | " -"Py_TPFLAGS_BASETYPE``." +msgid "Inheritance of this field is complicated. Most flag bits are inherited individually, i.e. if the base type has a flag bit set, the subtype inherits this flag bit. The flag bits that pertain to extension structures are strictly inherited if the extension structure is inherited, i.e. the base type's value of the flag bit is copied into the subtype together with a pointer to the extension structure. The :c:macro:`Py_TPFLAGS_HAVE_GC` flag bit is inherited together with the :c:member:`~PyTypeObject.tp_traverse` and :c:member:`~PyTypeObject.tp_clear` fields, i.e. if the :c:macro:`Py_TPFLAGS_HAVE_GC` flag bit is clear in the subtype and the :c:member:`~PyTypeObject.tp_traverse` and :c:member:`~PyTypeObject.tp_clear` fields in the subtype exist and have ``NULL`` values." +msgstr "" + +msgid ":c:data:`PyBaseObject_Type` uses ``Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE``." msgstr "" -#: ../../c-api/typeobj.rst:1164 msgid "**Bit Masks:**" msgstr "" -#: ../../c-api/typeobj.rst:1168 -msgid "" -"The following bit masks are currently defined; these can be ORed together " -"using the ``|`` operator to form the value of " -"the :c:member:`~PyTypeObject.tp_flags` field. The " -"macro :c:func:`PyType_HasFeature` takes a type and a flags value, *tp* and " -"*f*, and checks whether ``tp->tp_flags & f`` is non-zero." +msgid "The following bit masks are currently defined; these can be ORed together using the ``|`` operator to form the value of the :c:member:`~PyTypeObject.tp_flags` field. The macro :c:func:`PyType_HasFeature` takes a type and a flags value, *tp* and *f*, and checks whether ``tp->tp_flags & f`` is non-zero." +msgstr "" + +msgid "This bit is set when the type object itself is allocated on the heap, for example, types created dynamically using :c:func:`PyType_FromSpec`. In this case, the :c:member:`~PyObject.ob_type` field of its instances is considered a reference to the type, and the type object is INCREF'ed when a new instance is created, and DECREF'ed when an instance is destroyed (this does not apply to instances of subtypes; only the type referenced by the instance's ob_type gets INCREF'ed or DECREF'ed). Heap types should also :ref:`support garbage collection ` as they can form a reference cycle with their own module object." msgstr "" -#: ../../c-api/typeobj.rst:1175 -msgid "" -"This bit is set when the type object itself is allocated on the heap, for " -"example, types created dynamically using :c:func:`PyType_FromSpec`. In this " -"case, the :c:member:`~PyObject.ob_type` field of its instances is considered " -"a reference to the type, and the type object is INCREF'ed when a new " -"instance is created, and DECREF'ed when an instance is destroyed (this does " -"not apply to instances of subtypes; only the type referenced by the " -"instance's ob_type gets INCREF'ed or DECREF'ed). Heap types should " -"also :ref:`support garbage collection ` as they " -"can form a reference cycle with their own module object." -msgstr "" - -#: ../../c-api/typeobj.rst:1186 ../../c-api/typeobj.rst:1197 -#: ../../c-api/typeobj.rst:1207 ../../c-api/typeobj.rst:1217 -#: ../../c-api/typeobj.rst:1249 msgid "???" msgstr "" -#: ../../c-api/typeobj.rst:1191 -msgid "" -"This bit is set when the type can be used as the base type of another type. " -"If this bit is clear, the type cannot be subtyped (similar to a \"final\" " -"class in Java)." +msgid "This bit is set when the type can be used as the base type of another type. If this bit is clear, the type cannot be subtyped (similar to a \"final\" class in Java)." msgstr "" -#: ../../c-api/typeobj.rst:1202 -msgid "" -"This bit is set when the type object has been fully initialized " -"by :c:func:`PyType_Ready`." +msgid "This bit is set when the type object has been fully initialized by :c:func:`PyType_Ready`." msgstr "" -#: ../../c-api/typeobj.rst:1212 -msgid "" -"This bit is set while :c:func:`PyType_Ready` is in the process of " -"initializing the type object." +msgid "This bit is set while :c:func:`PyType_Ready` is in the process of initializing the type object." msgstr "" -#: ../../c-api/typeobj.rst:1222 -msgid "" -"This bit is set when the object supports garbage collection. If this bit is " -"set, memory for new instances (see :c:member:`~PyTypeObject.tp_alloc`) must " -"be allocated using :c:macro:`PyObject_GC_New` " -"or :c:func:`PyType_GenericAlloc` and deallocated " -"(see :c:member:`~PyTypeObject.tp_free`) using :c:func:`PyObject_GC_Del`. " -"More information in section :ref:`supporting-cycle-detection`." +msgid "This bit is set when the object supports garbage collection. If this bit is set, memory for new instances (see :c:member:`~PyTypeObject.tp_alloc`) must be allocated using :c:macro:`PyObject_GC_New` or :c:func:`PyType_GenericAlloc` and deallocated (see :c:member:`~PyTypeObject.tp_free`) using :c:func:`PyObject_GC_Del`. More information in section :ref:`supporting-cycle-detection`." msgstr "" -#: ../../c-api/typeobj.rst:1231 ../../c-api/typeobj.rst:1643 -#: ../../c-api/typeobj.rst:1789 msgid "Group: :c:macro:`Py_TPFLAGS_HAVE_GC`, :c:member:`~PyTypeObject.tp_traverse`, :c:member:`~PyTypeObject.tp_clear`" msgstr "" -#: ../../c-api/typeobj.rst:1233 -msgid "" -"The :c:macro:`Py_TPFLAGS_HAVE_GC` flag bit is inherited together with " -"the :c:member:`~PyTypeObject.tp_traverse` " -"and :c:member:`~PyTypeObject.tp_clear` fields, i.e. if " -"the :c:macro:`Py_TPFLAGS_HAVE_GC` flag bit is clear in the subtype and " -"the :c:member:`~PyTypeObject.tp_traverse` " -"and :c:member:`~PyTypeObject.tp_clear` fields in the subtype exist and have " -"``NULL`` values." +msgid "The :c:macro:`Py_TPFLAGS_HAVE_GC` flag bit is inherited together with the :c:member:`~PyTypeObject.tp_traverse` and :c:member:`~PyTypeObject.tp_clear` fields, i.e. if the :c:macro:`Py_TPFLAGS_HAVE_GC` flag bit is clear in the subtype and the :c:member:`~PyTypeObject.tp_traverse` and :c:member:`~PyTypeObject.tp_clear` fields in the subtype exist and have ``NULL`` values." msgstr "" -#: ../../c-api/typeobj.rst:1243 -msgid "" -"This is a bitmask of all the bits that pertain to the existence of certain " -"fields in the type object and its extension structures. Currently, it " -"includes the following bits: :c:macro:`Py_TPFLAGS_HAVE_STACKLESS_EXTENSION`." +msgid "This is a bitmask of all the bits that pertain to the existence of certain fields in the type object and its extension structures. Currently, it includes the following bits: :c:macro:`Py_TPFLAGS_HAVE_STACKLESS_EXTENSION`." msgstr "" -#: ../../c-api/typeobj.rst:1254 msgid "This bit indicates that objects behave like unbound methods." msgstr "" -#: ../../c-api/typeobj.rst:1256 msgid "If this flag is set for ``type(meth)``, then:" msgstr "" -#: ../../c-api/typeobj.rst:1258 -msgid "" -"``meth.__get__(obj, cls)(*args, **kwds)`` (with ``obj`` not None) must be " -"equivalent to ``meth(obj, *args, **kwds)``." +msgid "``meth.__get__(obj, cls)(*args, **kwds)`` (with ``obj`` not None) must be equivalent to ``meth(obj, *args, **kwds)``." msgstr "" -#: ../../c-api/typeobj.rst:1261 -msgid "" -"``meth.__get__(None, cls)(*args, **kwds)`` must be equivalent to " -"``meth(*args, **kwds)``." +msgid "``meth.__get__(None, cls)(*args, **kwds)`` must be equivalent to ``meth(*args, **kwds)``." msgstr "" -#: ../../c-api/typeobj.rst:1264 -msgid "" -"This flag enables an optimization for typical method calls like " -"``obj.meth()``: it avoids creating a temporary \"bound method\" object for " -"``obj.meth``." +msgid "This flag enables an optimization for typical method calls like ``obj.meth()``: it avoids creating a temporary \"bound method\" object for ``obj.meth``." msgstr "" -#: ../../c-api/typeobj.rst:1272 -msgid "" -"This flag is never inherited by types without " -"the :c:macro:`Py_TPFLAGS_IMMUTABLETYPE` flag set. For extension types, it " -"is inherited whenever :c:member:`~PyTypeObject.tp_descr_get` is inherited." +msgid "This flag is never inherited by types without the :c:macro:`Py_TPFLAGS_IMMUTABLETYPE` flag set. For extension types, it is inherited whenever :c:member:`~PyTypeObject.tp_descr_get` is inherited." msgstr "" -#: ../../c-api/typeobj.rst:1278 -msgid "" -"This bit indicates that instances of the class have " -"a :attr:`~object.__dict__` attribute, and that the space for the dictionary " -"is managed by the VM." +msgid "This bit indicates that instances of the class have a :attr:`~object.__dict__` attribute, and that the space for the dictionary is managed by the VM." msgstr "" -#: ../../c-api/typeobj.rst:1281 msgid "If this flag is set, :c:macro:`Py_TPFLAGS_HAVE_GC` should also be set." msgstr "" -#: ../../c-api/typeobj.rst:1283 -msgid "" -"The type traverse function must call :c:func:`PyObject_VisitManagedDict` and " -"its clear function must call :c:func:`PyObject_ClearManagedDict`." +msgid "The type traverse function must call :c:func:`PyObject_VisitManagedDict` and its clear function must call :c:func:`PyObject_ClearManagedDict`." msgstr "" -#: ../../c-api/typeobj.rst:1290 -msgid "" -"This flag is inherited unless the :c:member:`~PyTypeObject.tp_dictoffset` " -"field is set in a superclass." +msgid "This flag is inherited unless the :c:member:`~PyTypeObject.tp_dictoffset` field is set in a superclass." msgstr "" -#: ../../c-api/typeobj.rst:1296 -msgid "" -"This bit indicates that instances of the class should be weakly " -"referenceable." +msgid "This bit indicates that instances of the class should be weakly referenceable." msgstr "" -#: ../../c-api/typeobj.rst:1303 -msgid "" -"This flag is inherited unless " -"the :c:member:`~PyTypeObject.tp_weaklistoffset` field is set in a superclass." +msgid "This flag is inherited unless the :c:member:`~PyTypeObject.tp_weaklistoffset` field is set in a superclass." msgstr "" -#: ../../c-api/typeobj.rst:1309 -msgid "" -"Only usable with variable-size types, i.e. ones with non-" -"zero :c:member:`~PyTypeObject.tp_itemsize`." +msgid "Only usable with variable-size types, i.e. ones with non-zero :c:member:`~PyTypeObject.tp_itemsize`." msgstr "" -#: ../../c-api/typeobj.rst:1312 -msgid "" -"Indicates that the variable-sized portion of an instance of this type is at " -"the end of the instance's memory area, at an offset of ``Py_TYPE(obj)-" -">tp_basicsize`` (which may be different in each subclass)." +msgid "Indicates that the variable-sized portion of an instance of this type is at the end of the instance's memory area, at an offset of ``Py_TYPE(obj)->tp_basicsize`` (which may be different in each subclass)." msgstr "" -#: ../../c-api/typeobj.rst:1317 -msgid "" -"When setting this flag, be sure that all superclasses either use this memory " -"layout, or are not variable-sized. Python does not check this." +msgid "When setting this flag, be sure that all superclasses either use this memory layout, or are not variable-sized. Python does not check this." msgstr "" -#: ../../c-api/typeobj.rst:1325 msgid "This flag is inherited." msgstr "" -#: ../../c-api/typeobj.rst:1339 -msgid "" -"Functions such as :c:func:`PyLong_Check` will " -"call :c:func:`PyType_FastSubclass` with one of these flags to quickly " -"determine if a type is a subclass of a built-in type; such specific checks " -"are faster than a generic check, like :c:func:`PyObject_IsInstance`. Custom " -"types that inherit from built-ins should have " -"their :c:member:`~PyTypeObject.tp_flags` set appropriately, or the code that " -"interacts with such types will behave differently depending on what kind of " -"check is used." +msgid "Functions such as :c:func:`PyLong_Check` will call :c:func:`PyType_FastSubclass` with one of these flags to quickly determine if a type is a subclass of a built-in type; such specific checks are faster than a generic check, like :c:func:`PyObject_IsInstance`. Custom types that inherit from built-ins should have their :c:member:`~PyTypeObject.tp_flags` set appropriately, or the code that interacts with such types will behave differently depending on what kind of check is used." msgstr "" -#: ../../c-api/typeobj.rst:1350 -msgid "" -"This bit is set when the :c:member:`~PyTypeObject.tp_finalize` slot is " -"present in the type structure." +msgid "This bit is set when the :c:member:`~PyTypeObject.tp_finalize` slot is present in the type structure." msgstr "" -#: ../../c-api/typeobj.rst:1355 -msgid "" -"This flag isn't necessary anymore, as the interpreter assumes " -"the :c:member:`~PyTypeObject.tp_finalize` slot is always present in the type " -"structure." +msgid "This flag isn't necessary anymore, as the interpreter assumes the :c:member:`~PyTypeObject.tp_finalize` slot is always present in the type structure." msgstr "" -#: ../../c-api/typeobj.rst:1366 -msgid "" -"This bit is set when the class implements the :ref:`vectorcall protocol " -"`. See :c:member:`~PyTypeObject.tp_vectorcall_offset` for " -"details." +msgid "This bit is set when the class implements the :ref:`vectorcall protocol `. See :c:member:`~PyTypeObject.tp_vectorcall_offset` for details." msgstr "" -#: ../../c-api/typeobj.rst:1372 -msgid "" -"This bit is inherited if :c:member:`~PyTypeObject.tp_call` is also inherited." +msgid "This bit is inherited if :c:member:`~PyTypeObject.tp_call` is also inherited." msgstr "" -#: ../../c-api/typeobj.rst:1375 msgid "as ``_Py_TPFLAGS_HAVE_VECTORCALL``" msgstr "" -#: ../../c-api/typeobj.rst:1379 -msgid "" -"Renamed to the current name, without the leading underscore. The old " -"provisional name is :term:`soft deprecated`." +msgid "Renamed to the current name, without the leading underscore. The old provisional name is :term:`soft deprecated`." msgstr "" -#: ../../c-api/typeobj.rst:1384 -msgid "" -"This flag is now removed from a class when the " -"class's :py:meth:`~object.__call__` method is reassigned." +msgid "This flag is now removed from a class when the class's :py:meth:`~object.__call__` method is reassigned." msgstr "" -#: ../../c-api/typeobj.rst:1387 msgid "This flag can now be inherited by mutable classes." msgstr "" -#: ../../c-api/typeobj.rst:1391 -msgid "" -"This bit is set for type objects that are immutable: type attributes cannot " -"be set nor deleted." +msgid "This bit is set for type objects that are immutable: type attributes cannot be set nor deleted." msgstr "" -#: ../../c-api/typeobj.rst:1393 -msgid "" -":c:func:`PyType_Ready` automatically applies this flag to :ref:`static types " -"`." +msgid ":c:func:`PyType_Ready` automatically applies this flag to :ref:`static types `." msgstr "" -#: ../../c-api/typeobj.rst:1398 ../../c-api/typeobj.rst:1507 -#: ../../c-api/typeobj.rst:1519 msgid "This flag is not inherited." msgstr "" -#: ../../c-api/typeobj.rst:1404 -msgid "" -"Disallow creating instances of the type: " -"set :c:member:`~PyTypeObject.tp_new` to NULL and don't create the " -"``__new__`` key in the type dictionary." +msgid "Disallow creating instances of the type: set :c:member:`~PyTypeObject.tp_new` to NULL and don't create the ``__new__`` key in the type dictionary." msgstr "" -#: ../../c-api/typeobj.rst:1408 -msgid "" -"The flag must be set before creating the type, not after. For example, it " -"must be set before :c:func:`PyType_Ready` is called on the type." +msgid "The flag must be set before creating the type, not after. For example, it must be set before :c:func:`PyType_Ready` is called on the type." msgstr "" -#: ../../c-api/typeobj.rst:1411 -msgid "" -"The flag is set automatically on :ref:`static types ` " -"if :c:member:`~PyTypeObject.tp_base` is NULL or ``&PyBaseObject_Type`` " -"and :c:member:`~PyTypeObject.tp_new` is NULL." +msgid "The flag is set automatically on :ref:`static types ` if :c:member:`~PyTypeObject.tp_base` is NULL or ``&PyBaseObject_Type`` and :c:member:`~PyTypeObject.tp_new` is NULL." msgstr "" -#: ../../c-api/typeobj.rst:1417 -msgid "" -"This flag is not inherited. However, subclasses will not be instantiable " -"unless they provide a non-NULL :c:member:`~PyTypeObject.tp_new` (which is " -"only possible via the C API)." +msgid "This flag is not inherited. However, subclasses will not be instantiable unless they provide a non-NULL :c:member:`~PyTypeObject.tp_new` (which is only possible via the C API)." msgstr "" -#: ../../c-api/typeobj.rst:1424 -msgid "" -"To disallow instantiating a class directly but allow instantiating its " -"subclasses (e.g. for an :term:`abstract base class`), do not use this flag. " -"Instead, make :c:member:`~PyTypeObject.tp_new` only succeed for subclasses." +msgid "To disallow instantiating a class directly but allow instantiating its subclasses (e.g. for an :term:`abstract base class`), do not use this flag. Instead, make :c:member:`~PyTypeObject.tp_new` only succeed for subclasses." msgstr "" -#: ../../c-api/typeobj.rst:1435 -msgid "" -"This bit indicates that instances of the class may match mapping patterns " -"when used as the subject of a :keyword:`match` block. It is automatically " -"set when registering or subclassing :class:`collections.abc.Mapping`, and " -"unset when registering :class:`collections.abc.Sequence`." +msgid "This bit indicates that instances of the class may match mapping patterns when used as the subject of a :keyword:`match` block. It is automatically set when registering or subclassing :class:`collections.abc.Mapping`, and unset when registering :class:`collections.abc.Sequence`." msgstr "" -#: ../../c-api/typeobj.rst:1442 ../../c-api/typeobj.rst:1464 -msgid "" -":c:macro:`Py_TPFLAGS_MAPPING` and :c:macro:`Py_TPFLAGS_SEQUENCE` are " -"mutually exclusive; it is an error to enable both flags simultaneously." +msgid ":c:macro:`Py_TPFLAGS_MAPPING` and :c:macro:`Py_TPFLAGS_SEQUENCE` are mutually exclusive; it is an error to enable both flags simultaneously." msgstr "" -#: ../../c-api/typeobj.rst:1447 -msgid "" -"This flag is inherited by types that do not already " -"set :c:macro:`Py_TPFLAGS_SEQUENCE`." +msgid "This flag is inherited by types that do not already set :c:macro:`Py_TPFLAGS_SEQUENCE`." msgstr "" -#: ../../c-api/typeobj.rst:1450 ../../c-api/typeobj.rst:1472 msgid ":pep:`634` -- Structural Pattern Matching: Specification" msgstr "" -#: ../../c-api/typeobj.rst:1457 -msgid "" -"This bit indicates that instances of the class may match sequence patterns " -"when used as the subject of a :keyword:`match` block. It is automatically " -"set when registering or subclassing :class:`collections.abc.Sequence`, and " -"unset when registering :class:`collections.abc.Mapping`." +msgid "This bit indicates that instances of the class may match sequence patterns when used as the subject of a :keyword:`match` block. It is automatically set when registering or subclassing :class:`collections.abc.Sequence`, and unset when registering :class:`collections.abc.Mapping`." msgstr "" -#: ../../c-api/typeobj.rst:1469 -msgid "" -"This flag is inherited by types that do not already " -"set :c:macro:`Py_TPFLAGS_MAPPING`." +msgid "This flag is inherited by types that do not already set :c:macro:`Py_TPFLAGS_MAPPING`." msgstr "" -#: ../../c-api/typeobj.rst:1479 -msgid "" -"Internal. Do not set or unset this flag. To indicate that a class has " -"changed call :c:func:`PyType_Modified`" +msgid "Internal. Do not set or unset this flag. To indicate that a class has changed call :c:func:`PyType_Modified`" msgstr "" -#: ../../c-api/typeobj.rst:1483 -msgid "" -"This flag is present in header files, but is not be used. It will be removed " -"in a future version of CPython" +msgid "This flag is present in header files, but is not be used. It will be removed in a future version of CPython" msgstr "" -#: ../../c-api/typeobj.rst:1489 -msgid "" -"This macro does nothing. Historically, this would indicate that " -"the :c:member:`~PyTypeObject.tp_version_tag` field was available and " -"initialized." +msgid "This macro does nothing. Historically, this would indicate that the :c:member:`~PyTypeObject.tp_version_tag` field was available and initialized." msgstr "" -#: ../../c-api/typeobj.rst:1499 -msgid "" -"This bit indicates that instances of this type will have an \"inline " -"values\" array (containing the object's attributes) placed directly after " -"the end of the object." +msgid "This bit indicates that instances of this type will have an \"inline values\" array (containing the object's attributes) placed directly after the end of the object." msgstr "" -#: ../../c-api/typeobj.rst:1503 msgid "This requires that :c:macro:`Py_TPFLAGS_HAVE_GC` is set." msgstr "" -#: ../../c-api/typeobj.rst:1514 -msgid "" -"This bit indicates that this is an abstract type and therefore cannot be " -"instantiated." +msgid "This bit indicates that this is an abstract type and therefore cannot be instantiated." msgstr "" -#: ../../c-api/typeobj.rst:1522 msgid ":mod:`abc`" msgstr "" -#: ../../c-api/typeobj.rst:1527 -msgid "" -"Internal. Do not set or unset this flag. Historically, this was a reserved " -"flag for use in Stackless Python." +msgid "Internal. Do not set or unset this flag. Historically, this was a reserved flag for use in Stackless Python." msgstr "" -#: ../../c-api/typeobj.rst:1531 -msgid "" -"This flag is present in header files, but is not be used. This may be " -"removed in a future version of CPython." +msgid "This flag is present in header files, but is not be used. This may be removed in a future version of CPython." msgstr "" -#: ../../c-api/typeobj.rst:1539 -msgid "" -"An optional pointer to a NUL-terminated C string giving the docstring for " -"this type object. This is exposed as the :attr:`~type.__doc__` attribute on " -"the type and instances of the type." +msgid "An optional pointer to a NUL-terminated C string giving the docstring for this type object. This is exposed as the :attr:`~type.__doc__` attribute on the type and instances of the type." msgstr "" -#: ../../c-api/typeobj.rst:1545 msgid "This field is *not* inherited by subtypes." msgstr "" -#: ../../c-api/typeobj.rst:1552 -msgid "" -"An optional pointer to a traversal function for the garbage collector. This " -"is only used if the :c:macro:`Py_TPFLAGS_HAVE_GC` flag bit is set. The " -"signature is::" +msgid "An optional pointer to a traversal function for the garbage collector. This is only used if the :c:macro:`Py_TPFLAGS_HAVE_GC` flag bit is set. The signature is::" msgstr "" -#: ../../c-api/typeobj.rst:1555 msgid "int tp_traverse(PyObject *self, visitproc visit, void *arg);" msgstr "" -#: ../../c-api/typeobj.rst:1557 ../../c-api/typeobj.rst:1784 -msgid "" -"More information about Python's garbage collection scheme can be found in " -"section :ref:`supporting-cycle-detection`." +msgid "More information about Python's garbage collection scheme can be found in section :ref:`supporting-cycle-detection`." msgstr "" -#: ../../c-api/typeobj.rst:1560 -msgid "" -"The :c:member:`~PyTypeObject.tp_traverse` pointer is used by the garbage " -"collector to detect reference cycles. A typical implementation of " -"a :c:member:`~PyTypeObject.tp_traverse` function simply " -"calls :c:func:`Py_VISIT` on each of the instance's members that are Python " -"objects that the instance owns. For example, this is function :c:func:`!" -"local_traverse` from the :mod:`!_thread` extension module::" +msgid "The :c:member:`~PyTypeObject.tp_traverse` pointer is used by the garbage collector to detect reference cycles. A typical implementation of a :c:member:`~PyTypeObject.tp_traverse` function simply calls :c:func:`Py_VISIT` on each of the instance's members that are Python objects that the instance owns. For example, this is function :c:func:`!local_traverse` from the :mod:`!_thread` extension module::" msgstr "" -#: ../../c-api/typeobj.rst:1566 msgid "" "static int\n" "local_traverse(PyObject *op, visitproc visit, void *arg)\n" @@ -2621,278 +1547,120 @@ msgid "" "}" msgstr "" -#: ../../c-api/typeobj.rst:1576 -msgid "" -"Note that :c:func:`Py_VISIT` is called only on those members that can " -"participate in reference cycles. Although there is also a ``self->key`` " -"member, it can only be ``NULL`` or a Python string and therefore cannot be " -"part of a reference cycle." +msgid "Note that :c:func:`Py_VISIT` is called only on those members that can participate in reference cycles. Although there is also a ``self->key`` member, it can only be ``NULL`` or a Python string and therefore cannot be part of a reference cycle." msgstr "" -#: ../../c-api/typeobj.rst:1580 -msgid "" -"On the other hand, even if you know a member can never be part of a cycle, " -"as a debugging aid you may want to visit it anyway just so the :mod:`gc` " -"module's :func:`~gc.get_referents` function will include it." +msgid "On the other hand, even if you know a member can never be part of a cycle, as a debugging aid you may want to visit it anyway just so the :mod:`gc` module's :func:`~gc.get_referents` function will include it." msgstr "" -#: ../../c-api/typeobj.rst:1584 -msgid "" -"Heap types (:c:macro:`Py_TPFLAGS_HEAPTYPE`) must visit their type with::" +msgid "Heap types (:c:macro:`Py_TPFLAGS_HEAPTYPE`) must visit their type with::" msgstr "" -#: ../../c-api/typeobj.rst:1586 msgid "Py_VISIT(Py_TYPE(self));" msgstr "" -#: ../../c-api/typeobj.rst:1588 -msgid "" -"It is only needed since Python 3.9. To support Python 3.8 and older, this " -"line must be conditional::" +msgid "It is only needed since Python 3.9. To support Python 3.8 and older, this line must be conditional::" msgstr "" -#: ../../c-api/typeobj.rst:1591 msgid "" "#if PY_VERSION_HEX >= 0x03090000\n" " Py_VISIT(Py_TYPE(self));\n" "#endif" msgstr "" -#: ../../c-api/typeobj.rst:1595 -msgid "" -"If the :c:macro:`Py_TPFLAGS_MANAGED_DICT` bit is set in " -"the :c:member:`~PyTypeObject.tp_flags` field, the traverse function must " -"call :c:func:`PyObject_VisitManagedDict` like this::" +msgid "If the :c:macro:`Py_TPFLAGS_MANAGED_DICT` bit is set in the :c:member:`~PyTypeObject.tp_flags` field, the traverse function must call :c:func:`PyObject_VisitManagedDict` like this::" msgstr "" -#: ../../c-api/typeobj.rst:1599 msgid "PyObject_VisitManagedDict((PyObject*)self, visit, arg);" msgstr "" -#: ../../c-api/typeobj.rst:1602 -msgid "" -"When implementing :c:member:`~PyTypeObject.tp_traverse`, only the members " -"that the instance *owns* (by having :term:`strong references ` to them) must be visited. For instance, if an object supports " -"weak references via the :c:member:`~PyTypeObject.tp_weaklist` slot, the " -"pointer supporting the linked list (what *tp_weaklist* points to) must " -"**not** be visited as the instance does not directly own the weak references " -"to itself (the weakreference list is there to support the weak reference " -"machinery, but the instance has no strong reference to the elements inside " -"it, as they are allowed to be removed even if the instance is still alive)." -msgstr "" - -#: ../../c-api/typeobj.rst:1614 -msgid "" -"The traversal function must not have any side effects. It must not modify " -"the reference counts of any Python objects nor create or destroy any Python " -"objects." +msgid "When implementing :c:member:`~PyTypeObject.tp_traverse`, only the members that the instance *owns* (by having :term:`strong references ` to them) must be visited. For instance, if an object supports weak references via the :c:member:`~PyTypeObject.tp_weaklist` slot, the pointer supporting the linked list (what *tp_weaklist* points to) must **not** be visited as the instance does not directly own the weak references to itself (the weakreference list is there to support the weak reference machinery, but the instance has no strong reference to the elements inside it, as they are allowed to be removed even if the instance is still alive)." msgstr "" -#: ../../c-api/typeobj.rst:1618 -msgid "" -"Note that :c:func:`Py_VISIT` requires the *visit* and *arg* parameters " -"to :c:func:`!local_traverse` to have these specific names; don't name them " -"just anything." +msgid "The traversal function must not have any side effects. It must not modify the reference counts of any Python objects nor create or destroy any Python objects." msgstr "" -#: ../../c-api/typeobj.rst:1622 -msgid "" -"Instances of :ref:`heap-allocated types ` hold a reference to " -"their type. Their traversal function must therefore either " -"visit :c:func:`Py_TYPE(self) `, or delegate this responsibility by " -"calling ``tp_traverse`` of another heap-allocated type (such as a heap-" -"allocated superclass). If they do not, the type object may not be garbage-" -"collected." +msgid "Note that :c:func:`Py_VISIT` requires the *visit* and *arg* parameters to :c:func:`!local_traverse` to have these specific names; don't name them just anything." msgstr "" -#: ../../c-api/typeobj.rst:1631 -msgid "" -"The :c:member:`~PyTypeObject.tp_traverse` function can be called from any " -"thread." +msgid "Instances of :ref:`heap-allocated types ` hold a reference to their type. Their traversal function must therefore either visit :c:func:`Py_TYPE(self) `, or delegate this responsibility by calling ``tp_traverse`` of another heap-allocated type (such as a heap-allocated superclass). If they do not, the type object may not be garbage-collected." msgstr "" -#: ../../c-api/typeobj.rst:1636 -msgid "" -"Heap-allocated types are expected to visit ``Py_TYPE(self)`` in " -"``tp_traverse``. In earlier versions of Python, due to `bug 40217 `_, doing this may lead to crashes in subclasses." +msgid "The :c:member:`~PyTypeObject.tp_traverse` function can be called from any thread." msgstr "" -#: ../../c-api/typeobj.rst:1645 -msgid "" -"This field is inherited by subtypes together " -"with :c:member:`~PyTypeObject.tp_clear` and " -"the :c:macro:`Py_TPFLAGS_HAVE_GC` flag bit: the flag " -"bit, :c:member:`~PyTypeObject.tp_traverse`, " -"and :c:member:`~PyTypeObject.tp_clear` are all inherited from the base type " -"if they are all zero in the subtype." +msgid "Heap-allocated types are expected to visit ``Py_TYPE(self)`` in ``tp_traverse``. In earlier versions of Python, due to `bug 40217 `_, doing this may lead to crashes in subclasses." +msgstr "" + +msgid "This field is inherited by subtypes together with :c:member:`~PyTypeObject.tp_clear` and the :c:macro:`Py_TPFLAGS_HAVE_GC` flag bit: the flag bit, :c:member:`~PyTypeObject.tp_traverse`, and :c:member:`~PyTypeObject.tp_clear` are all inherited from the base type if they are all zero in the subtype." msgstr "" -#: ../../c-api/typeobj.rst:1655 msgid "An optional pointer to a clear function. The signature is::" msgstr "" -#: ../../c-api/typeobj.rst:1657 msgid "int tp_clear(PyObject *);" msgstr "" -#: ../../c-api/typeobj.rst:1659 -msgid "" -"The purpose of this function is to break reference cycles that are causing " -"a :term:`cyclic isolate` so that the objects can be safely destroyed. A " -"cleared object is a partially destroyed object; the object is not obligated " -"to satisfy design invariants held during normal use." +msgid "The purpose of this function is to break reference cycles that are causing a :term:`cyclic isolate` so that the objects can be safely destroyed. A cleared object is a partially destroyed object; the object is not obligated to satisfy design invariants held during normal use." msgstr "" -#: ../../c-api/typeobj.rst:1664 -msgid "" -":c:member:`!tp_clear` does not need to delete references to objects that " -"can't participate in reference cycles, such as Python strings or Python " -"integers. However, it may be convenient to clear all references, and write " -"the type's :c:member:`~PyTypeObject.tp_dealloc` function to " -"invoke :c:member:`!tp_clear` to avoid code duplication. (Beware " -"that :c:member:`!tp_clear` might have already been called. Prefer calling " -"idempotent functions like :c:func:`Py_CLEAR`.)" +msgid ":c:member:`!tp_clear` does not need to delete references to objects that can't participate in reference cycles, such as Python strings or Python integers. However, it may be convenient to clear all references, and write the type's :c:member:`~PyTypeObject.tp_dealloc` function to invoke :c:member:`!tp_clear` to avoid code duplication. (Beware that :c:member:`!tp_clear` might have already been called. Prefer calling idempotent functions like :c:func:`Py_CLEAR`.)" msgstr "" -#: ../../c-api/typeobj.rst:1672 -msgid "" -"Any non-trivial cleanup should be performed " -"in :c:member:`~PyTypeObject.tp_finalize` instead of :c:member:`!tp_clear`." +msgid "Any non-trivial cleanup should be performed in :c:member:`~PyTypeObject.tp_finalize` instead of :c:member:`!tp_clear`." msgstr "" -#: ../../c-api/typeobj.rst:1677 -msgid "" -"If :c:member:`!tp_clear` fails to break a reference cycle then the objects " -"in the :term:`cyclic isolate` may remain indefinitely uncollectable " -"(\"leak\"). See :data:`gc.garbage`." +msgid "If :c:member:`!tp_clear` fails to break a reference cycle then the objects in the :term:`cyclic isolate` may remain indefinitely uncollectable (\"leak\"). See :data:`gc.garbage`." msgstr "" -#: ../../c-api/typeobj.rst:1683 -msgid "" -"Referents (direct and indirect) might have already been cleared; they are " -"not guaranteed to be in a consistent state." +msgid "Referents (direct and indirect) might have already been cleared; they are not guaranteed to be in a consistent state." msgstr "" -#: ../../c-api/typeobj.rst:1688 -msgid "" -"The :c:member:`~PyTypeObject.tp_clear` function can be called from any " -"thread." +msgid "The :c:member:`~PyTypeObject.tp_clear` function can be called from any thread." msgstr "" -#: ../../c-api/typeobj.rst:1693 -msgid "" -"An object is not guaranteed to be automatically cleared before its " -"destructor (:c:member:`~PyTypeObject.tp_dealloc`) is called." +msgid "An object is not guaranteed to be automatically cleared before its destructor (:c:member:`~PyTypeObject.tp_dealloc`) is called." msgstr "" -#: ../../c-api/typeobj.rst:1696 -msgid "" -"This function differs from the destructor " -"(:c:member:`~PyTypeObject.tp_dealloc`) in the following ways:" +msgid "This function differs from the destructor (:c:member:`~PyTypeObject.tp_dealloc`) in the following ways:" msgstr "" -#: ../../c-api/typeobj.rst:1699 -msgid "" -"The purpose of clearing an object is to remove references to other objects " -"that might participate in a reference cycle. The purpose of the destructor, " -"on the other hand, is a superset: it must release *all* resources it owns, " -"including references to objects that cannot participate in a reference cycle " -"(e.g., integers) as well as the object's own memory (by " -"calling :c:member:`~PyTypeObject.tp_free`)." +msgid "The purpose of clearing an object is to remove references to other objects that might participate in a reference cycle. The purpose of the destructor, on the other hand, is a superset: it must release *all* resources it owns, including references to objects that cannot participate in a reference cycle (e.g., integers) as well as the object's own memory (by calling :c:member:`~PyTypeObject.tp_free`)." msgstr "" -#: ../../c-api/typeobj.rst:1705 -msgid "" -"When :c:member:`!tp_clear` is called, other objects might still hold " -"references to the object being cleared. Because of this, :c:member:`!" -"tp_clear` must not deallocate the object's own memory " -"(:c:member:`~PyTypeObject.tp_free`). The destructor, on the other hand, is " -"only called when no (strong) references exist, and as such, must safely " -"destroy the object itself by deallocating it." +msgid "When :c:member:`!tp_clear` is called, other objects might still hold references to the object being cleared. Because of this, :c:member:`!tp_clear` must not deallocate the object's own memory (:c:member:`~PyTypeObject.tp_free`). The destructor, on the other hand, is only called when no (strong) references exist, and as such, must safely destroy the object itself by deallocating it." msgstr "" -#: ../../c-api/typeobj.rst:1711 -msgid "" -":c:member:`!tp_clear` might never be automatically called. An object's " -"destructor, on the other hand, will be automatically called some time after " -"the object becomes unreachable (i.e., either there are no references to the " -"object or the object is a member of a :term:`cyclic isolate`)." +msgid ":c:member:`!tp_clear` might never be automatically called. An object's destructor, on the other hand, will be automatically called some time after the object becomes unreachable (i.e., either there are no references to the object or the object is a member of a :term:`cyclic isolate`)." msgstr "" -#: ../../c-api/typeobj.rst:1716 -msgid "" -"No guarantees are made about when, if, or how often Python automatically " -"clears an object, except:" +msgid "No guarantees are made about when, if, or how often Python automatically clears an object, except:" msgstr "" -#: ../../c-api/typeobj.rst:1719 -msgid "" -"Python will not automatically clear an object if it is reachable, i.e., " -"there is a reference to it and it is not a member of a :term:`cyclic " -"isolate`." +msgid "Python will not automatically clear an object if it is reachable, i.e., there is a reference to it and it is not a member of a :term:`cyclic isolate`." msgstr "" -#: ../../c-api/typeobj.rst:1722 -msgid "" -"Python will not automatically clear an object if it has not been " -"automatically finalized (see :c:member:`~PyTypeObject.tp_finalize`). (If " -"the finalizer resurrected the object, the object may or may not be " -"automatically finalized again before it is cleared.)" +msgid "Python will not automatically clear an object if it has not been automatically finalized (see :c:member:`~PyTypeObject.tp_finalize`). (If the finalizer resurrected the object, the object may or may not be automatically finalized again before it is cleared.)" msgstr "" -#: ../../c-api/typeobj.rst:1726 -msgid "" -"If an object is a member of a :term:`cyclic isolate`, Python will not " -"automatically clear it if any member of the cyclic isolate has not yet been " -"automatically finalized (:c:member:`~PyTypeObject.tp_finalize`)." +msgid "If an object is a member of a :term:`cyclic isolate`, Python will not automatically clear it if any member of the cyclic isolate has not yet been automatically finalized (:c:member:`~PyTypeObject.tp_finalize`)." msgstr "" -#: ../../c-api/typeobj.rst:1729 -msgid "" -"Python will not destroy an object until after any automatic calls to " -"its :c:member:`!tp_clear` function have returned. This ensures that the act " -"of breaking a reference cycle does not invalidate the ``self`` pointer " -"while :c:member:`!tp_clear` is still executing." +msgid "Python will not destroy an object until after any automatic calls to its :c:member:`!tp_clear` function have returned. This ensures that the act of breaking a reference cycle does not invalidate the ``self`` pointer while :c:member:`!tp_clear` is still executing." msgstr "" -#: ../../c-api/typeobj.rst:1733 -msgid "" -"Python will not automatically call :c:member:`!tp_clear` multiple times " -"concurrently." +msgid "Python will not automatically call :c:member:`!tp_clear` multiple times concurrently." msgstr "" -#: ../../c-api/typeobj.rst:1736 -msgid "" -"CPython currently only automatically clears objects as needed to break " -"reference cycles in a :term:`cyclic isolate`, but future versions might " -"clear objects regularly before their destruction." +msgid "CPython currently only automatically clears objects as needed to break reference cycles in a :term:`cyclic isolate`, but future versions might clear objects regularly before their destruction." msgstr "" -#: ../../c-api/typeobj.rst:1740 -msgid "" -"Taken together, all :c:member:`~PyTypeObject.tp_clear` functions in the " -"system must combine to break all reference cycles. This is subtle, and if " -"in any doubt supply a :c:member:`~PyTypeObject.tp_clear` function. For " -"example, the tuple type does not implement " -"a :c:member:`~PyTypeObject.tp_clear` function, because it's possible to " -"prove that no reference cycle can be composed entirely of tuples. Therefore " -"the :c:member:`~PyTypeObject.tp_clear` functions of other types are " -"responsible for breaking any cycle containing a tuple. This isn't " -"immediately obvious, and there's rarely a good reason to avoid " -"implementing :c:member:`~PyTypeObject.tp_clear`." -msgstr "" - -#: ../../c-api/typeobj.rst:1751 -msgid "" -"Implementations of :c:member:`~PyTypeObject.tp_clear` should drop the " -"instance's references to those of its members that may be Python objects, " -"and set its pointers to those members to ``NULL``, as in the following " -"example::" +msgid "Taken together, all :c:member:`~PyTypeObject.tp_clear` functions in the system must combine to break all reference cycles. This is subtle, and if in any doubt supply a :c:member:`~PyTypeObject.tp_clear` function. For example, the tuple type does not implement a :c:member:`~PyTypeObject.tp_clear` function, because it's possible to prove that no reference cycle can be composed entirely of tuples. Therefore the :c:member:`~PyTypeObject.tp_clear` functions of other types are responsible for breaking any cycle containing a tuple. This isn't immediately obvious, and there's rarely a good reason to avoid implementing :c:member:`~PyTypeObject.tp_clear`." +msgstr "" + +msgid "Implementations of :c:member:`~PyTypeObject.tp_clear` should drop the instance's references to those of its members that may be Python objects, and set its pointers to those members to ``NULL``, as in the following example::" msgstr "" -#: ../../c-api/typeobj.rst:1755 msgid "" "static int\n" "local_clear(PyObject *op)\n" @@ -2906,932 +1674,438 @@ msgid "" "}" msgstr "" -#: ../../c-api/typeobj.rst:1766 -msgid "" -"The :c:func:`Py_CLEAR` macro should be used, because clearing references is " -"delicate: the reference to the contained object must not be released " -"(via :c:func:`Py_DECREF`) until after the pointer to the contained object is " -"set to ``NULL``. This is because releasing the reference may cause the " -"contained object to become trash, triggering a chain of reclamation activity " -"that may include invoking arbitrary Python code (due to finalizers, or " -"weakref callbacks, associated with the contained object). If it's possible " -"for such code to reference *self* again, it's important that the pointer to " -"the contained object be ``NULL`` at that time, so that *self* knows the " -"contained object can no longer be used. The :c:func:`Py_CLEAR` macro " -"performs the operations in a safe order." -msgstr "" - -#: ../../c-api/typeobj.rst:1778 -msgid "" -"If the :c:macro:`Py_TPFLAGS_MANAGED_DICT` bit is set in " -"the :c:member:`~PyTypeObject.tp_flags` field, the clear function must " -"call :c:func:`PyObject_ClearManagedDict` like this::" +msgid "The :c:func:`Py_CLEAR` macro should be used, because clearing references is delicate: the reference to the contained object must not be released (via :c:func:`Py_DECREF`) until after the pointer to the contained object is set to ``NULL``. This is because releasing the reference may cause the contained object to become trash, triggering a chain of reclamation activity that may include invoking arbitrary Python code (due to finalizers, or weakref callbacks, associated with the contained object). If it's possible for such code to reference *self* again, it's important that the pointer to the contained object be ``NULL`` at that time, so that *self* knows the contained object can no longer be used. The :c:func:`Py_CLEAR` macro performs the operations in a safe order." +msgstr "" + +msgid "If the :c:macro:`Py_TPFLAGS_MANAGED_DICT` bit is set in the :c:member:`~PyTypeObject.tp_flags` field, the clear function must call :c:func:`PyObject_ClearManagedDict` like this::" msgstr "" -#: ../../c-api/typeobj.rst:1782 msgid "PyObject_ClearManagedDict((PyObject*)self);" msgstr "" -#: ../../c-api/typeobj.rst:1791 -msgid "" -"This field is inherited by subtypes together " -"with :c:member:`~PyTypeObject.tp_traverse` and " -"the :c:macro:`Py_TPFLAGS_HAVE_GC` flag bit: the flag " -"bit, :c:member:`~PyTypeObject.tp_traverse`, " -"and :c:member:`~PyTypeObject.tp_clear` are all inherited from the base type " -"if they are all zero in the subtype." +msgid "This field is inherited by subtypes together with :c:member:`~PyTypeObject.tp_traverse` and the :c:macro:`Py_TPFLAGS_HAVE_GC` flag bit: the flag bit, :c:member:`~PyTypeObject.tp_traverse`, and :c:member:`~PyTypeObject.tp_clear` are all inherited from the base type if they are all zero in the subtype." msgstr "" -#: ../../c-api/typeobj.rst:1805 -msgid "" -"An optional pointer to the rich comparison function, whose signature is::" +msgid "An optional pointer to the rich comparison function, whose signature is::" msgstr "" -#: ../../c-api/typeobj.rst:1807 msgid "PyObject *tp_richcompare(PyObject *self, PyObject *other, int op);" msgstr "" -#: ../../c-api/typeobj.rst:1809 -msgid "" -"The first parameter is guaranteed to be an instance of the type that is " -"defined by :c:type:`PyTypeObject`." +msgid "The first parameter is guaranteed to be an instance of the type that is defined by :c:type:`PyTypeObject`." msgstr "" -#: ../../c-api/typeobj.rst:1812 -msgid "" -"The function should return the result of the comparison (usually ``Py_True`` " -"or ``Py_False``). If the comparison is undefined, it must return " -"``Py_NotImplemented``, if another error occurred it must return ``NULL`` and " -"set an exception condition." +msgid "The function should return the result of the comparison (usually ``Py_True`` or ``Py_False``). If the comparison is undefined, it must return ``Py_NotImplemented``, if another error occurred it must return ``NULL`` and set an exception condition." msgstr "" -#: ../../c-api/typeobj.rst:1817 -msgid "" -"The following constants are defined to be used as the third argument " -"for :c:member:`~PyTypeObject.tp_richcompare` and " -"for :c:func:`PyObject_RichCompare`:" +msgid "The following constants are defined to be used as the third argument for :c:member:`~PyTypeObject.tp_richcompare` and for :c:func:`PyObject_RichCompare`:" msgstr "" -#: ../../c-api/typeobj.rst:1823 msgid "Constant" msgstr "" -#: ../../c-api/typeobj.rst:1823 msgid "Comparison" msgstr "" -#: ../../c-api/typeobj.rst:1825 msgid "``<``" msgstr "" -#: ../../c-api/typeobj.rst:1827 msgid "``<=``" msgstr "" -#: ../../c-api/typeobj.rst:1829 msgid "``==``" msgstr "" -#: ../../c-api/typeobj.rst:1831 msgid "``!=``" msgstr "" -#: ../../c-api/typeobj.rst:1833 msgid "``>``" msgstr "" -#: ../../c-api/typeobj.rst:1835 msgid "``>=``" msgstr "" -#: ../../c-api/typeobj.rst:1838 -msgid "" -"The following macro is defined to ease writing rich comparison functions:" +msgid "The following macro is defined to ease writing rich comparison functions:" msgstr "" -#: ../../c-api/typeobj.rst:1842 -msgid "" -"Return ``Py_True`` or ``Py_False`` from the function, depending on the " -"result of a comparison. VAL_A and VAL_B must be orderable by C comparison " -"operators (for example, they may be C ints or floats). The third argument " -"specifies the requested operation, as for :c:func:`PyObject_RichCompare`." +msgid "Return ``Py_True`` or ``Py_False`` from the function, depending on the result of a comparison. VAL_A and VAL_B must be orderable by C comparison operators (for example, they may be C ints or floats). The third argument specifies the requested operation, as for :c:func:`PyObject_RichCompare`." msgstr "" -#: ../../c-api/typeobj.rst:1848 msgid "The returned value is a new :term:`strong reference`." msgstr "" -#: ../../c-api/typeobj.rst:1850 msgid "On error, sets an exception and returns ``NULL`` from the function." msgstr "" -#: ../../c-api/typeobj.rst:1858 -msgid "" -"This field is inherited by subtypes together " -"with :c:member:`~PyTypeObject.tp_hash`: a subtype " -"inherits :c:member:`~PyTypeObject.tp_richcompare` " -"and :c:member:`~PyTypeObject.tp_hash` when the " -"subtype's :c:member:`~PyTypeObject.tp_richcompare` " -"and :c:member:`~PyTypeObject.tp_hash` are both ``NULL``." +msgid "This field is inherited by subtypes together with :c:member:`~PyTypeObject.tp_hash`: a subtype inherits :c:member:`~PyTypeObject.tp_richcompare` and :c:member:`~PyTypeObject.tp_hash` when the subtype's :c:member:`~PyTypeObject.tp_richcompare` and :c:member:`~PyTypeObject.tp_hash` are both ``NULL``." msgstr "" -#: ../../c-api/typeobj.rst:1865 -msgid "" -":c:data:`PyBaseObject_Type` provides " -"a :c:member:`~PyTypeObject.tp_richcompare` implementation, which may be " -"inherited. However, if only :c:member:`~PyTypeObject.tp_hash` is defined, " -"not even the inherited function is used and instances of the type will not " -"be able to participate in any comparisons." +msgid ":c:data:`PyBaseObject_Type` provides a :c:member:`~PyTypeObject.tp_richcompare` implementation, which may be inherited. However, if only :c:member:`~PyTypeObject.tp_hash` is defined, not even the inherited function is used and instances of the type will not be able to participate in any comparisons." msgstr "" -#: ../../c-api/typeobj.rst:1874 -msgid "" -"While this field is still supported, :c:macro:`Py_TPFLAGS_MANAGED_WEAKREF` " -"should be used instead, if at all possible." +msgid "While this field is still supported, :c:macro:`Py_TPFLAGS_MANAGED_WEAKREF` should be used instead, if at all possible." msgstr "" -#: ../../c-api/typeobj.rst:1877 -msgid "" -"If the instances of this type are weakly referenceable, this field is " -"greater than zero and contains the offset in the instance structure of the " -"weak reference list head (ignoring the GC header, if present); this offset " -"is used by :c:func:`PyObject_ClearWeakRefs` and the ``PyWeakref_*`` " -"functions. The instance structure needs to include a field of " -"type :c:expr:`PyObject*` which is initialized to ``NULL``." +msgid "If the instances of this type are weakly referenceable, this field is greater than zero and contains the offset in the instance structure of the weak reference list head (ignoring the GC header, if present); this offset is used by :c:func:`PyObject_ClearWeakRefs` and the ``PyWeakref_*`` functions. The instance structure needs to include a field of type :c:expr:`PyObject*` which is initialized to ``NULL``." msgstr "" -#: ../../c-api/typeobj.rst:1884 -msgid "" -"Do not confuse this field with :c:member:`~PyTypeObject.tp_weaklist`; that " -"is the list head for weak references to the type object itself." +msgid "Do not confuse this field with :c:member:`~PyTypeObject.tp_weaklist`; that is the list head for weak references to the type object itself." msgstr "" -#: ../../c-api/typeobj.rst:1887 -msgid "" -"It is an error to set both the :c:macro:`Py_TPFLAGS_MANAGED_WEAKREF` bit " -"and :c:member:`~PyTypeObject.tp_weaklistoffset`." +msgid "It is an error to set both the :c:macro:`Py_TPFLAGS_MANAGED_WEAKREF` bit and :c:member:`~PyTypeObject.tp_weaklistoffset`." msgstr "" -#: ../../c-api/typeobj.rst:1892 -msgid "" -"This field is inherited by subtypes, but see the rules listed below. A " -"subtype may override this offset; this means that the subtype uses a " -"different weak reference list head than the base type. Since the list head " -"is always found via :c:member:`~PyTypeObject.tp_weaklistoffset`, this should " -"not be a problem." +msgid "This field is inherited by subtypes, but see the rules listed below. A subtype may override this offset; this means that the subtype uses a different weak reference list head than the base type. Since the list head is always found via :c:member:`~PyTypeObject.tp_weaklistoffset`, this should not be a problem." msgstr "" -#: ../../c-api/typeobj.rst:1899 -msgid "" -"If the :c:macro:`Py_TPFLAGS_MANAGED_WEAKREF` bit is set in " -"the :c:member:`~PyTypeObject.tp_flags` field, " -"then :c:member:`~PyTypeObject.tp_weaklistoffset` will be set to a negative " -"value, to indicate that it is unsafe to use this field." +msgid "If the :c:macro:`Py_TPFLAGS_MANAGED_WEAKREF` bit is set in the :c:member:`~PyTypeObject.tp_flags` field, then :c:member:`~PyTypeObject.tp_weaklistoffset` will be set to a negative value, to indicate that it is unsafe to use this field." msgstr "" -#: ../../c-api/typeobj.rst:1909 -msgid "" -"An optional pointer to a function that returns an :term:`iterator` for the " -"object. Its presence normally signals that the instances of this type " -"are :term:`iterable` (although sequences may be iterable without this " -"function)." +msgid "An optional pointer to a function that returns an :term:`iterator` for the object. Its presence normally signals that the instances of this type are :term:`iterable` (although sequences may be iterable without this function)." msgstr "" -#: ../../c-api/typeobj.rst:1913 msgid "This function has the same signature as :c:func:`PyObject_GetIter`::" msgstr "" -#: ../../c-api/typeobj.rst:1915 msgid "PyObject *tp_iter(PyObject *self);" msgstr "" -#: ../../c-api/typeobj.rst:1926 -msgid "" -"An optional pointer to a function that returns the next item in " -"an :term:`iterator`. The signature is::" +msgid "An optional pointer to a function that returns the next item in an :term:`iterator`. The signature is::" msgstr "" -#: ../../c-api/typeobj.rst:1929 msgid "PyObject *tp_iternext(PyObject *self);" msgstr "" -#: ../../c-api/typeobj.rst:1931 -msgid "" -"When the iterator is exhausted, it must return ``NULL``; " -"a :exc:`StopIteration` exception may or may not be set. When another error " -"occurs, it must return ``NULL`` too. Its presence signals that the " -"instances of this type are iterators." +msgid "When the iterator is exhausted, it must return ``NULL``; a :exc:`StopIteration` exception may or may not be set. When another error occurs, it must return ``NULL`` too. Its presence signals that the instances of this type are iterators." msgstr "" -#: ../../c-api/typeobj.rst:1936 -msgid "" -"Iterator types should also define the :c:member:`~PyTypeObject.tp_iter` " -"function, and that function should return the iterator instance itself (not " -"a new iterator instance)." +msgid "Iterator types should also define the :c:member:`~PyTypeObject.tp_iter` function, and that function should return the iterator instance itself (not a new iterator instance)." msgstr "" -#: ../../c-api/typeobj.rst:1940 msgid "This function has the same signature as :c:func:`PyIter_Next`." msgstr "" -#: ../../c-api/typeobj.rst:1951 -msgid "" -"An optional pointer to a static ``NULL``-terminated array " -"of :c:type:`PyMethodDef` structures, declaring regular methods of this type." +msgid "An optional pointer to a static ``NULL``-terminated array of :c:type:`PyMethodDef` structures, declaring regular methods of this type." msgstr "" -#: ../../c-api/typeobj.rst:1954 -msgid "" -"For each entry in the array, an entry is added to the type's dictionary " -"(see :c:member:`~PyTypeObject.tp_dict` below) containing a method descriptor." +msgid "For each entry in the array, an entry is added to the type's dictionary (see :c:member:`~PyTypeObject.tp_dict` below) containing a method descriptor." msgstr "" -#: ../../c-api/typeobj.rst:1959 -msgid "" -"This field is not inherited by subtypes (methods are inherited through a " -"different mechanism)." +msgid "This field is not inherited by subtypes (methods are inherited through a different mechanism)." msgstr "" -#: ../../c-api/typeobj.rst:1967 -msgid "" -"An optional pointer to a static ``NULL``-terminated array " -"of :c:type:`PyMemberDef` structures, declaring regular data members (fields " -"or slots) of instances of this type." +msgid "An optional pointer to a static ``NULL``-terminated array of :c:type:`PyMemberDef` structures, declaring regular data members (fields or slots) of instances of this type." msgstr "" -#: ../../c-api/typeobj.rst:1971 -msgid "" -"For each entry in the array, an entry is added to the type's dictionary " -"(see :c:member:`~PyTypeObject.tp_dict` below) containing a member descriptor." +msgid "For each entry in the array, an entry is added to the type's dictionary (see :c:member:`~PyTypeObject.tp_dict` below) containing a member descriptor." msgstr "" -#: ../../c-api/typeobj.rst:1976 -msgid "" -"This field is not inherited by subtypes (members are inherited through a " -"different mechanism)." +msgid "This field is not inherited by subtypes (members are inherited through a different mechanism)." msgstr "" -#: ../../c-api/typeobj.rst:1984 -msgid "" -"An optional pointer to a static ``NULL``-terminated array " -"of :c:type:`PyGetSetDef` structures, declaring computed attributes of " -"instances of this type." +msgid "An optional pointer to a static ``NULL``-terminated array of :c:type:`PyGetSetDef` structures, declaring computed attributes of instances of this type." msgstr "" -#: ../../c-api/typeobj.rst:1987 -msgid "" -"For each entry in the array, an entry is added to the type's dictionary " -"(see :c:member:`~PyTypeObject.tp_dict` below) containing a getset descriptor." +msgid "For each entry in the array, an entry is added to the type's dictionary (see :c:member:`~PyTypeObject.tp_dict` below) containing a getset descriptor." msgstr "" -#: ../../c-api/typeobj.rst:1992 -msgid "" -"This field is not inherited by subtypes (computed attributes are inherited " -"through a different mechanism)." +msgid "This field is not inherited by subtypes (computed attributes are inherited through a different mechanism)." msgstr "" -#: ../../c-api/typeobj.rst:2000 -msgid "" -"An optional pointer to a base type from which type properties are " -"inherited. At this level, only single inheritance is supported; multiple " -"inheritance require dynamically creating a type object by calling the " -"metatype." +msgid "An optional pointer to a base type from which type properties are inherited. At this level, only single inheritance is supported; multiple inheritance require dynamically creating a type object by calling the metatype." msgstr "" -#: ../../c-api/typeobj.rst:2008 -msgid "" -"Slot initialization is subject to the rules of initializing globals. C99 " -"requires the initializers to be \"address constants\". Function designators " -"like :c:func:`PyType_GenericNew`, with implicit conversion to a pointer, are " -"valid C99 address constants." +msgid "Slot initialization is subject to the rules of initializing globals. C99 requires the initializers to be \"address constants\". Function designators like :c:func:`PyType_GenericNew`, with implicit conversion to a pointer, are valid C99 address constants." msgstr "" -#: ../../c-api/typeobj.rst:2013 -msgid "" -"However, the unary '&' operator applied to a non-static variable " -"like :c:data:`PyBaseObject_Type` is not required to produce an address " -"constant. Compilers may support this (gcc does), MSVC does not. Both " -"compilers are strictly standard conforming in this particular behavior." +msgid "However, the unary '&' operator applied to a non-static variable like :c:data:`PyBaseObject_Type` is not required to produce an address constant. Compilers may support this (gcc does), MSVC does not. Both compilers are strictly standard conforming in this particular behavior." msgstr "" -#: ../../c-api/typeobj.rst:2019 -msgid "" -"Consequently, :c:member:`~PyTypeObject.tp_base` should be set in the " -"extension module's init function." +msgid "Consequently, :c:member:`~PyTypeObject.tp_base` should be set in the extension module's init function." msgstr "" -#: ../../c-api/typeobj.rst:2024 msgid "This field is not inherited by subtypes (obviously)." msgstr "" -#: ../../c-api/typeobj.rst:2028 -msgid "" -"This field defaults to ``&PyBaseObject_Type`` (which to Python programmers " -"is known as the type :class:`object`)." +msgid "This field defaults to ``&PyBaseObject_Type`` (which to Python programmers is known as the type :class:`object`)." msgstr "" -#: ../../c-api/typeobj.rst:2034 msgid "The type's dictionary is stored here by :c:func:`PyType_Ready`." msgstr "" -#: ../../c-api/typeobj.rst:2036 -msgid "" -"This field should normally be initialized to ``NULL`` before PyType_Ready is " -"called; it may also be initialized to a dictionary containing initial " -"attributes for the type. Once :c:func:`PyType_Ready` has initialized the " -"type, extra attributes for the type may be added to this dictionary only if " -"they don't correspond to overloaded operations " -"(like :meth:`~object.__add__`). Once initialization for the type has " -"finished, this field should be treated as read-only." +msgid "This field should normally be initialized to ``NULL`` before PyType_Ready is called; it may also be initialized to a dictionary containing initial attributes for the type. Once :c:func:`PyType_Ready` has initialized the type, extra attributes for the type may be added to this dictionary only if they don't correspond to overloaded operations (like :meth:`~object.__add__`). Once initialization for the type has finished, this field should be treated as read-only." msgstr "" -#: ../../c-api/typeobj.rst:2044 -msgid "" -"Some types may not store their dictionary in this slot. " -"Use :c:func:`PyType_GetDict` to retrieve the dictionary for an arbitrary " -"type." +msgid "Some types may not store their dictionary in this slot. Use :c:func:`PyType_GetDict` to retrieve the dictionary for an arbitrary type." msgstr "" -#: ../../c-api/typeobj.rst:2050 -msgid "" -"Internals detail: For static builtin types, this is always ``NULL``. " -"Instead, the dict for such types is stored on ``PyInterpreterState``. " -"Use :c:func:`PyType_GetDict` to get the dict for an arbitrary type." +msgid "Internals detail: For static builtin types, this is always ``NULL``. Instead, the dict for such types is stored on ``PyInterpreterState``. Use :c:func:`PyType_GetDict` to get the dict for an arbitrary type." msgstr "" -#: ../../c-api/typeobj.rst:2056 -msgid "" -"This field is not inherited by subtypes (though the attributes defined in " -"here are inherited through a different mechanism)." +msgid "This field is not inherited by subtypes (though the attributes defined in here are inherited through a different mechanism)." msgstr "" -#: ../../c-api/typeobj.rst:2061 -msgid "" -"If this field is ``NULL``, :c:func:`PyType_Ready` will assign a new " -"dictionary to it." +msgid "If this field is ``NULL``, :c:func:`PyType_Ready` will assign a new dictionary to it." msgstr "" -#: ../../c-api/typeobj.rst:2066 -msgid "" -"It is not safe to use :c:func:`PyDict_SetItem` on or otherwise " -"modify :c:member:`~PyTypeObject.tp_dict` with the dictionary C-API." +msgid "It is not safe to use :c:func:`PyDict_SetItem` on or otherwise modify :c:member:`~PyTypeObject.tp_dict` with the dictionary C-API." msgstr "" -#: ../../c-api/typeobj.rst:2074 msgid "An optional pointer to a \"descriptor get\" function." msgstr "" -#: ../../c-api/typeobj.rst:2076 ../../c-api/typeobj.rst:2094 -#: ../../c-api/typeobj.rst:2160 ../../c-api/typeobj.rst:2192 -#: ../../c-api/typeobj.rst:2217 msgid "The function signature is::" msgstr "" -#: ../../c-api/typeobj.rst:2078 msgid "PyObject * tp_descr_get(PyObject *self, PyObject *obj, PyObject *type);" msgstr "" -#: ../../c-api/typeobj.rst:2091 -msgid "" -"An optional pointer to a function for setting and deleting a descriptor's " -"value." +msgid "An optional pointer to a function for setting and deleting a descriptor's value." msgstr "" -#: ../../c-api/typeobj.rst:2096 msgid "int tp_descr_set(PyObject *self, PyObject *obj, PyObject *value);" msgstr "" -#: ../../c-api/typeobj.rst:2098 msgid "The *value* argument is set to ``NULL`` to delete the value." msgstr "" -#: ../../c-api/typeobj.rst:2109 -msgid "" -"While this field is still supported, :c:macro:`Py_TPFLAGS_MANAGED_DICT` " -"should be used instead, if at all possible." +msgid "While this field is still supported, :c:macro:`Py_TPFLAGS_MANAGED_DICT` should be used instead, if at all possible." msgstr "" -#: ../../c-api/typeobj.rst:2112 -msgid "" -"If the instances of this type have a dictionary containing instance " -"variables, this field is non-zero and contains the offset in the instances " -"of the type of the instance variable dictionary; this offset is used " -"by :c:func:`PyObject_GenericGetAttr`." +msgid "If the instances of this type have a dictionary containing instance variables, this field is non-zero and contains the offset in the instances of the type of the instance variable dictionary; this offset is used by :c:func:`PyObject_GenericGetAttr`." msgstr "" -#: ../../c-api/typeobj.rst:2117 -msgid "" -"Do not confuse this field with :c:member:`~PyTypeObject.tp_dict`; that is " -"the dictionary for attributes of the type object itself." +msgid "Do not confuse this field with :c:member:`~PyTypeObject.tp_dict`; that is the dictionary for attributes of the type object itself." msgstr "" -#: ../../c-api/typeobj.rst:2120 -msgid "" -"The value specifies the offset of the dictionary from the start of the " -"instance structure." +msgid "The value specifies the offset of the dictionary from the start of the instance structure." msgstr "" -#: ../../c-api/typeobj.rst:2122 -msgid "" -"The :c:member:`~PyTypeObject.tp_dictoffset` should be regarded as write-" -"only. To get the pointer to the dictionary " -"call :c:func:`PyObject_GenericGetDict`. " -"Calling :c:func:`PyObject_GenericGetDict` may need to allocate memory for " -"the dictionary, so it is may be more efficient to " -"call :c:func:`PyObject_GetAttr` when accessing an attribute on the object." +msgid "The :c:member:`~PyTypeObject.tp_dictoffset` should be regarded as write-only. To get the pointer to the dictionary call :c:func:`PyObject_GenericGetDict`. Calling :c:func:`PyObject_GenericGetDict` may need to allocate memory for the dictionary, so it is may be more efficient to call :c:func:`PyObject_GetAttr` when accessing an attribute on the object." msgstr "" -#: ../../c-api/typeobj.rst:2128 -msgid "" -"It is an error to set both the :c:macro:`Py_TPFLAGS_MANAGED_DICT` bit " -"and :c:member:`~PyTypeObject.tp_dictoffset`." +msgid "It is an error to set both the :c:macro:`Py_TPFLAGS_MANAGED_DICT` bit and :c:member:`~PyTypeObject.tp_dictoffset`." msgstr "" -#: ../../c-api/typeobj.rst:2133 -msgid "" -"This field is inherited by subtypes. A subtype should not override this " -"offset; doing so could be unsafe, if C code tries to access the dictionary " -"at the previous offset. To properly support inheritance, " -"use :c:macro:`Py_TPFLAGS_MANAGED_DICT`." +msgid "This field is inherited by subtypes. A subtype should not override this offset; doing so could be unsafe, if C code tries to access the dictionary at the previous offset. To properly support inheritance, use :c:macro:`Py_TPFLAGS_MANAGED_DICT`." msgstr "" -#: ../../c-api/typeobj.rst:2140 -msgid "" -"This slot has no default. For :ref:`static types `, if the " -"field is ``NULL`` then no :attr:`~object.__dict__` gets created for " -"instances." +msgid "This slot has no default. For :ref:`static types `, if the field is ``NULL`` then no :attr:`~object.__dict__` gets created for instances." msgstr "" -#: ../../c-api/typeobj.rst:2143 -msgid "" -"If the :c:macro:`Py_TPFLAGS_MANAGED_DICT` bit is set in " -"the :c:member:`~PyTypeObject.tp_flags` field, " -"then :c:member:`~PyTypeObject.tp_dictoffset` will be set to ``-1``, to " -"indicate that it is unsafe to use this field." +msgid "If the :c:macro:`Py_TPFLAGS_MANAGED_DICT` bit is set in the :c:member:`~PyTypeObject.tp_flags` field, then :c:member:`~PyTypeObject.tp_dictoffset` will be set to ``-1``, to indicate that it is unsafe to use this field." msgstr "" -#: ../../c-api/typeobj.rst:2153 msgid "An optional pointer to an instance initialization function." msgstr "" -#: ../../c-api/typeobj.rst:2155 -msgid "" -"This function corresponds to the :meth:`~object.__init__` method of " -"classes. Like :meth:`!__init__`, it is possible to create an instance " -"without calling :meth:`!__init__`, and it is possible to reinitialize an " -"instance by calling its :meth:`!__init__` method again." +msgid "This function corresponds to the :meth:`~object.__init__` method of classes. Like :meth:`!__init__`, it is possible to create an instance without calling :meth:`!__init__`, and it is possible to reinitialize an instance by calling its :meth:`!__init__` method again." msgstr "" -#: ../../c-api/typeobj.rst:2162 msgid "int tp_init(PyObject *self, PyObject *args, PyObject *kwds);" msgstr "" -#: ../../c-api/typeobj.rst:2164 -msgid "" -"The self argument is the instance to be initialized; the *args* and *kwds* " -"arguments represent positional and keyword arguments of the call " -"to :meth:`~object.__init__`." +msgid "The self argument is the instance to be initialized; the *args* and *kwds* arguments represent positional and keyword arguments of the call to :meth:`~object.__init__`." msgstr "" -#: ../../c-api/typeobj.rst:2168 -msgid "" -"The :c:member:`~PyTypeObject.tp_init` function, if not ``NULL``, is called " -"when an instance is created normally by calling its type, after the " -"type's :c:member:`~PyTypeObject.tp_new` function has returned an instance of " -"the type. If the :c:member:`~PyTypeObject.tp_new` function returns an " -"instance of some other type that is not a subtype of the original type, " -"no :c:member:`~PyTypeObject.tp_init` function is called; " -"if :c:member:`~PyTypeObject.tp_new` returns an instance of a subtype of the " -"original type, the subtype's :c:member:`~PyTypeObject.tp_init` is called." +msgid "The :c:member:`~PyTypeObject.tp_init` function, if not ``NULL``, is called when an instance is created normally by calling its type, after the type's :c:member:`~PyTypeObject.tp_new` function has returned an instance of the type. If the :c:member:`~PyTypeObject.tp_new` function returns an instance of some other type that is not a subtype of the original type, no :c:member:`~PyTypeObject.tp_init` function is called; if :c:member:`~PyTypeObject.tp_new` returns an instance of a subtype of the original type, the subtype's :c:member:`~PyTypeObject.tp_init` is called." msgstr "" -#: ../../c-api/typeobj.rst:2175 msgid "Returns ``0`` on success, ``-1`` and sets an exception on error." msgstr "" -#: ../../c-api/typeobj.rst:2183 -msgid "" -"For :ref:`static types ` this field does not have a default." +msgid "For :ref:`static types ` this field does not have a default." msgstr "" -#: ../../c-api/typeobj.rst:2190 msgid "An optional pointer to an instance allocation function." msgstr "" -#: ../../c-api/typeobj.rst:2194 msgid "PyObject *tp_alloc(PyTypeObject *self, Py_ssize_t nitems);" msgstr "" -#: ../../c-api/typeobj.rst:2198 -msgid "" -"Static subtypes inherit this slot, which will " -"be :c:func:`PyType_GenericAlloc` if inherited from :class:`object`." +msgid "Static subtypes inherit this slot, which will be :c:func:`PyType_GenericAlloc` if inherited from :class:`object`." msgstr "" -#: ../../c-api/typeobj.rst:2201 ../../c-api/typeobj.rst:2272 msgid ":ref:`Heap subtypes ` do not inherit this slot." msgstr "" -#: ../../c-api/typeobj.rst:2205 -msgid "" -"For heap subtypes, this field is always set to :c:func:`PyType_GenericAlloc`." +msgid "For heap subtypes, this field is always set to :c:func:`PyType_GenericAlloc`." msgstr "" -#: ../../c-api/typeobj.rst:2208 ../../c-api/typeobj.rst:2280 msgid "For static subtypes, this slot is inherited (see above)." msgstr "" -#: ../../c-api/typeobj.rst:2215 msgid "An optional pointer to an instance creation function." msgstr "" -#: ../../c-api/typeobj.rst:2219 -msgid "" -"PyObject *tp_new(PyTypeObject *subtype, PyObject *args, PyObject *kwds);" +msgid "PyObject *tp_new(PyTypeObject *subtype, PyObject *args, PyObject *kwds);" msgstr "" -#: ../../c-api/typeobj.rst:2221 -msgid "" -"The *subtype* argument is the type of the object being created; the *args* " -"and *kwds* arguments represent positional and keyword arguments of the call " -"to the type. Note that *subtype* doesn't have to equal the type " -"whose :c:member:`~PyTypeObject.tp_new` function is called; it may be a " -"subtype of that type (but not an unrelated type)." +msgid "The *subtype* argument is the type of the object being created; the *args* and *kwds* arguments represent positional and keyword arguments of the call to the type. Note that *subtype* doesn't have to equal the type whose :c:member:`~PyTypeObject.tp_new` function is called; it may be a subtype of that type (but not an unrelated type)." msgstr "" -#: ../../c-api/typeobj.rst:2227 -msgid "" -"The :c:member:`~PyTypeObject.tp_new` function should call ``subtype-" -">tp_alloc(subtype, nitems)`` to allocate space for the object, and then do " -"only as much further initialization as is absolutely necessary. " -"Initialization that can safely be ignored or repeated should be placed in " -"the :c:member:`~PyTypeObject.tp_init` handler. A good rule of thumb is that " -"for immutable types, all initialization should take place " -"in :c:member:`~PyTypeObject.tp_new`, while for mutable types, most " -"initialization should be deferred to :c:member:`~PyTypeObject.tp_init`." +msgid "The :c:member:`~PyTypeObject.tp_new` function should call ``subtype->tp_alloc(subtype, nitems)`` to allocate space for the object, and then do only as much further initialization as is absolutely necessary. Initialization that can safely be ignored or repeated should be placed in the :c:member:`~PyTypeObject.tp_init` handler. A good rule of thumb is that for immutable types, all initialization should take place in :c:member:`~PyTypeObject.tp_new`, while for mutable types, most initialization should be deferred to :c:member:`~PyTypeObject.tp_init`." msgstr "" -#: ../../c-api/typeobj.rst:2235 -msgid "" -"Set the :c:macro:`Py_TPFLAGS_DISALLOW_INSTANTIATION` flag to disallow " -"creating instances of the type in Python." +msgid "Set the :c:macro:`Py_TPFLAGS_DISALLOW_INSTANTIATION` flag to disallow creating instances of the type in Python." msgstr "" -#: ../../c-api/typeobj.rst:2240 -msgid "" -"This field is inherited by subtypes, except it is not inherited " -"by :ref:`static types ` " -"whose :c:member:`~PyTypeObject.tp_base` is ``NULL`` or " -"``&PyBaseObject_Type``." +msgid "This field is inherited by subtypes, except it is not inherited by :ref:`static types ` whose :c:member:`~PyTypeObject.tp_base` is ``NULL`` or ``&PyBaseObject_Type``." msgstr "" -#: ../../c-api/typeobj.rst:2246 -msgid "" -"For :ref:`static types ` this field has no default. This means " -"if the slot is defined as ``NULL``, the type cannot be called to create new " -"instances; presumably there is some other way to create instances, like a " -"factory function." +msgid "For :ref:`static types ` this field has no default. This means if the slot is defined as ``NULL``, the type cannot be called to create new instances; presumably there is some other way to create instances, like a factory function." msgstr "" -#: ../../c-api/typeobj.rst:2256 -msgid "" -"An optional pointer to an instance deallocation function. Its signature is::" +msgid "An optional pointer to an instance deallocation function. Its signature is::" msgstr "" -#: ../../c-api/typeobj.rst:2258 msgid "void tp_free(void *self);" msgstr "" -#: ../../c-api/typeobj.rst:2260 -msgid "" -"This function must free the memory allocated " -"by :c:member:`~PyTypeObject.tp_alloc`." +msgid "This function must free the memory allocated by :c:member:`~PyTypeObject.tp_alloc`." msgstr "" -#: ../../c-api/typeobj.rst:2265 -msgid "" -"Static subtypes inherit this slot, which will be :c:func:`PyObject_Free` if " -"inherited from :class:`object`. Exception: If the type supports garbage " -"collection (i.e., the :c:macro:`Py_TPFLAGS_HAVE_GC` flag is set " -"in :c:member:`~PyTypeObject.tp_flags`) and it would " -"inherit :c:func:`PyObject_Free`, then this slot is not inherited but instead " -"defaults to :c:func:`PyObject_GC_Del`." +msgid "Static subtypes inherit this slot, which will be :c:func:`PyObject_Free` if inherited from :class:`object`. Exception: If the type supports garbage collection (i.e., the :c:macro:`Py_TPFLAGS_HAVE_GC` flag is set in :c:member:`~PyTypeObject.tp_flags`) and it would inherit :c:func:`PyObject_Free`, then this slot is not inherited but instead defaults to :c:func:`PyObject_GC_Del`." msgstr "" -#: ../../c-api/typeobj.rst:2276 -msgid "" -"For :ref:`heap subtypes `, this slot defaults to a deallocator " -"suitable to match :c:func:`PyType_GenericAlloc` and the value of " -"the :c:macro:`Py_TPFLAGS_HAVE_GC` flag." +msgid "For :ref:`heap subtypes `, this slot defaults to a deallocator suitable to match :c:func:`PyType_GenericAlloc` and the value of the :c:macro:`Py_TPFLAGS_HAVE_GC` flag." msgstr "" -#: ../../c-api/typeobj.rst:2287 msgid "An optional pointer to a function called by the garbage collector." msgstr "" -#: ../../c-api/typeobj.rst:2289 -msgid "" -"The garbage collector needs to know whether a particular object is " -"collectible or not. Normally, it is sufficient to look at the object's " -"type's :c:member:`~PyTypeObject.tp_flags` field, and check " -"the :c:macro:`Py_TPFLAGS_HAVE_GC` flag bit. But some types have a mixture " -"of statically and dynamically allocated instances, and the statically " -"allocated instances are not collectible. Such types should define this " -"function; it should return ``1`` for a collectible instance, and ``0`` for a " -"non-collectible instance. The signature is::" +msgid "The garbage collector needs to know whether a particular object is collectible or not. Normally, it is sufficient to look at the object's type's :c:member:`~PyTypeObject.tp_flags` field, and check the :c:macro:`Py_TPFLAGS_HAVE_GC` flag bit. But some types have a mixture of statically and dynamically allocated instances, and the statically allocated instances are not collectible. Such types should define this function; it should return ``1`` for a collectible instance, and ``0`` for a non-collectible instance. The signature is::" msgstr "" -#: ../../c-api/typeobj.rst:2297 msgid "int tp_is_gc(PyObject *self);" msgstr "" -#: ../../c-api/typeobj.rst:2299 -msgid "" -"(The only example of this are types themselves. The " -"metatype, :c:data:`PyType_Type`, defines this function to distinguish " -"between statically and :ref:`dynamically allocated types `.)" +msgid "(The only example of this are types themselves. The metatype, :c:data:`PyType_Type`, defines this function to distinguish between statically and :ref:`dynamically allocated types `.)" msgstr "" -#: ../../c-api/typeobj.rst:2309 -msgid "" -"This slot has no default. If this field is " -"``NULL``, :c:macro:`Py_TPFLAGS_HAVE_GC` is used as the functional equivalent." +msgid "This slot has no default. If this field is ``NULL``, :c:macro:`Py_TPFLAGS_HAVE_GC` is used as the functional equivalent." msgstr "" -#: ../../c-api/typeobj.rst:2317 msgid "Tuple of base types." msgstr "" -#: ../../c-api/typeobj.rst:2319 ../../c-api/typeobj.rst:2343 -msgid "" -"This field should be set to ``NULL`` and treated as read-only. Python will " -"fill it in when the type is :c:func:`initialized `." +msgid "This field should be set to ``NULL`` and treated as read-only. Python will fill it in when the type is :c:func:`initialized `." msgstr "" -#: ../../c-api/typeobj.rst:2322 -msgid "" -"For dynamically created classes, the :c:data:`Py_tp_bases` :c:type:`slot " -"` can be used instead of the *bases* argument " -"of :c:func:`PyType_FromSpecWithBases`. The argument form is preferred." +msgid "For dynamically created classes, the :c:data:`Py_tp_bases` :c:type:`slot ` can be used instead of the *bases* argument of :c:func:`PyType_FromSpecWithBases`. The argument form is preferred." msgstr "" -#: ../../c-api/typeobj.rst:2329 -msgid "" -"Multiple inheritance does not work well for statically defined types. If you " -"set ``tp_bases`` to a tuple, Python will not raise an error, but some slots " -"will only be inherited from the first base." +msgid "Multiple inheritance does not work well for statically defined types. If you set ``tp_bases`` to a tuple, Python will not raise an error, but some slots will only be inherited from the first base." msgstr "" -#: ../../c-api/typeobj.rst:2335 ../../c-api/typeobj.rst:2358 -#: ../../c-api/typeobj.rst:2375 ../../c-api/typeobj.rst:2392 -#: ../../c-api/typeobj.rst:2408 msgid "This field is not inherited." msgstr "" -#: ../../c-api/typeobj.rst:2340 -msgid "" -"Tuple containing the expanded set of base types, starting with the type " -"itself and ending with :class:`object`, in Method Resolution Order." +msgid "Tuple containing the expanded set of base types, starting with the type itself and ending with :class:`object`, in Method Resolution Order." msgstr "" -#: ../../c-api/typeobj.rst:2348 -msgid "" -"This field is not inherited; it is calculated fresh " -"by :c:func:`PyType_Ready`." +msgid "This field is not inherited; it is calculated fresh by :c:func:`PyType_Ready`." msgstr "" -#: ../../c-api/typeobj.rst:2354 msgid "Unused. Internal use only." msgstr "" -#: ../../c-api/typeobj.rst:2363 -msgid "" -"A collection of subclasses. Internal use only. May be an invalid pointer." +msgid "A collection of subclasses. Internal use only. May be an invalid pointer." msgstr "" -#: ../../c-api/typeobj.rst:2365 -msgid "" -"To get a list of subclasses, call the Python " -"method :py:meth:`~type.__subclasses__`." +msgid "To get a list of subclasses, call the Python method :py:meth:`~type.__subclasses__`." msgstr "" -#: ../../c-api/typeobj.rst:2370 -msgid "" -"For some types, this field does not hold a valid :c:expr:`PyObject*`. The " -"type was changed to :c:expr:`void*` to indicate this." +msgid "For some types, this field does not hold a valid :c:expr:`PyObject*`. The type was changed to :c:expr:`void*` to indicate this." msgstr "" -#: ../../c-api/typeobj.rst:2380 -msgid "" -"Weak reference list head, for weak references to this type object. Not " -"inherited. Internal use only." +msgid "Weak reference list head, for weak references to this type object. Not inherited. Internal use only." msgstr "" -#: ../../c-api/typeobj.rst:2385 -msgid "" -"Internals detail: For the static builtin types this is always ``NULL``, even " -"if weakrefs are added. Instead, the weakrefs for each are stored on " -"``PyInterpreterState``. Use the public C-API or the internal " -"``_PyObject_GET_WEAKREFS_LISTPTR()`` macro to avoid the distinction." +msgid "Internals detail: For the static builtin types this is always ``NULL``, even if weakrefs are added. Instead, the weakrefs for each are stored on ``PyInterpreterState``. Use the public C-API or the internal ``_PyObject_GET_WEAKREFS_LISTPTR()`` macro to avoid the distinction." msgstr "" -#: ../../c-api/typeobj.rst:2399 -msgid "" -"This field is deprecated. Use :c:member:`~PyTypeObject.tp_finalize` instead." +msgid "This field is deprecated. Use :c:member:`~PyTypeObject.tp_finalize` instead." msgstr "" -#: ../../c-api/typeobj.rst:2404 msgid "Used to index into the method cache. Internal use only." msgstr "" -#: ../../c-api/typeobj.rst:2415 -msgid "" -"An optional pointer to an instance finalization function. This is the C " -"implementation of the :meth:`~object.__del__` special method. Its signature " -"is::" +msgid "An optional pointer to an instance finalization function. This is the C implementation of the :meth:`~object.__del__` special method. Its signature is::" msgstr "" -#: ../../c-api/typeobj.rst:2419 msgid "void tp_finalize(PyObject *self);" msgstr "" -#: ../../c-api/typeobj.rst:2421 -msgid "" -"The primary purpose of finalization is to perform any non-trivial cleanup " -"that must be performed before the object is destroyed, while the object and " -"any other objects it directly or indirectly references are still in a " -"consistent state. The finalizer is allowed to execute arbitrary Python code." +msgid "The primary purpose of finalization is to perform any non-trivial cleanup that must be performed before the object is destroyed, while the object and any other objects it directly or indirectly references are still in a consistent state. The finalizer is allowed to execute arbitrary Python code." msgstr "" -#: ../../c-api/typeobj.rst:2427 -msgid "" -"Before Python automatically finalizes an object, some of the object's direct " -"or indirect referents might have themselves been automatically finalized. " -"However, none of the referents will have been automatically cleared " -"(:c:member:`~PyTypeObject.tp_clear`) yet." +msgid "Before Python automatically finalizes an object, some of the object's direct or indirect referents might have themselves been automatically finalized. However, none of the referents will have been automatically cleared (:c:member:`~PyTypeObject.tp_clear`) yet." msgstr "" -#: ../../c-api/typeobj.rst:2432 -msgid "" -"Other non-finalized objects might still be using a finalized object, so the " -"finalizer must leave the object in a sane state (e.g., invariants are still " -"met)." +msgid "Other non-finalized objects might still be using a finalized object, so the finalizer must leave the object in a sane state (e.g., invariants are still met)." msgstr "" -#: ../../c-api/typeobj.rst:2438 -msgid "" -"After Python automatically finalizes an object, Python might start " -"automatically clearing (:c:member:`~PyTypeObject.tp_clear`) the object and " -"its referents (direct and indirect). Cleared objects are not guaranteed to " -"be in a consistent state; a finalized object must be able to tolerate " -"cleared referents." +msgid "After Python automatically finalizes an object, Python might start automatically clearing (:c:member:`~PyTypeObject.tp_clear`) the object and its referents (direct and indirect). Cleared objects are not guaranteed to be in a consistent state; a finalized object must be able to tolerate cleared referents." msgstr "" -#: ../../c-api/typeobj.rst:2446 -msgid "" -"An object is not guaranteed to be automatically finalized before its " -"destructor (:c:member:`~PyTypeObject.tp_dealloc`) is called. It is " -"recommended to call :c:func:`PyObject_CallFinalizerFromDealloc` at the " -"beginning of :c:member:`!tp_dealloc` to guarantee that the object is always " -"finalized before destruction." +msgid "An object is not guaranteed to be automatically finalized before its destructor (:c:member:`~PyTypeObject.tp_dealloc`) is called. It is recommended to call :c:func:`PyObject_CallFinalizerFromDealloc` at the beginning of :c:member:`!tp_dealloc` to guarantee that the object is always finalized before destruction." msgstr "" -#: ../../c-api/typeobj.rst:2454 -msgid "" -"The :c:member:`~PyTypeObject.tp_finalize` function can be called from any " -"thread, although the :term:`GIL` will be held." +msgid "The :c:member:`~PyTypeObject.tp_finalize` function can be called from any thread, although the :term:`GIL` will be held." msgstr "" -#: ../../c-api/typeobj.rst:2459 -msgid "" -"The :c:member:`!tp_finalize` function can be called during shutdown, after " -"some global variables have been deleted. See the documentation of " -"the :meth:`~object.__del__` method for details." +msgid "The :c:member:`!tp_finalize` function can be called during shutdown, after some global variables have been deleted. See the documentation of the :meth:`~object.__del__` method for details." msgstr "" -#: ../../c-api/typeobj.rst:2463 -msgid "" -"When Python finalizes an object, it behaves like the following algorithm:" +msgid "When Python finalizes an object, it behaves like the following algorithm:" msgstr "" -#: ../../c-api/typeobj.rst:2465 -msgid "" -"Python might mark the object as *finalized*. Currently, Python always marks " -"objects whose type supports garbage collection (i.e., " -"the :c:macro:`Py_TPFLAGS_HAVE_GC` flag is set " -"in :c:member:`~PyTypeObject.tp_flags`) and never marks other types of " -"objects; this might change in a future version." +msgid "Python might mark the object as *finalized*. Currently, Python always marks objects whose type supports garbage collection (i.e., the :c:macro:`Py_TPFLAGS_HAVE_GC` flag is set in :c:member:`~PyTypeObject.tp_flags`) and never marks other types of objects; this might change in a future version." msgstr "" -#: ../../c-api/typeobj.rst:2470 -msgid "" -"If the object is not marked as *finalized* and its :c:member:`!tp_finalize` " -"finalizer function is non-``NULL``, the finalizer function is called." +msgid "If the object is not marked as *finalized* and its :c:member:`!tp_finalize` finalizer function is non-``NULL``, the finalizer function is called." msgstr "" -#: ../../c-api/typeobj.rst:2473 -msgid "" -"If the finalizer function was called and the finalizer made the object " -"reachable (i.e., there is a reference to the object and it is not a member " -"of a :term:`cyclic isolate`), then the finalizer is said to have " -"*resurrected* the object. It is unspecified whether the finalizer can also " -"resurrect the object by adding a new reference to the object that does not " -"make it reachable, i.e., the object is (still) a member of a cyclic isolate." +msgid "If the finalizer function was called and the finalizer made the object reachable (i.e., there is a reference to the object and it is not a member of a :term:`cyclic isolate`), then the finalizer is said to have *resurrected* the object. It is unspecified whether the finalizer can also resurrect the object by adding a new reference to the object that does not make it reachable, i.e., the object is (still) a member of a cyclic isolate." msgstr "" -#: ../../c-api/typeobj.rst:2480 -msgid "" -"If the finalizer resurrected the object, the object's pending destruction is " -"canceled and the object's *finalized* mark might be removed if present. " -"Currently, Python never removes the *finalized* mark; this might change in a " -"future version." +msgid "If the finalizer resurrected the object, the object's pending destruction is canceled and the object's *finalized* mark might be removed if present. Currently, Python never removes the *finalized* mark; this might change in a future version." msgstr "" -#: ../../c-api/typeobj.rst:2485 -msgid "" -"*Automatic finalization* refers to any finalization performed by Python " -"except via calls to :c:func:`PyObject_CallFinalizer` " -"or :c:func:`PyObject_CallFinalizerFromDealloc`. No guarantees are made " -"about when, if, or how often an object is automatically finalized, except:" +msgid "*Automatic finalization* refers to any finalization performed by Python except via calls to :c:func:`PyObject_CallFinalizer` or :c:func:`PyObject_CallFinalizerFromDealloc`. No guarantees are made about when, if, or how often an object is automatically finalized, except:" msgstr "" -#: ../../c-api/typeobj.rst:2490 -msgid "" -"Python will not automatically finalize an object if it is reachable, i.e., " -"there is a reference to it and it is not a member of a :term:`cyclic " -"isolate`." +msgid "Python will not automatically finalize an object if it is reachable, i.e., there is a reference to it and it is not a member of a :term:`cyclic isolate`." msgstr "" -#: ../../c-api/typeobj.rst:2493 -msgid "" -"Python will not automatically finalize an object if finalizing it would not " -"mark the object as *finalized*. Currently, this applies to objects whose " -"type does not support garbage collection, i.e., " -"the :c:macro:`Py_TPFLAGS_HAVE_GC` flag is not set. Such objects can still " -"be manually finalized by calling :c:func:`PyObject_CallFinalizer` " -"or :c:func:`PyObject_CallFinalizerFromDealloc`." +msgid "Python will not automatically finalize an object if finalizing it would not mark the object as *finalized*. Currently, this applies to objects whose type does not support garbage collection, i.e., the :c:macro:`Py_TPFLAGS_HAVE_GC` flag is not set. Such objects can still be manually finalized by calling :c:func:`PyObject_CallFinalizer` or :c:func:`PyObject_CallFinalizerFromDealloc`." msgstr "" -#: ../../c-api/typeobj.rst:2499 -msgid "" -"Python will not automatically finalize any two members of a :term:`cyclic " -"isolate` concurrently." +msgid "Python will not automatically finalize any two members of a :term:`cyclic isolate` concurrently." msgstr "" -#: ../../c-api/typeobj.rst:2501 -msgid "" -"Python will not automatically finalize an object after it has automatically " -"cleared (:c:member:`~PyTypeObject.tp_clear`) the object." +msgid "Python will not automatically finalize an object after it has automatically cleared (:c:member:`~PyTypeObject.tp_clear`) the object." msgstr "" -#: ../../c-api/typeobj.rst:2503 -msgid "" -"If an object is a member of a :term:`cyclic isolate`, Python will not " -"automatically finalize it after automatically clearing " -"(see :c:member:`~PyTypeObject.tp_clear`) any other member." +msgid "If an object is a member of a :term:`cyclic isolate`, Python will not automatically finalize it after automatically clearing (see :c:member:`~PyTypeObject.tp_clear`) any other member." msgstr "" -#: ../../c-api/typeobj.rst:2506 -msgid "" -"Python will automatically finalize every member of a :term:`cyclic isolate` " -"before it automatically clears (see :c:member:`~PyTypeObject.tp_clear`) any " -"of them." +msgid "Python will automatically finalize every member of a :term:`cyclic isolate` before it automatically clears (see :c:member:`~PyTypeObject.tp_clear`) any of them." msgstr "" -#: ../../c-api/typeobj.rst:2509 -msgid "" -"If Python is going to automatically clear an object " -"(:c:member:`~PyTypeObject.tp_clear`), it will automatically finalize the " -"object first." +msgid "If Python is going to automatically clear an object (:c:member:`~PyTypeObject.tp_clear`), it will automatically finalize the object first." msgstr "" -#: ../../c-api/typeobj.rst:2513 -msgid "" -"Python currently only automatically finalizes objects that are members of " -"a :term:`cyclic isolate`, but future versions might finalize objects " -"regularly before their destruction." +msgid "Python currently only automatically finalizes objects that are members of a :term:`cyclic isolate`, but future versions might finalize objects regularly before their destruction." msgstr "" -#: ../../c-api/typeobj.rst:2517 -msgid "" -"To manually finalize an object, do not call this function directly; " -"call :c:func:`PyObject_CallFinalizer` " -"or :c:func:`PyObject_CallFinalizerFromDealloc` instead." +msgid "To manually finalize an object, do not call this function directly; call :c:func:`PyObject_CallFinalizer` or :c:func:`PyObject_CallFinalizerFromDealloc` instead." msgstr "" -#: ../../c-api/typeobj.rst:2521 -msgid "" -":c:member:`~PyTypeObject.tp_finalize` should leave the current exception " -"status unchanged. The recommended way to write a non-trivial finalizer is " -"to back up the exception at the beginning by " -"calling :c:func:`PyErr_GetRaisedException` and restore the exception at the " -"end by calling :c:func:`PyErr_SetRaisedException`. If an exception is " -"encountered in the middle of the finalizer, log and clear it " -"with :c:func:`PyErr_WriteUnraisable` or :c:func:`PyErr_FormatUnraisable`. " -"For example::" +msgid ":c:member:`~PyTypeObject.tp_finalize` should leave the current exception status unchanged. The recommended way to write a non-trivial finalizer is to back up the exception at the beginning by calling :c:func:`PyErr_GetRaisedException` and restore the exception at the end by calling :c:func:`PyErr_SetRaisedException`. If an exception is encountered in the middle of the finalizer, log and clear it with :c:func:`PyErr_WriteUnraisable` or :c:func:`PyErr_FormatUnraisable`. For example::" msgstr "" -#: ../../c-api/typeobj.rst:2530 msgid "" "static void\n" "foo_finalize(PyObject *self)\n" @@ -3854,165 +2128,90 @@ msgid "" "}" msgstr "" -#: ../../c-api/typeobj.rst:2558 -msgid "" -"Before version 3.8 it was necessary to set " -"the :c:macro:`Py_TPFLAGS_HAVE_FINALIZE` flags bit in order for this field to " -"be used. This is no longer required." +msgid "Before version 3.8 it was necessary to set the :c:macro:`Py_TPFLAGS_HAVE_FINALIZE` flags bit in order for this field to be used. This is no longer required." msgstr "" -#: ../../c-api/typeobj.rst:2564 msgid ":pep:`442`: \"Safe object finalization\"" msgstr "" -#: ../../c-api/typeobj.rst:2567 msgid ":c:func:`PyObject_CallFinalizer`" msgstr "" -#: ../../c-api/typeobj.rst:2568 msgid ":c:func:`PyObject_CallFinalizerFromDealloc`" msgstr "" -#: ../../c-api/typeobj.rst:2575 -msgid "" -"A :ref:`vectorcall function ` to use for calls of this type " -"object (rather than instances). In other words, ``tp_vectorcall`` can be " -"used to optimize ``type.__call__``, which typically returns a new instance " -"of *type*." +msgid "A :ref:`vectorcall function ` to use for calls of this type object (rather than instances). In other words, ``tp_vectorcall`` can be used to optimize ``type.__call__``, which typically returns a new instance of *type*." msgstr "" -#: ../../c-api/typeobj.rst:2580 -msgid "" -"As with any vectorcall function, if ``tp_vectorcall`` is ``NULL``, the " -"*tp_call* protocol (``Py_TYPE(type)->tp_call``) is used instead." +msgid "As with any vectorcall function, if ``tp_vectorcall`` is ``NULL``, the *tp_call* protocol (``Py_TYPE(type)->tp_call``) is used instead." msgstr "" -#: ../../c-api/typeobj.rst:2585 -msgid "" -"The :ref:`vectorcall protocol ` requires that the vectorcall " -"function has the same behavior as the corresponding ``tp_call``. This means " -"that ``type->tp_vectorcall`` must match the behavior of ``Py_TYPE(type)-" -">tp_call``." +msgid "The :ref:`vectorcall protocol ` requires that the vectorcall function has the same behavior as the corresponding ``tp_call``. This means that ``type->tp_vectorcall`` must match the behavior of ``Py_TYPE(type)->tp_call``." msgstr "" -#: ../../c-api/typeobj.rst:2590 -msgid "" -"Specifically, if *type* uses the default metaclass, ``type->tp_vectorcall`` " -"must behave the same as :c:expr:`PyType_Type->tp_call`, which:" +msgid "Specifically, if *type* uses the default metaclass, ``type->tp_vectorcall`` must behave the same as :c:expr:`PyType_Type->tp_call`, which:" msgstr "" -#: ../../c-api/typeobj.rst:2594 msgid "calls ``type->tp_new``," msgstr "" -#: ../../c-api/typeobj.rst:2596 -msgid "" -"if the result is a subclass of *type*, calls ``type->tp_init`` on the result " -"of ``tp_new``, and" +msgid "if the result is a subclass of *type*, calls ``type->tp_init`` on the result of ``tp_new``, and" msgstr "" -#: ../../c-api/typeobj.rst:2599 msgid "returns the result of ``tp_new``." msgstr "" -#: ../../c-api/typeobj.rst:2601 -msgid "" -"Typically, ``tp_vectorcall`` is overridden to optimize this process for " -"specific :c:member:`~PyTypeObject.tp_new` " -"and :c:member:`~PyTypeObject.tp_init`. When doing this for user-subclassable " -"types, note that both can be overridden (using :py:func:`~object.__new__` " -"and :py:func:`~object.__init__`, respectively)." +msgid "Typically, ``tp_vectorcall`` is overridden to optimize this process for specific :c:member:`~PyTypeObject.tp_new` and :c:member:`~PyTypeObject.tp_init`. When doing this for user-subclassable types, note that both can be overridden (using :py:func:`~object.__new__` and :py:func:`~object.__init__`, respectively)." msgstr "" -#: ../../c-api/typeobj.rst:2612 msgid "This field is never inherited." msgstr "" -#: ../../c-api/typeobj.rst:2614 msgid "(the field exists since 3.8 but it's only used since 3.9)" msgstr "" -#: ../../c-api/typeobj.rst:2619 msgid "Internal. Do not use." msgstr "" -#: ../../c-api/typeobj.rst:2627 msgid "Static Types" msgstr "" -#: ../../c-api/typeobj.rst:2629 -msgid "" -"Traditionally, types defined in C code are *static*, that is, a " -"static :c:type:`PyTypeObject` structure is defined directly in code and " -"initialized using :c:func:`PyType_Ready`." +msgid "Traditionally, types defined in C code are *static*, that is, a static :c:type:`PyTypeObject` structure is defined directly in code and initialized using :c:func:`PyType_Ready`." msgstr "" -#: ../../c-api/typeobj.rst:2633 -msgid "" -"This results in types that are limited relative to types defined in Python:" +msgid "This results in types that are limited relative to types defined in Python:" msgstr "" -#: ../../c-api/typeobj.rst:2635 -msgid "" -"Static types are limited to one base, i.e. they cannot use multiple " -"inheritance." +msgid "Static types are limited to one base, i.e. they cannot use multiple inheritance." msgstr "" -#: ../../c-api/typeobj.rst:2637 -msgid "" -"Static type objects (but not necessarily their instances) are immutable. It " -"is not possible to add or modify the type object's attributes from Python." +msgid "Static type objects (but not necessarily their instances) are immutable. It is not possible to add or modify the type object's attributes from Python." msgstr "" -#: ../../c-api/typeobj.rst:2639 -msgid "" -"Static type objects are shared across :ref:`sub-interpreters `, so they should not include any subinterpreter-" -"specific state." +msgid "Static type objects are shared across :ref:`sub-interpreters `, so they should not include any subinterpreter-specific state." msgstr "" -#: ../../c-api/typeobj.rst:2643 -msgid "" -"Also, since :c:type:`PyTypeObject` is only part of the :ref:`Limited API " -"` as an opaque struct, any extension modules using static " -"types must be compiled for a specific Python minor version." +msgid "Also, since :c:type:`PyTypeObject` is only part of the :ref:`Limited API ` as an opaque struct, any extension modules using static types must be compiled for a specific Python minor version." msgstr "" -#: ../../c-api/typeobj.rst:2651 msgid "Heap Types" msgstr "" -#: ../../c-api/typeobj.rst:2653 -msgid "" -"An alternative to :ref:`static types ` is *heap-allocated " -"types*, or *heap types* for short, which correspond closely to classes " -"created by Python's ``class`` statement. Heap types have " -"the :c:macro:`Py_TPFLAGS_HEAPTYPE` flag set." +msgid "An alternative to :ref:`static types ` is *heap-allocated types*, or *heap types* for short, which correspond closely to classes created by Python's ``class`` statement. Heap types have the :c:macro:`Py_TPFLAGS_HEAPTYPE` flag set." msgstr "" -#: ../../c-api/typeobj.rst:2658 -msgid "" -"This is done by filling a :c:type:`PyType_Spec` structure and " -"calling :c:func:`PyType_FromSpec`, :c:func:`PyType_FromSpecWithBases`, :c:func:`PyType_FromModuleAndSpec`, " -"or :c:func:`PyType_FromMetaclass`." +msgid "This is done by filling a :c:type:`PyType_Spec` structure and calling :c:func:`PyType_FromSpec`, :c:func:`PyType_FromSpecWithBases`, :c:func:`PyType_FromModuleAndSpec`, or :c:func:`PyType_FromMetaclass`." msgstr "" -#: ../../c-api/typeobj.rst:2666 msgid "Number Object Structures" msgstr "" -#: ../../c-api/typeobj.rst:2673 -msgid "" -"This structure holds pointers to the functions which an object uses to " -"implement the number protocol. Each function is used by the function of " -"similar name documented in the :ref:`number` section." +msgid "This structure holds pointers to the functions which an object uses to implement the number protocol. Each function is used by the function of similar name documented in the :ref:`number` section." msgstr "" -#: ../../c-api/typeobj.rst:2679 ../../c-api/typeobj.rst:3163 msgid "Here is the structure definition::" msgstr "" -#: ../../c-api/typeobj.rst:2681 msgid "" "typedef struct {\n" " binaryfunc nb_add;\n" @@ -4058,344 +2257,168 @@ msgid "" "} PyNumberMethods;" msgstr "" -#: ../../c-api/typeobj.rst:2726 -msgid "" -"Binary and ternary functions must check the type of all their operands, and " -"implement the necessary conversions (at least one of the operands is an " -"instance of the defined type). If the operation is not defined for the " -"given operands, binary and ternary functions must return " -"``Py_NotImplemented``, if another error occurred they must return ``NULL`` " -"and set an exception." +msgid "Binary and ternary functions must check the type of all their operands, and implement the necessary conversions (at least one of the operands is an instance of the defined type). If the operation is not defined for the given operands, binary and ternary functions must return ``Py_NotImplemented``, if another error occurred they must return ``NULL`` and set an exception." msgstr "" -#: ../../c-api/typeobj.rst:2735 -msgid "" -"The :c:member:`~PyNumberMethods.nb_reserved` field should always be " -"``NULL``. It was previously called :c:member:`!nb_long`, and was renamed in " -"Python 3.0.1." +msgid "The :c:member:`~PyNumberMethods.nb_reserved` field should always be ``NULL``. It was previously called :c:member:`!nb_long`, and was renamed in Python 3.0.1." msgstr "" -#: ../../c-api/typeobj.rst:2886 msgid "Mapping Object Structures" msgstr "" -#: ../../c-api/typeobj.rst:2893 -msgid "" -"This structure holds pointers to the functions which an object uses to " -"implement the mapping protocol. It has three members:" +msgid "This structure holds pointers to the functions which an object uses to implement the mapping protocol. It has three members:" msgstr "" -#: ../../c-api/typeobj.rst:2900 -msgid "" -"This function is used by :c:func:`PyMapping_Size` " -"and :c:func:`PyObject_Size`, and has the same signature. This slot may be " -"set to ``NULL`` if the object has no defined length." +msgid "This function is used by :c:func:`PyMapping_Size` and :c:func:`PyObject_Size`, and has the same signature. This slot may be set to ``NULL`` if the object has no defined length." msgstr "" -#: ../../c-api/typeobj.rst:2908 -msgid "" -"This function is used by :c:func:`PyObject_GetItem` " -"and :c:func:`PySequence_GetSlice`, and has the same signature as :c:func:`!" -"PyObject_GetItem`. This slot must be filled for " -"the :c:func:`PyMapping_Check` function to return ``1``, it can be ``NULL`` " -"otherwise." +msgid "This function is used by :c:func:`PyObject_GetItem` and :c:func:`PySequence_GetSlice`, and has the same signature as :c:func:`!PyObject_GetItem`. This slot must be filled for the :c:func:`PyMapping_Check` function to return ``1``, it can be ``NULL`` otherwise." msgstr "" -#: ../../c-api/typeobj.rst:2918 -msgid "" -"This function is used " -"by :c:func:`PyObject_SetItem`, :c:func:`PyObject_DelItem`, :c:func:`PySequence_SetSlice` " -"and :c:func:`PySequence_DelSlice`. It has the same signature as :c:func:`!" -"PyObject_SetItem`, but *v* can also be set to ``NULL`` to delete an item. " -"If this slot is ``NULL``, the object does not support item assignment and " -"deletion." +msgid "This function is used by :c:func:`PyObject_SetItem`, :c:func:`PyObject_DelItem`, :c:func:`PySequence_SetSlice` and :c:func:`PySequence_DelSlice`. It has the same signature as :c:func:`!PyObject_SetItem`, but *v* can also be set to ``NULL`` to delete an item. If this slot is ``NULL``, the object does not support item assignment and deletion." msgstr "" -#: ../../c-api/typeobj.rst:2929 msgid "Sequence Object Structures" msgstr "" -#: ../../c-api/typeobj.rst:2936 -msgid "" -"This structure holds pointers to the functions which an object uses to " -"implement the sequence protocol." +msgid "This structure holds pointers to the functions which an object uses to implement the sequence protocol." msgstr "" -#: ../../c-api/typeobj.rst:2943 -msgid "" -"This function is used by :c:func:`PySequence_Size` " -"and :c:func:`PyObject_Size`, and has the same signature. It is also used " -"for handling negative indices via the :c:member:`~PySequenceMethods.sq_item` " -"and the :c:member:`~PySequenceMethods.sq_ass_item` slots." +msgid "This function is used by :c:func:`PySequence_Size` and :c:func:`PyObject_Size`, and has the same signature. It is also used for handling negative indices via the :c:member:`~PySequenceMethods.sq_item` and the :c:member:`~PySequenceMethods.sq_ass_item` slots." msgstr "" -#: ../../c-api/typeobj.rst:2952 -msgid "" -"This function is used by :c:func:`PySequence_Concat` and has the same " -"signature. It is also used by the ``+`` operator, after trying the numeric " -"addition via the :c:member:`~PyNumberMethods.nb_add` slot." +msgid "This function is used by :c:func:`PySequence_Concat` and has the same signature. It is also used by the ``+`` operator, after trying the numeric addition via the :c:member:`~PyNumberMethods.nb_add` slot." msgstr "" -#: ../../c-api/typeobj.rst:2960 -msgid "" -"This function is used by :c:func:`PySequence_Repeat` and has the same " -"signature. It is also used by the ``*`` operator, after trying numeric " -"multiplication via the :c:member:`~PyNumberMethods.nb_multiply` slot." +msgid "This function is used by :c:func:`PySequence_Repeat` and has the same signature. It is also used by the ``*`` operator, after trying numeric multiplication via the :c:member:`~PyNumberMethods.nb_multiply` slot." msgstr "" -#: ../../c-api/typeobj.rst:2968 -msgid "" -"This function is used by :c:func:`PySequence_GetItem` and has the same " -"signature. It is also used by :c:func:`PyObject_GetItem`, after trying the " -"subscription via the :c:member:`~PyMappingMethods.mp_subscript` slot. This " -"slot must be filled for the :c:func:`PySequence_Check` function to return " -"``1``, it can be ``NULL`` otherwise." +msgid "This function is used by :c:func:`PySequence_GetItem` and has the same signature. It is also used by :c:func:`PyObject_GetItem`, after trying the subscription via the :c:member:`~PyMappingMethods.mp_subscript` slot. This slot must be filled for the :c:func:`PySequence_Check` function to return ``1``, it can be ``NULL`` otherwise." msgstr "" -#: ../../c-api/typeobj.rst:2974 -msgid "" -"Negative indexes are handled as follows: if " -"the :c:member:`~PySequenceMethods.sq_length` slot is filled, it is called " -"and the sequence length is used to compute a positive index which is passed " -"to :c:member:`~PySequenceMethods.sq_item`. If :c:member:`!sq_length` is " -"``NULL``, the index is passed as is to the function." +msgid "Negative indexes are handled as follows: if the :c:member:`~PySequenceMethods.sq_length` slot is filled, it is called and the sequence length is used to compute a positive index which is passed to :c:member:`~PySequenceMethods.sq_item`. If :c:member:`!sq_length` is ``NULL``, the index is passed as is to the function." msgstr "" -#: ../../c-api/typeobj.rst:2983 -msgid "" -"This function is used by :c:func:`PySequence_SetItem` and has the same " -"signature. It is also used by :c:func:`PyObject_SetItem` " -"and :c:func:`PyObject_DelItem`, after trying the item assignment and " -"deletion via the :c:member:`~PyMappingMethods.mp_ass_subscript` slot. This " -"slot may be left to ``NULL`` if the object does not support item assignment " -"and deletion." +msgid "This function is used by :c:func:`PySequence_SetItem` and has the same signature. It is also used by :c:func:`PyObject_SetItem` and :c:func:`PyObject_DelItem`, after trying the item assignment and deletion via the :c:member:`~PyMappingMethods.mp_ass_subscript` slot. This slot may be left to ``NULL`` if the object does not support item assignment and deletion." msgstr "" -#: ../../c-api/typeobj.rst:2994 -msgid "" -"This function may be used by :c:func:`PySequence_Contains` and has the same " -"signature. This slot may be left to ``NULL``, in this case :c:func:`!" -"PySequence_Contains` simply traverses the sequence until it finds a match." +msgid "This function may be used by :c:func:`PySequence_Contains` and has the same signature. This slot may be left to ``NULL``, in this case :c:func:`!PySequence_Contains` simply traverses the sequence until it finds a match." msgstr "" -#: ../../c-api/typeobj.rst:3003 -msgid "" -"This function is used by :c:func:`PySequence_InPlaceConcat` and has the same " -"signature. It should modify its first operand, and return it. This slot " -"may be left to ``NULL``, in this case :c:func:`!PySequence_InPlaceConcat` " -"will fall back to :c:func:`PySequence_Concat`. It is also used by the " -"augmented assignment ``+=``, after trying numeric in-place addition via " -"the :c:member:`~PyNumberMethods.nb_inplace_add` slot." +msgid "This function is used by :c:func:`PySequence_InPlaceConcat` and has the same signature. It should modify its first operand, and return it. This slot may be left to ``NULL``, in this case :c:func:`!PySequence_InPlaceConcat` will fall back to :c:func:`PySequence_Concat`. It is also used by the augmented assignment ``+=``, after trying numeric in-place addition via the :c:member:`~PyNumberMethods.nb_inplace_add` slot." msgstr "" -#: ../../c-api/typeobj.rst:3014 -msgid "" -"This function is used by :c:func:`PySequence_InPlaceRepeat` and has the same " -"signature. It should modify its first operand, and return it. This slot " -"may be left to ``NULL``, in this case :c:func:`!PySequence_InPlaceRepeat` " -"will fall back to :c:func:`PySequence_Repeat`. It is also used by the " -"augmented assignment ``*=``, after trying numeric in-place multiplication " -"via the :c:member:`~PyNumberMethods.nb_inplace_multiply` slot." +msgid "This function is used by :c:func:`PySequence_InPlaceRepeat` and has the same signature. It should modify its first operand, and return it. This slot may be left to ``NULL``, in this case :c:func:`!PySequence_InPlaceRepeat` will fall back to :c:func:`PySequence_Repeat`. It is also used by the augmented assignment ``*=``, after trying numeric in-place multiplication via the :c:member:`~PyNumberMethods.nb_inplace_multiply` slot." msgstr "" -#: ../../c-api/typeobj.rst:3025 msgid "Buffer Object Structures" msgstr "" -#: ../../c-api/typeobj.rst:3033 -msgid "" -"This structure holds pointers to the functions required by the :ref:`Buffer " -"protocol `. The protocol defines how an exporter object can " -"expose its internal data to consumer objects." +msgid "This structure holds pointers to the functions required by the :ref:`Buffer protocol `. The protocol defines how an exporter object can expose its internal data to consumer objects." msgstr "" -#: ../../c-api/typeobj.rst:3041 ../../c-api/typeobj.rst:3110 -#: ../../c-api/typeobj.rst:3176 ../../c-api/typeobj.rst:3189 -#: ../../c-api/typeobj.rst:3203 ../../c-api/typeobj.rst:3215 msgid "The signature of this function is::" msgstr "" -#: ../../c-api/typeobj.rst:3043 msgid "int (PyObject *exporter, Py_buffer *view, int flags);" msgstr "" -#: ../../c-api/typeobj.rst:3045 -msgid "" -"Handle a request to *exporter* to fill in *view* as specified by *flags*. " -"Except for point (3), an implementation of this function MUST take these " -"steps:" +msgid "Handle a request to *exporter* to fill in *view* as specified by *flags*. Except for point (3), an implementation of this function MUST take these steps:" msgstr "" -#: ../../c-api/typeobj.rst:3049 -msgid "" -"Check if the request can be met. If not, raise :exc:`BufferError`, set " -"``view->obj`` to ``NULL`` and return ``-1``." +msgid "Check if the request can be met. If not, raise :exc:`BufferError`, set ``view->obj`` to ``NULL`` and return ``-1``." msgstr "" -#: ../../c-api/typeobj.rst:3052 msgid "Fill in the requested fields." msgstr "" -#: ../../c-api/typeobj.rst:3054 msgid "Increment an internal counter for the number of exports." msgstr "" -#: ../../c-api/typeobj.rst:3056 msgid "Set ``view->obj`` to *exporter* and increment ``view->obj``." msgstr "" -#: ../../c-api/typeobj.rst:3058 msgid "Return ``0``." msgstr "" -#: ../../c-api/typeobj.rst:3060 ../../c-api/typeobj.rst:3123 msgid "**Thread safety:**" msgstr "" -#: ../../c-api/typeobj.rst:3062 msgid "In the :term:`free-threaded build`, implementations must ensure:" msgstr "" -#: ../../c-api/typeobj.rst:3064 msgid "The export counter increment in step (3) is atomic." msgstr "" -#: ../../c-api/typeobj.rst:3066 -msgid "" -"The underlying buffer data remains valid and at a stable memory location for " -"the lifetime of all exports." +msgid "The underlying buffer data remains valid and at a stable memory location for the lifetime of all exports." msgstr "" -#: ../../c-api/typeobj.rst:3069 -msgid "" -"For objects that support resizing or reallocation (such " -"as :class:`bytearray`), the export counter is checked atomically before such " -"operations, and :exc:`BufferError` is raised if exports exist." +msgid "For objects that support resizing or reallocation (such as :class:`bytearray`), the export counter is checked atomically before such operations, and :exc:`BufferError` is raised if exports exist." msgstr "" -#: ../../c-api/typeobj.rst:3073 msgid "The function is safe to call concurrently from multiple threads." msgstr "" -#: ../../c-api/typeobj.rst:3075 -msgid "" -"See also :ref:`thread-safety-memoryview` for the Python-level thread safety " -"guarantees of :class:`memoryview` objects." +msgid "See also :ref:`thread-safety-memoryview` for the Python-level thread safety guarantees of :class:`memoryview` objects." msgstr "" -#: ../../c-api/typeobj.rst:3078 -msgid "" -"If *exporter* is part of a chain or tree of buffer providers, two main " -"schemes can be used:" +msgid "If *exporter* is part of a chain or tree of buffer providers, two main schemes can be used:" msgstr "" -#: ../../c-api/typeobj.rst:3081 -msgid "" -"Re-export: Each member of the tree acts as the exporting object and sets " -"``view->obj`` to a new reference to itself." +msgid "Re-export: Each member of the tree acts as the exporting object and sets ``view->obj`` to a new reference to itself." msgstr "" -#: ../../c-api/typeobj.rst:3084 -msgid "" -"Redirect: The buffer request is redirected to the root object of the tree. " -"Here, ``view->obj`` will be a new reference to the root object." +msgid "Redirect: The buffer request is redirected to the root object of the tree. Here, ``view->obj`` will be a new reference to the root object." msgstr "" -#: ../../c-api/typeobj.rst:3088 -msgid "" -"The individual fields of *view* are described in section :ref:`Buffer " -"structure `, the rules how an exporter must react to " -"specific requests are in section :ref:`Buffer request types `." +msgid "The individual fields of *view* are described in section :ref:`Buffer structure `, the rules how an exporter must react to specific requests are in section :ref:`Buffer request types `." msgstr "" -#: ../../c-api/typeobj.rst:3093 -msgid "" -"All memory pointed to in the :c:type:`Py_buffer` structure belongs to the " -"exporter and must remain valid until there are no consumers " -"left. :c:member:`~Py_buffer.format`, :c:member:`~Py_buffer.shape`, :c:member:`~Py_buffer.strides`, :c:member:`~Py_buffer.suboffsets` " -"and :c:member:`~Py_buffer.internal` are read-only for the consumer." +msgid "All memory pointed to in the :c:type:`Py_buffer` structure belongs to the exporter and must remain valid until there are no consumers left. :c:member:`~Py_buffer.format`, :c:member:`~Py_buffer.shape`, :c:member:`~Py_buffer.strides`, :c:member:`~Py_buffer.suboffsets` and :c:member:`~Py_buffer.internal` are read-only for the consumer." msgstr "" -#: ../../c-api/typeobj.rst:3100 -msgid "" -":c:func:`PyBuffer_FillInfo` provides an easy way of exposing a simple bytes " -"buffer while dealing correctly with all request types." +msgid ":c:func:`PyBuffer_FillInfo` provides an easy way of exposing a simple bytes buffer while dealing correctly with all request types." msgstr "" -#: ../../c-api/typeobj.rst:3103 -msgid "" -":c:func:`PyObject_GetBuffer` is the interface for the consumer that wraps " -"this function." +msgid ":c:func:`PyObject_GetBuffer` is the interface for the consumer that wraps this function." msgstr "" -#: ../../c-api/typeobj.rst:3112 msgid "void (PyObject *exporter, Py_buffer *view);" msgstr "" -#: ../../c-api/typeobj.rst:3114 -msgid "" -"Handle a request to release the resources of the buffer. If no resources " -"need to be released, :c:member:`PyBufferProcs.bf_releasebuffer` may be " -"``NULL``. Otherwise, a standard implementation of this function will take " -"these optional steps:" +msgid "Handle a request to release the resources of the buffer. If no resources need to be released, :c:member:`PyBufferProcs.bf_releasebuffer` may be ``NULL``. Otherwise, a standard implementation of this function will take these optional steps:" msgstr "" -#: ../../c-api/typeobj.rst:3119 msgid "Decrement an internal counter for the number of exports." msgstr "" -#: ../../c-api/typeobj.rst:3121 msgid "If the counter is ``0``, free all memory associated with *view*." msgstr "" -#: ../../c-api/typeobj.rst:3125 msgid "In the :term:`free-threaded build`:" msgstr "" -#: ../../c-api/typeobj.rst:3127 msgid "The export counter decrement in step (1) must be atomic." msgstr "" -#: ../../c-api/typeobj.rst:3129 -msgid "" -"Resource cleanup when the counter reaches zero must be done atomically, as " -"the final release may race with concurrent releases from other threads and " -"deallocation must only happen once." +msgid "Resource cleanup when the counter reaches zero must be done atomically, as the final release may race with concurrent releases from other threads and deallocation must only happen once." msgstr "" -#: ../../c-api/typeobj.rst:3133 -msgid "" -"The exporter MUST use the :c:member:`~Py_buffer.internal` field to keep " -"track of buffer-specific resources. This field is guaranteed to remain " -"constant, while a consumer MAY pass a copy of the original buffer as the " -"*view* argument." +msgid "The exporter MUST use the :c:member:`~Py_buffer.internal` field to keep track of buffer-specific resources. This field is guaranteed to remain constant, while a consumer MAY pass a copy of the original buffer as the *view* argument." msgstr "" -#: ../../c-api/typeobj.rst:3139 -msgid "" -"This function MUST NOT decrement ``view->obj``, since that is done " -"automatically in :c:func:`PyBuffer_Release` (this scheme is useful for " -"breaking reference cycles)." +msgid "This function MUST NOT decrement ``view->obj``, since that is done automatically in :c:func:`PyBuffer_Release` (this scheme is useful for breaking reference cycles)." msgstr "" -#: ../../c-api/typeobj.rst:3144 -msgid "" -":c:func:`PyBuffer_Release` is the interface for the consumer that wraps this " -"function." +msgid ":c:func:`PyBuffer_Release` is the interface for the consumer that wraps this function." msgstr "" -#: ../../c-api/typeobj.rst:3152 msgid "Async Object Structures" msgstr "" -#: ../../c-api/typeobj.rst:3160 -msgid "" -"This structure holds pointers to the functions required to " -"implement :term:`awaitable` and :term:`asynchronous iterator` objects." +msgid "This structure holds pointers to the functions required to implement :term:`awaitable` and :term:`asynchronous iterator` objects." msgstr "" -#: ../../c-api/typeobj.rst:3165 msgid "" "typedef struct {\n" " unaryfunc am_await;\n" @@ -4405,161 +2428,99 @@ msgid "" "} PyAsyncMethods;" msgstr "" -#: ../../c-api/typeobj.rst:3178 msgid "PyObject *am_await(PyObject *self);" msgstr "" -#: ../../c-api/typeobj.rst:3180 -msgid "" -"The returned object must be an :term:`iterator`, i.e. :c:func:`PyIter_Check` " -"must return ``1`` for it." +msgid "The returned object must be an :term:`iterator`, i.e. :c:func:`PyIter_Check` must return ``1`` for it." msgstr "" -#: ../../c-api/typeobj.rst:3183 -msgid "" -"This slot may be set to ``NULL`` if an object is not an :term:`awaitable`." +msgid "This slot may be set to ``NULL`` if an object is not an :term:`awaitable`." msgstr "" -#: ../../c-api/typeobj.rst:3191 msgid "PyObject *am_aiter(PyObject *self);" msgstr "" -#: ../../c-api/typeobj.rst:3193 -msgid "" -"Must return an :term:`asynchronous iterator` object. " -"See :meth:`~object.__anext__` for details." +msgid "Must return an :term:`asynchronous iterator` object. See :meth:`~object.__anext__` for details." msgstr "" -#: ../../c-api/typeobj.rst:3196 -msgid "" -"This slot may be set to ``NULL`` if an object does not implement " -"asynchronous iteration protocol." +msgid "This slot may be set to ``NULL`` if an object does not implement asynchronous iteration protocol." msgstr "" -#: ../../c-api/typeobj.rst:3205 msgid "PyObject *am_anext(PyObject *self);" msgstr "" -#: ../../c-api/typeobj.rst:3207 -msgid "" -"Must return an :term:`awaitable` object. See :meth:`~object.__anext__` for " -"details. This slot may be set to ``NULL``." +msgid "Must return an :term:`awaitable` object. See :meth:`~object.__anext__` for details. This slot may be set to ``NULL``." msgstr "" -#: ../../c-api/typeobj.rst:3217 msgid "PySendResult am_send(PyObject *self, PyObject *arg, PyObject **result);" msgstr "" -#: ../../c-api/typeobj.rst:3219 -msgid "" -"See :c:func:`PyIter_Send` for details. This slot may be set to ``NULL``." +msgid "See :c:func:`PyIter_Send` for details. This slot may be set to ``NULL``." msgstr "" -#: ../../c-api/typeobj.rst:3228 msgid "Slot Type typedefs" msgstr "" -#: ../../c-api/typeobj.rst:3232 -msgid "" -"The purpose of this function is to separate memory allocation from memory " -"initialization. It should return a pointer to a block of memory of adequate " -"length for the instance, suitably aligned, and initialized to zeros, but " -"with :c:member:`~PyObject.ob_refcnt` set to ``1`` " -"and :c:member:`~PyObject.ob_type` set to the type argument. If the " -"type's :c:member:`~PyTypeObject.tp_itemsize` is non-zero, the " -"object's :c:member:`~PyVarObject.ob_size` field should be initialized to " -"*nitems* and the length of the allocated memory block should be " -"``tp_basicsize + nitems*tp_itemsize``, rounded up to a multiple of " -"``sizeof(void*)``; otherwise, *nitems* is not used and the length of the " -"block should be :c:member:`~PyTypeObject.tp_basicsize`." -msgstr "" - -#: ../../c-api/typeobj.rst:3242 -msgid "" -"This function should not do any other instance initialization, not even to " -"allocate additional memory; that should be done " -"by :c:member:`~PyTypeObject.tp_new`." +msgid "The purpose of this function is to separate memory allocation from memory initialization. It should return a pointer to a block of memory of adequate length for the instance, suitably aligned, and initialized to zeros, but with :c:member:`~PyObject.ob_refcnt` set to ``1`` and :c:member:`~PyObject.ob_type` set to the type argument. If the type's :c:member:`~PyTypeObject.tp_itemsize` is non-zero, the object's :c:member:`~PyVarObject.ob_size` field should be initialized to *nitems* and the length of the allocated memory block should be ``tp_basicsize + nitems*tp_itemsize``, rounded up to a multiple of ``sizeof(void*)``; otherwise, *nitems* is not used and the length of the block should be :c:member:`~PyTypeObject.tp_basicsize`." +msgstr "" + +msgid "This function should not do any other instance initialization, not even to allocate additional memory; that should be done by :c:member:`~PyTypeObject.tp_new`." msgstr "" -#: ../../c-api/typeobj.rst:3249 msgid "See :c:member:`~PyTypeObject.tp_free`." msgstr "" -#: ../../c-api/typeobj.rst:3253 msgid "See :c:member:`~PyTypeObject.tp_new`." msgstr "" -#: ../../c-api/typeobj.rst:3257 msgid "See :c:member:`~PyTypeObject.tp_init`." msgstr "" -#: ../../c-api/typeobj.rst:3261 msgid "See :c:member:`~PyTypeObject.tp_repr`." msgstr "" -#: ../../c-api/typeobj.rst:3265 ../../c-api/typeobj.rst:3274 msgid "Return the value of the named attribute for the object." msgstr "" -#: ../../c-api/typeobj.rst:3269 ../../c-api/typeobj.rst:3280 -msgid "" -"Set the value of the named attribute for the object. The value argument is " -"set to ``NULL`` to delete the attribute." +msgid "Set the value of the named attribute for the object. The value argument is set to ``NULL`` to delete the attribute." msgstr "" -#: ../../c-api/typeobj.rst:3276 msgid "See :c:member:`~PyTypeObject.tp_getattro`." msgstr "" -#: ../../c-api/typeobj.rst:3283 msgid "See :c:member:`~PyTypeObject.tp_setattro`." msgstr "" -#: ../../c-api/typeobj.rst:3287 msgid "See :c:member:`~PyTypeObject.tp_descr_get`." msgstr "" -#: ../../c-api/typeobj.rst:3291 msgid "See :c:member:`~PyTypeObject.tp_descr_set`." msgstr "" -#: ../../c-api/typeobj.rst:3295 msgid "See :c:member:`~PyTypeObject.tp_hash`." msgstr "" -#: ../../c-api/typeobj.rst:3299 msgid "See :c:member:`~PyTypeObject.tp_richcompare`." msgstr "" -#: ../../c-api/typeobj.rst:3303 msgid "See :c:member:`~PyTypeObject.tp_iter`." msgstr "" -#: ../../c-api/typeobj.rst:3307 msgid "See :c:member:`~PyTypeObject.tp_iternext`." msgstr "" -#: ../../c-api/typeobj.rst:3321 msgid "See :c:member:`~PyAsyncMethods.am_send`." msgstr "" -#: ../../c-api/typeobj.rst:3337 msgid "Examples" msgstr "" -#: ../../c-api/typeobj.rst:3339 -msgid "" -"The following are simple examples of Python type definitions. They include " -"common usage you may encounter. Some demonstrate tricky corner cases. For " -"more examples, practical info, and a tutorial, see :ref:`defining-new-types` " -"and :ref:`new-types-topics`." +msgid "The following are simple examples of Python type definitions. They include common usage you may encounter. Some demonstrate tricky corner cases. For more examples, practical info, and a tutorial, see :ref:`defining-new-types` and :ref:`new-types-topics`." msgstr "" -#: ../../c-api/typeobj.rst:3344 msgid "A basic :ref:`static type `::" msgstr "" -#: ../../c-api/typeobj.rst:3346 msgid "" "typedef struct {\n" " PyObject_HEAD\n" @@ -4577,13 +2538,9 @@ msgid "" "};" msgstr "" -#: ../../c-api/typeobj.rst:3361 -msgid "" -"You may also find older code (especially in the CPython code base) with a " -"more verbose initializer::" +msgid "You may also find older code (especially in the CPython code base) with a more verbose initializer::" msgstr "" -#: ../../c-api/typeobj.rst:3364 msgid "" "static PyTypeObject MyObject_Type = {\n" " PyVarObject_HEAD_INIT(NULL, 0)\n" @@ -4627,11 +2584,9 @@ msgid "" "};" msgstr "" -#: ../../c-api/typeobj.rst:3405 msgid "A type that supports weakrefs, instance dicts, and hashing::" msgstr "" -#: ../../c-api/typeobj.rst:3407 msgid "" "typedef struct {\n" " PyObject_HEAD\n" @@ -4657,14 +2612,9 @@ msgid "" "};" msgstr "" -#: ../../c-api/typeobj.rst:3430 -msgid "" -"A str subclass that cannot be subclassed and cannot be called to create " -"instances (e.g. uses a separate factory func) " -"using :c:macro:`Py_TPFLAGS_DISALLOW_INSTANTIATION` flag::" +msgid "A str subclass that cannot be subclassed and cannot be called to create instances (e.g. uses a separate factory func) using :c:macro:`Py_TPFLAGS_DISALLOW_INSTANTIATION` flag::" msgstr "" -#: ../../c-api/typeobj.rst:3434 msgid "" "typedef struct {\n" " PyUnicodeObject raw;\n" @@ -4682,12 +2632,9 @@ msgid "" "};" msgstr "" -#: ../../c-api/typeobj.rst:3449 -msgid "" -"The simplest :ref:`static type ` with fixed-length instances::" +msgid "The simplest :ref:`static type ` with fixed-length instances::" msgstr "" -#: ../../c-api/typeobj.rst:3451 msgid "" "typedef struct {\n" " PyObject_HEAD\n" @@ -4699,13 +2646,9 @@ msgid "" "};" msgstr "" -#: ../../c-api/typeobj.rst:3460 -msgid "" -"The simplest :ref:`static type ` with variable-length " -"instances::" +msgid "The simplest :ref:`static type ` with variable-length instances::" msgstr "" -#: ../../c-api/typeobj.rst:3462 msgid "" "typedef struct {\n" " PyObject_VAR_HEAD\n" @@ -4720,14 +2663,11 @@ msgid "" "};" msgstr "" -#: ../../c-api/typeobj.rst:920 ../../c-api/typeobj.rst:987 msgid "built-in function" msgstr "" -#: ../../c-api/typeobj.rst:920 msgid "repr" msgstr "" -#: ../../c-api/typeobj.rst:987 msgid "hash" msgstr "" diff --git a/c-api/unicode.po b/c-api/unicode.po index 0be7dd56..03d66dc1 100644 --- a/c-api/unicode.po +++ b/c-api/unicode.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:50+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,2353 +24,1247 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../c-api/unicode.rst:6 msgid "Unicode Objects and Codecs" msgstr "" -#: ../../c-api/unicode.rst:12 msgid "Unicode Objects" msgstr "" -#: ../../c-api/unicode.rst:14 -msgid "" -"Since the implementation of :pep:`393` in Python 3.3, Unicode objects " -"internally use a variety of representations, in order to allow handling the " -"complete range of Unicode characters while staying memory efficient. There " -"are special cases for strings where all code points are below 128, 256, or " -"65536; otherwise, code points must be below 1114112 (which is the full " -"Unicode range)." +msgid "Since the implementation of :pep:`393` in Python 3.3, Unicode objects internally use a variety of representations, in order to allow handling the complete range of Unicode characters while staying memory efficient. There are special cases for strings where all code points are below 128, 256, or 65536; otherwise, code points must be below 1114112 (which is the full Unicode range)." msgstr "" -#: ../../c-api/unicode.rst:20 -msgid "" -"UTF-8 representation is created on demand and cached in the Unicode object." +msgid "UTF-8 representation is created on demand and cached in the Unicode object." msgstr "" -#: ../../c-api/unicode.rst:23 -msgid "" -"The :c:type:`Py_UNICODE` representation has been removed since Python 3.12 " -"with deprecated APIs. See :pep:`623` for more information." +msgid "The :c:type:`Py_UNICODE` representation has been removed since Python 3.12 with deprecated APIs. See :pep:`623` for more information." msgstr "" -#: ../../c-api/unicode.rst:29 msgid "Unicode Type" msgstr "" -#: ../../c-api/unicode.rst:31 -msgid "" -"These are the basic Unicode object types used for the Unicode implementation " -"in Python:" +msgid "These are the basic Unicode object types used for the Unicode implementation in Python:" msgstr "" -#: ../../c-api/unicode.rst:36 -msgid "" -"This instance of :c:type:`PyTypeObject` represents the Python Unicode type. " -"It is exposed to Python code as :py:class:`str`." +msgid "This instance of :c:type:`PyTypeObject` represents the Python Unicode type. It is exposed to Python code as :py:class:`str`." msgstr "" -#: ../../c-api/unicode.rst:42 -msgid "" -"This instance of :c:type:`PyTypeObject` represents the Python Unicode " -"iterator type. It is used to iterate over Unicode string objects." +msgid "This instance of :c:type:`PyTypeObject` represents the Python Unicode iterator type. It is used to iterate over Unicode string objects." msgstr "" -#: ../../c-api/unicode.rst:50 -msgid "" -"These types are typedefs for unsigned integer types wide enough to contain " -"characters of 32 bits, 16 bits and 8 bits, respectively. When dealing with " -"single Unicode characters, use :c:type:`Py_UCS4`." +msgid "These types are typedefs for unsigned integer types wide enough to contain characters of 32 bits, 16 bits and 8 bits, respectively. When dealing with single Unicode characters, use :c:type:`Py_UCS4`." msgstr "" -#: ../../c-api/unicode.rst:61 -msgid "" -"These subtypes of :c:type:`PyObject` represent a Python Unicode object. In " -"almost all cases, they shouldn't be used directly, since all API functions " -"that deal with Unicode objects take and return :c:type:`PyObject` pointers." +msgid "These subtypes of :c:type:`PyObject` represent a Python Unicode object. In almost all cases, they shouldn't be used directly, since all API functions that deal with Unicode objects take and return :c:type:`PyObject` pointers." msgstr "" -#: ../../c-api/unicode.rst:68 -msgid "" -"The structure of a particular object can be determined using the following " -"macros. The macros cannot fail; their behavior is undefined if their " -"argument is not a Python Unicode object." +msgid "The structure of a particular object can be determined using the following macros. The macros cannot fail; their behavior is undefined if their argument is not a Python Unicode object." msgstr "" -#: ../../c-api/unicode.rst:77 msgid "True if *o* uses the :c:struct:`PyCompactUnicodeObject` structure." msgstr "" -#: ../../c-api/unicode.rst:84 msgid "True if *o* uses the :c:struct:`PyASCIIObject` structure." msgstr "" -#: ../../c-api/unicode.rst:89 -msgid "" -"The following APIs are C macros and static inlined functions for fast checks " -"and access to internal read-only data of Unicode objects:" +msgid "The following APIs are C macros and static inlined functions for fast checks and access to internal read-only data of Unicode objects:" msgstr "" -#: ../../c-api/unicode.rst:94 -msgid "" -"Return true if the object *obj* is a Unicode object or an instance of a " -"Unicode subtype. This function always succeeds." +msgid "Return true if the object *obj* is a Unicode object or an instance of a Unicode subtype. This function always succeeds." msgstr "" -#: ../../c-api/unicode.rst:100 -msgid "" -"Return true if the object *obj* is a Unicode object, but not an instance of " -"a subtype. This function always succeeds." +msgid "Return true if the object *obj* is a Unicode object, but not an instance of a subtype. This function always succeeds." msgstr "" -#: ../../c-api/unicode.rst:106 -msgid "" -"Return the length of the Unicode string, in code points. *unicode* has to " -"be a Unicode object in the \"canonical\" representation (not checked)." +msgid "Return the length of the Unicode string, in code points. *unicode* has to be a Unicode object in the \"canonical\" representation (not checked)." msgstr "" -#: ../../c-api/unicode.rst:116 -msgid "" -"Return a pointer to the canonical representation cast to UCS1, UCS2 or UCS4 " -"integer types for direct character access. No checks are performed if the " -"canonical representation has the correct character size; " -"use :c:func:`PyUnicode_KIND` to select the right function." +msgid "Return a pointer to the canonical representation cast to UCS1, UCS2 or UCS4 integer types for direct character access. No checks are performed if the canonical representation has the correct character size; use :c:func:`PyUnicode_KIND` to select the right function." msgstr "" -#: ../../c-api/unicode.rst:128 msgid "Return values of the :c:func:`PyUnicode_KIND` macro." msgstr "" -#: ../../c-api/unicode.rst:132 msgid "``PyUnicode_WCHAR_KIND`` has been removed." msgstr "" -#: ../../c-api/unicode.rst:138 -msgid "" -"Return one of the PyUnicode kind constants (see above) that indicate how " -"many bytes per character this Unicode object uses to store its data. " -"*unicode* has to be a Unicode object in the \"canonical\" representation " -"(not checked)." +msgid "Return one of the PyUnicode kind constants (see above) that indicate how many bytes per character this Unicode object uses to store its data. *unicode* has to be a Unicode object in the \"canonical\" representation (not checked)." msgstr "" -#: ../../c-api/unicode.rst:147 -msgid "" -"Return a void pointer to the raw Unicode buffer. *unicode* has to be a " -"Unicode object in the \"canonical\" representation (not checked)." +msgid "Return a void pointer to the raw Unicode buffer. *unicode* has to be a Unicode object in the \"canonical\" representation (not checked)." msgstr "" -#: ../../c-api/unicode.rst:156 -msgid "" -"Write the code point *value* to the given zero-based *index* in a string." +msgid "Write the code point *value* to the given zero-based *index* in a string." msgstr "" -#: ../../c-api/unicode.rst:158 -msgid "" -"The *kind* value and *data* pointer must have been obtained from a string " -"using :c:func:`PyUnicode_KIND` and :c:func:`PyUnicode_DATA` respectively. " -"You must hold a reference to that string while calling :c:func:`!" -"PyUnicode_WRITE`. All requirements of :c:func:`PyUnicode_WriteChar` also " -"apply." +msgid "The *kind* value and *data* pointer must have been obtained from a string using :c:func:`PyUnicode_KIND` and :c:func:`PyUnicode_DATA` respectively. You must hold a reference to that string while calling :c:func:`!PyUnicode_WRITE`. All requirements of :c:func:`PyUnicode_WriteChar` also apply." msgstr "" -#: ../../c-api/unicode.rst:164 -msgid "" -"The function performs no checks for any of its requirements, and is intended " -"for usage in loops." +msgid "The function performs no checks for any of its requirements, and is intended for usage in loops." msgstr "" -#: ../../c-api/unicode.rst:173 -msgid "" -"Read a code point from a canonical representation *data* (as obtained " -"with :c:func:`PyUnicode_DATA`). No checks or ready calls are performed." +msgid "Read a code point from a canonical representation *data* (as obtained with :c:func:`PyUnicode_DATA`). No checks or ready calls are performed." msgstr "" -#: ../../c-api/unicode.rst:181 -msgid "" -"Read a character from a Unicode object *unicode*, which must be in the " -"\"canonical\" representation. This is less efficient " -"than :c:func:`PyUnicode_READ` if you do multiple consecutive reads." +msgid "Read a character from a Unicode object *unicode*, which must be in the \"canonical\" representation. This is less efficient than :c:func:`PyUnicode_READ` if you do multiple consecutive reads." msgstr "" -#: ../../c-api/unicode.rst:190 -msgid "" -"Return the maximum code point that is suitable for creating another string " -"based on *unicode*, which must be in the \"canonical\" representation. This " -"is always an approximation but more efficient than iterating over the string." +msgid "Return the maximum code point that is suitable for creating another string based on *unicode*, which must be in the \"canonical\" representation. This is always an approximation but more efficient than iterating over the string." msgstr "" -#: ../../c-api/unicode.rst:199 -msgid "" -"Return ``1`` if the string is a valid identifier according to the language " -"definition, section :ref:`identifiers`. Return ``0`` otherwise." +msgid "Return ``1`` if the string is a valid identifier according to the language definition, section :ref:`identifiers`. Return ``0`` otherwise." msgstr "" -#: ../../c-api/unicode.rst:202 -msgid "" -"The function does not call :c:func:`Py_FatalError` anymore if the string is " -"not ready." +msgid "The function does not call :c:func:`Py_FatalError` anymore if the string is not ready." msgstr "" -#: ../../c-api/unicode.rst:209 -msgid "" -"Return true if the string only contains ASCII characters. Equivalent " -"to :py:meth:`str.isascii`." +msgid "Return true if the string only contains ASCII characters. Equivalent to :py:meth:`str.isascii`." msgstr "" -#: ../../c-api/unicode.rst:216 msgid "Unicode Character Properties" msgstr "" -#: ../../c-api/unicode.rst:218 -msgid "" -"Unicode provides many different character properties. The most often needed " -"ones are available through these macros which are mapped to C functions " -"depending on the Python configuration." +msgid "Unicode provides many different character properties. The most often needed ones are available through these macros which are mapped to C functions depending on the Python configuration." msgstr "" -#: ../../c-api/unicode.rst:225 -msgid "" -"Return ``1`` or ``0`` depending on whether *ch* is a whitespace character." +msgid "Return ``1`` or ``0`` depending on whether *ch* is a whitespace character." msgstr "" -#: ../../c-api/unicode.rst:230 -msgid "" -"Return ``1`` or ``0`` depending on whether *ch* is a lowercase character." +msgid "Return ``1`` or ``0`` depending on whether *ch* is a lowercase character." msgstr "" -#: ../../c-api/unicode.rst:235 -msgid "" -"Return ``1`` or ``0`` depending on whether *ch* is an uppercase character." +msgid "Return ``1`` or ``0`` depending on whether *ch* is an uppercase character." msgstr "" -#: ../../c-api/unicode.rst:240 -msgid "" -"Return ``1`` or ``0`` depending on whether *ch* is a titlecase character." +msgid "Return ``1`` or ``0`` depending on whether *ch* is a titlecase character." msgstr "" -#: ../../c-api/unicode.rst:245 -msgid "" -"Return ``1`` or ``0`` depending on whether *ch* is a linebreak character." +msgid "Return ``1`` or ``0`` depending on whether *ch* is a linebreak character." msgstr "" -#: ../../c-api/unicode.rst:250 msgid "Return ``1`` or ``0`` depending on whether *ch* is a decimal character." msgstr "" -#: ../../c-api/unicode.rst:255 msgid "Return ``1`` or ``0`` depending on whether *ch* is a digit character." msgstr "" -#: ../../c-api/unicode.rst:260 msgid "Return ``1`` or ``0`` depending on whether *ch* is a numeric character." msgstr "" -#: ../../c-api/unicode.rst:265 -msgid "" -"Return ``1`` or ``0`` depending on whether *ch* is an alphabetic character." +msgid "Return ``1`` or ``0`` depending on whether *ch* is an alphabetic character." msgstr "" -#: ../../c-api/unicode.rst:270 -msgid "" -"Return ``1`` or ``0`` depending on whether *ch* is an alphanumeric character." +msgid "Return ``1`` or ``0`` depending on whether *ch* is an alphanumeric character." msgstr "" -#: ../../c-api/unicode.rst:275 -msgid "" -"Return ``1`` or ``0`` depending on whether *ch* is a printable character, in " -"the sense of :meth:`str.isprintable`." +msgid "Return ``1`` or ``0`` depending on whether *ch* is a printable character, in the sense of :meth:`str.isprintable`." msgstr "" -#: ../../c-api/unicode.rst:279 msgid "These APIs can be used for fast direct character conversions:" msgstr "" -#: ../../c-api/unicode.rst:284 msgid "Return the character *ch* converted to lower case." msgstr "" -#: ../../c-api/unicode.rst:289 msgid "Return the character *ch* converted to upper case." msgstr "" -#: ../../c-api/unicode.rst:294 msgid "Return the character *ch* converted to title case." msgstr "" -#: ../../c-api/unicode.rst:299 -msgid "" -"Return the character *ch* converted to a decimal positive integer. Return " -"``-1`` if this is not possible. This function does not raise exceptions." +msgid "Return the character *ch* converted to a decimal positive integer. Return ``-1`` if this is not possible. This function does not raise exceptions." msgstr "" -#: ../../c-api/unicode.rst:305 -msgid "" -"Return the character *ch* converted to a single digit integer. Return ``-1`` " -"if this is not possible. This function does not raise exceptions." +msgid "Return the character *ch* converted to a single digit integer. Return ``-1`` if this is not possible. This function does not raise exceptions." msgstr "" -#: ../../c-api/unicode.rst:311 -msgid "" -"Return the character *ch* converted to a double. Return ``-1.0`` if this is " -"not possible. This function does not raise exceptions." +msgid "Return the character *ch* converted to a double. Return ``-1.0`` if this is not possible. This function does not raise exceptions." msgstr "" -#: ../../c-api/unicode.rst:315 msgid "These APIs can be used to work with surrogates:" msgstr "" -#: ../../c-api/unicode.rst:319 msgid "Check if *ch* is a surrogate (``0xD800 <= ch <= 0xDFFF``)." msgstr "" -#: ../../c-api/unicode.rst:323 msgid "Check if *ch* is a high surrogate (``0xD800 <= ch <= 0xDBFF``)." msgstr "" -#: ../../c-api/unicode.rst:327 msgid "Check if *ch* is a low surrogate (``0xDC00 <= ch <= 0xDFFF``)." msgstr "" -#: ../../c-api/unicode.rst:331 -msgid "" -"Return the high UTF-16 surrogate (``0xD800`` to ``0xDBFF``) for a Unicode " -"code point in the range ``[0x10000; 0x10FFFF]``." +msgid "Return the high UTF-16 surrogate (``0xD800`` to ``0xDBFF``) for a Unicode code point in the range ``[0x10000; 0x10FFFF]``." msgstr "" -#: ../../c-api/unicode.rst:336 -msgid "" -"Return the low UTF-16 surrogate (``0xDC00`` to ``0xDFFF``) for a Unicode " -"code point in the range ``[0x10000; 0x10FFFF]``." +msgid "Return the low UTF-16 surrogate (``0xDC00`` to ``0xDFFF``) for a Unicode code point in the range ``[0x10000; 0x10FFFF]``." msgstr "" -#: ../../c-api/unicode.rst:341 -msgid "" -"Join two surrogate code points and return a single :c:type:`Py_UCS4` value. " -"*high* and *low* are respectively the leading and trailing surrogates in a " -"surrogate pair. *high* must be in the range ``[0xD800; 0xDBFF]`` and *low* " -"must be in the range ``[0xDC00; 0xDFFF]``." +msgid "Join two surrogate code points and return a single :c:type:`Py_UCS4` value. *high* and *low* are respectively the leading and trailing surrogates in a surrogate pair. *high* must be in the range ``[0xD800; 0xDBFF]`` and *low* must be in the range ``[0xDC00; 0xDFFF]``." msgstr "" -#: ../../c-api/unicode.rst:348 msgid "Creating and accessing Unicode strings" msgstr "" -#: ../../c-api/unicode.rst:350 -msgid "" -"To create Unicode objects and access their basic sequence properties, use " -"these APIs:" +msgid "To create Unicode objects and access their basic sequence properties, use these APIs:" msgstr "" -#: ../../c-api/unicode.rst:355 -msgid "" -"Create a new Unicode object. *maxchar* should be the true maximum code " -"point to be placed in the string. As an approximation, it can be rounded up " -"to the nearest value in the sequence 127, 255, 65535, 1114111." +msgid "Create a new Unicode object. *maxchar* should be the true maximum code point to be placed in the string. As an approximation, it can be rounded up to the nearest value in the sequence 127, 255, 65535, 1114111." msgstr "" -#: ../../c-api/unicode.rst:359 msgid "On error, set an exception and return ``NULL``." msgstr "" -#: ../../c-api/unicode.rst:361 -msgid "" -"After creation, the string can be filled " -"by :c:func:`PyUnicode_WriteChar`, :c:func:`PyUnicode_CopyCharacters`, :c:func:`PyUnicode_Fill`, :c:func:`PyUnicode_WRITE` " -"or similar. Since strings are supposed to be immutable, take care to not " -"“use” the result while it is being modified. In particular, before it's " -"filled with its final contents, a string:" +msgid "After creation, the string can be filled by :c:func:`PyUnicode_WriteChar`, :c:func:`PyUnicode_CopyCharacters`, :c:func:`PyUnicode_Fill`, :c:func:`PyUnicode_WRITE` or similar. Since strings are supposed to be immutable, take care to not “use” the result while it is being modified. In particular, before it's filled with its final contents, a string:" msgstr "" -#: ../../c-api/unicode.rst:368 msgid "must not be hashed," msgstr "" -#: ../../c-api/unicode.rst:369 -msgid "" -"must not be :c:func:`converted to UTF-8 `, or " -"another non-\"canonical\" representation," +msgid "must not be :c:func:`converted to UTF-8 `, or another non-\"canonical\" representation," msgstr "" -#: ../../c-api/unicode.rst:371 msgid "must not have its reference count changed," msgstr "" -#: ../../c-api/unicode.rst:372 msgid "must not be shared with code that might do one of the above." msgstr "" -#: ../../c-api/unicode.rst:374 -msgid "" -"This list is not exhaustive. Avoiding these uses is your responsibility; " -"Python does not always check these requirements." +msgid "This list is not exhaustive. Avoiding these uses is your responsibility; Python does not always check these requirements." msgstr "" -#: ../../c-api/unicode.rst:377 -msgid "" -"To avoid accidentally exposing a partially-written string object, prefer " -"using the :c:type:`PyUnicodeWriter` API, or one of the ``PyUnicode_From*`` " -"functions below." +msgid "To avoid accidentally exposing a partially-written string object, prefer using the :c:type:`PyUnicodeWriter` API, or one of the ``PyUnicode_From*`` functions below." msgstr "" -#: ../../c-api/unicode.rst:388 -msgid "" -"Create a new Unicode object with the given *kind* (possible values " -"are :c:macro:`PyUnicode_1BYTE_KIND` etc., as returned " -"by :c:func:`PyUnicode_KIND`). The *buffer* must point to an array of *size* " -"units of 1, 2 or 4 bytes per character, as given by the kind." +msgid "Create a new Unicode object with the given *kind* (possible values are :c:macro:`PyUnicode_1BYTE_KIND` etc., as returned by :c:func:`PyUnicode_KIND`). The *buffer* must point to an array of *size* units of 1, 2 or 4 bytes per character, as given by the kind." msgstr "" -#: ../../c-api/unicode.rst:393 -msgid "" -"If necessary, the input *buffer* is copied and transformed into the " -"canonical representation. For example, if the *buffer* is a UCS4 string " -"(:c:macro:`PyUnicode_4BYTE_KIND`) and it consists only of codepoints in the " -"UCS1 range, it will be transformed into UCS1 " -"(:c:macro:`PyUnicode_1BYTE_KIND`)." +msgid "If necessary, the input *buffer* is copied and transformed into the canonical representation. For example, if the *buffer* is a UCS4 string (:c:macro:`PyUnicode_4BYTE_KIND`) and it consists only of codepoints in the UCS1 range, it will be transformed into UCS1 (:c:macro:`PyUnicode_1BYTE_KIND`)." msgstr "" -#: ../../c-api/unicode.rst:404 -msgid "" -"Create a Unicode object from the char buffer *str*. The bytes will be " -"interpreted as being UTF-8 encoded. The buffer is copied into the new " -"object. The return value might be a shared object, i.e. modification of the " -"data is not allowed." +msgid "Create a Unicode object from the char buffer *str*. The bytes will be interpreted as being UTF-8 encoded. The buffer is copied into the new object. The return value might be a shared object, i.e. modification of the data is not allowed." msgstr "" -#: ../../c-api/unicode.rst:410 msgid "This function raises :exc:`SystemError` when:" msgstr "" -#: ../../c-api/unicode.rst:412 msgid "*size* < 0," msgstr "" -#: ../../c-api/unicode.rst:413 msgid "*str* is ``NULL`` and *size* > 0" msgstr "" -#: ../../c-api/unicode.rst:415 msgid "*str* == ``NULL`` with *size* > 0 is not allowed anymore." msgstr "" -#: ../../c-api/unicode.rst:421 -msgid "" -"Create a Unicode object from a UTF-8 encoded null-terminated char buffer " -"*str*." +msgid "Create a Unicode object from a UTF-8 encoded null-terminated char buffer *str*." msgstr "" -#: ../../c-api/unicode.rst:427 -msgid "" -"Take a C :c:func:`printf`\\ -style *format* string and a variable number of " -"arguments, calculate the size of the resulting Python Unicode string and " -"return a string with the values formatted into it. The variable arguments " -"must be C types and must correspond exactly to the format characters in the " -"*format* ASCII-encoded string." +msgid "Take a C :c:func:`printf`\\ -style *format* string and a variable number of arguments, calculate the size of the resulting Python Unicode string and return a string with the values formatted into it. The variable arguments must be C types and must correspond exactly to the format characters in the *format* ASCII-encoded string." msgstr "" -#: ../../c-api/unicode.rst:433 -msgid "" -"A conversion specifier contains two or more characters and has the following " -"components, which must occur in this order:" +msgid "A conversion specifier contains two or more characters and has the following components, which must occur in this order:" msgstr "" -#: ../../c-api/unicode.rst:436 msgid "The ``'%'`` character, which marks the start of the specifier." msgstr "" -#: ../../c-api/unicode.rst:438 -msgid "" -"Conversion flags (optional), which affect the result of some conversion " -"types." +msgid "Conversion flags (optional), which affect the result of some conversion types." msgstr "" -#: ../../c-api/unicode.rst:441 -msgid "" -"Minimum field width (optional). If specified as an ``'*'`` (asterisk), the " -"actual width is given in the next argument, which must be of " -"type :c:expr:`int`, and the object to convert comes after the minimum field " -"width and optional precision." +msgid "Minimum field width (optional). If specified as an ``'*'`` (asterisk), the actual width is given in the next argument, which must be of type :c:expr:`int`, and the object to convert comes after the minimum field width and optional precision." msgstr "" -#: ../../c-api/unicode.rst:446 -msgid "" -"Precision (optional), given as a ``'.'`` (dot) followed by the precision. If " -"specified as ``'*'`` (an asterisk), the actual precision is given in the " -"next argument, which must be of type :c:expr:`int`, and the value to convert " -"comes after the precision." +msgid "Precision (optional), given as a ``'.'`` (dot) followed by the precision. If specified as ``'*'`` (an asterisk), the actual precision is given in the next argument, which must be of type :c:expr:`int`, and the value to convert comes after the precision." msgstr "" -#: ../../c-api/unicode.rst:451 msgid "Length modifier (optional)." msgstr "" -#: ../../c-api/unicode.rst:453 msgid "Conversion type." msgstr "" -#: ../../c-api/unicode.rst:455 msgid "The conversion flag characters are:" msgstr "" -#: ../../c-api/unicode.rst:460 msgid "Flag" msgstr "" -#: ../../c-api/unicode.rst:460 msgid "Meaning" msgstr "" -#: ../../c-api/unicode.rst:462 msgid "``0``" msgstr "" -#: ../../c-api/unicode.rst:462 msgid "The conversion will be zero padded for numeric values." msgstr "" -#: ../../c-api/unicode.rst:464 msgid "``-``" msgstr "" -#: ../../c-api/unicode.rst:464 -msgid "" -"The converted value is left adjusted (overrides the ``0`` flag if both are " -"given)." +msgid "The converted value is left adjusted (overrides the ``0`` flag if both are given)." msgstr "" -#: ../../c-api/unicode.rst:468 -msgid "" -"The length modifiers for following integer conversions (``d``, ``i``, ``o``, " -"``u``, ``x``, or ``X``) specify the type of the argument (:c:expr:`int` by " -"default):" +msgid "The length modifiers for following integer conversions (``d``, ``i``, ``o``, ``u``, ``x``, or ``X``) specify the type of the argument (:c:expr:`int` by default):" msgstr "" -#: ../../c-api/unicode.rst:475 msgid "Modifier" msgstr "" -#: ../../c-api/unicode.rst:475 msgid "Types" msgstr "" -#: ../../c-api/unicode.rst:477 msgid "``l``" msgstr "" -#: ../../c-api/unicode.rst:477 msgid ":c:expr:`long` or :c:expr:`unsigned long`" msgstr "" -#: ../../c-api/unicode.rst:479 msgid "``ll``" msgstr "" -#: ../../c-api/unicode.rst:479 msgid ":c:expr:`long long` or :c:expr:`unsigned long long`" msgstr "" -#: ../../c-api/unicode.rst:481 msgid "``j``" msgstr "" -#: ../../c-api/unicode.rst:481 msgid ":c:type:`intmax_t` or :c:type:`uintmax_t`" msgstr "" -#: ../../c-api/unicode.rst:483 msgid "``z``" msgstr "" -#: ../../c-api/unicode.rst:483 msgid ":c:type:`size_t` or :c:type:`ssize_t`" msgstr "" -#: ../../c-api/unicode.rst:485 msgid "``t``" msgstr "" -#: ../../c-api/unicode.rst:485 msgid ":c:type:`ptrdiff_t`" msgstr "" -#: ../../c-api/unicode.rst:488 -msgid "" -"The length modifier ``l`` for following conversions ``s`` or ``V`` specify " -"that the type of the argument is :c:expr:`const wchar_t*`." +msgid "The length modifier ``l`` for following conversions ``s`` or ``V`` specify that the type of the argument is :c:expr:`const wchar_t*`." msgstr "" -#: ../../c-api/unicode.rst:491 msgid "The conversion specifiers are:" msgstr "" -#: ../../c-api/unicode.rst:497 msgid "Conversion Specifier" msgstr "" -#: ../../c-api/unicode.rst:498 msgid "Type" msgstr "" -#: ../../c-api/unicode.rst:499 msgid "Comment" msgstr "" -#: ../../c-api/unicode.rst:501 msgid "``%``" msgstr "" -#: ../../c-api/unicode.rst:502 msgid "*n/a*" msgstr "" -#: ../../c-api/unicode.rst:503 msgid "The literal ``%`` character." msgstr "" -#: ../../c-api/unicode.rst:505 msgid "``d``, ``i``" msgstr "" -#: ../../c-api/unicode.rst:506 ../../c-api/unicode.rst:510 -#: ../../c-api/unicode.rst:514 ../../c-api/unicode.rst:518 -#: ../../c-api/unicode.rst:522 msgid "Specified by the length modifier" msgstr "" -#: ../../c-api/unicode.rst:507 msgid "The decimal representation of a signed C integer." msgstr "" -#: ../../c-api/unicode.rst:509 msgid "``u``" msgstr "" -#: ../../c-api/unicode.rst:511 msgid "The decimal representation of an unsigned C integer." msgstr "" -#: ../../c-api/unicode.rst:513 msgid "``o``" msgstr "" -#: ../../c-api/unicode.rst:515 msgid "The octal representation of an unsigned C integer." msgstr "" -#: ../../c-api/unicode.rst:517 msgid "``x``" msgstr "" -#: ../../c-api/unicode.rst:519 msgid "The hexadecimal representation of an unsigned C integer (lowercase)." msgstr "" -#: ../../c-api/unicode.rst:521 msgid "``X``" msgstr "" -#: ../../c-api/unicode.rst:523 msgid "The hexadecimal representation of an unsigned C integer (uppercase)." msgstr "" -#: ../../c-api/unicode.rst:525 msgid "``c``" msgstr "" -#: ../../c-api/unicode.rst:526 msgid ":c:expr:`int`" msgstr "" -#: ../../c-api/unicode.rst:527 msgid "A single character." msgstr "" -#: ../../c-api/unicode.rst:529 msgid "``s``" msgstr "" -#: ../../c-api/unicode.rst:530 msgid ":c:expr:`const char*` or :c:expr:`const wchar_t*`" msgstr "" -#: ../../c-api/unicode.rst:531 msgid "A null-terminated C character array." msgstr "" -#: ../../c-api/unicode.rst:533 msgid "``p``" msgstr "" -#: ../../c-api/unicode.rst:534 msgid ":c:expr:`const void*`" msgstr "" -#: ../../c-api/unicode.rst:535 -msgid "" -"The hex representation of a C pointer. Mostly equivalent to " -"``printf(\"%p\")`` except that it is guaranteed to start with the literal " -"``0x`` regardless of what the platform's ``printf`` yields." +msgid "The hex representation of a C pointer. Mostly equivalent to ``printf(\"%p\")`` except that it is guaranteed to start with the literal ``0x`` regardless of what the platform's ``printf`` yields." msgstr "" -#: ../../c-api/unicode.rst:540 msgid "``A``" msgstr "" -#: ../../c-api/unicode.rst:541 ../../c-api/unicode.rst:545 -#: ../../c-api/unicode.rst:555 ../../c-api/unicode.rst:559 -#: ../../c-api/unicode.rst:563 ../../c-api/unicode.rst:568 msgid ":c:expr:`PyObject*`" msgstr "" -#: ../../c-api/unicode.rst:542 msgid "The result of calling :func:`ascii`." msgstr "" -#: ../../c-api/unicode.rst:544 msgid "``U``" msgstr "" -#: ../../c-api/unicode.rst:546 msgid "A Unicode object." msgstr "" -#: ../../c-api/unicode.rst:548 msgid "``V``" msgstr "" -#: ../../c-api/unicode.rst:549 msgid ":c:expr:`PyObject*`, :c:expr:`const char*` or :c:expr:`const wchar_t*`" msgstr "" -#: ../../c-api/unicode.rst:550 -msgid "" -"A Unicode object (which may be ``NULL``) and a null-terminated C character " -"array as a second parameter (which will be used, if the first parameter is " -"``NULL``)." +msgid "A Unicode object (which may be ``NULL``) and a null-terminated C character array as a second parameter (which will be used, if the first parameter is ``NULL``)." msgstr "" -#: ../../c-api/unicode.rst:554 msgid "``S``" msgstr "" -#: ../../c-api/unicode.rst:556 msgid "The result of calling :c:func:`PyObject_Str`." msgstr "" -#: ../../c-api/unicode.rst:558 msgid "``R``" msgstr "" -#: ../../c-api/unicode.rst:560 msgid "The result of calling :c:func:`PyObject_Repr`." msgstr "" -#: ../../c-api/unicode.rst:562 msgid "``T``" msgstr "" -#: ../../c-api/unicode.rst:564 -msgid "" -"Get the fully qualified name of an object type; " -"call :c:func:`PyType_GetFullyQualifiedName`." +msgid "Get the fully qualified name of an object type; call :c:func:`PyType_GetFullyQualifiedName`." msgstr "" -#: ../../c-api/unicode.rst:567 msgid "``#T``" msgstr "" -#: ../../c-api/unicode.rst:569 -msgid "" -"Similar to ``T`` format, but use a colon (``:``) as separator between the " -"module name and the qualified name." +msgid "Similar to ``T`` format, but use a colon (``:``) as separator between the module name and the qualified name." msgstr "" -#: ../../c-api/unicode.rst:572 msgid "``N``" msgstr "" -#: ../../c-api/unicode.rst:573 ../../c-api/unicode.rst:578 msgid ":c:expr:`PyTypeObject*`" msgstr "" -#: ../../c-api/unicode.rst:574 -msgid "" -"Get the fully qualified name of a type; " -"call :c:func:`PyType_GetFullyQualifiedName`." +msgid "Get the fully qualified name of a type; call :c:func:`PyType_GetFullyQualifiedName`." msgstr "" -#: ../../c-api/unicode.rst:577 msgid "``#N``" msgstr "" -#: ../../c-api/unicode.rst:579 -msgid "" -"Similar to ``N`` format, but use a colon (``:``) as separator between the " -"module name and the qualified name." +msgid "Similar to ``N`` format, but use a colon (``:``) as separator between the module name and the qualified name." msgstr "" -#: ../../c-api/unicode.rst:583 -msgid "" -"The width formatter unit is number of characters rather than bytes. The " -"precision formatter unit is number of bytes or :c:type:`wchar_t` items (if " -"the length modifier ``l`` is used) for ``\"%s\"`` and ``\"%V\"`` (if the " -"``PyObject*`` argument is ``NULL``), and a number of characters for " -"``\"%A\"``, ``\"%U\"``, ``\"%S\"``, ``\"%R\"`` and ``\"%V\"`` (if the " -"``PyObject*`` argument is not ``NULL``)." +msgid "The width formatter unit is number of characters rather than bytes. The precision formatter unit is number of bytes or :c:type:`wchar_t` items (if the length modifier ``l`` is used) for ``\"%s\"`` and ``\"%V\"`` (if the ``PyObject*`` argument is ``NULL``), and a number of characters for ``\"%A\"``, ``\"%U\"``, ``\"%S\"``, ``\"%R\"`` and ``\"%V\"`` (if the ``PyObject*`` argument is not ``NULL``)." msgstr "" -#: ../../c-api/unicode.rst:591 -msgid "" -"Unlike to C :c:func:`printf` the ``0`` flag has effect even when a precision " -"is given for integer conversions (``d``, ``i``, ``u``, ``o``, ``x``, or " -"``X``)." +msgid "Unlike to C :c:func:`printf` the ``0`` flag has effect even when a precision is given for integer conversions (``d``, ``i``, ``u``, ``o``, ``x``, or ``X``)." msgstr "" -#: ../../c-api/unicode.rst:595 msgid "Support for ``\"%lld\"`` and ``\"%llu\"`` added." msgstr "" -#: ../../c-api/unicode.rst:598 msgid "Support for ``\"%li\"``, ``\"%lli\"`` and ``\"%zi\"`` added." msgstr "" -#: ../../c-api/unicode.rst:601 -msgid "" -"Support width and precision formatter for ``\"%s\"``, ``\"%A\"``, " -"``\"%U\"``, ``\"%V\"``, ``\"%S\"``, ``\"%R\"`` added." +msgid "Support width and precision formatter for ``\"%s\"``, ``\"%A\"``, ``\"%U\"``, ``\"%V\"``, ``\"%S\"``, ``\"%R\"`` added." msgstr "" -#: ../../c-api/unicode.rst:605 -msgid "" -"Support for conversion specifiers ``o`` and ``X``. Support for length " -"modifiers ``j`` and ``t``. Length modifiers are now applied to all integer " -"conversions. Length modifier ``l`` is now applied to conversion specifiers " -"``s`` and ``V``. Support for variable width and precision ``*``. Support for " -"flag ``-``." +msgid "Support for conversion specifiers ``o`` and ``X``. Support for length modifiers ``j`` and ``t``. Length modifiers are now applied to all integer conversions. Length modifier ``l`` is now applied to conversion specifiers ``s`` and ``V``. Support for variable width and precision ``*``. Support for flag ``-``." msgstr "" -#: ../../c-api/unicode.rst:613 -msgid "" -"An unrecognized format character now sets a :exc:`SystemError`. In previous " -"versions it caused all the rest of the format string to be copied as-is to " -"the result string, and any extra arguments discarded." +msgid "An unrecognized format character now sets a :exc:`SystemError`. In previous versions it caused all the rest of the format string to be copied as-is to the result string, and any extra arguments discarded." msgstr "" -#: ../../c-api/unicode.rst:617 msgid "Support for ``%T``, ``%#T``, ``%N`` and ``%#N`` formats added." msgstr "" -#: ../../c-api/unicode.rst:623 -msgid "" -"Identical to :c:func:`PyUnicode_FromFormat` except that it takes exactly two " -"arguments." +msgid "Identical to :c:func:`PyUnicode_FromFormat` except that it takes exactly two arguments." msgstr "" -#: ../../c-api/unicode.rst:629 -msgid "" -"Copy an instance of a Unicode subtype to a new true Unicode object if " -"necessary. If *obj* is already a true Unicode object (not a subtype), return " -"a new :term:`strong reference` to the object." +msgid "Copy an instance of a Unicode subtype to a new true Unicode object if necessary. If *obj* is already a true Unicode object (not a subtype), return a new :term:`strong reference` to the object." msgstr "" -#: ../../c-api/unicode.rst:633 -msgid "" -"Objects other than Unicode or its subtypes will cause a :exc:`TypeError`." +msgid "Objects other than Unicode or its subtypes will cause a :exc:`TypeError`." msgstr "" -#: ../../c-api/unicode.rst:638 msgid "Create a Unicode Object from the given Unicode code point *ordinal*." msgstr "" -#: ../../c-api/unicode.rst:640 -msgid "" -"The ordinal must be in ``range(0x110000)``. A :exc:`ValueError` is raised in " -"the case it is not." +msgid "The ordinal must be in ``range(0x110000)``. A :exc:`ValueError` is raised in the case it is not." msgstr "" -#: ../../c-api/unicode.rst:647 msgid "Decode an encoded object *obj* to a Unicode object." msgstr "" -#: ../../c-api/unicode.rst:649 -msgid "" -":class:`bytes`, :class:`bytearray` and other :term:`bytes-like objects " -"` are decoded according to the given *encoding* and using " -"the error handling defined by *errors*. Both can be ``NULL`` to have the " -"interface use the default values (see :ref:`builtincodecs` for details)." +msgid ":class:`bytes`, :class:`bytearray` and other :term:`bytes-like objects ` are decoded according to the given *encoding* and using the error handling defined by *errors*. Both can be ``NULL`` to have the interface use the default values (see :ref:`builtincodecs` for details)." msgstr "" -#: ../../c-api/unicode.rst:655 -msgid "" -"All other objects, including Unicode objects, cause a :exc:`TypeError` to be " -"set." +msgid "All other objects, including Unicode objects, cause a :exc:`TypeError` to be set." msgstr "" -#: ../../c-api/unicode.rst:658 -msgid "" -"The API returns ``NULL`` if there was an error. The caller is responsible " -"for decref'ing the returned objects." +msgid "The API returns ``NULL`` if there was an error. The caller is responsible for decref'ing the returned objects." msgstr "" -#: ../../c-api/unicode.rst:664 -msgid "" -"Append the string *right* to the end of *p_left*. *p_left* must point to " -"a :term:`strong reference` to a Unicode object; :c:func:`!PyUnicode_Append` " -"releases (\":term:`steals `\") this reference." +msgid "Append the string *right* to the end of *p_left*. *p_left* must point to a :term:`strong reference` to a Unicode object; :c:func:`!PyUnicode_Append` releases (\":term:`steals `\") this reference." msgstr "" -#: ../../c-api/unicode.rst:669 msgid "On error, set *\\*p_left* to ``NULL`` and set an exception." msgstr "" -#: ../../c-api/unicode.rst:671 msgid "On success, set *\\*p_left* to a new strong reference to the result." msgstr "" -#: ../../c-api/unicode.rst:676 -msgid "" -"The function is similar to :c:func:`PyUnicode_Append`, with the only " -"difference being that it decrements the reference count of *right* by one." +msgid "The function is similar to :c:func:`PyUnicode_Append`, with the only difference being that it decrements the reference count of *right* by one." msgstr "" -#: ../../c-api/unicode.rst:682 -msgid "" -"Return a mapping suitable for decoding a custom single-byte encoding. Given " -"a Unicode string *string* of up to 256 characters representing an encoding " -"table, returns either a compact internal mapping object or a dictionary " -"mapping character ordinals to byte values. Raises a :exc:`TypeError` and " -"return ``NULL`` on invalid input." +msgid "Return a mapping suitable for decoding a custom single-byte encoding. Given a Unicode string *string* of up to 256 characters representing an encoding table, returns either a compact internal mapping object or a dictionary mapping character ordinals to byte values. Raises a :exc:`TypeError` and return ``NULL`` on invalid input." msgstr "" -#: ../../c-api/unicode.rst:693 -msgid "" -"Return the name of the default string encoding, ``\"utf-8\"``. " -"See :func:`sys.getdefaultencoding`." +msgid "Return the name of the default string encoding, ``\"utf-8\"``. See :func:`sys.getdefaultencoding`." msgstr "" -#: ../../c-api/unicode.rst:696 -msgid "" -"The returned string does not need to be freed, and is valid until " -"interpreter shutdown." +msgid "The returned string does not need to be freed, and is valid until interpreter shutdown." msgstr "" -#: ../../c-api/unicode.rst:702 msgid "Return the length of the Unicode object, in code points." msgstr "" -#: ../../c-api/unicode.rst:704 msgid "On error, set an exception and return ``-1``." msgstr "" -#: ../../c-api/unicode.rst:715 -msgid "" -"Copy characters from one Unicode object into another. This function " -"performs character conversion when necessary and falls back to :c:func:`!" -"memcpy` if possible. Returns ``-1`` and sets an exception on error, " -"otherwise returns the number of copied characters." +msgid "Copy characters from one Unicode object into another. This function performs character conversion when necessary and falls back to :c:func:`!memcpy` if possible. Returns ``-1`` and sets an exception on error, otherwise returns the number of copied characters." msgstr "" -#: ../../c-api/unicode.rst:720 ../../c-api/unicode.rst:750 -#: ../../c-api/unicode.rst:770 -msgid "" -"The string must not have been “used” yet. See :c:func:`PyUnicode_New` for " -"details." +msgid "The string must not have been “used” yet. See :c:func:`PyUnicode_New` for details." msgstr "" -#: ../../c-api/unicode.rst:728 -msgid "" -"Resize a Unicode object *\\*unicode* to the new *length* in code points." +msgid "Resize a Unicode object *\\*unicode* to the new *length* in code points." msgstr "" -#: ../../c-api/unicode.rst:730 -msgid "" -"Try to resize the string in place (which is usually faster than allocating a " -"new string and copying characters), or create a new string." +msgid "Try to resize the string in place (which is usually faster than allocating a new string and copying characters), or create a new string." msgstr "" -#: ../../c-api/unicode.rst:733 -msgid "" -"*\\*unicode* is modified to point to the new (resized) object and ``0`` is " -"returned on success. Otherwise, ``-1`` is returned and an exception is set, " -"and *\\*unicode* is left untouched." +msgid "*\\*unicode* is modified to point to the new (resized) object and ``0`` is returned on success. Otherwise, ``-1`` is returned and an exception is set, and *\\*unicode* is left untouched." msgstr "" -#: ../../c-api/unicode.rst:737 -msgid "" -"The function doesn't check string content, the result may not be a string in " -"canonical representation." +msgid "The function doesn't check string content, the result may not be a string in canonical representation." msgstr "" -#: ../../c-api/unicode.rst:744 -msgid "" -"Fill a string with a character: write *fill_char* into " -"``unicode[start:start+length]``." +msgid "Fill a string with a character: write *fill_char* into ``unicode[start:start+length]``." msgstr "" -#: ../../c-api/unicode.rst:747 -msgid "" -"Fail if *fill_char* is bigger than the string maximum character, or if the " -"string has more than 1 reference." +msgid "Fail if *fill_char* is bigger than the string maximum character, or if the string has more than 1 reference." msgstr "" -#: ../../c-api/unicode.rst:753 -msgid "" -"Return the number of written characters, or return ``-1`` and raise an " -"exception on error." +msgid "Return the number of written characters, or return ``-1`` and raise an exception on error." msgstr "" -#: ../../c-api/unicode.rst:762 -msgid "" -"Write a *character* to the string *unicode* at the zero-based *index*. " -"Return ``0`` on success, ``-1`` on error with an exception set." +msgid "Write a *character* to the string *unicode* at the zero-based *index*. Return ``0`` on success, ``-1`` on error with an exception set." msgstr "" -#: ../../c-api/unicode.rst:765 -msgid "" -"This function checks that *unicode* is a Unicode object, that the index is " -"not out of bounds, and that the object's reference count is one. " -"See :c:func:`PyUnicode_WRITE` for a version that skips these checks, making " -"them your responsibility." +msgid "This function checks that *unicode* is a Unicode object, that the index is not out of bounds, and that the object's reference count is one. See :c:func:`PyUnicode_WRITE` for a version that skips these checks, making them your responsibility." msgstr "" -#: ../../c-api/unicode.rst:778 -msgid "" -"Read a character from a string. This function checks that *unicode* is a " -"Unicode object and the index is not out of bounds, in contrast " -"to :c:func:`PyUnicode_READ_CHAR`, which performs no error checking." +msgid "Read a character from a string. This function checks that *unicode* is a Unicode object and the index is not out of bounds, in contrast to :c:func:`PyUnicode_READ_CHAR`, which performs no error checking." msgstr "" -#: ../../c-api/unicode.rst:782 msgid "Return character on success, ``-1`` on error with an exception set." msgstr "" -#: ../../c-api/unicode.rst:790 -msgid "" -"Return a substring of *unicode*, from character index *start* (included) to " -"character index *end* (excluded). Negative indices are not supported. On " -"error, set an exception and return ``NULL``." +msgid "Return a substring of *unicode*, from character index *start* (included) to character index *end* (excluded). Negative indices are not supported. On error, set an exception and return ``NULL``." msgstr "" -#: ../../c-api/unicode.rst:800 -msgid "" -"Copy the string *unicode* into a UCS4 buffer, including a null character, if " -"*copy_null* is set. Returns ``NULL`` and sets an exception on error (in " -"particular, a :exc:`SystemError` if *buflen* is smaller than the length of " -"*unicode*). *buffer* is returned on success." +msgid "Copy the string *unicode* into a UCS4 buffer, including a null character, if *copy_null* is set. Returns ``NULL`` and sets an exception on error (in particular, a :exc:`SystemError` if *buflen* is smaller than the length of *unicode*). *buffer* is returned on success." msgstr "" -#: ../../c-api/unicode.rst:810 -msgid "" -"Copy the string *unicode* into a new UCS4 buffer that is allocated " -"using :c:func:`PyMem_Malloc`. If this fails, ``NULL`` is returned with " -"a :exc:`MemoryError` set. The returned buffer always has an extra null code " -"point appended." +msgid "Copy the string *unicode* into a new UCS4 buffer that is allocated using :c:func:`PyMem_Malloc`. If this fails, ``NULL`` is returned with a :exc:`MemoryError` set. The returned buffer always has an extra null code point appended." msgstr "" -#: ../../c-api/unicode.rst:819 msgid "Locale Encoding" msgstr "" -#: ../../c-api/unicode.rst:821 -msgid "" -"The current locale encoding can be used to decode text from the operating " -"system." +msgid "The current locale encoding can be used to decode text from the operating system." msgstr "" -#: ../../c-api/unicode.rst:828 -msgid "" -"Decode a string from UTF-8 on Android and VxWorks, or from the current " -"locale encoding on other platforms. The supported error handlers are " -"``\"strict\"`` and ``\"surrogateescape\"`` (:pep:`383`). The decoder uses " -"``\"strict\"`` error handler if *errors* is ``NULL``. *str* must end with a " -"null character but cannot contain embedded null characters." +msgid "Decode a string from UTF-8 on Android and VxWorks, or from the current locale encoding on other platforms. The supported error handlers are ``\"strict\"`` and ``\"surrogateescape\"`` (:pep:`383`). The decoder uses ``\"strict\"`` error handler if *errors* is ``NULL``. *str* must end with a null character but cannot contain embedded null characters." msgstr "" -#: ../../c-api/unicode.rst:835 -msgid "" -"Use :c:func:`PyUnicode_DecodeFSDefaultAndSize` to decode a string from " -"the :term:`filesystem encoding and error handler`." +msgid "Use :c:func:`PyUnicode_DecodeFSDefaultAndSize` to decode a string from the :term:`filesystem encoding and error handler`." msgstr "" -#: ../../c-api/unicode.rst:838 ../../c-api/unicode.rst:873 msgid "This function ignores the :ref:`Python UTF-8 Mode `." msgstr "" -#: ../../c-api/unicode.rst:842 ../../c-api/unicode.rst:958 msgid "The :c:func:`Py_DecodeLocale` function." msgstr "" -#: ../../c-api/unicode.rst:846 -msgid "" -"The function now also uses the current locale encoding for the " -"``surrogateescape`` error handler, except on Android. " -"Previously, :c:func:`Py_DecodeLocale` was used for the ``surrogateescape``, " -"and the current locale encoding was used for ``strict``." +msgid "The function now also uses the current locale encoding for the ``surrogateescape`` error handler, except on Android. Previously, :c:func:`Py_DecodeLocale` was used for the ``surrogateescape``, and the current locale encoding was used for ``strict``." msgstr "" -#: ../../c-api/unicode.rst:855 -msgid "" -"Similar to :c:func:`PyUnicode_DecodeLocaleAndSize`, but compute the string " -"length using :c:func:`!strlen`." +msgid "Similar to :c:func:`PyUnicode_DecodeLocaleAndSize`, but compute the string length using :c:func:`!strlen`." msgstr "" -#: ../../c-api/unicode.rst:863 -msgid "" -"Encode a Unicode object to UTF-8 on Android and VxWorks, or to the current " -"locale encoding on other platforms. The supported error handlers are " -"``\"strict\"`` and ``\"surrogateescape\"`` (:pep:`383`). The encoder uses " -"``\"strict\"`` error handler if *errors* is ``NULL``. Return " -"a :class:`bytes` object. *unicode* cannot contain embedded null characters." +msgid "Encode a Unicode object to UTF-8 on Android and VxWorks, or to the current locale encoding on other platforms. The supported error handlers are ``\"strict\"`` and ``\"surrogateescape\"`` (:pep:`383`). The encoder uses ``\"strict\"`` error handler if *errors* is ``NULL``. Return a :class:`bytes` object. *unicode* cannot contain embedded null characters." msgstr "" -#: ../../c-api/unicode.rst:870 -msgid "" -"Use :c:func:`PyUnicode_EncodeFSDefault` to encode a string to " -"the :term:`filesystem encoding and error handler`." +msgid "Use :c:func:`PyUnicode_EncodeFSDefault` to encode a string to the :term:`filesystem encoding and error handler`." msgstr "" -#: ../../c-api/unicode.rst:877 ../../c-api/unicode.rst:989 msgid "The :c:func:`Py_EncodeLocale` function." msgstr "" -#: ../../c-api/unicode.rst:881 -msgid "" -"The function now also uses the current locale encoding for the " -"``surrogateescape`` error handler, except on Android. " -"Previously, :c:func:`Py_EncodeLocale` was used for the ``surrogateescape``, " -"and the current locale encoding was used for ``strict``." +msgid "The function now also uses the current locale encoding for the ``surrogateescape`` error handler, except on Android. Previously, :c:func:`Py_EncodeLocale` was used for the ``surrogateescape``, and the current locale encoding was used for ``strict``." msgstr "" -#: ../../c-api/unicode.rst:890 msgid "File System Encoding" msgstr "" -#: ../../c-api/unicode.rst:892 -msgid "" -"Functions encoding to and decoding from the :term:`filesystem encoding and " -"error handler` (:pep:`383` and :pep:`529`)." +msgid "Functions encoding to and decoding from the :term:`filesystem encoding and error handler` (:pep:`383` and :pep:`529`)." msgstr "" -#: ../../c-api/unicode.rst:895 -msgid "" -"To encode file names to :class:`bytes` during argument parsing, the " -"``\"O&\"`` converter should be used, passing :c:func:`!" -"PyUnicode_FSConverter` as the conversion function:" +msgid "To encode file names to :class:`bytes` during argument parsing, the ``\"O&\"`` converter should be used, passing :c:func:`!PyUnicode_FSConverter` as the conversion function:" msgstr "" -#: ../../c-api/unicode.rst:901 -msgid "" -":ref:`PyArg_Parse\\* converter `: encode :class:`str` objects " -"-- obtained directly or through the :class:`os.PathLike` interface -- " -"to :class:`bytes` using :c:func:`PyUnicode_EncodeFSDefault`; :class:`bytes` " -"objects are output as-is. *result* must be an address of a C variable of " -"type :c:expr:`PyObject*` (or :c:expr:`PyBytesObject*`). On success, set the " -"variable to a new :term:`strong reference` to a :ref:`bytes object " -"` which must be released when it is no longer used and return " -"a non-zero value (:c:macro:`Py_CLEANUP_SUPPORTED`). Embedded null bytes are " -"not allowed in the result. On failure, return ``0`` with an exception set." -msgstr "" - -#: ../../c-api/unicode.rst:913 -msgid "" -"If *obj* is ``NULL``, the function releases a strong reference stored in the " -"variable referred by *result* and returns ``1``." +msgid ":ref:`PyArg_Parse\\* converter `: encode :class:`str` objects -- obtained directly or through the :class:`os.PathLike` interface -- to :class:`bytes` using :c:func:`PyUnicode_EncodeFSDefault`; :class:`bytes` objects are output as-is. *result* must be an address of a C variable of type :c:expr:`PyObject*` (or :c:expr:`PyBytesObject*`). On success, set the variable to a new :term:`strong reference` to a :ref:`bytes object ` which must be released when it is no longer used and return a non-zero value (:c:macro:`Py_CLEANUP_SUPPORTED`). Embedded null bytes are not allowed in the result. On failure, return ``0`` with an exception set." +msgstr "" + +msgid "If *obj* is ``NULL``, the function releases a strong reference stored in the variable referred by *result* and returns ``1``." msgstr "" -#: ../../c-api/unicode.rst:918 ../../c-api/unicode.rst:945 msgid "Accepts a :term:`path-like object`." msgstr "" -#: ../../c-api/unicode.rst:921 -msgid "" -"To decode file names to :class:`str` during argument parsing, the ``\"O&\"`` " -"converter should be used, passing :c:func:`!PyUnicode_FSDecoder` as the " -"conversion function:" +msgid "To decode file names to :class:`str` during argument parsing, the ``\"O&\"`` converter should be used, passing :c:func:`!PyUnicode_FSDecoder` as the conversion function:" msgstr "" -#: ../../c-api/unicode.rst:927 -msgid "" -":ref:`PyArg_Parse\\* converter `: decode :class:`bytes` objects " -"-- obtained either directly or indirectly through the :class:`os.PathLike` " -"interface -- to :class:`str` " -"using :c:func:`PyUnicode_DecodeFSDefaultAndSize`; :class:`str` objects are " -"output as-is. *result* must be an address of a C variable of " -"type :c:expr:`PyObject*` (or :c:expr:`PyUnicodeObject*`). On success, set " -"the variable to a new :term:`strong reference` to a :ref:`Unicode object " -"` which must be released when it is no longer used and " -"return a non-zero value (:c:macro:`Py_CLEANUP_SUPPORTED`). Embedded null " -"characters are not allowed in the result. On failure, return ``0`` with an " -"exception set." -msgstr "" - -#: ../../c-api/unicode.rst:940 -msgid "" -"If *obj* is ``NULL``, release the strong reference to the object referred to " -"by *result* and return ``1``." +msgid ":ref:`PyArg_Parse\\* converter `: decode :class:`bytes` objects -- obtained either directly or indirectly through the :class:`os.PathLike` interface -- to :class:`str` using :c:func:`PyUnicode_DecodeFSDefaultAndSize`; :class:`str` objects are output as-is. *result* must be an address of a C variable of type :c:expr:`PyObject*` (or :c:expr:`PyUnicodeObject*`). On success, set the variable to a new :term:`strong reference` to a :ref:`Unicode object ` which must be released when it is no longer used and return a non-zero value (:c:macro:`Py_CLEANUP_SUPPORTED`). Embedded null characters are not allowed in the result. On failure, return ``0`` with an exception set." +msgstr "" + +msgid "If *obj* is ``NULL``, release the strong reference to the object referred to by *result* and return ``1``." msgstr "" -#: ../../c-api/unicode.rst:951 msgid "Decode a string from the :term:`filesystem encoding and error handler`." msgstr "" -#: ../../c-api/unicode.rst:953 -msgid "" -"If you need to decode a string from the current locale encoding, " -"use :c:func:`PyUnicode_DecodeLocaleAndSize`." +msgid "If you need to decode a string from the current locale encoding, use :c:func:`PyUnicode_DecodeLocaleAndSize`." msgstr "" -#: ../../c-api/unicode.rst:960 ../../c-api/unicode.rst:973 -#: ../../c-api/unicode.rst:993 -msgid "" -"The :term:`filesystem error handler ` " -"is now used." +msgid "The :term:`filesystem error handler ` is now used." msgstr "" -#: ../../c-api/unicode.rst:967 -msgid "" -"Decode a null-terminated string from the :term:`filesystem encoding and " -"error handler`." +msgid "Decode a null-terminated string from the :term:`filesystem encoding and error handler`." msgstr "" -#: ../../c-api/unicode.rst:970 -msgid "" -"If the string length is known, " -"use :c:func:`PyUnicode_DecodeFSDefaultAndSize`." +msgid "If the string length is known, use :c:func:`PyUnicode_DecodeFSDefaultAndSize`." msgstr "" -#: ../../c-api/unicode.rst:980 -msgid "" -"Encode a Unicode object to the :term:`filesystem encoding and error " -"handler`, and return :class:`bytes`. Note that the resulting :class:`bytes` " -"object can contain null bytes." +msgid "Encode a Unicode object to the :term:`filesystem encoding and error handler`, and return :class:`bytes`. Note that the resulting :class:`bytes` object can contain null bytes." msgstr "" -#: ../../c-api/unicode.rst:984 -msgid "" -"If you need to encode a string to the current locale encoding, " -"use :c:func:`PyUnicode_EncodeLocale`." +msgid "If you need to encode a string to the current locale encoding, use :c:func:`PyUnicode_EncodeLocale`." msgstr "" -#: ../../c-api/unicode.rst:998 msgid "wchar_t Support" msgstr "" -#: ../../c-api/unicode.rst:1000 msgid ":c:type:`wchar_t` support for platforms which support it:" msgstr "" -#: ../../c-api/unicode.rst:1004 -msgid "" -"Create a Unicode object from the :c:type:`wchar_t` buffer *wstr* of the " -"given *size*. Passing ``-1`` as the *size* indicates that the function must " -"itself compute the length, using :c:func:`!wcslen`. Return ``NULL`` on " -"failure." +msgid "Create a Unicode object from the :c:type:`wchar_t` buffer *wstr* of the given *size*. Passing ``-1`` as the *size* indicates that the function must itself compute the length, using :c:func:`!wcslen`. Return ``NULL`` on failure." msgstr "" -#: ../../c-api/unicode.rst:1012 -msgid "" -"Copy the Unicode object contents into the :c:type:`wchar_t` buffer *wstr*. " -"At most *size* :c:type:`wchar_t` characters are copied (excluding a possibly " -"trailing null termination character). Return the number " -"of :c:type:`wchar_t` characters copied or ``-1`` in case of an error." +msgid "Copy the Unicode object contents into the :c:type:`wchar_t` buffer *wstr*. At most *size* :c:type:`wchar_t` characters are copied (excluding a possibly trailing null termination character). Return the number of :c:type:`wchar_t` characters copied or ``-1`` in case of an error." msgstr "" -#: ../../c-api/unicode.rst:1017 -msgid "" -"When *wstr* is ``NULL``, instead return the *size* that would be required to " -"store all of *unicode* including a terminating null." +msgid "When *wstr* is ``NULL``, instead return the *size* that would be required to store all of *unicode* including a terminating null." msgstr "" -#: ../../c-api/unicode.rst:1020 -msgid "" -"Note that the resulting :c:expr:`wchar_t*` string may or may not be null-" -"terminated. It is the responsibility of the caller to make sure that " -"the :c:expr:`wchar_t*` string is null-terminated in case this is required by " -"the application. Also, note that the :c:expr:`wchar_t*` string might contain " -"null characters, which would cause the string to be truncated when used with " -"most C functions." +msgid "Note that the resulting :c:expr:`wchar_t*` string may or may not be null-terminated. It is the responsibility of the caller to make sure that the :c:expr:`wchar_t*` string is null-terminated in case this is required by the application. Also, note that the :c:expr:`wchar_t*` string might contain null characters, which would cause the string to be truncated when used with most C functions." msgstr "" -#: ../../c-api/unicode.rst:1030 -msgid "" -"Convert the Unicode object to a wide character string. The output string " -"always ends with a null character. If *size* is not ``NULL``, write the " -"number of wide characters (excluding the trailing null termination " -"character) into *\\*size*. Note that the resulting :c:type:`wchar_t` string " -"might contain null characters, which would cause the string to be truncated " -"when used with most C functions. If *size* is ``NULL`` and " -"the :c:expr:`wchar_t*` string contains null characters a :exc:`ValueError` " -"is raised." +msgid "Convert the Unicode object to a wide character string. The output string always ends with a null character. If *size* is not ``NULL``, write the number of wide characters (excluding the trailing null termination character) into *\\*size*. Note that the resulting :c:type:`wchar_t` string might contain null characters, which would cause the string to be truncated when used with most C functions. If *size* is ``NULL`` and the :c:expr:`wchar_t*` string contains null characters a :exc:`ValueError` is raised." msgstr "" -#: ../../c-api/unicode.rst:1038 -msgid "" -"Returns a buffer allocated by :c:macro:`PyMem_New` (use :c:func:`PyMem_Free` " -"to free it) on success. On error, returns ``NULL`` and *\\*size* is " -"undefined. Raises a :exc:`MemoryError` if memory allocation is failed." +msgid "Returns a buffer allocated by :c:macro:`PyMem_New` (use :c:func:`PyMem_Free` to free it) on success. On error, returns ``NULL`` and *\\*size* is undefined. Raises a :exc:`MemoryError` if memory allocation is failed." msgstr "" -#: ../../c-api/unicode.rst:1045 -msgid "" -"Raises a :exc:`ValueError` if *size* is ``NULL`` and the :c:expr:`wchar_t*` " -"string contains null characters." +msgid "Raises a :exc:`ValueError` if *size* is ``NULL`` and the :c:expr:`wchar_t*` string contains null characters." msgstr "" -#: ../../c-api/unicode.rst:1053 msgid "Built-in Codecs" msgstr "" -#: ../../c-api/unicode.rst:1055 -msgid "" -"Python provides a set of built-in codecs which are written in C for speed. " -"All of these codecs are directly usable via the following functions." +msgid "Python provides a set of built-in codecs which are written in C for speed. All of these codecs are directly usable via the following functions." msgstr "" -#: ../../c-api/unicode.rst:1058 -msgid "" -"Many of the following APIs take two arguments encoding and errors, and they " -"have the same semantics as the ones of the built-in :func:`str` string " -"object constructor." +msgid "Many of the following APIs take two arguments encoding and errors, and they have the same semantics as the ones of the built-in :func:`str` string object constructor." msgstr "" -#: ../../c-api/unicode.rst:1062 -msgid "" -"Setting encoding to ``NULL`` causes the default encoding to be used which is " -"UTF-8. The file system calls should use :c:func:`PyUnicode_FSConverter` for " -"encoding file names. This uses the :term:`filesystem encoding and error " -"handler` internally." +msgid "Setting encoding to ``NULL`` causes the default encoding to be used which is UTF-8. The file system calls should use :c:func:`PyUnicode_FSConverter` for encoding file names. This uses the :term:`filesystem encoding and error handler` internally." msgstr "" -#: ../../c-api/unicode.rst:1067 -msgid "" -"Error handling is set by errors which may also be set to ``NULL`` meaning to " -"use the default handling defined for the codec. Default error handling for " -"all built-in codecs is \"strict\" (:exc:`ValueError` is raised)." +msgid "Error handling is set by errors which may also be set to ``NULL`` meaning to use the default handling defined for the codec. Default error handling for all built-in codecs is \"strict\" (:exc:`ValueError` is raised)." msgstr "" -#: ../../c-api/unicode.rst:1071 -msgid "" -"The codecs all use a similar interface. Only deviations from the following " -"generic ones are documented for simplicity." +msgid "The codecs all use a similar interface. Only deviations from the following generic ones are documented for simplicity." msgstr "" -#: ../../c-api/unicode.rst:1076 msgid "Generic Codecs" msgstr "" -#: ../../c-api/unicode.rst:1078 msgid "The following macro is provided:" msgstr "" -#: ../../c-api/unicode.rst:1083 msgid "The Unicode code point ``U+FFFD`` (replacement character)." msgstr "" -#: ../../c-api/unicode.rst:1085 -msgid "" -"This Unicode character is used as the replacement character during decoding " -"if the *errors* argument is set to \"replace\"." +msgid "This Unicode character is used as the replacement character during decoding if the *errors* argument is set to \"replace\"." msgstr "" -#: ../../c-api/unicode.rst:1089 msgid "These are the generic codec APIs:" msgstr "" -#: ../../c-api/unicode.rst:1095 -msgid "" -"Create a Unicode object by decoding *size* bytes of the encoded string " -"*str*. *encoding* and *errors* have the same meaning as the parameters of " -"the same name in the :func:`str` built-in function. The codec to be used is " -"looked up using the Python codec registry. Return ``NULL`` if an exception " -"was raised by the codec." +msgid "Create a Unicode object by decoding *size* bytes of the encoded string *str*. *encoding* and *errors* have the same meaning as the parameters of the same name in the :func:`str` built-in function. The codec to be used is looked up using the Python codec registry. Return ``NULL`` if an exception was raised by the codec." msgstr "" -#: ../../c-api/unicode.rst:1105 -msgid "" -"Encode a Unicode object and return the result as Python bytes object. " -"*encoding* and *errors* have the same meaning as the parameters of the same " -"name in the Unicode :meth:`~str.encode` method. The codec to be used is " -"looked up using the Python codec registry. Return ``NULL`` if an exception " -"was raised by the codec." +msgid "Encode a Unicode object and return the result as Python bytes object. *encoding* and *errors* have the same meaning as the parameters of the same name in the Unicode :meth:`~str.encode` method. The codec to be used is looked up using the Python codec registry. Return ``NULL`` if an exception was raised by the codec." msgstr "" -#: ../../c-api/unicode.rst:1113 msgid "UTF-8 Codecs" msgstr "" -#: ../../c-api/unicode.rst:1115 msgid "These are the UTF-8 codec APIs:" msgstr "" -#: ../../c-api/unicode.rst:1120 -msgid "" -"Create a Unicode object by decoding *size* bytes of the UTF-8 encoded string " -"*str*. Return ``NULL`` if an exception was raised by the codec." +msgid "Create a Unicode object by decoding *size* bytes of the UTF-8 encoded string *str*. Return ``NULL`` if an exception was raised by the codec." msgstr "" -#: ../../c-api/unicode.rst:1127 -msgid "" -"If *consumed* is ``NULL``, behave like :c:func:`PyUnicode_DecodeUTF8`. If " -"*consumed* is not ``NULL``, trailing incomplete UTF-8 byte sequences will " -"not be treated as an error. Those bytes will not be decoded and the number " -"of bytes that have been decoded will be stored in *consumed*." +msgid "If *consumed* is ``NULL``, behave like :c:func:`PyUnicode_DecodeUTF8`. If *consumed* is not ``NULL``, trailing incomplete UTF-8 byte sequences will not be treated as an error. Those bytes will not be decoded and the number of bytes that have been decoded will be stored in *consumed*." msgstr "" -#: ../../c-api/unicode.rst:1135 -msgid "" -"Encode a Unicode object using UTF-8 and return the result as Python bytes " -"object. Error handling is \"strict\". Return ``NULL`` if an exception was " -"raised by the codec." +msgid "Encode a Unicode object using UTF-8 and return the result as Python bytes object. Error handling is \"strict\". Return ``NULL`` if an exception was raised by the codec." msgstr "" -#: ../../c-api/unicode.rst:1139 ../../c-api/unicode.rst:1154 -msgid "" -"The function fails if the string contains surrogate code points (``U+D800`` " -"- ``U+DFFF``)." +msgid "The function fails if the string contains surrogate code points (``U+D800`` - ``U+DFFF``)." msgstr "" -#: ../../c-api/unicode.rst:1145 -msgid "" -"Return a pointer to the UTF-8 encoding of the Unicode object, and store the " -"size of the encoded representation (in bytes) in *size*. The *size* " -"argument can be ``NULL``; in this case no size will be stored. The returned " -"buffer always has an extra null byte appended (not included in *size*), " -"regardless of whether there are any other null code points." +msgid "Return a pointer to the UTF-8 encoding of the Unicode object, and store the size of the encoded representation (in bytes) in *size*. The *size* argument can be ``NULL``; in this case no size will be stored. The returned buffer always has an extra null byte appended (not included in *size*), regardless of whether there are any other null code points." msgstr "" -#: ../../c-api/unicode.rst:1151 -msgid "" -"On error, set an exception, set *size* to ``-1`` (if it's not NULL) and " -"return ``NULL``." +msgid "On error, set an exception, set *size* to ``-1`` (if it's not NULL) and return ``NULL``." msgstr "" -#: ../../c-api/unicode.rst:1157 -msgid "" -"This caches the UTF-8 representation of the string in the Unicode object, " -"and subsequent calls will return a pointer to the same buffer. The caller " -"is not responsible for deallocating the buffer. The buffer is deallocated " -"and pointers to it become invalid when the Unicode object is garbage " -"collected." +msgid "This caches the UTF-8 representation of the string in the Unicode object, and subsequent calls will return a pointer to the same buffer. The caller is not responsible for deallocating the buffer. The buffer is deallocated and pointers to it become invalid when the Unicode object is garbage collected." msgstr "" -#: ../../c-api/unicode.rst:1164 ../../c-api/unicode.rst:1186 msgid "The return type is now ``const char *`` rather than ``char *``." msgstr "" -#: ../../c-api/unicode.rst:1167 msgid "This function is a part of the :ref:`limited API `." msgstr "" -#: ../../c-api/unicode.rst:1173 msgid "As :c:func:`PyUnicode_AsUTF8AndSize`, but does not store the size." msgstr "" -#: ../../c-api/unicode.rst:1177 -msgid "" -"This function does not have any special behavior for `null characters " -"`_ embedded within *unicode*. " -"As a result, strings containing null characters will remain in the returned " -"string, which some C functions might interpret as the end of the string, " -"leading to truncation. If truncation is an issue, it is recommended to " -"use :c:func:`PyUnicode_AsUTF8AndSize` instead." +msgid "This function does not have any special behavior for `null characters `_ embedded within *unicode*. As a result, strings containing null characters will remain in the returned string, which some C functions might interpret as the end of the string, leading to truncation. If truncation is an issue, it is recommended to use :c:func:`PyUnicode_AsUTF8AndSize` instead." msgstr "" -#: ../../c-api/unicode.rst:1191 msgid "UTF-32 Codecs" msgstr "" -#: ../../c-api/unicode.rst:1193 msgid "These are the UTF-32 codec APIs:" msgstr "" -#: ../../c-api/unicode.rst:1199 -msgid "" -"Decode *size* bytes from a UTF-32 encoded buffer string and return the " -"corresponding Unicode object. *errors* (if non-``NULL``) defines the error " -"handling. It defaults to \"strict\"." +msgid "Decode *size* bytes from a UTF-32 encoded buffer string and return the corresponding Unicode object. *errors* (if non-``NULL``) defines the error handling. It defaults to \"strict\"." msgstr "" -#: ../../c-api/unicode.rst:1203 ../../c-api/unicode.rst:1253 -msgid "" -"If *byteorder* is non-``NULL``, the decoder starts decoding using the given " -"byte order::" +msgid "If *byteorder* is non-``NULL``, the decoder starts decoding using the given byte order::" msgstr "" -#: ../../c-api/unicode.rst:1206 ../../c-api/unicode.rst:1256 msgid "" "*byteorder == -1: little endian\n" "*byteorder == 0: native order\n" "*byteorder == 1: big endian" msgstr "" -#: ../../c-api/unicode.rst:1210 -msgid "" -"If ``*byteorder`` is zero, and the first four bytes of the input data are a " -"byte order mark (BOM), the decoder switches to this byte order and the BOM " -"is not copied into the resulting Unicode string. If ``*byteorder`` is " -"``-1`` or ``1``, any byte order mark is copied to the output." +msgid "If ``*byteorder`` is zero, and the first four bytes of the input data are a byte order mark (BOM), the decoder switches to this byte order and the BOM is not copied into the resulting Unicode string. If ``*byteorder`` is ``-1`` or ``1``, any byte order mark is copied to the output." msgstr "" -#: ../../c-api/unicode.rst:1215 -msgid "" -"After completion, *\\*byteorder* is set to the current byte order at the end " -"of input data." +msgid "After completion, *\\*byteorder* is set to the current byte order at the end of input data." msgstr "" -#: ../../c-api/unicode.rst:1218 ../../c-api/unicode.rst:1269 msgid "If *byteorder* is ``NULL``, the codec starts in native order mode." msgstr "" -#: ../../c-api/unicode.rst:1220 ../../c-api/unicode.rst:1271 msgid "Return ``NULL`` if an exception was raised by the codec." msgstr "" -#: ../../c-api/unicode.rst:1226 -msgid "" -"If *consumed* is ``NULL``, behave like :c:func:`PyUnicode_DecodeUTF32`. If " -"*consumed* is not ``NULL``, :c:func:`PyUnicode_DecodeUTF32Stateful` will not " -"treat trailing incomplete UTF-32 byte sequences (such as a number of bytes " -"not divisible by four) as an error. Those bytes will not be decoded and the " -"number of bytes that have been decoded will be stored in *consumed*." +msgid "If *consumed* is ``NULL``, behave like :c:func:`PyUnicode_DecodeUTF32`. If *consumed* is not ``NULL``, :c:func:`PyUnicode_DecodeUTF32Stateful` will not treat trailing incomplete UTF-32 byte sequences (such as a number of bytes not divisible by four) as an error. Those bytes will not be decoded and the number of bytes that have been decoded will be stored in *consumed*." msgstr "" -#: ../../c-api/unicode.rst:1235 -msgid "" -"Return a Python byte string using the UTF-32 encoding in native byte order. " -"The string always starts with a BOM mark. Error handling is \"strict\". " -"Return ``NULL`` if an exception was raised by the codec." +msgid "Return a Python byte string using the UTF-32 encoding in native byte order. The string always starts with a BOM mark. Error handling is \"strict\". Return ``NULL`` if an exception was raised by the codec." msgstr "" -#: ../../c-api/unicode.rst:1241 msgid "UTF-16 Codecs" msgstr "" -#: ../../c-api/unicode.rst:1243 msgid "These are the UTF-16 codec APIs:" msgstr "" -#: ../../c-api/unicode.rst:1249 -msgid "" -"Decode *size* bytes from a UTF-16 encoded buffer string and return the " -"corresponding Unicode object. *errors* (if non-``NULL``) defines the error " -"handling. It defaults to \"strict\"." +msgid "Decode *size* bytes from a UTF-16 encoded buffer string and return the corresponding Unicode object. *errors* (if non-``NULL``) defines the error handling. It defaults to \"strict\"." msgstr "" -#: ../../c-api/unicode.rst:1260 -msgid "" -"If ``*byteorder`` is zero, and the first two bytes of the input data are a " -"byte order mark (BOM), the decoder switches to this byte order and the BOM " -"is not copied into the resulting Unicode string. If ``*byteorder`` is " -"``-1`` or ``1``, any byte order mark is copied to the output (where it will " -"result in either a ``\\ufeff`` or a ``\\ufffe`` character)." +msgid "If ``*byteorder`` is zero, and the first two bytes of the input data are a byte order mark (BOM), the decoder switches to this byte order and the BOM is not copied into the resulting Unicode string. If ``*byteorder`` is ``-1`` or ``1``, any byte order mark is copied to the output (where it will result in either a ``\\ufeff`` or a ``\\ufffe`` character)." msgstr "" -#: ../../c-api/unicode.rst:1266 -msgid "" -"After completion, ``*byteorder`` is set to the current byte order at the end " -"of input data." +msgid "After completion, ``*byteorder`` is set to the current byte order at the end of input data." msgstr "" -#: ../../c-api/unicode.rst:1277 -msgid "" -"If *consumed* is ``NULL``, behave like :c:func:`PyUnicode_DecodeUTF16`. If " -"*consumed* is not ``NULL``, :c:func:`PyUnicode_DecodeUTF16Stateful` will not " -"treat trailing incomplete UTF-16 byte sequences (such as an odd number of " -"bytes or a split surrogate pair) as an error. Those bytes will not be " -"decoded and the number of bytes that have been decoded will be stored in " -"*consumed*." +msgid "If *consumed* is ``NULL``, behave like :c:func:`PyUnicode_DecodeUTF16`. If *consumed* is not ``NULL``, :c:func:`PyUnicode_DecodeUTF16Stateful` will not treat trailing incomplete UTF-16 byte sequences (such as an odd number of bytes or a split surrogate pair) as an error. Those bytes will not be decoded and the number of bytes that have been decoded will be stored in *consumed*." msgstr "" -#: ../../c-api/unicode.rst:1286 -msgid "" -"Return a Python byte string using the UTF-16 encoding in native byte order. " -"The string always starts with a BOM mark. Error handling is \"strict\". " -"Return ``NULL`` if an exception was raised by the codec." +msgid "Return a Python byte string using the UTF-16 encoding in native byte order. The string always starts with a BOM mark. Error handling is \"strict\". Return ``NULL`` if an exception was raised by the codec." msgstr "" -#: ../../c-api/unicode.rst:1292 msgid "UTF-7 Codecs" msgstr "" -#: ../../c-api/unicode.rst:1294 msgid "These are the UTF-7 codec APIs:" msgstr "" -#: ../../c-api/unicode.rst:1299 -msgid "" -"Create a Unicode object by decoding *size* bytes of the UTF-7 encoded string " -"*str*. Return ``NULL`` if an exception was raised by the codec." +msgid "Create a Unicode object by decoding *size* bytes of the UTF-7 encoded string *str*. Return ``NULL`` if an exception was raised by the codec." msgstr "" -#: ../../c-api/unicode.rst:1306 -msgid "" -"If *consumed* is ``NULL``, behave like :c:func:`PyUnicode_DecodeUTF7`. If " -"*consumed* is not ``NULL``, trailing incomplete UTF-7 base-64 sections will " -"not be treated as an error. Those bytes will not be decoded and the number " -"of bytes that have been decoded will be stored in *consumed*." +msgid "If *consumed* is ``NULL``, behave like :c:func:`PyUnicode_DecodeUTF7`. If *consumed* is not ``NULL``, trailing incomplete UTF-7 base-64 sections will not be treated as an error. Those bytes will not be decoded and the number of bytes that have been decoded will be stored in *consumed*." msgstr "" -#: ../../c-api/unicode.rst:1313 msgid "Unicode-Escape Codecs" msgstr "" -#: ../../c-api/unicode.rst:1315 msgid "These are the \"Unicode Escape\" codec APIs:" msgstr "" -#: ../../c-api/unicode.rst:1321 -msgid "" -"Create a Unicode object by decoding *size* bytes of the Unicode-Escape " -"encoded string *str*. Return ``NULL`` if an exception was raised by the " -"codec." +msgid "Create a Unicode object by decoding *size* bytes of the Unicode-Escape encoded string *str*. Return ``NULL`` if an exception was raised by the codec." msgstr "" -#: ../../c-api/unicode.rst:1327 -msgid "" -"Encode a Unicode object using Unicode-Escape and return the result as a " -"bytes object. Error handling is \"strict\". Return ``NULL`` if an " -"exception was raised by the codec." +msgid "Encode a Unicode object using Unicode-Escape and return the result as a bytes object. Error handling is \"strict\". Return ``NULL`` if an exception was raised by the codec." msgstr "" -#: ../../c-api/unicode.rst:1333 msgid "Raw-Unicode-Escape Codecs" msgstr "" -#: ../../c-api/unicode.rst:1335 msgid "These are the \"Raw Unicode Escape\" codec APIs:" msgstr "" -#: ../../c-api/unicode.rst:1341 -msgid "" -"Create a Unicode object by decoding *size* bytes of the Raw-Unicode-Escape " -"encoded string *str*. Return ``NULL`` if an exception was raised by the " -"codec." +msgid "Create a Unicode object by decoding *size* bytes of the Raw-Unicode-Escape encoded string *str*. Return ``NULL`` if an exception was raised by the codec." msgstr "" -#: ../../c-api/unicode.rst:1347 -msgid "" -"Encode a Unicode object using Raw-Unicode-Escape and return the result as a " -"bytes object. Error handling is \"strict\". Return ``NULL`` if an " -"exception was raised by the codec." +msgid "Encode a Unicode object using Raw-Unicode-Escape and return the result as a bytes object. Error handling is \"strict\". Return ``NULL`` if an exception was raised by the codec." msgstr "" -#: ../../c-api/unicode.rst:1353 msgid "Latin-1 Codecs" msgstr "" -#: ../../c-api/unicode.rst:1355 -msgid "" -"These are the Latin-1 codec APIs: Latin-1 corresponds to the first 256 " -"Unicode ordinals and only these are accepted by the codecs during encoding." +msgid "These are the Latin-1 codec APIs: Latin-1 corresponds to the first 256 Unicode ordinals and only these are accepted by the codecs during encoding." msgstr "" -#: ../../c-api/unicode.rst:1361 -msgid "" -"Create a Unicode object by decoding *size* bytes of the Latin-1 encoded " -"string *str*. Return ``NULL`` if an exception was raised by the codec." +msgid "Create a Unicode object by decoding *size* bytes of the Latin-1 encoded string *str*. Return ``NULL`` if an exception was raised by the codec." msgstr "" -#: ../../c-api/unicode.rst:1367 -msgid "" -"Encode a Unicode object using Latin-1 and return the result as Python bytes " -"object. Error handling is \"strict\". Return ``NULL`` if an exception was " -"raised by the codec." +msgid "Encode a Unicode object using Latin-1 and return the result as Python bytes object. Error handling is \"strict\". Return ``NULL`` if an exception was raised by the codec." msgstr "" -#: ../../c-api/unicode.rst:1373 msgid "ASCII Codecs" msgstr "" -#: ../../c-api/unicode.rst:1375 -msgid "" -"These are the ASCII codec APIs. Only 7-bit ASCII data is accepted. All " -"other codes generate errors." +msgid "These are the ASCII codec APIs. Only 7-bit ASCII data is accepted. All other codes generate errors." msgstr "" -#: ../../c-api/unicode.rst:1381 -msgid "" -"Create a Unicode object by decoding *size* bytes of the ASCII encoded string " -"*str*. Return ``NULL`` if an exception was raised by the codec." +msgid "Create a Unicode object by decoding *size* bytes of the ASCII encoded string *str*. Return ``NULL`` if an exception was raised by the codec." msgstr "" -#: ../../c-api/unicode.rst:1387 -msgid "" -"Encode a Unicode object using ASCII and return the result as Python bytes " -"object. Error handling is \"strict\". Return ``NULL`` if an exception was " -"raised by the codec." +msgid "Encode a Unicode object using ASCII and return the result as Python bytes object. Error handling is \"strict\". Return ``NULL`` if an exception was raised by the codec." msgstr "" -#: ../../c-api/unicode.rst:1393 msgid "Character Map Codecs" msgstr "" -#: ../../c-api/unicode.rst:1395 -msgid "" -"This codec is special in that it can be used to implement many different " -"codecs (and this is in fact what was done to obtain most of the standard " -"codecs included in the :mod:`!encodings` package). The codec uses mappings " -"to encode and decode characters. The mapping objects provided must support " -"the :meth:`~object.__getitem__` mapping interface; dictionaries and " -"sequences work well." +msgid "This codec is special in that it can be used to implement many different codecs (and this is in fact what was done to obtain most of the standard codecs included in the :mod:`!encodings` package). The codec uses mappings to encode and decode characters. The mapping objects provided must support the :meth:`~object.__getitem__` mapping interface; dictionaries and sequences work well." msgstr "" -#: ../../c-api/unicode.rst:1401 msgid "These are the mapping codec APIs:" msgstr "" -#: ../../c-api/unicode.rst:1406 -msgid "" -"Create a Unicode object by decoding *size* bytes of the encoded string *str* " -"using the given *mapping* object. Return ``NULL`` if an exception was " -"raised by the codec." +msgid "Create a Unicode object by decoding *size* bytes of the encoded string *str* using the given *mapping* object. Return ``NULL`` if an exception was raised by the codec." msgstr "" -#: ../../c-api/unicode.rst:1410 -msgid "" -"If *mapping* is ``NULL``, Latin-1 decoding will be applied. Else *mapping* " -"must map bytes ordinals (integers in the range from 0 to 255) to Unicode " -"strings, integers (which are then interpreted as Unicode ordinals) or " -"``None``. Unmapped data bytes -- ones which cause a :exc:`LookupError`, as " -"well as ones which get mapped to ``None``, ``0xFFFE`` or ``'\\ufffe'``, are " -"treated as undefined mappings and cause an error." +msgid "If *mapping* is ``NULL``, Latin-1 decoding will be applied. Else *mapping* must map bytes ordinals (integers in the range from 0 to 255) to Unicode strings, integers (which are then interpreted as Unicode ordinals) or ``None``. Unmapped data bytes -- ones which cause a :exc:`LookupError`, as well as ones which get mapped to ``None``, ``0xFFFE`` or ``'\\ufffe'``, are treated as undefined mappings and cause an error." msgstr "" -#: ../../c-api/unicode.rst:1421 -msgid "" -"Encode a Unicode object using the given *mapping* object and return the " -"result as a bytes object. Error handling is \"strict\". Return ``NULL`` if " -"an exception was raised by the codec." +msgid "Encode a Unicode object using the given *mapping* object and return the result as a bytes object. Error handling is \"strict\". Return ``NULL`` if an exception was raised by the codec." msgstr "" -#: ../../c-api/unicode.rst:1425 -msgid "" -"The *mapping* object must map Unicode ordinal integers to bytes objects, " -"integers in the range from 0 to 255 or ``None``. Unmapped character " -"ordinals (ones which cause a :exc:`LookupError`) as well as mapped to " -"``None`` are treated as \"undefined mapping\" and cause an error." +msgid "The *mapping* object must map Unicode ordinal integers to bytes objects, integers in the range from 0 to 255 or ``None``. Unmapped character ordinals (ones which cause a :exc:`LookupError`) as well as mapped to ``None`` are treated as \"undefined mapping\" and cause an error." msgstr "" -#: ../../c-api/unicode.rst:1431 msgid "The following codec API is special in that maps Unicode to Unicode." msgstr "" -#: ../../c-api/unicode.rst:1435 -msgid "" -"Translate a string by applying a character mapping table to it and return " -"the resulting Unicode object. Return ``NULL`` if an exception was raised by " -"the codec." +msgid "Translate a string by applying a character mapping table to it and return the resulting Unicode object. Return ``NULL`` if an exception was raised by the codec." msgstr "" -#: ../../c-api/unicode.rst:1439 -msgid "" -"The mapping table must map Unicode ordinal integers to Unicode ordinal " -"integers or ``None`` (causing deletion of the character)." +msgid "The mapping table must map Unicode ordinal integers to Unicode ordinal integers or ``None`` (causing deletion of the character)." msgstr "" -#: ../../c-api/unicode.rst:1442 -msgid "" -"Mapping tables need only provide the :meth:`~object.__getitem__` interface; " -"dictionaries and sequences work well. Unmapped character ordinals (ones " -"which cause a :exc:`LookupError`) are left untouched and are copied as-is." +msgid "Mapping tables need only provide the :meth:`~object.__getitem__` interface; dictionaries and sequences work well. Unmapped character ordinals (ones which cause a :exc:`LookupError`) are left untouched and are copied as-is." msgstr "" -#: ../../c-api/unicode.rst:1446 -msgid "" -"*errors* has the usual meaning for codecs. It may be ``NULL`` which " -"indicates to use the default error handling." +msgid "*errors* has the usual meaning for codecs. It may be ``NULL`` which indicates to use the default error handling." msgstr "" -#: ../../c-api/unicode.rst:1451 msgid "MBCS codecs for Windows" msgstr "" -#: ../../c-api/unicode.rst:1453 -msgid "" -"These are the MBCS codec APIs. They are currently only available on Windows " -"and use the Win32 MBCS converters to implement the conversions. Note that " -"MBCS (or DBCS) is a class of encodings, not just one. The target encoding " -"is defined by the user settings on the machine running the codec." +msgid "These are the MBCS codec APIs. They are currently only available on Windows and use the Win32 MBCS converters to implement the conversions. Note that MBCS (or DBCS) is a class of encodings, not just one. The target encoding is defined by the user settings on the machine running the codec." msgstr "" -#: ../../c-api/unicode.rst:1460 -msgid "" -"Create a Unicode object by decoding *size* bytes of the MBCS encoded string " -"*str*. Return ``NULL`` if an exception was raised by the codec." +msgid "Create a Unicode object by decoding *size* bytes of the MBCS encoded string *str*. Return ``NULL`` if an exception was raised by the codec." msgstr "" -#: ../../c-api/unicode.rst:1467 -msgid "" -"If *consumed* is ``NULL``, behave like :c:func:`PyUnicode_DecodeMBCS`. If " -"*consumed* is not ``NULL``, :c:func:`PyUnicode_DecodeMBCSStateful` will not " -"decode trailing lead byte and the number of bytes that have been decoded " -"will be stored in *consumed*." +msgid "If *consumed* is ``NULL``, behave like :c:func:`PyUnicode_DecodeMBCS`. If *consumed* is not ``NULL``, :c:func:`PyUnicode_DecodeMBCSStateful` will not decode trailing lead byte and the number of bytes that have been decoded will be stored in *consumed*." msgstr "" -#: ../../c-api/unicode.rst:1476 -msgid "" -"Similar to :c:func:`PyUnicode_DecodeMBCSStateful`, except uses the code page " -"specified by *code_page*." +msgid "Similar to :c:func:`PyUnicode_DecodeMBCSStateful`, except uses the code page specified by *code_page*." msgstr "" -#: ../../c-api/unicode.rst:1482 -msgid "" -"Encode a Unicode object using MBCS and return the result as Python bytes " -"object. Error handling is \"strict\". Return ``NULL`` if an exception was " -"raised by the codec." +msgid "Encode a Unicode object using MBCS and return the result as Python bytes object. Error handling is \"strict\". Return ``NULL`` if an exception was raised by the codec." msgstr "" -#: ../../c-api/unicode.rst:1489 -msgid "" -"Encode the Unicode object using the specified code page and return a Python " -"bytes object. Return ``NULL`` if an exception was raised by the codec. " -"Use :c:macro:`!CP_ACP` code page to get the MBCS encoder." +msgid "Encode the Unicode object using the specified code page and return a Python bytes object. Return ``NULL`` if an exception was raised by the codec. Use :c:macro:`!CP_ACP` code page to get the MBCS encoder." msgstr "" -#: ../../c-api/unicode.rst:1499 msgid "Methods and Slot Functions" msgstr "" -#: ../../c-api/unicode.rst:1501 -msgid "" -"The following APIs are capable of handling Unicode objects and strings on " -"input (we refer to them as strings in the descriptions) and return Unicode " -"objects or integers as appropriate." +msgid "The following APIs are capable of handling Unicode objects and strings on input (we refer to them as strings in the descriptions) and return Unicode objects or integers as appropriate." msgstr "" -#: ../../c-api/unicode.rst:1505 msgid "They all return ``NULL`` or ``-1`` if an exception occurs." msgstr "" -#: ../../c-api/unicode.rst:1510 msgid "Concat two strings giving a new Unicode string." msgstr "" -#: ../../c-api/unicode.rst:1515 -msgid "" -"Split a string giving a list of Unicode strings. If *sep* is ``NULL``, " -"splitting will be done at all whitespace substrings. Otherwise, splits " -"occur at the given separator. At most *maxsplit* splits will be done. If " -"negative, no limit is set. Separators are not included in the resulting " -"list." +msgid "Split a string giving a list of Unicode strings. If *sep* is ``NULL``, splitting will be done at all whitespace substrings. Otherwise, splits occur at the given separator. At most *maxsplit* splits will be done. If negative, no limit is set. Separators are not included in the resulting list." msgstr "" -#: ../../c-api/unicode.rst:1520 ../../c-api/unicode.rst:1530 -#: ../../c-api/unicode.rst:1551 ../../c-api/unicode.rst:1564 msgid "On error, return ``NULL`` with an exception set." msgstr "" -#: ../../c-api/unicode.rst:1522 msgid "Equivalent to :py:meth:`str.split`." msgstr "" -#: ../../c-api/unicode.rst:1527 -msgid "" -"Similar to :c:func:`PyUnicode_Split`, but splitting will be done beginning " -"at the end of the string." +msgid "Similar to :c:func:`PyUnicode_Split`, but splitting will be done beginning at the end of the string." msgstr "" -#: ../../c-api/unicode.rst:1532 msgid "Equivalent to :py:meth:`str.rsplit`." msgstr "" -#: ../../c-api/unicode.rst:1537 -msgid "" -"Split a Unicode string at line breaks, returning a list of Unicode strings. " -"CRLF is considered to be one line break. If *keepends* is ``0``, the Line " -"break characters are not included in the resulting strings." +msgid "Split a Unicode string at line breaks, returning a list of Unicode strings. CRLF is considered to be one line break. If *keepends* is ``0``, the Line break characters are not included in the resulting strings." msgstr "" -#: ../../c-api/unicode.rst:1544 -msgid "" -"Split a Unicode string at the first occurrence of *sep*, and return a 3-" -"tuple containing the part before the separator, the separator itself, and " -"the part after the separator. If the separator is not found, return a 3-" -"tuple containing the string itself, followed by two empty strings." +msgid "Split a Unicode string at the first occurrence of *sep*, and return a 3-tuple containing the part before the separator, the separator itself, and the part after the separator. If the separator is not found, return a 3-tuple containing the string itself, followed by two empty strings." msgstr "" -#: ../../c-api/unicode.rst:1549 ../../c-api/unicode.rst:1562 msgid "*sep* must not be empty." msgstr "" -#: ../../c-api/unicode.rst:1553 msgid "Equivalent to :py:meth:`str.partition`." msgstr "" -#: ../../c-api/unicode.rst:1558 -msgid "" -"Similar to :c:func:`PyUnicode_Partition`, but split a Unicode string at the " -"last occurrence of *sep*. If the separator is not found, return a 3-tuple " -"containing two empty strings, followed by the string itself." +msgid "Similar to :c:func:`PyUnicode_Partition`, but split a Unicode string at the last occurrence of *sep*. If the separator is not found, return a 3-tuple containing two empty strings, followed by the string itself." msgstr "" -#: ../../c-api/unicode.rst:1566 msgid "Equivalent to :py:meth:`str.rpartition`." msgstr "" -#: ../../c-api/unicode.rst:1571 -msgid "" -"Join a sequence of strings using the given *separator* and return the " -"resulting Unicode string." +msgid "Join a sequence of strings using the given *separator* and return the resulting Unicode string." msgstr "" -#: ../../c-api/unicode.rst:1578 -msgid "" -"Return ``1`` if *substr* matches ``unicode[start:end]`` at the given tail " -"end (*direction* == ``-1`` means to do a prefix match, *direction* == ``1`` " -"a suffix match), ``0`` otherwise. Return ``-1`` if an error occurred." +msgid "Return ``1`` if *substr* matches ``unicode[start:end]`` at the given tail end (*direction* == ``-1`` means to do a prefix match, *direction* == ``1`` a suffix match), ``0`` otherwise. Return ``-1`` if an error occurred." msgstr "" -#: ../../c-api/unicode.rst:1586 -msgid "" -"Return the first position of *substr* in ``unicode[start:end]`` using the " -"given *direction* (*direction* == ``1`` means to do a forward search, " -"*direction* == ``-1`` a backward search). The return value is the index of " -"the first match; a value of ``-1`` indicates that no match was found, and " -"``-2`` indicates that an error occurred and an exception has been set." +msgid "Return the first position of *substr* in ``unicode[start:end]`` using the given *direction* (*direction* == ``1`` means to do a forward search, *direction* == ``-1`` a backward search). The return value is the index of the first match; a value of ``-1`` indicates that no match was found, and ``-2`` indicates that an error occurred and an exception has been set." msgstr "" -#: ../../c-api/unicode.rst:1596 -msgid "" -"Return the first position of the character *ch* in ``unicode[start:end]`` " -"using the given *direction* (*direction* == ``1`` means to do a forward " -"search, *direction* == ``-1`` a backward search). The return value is the " -"index of the first match; a value of ``-1`` indicates that no match was " -"found, and ``-2`` indicates that an error occurred and an exception has been " -"set." +msgid "Return the first position of the character *ch* in ``unicode[start:end]`` using the given *direction* (*direction* == ``1`` means to do a forward search, *direction* == ``-1`` a backward search). The return value is the index of the first match; a value of ``-1`` indicates that no match was found, and ``-2`` indicates that an error occurred and an exception has been set." msgstr "" -#: ../../c-api/unicode.rst:1604 -msgid "" -"*start* and *end* are now adjusted to behave like ``unicode[start:end]``." +msgid "*start* and *end* are now adjusted to behave like ``unicode[start:end]``." msgstr "" -#: ../../c-api/unicode.rst:1611 -msgid "" -"Return the number of non-overlapping occurrences of *substr* in " -"``unicode[start:end]``. Return ``-1`` if an error occurred." +msgid "Return the number of non-overlapping occurrences of *substr* in ``unicode[start:end]``. Return ``-1`` if an error occurred." msgstr "" -#: ../../c-api/unicode.rst:1618 -msgid "" -"Replace at most *maxcount* occurrences of *substr* in *unicode* with " -"*replstr* and return the resulting Unicode object. *maxcount* == ``-1`` " -"means replace all occurrences." +msgid "Replace at most *maxcount* occurrences of *substr* in *unicode* with *replstr* and return the resulting Unicode object. *maxcount* == ``-1`` means replace all occurrences." msgstr "" -#: ../../c-api/unicode.rst:1625 -msgid "" -"Compare two strings and return ``-1``, ``0``, ``1`` for less than, equal, " -"and greater than, respectively." +msgid "Compare two strings and return ``-1``, ``0``, ``1`` for less than, equal, and greater than, respectively." msgstr "" -#: ../../c-api/unicode.rst:1628 -msgid "" -"This function returns ``-1`` upon failure, so one should " -"call :c:func:`PyErr_Occurred` to check for errors." +msgid "This function returns ``-1`` upon failure, so one should call :c:func:`PyErr_Occurred` to check for errors." msgstr "" -#: ../../c-api/unicode.rst:1633 msgid "The :c:func:`PyUnicode_Equal` function." msgstr "" -#: ../../c-api/unicode.rst:1638 msgid "Test if two strings are equal:" msgstr "" -#: ../../c-api/unicode.rst:1640 msgid "Return ``1`` if *a* is equal to *b*." msgstr "" -#: ../../c-api/unicode.rst:1641 msgid "Return ``0`` if *a* is not equal to *b*." msgstr "" -#: ../../c-api/unicode.rst:1642 -msgid "" -"Set a :exc:`TypeError` exception and return ``-1`` if *a* or *b* is not " -"a :class:`str` object." +msgid "Set a :exc:`TypeError` exception and return ``-1`` if *a* or *b* is not a :class:`str` object." msgstr "" -#: ../../c-api/unicode.rst:1645 msgid "The function always succeeds if *a* and *b* are :class:`str` objects." msgstr "" -#: ../../c-api/unicode.rst:1647 -msgid "" -"The function works for :class:`str` subclasses, but does not honor custom " -"``__eq__()`` method." +msgid "The function works for :class:`str` subclasses, but does not honor custom ``__eq__()`` method." msgstr "" -#: ../../c-api/unicode.rst:1652 msgid "The :c:func:`PyUnicode_Compare` function." msgstr "" -#: ../../c-api/unicode.rst:1659 -msgid "" -"Compare a Unicode object with a char buffer which is interpreted as being " -"UTF-8 or ASCII encoded and return true (``1``) if they are equal, or false " -"(``0``) otherwise. If the Unicode object contains surrogate code points " -"(``U+D800`` - ``U+DFFF``) or the C string is not valid UTF-8, false (``0``) " -"is returned." +msgid "Compare a Unicode object with a char buffer which is interpreted as being UTF-8 or ASCII encoded and return true (``1``) if they are equal, or false (``0``) otherwise. If the Unicode object contains surrogate code points (``U+D800`` - ``U+DFFF``) or the C string is not valid UTF-8, false (``0``) is returned." msgstr "" -#: ../../c-api/unicode.rst:1666 ../../c-api/unicode.rst:1687 msgid "This function does not raise exceptions." msgstr "" -#: ../../c-api/unicode.rst:1673 -msgid "" -"Similar to :c:func:`PyUnicode_EqualToUTF8AndSize`, but compute *string* " -"length using :c:func:`!strlen`. If the Unicode object contains null " -"characters, false (``0``) is returned." +msgid "Similar to :c:func:`PyUnicode_EqualToUTF8AndSize`, but compute *string* length using :c:func:`!strlen`. If the Unicode object contains null characters, false (``0``) is returned." msgstr "" -#: ../../c-api/unicode.rst:1682 -msgid "" -"Compare a Unicode object, *unicode*, with *string* and return ``-1``, ``0``, " -"``1`` for less than, equal, and greater than, respectively. It is best to " -"pass only ASCII-encoded strings, but the function interprets the input " -"string as ISO-8859-1 if it contains non-ASCII characters." +msgid "Compare a Unicode object, *unicode*, with *string* and return ``-1``, ``0``, ``1`` for less than, equal, and greater than, respectively. It is best to pass only ASCII-encoded strings, but the function interprets the input string as ISO-8859-1 if it contains non-ASCII characters." msgstr "" -#: ../../c-api/unicode.rst:1692 msgid "Rich compare two Unicode strings and return one of the following:" msgstr "" -#: ../../c-api/unicode.rst:1694 msgid "``NULL`` in case an exception was raised" msgstr "" -#: ../../c-api/unicode.rst:1695 msgid ":c:data:`Py_True` or :c:data:`Py_False` for successful comparisons" msgstr "" -#: ../../c-api/unicode.rst:1696 msgid ":c:data:`Py_NotImplemented` in case the type combination is unknown" msgstr "" -#: ../../c-api/unicode.rst:1698 -msgid "" -"Possible values for *op* " -"are :c:macro:`Py_GT`, :c:macro:`Py_GE`, :c:macro:`Py_EQ`, :c:macro:`Py_NE`, :c:macro:`Py_LT`, " -"and :c:macro:`Py_LE`." +msgid "Possible values for *op* are :c:macro:`Py_GT`, :c:macro:`Py_GE`, :c:macro:`Py_EQ`, :c:macro:`Py_NE`, :c:macro:`Py_LT`, and :c:macro:`Py_LE`." msgstr "" -#: ../../c-api/unicode.rst:1704 -msgid "" -"Return a new string object from *format* and *args*; this is analogous to " -"``format % args``." +msgid "Return a new string object from *format* and *args*; this is analogous to ``format % args``." msgstr "" -#: ../../c-api/unicode.rst:1710 -msgid "" -"Check whether *substr* is contained in *unicode* and return true or false " -"accordingly." +msgid "Check whether *substr* is contained in *unicode* and return true or false accordingly." msgstr "" -#: ../../c-api/unicode.rst:1713 -msgid "" -"*substr* has to coerce to a one element Unicode string. ``-1`` is returned " -"if there was an error." +msgid "*substr* has to coerce to a one element Unicode string. ``-1`` is returned if there was an error." msgstr "" -#: ../../c-api/unicode.rst:1719 -msgid "" -"Intern the argument :c:expr:`*p_unicode` in place. The argument must be the " -"address of a pointer variable pointing to a Python Unicode string object. " -"If there is an existing interned string that is the same " -"as :c:expr:`*p_unicode`, it sets :c:expr:`*p_unicode` to it (releasing the " -"reference to the old string object and creating a new :term:`strong " -"reference` to the interned string object), otherwise it " -"leaves :c:expr:`*p_unicode` alone and interns it." +msgid "Intern the argument :c:expr:`*p_unicode` in place. The argument must be the address of a pointer variable pointing to a Python Unicode string object. If there is an existing interned string that is the same as :c:expr:`*p_unicode`, it sets :c:expr:`*p_unicode` to it (releasing the reference to the old string object and creating a new :term:`strong reference` to the interned string object), otherwise it leaves :c:expr:`*p_unicode` alone and interns it." msgstr "" -#: ../../c-api/unicode.rst:1726 -msgid "" -"(Clarification: even though there is a lot of talk about references, think " -"of this function as reference-neutral. You must own the object you pass in; " -"after the call you no longer own the passed-in reference, but you newly own " -"the result.)" +msgid "(Clarification: even though there is a lot of talk about references, think of this function as reference-neutral. You must own the object you pass in; after the call you no longer own the passed-in reference, but you newly own the result.)" msgstr "" -#: ../../c-api/unicode.rst:1731 -msgid "" -"This function never raises an exception. On error, it leaves its argument " -"unchanged without interning it." +msgid "This function never raises an exception. On error, it leaves its argument unchanged without interning it." msgstr "" -#: ../../c-api/unicode.rst:1734 -msgid "" -"Instances of subclasses of :py:class:`str` may not be interned, that " -"is, :c:expr:`PyUnicode_CheckExact(*p_unicode)` must be true. If it is not, " -"then -- as with any other error -- the argument is left unchanged." +msgid "Instances of subclasses of :py:class:`str` may not be interned, that is, :c:expr:`PyUnicode_CheckExact(*p_unicode)` must be true. If it is not, then -- as with any other error -- the argument is left unchanged." msgstr "" -#: ../../c-api/unicode.rst:1738 -msgid "" -"Note that interned strings are not “immortal”. You must keep a reference to " -"the result to benefit from interning." +msgid "Note that interned strings are not “immortal”. You must keep a reference to the result to benefit from interning." msgstr "" -#: ../../c-api/unicode.rst:1744 -msgid "" -"A combination of :c:func:`PyUnicode_FromString` " -"and :c:func:`PyUnicode_InternInPlace`, meant for statically allocated " -"strings." +msgid "A combination of :c:func:`PyUnicode_FromString` and :c:func:`PyUnicode_InternInPlace`, meant for statically allocated strings." msgstr "" -#: ../../c-api/unicode.rst:1747 -msgid "" -"Return a new (\"owned\") reference to either a new Unicode string object " -"that has been interned, or an earlier interned string object with the same " -"value." +msgid "Return a new (\"owned\") reference to either a new Unicode string object that has been interned, or an earlier interned string object with the same value." msgstr "" -#: ../../c-api/unicode.rst:1751 -msgid "" -"Python may keep a reference to the result, or make it :term:`immortal`, " -"preventing it from being garbage-collected promptly. For interning an " -"unbounded number of different strings, such as ones coming from user input, " -"prefer calling :c:func:`PyUnicode_FromString` " -"and :c:func:`PyUnicode_InternInPlace` directly." +msgid "Python may keep a reference to the result, or make it :term:`immortal`, preventing it from being garbage-collected promptly. For interning an unbounded number of different strings, such as ones coming from user input, prefer calling :c:func:`PyUnicode_FromString` and :c:func:`PyUnicode_InternInPlace` directly." msgstr "" -#: ../../c-api/unicode.rst:1760 -msgid "" -"Return a non-zero value if *str* is interned, zero if not. The *str* " -"argument must be a string; this is not checked. This function always " -"succeeds." +msgid "Return a non-zero value if *str* is interned, zero if not. The *str* argument must be a string; this is not checked. This function always succeeds." msgstr "" -#: ../../c-api/unicode.rst:1766 -msgid "" -"A non-zero return value may carry additional information about *how* the " -"string is interned. The meaning of such non-zero values, as well as each " -"specific string's intern-related details, may change between CPython " -"versions." +msgid "A non-zero return value may carry additional information about *how* the string is interned. The meaning of such non-zero values, as well as each specific string's intern-related details, may change between CPython versions." msgstr "" -#: ../../c-api/unicode.rst:1773 msgid "PyUnicodeWriter" msgstr "" -#: ../../c-api/unicode.rst:1775 -msgid "" -"The :c:type:`PyUnicodeWriter` API can be used to create a " -"Python :class:`str` object." +msgid "The :c:type:`PyUnicodeWriter` API can be used to create a Python :class:`str` object." msgstr "" -#: ../../c-api/unicode.rst:1782 msgid "A Unicode writer instance." msgstr "" -#: ../../c-api/unicode.rst:1784 -msgid "" -"The instance must be destroyed by :c:func:`PyUnicodeWriter_Finish` on " -"success, or :c:func:`PyUnicodeWriter_Discard` on error." +msgid "The instance must be destroyed by :c:func:`PyUnicodeWriter_Finish` on success, or :c:func:`PyUnicodeWriter_Discard` on error." msgstr "" -#: ../../c-api/unicode.rst:1789 msgid "Create a Unicode writer instance." msgstr "" -#: ../../c-api/unicode.rst:1791 msgid "*length* must be greater than or equal to ``0``." msgstr "" -#: ../../c-api/unicode.rst:1793 -msgid "" -"If *length* is greater than ``0``, preallocate an internal buffer of " -"*length* characters." +msgid "If *length* is greater than ``0``, preallocate an internal buffer of *length* characters." msgstr "" -#: ../../c-api/unicode.rst:1796 ../../c-api/unicode.rst:1802 msgid "Set an exception and return ``NULL`` on error." msgstr "" -#: ../../c-api/unicode.rst:1800 -msgid "" -"Return the final Python :class:`str` object and destroy the writer instance." +msgid "Return the final Python :class:`str` object and destroy the writer instance." msgstr "" -#: ../../c-api/unicode.rst:1804 ../../c-api/unicode.rst:1812 msgid "The writer instance is invalid after this call." msgstr "" -#: ../../c-api/unicode.rst:1808 msgid "Discard the internal Unicode buffer and destroy the writer instance." msgstr "" -#: ../../c-api/unicode.rst:1810 msgid "If *writer* is ``NULL``, no operation is performed." msgstr "" -#: ../../c-api/unicode.rst:1816 msgid "Write the single Unicode character *ch* into *writer*." msgstr "" -#: ../../c-api/unicode.rst:1818 ../../c-api/unicode.rst:1828 -#: ../../c-api/unicode.rst:1843 ../../c-api/unicode.rst:1853 -#: ../../c-api/unicode.rst:1862 ../../c-api/unicode.rst:1869 -#: ../../c-api/unicode.rst:1882 ../../c-api/unicode.rst:1897 -#: ../../c-api/unicode.rst:1904 ../../c-api/unicode.rst:1923 -msgid "" -"On success, return ``0``. On error, set an exception, leave the writer " -"unchanged, and return ``-1``." +msgid "On success, return ``0``. On error, set an exception, leave the writer unchanged, and return ``-1``." msgstr "" -#: ../../c-api/unicode.rst:1823 -msgid "" -"Decode the string *str* from UTF-8 in strict mode and write the output into " -"*writer*." +msgid "Decode the string *str* from UTF-8 in strict mode and write the output into *writer*." msgstr "" -#: ../../c-api/unicode.rst:1825 ../../c-api/unicode.rst:1837 -#: ../../c-api/unicode.rst:1912 -msgid "" -"*size* is the string length in bytes. If *size* is equal to ``-1``, call " -"``strlen(str)`` to get the string length." +msgid "*size* is the string length in bytes. If *size* is equal to ``-1``, call ``strlen(str)`` to get the string length." msgstr "" -#: ../../c-api/unicode.rst:1831 msgid "See also :c:func:`PyUnicodeWriter_DecodeUTF8Stateful`." msgstr "" -#: ../../c-api/unicode.rst:1835 msgid "Write the ASCII string *str* into *writer*." msgstr "" -#: ../../c-api/unicode.rst:1840 -msgid "" -"*str* must only contain ASCII characters. The behavior is undefined if *str* " -"contains non-ASCII characters." +msgid "*str* must only contain ASCII characters. The behavior is undefined if *str* contains non-ASCII characters." msgstr "" -#: ../../c-api/unicode.rst:1848 msgid "Write the wide string *str* into *writer*." msgstr "" -#: ../../c-api/unicode.rst:1850 -msgid "" -"*size* is a number of wide characters. If *size* is equal to ``-1``, call " -"``wcslen(str)`` to get the string length." +msgid "*size* is a number of wide characters. If *size* is equal to ``-1``, call ``wcslen(str)`` to get the string length." msgstr "" -#: ../../c-api/unicode.rst:1858 msgid "Writer the UCS4 string *str* into *writer*." msgstr "" -#: ../../c-api/unicode.rst:1860 msgid "*size* is a number of UCS4 characters." msgstr "" -#: ../../c-api/unicode.rst:1867 -msgid "" -"Call :c:func:`PyObject_Str` on *obj* and write the output into *writer*." +msgid "Call :c:func:`PyObject_Str` on *obj* and write the output into *writer*." msgstr "" -#: ../../c-api/unicode.rst:1872 -msgid "" -"To write a :class:`str` subclass which overrides the :meth:`~object.__str__` " -"method, :c:func:`PyUnicode_FromObject` can be used to get the original " -"string." +msgid "To write a :class:`str` subclass which overrides the :meth:`~object.__str__` method, :c:func:`PyUnicode_FromObject` can be used to get the original string." msgstr "" -#: ../../c-api/unicode.rst:1878 -msgid "" -"Call :c:func:`PyObject_Repr` on *obj* and write the output into *writer*." +msgid "Call :c:func:`PyObject_Repr` on *obj* and write the output into *writer*." msgstr "" -#: ../../c-api/unicode.rst:1880 msgid "If *obj* is ``NULL``, write the string ``\"\"`` into *writer*." msgstr "" -#: ../../c-api/unicode.rst:1887 msgid "Added support for ``NULL``." msgstr "" -#: ../../c-api/unicode.rst:1891 msgid "Write the substring ``str[start:end]`` into *writer*." msgstr "" -#: ../../c-api/unicode.rst:1893 -msgid "" -"*str* must be Python :class:`str` object. *start* must be greater than or " -"equal to 0, and less than or equal to *end*. *end* must be less than or " -"equal to *str* length." +msgid "*str* must be Python :class:`str` object. *start* must be greater than or equal to 0, and less than or equal to *end*. *end* must be less than or equal to *str* length." msgstr "" -#: ../../c-api/unicode.rst:1902 -msgid "" -"Similar to :c:func:`PyUnicode_FromFormat`, but write the output directly " -"into *writer*." +msgid "Similar to :c:func:`PyUnicode_FromFormat`, but write the output directly into *writer*." msgstr "" -#: ../../c-api/unicode.rst:1909 -msgid "" -"Decode the string *str* from UTF-8 with *errors* error handler and write the " -"output into *writer*." +msgid "Decode the string *str* from UTF-8 with *errors* error handler and write the output into *writer*." msgstr "" -#: ../../c-api/unicode.rst:1915 -msgid "" -"*errors* is an :ref:`error handler ` name, such as " -"``\"replace\"``. If *errors* is ``NULL``, use the strict error handler." +msgid "*errors* is an :ref:`error handler ` name, such as ``\"replace\"``. If *errors* is ``NULL``, use the strict error handler." msgstr "" -#: ../../c-api/unicode.rst:1918 -msgid "" -"If *consumed* is not ``NULL``, set *\\*consumed* to the number of decoded " -"bytes on success. If *consumed* is ``NULL``, treat trailing incomplete UTF-8 " -"byte sequences as an error." +msgid "If *consumed* is not ``NULL``, set *\\*consumed* to the number of decoded bytes on success. If *consumed* is ``NULL``, treat trailing incomplete UTF-8 byte sequences as an error." msgstr "" -#: ../../c-api/unicode.rst:1926 msgid "See also :c:func:`PyUnicodeWriter_WriteUTF8`." msgstr "" -#: ../../c-api/unicode.rst:1929 msgid "Deprecated API" msgstr "" -#: ../../c-api/unicode.rst:1931 msgid "The following API is deprecated." msgstr "" -#: ../../c-api/unicode.rst:1935 -msgid "" -"This is a typedef of :c:type:`wchar_t`, which is a 16-bit type or 32-bit " -"type depending on the platform. Please use :c:type:`wchar_t` directly " -"instead." +msgid "This is a typedef of :c:type:`wchar_t`, which is a 16-bit type or 32-bit type depending on the platform. Please use :c:type:`wchar_t` directly instead." msgstr "" -#: ../../c-api/unicode.rst:1939 -msgid "" -"In previous versions, this was a 16-bit type or a 32-bit type depending on " -"whether you selected a \"narrow\" or \"wide\" Unicode version of Python at " -"build time." +msgid "In previous versions, this was a 16-bit type or a 32-bit type depending on whether you selected a \"narrow\" or \"wide\" Unicode version of Python at build time." msgstr "" -#: ../../c-api/unicode.rst:1949 -msgid "" -"Do nothing and return ``0``. This API is kept only for backward " -"compatibility, but there are no plans to remove it." +msgid "Do nothing and return ``0``. This API is kept only for backward compatibility, but there are no plans to remove it." msgstr "" -#: ../../c-api/unicode.rst:1955 -msgid "" -"This API does nothing since Python 3.12. Previously, this needed to be " -"called for each string created using the old API (:c:func:`!" -"PyUnicode_FromUnicode` or similar)." +msgid "This API does nothing since Python 3.12. Previously, this needed to be called for each string created using the old API (:c:func:`!PyUnicode_FromUnicode` or similar)." msgstr "" -#: ../../c-api/unicode.rst:1963 -msgid "" -"Do nothing and return ``1``. This API is kept only for backward " -"compatibility, but there are no plans to remove it." +msgid "Do nothing and return ``1``. This API is kept only for backward compatibility, but there are no plans to remove it." msgstr "" -#: ../../c-api/unicode.rst:1969 -msgid "" -"This API does nothing since Python 3.12. Previously, this could be called to " -"check if :c:func:`PyUnicode_READY` is necessary." +msgid "This API does nothing since Python 3.12. Previously, this could be called to check if :c:func:`PyUnicode_READY` is necessary." msgstr "" diff --git a/c-api/utilities.po b/c-api/utilities.po index 2b9a39e2..cdd7ab33 100644 --- a/c-api/utilities.po +++ b/c-api/utilities.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:50+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,14 +24,8 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../c-api/utilities.rst:7 msgid "Utilities" msgstr "" -#: ../../c-api/utilities.rst:9 -msgid "" -"The functions in this chapter perform various utility tasks, ranging from " -"helping C code be more portable across platforms, using Python modules from " -"C, and parsing function arguments and constructing Python values from C " -"values." +msgid "The functions in this chapter perform various utility tasks, ranging from helping C code be more portable across platforms, using Python modules from C, and parsing function arguments and constructing Python values from C values." msgstr "" diff --git a/c-api/veryhigh.po b/c-api/veryhigh.po index 34946b71..025e6f78 100644 --- a/c-api/veryhigh.po +++ b/c-api/veryhigh.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:50+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,418 +21,177 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../c-api/veryhigh.rst:8 msgid "The Very High Level Layer" msgstr "" -#: ../../c-api/veryhigh.rst:10 -msgid "" -"The functions in this chapter will let you execute Python source code given " -"in a file or a buffer, but they will not let you interact in a more detailed " -"way with the interpreter." +msgid "The functions in this chapter will let you execute Python source code given in a file or a buffer, but they will not let you interact in a more detailed way with the interpreter." msgstr "" -#: ../../c-api/veryhigh.rst:14 -msgid "" -"Several of these functions accept a start symbol from the grammar as a " -"parameter. The available start symbols " -"are :c:data:`Py_eval_input`, :c:data:`Py_file_input`, :c:data:`Py_single_input`, " -"and :c:data:`Py_func_type_input`. These are described following the " -"functions which accept them as parameters." +msgid "Several of these functions accept a start symbol from the grammar as a parameter. The available start symbols are :c:data:`Py_eval_input`, :c:data:`Py_file_input`, :c:data:`Py_single_input`, and :c:data:`Py_func_type_input`. These are described following the functions which accept them as parameters." msgstr "" -#: ../../c-api/veryhigh.rst:20 -msgid "" -"Note also that several of these functions take :c:expr:`FILE*` parameters. " -"One particular issue which needs to be handled carefully is that " -"the :c:type:`FILE` structure for different C libraries can be different and " -"incompatible. Under Windows (at least), it is possible for dynamically " -"linked extensions to actually use different libraries, so care should be " -"taken that :c:expr:`FILE*` parameters are only passed to these functions if " -"it is certain that they were created by the same library that the Python " -"runtime is using." +msgid "Note also that several of these functions take :c:expr:`FILE*` parameters. One particular issue which needs to be handled carefully is that the :c:type:`FILE` structure for different C libraries can be different and incompatible. Under Windows (at least), it is possible for dynamically linked extensions to actually use different libraries, so care should be taken that :c:expr:`FILE*` parameters are only passed to these functions if it is certain that they were created by the same library that the Python runtime is using." msgstr "" -#: ../../c-api/veryhigh.rst:31 -msgid "" -"This is a simplified interface to :c:func:`PyRun_AnyFileExFlags` below, " -"leaving *closeit* set to ``0`` and *flags* set to ``NULL``." +msgid "This is a simplified interface to :c:func:`PyRun_AnyFileExFlags` below, leaving *closeit* set to ``0`` and *flags* set to ``NULL``." msgstr "" -#: ../../c-api/veryhigh.rst:37 -msgid "" -"This is a simplified interface to :c:func:`PyRun_AnyFileExFlags` below, " -"leaving the *closeit* argument set to ``0``." +msgid "This is a simplified interface to :c:func:`PyRun_AnyFileExFlags` below, leaving the *closeit* argument set to ``0``." msgstr "" -#: ../../c-api/veryhigh.rst:43 -msgid "" -"This is a simplified interface to :c:func:`PyRun_AnyFileExFlags` below, " -"leaving the *flags* argument set to ``NULL``." +msgid "This is a simplified interface to :c:func:`PyRun_AnyFileExFlags` below, leaving the *flags* argument set to ``NULL``." msgstr "" -#: ../../c-api/veryhigh.rst:49 -msgid "" -"If *fp* refers to a file associated with an interactive device (console or " -"terminal input or Unix pseudo-terminal), return the value " -"of :c:func:`PyRun_InteractiveLoop`, otherwise return the result " -"of :c:func:`PyRun_SimpleFile`. *filename* is decoded from the filesystem " -"encoding (:func:`sys.getfilesystemencoding`). If *filename* is ``NULL``, " -"this function uses ``\"???\"`` as the filename. If *closeit* is true, the " -"file is closed before ``PyRun_SimpleFileExFlags()`` returns." +msgid "If *fp* refers to a file associated with an interactive device (console or terminal input or Unix pseudo-terminal), return the value of :c:func:`PyRun_InteractiveLoop`, otherwise return the result of :c:func:`PyRun_SimpleFile`. *filename* is decoded from the filesystem encoding (:func:`sys.getfilesystemencoding`). If *filename* is ``NULL``, this function uses ``\"???\"`` as the filename. If *closeit* is true, the file is closed before ``PyRun_SimpleFileExFlags()`` returns." msgstr "" -#: ../../c-api/veryhigh.rst:61 -msgid "" -"This is a simplified interface to :c:func:`PyRun_SimpleStringFlags` below, " -"leaving the :c:struct:`PyCompilerFlags`\\* argument set to ``NULL``." +msgid "This is a simplified interface to :c:func:`PyRun_SimpleStringFlags` below, leaving the :c:struct:`PyCompilerFlags`\\* argument set to ``NULL``." msgstr "" -#: ../../c-api/veryhigh.rst:67 -msgid "" -"Executes the Python source code from *command* in the :mod:`__main__` module " -"according to the *flags* argument. If :mod:`__main__` does not already " -"exist, it is created. Returns ``0`` on success or ``-1`` if an exception " -"was raised. If there was an error, there is no way to get the exception " -"information. For the meaning of *flags*, see below." +msgid "Executes the Python source code from *command* in the :mod:`__main__` module according to the *flags* argument. If :mod:`__main__` does not already exist, it is created. Returns ``0`` on success or ``-1`` if an exception was raised. If there was an error, there is no way to get the exception information. For the meaning of *flags*, see below." msgstr "" -#: ../../c-api/veryhigh.rst:73 -msgid "" -"Note that if an otherwise unhandled :exc:`SystemExit` is raised, this " -"function will not return ``-1``, but exit the process, as long " -"as :c:member:`PyConfig.inspect` is zero." +msgid "Note that if an otherwise unhandled :exc:`SystemExit` is raised, this function will not return ``-1``, but exit the process, as long as :c:member:`PyConfig.inspect` is zero." msgstr "" -#: ../../c-api/veryhigh.rst:80 -msgid "" -"This is a simplified interface to :c:func:`PyRun_SimpleFileExFlags` below, " -"leaving *closeit* set to ``0`` and *flags* set to ``NULL``." +msgid "This is a simplified interface to :c:func:`PyRun_SimpleFileExFlags` below, leaving *closeit* set to ``0`` and *flags* set to ``NULL``." msgstr "" -#: ../../c-api/veryhigh.rst:86 -msgid "" -"This is a simplified interface to :c:func:`PyRun_SimpleFileExFlags` below, " -"leaving *flags* set to ``NULL``." +msgid "This is a simplified interface to :c:func:`PyRun_SimpleFileExFlags` below, leaving *flags* set to ``NULL``." msgstr "" -#: ../../c-api/veryhigh.rst:92 -msgid "" -"Similar to :c:func:`PyRun_SimpleStringFlags`, but the Python source code is " -"read from *fp* instead of an in-memory string. *filename* should be the name " -"of the file, it is decoded from :term:`filesystem encoding and error " -"handler`. If *closeit* is true, the file is closed before " -"``PyRun_SimpleFileExFlags()`` returns." +msgid "Similar to :c:func:`PyRun_SimpleStringFlags`, but the Python source code is read from *fp* instead of an in-memory string. *filename* should be the name of the file, it is decoded from :term:`filesystem encoding and error handler`. If *closeit* is true, the file is closed before ``PyRun_SimpleFileExFlags()`` returns." msgstr "" -#: ../../c-api/veryhigh.rst:99 -msgid "" -"On Windows, *fp* should be opened as binary mode (e.g. ``fopen(filename, " -"\"rb\")``). Otherwise, Python may not handle script file with LF line ending " -"correctly." +msgid "On Windows, *fp* should be opened as binary mode (e.g. ``fopen(filename, \"rb\")``). Otherwise, Python may not handle script file with LF line ending correctly." msgstr "" -#: ../../c-api/veryhigh.rst:105 -msgid "" -"Read and execute a single statement from a file associated with an " -"interactive device according to the *flags* argument. The user will be " -"prompted using ``sys.ps1`` and ``sys.ps2``. *filename* must be a " -"Python :class:`str` object." +msgid "Read and execute a single statement from a file associated with an interactive device according to the *flags* argument. The user will be prompted using ``sys.ps1`` and ``sys.ps2``. *filename* must be a Python :class:`str` object." msgstr "" -#: ../../c-api/veryhigh.rst:110 -msgid "" -"Returns ``0`` when the input was executed successfully, ``-1`` if there was " -"an exception, or an error code from the :file:`errcode.h` include file " -"distributed as part of Python if there was a parse error. (Note " -"that :file:`errcode.h` is not included by :file:`Python.h`, so must be " -"included specifically if needed.)" +msgid "Returns ``0`` when the input was executed successfully, ``-1`` if there was an exception, or an error code from the :file:`errcode.h` include file distributed as part of Python if there was a parse error. (Note that :file:`errcode.h` is not included by :file:`Python.h`, so must be included specifically if needed.)" msgstr "" -#: ../../c-api/veryhigh.rst:119 -msgid "" -"This is a simplified interface to :c:func:`PyRun_InteractiveOneFlags` below, " -"leaving *flags* set to ``NULL``." +msgid "This is a simplified interface to :c:func:`PyRun_InteractiveOneFlags` below, leaving *flags* set to ``NULL``." msgstr "" -#: ../../c-api/veryhigh.rst:125 -msgid "" -"Similar to :c:func:`PyRun_InteractiveOneObject`, but *filename* is " -"a :c:expr:`const char*`, which is decoded from the :term:`filesystem " -"encoding and error handler`." +msgid "Similar to :c:func:`PyRun_InteractiveOneObject`, but *filename* is a :c:expr:`const char*`, which is decoded from the :term:`filesystem encoding and error handler`." msgstr "" -#: ../../c-api/veryhigh.rst:132 -msgid "" -"This is a simplified interface to :c:func:`PyRun_InteractiveLoopFlags` " -"below, leaving *flags* set to ``NULL``." +msgid "This is a simplified interface to :c:func:`PyRun_InteractiveLoopFlags` below, leaving *flags* set to ``NULL``." msgstr "" -#: ../../c-api/veryhigh.rst:138 -msgid "" -"Read and execute statements from a file associated with an interactive " -"device until EOF is reached. The user will be prompted using ``sys.ps1`` " -"and ``sys.ps2``. *filename* is decoded from the :term:`filesystem encoding " -"and error handler`. Returns ``0`` at EOF or a negative number upon failure." +msgid "Read and execute statements from a file associated with an interactive device until EOF is reached. The user will be prompted using ``sys.ps1`` and ``sys.ps2``. *filename* is decoded from the :term:`filesystem encoding and error handler`. Returns ``0`` at EOF or a negative number upon failure." msgstr "" -#: ../../c-api/veryhigh.rst:146 -msgid "" -"Can be set to point to a function with the prototype ``int func(void)``. " -"The function will be called when Python's interpreter prompt is about to " -"become idle and wait for user input from the terminal. The return value is " -"ignored. Overriding this hook can be used to integrate the interpreter's " -"prompt with other event loops, as done in :file:`Modules/_tkinter.c` in the " -"Python source code." +msgid "Can be set to point to a function with the prototype ``int func(void)``. The function will be called when Python's interpreter prompt is about to become idle and wait for user input from the terminal. The return value is ignored. Overriding this hook can be used to integrate the interpreter's prompt with other event loops, as done in :file:`Modules/_tkinter.c` in the Python source code." msgstr "" -#: ../../c-api/veryhigh.rst:154 ../../c-api/veryhigh.rst:178 -msgid "" -"This function is only called from the :ref:`main interpreter `." +msgid "This function is only called from the :ref:`main interpreter `." msgstr "" -#: ../../c-api/veryhigh.rst:161 -msgid "" -"Can be set to point to a function with the prototype ``char *func(FILE " -"*stdin, FILE *stdout, char *prompt)``, overriding the default function used " -"to read a single line of input at the interpreter's prompt. The function is " -"expected to output the string *prompt* if it's not ``NULL``, and then read a " -"line of input from the provided standard input file, returning the resulting " -"string. For example, The :mod:`readline` module sets this hook to provide " -"line-editing and tab-completion features." +msgid "Can be set to point to a function with the prototype ``char *func(FILE *stdin, FILE *stdout, char *prompt)``, overriding the default function used to read a single line of input at the interpreter's prompt. The function is expected to output the string *prompt* if it's not ``NULL``, and then read a line of input from the provided standard input file, returning the resulting string. For example, The :mod:`readline` module sets this hook to provide line-editing and tab-completion features." msgstr "" -#: ../../c-api/veryhigh.rst:170 -msgid "" -"The result must be a string allocated by :c:func:`PyMem_RawMalloc` " -"or :c:func:`PyMem_RawRealloc`, or ``NULL`` if an error occurred." +msgid "The result must be a string allocated by :c:func:`PyMem_RawMalloc` or :c:func:`PyMem_RawRealloc`, or ``NULL`` if an error occurred." msgstr "" -#: ../../c-api/veryhigh.rst:173 -msgid "" -"The result must be allocated by :c:func:`PyMem_RawMalloc` " -"or :c:func:`PyMem_RawRealloc`, instead of being allocated " -"by :c:func:`PyMem_Malloc` or :c:func:`PyMem_Realloc`." +msgid "The result must be allocated by :c:func:`PyMem_RawMalloc` or :c:func:`PyMem_RawRealloc`, instead of being allocated by :c:func:`PyMem_Malloc` or :c:func:`PyMem_Realloc`." msgstr "" -#: ../../c-api/veryhigh.rst:184 -msgid "" -"This is a simplified interface to :c:func:`PyRun_StringFlags` below, leaving " -"*flags* set to ``NULL``." +msgid "This is a simplified interface to :c:func:`PyRun_StringFlags` below, leaving *flags* set to ``NULL``." msgstr "" -#: ../../c-api/veryhigh.rst:190 -msgid "" -"Execute Python source code from *str* in the context specified by the " -"objects *globals* and *locals* with the compiler flags specified by " -"*flags*. *globals* must be a dictionary; *locals* can be any object that " -"implements the mapping protocol. The parameter *start* specifies the start " -"symbol and must be one of the :ref:`available start symbols `." +msgid "Execute Python source code from *str* in the context specified by the objects *globals* and *locals* with the compiler flags specified by *flags*. *globals* must be a dictionary; *locals* can be any object that implements the mapping protocol. The parameter *start* specifies the start symbol and must be one of the :ref:`available start symbols `." msgstr "" -#: ../../c-api/veryhigh.rst:196 -msgid "" -"Returns the result of executing the code as a Python object, or ``NULL`` if " -"an exception was raised." +msgid "Returns the result of executing the code as a Python object, or ``NULL`` if an exception was raised." msgstr "" -#: ../../c-api/veryhigh.rst:202 -msgid "" -"This is a simplified interface to :c:func:`PyRun_FileExFlags` below, leaving " -"*closeit* set to ``0`` and *flags* set to ``NULL``." +msgid "This is a simplified interface to :c:func:`PyRun_FileExFlags` below, leaving *closeit* set to ``0`` and *flags* set to ``NULL``." msgstr "" -#: ../../c-api/veryhigh.rst:208 -msgid "" -"This is a simplified interface to :c:func:`PyRun_FileExFlags` below, leaving " -"*flags* set to ``NULL``." +msgid "This is a simplified interface to :c:func:`PyRun_FileExFlags` below, leaving *flags* set to ``NULL``." msgstr "" -#: ../../c-api/veryhigh.rst:214 -msgid "" -"This is a simplified interface to :c:func:`PyRun_FileExFlags` below, leaving " -"*closeit* set to ``0``." +msgid "This is a simplified interface to :c:func:`PyRun_FileExFlags` below, leaving *closeit* set to ``0``." msgstr "" -#: ../../c-api/veryhigh.rst:220 -msgid "" -"Similar to :c:func:`PyRun_StringFlags`, but the Python source code is read " -"from *fp* instead of an in-memory string. *filename* should be the name of " -"the file, it is decoded from the :term:`filesystem encoding and error " -"handler`. If *closeit* is true, the file is closed " -"before :c:func:`PyRun_FileExFlags` returns." +msgid "Similar to :c:func:`PyRun_StringFlags`, but the Python source code is read from *fp* instead of an in-memory string. *filename* should be the name of the file, it is decoded from the :term:`filesystem encoding and error handler`. If *closeit* is true, the file is closed before :c:func:`PyRun_FileExFlags` returns." msgstr "" -#: ../../c-api/veryhigh.rst:229 -msgid "" -"This is a simplified interface to :c:func:`Py_CompileStringFlags` below, " -"leaving *flags* set to ``NULL``." +msgid "This is a simplified interface to :c:func:`Py_CompileStringFlags` below, leaving *flags* set to ``NULL``." msgstr "" -#: ../../c-api/veryhigh.rst:235 -msgid "" -"This is a simplified interface to :c:func:`Py_CompileStringExFlags` below, " -"with *optimize* set to ``-1``." +msgid "This is a simplified interface to :c:func:`Py_CompileStringExFlags` below, with *optimize* set to ``-1``." msgstr "" -#: ../../c-api/veryhigh.rst:241 -msgid "" -"Parse and compile the Python source code in *str*, returning the resulting " -"code object. The start symbol is given by *start*; this can be used to " -"constrain the code which can be compiled and should be :ref:`available start " -"symbols `. The filename specified by *filename* is used to " -"construct the code object and may appear in tracebacks or :exc:`SyntaxError` " -"exception messages. This returns ``NULL`` if the code cannot be parsed or " -"compiled." +msgid "Parse and compile the Python source code in *str*, returning the resulting code object. The start symbol is given by *start*; this can be used to constrain the code which can be compiled and should be :ref:`available start symbols `. The filename specified by *filename* is used to construct the code object and may appear in tracebacks or :exc:`SyntaxError` exception messages. This returns ``NULL`` if the code cannot be parsed or compiled." msgstr "" -#: ../../c-api/veryhigh.rst:249 -msgid "" -"The integer *optimize* specifies the optimization level of the compiler; a " -"value of ``-1`` selects the optimization level of the interpreter as given " -"by :option:`-O` options. Explicit levels are ``0`` (no optimization; " -"``__debug__`` is true), ``1`` (asserts are removed, ``__debug__`` is false) " -"or ``2`` (docstrings are removed too)." +msgid "The integer *optimize* specifies the optimization level of the compiler; a value of ``-1`` selects the optimization level of the interpreter as given by :option:`-O` options. Explicit levels are ``0`` (no optimization; ``__debug__`` is true), ``1`` (asserts are removed, ``__debug__`` is false) or ``2`` (docstrings are removed too)." msgstr "" -#: ../../c-api/veryhigh.rst:260 -msgid "" -"Like :c:func:`Py_CompileStringObject`, but *filename* is a byte string " -"decoded from the :term:`filesystem encoding and error handler`." +msgid "Like :c:func:`Py_CompileStringObject`, but *filename* is a byte string decoded from the :term:`filesystem encoding and error handler`." msgstr "" -#: ../../c-api/veryhigh.rst:267 -msgid "" -"This is a simplified interface to :c:func:`PyEval_EvalCodeEx`, with just the " -"code object, and global and local variables. The other arguments are set to " -"``NULL``." +msgid "This is a simplified interface to :c:func:`PyEval_EvalCodeEx`, with just the code object, and global and local variables. The other arguments are set to ``NULL``." msgstr "" -#: ../../c-api/veryhigh.rst:274 -msgid "" -"Evaluate a precompiled code object, given a particular environment for its " -"evaluation. This environment consists of a dictionary of global variables, " -"a mapping object of local variables, arrays of arguments, keywords and " -"defaults, a dictionary of default values for :ref:`keyword-only ` arguments and a closure tuple of cells." +msgid "Evaluate a precompiled code object, given a particular environment for its evaluation. This environment consists of a dictionary of global variables, a mapping object of local variables, arrays of arguments, keywords and defaults, a dictionary of default values for :ref:`keyword-only ` arguments and a closure tuple of cells." msgstr "" -#: ../../c-api/veryhigh.rst:283 -msgid "" -"Evaluate an execution frame. This is a simplified interface " -"to :c:func:`PyEval_EvalFrameEx`, for backward compatibility." +msgid "Evaluate an execution frame. This is a simplified interface to :c:func:`PyEval_EvalFrameEx`, for backward compatibility." msgstr "" -#: ../../c-api/veryhigh.rst:289 -msgid "" -"This is the main, unvarnished function of Python interpretation. The code " -"object associated with the execution frame *f* is executed, interpreting " -"bytecode and executing calls as needed. The additional *throwflag* " -"parameter can mostly be ignored - if true, then it causes an exception to " -"immediately be thrown; this is used for the :meth:`~generator.throw` methods " -"of generator objects." +msgid "This is the main, unvarnished function of Python interpretation. The code object associated with the execution frame *f* is executed, interpreting bytecode and executing calls as needed. The additional *throwflag* parameter can mostly be ignored - if true, then it causes an exception to immediately be thrown; this is used for the :meth:`~generator.throw` methods of generator objects." msgstr "" -#: ../../c-api/veryhigh.rst:296 -msgid "" -"This function now includes a debug assertion to help ensure that it does not " -"silently discard an active exception." +msgid "This function now includes a debug assertion to help ensure that it does not silently discard an active exception." msgstr "" -#: ../../c-api/veryhigh.rst:303 -msgid "" -"This function changes the flags of the current evaluation frame, and returns " -"true on success, false on failure." +msgid "This function changes the flags of the current evaluation frame, and returns true on success, false on failure." msgstr "" -#: ../../c-api/veryhigh.rst:309 -msgid "" -"This is the structure used to hold compiler flags. In cases where code is " -"only being compiled, it is passed as ``int flags``, and in cases where code " -"is being executed, it is passed as ``PyCompilerFlags *flags``. In this " -"case, ``from __future__ import`` can modify *flags*." +msgid "This is the structure used to hold compiler flags. In cases where code is only being compiled, it is passed as ``int flags``, and in cases where code is being executed, it is passed as ``PyCompilerFlags *flags``. In this case, ``from __future__ import`` can modify *flags*." msgstr "" -#: ../../c-api/veryhigh.rst:314 -msgid "" -"Whenever ``PyCompilerFlags *flags`` is " -"``NULL``, :c:member:`~PyCompilerFlags.cf_flags` is treated as equal to " -"``0``, and any modification due to ``from __future__ import`` is discarded." +msgid "Whenever ``PyCompilerFlags *flags`` is ``NULL``, :c:member:`~PyCompilerFlags.cf_flags` is treated as equal to ``0``, and any modification due to ``from __future__ import`` is discarded." msgstr "" -#: ../../c-api/veryhigh.rst:320 msgid "Compiler flags." msgstr "" -#: ../../c-api/veryhigh.rst:324 -msgid "" -"*cf_feature_version* is the minor Python version. It should be initialized " -"to ``PY_MINOR_VERSION``." +msgid "*cf_feature_version* is the minor Python version. It should be initialized to ``PY_MINOR_VERSION``." msgstr "" -#: ../../c-api/veryhigh.rst:327 -msgid "" -"The field is ignored by default, it is used if and only if ``PyCF_ONLY_AST`` " -"flag is set in :c:member:`~PyCompilerFlags.cf_flags`." +msgid "The field is ignored by default, it is used if and only if ``PyCF_ONLY_AST`` flag is set in :c:member:`~PyCompilerFlags.cf_flags`." msgstr "" -#: ../../c-api/veryhigh.rst:330 msgid "Added *cf_feature_version* field." msgstr "" -#: ../../c-api/veryhigh.rst:333 msgid "The available compiler flags are accessible as macros:" msgstr "" -#: ../../c-api/veryhigh.rst:342 -msgid "" -"See :ref:`compiler flags ` in documentation of " -"the :py:mod:`!ast` Python module, which exports these constants under the " -"same names." +msgid "See :ref:`compiler flags ` in documentation of the :py:mod:`!ast` Python module, which exports these constants under the same names." msgstr "" -#: ../../c-api/veryhigh.rst:347 msgid "Low-level flags" msgstr "" -#: ../../c-api/veryhigh.rst:348 -msgid "" -"The following flags and masks serve narrow needs of the standard library and " -"interactive interpreters. Code outside the standard library rarely has a " -"reason to use them. They are considered implementation details and may " -"change at any time." +msgid "The following flags and masks serve narrow needs of the standard library and interactive interpreters. Code outside the standard library rarely has a reason to use them. They are considered implementation details and may change at any time." msgstr "" -#: ../../c-api/veryhigh.rst:355 -msgid "" -"This flag is a private interface between the compiler and the :mod:`codeop` " -"module. Do not use it; its behavior is unsupported and may change without " -"warning." +msgid "This flag is a private interface between the compiler and the :mod:`codeop` module. Do not use it; its behavior is unsupported and may change without warning." msgstr "" -#: ../../c-api/veryhigh.rst:359 -msgid "" -"With this flag set, when compilation fails because the source text ends " -"where more input is expected, for example in the middle of an indented block " -"or an unterminated string literal, the error raised is the undocumented " -"``_IncompleteInputError``, a subclass of :exc:`SyntaxError`. " -"The :mod:`codeop` module sets this flag, together " -"with :c:macro:`PyCF_DONT_IMPLY_DEDENT`, to tell input that is incomplete " -"apart from input with a real syntax error, so that interactive interpreters " -"know when to prompt for another line instead of reporting an error." +msgid "With this flag set, when compilation fails because the source text ends where more input is expected, for example in the middle of an indented block or an unterminated string literal, the error raised is the undocumented ``_IncompleteInputError``, a subclass of :exc:`SyntaxError`. The :mod:`codeop` module sets this flag, together with :c:macro:`PyCF_DONT_IMPLY_DEDENT`, to tell input that is incomplete apart from input with a real syntax error, so that interactive interpreters know when to prompt for another line instead of reporting an error." msgstr "" -#: ../../c-api/veryhigh.rst:373 -msgid "" -"By default, when compiling with the :c:var:`Py_single_input` start symbol, " -"reaching the end of the source text implicitly closes any open indented " -"blocks. With this flag set, open blocks are only closed if the last line of " -"the source ends with a newline; otherwise, compilation fails with " -"a :exc:`SyntaxError`:" +msgid "By default, when compiling with the :c:var:`Py_single_input` start symbol, reaching the end of the source text implicitly closes any open indented blocks. With this flag set, open blocks are only closed if the last line of the source ends with a newline; otherwise, compilation fails with a :exc:`SyntaxError`:" msgstr "" -#: ../../c-api/veryhigh.rst:379 msgid "" "PyCompilerFlags flags = {\n" " .cf_flags = 0,\n" @@ -450,21 +209,12 @@ msgid "" "Py_CompileStringFlags(source, \"\", Py_single_input, &flags);" msgstr "" -#: ../../c-api/veryhigh.rst:396 -msgid "" -"The :mod:`codeop` module uses this flag to detect incomplete interactive " -"input. While the user is still typing inside an indented block, the source " -"does not yet end with a newline, so it fails to compile and the user is " -"prompted for another line." +msgid "The :mod:`codeop` module uses this flag to detect incomplete interactive input. While the user is still typing inside an indented block, the source does not yet end with a newline, so it fails to compile and the user is prompted for another line." msgstr "" -#: ../../c-api/veryhigh.rst:403 -msgid "" -"Read the source text as UTF-8, ignoring its :pep:`263` encoding declaration " -"(\"coding cookie\"), if any:" +msgid "Read the source text as UTF-8, ignoring its :pep:`263` encoding declaration (\"coding cookie\"), if any:" msgstr "" -#: ../../c-api/veryhigh.rst:406 msgid "" "PyCompilerFlags flags = {\n" " .cf_flags = 0,\n" @@ -482,141 +232,77 @@ msgid "" "Py_CompileStringFlags(source, \"\", Py_file_input, &flags);" msgstr "" -#: ../../c-api/veryhigh.rst:423 -msgid "" -"The :func:`compile`, :func:`eval` and :func:`exec` built-in functions set " -"this flag when the source is a :class:`str` object, because they pass the " -"text to the parser encoded as UTF-8." +msgid "The :func:`compile`, :func:`eval` and :func:`exec` built-in functions set this flag when the source is a :class:`str` object, because they pass the text to the parser encoded as UTF-8." msgstr "" -#: ../../c-api/veryhigh.rst:429 -msgid "" -"Mark the source text as known to be UTF-8 encoded. " -"The :func:`compile`, :func:`eval` and :func:`exec` built-in functions set " -"this flag, but it currently has no effect." +msgid "Mark the source text as known to be UTF-8 encoded. The :func:`compile`, :func:`eval` and :func:`exec` built-in functions set this flag, but it currently has no effect." msgstr "" -#: ../../c-api/veryhigh.rst:433 -msgid "" -"The \"``PyCF``\" flags above can be combined with \"``CO_FUTURE``\" flags " -"such as :c:macro:`CO_FUTURE_ANNOTATIONS` to enable features normally " -"selectable using :ref:`future statements `. " -"See :ref:`c_codeobject_flags` for a complete list." +msgid "The \"``PyCF``\" flags above can be combined with \"``CO_FUTURE``\" flags such as :c:macro:`CO_FUTURE_ANNOTATIONS` to enable features normally selectable using :ref:`future statements `. See :ref:`c_codeobject_flags` for a complete list." msgstr "" -#: ../../c-api/veryhigh.rst:438 msgid "The following masks combine several flags:" msgstr "" -#: ../../c-api/veryhigh.rst:442 -msgid "" -"Bitmask of all ``CO_FUTURE`` flags (see :ref:`c_codeobject_flags`), which " -"select features normally enabled by :ref:`future statements `. When " -"code compiled with a ``PyCompilerFlags *flags`` argument contains a ``from " -"__future__ import`` statement, the flag for the imported feature is added to " -"*flags*, so that code executed later in the same context inherits it." +msgid "Bitmask of all ``CO_FUTURE`` flags (see :ref:`c_codeobject_flags`), which select features normally enabled by :ref:`future statements `. When code compiled with a ``PyCompilerFlags *flags`` argument contains a ``from __future__ import`` statement, the flag for the imported feature is added to *flags*, so that code executed later in the same context inherits it." msgstr "" -#: ../../c-api/veryhigh.rst:452 -msgid "" -"Do not use this mask in new code. It is kept only so that old code passing " -"its flags to :func:`compile` keeps working." +msgid "Do not use this mask in new code. It is kept only so that old code passing its flags to :func:`compile` keeps working." msgstr "" -#: ../../c-api/veryhigh.rst:455 -msgid "" -"Bitmask of flags for obsolete future features that no longer have any effect." +msgid "Bitmask of flags for obsolete future features that no longer have any effect." msgstr "" -#: ../../c-api/veryhigh.rst:460 -msgid "" -"Bitmask of all ``PyCF`` flags that change how the source is compiled, such " -"as :c:macro:`PyCF_ONLY_AST`. The :func:`compile` built-in function uses this " -"mask to validate its *flags* argument." +msgid "Bitmask of all ``PyCF`` flags that change how the source is compiled, such as :c:macro:`PyCF_ONLY_AST`. The :func:`compile` built-in function uses this mask to validate its *flags* argument." msgstr "" -#: ../../c-api/veryhigh.rst:469 msgid "Available start symbols" msgstr "" -#: ../../c-api/veryhigh.rst:476 -msgid "" -"The start symbol from the Python grammar for isolated expressions; for use " -"with :c:func:`Py_CompileString`." +msgid "The start symbol from the Python grammar for isolated expressions; for use with :c:func:`Py_CompileString`." msgstr "" -#: ../../c-api/veryhigh.rst:484 -msgid "" -"The start symbol from the Python grammar for sequences of statements as read " -"from a file or other source; for use with :c:func:`Py_CompileString`. This " -"is the symbol to use when compiling arbitrarily long Python source code." +msgid "The start symbol from the Python grammar for sequences of statements as read from a file or other source; for use with :c:func:`Py_CompileString`. This is the symbol to use when compiling arbitrarily long Python source code." msgstr "" -#: ../../c-api/veryhigh.rst:493 -msgid "" -"The start symbol from the Python grammar for a single statement; for use " -"with :c:func:`Py_CompileString`. This is the symbol used for the interactive " -"interpreter loop." +msgid "The start symbol from the Python grammar for a single statement; for use with :c:func:`Py_CompileString`. This is the symbol used for the interactive interpreter loop." msgstr "" -#: ../../c-api/veryhigh.rst:502 -msgid "" -"The start symbol from the Python grammar for a function type; for use " -"with :c:func:`Py_CompileString`. This is used to parse \"signature type " -"comments\" from :pep:`484`." +msgid "The start symbol from the Python grammar for a function type; for use with :c:func:`Py_CompileString`. This is used to parse \"signature type comments\" from :pep:`484`." msgstr "" -#: ../../c-api/veryhigh.rst:506 msgid "This requires the :c:macro:`PyCF_ONLY_AST` flag to be set." msgstr "" -#: ../../c-api/veryhigh.rst:509 msgid ":py:class:`ast.FunctionType`" msgstr "" -#: ../../c-api/veryhigh.rst:510 msgid ":pep:`484`" msgstr "" -#: ../../c-api/veryhigh.rst:516 msgid "Stack Effects" msgstr "" -#: ../../c-api/veryhigh.rst:519 msgid ":py:func:`dis.stack_effect`" msgstr "" -#: ../../c-api/veryhigh.rst:524 msgid "Sentinel value representing an invalid stack effect." msgstr "" -#: ../../c-api/veryhigh.rst:526 msgid "This is currently equivalent to ``INT_MAX``." msgstr "" -#: ../../c-api/veryhigh.rst:533 msgid "Compute the stack effect of *opcode* with argument *oparg*." msgstr "" -#: ../../c-api/veryhigh.rst:535 ../../c-api/veryhigh.rst:549 -msgid "" -"On success, this function returns the stack effect; on failure, this " -"returns :c:macro:`PY_INVALID_STACK_EFFECT`." +msgid "On success, this function returns the stack effect; on failure, this returns :c:macro:`PY_INVALID_STACK_EFFECT`." msgstr "" -#: ../../c-api/veryhigh.rst:543 -msgid "" -"Similar to :c:func:`PyCompile_OpcodeStackEffect`, but don't include the " -"stack effect of jumping if *jump* is zero." +msgid "Similar to :c:func:`PyCompile_OpcodeStackEffect`, but don't include the stack effect of jumping if *jump* is zero." msgstr "" -#: ../../c-api/veryhigh.rst:546 -msgid "" -"If *jump* is ``0``, this will not include the stack effect of jumping, but " -"if *jump* is ``1`` or ``-1``, this will include it." +msgid "If *jump* is ``0``, this will not include the stack effect of jumping, but if *jump* is ``1`` or ``-1``, this will include it." msgstr "" -#: ../../c-api/veryhigh.rst:474 ../../c-api/veryhigh.rst:482 -#: ../../c-api/veryhigh.rst:491 ../../c-api/veryhigh.rst:500 msgid "Py_CompileString (C function)" msgstr "" diff --git a/c-api/weakref.po b/c-api/weakref.po index 66bf0eaa..4742a416 100644 --- a/c-api/weakref.po +++ b/c-api/weakref.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:50+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,149 +23,71 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../c-api/weakref.rst:6 msgid "Weak Reference Objects" msgstr "" -#: ../../c-api/weakref.rst:8 -msgid "" -"Python supports *weak references* as first-class objects. There are two " -"specific object types which directly implement weak references. The first " -"is a simple reference object, and the second acts as a proxy for the " -"original object as much as it can." +msgid "Python supports *weak references* as first-class objects. There are two specific object types which directly implement weak references. The first is a simple reference object, and the second acts as a proxy for the original object as much as it can." msgstr "" -#: ../../c-api/weakref.rst:16 -msgid "" -"Return non-zero if *ob* is either a reference or proxy object. This " -"function always succeeds." +msgid "Return non-zero if *ob* is either a reference or proxy object. This function always succeeds." msgstr "" -#: ../../c-api/weakref.rst:22 -msgid "" -"Return non-zero if *ob* is a reference object or a subclass of the reference " -"type. This function always succeeds." +msgid "Return non-zero if *ob* is a reference object or a subclass of the reference type. This function always succeeds." msgstr "" -#: ../../c-api/weakref.rst:28 -msgid "" -"Return non-zero if *ob* is a reference object, but not a subclass of the " -"reference type. This function always succeeds." +msgid "Return non-zero if *ob* is a reference object, but not a subclass of the reference type. This function always succeeds." msgstr "" -#: ../../c-api/weakref.rst:34 -msgid "" -"Return non-zero if *ob* is a proxy object. This function always succeeds." +msgid "Return non-zero if *ob* is a proxy object. This function always succeeds." msgstr "" -#: ../../c-api/weakref.rst:39 -msgid "" -"Return a weak reference object for the object *ob*. This will always return " -"a new reference, but is not guaranteed to create a new object; an existing " -"reference object may be returned. The second parameter, *callback*, can be " -"a callable object that receives notification when *ob* is garbage collected; " -"it should accept a single parameter, which will be the weak reference object " -"itself. *callback* may also be ``None`` or ``NULL``. If *ob* is not a " -"weakly referenceable object, this will raise :exc:`TypeError` and return " -"``NULL``." +msgid "Return a weak reference object for the object *ob*. This will always return a new reference, but is not guaranteed to create a new object; an existing reference object may be returned. The second parameter, *callback*, can be a callable object that receives notification when *ob* is garbage collected; it should accept a single parameter, which will be the weak reference object itself. *callback* may also be ``None`` or ``NULL``. If *ob* is not a weakly referenceable object, this will raise :exc:`TypeError` and return ``NULL``." msgstr "" -#: ../../c-api/weakref.rst:49 ../../c-api/weakref.rst:65 -msgid "" -":c:func:`PyType_SUPPORTS_WEAKREFS` for checking if *ob* is weakly " -"referenceable." +msgid ":c:func:`PyType_SUPPORTS_WEAKREFS` for checking if *ob* is weakly referenceable." msgstr "" -#: ../../c-api/weakref.rst:55 -msgid "" -"Return a weak reference proxy object for the object *ob*. This will always " -"return a new reference, but is not guaranteed to create a new object; an " -"existing proxy object may be returned. The second parameter, *callback*, " -"can be a callable object that receives notification when *ob* is garbage " -"collected; it should accept a single parameter, which will be the weak " -"reference object itself. *callback* may also be ``None`` or ``NULL``. If " -"*ob* weakly referenceable object, this will raise :exc:`TypeError` and " -"return ``NULL``." +msgid "Return a weak reference proxy object for the object *ob*. This will always return a new reference, but is not guaranteed to create a new object; an existing proxy object may be returned. The second parameter, *callback*, can be a callable object that receives notification when *ob* is garbage collected; it should accept a single parameter, which will be the weak reference object itself. *callback* may also be ``None`` or ``NULL``. If *ob* weakly referenceable object, this will raise :exc:`TypeError` and return ``NULL``." msgstr "" -#: ../../c-api/weakref.rst:71 -msgid "" -"Get a :term:`strong reference` to the referenced object from a weak " -"reference, *ref*, into *\\*pobj*." +msgid "Get a :term:`strong reference` to the referenced object from a weak reference, *ref*, into *\\*pobj*." msgstr "" -#: ../../c-api/weakref.rst:74 -msgid "" -"On success, set *\\*pobj* to a new :term:`strong reference` to the " -"referenced object and return 1." +msgid "On success, set *\\*pobj* to a new :term:`strong reference` to the referenced object and return 1." msgstr "" -#: ../../c-api/weakref.rst:76 msgid "If the reference is dead, set *\\*pobj* to ``NULL`` and return 0." msgstr "" -#: ../../c-api/weakref.rst:77 msgid "On error, raise an exception and return -1." msgstr "" -#: ../../c-api/weakref.rst:84 -msgid "" -"Return a :term:`borrowed reference` to the referenced object from a weak " -"reference, *ref*. If the referent is no longer live, returns ``Py_None``." +msgid "Return a :term:`borrowed reference` to the referenced object from a weak reference, *ref*. If the referent is no longer live, returns ``Py_None``." msgstr "" -#: ../../c-api/weakref.rst:89 -msgid "" -"This function returns a :term:`borrowed reference` to the referenced object. " -"This means that you should always call :c:func:`Py_INCREF` on the object " -"except when it cannot be destroyed before the last usage of the borrowed " -"reference." +msgid "This function returns a :term:`borrowed reference` to the referenced object. This means that you should always call :c:func:`Py_INCREF` on the object except when it cannot be destroyed before the last usage of the borrowed reference." msgstr "" -#: ../../c-api/weakref.rst:94 ../../c-api/weakref.rst:102 msgid "Use :c:func:`PyWeakref_GetRef` instead." msgstr "" -#: ../../c-api/weakref.rst:100 msgid "Similar to :c:func:`PyWeakref_GetObject`, but does no error checking." msgstr "" -#: ../../c-api/weakref.rst:108 -msgid "" -"Test if the weak reference *ref* is dead. Returns 1 if the reference is " -"dead, 0 if it is alive, and -1 with an error set if *ref* is not a weak " -"reference object." +msgid "Test if the weak reference *ref* is dead. Returns 1 if the reference is dead, 0 if it is alive, and -1 with an error set if *ref* is not a weak reference object." msgstr "" -#: ../../c-api/weakref.rst:117 -msgid "" -"This function is called by the :c:member:`~PyTypeObject.tp_dealloc` handler " -"to clear weak references." +msgid "This function is called by the :c:member:`~PyTypeObject.tp_dealloc` handler to clear weak references." msgstr "" -#: ../../c-api/weakref.rst:120 -msgid "" -"This iterates through the weak references for *object* and calls callbacks " -"for those references which have one. It returns when all callbacks have been " -"attempted." +msgid "This iterates through the weak references for *object* and calls callbacks for those references which have one. It returns when all callbacks have been attempted." msgstr "" -#: ../../c-api/weakref.rst:127 msgid "Clears the weakrefs for *object* without calling the callbacks." msgstr "" -#: ../../c-api/weakref.rst:129 -msgid "" -"This function is called by the :c:member:`~PyTypeObject.tp_dealloc` handler " -"for types with finalizers (i.e., :meth:`~object.__del__`). The handler for " -"those objects first calls :c:func:`PyObject_ClearWeakRefs` to clear weakrefs " -"and call their callbacks, then the finalizer, and finally this function to " -"clear any weakrefs that may have been created by the finalizer." +msgid "This function is called by the :c:member:`~PyTypeObject.tp_dealloc` handler for types with finalizers (i.e., :meth:`~object.__del__`). The handler for those objects first calls :c:func:`PyObject_ClearWeakRefs` to clear weakrefs and call their callbacks, then the finalizer, and finally this function to clear any weakrefs that may have been created by the finalizer." msgstr "" -#: ../../c-api/weakref.rst:135 -msgid "" -"In most circumstances, it's more appropriate to " -"use :c:func:`PyObject_ClearWeakRefs` to clear weakrefs instead of this " -"function." +msgid "In most circumstances, it's more appropriate to use :c:func:`PyObject_ClearWeakRefs` to clear weakrefs instead of this function." msgstr "" diff --git a/contents.po b/contents.po index f6ebf738..555d2d0e 100644 --- a/contents.po +++ b/contents.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:47+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,6 +24,5 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../contents.rst:3 msgid "Python Documentation contents" msgstr "محتویات اسناد پایتون" diff --git a/copyright.po b/copyright.po index bdc01a31..20de3b9f 100644 --- a/copyright.po +++ b/copyright.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:47+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -25,40 +25,23 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../copyright.rst:3 msgid "Copyright" msgstr "حق نشر" -#: ../../copyright.rst:5 msgid "Python and this documentation is:" msgstr "پایتون و این مستندات:" -#: ../../copyright.rst:7 msgid "Copyright © 2001 Python Software Foundation. All rights reserved." msgstr "حق نشر © 2001 بنیاد نرم‌افزار پایتون. تمامی حقوق محفوظ است." -#: ../../copyright.rst:9 msgid "Copyright © 2000 BeOpen.com. All rights reserved." msgstr "حق نشر © 2000 BeOpen.com. تمامی حقوق محفوظ است." -#: ../../copyright.rst:11 -msgid "" -"Copyright © 1995-2000 Corporation for National Research Initiatives. All " -"rights reserved." -msgstr "" -"حق نشر © 1995-2000 متعلق به Corporation for National Research Initiatives. " -"تمامی حقوق محفوظ است." +msgid "Copyright © 1995-2000 Corporation for National Research Initiatives. All rights reserved." +msgstr "حق نشر © 1995-2000 متعلق به Corporation for National Research Initiatives. تمامی حقوق محفوظ است." -#: ../../copyright.rst:14 -msgid "" -"Copyright © 1991-1995 Stichting Mathematisch Centrum. All rights reserved." -msgstr "" -"حق نشر © 1991-1995 Stichting Mathematisch Centrum. تمامی حقوق محفوظ است." +msgid "Copyright © 1991-1995 Stichting Mathematisch Centrum. All rights reserved." +msgstr "حق نشر © 1991-1995 Stichting Mathematisch Centrum. تمامی حقوق محفوظ است." -#: ../../copyright.rst:18 -msgid "" -"See :ref:`history-and-license` for complete license and permissions " -"information." -msgstr "" -"مراجعه کنید به :ref:`history-and-license` برای اطلاعات کامل مجوز و مجوز‌های " -"استفاده." +msgid "See :ref:`history-and-license` for complete license and permissions information." +msgstr "مراجعه کنید به :ref:`history-and-license` برای اطلاعات کامل مجوز و مجوز‌های استفاده." diff --git a/deprecations/c-api-pending-removal-in-3.14.po b/deprecations/c-api-pending-removal-in-3.14.po index e43d050c..96b37869 100644 --- a/deprecations/c-api-pending-removal-in-3.14.po +++ b/deprecations/c-api-pending-removal-in-3.14.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2024-08-02 14:17+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,18 +21,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../deprecations/c-api-pending-removal-in-3.14.rst:2 msgid "Pending removal in Python 3.14" msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.14.rst:4 -msgid "" -"The ``ma_version_tag`` field in :c:type:`PyDictObject` for extension modules " -"(:pep:`699`; :gh:`101193`)." +msgid "The ``ma_version_tag`` field in :c:type:`PyDictObject` for extension modules (:pep:`699`; :gh:`101193`)." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.14.rst:7 -msgid "" -"Creating :c:data:`immutable types ` with mutable " -"bases (:gh:`95388`)." +msgid "Creating :c:data:`immutable types ` with mutable bases (:gh:`95388`)." msgstr "" diff --git a/deprecations/c-api-pending-removal-in-3.15.po b/deprecations/c-api-pending-removal-in-3.15.po index a122d65a..7e8acc9c 100644 --- a/deprecations/c-api-pending-removal-in-3.15.po +++ b/deprecations/c-api-pending-removal-in-3.15.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2024-08-02 14:17+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,276 +21,137 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:2 msgid "Pending removal in Python 3.15" msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:4 -msgid "" -"The :c:func:`PyImport_ImportModuleNoBlock`: " -"Use :c:func:`PyImport_ImportModule` instead." +msgid "The :c:func:`PyImport_ImportModuleNoBlock`: Use :c:func:`PyImport_ImportModule` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:6 -msgid "" -":c:func:`PyWeakref_GetObject` and :c:func:`PyWeakref_GET_OBJECT`: " -"Use :c:func:`PyWeakref_GetRef` instead. The `pythoncapi-compat project " -"`__ can be used to " -"get :c:func:`PyWeakref_GetRef` on Python 3.12 and older." +msgid ":c:func:`PyWeakref_GetObject` and :c:func:`PyWeakref_GET_OBJECT`: Use :c:func:`PyWeakref_GetRef` instead. The `pythoncapi-compat project `__ can be used to get :c:func:`PyWeakref_GetRef` on Python 3.12 and older." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:10 -msgid "" -":c:type:`Py_UNICODE` type and the :c:macro:`!Py_UNICODE_WIDE` macro: " -"Use :c:type:`wchar_t` instead." +msgid ":c:type:`Py_UNICODE` type and the :c:macro:`!Py_UNICODE_WIDE` macro: Use :c:type:`wchar_t` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:12 -msgid "" -":c:func:`!PyUnicode_AsDecodedObject`: Use :c:func:`PyCodec_Decode` instead." +msgid ":c:func:`!PyUnicode_AsDecodedObject`: Use :c:func:`PyCodec_Decode` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:14 -msgid "" -":c:func:`!PyUnicode_AsDecodedUnicode`: Use :c:func:`PyCodec_Decode` instead; " -"Note that some codecs (for example, \"base64\") may return a type other " -"than :class:`str`, such as :class:`bytes`." +msgid ":c:func:`!PyUnicode_AsDecodedUnicode`: Use :c:func:`PyCodec_Decode` instead; Note that some codecs (for example, \"base64\") may return a type other than :class:`str`, such as :class:`bytes`." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:17 -msgid "" -":c:func:`!PyUnicode_AsEncodedObject`: Use :c:func:`PyCodec_Encode` instead." +msgid ":c:func:`!PyUnicode_AsEncodedObject`: Use :c:func:`PyCodec_Encode` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:19 -msgid "" -":c:func:`!PyUnicode_AsEncodedUnicode`: Use :c:func:`PyCodec_Encode` instead; " -"Note that some codecs (for example, \"base64\") may return a type other " -"than :class:`bytes`, such as :class:`str`." +msgid ":c:func:`!PyUnicode_AsEncodedUnicode`: Use :c:func:`PyCodec_Encode` instead; Note that some codecs (for example, \"base64\") may return a type other than :class:`bytes`, such as :class:`str`." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:22 msgid "Python initialization functions, deprecated in Python 3.13:" msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:24 -msgid "" -":c:func:`Py_GetPath`: Use :c:func:`PyConfig_Get(\"module_search_paths\") " -"` (:data:`sys.path`) instead." +msgid ":c:func:`Py_GetPath`: Use :c:func:`PyConfig_Get(\"module_search_paths\") ` (:data:`sys.path`) instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:27 -msgid "" -":c:func:`Py_GetPrefix`: Use :c:func:`PyConfig_Get(\"base_prefix\") " -"` (:data:`sys.base_prefix`) instead. " -"Use :c:func:`PyConfig_Get(\"prefix\") ` (:data:`sys.prefix`) " -"if :ref:`virtual environments ` need to be handled." +msgid ":c:func:`Py_GetPrefix`: Use :c:func:`PyConfig_Get(\"base_prefix\") ` (:data:`sys.base_prefix`) instead. Use :c:func:`PyConfig_Get(\"prefix\") ` (:data:`sys.prefix`) if :ref:`virtual environments ` need to be handled." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:32 -msgid "" -":c:func:`Py_GetExecPrefix`: Use :c:func:`PyConfig_Get(\"base_exec_prefix\") " -"` (:data:`sys.base_exec_prefix`) instead. " -"Use :c:func:`PyConfig_Get(\"exec_prefix\") ` " -"(:data:`sys.exec_prefix`) if :ref:`virtual environments ` need to " -"be handled." +msgid ":c:func:`Py_GetExecPrefix`: Use :c:func:`PyConfig_Get(\"base_exec_prefix\") ` (:data:`sys.base_exec_prefix`) instead. Use :c:func:`PyConfig_Get(\"exec_prefix\") ` (:data:`sys.exec_prefix`) if :ref:`virtual environments ` need to be handled." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:38 -msgid "" -":c:func:`Py_GetProgramFullPath`: Use :c:func:`PyConfig_Get(\"executable\") " -"` (:data:`sys.executable`) instead." +msgid ":c:func:`Py_GetProgramFullPath`: Use :c:func:`PyConfig_Get(\"executable\") ` (:data:`sys.executable`) instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:41 -msgid "" -":c:func:`Py_GetProgramName`: Use :c:func:`PyConfig_Get(\"executable\") " -"` (:data:`sys.executable`) instead." +msgid ":c:func:`Py_GetProgramName`: Use :c:func:`PyConfig_Get(\"executable\") ` (:data:`sys.executable`) instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:44 -msgid "" -":c:func:`Py_GetPythonHome`: Use :c:func:`PyConfig_Get(\"home\") " -"` or the :envvar:`PYTHONHOME` environment variable instead." +msgid ":c:func:`Py_GetPythonHome`: Use :c:func:`PyConfig_Get(\"home\") ` or the :envvar:`PYTHONHOME` environment variable instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:48 -msgid "" -"The `pythoncapi-compat project `__ can be used to get :c:func:`PyConfig_Get` on Python 3.13 and older." +msgid "The `pythoncapi-compat project `__ can be used to get :c:func:`PyConfig_Get` on Python 3.13 and older." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:52 -msgid "" -"Functions to configure Python's initialization, deprecated in Python 3.11:" +msgid "Functions to configure Python's initialization, deprecated in Python 3.11:" msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:54 msgid ":c:func:`!PySys_SetArgvEx()`: Set :c:member:`PyConfig.argv` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:56 msgid ":c:func:`!PySys_SetArgv()`: Set :c:member:`PyConfig.argv` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:58 -msgid "" -":c:func:`!Py_SetProgramName()`: Set :c:member:`PyConfig.program_name` " -"instead." +msgid ":c:func:`!Py_SetProgramName()`: Set :c:member:`PyConfig.program_name` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:60 msgid ":c:func:`!Py_SetPythonHome()`: Set :c:member:`PyConfig.home` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:62 -msgid "" -":c:func:`PySys_ResetWarnOptions`: Clear :data:`sys.warnoptions` and :data:`!" -"warnings.filters` instead." +msgid ":c:func:`PySys_ResetWarnOptions`: Clear :data:`sys.warnoptions` and :data:`!warnings.filters` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:65 -msgid "" -"The :c:func:`Py_InitializeFromConfig` API should be used " -"with :c:type:`PyConfig` instead." +msgid "The :c:func:`Py_InitializeFromConfig` API should be used with :c:type:`PyConfig` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:68 msgid "Global configuration variables:" msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:70 -msgid "" -":c:var:`Py_DebugFlag`: Use :c:member:`PyConfig.parser_debug` " -"or :c:func:`PyConfig_Get(\"parser_debug\") ` instead." +msgid ":c:var:`Py_DebugFlag`: Use :c:member:`PyConfig.parser_debug` or :c:func:`PyConfig_Get(\"parser_debug\") ` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:73 -msgid "" -":c:var:`Py_VerboseFlag`: Use :c:member:`PyConfig.verbose` " -"or :c:func:`PyConfig_Get(\"verbose\") ` instead." +msgid ":c:var:`Py_VerboseFlag`: Use :c:member:`PyConfig.verbose` or :c:func:`PyConfig_Get(\"verbose\") ` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:76 -msgid "" -":c:var:`Py_QuietFlag`: Use :c:member:`PyConfig.quiet` " -"or :c:func:`PyConfig_Get(\"quiet\") ` instead." +msgid ":c:var:`Py_QuietFlag`: Use :c:member:`PyConfig.quiet` or :c:func:`PyConfig_Get(\"quiet\") ` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:79 -msgid "" -":c:var:`Py_InteractiveFlag`: Use :c:member:`PyConfig.interactive` " -"or :c:func:`PyConfig_Get(\"interactive\") ` instead." +msgid ":c:var:`Py_InteractiveFlag`: Use :c:member:`PyConfig.interactive` or :c:func:`PyConfig_Get(\"interactive\") ` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:82 -msgid "" -":c:var:`Py_InspectFlag`: Use :c:member:`PyConfig.inspect` " -"or :c:func:`PyConfig_Get(\"inspect\") ` instead." +msgid ":c:var:`Py_InspectFlag`: Use :c:member:`PyConfig.inspect` or :c:func:`PyConfig_Get(\"inspect\") ` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:85 -msgid "" -":c:var:`Py_OptimizeFlag`: Use :c:member:`PyConfig.optimization_level` " -"or :c:func:`PyConfig_Get(\"optimization_level\") ` instead." +msgid ":c:var:`Py_OptimizeFlag`: Use :c:member:`PyConfig.optimization_level` or :c:func:`PyConfig_Get(\"optimization_level\") ` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:88 -msgid "" -":c:var:`Py_NoSiteFlag`: Use :c:member:`PyConfig.site_import` " -"or :c:func:`PyConfig_Get(\"site_import\") ` instead." +msgid ":c:var:`Py_NoSiteFlag`: Use :c:member:`PyConfig.site_import` or :c:func:`PyConfig_Get(\"site_import\") ` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:91 -msgid "" -":c:var:`Py_BytesWarningFlag`: Use :c:member:`PyConfig.bytes_warning` " -"or :c:func:`PyConfig_Get(\"bytes_warning\") ` instead." +msgid ":c:var:`Py_BytesWarningFlag`: Use :c:member:`PyConfig.bytes_warning` or :c:func:`PyConfig_Get(\"bytes_warning\") ` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:94 -msgid "" -":c:var:`Py_FrozenFlag`: Use :c:member:`PyConfig.pathconfig_warnings` " -"or :c:func:`PyConfig_Get(\"pathconfig_warnings\") ` instead." +msgid ":c:var:`Py_FrozenFlag`: Use :c:member:`PyConfig.pathconfig_warnings` or :c:func:`PyConfig_Get(\"pathconfig_warnings\") ` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:97 -msgid "" -":c:var:`Py_IgnoreEnvironmentFlag`: Use :c:member:`PyConfig.use_environment` " -"or :c:func:`PyConfig_Get(\"use_environment\") ` instead." +msgid ":c:var:`Py_IgnoreEnvironmentFlag`: Use :c:member:`PyConfig.use_environment` or :c:func:`PyConfig_Get(\"use_environment\") ` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:100 -msgid "" -":c:var:`Py_DontWriteBytecodeFlag`: Use :c:member:`PyConfig.write_bytecode` " -"or :c:func:`PyConfig_Get(\"write_bytecode\") ` instead." +msgid ":c:var:`Py_DontWriteBytecodeFlag`: Use :c:member:`PyConfig.write_bytecode` or :c:func:`PyConfig_Get(\"write_bytecode\") ` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:103 -msgid "" -":c:var:`Py_NoUserSiteDirectory`: " -"Use :c:member:`PyConfig.user_site_directory` " -"or :c:func:`PyConfig_Get(\"user_site_directory\") ` instead." +msgid ":c:var:`Py_NoUserSiteDirectory`: Use :c:member:`PyConfig.user_site_directory` or :c:func:`PyConfig_Get(\"user_site_directory\") ` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:106 -msgid "" -":c:var:`Py_UnbufferedStdioFlag`: Use :c:member:`PyConfig.buffered_stdio` " -"or :c:func:`PyConfig_Get(\"buffered_stdio\") ` instead." +msgid ":c:var:`Py_UnbufferedStdioFlag`: Use :c:member:`PyConfig.buffered_stdio` or :c:func:`PyConfig_Get(\"buffered_stdio\") ` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:109 -msgid "" -":c:var:`Py_HashRandomizationFlag`: Use :c:member:`PyConfig.use_hash_seed` " -"and :c:member:`PyConfig.hash_seed` or :c:func:`PyConfig_Get(\"hash_seed\") " -"` instead." +msgid ":c:var:`Py_HashRandomizationFlag`: Use :c:member:`PyConfig.use_hash_seed` and :c:member:`PyConfig.hash_seed` or :c:func:`PyConfig_Get(\"hash_seed\") ` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:113 -msgid "" -":c:var:`Py_IsolatedFlag`: Use :c:member:`PyConfig.isolated` " -"or :c:func:`PyConfig_Get(\"isolated\") ` instead." +msgid ":c:var:`Py_IsolatedFlag`: Use :c:member:`PyConfig.isolated` or :c:func:`PyConfig_Get(\"isolated\") ` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:116 -msgid "" -":c:var:`Py_LegacyWindowsFSEncodingFlag`: " -"Use :c:member:`PyPreConfig.legacy_windows_fs_encoding` " -"or :c:func:`PyConfig_Get(\"legacy_windows_fs_encoding\") ` " -"instead." +msgid ":c:var:`Py_LegacyWindowsFSEncodingFlag`: Use :c:member:`PyPreConfig.legacy_windows_fs_encoding` or :c:func:`PyConfig_Get(\"legacy_windows_fs_encoding\") ` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:119 -msgid "" -":c:var:`Py_LegacyWindowsStdioFlag`: " -"Use :c:member:`PyConfig.legacy_windows_stdio` " -"or :c:func:`PyConfig_Get(\"legacy_windows_stdio\") ` instead." +msgid ":c:var:`Py_LegacyWindowsStdioFlag`: Use :c:member:`PyConfig.legacy_windows_stdio` or :c:func:`PyConfig_Get(\"legacy_windows_stdio\") ` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:122 -msgid "" -":c:var:`!Py_FileSystemDefaultEncoding`, :c:var:`!" -"Py_HasFileSystemDefaultEncoding`: " -"Use :c:member:`PyConfig.filesystem_encoding` " -"or :c:func:`PyConfig_Get(\"filesystem_encoding\") ` instead." +msgid ":c:var:`!Py_FileSystemDefaultEncoding`, :c:var:`!Py_HasFileSystemDefaultEncoding`: Use :c:member:`PyConfig.filesystem_encoding` or :c:func:`PyConfig_Get(\"filesystem_encoding\") ` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:125 -msgid "" -":c:var:`!Py_FileSystemDefaultEncodeErrors`: " -"Use :c:member:`PyConfig.filesystem_errors` " -"or :c:func:`PyConfig_Get(\"filesystem_errors\") ` instead." +msgid ":c:var:`!Py_FileSystemDefaultEncodeErrors`: Use :c:member:`PyConfig.filesystem_errors` or :c:func:`PyConfig_Get(\"filesystem_errors\") ` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:128 -msgid "" -":c:var:`!Py_UTF8Mode`: Use :c:member:`PyPreConfig.utf8_mode` " -"or :c:func:`PyConfig_Get(\"utf8_mode\") ` instead. " -"(see :c:func:`Py_PreInitialize`)" +msgid ":c:var:`!Py_UTF8Mode`: Use :c:member:`PyPreConfig.utf8_mode` or :c:func:`PyConfig_Get(\"utf8_mode\") ` instead. (see :c:func:`Py_PreInitialize`)" msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:133 -msgid "" -"The :c:func:`Py_InitializeFromConfig` API should be used " -"with :c:type:`PyConfig` to set these options. Or :c:func:`PyConfig_Get` can " -"be used to get these options at runtime." +msgid "The :c:func:`Py_InitializeFromConfig` API should be used with :c:type:`PyConfig` to set these options. Or :c:func:`PyConfig_Get` can be used to get these options at runtime." msgstr "" diff --git a/deprecations/c-api-pending-removal-in-3.16.po b/deprecations/c-api-pending-removal-in-3.16.po index 0b0694ed..2c58be54 100644 --- a/deprecations/c-api-pending-removal-in-3.16.po +++ b/deprecations/c-api-pending-removal-in-3.16.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2026-07-25 12:59+0330\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: none\n" @@ -19,10 +19,8 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../deprecations/c-api-pending-removal-in-3.16.rst:2 msgid "Pending removal in Python 3.16" msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.16.rst:4 msgid "The bundled copy of ``libmpdec``." msgstr "" diff --git a/deprecations/c-api-pending-removal-in-3.18.po b/deprecations/c-api-pending-removal-in-3.18.po index d09bca6f..d4412efa 100644 --- a/deprecations/c-api-pending-removal-in-3.18.po +++ b/deprecations/c-api-pending-removal-in-3.18.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2026-07-25 12:59+0330\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: none\n" @@ -19,129 +19,68 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../deprecations/c-api-pending-removal-in-3.18.rst:2 msgid "Pending removal in Python 3.18" msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.18.rst:4 -msgid "" -"The following private functions are deprecated and planned for removal in " -"Python 3.18:" +msgid "The following private functions are deprecated and planned for removal in Python 3.18:" msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.18.rst:7 msgid ":c:func:`!_PyBytes_Join`: use :c:func:`PyBytes_Join`." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.18.rst:8 -msgid "" -":c:func:`!_PyDict_GetItemStringWithError`: " -"use :c:func:`PyDict_GetItemStringRef`." +msgid ":c:func:`!_PyDict_GetItemStringWithError`: use :c:func:`PyDict_GetItemStringRef`." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.18.rst:9 msgid ":c:func:`!_PyDict_Pop()`: use :c:func:`PyDict_Pop`." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.18.rst:10 msgid ":c:func:`!_PyLong_Sign()`: use :c:func:`PyLong_GetSign`." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.18.rst:11 -msgid "" -":c:func:`!_PyLong_FromDigits` and :c:func:`!_PyLong_New`: " -"use :c:func:`PyLongWriter_Create`." +msgid ":c:func:`!_PyLong_FromDigits` and :c:func:`!_PyLong_New`: use :c:func:`PyLongWriter_Create`." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.18.rst:13 -msgid "" -":c:func:`!_PyThreadState_UncheckedGet`: " -"use :c:func:`PyThreadState_GetUnchecked`." +msgid ":c:func:`!_PyThreadState_UncheckedGet`: use :c:func:`PyThreadState_GetUnchecked`." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.18.rst:14 msgid ":c:func:`!_PyUnicode_AsString`: use :c:func:`PyUnicode_AsUTF8`." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.18.rst:15 -msgid "" -":c:func:`!_PyUnicodeWriter_Init`: replace ``_PyUnicodeWriter_Init(&writer)`` " -"with :c:func:`writer = PyUnicodeWriter_Create(0) `." +msgid ":c:func:`!_PyUnicodeWriter_Init`: replace ``_PyUnicodeWriter_Init(&writer)`` with :c:func:`writer = PyUnicodeWriter_Create(0) `." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.18.rst:18 -msgid "" -":c:func:`!_PyUnicodeWriter_Finish`: replace " -"``_PyUnicodeWriter_Finish(&writer)`` " -"with :c:func:`PyUnicodeWriter_Finish(writer) `." +msgid ":c:func:`!_PyUnicodeWriter_Finish`: replace ``_PyUnicodeWriter_Finish(&writer)`` with :c:func:`PyUnicodeWriter_Finish(writer) `." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.18.rst:21 -msgid "" -":c:func:`!_PyUnicodeWriter_Dealloc`: replace " -"``_PyUnicodeWriter_Dealloc(&writer)`` " -"with :c:func:`PyUnicodeWriter_Discard(writer) `." +msgid ":c:func:`!_PyUnicodeWriter_Dealloc`: replace ``_PyUnicodeWriter_Dealloc(&writer)`` with :c:func:`PyUnicodeWriter_Discard(writer) `." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.18.rst:24 -msgid "" -":c:func:`!_PyUnicodeWriter_WriteChar`: replace " -"``_PyUnicodeWriter_WriteChar(&writer, ch)`` " -"with :c:func:`PyUnicodeWriter_WriteChar(writer, ch) " -"`." +msgid ":c:func:`!_PyUnicodeWriter_WriteChar`: replace ``_PyUnicodeWriter_WriteChar(&writer, ch)`` with :c:func:`PyUnicodeWriter_WriteChar(writer, ch) `." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.18.rst:27 -msgid "" -":c:func:`!_PyUnicodeWriter_WriteStr`: replace " -"``_PyUnicodeWriter_WriteStr(&writer, str)`` " -"with :c:func:`PyUnicodeWriter_WriteStr(writer, str) " -"`." +msgid ":c:func:`!_PyUnicodeWriter_WriteStr`: replace ``_PyUnicodeWriter_WriteStr(&writer, str)`` with :c:func:`PyUnicodeWriter_WriteStr(writer, str) `." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.18.rst:30 -msgid "" -":c:func:`!_PyUnicodeWriter_WriteSubstring`: replace " -"``_PyUnicodeWriter_WriteSubstring(&writer, str, start, end)`` " -"with :c:func:`PyUnicodeWriter_WriteSubstring(writer, str, start, end) " -"`." +msgid ":c:func:`!_PyUnicodeWriter_WriteSubstring`: replace ``_PyUnicodeWriter_WriteSubstring(&writer, str, start, end)`` with :c:func:`PyUnicodeWriter_WriteSubstring(writer, str, start, end) `." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.18.rst:33 -msgid "" -":c:func:`!_PyUnicodeWriter_WriteASCIIString`: replace " -"``_PyUnicodeWriter_WriteASCIIString(&writer, str)`` " -"with :c:func:`PyUnicodeWriter_WriteASCII(writer, str) " -"`." +msgid ":c:func:`!_PyUnicodeWriter_WriteASCIIString`: replace ``_PyUnicodeWriter_WriteASCIIString(&writer, str)`` with :c:func:`PyUnicodeWriter_WriteASCII(writer, str) `." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.18.rst:36 -msgid "" -":c:func:`!_PyUnicodeWriter_WriteLatin1String`: replace " -"``_PyUnicodeWriter_WriteLatin1String(&writer, str)`` " -"with :c:func:`PyUnicodeWriter_WriteUTF8(writer, str) " -"`." +msgid ":c:func:`!_PyUnicodeWriter_WriteLatin1String`: replace ``_PyUnicodeWriter_WriteLatin1String(&writer, str)`` with :c:func:`PyUnicodeWriter_WriteUTF8(writer, str) `." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.18.rst:39 msgid ":c:func:`!_PyUnicodeWriter_Prepare`: (no replacement)." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.18.rst:40 msgid ":c:func:`!_PyUnicodeWriter_PrepareKind`: (no replacement)." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.18.rst:41 msgid ":c:func:`!_Py_HashPointer`: use :c:func:`Py_HashPointer`." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.18.rst:42 msgid ":c:func:`!_Py_fopen_obj`: use :c:func:`Py_fopen`." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.18.rst:44 -msgid "" -"The `pythoncapi-compat project `__ can be used to get these new public functions on Python 3.13 and older. " -"(Contributed by Victor Stinner in :gh:`128863`.)" +msgid "The `pythoncapi-compat project `__ can be used to get these new public functions on Python 3.13 and older. (Contributed by Victor Stinner in :gh:`128863`.)" msgstr "" diff --git a/deprecations/c-api-pending-removal-in-future.po b/deprecations/c-api-pending-removal-in-future.po index dee81b25..0a8cf1c6 100644 --- a/deprecations/c-api-pending-removal-in-future.po +++ b/deprecations/c-api-pending-removal-in-future.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2024-08-02 14:17+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,100 +21,62 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../deprecations/c-api-pending-removal-in-future.rst:2 msgid "Pending removal in future versions" msgstr "" -#: ../../deprecations/c-api-pending-removal-in-future.rst:4 -msgid "" -"The following APIs are deprecated and will be removed, although there is " -"currently no date scheduled for their removal." +msgid "The following APIs are deprecated and will be removed, although there is currently no date scheduled for their removal." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-future.rst:7 msgid ":c:macro:`Py_TPFLAGS_HAVE_FINALIZE`: Unneeded since Python 3.8." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-future.rst:9 msgid ":c:func:`PyErr_Fetch`: Use :c:func:`PyErr_GetRaisedException` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-future.rst:11 -msgid "" -":c:func:`PyErr_NormalizeException`: Use :c:func:`PyErr_GetRaisedException` " -"instead." +msgid ":c:func:`PyErr_NormalizeException`: Use :c:func:`PyErr_GetRaisedException` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-future.rst:13 -msgid "" -":c:func:`PyErr_Restore`: Use :c:func:`PyErr_SetRaisedException` instead." +msgid ":c:func:`PyErr_Restore`: Use :c:func:`PyErr_SetRaisedException` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-future.rst:15 -msgid "" -":c:func:`PyModule_GetFilename`: Use :c:func:`PyModule_GetFilenameObject` " -"instead." +msgid ":c:func:`PyModule_GetFilename`: Use :c:func:`PyModule_GetFilenameObject` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-future.rst:17 msgid ":c:func:`PyOS_AfterFork`: Use :c:func:`PyOS_AfterFork_Child` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-future.rst:19 -msgid "" -":c:func:`PySlice_GetIndicesEx`: Use :c:func:`PySlice_Unpack` " -"and :c:func:`PySlice_AdjustIndices` instead." +msgid ":c:func:`PySlice_GetIndicesEx`: Use :c:func:`PySlice_Unpack` and :c:func:`PySlice_AdjustIndices` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-future.rst:21 msgid ":c:func:`PyUnicode_READY`: Unneeded since Python 3.12" msgstr "" -#: ../../deprecations/c-api-pending-removal-in-future.rst:23 msgid ":c:func:`!PyErr_Display`: Use :c:func:`PyErr_DisplayException` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-future.rst:25 -msgid "" -":c:func:`!_PyErr_ChainExceptions`: Use :c:func:`!_PyErr_ChainExceptions1` " -"instead." +msgid ":c:func:`!_PyErr_ChainExceptions`: Use :c:func:`!_PyErr_ChainExceptions1` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-future.rst:27 -msgid "" -":c:member:`!PyBytesObject.ob_shash` member: call :c:func:`PyObject_Hash` " -"instead." +msgid ":c:member:`!PyBytesObject.ob_shash` member: call :c:func:`PyObject_Hash` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-future.rst:29 msgid "Thread Local Storage (TLS) API:" msgstr "" -#: ../../deprecations/c-api-pending-removal-in-future.rst:31 -msgid "" -":c:func:`PyThread_create_key`: Use :c:func:`PyThread_tss_alloc` instead." +msgid ":c:func:`PyThread_create_key`: Use :c:func:`PyThread_tss_alloc` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-future.rst:33 msgid ":c:func:`PyThread_delete_key`: Use :c:func:`PyThread_tss_free` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-future.rst:35 -msgid "" -":c:func:`PyThread_set_key_value`: Use :c:func:`PyThread_tss_set` instead." +msgid ":c:func:`PyThread_set_key_value`: Use :c:func:`PyThread_tss_set` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-future.rst:37 -msgid "" -":c:func:`PyThread_get_key_value`: Use :c:func:`PyThread_tss_get` instead." +msgid ":c:func:`PyThread_get_key_value`: Use :c:func:`PyThread_tss_get` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-future.rst:39 -msgid "" -":c:func:`PyThread_delete_key_value`: Use :c:func:`PyThread_tss_delete` " -"instead." +msgid ":c:func:`PyThread_delete_key_value`: Use :c:func:`PyThread_tss_delete` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-future.rst:41 msgid ":c:func:`PyThread_ReInitTLS`: Unneeded since Python 3.7." msgstr "" diff --git a/deprecations/index.po b/deprecations/index.po index f97dbd29..8a09fbcb 100644 --- a/deprecations/index.po +++ b/deprecations/index.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2024-07-29 04:07+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,257 +21,141 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../deprecations/index.rst:2 msgid "Deprecations" msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:2 -#: ../../deprecations/pending-removal-in-3.15.rst:2 msgid "Pending removal in Python 3.15" msgstr "" -#: ../../deprecations/pending-removal-in-3.15.rst:4 -#: ../../deprecations/pending-removal-in-3.16.rst:4 msgid "The import system:" msgstr "" -#: ../../deprecations/pending-removal-in-3.15.rst:6 -msgid "" -"Setting :attr:`~module.__cached__` on a module while failing to " -"set :attr:`__spec__.cached ` is " -"deprecated. In Python 3.15, :attr:`!__cached__` will cease to be set or take " -"into consideration by the import system or standard library. (:gh:`97879`)" +msgid "Setting :attr:`~module.__cached__` on a module while failing to set :attr:`__spec__.cached ` is deprecated. In Python 3.15, :attr:`!__cached__` will cease to be set or take into consideration by the import system or standard library. (:gh:`97879`)" msgstr "" -#: ../../deprecations/pending-removal-in-3.15.rst:11 -msgid "" -"Setting :attr:`~module.__package__` on a module while failing to " -"set :attr:`__spec__.parent ` is " -"deprecated. In Python 3.15, :attr:`!__package__` will cease to be set or " -"take into consideration by the import system or standard library. " -"(:gh:`97879`)" +msgid "Setting :attr:`~module.__package__` on a module while failing to set :attr:`__spec__.parent ` is deprecated. In Python 3.15, :attr:`!__package__` will cease to be set or take into consideration by the import system or standard library. (:gh:`97879`)" msgstr "" -#: ../../deprecations/pending-removal-in-3.15.rst:16 -#: ../../deprecations/pending-removal-in-3.19.rst:4 msgid ":mod:`ctypes`:" msgstr "" -#: ../../deprecations/pending-removal-in-3.15.rst:18 -msgid "" -"The undocumented :func:`!ctypes.SetPointerType` function has been deprecated " -"since Python 3.13." +msgid "The undocumented :func:`!ctypes.SetPointerType` function has been deprecated since Python 3.13." msgstr "" -#: ../../deprecations/pending-removal-in-3.15.rst:21 msgid ":mod:`http.server`:" msgstr "" -#: ../../deprecations/pending-removal-in-3.15.rst:23 -msgid "" -"The obsolete and rarely used :class:`~http.server.CGIHTTPRequestHandler` has " -"been deprecated since Python 3.13. No direct replacement exists. *Anything* " -"is better than CGI to interface a web server with a request handler." +msgid "The obsolete and rarely used :class:`~http.server.CGIHTTPRequestHandler` has been deprecated since Python 3.13. No direct replacement exists. *Anything* is better than CGI to interface a web server with a request handler." msgstr "" -#: ../../deprecations/pending-removal-in-3.15.rst:29 -msgid "" -"The :option:`!--cgi` flag to the :program:`python -m http.server` command-" -"line interface has been deprecated since Python 3.13." +msgid "The :option:`!--cgi` flag to the :program:`python -m http.server` command-line interface has been deprecated since Python 3.13." msgstr "" -#: ../../deprecations/pending-removal-in-3.15.rst:32 -#: ../../deprecations/pending-removal-in-future.rst:62 msgid ":mod:`importlib`:" msgstr "" -#: ../../deprecations/pending-removal-in-3.15.rst:34 msgid "``load_module()`` method: use ``exec_module()`` instead." msgstr "" -#: ../../deprecations/pending-removal-in-3.15.rst:36 msgid ":mod:`pathlib`:" msgstr "" -#: ../../deprecations/pending-removal-in-3.15.rst:38 -msgid "" -":meth:`.PurePath.is_reserved` has been deprecated since Python 3.13. " -"Use :func:`os.path.isreserved` to detect reserved paths on Windows." +msgid ":meth:`.PurePath.is_reserved` has been deprecated since Python 3.13. Use :func:`os.path.isreserved` to detect reserved paths on Windows." msgstr "" -#: ../../deprecations/pending-removal-in-3.15.rst:42 msgid ":mod:`platform`:" msgstr "" -#: ../../deprecations/pending-removal-in-3.15.rst:44 -msgid "" -":func:`~platform.java_ver` has been deprecated since Python 3.13. This " -"function is only useful for Jython support, has a confusing API, and is " -"largely untested." +msgid ":func:`~platform.java_ver` has been deprecated since Python 3.13. This function is only useful for Jython support, has a confusing API, and is largely untested." msgstr "" -#: ../../deprecations/pending-removal-in-3.15.rst:48 -#: ../../deprecations/pending-removal-in-3.16.rst:96 msgid ":mod:`sysconfig`:" msgstr "" -#: ../../deprecations/pending-removal-in-3.15.rst:50 -msgid "" -"The *check_home* argument of :func:`sysconfig.is_python_build` has been " -"deprecated since Python 3.12." +msgid "The *check_home* argument of :func:`sysconfig.is_python_build` has been deprecated since Python 3.12." msgstr "" -#: ../../deprecations/pending-removal-in-3.15.rst:53 msgid ":mod:`threading`:" msgstr "" -#: ../../deprecations/pending-removal-in-3.15.rst:55 -msgid "" -":func:`~threading.RLock` will take no arguments in Python 3.15. Passing any " -"arguments has been deprecated since Python 3.14, as the Python version does " -"not permit any arguments, but the C version allows any number of positional " -"or keyword arguments, ignoring every argument." +msgid ":func:`~threading.RLock` will take no arguments in Python 3.15. Passing any arguments has been deprecated since Python 3.14, as the Python version does not permit any arguments, but the C version allows any number of positional or keyword arguments, ignoring every argument." msgstr "" -#: ../../deprecations/pending-removal-in-3.15.rst:61 msgid ":mod:`types`:" msgstr "" -#: ../../deprecations/pending-removal-in-3.15.rst:63 -msgid "" -":class:`types.CodeType`: Accessing :attr:`~codeobject.co_lnotab` was " -"deprecated in :pep:`626` since 3.10 and was planned to be removed in 3.12, " -"but it only got a proper :exc:`DeprecationWarning` in 3.12. May be removed " -"in 3.15. (Contributed by Nikita Sobolev in :gh:`101866`.)" +msgid ":class:`types.CodeType`: Accessing :attr:`~codeobject.co_lnotab` was deprecated in :pep:`626` since 3.10 and was planned to be removed in 3.12, but it only got a proper :exc:`DeprecationWarning` in 3.12. May be removed in 3.15. (Contributed by Nikita Sobolev in :gh:`101866`.)" msgstr "" -#: ../../deprecations/pending-removal-in-3.15.rst:70 -#: ../../deprecations/pending-removal-in-3.17.rst:26 msgid ":mod:`typing`:" msgstr "" -#: ../../deprecations/pending-removal-in-3.15.rst:72 -msgid "" -"The undocumented keyword argument syntax for " -"creating :class:`~typing.NamedTuple` classes (for example, ``Point = " -"NamedTuple(\"Point\", x=int, y=int)``) has been deprecated since Python " -"3.13. Use the class-based syntax or the functional syntax instead." +msgid "The undocumented keyword argument syntax for creating :class:`~typing.NamedTuple` classes (for example, ``Point = NamedTuple(\"Point\", x=int, y=int)``) has been deprecated since Python 3.13. Use the class-based syntax or the functional syntax instead." msgstr "" -#: ../../deprecations/pending-removal-in-3.15.rst:78 -msgid "" -"When using the functional syntax of :class:`~typing.TypedDict`\\s, failing " -"to pass a value to the *fields* parameter (``TD = TypedDict(\"TD\")``) or " -"passing ``None`` (``TD = TypedDict(\"TD\", None)``) has been deprecated " -"since Python 3.13. Use ``class TD(TypedDict): pass`` or ``TD = " -"TypedDict(\"TD\", {})`` to create a TypedDict with zero field." +msgid "When using the functional syntax of :class:`~typing.TypedDict`\\s, failing to pass a value to the *fields* parameter (``TD = TypedDict(\"TD\")``) or passing ``None`` (``TD = TypedDict(\"TD\", None)``) has been deprecated since Python 3.13. Use ``class TD(TypedDict): pass`` or ``TD = TypedDict(\"TD\", {})`` to create a TypedDict with zero field." msgstr "" -#: ../../deprecations/pending-removal-in-3.15.rst:85 -msgid "" -"The :deco:`typing.no_type_check_decorator` decorator function has been " -"deprecated since Python 3.13. After eight years in the :mod:`typing` module, " -"it has yet to be supported by any major type checker." +msgid "The :deco:`typing.no_type_check_decorator` decorator function has been deprecated since Python 3.13. After eight years in the :mod:`typing` module, it has yet to be supported by any major type checker." msgstr "" -#: ../../deprecations/pending-removal-in-3.15.rst:90 msgid ":mod:`wave`:" msgstr "" -#: ../../deprecations/pending-removal-in-3.15.rst:92 -msgid "" -"The :meth:`~wave.Wave_read.getmark`, :meth:`!setmark`, " -"and :meth:`~wave.Wave_read.getmarkers` methods of " -"the :class:`~wave.Wave_read` and :class:`~wave.Wave_write` classes have been " -"deprecated since Python 3.13." +msgid "The :meth:`~wave.Wave_read.getmark`, :meth:`!setmark`, and :meth:`~wave.Wave_read.getmarkers` methods of the :class:`~wave.Wave_read` and :class:`~wave.Wave_write` classes have been deprecated since Python 3.13." msgstr "" -#: ../../deprecations/pending-removal-in-3.15.rst:97 msgid ":mod:`zipimport`:" msgstr "" -#: ../../deprecations/pending-removal-in-3.15.rst:99 -msgid "" -":meth:`~zipimport.zipimporter.load_module` has been deprecated since Python " -"3.10. Use :meth:`~zipimport.zipimporter.exec_module` instead. (Contributed " -"by Jiahao Li in :gh:`125746`.)" +msgid ":meth:`~zipimport.zipimporter.load_module` has been deprecated since Python 3.10. Use :meth:`~zipimport.zipimporter.exec_module` instead. (Contributed by Jiahao Li in :gh:`125746`.)" msgstr "" -#: ../../deprecations/pending-removal-in-3.16.rst:2 msgid "Pending removal in Python 3.16" msgstr "" -#: ../../deprecations/pending-removal-in-3.16.rst:6 -msgid "" -"Setting :attr:`~module.__loader__` on a module while failing to " -"set :attr:`__spec__.loader ` is " -"deprecated. In Python 3.16, :attr:`!__loader__` will cease to be set or " -"taken into consideration by the import system or the standard library." +msgid "Setting :attr:`~module.__loader__` on a module while failing to set :attr:`__spec__.loader ` is deprecated. In Python 3.16, :attr:`!__loader__` will cease to be set or taken into consideration by the import system or the standard library." msgstr "" -#: ../../deprecations/pending-removal-in-3.16.rst:11 msgid ":mod:`array`:" msgstr "" -#: ../../deprecations/pending-removal-in-3.16.rst:13 -msgid "" -"The ``'u'`` format code (:c:type:`wchar_t`) has been deprecated in " -"documentation since Python 3.3 and at runtime since Python 3.13. Use the " -"``'w'`` format code (:c:type:`Py_UCS4`) for Unicode characters instead." +msgid "The ``'u'`` format code (:c:type:`wchar_t`) has been deprecated in documentation since Python 3.3 and at runtime since Python 3.13. Use the ``'w'`` format code (:c:type:`Py_UCS4`) for Unicode characters instead." msgstr "" -#: ../../deprecations/pending-removal-in-3.16.rst:19 msgid ":mod:`asyncio`:" msgstr "" -#: ../../deprecations/pending-removal-in-3.16.rst:21 -msgid "" -":func:`!asyncio.iscoroutinefunction` is deprecated and will be removed in " -"Python 3.16; use :func:`inspect.iscoroutinefunction` instead. (Contributed " -"by Jiahao Li and Kumar Aditya in :gh:`122875`.)" +msgid ":func:`!asyncio.iscoroutinefunction` is deprecated and will be removed in Python 3.16; use :func:`inspect.iscoroutinefunction` instead. (Contributed by Jiahao Li and Kumar Aditya in :gh:`122875`.)" msgstr "" -#: ../../deprecations/pending-removal-in-3.16.rst:26 -msgid "" -":mod:`asyncio` policy system is deprecated and will be removed in Python " -"3.16. In particular, the following classes and functions are deprecated:" +msgid ":mod:`asyncio` policy system is deprecated and will be removed in Python 3.16. In particular, the following classes and functions are deprecated:" msgstr "" -#: ../../deprecations/pending-removal-in-3.16.rst:29 msgid ":class:`asyncio.AbstractEventLoopPolicy`" msgstr "" -#: ../../deprecations/pending-removal-in-3.16.rst:30 msgid ":class:`asyncio.DefaultEventLoopPolicy`" msgstr "" -#: ../../deprecations/pending-removal-in-3.16.rst:31 msgid ":class:`asyncio.WindowsSelectorEventLoopPolicy`" msgstr "" -#: ../../deprecations/pending-removal-in-3.16.rst:32 msgid ":class:`asyncio.WindowsProactorEventLoopPolicy`" msgstr "" -#: ../../deprecations/pending-removal-in-3.16.rst:33 msgid ":func:`asyncio.get_event_loop_policy`" msgstr "" -#: ../../deprecations/pending-removal-in-3.16.rst:34 msgid ":func:`asyncio.set_event_loop_policy`" msgstr "" -#: ../../deprecations/pending-removal-in-3.16.rst:36 -msgid "" -"Users should use :func:`asyncio.run` or :class:`asyncio.Runner` with " -"*loop_factory* to use the desired event loop implementation." +msgid "Users should use :func:`asyncio.run` or :class:`asyncio.Runner` with *loop_factory* to use the desired event loop implementation." msgstr "" -#: ../../deprecations/pending-removal-in-3.16.rst:39 msgid "For example, to use :class:`asyncio.SelectorEventLoop` on Windows::" msgstr "" -#: ../../deprecations/pending-removal-in-3.16.rst:41 msgid "" "import asyncio\n" "\n" @@ -281,1035 +165,554 @@ msgid "" "asyncio.run(main(), loop_factory=asyncio.SelectorEventLoop)" msgstr "" -#: ../../deprecations/pending-removal-in-3.16.rst:48 msgid "(Contributed by Kumar Aditya in :gh:`127949`.)" msgstr "" -#: ../../deprecations/pending-removal-in-3.16.rst:50 -#: ../../deprecations/pending-removal-in-future.rst:16 msgid ":mod:`builtins`:" msgstr "" -#: ../../deprecations/pending-removal-in-3.16.rst:52 -msgid "" -"Bitwise inversion on boolean types, ``~True`` or ``~False`` has been " -"deprecated since Python 3.12, as it produces surprising and unintuitive " -"results (``-2`` and ``-1``). Use ``not x`` instead for the logical negation " -"of a Boolean. In the rare case that you need the bitwise inversion of the " -"underlying integer, convert to ``int`` explicitly (``~int(x)``)." +msgid "Bitwise inversion on boolean types, ``~True`` or ``~False`` has been deprecated since Python 3.12, as it produces surprising and unintuitive results (``-2`` and ``-1``). Use ``not x`` instead for the logical negation of a Boolean. In the rare case that you need the bitwise inversion of the underlying integer, convert to ``int`` explicitly (``~int(x)``)." msgstr "" -#: ../../deprecations/pending-removal-in-3.16.rst:59 msgid ":mod:`functools`:" msgstr "" -#: ../../deprecations/pending-removal-in-3.16.rst:61 -msgid "" -"Calling the Python implementation of :func:`functools.reduce` with " -"*function* or *sequence* as keyword arguments has been deprecated since " -"Python 3.14." +msgid "Calling the Python implementation of :func:`functools.reduce` with *function* or *sequence* as keyword arguments has been deprecated since Python 3.14." msgstr "" -#: ../../deprecations/pending-removal-in-3.16.rst:64 msgid ":mod:`logging`:" msgstr "" -#: ../../deprecations/pending-removal-in-3.16.rst:66 -msgid "" -"Support for custom logging handlers with the *strm* argument is deprecated " -"and scheduled for removal in Python 3.16. Define handlers with the *stream* " -"argument instead. (Contributed by Mariusz Felisiak in :gh:`115032`.)" +msgid "Support for custom logging handlers with the *strm* argument is deprecated and scheduled for removal in Python 3.16. Define handlers with the *stream* argument instead. (Contributed by Mariusz Felisiak in :gh:`115032`.)" msgstr "" -#: ../../deprecations/pending-removal-in-3.16.rst:70 msgid ":mod:`mimetypes`:" msgstr "" -#: ../../deprecations/pending-removal-in-3.16.rst:72 -msgid "" -"Valid extensions start with a '.' or are empty " -"for :meth:`mimetypes.MimeTypes.add_type`. Undotted extensions are deprecated " -"and will raise a :exc:`ValueError` in Python 3.16. (Contributed by Hugo van " -"Kemenade in :gh:`75223`.)" +msgid "Valid extensions start with a '.' or are empty for :meth:`mimetypes.MimeTypes.add_type`. Undotted extensions are deprecated and will raise a :exc:`ValueError` in Python 3.16. (Contributed by Hugo van Kemenade in :gh:`75223`.)" msgstr "" -#: ../../deprecations/pending-removal-in-3.16.rst:78 msgid ":mod:`shutil`:" msgstr "" -#: ../../deprecations/pending-removal-in-3.16.rst:80 -msgid "" -"The :class:`!ExecError` exception has been deprecated since Python 3.14. It " -"has not been used by any function in :mod:`!shutil` since Python 3.4, and is " -"now an alias of :exc:`RuntimeError`." +msgid "The :class:`!ExecError` exception has been deprecated since Python 3.14. It has not been used by any function in :mod:`!shutil` since Python 3.4, and is now an alias of :exc:`RuntimeError`." msgstr "" -#: ../../deprecations/pending-removal-in-3.16.rst:85 msgid ":mod:`symtable`:" msgstr "" -#: ../../deprecations/pending-removal-in-3.16.rst:87 -msgid "" -"The :meth:`Class.get_methods ` method has been " -"deprecated since Python 3.14." +msgid "The :meth:`Class.get_methods ` method has been deprecated since Python 3.14." msgstr "" -#: ../../deprecations/pending-removal-in-3.16.rst:90 msgid ":mod:`sys`:" msgstr "" -#: ../../deprecations/pending-removal-in-3.16.rst:92 -msgid "" -"The :func:`~sys._enablelegacywindowsfsencoding` function has been deprecated " -"since Python 3.13. Use the :envvar:`PYTHONLEGACYWINDOWSFSENCODING` " -"environment variable instead." +msgid "The :func:`~sys._enablelegacywindowsfsencoding` function has been deprecated since Python 3.13. Use the :envvar:`PYTHONLEGACYWINDOWSFSENCODING` environment variable instead." msgstr "" -#: ../../deprecations/pending-removal-in-3.16.rst:98 -msgid "" -"The :func:`!sysconfig.expand_makefile_vars` function has been deprecated " -"since Python 3.14. Use the ``vars`` argument of :func:`sysconfig.get_paths` " -"instead." +msgid "The :func:`!sysconfig.expand_makefile_vars` function has been deprecated since Python 3.14. Use the ``vars`` argument of :func:`sysconfig.get_paths` instead." msgstr "" -#: ../../deprecations/pending-removal-in-3.16.rst:102 msgid ":mod:`tarfile`:" msgstr "" -#: ../../deprecations/pending-removal-in-3.16.rst:104 -msgid "" -"The undocumented and unused :attr:`!TarFile.tarfile` attribute has been " -"deprecated since Python 3.13." +msgid "The undocumented and unused :attr:`!TarFile.tarfile` attribute has been deprecated since Python 3.13." msgstr "" -#: ../../deprecations/pending-removal-in-3.17.rst:2 msgid "Pending removal in Python 3.17" msgstr "" -#: ../../deprecations/pending-removal-in-3.17.rst:4 msgid ":mod:`collections.abc`:" msgstr "" -#: ../../deprecations/pending-removal-in-3.17.rst:6 -msgid "" -":class:`collections.abc.ByteString` is scheduled for removal in Python 3.17." +msgid ":class:`collections.abc.ByteString` is scheduled for removal in Python 3.17." msgstr "" -#: ../../deprecations/pending-removal-in-3.17.rst:8 -#: ../../deprecations/pending-removal-in-3.17.rst:36 -msgid "" -"Use ``isinstance(obj, collections.abc.Buffer)`` to test if ``obj`` " -"implements the :ref:`buffer protocol ` at runtime. For use in " -"type annotations, either use :class:`~collections.abc.Buffer` or a union " -"that explicitly specifies the types your code supports (e.g., ``bytes | " -"bytearray | memoryview``)." +msgid "Use ``isinstance(obj, collections.abc.Buffer)`` to test if ``obj`` implements the :ref:`buffer protocol ` at runtime. For use in type annotations, either use :class:`~collections.abc.Buffer` or a union that explicitly specifies the types your code supports (e.g., ``bytes | bytearray | memoryview``)." msgstr "" -#: ../../deprecations/pending-removal-in-3.17.rst:14 -#: ../../deprecations/pending-removal-in-3.17.rst:42 -msgid "" -":class:`!ByteString` was originally intended to be an abstract class that " -"would serve as a supertype of both :class:`bytes` and :class:`bytearray`. " -"However, since the ABC never had any methods, knowing that an object was an " -"instance of :class:`!ByteString` never actually told you anything useful " -"about the object. Other common buffer types such as :class:`memoryview` were " -"also never understood as subtypes of :class:`!ByteString` (either at runtime " -"or by static type checkers)." +msgid ":class:`!ByteString` was originally intended to be an abstract class that would serve as a supertype of both :class:`bytes` and :class:`bytearray`. However, since the ABC never had any methods, knowing that an object was an instance of :class:`!ByteString` never actually told you anything useful about the object. Other common buffer types such as :class:`memoryview` were also never understood as subtypes of :class:`!ByteString` (either at runtime or by static type checkers)." msgstr "" -#: ../../deprecations/pending-removal-in-3.17.rst:22 -#: ../../deprecations/pending-removal-in-3.17.rst:50 -msgid "" -"See :pep:`PEP 688 <688#current-options>` for more details. (Contributed by " -"Shantanu Jain in :gh:`91896`.)" +msgid "See :pep:`PEP 688 <688#current-options>` for more details. (Contributed by Shantanu Jain in :gh:`91896`.)" msgstr "" -#: ../../deprecations/pending-removal-in-3.17.rst:28 -msgid "" -"Before Python 3.14, old-style unions were implemented using the private " -"class ``typing._UnionGenericAlias``. This class is no longer needed for the " -"implementation, but it has been retained for backward compatibility, with " -"removal scheduled for Python 3.17. Users should use documented introspection " -"helpers like :func:`typing.get_origin` and :func:`typing.get_args` instead " -"of relying on private implementation details." +msgid "Before Python 3.14, old-style unions were implemented using the private class ``typing._UnionGenericAlias``. This class is no longer needed for the implementation, but it has been retained for backward compatibility, with removal scheduled for Python 3.17. Users should use documented introspection helpers like :func:`typing.get_origin` and :func:`typing.get_args` instead of relying on private implementation details." msgstr "" -#: ../../deprecations/pending-removal-in-3.17.rst:33 -msgid "" -":class:`typing.ByteString`, deprecated since Python 3.9, is scheduled for " -"removal in Python 3.17." +msgid ":class:`typing.ByteString`, deprecated since Python 3.9, is scheduled for removal in Python 3.17." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.18.rst:2 -#: ../../deprecations/pending-removal-in-3.18.rst:2 msgid "Pending removal in Python 3.18" msgstr "" -#: ../../deprecations/pending-removal-in-3.18.rst:4 msgid ":mod:`decimal`:" msgstr "" -#: ../../deprecations/pending-removal-in-3.18.rst:6 -msgid "" -"The non-standard and undocumented :class:`~decimal.Decimal` format specifier " -"``'N'``, which is only supported in the :mod:`!decimal` module's C " -"implementation, has been deprecated since Python 3.13. (Contributed by " -"Serhiy Storchaka in :gh:`89902`.)" +msgid "The non-standard and undocumented :class:`~decimal.Decimal` format specifier ``'N'``, which is only supported in the :mod:`!decimal` module's C implementation, has been deprecated since Python 3.13. (Contributed by Serhiy Storchaka in :gh:`89902`.)" msgstr "" -#: ../../deprecations/pending-removal-in-3.19.rst:2 msgid "Pending removal in Python 3.19" msgstr "" -#: ../../deprecations/pending-removal-in-3.19.rst:6 -msgid "" -"Implicitly switching to the MSVC-compatible struct layout by " -"setting :attr:`~ctypes.Structure._pack_` but " -"not :attr:`~ctypes.Structure._layout_` on non-Windows platforms." +msgid "Implicitly switching to the MSVC-compatible struct layout by setting :attr:`~ctypes.Structure._pack_` but not :attr:`~ctypes.Structure._layout_` on non-Windows platforms." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-future.rst:2 -#: ../../deprecations/pending-removal-in-future.rst:2 msgid "Pending removal in future versions" msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:4 -msgid "" -"The following APIs will be removed in the future, although there is " -"currently no date scheduled for their removal." +msgid "The following APIs will be removed in the future, although there is currently no date scheduled for their removal." msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:7 msgid ":mod:`argparse`:" msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:9 -msgid "" -"Nesting argument groups and nesting mutually exclusive groups are deprecated." +msgid "Nesting argument groups and nesting mutually exclusive groups are deprecated." msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:11 -msgid "" -"Passing the undocumented keyword argument *prefix_chars* " -"to :meth:`~argparse.ArgumentParser.add_argument_group` is now deprecated." +msgid "Passing the undocumented keyword argument *prefix_chars* to :meth:`~argparse.ArgumentParser.add_argument_group` is now deprecated." msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:14 msgid "The :class:`argparse.FileType` type converter is deprecated." msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:18 -msgid "" -"Generators: ``throw(type, exc, tb)`` and ``athrow(type, exc, tb)`` signature " -"is deprecated: use ``throw(exc)`` and ``athrow(exc)`` instead, the single " -"argument signature." +msgid "Generators: ``throw(type, exc, tb)`` and ``athrow(type, exc, tb)`` signature is deprecated: use ``throw(exc)`` and ``athrow(exc)`` instead, the single argument signature." msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:21 -msgid "" -"Currently Python accepts numeric literals immediately followed by keywords, " -"for example ``0in x``, ``1or x``, ``0if 1else 2``. It allows confusing and " -"ambiguous expressions like ``[0x1for x in y]`` (which can be interpreted as " -"``[0x1 for x in y]`` or ``[0x1f or x in y]``). A syntax warning is raised " -"if the numeric literal is immediately followed by one of " -"keywords :keyword:`and`, :keyword:`else`, :keyword:`for`, :keyword:`if`, :keyword:`in`, :keyword:`is` " -"and :keyword:`or`. In a future release it will be changed to a syntax " -"error. (:gh:`87999`)" +msgid "Currently Python accepts numeric literals immediately followed by keywords, for example ``0in x``, ``1or x``, ``0if 1else 2``. It allows confusing and ambiguous expressions like ``[0x1for x in y]`` (which can be interpreted as ``[0x1 for x in y]`` or ``[0x1f or x in y]``). A syntax warning is raised if the numeric literal is immediately followed by one of keywords :keyword:`and`, :keyword:`else`, :keyword:`for`, :keyword:`if`, :keyword:`in`, :keyword:`is` and :keyword:`or`. In a future release it will be changed to a syntax error. (:gh:`87999`)" msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:29 -msgid "" -"Support for ``__index__()`` and ``__int__()`` method returning non-int type: " -"these methods will be required to return an instance of a strict subclass " -"of :class:`int`." +msgid "Support for ``__index__()`` and ``__int__()`` method returning non-int type: these methods will be required to return an instance of a strict subclass of :class:`int`." msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:32 -msgid "" -"Support for ``__float__()`` method returning a strict subclass " -"of :class:`float`: these methods will be required to return an instance " -"of :class:`float`." +msgid "Support for ``__float__()`` method returning a strict subclass of :class:`float`: these methods will be required to return an instance of :class:`float`." msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:35 -msgid "" -"Support for ``__complex__()`` method returning a strict subclass " -"of :class:`complex`: these methods will be required to return an instance " -"of :class:`complex`." +msgid "Support for ``__complex__()`` method returning a strict subclass of :class:`complex`: these methods will be required to return an instance of :class:`complex`." msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:38 -msgid "" -"Passing a complex number as the *real* or *imag* argument in " -"the :func:`complex` constructor is now deprecated; it should only be passed " -"as a single positional argument. (Contributed by Serhiy Storchaka " -"in :gh:`109218`.)" +msgid "Passing a complex number as the *real* or *imag* argument in the :func:`complex` constructor is now deprecated; it should only be passed as a single positional argument. (Contributed by Serhiy Storchaka in :gh:`109218`.)" msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:43 -msgid "" -":mod:`calendar`: ``calendar.January`` and ``calendar.February`` constants " -"are deprecated and replaced by :data:`calendar.JANUARY` " -"and :data:`calendar.FEBRUARY`. (Contributed by Prince Roshan " -"in :gh:`103636`.)" +msgid ":mod:`calendar`: ``calendar.January`` and ``calendar.February`` constants are deprecated and replaced by :data:`calendar.JANUARY` and :data:`calendar.FEBRUARY`. (Contributed by Prince Roshan in :gh:`103636`.)" msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:48 -msgid "" -":mod:`codecs`: use :func:`open` instead of :func:`codecs.open`. " -"(:gh:`133038`)" +msgid ":mod:`codecs`: use :func:`open` instead of :func:`codecs.open`. (:gh:`133038`)" msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:50 -msgid "" -":attr:`codeobject.co_lnotab`: use the :meth:`codeobject.co_lines` method " -"instead." +msgid ":attr:`codeobject.co_lnotab`: use the :meth:`codeobject.co_lines` method instead." msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:53 msgid ":mod:`datetime`:" msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:55 -msgid "" -":meth:`~datetime.datetime.utcnow`: use " -"``datetime.datetime.now(tz=datetime.UTC)``." +msgid ":meth:`~datetime.datetime.utcnow`: use ``datetime.datetime.now(tz=datetime.UTC)``." msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:57 -msgid "" -":meth:`~datetime.datetime.utcfromtimestamp`: use " -"``datetime.datetime.fromtimestamp(timestamp, tz=datetime.UTC)``." +msgid ":meth:`~datetime.datetime.utcfromtimestamp`: use ``datetime.datetime.fromtimestamp(timestamp, tz=datetime.UTC)``." msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:60 msgid ":mod:`gettext`: Plural value must be an integer." msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:64 -msgid "" -":func:`~importlib.util.cache_from_source` *debug_override* parameter is " -"deprecated: use the *optimization* parameter instead." +msgid ":func:`~importlib.util.cache_from_source` *debug_override* parameter is deprecated: use the *optimization* parameter instead." msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:67 msgid ":mod:`importlib.metadata`:" msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:69 msgid "``EntryPoints`` tuple interface." msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:70 msgid "Implicit ``None`` on return values." msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:72 -msgid "" -":mod:`logging`: the ``warn()`` method has been deprecated since Python 3.3, " -"use :meth:`~logging.warning` instead." +msgid ":mod:`logging`: the ``warn()`` method has been deprecated since Python 3.3, use :meth:`~logging.warning` instead." msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:75 -msgid "" -":mod:`mailbox`: Use of StringIO input and text mode is deprecated, use " -"BytesIO and binary mode instead." +msgid ":mod:`mailbox`: Use of StringIO input and text mode is deprecated, use BytesIO and binary mode instead." msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:78 -msgid "" -":mod:`os`: Calling :func:`os.register_at_fork` in multi-threaded process." +msgid ":mod:`os`: Calling :func:`os.register_at_fork` in multi-threaded process." msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:80 -msgid "" -":class:`!pydoc.ErrorDuringImport`: A tuple value for *exc_info* parameter is " -"deprecated, use an exception instance." +msgid ":class:`!pydoc.ErrorDuringImport`: A tuple value for *exc_info* parameter is deprecated, use an exception instance." msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:83 -msgid "" -":mod:`re`: More strict rules are now applied for numerical group references " -"and group names in regular expressions. Only sequence of ASCII digits is " -"now accepted as a numerical reference. The group name in bytes patterns and " -"replacement strings can now only contain ASCII letters and digits and " -"underscore. (Contributed by Serhiy Storchaka in :gh:`91760`.)" +msgid ":mod:`re`: More strict rules are now applied for numerical group references and group names in regular expressions. Only sequence of ASCII digits is now accepted as a numerical reference. The group name in bytes patterns and replacement strings can now only contain ASCII letters and digits and underscore. (Contributed by Serhiy Storchaka in :gh:`91760`.)" msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:90 -msgid "" -":mod:`!sre_compile`, :mod:`!sre_constants` and :mod:`!sre_parse` modules." +msgid ":mod:`!sre_compile`, :mod:`!sre_constants` and :mod:`!sre_parse` modules." msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:92 -msgid "" -":mod:`shutil`: :func:`~shutil.rmtree`'s *onerror* parameter is deprecated in " -"Python 3.12; use the *onexc* parameter instead." +msgid ":mod:`shutil`: :func:`~shutil.rmtree`'s *onerror* parameter is deprecated in Python 3.12; use the *onexc* parameter instead." msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:95 msgid ":mod:`ssl` options and protocols:" msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:97 msgid ":class:`ssl.SSLContext` without protocol argument is deprecated." msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:98 -msgid "" -":class:`ssl.SSLContext`: :meth:`~ssl.SSLContext.set_npn_protocols` " -"and :meth:`!selected_npn_protocol` are deprecated: use ALPN instead." +msgid ":class:`ssl.SSLContext`: :meth:`~ssl.SSLContext.set_npn_protocols` and :meth:`!selected_npn_protocol` are deprecated: use ALPN instead." msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:101 msgid "``ssl.OP_NO_SSL*`` options" msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:102 msgid "``ssl.OP_NO_TLS*`` options" msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:103 msgid "``ssl.PROTOCOL_SSLv3``" msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:104 msgid "``ssl.PROTOCOL_TLS``" msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:105 msgid "``ssl.PROTOCOL_TLSv1``" msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:106 msgid "``ssl.PROTOCOL_TLSv1_1``" msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:107 msgid "``ssl.PROTOCOL_TLSv1_2``" msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:108 msgid "``ssl.TLSVersion.SSLv3``" msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:109 msgid "``ssl.TLSVersion.TLSv1``" msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:110 msgid "``ssl.TLSVersion.TLSv1_1``" msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:112 msgid ":mod:`threading` methods:" msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:114 -msgid "" -":meth:`!threading.Condition.notifyAll`: " -"use :meth:`~threading.Condition.notify_all`." +msgid ":meth:`!threading.Condition.notifyAll`: use :meth:`~threading.Condition.notify_all`." msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:115 msgid ":meth:`!threading.Event.isSet`: use :meth:`~threading.Event.is_set`." msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:116 -msgid "" -":meth:`!threading.Thread.isDaemon`, :meth:`threading.Thread.setDaemon`: " -"use :attr:`threading.Thread.daemon` attribute." +msgid ":meth:`!threading.Thread.isDaemon`, :meth:`threading.Thread.setDaemon`: use :attr:`threading.Thread.daemon` attribute." msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:118 -msgid "" -":meth:`!threading.Thread.getName`, :meth:`threading.Thread.setName`: " -"use :attr:`threading.Thread.name` attribute." +msgid ":meth:`!threading.Thread.getName`, :meth:`threading.Thread.setName`: use :attr:`threading.Thread.name` attribute." msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:120 msgid ":meth:`!threading.currentThread`: use :meth:`threading.current_thread`." msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:121 msgid ":meth:`!threading.activeCount`: use :meth:`threading.active_count`." msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:123 msgid ":class:`typing.Text` (:gh:`92332`)." msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:125 -msgid "" -"The internal class ``typing._UnionGenericAlias`` is no longer used to " -"implement :class:`typing.Union`. To preserve compatibility with users using " -"this private class, a compatibility shim will be provided until at least " -"Python 3.17. (Contributed by Jelle Zijlstra in :gh:`105499`.)" +msgid "The internal class ``typing._UnionGenericAlias`` is no longer used to implement :class:`typing.Union`. To preserve compatibility with users using this private class, a compatibility shim will be provided until at least Python 3.17. (Contributed by Jelle Zijlstra in :gh:`105499`.)" msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:130 -msgid "" -":class:`unittest.IsolatedAsyncioTestCase`: it is deprecated to return a " -"value that is not ``None`` from a test case." +msgid ":class:`unittest.IsolatedAsyncioTestCase`: it is deprecated to return a value that is not ``None`` from a test case." msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:133 -msgid "" -":mod:`urllib.parse` deprecated functions: :func:`~urllib.parse.urlparse` " -"instead" +msgid ":mod:`urllib.parse` deprecated functions: :func:`~urllib.parse.urlparse` instead" msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:135 msgid "``splitattr()``" msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:136 msgid "``splithost()``" msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:137 msgid "``splitnport()``" msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:138 msgid "``splitpasswd()``" msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:139 msgid "``splitport()``" msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:140 msgid "``splitquery()``" msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:141 msgid "``splittag()``" msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:142 msgid "``splittype()``" msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:143 msgid "``splituser()``" msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:144 msgid "``splitvalue()``" msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:145 msgid "``to_bytes()``" msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:147 -msgid "" -":mod:`wsgiref`: ``SimpleHandler.stdout.write()`` should not do partial " -"writes." +msgid ":mod:`wsgiref`: ``SimpleHandler.stdout.write()`` should not do partial writes." msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:150 -msgid "" -":mod:`xml.etree.ElementTree`: Testing the truth value of " -"an :class:`~xml.etree.ElementTree.Element` is deprecated. In a future " -"release it will always return ``True``. Prefer explicit ``len(elem)`` or " -"``elem is not None`` tests instead." +msgid ":mod:`xml.etree.ElementTree`: Testing the truth value of an :class:`~xml.etree.ElementTree.Element` is deprecated. In a future release it will always return ``True``. Prefer explicit ``len(elem)`` or ``elem is not None`` tests instead." msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:155 -msgid "" -":func:`sys._clear_type_cache` is deprecated: " -"use :func:`sys._clear_internal_caches` instead." +msgid ":func:`sys._clear_type_cache` is deprecated: use :func:`sys._clear_internal_caches` instead." msgstr "" -#: ../../deprecations/index.rst:17 msgid "C API deprecations" msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:4 -msgid "" -"The :c:func:`PyImport_ImportModuleNoBlock`: " -"Use :c:func:`PyImport_ImportModule` instead." +msgid "The :c:func:`PyImport_ImportModuleNoBlock`: Use :c:func:`PyImport_ImportModule` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:6 -msgid "" -":c:func:`PyWeakref_GetObject` and :c:func:`PyWeakref_GET_OBJECT`: " -"Use :c:func:`PyWeakref_GetRef` instead. The `pythoncapi-compat project " -"`__ can be used to " -"get :c:func:`PyWeakref_GetRef` on Python 3.12 and older." +msgid ":c:func:`PyWeakref_GetObject` and :c:func:`PyWeakref_GET_OBJECT`: Use :c:func:`PyWeakref_GetRef` instead. The `pythoncapi-compat project `__ can be used to get :c:func:`PyWeakref_GetRef` on Python 3.12 and older." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:10 -msgid "" -":c:type:`Py_UNICODE` type and the :c:macro:`!Py_UNICODE_WIDE` macro: " -"Use :c:type:`wchar_t` instead." +msgid ":c:type:`Py_UNICODE` type and the :c:macro:`!Py_UNICODE_WIDE` macro: Use :c:type:`wchar_t` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:12 -msgid "" -":c:func:`!PyUnicode_AsDecodedObject`: Use :c:func:`PyCodec_Decode` instead." +msgid ":c:func:`!PyUnicode_AsDecodedObject`: Use :c:func:`PyCodec_Decode` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:14 -msgid "" -":c:func:`!PyUnicode_AsDecodedUnicode`: Use :c:func:`PyCodec_Decode` instead; " -"Note that some codecs (for example, \"base64\") may return a type other " -"than :class:`str`, such as :class:`bytes`." +msgid ":c:func:`!PyUnicode_AsDecodedUnicode`: Use :c:func:`PyCodec_Decode` instead; Note that some codecs (for example, \"base64\") may return a type other than :class:`str`, such as :class:`bytes`." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:17 -msgid "" -":c:func:`!PyUnicode_AsEncodedObject`: Use :c:func:`PyCodec_Encode` instead." +msgid ":c:func:`!PyUnicode_AsEncodedObject`: Use :c:func:`PyCodec_Encode` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:19 -msgid "" -":c:func:`!PyUnicode_AsEncodedUnicode`: Use :c:func:`PyCodec_Encode` instead; " -"Note that some codecs (for example, \"base64\") may return a type other " -"than :class:`bytes`, such as :class:`str`." +msgid ":c:func:`!PyUnicode_AsEncodedUnicode`: Use :c:func:`PyCodec_Encode` instead; Note that some codecs (for example, \"base64\") may return a type other than :class:`bytes`, such as :class:`str`." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:22 msgid "Python initialization functions, deprecated in Python 3.13:" msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:24 -msgid "" -":c:func:`Py_GetPath`: Use :c:func:`PyConfig_Get(\"module_search_paths\") " -"` (:data:`sys.path`) instead." +msgid ":c:func:`Py_GetPath`: Use :c:func:`PyConfig_Get(\"module_search_paths\") ` (:data:`sys.path`) instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:27 -msgid "" -":c:func:`Py_GetPrefix`: Use :c:func:`PyConfig_Get(\"base_prefix\") " -"` (:data:`sys.base_prefix`) instead. " -"Use :c:func:`PyConfig_Get(\"prefix\") ` (:data:`sys.prefix`) " -"if :ref:`virtual environments ` need to be handled." +msgid ":c:func:`Py_GetPrefix`: Use :c:func:`PyConfig_Get(\"base_prefix\") ` (:data:`sys.base_prefix`) instead. Use :c:func:`PyConfig_Get(\"prefix\") ` (:data:`sys.prefix`) if :ref:`virtual environments ` need to be handled." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:32 -msgid "" -":c:func:`Py_GetExecPrefix`: Use :c:func:`PyConfig_Get(\"base_exec_prefix\") " -"` (:data:`sys.base_exec_prefix`) instead. " -"Use :c:func:`PyConfig_Get(\"exec_prefix\") ` " -"(:data:`sys.exec_prefix`) if :ref:`virtual environments ` need to " -"be handled." +msgid ":c:func:`Py_GetExecPrefix`: Use :c:func:`PyConfig_Get(\"base_exec_prefix\") ` (:data:`sys.base_exec_prefix`) instead. Use :c:func:`PyConfig_Get(\"exec_prefix\") ` (:data:`sys.exec_prefix`) if :ref:`virtual environments ` need to be handled." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:38 -msgid "" -":c:func:`Py_GetProgramFullPath`: Use :c:func:`PyConfig_Get(\"executable\") " -"` (:data:`sys.executable`) instead." +msgid ":c:func:`Py_GetProgramFullPath`: Use :c:func:`PyConfig_Get(\"executable\") ` (:data:`sys.executable`) instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:41 -msgid "" -":c:func:`Py_GetProgramName`: Use :c:func:`PyConfig_Get(\"executable\") " -"` (:data:`sys.executable`) instead." +msgid ":c:func:`Py_GetProgramName`: Use :c:func:`PyConfig_Get(\"executable\") ` (:data:`sys.executable`) instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:44 -msgid "" -":c:func:`Py_GetPythonHome`: Use :c:func:`PyConfig_Get(\"home\") " -"` or the :envvar:`PYTHONHOME` environment variable instead." +msgid ":c:func:`Py_GetPythonHome`: Use :c:func:`PyConfig_Get(\"home\") ` or the :envvar:`PYTHONHOME` environment variable instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:48 -msgid "" -"The `pythoncapi-compat project `__ can be used to get :c:func:`PyConfig_Get` on Python 3.13 and older." +msgid "The `pythoncapi-compat project `__ can be used to get :c:func:`PyConfig_Get` on Python 3.13 and older." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:52 -msgid "" -"Functions to configure Python's initialization, deprecated in Python 3.11:" +msgid "Functions to configure Python's initialization, deprecated in Python 3.11:" msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:54 msgid ":c:func:`!PySys_SetArgvEx()`: Set :c:member:`PyConfig.argv` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:56 msgid ":c:func:`!PySys_SetArgv()`: Set :c:member:`PyConfig.argv` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:58 -msgid "" -":c:func:`!Py_SetProgramName()`: Set :c:member:`PyConfig.program_name` " -"instead." +msgid ":c:func:`!Py_SetProgramName()`: Set :c:member:`PyConfig.program_name` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:60 msgid ":c:func:`!Py_SetPythonHome()`: Set :c:member:`PyConfig.home` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:62 -msgid "" -":c:func:`PySys_ResetWarnOptions`: Clear :data:`sys.warnoptions` and :data:`!" -"warnings.filters` instead." +msgid ":c:func:`PySys_ResetWarnOptions`: Clear :data:`sys.warnoptions` and :data:`!warnings.filters` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:65 -msgid "" -"The :c:func:`Py_InitializeFromConfig` API should be used " -"with :c:type:`PyConfig` instead." +msgid "The :c:func:`Py_InitializeFromConfig` API should be used with :c:type:`PyConfig` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:68 msgid "Global configuration variables:" msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:70 -msgid "" -":c:var:`Py_DebugFlag`: Use :c:member:`PyConfig.parser_debug` " -"or :c:func:`PyConfig_Get(\"parser_debug\") ` instead." +msgid ":c:var:`Py_DebugFlag`: Use :c:member:`PyConfig.parser_debug` or :c:func:`PyConfig_Get(\"parser_debug\") ` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:73 -msgid "" -":c:var:`Py_VerboseFlag`: Use :c:member:`PyConfig.verbose` " -"or :c:func:`PyConfig_Get(\"verbose\") ` instead." +msgid ":c:var:`Py_VerboseFlag`: Use :c:member:`PyConfig.verbose` or :c:func:`PyConfig_Get(\"verbose\") ` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:76 -msgid "" -":c:var:`Py_QuietFlag`: Use :c:member:`PyConfig.quiet` " -"or :c:func:`PyConfig_Get(\"quiet\") ` instead." +msgid ":c:var:`Py_QuietFlag`: Use :c:member:`PyConfig.quiet` or :c:func:`PyConfig_Get(\"quiet\") ` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:79 -msgid "" -":c:var:`Py_InteractiveFlag`: Use :c:member:`PyConfig.interactive` " -"or :c:func:`PyConfig_Get(\"interactive\") ` instead." +msgid ":c:var:`Py_InteractiveFlag`: Use :c:member:`PyConfig.interactive` or :c:func:`PyConfig_Get(\"interactive\") ` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:82 -msgid "" -":c:var:`Py_InspectFlag`: Use :c:member:`PyConfig.inspect` " -"or :c:func:`PyConfig_Get(\"inspect\") ` instead." +msgid ":c:var:`Py_InspectFlag`: Use :c:member:`PyConfig.inspect` or :c:func:`PyConfig_Get(\"inspect\") ` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:85 -msgid "" -":c:var:`Py_OptimizeFlag`: Use :c:member:`PyConfig.optimization_level` " -"or :c:func:`PyConfig_Get(\"optimization_level\") ` instead." +msgid ":c:var:`Py_OptimizeFlag`: Use :c:member:`PyConfig.optimization_level` or :c:func:`PyConfig_Get(\"optimization_level\") ` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:88 -msgid "" -":c:var:`Py_NoSiteFlag`: Use :c:member:`PyConfig.site_import` " -"or :c:func:`PyConfig_Get(\"site_import\") ` instead." +msgid ":c:var:`Py_NoSiteFlag`: Use :c:member:`PyConfig.site_import` or :c:func:`PyConfig_Get(\"site_import\") ` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:91 -msgid "" -":c:var:`Py_BytesWarningFlag`: Use :c:member:`PyConfig.bytes_warning` " -"or :c:func:`PyConfig_Get(\"bytes_warning\") ` instead." +msgid ":c:var:`Py_BytesWarningFlag`: Use :c:member:`PyConfig.bytes_warning` or :c:func:`PyConfig_Get(\"bytes_warning\") ` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:94 -msgid "" -":c:var:`Py_FrozenFlag`: Use :c:member:`PyConfig.pathconfig_warnings` " -"or :c:func:`PyConfig_Get(\"pathconfig_warnings\") ` instead." +msgid ":c:var:`Py_FrozenFlag`: Use :c:member:`PyConfig.pathconfig_warnings` or :c:func:`PyConfig_Get(\"pathconfig_warnings\") ` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:97 -msgid "" -":c:var:`Py_IgnoreEnvironmentFlag`: Use :c:member:`PyConfig.use_environment` " -"or :c:func:`PyConfig_Get(\"use_environment\") ` instead." +msgid ":c:var:`Py_IgnoreEnvironmentFlag`: Use :c:member:`PyConfig.use_environment` or :c:func:`PyConfig_Get(\"use_environment\") ` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:100 -msgid "" -":c:var:`Py_DontWriteBytecodeFlag`: Use :c:member:`PyConfig.write_bytecode` " -"or :c:func:`PyConfig_Get(\"write_bytecode\") ` instead." +msgid ":c:var:`Py_DontWriteBytecodeFlag`: Use :c:member:`PyConfig.write_bytecode` or :c:func:`PyConfig_Get(\"write_bytecode\") ` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:103 -msgid "" -":c:var:`Py_NoUserSiteDirectory`: " -"Use :c:member:`PyConfig.user_site_directory` " -"or :c:func:`PyConfig_Get(\"user_site_directory\") ` instead." +msgid ":c:var:`Py_NoUserSiteDirectory`: Use :c:member:`PyConfig.user_site_directory` or :c:func:`PyConfig_Get(\"user_site_directory\") ` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:106 -msgid "" -":c:var:`Py_UnbufferedStdioFlag`: Use :c:member:`PyConfig.buffered_stdio` " -"or :c:func:`PyConfig_Get(\"buffered_stdio\") ` instead." +msgid ":c:var:`Py_UnbufferedStdioFlag`: Use :c:member:`PyConfig.buffered_stdio` or :c:func:`PyConfig_Get(\"buffered_stdio\") ` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:109 -msgid "" -":c:var:`Py_HashRandomizationFlag`: Use :c:member:`PyConfig.use_hash_seed` " -"and :c:member:`PyConfig.hash_seed` or :c:func:`PyConfig_Get(\"hash_seed\") " -"` instead." +msgid ":c:var:`Py_HashRandomizationFlag`: Use :c:member:`PyConfig.use_hash_seed` and :c:member:`PyConfig.hash_seed` or :c:func:`PyConfig_Get(\"hash_seed\") ` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:113 -msgid "" -":c:var:`Py_IsolatedFlag`: Use :c:member:`PyConfig.isolated` " -"or :c:func:`PyConfig_Get(\"isolated\") ` instead." +msgid ":c:var:`Py_IsolatedFlag`: Use :c:member:`PyConfig.isolated` or :c:func:`PyConfig_Get(\"isolated\") ` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:116 -msgid "" -":c:var:`Py_LegacyWindowsFSEncodingFlag`: " -"Use :c:member:`PyPreConfig.legacy_windows_fs_encoding` " -"or :c:func:`PyConfig_Get(\"legacy_windows_fs_encoding\") ` " -"instead." +msgid ":c:var:`Py_LegacyWindowsFSEncodingFlag`: Use :c:member:`PyPreConfig.legacy_windows_fs_encoding` or :c:func:`PyConfig_Get(\"legacy_windows_fs_encoding\") ` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:119 -msgid "" -":c:var:`Py_LegacyWindowsStdioFlag`: " -"Use :c:member:`PyConfig.legacy_windows_stdio` " -"or :c:func:`PyConfig_Get(\"legacy_windows_stdio\") ` instead." +msgid ":c:var:`Py_LegacyWindowsStdioFlag`: Use :c:member:`PyConfig.legacy_windows_stdio` or :c:func:`PyConfig_Get(\"legacy_windows_stdio\") ` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:122 -msgid "" -":c:var:`!Py_FileSystemDefaultEncoding`, :c:var:`!" -"Py_HasFileSystemDefaultEncoding`: " -"Use :c:member:`PyConfig.filesystem_encoding` " -"or :c:func:`PyConfig_Get(\"filesystem_encoding\") ` instead." +msgid ":c:var:`!Py_FileSystemDefaultEncoding`, :c:var:`!Py_HasFileSystemDefaultEncoding`: Use :c:member:`PyConfig.filesystem_encoding` or :c:func:`PyConfig_Get(\"filesystem_encoding\") ` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:125 -msgid "" -":c:var:`!Py_FileSystemDefaultEncodeErrors`: " -"Use :c:member:`PyConfig.filesystem_errors` " -"or :c:func:`PyConfig_Get(\"filesystem_errors\") ` instead." +msgid ":c:var:`!Py_FileSystemDefaultEncodeErrors`: Use :c:member:`PyConfig.filesystem_errors` or :c:func:`PyConfig_Get(\"filesystem_errors\") ` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:128 -msgid "" -":c:var:`!Py_UTF8Mode`: Use :c:member:`PyPreConfig.utf8_mode` " -"or :c:func:`PyConfig_Get(\"utf8_mode\") ` instead. " -"(see :c:func:`Py_PreInitialize`)" +msgid ":c:var:`!Py_UTF8Mode`: Use :c:member:`PyPreConfig.utf8_mode` or :c:func:`PyConfig_Get(\"utf8_mode\") ` instead. (see :c:func:`Py_PreInitialize`)" msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.15.rst:133 -msgid "" -"The :c:func:`Py_InitializeFromConfig` API should be used " -"with :c:type:`PyConfig` to set these options. Or :c:func:`PyConfig_Get` can " -"be used to get these options at runtime." +msgid "The :c:func:`Py_InitializeFromConfig` API should be used with :c:type:`PyConfig` to set these options. Or :c:func:`PyConfig_Get` can be used to get these options at runtime." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.18.rst:4 -msgid "" -"The following private functions are deprecated and planned for removal in " -"Python 3.18:" +msgid "The following private functions are deprecated and planned for removal in Python 3.18:" msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.18.rst:7 msgid ":c:func:`!_PyBytes_Join`: use :c:func:`PyBytes_Join`." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.18.rst:8 -msgid "" -":c:func:`!_PyDict_GetItemStringWithError`: " -"use :c:func:`PyDict_GetItemStringRef`." +msgid ":c:func:`!_PyDict_GetItemStringWithError`: use :c:func:`PyDict_GetItemStringRef`." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.18.rst:9 msgid ":c:func:`!_PyDict_Pop()`: use :c:func:`PyDict_Pop`." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.18.rst:10 msgid ":c:func:`!_PyLong_Sign()`: use :c:func:`PyLong_GetSign`." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.18.rst:11 -msgid "" -":c:func:`!_PyLong_FromDigits` and :c:func:`!_PyLong_New`: " -"use :c:func:`PyLongWriter_Create`." +msgid ":c:func:`!_PyLong_FromDigits` and :c:func:`!_PyLong_New`: use :c:func:`PyLongWriter_Create`." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.18.rst:13 -msgid "" -":c:func:`!_PyThreadState_UncheckedGet`: " -"use :c:func:`PyThreadState_GetUnchecked`." +msgid ":c:func:`!_PyThreadState_UncheckedGet`: use :c:func:`PyThreadState_GetUnchecked`." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.18.rst:14 msgid ":c:func:`!_PyUnicode_AsString`: use :c:func:`PyUnicode_AsUTF8`." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.18.rst:15 -msgid "" -":c:func:`!_PyUnicodeWriter_Init`: replace ``_PyUnicodeWriter_Init(&writer)`` " -"with :c:func:`writer = PyUnicodeWriter_Create(0) `." +msgid ":c:func:`!_PyUnicodeWriter_Init`: replace ``_PyUnicodeWriter_Init(&writer)`` with :c:func:`writer = PyUnicodeWriter_Create(0) `." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.18.rst:18 -msgid "" -":c:func:`!_PyUnicodeWriter_Finish`: replace " -"``_PyUnicodeWriter_Finish(&writer)`` " -"with :c:func:`PyUnicodeWriter_Finish(writer) `." +msgid ":c:func:`!_PyUnicodeWriter_Finish`: replace ``_PyUnicodeWriter_Finish(&writer)`` with :c:func:`PyUnicodeWriter_Finish(writer) `." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.18.rst:21 -msgid "" -":c:func:`!_PyUnicodeWriter_Dealloc`: replace " -"``_PyUnicodeWriter_Dealloc(&writer)`` " -"with :c:func:`PyUnicodeWriter_Discard(writer) `." +msgid ":c:func:`!_PyUnicodeWriter_Dealloc`: replace ``_PyUnicodeWriter_Dealloc(&writer)`` with :c:func:`PyUnicodeWriter_Discard(writer) `." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.18.rst:24 -msgid "" -":c:func:`!_PyUnicodeWriter_WriteChar`: replace " -"``_PyUnicodeWriter_WriteChar(&writer, ch)`` " -"with :c:func:`PyUnicodeWriter_WriteChar(writer, ch) " -"`." +msgid ":c:func:`!_PyUnicodeWriter_WriteChar`: replace ``_PyUnicodeWriter_WriteChar(&writer, ch)`` with :c:func:`PyUnicodeWriter_WriteChar(writer, ch) `." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.18.rst:27 -msgid "" -":c:func:`!_PyUnicodeWriter_WriteStr`: replace " -"``_PyUnicodeWriter_WriteStr(&writer, str)`` " -"with :c:func:`PyUnicodeWriter_WriteStr(writer, str) " -"`." +msgid ":c:func:`!_PyUnicodeWriter_WriteStr`: replace ``_PyUnicodeWriter_WriteStr(&writer, str)`` with :c:func:`PyUnicodeWriter_WriteStr(writer, str) `." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.18.rst:30 -msgid "" -":c:func:`!_PyUnicodeWriter_WriteSubstring`: replace " -"``_PyUnicodeWriter_WriteSubstring(&writer, str, start, end)`` " -"with :c:func:`PyUnicodeWriter_WriteSubstring(writer, str, start, end) " -"`." +msgid ":c:func:`!_PyUnicodeWriter_WriteSubstring`: replace ``_PyUnicodeWriter_WriteSubstring(&writer, str, start, end)`` with :c:func:`PyUnicodeWriter_WriteSubstring(writer, str, start, end) `." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.18.rst:33 -msgid "" -":c:func:`!_PyUnicodeWriter_WriteASCIIString`: replace " -"``_PyUnicodeWriter_WriteASCIIString(&writer, str)`` " -"with :c:func:`PyUnicodeWriter_WriteASCII(writer, str) " -"`." +msgid ":c:func:`!_PyUnicodeWriter_WriteASCIIString`: replace ``_PyUnicodeWriter_WriteASCIIString(&writer, str)`` with :c:func:`PyUnicodeWriter_WriteASCII(writer, str) `." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.18.rst:36 -msgid "" -":c:func:`!_PyUnicodeWriter_WriteLatin1String`: replace " -"``_PyUnicodeWriter_WriteLatin1String(&writer, str)`` " -"with :c:func:`PyUnicodeWriter_WriteUTF8(writer, str) " -"`." +msgid ":c:func:`!_PyUnicodeWriter_WriteLatin1String`: replace ``_PyUnicodeWriter_WriteLatin1String(&writer, str)`` with :c:func:`PyUnicodeWriter_WriteUTF8(writer, str) `." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.18.rst:39 msgid ":c:func:`!_PyUnicodeWriter_Prepare`: (no replacement)." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.18.rst:40 msgid ":c:func:`!_PyUnicodeWriter_PrepareKind`: (no replacement)." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.18.rst:41 msgid ":c:func:`!_Py_HashPointer`: use :c:func:`Py_HashPointer`." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.18.rst:42 msgid ":c:func:`!_Py_fopen_obj`: use :c:func:`Py_fopen`." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-3.18.rst:44 -msgid "" -"The `pythoncapi-compat project `__ can be used to get these new public functions on Python 3.13 and older. " -"(Contributed by Victor Stinner in :gh:`128863`.)" +msgid "The `pythoncapi-compat project `__ can be used to get these new public functions on Python 3.13 and older. (Contributed by Victor Stinner in :gh:`128863`.)" msgstr "" -#: ../../deprecations/c-api-pending-removal-in-future.rst:4 -msgid "" -"The following APIs are deprecated and will be removed, although there is " -"currently no date scheduled for their removal." +msgid "The following APIs are deprecated and will be removed, although there is currently no date scheduled for their removal." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-future.rst:7 msgid ":c:macro:`Py_TPFLAGS_HAVE_FINALIZE`: Unneeded since Python 3.8." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-future.rst:9 msgid ":c:func:`PyErr_Fetch`: Use :c:func:`PyErr_GetRaisedException` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-future.rst:11 -msgid "" -":c:func:`PyErr_NormalizeException`: Use :c:func:`PyErr_GetRaisedException` " -"instead." +msgid ":c:func:`PyErr_NormalizeException`: Use :c:func:`PyErr_GetRaisedException` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-future.rst:13 -msgid "" -":c:func:`PyErr_Restore`: Use :c:func:`PyErr_SetRaisedException` instead." +msgid ":c:func:`PyErr_Restore`: Use :c:func:`PyErr_SetRaisedException` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-future.rst:15 -msgid "" -":c:func:`PyModule_GetFilename`: Use :c:func:`PyModule_GetFilenameObject` " -"instead." +msgid ":c:func:`PyModule_GetFilename`: Use :c:func:`PyModule_GetFilenameObject` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-future.rst:17 msgid ":c:func:`PyOS_AfterFork`: Use :c:func:`PyOS_AfterFork_Child` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-future.rst:19 -msgid "" -":c:func:`PySlice_GetIndicesEx`: Use :c:func:`PySlice_Unpack` " -"and :c:func:`PySlice_AdjustIndices` instead." +msgid ":c:func:`PySlice_GetIndicesEx`: Use :c:func:`PySlice_Unpack` and :c:func:`PySlice_AdjustIndices` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-future.rst:21 msgid ":c:func:`PyUnicode_READY`: Unneeded since Python 3.12" msgstr "" -#: ../../deprecations/c-api-pending-removal-in-future.rst:23 msgid ":c:func:`!PyErr_Display`: Use :c:func:`PyErr_DisplayException` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-future.rst:25 -msgid "" -":c:func:`!_PyErr_ChainExceptions`: Use :c:func:`!_PyErr_ChainExceptions1` " -"instead." +msgid ":c:func:`!_PyErr_ChainExceptions`: Use :c:func:`!_PyErr_ChainExceptions1` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-future.rst:27 -msgid "" -":c:member:`!PyBytesObject.ob_shash` member: call :c:func:`PyObject_Hash` " -"instead." +msgid ":c:member:`!PyBytesObject.ob_shash` member: call :c:func:`PyObject_Hash` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-future.rst:29 msgid "Thread Local Storage (TLS) API:" msgstr "" -#: ../../deprecations/c-api-pending-removal-in-future.rst:31 -msgid "" -":c:func:`PyThread_create_key`: Use :c:func:`PyThread_tss_alloc` instead." +msgid ":c:func:`PyThread_create_key`: Use :c:func:`PyThread_tss_alloc` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-future.rst:33 msgid ":c:func:`PyThread_delete_key`: Use :c:func:`PyThread_tss_free` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-future.rst:35 -msgid "" -":c:func:`PyThread_set_key_value`: Use :c:func:`PyThread_tss_set` instead." +msgid ":c:func:`PyThread_set_key_value`: Use :c:func:`PyThread_tss_set` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-future.rst:37 -msgid "" -":c:func:`PyThread_get_key_value`: Use :c:func:`PyThread_tss_get` instead." +msgid ":c:func:`PyThread_get_key_value`: Use :c:func:`PyThread_tss_get` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-future.rst:39 -msgid "" -":c:func:`PyThread_delete_key_value`: Use :c:func:`PyThread_tss_delete` " -"instead." +msgid ":c:func:`PyThread_delete_key_value`: Use :c:func:`PyThread_tss_delete` instead." msgstr "" -#: ../../deprecations/c-api-pending-removal-in-future.rst:41 msgid ":c:func:`PyThread_ReInitTLS`: Unneeded since Python 3.7." msgstr "" diff --git a/deprecations/pending-removal-in-3.13.po b/deprecations/pending-removal-in-3.13.po index f7d2e8ca..79ed62c9 100644 --- a/deprecations/pending-removal-in-3.13.po +++ b/deprecations/pending-removal-in-3.13.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2024-07-26 14:16+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,134 +21,101 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../deprecations/pending-removal-in-3.13.rst:2 msgid "Pending removal in Python 3.13" msgstr "" -#: ../../deprecations/pending-removal-in-3.13.rst:4 msgid "Modules (see :pep:`594`):" msgstr "" -#: ../../deprecations/pending-removal-in-3.13.rst:6 msgid ":mod:`!aifc`" msgstr "" -#: ../../deprecations/pending-removal-in-3.13.rst:7 msgid ":mod:`!audioop`" msgstr "" -#: ../../deprecations/pending-removal-in-3.13.rst:8 msgid ":mod:`!cgi`" msgstr "" -#: ../../deprecations/pending-removal-in-3.13.rst:9 msgid ":mod:`!cgitb`" msgstr "" -#: ../../deprecations/pending-removal-in-3.13.rst:10 msgid ":mod:`!chunk`" msgstr "" -#: ../../deprecations/pending-removal-in-3.13.rst:11 msgid ":mod:`!crypt`" msgstr "" -#: ../../deprecations/pending-removal-in-3.13.rst:12 msgid ":mod:`!imghdr`" msgstr "" -#: ../../deprecations/pending-removal-in-3.13.rst:13 msgid ":mod:`!mailcap`" msgstr "" -#: ../../deprecations/pending-removal-in-3.13.rst:14 msgid ":mod:`!msilib`" msgstr "" -#: ../../deprecations/pending-removal-in-3.13.rst:15 msgid ":mod:`!nis`" msgstr "" -#: ../../deprecations/pending-removal-in-3.13.rst:16 msgid ":mod:`!nntplib`" msgstr "" -#: ../../deprecations/pending-removal-in-3.13.rst:17 msgid ":mod:`!ossaudiodev`" msgstr "" -#: ../../deprecations/pending-removal-in-3.13.rst:18 msgid ":mod:`!pipes`" msgstr "" -#: ../../deprecations/pending-removal-in-3.13.rst:19 msgid ":mod:`!sndhdr`" msgstr "" -#: ../../deprecations/pending-removal-in-3.13.rst:20 msgid ":mod:`!spwd`" msgstr "" -#: ../../deprecations/pending-removal-in-3.13.rst:21 msgid ":mod:`!sunau`" msgstr "" -#: ../../deprecations/pending-removal-in-3.13.rst:22 msgid ":mod:`!telnetlib`" msgstr "" -#: ../../deprecations/pending-removal-in-3.13.rst:23 msgid ":mod:`!uu`" msgstr "" -#: ../../deprecations/pending-removal-in-3.13.rst:24 msgid ":mod:`!xdrlib`" msgstr "" -#: ../../deprecations/pending-removal-in-3.13.rst:26 msgid "Other modules:" msgstr "" -#: ../../deprecations/pending-removal-in-3.13.rst:28 msgid ":mod:`!lib2to3`, and the :program:`2to3` program (:gh:`84540`)" msgstr "" -#: ../../deprecations/pending-removal-in-3.13.rst:30 msgid "APIs:" msgstr "" -#: ../../deprecations/pending-removal-in-3.13.rst:32 msgid ":class:`!configparser.LegacyInterpolation` (:gh:`90765`)" msgstr "" -#: ../../deprecations/pending-removal-in-3.13.rst:33 msgid "``locale.resetlocale()`` (:gh:`90817`)" msgstr "" -#: ../../deprecations/pending-removal-in-3.13.rst:34 msgid ":meth:`!turtle.RawTurtle.settiltangle` (:gh:`50096`)" msgstr "" -#: ../../deprecations/pending-removal-in-3.13.rst:35 msgid ":func:`!unittest.findTestCases` (:gh:`50096`)" msgstr "" -#: ../../deprecations/pending-removal-in-3.13.rst:36 msgid ":func:`!unittest.getTestCaseNames` (:gh:`50096`)" msgstr "" -#: ../../deprecations/pending-removal-in-3.13.rst:37 msgid ":func:`!unittest.makeSuite` (:gh:`50096`)" msgstr "" -#: ../../deprecations/pending-removal-in-3.13.rst:38 msgid ":meth:`!unittest.TestProgram.usageExit` (:gh:`67048`)" msgstr "" -#: ../../deprecations/pending-removal-in-3.13.rst:39 msgid ":class:`!webbrowser.MacOSX` (:gh:`86421`)" msgstr "" -#: ../../deprecations/pending-removal-in-3.13.rst:40 msgid ":class:`classmethod` descriptor chaining (:gh:`89519`)" msgstr "" diff --git a/deprecations/pending-removal-in-3.14.po b/deprecations/pending-removal-in-3.14.po index 093f84a2..20c456b7 100644 --- a/deprecations/pending-removal-in-3.14.po +++ b/deprecations/pending-removal-in-3.14.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2024-07-20 00:54+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,181 +21,101 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../deprecations/pending-removal-in-3.14.rst:2 msgid "Pending removal in Python 3.14" msgstr "" -#: ../../deprecations/pending-removal-in-3.14.rst:4 -msgid "" -":mod:`argparse`: The *type*, *choices*, and *metavar* parameters of :class:`!" -"argparse.BooleanOptionalAction` are deprecated and will be removed in 3.14. " -"(Contributed by Nikita Sobolev in :gh:`92248`.)" +msgid ":mod:`argparse`: The *type*, *choices*, and *metavar* parameters of :class:`!argparse.BooleanOptionalAction` are deprecated and will be removed in 3.14. (Contributed by Nikita Sobolev in :gh:`92248`.)" msgstr "" -#: ../../deprecations/pending-removal-in-3.14.rst:9 -msgid "" -":mod:`ast`: The following features have been deprecated in documentation " -"since Python 3.8, now cause a :exc:`DeprecationWarning` to be emitted at " -"runtime when they are accessed or used, and will be removed in Python 3.14:" +msgid ":mod:`ast`: The following features have been deprecated in documentation since Python 3.8, now cause a :exc:`DeprecationWarning` to be emitted at runtime when they are accessed or used, and will be removed in Python 3.14:" msgstr "" -#: ../../deprecations/pending-removal-in-3.14.rst:13 msgid ":class:`!ast.Num`" msgstr "" -#: ../../deprecations/pending-removal-in-3.14.rst:14 msgid ":class:`!ast.Str`" msgstr "" -#: ../../deprecations/pending-removal-in-3.14.rst:15 msgid ":class:`!ast.Bytes`" msgstr "" -#: ../../deprecations/pending-removal-in-3.14.rst:16 msgid ":class:`!ast.NameConstant`" msgstr "" -#: ../../deprecations/pending-removal-in-3.14.rst:17 msgid ":class:`!ast.Ellipsis`" msgstr "" -#: ../../deprecations/pending-removal-in-3.14.rst:19 -msgid "" -"Use :class:`ast.Constant` instead. (Contributed by Serhiy Storchaka " -"in :gh:`90953`.)" +msgid "Use :class:`ast.Constant` instead. (Contributed by Serhiy Storchaka in :gh:`90953`.)" msgstr "" -#: ../../deprecations/pending-removal-in-3.14.rst:22 msgid ":mod:`asyncio`:" msgstr "" -#: ../../deprecations/pending-removal-in-3.14.rst:24 -msgid "" -"The child watcher classes :class:`!asyncio.MultiLoopChildWatcher`, :class:`!" -"asyncio.FastChildWatcher`, :class:`!asyncio.AbstractChildWatcher` " -"and :class:`!asyncio.SafeChildWatcher` are deprecated and will be removed in " -"Python 3.14. (Contributed by Kumar Aditya in :gh:`94597`.)" +msgid "The child watcher classes :class:`!asyncio.MultiLoopChildWatcher`, :class:`!asyncio.FastChildWatcher`, :class:`!asyncio.AbstractChildWatcher` and :class:`!asyncio.SafeChildWatcher` are deprecated and will be removed in Python 3.14. (Contributed by Kumar Aditya in :gh:`94597`.)" msgstr "" -#: ../../deprecations/pending-removal-in-3.14.rst:30 -msgid "" -":func:`!asyncio.set_child_watcher`, :func:`!" -"asyncio.get_child_watcher`, :meth:`!" -"asyncio.AbstractEventLoopPolicy.set_child_watcher` and :meth:`!" -"asyncio.AbstractEventLoopPolicy.get_child_watcher` are deprecated and will " -"be removed in Python 3.14. (Contributed by Kumar Aditya in :gh:`94597`.)" +msgid ":func:`!asyncio.set_child_watcher`, :func:`!asyncio.get_child_watcher`, :meth:`!asyncio.AbstractEventLoopPolicy.set_child_watcher` and :meth:`!asyncio.AbstractEventLoopPolicy.get_child_watcher` are deprecated and will be removed in Python 3.14. (Contributed by Kumar Aditya in :gh:`94597`.)" msgstr "" -#: ../../deprecations/pending-removal-in-3.14.rst:36 -msgid "" -"The :meth:`~asyncio.get_event_loop` method of the default event loop policy " -"now emits a :exc:`DeprecationWarning` if there is no current event loop set " -"and it decides to create one. (Contributed by Serhiy Storchaka and Guido van " -"Rossum in :gh:`100160`.)" +msgid "The :meth:`~asyncio.get_event_loop` method of the default event loop policy now emits a :exc:`DeprecationWarning` if there is no current event loop set and it decides to create one. (Contributed by Serhiy Storchaka and Guido van Rossum in :gh:`100160`.)" msgstr "" -#: ../../deprecations/pending-removal-in-3.14.rst:41 -msgid "" -":mod:`email`: Deprecated the *isdst* parameter " -"in :func:`email.utils.localtime`. (Contributed by Alan Williams " -"in :gh:`72346`.)" +msgid ":mod:`email`: Deprecated the *isdst* parameter in :func:`email.utils.localtime`. (Contributed by Alan Williams in :gh:`72346`.)" msgstr "" -#: ../../deprecations/pending-removal-in-3.14.rst:44 msgid ":mod:`importlib.abc` deprecated classes:" msgstr "" -#: ../../deprecations/pending-removal-in-3.14.rst:46 msgid ":class:`!importlib.abc.ResourceReader`" msgstr "" -#: ../../deprecations/pending-removal-in-3.14.rst:47 msgid ":class:`!importlib.abc.Traversable`" msgstr "" -#: ../../deprecations/pending-removal-in-3.14.rst:48 msgid ":class:`!importlib.abc.TraversableResources`" msgstr "" -#: ../../deprecations/pending-removal-in-3.14.rst:50 msgid "Use :mod:`importlib.resources.abc` classes instead:" msgstr "" -#: ../../deprecations/pending-removal-in-3.14.rst:52 msgid ":class:`importlib.resources.abc.Traversable`" msgstr "" -#: ../../deprecations/pending-removal-in-3.14.rst:53 msgid ":class:`importlib.resources.abc.TraversableResources`" msgstr "" -#: ../../deprecations/pending-removal-in-3.14.rst:55 msgid "(Contributed by Jason R. Coombs and Hugo van Kemenade in :gh:`93963`.)" msgstr "" -#: ../../deprecations/pending-removal-in-3.14.rst:57 -msgid "" -":mod:`itertools` had undocumented, inefficient, historically buggy, and " -"inconsistent support for copy, deepcopy, and pickle operations. This will be " -"removed in 3.14 for a significant reduction in code volume and maintenance " -"burden. (Contributed by Raymond Hettinger in :gh:`101588`.)" +msgid ":mod:`itertools` had undocumented, inefficient, historically buggy, and inconsistent support for copy, deepcopy, and pickle operations. This will be removed in 3.14 for a significant reduction in code volume and maintenance burden. (Contributed by Raymond Hettinger in :gh:`101588`.)" msgstr "" -#: ../../deprecations/pending-removal-in-3.14.rst:63 -msgid "" -":mod:`multiprocessing`: The default start method will change to a safer one " -"on Linux, BSDs, and other non-macOS POSIX platforms where ``'fork'`` is " -"currently the default (:gh:`84559`). Adding a runtime warning about this was " -"deemed too disruptive as the majority of code is not expected to care. Use " -"the :func:`~multiprocessing.get_context` " -"or :func:`~multiprocessing.set_start_method` APIs to explicitly specify when " -"your code *requires* ``'fork'``. See :ref:`multiprocessing-start-methods`." +msgid ":mod:`multiprocessing`: The default start method will change to a safer one on Linux, BSDs, and other non-macOS POSIX platforms where ``'fork'`` is currently the default (:gh:`84559`). Adding a runtime warning about this was deemed too disruptive as the majority of code is not expected to care. Use the :func:`~multiprocessing.get_context` or :func:`~multiprocessing.set_start_method` APIs to explicitly specify when your code *requires* ``'fork'``. See :ref:`multiprocessing-start-methods`." msgstr "" -#: ../../deprecations/pending-removal-in-3.14.rst:71 -msgid "" -":mod:`pathlib`: :meth:`~pathlib.PurePath.is_relative_to` " -"and :meth:`~pathlib.PurePath.relative_to`: passing additional arguments is " -"deprecated." +msgid ":mod:`pathlib`: :meth:`~pathlib.PurePath.is_relative_to` and :meth:`~pathlib.PurePath.relative_to`: passing additional arguments is deprecated." msgstr "" -#: ../../deprecations/pending-removal-in-3.14.rst:75 -msgid "" -":mod:`pkgutil`: :func:`!pkgutil.find_loader` and :func:`!pkgutil.get_loader` " -"now raise :exc:`DeprecationWarning`; use :func:`importlib.util.find_spec` " -"instead. (Contributed by Nikita Sobolev in :gh:`97850`.)" +msgid ":mod:`pkgutil`: :func:`!pkgutil.find_loader` and :func:`!pkgutil.get_loader` now raise :exc:`DeprecationWarning`; use :func:`importlib.util.find_spec` instead. (Contributed by Nikita Sobolev in :gh:`97850`.)" msgstr "" -#: ../../deprecations/pending-removal-in-3.14.rst:80 msgid ":mod:`pty`:" msgstr "" -#: ../../deprecations/pending-removal-in-3.14.rst:82 msgid "``master_open()``: use :func:`pty.openpty`." msgstr "" -#: ../../deprecations/pending-removal-in-3.14.rst:83 msgid "``slave_open()``: use :func:`pty.openpty`." msgstr "" -#: ../../deprecations/pending-removal-in-3.14.rst:85 msgid ":mod:`sqlite3`:" msgstr "" -#: ../../deprecations/pending-removal-in-3.14.rst:87 msgid ":data:`!version` and :data:`!version_info`." msgstr "" -#: ../../deprecations/pending-removal-in-3.14.rst:89 -msgid "" -":meth:`~sqlite3.Cursor.execute` and :meth:`~sqlite3.Cursor.executemany` " -"if :ref:`named placeholders ` are used and " -"*parameters* is a sequence instead of a :class:`dict`." +msgid ":meth:`~sqlite3.Cursor.execute` and :meth:`~sqlite3.Cursor.executemany` if :ref:`named placeholders ` are used and *parameters* is a sequence instead of a :class:`dict`." msgstr "" -#: ../../deprecations/pending-removal-in-3.14.rst:93 -msgid "" -":mod:`urllib`: :class:`!urllib.parse.Quoter` is deprecated: it was not " -"intended to be a public API. (Contributed by Gregory P. Smith " -"in :gh:`88168`.)" +msgid ":mod:`urllib`: :class:`!urllib.parse.Quoter` is deprecated: it was not intended to be a public API. (Contributed by Gregory P. Smith in :gh:`88168`.)" msgstr "" diff --git a/deprecations/pending-removal-in-3.15.po b/deprecations/pending-removal-in-3.15.po index ea3bbd49..074e441a 100644 --- a/deprecations/pending-removal-in-3.15.po +++ b/deprecations/pending-removal-in-3.15.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2024-07-20 00:54+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,168 +21,89 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../deprecations/pending-removal-in-3.15.rst:2 msgid "Pending removal in Python 3.15" msgstr "" -#: ../../deprecations/pending-removal-in-3.15.rst:4 msgid "The import system:" msgstr "" -#: ../../deprecations/pending-removal-in-3.15.rst:6 -msgid "" -"Setting :attr:`~module.__cached__` on a module while failing to " -"set :attr:`__spec__.cached ` is " -"deprecated. In Python 3.15, :attr:`!__cached__` will cease to be set or take " -"into consideration by the import system or standard library. (:gh:`97879`)" +msgid "Setting :attr:`~module.__cached__` on a module while failing to set :attr:`__spec__.cached ` is deprecated. In Python 3.15, :attr:`!__cached__` will cease to be set or take into consideration by the import system or standard library. (:gh:`97879`)" msgstr "" -#: ../../deprecations/pending-removal-in-3.15.rst:11 -msgid "" -"Setting :attr:`~module.__package__` on a module while failing to " -"set :attr:`__spec__.parent ` is " -"deprecated. In Python 3.15, :attr:`!__package__` will cease to be set or " -"take into consideration by the import system or standard library. " -"(:gh:`97879`)" +msgid "Setting :attr:`~module.__package__` on a module while failing to set :attr:`__spec__.parent ` is deprecated. In Python 3.15, :attr:`!__package__` will cease to be set or take into consideration by the import system or standard library. (:gh:`97879`)" msgstr "" -#: ../../deprecations/pending-removal-in-3.15.rst:16 msgid ":mod:`ctypes`:" msgstr "" -#: ../../deprecations/pending-removal-in-3.15.rst:18 -msgid "" -"The undocumented :func:`!ctypes.SetPointerType` function has been deprecated " -"since Python 3.13." +msgid "The undocumented :func:`!ctypes.SetPointerType` function has been deprecated since Python 3.13." msgstr "" -#: ../../deprecations/pending-removal-in-3.15.rst:21 msgid ":mod:`http.server`:" msgstr "" -#: ../../deprecations/pending-removal-in-3.15.rst:23 -msgid "" -"The obsolete and rarely used :class:`~http.server.CGIHTTPRequestHandler` has " -"been deprecated since Python 3.13. No direct replacement exists. *Anything* " -"is better than CGI to interface a web server with a request handler." +msgid "The obsolete and rarely used :class:`~http.server.CGIHTTPRequestHandler` has been deprecated since Python 3.13. No direct replacement exists. *Anything* is better than CGI to interface a web server with a request handler." msgstr "" -#: ../../deprecations/pending-removal-in-3.15.rst:29 -msgid "" -"The :option:`!--cgi` flag to the :program:`python -m http.server` command-" -"line interface has been deprecated since Python 3.13." +msgid "The :option:`!--cgi` flag to the :program:`python -m http.server` command-line interface has been deprecated since Python 3.13." msgstr "" -#: ../../deprecations/pending-removal-in-3.15.rst:32 msgid ":mod:`importlib`:" msgstr "" -#: ../../deprecations/pending-removal-in-3.15.rst:34 msgid "``load_module()`` method: use ``exec_module()`` instead." msgstr "" -#: ../../deprecations/pending-removal-in-3.15.rst:36 msgid ":mod:`pathlib`:" msgstr "" -#: ../../deprecations/pending-removal-in-3.15.rst:38 -msgid "" -":meth:`.PurePath.is_reserved` has been deprecated since Python 3.13. " -"Use :func:`os.path.isreserved` to detect reserved paths on Windows." +msgid ":meth:`.PurePath.is_reserved` has been deprecated since Python 3.13. Use :func:`os.path.isreserved` to detect reserved paths on Windows." msgstr "" -#: ../../deprecations/pending-removal-in-3.15.rst:42 msgid ":mod:`platform`:" msgstr "" -#: ../../deprecations/pending-removal-in-3.15.rst:44 -msgid "" -":func:`~platform.java_ver` has been deprecated since Python 3.13. This " -"function is only useful for Jython support, has a confusing API, and is " -"largely untested." +msgid ":func:`~platform.java_ver` has been deprecated since Python 3.13. This function is only useful for Jython support, has a confusing API, and is largely untested." msgstr "" -#: ../../deprecations/pending-removal-in-3.15.rst:48 msgid ":mod:`sysconfig`:" msgstr "" -#: ../../deprecations/pending-removal-in-3.15.rst:50 -msgid "" -"The *check_home* argument of :func:`sysconfig.is_python_build` has been " -"deprecated since Python 3.12." +msgid "The *check_home* argument of :func:`sysconfig.is_python_build` has been deprecated since Python 3.12." msgstr "" -#: ../../deprecations/pending-removal-in-3.15.rst:53 msgid ":mod:`threading`:" msgstr "" -#: ../../deprecations/pending-removal-in-3.15.rst:55 -msgid "" -":func:`~threading.RLock` will take no arguments in Python 3.15. Passing any " -"arguments has been deprecated since Python 3.14, as the Python version does " -"not permit any arguments, but the C version allows any number of positional " -"or keyword arguments, ignoring every argument." +msgid ":func:`~threading.RLock` will take no arguments in Python 3.15. Passing any arguments has been deprecated since Python 3.14, as the Python version does not permit any arguments, but the C version allows any number of positional or keyword arguments, ignoring every argument." msgstr "" -#: ../../deprecations/pending-removal-in-3.15.rst:61 msgid ":mod:`types`:" msgstr "" -#: ../../deprecations/pending-removal-in-3.15.rst:63 -msgid "" -":class:`types.CodeType`: Accessing :attr:`~codeobject.co_lnotab` was " -"deprecated in :pep:`626` since 3.10 and was planned to be removed in 3.12, " -"but it only got a proper :exc:`DeprecationWarning` in 3.12. May be removed " -"in 3.15. (Contributed by Nikita Sobolev in :gh:`101866`.)" +msgid ":class:`types.CodeType`: Accessing :attr:`~codeobject.co_lnotab` was deprecated in :pep:`626` since 3.10 and was planned to be removed in 3.12, but it only got a proper :exc:`DeprecationWarning` in 3.12. May be removed in 3.15. (Contributed by Nikita Sobolev in :gh:`101866`.)" msgstr "" -#: ../../deprecations/pending-removal-in-3.15.rst:70 msgid ":mod:`typing`:" msgstr "" -#: ../../deprecations/pending-removal-in-3.15.rst:72 -msgid "" -"The undocumented keyword argument syntax for " -"creating :class:`~typing.NamedTuple` classes (for example, ``Point = " -"NamedTuple(\"Point\", x=int, y=int)``) has been deprecated since Python " -"3.13. Use the class-based syntax or the functional syntax instead." +msgid "The undocumented keyword argument syntax for creating :class:`~typing.NamedTuple` classes (for example, ``Point = NamedTuple(\"Point\", x=int, y=int)``) has been deprecated since Python 3.13. Use the class-based syntax or the functional syntax instead." msgstr "" -#: ../../deprecations/pending-removal-in-3.15.rst:78 -msgid "" -"When using the functional syntax of :class:`~typing.TypedDict`\\s, failing " -"to pass a value to the *fields* parameter (``TD = TypedDict(\"TD\")``) or " -"passing ``None`` (``TD = TypedDict(\"TD\", None)``) has been deprecated " -"since Python 3.13. Use ``class TD(TypedDict): pass`` or ``TD = " -"TypedDict(\"TD\", {})`` to create a TypedDict with zero field." +msgid "When using the functional syntax of :class:`~typing.TypedDict`\\s, failing to pass a value to the *fields* parameter (``TD = TypedDict(\"TD\")``) or passing ``None`` (``TD = TypedDict(\"TD\", None)``) has been deprecated since Python 3.13. Use ``class TD(TypedDict): pass`` or ``TD = TypedDict(\"TD\", {})`` to create a TypedDict with zero field." msgstr "" -#: ../../deprecations/pending-removal-in-3.15.rst:85 -msgid "" -"The :deco:`typing.no_type_check_decorator` decorator function has been " -"deprecated since Python 3.13. After eight years in the :mod:`typing` module, " -"it has yet to be supported by any major type checker." +msgid "The :deco:`typing.no_type_check_decorator` decorator function has been deprecated since Python 3.13. After eight years in the :mod:`typing` module, it has yet to be supported by any major type checker." msgstr "" -#: ../../deprecations/pending-removal-in-3.15.rst:90 msgid ":mod:`wave`:" msgstr "" -#: ../../deprecations/pending-removal-in-3.15.rst:92 -msgid "" -"The :meth:`~wave.Wave_read.getmark`, :meth:`!setmark`, " -"and :meth:`~wave.Wave_read.getmarkers` methods of " -"the :class:`~wave.Wave_read` and :class:`~wave.Wave_write` classes have been " -"deprecated since Python 3.13." +msgid "The :meth:`~wave.Wave_read.getmark`, :meth:`!setmark`, and :meth:`~wave.Wave_read.getmarkers` methods of the :class:`~wave.Wave_read` and :class:`~wave.Wave_write` classes have been deprecated since Python 3.13." msgstr "" -#: ../../deprecations/pending-removal-in-3.15.rst:97 msgid ":mod:`zipimport`:" msgstr "" -#: ../../deprecations/pending-removal-in-3.15.rst:99 -msgid "" -":meth:`~zipimport.zipimporter.load_module` has been deprecated since Python " -"3.10. Use :meth:`~zipimport.zipimporter.exec_module` instead. (Contributed " -"by Jiahao Li in :gh:`125746`.)" +msgid ":meth:`~zipimport.zipimporter.load_module` has been deprecated since Python 3.10. Use :meth:`~zipimport.zipimporter.exec_module` instead. (Contributed by Jiahao Li in :gh:`125746`.)" msgstr "" diff --git a/deprecations/pending-removal-in-3.16.po b/deprecations/pending-removal-in-3.16.po index ee27bba3..ba1dd727 100644 --- a/deprecations/pending-removal-in-3.16.po +++ b/deprecations/pending-removal-in-3.16.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2024-07-20 00:54+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,85 +21,54 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../deprecations/pending-removal-in-3.16.rst:2 msgid "Pending removal in Python 3.16" msgstr "" -#: ../../deprecations/pending-removal-in-3.16.rst:4 msgid "The import system:" msgstr "" -#: ../../deprecations/pending-removal-in-3.16.rst:6 -msgid "" -"Setting :attr:`~module.__loader__` on a module while failing to " -"set :attr:`__spec__.loader ` is " -"deprecated. In Python 3.16, :attr:`!__loader__` will cease to be set or " -"taken into consideration by the import system or the standard library." +msgid "Setting :attr:`~module.__loader__` on a module while failing to set :attr:`__spec__.loader ` is deprecated. In Python 3.16, :attr:`!__loader__` will cease to be set or taken into consideration by the import system or the standard library." msgstr "" -#: ../../deprecations/pending-removal-in-3.16.rst:11 msgid ":mod:`array`:" msgstr "" -#: ../../deprecations/pending-removal-in-3.16.rst:13 -msgid "" -"The ``'u'`` format code (:c:type:`wchar_t`) has been deprecated in " -"documentation since Python 3.3 and at runtime since Python 3.13. Use the " -"``'w'`` format code (:c:type:`Py_UCS4`) for Unicode characters instead." +msgid "The ``'u'`` format code (:c:type:`wchar_t`) has been deprecated in documentation since Python 3.3 and at runtime since Python 3.13. Use the ``'w'`` format code (:c:type:`Py_UCS4`) for Unicode characters instead." msgstr "" -#: ../../deprecations/pending-removal-in-3.16.rst:19 msgid ":mod:`asyncio`:" msgstr "" -#: ../../deprecations/pending-removal-in-3.16.rst:21 -msgid "" -":func:`!asyncio.iscoroutinefunction` is deprecated and will be removed in " -"Python 3.16; use :func:`inspect.iscoroutinefunction` instead. (Contributed " -"by Jiahao Li and Kumar Aditya in :gh:`122875`.)" +msgid ":func:`!asyncio.iscoroutinefunction` is deprecated and will be removed in Python 3.16; use :func:`inspect.iscoroutinefunction` instead. (Contributed by Jiahao Li and Kumar Aditya in :gh:`122875`.)" msgstr "" -#: ../../deprecations/pending-removal-in-3.16.rst:26 -msgid "" -":mod:`asyncio` policy system is deprecated and will be removed in Python " -"3.16. In particular, the following classes and functions are deprecated:" +msgid ":mod:`asyncio` policy system is deprecated and will be removed in Python 3.16. In particular, the following classes and functions are deprecated:" msgstr "" -#: ../../deprecations/pending-removal-in-3.16.rst:29 msgid ":class:`asyncio.AbstractEventLoopPolicy`" msgstr "" -#: ../../deprecations/pending-removal-in-3.16.rst:30 msgid ":class:`asyncio.DefaultEventLoopPolicy`" msgstr "" -#: ../../deprecations/pending-removal-in-3.16.rst:31 msgid ":class:`asyncio.WindowsSelectorEventLoopPolicy`" msgstr "" -#: ../../deprecations/pending-removal-in-3.16.rst:32 msgid ":class:`asyncio.WindowsProactorEventLoopPolicy`" msgstr "" -#: ../../deprecations/pending-removal-in-3.16.rst:33 msgid ":func:`asyncio.get_event_loop_policy`" msgstr "" -#: ../../deprecations/pending-removal-in-3.16.rst:34 msgid ":func:`asyncio.set_event_loop_policy`" msgstr "" -#: ../../deprecations/pending-removal-in-3.16.rst:36 -msgid "" -"Users should use :func:`asyncio.run` or :class:`asyncio.Runner` with " -"*loop_factory* to use the desired event loop implementation." +msgid "Users should use :func:`asyncio.run` or :class:`asyncio.Runner` with *loop_factory* to use the desired event loop implementation." msgstr "" -#: ../../deprecations/pending-removal-in-3.16.rst:39 msgid "For example, to use :class:`asyncio.SelectorEventLoop` on Windows::" msgstr "" -#: ../../deprecations/pending-removal-in-3.16.rst:41 msgid "" "import asyncio\n" "\n" @@ -109,106 +78,59 @@ msgid "" "asyncio.run(main(), loop_factory=asyncio.SelectorEventLoop)" msgstr "" -#: ../../deprecations/pending-removal-in-3.16.rst:48 msgid "(Contributed by Kumar Aditya in :gh:`127949`.)" msgstr "" -#: ../../deprecations/pending-removal-in-3.16.rst:50 msgid ":mod:`builtins`:" msgstr "" -#: ../../deprecations/pending-removal-in-3.16.rst:52 -msgid "" -"Bitwise inversion on boolean types, ``~True`` or ``~False`` has been " -"deprecated since Python 3.12, as it produces surprising and unintuitive " -"results (``-2`` and ``-1``). Use ``not x`` instead for the logical negation " -"of a Boolean. In the rare case that you need the bitwise inversion of the " -"underlying integer, convert to ``int`` explicitly (``~int(x)``)." +msgid "Bitwise inversion on boolean types, ``~True`` or ``~False`` has been deprecated since Python 3.12, as it produces surprising and unintuitive results (``-2`` and ``-1``). Use ``not x`` instead for the logical negation of a Boolean. In the rare case that you need the bitwise inversion of the underlying integer, convert to ``int`` explicitly (``~int(x)``)." msgstr "" -#: ../../deprecations/pending-removal-in-3.16.rst:59 msgid ":mod:`functools`:" msgstr "" -#: ../../deprecations/pending-removal-in-3.16.rst:61 -msgid "" -"Calling the Python implementation of :func:`functools.reduce` with " -"*function* or *sequence* as keyword arguments has been deprecated since " -"Python 3.14." +msgid "Calling the Python implementation of :func:`functools.reduce` with *function* or *sequence* as keyword arguments has been deprecated since Python 3.14." msgstr "" -#: ../../deprecations/pending-removal-in-3.16.rst:64 msgid ":mod:`logging`:" msgstr "" -#: ../../deprecations/pending-removal-in-3.16.rst:66 -msgid "" -"Support for custom logging handlers with the *strm* argument is deprecated " -"and scheduled for removal in Python 3.16. Define handlers with the *stream* " -"argument instead. (Contributed by Mariusz Felisiak in :gh:`115032`.)" +msgid "Support for custom logging handlers with the *strm* argument is deprecated and scheduled for removal in Python 3.16. Define handlers with the *stream* argument instead. (Contributed by Mariusz Felisiak in :gh:`115032`.)" msgstr "" -#: ../../deprecations/pending-removal-in-3.16.rst:70 msgid ":mod:`mimetypes`:" msgstr "" -#: ../../deprecations/pending-removal-in-3.16.rst:72 -msgid "" -"Valid extensions start with a '.' or are empty " -"for :meth:`mimetypes.MimeTypes.add_type`. Undotted extensions are deprecated " -"and will raise a :exc:`ValueError` in Python 3.16. (Contributed by Hugo van " -"Kemenade in :gh:`75223`.)" +msgid "Valid extensions start with a '.' or are empty for :meth:`mimetypes.MimeTypes.add_type`. Undotted extensions are deprecated and will raise a :exc:`ValueError` in Python 3.16. (Contributed by Hugo van Kemenade in :gh:`75223`.)" msgstr "" -#: ../../deprecations/pending-removal-in-3.16.rst:78 msgid ":mod:`shutil`:" msgstr "" -#: ../../deprecations/pending-removal-in-3.16.rst:80 -msgid "" -"The :class:`!ExecError` exception has been deprecated since Python 3.14. It " -"has not been used by any function in :mod:`!shutil` since Python 3.4, and is " -"now an alias of :exc:`RuntimeError`." +msgid "The :class:`!ExecError` exception has been deprecated since Python 3.14. It has not been used by any function in :mod:`!shutil` since Python 3.4, and is now an alias of :exc:`RuntimeError`." msgstr "" -#: ../../deprecations/pending-removal-in-3.16.rst:85 msgid ":mod:`symtable`:" msgstr "" -#: ../../deprecations/pending-removal-in-3.16.rst:87 -msgid "" -"The :meth:`Class.get_methods ` method has been " -"deprecated since Python 3.14." +msgid "The :meth:`Class.get_methods ` method has been deprecated since Python 3.14." msgstr "" -#: ../../deprecations/pending-removal-in-3.16.rst:90 msgid ":mod:`sys`:" msgstr "" -#: ../../deprecations/pending-removal-in-3.16.rst:92 -msgid "" -"The :func:`~sys._enablelegacywindowsfsencoding` function has been deprecated " -"since Python 3.13. Use the :envvar:`PYTHONLEGACYWINDOWSFSENCODING` " -"environment variable instead." +msgid "The :func:`~sys._enablelegacywindowsfsencoding` function has been deprecated since Python 3.13. Use the :envvar:`PYTHONLEGACYWINDOWSFSENCODING` environment variable instead." msgstr "" -#: ../../deprecations/pending-removal-in-3.16.rst:96 msgid ":mod:`sysconfig`:" msgstr "" -#: ../../deprecations/pending-removal-in-3.16.rst:98 -msgid "" -"The :func:`!sysconfig.expand_makefile_vars` function has been deprecated " -"since Python 3.14. Use the ``vars`` argument of :func:`sysconfig.get_paths` " -"instead." +msgid "The :func:`!sysconfig.expand_makefile_vars` function has been deprecated since Python 3.14. Use the ``vars`` argument of :func:`sysconfig.get_paths` instead." msgstr "" -#: ../../deprecations/pending-removal-in-3.16.rst:102 msgid ":mod:`tarfile`:" msgstr "" -#: ../../deprecations/pending-removal-in-3.16.rst:104 -msgid "" -"The undocumented and unused :attr:`!TarFile.tarfile` attribute has been " -"deprecated since Python 3.13." +msgid "The undocumented and unused :attr:`!TarFile.tarfile` attribute has been deprecated since Python 3.13." msgstr "" diff --git a/deprecations/pending-removal-in-3.17.po b/deprecations/pending-removal-in-3.17.po index 0092deb9..41cfa5b0 100644 --- a/deprecations/pending-removal-in-3.17.po +++ b/deprecations/pending-removal-in-3.17.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2026-07-25 12:59+0330\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: none\n" @@ -19,64 +19,29 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../deprecations/pending-removal-in-3.17.rst:2 msgid "Pending removal in Python 3.17" msgstr "" -#: ../../deprecations/pending-removal-in-3.17.rst:4 msgid ":mod:`collections.abc`:" msgstr "" -#: ../../deprecations/pending-removal-in-3.17.rst:6 -msgid "" -":class:`collections.abc.ByteString` is scheduled for removal in Python 3.17." +msgid ":class:`collections.abc.ByteString` is scheduled for removal in Python 3.17." msgstr "" -#: ../../deprecations/pending-removal-in-3.17.rst:8 -#: ../../deprecations/pending-removal-in-3.17.rst:36 -msgid "" -"Use ``isinstance(obj, collections.abc.Buffer)`` to test if ``obj`` " -"implements the :ref:`buffer protocol ` at runtime. For use in " -"type annotations, either use :class:`~collections.abc.Buffer` or a union " -"that explicitly specifies the types your code supports (e.g., ``bytes | " -"bytearray | memoryview``)." +msgid "Use ``isinstance(obj, collections.abc.Buffer)`` to test if ``obj`` implements the :ref:`buffer protocol ` at runtime. For use in type annotations, either use :class:`~collections.abc.Buffer` or a union that explicitly specifies the types your code supports (e.g., ``bytes | bytearray | memoryview``)." msgstr "" -#: ../../deprecations/pending-removal-in-3.17.rst:14 -#: ../../deprecations/pending-removal-in-3.17.rst:42 -msgid "" -":class:`!ByteString` was originally intended to be an abstract class that " -"would serve as a supertype of both :class:`bytes` and :class:`bytearray`. " -"However, since the ABC never had any methods, knowing that an object was an " -"instance of :class:`!ByteString` never actually told you anything useful " -"about the object. Other common buffer types such as :class:`memoryview` were " -"also never understood as subtypes of :class:`!ByteString` (either at runtime " -"or by static type checkers)." +msgid ":class:`!ByteString` was originally intended to be an abstract class that would serve as a supertype of both :class:`bytes` and :class:`bytearray`. However, since the ABC never had any methods, knowing that an object was an instance of :class:`!ByteString` never actually told you anything useful about the object. Other common buffer types such as :class:`memoryview` were also never understood as subtypes of :class:`!ByteString` (either at runtime or by static type checkers)." msgstr "" -#: ../../deprecations/pending-removal-in-3.17.rst:22 -#: ../../deprecations/pending-removal-in-3.17.rst:50 -msgid "" -"See :pep:`PEP 688 <688#current-options>` for more details. (Contributed by " -"Shantanu Jain in :gh:`91896`.)" +msgid "See :pep:`PEP 688 <688#current-options>` for more details. (Contributed by Shantanu Jain in :gh:`91896`.)" msgstr "" -#: ../../deprecations/pending-removal-in-3.17.rst:26 msgid ":mod:`typing`:" msgstr "" -#: ../../deprecations/pending-removal-in-3.17.rst:28 -msgid "" -"Before Python 3.14, old-style unions were implemented using the private " -"class ``typing._UnionGenericAlias``. This class is no longer needed for the " -"implementation, but it has been retained for backward compatibility, with " -"removal scheduled for Python 3.17. Users should use documented introspection " -"helpers like :func:`typing.get_origin` and :func:`typing.get_args` instead " -"of relying on private implementation details." +msgid "Before Python 3.14, old-style unions were implemented using the private class ``typing._UnionGenericAlias``. This class is no longer needed for the implementation, but it has been retained for backward compatibility, with removal scheduled for Python 3.17. Users should use documented introspection helpers like :func:`typing.get_origin` and :func:`typing.get_args` instead of relying on private implementation details." msgstr "" -#: ../../deprecations/pending-removal-in-3.17.rst:33 -msgid "" -":class:`typing.ByteString`, deprecated since Python 3.9, is scheduled for " -"removal in Python 3.17." +msgid ":class:`typing.ByteString`, deprecated since Python 3.9, is scheduled for removal in Python 3.17." msgstr "" diff --git a/deprecations/pending-removal-in-3.18.po b/deprecations/pending-removal-in-3.18.po index c6da9d7f..b2f32bde 100644 --- a/deprecations/pending-removal-in-3.18.po +++ b/deprecations/pending-removal-in-3.18.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2026-07-25 12:59+0330\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: none\n" @@ -19,18 +19,11 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../deprecations/pending-removal-in-3.18.rst:2 msgid "Pending removal in Python 3.18" msgstr "" -#: ../../deprecations/pending-removal-in-3.18.rst:4 msgid ":mod:`decimal`:" msgstr "" -#: ../../deprecations/pending-removal-in-3.18.rst:6 -msgid "" -"The non-standard and undocumented :class:`~decimal.Decimal` format specifier " -"``'N'``, which is only supported in the :mod:`!decimal` module's C " -"implementation, has been deprecated since Python 3.13. (Contributed by " -"Serhiy Storchaka in :gh:`89902`.)" +msgid "The non-standard and undocumented :class:`~decimal.Decimal` format specifier ``'N'``, which is only supported in the :mod:`!decimal` module's C implementation, has been deprecated since Python 3.13. (Contributed by Serhiy Storchaka in :gh:`89902`.)" msgstr "" diff --git a/deprecations/pending-removal-in-3.19.po b/deprecations/pending-removal-in-3.19.po index a1e88d61..47a1313a 100644 --- a/deprecations/pending-removal-in-3.19.po +++ b/deprecations/pending-removal-in-3.19.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2026-07-25 12:59+0330\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: none\n" @@ -19,17 +19,11 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../deprecations/pending-removal-in-3.19.rst:2 msgid "Pending removal in Python 3.19" msgstr "" -#: ../../deprecations/pending-removal-in-3.19.rst:4 msgid ":mod:`ctypes`:" msgstr "" -#: ../../deprecations/pending-removal-in-3.19.rst:6 -msgid "" -"Implicitly switching to the MSVC-compatible struct layout by " -"setting :attr:`~ctypes.Structure._pack_` but " -"not :attr:`~ctypes.Structure._layout_` on non-Windows platforms." +msgid "Implicitly switching to the MSVC-compatible struct layout by setting :attr:`~ctypes.Structure._pack_` but not :attr:`~ctypes.Structure._layout_` on non-Windows platforms." msgstr "" diff --git a/deprecations/pending-removal-in-future.po b/deprecations/pending-removal-in-future.po index ad65b29f..c86589a0 100644 --- a/deprecations/pending-removal-in-future.po +++ b/deprecations/pending-removal-in-future.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2024-07-20 00:54+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,364 +21,212 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../deprecations/pending-removal-in-future.rst:2 msgid "Pending removal in future versions" msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:4 -msgid "" -"The following APIs will be removed in the future, although there is " -"currently no date scheduled for their removal." +msgid "The following APIs will be removed in the future, although there is currently no date scheduled for their removal." msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:7 msgid ":mod:`argparse`:" msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:9 -msgid "" -"Nesting argument groups and nesting mutually exclusive groups are deprecated." +msgid "Nesting argument groups and nesting mutually exclusive groups are deprecated." msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:11 -msgid "" -"Passing the undocumented keyword argument *prefix_chars* " -"to :meth:`~argparse.ArgumentParser.add_argument_group` is now deprecated." +msgid "Passing the undocumented keyword argument *prefix_chars* to :meth:`~argparse.ArgumentParser.add_argument_group` is now deprecated." msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:14 msgid "The :class:`argparse.FileType` type converter is deprecated." msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:16 msgid ":mod:`builtins`:" msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:18 -msgid "" -"Generators: ``throw(type, exc, tb)`` and ``athrow(type, exc, tb)`` signature " -"is deprecated: use ``throw(exc)`` and ``athrow(exc)`` instead, the single " -"argument signature." +msgid "Generators: ``throw(type, exc, tb)`` and ``athrow(type, exc, tb)`` signature is deprecated: use ``throw(exc)`` and ``athrow(exc)`` instead, the single argument signature." msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:21 -msgid "" -"Currently Python accepts numeric literals immediately followed by keywords, " -"for example ``0in x``, ``1or x``, ``0if 1else 2``. It allows confusing and " -"ambiguous expressions like ``[0x1for x in y]`` (which can be interpreted as " -"``[0x1 for x in y]`` or ``[0x1f or x in y]``). A syntax warning is raised " -"if the numeric literal is immediately followed by one of " -"keywords :keyword:`and`, :keyword:`else`, :keyword:`for`, :keyword:`if`, :keyword:`in`, :keyword:`is` " -"and :keyword:`or`. In a future release it will be changed to a syntax " -"error. (:gh:`87999`)" +msgid "Currently Python accepts numeric literals immediately followed by keywords, for example ``0in x``, ``1or x``, ``0if 1else 2``. It allows confusing and ambiguous expressions like ``[0x1for x in y]`` (which can be interpreted as ``[0x1 for x in y]`` or ``[0x1f or x in y]``). A syntax warning is raised if the numeric literal is immediately followed by one of keywords :keyword:`and`, :keyword:`else`, :keyword:`for`, :keyword:`if`, :keyword:`in`, :keyword:`is` and :keyword:`or`. In a future release it will be changed to a syntax error. (:gh:`87999`)" msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:29 -msgid "" -"Support for ``__index__()`` and ``__int__()`` method returning non-int type: " -"these methods will be required to return an instance of a strict subclass " -"of :class:`int`." +msgid "Support for ``__index__()`` and ``__int__()`` method returning non-int type: these methods will be required to return an instance of a strict subclass of :class:`int`." msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:32 -msgid "" -"Support for ``__float__()`` method returning a strict subclass " -"of :class:`float`: these methods will be required to return an instance " -"of :class:`float`." +msgid "Support for ``__float__()`` method returning a strict subclass of :class:`float`: these methods will be required to return an instance of :class:`float`." msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:35 -msgid "" -"Support for ``__complex__()`` method returning a strict subclass " -"of :class:`complex`: these methods will be required to return an instance " -"of :class:`complex`." +msgid "Support for ``__complex__()`` method returning a strict subclass of :class:`complex`: these methods will be required to return an instance of :class:`complex`." msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:38 -msgid "" -"Passing a complex number as the *real* or *imag* argument in " -"the :func:`complex` constructor is now deprecated; it should only be passed " -"as a single positional argument. (Contributed by Serhiy Storchaka " -"in :gh:`109218`.)" +msgid "Passing a complex number as the *real* or *imag* argument in the :func:`complex` constructor is now deprecated; it should only be passed as a single positional argument. (Contributed by Serhiy Storchaka in :gh:`109218`.)" msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:43 -msgid "" -":mod:`calendar`: ``calendar.January`` and ``calendar.February`` constants " -"are deprecated and replaced by :data:`calendar.JANUARY` " -"and :data:`calendar.FEBRUARY`. (Contributed by Prince Roshan " -"in :gh:`103636`.)" +msgid ":mod:`calendar`: ``calendar.January`` and ``calendar.February`` constants are deprecated and replaced by :data:`calendar.JANUARY` and :data:`calendar.FEBRUARY`. (Contributed by Prince Roshan in :gh:`103636`.)" msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:48 -msgid "" -":mod:`codecs`: use :func:`open` instead of :func:`codecs.open`. " -"(:gh:`133038`)" +msgid ":mod:`codecs`: use :func:`open` instead of :func:`codecs.open`. (:gh:`133038`)" msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:50 -msgid "" -":attr:`codeobject.co_lnotab`: use the :meth:`codeobject.co_lines` method " -"instead." +msgid ":attr:`codeobject.co_lnotab`: use the :meth:`codeobject.co_lines` method instead." msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:53 msgid ":mod:`datetime`:" msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:55 -msgid "" -":meth:`~datetime.datetime.utcnow`: use " -"``datetime.datetime.now(tz=datetime.UTC)``." +msgid ":meth:`~datetime.datetime.utcnow`: use ``datetime.datetime.now(tz=datetime.UTC)``." msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:57 -msgid "" -":meth:`~datetime.datetime.utcfromtimestamp`: use " -"``datetime.datetime.fromtimestamp(timestamp, tz=datetime.UTC)``." +msgid ":meth:`~datetime.datetime.utcfromtimestamp`: use ``datetime.datetime.fromtimestamp(timestamp, tz=datetime.UTC)``." msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:60 msgid ":mod:`gettext`: Plural value must be an integer." msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:62 msgid ":mod:`importlib`:" msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:64 -msgid "" -":func:`~importlib.util.cache_from_source` *debug_override* parameter is " -"deprecated: use the *optimization* parameter instead." +msgid ":func:`~importlib.util.cache_from_source` *debug_override* parameter is deprecated: use the *optimization* parameter instead." msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:67 msgid ":mod:`importlib.metadata`:" msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:69 msgid "``EntryPoints`` tuple interface." msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:70 msgid "Implicit ``None`` on return values." msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:72 -msgid "" -":mod:`logging`: the ``warn()`` method has been deprecated since Python 3.3, " -"use :meth:`~logging.warning` instead." +msgid ":mod:`logging`: the ``warn()`` method has been deprecated since Python 3.3, use :meth:`~logging.warning` instead." msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:75 -msgid "" -":mod:`mailbox`: Use of StringIO input and text mode is deprecated, use " -"BytesIO and binary mode instead." +msgid ":mod:`mailbox`: Use of StringIO input and text mode is deprecated, use BytesIO and binary mode instead." msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:78 -msgid "" -":mod:`os`: Calling :func:`os.register_at_fork` in multi-threaded process." +msgid ":mod:`os`: Calling :func:`os.register_at_fork` in multi-threaded process." msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:80 -msgid "" -":class:`!pydoc.ErrorDuringImport`: A tuple value for *exc_info* parameter is " -"deprecated, use an exception instance." +msgid ":class:`!pydoc.ErrorDuringImport`: A tuple value for *exc_info* parameter is deprecated, use an exception instance." msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:83 -msgid "" -":mod:`re`: More strict rules are now applied for numerical group references " -"and group names in regular expressions. Only sequence of ASCII digits is " -"now accepted as a numerical reference. The group name in bytes patterns and " -"replacement strings can now only contain ASCII letters and digits and " -"underscore. (Contributed by Serhiy Storchaka in :gh:`91760`.)" +msgid ":mod:`re`: More strict rules are now applied for numerical group references and group names in regular expressions. Only sequence of ASCII digits is now accepted as a numerical reference. The group name in bytes patterns and replacement strings can now only contain ASCII letters and digits and underscore. (Contributed by Serhiy Storchaka in :gh:`91760`.)" msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:90 -msgid "" -":mod:`!sre_compile`, :mod:`!sre_constants` and :mod:`!sre_parse` modules." +msgid ":mod:`!sre_compile`, :mod:`!sre_constants` and :mod:`!sre_parse` modules." msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:92 -msgid "" -":mod:`shutil`: :func:`~shutil.rmtree`'s *onerror* parameter is deprecated in " -"Python 3.12; use the *onexc* parameter instead." +msgid ":mod:`shutil`: :func:`~shutil.rmtree`'s *onerror* parameter is deprecated in Python 3.12; use the *onexc* parameter instead." msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:95 msgid ":mod:`ssl` options and protocols:" msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:97 msgid ":class:`ssl.SSLContext` without protocol argument is deprecated." msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:98 -msgid "" -":class:`ssl.SSLContext`: :meth:`~ssl.SSLContext.set_npn_protocols` " -"and :meth:`!selected_npn_protocol` are deprecated: use ALPN instead." +msgid ":class:`ssl.SSLContext`: :meth:`~ssl.SSLContext.set_npn_protocols` and :meth:`!selected_npn_protocol` are deprecated: use ALPN instead." msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:101 msgid "``ssl.OP_NO_SSL*`` options" msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:102 msgid "``ssl.OP_NO_TLS*`` options" msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:103 msgid "``ssl.PROTOCOL_SSLv3``" msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:104 msgid "``ssl.PROTOCOL_TLS``" msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:105 msgid "``ssl.PROTOCOL_TLSv1``" msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:106 msgid "``ssl.PROTOCOL_TLSv1_1``" msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:107 msgid "``ssl.PROTOCOL_TLSv1_2``" msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:108 msgid "``ssl.TLSVersion.SSLv3``" msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:109 msgid "``ssl.TLSVersion.TLSv1``" msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:110 msgid "``ssl.TLSVersion.TLSv1_1``" msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:112 msgid ":mod:`threading` methods:" msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:114 -msgid "" -":meth:`!threading.Condition.notifyAll`: " -"use :meth:`~threading.Condition.notify_all`." +msgid ":meth:`!threading.Condition.notifyAll`: use :meth:`~threading.Condition.notify_all`." msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:115 msgid ":meth:`!threading.Event.isSet`: use :meth:`~threading.Event.is_set`." msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:116 -msgid "" -":meth:`!threading.Thread.isDaemon`, :meth:`threading.Thread.setDaemon`: " -"use :attr:`threading.Thread.daemon` attribute." +msgid ":meth:`!threading.Thread.isDaemon`, :meth:`threading.Thread.setDaemon`: use :attr:`threading.Thread.daemon` attribute." msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:118 -msgid "" -":meth:`!threading.Thread.getName`, :meth:`threading.Thread.setName`: " -"use :attr:`threading.Thread.name` attribute." +msgid ":meth:`!threading.Thread.getName`, :meth:`threading.Thread.setName`: use :attr:`threading.Thread.name` attribute." msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:120 msgid ":meth:`!threading.currentThread`: use :meth:`threading.current_thread`." msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:121 msgid ":meth:`!threading.activeCount`: use :meth:`threading.active_count`." msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:123 msgid ":class:`typing.Text` (:gh:`92332`)." msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:125 -msgid "" -"The internal class ``typing._UnionGenericAlias`` is no longer used to " -"implement :class:`typing.Union`. To preserve compatibility with users using " -"this private class, a compatibility shim will be provided until at least " -"Python 3.17. (Contributed by Jelle Zijlstra in :gh:`105499`.)" +msgid "The internal class ``typing._UnionGenericAlias`` is no longer used to implement :class:`typing.Union`. To preserve compatibility with users using this private class, a compatibility shim will be provided until at least Python 3.17. (Contributed by Jelle Zijlstra in :gh:`105499`.)" msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:130 -msgid "" -":class:`unittest.IsolatedAsyncioTestCase`: it is deprecated to return a " -"value that is not ``None`` from a test case." +msgid ":class:`unittest.IsolatedAsyncioTestCase`: it is deprecated to return a value that is not ``None`` from a test case." msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:133 -msgid "" -":mod:`urllib.parse` deprecated functions: :func:`~urllib.parse.urlparse` " -"instead" +msgid ":mod:`urllib.parse` deprecated functions: :func:`~urllib.parse.urlparse` instead" msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:135 msgid "``splitattr()``" msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:136 msgid "``splithost()``" msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:137 msgid "``splitnport()``" msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:138 msgid "``splitpasswd()``" msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:139 msgid "``splitport()``" msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:140 msgid "``splitquery()``" msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:141 msgid "``splittag()``" msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:142 msgid "``splittype()``" msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:143 msgid "``splituser()``" msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:144 msgid "``splitvalue()``" msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:145 msgid "``to_bytes()``" msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:147 -msgid "" -":mod:`wsgiref`: ``SimpleHandler.stdout.write()`` should not do partial " -"writes." +msgid ":mod:`wsgiref`: ``SimpleHandler.stdout.write()`` should not do partial writes." msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:150 -msgid "" -":mod:`xml.etree.ElementTree`: Testing the truth value of " -"an :class:`~xml.etree.ElementTree.Element` is deprecated. In a future " -"release it will always return ``True``. Prefer explicit ``len(elem)`` or " -"``elem is not None`` tests instead." +msgid ":mod:`xml.etree.ElementTree`: Testing the truth value of an :class:`~xml.etree.ElementTree.Element` is deprecated. In a future release it will always return ``True``. Prefer explicit ``len(elem)`` or ``elem is not None`` tests instead." msgstr "" -#: ../../deprecations/pending-removal-in-future.rst:155 -msgid "" -":func:`sys._clear_type_cache` is deprecated: " -"use :func:`sys._clear_internal_caches` instead." +msgid ":func:`sys._clear_type_cache` is deprecated: use :func:`sys._clear_internal_caches` instead." msgstr "" diff --git a/distributing/index.po b/distributing/index.po index 69d3ea58..96d2c160 100644 --- a/distributing/index.po +++ b/distributing/index.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:50+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,13 +23,8 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../distributing/index.rst:10 msgid "Distributing Python Modules" msgstr "" -#: ../../distributing/index.rst:14 -msgid "" -"Information and guidance on distributing Python modules and packages has " -"been moved to the `Python Packaging User Guide`_, and the tutorial on " -"`packaging Python projects`_." +msgid "Information and guidance on distributing Python modules and packages has been moved to the `Python Packaging User Guide`_, and the tutorial on `packaging Python projects`_." msgstr "" diff --git a/extending/building.po b/extending/building.po index 2a66928d..76cd9c2e 100644 --- a/extending/building.po +++ b/extending/building.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:51+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,34 +21,20 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../extending/building.rst:7 msgid "Building C and C++ Extensions" msgstr "" -#: ../../extending/building.rst:9 -msgid "" -"A C extension for CPython is a shared library (for example, a ``.so`` file " -"on Linux, ``.pyd`` on Windows), which exports an *initialization function*." +msgid "A C extension for CPython is a shared library (for example, a ``.so`` file on Linux, ``.pyd`` on Windows), which exports an *initialization function*." msgstr "" -#: ../../extending/building.rst:12 msgid "See :ref:`extension-modules` for details." msgstr "" -#: ../../extending/building.rst:21 msgid "Building C and C++ Extensions with setuptools" msgstr "" -#: ../../extending/building.rst:24 -msgid "" -"Building, packaging and distributing extension modules is best done with " -"third-party tools, and is out of scope of this document. One suitable tool " -"is Setuptools, whose documentation can be found at https://" -"setuptools.pypa.io/en/latest/setuptools.html." +msgid "Building, packaging and distributing extension modules is best done with third-party tools, and is out of scope of this document. One suitable tool is Setuptools, whose documentation can be found at https://setuptools.pypa.io/en/latest/setuptools.html." msgstr "" -#: ../../extending/building.rst:29 -msgid "" -"The :mod:`distutils` module, which was included in the standard library " -"until Python 3.12, is now maintained as part of Setuptools." +msgid "The :mod:`distutils` module, which was included in the standard library until Python 3.12, is now maintained as part of Setuptools." msgstr "" diff --git a/extending/embedding.po b/extending/embedding.po index fb878b11..7b15a4b3 100644 --- a/extending/embedding.po +++ b/extending/embedding.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:51+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,75 +24,33 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../extending/embedding.rst:8 msgid "Embedding Python in Another Application" msgstr "" -#: ../../extending/embedding.rst:10 -msgid "" -"The previous chapters discussed how to extend Python, that is, how to extend " -"the functionality of Python by attaching a library of C functions to it. It " -"is also possible to do it the other way around: enrich your C/C++ " -"application by embedding Python in it. Embedding provides your application " -"with the ability to implement some of the functionality of your application " -"in Python rather than C or C++. This can be used for many purposes; one " -"example would be to allow users to tailor the application to their needs by " -"writing some scripts in Python. You can also use it yourself if some of the " -"functionality can be written in Python more easily." -msgstr "" - -#: ../../extending/embedding.rst:20 -msgid "" -"Embedding Python is similar to extending it, but not quite. The difference " -"is that when you extend Python, the main program of the application is still " -"the Python interpreter, while if you embed Python, the main program may have " -"nothing to do with Python --- instead, some parts of the application " -"occasionally call the Python interpreter to run some Python code." +msgid "The previous chapters discussed how to extend Python, that is, how to extend the functionality of Python by attaching a library of C functions to it. It is also possible to do it the other way around: enrich your C/C++ application by embedding Python in it. Embedding provides your application with the ability to implement some of the functionality of your application in Python rather than C or C++. This can be used for many purposes; one example would be to allow users to tailor the application to their needs by writing some scripts in Python. You can also use it yourself if some of the functionality can be written in Python more easily." msgstr "" -#: ../../extending/embedding.rst:26 -msgid "" -"So if you are embedding Python, you are providing your own main program. " -"One of the things this main program has to do is initialize the Python " -"interpreter. At the very least, you have to call the " -"function :c:func:`Py_Initialize`. There are optional calls to pass command " -"line arguments to Python. Then later you can call the interpreter from any " -"part of the application." +msgid "Embedding Python is similar to extending it, but not quite. The difference is that when you extend Python, the main program of the application is still the Python interpreter, while if you embed Python, the main program may have nothing to do with Python --- instead, some parts of the application occasionally call the Python interpreter to run some Python code." msgstr "" -#: ../../extending/embedding.rst:32 -msgid "" -"There are several different ways to call the interpreter: you can pass a " -"string containing Python statements to :c:func:`PyRun_SimpleString`, or you " -"can pass a stdio file pointer and a file name (for identification in error " -"messages only) to :c:func:`PyRun_SimpleFile`. You can also call the lower-" -"level operations described in the previous chapters to construct and use " -"Python objects." +msgid "So if you are embedding Python, you are providing your own main program. One of the things this main program has to do is initialize the Python interpreter. At the very least, you have to call the function :c:func:`Py_Initialize`. There are optional calls to pass command line arguments to Python. Then later you can call the interpreter from any part of the application." +msgstr "" + +msgid "There are several different ways to call the interpreter: you can pass a string containing Python statements to :c:func:`PyRun_SimpleString`, or you can pass a stdio file pointer and a file name (for identification in error messages only) to :c:func:`PyRun_SimpleFile`. You can also call the lower-level operations described in the previous chapters to construct and use Python objects." msgstr "" -#: ../../extending/embedding.rst:41 msgid ":ref:`c-api-index`" msgstr "" -#: ../../extending/embedding.rst:42 -msgid "" -"The details of Python's C interface are given in this manual. A great deal " -"of necessary information can be found here." +msgid "The details of Python's C interface are given in this manual. A great deal of necessary information can be found here." msgstr "" -#: ../../extending/embedding.rst:49 msgid "Very High Level Embedding" msgstr "" -#: ../../extending/embedding.rst:51 -msgid "" -"The simplest form of embedding Python is the use of the very high level " -"interface. This interface is intended to execute a Python script without " -"needing to interact with the application directly. This can for example be " -"used to perform some operation on a file. ::" +msgid "The simplest form of embedding Python is the use of the very high level interface. This interface is intended to execute a Python script without needing to interact with the application directly. This can for example be used to perform some operation on a file. ::" msgstr "" -#: ../../extending/embedding.rst:56 msgid "" "#define PY_SSIZE_T_CLEAN\n" "#include \n" @@ -105,8 +63,7 @@ msgid "" " PyConfig_InitPythonConfig(&config);\n" "\n" " /* optional but recommended */\n" -" status = PyConfig_SetBytesString(&config, &config.program_name, " -"argv[0]);\n" +" status = PyConfig_SetBytesString(&config, &config.program_name, argv[0]);\n" " if (PyStatus_Exception(status)) {\n" " goto exception;\n" " }\n" @@ -130,113 +87,57 @@ msgid "" "}" msgstr "" -#: ../../extending/embedding.rst:92 -msgid "" -"``#define PY_SSIZE_T_CLEAN`` was used to indicate that ``Py_ssize_t`` should " -"be used in some APIs instead of ``int``. It is not necessary since Python " -"3.13, but we keep it here for backward compatibility. See :ref:`arg-parsing-" -"string-and-buffers` for a description of this macro." +msgid "``#define PY_SSIZE_T_CLEAN`` was used to indicate that ``Py_ssize_t`` should be used in some APIs instead of ``int``. It is not necessary since Python 3.13, but we keep it here for backward compatibility. See :ref:`arg-parsing-string-and-buffers` for a description of this macro." +msgstr "" + +msgid "Setting :c:member:`PyConfig.program_name` should be called before :c:func:`Py_InitializeFromConfig` to inform the interpreter about paths to Python run-time libraries. Next, the Python interpreter is initialized with :c:func:`Py_Initialize`, followed by the execution of a hard-coded Python script that prints the date and time. Afterwards, the :c:func:`Py_FinalizeEx` call shuts the interpreter down, followed by the end of the program. In a real program, you may want to get the Python script from another source, perhaps a text-editor routine, a file, or a database. Getting the Python code from a file can better be done by using the :c:func:`PyRun_SimpleFile` function, which saves you the trouble of allocating memory space and loading the file contents." msgstr "" -#: ../../extending/embedding.rst:97 -msgid "" -"Setting :c:member:`PyConfig.program_name` should be called " -"before :c:func:`Py_InitializeFromConfig` to inform the interpreter about " -"paths to Python run-time libraries. Next, the Python interpreter is " -"initialized with :c:func:`Py_Initialize`, followed by the execution of a " -"hard-coded Python script that prints the date and time. Afterwards, " -"the :c:func:`Py_FinalizeEx` call shuts the interpreter down, followed by the " -"end of the program. In a real program, you may want to get the Python " -"script from another source, perhaps a text-editor routine, a file, or a " -"database. Getting the Python code from a file can better be done by using " -"the :c:func:`PyRun_SimpleFile` function, which saves you the trouble of " -"allocating memory space and loading the file contents." -msgstr "" - -#: ../../extending/embedding.rst:112 msgid "Beyond Very High Level Embedding: An overview" msgstr "" -#: ../../extending/embedding.rst:114 -msgid "" -"The high level interface gives you the ability to execute arbitrary pieces " -"of Python code from your application, but exchanging data values is quite " -"cumbersome to say the least. If you want that, you should use lower level " -"calls. At the cost of having to write more C code, you can achieve almost " -"anything." +msgid "The high level interface gives you the ability to execute arbitrary pieces of Python code from your application, but exchanging data values is quite cumbersome to say the least. If you want that, you should use lower level calls. At the cost of having to write more C code, you can achieve almost anything." msgstr "" -#: ../../extending/embedding.rst:119 -msgid "" -"It should be noted that extending Python and embedding Python is quite the " -"same activity, despite the different intent. Most topics discussed in the " -"previous chapters are still valid. To show this, consider what the extension " -"code from Python to C really does:" +msgid "It should be noted that extending Python and embedding Python is quite the same activity, despite the different intent. Most topics discussed in the previous chapters are still valid. To show this, consider what the extension code from Python to C really does:" msgstr "" -#: ../../extending/embedding.rst:124 msgid "Convert data values from Python to C," msgstr "" -#: ../../extending/embedding.rst:126 msgid "Perform a function call to a C routine using the converted values, and" msgstr "" -#: ../../extending/embedding.rst:128 msgid "Convert the data values from the call from C to Python." msgstr "" -#: ../../extending/embedding.rst:130 msgid "When embedding Python, the interface code does:" msgstr "" -#: ../../extending/embedding.rst:132 msgid "Convert data values from C to Python," msgstr "" -#: ../../extending/embedding.rst:134 -msgid "" -"Perform a function call to a Python interface routine using the converted " -"values, and" +msgid "Perform a function call to a Python interface routine using the converted values, and" msgstr "" -#: ../../extending/embedding.rst:137 msgid "Convert the data values from the call from Python to C." msgstr "" -#: ../../extending/embedding.rst:139 -msgid "" -"As you can see, the data conversion steps are simply swapped to accommodate " -"the different direction of the cross-language transfer. The only difference " -"is the routine that you call between both data conversions. When extending, " -"you call a C routine, when embedding, you call a Python routine." +msgid "As you can see, the data conversion steps are simply swapped to accommodate the different direction of the cross-language transfer. The only difference is the routine that you call between both data conversions. When extending, you call a C routine, when embedding, you call a Python routine." msgstr "" -#: ../../extending/embedding.rst:144 -msgid "" -"This chapter will not discuss how to convert data from Python to C and vice " -"versa. Also, proper use of references and dealing with errors is assumed to " -"be understood. Since these aspects do not differ from extending the " -"interpreter, you can refer to earlier chapters for the required information." +msgid "This chapter will not discuss how to convert data from Python to C and vice versa. Also, proper use of references and dealing with errors is assumed to be understood. Since these aspects do not differ from extending the interpreter, you can refer to earlier chapters for the required information." msgstr "" -#: ../../extending/embedding.rst:153 msgid "Pure Embedding" msgstr "" -#: ../../extending/embedding.rst:155 -msgid "" -"The first program aims to execute a function in a Python script. Like in the " -"section about the very high level interface, the Python interpreter does not " -"directly interact with the application (but that will change in the next " -"section)." +msgid "The first program aims to execute a function in a Python script. Like in the section about the very high level interface, the Python interpreter does not directly interact with the application (but that will change in the next section)." msgstr "" -#: ../../extending/embedding.rst:160 msgid "The code to run a function defined in a Python script is:" msgstr "" -#: ../../extending/embedding.rst:162 msgid "" "#define PY_SSIZE_T_CLEAN\n" "#include \n" @@ -294,8 +195,7 @@ msgid "" " else {\n" " if (PyErr_Occurred())\n" " PyErr_Print();\n" -" fprintf(stderr, \"Cannot find function \\\"%s\\\"\\n\", " -"argv[2]);\n" +" fprintf(stderr, \"Cannot find function \\\"%s\\\"\\n\", argv[2]);\n" " }\n" " Py_XDECREF(pFunc);\n" " Py_DECREF(pModule);\n" @@ -312,16 +212,9 @@ msgid "" "}\n" msgstr "" -#: ../../extending/embedding.rst:165 -msgid "" -"This code loads a Python script using ``argv[1]``, and calls the function " -"named in ``argv[2]``. Its integer arguments are the other values of the " -"``argv`` array. If you :ref:`compile and link ` this program " -"(let's call the finished executable :program:`call`), and use it to execute " -"a Python script, such as:" +msgid "This code loads a Python script using ``argv[1]``, and calls the function named in ``argv[2]``. Its integer arguments are the other values of the ``argv`` array. If you :ref:`compile and link ` this program (let's call the finished executable :program:`call`), and use it to execute a Python script, such as:" msgstr "" -#: ../../extending/embedding.rst:171 msgid "" "def multiply(a,b):\n" " print(\"Will compute\", a, \"times\", b)\n" @@ -331,25 +224,18 @@ msgid "" " return c" msgstr "" -#: ../../extending/embedding.rst:180 msgid "then the result should be:" msgstr "" -#: ../../extending/embedding.rst:182 msgid "" "$ call multiply multiply 3 2\n" "Will compute 3 times 2\n" "Result of call: 6" msgstr "" -#: ../../extending/embedding.rst:188 -msgid "" -"Although the program is quite large for its functionality, most of the code " -"is for data conversion between Python and C, and for error reporting. The " -"interesting part with respect to embedding Python starts with ::" +msgid "Although the program is quite large for its functionality, most of the code is for data conversion between Python and C, and for error reporting. The interesting part with respect to embedding Python starts with ::" msgstr "" -#: ../../extending/embedding.rst:192 msgid "" "Py_Initialize();\n" "pName = PyUnicode_DecodeFSDefault(argv[1]);\n" @@ -357,15 +243,9 @@ msgid "" "pModule = PyImport_Import(pName);" msgstr "" -#: ../../extending/embedding.rst:197 -msgid "" -"After initializing the interpreter, the script is loaded " -"using :c:func:`PyImport_Import`. This routine needs a Python string as its " -"argument, which is constructed using the :c:func:`PyUnicode_DecodeFSDefault` " -"data conversion routine. ::" +msgid "After initializing the interpreter, the script is loaded using :c:func:`PyImport_Import`. This routine needs a Python string as its argument, which is constructed using the :c:func:`PyUnicode_DecodeFSDefault` data conversion routine. ::" msgstr "" -#: ../../extending/embedding.rst:202 msgid "" "pFunc = PyObject_GetAttrString(pModule, argv[2]);\n" "/* pFunc is a new reference */\n" @@ -376,43 +256,21 @@ msgid "" "Py_XDECREF(pFunc);" msgstr "" -#: ../../extending/embedding.rst:210 -msgid "" -"Once the script is loaded, the name we're looking for is retrieved " -"using :c:func:`PyObject_GetAttrString`. If the name exists, and the object " -"returned is callable, you can safely assume that it is a function. The " -"program then proceeds by constructing a tuple of arguments as normal. The " -"call to the Python function is then made with::" +msgid "Once the script is loaded, the name we're looking for is retrieved using :c:func:`PyObject_GetAttrString`. If the name exists, and the object returned is callable, you can safely assume that it is a function. The program then proceeds by constructing a tuple of arguments as normal. The call to the Python function is then made with::" msgstr "" -#: ../../extending/embedding.rst:216 msgid "pValue = PyObject_CallObject(pFunc, pArgs);" msgstr "" -#: ../../extending/embedding.rst:218 -msgid "" -"Upon return of the function, ``pValue`` is either ``NULL`` or it contains a " -"reference to the return value of the function. Be sure to release the " -"reference after examining the value." +msgid "Upon return of the function, ``pValue`` is either ``NULL`` or it contains a reference to the return value of the function. Be sure to release the reference after examining the value." msgstr "" -#: ../../extending/embedding.rst:226 msgid "Extending Embedded Python" msgstr "" -#: ../../extending/embedding.rst:228 -msgid "" -"Until now, the embedded Python interpreter had no access to functionality " -"from the application itself. The Python API allows this by extending the " -"embedded interpreter. That is, the embedded interpreter gets extended with " -"routines provided by the application. While it sounds complex, it is not so " -"bad. Simply forget for a while that the application starts the Python " -"interpreter. Instead, consider the application to be a set of subroutines, " -"and write some glue code that gives Python access to those routines, just " -"like you would write a normal Python extension. For example::" +msgid "Until now, the embedded Python interpreter had no access to functionality from the application itself. The Python API allows this by extending the embedded interpreter. That is, the embedded interpreter gets extended with routines provided by the application. While it sounds complex, it is not so bad. Simply forget for a while that the application starts the Python interpreter. Instead, consider the application to be a set of subroutines, and write some glue code that gives Python access to those routines, just like you would write a normal Python extension. For example::" msgstr "" -#: ../../extending/embedding.rst:237 msgid "" "static int numargs=0;\n" "\n" @@ -445,118 +303,62 @@ msgid "" "}" msgstr "" -#: ../../extending/embedding.rst:267 -msgid "" -"Insert the above code just above the :c:func:`main` function. Also, insert " -"the following two statements before the call to :c:func:`Py_Initialize`::" +msgid "Insert the above code just above the :c:func:`main` function. Also, insert the following two statements before the call to :c:func:`Py_Initialize`::" msgstr "" -#: ../../extending/embedding.rst:270 msgid "" "numargs = argc;\n" "PyImport_AppendInittab(\"emb\", &PyInit_emb);" msgstr "" -#: ../../extending/embedding.rst:273 -msgid "" -"These two lines initialize the ``numargs`` variable, and make the :func:`!" -"emb.numargs` function accessible to the embedded Python interpreter. With " -"these extensions, the Python script can do things like" +msgid "These two lines initialize the ``numargs`` variable, and make the :func:`!emb.numargs` function accessible to the embedded Python interpreter. With these extensions, the Python script can do things like" msgstr "" -#: ../../extending/embedding.rst:277 msgid "" "import emb\n" "print(\"Number of arguments\", emb.numargs())" msgstr "" -#: ../../extending/embedding.rst:282 -msgid "" -"In a real application, the methods will expose an API of the application to " -"Python." +msgid "In a real application, the methods will expose an API of the application to Python." msgstr "" -#: ../../extending/embedding.rst:292 msgid "Embedding Python in C++" msgstr "" -#: ../../extending/embedding.rst:294 -msgid "" -"It is also possible to embed Python in a C++ program; precisely how this is " -"done will depend on the details of the C++ system used; in general you will " -"need to write the main program in C++, and use the C++ compiler to compile " -"and link your program. There is no need to recompile Python itself using C+" -"+." +msgid "It is also possible to embed Python in a C++ program; precisely how this is done will depend on the details of the C++ system used; in general you will need to write the main program in C++, and use the C++ compiler to compile and link your program. There is no need to recompile Python itself using C++." msgstr "" -#: ../../extending/embedding.rst:303 msgid "Compiling and Linking under Unix-like systems" msgstr "" -#: ../../extending/embedding.rst:305 -msgid "" -"It is not necessarily trivial to find the right flags to pass to your " -"compiler (and linker) in order to embed the Python interpreter into your " -"application, particularly because Python needs to load library modules " -"implemented as C dynamic extensions (:file:`.so` files) linked against it." +msgid "It is not necessarily trivial to find the right flags to pass to your compiler (and linker) in order to embed the Python interpreter into your application, particularly because Python needs to load library modules implemented as C dynamic extensions (:file:`.so` files) linked against it." msgstr "" -#: ../../extending/embedding.rst:311 -msgid "" -"To find out the required compiler and linker flags, you can execute " -"the :file:`python{X.Y}-config` script which is generated as part of the " -"installation process (a :file:`python3-config` script may also be " -"available). This script has several options, of which the following will be " -"directly useful to you:" +msgid "To find out the required compiler and linker flags, you can execute the :file:`python{X.Y}-config` script which is generated as part of the installation process (a :file:`python3-config` script may also be available). This script has several options, of which the following will be directly useful to you:" msgstr "" -#: ../../extending/embedding.rst:317 -msgid "" -"``pythonX.Y-config --cflags`` will give you the recommended flags when " -"compiling:" +msgid "``pythonX.Y-config --cflags`` will give you the recommended flags when compiling:" msgstr "" -#: ../../extending/embedding.rst:320 msgid "" "$ /opt/bin/python3.11-config --cflags\n" -"-I/opt/include/python3.11 -I/opt/include/python3.11 -Wsign-compare -DNDEBUG " -"-g -fwrapv -O3 -Wall" +"-I/opt/include/python3.11 -I/opt/include/python3.11 -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall" msgstr "" -#: ../../extending/embedding.rst:325 -msgid "" -"``pythonX.Y-config --ldflags --embed`` will give you the recommended flags " -"when linking:" +msgid "``pythonX.Y-config --ldflags --embed`` will give you the recommended flags when linking:" msgstr "" -#: ../../extending/embedding.rst:328 msgid "" "$ /opt/bin/python3.11-config --ldflags --embed\n" -"-L/opt/lib/python3.11/config-3.11-x86_64-linux-gnu -L/opt/lib -lpython3.11 " -"-lpthread -ldl -lutil -lm" +"-L/opt/lib/python3.11/config-3.11-x86_64-linux-gnu -L/opt/lib -lpython3.11 -lpthread -ldl -lutil -lm" msgstr "" -#: ../../extending/embedding.rst:334 -msgid "" -"To avoid confusion between several Python installations (and especially " -"between the system Python and your own compiled Python), it is recommended " -"that you use the absolute path to :file:`python{X.Y}-config`, as in the " -"above example." +msgid "To avoid confusion between several Python installations (and especially between the system Python and your own compiled Python), it is recommended that you use the absolute path to :file:`python{X.Y}-config`, as in the above example." msgstr "" -#: ../../extending/embedding.rst:339 -msgid "" -"If this procedure doesn't work for you (it is not guaranteed to work for all " -"Unix-like platforms; however, we welcome :ref:`bug reports `) you will have to read your system's documentation about dynamic " -"linking and/or examine Python's :file:`Makefile` " -"(use :func:`sysconfig.get_makefile_filename` to find its location) and " -"compilation options. In this case, the :mod:`sysconfig` module is a useful " -"tool to programmatically extract the configuration values that you will want " -"to combine together. For example:" +msgid "If this procedure doesn't work for you (it is not guaranteed to work for all Unix-like platforms; however, we welcome :ref:`bug reports `) you will have to read your system's documentation about dynamic linking and/or examine Python's :file:`Makefile` (use :func:`sysconfig.get_makefile_filename` to find its location) and compilation options. In this case, the :mod:`sysconfig` module is a useful tool to programmatically extract the configuration values that you will want to combine together. For example:" msgstr "" -#: ../../extending/embedding.rst:348 msgid "" ">>> import sysconfig\n" ">>> sysconfig.get_config_var('LIBS')\n" diff --git a/extending/extending.po b/extending/extending.po index e2b81531..51478f7f 100644 --- a/extending/extending.po +++ b/extending/extending.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:51+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,193 +23,109 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../extending/extending.rst:8 msgid "Extending Python with C or C++" msgstr "" -#: ../../extending/extending.rst:10 -msgid "" -"It is quite easy to add new built-in modules to Python, if you know how to " -"program in C. Such :dfn:`extension modules` can do two things that can't be " -"done directly in Python: they can implement new built-in object types, and " -"they can call C library functions and system calls." +msgid "It is quite easy to add new built-in modules to Python, if you know how to program in C. Such :dfn:`extension modules` can do two things that can't be done directly in Python: they can implement new built-in object types, and they can call C library functions and system calls." msgstr "" -#: ../../extending/extending.rst:15 -msgid "" -"To support extensions, the Python API (Application Programmers Interface) " -"defines a set of functions, macros and variables that provide access to most " -"aspects of the Python run-time system. The Python API is incorporated in a " -"C source file by including the header ``\"Python.h\"``." +msgid "To support extensions, the Python API (Application Programmers Interface) defines a set of functions, macros and variables that provide access to most aspects of the Python run-time system. The Python API is incorporated in a C source file by including the header ``\"Python.h\"``." msgstr "" -#: ../../extending/extending.rst:20 -msgid "" -"The compilation of an extension module depends on its intended use as well " -"as on your system setup; details are given in later chapters." +msgid "The compilation of an extension module depends on its intended use as well as on your system setup; details are given in later chapters." +msgstr "" + +msgid "The C extension interface is specific to CPython, and extension modules do not work on other Python implementations. In many cases, it is possible to avoid writing C extensions and preserve portability to other implementations. For example, if your use case is calling C library functions or system calls, you should consider using the :mod:`ctypes` module or the `cffi `_ library rather than writing custom C code. These modules let you write Python code to interface with C code and are more portable between implementations of Python than writing and compiling a C extension module." msgstr "" -#: ../../extending/extending.rst:25 -msgid "" -"The C extension interface is specific to CPython, and extension modules do " -"not work on other Python implementations. In many cases, it is possible to " -"avoid writing C extensions and preserve portability to other " -"implementations. For example, if your use case is calling C library " -"functions or system calls, you should consider using the :mod:`ctypes` " -"module or the `cffi `_ library rather than " -"writing custom C code. These modules let you write Python code to interface " -"with C code and are more portable between implementations of Python than " -"writing and compiling a C extension module." -msgstr "" - -#: ../../extending/extending.rst:40 msgid "A Simple Example" msgstr "" -#: ../../extending/extending.rst:42 -msgid "" -"Let's create an extension module called ``spam`` (the favorite food of Monty " -"Python fans...) and let's say we want to create a Python interface to the C " -"library function :c:func:`system` [#]_. This function takes a null-" -"terminated character string as argument and returns an integer. We want " -"this function to be callable from Python as follows:" +msgid "Let's create an extension module called ``spam`` (the favorite food of Monty Python fans...) and let's say we want to create a Python interface to the C library function :c:func:`system` [#]_. This function takes a null-terminated character string as argument and returns an integer. We want this function to be callable from Python as follows:" msgstr "" -#: ../../extending/extending.rst:48 msgid "" ">>> import spam\n" ">>> status = spam.system(\"ls -l\")" msgstr "" -#: ../../extending/extending.rst:53 -msgid "" -"Begin by creating a file :file:`spammodule.c`. (Historically, if a module " -"is called ``spam``, the C file containing its implementation is " -"called :file:`spammodule.c`; if the module name is very long, like " -"``spammify``, the module name can be just :file:`spammify.c`.)" +msgid "Begin by creating a file :file:`spammodule.c`. (Historically, if a module is called ``spam``, the C file containing its implementation is called :file:`spammodule.c`; if the module name is very long, like ``spammify``, the module name can be just :file:`spammify.c`.)" msgstr "" -#: ../../extending/extending.rst:58 msgid "The first two lines of our file can be::" msgstr "" -#: ../../extending/extending.rst:60 ../../extending/extending.rst:704 msgid "" "#define PY_SSIZE_T_CLEAN\n" "#include " msgstr "" -#: ../../extending/extending.rst:63 -msgid "" -"which pulls in the Python API (you can add a comment describing the purpose " -"of the module and a copyright notice if you like)." +msgid "which pulls in the Python API (you can add a comment describing the purpose of the module and a copyright notice if you like)." msgstr "" -#: ../../extending/extending.rst:68 -msgid "" -"Since Python may define some pre-processor definitions which affect the " -"standard headers on some systems, you *must* include :file:`Python.h` before " -"any standard headers are included." +msgid "Since Python may define some pre-processor definitions which affect the standard headers on some systems, you *must* include :file:`Python.h` before any standard headers are included." msgstr "" -#: ../../extending/extending.rst:72 -msgid "" -"``#define PY_SSIZE_T_CLEAN`` was used to indicate that ``Py_ssize_t`` should " -"be used in some APIs instead of ``int``. It is not necessary since Python " -"3.13, but we keep it here for backward compatibility. See :ref:`arg-parsing-" -"string-and-buffers` for a description of this macro." +msgid "``#define PY_SSIZE_T_CLEAN`` was used to indicate that ``Py_ssize_t`` should be used in some APIs instead of ``int``. It is not necessary since Python 3.13, but we keep it here for backward compatibility. See :ref:`arg-parsing-string-and-buffers` for a description of this macro." msgstr "" -#: ../../extending/extending.rst:77 -msgid "" -"All user-visible symbols defined by :file:`Python.h` have a prefix of ``Py`` " -"or ``PY``, except those defined in standard header files." +msgid "All user-visible symbols defined by :file:`Python.h` have a prefix of ``Py`` or ``PY``, except those defined in standard header files." msgstr "" -#: ../../extending/extending.rst:82 -msgid "" -"For backward compatibility, :file:`Python.h` includes several standard " -"header files. C extensions should include the standard headers that they " -"use, and should not rely on these implicit includes. If using the limited C " -"API version 3.13 or newer, the implicit includes are:" +msgid "For backward compatibility, :file:`Python.h` includes several standard header files. C extensions should include the standard headers that they use, and should not rely on these implicit includes. If using the limited C API version 3.13 or newer, the implicit includes are:" msgstr "" -#: ../../extending/extending.rst:87 msgid "````" msgstr "" -#: ../../extending/extending.rst:88 msgid "```` (on Windows)" msgstr "" -#: ../../extending/extending.rst:89 msgid "````" msgstr "" -#: ../../extending/extending.rst:90 msgid "````" msgstr "" -#: ../../extending/extending.rst:91 msgid "````" msgstr "" -#: ../../extending/extending.rst:92 msgid "````" msgstr "" -#: ../../extending/extending.rst:93 msgid "````" msgstr "" -#: ../../extending/extending.rst:94 msgid "```` (if present)" msgstr "" -#: ../../extending/extending.rst:96 -msgid "" -"If :c:macro:`Py_LIMITED_API` is not defined, or is set to version 3.12 or " -"older, the headers below are also included:" +msgid "If :c:macro:`Py_LIMITED_API` is not defined, or is set to version 3.12 or older, the headers below are also included:" msgstr "" -#: ../../extending/extending.rst:99 msgid "````" msgstr "" -#: ../../extending/extending.rst:100 msgid "```` (on POSIX)" msgstr "" -#: ../../extending/extending.rst:102 -msgid "" -"If :c:macro:`Py_LIMITED_API` is not defined, or is set to version 3.10 or " -"older, the headers below are also included:" +msgid "If :c:macro:`Py_LIMITED_API` is not defined, or is set to version 3.10 or older, the headers below are also included:" msgstr "" -#: ../../extending/extending.rst:105 msgid "````" msgstr "" -#: ../../extending/extending.rst:106 msgid "````" msgstr "" -#: ../../extending/extending.rst:107 msgid "````" msgstr "" -#: ../../extending/extending.rst:108 msgid "````" msgstr "" -#: ../../extending/extending.rst:110 -msgid "" -"The next thing we add to our module file is the C function that will be " -"called when the Python expression ``spam.system(string)`` is evaluated " -"(we'll see shortly how it ends up being called)::" +msgid "The next thing we add to our module file is the C function that will be called when the Python expression ``spam.system(string)`` is evaluated (we'll see shortly how it ends up being called)::" msgstr "" -#: ../../extending/extending.rst:114 msgid "" "static PyObject *\n" "spam_system(PyObject *self, PyObject *args)\n" @@ -224,197 +140,75 @@ msgid "" "}" msgstr "" -#: ../../extending/extending.rst:126 -msgid "" -"There is a straightforward translation from the argument list in Python (for " -"example, the single expression ``\"ls -l\"``) to the arguments passed to the " -"C function. The C function always has two arguments, conventionally named " -"*self* and *args*." +msgid "There is a straightforward translation from the argument list in Python (for example, the single expression ``\"ls -l\"``) to the arguments passed to the C function. The C function always has two arguments, conventionally named *self* and *args*." msgstr "" -#: ../../extending/extending.rst:131 -msgid "" -"The *self* argument points to the module object for module-level functions; " -"for a method it would point to the object instance." +msgid "The *self* argument points to the module object for module-level functions; for a method it would point to the object instance." msgstr "" -#: ../../extending/extending.rst:134 -msgid "" -"The *args* argument will be a pointer to a Python tuple object containing " -"the arguments. Each item of the tuple corresponds to an argument in the " -"call's argument list. The arguments are Python objects --- in order to do " -"anything with them in our C function we have to convert them to C values. " -"The function :c:func:`PyArg_ParseTuple` in the Python API checks the " -"argument types and converts them to C values. It uses a template string to " -"determine the required types of the arguments as well as the types of the C " -"variables into which to store the converted values. More about this later." +msgid "The *args* argument will be a pointer to a Python tuple object containing the arguments. Each item of the tuple corresponds to an argument in the call's argument list. The arguments are Python objects --- in order to do anything with them in our C function we have to convert them to C values. The function :c:func:`PyArg_ParseTuple` in the Python API checks the argument types and converts them to C values. It uses a template string to determine the required types of the arguments as well as the types of the C variables into which to store the converted values. More about this later." msgstr "" -#: ../../extending/extending.rst:143 -msgid "" -":c:func:`PyArg_ParseTuple` returns true (nonzero) if all arguments have the " -"right type and its components have been stored in the variables whose " -"addresses are passed. It returns false (zero) if an invalid argument list " -"was passed. In the latter case it also raises an appropriate exception so " -"the calling function can return ``NULL`` immediately (as we saw in the " -"example)." +msgid ":c:func:`PyArg_ParseTuple` returns true (nonzero) if all arguments have the right type and its components have been stored in the variables whose addresses are passed. It returns false (zero) if an invalid argument list was passed. In the latter case it also raises an appropriate exception so the calling function can return ``NULL`` immediately (as we saw in the example)." msgstr "" -#: ../../extending/extending.rst:153 msgid "Intermezzo: Errors and Exceptions" msgstr "" -#: ../../extending/extending.rst:155 -msgid "" -"An important convention throughout the Python interpreter is the following: " -"when a function fails, it should set an exception condition and return an " -"error value (usually ``-1`` or a ``NULL`` pointer). Exception information " -"is stored in three members of the interpreter's thread state. These are " -"``NULL`` if there is no exception. Otherwise they are the C equivalents of " -"the members of the Python tuple returned by :meth:`sys.exc_info`. These are " -"the exception type, exception instance, and a traceback object. It is " -"important to know about them to understand how errors are passed around." +msgid "An important convention throughout the Python interpreter is the following: when a function fails, it should set an exception condition and return an error value (usually ``-1`` or a ``NULL`` pointer). Exception information is stored in three members of the interpreter's thread state. These are ``NULL`` if there is no exception. Otherwise they are the C equivalents of the members of the Python tuple returned by :meth:`sys.exc_info`. These are the exception type, exception instance, and a traceback object. It is important to know about them to understand how errors are passed around." msgstr "" -#: ../../extending/extending.rst:164 -msgid "" -"The Python API defines a number of functions to set various types of " -"exceptions." +msgid "The Python API defines a number of functions to set various types of exceptions." msgstr "" -#: ../../extending/extending.rst:166 -msgid "" -"The most common one is :c:func:`PyErr_SetString`. Its arguments are an " -"exception object and a C string. The exception object is usually a " -"predefined object like :c:data:`PyExc_ZeroDivisionError`. The C string " -"indicates the cause of the error and is converted to a Python string object " -"and stored as the \"associated value\" of the exception." +msgid "The most common one is :c:func:`PyErr_SetString`. Its arguments are an exception object and a C string. The exception object is usually a predefined object like :c:data:`PyExc_ZeroDivisionError`. The C string indicates the cause of the error and is converted to a Python string object and stored as the \"associated value\" of the exception." msgstr "" -#: ../../extending/extending.rst:172 -msgid "" -"Another useful function is :c:func:`PyErr_SetFromErrno`, which only takes an " -"exception argument and constructs the associated value by inspection of the " -"global variable :c:data:`errno`. The most general function " -"is :c:func:`PyErr_SetObject`, which takes two object arguments, the " -"exception and its associated value. You don't need to :c:func:`Py_INCREF` " -"the objects passed to any of these functions." +msgid "Another useful function is :c:func:`PyErr_SetFromErrno`, which only takes an exception argument and constructs the associated value by inspection of the global variable :c:data:`errno`. The most general function is :c:func:`PyErr_SetObject`, which takes two object arguments, the exception and its associated value. You don't need to :c:func:`Py_INCREF` the objects passed to any of these functions." msgstr "" -#: ../../extending/extending.rst:179 -msgid "" -"You can test non-destructively whether an exception has been set " -"with :c:func:`PyErr_Occurred`. This returns the current exception object, " -"or ``NULL`` if no exception has occurred. You normally don't need to " -"call :c:func:`PyErr_Occurred` to see whether an error occurred in a function " -"call, since you should be able to tell from the return value." +msgid "You can test non-destructively whether an exception has been set with :c:func:`PyErr_Occurred`. This returns the current exception object, or ``NULL`` if no exception has occurred. You normally don't need to call :c:func:`PyErr_Occurred` to see whether an error occurred in a function call, since you should be able to tell from the return value." msgstr "" -#: ../../extending/extending.rst:185 -msgid "" -"When a function *f* that calls another function *g* detects that the latter " -"fails, *f* should itself return an error value (usually ``NULL`` or " -"``-1``). It should *not* call one of the ``PyErr_*`` functions --- one has " -"already been called by *g*. *f*'s caller is then supposed to also return an " -"error indication to *its* caller, again *without* calling ``PyErr_*``, and " -"so on --- the most detailed cause of the error was already reported by the " -"function that first detected it. Once the error reaches the Python " -"interpreter's main loop, this aborts the currently executing Python code and " -"tries to find an exception handler specified by the Python programmer." -msgstr "" - -#: ../../extending/extending.rst:195 -msgid "" -"(There are situations where a module can actually give a more detailed error " -"message by calling another ``PyErr_*`` function, and in such cases it is " -"fine to do so. As a general rule, however, this is not necessary, and can " -"cause information about the cause of the error to be lost: most operations " -"can fail for a variety of reasons.)" +msgid "When a function *f* that calls another function *g* detects that the latter fails, *f* should itself return an error value (usually ``NULL`` or ``-1``). It should *not* call one of the ``PyErr_*`` functions --- one has already been called by *g*. *f*'s caller is then supposed to also return an error indication to *its* caller, again *without* calling ``PyErr_*``, and so on --- the most detailed cause of the error was already reported by the function that first detected it. Once the error reaches the Python interpreter's main loop, this aborts the currently executing Python code and tries to find an exception handler specified by the Python programmer." msgstr "" -#: ../../extending/extending.rst:201 -msgid "" -"To ignore an exception set by a function call that failed, the exception " -"condition must be cleared explicitly by calling :c:func:`PyErr_Clear`. The " -"only time C code should call :c:func:`PyErr_Clear` is if it doesn't want to " -"pass the error on to the interpreter but wants to handle it completely by " -"itself (possibly by trying something else, or pretending nothing went wrong)." +msgid "(There are situations where a module can actually give a more detailed error message by calling another ``PyErr_*`` function, and in such cases it is fine to do so. As a general rule, however, this is not necessary, and can cause information about the cause of the error to be lost: most operations can fail for a variety of reasons.)" msgstr "" -#: ../../extending/extending.rst:207 -msgid "" -"Every failing :c:func:`malloc` call must be turned into an exception --- the " -"direct caller of :c:func:`malloc` (or :c:func:`realloc`) must " -"call :c:func:`PyErr_NoMemory` and return a failure indicator itself. All " -"the object-creating functions (for example, :c:func:`PyLong_FromLong`) " -"already do this, so this note is only relevant to those who " -"call :c:func:`malloc` directly." +msgid "To ignore an exception set by a function call that failed, the exception condition must be cleared explicitly by calling :c:func:`PyErr_Clear`. The only time C code should call :c:func:`PyErr_Clear` is if it doesn't want to pass the error on to the interpreter but wants to handle it completely by itself (possibly by trying something else, or pretending nothing went wrong)." msgstr "" -#: ../../extending/extending.rst:213 -msgid "" -"Also note that, with the important exception of :c:func:`PyArg_ParseTuple` " -"and friends, functions that return an integer status usually return a " -"positive value or zero for success and ``-1`` for failure, like Unix system " -"calls." +msgid "Every failing :c:func:`malloc` call must be turned into an exception --- the direct caller of :c:func:`malloc` (or :c:func:`realloc`) must call :c:func:`PyErr_NoMemory` and return a failure indicator itself. All the object-creating functions (for example, :c:func:`PyLong_FromLong`) already do this, so this note is only relevant to those who call :c:func:`malloc` directly." msgstr "" -#: ../../extending/extending.rst:217 -msgid "" -"Finally, be careful to clean up garbage (by making :c:func:`Py_XDECREF` " -"or :c:func:`Py_DECREF` calls for objects you have already created) when you " -"return an error indicator!" +msgid "Also note that, with the important exception of :c:func:`PyArg_ParseTuple` and friends, functions that return an integer status usually return a positive value or zero for success and ``-1`` for failure, like Unix system calls." msgstr "" -#: ../../extending/extending.rst:221 -msgid "" -"The choice of which exception to raise is entirely yours. There are " -"predeclared C objects corresponding to all built-in Python exceptions, such " -"as :c:data:`PyExc_ZeroDivisionError`, which you can use directly. Of course, " -"you should choose exceptions wisely --- don't use :c:data:`PyExc_TypeError` " -"to mean that a file couldn't be opened (that should probably " -"be :c:data:`PyExc_OSError`). If something's wrong with the argument list, " -"the :c:func:`PyArg_ParseTuple` function usually " -"raises :c:data:`PyExc_TypeError`. If you have an argument whose value must " -"be in a particular range or must satisfy other " -"conditions, :c:data:`PyExc_ValueError` is appropriate." -msgstr "" - -#: ../../extending/extending.rst:231 -msgid "" -"You can also define a new exception that is unique to your module. The " -"simplest way to do this is to declare a static global object variable at the " -"beginning of the file::" +msgid "Finally, be careful to clean up garbage (by making :c:func:`Py_XDECREF` or :c:func:`Py_DECREF` calls for objects you have already created) when you return an error indicator!" +msgstr "" + +msgid "The choice of which exception to raise is entirely yours. There are predeclared C objects corresponding to all built-in Python exceptions, such as :c:data:`PyExc_ZeroDivisionError`, which you can use directly. Of course, you should choose exceptions wisely --- don't use :c:data:`PyExc_TypeError` to mean that a file couldn't be opened (that should probably be :c:data:`PyExc_OSError`). If something's wrong with the argument list, the :c:func:`PyArg_ParseTuple` function usually raises :c:data:`PyExc_TypeError`. If you have an argument whose value must be in a particular range or must satisfy other conditions, :c:data:`PyExc_ValueError` is appropriate." +msgstr "" + +msgid "You can also define a new exception that is unique to your module. The simplest way to do this is to declare a static global object variable at the beginning of the file::" msgstr "" -#: ../../extending/extending.rst:235 msgid "static PyObject *SpamError = NULL;" msgstr "" -#: ../../extending/extending.rst:237 -msgid "" -"and initialize it by calling :c:func:`PyErr_NewException` in the " -"module's :c:data:`Py_mod_exec` function (:c:func:`!spam_module_exec`)::" +msgid "and initialize it by calling :c:func:`PyErr_NewException` in the module's :c:data:`Py_mod_exec` function (:c:func:`!spam_module_exec`)::" msgstr "" -#: ../../extending/extending.rst:240 msgid "SpamError = PyErr_NewException(\"spam.error\", NULL, NULL);" msgstr "" -#: ../../extending/extending.rst:242 -msgid "" -"Since :c:data:`!SpamError` is a global variable, it will be overwritten " -"every time the module is reinitialized, when the :c:data:`Py_mod_exec` " -"function is called." +msgid "Since :c:data:`!SpamError` is a global variable, it will be overwritten every time the module is reinitialized, when the :c:data:`Py_mod_exec` function is called." msgstr "" -#: ../../extending/extending.rst:245 -msgid "" -"For now, let's avoid the issue: we will block repeated initialization by " -"raising an :py:exc:`ImportError`::" +msgid "For now, let's avoid the issue: we will block repeated initialization by raising an :py:exc:`ImportError`::" msgstr "" -#: ../../extending/extending.rst:248 msgid "" "static PyObject *SpamError = NULL;\n" "\n" @@ -453,46 +247,21 @@ msgid "" "}" msgstr "" -#: ../../extending/extending.rst:284 -msgid "" -"Note that the Python name for the exception object is :exc:`!spam.error`. " -"The :c:func:`PyErr_NewException` function may create a class with the base " -"class being :exc:`Exception` (unless another class is passed in instead of " -"``NULL``), described in :ref:`bltin-exceptions`." +msgid "Note that the Python name for the exception object is :exc:`!spam.error`. The :c:func:`PyErr_NewException` function may create a class with the base class being :exc:`Exception` (unless another class is passed in instead of ``NULL``), described in :ref:`bltin-exceptions`." msgstr "" -#: ../../extending/extending.rst:289 -msgid "" -"Note also that the :c:data:`!SpamError` variable retains a reference to the " -"newly created exception class; this is intentional! Since the exception " -"could be removed from the module by external code, an owned reference to the " -"class is needed to ensure that it will not be discarded, causing :c:data:`!" -"SpamError` to become a dangling pointer. Should it become a dangling " -"pointer, C code which raises the exception could cause a core dump or other " -"unintended side effects." +msgid "Note also that the :c:data:`!SpamError` variable retains a reference to the newly created exception class; this is intentional! Since the exception could be removed from the module by external code, an owned reference to the class is needed to ensure that it will not be discarded, causing :c:data:`!SpamError` to become a dangling pointer. Should it become a dangling pointer, C code which raises the exception could cause a core dump or other unintended side effects." msgstr "" -#: ../../extending/extending.rst:296 -msgid "" -"For now, the :c:func:`Py_DECREF` call to remove this reference is missing. " -"Even when the Python interpreter shuts down, the global :c:data:`!SpamError` " -"variable will not be garbage-collected. It will \"leak\". We did, however, " -"ensure that this will happen at most once per process." +msgid "For now, the :c:func:`Py_DECREF` call to remove this reference is missing. Even when the Python interpreter shuts down, the global :c:data:`!SpamError` variable will not be garbage-collected. It will \"leak\". We did, however, ensure that this will happen at most once per process." msgstr "" -#: ../../extending/extending.rst:301 -msgid "" -"We discuss the use of :c:macro:`PyMODINIT_FUNC` as a function return type " -"later in this sample." +msgid "We discuss the use of :c:macro:`PyMODINIT_FUNC` as a function return type later in this sample." msgstr "" -#: ../../extending/extending.rst:304 -msgid "" -"The :exc:`!spam.error` exception can be raised in your extension module " -"using a call to :c:func:`PyErr_SetString` as shown below::" +msgid "The :exc:`!spam.error` exception can be raised in your extension module using a call to :c:func:`PyErr_SetString` as shown below::" msgstr "" -#: ../../extending/extending.rst:307 msgid "" "static PyObject *\n" "spam_system(PyObject *self, PyObject *args)\n" @@ -511,92 +280,52 @@ msgid "" "}" msgstr "" -#: ../../extending/extending.rst:327 msgid "Back to the Example" msgstr "" -#: ../../extending/extending.rst:329 -msgid "" -"Going back to our example function, you should now be able to understand " -"this statement::" +msgid "Going back to our example function, you should now be able to understand this statement::" msgstr "" -#: ../../extending/extending.rst:332 msgid "" "if (!PyArg_ParseTuple(args, \"s\", &command))\n" " return NULL;" msgstr "" -#: ../../extending/extending.rst:335 -msgid "" -"It returns ``NULL`` (the error indicator for functions returning object " -"pointers) if an error is detected in the argument list, relying on the " -"exception set by :c:func:`PyArg_ParseTuple`. Otherwise the string value of " -"the argument has been copied to the local variable :c:data:`!command`. This " -"is a pointer assignment and you are not supposed to modify the string to " -"which it points (so in Standard C, the variable :c:data:`!command` should " -"properly be declared as ``const char *command``)." +msgid "It returns ``NULL`` (the error indicator for functions returning object pointers) if an error is detected in the argument list, relying on the exception set by :c:func:`PyArg_ParseTuple`. Otherwise the string value of the argument has been copied to the local variable :c:data:`!command`. This is a pointer assignment and you are not supposed to modify the string to which it points (so in Standard C, the variable :c:data:`!command` should properly be declared as ``const char *command``)." msgstr "" -#: ../../extending/extending.rst:343 -msgid "" -"The next statement is a call to the Unix function :c:func:`system`, passing " -"it the string we just got from :c:func:`PyArg_ParseTuple`::" +msgid "The next statement is a call to the Unix function :c:func:`system`, passing it the string we just got from :c:func:`PyArg_ParseTuple`::" msgstr "" -#: ../../extending/extending.rst:346 msgid "sts = system(command);" msgstr "" -#: ../../extending/extending.rst:348 -msgid "" -"Our :func:`!spam.system` function must return the value of :c:data:`!sts` as " -"a Python object. This is done using the " -"function :c:func:`PyLong_FromLong`. ::" +msgid "Our :func:`!spam.system` function must return the value of :c:data:`!sts` as a Python object. This is done using the function :c:func:`PyLong_FromLong`. ::" msgstr "" -#: ../../extending/extending.rst:351 msgid "return PyLong_FromLong(sts);" msgstr "" -#: ../../extending/extending.rst:353 -msgid "" -"In this case, it will return an integer object. (Yes, even integers are " -"objects on the heap in Python!)" +msgid "In this case, it will return an integer object. (Yes, even integers are objects on the heap in Python!)" msgstr "" -#: ../../extending/extending.rst:356 -msgid "" -"If you have a C function that returns no useful argument (a function " -"returning :c:expr:`void`), the corresponding Python function must return " -"``None``. You need this idiom to do so (which is implemented by " -"the :c:macro:`Py_RETURN_NONE` macro)::" +msgid "If you have a C function that returns no useful argument (a function returning :c:expr:`void`), the corresponding Python function must return ``None``. You need this idiom to do so (which is implemented by the :c:macro:`Py_RETURN_NONE` macro)::" msgstr "" -#: ../../extending/extending.rst:361 msgid "" "Py_INCREF(Py_None);\n" "return Py_None;" msgstr "" -#: ../../extending/extending.rst:364 -msgid "" -":c:data:`Py_None` is the C name for the special Python object ``None``. It " -"is a genuine Python object rather than a ``NULL`` pointer, which means " -"\"error\" in most contexts, as we have seen." +msgid ":c:data:`Py_None` is the C name for the special Python object ``None``. It is a genuine Python object rather than a ``NULL`` pointer, which means \"error\" in most contexts, as we have seen." msgstr "" -#: ../../extending/extending.rst:372 msgid "The Module's Method Table and Initialization Function" msgstr "" -#: ../../extending/extending.rst:374 -msgid "" -"I promised to show how :c:func:`!spam_system` is called from Python " -"programs. First, we need to list its name and address in a \"method table\"::" +msgid "I promised to show how :c:func:`!spam_system` is called from Python programs. First, we need to list its name and address in a \"method table\"::" msgstr "" -#: ../../extending/extending.rst:377 msgid "" "static PyMethodDef spam_methods[] = {\n" " ...\n" @@ -607,38 +336,18 @@ msgid "" "};" msgstr "" -#: ../../extending/extending.rst:385 -msgid "" -"Note the third entry (``METH_VARARGS``). This is a flag telling the " -"interpreter the calling convention to be used for the C function. It should " -"normally always be ``METH_VARARGS`` or ``METH_VARARGS | METH_KEYWORDS``; a " -"value of ``0`` means that an obsolete variant of :c:func:`PyArg_ParseTuple` " -"is used." +msgid "Note the third entry (``METH_VARARGS``). This is a flag telling the interpreter the calling convention to be used for the C function. It should normally always be ``METH_VARARGS`` or ``METH_VARARGS | METH_KEYWORDS``; a value of ``0`` means that an obsolete variant of :c:func:`PyArg_ParseTuple` is used." msgstr "" -#: ../../extending/extending.rst:390 -msgid "" -"When using only ``METH_VARARGS``, the function should expect the Python-" -"level parameters to be passed in as a tuple acceptable for parsing " -"via :c:func:`PyArg_ParseTuple`; more information on this function is " -"provided below." +msgid "When using only ``METH_VARARGS``, the function should expect the Python-level parameters to be passed in as a tuple acceptable for parsing via :c:func:`PyArg_ParseTuple`; more information on this function is provided below." msgstr "" -#: ../../extending/extending.rst:394 -msgid "" -"The :c:macro:`METH_KEYWORDS` bit may be set in the third field if keyword " -"arguments should be passed to the function. In this case, the C function " -"should accept a third ``PyObject *`` parameter which will be a dictionary of " -"keywords. Use :c:func:`PyArg_ParseTupleAndKeywords` to parse the arguments " -"to such a function." +msgid "The :c:macro:`METH_KEYWORDS` bit may be set in the third field if keyword arguments should be passed to the function. In this case, the C function should accept a third ``PyObject *`` parameter which will be a dictionary of keywords. Use :c:func:`PyArg_ParseTupleAndKeywords` to parse the arguments to such a function." msgstr "" -#: ../../extending/extending.rst:400 -msgid "" -"The method table must be referenced in the module definition structure::" +msgid "The method table must be referenced in the module definition structure::" msgstr "" -#: ../../extending/extending.rst:402 msgid "" "static struct PyModuleDef spam_module = {\n" " ...\n" @@ -647,15 +356,9 @@ msgid "" "};" msgstr "" -#: ../../extending/extending.rst:408 -msgid "" -"This structure, in turn, must be passed to the interpreter in the module's " -"initialization function. The initialization function must be " -"named :c:func:`!PyInit_name`, where *name* is the name of the module, and " -"should be the only non-\\ ``static`` item defined in the module file::" +msgid "This structure, in turn, must be passed to the interpreter in the module's initialization function. The initialization function must be named :c:func:`!PyInit_name`, where *name* is the name of the module, and should be the only non-\\ ``static`` item defined in the module file::" msgstr "" -#: ../../extending/extending.rst:413 msgid "" "PyMODINIT_FUNC\n" "PyInit_spam(void)\n" @@ -664,32 +367,15 @@ msgid "" "}" msgstr "" -#: ../../extending/extending.rst:419 -msgid "" -"Note that :c:macro:`PyMODINIT_FUNC` declares the function as ``PyObject *`` " -"return type, declares any special linkage declarations required by the " -"platform, and for C++ declares the function as ``extern \"C\"``." +msgid "Note that :c:macro:`PyMODINIT_FUNC` declares the function as ``PyObject *`` return type, declares any special linkage declarations required by the platform, and for C++ declares the function as ``extern \"C\"``." msgstr "" -#: ../../extending/extending.rst:423 -msgid "" -":c:func:`!PyInit_spam` is called when each interpreter imports its " -"module :mod:`!spam` for the first time. (See below for comments about " -"embedding Python.) A pointer to the module definition must be returned " -"via :c:func:`PyModuleDef_Init`, so that the import machinery can create the " -"module and store it in ``sys.modules``." +msgid ":c:func:`!PyInit_spam` is called when each interpreter imports its module :mod:`!spam` for the first time. (See below for comments about embedding Python.) A pointer to the module definition must be returned via :c:func:`PyModuleDef_Init`, so that the import machinery can create the module and store it in ``sys.modules``." msgstr "" -#: ../../extending/extending.rst:428 -msgid "" -"When embedding Python, the :c:func:`!PyInit_spam` function is not called " -"automatically unless there's an entry in the :c:data:`PyImport_Inittab` " -"table. To add the module to the initialization table, " -"use :c:func:`PyImport_AppendInittab`, optionally followed by an import of " -"the module::" +msgid "When embedding Python, the :c:func:`!PyInit_spam` function is not called automatically unless there's an entry in the :c:data:`PyImport_Inittab` table. To add the module to the initialization table, use :c:func:`PyImport_AppendInittab`, optionally followed by an import of the module::" msgstr "" -#: ../../extending/extending.rst:433 msgid "" "#define PY_SSIZE_T_CLEAN\n" "#include \n" @@ -703,14 +389,12 @@ msgid "" "\n" " /* Add a built-in module, before Py_Initialize */\n" " if (PyImport_AppendInittab(\"spam\", PyInit_spam) == -1) {\n" -" fprintf(stderr, \"Error: could not extend in-built modules " -"table\\n\");\n" +" fprintf(stderr, \"Error: could not extend in-built modules table\\n\");\n" " exit(1);\n" " }\n" "\n" " /* Pass argv[0] to the Python interpreter */\n" -" status = PyConfig_SetBytesString(&config, &config.program_name, " -"argv[0]);\n" +" status = PyConfig_SetBytesString(&config, &config.program_name, argv[0]);\n" " if (PyStatus_Exception(status)) {\n" " goto exception;\n" " }\n" @@ -742,107 +426,45 @@ msgid "" "}" msgstr "" -#: ../../extending/extending.rst:483 -msgid "" -"If you declare a global variable or a local static one, the module may " -"experience unintended side-effects on re-initialisation, for example when " -"removing entries from ``sys.modules`` or importing compiled modules into " -"multiple interpreters within a process (or following a :c:func:`fork` " -"without an intervening :c:func:`exec`). If module state is not yet " -"fully :ref:`isolated `, authors should consider " -"marking the module as having no support for subinterpreters " -"(via :c:macro:`Py_MOD_MULTIPLE_INTERPRETERS_NOT_SUPPORTED`)." +msgid "If you declare a global variable or a local static one, the module may experience unintended side-effects on re-initialisation, for example when removing entries from ``sys.modules`` or importing compiled modules into multiple interpreters within a process (or following a :c:func:`fork` without an intervening :c:func:`exec`). If module state is not yet fully :ref:`isolated `, authors should consider marking the module as having no support for subinterpreters (via :c:macro:`Py_MOD_MULTIPLE_INTERPRETERS_NOT_SUPPORTED`)." msgstr "" -#: ../../extending/extending.rst:492 -msgid "" -"A more substantial example module is included in the Python source " -"distribution as :file:`Modules/xxlimited.c`. This file may be used as a " -"template or simply read as an example." +msgid "A more substantial example module is included in the Python source distribution as :file:`Modules/xxlimited.c`. This file may be used as a template or simply read as an example." msgstr "" -#: ../../extending/extending.rst:500 msgid "Compilation and Linkage" msgstr "" -#: ../../extending/extending.rst:502 -msgid "" -"There are two more things to do before you can use your new extension: " -"compiling and linking it with the Python system. If you use dynamic " -"loading, the details may depend on the style of dynamic loading your system " -"uses; see the chapters about building extension modules " -"(chapter :ref:`building`) and additional information that pertains only to " -"building on Windows (chapter :ref:`building-on-windows`) for more " -"information about this." +msgid "There are two more things to do before you can use your new extension: compiling and linking it with the Python system. If you use dynamic loading, the details may depend on the style of dynamic loading your system uses; see the chapters about building extension modules (chapter :ref:`building`) and additional information that pertains only to building on Windows (chapter :ref:`building-on-windows`) for more information about this." msgstr "" -#: ../../extending/extending.rst:509 -msgid "" -"If you can't use dynamic loading, or if you want to make your module a " -"permanent part of the Python interpreter, you will have to change the " -"configuration setup and rebuild the interpreter. Luckily, this is very " -"simple on Unix: just place your file (:file:`spammodule.c` for example) in " -"the :file:`Modules/` directory of an unpacked source distribution, add a " -"line to the file :file:`Modules/Setup.local` describing your file:" +msgid "If you can't use dynamic loading, or if you want to make your module a permanent part of the Python interpreter, you will have to change the configuration setup and rebuild the interpreter. Luckily, this is very simple on Unix: just place your file (:file:`spammodule.c` for example) in the :file:`Modules/` directory of an unpacked source distribution, add a line to the file :file:`Modules/Setup.local` describing your file:" msgstr "" -#: ../../extending/extending.rst:516 msgid "spam spammodule.o" msgstr "" -#: ../../extending/extending.rst:520 -msgid "" -"and rebuild the interpreter by running :program:`make` in the toplevel " -"directory. You can also run :program:`make` in the :file:`Modules/` " -"subdirectory, but then you must first rebuild :file:`Makefile` there by " -"running ':program:`make` Makefile'. (This is necessary each time you change " -"the :file:`Setup` file.)" +msgid "and rebuild the interpreter by running :program:`make` in the toplevel directory. You can also run :program:`make` in the :file:`Modules/` subdirectory, but then you must first rebuild :file:`Makefile` there by running ':program:`make` Makefile'. (This is necessary each time you change the :file:`Setup` file.)" msgstr "" -#: ../../extending/extending.rst:526 -msgid "" -"If your module requires additional libraries to link with, these can be " -"listed on the line in the configuration file as well, for instance:" +msgid "If your module requires additional libraries to link with, these can be listed on the line in the configuration file as well, for instance:" msgstr "" -#: ../../extending/extending.rst:529 msgid "spam spammodule.o -lX11" msgstr "" -#: ../../extending/extending.rst:537 msgid "Calling Python Functions from C" msgstr "" -#: ../../extending/extending.rst:539 -msgid "" -"So far we have concentrated on making C functions callable from Python. The " -"reverse is also useful: calling Python functions from C. This is especially " -"the case for libraries that support so-called \"callback\" functions. If a " -"C interface makes use of callbacks, the equivalent Python often needs to " -"provide a callback mechanism to the Python programmer; the implementation " -"will require calling the Python callback functions from a C callback. Other " -"uses are also imaginable." +msgid "So far we have concentrated on making C functions callable from Python. The reverse is also useful: calling Python functions from C. This is especially the case for libraries that support so-called \"callback\" functions. If a C interface makes use of callbacks, the equivalent Python often needs to provide a callback mechanism to the Python programmer; the implementation will require calling the Python callback functions from a C callback. Other uses are also imaginable." msgstr "" -#: ../../extending/extending.rst:547 -msgid "" -"Fortunately, the Python interpreter is easily called recursively, and there " -"is a standard interface to call a Python function. (If you're interested in " -"how to call the Python parser with a particular string as input, " -"see :ref:`veryhigh`.)" +msgid "Fortunately, the Python interpreter is easily called recursively, and there is a standard interface to call a Python function. (If you're interested in how to call the Python parser with a particular string as input, see :ref:`veryhigh`.)" msgstr "" -#: ../../extending/extending.rst:551 -msgid "" -"Calling a Python function is easy. First, the Python program must somehow " -"pass you the Python function object. You should provide a function (or some " -"other interface) to do this. When this function is called, save a pointer " -"to the Python function object (be careful to :c:func:`Py_INCREF` it!) in a " -"global variable --- or wherever you see fit. For example, the following " -"function might be part of a module definition::" +msgid "Calling a Python function is easy. First, the Python program must somehow pass you the Python function object. You should provide a function (or some other interface) to do this. When this function is called, save a pointer to the Python function object (be careful to :c:func:`Py_INCREF` it!) in a global variable --- or wherever you see fit. For example, the following function might be part of a module definition::" msgstr "" -#: ../../extending/extending.rst:558 msgid "" "static PyObject *my_callback = NULL;\n" "\n" @@ -854,8 +476,7 @@ msgid "" "\n" " if (PyArg_ParseTuple(args, \"O:set_callback\", &temp)) {\n" " if (!PyCallable_Check(temp)) {\n" -" PyErr_SetString(PyExc_TypeError, \"parameter must be " -"callable\");\n" +" PyErr_SetString(PyExc_TypeError, \"parameter must be callable\");\n" " return NULL;\n" " }\n" " Py_XINCREF(temp); /* Add a reference to new callback */\n" @@ -869,36 +490,15 @@ msgid "" "}" msgstr "" -#: ../../extending/extending.rst:581 -msgid "" -"This function must be registered with the interpreter using " -"the :c:macro:`METH_VARARGS` flag; this is described in " -"section :ref:`methodtable`. The :c:func:`PyArg_ParseTuple` function and its " -"arguments are documented in section :ref:`parsetuple`." +msgid "This function must be registered with the interpreter using the :c:macro:`METH_VARARGS` flag; this is described in section :ref:`methodtable`. The :c:func:`PyArg_ParseTuple` function and its arguments are documented in section :ref:`parsetuple`." msgstr "" -#: ../../extending/extending.rst:586 -msgid "" -"The macros :c:func:`Py_XINCREF` and :c:func:`Py_XDECREF` increment/decrement " -"the reference count of an object and are safe in the presence of ``NULL`` " -"pointers (but note that *temp* will not be ``NULL`` in this context). More " -"info on them in section :ref:`refcounts`." +msgid "The macros :c:func:`Py_XINCREF` and :c:func:`Py_XDECREF` increment/decrement the reference count of an object and are safe in the presence of ``NULL`` pointers (but note that *temp* will not be ``NULL`` in this context). More info on them in section :ref:`refcounts`." +msgstr "" + +msgid "Later, when it is time to call the function, you call the C function :c:func:`PyObject_CallObject`. This function has two arguments, both pointers to arbitrary Python objects: the Python function, and the argument list. The argument list must always be a tuple object, whose length is the number of arguments. To call the Python function with no arguments, pass in ``NULL``, or an empty tuple; to call it with one argument, pass a singleton tuple. :c:func:`Py_BuildValue` returns a tuple when its format string consists of zero or more format codes between parentheses. For example::" msgstr "" -#: ../../extending/extending.rst:593 -msgid "" -"Later, when it is time to call the function, you call the C " -"function :c:func:`PyObject_CallObject`. This function has two arguments, " -"both pointers to arbitrary Python objects: the Python function, and the " -"argument list. The argument list must always be a tuple object, whose " -"length is the number of arguments. To call the Python function with no " -"arguments, pass in ``NULL``, or an empty tuple; to call it with one " -"argument, pass a singleton tuple. :c:func:`Py_BuildValue` returns a tuple " -"when its format string consists of zero or more format codes between " -"parentheses. For example::" -msgstr "" - -#: ../../extending/extending.rst:602 msgid "" "int arg;\n" "PyObject *arglist;\n" @@ -912,37 +512,15 @@ msgid "" "Py_DECREF(arglist);" msgstr "" -#: ../../extending/extending.rst:613 -msgid "" -":c:func:`PyObject_CallObject` returns a Python object pointer: this is the " -"return value of the Python function. :c:func:`PyObject_CallObject` is " -"\"reference-count-neutral\" with respect to its arguments. In the example a " -"new tuple was created to serve as the argument list, which " -"is :c:func:`Py_DECREF`\\ -ed immediately after " -"the :c:func:`PyObject_CallObject` call." +msgid ":c:func:`PyObject_CallObject` returns a Python object pointer: this is the return value of the Python function. :c:func:`PyObject_CallObject` is \"reference-count-neutral\" with respect to its arguments. In the example a new tuple was created to serve as the argument list, which is :c:func:`Py_DECREF`\\ -ed immediately after the :c:func:`PyObject_CallObject` call." msgstr "" -#: ../../extending/extending.rst:620 -msgid "" -"The return value of :c:func:`PyObject_CallObject` is \"new\": either it is a " -"brand new object, or it is an existing object whose reference count has been " -"incremented. So, unless you want to save it in a global variable, you " -"should somehow :c:func:`Py_DECREF` the result, even (especially!) if you are " -"not interested in its value." +msgid "The return value of :c:func:`PyObject_CallObject` is \"new\": either it is a brand new object, or it is an existing object whose reference count has been incremented. So, unless you want to save it in a global variable, you should somehow :c:func:`Py_DECREF` the result, even (especially!) if you are not interested in its value." msgstr "" -#: ../../extending/extending.rst:626 -msgid "" -"Before you do this, however, it is important to check that the return value " -"isn't ``NULL``. If it is, the Python function terminated by raising an " -"exception. If the C code that called :c:func:`PyObject_CallObject` is called " -"from Python, it should now return an error indication to its Python caller, " -"so the interpreter can print a stack trace, or the calling Python code can " -"handle the exception. If this is not possible or desirable, the exception " -"should be cleared by calling :c:func:`PyErr_Clear`. For example::" +msgid "Before you do this, however, it is important to check that the return value isn't ``NULL``. If it is, the Python function terminated by raising an exception. If the C code that called :c:func:`PyObject_CallObject` is called from Python, it should now return an error indication to its Python caller, so the interpreter can print a stack trace, or the calling Python code can handle the exception. If this is not possible or desirable, the exception should be cleared by calling :c:func:`PyErr_Clear`. For example::" msgstr "" -#: ../../extending/extending.rst:634 msgid "" "if (result == NULL)\n" " return NULL; /* Pass error back */\n" @@ -950,19 +528,9 @@ msgid "" "Py_DECREF(result);" msgstr "" -#: ../../extending/extending.rst:639 -msgid "" -"Depending on the desired interface to the Python callback function, you may " -"also have to provide an argument list to :c:func:`PyObject_CallObject`. In " -"some cases the argument list is also provided by the Python program, through " -"the same interface that specified the callback function. It can then be " -"saved and used in the same manner as the function object. In other cases, " -"you may have to construct a new tuple to pass as the argument list. The " -"simplest way to do this is to call :c:func:`Py_BuildValue`. For example, if " -"you want to pass an integral event code, you might use the following code::" +msgid "Depending on the desired interface to the Python callback function, you may also have to provide an argument list to :c:func:`PyObject_CallObject`. In some cases the argument list is also provided by the Python program, through the same interface that specified the callback function. It can then be saved and used in the same manner as the function object. In other cases, you may have to construct a new tuple to pass as the argument list. The simplest way to do this is to call :c:func:`Py_BuildValue`. For example, if you want to pass an integral event code, you might use the following code::" msgstr "" -#: ../../extending/extending.rst:648 msgid "" "PyObject *arglist;\n" "...\n" @@ -975,23 +543,12 @@ msgid "" "Py_DECREF(result);" msgstr "" -#: ../../extending/extending.rst:658 -msgid "" -"Note the placement of ``Py_DECREF(arglist)`` immediately after the call, " -"before the error check! Also note that strictly speaking this code is not " -"complete: :c:func:`Py_BuildValue` may run out of memory, and this should be " -"checked." +msgid "Note the placement of ``Py_DECREF(arglist)`` immediately after the call, before the error check! Also note that strictly speaking this code is not complete: :c:func:`Py_BuildValue` may run out of memory, and this should be checked." msgstr "" -#: ../../extending/extending.rst:662 -msgid "" -"You may also call a function with keyword arguments by " -"using :c:func:`PyObject_Call`, which supports arguments and keyword " -"arguments. As in the above example, we use :c:func:`Py_BuildValue` to " -"construct the dictionary. ::" +msgid "You may also call a function with keyword arguments by using :c:func:`PyObject_Call`, which supports arguments and keyword arguments. As in the above example, we use :c:func:`Py_BuildValue` to construct the dictionary. ::" msgstr "" -#: ../../extending/extending.rst:666 msgid "" "PyObject *dict;\n" "...\n" @@ -1004,46 +561,27 @@ msgid "" "Py_DECREF(result);" msgstr "" -#: ../../extending/extending.rst:680 msgid "Extracting Parameters in Extension Functions" msgstr "" -#: ../../extending/extending.rst:684 msgid "The :c:func:`PyArg_ParseTuple` function is declared as follows::" msgstr "" -#: ../../extending/extending.rst:686 msgid "int PyArg_ParseTuple(PyObject *arg, const char *format, ...);" msgstr "" -#: ../../extending/extending.rst:688 -msgid "" -"The *arg* argument must be a tuple object containing an argument list passed " -"from Python to a C function. The *format* argument must be a format string, " -"whose syntax is explained in :ref:`arg-parsing` in the Python/C API " -"Reference Manual. The remaining arguments must be addresses of variables " -"whose type is determined by the format string." +msgid "The *arg* argument must be a tuple object containing an argument list passed from Python to a C function. The *format* argument must be a format string, whose syntax is explained in :ref:`arg-parsing` in the Python/C API Reference Manual. The remaining arguments must be addresses of variables whose type is determined by the format string." msgstr "" -#: ../../extending/extending.rst:694 -msgid "" -"Note that while :c:func:`PyArg_ParseTuple` checks that the Python arguments " -"have the required types, it cannot check the validity of the addresses of C " -"variables passed to the call: if you make mistakes there, your code will " -"probably crash or at least overwrite random bits in memory. So be careful!" +msgid "Note that while :c:func:`PyArg_ParseTuple` checks that the Python arguments have the required types, it cannot check the validity of the addresses of C variables passed to the call: if you make mistakes there, your code will probably crash or at least overwrite random bits in memory. So be careful!" msgstr "" -#: ../../extending/extending.rst:699 -msgid "" -"Note that any Python object references which are provided to the caller are " -"*borrowed* references; do not decrement their reference count!" +msgid "Note that any Python object references which are provided to the caller are *borrowed* references; do not decrement their reference count!" msgstr "" -#: ../../extending/extending.rst:702 msgid "Some example calls::" msgstr "" -#: ../../extending/extending.rst:709 msgid "" "int ok;\n" "int i, j;\n" @@ -1055,27 +593,22 @@ msgid "" " /* Python call: f() */" msgstr "" -#: ../../extending/extending.rst:720 msgid "" "ok = PyArg_ParseTuple(args, \"s\", &s); /* A string */\n" " /* Possible Python call: f('whoops!') */" msgstr "" -#: ../../extending/extending.rst:725 msgid "" -"ok = PyArg_ParseTuple(args, \"lls\", &k, &l, &s); /* Two longs and a string " -"*/\n" +"ok = PyArg_ParseTuple(args, \"lls\", &k, &l, &s); /* Two longs and a string */\n" " /* Possible Python call: f(1, 2, 'three') */" msgstr "" -#: ../../extending/extending.rst:730 msgid "" "ok = PyArg_ParseTuple(args, \"(ii)s#\", &i, &j, &s, &size);\n" " /* A pair of ints and a string, whose size is also returned */\n" " /* Possible Python call: f((1, 2), 'three') */" msgstr "" -#: ../../extending/extending.rst:736 msgid "" "{\n" " const char *file;\n" @@ -1090,7 +623,6 @@ msgid "" "}" msgstr "" -#: ../../extending/extending.rst:750 msgid "" "{\n" " int left, top, right, bottom, h, v;\n" @@ -1102,7 +634,6 @@ msgid "" "}" msgstr "" -#: ../../extending/extending.rst:761 msgid "" "{\n" " Py_complex c;\n" @@ -1112,48 +643,26 @@ msgid "" "}" msgstr "" -#: ../../extending/extending.rst:772 msgid "Keyword Parameters for Extension Functions" msgstr "" -#: ../../extending/extending.rst:776 -msgid "" -"The :c:func:`PyArg_ParseTupleAndKeywords` function is declared as follows::" +msgid "The :c:func:`PyArg_ParseTupleAndKeywords` function is declared as follows::" msgstr "" -#: ../../extending/extending.rst:778 msgid "" "int PyArg_ParseTupleAndKeywords(PyObject *arg, PyObject *kwdict,\n" -" const char *format, char * const " -"*kwlist, ...);" +" const char *format, char * const *kwlist, ...);" msgstr "" -#: ../../extending/extending.rst:781 -msgid "" -"The *arg* and *format* parameters are identical to those of " -"the :c:func:`PyArg_ParseTuple` function. The *kwdict* parameter is the " -"dictionary of keywords received as the third parameter from the Python " -"runtime. The *kwlist* parameter is a ``NULL``-terminated list of strings " -"which identify the parameters; the names are matched with the type " -"information from *format* from left to right. On " -"success, :c:func:`PyArg_ParseTupleAndKeywords` returns true, otherwise it " -"returns false and raises an appropriate exception." +msgid "The *arg* and *format* parameters are identical to those of the :c:func:`PyArg_ParseTuple` function. The *kwdict* parameter is the dictionary of keywords received as the third parameter from the Python runtime. The *kwlist* parameter is a ``NULL``-terminated list of strings which identify the parameters; the names are matched with the type information from *format* from left to right. On success, :c:func:`PyArg_ParseTupleAndKeywords` returns true, otherwise it returns false and raises an appropriate exception." msgstr "" -#: ../../extending/extending.rst:791 -msgid "" -"Nested tuples cannot be parsed when using keyword arguments! Keyword " -"parameters passed in which are not present in the *kwlist* will " -"cause :exc:`TypeError` to be raised." +msgid "Nested tuples cannot be parsed when using keyword arguments! Keyword parameters passed in which are not present in the *kwlist* will cause :exc:`TypeError` to be raised." msgstr "" -#: ../../extending/extending.rst:797 -msgid "" -"Here is an example module which uses keywords, based on an example by Geoff " -"Philbrick (philbrick@hks.com)::" +msgid "Here is an example module which uses keywords, based on an example by Geoff Philbrick (philbrick@hks.com)::" msgstr "" -#: ../../extending/extending.rst:800 msgid "" "#define PY_SSIZE_T_CLEAN\n" "#include \n" @@ -1166,15 +675,13 @@ msgid "" " const char *action = \"voom\";\n" " const char *type = \"Norwegian Blue\";\n" "\n" -" static char *kwlist[] = {\"voltage\", \"state\", \"action\", \"type\", " -"NULL};\n" +" static char *kwlist[] = {\"voltage\", \"state\", \"action\", \"type\", NULL};\n" "\n" " if (!PyArg_ParseTupleAndKeywords(args, keywds, \"i|sss\", kwlist,\n" " &voltage, &state, &action, &type))\n" " return NULL;\n" "\n" -" printf(\"-- This parrot wouldn't %s if you put %i Volts through it." -"\\n\",\n" +" printf(\"-- This parrot wouldn't %s if you put %i Volts through it.\\n\",\n" " action, voltage);\n" " printf(\"-- Lovely plumage, the %s -- It's %s!\\n\", type, state);\n" "\n" @@ -1186,8 +693,7 @@ msgid "" " * only take two PyObject* parameters, and keywdarg_parrot() takes\n" " * three.\n" " */\n" -" {\"parrot\", (PyCFunction)(void(*)(void))keywdarg_parrot, METH_VARARGS | " -"METH_KEYWORDS,\n" +" {\"parrot\", (PyCFunction)(void(*)(void))keywdarg_parrot, METH_VARARGS | METH_KEYWORDS,\n" " \"Print a lovely skit to standard output.\"},\n" " {NULL, NULL, 0, NULL} /* sentinel */\n" "};\n" @@ -1206,46 +712,24 @@ msgid "" "}" msgstr "" -#: ../../extending/extending.rst:851 msgid "Building Arbitrary Values" msgstr "" -#: ../../extending/extending.rst:853 -msgid "" -"This function is the counterpart to :c:func:`PyArg_ParseTuple`. It is " -"declared as follows::" +msgid "This function is the counterpart to :c:func:`PyArg_ParseTuple`. It is declared as follows::" msgstr "" -#: ../../extending/extending.rst:856 msgid "PyObject *Py_BuildValue(const char *format, ...);" msgstr "" -#: ../../extending/extending.rst:858 -msgid "" -"It recognizes a set of format units similar to the ones recognized " -"by :c:func:`PyArg_ParseTuple`, but the arguments (which are input to the " -"function, not output) must not be pointers, just values. It returns a new " -"Python object, suitable for returning from a C function called from Python." +msgid "It recognizes a set of format units similar to the ones recognized by :c:func:`PyArg_ParseTuple`, but the arguments (which are input to the function, not output) must not be pointers, just values. It returns a new Python object, suitable for returning from a C function called from Python." msgstr "" -#: ../../extending/extending.rst:863 -msgid "" -"One difference with :c:func:`PyArg_ParseTuple`: while the latter requires " -"its first argument to be a tuple (since Python argument lists are always " -"represented as tuples internally), :c:func:`Py_BuildValue` does not always " -"build a tuple. It builds a tuple only if its format string contains two or " -"more format units. If the format string is empty, it returns ``None``; if it " -"contains exactly one format unit, it returns whatever object is described by " -"that format unit. To force it to return a tuple of size 0 or one, " -"parenthesize the format string." +msgid "One difference with :c:func:`PyArg_ParseTuple`: while the latter requires its first argument to be a tuple (since Python argument lists are always represented as tuples internally), :c:func:`Py_BuildValue` does not always build a tuple. It builds a tuple only if its format string contains two or more format units. If the format string is empty, it returns ``None``; if it contains exactly one format unit, it returns whatever object is described by that format unit. To force it to return a tuple of size 0 or one, parenthesize the format string." msgstr "" -#: ../../extending/extending.rst:871 -msgid "" -"Examples (to the left the call, to the right the resulting Python value):" +msgid "Examples (to the left the call, to the right the resulting Python value):" msgstr "" -#: ../../extending/extending.rst:873 msgid "" "Py_BuildValue(\"\") None\n" "Py_BuildValue(\"i\", 123) 123\n" @@ -1266,245 +750,81 @@ msgid "" " 1, 2, 3, 4, 5, 6) (((1, 2), (3, 4)), (5, 6))" msgstr "" -#: ../../extending/extending.rst:897 msgid "Reference Counts" msgstr "" -#: ../../extending/extending.rst:899 -msgid "" -"In languages like C or C++, the programmer is responsible for dynamic " -"allocation and deallocation of memory on the heap. In C, this is done using " -"the functions :c:func:`malloc` and :c:func:`free`. In C++, the operators " -"``new`` and ``delete`` are used with essentially the same meaning and we'll " -"restrict the following discussion to the C case." +msgid "In languages like C or C++, the programmer is responsible for dynamic allocation and deallocation of memory on the heap. In C, this is done using the functions :c:func:`malloc` and :c:func:`free`. In C++, the operators ``new`` and ``delete`` are used with essentially the same meaning and we'll restrict the following discussion to the C case." msgstr "" -#: ../../extending/extending.rst:905 -msgid "" -"Every block of memory allocated with :c:func:`malloc` should eventually be " -"returned to the pool of available memory by exactly one call " -"to :c:func:`free`. It is important to call :c:func:`free` at the right " -"time. If a block's address is forgotten but :c:func:`free` is not called " -"for it, the memory it occupies cannot be reused until the program " -"terminates. This is called a :dfn:`memory leak`. On the other hand, if a " -"program calls :c:func:`free` for a block and then continues to use the " -"block, it creates a conflict with reuse of the block through " -"another :c:func:`malloc` call. This is called :dfn:`using freed memory`. It " -"has the same bad consequences as referencing uninitialized data --- core " -"dumps, wrong results, mysterious crashes." -msgstr "" - -#: ../../extending/extending.rst:916 -msgid "" -"Common causes of memory leaks are unusual paths through the code. For " -"instance, a function may allocate a block of memory, do some calculation, " -"and then free the block again. Now a change in the requirements for the " -"function may add a test to the calculation that detects an error condition " -"and can return prematurely from the function. It's easy to forget to free " -"the allocated memory block when taking this premature exit, especially when " -"it is added later to the code. Such leaks, once introduced, often go " -"undetected for a long time: the error exit is taken only in a small fraction " -"of all calls, and most modern machines have plenty of virtual memory, so the " -"leak only becomes apparent in a long-running process that uses the leaking " -"function frequently. Therefore, it's important to prevent leaks from " -"happening by having a coding convention or strategy that minimizes this kind " -"of errors." -msgstr "" - -#: ../../extending/extending.rst:929 -msgid "" -"Since Python makes heavy use of :c:func:`malloc` and :c:func:`free`, it " -"needs a strategy to avoid memory leaks as well as the use of freed memory. " -"The chosen method is called :dfn:`reference counting`. The principle is " -"simple: every object contains a counter, which is incremented when a " -"reference to the object is stored somewhere, and which is decremented when a " -"reference to it is deleted. When the counter reaches zero, the last " -"reference to the object has been deleted and the object is freed." +msgid "Every block of memory allocated with :c:func:`malloc` should eventually be returned to the pool of available memory by exactly one call to :c:func:`free`. It is important to call :c:func:`free` at the right time. If a block's address is forgotten but :c:func:`free` is not called for it, the memory it occupies cannot be reused until the program terminates. This is called a :dfn:`memory leak`. On the other hand, if a program calls :c:func:`free` for a block and then continues to use the block, it creates a conflict with reuse of the block through another :c:func:`malloc` call. This is called :dfn:`using freed memory`. It has the same bad consequences as referencing uninitialized data --- core dumps, wrong results, mysterious crashes." msgstr "" -#: ../../extending/extending.rst:937 -msgid "" -"An alternative strategy is called :dfn:`automatic garbage collection`. " -"(Sometimes, reference counting is also referred to as a garbage collection " -"strategy, hence the use of \"automatic\" to distinguish the two.) The big " -"advantage of automatic garbage collection is that the user doesn't need to " -"call :c:func:`free` explicitly. (Another claimed advantage is an " -"improvement in speed or memory usage --- this is no hard fact however.) The " -"disadvantage is that for C, there is no truly portable automatic garbage " -"collector, while reference counting can be implemented portably (as long as " -"the functions :c:func:`malloc` and :c:func:`free` are available --- which " -"the C Standard guarantees). Maybe some day a sufficiently portable automatic " -"garbage collector will be available for C. Until then, we'll have to live " -"with reference counts." -msgstr "" - -#: ../../extending/extending.rst:949 -msgid "" -"While Python uses the traditional reference counting implementation, it also " -"offers a cycle detector that works to detect reference cycles. This allows " -"applications to not worry about creating direct or indirect circular " -"references; these are the weakness of garbage collection implemented using " -"only reference counting. Reference cycles consist of objects which contain " -"(possibly indirect) references to themselves, so that each object in the " -"cycle has a reference count which is non-zero. Typical reference counting " -"implementations are not able to reclaim the memory belonging to any objects " -"in a reference cycle, or referenced from the objects in the cycle, even " -"though there are no further references to the cycle itself." -msgstr "" - -#: ../../extending/extending.rst:960 -msgid "" -"The cycle detector is able to detect garbage cycles and can reclaim them. " -"The :mod:`gc` module exposes a way to run the detector " -"(the :func:`~gc.collect` function), as well as configuration interfaces and " -"the ability to disable the detector at runtime." +msgid "Common causes of memory leaks are unusual paths through the code. For instance, a function may allocate a block of memory, do some calculation, and then free the block again. Now a change in the requirements for the function may add a test to the calculation that detects an error condition and can return prematurely from the function. It's easy to forget to free the allocated memory block when taking this premature exit, especially when it is added later to the code. Such leaks, once introduced, often go undetected for a long time: the error exit is taken only in a small fraction of all calls, and most modern machines have plenty of virtual memory, so the leak only becomes apparent in a long-running process that uses the leaking function frequently. Therefore, it's important to prevent leaks from happening by having a coding convention or strategy that minimizes this kind of errors." +msgstr "" + +msgid "Since Python makes heavy use of :c:func:`malloc` and :c:func:`free`, it needs a strategy to avoid memory leaks as well as the use of freed memory. The chosen method is called :dfn:`reference counting`. The principle is simple: every object contains a counter, which is incremented when a reference to the object is stored somewhere, and which is decremented when a reference to it is deleted. When the counter reaches zero, the last reference to the object has been deleted and the object is freed." +msgstr "" + +msgid "An alternative strategy is called :dfn:`automatic garbage collection`. (Sometimes, reference counting is also referred to as a garbage collection strategy, hence the use of \"automatic\" to distinguish the two.) The big advantage of automatic garbage collection is that the user doesn't need to call :c:func:`free` explicitly. (Another claimed advantage is an improvement in speed or memory usage --- this is no hard fact however.) The disadvantage is that for C, there is no truly portable automatic garbage collector, while reference counting can be implemented portably (as long as the functions :c:func:`malloc` and :c:func:`free` are available --- which the C Standard guarantees). Maybe some day a sufficiently portable automatic garbage collector will be available for C. Until then, we'll have to live with reference counts." +msgstr "" + +msgid "While Python uses the traditional reference counting implementation, it also offers a cycle detector that works to detect reference cycles. This allows applications to not worry about creating direct or indirect circular references; these are the weakness of garbage collection implemented using only reference counting. Reference cycles consist of objects which contain (possibly indirect) references to themselves, so that each object in the cycle has a reference count which is non-zero. Typical reference counting implementations are not able to reclaim the memory belonging to any objects in a reference cycle, or referenced from the objects in the cycle, even though there are no further references to the cycle itself." +msgstr "" + +msgid "The cycle detector is able to detect garbage cycles and can reclaim them. The :mod:`gc` module exposes a way to run the detector (the :func:`~gc.collect` function), as well as configuration interfaces and the ability to disable the detector at runtime." msgstr "" -#: ../../extending/extending.rst:969 msgid "Reference Counting in Python" msgstr "" -#: ../../extending/extending.rst:971 -msgid "" -"There are two macros, ``Py_INCREF(x)`` and ``Py_DECREF(x)``, which handle " -"the incrementing and decrementing of the reference " -"count. :c:func:`Py_DECREF` also frees the object when the count reaches " -"zero. For flexibility, it doesn't call :c:func:`free` directly --- rather, " -"it makes a call through a function pointer in the object's :dfn:`type " -"object`. For this purpose (and others), every object also contains a " -"pointer to its type object." +msgid "There are two macros, ``Py_INCREF(x)`` and ``Py_DECREF(x)``, which handle the incrementing and decrementing of the reference count. :c:func:`Py_DECREF` also frees the object when the count reaches zero. For flexibility, it doesn't call :c:func:`free` directly --- rather, it makes a call through a function pointer in the object's :dfn:`type object`. For this purpose (and others), every object also contains a pointer to its type object." msgstr "" -#: ../../extending/extending.rst:978 -msgid "" -"The big question now remains: when to use ``Py_INCREF(x)`` and " -"``Py_DECREF(x)``? Let's first introduce some terms. Nobody \"owns\" an " -"object; however, you can :dfn:`own a reference` to an object. An object's " -"reference count is now defined as the number of owned references to it. The " -"owner of a reference is responsible for calling :c:func:`Py_DECREF` when the " -"reference is no longer needed. Ownership of a reference can be " -"transferred. There are three ways to dispose of an owned reference: pass it " -"on, store it, or call :c:func:`Py_DECREF`. Forgetting to dispose of an owned " -"reference creates a memory leak." -msgstr "" - -#: ../../extending/extending.rst:987 -msgid "" -"It is also possible to :dfn:`borrow` [#]_ a reference to an object. The " -"borrower of a reference should not call :c:func:`Py_DECREF`. The borrower " -"must not hold on to the object longer than the owner from which it was " -"borrowed. Using a borrowed reference after the owner has disposed of it " -"risks using freed memory and should be avoided completely [#]_." +msgid "The big question now remains: when to use ``Py_INCREF(x)`` and ``Py_DECREF(x)``? Let's first introduce some terms. Nobody \"owns\" an object; however, you can :dfn:`own a reference` to an object. An object's reference count is now defined as the number of owned references to it. The owner of a reference is responsible for calling :c:func:`Py_DECREF` when the reference is no longer needed. Ownership of a reference can be transferred. There are three ways to dispose of an owned reference: pass it on, store it, or call :c:func:`Py_DECREF`. Forgetting to dispose of an owned reference creates a memory leak." msgstr "" -#: ../../extending/extending.rst:993 -msgid "" -"The advantage of borrowing over owning a reference is that you don't need to " -"take care of disposing of the reference on all possible paths through the " -"code --- in other words, with a borrowed reference you don't run the risk of " -"leaking when a premature exit is taken. The disadvantage of borrowing over " -"owning is that there are some subtle situations where in seemingly correct " -"code a borrowed reference can be used after the owner from which it was " -"borrowed has in fact disposed of it." +msgid "It is also possible to :dfn:`borrow` [#]_ a reference to an object. The borrower of a reference should not call :c:func:`Py_DECREF`. The borrower must not hold on to the object longer than the owner from which it was borrowed. Using a borrowed reference after the owner has disposed of it risks using freed memory and should be avoided completely [#]_." msgstr "" -#: ../../extending/extending.rst:1001 -msgid "" -"A borrowed reference can be changed into an owned reference by " -"calling :c:func:`Py_INCREF`. This does not affect the status of the owner " -"from which the reference was borrowed --- it creates a new owned reference, " -"and gives full owner responsibilities (the new owner must dispose of the " -"reference properly, as well as the previous owner)." +msgid "The advantage of borrowing over owning a reference is that you don't need to take care of disposing of the reference on all possible paths through the code --- in other words, with a borrowed reference you don't run the risk of leaking when a premature exit is taken. The disadvantage of borrowing over owning is that there are some subtle situations where in seemingly correct code a borrowed reference can be used after the owner from which it was borrowed has in fact disposed of it." +msgstr "" + +msgid "A borrowed reference can be changed into an owned reference by calling :c:func:`Py_INCREF`. This does not affect the status of the owner from which the reference was borrowed --- it creates a new owned reference, and gives full owner responsibilities (the new owner must dispose of the reference properly, as well as the previous owner)." msgstr "" -#: ../../extending/extending.rst:1011 msgid "Ownership Rules" msgstr "" -#: ../../extending/extending.rst:1013 -msgid "" -"Whenever an object reference is passed into or out of a function, it is part " -"of the function's interface specification whether ownership is transferred " -"with the reference or not." +msgid "Whenever an object reference is passed into or out of a function, it is part of the function's interface specification whether ownership is transferred with the reference or not." msgstr "" -#: ../../extending/extending.rst:1017 -msgid "" -"Most functions that return a reference to an object pass on ownership with " -"the reference. In particular, all functions whose function it is to create " -"a new object, such as :c:func:`PyLong_FromLong` and :c:func:`Py_BuildValue`, " -"pass ownership to the receiver. Even if the object is not actually new, you " -"still receive ownership of a new reference to that object. For " -"instance, :c:func:`PyLong_FromLong` maintains a cache of popular values and " -"can return a reference to a cached item." +msgid "Most functions that return a reference to an object pass on ownership with the reference. In particular, all functions whose function it is to create a new object, such as :c:func:`PyLong_FromLong` and :c:func:`Py_BuildValue`, pass ownership to the receiver. Even if the object is not actually new, you still receive ownership of a new reference to that object. For instance, :c:func:`PyLong_FromLong` maintains a cache of popular values and can return a reference to a cached item." msgstr "" -#: ../../extending/extending.rst:1025 -msgid "" -"Many functions that extract objects from other objects also transfer " -"ownership with the reference, for " -"instance :c:func:`PyObject_GetAttrString`. The picture is less clear, here, " -"however, since a few common routines are " -"exceptions: :c:func:`PyTuple_GetItem`, :c:func:`PyList_GetItem`, :c:func:`PyDict_GetItem`, " -"and :c:func:`PyDict_GetItemString` all return references that you borrow " -"from the tuple, list or dictionary." +msgid "Many functions that extract objects from other objects also transfer ownership with the reference, for instance :c:func:`PyObject_GetAttrString`. The picture is less clear, here, however, since a few common routines are exceptions: :c:func:`PyTuple_GetItem`, :c:func:`PyList_GetItem`, :c:func:`PyDict_GetItem`, and :c:func:`PyDict_GetItemString` all return references that you borrow from the tuple, list or dictionary." msgstr "" -#: ../../extending/extending.rst:1032 -msgid "" -"The function :c:func:`PyImport_AddModule` also returns a borrowed reference, " -"even though it may actually create the object it returns: this is possible " -"because an owned reference to the object is stored in ``sys.modules``." +msgid "The function :c:func:`PyImport_AddModule` also returns a borrowed reference, even though it may actually create the object it returns: this is possible because an owned reference to the object is stored in ``sys.modules``." msgstr "" -#: ../../extending/extending.rst:1036 -msgid "" -"When you pass an object reference into another function, in general, the " -"function borrows the reference from you --- if it needs to store it, it will " -"use :c:func:`Py_INCREF` to become an independent owner. There are exactly " -"two important exceptions to this rule: :c:func:`PyTuple_SetItem` " -"and :c:func:`PyList_SetItem`. These functions take over ownership of the " -"item passed to them --- even if they fail! (Note " -"that :c:func:`PyDict_SetItem` and friends don't take over ownership --- they " -"are \"normal.\")" +msgid "When you pass an object reference into another function, in general, the function borrows the reference from you --- if it needs to store it, it will use :c:func:`Py_INCREF` to become an independent owner. There are exactly two important exceptions to this rule: :c:func:`PyTuple_SetItem` and :c:func:`PyList_SetItem`. These functions take over ownership of the item passed to them --- even if they fail! (Note that :c:func:`PyDict_SetItem` and friends don't take over ownership --- they are \"normal.\")" msgstr "" -#: ../../extending/extending.rst:1044 -msgid "" -"When a C function is called from Python, it borrows references to its " -"arguments from the caller. The caller owns a reference to the object, so " -"the borrowed reference's lifetime is guaranteed until the function returns. " -"Only when such a borrowed reference must be stored or passed on, it must be " -"turned into an owned reference by calling :c:func:`Py_INCREF`." +msgid "When a C function is called from Python, it borrows references to its arguments from the caller. The caller owns a reference to the object, so the borrowed reference's lifetime is guaranteed until the function returns. Only when such a borrowed reference must be stored or passed on, it must be turned into an owned reference by calling :c:func:`Py_INCREF`." msgstr "" -#: ../../extending/extending.rst:1050 -msgid "" -"The object reference returned from a C function that is called from Python " -"must be an owned reference --- ownership is transferred from the function to " -"its caller." +msgid "The object reference returned from a C function that is called from Python must be an owned reference --- ownership is transferred from the function to its caller." msgstr "" -#: ../../extending/extending.rst:1058 msgid "Thin Ice" msgstr "" -#: ../../extending/extending.rst:1060 -msgid "" -"There are a few situations where seemingly harmless use of a borrowed " -"reference can lead to problems. These all have to do with implicit " -"invocations of the interpreter, which can cause the owner of a reference to " -"dispose of it." +msgid "There are a few situations where seemingly harmless use of a borrowed reference can lead to problems. These all have to do with implicit invocations of the interpreter, which can cause the owner of a reference to dispose of it." msgstr "" -#: ../../extending/extending.rst:1064 -msgid "" -"The first and most important case to know about is using :c:func:`Py_DECREF` " -"on an unrelated object while borrowing a reference to a list item. For " -"instance::" +msgid "The first and most important case to know about is using :c:func:`Py_DECREF` on an unrelated object while borrowing a reference to a list item. For instance::" msgstr "" -#: ../../extending/extending.rst:1067 msgid "" "void\n" "bug(PyObject *list)\n" @@ -1516,48 +836,18 @@ msgid "" "}" msgstr "" -#: ../../extending/extending.rst:1076 -msgid "" -"This function first borrows a reference to ``list[0]``, then replaces " -"``list[1]`` with the value ``0``, and finally prints the borrowed reference. " -"Looks harmless, right? But it's not!" +msgid "This function first borrows a reference to ``list[0]``, then replaces ``list[1]`` with the value ``0``, and finally prints the borrowed reference. Looks harmless, right? But it's not!" msgstr "" -#: ../../extending/extending.rst:1080 -msgid "" -"Let's follow the control flow into :c:func:`PyList_SetItem`. The list owns " -"references to all its items, so when item 1 is replaced, it has to dispose " -"of the original item 1. Now let's suppose the original item 1 was an " -"instance of a user-defined class, and let's further suppose that the class " -"defined a :meth:`!__del__` method. If this class instance has a reference " -"count of 1, disposing of it will call its :meth:`!__del__` method. " -"Internally, :c:func:`PyList_SetItem` calls :c:func:`Py_DECREF` on the " -"replaced item, which invokes replaced item's " -"corresponding :c:member:`~PyTypeObject.tp_dealloc` function. During " -"deallocation, :c:member:`~PyTypeObject.tp_dealloc` " -"calls :c:member:`~PyTypeObject.tp_finalize`, which is mapped to the :meth:`!" -"__del__` method for class instances (see :pep:`442`). This entire sequence " -"happens synchronously within the :c:func:`PyList_SetItem` call." -msgstr "" - -#: ../../extending/extending.rst:1094 -msgid "" -"Since it is written in Python, the :meth:`!__del__` method can execute " -"arbitrary Python code. Could it perhaps do something to invalidate the " -"reference to ``item`` in :c:func:`!bug`? You bet! Assuming that the list " -"passed into :c:func:`!bug` is accessible to the :meth:`!__del__` method, it " -"could execute a statement to the effect of ``del list[0]``, and assuming " -"this was the last reference to that object, it would free the memory " -"associated with it, thereby invalidating ``item``." +msgid "Let's follow the control flow into :c:func:`PyList_SetItem`. The list owns references to all its items, so when item 1 is replaced, it has to dispose of the original item 1. Now let's suppose the original item 1 was an instance of a user-defined class, and let's further suppose that the class defined a :meth:`!__del__` method. If this class instance has a reference count of 1, disposing of it will call its :meth:`!__del__` method. Internally, :c:func:`PyList_SetItem` calls :c:func:`Py_DECREF` on the replaced item, which invokes replaced item's corresponding :c:member:`~PyTypeObject.tp_dealloc` function. During deallocation, :c:member:`~PyTypeObject.tp_dealloc` calls :c:member:`~PyTypeObject.tp_finalize`, which is mapped to the :meth:`!__del__` method for class instances (see :pep:`442`). This entire sequence happens synchronously within the :c:func:`PyList_SetItem` call." msgstr "" -#: ../../extending/extending.rst:1102 -msgid "" -"The solution, once you know the source of the problem, is easy: temporarily " -"increment the reference count. The correct version of the function reads::" +msgid "Since it is written in Python, the :meth:`!__del__` method can execute arbitrary Python code. Could it perhaps do something to invalidate the reference to ``item`` in :c:func:`!bug`? You bet! Assuming that the list passed into :c:func:`!bug` is accessible to the :meth:`!__del__` method, it could execute a statement to the effect of ``del list[0]``, and assuming this was the last reference to that object, it would free the memory associated with it, thereby invalidating ``item``." +msgstr "" + +msgid "The solution, once you know the source of the problem, is easy: temporarily increment the reference count. The correct version of the function reads::" msgstr "" -#: ../../extending/extending.rst:1105 msgid "" "void\n" "no_bug(PyObject *list)\n" @@ -1571,28 +861,12 @@ msgid "" "}" msgstr "" -#: ../../extending/extending.rst:1116 -msgid "" -"This is a true story. An older version of Python contained variants of this " -"bug and someone spent a considerable amount of time in a C debugger to " -"figure out why his :meth:`!__del__` methods would fail..." +msgid "This is a true story. An older version of Python contained variants of this bug and someone spent a considerable amount of time in a C debugger to figure out why his :meth:`!__del__` methods would fail..." +msgstr "" + +msgid "The second case of problems with a borrowed reference is a variant involving threads. Normally, multiple threads in the Python interpreter can't get in each other's way, because there is a :term:`global lock ` protecting Python's entire object space. However, it is possible to temporarily release this lock using the macro :c:macro:`Py_BEGIN_ALLOW_THREADS`, and to re-acquire it using :c:macro:`Py_END_ALLOW_THREADS`. This is common around blocking I/O calls, to let other threads use the processor while waiting for the I/O to complete. Obviously, the following function has the same problem as the previous one::" msgstr "" -#: ../../extending/extending.rst:1120 -msgid "" -"The second case of problems with a borrowed reference is a variant involving " -"threads. Normally, multiple threads in the Python interpreter can't get in " -"each other's way, because there is a :term:`global lock ` protecting Python's entire object space. However, it is possible to " -"temporarily release this lock using the " -"macro :c:macro:`Py_BEGIN_ALLOW_THREADS`, and to re-acquire it " -"using :c:macro:`Py_END_ALLOW_THREADS`. This is common around blocking I/O " -"calls, to let other threads use the processor while waiting for the I/O to " -"complete. Obviously, the following function has the same problem as the " -"previous one::" -msgstr "" - -#: ../../extending/extending.rst:1130 msgid "" "void\n" "bug(PyObject *list)\n" @@ -1605,195 +879,72 @@ msgid "" "}" msgstr "" -#: ../../extending/extending.rst:1144 msgid "NULL Pointers" msgstr "" -#: ../../extending/extending.rst:1146 -msgid "" -"In general, functions that take object references as arguments do not expect " -"you to pass them ``NULL`` pointers, and will dump core (or cause later core " -"dumps) if you do so. Functions that return object references generally " -"return ``NULL`` only to indicate that an exception occurred. The reason for " -"not testing for ``NULL`` arguments is that functions often pass the objects " -"they receive on to other function --- if each function were to test for " -"``NULL``, there would be a lot of redundant tests and the code would run " -"more slowly." +msgid "In general, functions that take object references as arguments do not expect you to pass them ``NULL`` pointers, and will dump core (or cause later core dumps) if you do so. Functions that return object references generally return ``NULL`` only to indicate that an exception occurred. The reason for not testing for ``NULL`` arguments is that functions often pass the objects they receive on to other function --- if each function were to test for ``NULL``, there would be a lot of redundant tests and the code would run more slowly." msgstr "" -#: ../../extending/extending.rst:1154 -msgid "" -"It is better to test for ``NULL`` only at the \"source:\" when a pointer " -"that may be ``NULL`` is received, for example, from :c:func:`malloc` or from " -"a function that may raise an exception." +msgid "It is better to test for ``NULL`` only at the \"source:\" when a pointer that may be ``NULL`` is received, for example, from :c:func:`malloc` or from a function that may raise an exception." msgstr "" -#: ../../extending/extending.rst:1158 -msgid "" -"The macros :c:func:`Py_INCREF` and :c:func:`Py_DECREF` do not check for " -"``NULL`` pointers --- however, their variants :c:func:`Py_XINCREF` " -"and :c:func:`Py_XDECREF` do." +msgid "The macros :c:func:`Py_INCREF` and :c:func:`Py_DECREF` do not check for ``NULL`` pointers --- however, their variants :c:func:`Py_XINCREF` and :c:func:`Py_XDECREF` do." msgstr "" -#: ../../extending/extending.rst:1162 -msgid "" -"The macros for checking for a particular object type (``Pytype_Check()``) " -"don't check for ``NULL`` pointers --- again, there is much code that calls " -"several of these in a row to test an object against various different " -"expected types, and this would generate redundant tests. There are no " -"variants with ``NULL`` checking." +msgid "The macros for checking for a particular object type (``Pytype_Check()``) don't check for ``NULL`` pointers --- again, there is much code that calls several of these in a row to test an object against various different expected types, and this would generate redundant tests. There are no variants with ``NULL`` checking." msgstr "" -#: ../../extending/extending.rst:1168 -msgid "" -"The C function calling mechanism guarantees that the argument list passed to " -"C functions (``args`` in the examples) is never ``NULL`` --- in fact it " -"guarantees that it is always a tuple [#]_." +msgid "The C function calling mechanism guarantees that the argument list passed to C functions (``args`` in the examples) is never ``NULL`` --- in fact it guarantees that it is always a tuple [#]_." msgstr "" -#: ../../extending/extending.rst:1172 -msgid "" -"It is a severe error to ever let a ``NULL`` pointer \"escape\" to the Python " -"user." +msgid "It is a severe error to ever let a ``NULL`` pointer \"escape\" to the Python user." msgstr "" -#: ../../extending/extending.rst:1183 msgid "Writing Extensions in C++" msgstr "" -#: ../../extending/extending.rst:1185 -msgid "" -"It is possible to write extension modules in C++. Some restrictions apply. " -"If the main program (the Python interpreter) is compiled and linked by the C " -"compiler, global or static objects with constructors cannot be used. This " -"is not a problem if the main program is linked by the C++ compiler. " -"Functions that will be called by the Python interpreter (in particular, " -"module initialization functions) have to be declared using ``extern \"C\"``. " -"It is unnecessary to enclose the Python header files in ``extern \"C\" {...}" -"`` --- they use this form already if the symbol ``__cplusplus`` is defined " -"(all recent C++ compilers define this symbol)." -msgstr "" - -#: ../../extending/extending.rst:1199 +msgid "It is possible to write extension modules in C++. Some restrictions apply. If the main program (the Python interpreter) is compiled and linked by the C compiler, global or static objects with constructors cannot be used. This is not a problem if the main program is linked by the C++ compiler. Functions that will be called by the Python interpreter (in particular, module initialization functions) have to be declared using ``extern \"C\"``. It is unnecessary to enclose the Python header files in ``extern \"C\" {...}`` --- they use this form already if the symbol ``__cplusplus`` is defined (all recent C++ compilers define this symbol)." +msgstr "" + msgid "Providing a C API for an Extension Module" msgstr "" -#: ../../extending/extending.rst:1204 -msgid "" -"Many extension modules just provide new functions and types to be used from " -"Python, but sometimes the code in an extension module can be useful for " -"other extension modules. For example, an extension module could implement a " -"type \"collection\" which works like lists without order. Just like the " -"standard Python list type has a C API which permits extension modules to " -"create and manipulate lists, this new collection type should have a set of C " -"functions for direct manipulation from other extension modules." +msgid "Many extension modules just provide new functions and types to be used from Python, but sometimes the code in an extension module can be useful for other extension modules. For example, an extension module could implement a type \"collection\" which works like lists without order. Just like the standard Python list type has a C API which permits extension modules to create and manipulate lists, this new collection type should have a set of C functions for direct manipulation from other extension modules." msgstr "" -#: ../../extending/extending.rst:1212 -msgid "" -"At first sight this seems easy: just write the functions (without declaring " -"them ``static``, of course), provide an appropriate header file, and " -"document the C API. And in fact this would work if all extension modules " -"were always linked statically with the Python interpreter. When modules are " -"used as shared libraries, however, the symbols defined in one module may not " -"be visible to another module. The details of visibility depend on the " -"operating system; some systems use one global namespace for the Python " -"interpreter and all extension modules (Windows, for example), whereas others " -"require an explicit list of imported symbols at module link time (AIX is one " -"example), or offer a choice of different strategies (most Unices). And even " -"if symbols are globally visible, the module whose functions one wishes to " -"call might not have been loaded yet!" -msgstr "" - -#: ../../extending/extending.rst:1224 -msgid "" -"Portability therefore requires not to make any assumptions about symbol " -"visibility. This means that all symbols in extension modules should be " -"declared ``static``, except for the module's initialization function, in " -"order to avoid name clashes with other extension modules (as discussed in " -"section :ref:`methodtable`). And it means that symbols that *should* be " -"accessible from other extension modules must be exported in a different way." +msgid "At first sight this seems easy: just write the functions (without declaring them ``static``, of course), provide an appropriate header file, and document the C API. And in fact this would work if all extension modules were always linked statically with the Python interpreter. When modules are used as shared libraries, however, the symbols defined in one module may not be visible to another module. The details of visibility depend on the operating system; some systems use one global namespace for the Python interpreter and all extension modules (Windows, for example), whereas others require an explicit list of imported symbols at module link time (AIX is one example), or offer a choice of different strategies (most Unices). And even if symbols are globally visible, the module whose functions one wishes to call might not have been loaded yet!" msgstr "" -#: ../../extending/extending.rst:1231 -msgid "" -"Python provides a special mechanism to pass C-level information (pointers) " -"from one extension module to another one: Capsules. A Capsule is a Python " -"data type which stores a pointer (:c:expr:`void \\*`). Capsules can only be " -"created and accessed via their C API, but they can be passed around like any " -"other Python object. In particular, they can be assigned to a name in an " -"extension module's namespace. Other extension modules can then import this " -"module, retrieve the value of this name, and then retrieve the pointer from " -"the Capsule." +msgid "Portability therefore requires not to make any assumptions about symbol visibility. This means that all symbols in extension modules should be declared ``static``, except for the module's initialization function, in order to avoid name clashes with other extension modules (as discussed in section :ref:`methodtable`). And it means that symbols that *should* be accessible from other extension modules must be exported in a different way." msgstr "" -#: ../../extending/extending.rst:1239 -msgid "" -"There are many ways in which Capsules can be used to export the C API of an " -"extension module. Each function could get its own Capsule, or all C API " -"pointers could be stored in an array whose address is published in a " -"Capsule. And the various tasks of storing and retrieving the pointers can be " -"distributed in different ways between the module providing the code and the " -"client modules." +msgid "Python provides a special mechanism to pass C-level information (pointers) from one extension module to another one: Capsules. A Capsule is a Python data type which stores a pointer (:c:expr:`void \\*`). Capsules can only be created and accessed via their C API, but they can be passed around like any other Python object. In particular, they can be assigned to a name in an extension module's namespace. Other extension modules can then import this module, retrieve the value of this name, and then retrieve the pointer from the Capsule." msgstr "" -#: ../../extending/extending.rst:1245 -msgid "" -"Whichever method you choose, it's important to name your Capsules properly. " -"The function :c:func:`PyCapsule_New` takes a name parameter (:c:expr:`const " -"char \\*`); you're permitted to pass in a ``NULL`` name, but we strongly " -"encourage you to specify a name. Properly named Capsules provide a degree " -"of runtime type-safety; there is no feasible way to tell one unnamed Capsule " -"from another." +msgid "There are many ways in which Capsules can be used to export the C API of an extension module. Each function could get its own Capsule, or all C API pointers could be stored in an array whose address is published in a Capsule. And the various tasks of storing and retrieving the pointers can be distributed in different ways between the module providing the code and the client modules." msgstr "" -#: ../../extending/extending.rst:1252 -msgid "" -"In particular, Capsules used to expose C APIs should be given a name " -"following this convention::" +msgid "Whichever method you choose, it's important to name your Capsules properly. The function :c:func:`PyCapsule_New` takes a name parameter (:c:expr:`const char \\*`); you're permitted to pass in a ``NULL`` name, but we strongly encourage you to specify a name. Properly named Capsules provide a degree of runtime type-safety; there is no feasible way to tell one unnamed Capsule from another." +msgstr "" + +msgid "In particular, Capsules used to expose C APIs should be given a name following this convention::" msgstr "" -#: ../../extending/extending.rst:1255 msgid "modulename.attributename" msgstr "" -#: ../../extending/extending.rst:1257 -msgid "" -"The convenience function :c:func:`PyCapsule_Import` makes it easy to load a " -"C API provided via a Capsule, but only if the Capsule's name matches this " -"convention. This behavior gives C API users a high degree of certainty that " -"the Capsule they load contains the correct C API." +msgid "The convenience function :c:func:`PyCapsule_Import` makes it easy to load a C API provided via a Capsule, but only if the Capsule's name matches this convention. This behavior gives C API users a high degree of certainty that the Capsule they load contains the correct C API." msgstr "" -#: ../../extending/extending.rst:1262 -msgid "" -"The following example demonstrates an approach that puts most of the burden " -"on the writer of the exporting module, which is appropriate for commonly " -"used library modules. It stores all C API pointers (just one in the " -"example!) in an array of :c:expr:`void` pointers which becomes the value of " -"a Capsule. The header file corresponding to the module provides a macro that " -"takes care of importing the module and retrieving its C API pointers; client " -"modules only have to call this macro before accessing the C API." +msgid "The following example demonstrates an approach that puts most of the burden on the writer of the exporting module, which is appropriate for commonly used library modules. It stores all C API pointers (just one in the example!) in an array of :c:expr:`void` pointers which becomes the value of a Capsule. The header file corresponding to the module provides a macro that takes care of importing the module and retrieving its C API pointers; client modules only have to call this macro before accessing the C API." msgstr "" -#: ../../extending/extending.rst:1270 -msgid "" -"The exporting module is a modification of the :mod:`!spam` module from " -"section :ref:`extending-simpleexample`. The function :func:`!spam.system` " -"does not call the C library function :c:func:`system` directly, but a " -"function :c:func:`!PySpam_System`, which would of course do something more " -"complicated in reality (such as adding \"spam\" to every command). This " -"function :c:func:`!PySpam_System` is also exported to other extension " -"modules." +msgid "The exporting module is a modification of the :mod:`!spam` module from section :ref:`extending-simpleexample`. The function :func:`!spam.system` does not call the C library function :c:func:`system` directly, but a function :c:func:`!PySpam_System`, which would of course do something more complicated in reality (such as adding \"spam\" to every command). This function :c:func:`!PySpam_System` is also exported to other extension modules." msgstr "" -#: ../../extending/extending.rst:1277 -msgid "" -"The function :c:func:`!PySpam_System` is a plain C function, declared " -"``static`` like everything else::" +msgid "The function :c:func:`!PySpam_System` is a plain C function, declared ``static`` like everything else::" msgstr "" -#: ../../extending/extending.rst:1280 msgid "" "static int\n" "PySpam_System(const char *command)\n" @@ -1802,11 +953,9 @@ msgid "" "}" msgstr "" -#: ../../extending/extending.rst:1286 msgid "The function :c:func:`!spam_system` is modified in a trivial way::" msgstr "" -#: ../../extending/extending.rst:1288 msgid "" "static PyObject *\n" "spam_system(PyObject *self, PyObject *args)\n" @@ -1821,33 +970,23 @@ msgid "" "}" msgstr "" -#: ../../extending/extending.rst:1300 msgid "In the beginning of the module, right after the line ::" msgstr "" -#: ../../extending/extending.rst:1302 msgid "#include " msgstr "" -#: ../../extending/extending.rst:1304 msgid "two more lines must be added::" msgstr "" -#: ../../extending/extending.rst:1306 msgid "" "#define SPAM_MODULE\n" "#include \"spammodule.h\"" msgstr "" -#: ../../extending/extending.rst:1309 -msgid "" -"The ``#define`` is used to tell the header file that it is being included in " -"the exporting module, not a client module. Finally, the " -"module's :c:data:`mod_exec ` function must take care of " -"initializing the C API pointer array::" +msgid "The ``#define`` is used to tell the header file that it is being included in the exporting module, not a client module. Finally, the module's :c:data:`mod_exec ` function must take care of initializing the C API pointer array::" msgstr "" -#: ../../extending/extending.rst:1313 msgid "" "static int\n" "spam_module_exec(PyObject *m)\n" @@ -1859,8 +998,7 @@ msgid "" " PySpam_API[PySpam_System_NUM] = (void *)PySpam_System;\n" "\n" " /* Create a Capsule containing the API pointer array's address */\n" -" c_api_object = PyCapsule_New((void *)PySpam_API, \"spam._C_API\", " -"NULL);\n" +" c_api_object = PyCapsule_New((void *)PySpam_API, \"spam._C_API\", NULL);\n" "\n" " if (PyModule_Add(m, \"_C_API\", c_api_object) < 0) {\n" " return -1;\n" @@ -1870,19 +1008,12 @@ msgid "" "}" msgstr "" -#: ../../extending/extending.rst:1332 -msgid "" -"Note that ``PySpam_API`` is declared ``static``; otherwise the pointer array " -"would disappear when :c:func:`!PyInit_spam` terminates!" +msgid "Note that ``PySpam_API`` is declared ``static``; otherwise the pointer array would disappear when :c:func:`!PyInit_spam` terminates!" msgstr "" -#: ../../extending/extending.rst:1335 -msgid "" -"The bulk of the work is in the header file :file:`spammodule.h`, which looks " -"like this::" +msgid "The bulk of the work is in the header file :file:`spammodule.h`, which looks like this::" msgstr "" -#: ../../extending/extending.rst:1338 msgid "" "#ifndef Py_SPAMMODULE_H\n" "#define Py_SPAMMODULE_H\n" @@ -1912,8 +1043,7 @@ msgid "" "static void **PySpam_API;\n" "\n" "#define PySpam_System \\\n" -" (*(PySpam_System_RETURN (*)PySpam_System_PROTO) " -"PySpam_API[PySpam_System_NUM])\n" +" (*(PySpam_System_RETURN (*)PySpam_System_PROTO) PySpam_API[PySpam_System_NUM])\n" "\n" "/* Return -1 on error, 0 on success.\n" " * PyCapsule_Import will set an exception if there's an error.\n" @@ -1934,15 +1064,9 @@ msgid "" "#endif /* !defined(Py_SPAMMODULE_H) */" msgstr "" -#: ../../extending/extending.rst:1386 -msgid "" -"All that a client module must do in order to have access to the " -"function :c:func:`!PySpam_System` is to call the function (or rather " -"macro) :c:func:`!import_spam` in its :c:data:`mod_exec ` " -"function::" +msgid "All that a client module must do in order to have access to the function :c:func:`!PySpam_System` is to call the function (or rather macro) :c:func:`!import_spam` in its :c:data:`mod_exec ` function::" msgstr "" -#: ../../extending/extending.rst:1390 msgid "" "static int\n" "client_module_exec(PyObject *m)\n" @@ -1955,64 +1079,35 @@ msgid "" "}" msgstr "" -#: ../../extending/extending.rst:1400 -msgid "" -"The main disadvantage of this approach is that the file :file:`spammodule.h` " -"is rather complicated. However, the basic structure is the same for each " -"function that is exported, so it has to be learned only once." +msgid "The main disadvantage of this approach is that the file :file:`spammodule.h` is rather complicated. However, the basic structure is the same for each function that is exported, so it has to be learned only once." msgstr "" -#: ../../extending/extending.rst:1404 -msgid "" -"Finally it should be mentioned that Capsules offer additional functionality, " -"which is especially useful for memory allocation and deallocation of the " -"pointer stored in a Capsule. The details are described in the Python/C API " -"Reference Manual in the section :ref:`capsules` and in the implementation of " -"Capsules (files :file:`Include/pycapsule.h` and :file:`Objects/pycapsule.c` " -"in the Python source code distribution)." +msgid "Finally it should be mentioned that Capsules offer additional functionality, which is especially useful for memory allocation and deallocation of the pointer stored in a Capsule. The details are described in the Python/C API Reference Manual in the section :ref:`capsules` and in the implementation of Capsules (files :file:`Include/pycapsule.h` and :file:`Objects/pycapsule.c` in the Python source code distribution)." msgstr "" -#: ../../extending/extending.rst:1412 msgid "Footnotes" msgstr "" -#: ../../extending/extending.rst:1413 -msgid "" -"An interface for this function already exists in the standard " -"module :mod:`os` --- it was chosen as a simple and straightforward example." +msgid "An interface for this function already exists in the standard module :mod:`os` --- it was chosen as a simple and straightforward example." msgstr "" -#: ../../extending/extending.rst:1416 -msgid "" -"The metaphor of \"borrowing\" a reference is not completely correct: the " -"owner still has a copy of the reference." +msgid "The metaphor of \"borrowing\" a reference is not completely correct: the owner still has a copy of the reference." msgstr "" -#: ../../extending/extending.rst:1419 -msgid "" -"Checking that the reference count is at least 1 **does not work** --- the " -"reference count itself could be in freed memory and may thus be reused for " -"another object!" +msgid "Checking that the reference count is at least 1 **does not work** --- the reference count itself could be in freed memory and may thus be reused for another object!" msgstr "" -#: ../../extending/extending.rst:1423 -msgid "" -"These guarantees don't hold when you use the \"old\" style calling " -"convention --- this is still found in much existing code." +msgid "These guarantees don't hold when you use the \"old\" style calling convention --- this is still found in much existing code." msgstr "" -#: ../../extending/extending.rst:591 msgid "PyObject_CallObject (C function)" msgstr "" -#: ../../extending/extending.rst:682 msgid "PyArg_ParseTuple (C function)" msgstr "" -#: ../../extending/extending.rst:774 msgid "PyArg_ParseTupleAndKeywords (C function)" msgstr "" -#: ../../extending/extending.rst:795 msgid "Philbrick, Geoff" msgstr "" diff --git a/extending/index.po b/extending/index.po index 2d2b041a..17852e6a 100644 --- a/extending/index.po +++ b/extending/index.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:52+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,72 +21,35 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../extending/index.rst:5 msgid "Extending and Embedding the Python Interpreter" msgstr "" -#: ../../extending/index.rst:7 -msgid "" -"This document describes how to write modules in C or C++ to extend the " -"Python interpreter with new modules. Those modules can not only define new " -"functions but also new object types and their methods. The document also " -"describes how to embed the Python interpreter in another application, for " -"use as an extension language. Finally, it shows how to compile and link " -"extension modules so that they can be loaded dynamically (at run time) into " -"the interpreter, if the underlying operating system supports this feature." +msgid "This document describes how to write modules in C or C++ to extend the Python interpreter with new modules. Those modules can not only define new functions but also new object types and their methods. The document also describes how to embed the Python interpreter in another application, for use as an extension language. Finally, it shows how to compile and link extension modules so that they can be loaded dynamically (at run time) into the interpreter, if the underlying operating system supports this feature." msgstr "" -#: ../../extending/index.rst:15 -msgid "" -"This document assumes basic knowledge about Python. For an informal " -"introduction to the language, see :ref:`tutorial-index`. :ref:`reference-" -"index` gives a more formal definition of the language. :ref:`library-index` " -"documents the existing object types, functions and modules (both built-in " -"and written in Python) that give the language its wide application range." +msgid "This document assumes basic knowledge about Python. For an informal introduction to the language, see :ref:`tutorial-index`. :ref:`reference-index` gives a more formal definition of the language. :ref:`library-index` documents the existing object types, functions and modules (both built-in and written in Python) that give the language its wide application range." msgstr "" -#: ../../extending/index.rst:21 -msgid "" -"For a detailed description of the whole Python/C API, see the " -"separate :ref:`c-api-index`." +msgid "For a detailed description of the whole Python/C API, see the separate :ref:`c-api-index`." msgstr "" -#: ../../extending/index.rst:26 msgid "Recommended third party tools" msgstr "" -#: ../../extending/index.rst:28 -msgid "" -"This guide only covers the basic tools for creating extensions provided as " -"part of this version of CPython. Some :ref:`third party tools ` " -"offer both simpler and more sophisticated approaches to creating C and C++ " -"extensions for Python." +msgid "This guide only covers the basic tools for creating extensions provided as part of this version of CPython. Some :ref:`third party tools ` offer both simpler and more sophisticated approaches to creating C and C++ extensions for Python." msgstr "" -#: ../../extending/index.rst:35 msgid "Creating extensions without third party tools" msgstr "" -#: ../../extending/index.rst:37 -msgid "" -"This section of the guide covers creating C and C++ extensions without " -"assistance from third party tools. It is intended primarily for creators of " -"those tools, rather than being a recommended way to create your own C " -"extensions." +msgid "This section of the guide covers creating C and C++ extensions without assistance from third party tools. It is intended primarily for creators of those tools, rather than being a recommended way to create your own C extensions." msgstr "" -#: ../../extending/index.rst:44 msgid ":pep:`489` -- Multi-phase extension module initialization" msgstr "" -#: ../../extending/index.rst:57 msgid "Embedding the CPython runtime in a larger application" msgstr "" -#: ../../extending/index.rst:59 -msgid "" -"Sometimes, rather than creating an extension that runs inside the Python " -"interpreter as the main application, it is desirable to instead embed the " -"CPython runtime inside a larger application. This section covers some of the " -"details involved in doing that successfully." +msgid "Sometimes, rather than creating an extension that runs inside the Python interpreter as the main application, it is desirable to instead embed the CPython runtime inside a larger application. This section covers some of the details involved in doing that successfully." msgstr "" diff --git a/extending/newtypes.po b/extending/newtypes.po index 386334aa..560920b5 100644 --- a/extending/newtypes.po +++ b/extending/newtypes.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:52+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,23 +24,15 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../extending/newtypes.rst:7 msgid "Defining Extension Types: Assorted Topics" msgstr "" -#: ../../extending/newtypes.rst:11 -msgid "" -"This section aims to give a quick fly-by on the various type methods you can " -"implement and what they do." +msgid "This section aims to give a quick fly-by on the various type methods you can implement and what they do." msgstr "" -#: ../../extending/newtypes.rst:14 -msgid "" -"Here is the definition of :c:type:`PyTypeObject`, with some fields only used " -"in :ref:`debug builds ` omitted:" +msgid "Here is the definition of :c:type:`PyTypeObject`, with some fields only used in :ref:`debug builds ` omitted:" msgstr "" -#: ../../extending/newtypes.rst:17 msgid "" "typedef struct _typeobject {\n" " PyObject_VAR_HEAD\n" @@ -139,81 +131,42 @@ msgid "" "} PyTypeObject;\n" msgstr "" -#: ../../extending/newtypes.rst:20 -msgid "" -"Now that's a *lot* of methods. Don't worry too much though -- if you have a " -"type you want to define, the chances are very good that you will only " -"implement a handful of these." +msgid "Now that's a *lot* of methods. Don't worry too much though -- if you have a type you want to define, the chances are very good that you will only implement a handful of these." msgstr "" -#: ../../extending/newtypes.rst:24 -msgid "" -"As you probably expect by now, we're going to go over this and give more " -"information about the various handlers. We won't go in the order they are " -"defined in the structure, because there is a lot of historical baggage that " -"impacts the ordering of the fields. It's often easiest to find an example " -"that includes the fields you need and then change the values to suit your " -"new type. ::" +msgid "As you probably expect by now, we're going to go over this and give more information about the various handlers. We won't go in the order they are defined in the structure, because there is a lot of historical baggage that impacts the ordering of the fields. It's often easiest to find an example that includes the fields you need and then change the values to suit your new type. ::" msgstr "" -#: ../../extending/newtypes.rst:31 msgid "const char *tp_name; /* For printing */" msgstr "" -#: ../../extending/newtypes.rst:33 -msgid "" -"The name of the type -- as mentioned in the previous chapter, this will " -"appear in various places, almost entirely for diagnostic purposes. Try to " -"choose something that will be helpful in such a situation! ::" +msgid "The name of the type -- as mentioned in the previous chapter, this will appear in various places, almost entirely for diagnostic purposes. Try to choose something that will be helpful in such a situation! ::" msgstr "" -#: ../../extending/newtypes.rst:37 msgid "Py_ssize_t tp_basicsize, tp_itemsize; /* For allocation */" msgstr "" -#: ../../extending/newtypes.rst:39 -msgid "" -"These fields tell the runtime how much memory to allocate when new objects " -"of this type are created. Python has some built-in support for variable " -"length structures (think: strings, tuples) which is where " -"the :c:member:`~PyTypeObject.tp_itemsize` field comes in. This will be " -"dealt with later. ::" +msgid "These fields tell the runtime how much memory to allocate when new objects of this type are created. Python has some built-in support for variable length structures (think: strings, tuples) which is where the :c:member:`~PyTypeObject.tp_itemsize` field comes in. This will be dealt with later. ::" msgstr "" -#: ../../extending/newtypes.rst:44 msgid "const char *tp_doc;" msgstr "" -#: ../../extending/newtypes.rst:46 -msgid "" -"Here you can put a string (or its address) that you want returned when the " -"Python script references ``obj.__doc__`` to retrieve the doc string." +msgid "Here you can put a string (or its address) that you want returned when the Python script references ``obj.__doc__`` to retrieve the doc string." msgstr "" -#: ../../extending/newtypes.rst:49 -msgid "" -"Now we come to the basic type methods -- the ones most extension types will " -"implement." +msgid "Now we come to the basic type methods -- the ones most extension types will implement." msgstr "" -#: ../../extending/newtypes.rst:54 msgid "Finalization and De-allocation" msgstr "" -#: ../../extending/newtypes.rst:64 msgid "destructor tp_dealloc;" msgstr "" -#: ../../extending/newtypes.rst:66 -msgid "" -"This function is called when the reference count of the instance of your " -"type is reduced to zero and the Python interpreter wants to reclaim it. If " -"your type has memory to free or other clean-up to perform, you can put it " -"here. The object itself needs to be freed here as well. Here is an example " -"of this function::" +msgid "This function is called when the reference count of the instance of your type is reduced to zero and the Python interpreter wants to reclaim it. If your type has memory to free or other clean-up to perform, you can put it here. The object itself needs to be freed here as well. Here is an example of this function::" msgstr "" -#: ../../extending/newtypes.rst:72 msgid "" "static void\n" "newdatatype_dealloc(PyObject *op)\n" @@ -224,13 +177,9 @@ msgid "" "}" msgstr "" -#: ../../extending/newtypes.rst:80 -msgid "" -"If your type supports garbage collection, the destructor should " -"call :c:func:`PyObject_GC_UnTrack` before clearing any member fields::" +msgid "If your type supports garbage collection, the destructor should call :c:func:`PyObject_GC_UnTrack` before clearing any member fields::" msgstr "" -#: ../../extending/newtypes.rst:83 msgid "" "static void\n" "newdatatype_dealloc(PyObject *op)\n" @@ -243,22 +192,9 @@ msgid "" "}" msgstr "" -#: ../../extending/newtypes.rst:97 -msgid "" -"One important requirement of the deallocator function is that it leaves any " -"pending exceptions alone. This is important since deallocators are " -"frequently called as the interpreter unwinds the Python stack; when the " -"stack is unwound due to an exception (rather than normal returns), nothing " -"is done to protect the deallocators from seeing that an exception has " -"already been set. Any actions which a deallocator performs which may cause " -"additional Python code to be executed may detect that an exception has been " -"set. This can lead to misleading errors from the interpreter. The proper " -"way to protect against this is to save a pending exception before performing " -"the unsafe action, and restoring it when done. This can be done using " -"the :c:func:`PyErr_Fetch` and :c:func:`PyErr_Restore` functions::" -msgstr "" - -#: ../../extending/newtypes.rst:109 +msgid "One important requirement of the deallocator function is that it leaves any pending exceptions alone. This is important since deallocators are frequently called as the interpreter unwinds the Python stack; when the stack is unwound due to an exception (rather than normal returns), nothing is done to protect the deallocators from seeing that an exception has already been set. Any actions which a deallocator performs which may cause additional Python code to be executed may detect that an exception has been set. This can lead to misleading errors from the interpreter. The proper way to protect against this is to save a pending exception before performing the unsafe action, and restoring it when done. This can be done using the :c:func:`PyErr_Fetch` and :c:func:`PyErr_Restore` functions::" +msgstr "" + msgid "" "static void\n" "my_dealloc(PyObject *obj)\n" @@ -289,58 +225,29 @@ msgid "" "}" msgstr "" -#: ../../extending/newtypes.rst:138 -msgid "" -"There are limitations to what you can safely do in a deallocator function. " -"First, if your type supports garbage collection " -"(using :c:member:`~PyTypeObject.tp_traverse` and/" -"or :c:member:`~PyTypeObject.tp_clear`), some of the object's members can " -"have been cleared or finalized by the " -"time :c:member:`~PyTypeObject.tp_dealloc` is called. Second, " -"in :c:member:`~PyTypeObject.tp_dealloc`, your object is in an unstable " -"state: its reference count is equal to zero. Any call to a non-trivial " -"object or API (as in the example above) might end up " -"calling :c:member:`~PyTypeObject.tp_dealloc` again, causing a double free " -"and a crash." -msgstr "" - -#: ../../extending/newtypes.rst:147 -msgid "" -"Starting with Python 3.4, it is recommended not to put any complex " -"finalization code in :c:member:`~PyTypeObject.tp_dealloc`, and instead use " -"the new :c:member:`~PyTypeObject.tp_finalize` type method." +msgid "There are limitations to what you can safely do in a deallocator function. First, if your type supports garbage collection (using :c:member:`~PyTypeObject.tp_traverse` and/or :c:member:`~PyTypeObject.tp_clear`), some of the object's members can have been cleared or finalized by the time :c:member:`~PyTypeObject.tp_dealloc` is called. Second, in :c:member:`~PyTypeObject.tp_dealloc`, your object is in an unstable state: its reference count is equal to zero. Any call to a non-trivial object or API (as in the example above) might end up calling :c:member:`~PyTypeObject.tp_dealloc` again, causing a double free and a crash." +msgstr "" + +msgid "Starting with Python 3.4, it is recommended not to put any complex finalization code in :c:member:`~PyTypeObject.tp_dealloc`, and instead use the new :c:member:`~PyTypeObject.tp_finalize` type method." msgstr "" -#: ../../extending/newtypes.rst:152 msgid ":pep:`442` explains the new finalization scheme." msgstr "" -#: ../../extending/newtypes.rst:159 msgid "Object Presentation" msgstr "" -#: ../../extending/newtypes.rst:161 -msgid "" -"In Python, there are two ways to generate a textual representation of an " -"object: the :func:`repr` function, and the :func:`str` function. " -"(The :func:`print` function just calls :func:`str`.) These handlers are " -"both optional." +msgid "In Python, there are two ways to generate a textual representation of an object: the :func:`repr` function, and the :func:`str` function. (The :func:`print` function just calls :func:`str`.) These handlers are both optional." msgstr "" -#: ../../extending/newtypes.rst:167 msgid "" "reprfunc tp_repr;\n" "reprfunc tp_str;" msgstr "" -#: ../../extending/newtypes.rst:170 -msgid "" -"The :c:member:`~PyTypeObject.tp_repr` handler should return a string object " -"containing a representation of the instance for which it is called. Here is " -"a simple example::" +msgid "The :c:member:`~PyTypeObject.tp_repr` handler should return a string object containing a representation of the instance for which it is called. Here is a simple example::" msgstr "" -#: ../../extending/newtypes.rst:174 msgid "" "static PyObject *\n" "newdatatype_repr(PyObject *op)\n" @@ -351,30 +258,15 @@ msgid "" "}" msgstr "" -#: ../../extending/newtypes.rst:182 -msgid "" -"If no :c:member:`~PyTypeObject.tp_repr` handler is specified, the " -"interpreter will supply a representation that uses the " -"type's :c:member:`~PyTypeObject.tp_name` and a uniquely identifying value " -"for the object." +msgid "If no :c:member:`~PyTypeObject.tp_repr` handler is specified, the interpreter will supply a representation that uses the type's :c:member:`~PyTypeObject.tp_name` and a uniquely identifying value for the object." msgstr "" -#: ../../extending/newtypes.rst:186 -msgid "" -"The :c:member:`~PyTypeObject.tp_str` handler is to :func:`str` what " -"the :c:member:`~PyTypeObject.tp_repr` handler described above is " -"to :func:`repr`; that is, it is called when Python code calls :func:`str` on " -"an instance of your object. Its implementation is very similar to " -"the :c:member:`~PyTypeObject.tp_repr` function, but the resulting string is " -"intended for human consumption. If :c:member:`~PyTypeObject.tp_str` is not " -"specified, the :c:member:`~PyTypeObject.tp_repr` handler is used instead." +msgid "The :c:member:`~PyTypeObject.tp_str` handler is to :func:`str` what the :c:member:`~PyTypeObject.tp_repr` handler described above is to :func:`repr`; that is, it is called when Python code calls :func:`str` on an instance of your object. Its implementation is very similar to the :c:member:`~PyTypeObject.tp_repr` function, but the resulting string is intended for human consumption. If :c:member:`~PyTypeObject.tp_str` is not specified, the :c:member:`~PyTypeObject.tp_repr` handler is used instead." msgstr "" -#: ../../extending/newtypes.rst:193 msgid "Here is a simple example::" msgstr "" -#: ../../extending/newtypes.rst:195 msgid "" "static PyObject *\n" "newdatatype_str(PyObject *op)\n" @@ -385,31 +277,15 @@ msgid "" "}" msgstr "" -#: ../../extending/newtypes.rst:206 msgid "Attribute Management" msgstr "" -#: ../../extending/newtypes.rst:208 -msgid "" -"For every object which can support attributes, the corresponding type must " -"provide the functions that control how the attributes are resolved. There " -"needs to be a function which can retrieve attributes (if any are defined), " -"and another to set attributes (if setting attributes is allowed). Removing " -"an attribute is a special case, for which the new value passed to the " -"handler is ``NULL``." +msgid "For every object which can support attributes, the corresponding type must provide the functions that control how the attributes are resolved. There needs to be a function which can retrieve attributes (if any are defined), and another to set attributes (if setting attributes is allowed). Removing an attribute is a special case, for which the new value passed to the handler is ``NULL``." msgstr "" -#: ../../extending/newtypes.rst:214 -msgid "" -"Python supports two pairs of attribute handlers; a type that supports " -"attributes only needs to implement the functions for one pair. The " -"difference is that one pair takes the name of the attribute as " -"a :c:expr:`char\\*`, while the other accepts a :c:expr:`PyObject*`. Each " -"type can use whichever pair makes more sense for the implementation's " -"convenience. ::" +msgid "Python supports two pairs of attribute handlers; a type that supports attributes only needs to implement the functions for one pair. The difference is that one pair takes the name of the attribute as a :c:expr:`char\\*`, while the other accepts a :c:expr:`PyObject*`. Each type can use whichever pair makes more sense for the implementation's convenience. ::" msgstr "" -#: ../../extending/newtypes.rst:220 msgid "" "getattrfunc tp_getattr; /* char * version */\n" "setattrfunc tp_setattr;\n" @@ -418,77 +294,39 @@ msgid "" "setattrofunc tp_setattro;" msgstr "" -#: ../../extending/newtypes.rst:226 -msgid "" -"If accessing attributes of an object is always a simple operation (this will " -"be explained shortly), there are generic implementations which can be used " -"to provide the :c:expr:`PyObject*` version of the attribute management " -"functions. The actual need for type-specific attribute handlers almost " -"completely disappeared starting with Python 2.2, though there are many " -"examples which have not been updated to use some of the new generic " -"mechanism that is available." +msgid "If accessing attributes of an object is always a simple operation (this will be explained shortly), there are generic implementations which can be used to provide the :c:expr:`PyObject*` version of the attribute management functions. The actual need for type-specific attribute handlers almost completely disappeared starting with Python 2.2, though there are many examples which have not been updated to use some of the new generic mechanism that is available." msgstr "" -#: ../../extending/newtypes.rst:237 msgid "Generic Attribute Management" msgstr "" -#: ../../extending/newtypes.rst:239 -msgid "" -"Most extension types only use *simple* attributes. So, what makes the " -"attributes simple? There are only a couple of conditions that must be met:" +msgid "Most extension types only use *simple* attributes. So, what makes the attributes simple? There are only a couple of conditions that must be met:" msgstr "" -#: ../../extending/newtypes.rst:242 -msgid "" -"The name of the attributes must be known when :c:func:`PyType_Ready` is " -"called." +msgid "The name of the attributes must be known when :c:func:`PyType_Ready` is called." msgstr "" -#: ../../extending/newtypes.rst:245 -msgid "" -"No special processing is needed to record that an attribute was looked up or " -"set, nor do actions need to be taken based on the value." +msgid "No special processing is needed to record that an attribute was looked up or set, nor do actions need to be taken based on the value." msgstr "" -#: ../../extending/newtypes.rst:248 -msgid "" -"Note that this list does not place any restrictions on the values of the " -"attributes, when the values are computed, or how relevant data is stored." +msgid "Note that this list does not place any restrictions on the values of the attributes, when the values are computed, or how relevant data is stored." +msgstr "" + +msgid "When :c:func:`PyType_Ready` is called, it uses three tables referenced by the type object to create :term:`descriptor`\\s which are placed in the dictionary of the type object. Each descriptor controls access to one attribute of the instance object. Each of the tables is optional; if all three are ``NULL``, instances of the type will only have attributes that are inherited from their base type, and should leave the :c:member:`~PyTypeObject.tp_getattro` and :c:member:`~PyTypeObject.tp_setattro` fields ``NULL`` as well, allowing the base type to handle attributes." msgstr "" -#: ../../extending/newtypes.rst:251 -msgid "" -"When :c:func:`PyType_Ready` is called, it uses three tables referenced by " -"the type object to create :term:`descriptor`\\s which are placed in the " -"dictionary of the type object. Each descriptor controls access to one " -"attribute of the instance object. Each of the tables is optional; if all " -"three are ``NULL``, instances of the type will only have attributes that are " -"inherited from their base type, and should leave " -"the :c:member:`~PyTypeObject.tp_getattro` " -"and :c:member:`~PyTypeObject.tp_setattro` fields ``NULL`` as well, allowing " -"the base type to handle attributes." -msgstr "" - -#: ../../extending/newtypes.rst:259 msgid "The tables are declared as three fields of the type object::" msgstr "" -#: ../../extending/newtypes.rst:261 msgid "" "struct PyMethodDef *tp_methods;\n" "struct PyMemberDef *tp_members;\n" "struct PyGetSetDef *tp_getset;" msgstr "" -#: ../../extending/newtypes.rst:265 -msgid "" -"If :c:member:`~PyTypeObject.tp_methods` is not ``NULL``, it must refer to an " -"array of :c:type:`PyMethodDef` structures. Each entry in the table is an " -"instance of this structure::" +msgid "If :c:member:`~PyTypeObject.tp_methods` is not ``NULL``, it must refer to an array of :c:type:`PyMethodDef` structures. Each entry in the table is an instance of this structure::" msgstr "" -#: ../../extending/newtypes.rst:269 msgid "" "typedef struct PyMethodDef {\n" " const char *ml_name; /* method name */\n" @@ -498,23 +336,12 @@ msgid "" "} PyMethodDef;" msgstr "" -#: ../../extending/newtypes.rst:276 -msgid "" -"One entry should be defined for each method provided by the type; no entries " -"are needed for methods inherited from a base type. One additional entry is " -"needed at the end; it is a sentinel that marks the end of the array. " -"The :c:member:`~PyMethodDef.ml_name` field of the sentinel must be ``NULL``." +msgid "One entry should be defined for each method provided by the type; no entries are needed for methods inherited from a base type. One additional entry is needed at the end; it is a sentinel that marks the end of the array. The :c:member:`~PyMethodDef.ml_name` field of the sentinel must be ``NULL``." msgstr "" -#: ../../extending/newtypes.rst:281 -msgid "" -"The second table is used to define attributes which map directly to data " -"stored in the instance. A variety of primitive C types are supported, and " -"access may be read-only or read-write. The structures in the table are " -"defined as::" +msgid "The second table is used to define attributes which map directly to data stored in the instance. A variety of primitive C types are supported, and access may be read-only or read-write. The structures in the table are defined as::" msgstr "" -#: ../../extending/newtypes.rst:285 msgid "" "typedef struct PyMemberDef {\n" " const char *name;\n" @@ -525,61 +352,27 @@ msgid "" "} PyMemberDef;" msgstr "" -#: ../../extending/newtypes.rst:293 -msgid "" -"For each entry in the table, a :term:`descriptor` will be constructed and " -"added to the type which will be able to extract a value from the instance " -"structure. The :c:member:`~PyMemberDef.type` field should contain a type " -"code like :c:macro:`Py_T_INT` or :c:macro:`Py_T_DOUBLE`; the value will be " -"used to determine how to convert Python values to and from C values. " -"The :c:member:`~PyMemberDef.flags` field is used to store flags which " -"control how the attribute can be accessed: you can set it " -"to :c:macro:`Py_READONLY` to prevent Python code from setting it." +msgid "For each entry in the table, a :term:`descriptor` will be constructed and added to the type which will be able to extract a value from the instance structure. The :c:member:`~PyMemberDef.type` field should contain a type code like :c:macro:`Py_T_INT` or :c:macro:`Py_T_DOUBLE`; the value will be used to determine how to convert Python values to and from C values. The :c:member:`~PyMemberDef.flags` field is used to store flags which control how the attribute can be accessed: you can set it to :c:macro:`Py_READONLY` to prevent Python code from setting it." msgstr "" -#: ../../extending/newtypes.rst:301 -msgid "" -"An interesting advantage of using the :c:member:`~PyTypeObject.tp_members` " -"table to build descriptors that are used at runtime is that any attribute " -"defined this way can have an associated doc string simply by providing the " -"text in the table. An application can use the introspection API to retrieve " -"the descriptor from the class object, and get the doc string using " -"its :attr:`~type.__doc__` attribute." +msgid "An interesting advantage of using the :c:member:`~PyTypeObject.tp_members` table to build descriptors that are used at runtime is that any attribute defined this way can have an associated doc string simply by providing the text in the table. An application can use the introspection API to retrieve the descriptor from the class object, and get the doc string using its :attr:`~type.__doc__` attribute." msgstr "" -#: ../../extending/newtypes.rst:307 -msgid "" -"As with the :c:member:`~PyTypeObject.tp_methods` table, a sentinel entry " -"with a :c:member:`~PyMethodDef.ml_name` value of ``NULL`` is required." +msgid "As with the :c:member:`~PyTypeObject.tp_methods` table, a sentinel entry with a :c:member:`~PyMethodDef.ml_name` value of ``NULL`` is required." msgstr "" -#: ../../extending/newtypes.rst:321 msgid "Type-specific Attribute Management" msgstr "" -#: ../../extending/newtypes.rst:323 -msgid "" -"For simplicity, only the :c:expr:`char\\*` version will be demonstrated " -"here; the type of the name parameter is the only difference between " -"the :c:expr:`char\\*` and :c:expr:`PyObject*` flavors of the interface. This " -"example effectively does the same thing as the generic example above, but " -"does not use the generic support added in Python 2.2. It explains how the " -"handler functions are called, so that if you do need to extend their " -"functionality, you'll understand what needs to be done." +msgid "For simplicity, only the :c:expr:`char\\*` version will be demonstrated here; the type of the name parameter is the only difference between the :c:expr:`char\\*` and :c:expr:`PyObject*` flavors of the interface. This example effectively does the same thing as the generic example above, but does not use the generic support added in Python 2.2. It explains how the handler functions are called, so that if you do need to extend their functionality, you'll understand what needs to be done." msgstr "" -#: ../../extending/newtypes.rst:331 -msgid "" -"The :c:member:`~PyTypeObject.tp_getattr` handler is called when the object " -"requires an attribute look-up. It is called in the same situations where " -"the :meth:`~object.__getattr__` method of a class would be called." +msgid "The :c:member:`~PyTypeObject.tp_getattr` handler is called when the object requires an attribute look-up. It is called in the same situations where the :meth:`~object.__getattr__` method of a class would be called." msgstr "" -#: ../../extending/newtypes.rst:335 msgid "Here is an example::" msgstr "" -#: ../../extending/newtypes.rst:337 msgid "" "static PyObject *\n" "newdatatype_getattr(PyObject *op, char *name)\n" @@ -596,18 +389,9 @@ msgid "" "}" msgstr "" -#: ../../extending/newtypes.rst:351 -msgid "" -"The :c:member:`~PyTypeObject.tp_setattr` handler is called when " -"the :meth:`~object.__setattr__` or :meth:`~object.__delattr__` method of a " -"class instance would be called. When an attribute should be deleted, the " -"third parameter will be ``NULL``. Here is an example that simply raises an " -"exception; if this were really all you wanted, " -"the :c:member:`~PyTypeObject.tp_setattr` handler should be set to " -"``NULL``. ::" +msgid "The :c:member:`~PyTypeObject.tp_setattr` handler is called when the :meth:`~object.__setattr__` or :meth:`~object.__delattr__` method of a class instance would be called. When an attribute should be deleted, the third parameter will be ``NULL``. Here is an example that simply raises an exception; if this were really all you wanted, the :c:member:`~PyTypeObject.tp_setattr` handler should be set to ``NULL``. ::" msgstr "" -#: ../../extending/newtypes.rst:357 msgid "" "static int\n" "newdatatype_setattr(PyObject *op, char *name, PyObject *v)\n" @@ -617,40 +401,21 @@ msgid "" "}" msgstr "" -#: ../../extending/newtypes.rst:365 msgid "Object Comparison" msgstr "" -#: ../../extending/newtypes.rst:369 msgid "richcmpfunc tp_richcompare;" msgstr "" -#: ../../extending/newtypes.rst:371 -msgid "" -"The :c:member:`~PyTypeObject.tp_richcompare` handler is called when " -"comparisons are needed. It is analogous to the :ref:`rich comparison " -"methods `, like :meth:`!__lt__`, and also called " -"by :c:func:`PyObject_RichCompare` and :c:func:`PyObject_RichCompareBool`." +msgid "The :c:member:`~PyTypeObject.tp_richcompare` handler is called when comparisons are needed. It is analogous to the :ref:`rich comparison methods `, like :meth:`!__lt__`, and also called by :c:func:`PyObject_RichCompare` and :c:func:`PyObject_RichCompareBool`." msgstr "" -#: ../../extending/newtypes.rst:376 -msgid "" -"This function is called with two Python objects and the operator as " -"arguments, where the operator is one of ``Py_EQ``, ``Py_NE``, ``Py_LE``, " -"``Py_GE``, ``Py_LT`` or ``Py_GT``. It should compare the two objects with " -"respect to the specified operator and return ``Py_True`` or ``Py_False`` if " -"the comparison is successful, ``Py_NotImplemented`` to indicate that " -"comparison is not implemented and the other object's comparison method " -"should be tried, or ``NULL`` if an exception was set." +msgid "This function is called with two Python objects and the operator as arguments, where the operator is one of ``Py_EQ``, ``Py_NE``, ``Py_LE``, ``Py_GE``, ``Py_LT`` or ``Py_GT``. It should compare the two objects with respect to the specified operator and return ``Py_True`` or ``Py_False`` if the comparison is successful, ``Py_NotImplemented`` to indicate that comparison is not implemented and the other object's comparison method should be tried, or ``NULL`` if an exception was set." msgstr "" -#: ../../extending/newtypes.rst:384 -msgid "" -"Here is a sample implementation, for a datatype that is considered equal if " -"the size of an internal pointer is equal::" +msgid "Here is a sample implementation, for a datatype that is considered equal if the size of an internal pointer is equal::" msgstr "" -#: ../../extending/newtypes.rst:387 msgid "" "static PyObject *\n" "newdatatype_richcmp(PyObject *lhs, PyObject *rhs, int op)\n" @@ -679,60 +444,30 @@ msgid "" " }" msgstr "" -#: ../../extending/newtypes.rst:415 msgid "Abstract Protocol Support" msgstr "" -#: ../../extending/newtypes.rst:417 -msgid "" -"Python supports a variety of *abstract* 'protocols;' the specific interfaces " -"provided to use these interfaces are documented in :ref:`abstract`." +msgid "Python supports a variety of *abstract* 'protocols;' the specific interfaces provided to use these interfaces are documented in :ref:`abstract`." +msgstr "" + +msgid "A number of these abstract interfaces were defined early in the development of the Python implementation. In particular, the number, mapping, and sequence protocols have been part of Python since the beginning. Other protocols have been added over time. For protocols which depend on several handler routines from the type implementation, the older protocols have been defined as optional blocks of handlers referenced by the type object. For newer protocols there are additional slots in the main type object, with a flag bit being set to indicate that the slots are present and should be checked by the interpreter. (The flag bit does not indicate that the slot values are non-``NULL``. The flag may be set to indicate the presence of a slot, but a slot may still be unfilled.) ::" msgstr "" -#: ../../extending/newtypes.rst:421 -msgid "" -"A number of these abstract interfaces were defined early in the development " -"of the Python implementation. In particular, the number, mapping, and " -"sequence protocols have been part of Python since the beginning. Other " -"protocols have been added over time. For protocols which depend on several " -"handler routines from the type implementation, the older protocols have been " -"defined as optional blocks of handlers referenced by the type object. For " -"newer protocols there are additional slots in the main type object, with a " -"flag bit being set to indicate that the slots are present and should be " -"checked by the interpreter. (The flag bit does not indicate that the slot " -"values are non-``NULL``. The flag may be set to indicate the presence of a " -"slot, but a slot may still be unfilled.) ::" -msgstr "" - -#: ../../extending/newtypes.rst:432 msgid "" "PyNumberMethods *tp_as_number;\n" "PySequenceMethods *tp_as_sequence;\n" "PyMappingMethods *tp_as_mapping;" msgstr "" -#: ../../extending/newtypes.rst:436 -msgid "" -"If you wish your object to be able to act like a number, a sequence, or a " -"mapping object, then you place the address of a structure that implements " -"the C type :c:type:`PyNumberMethods`, :c:type:`PySequenceMethods`, " -"or :c:type:`PyMappingMethods`, respectively. It is up to you to fill in this " -"structure with appropriate values. You can find examples of the use of each " -"of these in the :file:`Objects` directory of the Python source " -"distribution. ::" +msgid "If you wish your object to be able to act like a number, a sequence, or a mapping object, then you place the address of a structure that implements the C type :c:type:`PyNumberMethods`, :c:type:`PySequenceMethods`, or :c:type:`PyMappingMethods`, respectively. It is up to you to fill in this structure with appropriate values. You can find examples of the use of each of these in the :file:`Objects` directory of the Python source distribution. ::" msgstr "" -#: ../../extending/newtypes.rst:443 msgid "hashfunc tp_hash;" msgstr "" -#: ../../extending/newtypes.rst:445 -msgid "" -"This function, if you choose to provide it, should return a hash number for " -"an instance of your data type. Here is a simple example::" +msgid "This function, if you choose to provide it, should return a hash number for an instance of your data type. Here is a simple example::" msgstr "" -#: ../../extending/newtypes.rst:448 msgid "" "static Py_hash_t\n" "newdatatype_hash(PyObject *op)\n" @@ -747,57 +482,30 @@ msgid "" "}" msgstr "" -#: ../../extending/newtypes.rst:460 -msgid "" -":c:type:`Py_hash_t` is a signed integer type with a platform-varying width. " -"Returning ``-1`` from :c:member:`~PyTypeObject.tp_hash` indicates an error, " -"which is why you should be careful to avoid returning it when hash " -"computation is successful, as seen above." +msgid ":c:type:`Py_hash_t` is a signed integer type with a platform-varying width. Returning ``-1`` from :c:member:`~PyTypeObject.tp_hash` indicates an error, which is why you should be careful to avoid returning it when hash computation is successful, as seen above." msgstr "" -#: ../../extending/newtypes.rst:467 msgid "ternaryfunc tp_call;" msgstr "" -#: ../../extending/newtypes.rst:469 -msgid "" -"This function is called when an instance of your data type is \"called\", " -"for example, if ``obj1`` is an instance of your data type and the Python " -"script contains ``obj1('hello')``, the :c:member:`~PyTypeObject.tp_call` " -"handler is invoked." +msgid "This function is called when an instance of your data type is \"called\", for example, if ``obj1`` is an instance of your data type and the Python script contains ``obj1('hello')``, the :c:member:`~PyTypeObject.tp_call` handler is invoked." msgstr "" -#: ../../extending/newtypes.rst:473 msgid "This function takes three arguments:" msgstr "" -#: ../../extending/newtypes.rst:475 -msgid "" -"*self* is the instance of the data type which is the subject of the call. If " -"the call is ``obj1('hello')``, then *self* is ``obj1``." +msgid "*self* is the instance of the data type which is the subject of the call. If the call is ``obj1('hello')``, then *self* is ``obj1``." msgstr "" -#: ../../extending/newtypes.rst:478 -msgid "" -"*args* is a tuple containing the arguments to the call. You can " -"use :c:func:`PyArg_ParseTuple` to extract the arguments." +msgid "*args* is a tuple containing the arguments to the call. You can use :c:func:`PyArg_ParseTuple` to extract the arguments." msgstr "" -#: ../../extending/newtypes.rst:481 -msgid "" -"*kwds* is a dictionary of keyword arguments that were passed. If this is non-" -"``NULL`` and you support keyword arguments, " -"use :c:func:`PyArg_ParseTupleAndKeywords` to extract the arguments. If you " -"do not want to support keyword arguments and this is non-``NULL``, raise " -"a :exc:`TypeError` with a message saying that keyword arguments are not " -"supported." +msgid "*kwds* is a dictionary of keyword arguments that were passed. If this is non-``NULL`` and you support keyword arguments, use :c:func:`PyArg_ParseTupleAndKeywords` to extract the arguments. If you do not want to support keyword arguments and this is non-``NULL``, raise a :exc:`TypeError` with a message saying that keyword arguments are not supported." msgstr "" -#: ../../extending/newtypes.rst:487 msgid "Here is a toy ``tp_call`` implementation::" msgstr "" -#: ../../extending/newtypes.rst:489 msgid "" "static PyObject *\n" "newdatatype_call(PyObject *op, PyObject *args, PyObject *kwds)\n" @@ -819,94 +527,42 @@ msgid "" "}" msgstr "" -#: ../../extending/newtypes.rst:510 msgid "" "/* Iterators */\n" "getiterfunc tp_iter;\n" "iternextfunc tp_iternext;" msgstr "" -#: ../../extending/newtypes.rst:514 -msgid "" -"These functions provide support for the iterator protocol. Both handlers " -"take exactly one parameter, the instance for which they are being called, " -"and return a new reference. In the case of an error, they should set an " -"exception and return ``NULL``. :c:member:`~PyTypeObject.tp_iter` " -"corresponds to the Python :meth:`~object.__iter__` method, " -"while :c:member:`~PyTypeObject.tp_iternext` corresponds to the " -"Python :meth:`~iterator.__next__` method." +msgid "These functions provide support for the iterator protocol. Both handlers take exactly one parameter, the instance for which they are being called, and return a new reference. In the case of an error, they should set an exception and return ``NULL``. :c:member:`~PyTypeObject.tp_iter` corresponds to the Python :meth:`~object.__iter__` method, while :c:member:`~PyTypeObject.tp_iternext` corresponds to the Python :meth:`~iterator.__next__` method." msgstr "" -#: ../../extending/newtypes.rst:521 -msgid "" -"Any :term:`iterable` object must implement " -"the :c:member:`~PyTypeObject.tp_iter` handler, which must return " -"an :term:`iterator` object. Here the same guidelines apply as for Python " -"classes:" +msgid "Any :term:`iterable` object must implement the :c:member:`~PyTypeObject.tp_iter` handler, which must return an :term:`iterator` object. Here the same guidelines apply as for Python classes:" msgstr "" -#: ../../extending/newtypes.rst:525 -msgid "" -"For collections (such as lists and tuples) which can support multiple " -"independent iterators, a new iterator should be created and returned by each " -"call to :c:member:`~PyTypeObject.tp_iter`." +msgid "For collections (such as lists and tuples) which can support multiple independent iterators, a new iterator should be created and returned by each call to :c:member:`~PyTypeObject.tp_iter`." msgstr "" -#: ../../extending/newtypes.rst:528 -msgid "" -"Objects which can only be iterated over once (usually due to side effects of " -"iteration, such as file objects) can " -"implement :c:member:`~PyTypeObject.tp_iter` by returning a new reference to " -"themselves -- and should also therefore implement " -"the :c:member:`~PyTypeObject.tp_iternext` handler." +msgid "Objects which can only be iterated over once (usually due to side effects of iteration, such as file objects) can implement :c:member:`~PyTypeObject.tp_iter` by returning a new reference to themselves -- and should also therefore implement the :c:member:`~PyTypeObject.tp_iternext` handler." +msgstr "" + +msgid "Any :term:`iterator` object should implement both :c:member:`~PyTypeObject.tp_iter` and :c:member:`~PyTypeObject.tp_iternext`. An iterator's :c:member:`~PyTypeObject.tp_iter` handler should return a new reference to the iterator. Its :c:member:`~PyTypeObject.tp_iternext` handler should return a new reference to the next object in the iteration, if there is one. If the iteration has reached the end, :c:member:`~PyTypeObject.tp_iternext` may return ``NULL`` without setting an exception, or it may set :exc:`StopIteration` *in addition* to returning ``NULL``; avoiding the exception can yield slightly better performance. If an actual error occurs, :c:member:`~PyTypeObject.tp_iternext` should always set an exception and return ``NULL``." msgstr "" -#: ../../extending/newtypes.rst:533 -msgid "" -"Any :term:`iterator` object should implement " -"both :c:member:`~PyTypeObject.tp_iter` " -"and :c:member:`~PyTypeObject.tp_iternext`. An " -"iterator's :c:member:`~PyTypeObject.tp_iter` handler should return a new " -"reference to the iterator. Its :c:member:`~PyTypeObject.tp_iternext` " -"handler should return a new reference to the next object in the iteration, " -"if there is one. If the iteration has reached the " -"end, :c:member:`~PyTypeObject.tp_iternext` may return ``NULL`` without " -"setting an exception, or it may set :exc:`StopIteration` *in addition* to " -"returning ``NULL``; avoiding the exception can yield slightly better " -"performance. If an actual error " -"occurs, :c:member:`~PyTypeObject.tp_iternext` should always set an exception " -"and return ``NULL``." -msgstr "" - -#: ../../extending/newtypes.rst:549 msgid "Weak Reference Support" msgstr "" -#: ../../extending/newtypes.rst:551 -msgid "" -"One of the goals of Python's weak reference implementation is to allow any " -"type to participate in the weak reference mechanism without incurring the " -"overhead on performance-critical objects (such as numbers)." +msgid "One of the goals of Python's weak reference implementation is to allow any type to participate in the weak reference mechanism without incurring the overhead on performance-critical objects (such as numbers)." msgstr "" -#: ../../extending/newtypes.rst:556 msgid "Documentation for the :mod:`weakref` module." msgstr "" -#: ../../extending/newtypes.rst:558 -msgid "" -"For an object to be weakly referenceable, the extension type must set the " -"``Py_TPFLAGS_MANAGED_WEAKREF`` bit of the :c:member:`~PyTypeObject.tp_flags` " -"field. The legacy :c:member:`~PyTypeObject.tp_weaklistoffset` field should " -"be left as zero." +msgid "For an object to be weakly referenceable, the extension type must set the ``Py_TPFLAGS_MANAGED_WEAKREF`` bit of the :c:member:`~PyTypeObject.tp_flags` field. The legacy :c:member:`~PyTypeObject.tp_weaklistoffset` field should be left as zero." msgstr "" -#: ../../extending/newtypes.rst:563 -msgid "" -"Concretely, here is how the statically declared type object would look::" +msgid "Concretely, here is how the statically declared type object would look::" msgstr "" -#: ../../extending/newtypes.rst:565 msgid "" "static PyTypeObject TrivialType = {\n" " PyVarObject_HEAD_INIT(NULL, 0)\n" @@ -915,13 +571,9 @@ msgid "" "};" msgstr "" -#: ../../extending/newtypes.rst:572 -msgid "" -"The only further addition is that ``tp_dealloc`` needs to clear any weak " -"references (by calling :c:func:`PyObject_ClearWeakRefs`)::" +msgid "The only further addition is that ``tp_dealloc`` needs to clear any weak references (by calling :c:func:`PyObject_ClearWeakRefs`)::" msgstr "" -#: ../../extending/newtypes.rst:575 msgid "" "static void\n" "Trivial_dealloc(PyObject *op)\n" @@ -933,27 +585,15 @@ msgid "" "}" msgstr "" -#: ../../extending/newtypes.rst:586 msgid "More Suggestions" msgstr "" -#: ../../extending/newtypes.rst:588 -msgid "" -"In order to learn how to implement any specific method for your new data " -"type, get the :term:`CPython` source code. Go to the :file:`Objects` " -"directory, then search the C source files for ``tp_`` plus the function you " -"want (for example, ``tp_richcompare``). You will find examples of the " -"function you want to implement." +msgid "In order to learn how to implement any specific method for your new data type, get the :term:`CPython` source code. Go to the :file:`Objects` directory, then search the C source files for ``tp_`` plus the function you want (for example, ``tp_richcompare``). You will find examples of the function you want to implement." msgstr "" -#: ../../extending/newtypes.rst:594 -msgid "" -"When you need to verify that an object is a concrete instance of the type " -"you are implementing, use the :c:func:`PyObject_TypeCheck` function. A " -"sample of its use might be something like the following::" +msgid "When you need to verify that an object is a concrete instance of the type you are implementing, use the :c:func:`PyObject_TypeCheck` function. A sample of its use might be something like the following::" msgstr "" -#: ../../extending/newtypes.rst:598 msgid "" "if (!PyObject_TypeCheck(some_object, &MyType)) {\n" " PyErr_SetString(PyExc_TypeError, \"arg #1 not a mything\");\n" @@ -961,63 +601,47 @@ msgid "" "}" msgstr "" -#: ../../extending/newtypes.rst:604 msgid "Download CPython source releases." msgstr "" -#: ../../extending/newtypes.rst:605 msgid "https://www.python.org/downloads/source/" msgstr "" -#: ../../extending/newtypes.rst:607 -msgid "" -"The CPython project on GitHub, where the CPython source code is developed." +msgid "The CPython project on GitHub, where the CPython source code is developed." msgstr "" -#: ../../extending/newtypes.rst:608 msgid "https://github.com/python/cpython" msgstr "" -#: ../../extending/newtypes.rst:56 msgid "object" msgstr "" -#: ../../extending/newtypes.rst:56 msgid "deallocation" msgstr "" -#: ../../extending/newtypes.rst:56 msgid "deallocation, object" msgstr "" -#: ../../extending/newtypes.rst:56 msgid "finalization" msgstr "" -#: ../../extending/newtypes.rst:56 msgid "finalization, of objects" msgstr "" -#: ../../extending/newtypes.rst:93 msgid "PyErr_Fetch (C function)" msgstr "" -#: ../../extending/newtypes.rst:93 msgid "PyErr_Restore (C function)" msgstr "" -#: ../../extending/newtypes.rst:154 msgid "string" msgstr "" -#: ../../extending/newtypes.rst:154 msgid "object representation" msgstr "" -#: ../../extending/newtypes.rst:154 msgid "built-in function" msgstr "" -#: ../../extending/newtypes.rst:154 msgid "repr" msgstr "" diff --git a/extending/newtypes_tutorial.po b/extending/newtypes_tutorial.po index e053c2e5..eae36814 100644 --- a/extending/newtypes_tutorial.po +++ b/extending/newtypes_tutorial.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:52+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,57 +24,27 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../extending/newtypes_tutorial.rst:7 msgid "Defining Extension Types: Tutorial" msgstr "" -#: ../../extending/newtypes_tutorial.rst:14 -msgid "" -"Python allows the writer of a C extension module to define new types that " -"can be manipulated from Python code, much like the built-in :class:`str` " -"and :class:`list` types. The code for all extension types follows a " -"pattern, but there are some details that you need to understand before you " -"can get started. This document is a gentle introduction to the topic." +msgid "Python allows the writer of a C extension module to define new types that can be manipulated from Python code, much like the built-in :class:`str` and :class:`list` types. The code for all extension types follows a pattern, but there are some details that you need to understand before you can get started. This document is a gentle introduction to the topic." msgstr "" -#: ../../extending/newtypes_tutorial.rst:24 msgid "The Basics" msgstr "" -#: ../../extending/newtypes_tutorial.rst:26 -msgid "" -"The :term:`CPython` runtime sees all Python objects as variables of " -"type :c:expr:`PyObject*`, which serves as a \"base type\" for all Python " -"objects. The :c:type:`PyObject` structure itself only contains the " -"object's :term:`reference count` and a pointer to the object's \"type " -"object\". This is where the action is; the type object determines which (C) " -"functions get called by the interpreter when, for instance, an attribute " -"gets looked up on an object, a method called, or it is multiplied by another " -"object. These C functions are called \"type methods\"." +msgid "The :term:`CPython` runtime sees all Python objects as variables of type :c:expr:`PyObject*`, which serves as a \"base type\" for all Python objects. The :c:type:`PyObject` structure itself only contains the object's :term:`reference count` and a pointer to the object's \"type object\". This is where the action is; the type object determines which (C) functions get called by the interpreter when, for instance, an attribute gets looked up on an object, a method called, or it is multiplied by another object. These C functions are called \"type methods\"." msgstr "" -#: ../../extending/newtypes_tutorial.rst:35 -msgid "" -"So, if you want to define a new extension type, you need to create a new " -"type object." +msgid "So, if you want to define a new extension type, you need to create a new type object." msgstr "" -#: ../../extending/newtypes_tutorial.rst:38 -msgid "" -"This sort of thing can only be explained by example, so here's a minimal, " -"but complete, module that defines a new type named :class:`!Custom` inside a " -"C extension module :mod:`!custom`:" +msgid "This sort of thing can only be explained by example, so here's a minimal, but complete, module that defines a new type named :class:`!Custom` inside a C extension module :mod:`!custom`:" msgstr "" -#: ../../extending/newtypes_tutorial.rst:43 -msgid "" -"What we're showing here is the traditional way of defining *static* " -"extension types. It should be adequate for most uses. The C API also " -"allows defining heap-allocated extension types using " -"the :c:func:`PyType_FromSpec` function, which isn't covered in this tutorial." +msgid "What we're showing here is the traditional way of defining *static* extension types. It should be adequate for most uses. The C API also allows defining heap-allocated extension types using the :c:func:`PyType_FromSpec` function, which isn't covered in this tutorial." msgstr "" -#: ../../extending/newtypes_tutorial.rst:48 msgid "" "#define PY_SSIZE_T_CLEAN\n" "#include \n" @@ -101,8 +71,7 @@ msgid "" " return -1;\n" " }\n" "\n" -" if (PyModule_AddObjectRef(m, \"Custom\", (PyObject *) &CustomType) < 0) " -"{\n" +" if (PyModule_AddObjectRef(m, \"Custom\", (PyObject *) &CustomType) < 0) {\n" " return -1;\n" " }\n" "\n" @@ -112,8 +81,7 @@ msgid "" "static PyModuleDef_Slot custom_module_slots[] = {\n" " {Py_mod_exec, custom_module_exec},\n" " // Just use this while using static types\n" -" {Py_mod_multiple_interpreters, " -"Py_MOD_MULTIPLE_INTERPRETERS_NOT_SUPPORTED},\n" +" {Py_mod_multiple_interpreters, Py_MOD_MULTIPLE_INTERPRETERS_NOT_SUPPORTED},\n" " {0, NULL}\n" "};\n" "\n" @@ -132,69 +100,36 @@ msgid "" "}\n" msgstr "" -#: ../../extending/newtypes_tutorial.rst:50 -msgid "" -"Now that's quite a bit to take in at once, but hopefully bits will seem " -"familiar from the previous chapter. This file defines three things:" +msgid "Now that's quite a bit to take in at once, but hopefully bits will seem familiar from the previous chapter. This file defines three things:" msgstr "" -#: ../../extending/newtypes_tutorial.rst:53 -msgid "" -"What a :class:`!Custom` **object** contains: this is the ``CustomObject`` " -"struct, which is allocated once for each :class:`!Custom` instance." +msgid "What a :class:`!Custom` **object** contains: this is the ``CustomObject`` struct, which is allocated once for each :class:`!Custom` instance." msgstr "" -#: ../../extending/newtypes_tutorial.rst:55 -msgid "" -"How the :class:`!Custom` **type** behaves: this is the ``CustomType`` " -"struct, which defines a set of flags and function pointers that the " -"interpreter inspects when specific operations are requested." +msgid "How the :class:`!Custom` **type** behaves: this is the ``CustomType`` struct, which defines a set of flags and function pointers that the interpreter inspects when specific operations are requested." msgstr "" -#: ../../extending/newtypes_tutorial.rst:58 -msgid "" -"How to define and execute the :mod:`!custom` module: this is the " -"``PyInit_custom`` function and the associated ``custom_module`` struct for " -"defining the module, and the ``custom_module_exec`` function to set up a " -"fresh module object." +msgid "How to define and execute the :mod:`!custom` module: this is the ``PyInit_custom`` function and the associated ``custom_module`` struct for defining the module, and the ``custom_module_exec`` function to set up a fresh module object." msgstr "" -#: ../../extending/newtypes_tutorial.rst:63 msgid "The first bit is::" msgstr "" -#: ../../extending/newtypes_tutorial.rst:65 msgid "" "typedef struct {\n" " PyObject_HEAD\n" "} CustomObject;" msgstr "" -#: ../../extending/newtypes_tutorial.rst:69 -msgid "" -"This is what a Custom object will contain. ``PyObject_HEAD`` is mandatory " -"at the start of each object struct and defines a field called ``ob_base`` of " -"type :c:type:`PyObject`, containing a pointer to a type object and a " -"reference count (these can be accessed using the macros :c:macro:`Py_TYPE` " -"and :c:macro:`Py_REFCNT` respectively). The reason for the macro is to " -"abstract away the layout and to enable additional fields in :ref:`debug " -"builds `." +msgid "This is what a Custom object will contain. ``PyObject_HEAD`` is mandatory at the start of each object struct and defines a field called ``ob_base`` of type :c:type:`PyObject`, containing a pointer to a type object and a reference count (these can be accessed using the macros :c:macro:`Py_TYPE` and :c:macro:`Py_REFCNT` respectively). The reason for the macro is to abstract away the layout and to enable additional fields in :ref:`debug builds `." msgstr "" -#: ../../extending/newtypes_tutorial.rst:78 -msgid "" -"There is no semicolon above after the :c:macro:`PyObject_HEAD` macro. Be " -"wary of adding one by accident: some compilers will complain." +msgid "There is no semicolon above after the :c:macro:`PyObject_HEAD` macro. Be wary of adding one by accident: some compilers will complain." msgstr "" -#: ../../extending/newtypes_tutorial.rst:81 -msgid "" -"Of course, objects generally store additional data besides the standard " -"``PyObject_HEAD`` boilerplate; for example, here is the definition for " -"standard Python floats::" +msgid "Of course, objects generally store additional data besides the standard ``PyObject_HEAD`` boilerplate; for example, here is the definition for standard Python floats::" msgstr "" -#: ../../extending/newtypes_tutorial.rst:85 msgid "" "typedef struct {\n" " PyObject_HEAD\n" @@ -202,11 +137,9 @@ msgid "" "} PyFloatObject;" msgstr "" -#: ../../extending/newtypes_tutorial.rst:90 msgid "The second bit is the definition of the type object. ::" msgstr "" -#: ../../extending/newtypes_tutorial.rst:92 msgid "" "static PyTypeObject CustomType = {\n" " .ob_base = PyVarObject_HEAD_INIT(NULL, 0)\n" @@ -219,46 +152,27 @@ msgid "" "};" msgstr "" -#: ../../extending/newtypes_tutorial.rst:103 -msgid "" -"We recommend using C99-style designated initializers as above, to avoid " -"listing all the :c:type:`PyTypeObject` fields that you don't care about and " -"also to avoid caring about the fields' declaration order." +msgid "We recommend using C99-style designated initializers as above, to avoid listing all the :c:type:`PyTypeObject` fields that you don't care about and also to avoid caring about the fields' declaration order." msgstr "" -#: ../../extending/newtypes_tutorial.rst:107 -msgid "" -"The actual definition of :c:type:`PyTypeObject` in :file:`object.h` has many " -"more :ref:`fields ` than the definition above. The remaining " -"fields will be filled with zeros by the C compiler, and it's common practice " -"to not specify them explicitly unless you need them." +msgid "The actual definition of :c:type:`PyTypeObject` in :file:`object.h` has many more :ref:`fields ` than the definition above. The remaining fields will be filled with zeros by the C compiler, and it's common practice to not specify them explicitly unless you need them." msgstr "" -#: ../../extending/newtypes_tutorial.rst:112 msgid "We're going to pick it apart, one field at a time::" msgstr "" -#: ../../extending/newtypes_tutorial.rst:114 msgid ".ob_base = PyVarObject_HEAD_INIT(NULL, 0)" msgstr "" -#: ../../extending/newtypes_tutorial.rst:116 -msgid "" -"This line is mandatory boilerplate to initialize the ``ob_base`` field " -"mentioned above. ::" +msgid "This line is mandatory boilerplate to initialize the ``ob_base`` field mentioned above. ::" msgstr "" -#: ../../extending/newtypes_tutorial.rst:119 msgid ".tp_name = \"custom.Custom\"," msgstr "" -#: ../../extending/newtypes_tutorial.rst:121 -msgid "" -"The name of our type. This will appear in the default textual " -"representation of our objects and in some error messages, for example:" +msgid "The name of our type. This will appear in the default textual representation of our objects and in some error messages, for example:" msgstr "" -#: ../../extending/newtypes_tutorial.rst:124 msgid "" ">>> \"\" + custom.Custom()\n" "Traceback (most recent call last):\n" @@ -266,126 +180,70 @@ msgid "" "TypeError: can only concatenate str (not \"custom.Custom\") to str" msgstr "" -#: ../../extending/newtypes_tutorial.rst:131 -msgid "" -"Note that the name is a dotted name that includes both the module name and " -"the name of the type within the module. The module in this case is :mod:`!" -"custom` and the type is :class:`!Custom`, so we set the type name " -"to :class:`!custom.Custom`. Using the real dotted import path is important " -"to make your type compatible with the :mod:`pydoc` and :mod:`pickle` " -"modules. ::" +msgid "Note that the name is a dotted name that includes both the module name and the name of the type within the module. The module in this case is :mod:`!custom` and the type is :class:`!Custom`, so we set the type name to :class:`!custom.Custom`. Using the real dotted import path is important to make your type compatible with the :mod:`pydoc` and :mod:`pickle` modules. ::" msgstr "" -#: ../../extending/newtypes_tutorial.rst:137 msgid "" ".tp_basicsize = sizeof(CustomObject),\n" ".tp_itemsize = 0," msgstr "" -#: ../../extending/newtypes_tutorial.rst:140 -msgid "" -"This is so that Python knows how much memory to allocate when creating " -"new :class:`!Custom` instances. :c:member:`~PyTypeObject.tp_itemsize` is " -"only used for variable-sized objects and should otherwise be zero." +msgid "This is so that Python knows how much memory to allocate when creating new :class:`!Custom` instances. :c:member:`~PyTypeObject.tp_itemsize` is only used for variable-sized objects and should otherwise be zero." +msgstr "" + +msgid "If you want your type to be subclassable from Python, and your type has the same :c:member:`~PyTypeObject.tp_basicsize` as its base type, you may have problems with multiple inheritance. A Python subclass of your type will have to list your type first in its :attr:`~type.__bases__`, or else it will not be able to call your type's :meth:`~object.__new__` method without getting an error. You can avoid this problem by ensuring that your type has a larger value for :c:member:`~PyTypeObject.tp_basicsize` than its base type does. Most of the time, this will be true anyway, because either your base type will be :class:`object`, or else you will be adding data members to your base type, and therefore increasing its size." msgstr "" -#: ../../extending/newtypes_tutorial.rst:146 -msgid "" -"If you want your type to be subclassable from Python, and your type has the " -"same :c:member:`~PyTypeObject.tp_basicsize` as its base type, you may have " -"problems with multiple inheritance. A Python subclass of your type will " -"have to list your type first in its :attr:`~type.__bases__`, or else it will " -"not be able to call your type's :meth:`~object.__new__` method without " -"getting an error. You can avoid this problem by ensuring that your type has " -"a larger value for :c:member:`~PyTypeObject.tp_basicsize` than its base type " -"does. Most of the time, this will be true anyway, because either your base " -"type will be :class:`object`, or else you will be adding data members to " -"your base type, and therefore increasing its size." -msgstr "" - -#: ../../extending/newtypes_tutorial.rst:156 msgid "We set the class flags to :c:macro:`Py_TPFLAGS_DEFAULT`. ::" msgstr "" -#: ../../extending/newtypes_tutorial.rst:158 msgid ".tp_flags = Py_TPFLAGS_DEFAULT," msgstr "" -#: ../../extending/newtypes_tutorial.rst:160 -msgid "" -"All types should include this constant in their flags. It enables all of " -"the members defined until at least Python 3.3. If you need further members, " -"you will need to OR the corresponding flags." +msgid "All types should include this constant in their flags. It enables all of the members defined until at least Python 3.3. If you need further members, you will need to OR the corresponding flags." msgstr "" -#: ../../extending/newtypes_tutorial.rst:164 -msgid "" -"We provide a doc string for the type in :c:member:`~PyTypeObject.tp_doc`. ::" +msgid "We provide a doc string for the type in :c:member:`~PyTypeObject.tp_doc`. ::" msgstr "" -#: ../../extending/newtypes_tutorial.rst:166 msgid ".tp_doc = PyDoc_STR(\"Custom objects\")," msgstr "" -#: ../../extending/newtypes_tutorial.rst:168 -msgid "" -"To enable object creation, we have to provide " -"a :c:member:`~PyTypeObject.tp_new` handler. This is the equivalent of the " -"Python method :meth:`~object.__new__`, but has to be specified explicitly. " -"In this case, we can just use the default implementation provided by the API " -"function :c:func:`PyType_GenericNew`. ::" +msgid "To enable object creation, we have to provide a :c:member:`~PyTypeObject.tp_new` handler. This is the equivalent of the Python method :meth:`~object.__new__`, but has to be specified explicitly. In this case, we can just use the default implementation provided by the API function :c:func:`PyType_GenericNew`. ::" msgstr "" -#: ../../extending/newtypes_tutorial.rst:173 msgid ".tp_new = PyType_GenericNew," msgstr "" -#: ../../extending/newtypes_tutorial.rst:175 -msgid "" -"Everything else in the file should be familiar, except for some code " -"in :c:func:`!custom_module_exec`::" +msgid "Everything else in the file should be familiar, except for some code in :c:func:`!custom_module_exec`::" msgstr "" -#: ../../extending/newtypes_tutorial.rst:178 msgid "" "if (PyType_Ready(&CustomType) < 0) {\n" " return -1;\n" "}" msgstr "" -#: ../../extending/newtypes_tutorial.rst:182 -msgid "" -"This initializes the :class:`!Custom` type, filling in a number of members " -"to the appropriate default values, including :c:member:`~PyObject.ob_type` " -"that we initially set to ``NULL``. ::" +msgid "This initializes the :class:`!Custom` type, filling in a number of members to the appropriate default values, including :c:member:`~PyObject.ob_type` that we initially set to ``NULL``. ::" msgstr "" -#: ../../extending/newtypes_tutorial.rst:186 msgid "" "if (PyModule_AddObjectRef(m, \"Custom\", (PyObject *) &CustomType) < 0) {\n" " return -1;\n" "}" msgstr "" -#: ../../extending/newtypes_tutorial.rst:190 -msgid "" -"This adds the type to the module dictionary. This allows us to " -"create :class:`!Custom` instances by calling the :class:`!Custom` class:" +msgid "This adds the type to the module dictionary. This allows us to create :class:`!Custom` instances by calling the :class:`!Custom` class:" msgstr "" -#: ../../extending/newtypes_tutorial.rst:193 msgid "" ">>> import custom\n" ">>> mycustom = custom.Custom()" msgstr "" -#: ../../extending/newtypes_tutorial.rst:198 -msgid "" -"That's it! All that remains is to build it; put the above code in a file " -"called :file:`custom.c`," +msgid "That's it! All that remains is to build it; put the above code in a file called :file:`custom.c`," msgstr "" -#: ../../extending/newtypes_tutorial.rst:201 msgid "" "[build-system]\n" "requires = [\"setuptools\"]\n" @@ -396,54 +254,35 @@ msgid "" "version = \"1\"\n" msgstr "" -#: ../../extending/newtypes_tutorial.rst:203 msgid "in a file called :file:`pyproject.toml`, and" msgstr "" -#: ../../extending/newtypes_tutorial.rst:205 msgid "" "from setuptools import Extension, setup\n" "setup(ext_modules=[Extension(\"custom\", [\"custom.c\"])])" msgstr "" -#: ../../extending/newtypes_tutorial.rst:210 msgid "in a file called :file:`setup.py`; then typing" msgstr "" -#: ../../extending/newtypes_tutorial.rst:212 -#: ../../extending/newtypes_tutorial.rst:550 msgid "$ python -m pip install ." msgstr "" -#: ../../extending/newtypes_tutorial.rst:216 -msgid "" -"in a shell should produce a file :file:`custom.so` in a subdirectory and " -"install it; now fire up Python --- you should be able to ``import custom`` " -"and play around with ``Custom`` objects." +msgid "in a shell should produce a file :file:`custom.so` in a subdirectory and install it; now fire up Python --- you should be able to ``import custom`` and play around with ``Custom`` objects." msgstr "" -#: ../../extending/newtypes_tutorial.rst:220 msgid "That wasn't so hard, was it?" msgstr "" -#: ../../extending/newtypes_tutorial.rst:222 -msgid "" -"Of course, the current Custom type is pretty uninteresting. It has no data " -"and doesn't do anything. It can't even be subclassed." +msgid "Of course, the current Custom type is pretty uninteresting. It has no data and doesn't do anything. It can't even be subclassed." msgstr "" -#: ../../extending/newtypes_tutorial.rst:227 msgid "Adding data and methods to the Basic example" msgstr "" -#: ../../extending/newtypes_tutorial.rst:229 -msgid "" -"Let's extend the basic example to add some data and methods. Let's also " -"make the type usable as a base class. We'll create a new module, :mod:`!" -"custom2` that adds these capabilities:" +msgid "Let's extend the basic example to add some data and methods. Let's also make the type usable as a base class. We'll create a new module, :mod:`!custom2` that adds these capabilities:" msgstr "" -#: ../../extending/newtypes_tutorial.rst:233 msgid "" "#define PY_SSIZE_T_CLEAN\n" "#include \n" @@ -560,8 +399,7 @@ msgid "" " return -1;\n" " }\n" "\n" -" if (PyModule_AddObjectRef(m, \"Custom\", (PyObject *) &CustomType) < 0) " -"{\n" +" if (PyModule_AddObjectRef(m, \"Custom\", (PyObject *) &CustomType) < 0) {\n" " return -1;\n" " }\n" "\n" @@ -570,8 +408,7 @@ msgid "" "\n" "static PyModuleDef_Slot custom_module_slots[] = {\n" " {Py_mod_exec, custom_module_exec},\n" -" {Py_mod_multiple_interpreters, " -"Py_MOD_MULTIPLE_INTERPRETERS_NOT_SUPPORTED},\n" +" {Py_mod_multiple_interpreters, Py_MOD_MULTIPLE_INTERPRETERS_NOT_SUPPORTED},\n" " {0, NULL}\n" "};\n" "\n" @@ -590,23 +427,15 @@ msgid "" "}\n" msgstr "" -#: ../../extending/newtypes_tutorial.rst:236 msgid "This version of the module has a number of changes." msgstr "" -#: ../../extending/newtypes_tutorial.rst:238 -msgid "" -"The :class:`!Custom` type now has three data attributes in its C struct, " -"*first*, *last*, and *number*. The *first* and *last* variables are Python " -"strings containing first and last names. The *number* attribute is a C " -"integer." +msgid "The :class:`!Custom` type now has three data attributes in its C struct, *first*, *last*, and *number*. The *first* and *last* variables are Python strings containing first and last names. The *number* attribute is a C integer." msgstr "" -#: ../../extending/newtypes_tutorial.rst:242 msgid "The object structure is updated accordingly::" msgstr "" -#: ../../extending/newtypes_tutorial.rst:244 msgid "" "typedef struct {\n" " PyObject_HEAD\n" @@ -616,13 +445,9 @@ msgid "" "} CustomObject;" msgstr "" -#: ../../extending/newtypes_tutorial.rst:251 -msgid "" -"Because we now have data to manage, we have to be more careful about object " -"allocation and deallocation. At a minimum, we need a deallocation method::" +msgid "Because we now have data to manage, we have to be more careful about object allocation and deallocation. At a minimum, we need a deallocation method::" msgstr "" -#: ../../extending/newtypes_tutorial.rst:254 msgid "" "static void\n" "Custom_dealloc(PyObject *op)\n" @@ -634,43 +459,21 @@ msgid "" "}" msgstr "" -#: ../../extending/newtypes_tutorial.rst:263 msgid "which is assigned to the :c:member:`~PyTypeObject.tp_dealloc` member::" msgstr "" -#: ../../extending/newtypes_tutorial.rst:265 msgid ".tp_dealloc = Custom_dealloc," msgstr "" -#: ../../extending/newtypes_tutorial.rst:267 -msgid "" -"This method first clears the reference counts of the two Python " -"attributes. :c:func:`Py_XDECREF` correctly handles the case where its " -"argument is ``NULL`` (which might happen here if ``tp_new`` failed midway). " -"It then calls the :c:member:`~PyTypeObject.tp_free` member of the object's " -"type (computed by ``Py_TYPE(self)``) to free the object's memory. Note that " -"the object's type might not be :class:`!CustomType`, because the object may " -"be an instance of a subclass." +msgid "This method first clears the reference counts of the two Python attributes. :c:func:`Py_XDECREF` correctly handles the case where its argument is ``NULL`` (which might happen here if ``tp_new`` failed midway). It then calls the :c:member:`~PyTypeObject.tp_free` member of the object's type (computed by ``Py_TYPE(self)``) to free the object's memory. Note that the object's type might not be :class:`!CustomType`, because the object may be an instance of a subclass." msgstr "" -#: ../../extending/newtypes_tutorial.rst:277 -msgid "" -"The explicit cast to ``CustomObject *`` above is needed because we defined " -"``Custom_dealloc`` to take a ``PyObject *`` argument, as the ``tp_dealloc`` " -"function pointer expects to receive a ``PyObject *`` argument. By assigning " -"to the ``tp_dealloc`` slot of a type, we declare that it can only be called " -"with instances of our ``CustomObject`` class, so the cast to ``(CustomObject " -"*)`` is safe. This is object-oriented polymorphism, in C!" +msgid "The explicit cast to ``CustomObject *`` above is needed because we defined ``Custom_dealloc`` to take a ``PyObject *`` argument, as the ``tp_dealloc`` function pointer expects to receive a ``PyObject *`` argument. By assigning to the ``tp_dealloc`` slot of a type, we declare that it can only be called with instances of our ``CustomObject`` class, so the cast to ``(CustomObject *)`` is safe. This is object-oriented polymorphism, in C!" msgstr "" -#: ../../extending/newtypes_tutorial.rst:285 -msgid "" -"In existing code, or in previous versions of this tutorial, you might see " -"similar functions take a pointer to the subtype object structure " -"(``CustomObject*``) directly, like this::" +msgid "In existing code, or in previous versions of this tutorial, you might see similar functions take a pointer to the subtype object structure (``CustomObject*``) directly, like this::" msgstr "" -#: ../../extending/newtypes_tutorial.rst:289 msgid "" "Custom_dealloc(CustomObject *self)\n" "{\n" @@ -682,19 +485,12 @@ msgid "" ".tp_dealloc = (destructor) Custom_dealloc," msgstr "" -#: ../../extending/newtypes_tutorial.rst:298 -msgid "" -"This does the same thing on all architectures that CPython supports, but " -"according to the C standard, it invokes undefined behavior." +msgid "This does the same thing on all architectures that CPython supports, but according to the C standard, it invokes undefined behavior." msgstr "" -#: ../../extending/newtypes_tutorial.rst:302 -msgid "" -"We want to make sure that the first and last names are initialized to empty " -"strings, so we provide a ``tp_new`` implementation::" +msgid "We want to make sure that the first and last names are initialized to empty strings, so we provide a ``tp_new`` implementation::" msgstr "" -#: ../../extending/newtypes_tutorial.rst:305 msgid "" "static PyObject *\n" "Custom_new(PyTypeObject *type, PyObject *args, PyObject *kwds)\n" @@ -718,88 +514,39 @@ msgid "" "}" msgstr "" -#: ../../extending/newtypes_tutorial.rst:326 msgid "and install it in the :c:member:`~PyTypeObject.tp_new` member::" msgstr "" -#: ../../extending/newtypes_tutorial.rst:328 msgid ".tp_new = Custom_new," msgstr "" -#: ../../extending/newtypes_tutorial.rst:330 -msgid "" -"The ``tp_new`` handler is responsible for creating (as opposed to " -"initializing) objects of the type. It is exposed in Python as " -"the :meth:`~object.__new__` method. It is not required to define a " -"``tp_new`` member, and indeed many extension types will simply " -"reuse :c:func:`PyType_GenericNew` as done in the first version of " -"the :class:`!Custom` type above. In this case, we use the ``tp_new`` " -"handler to initialize the ``first`` and ``last`` attributes to non-``NULL`` " -"default values." +msgid "The ``tp_new`` handler is responsible for creating (as opposed to initializing) objects of the type. It is exposed in Python as the :meth:`~object.__new__` method. It is not required to define a ``tp_new`` member, and indeed many extension types will simply reuse :c:func:`PyType_GenericNew` as done in the first version of the :class:`!Custom` type above. In this case, we use the ``tp_new`` handler to initialize the ``first`` and ``last`` attributes to non-``NULL`` default values." msgstr "" -#: ../../extending/newtypes_tutorial.rst:338 -msgid "" -"``tp_new`` is passed the type being instantiated (not necessarily " -"``CustomType``, if a subclass is instantiated) and any arguments passed when " -"the type was called, and is expected to return the instance created. " -"``tp_new`` handlers always accept positional and keyword arguments, but they " -"often ignore the arguments, leaving the argument handling to initializer " -"(a.k.a. ``tp_init`` in C or ``__init__`` in Python) methods." +msgid "``tp_new`` is passed the type being instantiated (not necessarily ``CustomType``, if a subclass is instantiated) and any arguments passed when the type was called, and is expected to return the instance created. ``tp_new`` handlers always accept positional and keyword arguments, but they often ignore the arguments, leaving the argument handling to initializer (a.k.a. ``tp_init`` in C or ``__init__`` in Python) methods." msgstr "" -#: ../../extending/newtypes_tutorial.rst:346 -msgid "" -"``tp_new`` shouldn't call ``tp_init`` explicitly, as the interpreter will do " -"it itself." +msgid "``tp_new`` shouldn't call ``tp_init`` explicitly, as the interpreter will do it itself." msgstr "" -#: ../../extending/newtypes_tutorial.rst:349 -msgid "" -"The ``tp_new`` implementation calls the :c:member:`~PyTypeObject.tp_alloc` " -"slot to allocate memory::" +msgid "The ``tp_new`` implementation calls the :c:member:`~PyTypeObject.tp_alloc` slot to allocate memory::" msgstr "" -#: ../../extending/newtypes_tutorial.rst:352 msgid "self = (CustomObject *) type->tp_alloc(type, 0);" msgstr "" -#: ../../extending/newtypes_tutorial.rst:354 -msgid "" -"Since memory allocation may fail, we must check " -"the :c:member:`~PyTypeObject.tp_alloc` result against ``NULL`` before " -"proceeding." +msgid "Since memory allocation may fail, we must check the :c:member:`~PyTypeObject.tp_alloc` result against ``NULL`` before proceeding." msgstr "" -#: ../../extending/newtypes_tutorial.rst:358 -msgid "" -"We didn't fill the :c:member:`~PyTypeObject.tp_alloc` slot ourselves. " -"Rather :c:func:`PyType_Ready` fills it for us by inheriting it from our base " -"class, which is :class:`object` by default. Most types use the default " -"allocation strategy." +msgid "We didn't fill the :c:member:`~PyTypeObject.tp_alloc` slot ourselves. Rather :c:func:`PyType_Ready` fills it for us by inheriting it from our base class, which is :class:`object` by default. Most types use the default allocation strategy." msgstr "" -#: ../../extending/newtypes_tutorial.rst:364 -msgid "" -"If you are creating a co-operative :c:member:`~PyTypeObject.tp_new` (one " -"that calls a base type's :c:member:`~PyTypeObject.tp_new` " -"or :meth:`~object.__new__`), you must *not* try to determine what method to " -"call using method resolution order at runtime. Always statically determine " -"what type you are going to call, and call " -"its :c:member:`~PyTypeObject.tp_new` directly, or via ``type->tp_base-" -">tp_new``. If you do not do this, Python subclasses of your type that also " -"inherit from other Python-defined classes may not work correctly. " -"(Specifically, you may not be able to create instances of such subclasses " -"without getting a :exc:`TypeError`.)" -msgstr "" - -#: ../../extending/newtypes_tutorial.rst:374 -msgid "" -"We also define an initialization function which accepts arguments to provide " -"initial values for our instance::" +msgid "If you are creating a co-operative :c:member:`~PyTypeObject.tp_new` (one that calls a base type's :c:member:`~PyTypeObject.tp_new` or :meth:`~object.__new__`), you must *not* try to determine what method to call using method resolution order at runtime. Always statically determine what type you are going to call, and call its :c:member:`~PyTypeObject.tp_new` directly, or via ``type->tp_base->tp_new``. If you do not do this, Python subclasses of your type that also inherit from other Python-defined classes may not work correctly. (Specifically, you may not be able to create instances of such subclasses without getting a :exc:`TypeError`.)" +msgstr "" + +msgid "We also define an initialization function which accepts arguments to provide initial values for our instance::" msgstr "" -#: ../../extending/newtypes_tutorial.rst:377 msgid "" "static int\n" "Custom_init(PyObject *op, PyObject *args, PyObject *kwds)\n" @@ -829,34 +576,18 @@ msgid "" "}" msgstr "" -#: ../../extending/newtypes_tutorial.rst:404 msgid "by filling the :c:member:`~PyTypeObject.tp_init` slot. ::" msgstr "" -#: ../../extending/newtypes_tutorial.rst:406 msgid ".tp_init = Custom_init," msgstr "" -#: ../../extending/newtypes_tutorial.rst:408 -msgid "" -"The :c:member:`~PyTypeObject.tp_init` slot is exposed in Python as " -"the :meth:`~object.__init__` method. It is used to initialize an object " -"after it's created. Initializers always accept positional and keyword " -"arguments, and they should return either ``0`` on success or ``-1`` on error." +msgid "The :c:member:`~PyTypeObject.tp_init` slot is exposed in Python as the :meth:`~object.__init__` method. It is used to initialize an object after it's created. Initializers always accept positional and keyword arguments, and they should return either ``0`` on success or ``-1`` on error." msgstr "" -#: ../../extending/newtypes_tutorial.rst:413 -msgid "" -"Unlike the ``tp_new`` handler, there is no guarantee that ``tp_init`` is " -"called at all (for example, the :mod:`pickle` module by default doesn't " -"call :meth:`~object.__init__` on unpickled instances). It can also be " -"called multiple times. Anyone can call the :meth:`!__init__` method on our " -"objects. For this reason, we have to be extra careful when assigning the " -"new attribute values. We might be tempted, for example to assign the " -"``first`` member like this::" +msgid "Unlike the ``tp_new`` handler, there is no guarantee that ``tp_init`` is called at all (for example, the :mod:`pickle` module by default doesn't call :meth:`~object.__init__` on unpickled instances). It can also be called multiple times. Anyone can call the :meth:`!__init__` method on our objects. For this reason, we have to be extra careful when assigning the new attribute values. We might be tempted, for example to assign the ``first`` member like this::" msgstr "" -#: ../../extending/newtypes_tutorial.rst:421 msgid "" "if (first) {\n" " Py_XDECREF(self->first);\n" @@ -865,48 +596,24 @@ msgid "" "}" msgstr "" -#: ../../extending/newtypes_tutorial.rst:427 -msgid "" -"But this would be risky. Our type doesn't restrict the type of the " -"``first`` member, so it could be any kind of object. It could have a " -"destructor that causes code to be executed that tries to access the " -"``first`` member; or that destructor could detach the :term:`thread state " -"` and let arbitrary code run in other threads that " -"accesses and modifies our object." +msgid "But this would be risky. Our type doesn't restrict the type of the ``first`` member, so it could be any kind of object. It could have a destructor that causes code to be executed that tries to access the ``first`` member; or that destructor could detach the :term:`thread state ` and let arbitrary code run in other threads that accesses and modifies our object." msgstr "" -#: ../../extending/newtypes_tutorial.rst:434 -msgid "" -"To be paranoid and protect ourselves against this possibility, we almost " -"always reassign members before decrementing their reference counts. When " -"don't we have to do this?" +msgid "To be paranoid and protect ourselves against this possibility, we almost always reassign members before decrementing their reference counts. When don't we have to do this?" msgstr "" -#: ../../extending/newtypes_tutorial.rst:438 msgid "when we absolutely know that the reference count is greater than 1;" msgstr "" -#: ../../extending/newtypes_tutorial.rst:440 -msgid "" -"when we know that deallocation of the object [#]_ will neither detach " -"the :term:`thread state ` nor cause any calls back " -"into our type's code;" +msgid "when we know that deallocation of the object [#]_ will neither detach the :term:`thread state ` nor cause any calls back into our type's code;" msgstr "" -#: ../../extending/newtypes_tutorial.rst:443 -msgid "" -"when decrementing a reference count in " -"a :c:member:`~PyTypeObject.tp_dealloc` handler on a type which doesn't " -"support cyclic garbage collection [#]_." +msgid "when decrementing a reference count in a :c:member:`~PyTypeObject.tp_dealloc` handler on a type which doesn't support cyclic garbage collection [#]_." msgstr "" -#: ../../extending/newtypes_tutorial.rst:446 -msgid "" -"We want to expose our instance variables as attributes. There are a number " -"of ways to do that. The simplest way is to define member definitions::" +msgid "We want to expose our instance variables as attributes. There are a number of ways to do that. The simplest way is to define member definitions::" msgstr "" -#: ../../extending/newtypes_tutorial.rst:449 msgid "" "static PyMemberDef Custom_members[] = {\n" " {\"first\", Py_T_OBJECT_EX, offsetof(CustomObject, first), 0,\n" @@ -919,40 +626,21 @@ msgid "" "};" msgstr "" -#: ../../extending/newtypes_tutorial.rst:459 -msgid "" -"and put the definitions in the :c:member:`~PyTypeObject.tp_members` slot::" +msgid "and put the definitions in the :c:member:`~PyTypeObject.tp_members` slot::" msgstr "" -#: ../../extending/newtypes_tutorial.rst:461 msgid ".tp_members = Custom_members," msgstr "" -#: ../../extending/newtypes_tutorial.rst:463 -msgid "" -"Each member definition has a member name, type, offset, access flags and " -"documentation string. See the :ref:`Generic-Attribute-Management` section " -"below for details." +msgid "Each member definition has a member name, type, offset, access flags and documentation string. See the :ref:`Generic-Attribute-Management` section below for details." msgstr "" -#: ../../extending/newtypes_tutorial.rst:467 -msgid "" -"A disadvantage of this approach is that it doesn't provide a way to restrict " -"the types of objects that can be assigned to the Python attributes. We " -"expect the first and last names to be strings, but any Python objects can be " -"assigned. Further, the attributes can be deleted, setting the C pointers to " -"``NULL``. Even though we can make sure the members are initialized to non-" -"``NULL`` values, the members can be set to ``NULL`` if the attributes are " -"deleted." +msgid "A disadvantage of this approach is that it doesn't provide a way to restrict the types of objects that can be assigned to the Python attributes. We expect the first and last names to be strings, but any Python objects can be assigned. Further, the attributes can be deleted, setting the C pointers to ``NULL``. Even though we can make sure the members are initialized to non-``NULL`` values, the members can be set to ``NULL`` if the attributes are deleted." msgstr "" -#: ../../extending/newtypes_tutorial.rst:474 -msgid "" -"We define a single method, :meth:`!Custom.name`, that outputs the objects " -"name as the concatenation of the first and last names. ::" +msgid "We define a single method, :meth:`!Custom.name`, that outputs the objects name as the concatenation of the first and last names. ::" msgstr "" -#: ../../extending/newtypes_tutorial.rst:477 msgid "" "static PyObject *\n" "Custom_name(PyObject *op, PyObject *Py_UNUSED(dummy))\n" @@ -970,38 +658,20 @@ msgid "" "}" msgstr "" -#: ../../extending/newtypes_tutorial.rst:492 -msgid "" -"The method is implemented as a C function that takes a :class:`!Custom` " -"(or :class:`!Custom` subclass) instance as the first argument. Methods " -"always take an instance as the first argument. Methods often take positional " -"and keyword arguments as well, but in this case we don't take any and don't " -"need to accept a positional argument tuple or keyword argument dictionary. " -"This method is equivalent to the Python method:" +msgid "The method is implemented as a C function that takes a :class:`!Custom` (or :class:`!Custom` subclass) instance as the first argument. Methods always take an instance as the first argument. Methods often take positional and keyword arguments as well, but in this case we don't take any and don't need to accept a positional argument tuple or keyword argument dictionary. This method is equivalent to the Python method:" msgstr "" -#: ../../extending/newtypes_tutorial.rst:499 msgid "" "def name(self):\n" " return \"%s %s\" % (self.first, self.last)" msgstr "" -#: ../../extending/newtypes_tutorial.rst:504 -msgid "" -"Note that we have to check for the possibility that our :attr:`!first` " -"and :attr:`!last` members are ``NULL``. This is because they can be " -"deleted, in which case they are set to ``NULL``. It would be better to " -"prevent deletion of these attributes and to restrict the attribute values to " -"be strings. We'll see how to do that in the next section." +msgid "Note that we have to check for the possibility that our :attr:`!first` and :attr:`!last` members are ``NULL``. This is because they can be deleted, in which case they are set to ``NULL``. It would be better to prevent deletion of these attributes and to restrict the attribute values to be strings. We'll see how to do that in the next section." msgstr "" -#: ../../extending/newtypes_tutorial.rst:510 -msgid "" -"Now that we've defined the method, we need to create an array of method " -"definitions::" +msgid "Now that we've defined the method, we need to create an array of method definitions::" msgstr "" -#: ../../extending/newtypes_tutorial.rst:513 msgid "" "static PyMethodDef Custom_methods[] = {\n" " {\"name\", Custom_name, METH_NOARGS,\n" @@ -1011,44 +681,27 @@ msgid "" "};" msgstr "" -#: ../../extending/newtypes_tutorial.rst:520 -msgid "" -"(note that we used the :c:macro:`METH_NOARGS` flag to indicate that the " -"method is expecting no arguments other than *self*)" +msgid "(note that we used the :c:macro:`METH_NOARGS` flag to indicate that the method is expecting no arguments other than *self*)" msgstr "" -#: ../../extending/newtypes_tutorial.rst:523 msgid "and assign it to the :c:member:`~PyTypeObject.tp_methods` slot::" msgstr "" -#: ../../extending/newtypes_tutorial.rst:525 msgid ".tp_methods = Custom_methods," msgstr "" -#: ../../extending/newtypes_tutorial.rst:527 -msgid "" -"Finally, we'll make our type usable as a base class for subclassing. We've " -"written our methods carefully so far so that they don't make any assumptions " -"about the type of the object being created or used, so all we need to do is " -"to add the :c:macro:`Py_TPFLAGS_BASETYPE` to our class flag definition::" +msgid "Finally, we'll make our type usable as a base class for subclassing. We've written our methods carefully so far so that they don't make any assumptions about the type of the object being created or used, so all we need to do is to add the :c:macro:`Py_TPFLAGS_BASETYPE` to our class flag definition::" msgstr "" -#: ../../extending/newtypes_tutorial.rst:532 msgid ".tp_flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE," msgstr "" -#: ../../extending/newtypes_tutorial.rst:534 -msgid "" -"We rename :c:func:`!PyInit_custom` to :c:func:`!PyInit_custom2`, update the " -"module name in the :c:type:`PyModuleDef` struct, and update the full class " -"name in the :c:type:`PyTypeObject` struct." +msgid "We rename :c:func:`!PyInit_custom` to :c:func:`!PyInit_custom2`, update the module name in the :c:type:`PyModuleDef` struct, and update the full class name in the :c:type:`PyTypeObject` struct." msgstr "" -#: ../../extending/newtypes_tutorial.rst:538 msgid "Finally, we update our :file:`setup.py` file to include the new module," msgstr "" -#: ../../extending/newtypes_tutorial.rst:540 msgid "" "from setuptools import Extension, setup\n" "setup(ext_modules=[\n" @@ -1057,24 +710,15 @@ msgid "" "])" msgstr "" -#: ../../extending/newtypes_tutorial.rst:548 msgid "and then we re-install so that we can ``import custom2``:" msgstr "" -#: ../../extending/newtypes_tutorial.rst:555 msgid "Providing finer control over data attributes" msgstr "" -#: ../../extending/newtypes_tutorial.rst:557 -msgid "" -"In this section, we'll provide finer control over how the :attr:`!first` " -"and :attr:`!last` attributes are set in the :class:`!Custom` example. In the " -"previous version of our module, the instance variables :attr:`!first` " -"and :attr:`!last` could be set to non-string values or even deleted. We want " -"to make sure that these attributes always contain strings." +msgid "In this section, we'll provide finer control over how the :attr:`!first` and :attr:`!last` attributes are set in the :class:`!Custom` example. In the previous version of our module, the instance variables :attr:`!first` and :attr:`!last` could be set to non-string values or even deleted. We want to make sure that these attributes always contain strings." msgstr "" -#: ../../extending/newtypes_tutorial.rst:563 msgid "" "#define PY_SSIZE_T_CLEAN\n" "#include \n" @@ -1156,8 +800,7 @@ msgid "" "{\n" " CustomObject *self = (CustomObject *) op;\n" " if (value == NULL) {\n" -" PyErr_SetString(PyExc_TypeError, \"Cannot delete the first " -"attribute\");\n" +" PyErr_SetString(PyExc_TypeError, \"Cannot delete the first attribute\");\n" " return -1;\n" " }\n" " if (!PyUnicode_Check(value)) {\n" @@ -1181,8 +824,7 @@ msgid "" "{\n" " CustomObject *self = (CustomObject *) op;\n" " if (value == NULL) {\n" -" PyErr_SetString(PyExc_TypeError, \"Cannot delete the last " -"attribute\");\n" +" PyErr_SetString(PyExc_TypeError, \"Cannot delete the last attribute\");\n" " return -1;\n" " }\n" " if (!PyUnicode_Check(value)) {\n" @@ -1238,8 +880,7 @@ msgid "" " return -1;\n" " }\n" "\n" -" if (PyModule_AddObjectRef(m, \"Custom\", (PyObject *) &CustomType) < 0) " -"{\n" +" if (PyModule_AddObjectRef(m, \"Custom\", (PyObject *) &CustomType) < 0) {\n" " return -1;\n" " }\n" "\n" @@ -1248,8 +889,7 @@ msgid "" "\n" "static PyModuleDef_Slot custom_module_slots[] = {\n" " {Py_mod_exec, custom_module_exec},\n" -" {Py_mod_multiple_interpreters, " -"Py_MOD_MULTIPLE_INTERPRETERS_NOT_SUPPORTED},\n" +" {Py_mod_multiple_interpreters, Py_MOD_MULTIPLE_INTERPRETERS_NOT_SUPPORTED},\n" " {0, NULL}\n" "};\n" "\n" @@ -1268,14 +908,9 @@ msgid "" "}\n" msgstr "" -#: ../../extending/newtypes_tutorial.rst:566 -msgid "" -"To provide greater control, over the :attr:`!first` and :attr:`!last` " -"attributes, we'll use custom getter and setter functions. Here are the " -"functions for getting and setting the :attr:`!first` attribute::" +msgid "To provide greater control, over the :attr:`!first` and :attr:`!last` attributes, we'll use custom getter and setter functions. Here are the functions for getting and setting the :attr:`!first` attribute::" msgstr "" -#: ../../extending/newtypes_tutorial.rst:570 msgid "" "static PyObject *\n" "Custom_getfirst(PyObject *op, void *closure)\n" @@ -1291,8 +926,7 @@ msgid "" " CustomObject *self = (CustomObject *) op;\n" " PyObject *tmp;\n" " if (value == NULL) {\n" -" PyErr_SetString(PyExc_TypeError, \"Cannot delete the first " -"attribute\");\n" +" PyErr_SetString(PyExc_TypeError, \"Cannot delete the first attribute\");\n" " return -1;\n" " }\n" " if (!PyUnicode_Check(value)) {\n" @@ -1308,29 +942,15 @@ msgid "" "}" msgstr "" -#: ../../extending/newtypes_tutorial.rst:599 -msgid "" -"The getter function is passed a :class:`!Custom` object and a \"closure\", " -"which is a void pointer. In this case, the closure is ignored. (The " -"closure supports an advanced usage in which definition data is passed to the " -"getter and setter. This could, for example, be used to allow a single set of " -"getter and setter functions that decide the attribute to get or set based on " -"data in the closure.)" +msgid "The getter function is passed a :class:`!Custom` object and a \"closure\", which is a void pointer. In this case, the closure is ignored. (The closure supports an advanced usage in which definition data is passed to the getter and setter. This could, for example, be used to allow a single set of getter and setter functions that decide the attribute to get or set based on data in the closure.)" msgstr "" -#: ../../extending/newtypes_tutorial.rst:605 -msgid "" -"The setter function is passed the :class:`!Custom` object, the new value, " -"and the closure. The new value may be ``NULL``, in which case the attribute " -"is being deleted. In our setter, we raise an error if the attribute is " -"deleted or if its new value is not a string." +msgid "The setter function is passed the :class:`!Custom` object, the new value, and the closure. The new value may be ``NULL``, in which case the attribute is being deleted. In our setter, we raise an error if the attribute is deleted or if its new value is not a string." msgstr "" -#: ../../extending/newtypes_tutorial.rst:610 msgid "We create an array of :c:type:`PyGetSetDef` structures::" msgstr "" -#: ../../extending/newtypes_tutorial.rst:612 msgid "" "static PyGetSetDef Custom_getsetters[] = {\n" " {\"first\", Custom_getfirst, Custom_setfirst,\n" @@ -1341,26 +961,18 @@ msgid "" "};" msgstr "" -#: ../../extending/newtypes_tutorial.rst:620 msgid "and register it in the :c:member:`~PyTypeObject.tp_getset` slot::" msgstr "" -#: ../../extending/newtypes_tutorial.rst:622 msgid ".tp_getset = Custom_getsetters," msgstr "" -#: ../../extending/newtypes_tutorial.rst:624 -msgid "" -"The last item in a :c:type:`PyGetSetDef` structure is the \"closure\" " -"mentioned above. In this case, we aren't using a closure, so we just pass " -"``NULL``." +msgid "The last item in a :c:type:`PyGetSetDef` structure is the \"closure\" mentioned above. In this case, we aren't using a closure, so we just pass ``NULL``." msgstr "" -#: ../../extending/newtypes_tutorial.rst:627 msgid "We also remove the member definitions for these attributes::" msgstr "" -#: ../../extending/newtypes_tutorial.rst:629 msgid "" "static PyMemberDef Custom_members[] = {\n" " {\"number\", Py_T_INT, offsetof(CustomObject, number), 0,\n" @@ -1369,13 +981,9 @@ msgid "" "};" msgstr "" -#: ../../extending/newtypes_tutorial.rst:635 -msgid "" -"We also need to update the :c:member:`~PyTypeObject.tp_init` handler to only " -"allow strings [#]_ to be passed::" +msgid "We also need to update the :c:member:`~PyTypeObject.tp_init` handler to only allow strings [#]_ to be passed::" msgstr "" -#: ../../extending/newtypes_tutorial.rst:638 msgid "" "static int\n" "Custom_init(PyObject *op, PyObject *args, PyObject *kwds)\n" @@ -1405,60 +1013,30 @@ msgid "" "}" msgstr "" -#: ../../extending/newtypes_tutorial.rst:665 -msgid "" -"With these changes, we can assure that the ``first`` and ``last`` members " -"are never ``NULL`` so we can remove checks for ``NULL`` values in almost all " -"cases. This means that most of the :c:func:`Py_XDECREF` calls can be " -"converted to :c:func:`Py_DECREF` calls. The only place we can't change " -"these calls is in the ``tp_dealloc`` implementation, where there is the " -"possibility that the initialization of these members failed in ``tp_new``." +msgid "With these changes, we can assure that the ``first`` and ``last`` members are never ``NULL`` so we can remove checks for ``NULL`` values in almost all cases. This means that most of the :c:func:`Py_XDECREF` calls can be converted to :c:func:`Py_DECREF` calls. The only place we can't change these calls is in the ``tp_dealloc`` implementation, where there is the possibility that the initialization of these members failed in ``tp_new``." msgstr "" -#: ../../extending/newtypes_tutorial.rst:672 -msgid "" -"We also rename the module initialization function and module name in the " -"initialization function, as we did before, and we add an extra definition to " -"the :file:`setup.py` file." +msgid "We also rename the module initialization function and module name in the initialization function, as we did before, and we add an extra definition to the :file:`setup.py` file." msgstr "" -#: ../../extending/newtypes_tutorial.rst:678 msgid "Supporting cyclic garbage collection" msgstr "" -#: ../../extending/newtypes_tutorial.rst:680 -msgid "" -"Python has a :term:`cyclic garbage collector (GC) ` that " -"can identify unneeded objects even when their reference counts are not zero. " -"This can happen when objects are involved in cycles. For example, consider:" +msgid "Python has a :term:`cyclic garbage collector (GC) ` that can identify unneeded objects even when their reference counts are not zero. This can happen when objects are involved in cycles. For example, consider:" msgstr "" -#: ../../extending/newtypes_tutorial.rst:684 msgid "" ">>> l = []\n" ">>> l.append(l)\n" ">>> del l" msgstr "" -#: ../../extending/newtypes_tutorial.rst:690 -msgid "" -"In this example, we create a list that contains itself. When we delete it, " -"it still has a reference from itself. Its reference count doesn't drop to " -"zero. Fortunately, Python's cyclic garbage collector will eventually figure " -"out that the list is garbage and free it." +msgid "In this example, we create a list that contains itself. When we delete it, it still has a reference from itself. Its reference count doesn't drop to zero. Fortunately, Python's cyclic garbage collector will eventually figure out that the list is garbage and free it." msgstr "" -#: ../../extending/newtypes_tutorial.rst:695 -msgid "" -"In the second version of the :class:`!Custom` example, we allowed any kind " -"of object to be stored in the :attr:`!first` or :attr:`!last` attributes " -"[#]_. Besides, in the second and third versions, we allowed " -"subclassing :class:`!Custom`, and subclasses may add arbitrary attributes. " -"For any of those two reasons, :class:`!Custom` objects can participate in " -"cycles:" +msgid "In the second version of the :class:`!Custom` example, we allowed any kind of object to be stored in the :attr:`!first` or :attr:`!last` attributes [#]_. Besides, in the second and third versions, we allowed subclassing :class:`!Custom`, and subclasses may add arbitrary attributes. For any of those two reasons, :class:`!Custom` objects can participate in cycles:" msgstr "" -#: ../../extending/newtypes_tutorial.rst:701 msgid "" ">>> import custom3\n" ">>> class Derived(custom3.Custom): pass\n" @@ -1467,15 +1045,9 @@ msgid "" ">>> n.some_attribute = n" msgstr "" -#: ../../extending/newtypes_tutorial.rst:709 -msgid "" -"To allow a :class:`!Custom` instance participating in a reference cycle to " -"be properly detected and collected by the cyclic GC, our :class:`!Custom` " -"type needs to fill two additional slots and to enable a flag that enables " -"these slots:" +msgid "To allow a :class:`!Custom` instance participating in a reference cycle to be properly detected and collected by the cyclic GC, our :class:`!Custom` type needs to fill two additional slots and to enable a flag that enables these slots:" msgstr "" -#: ../../extending/newtypes_tutorial.rst:713 msgid "" "#define PY_SSIZE_T_CLEAN\n" "#include \n" @@ -1574,8 +1146,7 @@ msgid "" "{\n" " CustomObject *self = (CustomObject *) op;\n" " if (value == NULL) {\n" -" PyErr_SetString(PyExc_TypeError, \"Cannot delete the first " -"attribute\");\n" +" PyErr_SetString(PyExc_TypeError, \"Cannot delete the first attribute\");\n" " return -1;\n" " }\n" " if (!PyUnicode_Check(value)) {\n" @@ -1599,8 +1170,7 @@ msgid "" "{\n" " CustomObject *self = (CustomObject *) op;\n" " if (value == NULL) {\n" -" PyErr_SetString(PyExc_TypeError, \"Cannot delete the last " -"attribute\");\n" +" PyErr_SetString(PyExc_TypeError, \"Cannot delete the last attribute\");\n" " return -1;\n" " }\n" " if (!PyUnicode_Check(value)) {\n" @@ -1640,8 +1210,7 @@ msgid "" " .tp_doc = PyDoc_STR(\"Custom objects\"),\n" " .tp_basicsize = sizeof(CustomObject),\n" " .tp_itemsize = 0,\n" -" .tp_flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE | " -"Py_TPFLAGS_HAVE_GC,\n" +" .tp_flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE | Py_TPFLAGS_HAVE_GC,\n" " .tp_new = Custom_new,\n" " .tp_init = Custom_init,\n" " .tp_dealloc = Custom_dealloc,\n" @@ -1659,8 +1228,7 @@ msgid "" " return -1;\n" " }\n" "\n" -" if (PyModule_AddObjectRef(m, \"Custom\", (PyObject *) &CustomType) < 0) " -"{\n" +" if (PyModule_AddObjectRef(m, \"Custom\", (PyObject *) &CustomType) < 0) {\n" " return -1;\n" " }\n" "\n" @@ -1669,8 +1237,7 @@ msgid "" "\n" "static PyModuleDef_Slot custom_module_slots[] = {\n" " {Py_mod_exec, custom_module_exec},\n" -" {Py_mod_multiple_interpreters, " -"Py_MOD_MULTIPLE_INTERPRETERS_NOT_SUPPORTED},\n" +" {Py_mod_multiple_interpreters, Py_MOD_MULTIPLE_INTERPRETERS_NOT_SUPPORTED},\n" " {0, NULL}\n" "};\n" "\n" @@ -1689,13 +1256,9 @@ msgid "" "}\n" msgstr "" -#: ../../extending/newtypes_tutorial.rst:716 -msgid "" -"First, the traversal method lets the cyclic GC know about subobjects that " -"could participate in cycles::" +msgid "First, the traversal method lets the cyclic GC know about subobjects that could participate in cycles::" msgstr "" -#: ../../extending/newtypes_tutorial.rst:719 msgid "" "static int\n" "Custom_traverse(PyObject *op, visitproc visit, void *arg)\n" @@ -1716,23 +1279,12 @@ msgid "" "}" msgstr "" -#: ../../extending/newtypes_tutorial.rst:737 -msgid "" -"For each subobject that can participate in cycles, we need to call " -"the :c:func:`!visit` function, which is passed to the traversal method. " -"The :c:func:`!visit` function takes as arguments the subobject and the extra " -"argument *arg* passed to the traversal method. It returns an integer value " -"that must be returned if it is non-zero." +msgid "For each subobject that can participate in cycles, we need to call the :c:func:`!visit` function, which is passed to the traversal method. The :c:func:`!visit` function takes as arguments the subobject and the extra argument *arg* passed to the traversal method. It returns an integer value that must be returned if it is non-zero." msgstr "" -#: ../../extending/newtypes_tutorial.rst:743 -msgid "" -"Python provides a :c:func:`Py_VISIT` macro that automates calling visit " -"functions. With :c:func:`Py_VISIT`, we can minimize the amount of " -"boilerplate in ``Custom_traverse``::" +msgid "Python provides a :c:func:`Py_VISIT` macro that automates calling visit functions. With :c:func:`Py_VISIT`, we can minimize the amount of boilerplate in ``Custom_traverse``::" msgstr "" -#: ../../extending/newtypes_tutorial.rst:747 msgid "" "static int\n" "Custom_traverse(PyObject *op, visitproc visit, void *arg)\n" @@ -1744,19 +1296,12 @@ msgid "" "}" msgstr "" -#: ../../extending/newtypes_tutorial.rst:757 -msgid "" -"The :c:member:`~PyTypeObject.tp_traverse` implementation must name its " -"arguments exactly *visit* and *arg* in order to use :c:func:`Py_VISIT`." +msgid "The :c:member:`~PyTypeObject.tp_traverse` implementation must name its arguments exactly *visit* and *arg* in order to use :c:func:`Py_VISIT`." msgstr "" -#: ../../extending/newtypes_tutorial.rst:760 -msgid "" -"Second, we need to provide a method for clearing any subobjects that can " -"participate in cycles::" +msgid "Second, we need to provide a method for clearing any subobjects that can participate in cycles::" msgstr "" -#: ../../extending/newtypes_tutorial.rst:763 msgid "" "static int\n" "Custom_clear(PyObject *op)\n" @@ -1768,21 +1313,12 @@ msgid "" "}" msgstr "" -#: ../../extending/newtypes_tutorial.rst:772 -msgid "" -"Notice the use of the :c:func:`Py_CLEAR` macro. It is the recommended and " -"safe way to clear data attributes of arbitrary types while decrementing " -"their reference counts. If you were to call :c:func:`Py_XDECREF` instead on " -"the attribute before setting it to ``NULL``, there is a possibility that the " -"attribute's destructor would call back into code that reads the attribute " -"again (*especially* if there is a reference cycle)." +msgid "Notice the use of the :c:func:`Py_CLEAR` macro. It is the recommended and safe way to clear data attributes of arbitrary types while decrementing their reference counts. If you were to call :c:func:`Py_XDECREF` instead on the attribute before setting it to ``NULL``, there is a possibility that the attribute's destructor would call back into code that reads the attribute again (*especially* if there is a reference cycle)." msgstr "" -#: ../../extending/newtypes_tutorial.rst:780 msgid "You could emulate :c:func:`Py_CLEAR` by writing::" msgstr "" -#: ../../extending/newtypes_tutorial.rst:782 msgid "" "PyObject *tmp;\n" "tmp = self->first;\n" @@ -1790,24 +1326,12 @@ msgid "" "Py_XDECREF(tmp);" msgstr "" -#: ../../extending/newtypes_tutorial.rst:787 -msgid "" -"Nevertheless, it is much easier and less error-prone to always " -"use :c:func:`Py_CLEAR` when deleting an attribute. Don't try to micro-" -"optimize at the expense of robustness!" +msgid "Nevertheless, it is much easier and less error-prone to always use :c:func:`Py_CLEAR` when deleting an attribute. Don't try to micro-optimize at the expense of robustness!" msgstr "" -#: ../../extending/newtypes_tutorial.rst:791 -msgid "" -"The deallocator ``Custom_dealloc`` may call arbitrary code when clearing " -"attributes. It means the circular GC can be triggered inside the function. " -"Since the GC assumes reference count is not zero, we need to untrack the " -"object from the GC by calling :c:func:`PyObject_GC_UnTrack` before clearing " -"members. Here is our reimplemented deallocator " -"using :c:func:`PyObject_GC_UnTrack` and ``Custom_clear``::" +msgid "The deallocator ``Custom_dealloc`` may call arbitrary code when clearing attributes. It means the circular GC can be triggered inside the function. Since the GC assumes reference count is not zero, we need to untrack the object from the GC by calling :c:func:`PyObject_GC_UnTrack` before clearing members. Here is our reimplemented deallocator using :c:func:`PyObject_GC_UnTrack` and ``Custom_clear``::" msgstr "" -#: ../../extending/newtypes_tutorial.rst:798 msgid "" "static void\n" "Custom_dealloc(PyObject *op)\n" @@ -1818,46 +1342,24 @@ msgid "" "}" msgstr "" -#: ../../extending/newtypes_tutorial.rst:806 -msgid "" -"Finally, we add the :c:macro:`Py_TPFLAGS_HAVE_GC` flag to the class flags::" +msgid "Finally, we add the :c:macro:`Py_TPFLAGS_HAVE_GC` flag to the class flags::" msgstr "" -#: ../../extending/newtypes_tutorial.rst:808 -msgid "" -".tp_flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE | Py_TPFLAGS_HAVE_GC," +msgid ".tp_flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE | Py_TPFLAGS_HAVE_GC," msgstr "" -#: ../../extending/newtypes_tutorial.rst:810 -msgid "" -"That's pretty much it. If we had written " -"custom :c:member:`~PyTypeObject.tp_alloc` " -"or :c:member:`~PyTypeObject.tp_free` handlers, we'd need to modify them for " -"cyclic garbage collection. Most extensions will use the versions " -"automatically provided." +msgid "That's pretty much it. If we had written custom :c:member:`~PyTypeObject.tp_alloc` or :c:member:`~PyTypeObject.tp_free` handlers, we'd need to modify them for cyclic garbage collection. Most extensions will use the versions automatically provided." msgstr "" -#: ../../extending/newtypes_tutorial.rst:816 msgid "Subclassing other types" msgstr "" -#: ../../extending/newtypes_tutorial.rst:818 -msgid "" -"It is possible to create new extension types that are derived from existing " -"types. It is easiest to inherit from the built in types, since an extension " -"can easily use the :c:type:`PyTypeObject` it needs. It can be difficult to " -"share these :c:type:`PyTypeObject` structures between extension modules." +msgid "It is possible to create new extension types that are derived from existing types. It is easiest to inherit from the built in types, since an extension can easily use the :c:type:`PyTypeObject` it needs. It can be difficult to share these :c:type:`PyTypeObject` structures between extension modules." msgstr "" -#: ../../extending/newtypes_tutorial.rst:823 -msgid "" -"In this example we will create a :class:`!SubList` type that inherits from " -"the built-in :class:`list` type. The new type will be completely compatible " -"with regular lists, but will have an additional :meth:`!increment` method " -"that increases an internal counter:" +msgid "In this example we will create a :class:`!SubList` type that inherits from the built-in :class:`list` type. The new type will be completely compatible with regular lists, but will have an additional :meth:`!increment` method that increases an internal counter:" msgstr "" -#: ../../extending/newtypes_tutorial.rst:828 msgid "" ">>> import sublist\n" ">>> s = sublist.SubList(range(3))\n" @@ -1870,7 +1372,6 @@ msgid "" "2" msgstr "" -#: ../../extending/newtypes_tutorial.rst:840 msgid "" "#define PY_SSIZE_T_CLEAN\n" "#include \n" @@ -1923,8 +1424,7 @@ msgid "" " return -1;\n" " }\n" "\n" -" if (PyModule_AddObjectRef(m, \"SubList\", (PyObject *) &SubListType) < " -"0) {\n" +" if (PyModule_AddObjectRef(m, \"SubList\", (PyObject *) &SubListType) < 0) {\n" " return -1;\n" " }\n" "\n" @@ -1933,8 +1433,7 @@ msgid "" "\n" "static PyModuleDef_Slot sublist_module_slots[] = {\n" " {Py_mod_exec, sublist_module_exec},\n" -" {Py_mod_multiple_interpreters, " -"Py_MOD_MULTIPLE_INTERPRETERS_NOT_SUPPORTED},\n" +" {Py_mod_multiple_interpreters, Py_MOD_MULTIPLE_INTERPRETERS_NOT_SUPPORTED},\n" " {0, NULL}\n" "};\n" "\n" @@ -1953,14 +1452,9 @@ msgid "" "}\n" msgstr "" -#: ../../extending/newtypes_tutorial.rst:843 -msgid "" -"As you can see, the source code closely resembles the :class:`!Custom` " -"examples in previous sections. We will break down the main differences " -"between them. ::" +msgid "As you can see, the source code closely resembles the :class:`!Custom` examples in previous sections. We will break down the main differences between them. ::" msgstr "" -#: ../../extending/newtypes_tutorial.rst:846 msgid "" "typedef struct {\n" " PyListObject list;\n" @@ -1968,21 +1462,12 @@ msgid "" "} SubListObject;" msgstr "" -#: ../../extending/newtypes_tutorial.rst:851 -msgid "" -"The primary difference for derived type objects is that the base type's " -"object structure must be the first value. The base type will already " -"include the :c:func:`PyObject_HEAD` at the beginning of its structure." +msgid "The primary difference for derived type objects is that the base type's object structure must be the first value. The base type will already include the :c:func:`PyObject_HEAD` at the beginning of its structure." msgstr "" -#: ../../extending/newtypes_tutorial.rst:855 -msgid "" -"When a Python object is a :class:`!SubList` instance, its ``PyObject *`` " -"pointer can be safely cast to both ``PyListObject *`` and ``SubListObject " -"*``::" +msgid "When a Python object is a :class:`!SubList` instance, its ``PyObject *`` pointer can be safely cast to both ``PyListObject *`` and ``SubListObject *``::" msgstr "" -#: ../../extending/newtypes_tutorial.rst:858 msgid "" "static int\n" "SubList_init(PyObject *op, PyObject *args, PyObject *kwds)\n" @@ -1995,32 +1480,15 @@ msgid "" "}" msgstr "" -#: ../../extending/newtypes_tutorial.rst:868 -msgid "" -"We see above how to call through to the :meth:`~object.__init__` method of " -"the base type." +msgid "We see above how to call through to the :meth:`~object.__init__` method of the base type." msgstr "" -#: ../../extending/newtypes_tutorial.rst:871 -msgid "" -"This pattern is important when writing a type with " -"custom :c:member:`~PyTypeObject.tp_new` " -"and :c:member:`~PyTypeObject.tp_dealloc` members. " -"The :c:member:`~PyTypeObject.tp_new` handler should not actually create the " -"memory for the object with its :c:member:`~PyTypeObject.tp_alloc`, but let " -"the base class handle it by calling its own :c:member:`~PyTypeObject.tp_new`." +msgid "This pattern is important when writing a type with custom :c:member:`~PyTypeObject.tp_new` and :c:member:`~PyTypeObject.tp_dealloc` members. The :c:member:`~PyTypeObject.tp_new` handler should not actually create the memory for the object with its :c:member:`~PyTypeObject.tp_alloc`, but let the base class handle it by calling its own :c:member:`~PyTypeObject.tp_new`." msgstr "" -#: ../../extending/newtypes_tutorial.rst:877 -msgid "" -"The :c:type:`PyTypeObject` struct supports " -"a :c:member:`~PyTypeObject.tp_base` specifying the type's concrete base " -"class. Due to cross-platform compiler issues, you can't fill that field " -"directly with a reference to :c:type:`PyList_Type`; it should be done in " -"the :c:data:`Py_mod_exec` function::" +msgid "The :c:type:`PyTypeObject` struct supports a :c:member:`~PyTypeObject.tp_base` specifying the type's concrete base class. Due to cross-platform compiler issues, you can't fill that field directly with a reference to :c:type:`PyList_Type`; it should be done in the :c:data:`Py_mod_exec` function::" msgstr "" -#: ../../extending/newtypes_tutorial.rst:883 msgid "" "static int\n" "sublist_module_exec(PyObject *m)\n" @@ -2030,8 +1498,7 @@ msgid "" " return -1;\n" " }\n" "\n" -" if (PyModule_AddObjectRef(m, \"SubList\", (PyObject *) &SubListType) < " -"0) {\n" +" if (PyModule_AddObjectRef(m, \"SubList\", (PyObject *) &SubListType) < 0) {\n" " return -1;\n" " }\n" "\n" @@ -2039,50 +1506,23 @@ msgid "" "}" msgstr "" -#: ../../extending/newtypes_tutorial.rst:898 -msgid "" -"Before calling :c:func:`PyType_Ready`, the type structure must have " -"the :c:member:`~PyTypeObject.tp_base` slot filled in. When we are deriving " -"an existing type, it is not necessary to fill out " -"the :c:member:`~PyTypeObject.tp_alloc` slot with :c:func:`PyType_GenericNew` " -"-- the allocation function from the base type will be inherited." +msgid "Before calling :c:func:`PyType_Ready`, the type structure must have the :c:member:`~PyTypeObject.tp_base` slot filled in. When we are deriving an existing type, it is not necessary to fill out the :c:member:`~PyTypeObject.tp_alloc` slot with :c:func:`PyType_GenericNew` -- the allocation function from the base type will be inherited." msgstr "" -#: ../../extending/newtypes_tutorial.rst:904 -msgid "" -"After that, calling :c:func:`PyType_Ready` and adding the type object to the " -"module is the same as with the basic :class:`!Custom` examples." +msgid "After that, calling :c:func:`PyType_Ready` and adding the type object to the module is the same as with the basic :class:`!Custom` examples." msgstr "" -#: ../../extending/newtypes_tutorial.rst:909 msgid "Footnotes" msgstr "" -#: ../../extending/newtypes_tutorial.rst:910 -msgid "" -"This is true when we know that the object is a basic type, like a string or " -"a float." +msgid "This is true when we know that the object is a basic type, like a string or a float." msgstr "" -#: ../../extending/newtypes_tutorial.rst:913 -msgid "" -"We relied on this in the :c:member:`~PyTypeObject.tp_dealloc` handler in " -"this example, because our type doesn't support garbage collection." +msgid "We relied on this in the :c:member:`~PyTypeObject.tp_dealloc` handler in this example, because our type doesn't support garbage collection." msgstr "" -#: ../../extending/newtypes_tutorial.rst:916 -msgid "" -"We now know that the first and last members are strings, so perhaps we could " -"be less careful about decrementing their reference counts, however, we " -"accept instances of string subclasses. Even though deallocating normal " -"strings won't call back into our objects, we can't guarantee that " -"deallocating an instance of a string subclass won't call back into our " -"objects." +msgid "We now know that the first and last members are strings, so perhaps we could be less careful about decrementing their reference counts, however, we accept instances of string subclasses. Even though deallocating normal strings won't call back into our objects, we can't guarantee that deallocating an instance of a string subclass won't call back into our objects." msgstr "" -#: ../../extending/newtypes_tutorial.rst:922 -msgid "" -"Also, even with our attributes restricted to strings instances, the user " -"could pass arbitrary :class:`str` subclasses and therefore still create " -"reference cycles." +msgid "Also, even with our attributes restricted to strings instances, the user could pass arbitrary :class:`str` subclasses and therefore still create reference cycles." msgstr "" diff --git a/extending/windows.po b/extending/windows.po index e70d4e6b..ce5389ec 100644 --- a/extending/windows.po +++ b/extending/windows.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:52+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,218 +21,90 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../extending/windows.rst:8 msgid "Building C and C++ Extensions on Windows" msgstr "" -#: ../../extending/windows.rst:10 -msgid "" -"This chapter briefly explains how to create a Windows extension module for " -"Python using Microsoft Visual C++, and follows with more detailed background " -"information on how it works. The explanatory material is useful for both " -"the Windows programmer learning to build Python extensions and the Unix " -"programmer interested in producing software which can be successfully built " -"on both Unix and Windows." +msgid "This chapter briefly explains how to create a Windows extension module for Python using Microsoft Visual C++, and follows with more detailed background information on how it works. The explanatory material is useful for both the Windows programmer learning to build Python extensions and the Unix programmer interested in producing software which can be successfully built on both Unix and Windows." msgstr "" -#: ../../extending/windows.rst:17 -msgid "" -"Module authors are encouraged to use the distutils approach for building " -"extension modules, instead of the one described in this section. You will " -"still need the C compiler that was used to build Python; typically Microsoft " -"Visual C++." +msgid "Module authors are encouraged to use the distutils approach for building extension modules, instead of the one described in this section. You will still need the C compiler that was used to build Python; typically Microsoft Visual C++." msgstr "" -#: ../../extending/windows.rst:24 -msgid "" -"This chapter mentions a number of filenames that include an encoded Python " -"version number. These filenames are represented with the version number " -"shown as ``XY``; in practice, ``'X'`` will be the major version number and " -"``'Y'`` will be the minor version number of the Python release you're " -"working with. For example, if you are using Python 2.2.1, ``XY`` will " -"actually be ``22``." +msgid "This chapter mentions a number of filenames that include an encoded Python version number. These filenames are represented with the version number shown as ``XY``; in practice, ``'X'`` will be the major version number and ``'Y'`` will be the minor version number of the Python release you're working with. For example, if you are using Python 2.2.1, ``XY`` will actually be ``22``." msgstr "" -#: ../../extending/windows.rst:34 msgid "A Cookbook Approach" msgstr "" -#: ../../extending/windows.rst:36 -msgid "" -"There are two approaches to building extension modules on Windows, just as " -"there are on Unix: use the ``setuptools`` package to control the build " -"process, or do things manually. The setuptools approach works well for most " -"extensions; documentation on using ``setuptools`` to build and package " -"extension modules is available in :ref:`setuptools-index`. If you find you " -"really need to do things manually, it may be instructive to study the " -"project file for the :source:`winsound ` standard " -"library module." +msgid "There are two approaches to building extension modules on Windows, just as there are on Unix: use the ``setuptools`` package to control the build process, or do things manually. The setuptools approach works well for most extensions; documentation on using ``setuptools`` to build and package extension modules is available in :ref:`setuptools-index`. If you find you really need to do things manually, it may be instructive to study the project file for the :source:`winsound ` standard library module." msgstr "" -#: ../../extending/windows.rst:48 msgid "Differences Between Unix and Windows" msgstr "" -#: ../../extending/windows.rst:53 -msgid "" -"Unix and Windows use completely different paradigms for run-time loading of " -"code. Before you try to build a module that can be dynamically loaded, be " -"aware of how your system works." +msgid "Unix and Windows use completely different paradigms for run-time loading of code. Before you try to build a module that can be dynamically loaded, be aware of how your system works." msgstr "" -#: ../../extending/windows.rst:57 -msgid "" -"In Unix, a shared object (:file:`.so`) file contains code to be used by the " -"program, and also the names of functions and data that it expects to find in " -"the program. When the file is joined to the program, all references to " -"those functions and data in the file's code are changed to point to the " -"actual locations in the program where the functions and data are placed in " -"memory. This is basically a link operation." +msgid "In Unix, a shared object (:file:`.so`) file contains code to be used by the program, and also the names of functions and data that it expects to find in the program. When the file is joined to the program, all references to those functions and data in the file's code are changed to point to the actual locations in the program where the functions and data are placed in memory. This is basically a link operation." msgstr "" -#: ../../extending/windows.rst:64 -msgid "" -"In Windows, a dynamic-link library (:file:`.dll`) file has no dangling " -"references. Instead, an access to functions or data goes through a lookup " -"table. So the DLL code does not have to be fixed up at runtime to refer to " -"the program's memory; instead, the code already uses the DLL's lookup table, " -"and the lookup table is modified at runtime to point to the functions and " -"data." +msgid "In Windows, a dynamic-link library (:file:`.dll`) file has no dangling references. Instead, an access to functions or data goes through a lookup table. So the DLL code does not have to be fixed up at runtime to refer to the program's memory; instead, the code already uses the DLL's lookup table, and the lookup table is modified at runtime to point to the functions and data." msgstr "" -#: ../../extending/windows.rst:70 -msgid "" -"In Unix, there is only one type of library file (:file:`.a`) which contains " -"code from several object files (:file:`.o`). During the link step to create " -"a shared object file (:file:`.so`), the linker may find that it doesn't know " -"where an identifier is defined. The linker will look for it in the object " -"files in the libraries; if it finds it, it will include all the code from " -"that object file." +msgid "In Unix, there is only one type of library file (:file:`.a`) which contains code from several object files (:file:`.o`). During the link step to create a shared object file (:file:`.so`), the linker may find that it doesn't know where an identifier is defined. The linker will look for it in the object files in the libraries; if it finds it, it will include all the code from that object file." msgstr "" -#: ../../extending/windows.rst:76 -msgid "" -"In Windows, there are two types of library, a static library and an import " -"library (both called :file:`.lib`). A static library is like a " -"Unix :file:`.a` file; it contains code to be included as necessary. An " -"import library is basically used only to reassure the linker that a certain " -"identifier is legal, and will be present in the program when the DLL is " -"loaded. So the linker uses the information from the import library to build " -"the lookup table for using identifiers that are not included in the DLL. " -"When an application or a DLL is linked, an import library may be generated, " -"which will need to be used for all future DLLs that depend on the symbols in " -"the application or DLL." -msgstr "" - -#: ../../extending/windows.rst:86 -msgid "" -"Suppose you are building two dynamic-load modules, B and C, which should " -"share another block of code A. On Unix, you would *not* pass :file:`A.a` to " -"the linker for :file:`B.so` and :file:`C.so`; that would cause it to be " -"included twice, so that B and C would each have their own copy. In Windows, " -"building :file:`A.dll` will also build :file:`A.lib`. You *do* " -"pass :file:`A.lib` to the linker for B and C. :file:`A.lib` does not " -"contain code; it just contains information which will be used at runtime to " -"access A's code." +msgid "In Windows, there are two types of library, a static library and an import library (both called :file:`.lib`). A static library is like a Unix :file:`.a` file; it contains code to be included as necessary. An import library is basically used only to reassure the linker that a certain identifier is legal, and will be present in the program when the DLL is loaded. So the linker uses the information from the import library to build the lookup table for using identifiers that are not included in the DLL. When an application or a DLL is linked, an import library may be generated, which will need to be used for all future DLLs that depend on the symbols in the application or DLL." msgstr "" -#: ../../extending/windows.rst:94 -msgid "" -"In Windows, using an import library is sort of like using ``import spam``; " -"it gives you access to spam's names, but does not create a separate copy. " -"On Unix, linking with a library is more like ``from spam import *``; it does " -"create a separate copy." +msgid "Suppose you are building two dynamic-load modules, B and C, which should share another block of code A. On Unix, you would *not* pass :file:`A.a` to the linker for :file:`B.so` and :file:`C.so`; that would cause it to be included twice, so that B and C would each have their own copy. In Windows, building :file:`A.dll` will also build :file:`A.lib`. You *do* pass :file:`A.lib` to the linker for B and C. :file:`A.lib` does not contain code; it just contains information which will be used at runtime to access A's code." msgstr "" -#: ../../extending/windows.rst:101 -msgid "" -"Turn off the implicit, ``#pragma``-based linkage with the Python library, " -"performed inside CPython header files." +msgid "In Windows, using an import library is sort of like using ``import spam``; it gives you access to spam's names, but does not create a separate copy. On Unix, linking with a library is more like ``from spam import *``; it does create a separate copy." +msgstr "" + +msgid "Turn off the implicit, ``#pragma``-based linkage with the Python library, performed inside CPython header files." msgstr "" -#: ../../extending/windows.rst:110 msgid "Using DLLs in Practice" msgstr "" -#: ../../extending/windows.rst:115 -msgid "" -"Windows Python is built in Microsoft Visual C++; using other compilers may " -"or may not work. The rest of this section is MSVC++ specific." +msgid "Windows Python is built in Microsoft Visual C++; using other compilers may or may not work. The rest of this section is MSVC++ specific." msgstr "" -#: ../../extending/windows.rst:118 -msgid "" -"When creating DLLs in Windows, you can use the CPython library in two ways:" +msgid "When creating DLLs in Windows, you can use the CPython library in two ways:" msgstr "" -#: ../../extending/windows.rst:120 -msgid "" -"By default, inclusion of :file:`PC/pyconfig.h` directly or " -"via :file:`Python.h` triggers an implicit, configure-aware link with the " -"library. The header file chooses :file:`pythonXY_d.lib` for " -"Debug, :file:`pythonXY.lib` for Release, and :file:`pythonX.lib` for Release " -"with the :ref:`Limited API ` enabled." +msgid "By default, inclusion of :file:`PC/pyconfig.h` directly or via :file:`Python.h` triggers an implicit, configure-aware link with the library. The header file chooses :file:`pythonXY_d.lib` for Debug, :file:`pythonXY.lib` for Release, and :file:`pythonX.lib` for Release with the :ref:`Limited API ` enabled." msgstr "" -#: ../../extending/windows.rst:126 ../../extending/windows.rst:144 -msgid "" -"To build two DLLs, spam and ni (which uses C functions found in spam), you " -"could use these commands::" +msgid "To build two DLLs, spam and ni (which uses C functions found in spam), you could use these commands::" msgstr "" -#: ../../extending/windows.rst:129 msgid "" "cl /LD /I/python/include spam.c\n" "cl /LD /I/python/include ni.c spam.lib" msgstr "" -#: ../../extending/windows.rst:132 -msgid "" -"The first command created three files: :file:`spam.obj`, :file:`spam.dll` " -"and :file:`spam.lib`. :file:`Spam.dll` does not contain any Python " -"functions (such as :c:func:`PyArg_ParseTuple`), but it does know how to find " -"the Python code thanks to the implicitly linked :file:`pythonXY.lib`." +msgid "The first command created three files: :file:`spam.obj`, :file:`spam.dll` and :file:`spam.lib`. :file:`Spam.dll` does not contain any Python functions (such as :c:func:`PyArg_ParseTuple`), but it does know how to find the Python code thanks to the implicitly linked :file:`pythonXY.lib`." msgstr "" -#: ../../extending/windows.rst:137 ../../extending/windows.rst:155 -msgid "" -"The second command created :file:`ni.dll` (and :file:`.obj` " -"and :file:`.lib`), which knows how to find the necessary functions from " -"spam, and also from the Python executable." +msgid "The second command created :file:`ni.dll` (and :file:`.obj` and :file:`.lib`), which knows how to find the necessary functions from spam, and also from the Python executable." msgstr "" -#: ../../extending/windows.rst:141 -msgid "" -"Manually by defining :c:macro:`Py_NO_LINK_LIB` macro before " -"including :file:`Python.h`. You must pass :file:`pythonXY.lib` to the linker." +msgid "Manually by defining :c:macro:`Py_NO_LINK_LIB` macro before including :file:`Python.h`. You must pass :file:`pythonXY.lib` to the linker." msgstr "" -#: ../../extending/windows.rst:147 msgid "" "cl /LD /DPy_NO_LINK_LIB /I/python/include spam.c ../libs/pythonXY.lib\n" "cl /LD /DPy_NO_LINK_LIB /I/python/include ni.c spam.lib ../libs/pythonXY.lib" msgstr "" -#: ../../extending/windows.rst:150 -msgid "" -"The first command created three files: :file:`spam.obj`, :file:`spam.dll` " -"and :file:`spam.lib`. :file:`Spam.dll` does not contain any Python " -"functions (such as :c:func:`PyArg_ParseTuple`), but it does know how to find " -"the Python code thanks to :file:`pythonXY.lib`." +msgid "The first command created three files: :file:`spam.obj`, :file:`spam.dll` and :file:`spam.lib`. :file:`Spam.dll` does not contain any Python functions (such as :c:func:`PyArg_ParseTuple`), but it does know how to find the Python code thanks to :file:`pythonXY.lib`." msgstr "" -#: ../../extending/windows.rst:159 -msgid "" -"Not every identifier is exported to the lookup table. If you want any other " -"modules (including Python) to be able to see your identifiers, you have to " -"say ``_declspec(dllexport)``, as in ``void _declspec(dllexport) " -"initspam(void)`` or ``PyObject _declspec(dllexport) *NiGetSpamData(void)``." +msgid "Not every identifier is exported to the lookup table. If you want any other modules (including Python) to be able to see your identifiers, you have to say ``_declspec(dllexport)``, as in ``void _declspec(dllexport) initspam(void)`` or ``PyObject _declspec(dllexport) *NiGetSpamData(void)``." msgstr "" -#: ../../extending/windows.rst:164 -msgid "" -"Developer Studio will throw in a lot of import libraries that you do not " -"really need, adding about 100K to your executable. To get rid of them, use " -"the Project Settings dialog, Link tab, to specify *ignore default " -"libraries*. Add the correct :file:`msvcrt{xx}.lib` to the list of libraries." +msgid "Developer Studio will throw in a lot of import libraries that you do not really need, adding about 100K to your executable. To get rid of them, use the Project Settings dialog, Link tab, to specify *ignore default libraries*. Add the correct :file:`msvcrt{xx}.lib` to the list of libraries." msgstr "" diff --git a/faq/design.po b/faq/design.po index a0312760..8e463720 100644 --- a/faq/design.po +++ b/faq/design.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:52+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,33 +24,21 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../faq/design.rst:3 msgid "Design and History FAQ" msgstr "" -#: ../../faq/design.rst:6 msgid "Contents" msgstr "" -#: ../../faq/design.rst:11 msgid "Why does Python use indentation for grouping of statements?" msgstr "" -#: ../../faq/design.rst:13 -msgid "" -"Guido van Rossum believes that using indentation for grouping is extremely " -"elegant and contributes a lot to the clarity of the average Python program. " -"Most people learn to love this feature after a while." +msgid "Guido van Rossum believes that using indentation for grouping is extremely elegant and contributes a lot to the clarity of the average Python program. Most people learn to love this feature after a while." msgstr "" -#: ../../faq/design.rst:17 -msgid "" -"Since there are no begin/end brackets there cannot be a disagreement between " -"grouping perceived by the parser and the human reader. Occasionally C " -"programmers will encounter a fragment of code like this::" +msgid "Since there are no begin/end brackets there cannot be a disagreement between grouping perceived by the parser and the human reader. Occasionally C programmers will encounter a fragment of code like this::" msgstr "" -#: ../../faq/design.rst:21 msgid "" "if (x <= y)\n" " x++;\n" @@ -58,329 +46,160 @@ msgid "" "z++;" msgstr "" -#: ../../faq/design.rst:26 -msgid "" -"Only the ``x++`` statement is executed if the condition is true, but the " -"indentation leads many to believe otherwise. Even experienced C programmers " -"will sometimes stare at it a long time wondering as to why ``y`` is being " -"decremented even for ``x > y``." +msgid "Only the ``x++`` statement is executed if the condition is true, but the indentation leads many to believe otherwise. Even experienced C programmers will sometimes stare at it a long time wondering as to why ``y`` is being decremented even for ``x > y``." msgstr "" -#: ../../faq/design.rst:31 -msgid "" -"Because there are no begin/end brackets, Python is much less prone to coding-" -"style conflicts. In C there are many different ways to place the braces. " -"After becoming used to reading and writing code using a particular style, it " -"is normal to feel somewhat uneasy when reading (or being required to write) " -"in a different one." +msgid "Because there are no begin/end brackets, Python is much less prone to coding-style conflicts. In C there are many different ways to place the braces. After becoming used to reading and writing code using a particular style, it is normal to feel somewhat uneasy when reading (or being required to write) in a different one." msgstr "" -#: ../../faq/design.rst:38 -msgid "" -"Many coding styles place begin/end brackets on a line by themselves. This " -"makes programs considerably longer and wastes valuable screen space, making " -"it harder to get a good overview of a program. Ideally, a function should " -"fit on one screen (say, 20--30 lines). 20 lines of Python can do a lot more " -"work than 20 lines of C. This is not solely due to the lack of begin/end " -"brackets -- the lack of declarations and the high-level data types are also " -"responsible -- but the indentation-based syntax certainly helps." +msgid "Many coding styles place begin/end brackets on a line by themselves. This makes programs considerably longer and wastes valuable screen space, making it harder to get a good overview of a program. Ideally, a function should fit on one screen (say, 20--30 lines). 20 lines of Python can do a lot more work than 20 lines of C. This is not solely due to the lack of begin/end brackets -- the lack of declarations and the high-level data types are also responsible -- but the indentation-based syntax certainly helps." msgstr "" -#: ../../faq/design.rst:48 msgid "Why am I getting strange results with simple arithmetic operations?" msgstr "" -#: ../../faq/design.rst:50 msgid "See the next question." msgstr "" -#: ../../faq/design.rst:54 msgid "Why are floating-point calculations so inaccurate?" msgstr "" -#: ../../faq/design.rst:56 msgid "Users are often surprised by results like this::" msgstr "" -#: ../../faq/design.rst:58 msgid "" ">>> 1.2 - 1.0\n" "0.19999999999999996" msgstr "" -#: ../../faq/design.rst:61 -msgid "" -"and think it is a bug in Python. It's not. This has little to do with " -"Python, and much more to do with how the underlying platform handles " -"floating-point numbers." +msgid "and think it is a bug in Python. It's not. This has little to do with Python, and much more to do with how the underlying platform handles floating-point numbers." msgstr "" -#: ../../faq/design.rst:65 -msgid "" -"The :class:`float` type in CPython uses a C ``double`` for storage. " -"A :class:`float` object's value is stored in binary floating-point with a " -"fixed precision (typically 53 bits) and Python uses C operations, which in " -"turn rely on the hardware implementation in the processor, to perform " -"floating-point operations. This means that as far as floating-point " -"operations are concerned, Python behaves like many popular languages " -"including C and Java." +msgid "The :class:`float` type in CPython uses a C ``double`` for storage. A :class:`float` object's value is stored in binary floating-point with a fixed precision (typically 53 bits) and Python uses C operations, which in turn rely on the hardware implementation in the processor, to perform floating-point operations. This means that as far as floating-point operations are concerned, Python behaves like many popular languages including C and Java." msgstr "" -#: ../../faq/design.rst:72 -msgid "" -"Many numbers that can be written easily in decimal notation cannot be " -"expressed exactly in binary floating point. For example, after::" +msgid "Many numbers that can be written easily in decimal notation cannot be expressed exactly in binary floating point. For example, after::" msgstr "" -#: ../../faq/design.rst:75 msgid ">>> x = 1.2" msgstr "" -#: ../../faq/design.rst:77 -msgid "" -"the value stored for ``x`` is a (very good) approximation to the decimal " -"value ``1.2``, but is not exactly equal to it. On a typical machine, the " -"actual stored value is::" +msgid "the value stored for ``x`` is a (very good) approximation to the decimal value ``1.2``, but is not exactly equal to it. On a typical machine, the actual stored value is::" msgstr "" -#: ../../faq/design.rst:81 msgid "1.0011001100110011001100110011001100110011001100110011 (binary)" msgstr "" -#: ../../faq/design.rst:83 msgid "which is exactly::" msgstr "" -#: ../../faq/design.rst:85 msgid "1.1999999999999999555910790149937383830547332763671875 (decimal)" msgstr "" -#: ../../faq/design.rst:87 -msgid "" -"The typical precision of 53 bits provides Python floats with 15--16 decimal " -"digits of accuracy." +msgid "The typical precision of 53 bits provides Python floats with 15--16 decimal digits of accuracy." msgstr "" -#: ../../faq/design.rst:90 -msgid "" -"For a fuller explanation, please see the :ref:`floating-point arithmetic " -"` chapter in the Python tutorial." +msgid "For a fuller explanation, please see the :ref:`floating-point arithmetic ` chapter in the Python tutorial." msgstr "" -#: ../../faq/design.rst:95 msgid "Why are Python strings immutable?" msgstr "" -#: ../../faq/design.rst:97 msgid "There are several advantages." msgstr "" -#: ../../faq/design.rst:99 -msgid "" -"One is performance: knowing that a string is immutable means we can allocate " -"space for it at creation time, and the storage requirements are fixed and " -"unchanging. This is also one of the reasons for the distinction between " -"tuples and lists." +msgid "One is performance: knowing that a string is immutable means we can allocate space for it at creation time, and the storage requirements are fixed and unchanging. This is also one of the reasons for the distinction between tuples and lists." msgstr "" -#: ../../faq/design.rst:104 -msgid "" -"Another advantage is that strings in Python are considered as \"elemental\" " -"as numbers. No amount of activity will change the value 8 to anything else, " -"and in Python, no amount of activity will change the string \"eight\" to " -"anything else." +msgid "Another advantage is that strings in Python are considered as \"elemental\" as numbers. No amount of activity will change the value 8 to anything else, and in Python, no amount of activity will change the string \"eight\" to anything else." msgstr "" -#: ../../faq/design.rst:112 msgid "Why must 'self' be used explicitly in method definitions and calls?" msgstr "" -#: ../../faq/design.rst:114 -msgid "" -"The idea was borrowed from Modula-3. It turns out to be very useful, for a " -"variety of reasons." +msgid "The idea was borrowed from Modula-3. It turns out to be very useful, for a variety of reasons." msgstr "" -#: ../../faq/design.rst:117 -msgid "" -"First, it's more obvious that you are using a method or instance attribute " -"instead of a local variable. Reading ``self.x`` or ``self.meth()`` makes it " -"absolutely clear that an instance variable or method is used even if you " -"don't know the class definition by heart. In C++, you can sort of tell by " -"the lack of a local variable declaration (assuming globals are rare or " -"easily recognizable) -- but in Python, there are no local variable " -"declarations, so you'd have to look up the class definition to be sure. " -"Some C++ and Java coding standards call for instance attributes to have an " -"``m_`` prefix, so this explicitness is still useful in those languages, too." -msgstr "" - -#: ../../faq/design.rst:127 -msgid "" -"Second, it means that no special syntax is necessary if you want to " -"explicitly reference or call the method from a particular class. In C++, if " -"you want to use a method from a base class which is overridden in a derived " -"class, you have to use the ``::`` operator -- in Python you can write " -"``baseclass.methodname(self, )``. This is particularly " -"useful for :meth:`~object.__init__` methods, and in general in cases where a " -"derived class method wants to extend the base class method of the same name " -"and thus has to call the base class method somehow." +msgid "First, it's more obvious that you are using a method or instance attribute instead of a local variable. Reading ``self.x`` or ``self.meth()`` makes it absolutely clear that an instance variable or method is used even if you don't know the class definition by heart. In C++, you can sort of tell by the lack of a local variable declaration (assuming globals are rare or easily recognizable) -- but in Python, there are no local variable declarations, so you'd have to look up the class definition to be sure. Some C++ and Java coding standards call for instance attributes to have an ``m_`` prefix, so this explicitness is still useful in those languages, too." +msgstr "" + +msgid "Second, it means that no special syntax is necessary if you want to explicitly reference or call the method from a particular class. In C++, if you want to use a method from a base class which is overridden in a derived class, you have to use the ``::`` operator -- in Python you can write ``baseclass.methodname(self, )``. This is particularly useful for :meth:`~object.__init__` methods, and in general in cases where a derived class method wants to extend the base class method of the same name and thus has to call the base class method somehow." +msgstr "" + +msgid "Finally, for instance variables it solves a syntactic problem with assignment: since local variables in Python are (by definition!) those variables to which a value is assigned in a function body (and that aren't explicitly declared global), there has to be some way to tell the interpreter that an assignment was meant to assign to an instance variable instead of to a local variable, and it should preferably be syntactic (for efficiency reasons). C++ does this through declarations, but Python doesn't have declarations and it would be a pity having to introduce them just for this purpose. Using the explicit ``self.var`` solves this nicely. Similarly, for using instance variables, having to write ``self.var`` means that references to unqualified names inside a method don't have to search the instance's directories. To put it another way, local variables and instance variables live in two different namespaces, and you need to tell Python which namespace to use." msgstr "" -#: ../../faq/design.rst:136 -msgid "" -"Finally, for instance variables it solves a syntactic problem with " -"assignment: since local variables in Python are (by definition!) those " -"variables to which a value is assigned in a function body (and that aren't " -"explicitly declared global), there has to be some way to tell the " -"interpreter that an assignment was meant to assign to an instance variable " -"instead of to a local variable, and it should preferably be syntactic (for " -"efficiency reasons). C++ does this through declarations, but Python doesn't " -"have declarations and it would be a pity having to introduce them just for " -"this purpose. Using the explicit ``self.var`` solves this nicely. " -"Similarly, for using instance variables, having to write ``self.var`` means " -"that references to unqualified names inside a method don't have to search " -"the instance's directories. To put it another way, local variables and " -"instance variables live in two different namespaces, and you need to tell " -"Python which namespace to use." -msgstr "" - -#: ../../faq/design.rst:154 msgid "Why can't I use an assignment in an expression?" msgstr "" -#: ../../faq/design.rst:156 msgid "Starting in Python 3.8, you can!" msgstr "" -#: ../../faq/design.rst:158 -msgid "" -"Assignment expressions using the walrus operator ``:=`` assign a variable in " -"an expression::" +msgid "Assignment expressions using the walrus operator ``:=`` assign a variable in an expression::" msgstr "" -#: ../../faq/design.rst:161 msgid "" "while chunk := fp.read(200):\n" " print(chunk)" msgstr "" -#: ../../faq/design.rst:164 msgid "See :pep:`572` for more information." msgstr "" -#: ../../faq/design.rst:169 -msgid "" -"Why does Python use methods for some functionality (e.g. list.index()) but " -"functions for other (e.g. len(list))?" +msgid "Why does Python use methods for some functionality (e.g. list.index()) but functions for other (e.g. len(list))?" msgstr "" -#: ../../faq/design.rst:171 msgid "As Guido said:" msgstr "" -#: ../../faq/design.rst:173 -msgid "" -"(a) For some operations, prefix notation just reads better than postfix -- " -"prefix (and infix!) operations have a long tradition in mathematics which " -"likes notations where the visuals help the mathematician thinking about a " -"problem. Compare the easy with which we rewrite a formula like x*(a+b) into " -"x*a + x*b to the clumsiness of doing the same thing using a raw OO notation." +msgid "(a) For some operations, prefix notation just reads better than postfix -- prefix (and infix!) operations have a long tradition in mathematics which likes notations where the visuals help the mathematician thinking about a problem. Compare the easy with which we rewrite a formula like x*(a+b) into x*a + x*b to the clumsiness of doing the same thing using a raw OO notation." msgstr "" -#: ../../faq/design.rst:180 -msgid "" -"(b) When I read code that says len(x) I *know* that it is asking for the " -"length of something. This tells me two things: the result is an integer, and " -"the argument is some kind of container. To the contrary, when I read " -"x.len(), I have to already know that x is some kind of container " -"implementing an interface or inheriting from a class that has a standard " -"len(). Witness the confusion we occasionally have when a class that is not " -"implementing a mapping has a get() or keys() method, or something that isn't " -"a file has a write() method." +msgid "(b) When I read code that says len(x) I *know* that it is asking for the length of something. This tells me two things: the result is an integer, and the argument is some kind of container. To the contrary, when I read x.len(), I have to already know that x is some kind of container implementing an interface or inheriting from a class that has a standard len(). Witness the confusion we occasionally have when a class that is not implementing a mapping has a get() or keys() method, or something that isn't a file has a write() method." msgstr "" -#: ../../faq/design.rst:189 msgid "https://mail.python.org/pipermail/python-3000/2006-November/004643.html" msgstr "" -#: ../../faq/design.rst:193 msgid "Why is join() a string method instead of a list or tuple method?" msgstr "" -#: ../../faq/design.rst:195 -msgid "" -"Strings became much more like other standard types starting in Python 1.6, " -"when methods were added which give the same functionality that has always " -"been available using the functions of the string module. Most of these new " -"methods have been widely accepted, but the one which appears to make some " -"programmers feel uncomfortable is::" +msgid "Strings became much more like other standard types starting in Python 1.6, when methods were added which give the same functionality that has always been available using the functions of the string module. Most of these new methods have been widely accepted, but the one which appears to make some programmers feel uncomfortable is::" msgstr "" -#: ../../faq/design.rst:201 msgid "\", \".join(['1', '2', '4', '8', '16'])" msgstr "" -#: ../../faq/design.rst:203 msgid "which gives the result::" msgstr "" -#: ../../faq/design.rst:205 msgid "\"1, 2, 4, 8, 16\"" msgstr "" -#: ../../faq/design.rst:207 msgid "There are two common arguments against this usage." msgstr "" -#: ../../faq/design.rst:209 -msgid "" -"The first runs along the lines of: \"It looks really ugly using a method of " -"a string literal (string constant)\", to which the answer is that it might, " -"but a string literal is just a fixed value. If the methods are to be allowed " -"on names bound to strings there is no logical reason to make them " -"unavailable on literals." +msgid "The first runs along the lines of: \"It looks really ugly using a method of a string literal (string constant)\", to which the answer is that it might, but a string literal is just a fixed value. If the methods are to be allowed on names bound to strings there is no logical reason to make them unavailable on literals." msgstr "" -#: ../../faq/design.rst:215 -msgid "" -"The second objection is typically cast as: \"I am really telling a sequence " -"to join its members together with a string constant\". Sadly, you aren't. " -"For some reason there seems to be much less difficulty with " -"having :meth:`~str.split` as a string method, since in that case it is easy " -"to see that ::" +msgid "The second objection is typically cast as: \"I am really telling a sequence to join its members together with a string constant\". Sadly, you aren't. For some reason there seems to be much less difficulty with having :meth:`~str.split` as a string method, since in that case it is easy to see that ::" msgstr "" -#: ../../faq/design.rst:220 msgid "\"1, 2, 4, 8, 16\".split(\", \")" msgstr "" -#: ../../faq/design.rst:222 -msgid "" -"is an instruction to a string literal to return the substrings delimited by " -"the given separator (or, by default, arbitrary runs of white space)." +msgid "is an instruction to a string literal to return the substrings delimited by the given separator (or, by default, arbitrary runs of white space)." msgstr "" -#: ../../faq/design.rst:225 -msgid "" -":meth:`~str.join` is a string method because in using it you are telling the " -"separator string to iterate over a sequence of strings and insert itself " -"between adjacent elements. This method can be used with any argument which " -"obeys the rules for sequence objects, including any new classes you might " -"define yourself. Similar methods exist for bytes and bytearray objects." +msgid ":meth:`~str.join` is a string method because in using it you are telling the separator string to iterate over a sequence of strings and insert itself between adjacent elements. This method can be used with any argument which obeys the rules for sequence objects, including any new classes you might define yourself. Similar methods exist for bytes and bytearray objects." msgstr "" -#: ../../faq/design.rst:233 msgid "How fast are exceptions?" msgstr "" -#: ../../faq/design.rst:235 -msgid "" -"A :keyword:`try`/:keyword:`except` block is extremely efficient if no " -"exceptions are raised. Actually catching an exception is expensive. In " -"versions of Python prior to 2.0 it was common to use this idiom::" +msgid "A :keyword:`try`/:keyword:`except` block is extremely efficient if no exceptions are raised. Actually catching an exception is expensive. In versions of Python prior to 2.0 it was common to use this idiom::" msgstr "" -#: ../../faq/design.rst:240 msgid "" "try:\n" " value = mydict[key]\n" @@ -389,13 +208,9 @@ msgid "" " value = mydict[key]" msgstr "" -#: ../../faq/design.rst:246 -msgid "" -"This only made sense when you expected the dict to have the key almost all " -"the time. If that wasn't the case, you coded it like this::" +msgid "This only made sense when you expected the dict to have the key almost all the time. If that wasn't the case, you coded it like this::" msgstr "" -#: ../../faq/design.rst:249 msgid "" "if key in mydict:\n" " value = mydict[key]\n" @@ -403,36 +218,18 @@ msgid "" " value = mydict[key] = getvalue(key)" msgstr "" -#: ../../faq/design.rst:254 -msgid "" -"For this specific case, you could also use ``value = dict.setdefault(key, " -"getvalue(key))``, but only if the ``getvalue()`` call is cheap enough " -"because it is evaluated in all cases." +msgid "For this specific case, you could also use ``value = dict.setdefault(key, getvalue(key))``, but only if the ``getvalue()`` call is cheap enough because it is evaluated in all cases." msgstr "" -#: ../../faq/design.rst:260 msgid "Why isn't there a switch or case statement in Python?" msgstr "" -#: ../../faq/design.rst:262 -msgid "" -"In general, structured switch statements execute one block of code when an " -"expression has a particular value or set of values. Since Python 3.10 one " -"can easily match literal values, or constants within a namespace, with a " -"``match ... case`` statement. See :ref:`the specification ` " -"and :ref:`the tutorial ` for more information " -"about :keyword:`match` statements. An older alternative is a sequence of " -"``if... elif... elif... else``." +msgid "In general, structured switch statements execute one block of code when an expression has a particular value or set of values. Since Python 3.10 one can easily match literal values, or constants within a namespace, with a ``match ... case`` statement. See :ref:`the specification ` and :ref:`the tutorial ` for more information about :keyword:`match` statements. An older alternative is a sequence of ``if... elif... elif... else``." msgstr "" -#: ../../faq/design.rst:270 -msgid "" -"For cases where you need to choose from a very large number of " -"possibilities, you can create a dictionary mapping case values to functions " -"to call. For example::" +msgid "For cases where you need to choose from a very large number of possibilities, you can create a dictionary mapping case values to functions to call. For example::" msgstr "" -#: ../../faq/design.rst:274 msgid "" "functions = {'a': function_1,\n" " 'b': function_2,\n" @@ -442,13 +239,9 @@ msgid "" "func()" msgstr "" -#: ../../faq/design.rst:281 -msgid "" -"For calling methods on objects, you can simplify yet further by using " -"the :func:`getattr` built-in to retrieve methods with a particular name::" +msgid "For calling methods on objects, you can simplify yet further by using the :func:`getattr` built-in to retrieve methods with a particular name::" msgstr "" -#: ../../faq/design.rst:284 msgid "" "class MyVisitor:\n" " def visit_a(self):\n" @@ -460,348 +253,152 @@ msgid "" " method()" msgstr "" -#: ../../faq/design.rst:293 -msgid "" -"It's suggested that you use a prefix for the method names, such as " -"``visit_`` in this example. Without such a prefix, if values are coming " -"from an untrusted source, an attacker would be able to call any method on " -"your object." +msgid "It's suggested that you use a prefix for the method names, such as ``visit_`` in this example. Without such a prefix, if values are coming from an untrusted source, an attacker would be able to call any method on your object." msgstr "" -#: ../../faq/design.rst:297 -msgid "" -"Imitating switch with fallthrough, as with C's switch-case-default, is " -"possible, much harder, and less needed." +msgid "Imitating switch with fallthrough, as with C's switch-case-default, is possible, much harder, and less needed." msgstr "" -#: ../../faq/design.rst:302 -msgid "" -"Can't you emulate threads in the interpreter instead of relying on an OS-" -"specific thread implementation?" +msgid "Can't you emulate threads in the interpreter instead of relying on an OS-specific thread implementation?" msgstr "" -#: ../../faq/design.rst:304 -msgid "" -"Answer 1: Unfortunately, the interpreter pushes at least one C stack frame " -"for each Python stack frame. Also, extensions can call back into Python at " -"almost random moments. Therefore, a complete threads implementation " -"requires thread support for C." +msgid "Answer 1: Unfortunately, the interpreter pushes at least one C stack frame for each Python stack frame. Also, extensions can call back into Python at almost random moments. Therefore, a complete threads implementation requires thread support for C." msgstr "" -#: ../../faq/design.rst:309 -msgid "" -"Answer 2: Fortunately, there is `Stackless Python `_, which has a completely redesigned " -"interpreter loop that avoids the C stack." +msgid "Answer 2: Fortunately, there is `Stackless Python `_, which has a completely redesigned interpreter loop that avoids the C stack." msgstr "" -#: ../../faq/design.rst:314 msgid "Why can't lambda expressions contain statements?" msgstr "" -#: ../../faq/design.rst:316 -msgid "" -"Python lambda expressions cannot contain statements because Python's " -"syntactic framework can't handle statements nested inside expressions. " -"However, in Python, this is not a serious problem. Unlike lambda forms in " -"other languages, where they add functionality, Python lambdas are only a " -"shorthand notation if you're too lazy to define a function." +msgid "Python lambda expressions cannot contain statements because Python's syntactic framework can't handle statements nested inside expressions. However, in Python, this is not a serious problem. Unlike lambda forms in other languages, where they add functionality, Python lambdas are only a shorthand notation if you're too lazy to define a function." msgstr "" -#: ../../faq/design.rst:322 -msgid "" -"Functions are already first class objects in Python, and can be declared in " -"a local scope. Therefore the only advantage of using a lambda instead of a " -"locally defined function is that you don't need to invent a name for the " -"function -- but that's just a local variable to which the function object " -"(which is exactly the same type of object that a lambda expression yields) " -"is assigned!" +msgid "Functions are already first class objects in Python, and can be declared in a local scope. Therefore the only advantage of using a lambda instead of a locally defined function is that you don't need to invent a name for the function -- but that's just a local variable to which the function object (which is exactly the same type of object that a lambda expression yields) is assigned!" msgstr "" -#: ../../faq/design.rst:330 msgid "Can Python be compiled to machine code, C or some other language?" msgstr "" -#: ../../faq/design.rst:332 -msgid "" -"`Cython `_ compiles a modified version of Python with " -"optional annotations into C extensions. `Nuitka `_ is " -"an up-and-coming compiler of Python into C++ code, aiming to support the " -"full Python language." +msgid "`Cython `_ compiles a modified version of Python with optional annotations into C extensions. `Nuitka `_ is an up-and-coming compiler of Python into C++ code, aiming to support the full Python language." msgstr "" -#: ../../faq/design.rst:339 msgid "How does Python manage memory?" msgstr "" -#: ../../faq/design.rst:341 -msgid "" -"The details of Python memory management depend on the implementation. The " -"standard implementation of Python, :term:`CPython`, uses reference counting " -"to detect inaccessible objects, and another mechanism to collect reference " -"cycles, periodically executing a cycle detection algorithm which looks for " -"inaccessible cycles and deletes the objects involved. The :mod:`gc` module " -"provides functions to perform a garbage collection, obtain debugging " -"statistics, and tune the collector's parameters." +msgid "The details of Python memory management depend on the implementation. The standard implementation of Python, :term:`CPython`, uses reference counting to detect inaccessible objects, and another mechanism to collect reference cycles, periodically executing a cycle detection algorithm which looks for inaccessible cycles and deletes the objects involved. The :mod:`gc` module provides functions to perform a garbage collection, obtain debugging statistics, and tune the collector's parameters." msgstr "" -#: ../../faq/design.rst:349 -msgid "" -"Other implementations (such as `Jython `_ or `PyPy " -"`_), however, can rely on a different mechanism such as a " -"full-blown garbage collector. This difference can cause some subtle porting " -"problems if your Python code depends on the behavior of the reference " -"counting implementation." +msgid "Other implementations (such as `Jython `_ or `PyPy `_), however, can rely on a different mechanism such as a full-blown garbage collector. This difference can cause some subtle porting problems if your Python code depends on the behavior of the reference counting implementation." msgstr "" -#: ../../faq/design.rst:355 -msgid "" -"In some Python implementations, the following code (which is fine in " -"CPython) will probably run out of file descriptors::" +msgid "In some Python implementations, the following code (which is fine in CPython) will probably run out of file descriptors::" msgstr "" -#: ../../faq/design.rst:358 msgid "" "for file in very_long_list_of_files:\n" " f = open(file)\n" " c = f.read(1)" msgstr "" -#: ../../faq/design.rst:362 -msgid "" -"Indeed, using CPython's reference counting and destructor scheme, each new " -"assignment to ``f`` closes the previous file. With a traditional GC, " -"however, those file objects will only get collected (and closed) at varying " -"and possibly long intervals." +msgid "Indeed, using CPython's reference counting and destructor scheme, each new assignment to ``f`` closes the previous file. With a traditional GC, however, those file objects will only get collected (and closed) at varying and possibly long intervals." msgstr "" -#: ../../faq/design.rst:367 -msgid "" -"If you want to write code that will work with any Python implementation, you " -"should explicitly close the file or use the :keyword:`with` statement; this " -"will work regardless of memory management scheme::" +msgid "If you want to write code that will work with any Python implementation, you should explicitly close the file or use the :keyword:`with` statement; this will work regardless of memory management scheme::" msgstr "" -#: ../../faq/design.rst:371 msgid "" "for file in very_long_list_of_files:\n" " with open(file) as f:\n" " c = f.read(1)" msgstr "" -#: ../../faq/design.rst:377 msgid "Why doesn't CPython use a more traditional garbage collection scheme?" msgstr "" -#: ../../faq/design.rst:379 -msgid "" -"For one thing, this is not a C standard feature and hence it's not portable. " -"(Yes, we know about the Boehm GC library. It has bits of assembler code for " -"*most* common platforms, not for all of them, and although it is mostly " -"transparent, it isn't completely transparent; patches are required to get " -"Python to work with it.)" +msgid "For one thing, this is not a C standard feature and hence it's not portable. (Yes, we know about the Boehm GC library. It has bits of assembler code for *most* common platforms, not for all of them, and although it is mostly transparent, it isn't completely transparent; patches are required to get Python to work with it.)" msgstr "" -#: ../../faq/design.rst:385 -msgid "" -"Traditional GC also becomes a problem when Python is embedded into other " -"applications. While in a standalone Python it's fine to replace the " -"standard ``malloc()`` and ``free()`` with versions provided by the GC " -"library, an application embedding Python may want to have its *own* " -"substitute for ``malloc()`` and ``free()``, and may not want Python's. " -"Right now, CPython works with anything that implements ``malloc()`` and " -"``free()`` properly." +msgid "Traditional GC also becomes a problem when Python is embedded into other applications. While in a standalone Python it's fine to replace the standard ``malloc()`` and ``free()`` with versions provided by the GC library, an application embedding Python may want to have its *own* substitute for ``malloc()`` and ``free()``, and may not want Python's. Right now, CPython works with anything that implements ``malloc()`` and ``free()`` properly." msgstr "" -#: ../../faq/design.rst:394 msgid "Why isn't all memory freed when CPython exits?" msgstr "" -#: ../../faq/design.rst:396 -msgid "" -"Objects referenced from the global namespaces of Python modules are not " -"always deallocated when Python exits. This may happen if there are circular " -"references. There are also certain bits of memory that are allocated by the " -"C library that are impossible to free (e.g. a tool like Purify will complain " -"about these). Python is, however, aggressive about cleaning up memory on " -"exit and does try to destroy every single object." +msgid "Objects referenced from the global namespaces of Python modules are not always deallocated when Python exits. This may happen if there are circular references. There are also certain bits of memory that are allocated by the C library that are impossible to free (e.g. a tool like Purify will complain about these). Python is, however, aggressive about cleaning up memory on exit and does try to destroy every single object." msgstr "" -#: ../../faq/design.rst:403 -msgid "" -"If you want to force Python to delete certain things on deallocation use " -"the :mod:`atexit` module to run a function that will force those deletions." +msgid "If you want to force Python to delete certain things on deallocation use the :mod:`atexit` module to run a function that will force those deletions." msgstr "" -#: ../../faq/design.rst:408 msgid "Why are there separate tuple and list data types?" msgstr "" -#: ../../faq/design.rst:410 -msgid "" -"Lists and tuples, while similar in many respects, are generally used in " -"fundamentally different ways. Tuples can be thought of as being similar to " -"Pascal ``records`` or C ``structs``; they're small collections of related " -"data which may be of different types which are operated on as a group. For " -"example, a Cartesian coordinate is appropriately represented as a tuple of " -"two or three numbers." +msgid "Lists and tuples, while similar in many respects, are generally used in fundamentally different ways. Tuples can be thought of as being similar to Pascal ``records`` or C ``structs``; they're small collections of related data which may be of different types which are operated on as a group. For example, a Cartesian coordinate is appropriately represented as a tuple of two or three numbers." msgstr "" -#: ../../faq/design.rst:417 -msgid "" -"Lists, on the other hand, are more like arrays in other languages. They " -"tend to hold a varying number of objects all of which have the same type and " -"which are operated on one-by-one. For example, :func:`os.listdir('.') " -"` returns a list of strings representing the files in the " -"current directory. Functions which operate on this output would generally " -"not break if you added another file or two to the directory." +msgid "Lists, on the other hand, are more like arrays in other languages. They tend to hold a varying number of objects all of which have the same type and which are operated on one-by-one. For example, :func:`os.listdir('.') ` returns a list of strings representing the files in the current directory. Functions which operate on this output would generally not break if you added another file or two to the directory." msgstr "" -#: ../../faq/design.rst:425 -msgid "" -"Tuples are immutable, meaning that once a tuple has been created, you can't " -"replace any of its elements with a new value. Lists are mutable, meaning " -"that you can always change a list's elements. Only immutable elements can " -"be used as dictionary keys, and hence only tuples and not lists can be used " -"as keys." +msgid "Tuples are immutable, meaning that once a tuple has been created, you can't replace any of its elements with a new value. Lists are mutable, meaning that you can always change a list's elements. Only immutable elements can be used as dictionary keys, and hence only tuples and not lists can be used as keys." msgstr "" -#: ../../faq/design.rst:432 msgid "How are lists implemented in CPython?" msgstr "" -#: ../../faq/design.rst:434 -msgid "" -"CPython's lists are really variable-length arrays, not Lisp-style linked " -"lists. The implementation uses a contiguous array of references to other " -"objects, and keeps a pointer to this array and the array's length in a list " -"head structure." +msgid "CPython's lists are really variable-length arrays, not Lisp-style linked lists. The implementation uses a contiguous array of references to other objects, and keeps a pointer to this array and the array's length in a list head structure." msgstr "" -#: ../../faq/design.rst:438 -msgid "" -"This makes indexing a list ``a[i]`` an operation whose cost is independent " -"of the size of the list or the value of the index." +msgid "This makes indexing a list ``a[i]`` an operation whose cost is independent of the size of the list or the value of the index." msgstr "" -#: ../../faq/design.rst:441 -msgid "" -"When items are appended or inserted, the array of references is resized. " -"Some cleverness is applied to improve the performance of appending items " -"repeatedly; when the array must be grown, some extra space is allocated so " -"the next few times don't require an actual resize." +msgid "When items are appended or inserted, the array of references is resized. Some cleverness is applied to improve the performance of appending items repeatedly; when the array must be grown, some extra space is allocated so the next few times don't require an actual resize." msgstr "" -#: ../../faq/design.rst:448 msgid "How are dictionaries implemented in CPython?" msgstr "" -#: ../../faq/design.rst:450 -msgid "" -"CPython's dictionaries are implemented as resizable hash tables. Compared " -"to B-trees, this gives better performance for lookup (the most common " -"operation by far) under most circumstances, and the implementation is " -"simpler." +msgid "CPython's dictionaries are implemented as resizable hash tables. Compared to B-trees, this gives better performance for lookup (the most common operation by far) under most circumstances, and the implementation is simpler." +msgstr "" + +msgid "Dictionaries work by computing a hash code for each key stored in the dictionary using the :func:`hash` built-in function. The hash code varies widely depending on the key and a per-process seed; for example, ``'Python'`` could hash to ``-539294296`` while ``'python'``, a string that differs by a single bit, could hash to ``1142331976``. The hash code is then used to calculate a location in an internal array where the value will be stored. Assuming that you're storing keys that all have different hash values, this means that dictionaries take constant time -- *O*\\ (1), in Big-O notation -- to retrieve a key." msgstr "" -#: ../../faq/design.rst:454 -msgid "" -"Dictionaries work by computing a hash code for each key stored in the " -"dictionary using the :func:`hash` built-in function. The hash code varies " -"widely depending on the key and a per-process seed; for example, " -"``'Python'`` could hash to ``-539294296`` while ``'python'``, a string that " -"differs by a single bit, could hash to ``1142331976``. The hash code is " -"then used to calculate a location in an internal array where the value will " -"be stored. Assuming that you're storing keys that all have different hash " -"values, this means that dictionaries take constant time -- *O*\\ (1), in Big-" -"O notation -- to retrieve a key." -msgstr "" - -#: ../../faq/design.rst:465 msgid "Why must dictionary keys be immutable?" msgstr "" -#: ../../faq/design.rst:467 -msgid "" -"The hash table implementation of dictionaries uses a hash value calculated " -"from the key value to find the key. If the key were a mutable object, its " -"value could change, and thus its hash could also change. But since whoever " -"changes the key object can't tell that it was being used as a dictionary " -"key, it can't move the entry around in the dictionary. Then, when you try " -"to look up the same object in the dictionary it won't be found because its " -"hash value is different. If you tried to look up the old value it wouldn't " -"be found either, because the value of the object found in that hash bin " -"would be different." -msgstr "" - -#: ../../faq/design.rst:476 -msgid "" -"If you want a dictionary indexed with a list, simply convert the list to a " -"tuple first; the function ``tuple(L)`` creates a tuple with the same entries " -"as the list ``L``. Tuples are immutable and can therefore be used as " -"dictionary keys." +msgid "The hash table implementation of dictionaries uses a hash value calculated from the key value to find the key. If the key were a mutable object, its value could change, and thus its hash could also change. But since whoever changes the key object can't tell that it was being used as a dictionary key, it can't move the entry around in the dictionary. Then, when you try to look up the same object in the dictionary it won't be found because its hash value is different. If you tried to look up the old value it wouldn't be found either, because the value of the object found in that hash bin would be different." +msgstr "" + +msgid "If you want a dictionary indexed with a list, simply convert the list to a tuple first; the function ``tuple(L)`` creates a tuple with the same entries as the list ``L``. Tuples are immutable and can therefore be used as dictionary keys." msgstr "" -#: ../../faq/design.rst:480 msgid "Some unacceptable solutions that have been proposed:" msgstr "" -#: ../../faq/design.rst:482 -msgid "" -"Hash lists by their address (object ID). This doesn't work because if you " -"construct a new list with the same value it won't be found; e.g.::" +msgid "Hash lists by their address (object ID). This doesn't work because if you construct a new list with the same value it won't be found; e.g.::" msgstr "" -#: ../../faq/design.rst:485 msgid "" "mydict = {[1, 2]: '12'}\n" "print(mydict[[1, 2]])" msgstr "" -#: ../../faq/design.rst:488 -msgid "" -"would raise a :exc:`KeyError` exception because the id of the ``[1, 2]`` " -"used in the second line differs from that in the first line. In other " -"words, dictionary keys should be compared using ``==``, not " -"using :keyword:`is`." +msgid "would raise a :exc:`KeyError` exception because the id of the ``[1, 2]`` used in the second line differs from that in the first line. In other words, dictionary keys should be compared using ``==``, not using :keyword:`is`." msgstr "" -#: ../../faq/design.rst:492 -msgid "" -"Make a copy when using a list as a key. This doesn't work because the list, " -"being a mutable object, could contain a reference to itself, and then the " -"copying code would run into an infinite loop." +msgid "Make a copy when using a list as a key. This doesn't work because the list, being a mutable object, could contain a reference to itself, and then the copying code would run into an infinite loop." msgstr "" -#: ../../faq/design.rst:496 -msgid "" -"Allow lists as keys but tell the user not to modify them. This would allow " -"a class of hard-to-track bugs in programs when you forgot or modified a list " -"by accident. It also invalidates an important invariant of dictionaries: " -"every value in ``d.keys()`` is usable as a key of the dictionary." +msgid "Allow lists as keys but tell the user not to modify them. This would allow a class of hard-to-track bugs in programs when you forgot or modified a list by accident. It also invalidates an important invariant of dictionaries: every value in ``d.keys()`` is usable as a key of the dictionary." msgstr "" -#: ../../faq/design.rst:501 -msgid "" -"Mark lists as read-only once they are used as a dictionary key. The problem " -"is that it's not just the top-level object that could change its value; you " -"could use a tuple containing a list as a key. Entering anything as a key " -"into a dictionary would require marking all objects reachable from there as " -"read-only -- and again, self-referential objects could cause an infinite " -"loop." +msgid "Mark lists as read-only once they are used as a dictionary key. The problem is that it's not just the top-level object that could change its value; you could use a tuple containing a list as a key. Entering anything as a key into a dictionary would require marking all objects reachable from there as read-only -- and again, self-referential objects could cause an infinite loop." msgstr "" -#: ../../faq/design.rst:507 -msgid "" -"There is a trick to get around this if you need to, but use it at your own " -"risk: You can wrap a mutable structure inside a class instance which has " -"both a :meth:`~object.__eq__` and a :meth:`~object.__hash__` method. You " -"must then make sure that the hash value for all such wrapper objects that " -"reside in a dictionary (or other hash based structure), remain fixed while " -"the object is in the dictionary (or other structure). ::" +msgid "There is a trick to get around this if you need to, but use it at your own risk: You can wrap a mutable structure inside a class instance which has both a :meth:`~object.__eq__` and a :meth:`~object.__hash__` method. You must then make sure that the hash value for all such wrapper objects that reside in a dictionary (or other hash based structure), remain fixed while the object is in the dictionary (or other structure). ::" msgstr "" -#: ../../faq/design.rst:515 msgid "" "class ListWrapper:\n" " def __init__(self, the_list):\n" @@ -821,143 +418,59 @@ msgid "" " return result" msgstr "" -#: ../../faq/design.rst:532 -msgid "" -"Note that the hash computation is complicated by the possibility that some " -"members of the list may be unhashable and also by the possibility of " -"arithmetic overflow." +msgid "Note that the hash computation is complicated by the possibility that some members of the list may be unhashable and also by the possibility of arithmetic overflow." msgstr "" -#: ../../faq/design.rst:536 -msgid "" -"Furthermore it must always be the case that if ``o1 == o2`` (ie " -"``o1.__eq__(o2) is True``) then ``hash(o1) == hash(o2)`` (ie, " -"``o1.__hash__() == o2.__hash__()``), regardless of whether the object is in " -"a dictionary or not. If you fail to meet these restrictions dictionaries " -"and other hash based structures will misbehave." +msgid "Furthermore it must always be the case that if ``o1 == o2`` (ie ``o1.__eq__(o2) is True``) then ``hash(o1) == hash(o2)`` (ie, ``o1.__hash__() == o2.__hash__()``), regardless of whether the object is in a dictionary or not. If you fail to meet these restrictions dictionaries and other hash based structures will misbehave." msgstr "" -#: ../../faq/design.rst:541 -msgid "" -"In the case of :class:`!ListWrapper`, whenever the wrapper object is in a " -"dictionary the wrapped list must not change to avoid anomalies. Don't do " -"this unless you are prepared to think hard about the requirements and the " -"consequences of not meeting them correctly. Consider yourself warned." +msgid "In the case of :class:`!ListWrapper`, whenever the wrapper object is in a dictionary the wrapped list must not change to avoid anomalies. Don't do this unless you are prepared to think hard about the requirements and the consequences of not meeting them correctly. Consider yourself warned." msgstr "" -#: ../../faq/design.rst:548 msgid "Why doesn't list.sort() return the sorted list?" msgstr "" -#: ../../faq/design.rst:550 -msgid "" -"In situations where performance matters, making a copy of the list just to " -"sort it would be wasteful. Therefore, :meth:`list.sort` sorts the list in " -"place. In order to remind you of that fact, it does not return the sorted " -"list. This way, you won't be fooled into accidentally overwriting a list " -"when you need a sorted copy but also need to keep the unsorted version " -"around." +msgid "In situations where performance matters, making a copy of the list just to sort it would be wasteful. Therefore, :meth:`list.sort` sorts the list in place. In order to remind you of that fact, it does not return the sorted list. This way, you won't be fooled into accidentally overwriting a list when you need a sorted copy but also need to keep the unsorted version around." msgstr "" -#: ../../faq/design.rst:556 -msgid "" -"If you want to return a new list, use the built-in :func:`sorted` function " -"instead. This function creates a new list from a provided iterable, sorts " -"it and returns it. For example, here's how to iterate over the keys of a " -"dictionary in sorted order::" +msgid "If you want to return a new list, use the built-in :func:`sorted` function instead. This function creates a new list from a provided iterable, sorts it and returns it. For example, here's how to iterate over the keys of a dictionary in sorted order::" msgstr "" -#: ../../faq/design.rst:561 msgid "" "for key in sorted(mydict):\n" " ... # do whatever with mydict[key]..." msgstr "" -#: ../../faq/design.rst:566 msgid "How do you specify and enforce an interface spec in Python?" msgstr "" -#: ../../faq/design.rst:568 -msgid "" -"An interface specification for a module as provided by languages such as C++ " -"and Java describes the prototypes for the methods and functions of the " -"module. Many feel that compile-time enforcement of interface specifications " -"helps in the construction of large programs." +msgid "An interface specification for a module as provided by languages such as C++ and Java describes the prototypes for the methods and functions of the module. Many feel that compile-time enforcement of interface specifications helps in the construction of large programs." msgstr "" -#: ../../faq/design.rst:573 -msgid "" -"Python 2.6 adds an :mod:`abc` module that lets you define Abstract Base " -"Classes (ABCs). You can then use :func:`isinstance` and :func:`issubclass` " -"to check whether an instance or a class implements a particular ABC. " -"The :mod:`collections.abc` module defines a set of useful ABCs such " -"as :class:`~collections.abc.Iterable`, :class:`~collections.abc.Container`, " -"and :class:`~collections.abc.MutableMapping`." +msgid "Python 2.6 adds an :mod:`abc` module that lets you define Abstract Base Classes (ABCs). You can then use :func:`isinstance` and :func:`issubclass` to check whether an instance or a class implements a particular ABC. The :mod:`collections.abc` module defines a set of useful ABCs such as :class:`~collections.abc.Iterable`, :class:`~collections.abc.Container`, and :class:`~collections.abc.MutableMapping`." msgstr "" -#: ../../faq/design.rst:580 -msgid "" -"For Python, many of the advantages of interface specifications can be " -"obtained by an appropriate test discipline for components." +msgid "For Python, many of the advantages of interface specifications can be obtained by an appropriate test discipline for components." msgstr "" -#: ../../faq/design.rst:583 -msgid "" -"A good test suite for a module can both provide a regression test and serve " -"as a module interface specification and a set of examples. Many Python " -"modules can be run as a script to provide a simple \"self test.\" Even " -"modules which use complex external interfaces can often be tested in " -"isolation using trivial \"stub\" emulations of the external interface. " -"The :mod:`doctest` and :mod:`unittest` modules or third-party test " -"frameworks can be used to construct exhaustive test suites that exercise " -"every line of code in a module." +msgid "A good test suite for a module can both provide a regression test and serve as a module interface specification and a set of examples. Many Python modules can be run as a script to provide a simple \"self test.\" Even modules which use complex external interfaces can often be tested in isolation using trivial \"stub\" emulations of the external interface. The :mod:`doctest` and :mod:`unittest` modules or third-party test frameworks can be used to construct exhaustive test suites that exercise every line of code in a module." msgstr "" -#: ../../faq/design.rst:591 -msgid "" -"An appropriate testing discipline can help build large complex applications " -"in Python as well as having interface specifications would. In fact, it can " -"be better because an interface specification cannot test certain properties " -"of a program. For example, the :meth:`list.append` method is expected to " -"add new elements to the end of some internal list; an interface " -"specification cannot test that your :meth:`list.append` implementation will " -"actually do this correctly, but it's trivial to check this property in a " -"test suite." +msgid "An appropriate testing discipline can help build large complex applications in Python as well as having interface specifications would. In fact, it can be better because an interface specification cannot test certain properties of a program. For example, the :meth:`list.append` method is expected to add new elements to the end of some internal list; an interface specification cannot test that your :meth:`list.append` implementation will actually do this correctly, but it's trivial to check this property in a test suite." msgstr "" -#: ../../faq/design.rst:599 -msgid "" -"Writing test suites is very helpful, and you might want to design your code " -"to make it easily tested. One increasingly popular technique, test-driven " -"development, calls for writing parts of the test suite first, before you " -"write any of the actual code. Of course Python allows you to be sloppy and " -"not write test cases at all." +msgid "Writing test suites is very helpful, and you might want to design your code to make it easily tested. One increasingly popular technique, test-driven development, calls for writing parts of the test suite first, before you write any of the actual code. Of course Python allows you to be sloppy and not write test cases at all." msgstr "" -#: ../../faq/design.rst:607 msgid "Why is there no goto?" msgstr "" -#: ../../faq/design.rst:609 -msgid "" -"In the 1970s people realized that unrestricted goto could lead to messy " -"\"spaghetti\" code that was hard to understand and revise. In a high-level " -"language, it is also unneeded as long as there are ways to branch (in " -"Python, with :keyword:`if` statements and :keyword:`or`, :keyword:`and`, " -"and :keyword:`if`/:keyword:`else` expressions) and loop " -"(with :keyword:`while` and :keyword:`for` statements, possibly " -"containing :keyword:`continue` and :keyword:`break`)." +msgid "In the 1970s people realized that unrestricted goto could lead to messy \"spaghetti\" code that was hard to understand and revise. In a high-level language, it is also unneeded as long as there are ways to branch (in Python, with :keyword:`if` statements and :keyword:`or`, :keyword:`and`, and :keyword:`if`/:keyword:`else` expressions) and loop (with :keyword:`while` and :keyword:`for` statements, possibly containing :keyword:`continue` and :keyword:`break`)." msgstr "" -#: ../../faq/design.rst:616 -msgid "" -"One can also use exceptions to provide a \"structured goto\" that works even " -"across function calls. Many feel that exceptions can conveniently emulate " -"all reasonable uses of the ``go`` or ``goto`` constructs of C, Fortran, and " -"other languages. For example::" +msgid "One can also use exceptions to provide a \"structured goto\" that works even across function calls. Many feel that exceptions can conveniently emulate all reasonable uses of the ``go`` or ``goto`` constructs of C, Fortran, and other languages. For example::" msgstr "" -#: ../../faq/design.rst:622 msgid "" "class label(Exception): pass # declare a label\n" "\n" @@ -970,133 +483,78 @@ msgid "" "..." msgstr "" -#: ../../faq/design.rst:632 -msgid "" -"This doesn't allow you to jump into the middle of a loop, but that's usually " -"considered an abuse of ``goto`` anyway. Use sparingly." +msgid "This doesn't allow you to jump into the middle of a loop, but that's usually considered an abuse of ``goto`` anyway. Use sparingly." msgstr "" -#: ../../faq/design.rst:637 msgid "Why can't raw strings (r-strings) end with a backslash?" msgstr "" -#: ../../faq/design.rst:639 -msgid "" -"More precisely, they can't end with an odd number of backslashes: the " -"unpaired backslash at the end escapes the closing quote character, leaving " -"an unterminated string." +msgid "More precisely, they can't end with an odd number of backslashes: the unpaired backslash at the end escapes the closing quote character, leaving an unterminated string." msgstr "" -#: ../../faq/design.rst:643 -msgid "" -"Raw strings were designed to ease creating input for processors (chiefly " -"regular expression engines) that want to do their own backslash escape " -"processing. Such processors consider an unmatched trailing backslash to be " -"an error anyway, so raw strings disallow that. In return, they allow you to " -"pass on the string quote character by escaping it with a backslash. These " -"rules work well when r-strings are used for their intended purpose." +msgid "Raw strings were designed to ease creating input for processors (chiefly regular expression engines) that want to do their own backslash escape processing. Such processors consider an unmatched trailing backslash to be an error anyway, so raw strings disallow that. In return, they allow you to pass on the string quote character by escaping it with a backslash. These rules work well when r-strings are used for their intended purpose." msgstr "" -#: ../../faq/design.rst:650 -msgid "" -"If you're trying to build Windows pathnames, note that all Windows system " -"calls accept forward slashes too::" +msgid "If you're trying to build Windows pathnames, note that all Windows system calls accept forward slashes too::" msgstr "" -#: ../../faq/design.rst:653 msgid "f = open(\"/mydir/file.txt\") # works fine!" msgstr "" -#: ../../faq/design.rst:655 -msgid "" -"If you're trying to build a pathname for a DOS command, try e.g. one of ::" +msgid "If you're trying to build a pathname for a DOS command, try e.g. one of ::" msgstr "" -#: ../../faq/design.rst:657 msgid "" "dir = r\"\\this\\is\\my\\dos\\dir\" \"\\\\\"\n" "dir = r\"\\this\\is\\my\\dos\\dir\\ \"[:-1]\n" "dir = \"\\\\this\\\\is\\\\my\\\\dos\\\\dir\\\\\"" msgstr "" -#: ../../faq/design.rst:663 msgid "Why doesn't Python have a \"with\" statement for attribute assignments?" msgstr "" -#: ../../faq/design.rst:665 -msgid "" -"Python has a :keyword:`with` statement that wraps the execution of a block, " -"calling code on the entrance and exit from the block. Some languages have a " -"construct that looks like this::" +msgid "Python has a :keyword:`with` statement that wraps the execution of a block, calling code on the entrance and exit from the block. Some languages have a construct that looks like this::" msgstr "" -#: ../../faq/design.rst:669 msgid "" "with obj:\n" " a = 1 # equivalent to obj.a = 1\n" " total = total + 1 # obj.total = obj.total + 1" msgstr "" -#: ../../faq/design.rst:673 msgid "In Python, such a construct would be ambiguous." msgstr "" -#: ../../faq/design.rst:675 -msgid "" -"Other languages, such as Object Pascal, Delphi, and C++, use static types, " -"so it's possible to know, in an unambiguous way, what member is being " -"assigned to. This is the main point of static typing -- the compiler " -"*always* knows the scope of every variable at compile time." +msgid "Other languages, such as Object Pascal, Delphi, and C++, use static types, so it's possible to know, in an unambiguous way, what member is being assigned to. This is the main point of static typing -- the compiler *always* knows the scope of every variable at compile time." msgstr "" -#: ../../faq/design.rst:680 -msgid "" -"Python uses dynamic types. It is impossible to know in advance which " -"attribute will be referenced at runtime. Member attributes may be added or " -"removed from objects on the fly. This makes it impossible to know, from a " -"simple reading, what attribute is being referenced: a local one, a global " -"one, or a member attribute?" +msgid "Python uses dynamic types. It is impossible to know in advance which attribute will be referenced at runtime. Member attributes may be added or removed from objects on the fly. This makes it impossible to know, from a simple reading, what attribute is being referenced: a local one, a global one, or a member attribute?" msgstr "" -#: ../../faq/design.rst:686 msgid "For instance, take the following incomplete snippet::" msgstr "" -#: ../../faq/design.rst:688 msgid "" "def foo(a):\n" " with a:\n" " print(x)" msgstr "" -#: ../../faq/design.rst:692 -msgid "" -"The snippet assumes that ``a`` must have a member attribute called ``x``. " -"However, there is nothing in Python that tells the interpreter this. What " -"should happen if ``a`` is, let us say, an integer? If there is a global " -"variable named ``x``, will it be used inside the :keyword:`with` block? As " -"you see, the dynamic nature of Python makes such choices much harder." +msgid "The snippet assumes that ``a`` must have a member attribute called ``x``. However, there is nothing in Python that tells the interpreter this. What should happen if ``a`` is, let us say, an integer? If there is a global variable named ``x``, will it be used inside the :keyword:`with` block? As you see, the dynamic nature of Python makes such choices much harder." msgstr "" -#: ../../faq/design.rst:698 -msgid "" -"The primary benefit of :keyword:`with` and similar language features " -"(reduction of code volume) can, however, easily be achieved in Python by " -"assignment. Instead of::" +msgid "The primary benefit of :keyword:`with` and similar language features (reduction of code volume) can, however, easily be achieved in Python by assignment. Instead of::" msgstr "" -#: ../../faq/design.rst:701 msgid "" "function(args).mydict[index][index].a = 21\n" "function(args).mydict[index][index].b = 42\n" "function(args).mydict[index][index].c = 63" msgstr "" -#: ../../faq/design.rst:705 msgid "write this::" msgstr "" -#: ../../faq/design.rst:707 msgid "" "ref = function(args).mydict[index][index]\n" "ref.a = 21\n" @@ -1104,85 +562,49 @@ msgid "" "ref.c = 63" msgstr "" -#: ../../faq/design.rst:712 -msgid "" -"This also has the side-effect of increasing execution speed because name " -"bindings are resolved at run-time in Python, and the second version only " -"needs to perform the resolution once." +msgid "This also has the side-effect of increasing execution speed because name bindings are resolved at run-time in Python, and the second version only needs to perform the resolution once." msgstr "" -#: ../../faq/design.rst:716 -msgid "" -"Similar proposals that would introduce syntax to further reduce code volume, " -"such as using a 'leading dot', have been rejected in favour of explicitness " -"(see https://mail.python.org/pipermail/python-ideas/2016-May/040070.html)." +msgid "Similar proposals that would introduce syntax to further reduce code volume, such as using a 'leading dot', have been rejected in favour of explicitness (see https://mail.python.org/pipermail/python-ideas/2016-May/040070.html)." msgstr "" -#: ../../faq/design.rst:722 msgid "Why don't generators support the with statement?" msgstr "" -#: ../../faq/design.rst:724 -msgid "" -"For technical reasons, a generator used directly as a context manager would " -"not work correctly. When, as is most common, a generator is used as an " -"iterator run to completion, no closing is needed. When it is, wrap it " -"as :func:`contextlib.closing(generator) ` in " -"the :keyword:`with` statement." +msgid "For technical reasons, a generator used directly as a context manager would not work correctly. When, as is most common, a generator is used as an iterator run to completion, no closing is needed. When it is, wrap it as :func:`contextlib.closing(generator) ` in the :keyword:`with` statement." msgstr "" -#: ../../faq/design.rst:732 msgid "Why are colons required for the if/while/def/class statements?" msgstr "" -#: ../../faq/design.rst:734 -msgid "" -"The colon is required primarily to enhance readability (one of the results " -"of the experimental ABC language). Consider this::" +msgid "The colon is required primarily to enhance readability (one of the results of the experimental ABC language). Consider this::" msgstr "" -#: ../../faq/design.rst:737 msgid "" "if a == b\n" " print(a)" msgstr "" -#: ../../faq/design.rst:740 msgid "versus ::" msgstr "" -#: ../../faq/design.rst:742 msgid "" "if a == b:\n" " print(a)" msgstr "" -#: ../../faq/design.rst:745 -msgid "" -"Notice how the second one is slightly easier to read. Notice further how a " -"colon sets off the example in this FAQ answer; it's a standard usage in " -"English." +msgid "Notice how the second one is slightly easier to read. Notice further how a colon sets off the example in this FAQ answer; it's a standard usage in English." msgstr "" -#: ../../faq/design.rst:748 -msgid "" -"Another minor reason is that the colon makes it easier for editors with " -"syntax highlighting; they can look for colons to decide when indentation " -"needs to be increased instead of having to do a more elaborate parsing of " -"the program text." +msgid "Another minor reason is that the colon makes it easier for editors with syntax highlighting; they can look for colons to decide when indentation needs to be increased instead of having to do a more elaborate parsing of the program text." msgstr "" -#: ../../faq/design.rst:754 msgid "Why does Python allow commas at the end of lists and tuples?" msgstr "" -#: ../../faq/design.rst:756 -msgid "" -"Python lets you add a trailing comma at the end of lists, tuples, and " -"dictionaries::" +msgid "Python lets you add a trailing comma at the end of lists, tuples, and dictionaries::" msgstr "" -#: ../../faq/design.rst:759 msgid "" "[1, 2, 3,]\n" "('a', 'b', 'c',)\n" @@ -1192,25 +614,15 @@ msgid "" "}" msgstr "" -#: ../../faq/design.rst:767 msgid "There are several reasons to allow this." msgstr "" -#: ../../faq/design.rst:769 -msgid "" -"When you have a literal value for a list, tuple, or dictionary spread across " -"multiple lines, it's easier to add more elements because you don't have to " -"remember to add a comma to the previous line. The lines can also be " -"reordered without creating a syntax error." +msgid "When you have a literal value for a list, tuple, or dictionary spread across multiple lines, it's easier to add more elements because you don't have to remember to add a comma to the previous line. The lines can also be reordered without creating a syntax error." msgstr "" -#: ../../faq/design.rst:774 -msgid "" -"Accidentally omitting the comma can lead to errors that are hard to " -"diagnose. For example::" +msgid "Accidentally omitting the comma can lead to errors that are hard to diagnose. For example::" msgstr "" -#: ../../faq/design.rst:777 msgid "" "x = [\n" " \"fee\",\n" @@ -1220,15 +632,8 @@ msgid "" "]" msgstr "" -#: ../../faq/design.rst:784 -msgid "" -"This list looks like it has four elements, but it actually contains three: " -"\"fee\", \"fiefoo\" and \"fum\". Always adding the comma avoids this source " -"of error." +msgid "This list looks like it has four elements, but it actually contains three: \"fee\", \"fiefoo\" and \"fum\". Always adding the comma avoids this source of error." msgstr "" -#: ../../faq/design.rst:787 -msgid "" -"Allowing the trailing comma may also make programmatic code generation " -"easier." +msgid "Allowing the trailing comma may also make programmatic code generation easier." msgstr "" diff --git a/faq/extending.po b/faq/extending.po index c9e08dd3..4b441631 100644 --- a/faq/extending.po +++ b/faq/extending.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:52+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,156 +24,84 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../faq/extending.rst:3 msgid "Extending/Embedding FAQ" msgstr "" -#: ../../faq/extending.rst:6 msgid "Contents" msgstr "" -#: ../../faq/extending.rst:16 msgid "Can I create my own functions in C?" msgstr "" -#: ../../faq/extending.rst:18 -msgid "" -"Yes, you can create built-in modules containing functions, variables, " -"exceptions and even new types in C. This is explained in the " -"document :ref:`extending-index`." +msgid "Yes, you can create built-in modules containing functions, variables, exceptions and even new types in C. This is explained in the document :ref:`extending-index`." msgstr "" -#: ../../faq/extending.rst:22 msgid "Most intermediate or advanced Python books will also cover this topic." msgstr "" -#: ../../faq/extending.rst:26 msgid "Can I create my own functions in C++?" msgstr "" -#: ../../faq/extending.rst:28 -msgid "" -"Yes, using the C compatibility features found in C++. Place ``extern \"C\" " -"{ ... }`` around the Python include files and put ``extern \"C\"`` before " -"each function that is going to be called by the Python interpreter. Global " -"or static C++ objects with constructors are probably not a good idea." +msgid "Yes, using the C compatibility features found in C++. Place ``extern \"C\" { ... }`` around the Python include files and put ``extern \"C\"`` before each function that is going to be called by the Python interpreter. Global or static C++ objects with constructors are probably not a good idea." msgstr "" -#: ../../faq/extending.rst:37 msgid "Writing C is hard; are there any alternatives?" msgstr "" -#: ../../faq/extending.rst:39 -msgid "" -"There are a number of alternatives to writing your own C extensions, " -"depending on what you're trying to do. :ref:`Recommended third party tools " -"` offer both simpler and more sophisticated approaches to " -"creating C and C++ extensions for Python." +msgid "There are a number of alternatives to writing your own C extensions, depending on what you're trying to do. :ref:`Recommended third party tools ` offer both simpler and more sophisticated approaches to creating C and C++ extensions for Python." msgstr "" -#: ../../faq/extending.rst:46 msgid "How can I execute arbitrary Python statements from C?" msgstr "" -#: ../../faq/extending.rst:48 -msgid "" -"The highest-level function to do this is :c:func:`PyRun_SimpleString` which " -"takes a single string argument to be executed in the context of the module " -"``__main__`` and returns ``0`` for success and ``-1`` when an exception " -"occurred (including :exc:`SyntaxError`). If you want more control, " -"use :c:func:`PyRun_String`; see the source for :c:func:`PyRun_SimpleString` " -"in ``Python/pythonrun.c``." +msgid "The highest-level function to do this is :c:func:`PyRun_SimpleString` which takes a single string argument to be executed in the context of the module ``__main__`` and returns ``0`` for success and ``-1`` when an exception occurred (including :exc:`SyntaxError`). If you want more control, use :c:func:`PyRun_String`; see the source for :c:func:`PyRun_SimpleString` in ``Python/pythonrun.c``." msgstr "" -#: ../../faq/extending.rst:57 msgid "How can I evaluate an arbitrary Python expression from C?" msgstr "" -#: ../../faq/extending.rst:59 -msgid "" -"Call the function :c:func:`PyRun_String` from the previous question with the " -"start symbol :c:data:`Py_eval_input`; it parses an expression, evaluates it " -"and returns its value." +msgid "Call the function :c:func:`PyRun_String` from the previous question with the start symbol :c:data:`Py_eval_input`; it parses an expression, evaluates it and returns its value." msgstr "" -#: ../../faq/extending.rst:65 msgid "How do I extract C values from a Python object?" msgstr "" -#: ../../faq/extending.rst:67 -msgid "" -"That depends on the object's type. If it's a tuple, :c:func:`PyTuple_Size` " -"returns its length and :c:func:`PyTuple_GetItem` returns the item at a " -"specified index. Lists have similar functions, :c:func:`PyList_Size` " -"and :c:func:`PyList_GetItem`." +msgid "That depends on the object's type. If it's a tuple, :c:func:`PyTuple_Size` returns its length and :c:func:`PyTuple_GetItem` returns the item at a specified index. Lists have similar functions, :c:func:`PyList_Size` and :c:func:`PyList_GetItem`." msgstr "" -#: ../../faq/extending.rst:72 -msgid "" -"For bytes, :c:func:`PyBytes_Size` returns its length " -"and :c:func:`PyBytes_AsStringAndSize` provides a pointer to its value and " -"its length. Note that Python bytes objects may contain null bytes so " -"C's :c:func:`!strlen` should not be used." +msgid "For bytes, :c:func:`PyBytes_Size` returns its length and :c:func:`PyBytes_AsStringAndSize` provides a pointer to its value and its length. Note that Python bytes objects may contain null bytes so C's :c:func:`!strlen` should not be used." msgstr "" -#: ../../faq/extending.rst:77 -msgid "" -"To test the type of an object, first make sure it isn't ``NULL``, and then " -"use :c:func:`PyBytes_Check`, :c:func:`PyTuple_Check`, :c:func:`PyList_Check`, " -"etc." +msgid "To test the type of an object, first make sure it isn't ``NULL``, and then use :c:func:`PyBytes_Check`, :c:func:`PyTuple_Check`, :c:func:`PyList_Check`, etc." msgstr "" -#: ../../faq/extending.rst:80 -msgid "" -"There is also a high-level API to Python objects which is provided by the so-" -"called 'abstract' interface -- read ``Include/abstract.h`` for further " -"details. It allows interfacing with any kind of Python sequence using calls " -"like :c:func:`PySequence_Length`, :c:func:`PySequence_GetItem`, etc. as well " -"as many other useful protocols such as numbers (:c:func:`PyNumber_Index` et " -"al.) and mappings in the PyMapping APIs." +msgid "There is also a high-level API to Python objects which is provided by the so-called 'abstract' interface -- read ``Include/abstract.h`` for further details. It allows interfacing with any kind of Python sequence using calls like :c:func:`PySequence_Length`, :c:func:`PySequence_GetItem`, etc. as well as many other useful protocols such as numbers (:c:func:`PyNumber_Index` et al.) and mappings in the PyMapping APIs." msgstr "" -#: ../../faq/extending.rst:89 msgid "How do I use Py_BuildValue() to create a tuple of arbitrary length?" msgstr "" -#: ../../faq/extending.rst:91 msgid "You can't. Use :c:func:`PyTuple_Pack` instead." msgstr "" -#: ../../faq/extending.rst:95 msgid "How do I call an object's method from C?" msgstr "" -#: ../../faq/extending.rst:97 -msgid "" -"The :c:func:`PyObject_CallMethod` function can be used to call an arbitrary " -"method of an object. The parameters are the object, the name of the method " -"to call, a format string like that used with :c:func:`Py_BuildValue`, and " -"the argument values::" +msgid "The :c:func:`PyObject_CallMethod` function can be used to call an arbitrary method of an object. The parameters are the object, the name of the method to call, a format string like that used with :c:func:`Py_BuildValue`, and the argument values::" msgstr "" -#: ../../faq/extending.rst:102 msgid "" "PyObject *\n" "PyObject_CallMethod(PyObject *object, const char *method_name,\n" " const char *arg_format, ...);" msgstr "" -#: ../../faq/extending.rst:106 -msgid "" -"This works for any object that has methods -- whether built-in or user-" -"defined. You are responsible for eventually :c:func:`Py_DECREF`\\ 'ing the " -"return value." +msgid "This works for any object that has methods -- whether built-in or user-defined. You are responsible for eventually :c:func:`Py_DECREF`\\ 'ing the return value." msgstr "" -#: ../../faq/extending.rst:109 -msgid "" -"To call, e.g., a file object's \"seek\" method with arguments 10, 0 " -"(assuming the file object pointer is \"f\")::" +msgid "To call, e.g., a file object's \"seek\" method with arguments 10, 0 (assuming the file object pointer is \"f\")::" msgstr "" -#: ../../faq/extending.rst:112 msgid "" "res = PyObject_CallMethod(f, \"seek\", \"(ii)\", 10, 0);\n" "if (res == NULL) {\n" @@ -184,33 +112,18 @@ msgid "" "}" msgstr "" -#: ../../faq/extending.rst:120 -msgid "" -"Note that since :c:func:`PyObject_CallObject` *always* wants a tuple for the " -"argument list, to call a function without arguments, pass \"()\" for the " -"format, and to call a function with one argument, surround the argument in " -"parentheses, e.g. \"(i)\"." +msgid "Note that since :c:func:`PyObject_CallObject` *always* wants a tuple for the argument list, to call a function without arguments, pass \"()\" for the format, and to call a function with one argument, surround the argument in parentheses, e.g. \"(i)\"." msgstr "" -#: ../../faq/extending.rst:127 -msgid "" -"How do I catch the output from PyErr_Print() (or anything that prints to " -"stdout/stderr)?" +msgid "How do I catch the output from PyErr_Print() (or anything that prints to stdout/stderr)?" msgstr "" -#: ../../faq/extending.rst:129 -msgid "" -"In Python code, define an object that supports the ``write()`` method. " -"Assign this object to :data:`sys.stdout` and :data:`sys.stderr`. Call " -"print_error, or just allow the standard traceback mechanism to work. Then, " -"the output will go wherever your ``write()`` method sends it." +msgid "In Python code, define an object that supports the ``write()`` method. Assign this object to :data:`sys.stdout` and :data:`sys.stderr`. Call print_error, or just allow the standard traceback mechanism to work. Then, the output will go wherever your ``write()`` method sends it." msgstr "" -#: ../../faq/extending.rst:134 msgid "The easiest way to do this is to use the :class:`io.StringIO` class:" msgstr "" -#: ../../faq/extending.rst:136 msgid "" ">>> import io, sys\n" ">>> sys.stdout = io.StringIO()\n" @@ -221,11 +134,9 @@ msgid "" "hello world!" msgstr "" -#: ../../faq/extending.rst:146 msgid "A custom object to do the same would look like this:" msgstr "" -#: ../../faq/extending.rst:148 msgid "" ">>> import io, sys\n" ">>> class StdoutCatcher(io.TextIOBase):\n" @@ -243,95 +154,57 @@ msgid "" "hello world!" msgstr "" -#: ../../faq/extending.rst:167 msgid "How do I access a module written in Python from C?" msgstr "" -#: ../../faq/extending.rst:169 msgid "You can get a pointer to the module object as follows::" msgstr "" -#: ../../faq/extending.rst:171 msgid "module = PyImport_ImportModule(\"\");" msgstr "" -#: ../../faq/extending.rst:173 -msgid "" -"If the module hasn't been imported yet (i.e. it is not yet present " -"in :data:`sys.modules`), this initializes the module; otherwise it simply " -"returns the value of ``sys.modules[\"\"]``. Note that it " -"doesn't enter the module into any namespace -- it only ensures it has been " -"initialized and is stored in :data:`sys.modules`." +msgid "If the module hasn't been imported yet (i.e. it is not yet present in :data:`sys.modules`), this initializes the module; otherwise it simply returns the value of ``sys.modules[\"\"]``. Note that it doesn't enter the module into any namespace -- it only ensures it has been initialized and is stored in :data:`sys.modules`." msgstr "" -#: ../../faq/extending.rst:179 -msgid "" -"You can then access the module's attributes (i.e. any name defined in the " -"module) as follows::" +msgid "You can then access the module's attributes (i.e. any name defined in the module) as follows::" msgstr "" -#: ../../faq/extending.rst:182 msgid "attr = PyObject_GetAttrString(module, \"\");" msgstr "" -#: ../../faq/extending.rst:184 -msgid "" -"Calling :c:func:`PyObject_SetAttrString` to assign to variables in the " -"module also works." +msgid "Calling :c:func:`PyObject_SetAttrString` to assign to variables in the module also works." msgstr "" -#: ../../faq/extending.rst:189 msgid "How do I interface to C++ objects from Python?" msgstr "" -#: ../../faq/extending.rst:191 -msgid "" -"Depending on your requirements, there are many approaches. To do this " -"manually, begin by reading :ref:`the \"Extending and Embedding\" document " -"`. Realize that for the Python run-time system, there " -"isn't a whole lot of difference between C and C++ -- so the strategy of " -"building a new Python type around a C structure (pointer) type will also " -"work for C++ objects." +msgid "Depending on your requirements, there are many approaches. To do this manually, begin by reading :ref:`the \"Extending and Embedding\" document `. Realize that for the Python run-time system, there isn't a whole lot of difference between C and C++ -- so the strategy of building a new Python type around a C structure (pointer) type will also work for C++ objects." msgstr "" -#: ../../faq/extending.rst:197 msgid "For C++ libraries, see :ref:`c-wrapper-software`." msgstr "" -#: ../../faq/extending.rst:201 msgid "I added a module using the Setup file and the make fails; why?" msgstr "" -#: ../../faq/extending.rst:203 -msgid "" -"Setup must end in a newline, if there is no newline there, the build process " -"fails. (Fixing this requires some ugly shell script hackery, and this bug " -"is so minor that it doesn't seem worth the effort.)" +msgid "Setup must end in a newline, if there is no newline there, the build process fails. (Fixing this requires some ugly shell script hackery, and this bug is so minor that it doesn't seem worth the effort.)" msgstr "" -#: ../../faq/extending.rst:209 msgid "How do I debug an extension?" msgstr "" -#: ../../faq/extending.rst:211 -msgid "" -"When using GDB with dynamically loaded extensions, you can't set a " -"breakpoint in your extension until your extension is loaded." +msgid "When using GDB with dynamically loaded extensions, you can't set a breakpoint in your extension until your extension is loaded." msgstr "" -#: ../../faq/extending.rst:214 msgid "In your ``.gdbinit`` file (or interactively), add the command:" msgstr "" -#: ../../faq/extending.rst:216 msgid "br _PyImport_LoadDynamicModule" msgstr "" -#: ../../faq/extending.rst:220 msgid "Then, when you run GDB:" msgstr "" -#: ../../faq/extending.rst:222 msgid "" "$ gdb /local/bin/python\n" "gdb) run myscript.py\n" @@ -341,80 +214,41 @@ msgid "" "gdb) continue" msgstr "" -#: ../../faq/extending.rst:232 -msgid "" -"I want to compile a Python module on my Linux system, but some files are " -"missing. Why?" +msgid "I want to compile a Python module on my Linux system, but some files are missing. Why?" msgstr "" -#: ../../faq/extending.rst:234 -msgid "" -"Most packaged versions of Python omit some files required for compiling " -"Python extensions." +msgid "Most packaged versions of Python omit some files required for compiling Python extensions." msgstr "" -#: ../../faq/extending.rst:237 msgid "For Red Hat, install the python3-devel RPM to get the necessary files." msgstr "" -#: ../../faq/extending.rst:239 msgid "For Debian, run ``apt-get install python3-dev``." msgstr "" -#: ../../faq/extending.rst:242 msgid "How do I tell \"incomplete input\" from \"invalid input\"?" msgstr "" -#: ../../faq/extending.rst:244 -msgid "" -"Sometimes you want to emulate the Python interactive interpreter's behavior, " -"where it gives you a continuation prompt when the input is incomplete (e.g. " -"you typed the start of an \"if\" statement or you didn't close your " -"parentheses or triple string quotes), but it gives you a syntax error " -"message immediately when the input is invalid." +msgid "Sometimes you want to emulate the Python interactive interpreter's behavior, where it gives you a continuation prompt when the input is incomplete (e.g. you typed the start of an \"if\" statement or you didn't close your parentheses or triple string quotes), but it gives you a syntax error message immediately when the input is invalid." msgstr "" -#: ../../faq/extending.rst:250 -msgid "" -"In Python you can use the :mod:`codeop` module, which approximates the " -"parser's behavior sufficiently. IDLE uses this, for example." +msgid "In Python you can use the :mod:`codeop` module, which approximates the parser's behavior sufficiently. IDLE uses this, for example." msgstr "" -#: ../../faq/extending.rst:253 -msgid "" -"The easiest way to do it in C is to call :c:func:`PyRun_InteractiveLoop` " -"(perhaps in a separate thread) and let the Python interpreter handle the " -"input for you. You can also set the :c:func:`PyOS_ReadlineFunctionPointer` " -"to point at your custom input function. See ``Modules/readline.c`` and " -"``Parser/myreadline.c`` for more hints." +msgid "The easiest way to do it in C is to call :c:func:`PyRun_InteractiveLoop` (perhaps in a separate thread) and let the Python interpreter handle the input for you. You can also set the :c:func:`PyOS_ReadlineFunctionPointer` to point at your custom input function. See ``Modules/readline.c`` and ``Parser/myreadline.c`` for more hints." msgstr "" -#: ../../faq/extending.rst:260 msgid "How do I find undefined g++ symbols __builtin_new or __pure_virtual?" msgstr "" -#: ../../faq/extending.rst:262 -msgid "" -"To dynamically load g++ extension modules, you must recompile Python, relink " -"it using g++ (change LINKCC in the Python Modules Makefile), and link your " -"extension module using g++ (e.g., ``g++ -shared -o mymodule.so mymodule.o``)." +msgid "To dynamically load g++ extension modules, you must recompile Python, relink it using g++ (change LINKCC in the Python Modules Makefile), and link your extension module using g++ (e.g., ``g++ -shared -o mymodule.so mymodule.o``)." msgstr "" -#: ../../faq/extending.rst:268 -msgid "" -"Can I create an object class with some methods implemented in C and others " -"in Python (e.g. through inheritance)?" +msgid "Can I create an object class with some methods implemented in C and others in Python (e.g. through inheritance)?" msgstr "" -#: ../../faq/extending.rst:270 -msgid "" -"Yes, you can inherit from built-in classes such " -"as :class:`int`, :class:`list`, :class:`dict`, etc." +msgid "Yes, you can inherit from built-in classes such as :class:`int`, :class:`list`, :class:`dict`, etc." msgstr "" -#: ../../faq/extending.rst:273 -msgid "" -"The Boost Python Library (BPL, https://www.boost.org/libs/python/doc/" -"index.html) provides a way of doing this from C++ (i.e. you can inherit from " -"an extension class written in C++ using the BPL)." +msgid "The Boost Python Library (BPL, https://www.boost.org/libs/python/doc/index.html) provides a way of doing this from C++ (i.e. you can inherit from an extension class written in C++ using the BPL)." msgstr "" diff --git a/faq/general.po b/faq/general.po index 8c973d7f..6fb86a72 100644 --- a/faq/general.po +++ b/faq/general.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:52+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,622 +24,288 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../faq/general.rst:5 msgid "General Python FAQ" msgstr "" -#: ../../faq/general.rst:8 msgid "Contents" msgstr "" -#: ../../faq/general.rst:13 msgid "General Information" msgstr "" -#: ../../faq/general.rst:16 msgid "What is Python?" msgstr "" -#: ../../faq/general.rst:18 -msgid "" -"Python is an interpreted, interactive, object-oriented programming " -"language. It incorporates modules, exceptions, dynamic typing, very high " -"level dynamic data types, and classes. It supports multiple programming " -"paradigms beyond object-oriented programming, such as procedural and " -"functional programming. Python combines remarkable power with very clear " -"syntax. It has interfaces to many system calls and libraries, as well as to " -"various window systems, and is extensible in C or C++. It is also usable as " -"an extension language for applications that need a programmable interface. " -"Finally, Python is portable: it runs on many Unix variants including Linux " -"and macOS, and on Windows." -msgstr "" - -#: ../../faq/general.rst:28 -msgid "" -"To find out more, start with :ref:`tutorial-index`. The `Beginner's Guide " -"to Python `_ links to other " -"introductory tutorials and resources for learning Python." +msgid "Python is an interpreted, interactive, object-oriented programming language. It incorporates modules, exceptions, dynamic typing, very high level dynamic data types, and classes. It supports multiple programming paradigms beyond object-oriented programming, such as procedural and functional programming. Python combines remarkable power with very clear syntax. It has interfaces to many system calls and libraries, as well as to various window systems, and is extensible in C or C++. It is also usable as an extension language for applications that need a programmable interface. Finally, Python is portable: it runs on many Unix variants including Linux and macOS, and on Windows." +msgstr "" + +msgid "To find out more, start with :ref:`tutorial-index`. The `Beginner's Guide to Python `_ links to other introductory tutorials and resources for learning Python." msgstr "" -#: ../../faq/general.rst:34 msgid "What is the Python Software Foundation?" msgstr "" -#: ../../faq/general.rst:36 -msgid "" -"The Python Software Foundation is an independent non-profit organization " -"that holds the copyright on Python versions 2.1 and newer. The PSF's " -"mission is to advance open source technology related to the Python " -"programming language and to publicize the use of Python. The PSF's home " -"page is at https://www.python.org/psf/." +msgid "The Python Software Foundation is an independent non-profit organization that holds the copyright on Python versions 2.1 and newer. The PSF's mission is to advance open source technology related to the Python programming language and to publicize the use of Python. The PSF's home page is at https://www.python.org/psf/." msgstr "" -#: ../../faq/general.rst:42 -msgid "" -"Donations to the PSF are tax-exempt in the US. If you use Python and find " -"it helpful, please contribute via `the PSF donation page `_." +msgid "Donations to the PSF are tax-exempt in the US. If you use Python and find it helpful, please contribute via `the PSF donation page `_." msgstr "" -#: ../../faq/general.rst:48 msgid "Are there copyright restrictions on the use of Python?" msgstr "" -#: ../../faq/general.rst:50 -msgid "" -"You can do anything you want with the source, as long as you leave the " -"copyrights in and display those copyrights in any documentation about Python " -"that you produce. If you honor the copyright rules, it's OK to use Python " -"for commercial use, to sell copies of Python in source or binary form " -"(modified or unmodified), or to sell products that incorporate Python in " -"some form. We would still like to know about all commercial use of Python, " -"of course." +msgid "You can do anything you want with the source, as long as you leave the copyrights in and display those copyrights in any documentation about Python that you produce. If you honor the copyright rules, it's OK to use Python for commercial use, to sell copies of Python in source or binary form (modified or unmodified), or to sell products that incorporate Python in some form. We would still like to know about all commercial use of Python, of course." msgstr "" -#: ../../faq/general.rst:57 -msgid "" -"See `the license page `_ to find " -"further explanations and the full text of the PSF License." +msgid "See `the license page `_ to find further explanations and the full text of the PSF License." msgstr "" -#: ../../faq/general.rst:60 -msgid "" -"The Python logo is trademarked, and in certain cases permission is required " -"to use it. Consult `the Trademark Usage Policy `__ for more information." +msgid "The Python logo is trademarked, and in certain cases permission is required to use it. Consult `the Trademark Usage Policy `__ for more information." msgstr "" -#: ../../faq/general.rst:66 msgid "Why was Python created in the first place?" msgstr "" -#: ../../faq/general.rst:68 -msgid "" -"Here's a *very* brief summary of what started it all, written by Guido van " -"Rossum:" +msgid "Here's a *very* brief summary of what started it all, written by Guido van Rossum:" msgstr "" -#: ../../faq/general.rst:71 -msgid "" -"I had extensive experience with implementing an interpreted language in the " -"ABC group at CWI, and from working with this group I had learned a lot about " -"language design. This is the origin of many Python features, including the " -"use of indentation for statement grouping and the inclusion of very-high-" -"level data types (although the details are all different in Python)." +msgid "I had extensive experience with implementing an interpreted language in the ABC group at CWI, and from working with this group I had learned a lot about language design. This is the origin of many Python features, including the use of indentation for statement grouping and the inclusion of very-high-level data types (although the details are all different in Python)." msgstr "" -#: ../../faq/general.rst:78 -msgid "" -"I had a number of gripes about the ABC language, but also liked many of its " -"features. It was impossible to extend the ABC language (or its " -"implementation) to remedy my complaints -- in fact its lack of extensibility " -"was one of its biggest problems. I had some experience with using Modula-2+ " -"and talked with the designers of Modula-3 and read the Modula-3 report. " -"Modula-3 is the origin of the syntax and semantics used for exceptions, and " -"some other Python features." +msgid "I had a number of gripes about the ABC language, but also liked many of its features. It was impossible to extend the ABC language (or its implementation) to remedy my complaints -- in fact its lack of extensibility was one of its biggest problems. I had some experience with using Modula-2+ and talked with the designers of Modula-3 and read the Modula-3 report. Modula-3 is the origin of the syntax and semantics used for exceptions, and some other Python features." msgstr "" -#: ../../faq/general.rst:86 -msgid "" -"I was working in the Amoeba distributed operating system group at CWI. We " -"needed a better way to do system administration than by writing either C " -"programs or Bourne shell scripts, since Amoeba had its own system call " -"interface which wasn't easily accessible from the Bourne shell. My " -"experience with error handling in Amoeba made me acutely aware of the " -"importance of exceptions as a programming language feature." +msgid "I was working in the Amoeba distributed operating system group at CWI. We needed a better way to do system administration than by writing either C programs or Bourne shell scripts, since Amoeba had its own system call interface which wasn't easily accessible from the Bourne shell. My experience with error handling in Amoeba made me acutely aware of the importance of exceptions as a programming language feature." msgstr "" -#: ../../faq/general.rst:93 -msgid "" -"It occurred to me that a scripting language with a syntax like ABC but with " -"access to the Amoeba system calls would fill the need. I realized that it " -"would be foolish to write an Amoeba-specific language, so I decided that I " -"needed a language that was generally extensible." +msgid "It occurred to me that a scripting language with a syntax like ABC but with access to the Amoeba system calls would fill the need. I realized that it would be foolish to write an Amoeba-specific language, so I decided that I needed a language that was generally extensible." msgstr "" -#: ../../faq/general.rst:98 -msgid "" -"During the 1989 Christmas holidays, I had a lot of time on my hand, so I " -"decided to give it a try. During the next year, while still mostly working " -"on it in my own time, Python was used in the Amoeba project with increasing " -"success, and the feedback from colleagues made me add many early " -"improvements." +msgid "During the 1989 Christmas holidays, I had a lot of time on my hand, so I decided to give it a try. During the next year, while still mostly working on it in my own time, Python was used in the Amoeba project with increasing success, and the feedback from colleagues made me add many early improvements." msgstr "" -#: ../../faq/general.rst:104 -msgid "" -"In February 1991, after just over a year of development, I decided to post " -"to USENET. The rest is in the ``Misc/HISTORY`` file." +msgid "In February 1991, after just over a year of development, I decided to post to USENET. The rest is in the ``Misc/HISTORY`` file." msgstr "" -#: ../../faq/general.rst:109 msgid "What is Python good for?" msgstr "" -#: ../../faq/general.rst:111 -msgid "" -"Python is a high-level general-purpose programming language that can be " -"applied to many different classes of problems." +msgid "Python is a high-level general-purpose programming language that can be applied to many different classes of problems." +msgstr "" + +msgid "The language comes with a large standard library that covers areas such as string processing (regular expressions, Unicode, calculating differences between files), internet protocols (HTTP, FTP, SMTP, XML-RPC, POP, IMAP), software engineering (unit testing, logging, profiling, parsing Python code), and operating system interfaces (system calls, filesystems, TCP/IP sockets). Look at the table of contents for :ref:`library-index` to get an idea of what's available. A wide variety of third-party extensions are also available. Consult `the Python Package Index `_ to find packages of interest to you." msgstr "" -#: ../../faq/general.rst:114 -msgid "" -"The language comes with a large standard library that covers areas such as " -"string processing (regular expressions, Unicode, calculating differences " -"between files), internet protocols (HTTP, FTP, SMTP, XML-RPC, POP, IMAP), " -"software engineering (unit testing, logging, profiling, parsing Python " -"code), and operating system interfaces (system calls, filesystems, TCP/IP " -"sockets). Look at the table of contents for :ref:`library-index` to get an " -"idea of what's available. A wide variety of third-party extensions are also " -"available. Consult `the Python Package Index `_ to find " -"packages of interest to you." -msgstr "" - -#: ../../faq/general.rst:128 msgid "How does the Python version numbering scheme work?" msgstr "" -#: ../../faq/general.rst:130 msgid "Python versions are numbered \"A.B.C\" or \"A.B\":" msgstr "" -#: ../../faq/general.rst:132 -msgid "" -"*A* is the major version number -- it is only incremented for really major " -"changes in the language." +msgid "*A* is the major version number -- it is only incremented for really major changes in the language." msgstr "" -#: ../../faq/general.rst:134 -msgid "" -"*B* is the minor version number -- it is incremented for less earth-" -"shattering changes." +msgid "*B* is the minor version number -- it is incremented for less earth-shattering changes." msgstr "" -#: ../../faq/general.rst:136 -msgid "" -"*C* is the micro version number -- it is incremented for each bugfix release." +msgid "*C* is the micro version number -- it is incremented for each bugfix release." msgstr "" -#: ../../faq/general.rst:138 -msgid "" -"Not all releases are bugfix releases. In the run-up to a new feature " -"release, a series of development releases are made, denoted as alpha, beta, " -"or release candidate. Alphas are early releases in which interfaces aren't " -"yet finalized; it's not unexpected to see an interface change between two " -"alpha releases. Betas are more stable, preserving existing interfaces but " -"possibly adding new modules, and release candidates are frozen, making no " -"changes except as needed to fix critical bugs." +msgid "Not all releases are bugfix releases. In the run-up to a new feature release, a series of development releases are made, denoted as alpha, beta, or release candidate. Alphas are early releases in which interfaces aren't yet finalized; it's not unexpected to see an interface change between two alpha releases. Betas are more stable, preserving existing interfaces but possibly adding new modules, and release candidates are frozen, making no changes except as needed to fix critical bugs." msgstr "" -#: ../../faq/general.rst:146 msgid "Alpha, beta and release candidate versions have an additional suffix:" msgstr "" -#: ../../faq/general.rst:148 msgid "The suffix for an alpha version is \"aN\" for some small number *N*." msgstr "" -#: ../../faq/general.rst:149 msgid "The suffix for a beta version is \"bN\" for some small number *N*." msgstr "" -#: ../../faq/general.rst:150 -msgid "" -"The suffix for a release candidate version is \"rcN\" for some small number " -"*N*." +msgid "The suffix for a release candidate version is \"rcN\" for some small number *N*." msgstr "" -#: ../../faq/general.rst:152 -msgid "" -"In other words, all versions labeled *2.0aN* precede the versions labeled " -"*2.0bN*, which precede versions labeled *2.0rcN*, and *those* precede 2.0." +msgid "In other words, all versions labeled *2.0aN* precede the versions labeled *2.0bN*, which precede versions labeled *2.0rcN*, and *those* precede 2.0." msgstr "" -#: ../../faq/general.rst:155 -msgid "" -"You may also find version numbers with a \"+\" suffix, e.g. \"2.2+\". These " -"are unreleased versions, built directly from the CPython development " -"repository. In practice, after a final minor release is made, the version " -"is incremented to the next minor version, which becomes the \"a0\" version, " -"e.g. \"2.4a0\"." +msgid "You may also find version numbers with a \"+\" suffix, e.g. \"2.2+\". These are unreleased versions, built directly from the CPython development repository. In practice, after a final minor release is made, the version is incremented to the next minor version, which becomes the \"a0\" version, e.g. \"2.4a0\"." msgstr "" -#: ../../faq/general.rst:160 -msgid "" -"See the `Developer's Guide `__ for more information about the development cycle, " -"and :pep:`387` to learn more about Python's backward compatibility policy. " -"See also the documentation for :data:`sys.version`, :data:`sys.hexversion`, " -"and :data:`sys.version_info`." +msgid "See the `Developer's Guide `__ for more information about the development cycle, and :pep:`387` to learn more about Python's backward compatibility policy. See also the documentation for :data:`sys.version`, :data:`sys.hexversion`, and :data:`sys.version_info`." msgstr "" -#: ../../faq/general.rst:169 msgid "How do I obtain a copy of the Python source?" msgstr "" -#: ../../faq/general.rst:171 -msgid "" -"The latest Python source distribution is always available from python.org, " -"at https://www.python.org/downloads/. The latest development sources can be " -"obtained at https://github.com/python/cpython/." +msgid "The latest Python source distribution is always available from python.org, at https://www.python.org/downloads/. The latest development sources can be obtained at https://github.com/python/cpython/." msgstr "" -#: ../../faq/general.rst:175 -msgid "" -"The source distribution is a gzipped tar file containing the complete C " -"source, Sphinx-formatted documentation, Python library modules, example " -"programs, and several useful pieces of freely distributable software. The " -"source will compile and run out of the box on most UNIX platforms." +msgid "The source distribution is a gzipped tar file containing the complete C source, Sphinx-formatted documentation, Python library modules, example programs, and several useful pieces of freely distributable software. The source will compile and run out of the box on most UNIX platforms." msgstr "" -#: ../../faq/general.rst:180 -msgid "" -"Consult the `Getting Started section of the Python Developer's Guide " -"`__ for more information on getting the " -"source code and compiling it." +msgid "Consult the `Getting Started section of the Python Developer's Guide `__ for more information on getting the source code and compiling it." msgstr "" -#: ../../faq/general.rst:186 msgid "How do I get documentation on Python?" msgstr "" -#: ../../faq/general.rst:188 -msgid "" -"The standard documentation for the current stable version of Python is " -"available at https://docs.python.org/3/. EPUB, plain text, and downloadable " -"HTML versions are also available at https://docs.python.org/3/download.html." +msgid "The standard documentation for the current stable version of Python is available at https://docs.python.org/3/. EPUB, plain text, and downloadable HTML versions are also available at https://docs.python.org/3/download.html." msgstr "" -#: ../../faq/general.rst:192 -msgid "" -"The documentation is written in reStructuredText and processed by `the " -"Sphinx documentation tool `__. The " -"reStructuredText source for the documentation is part of the Python source " -"distribution." +msgid "The documentation is written in reStructuredText and processed by `the Sphinx documentation tool `__. The reStructuredText source for the documentation is part of the Python source distribution." msgstr "" -#: ../../faq/general.rst:198 msgid "I've never programmed before. Is there a Python tutorial?" msgstr "" -#: ../../faq/general.rst:200 -msgid "" -"There are numerous tutorials and books available. The standard " -"documentation includes :ref:`tutorial-index`." +msgid "There are numerous tutorials and books available. The standard documentation includes :ref:`tutorial-index`." msgstr "" -#: ../../faq/general.rst:203 -msgid "" -"Consult `the Beginner's Guide `_ to find information for beginning Python programmers, " -"including lists of tutorials." +msgid "Consult `the Beginner's Guide `_ to find information for beginning Python programmers, including lists of tutorials." msgstr "" -#: ../../faq/general.rst:208 msgid "Is there a newsgroup or mailing list devoted to Python?" msgstr "" -#: ../../faq/general.rst:210 -msgid "" -"There is a newsgroup, :newsgroup:`comp.lang.python`, and a mailing list, " -"`python-list `_. The " -"newsgroup and mailing list are gatewayed into each other -- if you can read " -"news it's unnecessary to subscribe to the mailing " -"list. :newsgroup:`comp.lang.python` is high-traffic, receiving hundreds of " -"postings every day, and Usenet readers are often more able to cope with this " -"volume." +msgid "There is a newsgroup, :newsgroup:`comp.lang.python`, and a mailing list, `python-list `_. The newsgroup and mailing list are gatewayed into each other -- if you can read news it's unnecessary to subscribe to the mailing list. :newsgroup:`comp.lang.python` is high-traffic, receiving hundreds of postings every day, and Usenet readers are often more able to cope with this volume." msgstr "" -#: ../../faq/general.rst:217 -msgid "" -"Announcements of new software releases and events can be found in " -"comp.lang.python.announce, a low-traffic moderated list that receives about " -"five postings per day. It's available as `the python-announce mailing list " -"`_." +msgid "Announcements of new software releases and events can be found in comp.lang.python.announce, a low-traffic moderated list that receives about five postings per day. It's available as `the python-announce mailing list `_." msgstr "" -#: ../../faq/general.rst:222 -msgid "" -"More info about other mailing lists and newsgroups can be found at https://" -"www.python.org/community/lists/." +msgid "More info about other mailing lists and newsgroups can be found at https://www.python.org/community/lists/." msgstr "" -#: ../../faq/general.rst:227 msgid "How do I get a beta test version of Python?" msgstr "" -#: ../../faq/general.rst:229 -msgid "" -"Alpha and beta releases are available from https://www.python.org/" -"downloads/. All releases are announced on the comp.lang.python and " -"comp.lang.python.announce newsgroups and on the Python home page at https://" -"www.python.org/; an RSS feed of news is available." +msgid "Alpha and beta releases are available from https://www.python.org/downloads/. All releases are announced on the comp.lang.python and comp.lang.python.announce newsgroups and on the Python home page at https://www.python.org/; an RSS feed of news is available." msgstr "" -#: ../../faq/general.rst:234 -msgid "" -"You can also access the development version of Python through Git. See `The " -"Python Developer's Guide `_ for details." +msgid "You can also access the development version of Python through Git. See `The Python Developer's Guide `_ for details." msgstr "" -#: ../../faq/general.rst:239 msgid "How do I submit bug reports and patches for Python?" msgstr "" -#: ../../faq/general.rst:241 -msgid "" -"To report a bug or submit a patch, use the issue tracker at https://" -"github.com/python/cpython/issues." +msgid "To report a bug or submit a patch, use the issue tracker at https://github.com/python/cpython/issues." msgstr "" -#: ../../faq/general.rst:244 -msgid "" -"For more information on how Python is developed, consult `the Python " -"Developer's Guide `_." +msgid "For more information on how Python is developed, consult `the Python Developer's Guide `_." msgstr "" -#: ../../faq/general.rst:249 msgid "Are there any published articles about Python that I can reference?" msgstr "" -#: ../../faq/general.rst:251 msgid "It's probably best to cite your favorite book about Python." msgstr "" -#: ../../faq/general.rst:253 -msgid "" -"The `very first article `_ about Python was " -"written in 1991 and is now quite outdated." +msgid "The `very first article `_ about Python was written in 1991 and is now quite outdated." msgstr "" -#: ../../faq/general.rst:256 -msgid "" -"Guido van Rossum and Jelke de Boer, \"Interactively Testing Remote Servers " -"Using the Python Programming Language\", CWI Quarterly, Volume 4, Issue 4 " -"(December 1991), Amsterdam, pp 283--303." +msgid "Guido van Rossum and Jelke de Boer, \"Interactively Testing Remote Servers Using the Python Programming Language\", CWI Quarterly, Volume 4, Issue 4 (December 1991), Amsterdam, pp 283--303." msgstr "" -#: ../../faq/general.rst:262 msgid "Are there any books on Python?" msgstr "" -#: ../../faq/general.rst:264 -msgid "" -"Yes, there are many, and more are being published. See the python.org wiki " -"at https://wiki.python.org/moin/PythonBooks for a list." +msgid "Yes, there are many, and more are being published. See the python.org wiki at https://wiki.python.org/moin/PythonBooks for a list." msgstr "" -#: ../../faq/general.rst:267 -msgid "" -"You can also search online bookstores for \"Python\" and filter out the " -"Monty Python references; or perhaps search for \"Python\" and \"language\"." +msgid "You can also search online bookstores for \"Python\" and filter out the Monty Python references; or perhaps search for \"Python\" and \"language\"." msgstr "" -#: ../../faq/general.rst:272 msgid "Where in the world is www.python.org located?" msgstr "" -#: ../../faq/general.rst:274 -msgid "" -"The Python project's infrastructure is located all over the world and is " -"managed by the Python Infrastructure Team. Details `here `__." +msgid "The Python project's infrastructure is located all over the world and is managed by the Python Infrastructure Team. Details `here `__." msgstr "" -#: ../../faq/general.rst:279 msgid "Why is it called Python?" msgstr "" -#: ../../faq/general.rst:281 -msgid "" -"When he began implementing Python, Guido van Rossum was also reading the " -"published scripts from `\"Monty Python's Flying Circus\" `__, a BBC comedy series from the 1970s. " -"Van Rossum thought he needed a name that was short, unique, and slightly " -"mysterious, so he decided to call the language Python." +msgid "When he began implementing Python, Guido van Rossum was also reading the published scripts from `\"Monty Python's Flying Circus\" `__, a BBC comedy series from the 1970s. Van Rossum thought he needed a name that was short, unique, and slightly mysterious, so he decided to call the language Python." msgstr "" -#: ../../faq/general.rst:289 msgid "Do I have to like \"Monty Python's Flying Circus\"?" msgstr "" -#: ../../faq/general.rst:291 msgid "No, but it helps. :)" msgstr "" -#: ../../faq/general.rst:295 msgid "Python in the real world" msgstr "" -#: ../../faq/general.rst:298 msgid "How stable is Python?" msgstr "" -#: ../../faq/general.rst:300 -msgid "" -"Very stable. New, stable releases have been coming out roughly every 6 to " -"18 months since 1991, and this seems likely to continue. As of version 3.9, " -"Python will have a new feature release every 12 months (:pep:`602`)." +msgid "Very stable. New, stable releases have been coming out roughly every 6 to 18 months since 1991, and this seems likely to continue. As of version 3.9, Python will have a new feature release every 12 months (:pep:`602`)." msgstr "" -#: ../../faq/general.rst:304 -msgid "" -"The developers issue bugfix releases of older versions, so the stability of " -"existing releases gradually improves. Bugfix releases, indicated by a third " -"component of the version number (e.g. 3.5.3, 3.6.2), are managed for " -"stability; only fixes for known problems are included in a bugfix release, " -"and it's guaranteed that interfaces will remain the same throughout a series " -"of bugfix releases." +msgid "The developers issue bugfix releases of older versions, so the stability of existing releases gradually improves. Bugfix releases, indicated by a third component of the version number (e.g. 3.5.3, 3.6.2), are managed for stability; only fixes for known problems are included in a bugfix release, and it's guaranteed that interfaces will remain the same throughout a series of bugfix releases." msgstr "" -#: ../../faq/general.rst:311 -msgid "" -"The latest stable releases can always be found on the `Python download page " -"`_. Python 3.x is the recommended version " -"and supported by most widely used libraries. Python 2.x :pep:`is not " -"maintained anymore <373>`." +msgid "The latest stable releases can always be found on the `Python download page `_. Python 3.x is the recommended version and supported by most widely used libraries. Python 2.x :pep:`is not maintained anymore <373>`." msgstr "" -#: ../../faq/general.rst:317 msgid "How many people are using Python?" msgstr "" -#: ../../faq/general.rst:319 -msgid "" -"There are probably millions of users, though it's difficult to obtain an " -"exact count." +msgid "There are probably millions of users, though it's difficult to obtain an exact count." msgstr "" -#: ../../faq/general.rst:322 -msgid "" -"Python is available for free download, so there are no sales figures, and " -"it's available from many different sites and packaged with many Linux " -"distributions, so download statistics don't tell the whole story either." +msgid "Python is available for free download, so there are no sales figures, and it's available from many different sites and packaged with many Linux distributions, so download statistics don't tell the whole story either." msgstr "" -#: ../../faq/general.rst:326 -msgid "" -"The comp.lang.python newsgroup is very active, but not all Python users post " -"to the group or even read it." +msgid "The comp.lang.python newsgroup is very active, but not all Python users post to the group or even read it." msgstr "" -#: ../../faq/general.rst:331 msgid "Have any significant projects been done in Python?" msgstr "" -#: ../../faq/general.rst:333 -msgid "" -"See https://www.python.org/about/success for a list of projects that use " -"Python. Consulting the proceedings for `past Python conferences `_ will reveal contributions from many " -"different companies and organizations." +msgid "See https://www.python.org/about/success for a list of projects that use Python. Consulting the proceedings for `past Python conferences `_ will reveal contributions from many different companies and organizations." msgstr "" -#: ../../faq/general.rst:338 -msgid "" -"High-profile Python projects include `the Mailman mailing list manager " -"`_ and `the Zope application server `_. Several Linux distributions, most notably `Red Hat " -"`_, have written part or all of their installer and " -"system administration software in Python. Companies that use Python " -"internally include Google, Yahoo, and Lucasfilm Ltd." +msgid "High-profile Python projects include `the Mailman mailing list manager `_ and `the Zope application server `_. Several Linux distributions, most notably `Red Hat `_, have written part or all of their installer and system administration software in Python. Companies that use Python internally include Google, Yahoo, and Lucasfilm Ltd." msgstr "" -#: ../../faq/general.rst:347 msgid "What new developments are expected for Python in the future?" msgstr "" -#: ../../faq/general.rst:349 -msgid "" -"See https://peps.python.org/ for the Python Enhancement Proposals (PEPs). " -"PEPs are design documents describing a suggested new feature for Python, " -"providing a concise technical specification and a rationale. Look for a PEP " -"titled \"Python X.Y Release Schedule\", where X.Y is a version that hasn't " -"been publicly released yet." +msgid "See https://peps.python.org/ for the Python Enhancement Proposals (PEPs). PEPs are design documents describing a suggested new feature for Python, providing a concise technical specification and a rationale. Look for a PEP titled \"Python X.Y Release Schedule\", where X.Y is a version that hasn't been publicly released yet." msgstr "" -#: ../../faq/general.rst:355 -msgid "" -"New development is discussed on `the python-dev mailing list `_." +msgid "New development is discussed on `the python-dev mailing list `_." msgstr "" -#: ../../faq/general.rst:360 msgid "Is it reasonable to propose incompatible changes to Python?" msgstr "" -#: ../../faq/general.rst:362 -msgid "" -"In general, no. There are already millions of lines of Python code around " -"the world, so any change in the language that invalidates more than a very " -"small fraction of existing programs has to be frowned upon. Even if you can " -"provide a conversion program, there's still the problem of updating all " -"documentation; many books have been written about Python, and we don't want " -"to invalidate them all at a single stroke." +msgid "In general, no. There are already millions of lines of Python code around the world, so any change in the language that invalidates more than a very small fraction of existing programs has to be frowned upon. Even if you can provide a conversion program, there's still the problem of updating all documentation; many books have been written about Python, and we don't want to invalidate them all at a single stroke." msgstr "" -#: ../../faq/general.rst:369 -msgid "" -"Providing a gradual upgrade path is necessary if a feature has to be " -"changed. :pep:`5` describes the procedure followed for introducing backward-" -"incompatible changes while minimizing disruption for users." +msgid "Providing a gradual upgrade path is necessary if a feature has to be changed. :pep:`5` describes the procedure followed for introducing backward-incompatible changes while minimizing disruption for users." msgstr "" -#: ../../faq/general.rst:375 msgid "Is Python a good language for beginning programmers?" msgstr "" -#: ../../faq/general.rst:377 msgid "Yes." msgstr "" -#: ../../faq/general.rst:379 -msgid "" -"It is still common to start students with a procedural and statically typed " -"language such as Pascal, C, or a subset of C++ or Java. Students may be " -"better served by learning Python as their first language. Python has a very " -"simple and consistent syntax and a large standard library and, most " -"importantly, using Python in a beginning programming course lets students " -"concentrate on important programming skills such as problem decomposition " -"and data type design. With Python, students can be quickly introduced to " -"basic concepts such as loops and procedures. They can probably even work " -"with user-defined objects in their very first course." -msgstr "" - -#: ../../faq/general.rst:389 -msgid "" -"For a student who has never programmed before, using a statically typed " -"language seems unnatural. It presents additional complexity that the " -"student must master and slows the pace of the course. The students are " -"trying to learn to think like a computer, decompose problems, design " -"consistent interfaces, and encapsulate data. While learning to use a " -"statically typed language is important in the long term, it is not " -"necessarily the best topic to address in the students' first programming " -"course." +msgid "It is still common to start students with a procedural and statically typed language such as Pascal, C, or a subset of C++ or Java. Students may be better served by learning Python as their first language. Python has a very simple and consistent syntax and a large standard library and, most importantly, using Python in a beginning programming course lets students concentrate on important programming skills such as problem decomposition and data type design. With Python, students can be quickly introduced to basic concepts such as loops and procedures. They can probably even work with user-defined objects in their very first course." msgstr "" -#: ../../faq/general.rst:397 -msgid "" -"Many other aspects of Python make it a good first language. Like Java, " -"Python has a large standard library so that students can be assigned " -"programming projects very early in the course that *do* something. " -"Assignments aren't restricted to the standard four-function calculator and " -"check balancing programs. By using the standard library, students can gain " -"the satisfaction of working on realistic applications as they learn the " -"fundamentals of programming. Using the standard library also teaches " -"students about code reuse. Third-party modules such as PyGame are also " -"helpful in extending the students' reach." -msgstr "" - -#: ../../faq/general.rst:406 -msgid "" -"Python's interactive interpreter enables students to test language features " -"while they're programming. They can keep a window with the interpreter " -"running while they enter their program's source in another window. If they " -"can't remember the methods for a list, they can do something like this::" +msgid "For a student who has never programmed before, using a statically typed language seems unnatural. It presents additional complexity that the student must master and slows the pace of the course. The students are trying to learn to think like a computer, decompose problems, design consistent interfaces, and encapsulate data. While learning to use a statically typed language is important in the long term, it is not necessarily the best topic to address in the students' first programming course." +msgstr "" + +msgid "Many other aspects of Python make it a good first language. Like Java, Python has a large standard library so that students can be assigned programming projects very early in the course that *do* something. Assignments aren't restricted to the standard four-function calculator and check balancing programs. By using the standard library, students can gain the satisfaction of working on realistic applications as they learn the fundamentals of programming. Using the standard library also teaches students about code reuse. Third-party modules such as PyGame are also helpful in extending the students' reach." +msgstr "" + +msgid "Python's interactive interpreter enables students to test language features while they're programming. They can keep a window with the interpreter running while they enter their program's source in another window. If they can't remember the methods for a list, they can do something like this::" msgstr "" -#: ../../faq/general.rst:411 msgid "" ">>> L = []\n" ">>> dir(L)\n" @@ -653,8 +319,7 @@ msgid "" "'copy', 'count', 'extend', 'index', 'insert', 'pop', 'remove',\n" "'reverse', 'sort']\n" ">>> [d for d in dir(L) if '__' not in d]\n" -"['append', 'clear', 'copy', 'count', 'extend', 'index', 'insert', 'pop', " -"'remove', 'reverse', 'sort']\n" +"['append', 'clear', 'copy', 'count', 'extend', 'index', 'insert', 'pop', 'remove', 'reverse', 'sort']\n" "\n" ">>> help(L.append)\n" "Help on built-in function append:\n" @@ -667,26 +332,11 @@ msgid "" "[1]" msgstr "" -#: ../../faq/general.rst:435 -msgid "" -"With the interpreter, documentation is never far from the student as they " -"are programming." +msgid "With the interpreter, documentation is never far from the student as they are programming." msgstr "" -#: ../../faq/general.rst:438 -msgid "" -"There are also good IDEs for Python. IDLE is a cross-platform IDE for " -"Python that is written in Python using Tkinter. Emacs users will be happy to " -"know that there is a very good Python mode for Emacs. All of these " -"programming environments provide syntax highlighting, auto-indenting, and " -"access to the interactive interpreter while coding. Consult `the Python " -"wiki `_ for a full list of " -"Python editing environments." +msgid "There are also good IDEs for Python. IDLE is a cross-platform IDE for Python that is written in Python using Tkinter. Emacs users will be happy to know that there is a very good Python mode for Emacs. All of these programming environments provide syntax highlighting, auto-indenting, and access to the interactive interpreter while coding. Consult `the Python wiki `_ for a full list of Python editing environments." msgstr "" -#: ../../faq/general.rst:446 -msgid "" -"If you want to discuss Python's use in education, you may be interested in " -"joining `the edu-sig mailing list `_." +msgid "If you want to discuss Python's use in education, you may be interested in joining `the edu-sig mailing list `_." msgstr "" diff --git a/faq/gui.po b/faq/gui.po index 4c3b2a7f..28dfccd9 100644 --- a/faq/gui.po +++ b/faq/gui.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:52+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,98 +24,50 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../faq/gui.rst:5 msgid "Graphic User Interface FAQ" msgstr "" -#: ../../faq/gui.rst:8 msgid "Contents" msgstr "" -#: ../../faq/gui.rst:15 msgid "General GUI Questions" msgstr "" -#: ../../faq/gui.rst:18 msgid "What GUI toolkits exist for Python?" msgstr "" -#: ../../faq/gui.rst:20 -msgid "" -"Standard builds of Python include an object-oriented interface to the Tcl/Tk " -"widget set, called :ref:`tkinter `. This is probably the easiest " -"to install (since it comes included with most `binary distributions `_ of Python) and use. For more info about Tk, " -"including pointers to the source, see the `Tcl/Tk home page `_. Tcl/Tk is fully portable to the macOS, Windows, and Unix " -"platforms." +msgid "Standard builds of Python include an object-oriented interface to the Tcl/Tk widget set, called :ref:`tkinter `. This is probably the easiest to install (since it comes included with most `binary distributions `_ of Python) and use. For more info about Tk, including pointers to the source, see the `Tcl/Tk home page `_. Tcl/Tk is fully portable to the macOS, Windows, and Unix platforms." msgstr "" -#: ../../faq/gui.rst:28 -msgid "" -"Depending on what platform(s) you are aiming at, there are also several " -"alternatives. A `list of cross-platform `_ and `platform-specific `_ GUI " -"frameworks can be found on the python wiki." +msgid "Depending on what platform(s) you are aiming at, there are also several alternatives. A `list of cross-platform `_ and `platform-specific `_ GUI frameworks can be found on the python wiki." msgstr "" -#: ../../faq/gui.rst:36 msgid "Tkinter questions" msgstr "" -#: ../../faq/gui.rst:39 msgid "How do I freeze Tkinter applications?" msgstr "" -#: ../../faq/gui.rst:41 -msgid "" -"Freeze is a tool to create stand-alone applications. When freezing Tkinter " -"applications, the applications will not be truly stand-alone, as the " -"application will still need the Tcl and Tk libraries." +msgid "Freeze is a tool to create stand-alone applications. When freezing Tkinter applications, the applications will not be truly stand-alone, as the application will still need the Tcl and Tk libraries." msgstr "" -#: ../../faq/gui.rst:45 -msgid "" -"One solution is to ship the application with the Tcl and Tk libraries, and " -"point to them at run-time using the :envvar:`!TCL_LIBRARY` and :envvar:`!" -"TK_LIBRARY` environment variables." +msgid "One solution is to ship the application with the Tcl and Tk libraries, and point to them at run-time using the :envvar:`!TCL_LIBRARY` and :envvar:`!TK_LIBRARY` environment variables." msgstr "" -#: ../../faq/gui.rst:49 -msgid "" -"Various third-party freeze libraries such as py2exe and cx_Freeze have " -"handling for Tkinter applications built-in." +msgid "Various third-party freeze libraries such as py2exe and cx_Freeze have handling for Tkinter applications built-in." msgstr "" -#: ../../faq/gui.rst:54 msgid "Can I have Tk events handled while waiting for I/O?" msgstr "" -#: ../../faq/gui.rst:56 -msgid "" -"On platforms other than Windows, yes, and you don't even need threads! But " -"you'll have to restructure your I/O code a bit. Tk has the equivalent of " -"Xt's :c:func:`!XtAddInput` call, which allows you to register a callback " -"function which will be called from the Tk mainloop when I/O is possible on a " -"file descriptor. See :ref:`tkinter-file-handlers`." +msgid "On platforms other than Windows, yes, and you don't even need threads! But you'll have to restructure your I/O code a bit. Tk has the equivalent of Xt's :c:func:`!XtAddInput` call, which allows you to register a callback function which will be called from the Tk mainloop when I/O is possible on a file descriptor. See :ref:`tkinter-file-handlers`." msgstr "" -#: ../../faq/gui.rst:64 msgid "I can't get key bindings to work in Tkinter: why?" msgstr "" -#: ../../faq/gui.rst:66 -msgid "" -"An often-heard complaint is that event handlers :ref:`bound ` to events with the :meth:`!bind` method don't get handled even when " -"the appropriate key is pressed." +msgid "An often-heard complaint is that event handlers :ref:`bound ` to events with the :meth:`!bind` method don't get handled even when the appropriate key is pressed." msgstr "" -#: ../../faq/gui.rst:70 -msgid "" -"The most common cause is that the widget to which the binding applies " -"doesn't have \"keyboard focus\". Check out the Tk documentation for the " -"focus command. Usually a widget is given the keyboard focus by clicking in " -"it (but not for labels; see the takefocus option)." +msgid "The most common cause is that the widget to which the binding applies doesn't have \"keyboard focus\". Check out the Tk documentation for the focus command. Usually a widget is given the keyboard focus by clicking in it (but not for labels; see the takefocus option)." msgstr "" diff --git a/faq/index.po b/faq/index.po index 0efda4a7..42f13aab 100644 --- a/faq/index.po +++ b/faq/index.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:52+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,6 +21,5 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../faq/index.rst:5 msgid "Python Frequently Asked Questions" msgstr "" diff --git a/faq/installed.po b/faq/installed.po index 2b7801fe..66060f89 100644 --- a/faq/installed.po +++ b/faq/installed.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:52+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,93 +23,47 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../faq/installed.rst:3 msgid "\"Why is Python Installed on my Computer?\" FAQ" msgstr "" -#: ../../faq/installed.rst:6 msgid "What is Python?" msgstr "" -#: ../../faq/installed.rst:8 -msgid "" -"Python is a programming language. It's used for many different " -"applications. It's used in some high schools and colleges as an introductory " -"programming language because Python is easy to learn, but it's also used by " -"professional software developers at places such as Google, NASA, and " -"Lucasfilm Ltd." +msgid "Python is a programming language. It's used for many different applications. It's used in some high schools and colleges as an introductory programming language because Python is easy to learn, but it's also used by professional software developers at places such as Google, NASA, and Lucasfilm Ltd." msgstr "" -#: ../../faq/installed.rst:13 -msgid "" -"If you wish to learn more about Python, start with the `Beginner's Guide to " -"Python `_." +msgid "If you wish to learn more about Python, start with the `Beginner's Guide to Python `_." msgstr "" -#: ../../faq/installed.rst:18 msgid "Why is Python installed on my machine?" msgstr "" -#: ../../faq/installed.rst:20 -msgid "" -"If you find Python installed on your system but don't remember installing " -"it, there are several possible ways it could have gotten there." +msgid "If you find Python installed on your system but don't remember installing it, there are several possible ways it could have gotten there." msgstr "" -#: ../../faq/installed.rst:23 -msgid "" -"Perhaps another user on the computer wanted to learn programming and " -"installed it; you'll have to figure out who's been using the machine and " -"might have installed it." +msgid "Perhaps another user on the computer wanted to learn programming and installed it; you'll have to figure out who's been using the machine and might have installed it." msgstr "" -#: ../../faq/installed.rst:26 -msgid "" -"A third-party application installed on the machine might have been written " -"in Python and included a Python installation. There are many such " -"applications, from GUI programs to network servers and administrative " -"scripts." +msgid "A third-party application installed on the machine might have been written in Python and included a Python installation. There are many such applications, from GUI programs to network servers and administrative scripts." msgstr "" -#: ../../faq/installed.rst:29 -msgid "" -"Some Windows machines also have Python installed. At this writing we're " -"aware of computers from Hewlett-Packard and Compaq that include Python. " -"Apparently some of HP/Compaq's administrative tools are written in Python." +msgid "Some Windows machines also have Python installed. At this writing we're aware of computers from Hewlett-Packard and Compaq that include Python. Apparently some of HP/Compaq's administrative tools are written in Python." msgstr "" -#: ../../faq/installed.rst:32 -msgid "" -"Many Unix-compatible operating systems, such as macOS and some Linux " -"distributions, have Python installed by default; it's included in the base " -"installation." +msgid "Many Unix-compatible operating systems, such as macOS and some Linux distributions, have Python installed by default; it's included in the base installation." msgstr "" -#: ../../faq/installed.rst:38 msgid "Can I delete Python?" msgstr "" -#: ../../faq/installed.rst:40 msgid "That depends on where Python came from." msgstr "" -#: ../../faq/installed.rst:42 -msgid "" -"If someone installed it deliberately, you can remove it without hurting " -"anything. On Windows, use the Add/Remove Programs icon in the Control Panel." +msgid "If someone installed it deliberately, you can remove it without hurting anything. On Windows, use the Add/Remove Programs icon in the Control Panel." msgstr "" -#: ../../faq/installed.rst:45 -msgid "" -"If Python was installed by a third-party application, you can also remove " -"it, but that application will no longer work. You should use that " -"application's uninstaller rather than removing Python directly." +msgid "If Python was installed by a third-party application, you can also remove it, but that application will no longer work. You should use that application's uninstaller rather than removing Python directly." msgstr "" -#: ../../faq/installed.rst:49 -msgid "" -"If Python came with your operating system, removing it is not recommended. " -"If you remove it, whatever tools were written in Python will no longer run, " -"and some of them might be important to you. Reinstalling the whole system " -"would then be required to fix things again." +msgid "If Python came with your operating system, removing it is not recommended. If you remove it, whatever tools were written in Python will no longer run, and some of them might be important to you. Reinstalling the whole system would then be required to fix things again." msgstr "" diff --git a/faq/library.po b/faq/library.po index ef25436d..276d5c65 100644 --- a/faq/library.po +++ b/faq/library.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:52+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,135 +24,77 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../faq/library.rst:5 msgid "Library and Extension FAQ" msgstr "" -#: ../../faq/library.rst:8 msgid "Contents" msgstr "" -#: ../../faq/library.rst:12 msgid "General Library Questions" msgstr "" -#: ../../faq/library.rst:15 msgid "How do I find a module or application to perform task X?" msgstr "" -#: ../../faq/library.rst:17 -msgid "" -"Check :ref:`the Library Reference ` to see if there's a " -"relevant standard library module. (Eventually you'll learn what's in the " -"standard library and will be able to skip this step.)" +msgid "Check :ref:`the Library Reference ` to see if there's a relevant standard library module. (Eventually you'll learn what's in the standard library and will be able to skip this step.)" msgstr "" -#: ../../faq/library.rst:21 -msgid "" -"For third-party packages, search the `Python Package Index `_ or try `Google `_ or another web search " -"engine. Searching for \"Python\" plus a keyword or two for your topic of " -"interest will usually find something helpful." +msgid "For third-party packages, search the `Python Package Index `_ or try `Google `_ or another web search engine. Searching for \"Python\" plus a keyword or two for your topic of interest will usually find something helpful." msgstr "" -#: ../../faq/library.rst:28 msgid "Where is the math.py (socket.py, regex.py, etc.) source file?" msgstr "" -#: ../../faq/library.rst:30 -msgid "" -"If you can't find a source file for a module it may be a built-in or " -"dynamically loaded module implemented in C, C++ or other compiled language. " -"In this case you may not have the source file or it may be something " -"like :file:`mathmodule.c`, somewhere in a C source directory (not on the " -"Python Path)." +msgid "If you can't find a source file for a module it may be a built-in or dynamically loaded module implemented in C, C++ or other compiled language. In this case you may not have the source file or it may be something like :file:`mathmodule.c`, somewhere in a C source directory (not on the Python Path)." msgstr "" -#: ../../faq/library.rst:35 msgid "There are (at least) three kinds of modules in Python:" msgstr "" -#: ../../faq/library.rst:37 msgid "modules written in Python (.py);" msgstr "" -#: ../../faq/library.rst:38 -msgid "" -"modules written in C and dynamically loaded (.dll, .pyd, .so, .sl, etc);" +msgid "modules written in C and dynamically loaded (.dll, .pyd, .so, .sl, etc);" msgstr "" -#: ../../faq/library.rst:39 -msgid "" -"modules written in C and linked with the interpreter; to get a list of " -"these, type::" +msgid "modules written in C and linked with the interpreter; to get a list of these, type::" msgstr "" -#: ../../faq/library.rst:42 msgid "" "import sys\n" "print(sys.builtin_module_names)" msgstr "" -#: ../../faq/library.rst:47 msgid "How do I make a Python script executable on Unix?" msgstr "" -#: ../../faq/library.rst:49 -msgid "" -"You need to do two things: the script file's mode must be executable and the " -"first line must begin with ``#!`` followed by the path of the Python " -"interpreter." +msgid "You need to do two things: the script file's mode must be executable and the first line must begin with ``#!`` followed by the path of the Python interpreter." msgstr "" -#: ../../faq/library.rst:53 -msgid "" -"The first is done by executing ``chmod +x scriptfile`` or perhaps ``chmod " -"755 scriptfile``." +msgid "The first is done by executing ``chmod +x scriptfile`` or perhaps ``chmod 755 scriptfile``." msgstr "" -#: ../../faq/library.rst:56 -msgid "" -"The second can be done in a number of ways. The most straightforward way is " -"to write ::" +msgid "The second can be done in a number of ways. The most straightforward way is to write ::" msgstr "" -#: ../../faq/library.rst:59 msgid "#!/usr/local/bin/python" msgstr "" -#: ../../faq/library.rst:61 -msgid "" -"as the very first line of your file, using the pathname for where the Python " -"interpreter is installed on your platform." +msgid "as the very first line of your file, using the pathname for where the Python interpreter is installed on your platform." msgstr "" -#: ../../faq/library.rst:64 -msgid "" -"If you would like the script to be independent of where the Python " -"interpreter lives, you can use the :program:`env` program. Almost all Unix " -"variants support the following, assuming the Python interpreter is in a " -"directory on the user's :envvar:`PATH`::" +msgid "If you would like the script to be independent of where the Python interpreter lives, you can use the :program:`env` program. Almost all Unix variants support the following, assuming the Python interpreter is in a directory on the user's :envvar:`PATH`::" msgstr "" -#: ../../faq/library.rst:69 msgid "#!/usr/bin/env python" msgstr "" -#: ../../faq/library.rst:71 -msgid "" -"*Don't* do this for CGI scripts. The :envvar:`PATH` variable for CGI " -"scripts is often very minimal, so you need to use the actual absolute " -"pathname of the interpreter." +msgid "*Don't* do this for CGI scripts. The :envvar:`PATH` variable for CGI scripts is often very minimal, so you need to use the actual absolute pathname of the interpreter." msgstr "" -#: ../../faq/library.rst:75 -msgid "" -"Occasionally, a user's environment is so full that the :program:`/usr/bin/" -"env` program fails; or there's no env program at all. In that case, you can " -"try the following hack (due to Alex Rezinsky):" +msgid "Occasionally, a user's environment is so full that the :program:`/usr/bin/env` program fails; or there's no env program at all. In that case, you can try the following hack (due to Alex Rezinsky):" msgstr "" -#: ../../faq/library.rst:79 msgid "" "#! /bin/sh\n" "\"\"\":\"\n" @@ -160,203 +102,114 @@ msgid "" "\"\"\"" msgstr "" -#: ../../faq/library.rst:86 -msgid "" -"The minor disadvantage is that this defines the script's __doc__ string. " -"However, you can fix that by adding ::" +msgid "The minor disadvantage is that this defines the script's __doc__ string. However, you can fix that by adding ::" msgstr "" -#: ../../faq/library.rst:89 msgid "__doc__ = \"\"\"...Whatever...\"\"\"" msgstr "" -#: ../../faq/library.rst:94 msgid "Is there a curses/termcap package for Python?" msgstr "" -#: ../../faq/library.rst:98 -msgid "" -"For Unix variants: The standard Python source distribution comes with a " -"curses module in the :source:`Modules` subdirectory, though it's not " -"compiled by default. (Note that this is not available in the Windows " -"distribution -- there is no curses module for Windows.)" +msgid "For Unix variants: The standard Python source distribution comes with a curses module in the :source:`Modules` subdirectory, though it's not compiled by default. (Note that this is not available in the Windows distribution -- there is no curses module for Windows.)" msgstr "" -#: ../../faq/library.rst:103 -msgid "" -"The :mod:`curses` module supports basic curses features as well as many " -"additional functions from ncurses and SYSV curses such as colour, " -"alternative character set support, pads, and mouse support. This means the " -"module isn't compatible with operating systems that only have BSD curses, " -"but there don't seem to be any currently maintained OSes that fall into this " -"category." +msgid "The :mod:`curses` module supports basic curses features as well as many additional functions from ncurses and SYSV curses such as colour, alternative character set support, pads, and mouse support. This means the module isn't compatible with operating systems that only have BSD curses, but there don't seem to be any currently maintained OSes that fall into this category." msgstr "" -#: ../../faq/library.rst:111 msgid "Is there an equivalent to C's onexit() in Python?" msgstr "" -#: ../../faq/library.rst:113 -msgid "" -"The :mod:`atexit` module provides a register function that is similar to " -"C's :c:func:`!onexit`." +msgid "The :mod:`atexit` module provides a register function that is similar to C's :c:func:`!onexit`." msgstr "" -#: ../../faq/library.rst:118 msgid "Why don't my signal handlers work?" msgstr "" -#: ../../faq/library.rst:120 -msgid "" -"The most common problem is that the signal handler is declared with the " -"wrong argument list. It is called as ::" +msgid "The most common problem is that the signal handler is declared with the wrong argument list. It is called as ::" msgstr "" -#: ../../faq/library.rst:123 msgid "handler(signum, frame)" msgstr "" -#: ../../faq/library.rst:125 msgid "so it should be declared with two parameters::" msgstr "" -#: ../../faq/library.rst:127 msgid "" "def handler(signum, frame):\n" " ..." msgstr "" -#: ../../faq/library.rst:132 msgid "Common tasks" msgstr "" -#: ../../faq/library.rst:135 msgid "How do I test a Python program or component?" msgstr "" -#: ../../faq/library.rst:137 -msgid "" -"Python comes with two testing frameworks. The :mod:`doctest` module finds " -"examples in the docstrings for a module and runs them, comparing the output " -"with the expected output given in the docstring." +msgid "Python comes with two testing frameworks. The :mod:`doctest` module finds examples in the docstrings for a module and runs them, comparing the output with the expected output given in the docstring." msgstr "" -#: ../../faq/library.rst:141 -msgid "" -"The :mod:`unittest` module is a fancier testing framework modelled on Java " -"and Smalltalk testing frameworks." +msgid "The :mod:`unittest` module is a fancier testing framework modelled on Java and Smalltalk testing frameworks." msgstr "" -#: ../../faq/library.rst:144 -msgid "" -"To make testing easier, you should use good modular design in your program. " -"Your program should have almost all functionality encapsulated in either " -"functions or class methods -- and this sometimes has the surprising and " -"delightful effect of making the program run faster (because local variable " -"accesses are faster than global accesses). Furthermore the program should " -"avoid depending on mutating global variables, since this makes testing much " -"more difficult to do." +msgid "To make testing easier, you should use good modular design in your program. Your program should have almost all functionality encapsulated in either functions or class methods -- and this sometimes has the surprising and delightful effect of making the program run faster (because local variable accesses are faster than global accesses). Furthermore the program should avoid depending on mutating global variables, since this makes testing much more difficult to do." msgstr "" -#: ../../faq/library.rst:152 msgid "The \"global main logic\" of your program may be as simple as ::" msgstr "" -#: ../../faq/library.rst:154 msgid "" "if __name__ == \"__main__\":\n" " main_logic()" msgstr "" -#: ../../faq/library.rst:157 msgid "at the bottom of the main module of your program." msgstr "" -#: ../../faq/library.rst:159 -msgid "" -"Once your program is organized as a tractable collection of function and " -"class behaviours, you should write test functions that exercise the " -"behaviours. A test suite that automates a sequence of tests can be " -"associated with each module. This sounds like a lot of work, but since " -"Python is so terse and flexible it's surprisingly easy. You can make coding " -"much more pleasant and fun by writing your test functions in parallel with " -"the \"production code\", since this makes it easy to find bugs and even " -"design flaws earlier." +msgid "Once your program is organized as a tractable collection of function and class behaviours, you should write test functions that exercise the behaviours. A test suite that automates a sequence of tests can be associated with each module. This sounds like a lot of work, but since Python is so terse and flexible it's surprisingly easy. You can make coding much more pleasant and fun by writing your test functions in parallel with the \"production code\", since this makes it easy to find bugs and even design flaws earlier." msgstr "" -#: ../../faq/library.rst:167 -msgid "" -"\"Support modules\" that are not intended to be the main module of a program " -"may include a self-test of the module. ::" +msgid "\"Support modules\" that are not intended to be the main module of a program may include a self-test of the module. ::" msgstr "" -#: ../../faq/library.rst:170 msgid "" "if __name__ == \"__main__\":\n" " self_test()" msgstr "" -#: ../../faq/library.rst:173 -msgid "" -"Even programs that interact with complex external interfaces may be tested " -"when the external interfaces are unavailable by using \"fake\" interfaces " -"implemented in Python." +msgid "Even programs that interact with complex external interfaces may be tested when the external interfaces are unavailable by using \"fake\" interfaces implemented in Python." msgstr "" -#: ../../faq/library.rst:179 msgid "How do I create documentation from doc strings?" msgstr "" -#: ../../faq/library.rst:181 -msgid "" -"The :mod:`pydoc` module can create HTML from the doc strings in your Python " -"source code. An alternative for creating API documentation purely from " -"docstrings is `epydoc `_. `Sphinx `_ can also include docstring content." +msgid "The :mod:`pydoc` module can create HTML from the doc strings in your Python source code. An alternative for creating API documentation purely from docstrings is `epydoc `_. `Sphinx `_ can also include docstring content." msgstr "" -#: ../../faq/library.rst:188 msgid "How do I get a single keypress at a time?" msgstr "" -#: ../../faq/library.rst:190 -msgid "" -"For Unix variants there are several solutions. It's straightforward to do " -"this using curses, but curses is a fairly large module to learn." +msgid "For Unix variants there are several solutions. It's straightforward to do this using curses, but curses is a fairly large module to learn." msgstr "" -#: ../../faq/library.rst:234 msgid "Threads" msgstr "" -#: ../../faq/library.rst:237 msgid "How do I program using threads?" msgstr "" -#: ../../faq/library.rst:239 -msgid "" -"Be sure to use the :mod:`threading` module and not the :mod:`_thread` " -"module. The :mod:`threading` module builds convenient abstractions on top of " -"the low-level primitives provided by the :mod:`_thread` module." +msgid "Be sure to use the :mod:`threading` module and not the :mod:`_thread` module. The :mod:`threading` module builds convenient abstractions on top of the low-level primitives provided by the :mod:`_thread` module." msgstr "" -#: ../../faq/library.rst:245 msgid "None of my threads seem to run: why?" msgstr "" -#: ../../faq/library.rst:247 -msgid "" -"As soon as the main thread exits, all threads are killed. Your main thread " -"is running too quickly, giving the threads no time to do any work." +msgid "As soon as the main thread exits, all threads are killed. Your main thread is running too quickly, giving the threads no time to do any work." msgstr "" -#: ../../faq/library.rst:250 -msgid "" -"A simple fix is to add a sleep to the end of the program that's long enough " -"for all the threads to finish::" +msgid "A simple fix is to add a sleep to the end of the program that's long enough for all the threads to finish::" msgstr "" -#: ../../faq/library.rst:253 msgid "" "import threading, time\n" "\n" @@ -371,18 +224,12 @@ msgid "" "time.sleep(10) # <---------------------------!" msgstr "" -#: ../../faq/library.rst:265 -msgid "" -"But now (on many platforms) the threads don't run in parallel, but appear to " -"run sequentially, one at a time! The reason is that the OS thread scheduler " -"doesn't start a new thread until the previous thread is blocked." +msgid "But now (on many platforms) the threads don't run in parallel, but appear to run sequentially, one at a time! The reason is that the OS thread scheduler doesn't start a new thread until the previous thread is blocked." msgstr "" -#: ../../faq/library.rst:269 msgid "A simple fix is to add a tiny sleep to the start of the run function::" msgstr "" -#: ../../faq/library.rst:271 msgid "" "def thread_task(name, n):\n" " time.sleep(0.001) # <--------------------!\n" @@ -396,40 +243,21 @@ msgid "" "time.sleep(10)" msgstr "" -#: ../../faq/library.rst:282 -msgid "" -"Instead of trying to guess a good delay value for :func:`time.sleep`, it's " -"better to use some kind of semaphore mechanism. One idea is to use " -"the :mod:`queue` module to create a queue object, let each thread append a " -"token to the queue when it finishes, and let the main thread read as many " -"tokens from the queue as there are threads." +msgid "Instead of trying to guess a good delay value for :func:`time.sleep`, it's better to use some kind of semaphore mechanism. One idea is to use the :mod:`queue` module to create a queue object, let each thread append a token to the queue when it finishes, and let the main thread read as many tokens from the queue as there are threads." msgstr "" -#: ../../faq/library.rst:290 msgid "How do I parcel out work among a bunch of worker threads?" msgstr "" -#: ../../faq/library.rst:292 -msgid "" -"The easiest way is to use the :mod:`concurrent.futures` module, especially " -"the :mod:`~concurrent.futures.ThreadPoolExecutor` class." +msgid "The easiest way is to use the :mod:`concurrent.futures` module, especially the :mod:`~concurrent.futures.ThreadPoolExecutor` class." msgstr "" -#: ../../faq/library.rst:295 -msgid "" -"Or, if you want fine control over the dispatching algorithm, you can write " -"your own logic manually. Use the :mod:`queue` module to create a queue " -"containing a list of jobs. The :class:`~queue.Queue` class maintains a list " -"of objects and has a ``.put(obj)`` method that adds items to the queue and a " -"``.get()`` method to return them. The class will take care of the locking " -"necessary to ensure that each job is handed out exactly once." +msgid "Or, if you want fine control over the dispatching algorithm, you can write your own logic manually. Use the :mod:`queue` module to create a queue containing a list of jobs. The :class:`~queue.Queue` class maintains a list of objects and has a ``.put(obj)`` method that adds items to the queue and a ``.get()`` method to return them. The class will take care of the locking necessary to ensure that each job is handed out exactly once." msgstr "" -#: ../../faq/library.rst:302 msgid "Here's a trivial example::" msgstr "" -#: ../../faq/library.rst:304 msgid "" "import threading, queue, time\n" "\n" @@ -468,11 +296,9 @@ msgid "" "time.sleep(5)" msgstr "" -#: ../../faq/library.rst:340 msgid "When run, this will produce the following output:" msgstr "" -#: ../../faq/library.rst:342 msgid "" "Running worker\n" "Running worker\n" @@ -489,41 +315,21 @@ msgid "" "..." msgstr "" -#: ../../faq/library.rst:358 -msgid "" -"Consult the module's documentation for more details; " -"the :class:`~queue.Queue` class provides a featureful interface." +msgid "Consult the module's documentation for more details; the :class:`~queue.Queue` class provides a featureful interface." msgstr "" -#: ../../faq/library.rst:363 msgid "What kinds of global value mutation are thread-safe?" msgstr "" -#: ../../faq/library.rst:365 -msgid "" -"A :term:`global interpreter lock` (GIL) is used internally to ensure that " -"only one thread runs in the Python VM at a time. In general, Python offers " -"to switch among threads only between bytecode instructions; how frequently " -"it switches can be set via :func:`sys.setswitchinterval`. Each bytecode " -"instruction and therefore all the C implementation code reached from each " -"instruction is therefore atomic from the point of view of a Python program." +msgid "A :term:`global interpreter lock` (GIL) is used internally to ensure that only one thread runs in the Python VM at a time. In general, Python offers to switch among threads only between bytecode instructions; how frequently it switches can be set via :func:`sys.setswitchinterval`. Each bytecode instruction and therefore all the C implementation code reached from each instruction is therefore atomic from the point of view of a Python program." msgstr "" -#: ../../faq/library.rst:372 -msgid "" -"In theory, this means an exact accounting requires an exact understanding of " -"the PVM bytecode implementation. In practice, it means that operations on " -"shared variables of built-in data types (ints, lists, dicts, etc) that " -"\"look atomic\" really are." +msgid "In theory, this means an exact accounting requires an exact understanding of the PVM bytecode implementation. In practice, it means that operations on shared variables of built-in data types (ints, lists, dicts, etc) that \"look atomic\" really are." msgstr "" -#: ../../faq/library.rst:377 -msgid "" -"For example, the following operations are all atomic (L, L1, L2 are lists, " -"D, D1, D2 are dicts, x, y are objects, i, j are ints)::" +msgid "For example, the following operations are all atomic (L, L1, L2 are lists, D, D1, D2 are dicts, x, y are objects, i, j are ints)::" msgstr "" -#: ../../faq/library.rst:380 msgid "" "L.append(x)\n" "L1.extend(L2)\n" @@ -538,11 +344,9 @@ msgid "" "D.keys()" msgstr "" -#: ../../faq/library.rst:392 msgid "These aren't::" msgstr "" -#: ../../faq/library.rst:394 msgid "" "i = i+1\n" "L.append(L[-1])\n" @@ -550,161 +354,66 @@ msgid "" "D[x] = D[x] + 1" msgstr "" -#: ../../faq/library.rst:399 -msgid "" -"Operations that replace other objects may invoke those other " -"objects' :meth:`~object.__del__` method when their reference count reaches " -"zero, and that can affect things. This is especially true for the mass " -"updates to dictionaries and lists. When in doubt, use a mutex!" +msgid "Operations that replace other objects may invoke those other objects' :meth:`~object.__del__` method when their reference count reaches zero, and that can affect things. This is especially true for the mass updates to dictionaries and lists. When in doubt, use a mutex!" msgstr "" -#: ../../faq/library.rst:406 msgid "Can't we get rid of the Global Interpreter Lock?" msgstr "" -#: ../../faq/library.rst:408 -msgid "" -"The :term:`global interpreter lock` (GIL) is often seen as a hindrance to " -"Python's deployment on high-end multiprocessor server machines, because a " -"multi-threaded Python program effectively only uses one CPU, due to the " -"insistence that (almost) all Python code can only run while the GIL is held." +msgid "The :term:`global interpreter lock` (GIL) is often seen as a hindrance to Python's deployment on high-end multiprocessor server machines, because a multi-threaded Python program effectively only uses one CPU, due to the insistence that (almost) all Python code can only run while the GIL is held." msgstr "" -#: ../../faq/library.rst:413 -msgid "" -"With the approval of :pep:`703` work is now underway to remove the GIL from " -"the CPython implementation of Python. Initially it will be implemented as " -"an optional compiler flag when building the interpreter, and so separate " -"builds will be available with and without the GIL. Long-term, the hope is " -"to settle on a single build, once the performance implications of removing " -"the GIL are fully understood. Python 3.13 is likely to be the first release " -"containing this work, although it may not be completely functional in this " -"release." +msgid "With the approval of :pep:`703` work is now underway to remove the GIL from the CPython implementation of Python. Initially it will be implemented as an optional compiler flag when building the interpreter, and so separate builds will be available with and without the GIL. Long-term, the hope is to settle on a single build, once the performance implications of removing the GIL are fully understood. Python 3.13 is likely to be the first release containing this work, although it may not be completely functional in this release." msgstr "" -#: ../../faq/library.rst:422 -msgid "" -"The current work to remove the GIL is based on a `fork of Python 3.9 with " -"the GIL removed `_ by Sam Gross. Prior " -"to that, in the days of Python 1.5, Greg Stein actually implemented a " -"comprehensive patch set (the \"free threading\" patches) that removed the " -"GIL and replaced it with fine-grained locking. Adam Olsen did a similar " -"experiment in his `python-safethread `_ project. Unfortunately, both of these earlier " -"experiments exhibited a sharp drop in single-thread performance (at least " -"30% slower), due to the amount of fine-grained locking necessary to " -"compensate for the removal of the GIL. The Python 3.9 fork is the first " -"attempt at removing the GIL with an acceptable performance impact." -msgstr "" - -#: ../../faq/library.rst:437 -msgid "" -"The presence of the GIL in current Python releases doesn't mean that you " -"can't make good use of Python on multi-CPU machines! You just have to be " -"creative with dividing the work up between multiple *processes* rather than " -"multiple *threads*. The :class:`~concurrent.futures.ProcessPoolExecutor` " -"class in the new :mod:`concurrent.futures` module provides an easy way of " -"doing so; the :mod:`multiprocessing` module provides a lower-level API in " -"case you want more control over dispatching of tasks." +msgid "The current work to remove the GIL is based on a `fork of Python 3.9 with the GIL removed `_ by Sam Gross. Prior to that, in the days of Python 1.5, Greg Stein actually implemented a comprehensive patch set (the \"free threading\" patches) that removed the GIL and replaced it with fine-grained locking. Adam Olsen did a similar experiment in his `python-safethread `_ project. Unfortunately, both of these earlier experiments exhibited a sharp drop in single-thread performance (at least 30% slower), due to the amount of fine-grained locking necessary to compensate for the removal of the GIL. The Python 3.9 fork is the first attempt at removing the GIL with an acceptable performance impact." msgstr "" -#: ../../faq/library.rst:446 -msgid "" -"Judicious use of C extensions will also help; if you use a C extension to " -"perform a time-consuming task, the extension can release the GIL while the " -"thread of execution is in the C code and allow other threads to get some " -"work done. Some standard library modules such as :mod:`zlib` " -"and :mod:`hashlib` already do this." +msgid "The presence of the GIL in current Python releases doesn't mean that you can't make good use of Python on multi-CPU machines! You just have to be creative with dividing the work up between multiple *processes* rather than multiple *threads*. The :class:`~concurrent.futures.ProcessPoolExecutor` class in the new :mod:`concurrent.futures` module provides an easy way of doing so; the :mod:`multiprocessing` module provides a lower-level API in case you want more control over dispatching of tasks." msgstr "" -#: ../../faq/library.rst:452 -msgid "" -"An alternative approach to reducing the impact of the GIL is to make the GIL " -"a per-interpreter-state lock rather than truly global. This was :ref:`first " -"implemented in Python 3.12 ` and is available in the C " -"API. A Python interface to it is expected in Python 3.13. The main " -"limitation to it at the moment is likely to be 3rd party extension modules, " -"since these must be written with multiple interpreters in mind in order to " -"be usable, so many older extension modules will not be usable." +msgid "Judicious use of C extensions will also help; if you use a C extension to perform a time-consuming task, the extension can release the GIL while the thread of execution is in the C code and allow other threads to get some work done. Some standard library modules such as :mod:`zlib` and :mod:`hashlib` already do this." +msgstr "" + +msgid "An alternative approach to reducing the impact of the GIL is to make the GIL a per-interpreter-state lock rather than truly global. This was :ref:`first implemented in Python 3.12 ` and is available in the C API. A Python interface to it is expected in Python 3.13. The main limitation to it at the moment is likely to be 3rd party extension modules, since these must be written with multiple interpreters in mind in order to be usable, so many older extension modules will not be usable." msgstr "" -#: ../../faq/library.rst:462 msgid "Input and Output" msgstr "" -#: ../../faq/library.rst:465 msgid "How do I delete a file? (And other file questions...)" msgstr "" -#: ../../faq/library.rst:467 -msgid "" -"Use ``os.remove(filename)`` or ``os.unlink(filename)``; for documentation, " -"see the :mod:`os` module. The two functions are " -"identical; :func:`~os.unlink` is simply the name of the Unix system call for " -"this function." +msgid "Use ``os.remove(filename)`` or ``os.unlink(filename)``; for documentation, see the :mod:`os` module. The two functions are identical; :func:`~os.unlink` is simply the name of the Unix system call for this function." msgstr "" -#: ../../faq/library.rst:471 -msgid "" -"To remove a directory, use :func:`os.rmdir`; use :func:`os.mkdir` to create " -"one. ``os.makedirs(path)`` will create any intermediate directories in " -"``path`` that don't exist. ``os.removedirs(path)`` will remove intermediate " -"directories as long as they're empty; if you want to delete an entire " -"directory tree and its contents, use :func:`shutil.rmtree`." +msgid "To remove a directory, use :func:`os.rmdir`; use :func:`os.mkdir` to create one. ``os.makedirs(path)`` will create any intermediate directories in ``path`` that don't exist. ``os.removedirs(path)`` will remove intermediate directories as long as they're empty; if you want to delete an entire directory tree and its contents, use :func:`shutil.rmtree`." msgstr "" -#: ../../faq/library.rst:477 msgid "To rename a file, use ``os.rename(old_path, new_path)``." msgstr "" -#: ../../faq/library.rst:479 -msgid "" -"To truncate a file, open it using ``f = open(filename, \"rb+\")``, and use " -"``f.truncate(offset)``; offset defaults to the current seek position. " -"There's also ``os.ftruncate(fd, offset)`` for files opened " -"with :func:`os.open`, where *fd* is the file descriptor (a small integer)." +msgid "To truncate a file, open it using ``f = open(filename, \"rb+\")``, and use ``f.truncate(offset)``; offset defaults to the current seek position. There's also ``os.ftruncate(fd, offset)`` for files opened with :func:`os.open`, where *fd* is the file descriptor (a small integer)." msgstr "" -#: ../../faq/library.rst:484 -msgid "" -"The :mod:`shutil` module also contains a number of functions to work on " -"files including :func:`~shutil.copyfile`, :func:`~shutil.copytree`, " -"and :func:`~shutil.rmtree`." +msgid "The :mod:`shutil` module also contains a number of functions to work on files including :func:`~shutil.copyfile`, :func:`~shutil.copytree`, and :func:`~shutil.rmtree`." msgstr "" -#: ../../faq/library.rst:490 msgid "How do I copy a file?" msgstr "" -#: ../../faq/library.rst:492 -msgid "" -"The :mod:`shutil` module contains a :func:`~shutil.copyfile` function. Note " -"that on Windows NTFS volumes, it does not copy `alternate data streams " -"`_ nor " -"`resource forks `__ on macOS " -"HFS+ volumes, though both are now rarely used. It also doesn't copy file " -"permissions and metadata, though using :func:`shutil.copy2` instead will " -"preserve most (though not all) of it." +msgid "The :mod:`shutil` module contains a :func:`~shutil.copyfile` function. Note that on Windows NTFS volumes, it does not copy `alternate data streams `_ nor `resource forks `__ on macOS HFS+ volumes, though both are now rarely used. It also doesn't copy file permissions and metadata, though using :func:`shutil.copy2` instead will preserve most (though not all) of it." msgstr "" -#: ../../faq/library.rst:503 msgid "How do I read (or write) binary data?" msgstr "" -#: ../../faq/library.rst:505 -msgid "" -"To read or write complex binary data formats, it's best to use " -"the :mod:`struct` module. It allows you to take a string containing binary " -"data (usually numbers) and convert it to Python objects; and vice versa." +msgid "To read or write complex binary data formats, it's best to use the :mod:`struct` module. It allows you to take a string containing binary data (usually numbers) and convert it to Python objects; and vice versa." msgstr "" -#: ../../faq/library.rst:509 -msgid "" -"For example, the following code reads two 2-byte integers and one 4-byte " -"integer in big-endian format from a file::" +msgid "For example, the following code reads two 2-byte integers and one 4-byte integer in big-endian format from a file::" msgstr "" -#: ../../faq/library.rst:512 msgid "" "import struct\n" "\n" @@ -713,151 +422,87 @@ msgid "" " x, y, z = struct.unpack(\">hhl\", s)" msgstr "" -#: ../../faq/library.rst:518 -msgid "" -"The '>' in the format string forces big-endian data; the letter 'h' reads " -"one \"short integer\" (2 bytes), and 'l' reads one \"long integer\" (4 " -"bytes) from the string." +msgid "The '>' in the format string forces big-endian data; the letter 'h' reads one \"short integer\" (2 bytes), and 'l' reads one \"long integer\" (4 bytes) from the string." msgstr "" -#: ../../faq/library.rst:522 -msgid "" -"For data that is more regular (e.g. a homogeneous list of ints or floats), " -"you can also use the :mod:`array` module." +msgid "For data that is more regular (e.g. a homogeneous list of ints or floats), you can also use the :mod:`array` module." msgstr "" -#: ../../faq/library.rst:527 -msgid "" -"To read and write binary data, it is mandatory to open the file in binary " -"mode (here, passing ``\"rb\"`` to :func:`open`). If you use ``\"r\"`` " -"instead (the default), the file will be open in text mode and ``f.read()`` " -"will return :class:`str` objects rather than :class:`bytes` objects." +msgid "To read and write binary data, it is mandatory to open the file in binary mode (here, passing ``\"rb\"`` to :func:`open`). If you use ``\"r\"`` instead (the default), the file will be open in text mode and ``f.read()`` will return :class:`str` objects rather than :class:`bytes` objects." msgstr "" -#: ../../faq/library.rst:535 msgid "I can't seem to use os.read() on a pipe created with os.popen(); why?" msgstr "" -#: ../../faq/library.rst:537 -msgid "" -":func:`os.read` is a low-level function which takes a file descriptor, a " -"small integer representing the opened file. :func:`os.popen` creates a high-" -"level file object, the same type returned by the built-in :func:`open` " -"function. Thus, to read *n* bytes from a pipe *p* created " -"with :func:`os.popen`, you need to use ``p.read(n)``." +msgid ":func:`os.read` is a low-level function which takes a file descriptor, a small integer representing the opened file. :func:`os.popen` creates a high-level file object, the same type returned by the built-in :func:`open` function. Thus, to read *n* bytes from a pipe *p* created with :func:`os.popen`, you need to use ``p.read(n)``." msgstr "" -#: ../../faq/library.rst:545 msgid "How do I access the serial (RS232) port?" msgstr "" -#: ../../faq/library.rst:547 msgid "For Win32, OSX, Linux, BSD, Jython, IronPython:" msgstr "" -#: ../../faq/library.rst:549 msgid ":pypi:`pyserial`" msgstr "" -#: ../../faq/library.rst:551 msgid "For Unix, see a Usenet post by Mitch Chapman:" msgstr "" -#: ../../faq/library.rst:553 msgid "https://groups.google.com/groups?selm=34A04430.CF9@ohioee.com" msgstr "" -#: ../../faq/library.rst:557 msgid "Why doesn't closing sys.stdout (stdin, stderr) really close it?" msgstr "" -#: ../../faq/library.rst:559 -msgid "" -"Python :term:`file objects ` are a high-level layer of " -"abstraction on low-level C file descriptors." +msgid "Python :term:`file objects ` are a high-level layer of abstraction on low-level C file descriptors." msgstr "" -#: ../../faq/library.rst:562 -msgid "" -"For most file objects you create in Python via the built-in :func:`open` " -"function, ``f.close()`` marks the Python file object as being closed from " -"Python's point of view, and also arranges to close the underlying C file " -"descriptor. This also happens automatically in ``f``'s destructor, when " -"``f`` becomes garbage." +msgid "For most file objects you create in Python via the built-in :func:`open` function, ``f.close()`` marks the Python file object as being closed from Python's point of view, and also arranges to close the underlying C file descriptor. This also happens automatically in ``f``'s destructor, when ``f`` becomes garbage." msgstr "" -#: ../../faq/library.rst:568 -msgid "" -"But stdin, stdout and stderr are treated specially by Python, because of the " -"special status also given to them by C. Running ``sys.stdout.close()`` " -"marks the Python-level file object as being closed, but does *not* close the " -"associated C file descriptor." +msgid "But stdin, stdout and stderr are treated specially by Python, because of the special status also given to them by C. Running ``sys.stdout.close()`` marks the Python-level file object as being closed, but does *not* close the associated C file descriptor." msgstr "" -#: ../../faq/library.rst:573 -msgid "" -"To close the underlying C file descriptor for one of these three, you should " -"first be sure that's what you really want to do (e.g., you may confuse " -"extension modules trying to do I/O). If it is, use :func:`os.close`::" +msgid "To close the underlying C file descriptor for one of these three, you should first be sure that's what you really want to do (e.g., you may confuse extension modules trying to do I/O). If it is, use :func:`os.close`::" msgstr "" -#: ../../faq/library.rst:577 msgid "" "os.close(stdin.fileno())\n" "os.close(stdout.fileno())\n" "os.close(stderr.fileno())" msgstr "" -#: ../../faq/library.rst:581 msgid "Or you can use the numeric constants 0, 1 and 2, respectively." msgstr "" -#: ../../faq/library.rst:585 msgid "Network/Internet Programming" msgstr "" -#: ../../faq/library.rst:588 msgid "What WWW tools are there for Python?" msgstr "" -#: ../../faq/library.rst:590 -msgid "" -"See the chapters titled :ref:`internet` and :ref:`netdata` in the Library " -"Reference Manual. Python has many modules that will help you build server-" -"side and client-side web systems." +msgid "See the chapters titled :ref:`internet` and :ref:`netdata` in the Library Reference Manual. Python has many modules that will help you build server-side and client-side web systems." msgstr "" -#: ../../faq/library.rst:596 -msgid "" -"A summary of available frameworks is maintained by Paul Boddie at https://" -"wiki.python.org/moin/WebProgramming\\ ." +msgid "A summary of available frameworks is maintained by Paul Boddie at https://wiki.python.org/moin/WebProgramming\\ ." msgstr "" -#: ../../faq/library.rst:601 msgid "What module should I use to help with generating HTML?" msgstr "" -#: ../../faq/library.rst:605 -msgid "" -"You can find a collection of useful links on the `Web Programming wiki page " -"`_." +msgid "You can find a collection of useful links on the `Web Programming wiki page `_." msgstr "" -#: ../../faq/library.rst:610 msgid "How do I send mail from a Python script?" msgstr "" -#: ../../faq/library.rst:612 msgid "Use the standard library module :mod:`smtplib`." msgstr "" -#: ../../faq/library.rst:614 -msgid "" -"Here's a very simple interactive mail sender that uses it. This method will " -"work on any host that supports an SMTP listener. ::" +msgid "Here's a very simple interactive mail sender that uses it. This method will work on any host that supports an SMTP listener. ::" msgstr "" -#: ../../faq/library.rst:617 msgid "" "import sys, smtplib\n" "\n" @@ -877,15 +522,9 @@ msgid "" "server.quit()" msgstr "" -#: ../../faq/library.rst:634 -msgid "" -"A Unix-only alternative uses sendmail. The location of the sendmail program " -"varies between systems; sometimes it is ``/usr/lib/sendmail``, sometimes ``/" -"usr/sbin/sendmail``. The sendmail manual page will help you out. Here's " -"some sample code::" +msgid "A Unix-only alternative uses sendmail. The location of the sendmail program varies between systems; sometimes it is ``/usr/lib/sendmail``, sometimes ``/usr/sbin/sendmail``. The sendmail manual page will help you out. Here's some sample code::" msgstr "" -#: ../../faq/library.rst:639 msgid "" "import os\n" "\n" @@ -901,139 +540,79 @@ msgid "" " print(\"Sendmail exit status\", sts)" msgstr "" -#: ../../faq/library.rst:654 msgid "How do I avoid blocking in the connect() method of a socket?" msgstr "" -#: ../../faq/library.rst:656 -msgid "" -"The :mod:`select` module is commonly used to help with asynchronous I/O on " -"sockets." +msgid "The :mod:`select` module is commonly used to help with asynchronous I/O on sockets." msgstr "" -#: ../../faq/library.rst:659 -msgid "" -"To prevent the TCP connect from blocking, you can set the socket to non-" -"blocking mode. Then when you do the :meth:`~socket.socket.connect`, you " -"will either connect immediately (unlikely) or get an exception that contains " -"the error number as ``.errno``. ``errno.EINPROGRESS`` indicates that the " -"connection is in progress, but hasn't finished yet. Different OSes will " -"return different values, so you're going to have to check what's returned on " -"your system." +msgid "To prevent the TCP connect from blocking, you can set the socket to non-blocking mode. Then when you do the :meth:`~socket.socket.connect`, you will either connect immediately (unlikely) or get an exception that contains the error number as ``.errno``. ``errno.EINPROGRESS`` indicates that the connection is in progress, but hasn't finished yet. Different OSes will return different values, so you're going to have to check what's returned on your system." msgstr "" -#: ../../faq/library.rst:667 -msgid "" -"You can use the :meth:`~socket.socket.connect_ex` method to avoid creating " -"an exception. It will just return the errno value. To poll, you can " -"call :meth:`~socket.socket.connect_ex` again later -- ``0`` or " -"``errno.EISCONN`` indicate that you're connected -- or you can pass this " -"socket to :meth:`select.select` to check if it's writable." +msgid "You can use the :meth:`~socket.socket.connect_ex` method to avoid creating an exception. It will just return the errno value. To poll, you can call :meth:`~socket.socket.connect_ex` again later -- ``0`` or ``errno.EISCONN`` indicate that you're connected -- or you can pass this socket to :meth:`select.select` to check if it's writable." msgstr "" -#: ../../faq/library.rst:675 -msgid "" -"The :mod:`asyncio` module provides a general purpose single-threaded and " -"concurrent asynchronous library, which can be used for writing non-blocking " -"network code. The third-party `Twisted `_ library is a " -"popular and feature-rich alternative." +msgid "The :mod:`asyncio` module provides a general purpose single-threaded and concurrent asynchronous library, which can be used for writing non-blocking network code. The third-party `Twisted `_ library is a popular and feature-rich alternative." msgstr "" -#: ../../faq/library.rst:683 msgid "Databases" msgstr "" -#: ../../faq/library.rst:686 msgid "Are there any interfaces to database packages in Python?" msgstr "" -#: ../../faq/library.rst:688 msgid "Yes." msgstr "" -#: ../../faq/library.rst:690 -msgid "" -"Interfaces to disk-based hashes such as :mod:`DBM ` and :mod:`GDBM " -"` are also included with standard Python. There is also " -"the :mod:`sqlite3` module, which provides a lightweight disk-based " -"relational database." +msgid "Interfaces to disk-based hashes such as :mod:`DBM ` and :mod:`GDBM ` are also included with standard Python. There is also the :mod:`sqlite3` module, which provides a lightweight disk-based relational database." msgstr "" -#: ../../faq/library.rst:695 -msgid "" -"Support for most relational databases is available. See the " -"`DatabaseProgramming wiki page `_ for details." +msgid "Support for most relational databases is available. See the `DatabaseProgramming wiki page `_ for details." msgstr "" -#: ../../faq/library.rst:701 msgid "How do you implement persistent objects in Python?" msgstr "" -#: ../../faq/library.rst:703 -msgid "" -"The :mod:`pickle` library module solves this in a very general way (though " -"you still can't store things like open files, sockets or windows), and " -"the :mod:`shelve` library module uses pickle and (g)dbm to create persistent " -"mappings containing arbitrary Python objects." +msgid "The :mod:`pickle` library module solves this in a very general way (though you still can't store things like open files, sockets or windows), and the :mod:`shelve` library module uses pickle and (g)dbm to create persistent mappings containing arbitrary Python objects." msgstr "" -#: ../../faq/library.rst:710 msgid "Mathematics and Numerics" msgstr "" -#: ../../faq/library.rst:713 msgid "How do I generate random numbers in Python?" msgstr "" -#: ../../faq/library.rst:715 -msgid "" -"The standard module :mod:`random` implements a random number generator. " -"Usage is simple::" +msgid "The standard module :mod:`random` implements a random number generator. Usage is simple::" msgstr "" -#: ../../faq/library.rst:718 msgid "" "import random\n" "random.random()" msgstr "" -#: ../../faq/library.rst:721 msgid "This returns a random floating-point number in the range [0, 1)." msgstr "" -#: ../../faq/library.rst:723 -msgid "" -"There are also many other specialized generators in this module, such as:" +msgid "There are also many other specialized generators in this module, such as:" msgstr "" -#: ../../faq/library.rst:725 msgid "``randrange(a, b)`` chooses an integer in the range [a, b)." msgstr "" -#: ../../faq/library.rst:726 msgid "``uniform(a, b)`` chooses a floating-point number in the range [a, b)." msgstr "" -#: ../../faq/library.rst:727 -msgid "" -"``normalvariate(mean, sdev)`` samples the normal (Gaussian) distribution." +msgid "``normalvariate(mean, sdev)`` samples the normal (Gaussian) distribution." msgstr "" -#: ../../faq/library.rst:729 msgid "Some higher-level functions operate on sequences directly, such as:" msgstr "" -#: ../../faq/library.rst:731 msgid "``choice(S)`` chooses a random element from a given sequence." msgstr "" -#: ../../faq/library.rst:732 msgid "``shuffle(L)`` shuffles a list in-place, i.e. permutes it randomly." msgstr "" -#: ../../faq/library.rst:734 -msgid "" -"There's also a ``Random`` class you can instantiate to create independent " -"multiple random number generators." +msgid "There's also a ``Random`` class you can instantiate to create independent multiple random number generators." msgstr "" diff --git a/faq/programming.po b/faq/programming.po index 0922ea9b..2ce5cbea 100644 --- a/faq/programming.po +++ b/faq/programming.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:52+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,292 +24,153 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../faq/programming.rst:5 msgid "Programming FAQ" msgstr "" -#: ../../faq/programming.rst:8 msgid "Contents" msgstr "" -#: ../../faq/programming.rst:12 msgid "General questions" msgstr "" -#: ../../faq/programming.rst:15 -msgid "" -"Is there a source code-level debugger with breakpoints and single-stepping?" +msgid "Is there a source code-level debugger with breakpoints and single-stepping?" msgstr "" -#: ../../faq/programming.rst:17 ../../faq/programming.rst:56 msgid "Yes." msgstr "" -#: ../../faq/programming.rst:19 -msgid "" -"Several debuggers for Python are described below, and the built-in " -"function :func:`breakpoint` allows you to drop into any of them." +msgid "Several debuggers for Python are described below, and the built-in function :func:`breakpoint` allows you to drop into any of them." msgstr "" -#: ../../faq/programming.rst:22 -msgid "" -"The pdb module is a simple but adequate console-mode debugger for Python. It " -"is part of the standard Python library, and is :mod:`documented in the " -"Library Reference Manual `. You can also write your own debugger by " -"using the code for pdb as an example." +msgid "The pdb module is a simple but adequate console-mode debugger for Python. It is part of the standard Python library, and is :mod:`documented in the Library Reference Manual `. You can also write your own debugger by using the code for pdb as an example." msgstr "" -#: ../../faq/programming.rst:27 -msgid "" -"The IDLE interactive development environment, which is part of the standard " -"Python distribution (normally available as :mod:`idlelib`), includes a " -"graphical debugger." +msgid "The IDLE interactive development environment, which is part of the standard Python distribution (normally available as :mod:`idlelib`), includes a graphical debugger." msgstr "" -#: ../../faq/programming.rst:31 -msgid "" -"PythonWin is a Python IDE that includes a GUI debugger based on pdb. The " -"PythonWin debugger colors breakpoints and has quite a few cool features such " -"as debugging non-PythonWin programs. PythonWin is available as part of " -"`pywin32 `_ project and as a part of " -"the `ActivePython `_ " -"distribution." +msgid "PythonWin is a Python IDE that includes a GUI debugger based on pdb. The PythonWin debugger colors breakpoints and has quite a few cool features such as debugging non-PythonWin programs. PythonWin is available as part of `pywin32 `_ project and as a part of the `ActivePython `_ distribution." msgstr "" -#: ../../faq/programming.rst:38 -msgid "" -"`Eric `_ is an IDE built on PyQt and " -"the Scintilla editing component." +msgid "`Eric `_ is an IDE built on PyQt and the Scintilla editing component." msgstr "" -#: ../../faq/programming.rst:41 -msgid "" -"`trepan3k `_ is a gdb-like " -"debugger." +msgid "`trepan3k `_ is a gdb-like debugger." msgstr "" -#: ../../faq/programming.rst:43 -msgid "" -"`Visual Studio Code `_ is an IDE with " -"debugging tools that integrates with version-control software." +msgid "`Visual Studio Code `_ is an IDE with debugging tools that integrates with version-control software." msgstr "" -#: ../../faq/programming.rst:46 -msgid "" -"There are a number of commercial Python IDEs that include graphical " -"debuggers. They include:" +msgid "There are a number of commercial Python IDEs that include graphical debuggers. They include:" msgstr "" -#: ../../faq/programming.rst:49 msgid "`Wing IDE `_" msgstr "" -#: ../../faq/programming.rst:50 msgid "`PyCharm `_" msgstr "" -#: ../../faq/programming.rst:54 msgid "Are there tools to help find bugs or perform static analysis?" msgstr "" -#: ../../faq/programming.rst:58 -msgid "" -"`Ruff `__, `Pylint `__ and `Pyflakes `__ do basic checking that will help you catch bugs sooner." +msgid "`Ruff `__, `Pylint `__ and `Pyflakes `__ do basic checking that will help you catch bugs sooner." msgstr "" -#: ../../faq/programming.rst:63 -msgid "" -"Static type checkers such as `mypy `__, `ty `__, `Pyrefly `__, and `pytype " -"`__ can check type hints in Python source " -"code." +msgid "Static type checkers such as `mypy `__, `ty `__, `Pyrefly `__, and `pytype `__ can check type hints in Python source code." msgstr "" -#: ../../faq/programming.rst:73 msgid "How can I create a stand-alone binary from a Python script?" msgstr "" -#: ../../faq/programming.rst:75 -msgid "" -"You don't need the ability to compile Python to C code if all you want is a " -"stand-alone program that users can download and run without having to " -"install the Python distribution first. There are a number of tools that " -"determine the set of modules required by a program and bind these modules " -"together with a Python binary to produce a single executable." +msgid "You don't need the ability to compile Python to C code if all you want is a stand-alone program that users can download and run without having to install the Python distribution first. There are a number of tools that determine the set of modules required by a program and bind these modules together with a Python binary to produce a single executable." msgstr "" -#: ../../faq/programming.rst:81 -msgid "" -"One is to use the freeze tool, which is included in the Python source tree " -"as :source:`Tools/freeze`. It converts Python byte code to C arrays; with a " -"C compiler you can embed all your modules into a new program, which is then " -"linked with the standard Python modules." +msgid "One is to use the freeze tool, which is included in the Python source tree as :source:`Tools/freeze`. It converts Python byte code to C arrays; with a C compiler you can embed all your modules into a new program, which is then linked with the standard Python modules." msgstr "" -#: ../../faq/programming.rst:87 -msgid "" -"It works by scanning your source recursively for import statements (in both " -"forms) and looking for the modules in the standard Python path as well as in " -"the source directory (for built-in modules). It then turns the bytecode for " -"modules written in Python into C code (array initializers that can be turned " -"into code objects using the marshal module) and creates a custom-made config " -"file that only contains those built-in modules which are actually used in " -"the program. It then compiles the generated C code and links it with the " -"rest of the Python interpreter to form a self-contained binary which acts " -"exactly like your script." +msgid "It works by scanning your source recursively for import statements (in both forms) and looking for the modules in the standard Python path as well as in the source directory (for built-in modules). It then turns the bytecode for modules written in Python into C code (array initializers that can be turned into code objects using the marshal module) and creates a custom-made config file that only contains those built-in modules which are actually used in the program. It then compiles the generated C code and links it with the rest of the Python interpreter to form a self-contained binary which acts exactly like your script." msgstr "" -#: ../../faq/programming.rst:96 -msgid "" -"The following packages can help with the creation of console and GUI " -"executables:" +msgid "The following packages can help with the creation of console and GUI executables:" msgstr "" -#: ../../faq/programming.rst:99 msgid "`Nuitka `_ (Cross-platform)" msgstr "" -#: ../../faq/programming.rst:100 msgid "`PyInstaller `_ (Cross-platform)" msgstr "" -#: ../../faq/programming.rst:101 -msgid "" -"`PyOxidizer `_ (Cross-platform)" +msgid "`PyOxidizer `_ (Cross-platform)" msgstr "" -#: ../../faq/programming.rst:102 -msgid "" -"`cx_Freeze `_ (Cross-platform)" +msgid "`cx_Freeze `_ (Cross-platform)" msgstr "" -#: ../../faq/programming.rst:103 msgid "`py2app `_ (macOS only)" msgstr "" -#: ../../faq/programming.rst:104 msgid "`py2exe `_ (Windows only)" msgstr "" -#: ../../faq/programming.rst:108 msgid "Are there coding standards or a style guide for Python programs?" msgstr "" -#: ../../faq/programming.rst:110 -msgid "" -"Yes. The coding style required for standard library modules is documented " -"as :pep:`8`." +msgid "Yes. The coding style required for standard library modules is documented as :pep:`8`." msgstr "" -#: ../../faq/programming.rst:115 msgid "Core language" msgstr "" -#: ../../faq/programming.rst:120 msgid "Why am I getting an UnboundLocalError when the variable has a value?" msgstr "" -#: ../../faq/programming.rst:122 -msgid "" -"It can be a surprise to get the :exc:`UnboundLocalError` in previously " -"working code when it is modified by adding an assignment statement somewhere " -"in the body of a function." +msgid "It can be a surprise to get the :exc:`UnboundLocalError` in previously working code when it is modified by adding an assignment statement somewhere in the body of a function." msgstr "" -#: ../../faq/programming.rst:126 msgid "This code:" msgstr "" -#: ../../faq/programming.rst:135 msgid "works, but this code:" msgstr "" -#: ../../faq/programming.rst:142 msgid "results in an :exc:`!UnboundLocalError`:" msgstr "" -#: ../../faq/programming.rst:149 -msgid "" -"This is because when you make an assignment to a variable in a scope, that " -"variable becomes local to that scope and shadows any similarly named " -"variable in the outer scope. Since the last statement in foo assigns a new " -"value to ``x``, the compiler recognizes it as a local variable. " -"Consequently when the earlier ``print(x)`` attempts to print the " -"uninitialized local variable and an error results." +msgid "This is because when you make an assignment to a variable in a scope, that variable becomes local to that scope and shadows any similarly named variable in the outer scope. Since the last statement in foo assigns a new value to ``x``, the compiler recognizes it as a local variable. Consequently when the earlier ``print(x)`` attempts to print the uninitialized local variable and an error results." msgstr "" -#: ../../faq/programming.rst:156 -msgid "" -"In the example above you can access the outer scope variable by declaring it " -"global:" +msgid "In the example above you can access the outer scope variable by declaring it global:" msgstr "" -#: ../../faq/programming.rst:168 -msgid "" -"This explicit declaration is required in order to remind you that (unlike " -"the superficially analogous situation with class and instance variables) you " -"are actually modifying the value of the variable in the outer scope:" +msgid "This explicit declaration is required in order to remind you that (unlike the superficially analogous situation with class and instance variables) you are actually modifying the value of the variable in the outer scope:" msgstr "" -#: ../../faq/programming.rst:175 -msgid "" -"You can do a similar thing in a nested scope using the :keyword:`nonlocal` " -"keyword:" +msgid "You can do a similar thing in a nested scope using the :keyword:`nonlocal` keyword:" msgstr "" -#: ../../faq/programming.rst:193 msgid "What are the rules for local and global variables in Python?" msgstr "" -#: ../../faq/programming.rst:195 -msgid "" -"In Python, variables that are only referenced inside a function are " -"implicitly global. If a variable is assigned a value anywhere within the " -"function's body, it's assumed to be a local unless explicitly declared as " -"global." +msgid "In Python, variables that are only referenced inside a function are implicitly global. If a variable is assigned a value anywhere within the function's body, it's assumed to be a local unless explicitly declared as global." msgstr "" -#: ../../faq/programming.rst:199 -msgid "" -"Though a bit surprising at first, a moment's consideration explains this. " -"On one hand, requiring :keyword:`global` for assigned variables provides a " -"bar against unintended side-effects. On the other hand, if ``global`` was " -"required for all global references, you'd be using ``global`` all the time. " -"You'd have to declare as global every reference to a built-in function or to " -"a component of an imported module. This clutter would defeat the usefulness " -"of the ``global`` declaration for identifying side-effects." +msgid "Though a bit surprising at first, a moment's consideration explains this. On one hand, requiring :keyword:`global` for assigned variables provides a bar against unintended side-effects. On the other hand, if ``global`` was required for all global references, you'd be using ``global`` all the time. You'd have to declare as global every reference to a built-in function or to a component of an imported module. This clutter would defeat the usefulness of the ``global`` declaration for identifying side-effects." msgstr "" -#: ../../faq/programming.rst:209 -msgid "" -"Why do lambdas defined in a loop with different values all return the same " -"result?" +msgid "Why do lambdas defined in a loop with different values all return the same result?" msgstr "" -#: ../../faq/programming.rst:211 -msgid "" -"Assume you use a for loop to define a few different lambdas (or even plain " -"functions), for example::" +msgid "Assume you use a for loop to define a few different lambdas (or even plain functions), for example::" msgstr "" -#: ../../faq/programming.rst:214 msgid "" ">>> squares = []\n" ">>> for x in range(5):\n" "... squares.append(lambda: x**2)" msgstr "" -#: ../../faq/programming.rst:218 -msgid "" -"This gives you a list that contains 5 lambdas that calculate ``x**2``. You " -"might expect that, when called, they would return, respectively, ``0``, " -"``1``, ``4``, ``9``, and ``16``. However, when you actually try you will " -"see that they all return ``16``::" +msgid "This gives you a list that contains 5 lambdas that calculate ``x**2``. You might expect that, when called, they would return, respectively, ``0``, ``1``, ``4``, ``9``, and ``16``. However, when you actually try you will see that they all return ``16``::" msgstr "" -#: ../../faq/programming.rst:223 msgid "" ">>> squares[2]()\n" "16\n" @@ -317,46 +178,27 @@ msgid "" "16" msgstr "" -#: ../../faq/programming.rst:228 -msgid "" -"This happens because ``x`` is not local to the lambdas, but is defined in " -"the outer scope, and it is accessed when the lambda is called --- not when " -"it is defined. At the end of the loop, the value of ``x`` is ``4``, so all " -"the functions now return ``4**2``, that is ``16``. You can also verify this " -"by changing the value of ``x`` and see how the results of the lambdas " -"change::" +msgid "This happens because ``x`` is not local to the lambdas, but is defined in the outer scope, and it is accessed when the lambda is called --- not when it is defined. At the end of the loop, the value of ``x`` is ``4``, so all the functions now return ``4**2``, that is ``16``. You can also verify this by changing the value of ``x`` and see how the results of the lambdas change::" msgstr "" -#: ../../faq/programming.rst:234 msgid "" ">>> x = 8\n" ">>> squares[2]()\n" "64" msgstr "" -#: ../../faq/programming.rst:238 -msgid "" -"In order to avoid this, you need to save the values in variables local to " -"the lambdas, so that they don't rely on the value of the global ``x``::" +msgid "In order to avoid this, you need to save the values in variables local to the lambdas, so that they don't rely on the value of the global ``x``::" msgstr "" -#: ../../faq/programming.rst:241 msgid "" ">>> squares = []\n" ">>> for x in range(5):\n" "... squares.append(lambda n=x: n**2)" msgstr "" -#: ../../faq/programming.rst:245 -msgid "" -"Here, ``n=x`` creates a new variable ``n`` local to the lambda and computed " -"when the lambda is defined so that it has the same value that ``x`` had at " -"that point in the loop. This means that the value of ``n`` will be ``0`` in " -"the first lambda, ``1`` in the second, ``2`` in the third, and so on. " -"Therefore each lambda will now return the correct result::" +msgid "Here, ``n=x`` creates a new variable ``n`` local to the lambda and computed when the lambda is defined so that it has the same value that ``x`` had at that point in the loop. This means that the value of ``n`` will be ``0`` in the first lambda, ``1`` in the second, ``2`` in the third, and so on. Therefore each lambda will now return the correct result::" msgstr "" -#: ../../faq/programming.rst:251 msgid "" ">>> squares[2]()\n" "4\n" @@ -364,157 +206,83 @@ msgid "" "16" msgstr "" -#: ../../faq/programming.rst:256 -msgid "" -"Note that this behaviour is not peculiar to lambdas, but applies to regular " -"functions too." +msgid "Note that this behaviour is not peculiar to lambdas, but applies to regular functions too." msgstr "" -#: ../../faq/programming.rst:261 msgid "How do I share global variables across modules?" msgstr "" -#: ../../faq/programming.rst:263 -msgid "" -"The canonical way to share information across modules within a single " -"program is to create a special module (often called config or cfg). Just " -"import the config module in all modules of your application; the module then " -"becomes available as a global name. Because there is only one instance of " -"each module, any changes made to the module object get reflected " -"everywhere. For example:" +msgid "The canonical way to share information across modules within a single program is to create a special module (often called config or cfg). Just import the config module in all modules of your application; the module then becomes available as a global name. Because there is only one instance of each module, any changes made to the module object get reflected everywhere. For example:" msgstr "" -#: ../../faq/programming.rst:269 msgid "config.py::" msgstr "" -#: ../../faq/programming.rst:271 msgid "x = 0 # Default value of the 'x' configuration setting" msgstr "" -#: ../../faq/programming.rst:273 msgid "mod.py::" msgstr "" -#: ../../faq/programming.rst:275 msgid "" "import config\n" "config.x = 1" msgstr "" -#: ../../faq/programming.rst:278 msgid "main.py::" msgstr "" -#: ../../faq/programming.rst:280 msgid "" "import config\n" "import mod\n" "print(config.x)" msgstr "" -#: ../../faq/programming.rst:284 -msgid "" -"Note that using a module is also the basis for implementing the singleton " -"design pattern, for the same reason." +msgid "Note that using a module is also the basis for implementing the singleton design pattern, for the same reason." msgstr "" -#: ../../faq/programming.rst:289 msgid "What are the \"best practices\" for using import in a module?" msgstr "" -#: ../../faq/programming.rst:291 -msgid "" -"In general, don't use ``from modulename import *``. Doing so clutters the " -"importer's namespace, and makes it much harder for linters to detect " -"undefined names." +msgid "In general, don't use ``from modulename import *``. Doing so clutters the importer's namespace, and makes it much harder for linters to detect undefined names." msgstr "" -#: ../../faq/programming.rst:295 -msgid "" -"Import modules at the top of a file. Doing so makes it clear what other " -"modules your code requires and avoids questions of whether the module name " -"is in scope. Using one import per line makes it easy to add and delete " -"module imports, but using multiple imports per line uses less screen space." +msgid "Import modules at the top of a file. Doing so makes it clear what other modules your code requires and avoids questions of whether the module name is in scope. Using one import per line makes it easy to add and delete module imports, but using multiple imports per line uses less screen space." msgstr "" -#: ../../faq/programming.rst:300 msgid "It's good practice if you import modules in the following order:" msgstr "" -#: ../../faq/programming.rst:302 -msgid "" -"standard library modules -- such " -"as :mod:`sys`, :mod:`os`, :mod:`argparse`, :mod:`re`" +msgid "standard library modules -- such as :mod:`sys`, :mod:`os`, :mod:`argparse`, :mod:`re`" msgstr "" -#: ../../faq/programming.rst:303 -msgid "" -"third-party library modules (anything installed in Python's site-packages " -"directory) -- such as :pypi:`dateutil`, :pypi:`requests`, :pypi:`tzdata`" +msgid "third-party library modules (anything installed in Python's site-packages directory) -- such as :pypi:`dateutil`, :pypi:`requests`, :pypi:`tzdata`" msgstr "" -#: ../../faq/programming.rst:305 msgid "locally developed modules" msgstr "" -#: ../../faq/programming.rst:307 -msgid "" -"It is sometimes necessary to move imports to a function or class to avoid " -"problems with circular imports. Gordon McMillan says:" +msgid "It is sometimes necessary to move imports to a function or class to avoid problems with circular imports. Gordon McMillan says:" msgstr "" -#: ../../faq/programming.rst:310 -msgid "" -"Circular imports are fine where both modules use the \"import \" " -"form of import. They fail when the 2nd module wants to grab a name out of " -"the first (\"from module import name\") and the import is at the top level. " -"That's because names in the 1st are not yet available, because the first " -"module is busy importing the 2nd." +msgid "Circular imports are fine where both modules use the \"import \" form of import. They fail when the 2nd module wants to grab a name out of the first (\"from module import name\") and the import is at the top level. That's because names in the 1st are not yet available, because the first module is busy importing the 2nd." msgstr "" -#: ../../faq/programming.rst:316 -msgid "" -"In this case, if the second module is only used in one function, then the " -"import can easily be moved into that function. By the time the import is " -"called, the first module will have finished initializing, and the second " -"module can do its import." +msgid "In this case, if the second module is only used in one function, then the import can easily be moved into that function. By the time the import is called, the first module will have finished initializing, and the second module can do its import." msgstr "" -#: ../../faq/programming.rst:321 -msgid "" -"It may also be necessary to move imports out of the top level of code if " -"some of the modules are platform-specific. In that case, it may not even be " -"possible to import all of the modules at the top of the file. In this case, " -"importing the correct modules in the corresponding platform-specific code is " -"a good option." +msgid "It may also be necessary to move imports out of the top level of code if some of the modules are platform-specific. In that case, it may not even be possible to import all of the modules at the top of the file. In this case, importing the correct modules in the corresponding platform-specific code is a good option." msgstr "" -#: ../../faq/programming.rst:326 -msgid "" -"Only move imports into a local scope, such as inside a function definition, " -"if it's necessary to solve a problem such as avoiding a circular import or " -"are trying to reduce the initialization time of a module. This technique is " -"especially helpful if many of the imports are unnecessary depending on how " -"the program executes. You may also want to move imports into a function if " -"the modules are only ever used in that function. Note that loading a module " -"the first time may be expensive because of the one time initialization of " -"the module, but loading a module multiple times is virtually free, costing " -"only a couple of dictionary lookups. Even if the module name has gone out " -"of scope, the module is probably available in :data:`sys.modules`." +msgid "Only move imports into a local scope, such as inside a function definition, if it's necessary to solve a problem such as avoiding a circular import or are trying to reduce the initialization time of a module. This technique is especially helpful if many of the imports are unnecessary depending on how the program executes. You may also want to move imports into a function if the modules are only ever used in that function. Note that loading a module the first time may be expensive because of the one time initialization of the module, but loading a module multiple times is virtually free, costing only a couple of dictionary lookups. Even if the module name has gone out of scope, the module is probably available in :data:`sys.modules`." msgstr "" -#: ../../faq/programming.rst:339 msgid "Why are default values shared between objects?" msgstr "" -#: ../../faq/programming.rst:341 -msgid "" -"This type of bug commonly bites neophyte programmers. Consider this " -"function::" +msgid "This type of bug commonly bites neophyte programmers. Consider this function::" msgstr "" -#: ../../faq/programming.rst:343 msgid "" "def foo(mydict={}): # Danger: shared reference to one dict for all calls\n" " ... compute something ...\n" @@ -522,67 +290,37 @@ msgid "" " return mydict" msgstr "" -#: ../../faq/programming.rst:348 -msgid "" -"The first time you call this function, ``mydict`` contains a single item. " -"The second time, ``mydict`` contains two items because when ``foo()`` begins " -"executing, ``mydict`` starts out with an item already in it." +msgid "The first time you call this function, ``mydict`` contains a single item. The second time, ``mydict`` contains two items because when ``foo()`` begins executing, ``mydict`` starts out with an item already in it." msgstr "" -#: ../../faq/programming.rst:352 -msgid "" -"It is often expected that a function call creates new objects for default " -"values. This is not what happens. Default values are created exactly once, " -"when the function is defined. If that object is changed, like the " -"dictionary in this example, subsequent calls to the function will refer to " -"this changed object." +msgid "It is often expected that a function call creates new objects for default values. This is not what happens. Default values are created exactly once, when the function is defined. If that object is changed, like the dictionary in this example, subsequent calls to the function will refer to this changed object." msgstr "" -#: ../../faq/programming.rst:357 -msgid "" -"By definition, immutable objects such as numbers, strings, tuples, and " -"``None``, are safe from change. Changes to mutable objects such as " -"dictionaries, lists, and class instances can lead to confusion." +msgid "By definition, immutable objects such as numbers, strings, tuples, and ``None``, are safe from change. Changes to mutable objects such as dictionaries, lists, and class instances can lead to confusion." msgstr "" -#: ../../faq/programming.rst:361 -msgid "" -"Because of this feature, it is good programming practice to not use mutable " -"objects as default values. Instead, use ``None`` as the default value and " -"inside the function, check if the parameter is ``None`` and create a new " -"list/dictionary/whatever if it is. For example, don't write::" +msgid "Because of this feature, it is good programming practice to not use mutable objects as default values. Instead, use ``None`` as the default value and inside the function, check if the parameter is ``None`` and create a new list/dictionary/whatever if it is. For example, don't write::" msgstr "" -#: ../../faq/programming.rst:366 msgid "" "def foo(mydict={}):\n" " ..." msgstr "" -#: ../../faq/programming.rst:369 msgid "but::" msgstr "" -#: ../../faq/programming.rst:371 msgid "" "def foo(mydict=None):\n" " if mydict is None:\n" " mydict = {} # create a new dict for local namespace" msgstr "" -#: ../../faq/programming.rst:375 -msgid "" -"This feature can be useful. When you have a function that's time-consuming " -"to compute, a common technique is to cache the parameters and the resulting " -"value of each call to the function, and return the cached value if the same " -"value is requested again. This is called \"memoizing\", and can be " -"implemented like this::" +msgid "This feature can be useful. When you have a function that's time-consuming to compute, a common technique is to cache the parameters and the resulting value of each call to the function, and return the cached value if the same value is requested again. This is called \"memoizing\", and can be implemented like this::" msgstr "" -#: ../../faq/programming.rst:380 msgid "" -"# Callers can only provide two parameters and optionally pass _cache by " -"keyword\n" +"# Callers can only provide two parameters and optionally pass _cache by keyword\n" "def expensive(arg1, arg2, *, _cache={}):\n" " if (arg1, arg2) in _cache:\n" " return _cache[(arg1, arg2)]\n" @@ -593,26 +331,15 @@ msgid "" " return result" msgstr "" -#: ../../faq/programming.rst:390 -msgid "" -"You could use a global variable containing a dictionary instead of the " -"default value; it's a matter of taste." +msgid "You could use a global variable containing a dictionary instead of the default value; it's a matter of taste." msgstr "" -#: ../../faq/programming.rst:395 -msgid "" -"How can I pass optional or keyword parameters from one function to another?" +msgid "How can I pass optional or keyword parameters from one function to another?" msgstr "" -#: ../../faq/programming.rst:397 -msgid "" -"Collect the arguments using the ``*`` and ``**`` specifiers in the " -"function's parameter list; this gives you the positional arguments as a " -"tuple and the keyword arguments as a dictionary. You can then pass these " -"arguments when calling another function by using ``*`` and ``**``::" +msgid "Collect the arguments using the ``*`` and ``**`` specifiers in the function's parameter list; this gives you the positional arguments as a tuple and the keyword arguments as a dictionary. You can then pass these arguments when calling another function by using ``*`` and ``**``::" msgstr "" -#: ../../faq/programming.rst:402 msgid "" "def f(x, *args, **kwargs):\n" " ...\n" @@ -621,48 +348,32 @@ msgid "" " g(x, *args, **kwargs)" msgstr "" -#: ../../faq/programming.rst:416 msgid "What is the difference between arguments and parameters?" msgstr "" -#: ../../faq/programming.rst:418 -msgid "" -":term:`Parameters ` are defined by the names that appear in a " -"function definition, whereas :term:`arguments ` are the values " -"actually passed to a function when calling it. Parameters define " -"what :term:`kind of arguments ` a function can accept. For " -"example, given the function definition::" +msgid ":term:`Parameters ` are defined by the names that appear in a function definition, whereas :term:`arguments ` are the values actually passed to a function when calling it. Parameters define what :term:`kind of arguments ` a function can accept. For example, given the function definition::" msgstr "" -#: ../../faq/programming.rst:424 msgid "" "def func(foo, bar=None, **kwargs):\n" " pass" msgstr "" -#: ../../faq/programming.rst:427 -msgid "" -"*foo*, *bar* and *kwargs* are parameters of ``func``. However, when calling " -"``func``, for example::" +msgid "*foo*, *bar* and *kwargs* are parameters of ``func``. However, when calling ``func``, for example::" msgstr "" -#: ../../faq/programming.rst:430 msgid "func(42, bar=314, extra=somevar)" msgstr "" -#: ../../faq/programming.rst:432 msgid "the values ``42``, ``314``, and ``somevar`` are arguments." msgstr "" -#: ../../faq/programming.rst:436 msgid "Why did changing list 'y' also change list 'x'?" msgstr "" -#: ../../faq/programming.rst:438 msgid "If you wrote code like::" msgstr "" -#: ../../faq/programming.rst:440 msgid "" ">>> x = []\n" ">>> y = x\n" @@ -673,40 +384,24 @@ msgid "" "[10]" msgstr "" -#: ../../faq/programming.rst:448 -msgid "" -"you might be wondering why appending an element to ``y`` changed ``x`` too." +msgid "you might be wondering why appending an element to ``y`` changed ``x`` too." msgstr "" -#: ../../faq/programming.rst:450 msgid "There are two factors that produce this result:" msgstr "" -#: ../../faq/programming.rst:452 -msgid "" -"Variables are simply names that refer to objects. Doing ``y = x`` doesn't " -"create a copy of the list -- it creates a new variable ``y`` that refers to " -"the same object ``x`` refers to. This means that there is only one object " -"(the list), and both ``x`` and ``y`` refer to it." +msgid "Variables are simply names that refer to objects. Doing ``y = x`` doesn't create a copy of the list -- it creates a new variable ``y`` that refers to the same object ``x`` refers to. This means that there is only one object (the list), and both ``x`` and ``y`` refer to it." msgstr "" -#: ../../faq/programming.rst:456 -msgid "" -"Lists are :term:`mutable`, which means that you can change their content." +msgid "Lists are :term:`mutable`, which means that you can change their content." msgstr "" -#: ../../faq/programming.rst:458 -msgid "" -"After the call to :meth:`~sequence.append`, the content of the mutable " -"object has changed from ``[]`` to ``[10]``. Since both the variables refer " -"to the same object, using either name accesses the modified value ``[10]``." +msgid "After the call to :meth:`~sequence.append`, the content of the mutable object has changed from ``[]`` to ``[10]``. Since both the variables refer to the same object, using either name accesses the modified value ``[10]``." msgstr "" -#: ../../faq/programming.rst:462 msgid "If we instead assign an immutable object to ``x``::" msgstr "" -#: ../../faq/programming.rst:464 msgid "" ">>> x = 5 # ints are immutable\n" ">>> y = x\n" @@ -717,82 +412,36 @@ msgid "" "5" msgstr "" -#: ../../faq/programming.rst:472 -msgid "" -"we can see that in this case ``x`` and ``y`` are not equal anymore. This is " -"because integers are :term:`immutable`, and when we do ``x = x + 1`` we are " -"not mutating the int ``5`` by incrementing its value; instead, we are " -"creating a new object (the int ``6``) and assigning it to ``x`` (that is, " -"changing which object ``x`` refers to). After this assignment we have two " -"objects (the ints ``6`` and ``5``) and two variables that refer to them " -"(``x`` now refers to ``6`` but ``y`` still refers to ``5``)." +msgid "we can see that in this case ``x`` and ``y`` are not equal anymore. This is because integers are :term:`immutable`, and when we do ``x = x + 1`` we are not mutating the int ``5`` by incrementing its value; instead, we are creating a new object (the int ``6``) and assigning it to ``x`` (that is, changing which object ``x`` refers to). After this assignment we have two objects (the ints ``6`` and ``5``) and two variables that refer to them (``x`` now refers to ``6`` but ``y`` still refers to ``5``)." msgstr "" -#: ../../faq/programming.rst:480 -msgid "" -"Some operations (for example ``y.append(10)`` and ``y.sort()``) mutate the " -"object, whereas superficially similar operations (for example ``y = y + " -"[10]`` and :func:`sorted(y) `) create a new object. In general in " -"Python (and in all cases in the standard library) a method that mutates an " -"object will return ``None`` to help avoid getting the two types of " -"operations confused. So if you mistakenly write ``y.sort()`` thinking it " -"will give you a sorted copy of ``y``, you'll instead end up with ``None``, " -"which will likely cause your program to generate an easily diagnosed error." +msgid "Some operations (for example ``y.append(10)`` and ``y.sort()``) mutate the object, whereas superficially similar operations (for example ``y = y + [10]`` and :func:`sorted(y) `) create a new object. In general in Python (and in all cases in the standard library) a method that mutates an object will return ``None`` to help avoid getting the two types of operations confused. So if you mistakenly write ``y.sort()`` thinking it will give you a sorted copy of ``y``, you'll instead end up with ``None``, which will likely cause your program to generate an easily diagnosed error." msgstr "" -#: ../../faq/programming.rst:489 -msgid "" -"However, there is one class of operations where the same operation sometimes " -"has different behaviors with different types: the augmented assignment " -"operators. For example, ``+=`` mutates lists but not tuples or ints " -"(``a_list += [1, 2, 3]`` is equivalent to ``a_list.extend([1, 2, 3])`` and " -"mutates ``a_list``, whereas ``some_tuple += (1, 2, 3)`` and ``some_int += " -"1`` create new objects)." +msgid "However, there is one class of operations where the same operation sometimes has different behaviors with different types: the augmented assignment operators. For example, ``+=`` mutates lists but not tuples or ints (``a_list += [1, 2, 3]`` is equivalent to ``a_list.extend([1, 2, 3])`` and mutates ``a_list``, whereas ``some_tuple += (1, 2, 3)`` and ``some_int += 1`` create new objects)." msgstr "" -#: ../../faq/programming.rst:496 msgid "In other words:" msgstr "" -#: ../../faq/programming.rst:498 -msgid "" -"If we have a mutable object (such " -"as :class:`list`, :class:`dict`, :class:`set`), we can use some specific " -"operations to mutate it and all the variables that refer to it will see the " -"change." +msgid "If we have a mutable object (such as :class:`list`, :class:`dict`, :class:`set`), we can use some specific operations to mutate it and all the variables that refer to it will see the change." msgstr "" -#: ../../faq/programming.rst:501 -msgid "" -"If we have an immutable object (such " -"as :class:`str`, :class:`int`, :class:`tuple`), all the variables that refer " -"to it will always see the same value, but operations that transform that " -"value into a new value always return a new object." +msgid "If we have an immutable object (such as :class:`str`, :class:`int`, :class:`tuple`), all the variables that refer to it will always see the same value, but operations that transform that value into a new value always return a new object." msgstr "" -#: ../../faq/programming.rst:506 -msgid "" -"If you want to know if two variables refer to the same object or not, you " -"can use the :keyword:`is` operator, or the built-in function :func:`id`." +msgid "If you want to know if two variables refer to the same object or not, you can use the :keyword:`is` operator, or the built-in function :func:`id`." msgstr "" -#: ../../faq/programming.rst:511 msgid "How do I write a function with output parameters (call by reference)?" msgstr "" -#: ../../faq/programming.rst:513 -msgid "" -"Remember that arguments are passed by assignment in Python. Since " -"assignment just creates references to objects, there's no alias between an " -"argument name in the caller and callee, and consequently no call-by-" -"reference. You can achieve the desired effect in a number of ways." +msgid "Remember that arguments are passed by assignment in Python. Since assignment just creates references to objects, there's no alias between an argument name in the caller and callee, and consequently no call-by-reference. You can achieve the desired effect in a number of ways." msgstr "" -#: ../../faq/programming.rst:518 msgid "By returning a tuple of the results::" msgstr "" -#: ../../faq/programming.rst:520 msgid "" ">>> def func1(a, b):\n" "... a = 'new-value' # a and b are local names\n" @@ -804,20 +453,15 @@ msgid "" "('new-value', 100)" msgstr "" -#: ../../faq/programming.rst:529 msgid "This is almost always the clearest solution." msgstr "" -#: ../../faq/programming.rst:531 -msgid "" -"By using global variables. This isn't thread-safe, and is not recommended." +msgid "By using global variables. This isn't thread-safe, and is not recommended." msgstr "" -#: ../../faq/programming.rst:533 msgid "By passing a mutable (changeable in-place) object::" msgstr "" -#: ../../faq/programming.rst:535 msgid "" ">>> def func2(a):\n" "... a[0] = 'new-value' # 'a' references a mutable list\n" @@ -829,11 +473,9 @@ msgid "" "['new-value', 100]" msgstr "" -#: ../../faq/programming.rst:544 msgid "By passing in a dictionary that gets mutated::" msgstr "" -#: ../../faq/programming.rst:546 msgid "" ">>> def func3(args):\n" "... args['a'] = 'new-value' # args is a mutable dictionary\n" @@ -845,11 +487,9 @@ msgid "" "{'a': 'new-value', 'b': 100}" msgstr "" -#: ../../faq/programming.rst:555 msgid "Or bundle up values in a class instance::" msgstr "" -#: ../../faq/programming.rst:557 msgid "" ">>> class Namespace:\n" "... def __init__(self, /, **args):\n" @@ -866,27 +506,18 @@ msgid "" "{'a': 'new-value', 'b': 100}" msgstr "" -#: ../../faq/programming.rst:572 msgid "There's almost never a good reason to get this complicated." msgstr "" -#: ../../faq/programming.rst:574 msgid "Your best choice is to return a tuple containing the multiple results." msgstr "" -#: ../../faq/programming.rst:578 msgid "How do you make a higher order function in Python?" msgstr "" -#: ../../faq/programming.rst:580 -msgid "" -"You have two choices: you can use nested scopes or you can use callable " -"objects. For example, suppose you wanted to define ``linear(a,b)`` which " -"returns a function ``f(x)`` that computes the value ``a*x+b``. Using nested " -"scopes::" +msgid "You have two choices: you can use nested scopes or you can use callable objects. For example, suppose you wanted to define ``linear(a,b)`` which returns a function ``f(x)`` that computes the value ``a*x+b``. Using nested scopes::" msgstr "" -#: ../../faq/programming.rst:584 msgid "" "def linear(a, b):\n" " def result(x):\n" @@ -894,11 +525,9 @@ msgid "" " return result" msgstr "" -#: ../../faq/programming.rst:589 msgid "Or using a callable object::" msgstr "" -#: ../../faq/programming.rst:591 msgid "" "class linear:\n" "\n" @@ -909,26 +538,18 @@ msgid "" " return self.a * x + self.b" msgstr "" -#: ../../faq/programming.rst:599 msgid "In both cases, ::" msgstr "" -#: ../../faq/programming.rst:601 msgid "taxes = linear(0.3, 2)" msgstr "" -#: ../../faq/programming.rst:603 msgid "gives a callable object where ``taxes(10e6) == 0.3 * 10e6 + 2``." msgstr "" -#: ../../faq/programming.rst:605 -msgid "" -"The callable object approach has the disadvantage that it is a bit slower " -"and results in slightly longer code. However, note that a collection of " -"callables can share their signature via inheritance::" +msgid "The callable object approach has the disadvantage that it is a bit slower and results in slightly longer code. However, note that a collection of callables can share their signature via inheritance::" msgstr "" -#: ../../faq/programming.rst:609 msgid "" "class exponential(linear):\n" " # __init__ inherited\n" @@ -936,11 +557,9 @@ msgid "" " return self.a * (x ** self.b)" msgstr "" -#: ../../faq/programming.rst:614 msgid "Object can encapsulate state for several methods::" msgstr "" -#: ../../faq/programming.rst:616 msgid "" "class counter:\n" "\n" @@ -959,64 +578,39 @@ msgid "" "inc, dec, reset = count.up, count.down, count.set" msgstr "" -#: ../../faq/programming.rst:632 -msgid "" -"Here ``inc()``, ``dec()`` and ``reset()`` act like functions which share the " -"same counting variable." +msgid "Here ``inc()``, ``dec()`` and ``reset()`` act like functions which share the same counting variable." msgstr "" -#: ../../faq/programming.rst:637 msgid "How do I copy an object in Python?" msgstr "" -#: ../../faq/programming.rst:639 -msgid "" -"In general, try :func:`copy.copy` or :func:`copy.deepcopy` for the general " -"case. Not all objects can be copied, but most can." +msgid "In general, try :func:`copy.copy` or :func:`copy.deepcopy` for the general case. Not all objects can be copied, but most can." msgstr "" -#: ../../faq/programming.rst:642 -msgid "" -"Some objects can be copied more easily. Dictionaries have " -"a :meth:`~dict.copy` method::" +msgid "Some objects can be copied more easily. Dictionaries have a :meth:`~dict.copy` method::" msgstr "" -#: ../../faq/programming.rst:645 msgid "newdict = olddict.copy()" msgstr "" -#: ../../faq/programming.rst:647 msgid "Sequences can be copied by slicing::" msgstr "" -#: ../../faq/programming.rst:649 msgid "new_l = l[:]" msgstr "" -#: ../../faq/programming.rst:653 msgid "How can I find the methods or attributes of an object?" msgstr "" -#: ../../faq/programming.rst:655 -msgid "" -"For an instance ``x`` of a user-defined class, :func:`dir(x) ` returns " -"an alphabetized list of the names containing the instance attributes and " -"methods and attributes defined by its class." +msgid "For an instance ``x`` of a user-defined class, :func:`dir(x) ` returns an alphabetized list of the names containing the instance attributes and methods and attributes defined by its class." msgstr "" -#: ../../faq/programming.rst:661 msgid "How can my code discover the name of an object?" msgstr "" -#: ../../faq/programming.rst:663 -msgid "" -"Generally speaking, it can't, because objects don't really have names. " -"Essentially, assignment always binds a name to a value; the same is true of " -"``def`` and ``class`` statements, but in that case the value is a callable. " -"Consider the following code::" +msgid "Generally speaking, it can't, because objects don't really have names. Essentially, assignment always binds a name to a value; the same is true of ``def`` and ``class`` statements, but in that case the value is a callable. Consider the following code::" msgstr "" -#: ../../faq/programming.rst:668 msgid "" ">>> class A:\n" "... pass\n" @@ -1030,91 +624,53 @@ msgid "" "<__main__.A object at 0x16D07CC>" msgstr "" -#: ../../faq/programming.rst:679 -msgid "" -"Arguably the class has a name: even though it is bound to two names and " -"invoked through the name ``B`` the created instance is still reported as an " -"instance of class ``A``. However, it is impossible to say whether the " -"instance's name is ``a`` or ``b``, since both names are bound to the same " -"value." +msgid "Arguably the class has a name: even though it is bound to two names and invoked through the name ``B`` the created instance is still reported as an instance of class ``A``. However, it is impossible to say whether the instance's name is ``a`` or ``b``, since both names are bound to the same value." msgstr "" -#: ../../faq/programming.rst:684 -msgid "" -"Generally speaking it should not be necessary for your code to \"know the " -"names\" of particular values. Unless you are deliberately writing " -"introspective programs, this is usually an indication that a change of " -"approach might be beneficial." +msgid "Generally speaking it should not be necessary for your code to \"know the names\" of particular values. Unless you are deliberately writing introspective programs, this is usually an indication that a change of approach might be beneficial." msgstr "" -#: ../../faq/programming.rst:689 -msgid "" -"In comp.lang.python, Fredrik Lundh once gave an excellent analogy in answer " -"to this question:" +msgid "In comp.lang.python, Fredrik Lundh once gave an excellent analogy in answer to this question:" msgstr "" -#: ../../faq/programming.rst:692 -msgid "" -"The same way as you get the name of that cat you found on your porch: the " -"cat (object) itself cannot tell you its name, and it doesn't really care -- " -"so the only way to find out what it's called is to ask all your neighbours " -"(namespaces) if it's their cat (object)..." +msgid "The same way as you get the name of that cat you found on your porch: the cat (object) itself cannot tell you its name, and it doesn't really care -- so the only way to find out what it's called is to ask all your neighbours (namespaces) if it's their cat (object)..." msgstr "" -#: ../../faq/programming.rst:697 -msgid "" -"....and don't be surprised if you'll find that it's known by many names, or " -"no name at all!" +msgid "....and don't be surprised if you'll find that it's known by many names, or no name at all!" msgstr "" -#: ../../faq/programming.rst:702 msgid "What's up with the comma operator's precedence?" msgstr "" -#: ../../faq/programming.rst:704 msgid "Comma is not an operator in Python. Consider this session::" msgstr "" -#: ../../faq/programming.rst:706 msgid "" ">>> \"a\" in \"b\", \"a\"\n" "(False, 'a')" msgstr "" -#: ../../faq/programming.rst:709 -msgid "" -"Since the comma is not an operator, but a separator between expressions the " -"above is evaluated as if you had entered::" +msgid "Since the comma is not an operator, but a separator between expressions the above is evaluated as if you had entered::" msgstr "" -#: ../../faq/programming.rst:712 msgid "(\"a\" in \"b\"), \"a\"" msgstr "" -#: ../../faq/programming.rst:714 msgid "not::" msgstr "" -#: ../../faq/programming.rst:716 msgid "\"a\" in (\"b\", \"a\")" msgstr "" -#: ../../faq/programming.rst:718 -msgid "" -"The same is true of the various assignment operators (``=``, ``+=``, and so " -"on). They are not truly operators but syntactic delimiters in assignment " -"statements." +msgid "The same is true of the various assignment operators (``=``, ``+=``, and so on). They are not truly operators but syntactic delimiters in assignment statements." msgstr "" -#: ../../faq/programming.rst:723 msgid "Is there an equivalent of C's \"?:\" ternary operator?" msgstr "" -#: ../../faq/programming.rst:725 msgid "Yes, there is. The syntax is as follows::" msgstr "" -#: ../../faq/programming.rst:727 msgid "" "[on_true] if [expression] else [on_false]\n" "\n" @@ -1122,35 +678,21 @@ msgid "" "small = x if x < y else y" msgstr "" -#: ../../faq/programming.rst:732 -msgid "" -"Before this syntax was introduced in Python 2.5, a common idiom was to use " -"logical operators::" +msgid "Before this syntax was introduced in Python 2.5, a common idiom was to use logical operators::" msgstr "" -#: ../../faq/programming.rst:735 msgid "[expression] and [on_true] or [on_false]" msgstr "" -#: ../../faq/programming.rst:737 -msgid "" -"However, this idiom is unsafe, as it can give wrong results when *on_true* " -"has a false boolean value. Therefore, it is always better to use the ``... " -"if ... else ...`` form." +msgid "However, this idiom is unsafe, as it can give wrong results when *on_true* has a false boolean value. Therefore, it is always better to use the ``... if ... else ...`` form." msgstr "" -#: ../../faq/programming.rst:743 msgid "Is it possible to write obfuscated one-liners in Python?" msgstr "" -#: ../../faq/programming.rst:745 -msgid "" -"Yes. Usually this is done by nesting :keyword:`lambda` within :keyword:`!" -"lambda`. See the following three examples, slightly adapted from Ulf " -"Bartelt::" +msgid "Yes. Usually this is done by nesting :keyword:`lambda` within :keyword:`!lambda`. See the following three examples, slightly adapted from Ulf Bartelt::" msgstr "" -#: ../../faq/programming.rst:748 msgid "" "from functools import reduce\n" "\n" @@ -1163,8 +705,7 @@ msgid "" "f(x,f), range(10))))\n" "\n" "# Mandelbrot set\n" -"print((lambda Ru,Ro,Iu,Io,IM,Sx,Sy:reduce(lambda x,y:x+'\\n'+y,map(lambda " -"y,\n" +"print((lambda Ru,Ro,Iu,Io,IM,Sx,Sy:reduce(lambda x,y:x+'\\n'+y,map(lambda y,\n" "Iu=Iu,Io=Io,Ru=Ru,Ro=Ro,Sy=Sy,L=lambda yc,Iu=Iu,Io=Io,Ru=Ru,Ro=Ro,i=IM,\n" "Sx=Sx,Sy=Sy:reduce(lambda x,y:x+y,map(lambda x,xc=Ru,yc=yc,Ru=Ru,Ro=Ro,\n" "i=i,Sx=Sx,F=lambda xc,yc,x,y,k,f=lambda xc,yc,x,y,k,f:(k<=0)or (x*x+y*y\n" @@ -1178,25 +719,15 @@ msgid "" "# |____________________________ range on x axis" msgstr "" -#: ../../faq/programming.rst:772 msgid "Don't try this at home, kids!" msgstr "" -#: ../../faq/programming.rst:778 msgid "What does the slash(/) in the parameter list of a function mean?" msgstr "" -#: ../../faq/programming.rst:780 -msgid "" -"A slash in the argument list of a function denotes that the parameters prior " -"to it are positional-only. Positional-only parameters are the ones without " -"an externally usable name. Upon calling a function that accepts positional-" -"only parameters, arguments are mapped to parameters based solely on their " -"position. For example, :func:`divmod` is a function that accepts positional-" -"only parameters. Its documentation looks like this::" +msgid "A slash in the argument list of a function denotes that the parameters prior to it are positional-only. Positional-only parameters are the ones without an externally usable name. Upon calling a function that accepts positional-only parameters, arguments are mapped to parameters based solely on their position. For example, :func:`divmod` is a function that accepts positional-only parameters. Its documentation looks like this::" msgstr "" -#: ../../faq/programming.rst:787 msgid "" ">>> help(divmod)\n" "Help on built-in function divmod in module builtins:\n" @@ -1205,14 +736,9 @@ msgid "" " Return the tuple (x//y, x%y). Invariant: div*y + mod == x." msgstr "" -#: ../../faq/programming.rst:793 -msgid "" -"The slash at the end of the parameter list means that both parameters are " -"positional-only. Thus, calling :func:`divmod` with keyword arguments would " -"lead to an error::" +msgid "The slash at the end of the parameter list means that both parameters are positional-only. Thus, calling :func:`divmod` with keyword arguments would lead to an error::" msgstr "" -#: ../../faq/programming.rst:797 msgid "" ">>> divmod(x=3, y=4)\n" "Traceback (most recent call last):\n" @@ -1220,36 +746,24 @@ msgid "" "TypeError: divmod() takes no keyword arguments" msgstr "" -#: ../../faq/programming.rst:804 msgid "Numbers and strings" msgstr "" -#: ../../faq/programming.rst:807 msgid "How do I specify hexadecimal and octal integers?" msgstr "" -#: ../../faq/programming.rst:809 -msgid "" -"To specify an octal digit, precede the octal value with a zero, and then a " -"lower or uppercase \"o\". For example, to set the variable \"a\" to the " -"octal value \"10\" (8 in decimal), type::" +msgid "To specify an octal digit, precede the octal value with a zero, and then a lower or uppercase \"o\". For example, to set the variable \"a\" to the octal value \"10\" (8 in decimal), type::" msgstr "" -#: ../../faq/programming.rst:813 msgid "" ">>> a = 0o10\n" ">>> a\n" "8" msgstr "" -#: ../../faq/programming.rst:817 -msgid "" -"Hexadecimal is just as easy. Simply precede the hexadecimal number with a " -"zero, and then a lower or uppercase \"x\". Hexadecimal digits can be " -"specified in lower or uppercase. For example, in the Python interpreter::" +msgid "Hexadecimal is just as easy. Simply precede the hexadecimal number with a zero, and then a lower or uppercase \"x\". Hexadecimal digits can be specified in lower or uppercase. For example, in the Python interpreter::" msgstr "" -#: ../../faq/programming.rst:821 msgid "" ">>> a = 0xa5\n" ">>> a\n" @@ -1259,47 +773,27 @@ msgid "" "178" msgstr "" -#: ../../faq/programming.rst:830 msgid "Why does -22 // 10 return -3?" msgstr "" -#: ../../faq/programming.rst:832 -msgid "" -"It's primarily driven by the desire that ``i % j`` have the same sign as " -"``j``. If you want that, and also want::" +msgid "It's primarily driven by the desire that ``i % j`` have the same sign as ``j``. If you want that, and also want::" msgstr "" -#: ../../faq/programming.rst:835 msgid "i == (i // j) * j + (i % j)" msgstr "" -#: ../../faq/programming.rst:837 -msgid "" -"then integer division has to return the floor. C also requires that " -"identity to hold, and then compilers that truncate ``i // j`` need to make " -"``i % j`` have the same sign as ``i``." +msgid "then integer division has to return the floor. C also requires that identity to hold, and then compilers that truncate ``i // j`` need to make ``i % j`` have the same sign as ``i``." msgstr "" -#: ../../faq/programming.rst:841 -msgid "" -"There are few real use cases for ``i % j`` when ``j`` is negative. When " -"``j`` is positive, there are many, and in virtually all of them it's more " -"useful for ``i % j`` to be ``>= 0``. If the clock says 10 now, what did it " -"say 200 hours ago? ``-190 % 12 == 2`` is useful; ``-190 % 12 == -10`` is a " -"bug waiting to bite." +msgid "There are few real use cases for ``i % j`` when ``j`` is negative. When ``j`` is positive, there are many, and in virtually all of them it's more useful for ``i % j`` to be ``>= 0``. If the clock says 10 now, what did it say 200 hours ago? ``-190 % 12 == 2`` is useful; ``-190 % 12 == -10`` is a bug waiting to bite." msgstr "" -#: ../../faq/programming.rst:849 msgid "How do I get int literal attribute instead of SyntaxError?" msgstr "" -#: ../../faq/programming.rst:851 -msgid "" -"Trying to lookup an ``int`` literal attribute in the normal manner gives " -"a :exc:`SyntaxError` because the period is seen as a decimal point::" +msgid "Trying to lookup an ``int`` literal attribute in the normal manner gives a :exc:`SyntaxError` because the period is seen as a decimal point::" msgstr "" -#: ../../faq/programming.rst:854 msgid "" ">>> 1.__class__\n" " File \"\", line 1\n" @@ -1308,78 +802,36 @@ msgid "" "SyntaxError: invalid decimal literal" msgstr "" -#: ../../faq/programming.rst:860 -msgid "" -"The solution is to separate the literal from the period with either a space " -"or parentheses." +msgid "The solution is to separate the literal from the period with either a space or parentheses." msgstr "" -#: ../../faq/programming.rst:870 msgid "How do I convert a string to a number?" msgstr "" -#: ../../faq/programming.rst:872 -msgid "" -"For integers, use the built-in :func:`int` type constructor, for example, " -"``int('144') == 144``. Similarly, :func:`float` converts to a floating-" -"point number, for example, ``float('144') == 144.0``." +msgid "For integers, use the built-in :func:`int` type constructor, for example, ``int('144') == 144``. Similarly, :func:`float` converts to a floating-point number, for example, ``float('144') == 144.0``." msgstr "" -#: ../../faq/programming.rst:876 -msgid "" -"By default, these interpret the number as decimal, so that ``int('0144') == " -"144`` holds true, and ``int('0x144')`` raises :exc:`ValueError`. " -"``int(string, base)`` takes the base to convert from as a second optional " -"argument, so ``int( '0x144', 16) == 324``. If the base is specified as 0, " -"the number is interpreted using Python's rules: a leading '0o' indicates " -"octal, and '0x' indicates a hex number." +msgid "By default, these interpret the number as decimal, so that ``int('0144') == 144`` holds true, and ``int('0x144')`` raises :exc:`ValueError`. ``int(string, base)`` takes the base to convert from as a second optional argument, so ``int( '0x144', 16) == 324``. If the base is specified as 0, the number is interpreted using Python's rules: a leading '0o' indicates octal, and '0x' indicates a hex number." msgstr "" -#: ../../faq/programming.rst:883 -msgid "" -"Do not use the built-in function :func:`eval` if all you need is to convert " -"strings to numbers. :func:`eval` will be significantly slower and it " -"presents a security risk: someone could pass you a Python expression that " -"might have unwanted side effects. For example, someone could pass " -"``__import__('os').system(\"rm -rf $HOME\")`` which would erase your home " -"directory." +msgid "Do not use the built-in function :func:`eval` if all you need is to convert strings to numbers. :func:`eval` will be significantly slower and it presents a security risk: someone could pass you a Python expression that might have unwanted side effects. For example, someone could pass ``__import__('os').system(\"rm -rf $HOME\")`` which would erase your home directory." msgstr "" -#: ../../faq/programming.rst:890 -msgid "" -":func:`eval` also has the effect of interpreting numbers as Python " -"expressions, so that, for example, ``eval('09')`` gives a syntax error " -"because Python does not allow leading '0' in a decimal number (except '0')." +msgid ":func:`eval` also has the effect of interpreting numbers as Python expressions, so that, for example, ``eval('09')`` gives a syntax error because Python does not allow leading '0' in a decimal number (except '0')." msgstr "" -#: ../../faq/programming.rst:896 msgid "How do I convert a number to a string?" msgstr "" -#: ../../faq/programming.rst:898 -msgid "" -"For example, to convert the number ``144`` to the string ``'144'``, use the " -"built-in type constructor :func:`str`. If you want a hexadecimal or octal " -"representation, use the built-in functions :func:`hex` or :func:`oct`. For " -"fancy formatting, see the :ref:`f-strings` and :ref:`formatstrings` " -"sections. For example, ``\"{:04d}\".format(144)`` yields ``'0144'`` and " -"``\"{:.3f}\".format(1.0/3.0)`` yields ``'0.333'``." +msgid "For example, to convert the number ``144`` to the string ``'144'``, use the built-in type constructor :func:`str`. If you want a hexadecimal or octal representation, use the built-in functions :func:`hex` or :func:`oct`. For fancy formatting, see the :ref:`f-strings` and :ref:`formatstrings` sections. For example, ``\"{:04d}\".format(144)`` yields ``'0144'`` and ``\"{:.3f}\".format(1.0/3.0)`` yields ``'0.333'``." msgstr "" -#: ../../faq/programming.rst:907 msgid "How do I modify a string in place?" msgstr "" -#: ../../faq/programming.rst:909 -msgid "" -"You can't, because strings are immutable. In most situations, you should " -"simply construct a new string from the various parts you want to assemble it " -"from. However, if you need an object with the ability to modify in-place " -"Unicode data, try using an :class:`io.StringIO` object or the :mod:`array` " -"module::" +msgid "You can't, because strings are immutable. In most situations, you should simply construct a new string from the various parts you want to assemble it from. However, if you need an object with the ability to modify in-place Unicode data, try using an :class:`io.StringIO` object or the :mod:`array` module::" msgstr "" -#: ../../faq/programming.rst:915 msgid "" ">>> import io\n" ">>> s = \"Hello, world\"\n" @@ -1404,23 +856,15 @@ msgid "" "'yello, world'" msgstr "" -#: ../../faq/programming.rst:939 msgid "How do I use strings to call functions/methods?" msgstr "" -#: ../../faq/programming.rst:941 msgid "There are various techniques." msgstr "" -#: ../../faq/programming.rst:943 -msgid "" -"The best is to use a dictionary that maps strings to functions. The primary " -"advantage of this technique is that the strings do not need to match the " -"names of the functions. This is also the primary technique used to emulate " -"a case construct::" +msgid "The best is to use a dictionary that maps strings to functions. The primary advantage of this technique is that the strings do not need to match the names of the functions. This is also the primary technique used to emulate a case construct::" msgstr "" -#: ../../faq/programming.rst:948 msgid "" "def a():\n" " pass\n" @@ -1433,27 +877,20 @@ msgid "" "dispatch[get_input()]() # Note trailing parens to call function" msgstr "" -#: ../../faq/programming.rst:958 msgid "Use the built-in function :func:`getattr`::" msgstr "" -#: ../../faq/programming.rst:960 msgid "" "import foo\n" "getattr(foo, 'bar')()" msgstr "" -#: ../../faq/programming.rst:963 -msgid "" -"Note that :func:`getattr` works on any object, including classes, class " -"instances, modules, and so on." +msgid "Note that :func:`getattr` works on any object, including classes, class instances, modules, and so on." msgstr "" -#: ../../faq/programming.rst:966 msgid "This is used in several places in the standard library, like this::" msgstr "" -#: ../../faq/programming.rst:968 msgid "" "class Foo:\n" " def do_foo(self):\n" @@ -1466,11 +903,9 @@ msgid "" "f()" msgstr "" -#: ../../faq/programming.rst:979 msgid "Use :func:`locals` to resolve the function name::" msgstr "" -#: ../../faq/programming.rst:981 msgid "" "def myFunc():\n" " print(\"hello\")\n" @@ -1481,22 +916,12 @@ msgid "" "f()" msgstr "" -#: ../../faq/programming.rst:991 -msgid "" -"Is there an equivalent to Perl's ``chomp()`` for removing trailing newlines " -"from strings?" +msgid "Is there an equivalent to Perl's ``chomp()`` for removing trailing newlines from strings?" msgstr "" -#: ../../faq/programming.rst:993 -msgid "" -"You can use ``S.rstrip(\"\\r\\n\")`` to remove all occurrences of any line " -"terminator from the end of the string ``S`` without removing other trailing " -"whitespace. If the string ``S`` represents more than one line, with several " -"empty lines at the end, the line terminators for all the blank lines will be " -"removed::" +msgid "You can use ``S.rstrip(\"\\r\\n\")`` to remove all occurrences of any line terminator from the end of the string ``S`` without removing other trailing whitespace. If the string ``S`` represents more than one line, with several empty lines at the end, the line terminators for all the blank lines will be removed::" msgstr "" -#: ../../faq/programming.rst:999 msgid "" ">>> lines = (\"line 1 \\r\\n\"\n" "... \"\\r\\n\"\n" @@ -1505,55 +930,33 @@ msgid "" "'line 1 '" msgstr "" -#: ../../faq/programming.rst:1005 -msgid "" -"Since this is typically only desired when reading text one line at a time, " -"using ``S.rstrip()`` this way works well." +msgid "Since this is typically only desired when reading text one line at a time, using ``S.rstrip()`` this way works well." msgstr "" -#: ../../faq/programming.rst:1010 msgid "Is there a ``scanf()`` or ``sscanf()`` equivalent?" msgstr "" -#: ../../faq/programming.rst:1012 msgid "Not as such." msgstr "" -#: ../../faq/programming.rst:1014 -msgid "" -"For simple input parsing, the easiest approach is usually to split the line " -"into whitespace-delimited words using the :meth:`~str.split` method of " -"string objects and then convert decimal strings to numeric values " -"using :func:`int` or :func:`float`. :meth:`!split` supports an optional " -"\"sep\" parameter which is useful if the line uses something other than " -"whitespace as a separator." +msgid "For simple input parsing, the easiest approach is usually to split the line into whitespace-delimited words using the :meth:`~str.split` method of string objects and then convert decimal strings to numeric values using :func:`int` or :func:`float`. :meth:`!split` supports an optional \"sep\" parameter which is useful if the line uses something other than whitespace as a separator." msgstr "" -#: ../../faq/programming.rst:1020 -msgid "" -"For more complicated input parsing, regular expressions are more powerful " -"than C's ``sscanf`` and better suited for the task." +msgid "For more complicated input parsing, regular expressions are more powerful than C's ``sscanf`` and better suited for the task." msgstr "" -#: ../../faq/programming.rst:1025 msgid "What does ``UnicodeDecodeError`` or ``UnicodeEncodeError`` error mean?" msgstr "" -#: ../../faq/programming.rst:1027 msgid "See the :ref:`unicode-howto`." msgstr "" -#: ../../faq/programming.rst:1033 msgid "Can I end a raw string with an odd number of backslashes?" msgstr "" -#: ../../faq/programming.rst:1035 -msgid "" -"A raw string ending with an odd number of backslashes will escape the " -"string's quote::" +msgid "A raw string ending with an odd number of backslashes will escape the string's quote::" msgstr "" -#: ../../faq/programming.rst:1037 msgid "" ">>> r'C:\\this\\will\\not\\work\\'\n" " File \"\", line 1\n" @@ -1562,182 +965,95 @@ msgid "" "SyntaxError: unterminated string literal (detected at line 1)" msgstr "" -#: ../../faq/programming.rst:1043 -msgid "" -"There are several workarounds for this. One is to use regular strings and " -"double the backslashes::" +msgid "There are several workarounds for this. One is to use regular strings and double the backslashes::" msgstr "" -#: ../../faq/programming.rst:1046 msgid "" ">>> 'C:\\\\this\\\\will\\\\work\\\\'\n" "'C:\\\\this\\\\will\\\\work\\\\'" msgstr "" -#: ../../faq/programming.rst:1049 -msgid "" -"Another is to concatenate a regular string containing an escaped backslash " -"to the raw string::" +msgid "Another is to concatenate a regular string containing an escaped backslash to the raw string::" msgstr "" -#: ../../faq/programming.rst:1052 msgid "" ">>> r'C:\\this\\will\\work' '\\\\'\n" "'C:\\\\this\\\\will\\\\work\\\\'" msgstr "" -#: ../../faq/programming.rst:1055 -msgid "" -"It is also possible to use :func:`os.path.join` to append a backslash on " -"Windows::" +msgid "It is also possible to use :func:`os.path.join` to append a backslash on Windows::" msgstr "" -#: ../../faq/programming.rst:1057 msgid "" ">>> os.path.join(r'C:\\this\\will\\work', '')\n" "'C:\\\\this\\\\will\\\\work\\\\'" msgstr "" -#: ../../faq/programming.rst:1060 -msgid "" -"Note that while a backslash will \"escape\" a quote for the purposes of " -"determining where the raw string ends, no escaping occurs when interpreting " -"the value of the raw string. That is, the backslash remains present in the " -"value of the raw string::" +msgid "Note that while a backslash will \"escape\" a quote for the purposes of determining where the raw string ends, no escaping occurs when interpreting the value of the raw string. That is, the backslash remains present in the value of the raw string::" msgstr "" -#: ../../faq/programming.rst:1065 msgid "" ">>> r'backslash\\'preserved'\n" "\"backslash\\\\'preserved\"" msgstr "" -#: ../../faq/programming.rst:1068 msgid "Also see the specification in the :ref:`language reference `." msgstr "" -#: ../../faq/programming.rst:1072 msgid "Performance" msgstr "" -#: ../../faq/programming.rst:1075 msgid "My program is too slow. How do I speed it up?" msgstr "" -#: ../../faq/programming.rst:1077 -msgid "" -"That's a tough one, in general. First, here is a list of things to remember " -"before diving further:" +msgid "That's a tough one, in general. First, here is a list of things to remember before diving further:" msgstr "" -#: ../../faq/programming.rst:1080 -msgid "" -"Performance characteristics vary across Python implementations. This FAQ " -"focuses on :term:`CPython`." +msgid "Performance characteristics vary across Python implementations. This FAQ focuses on :term:`CPython`." msgstr "" -#: ../../faq/programming.rst:1082 -msgid "" -"Behaviour can vary across operating systems, especially when talking about I/" -"O or multi-threading." +msgid "Behaviour can vary across operating systems, especially when talking about I/O or multi-threading." msgstr "" -#: ../../faq/programming.rst:1084 -msgid "" -"You should always find the hot spots in your program *before* attempting to " -"optimize any code (see the :mod:`profile` module)." +msgid "You should always find the hot spots in your program *before* attempting to optimize any code (see the :mod:`profile` module)." msgstr "" -#: ../../faq/programming.rst:1086 -msgid "" -"Writing benchmark scripts will allow you to iterate quickly when searching " -"for improvements (see the :mod:`timeit` module)." +msgid "Writing benchmark scripts will allow you to iterate quickly when searching for improvements (see the :mod:`timeit` module)." msgstr "" -#: ../../faq/programming.rst:1088 -msgid "" -"It is highly recommended to have good code coverage (through unit testing or " -"any other technique) before potentially introducing regressions hidden in " -"sophisticated optimizations." +msgid "It is highly recommended to have good code coverage (through unit testing or any other technique) before potentially introducing regressions hidden in sophisticated optimizations." msgstr "" -#: ../../faq/programming.rst:1092 -msgid "" -"That being said, there are many tricks to speed up Python code. Here are " -"some general principles which go a long way towards reaching acceptable " -"performance levels:" +msgid "That being said, there are many tricks to speed up Python code. Here are some general principles which go a long way towards reaching acceptable performance levels:" msgstr "" -#: ../../faq/programming.rst:1096 -msgid "" -"Making your algorithms faster (or changing to faster ones) can yield much " -"larger benefits than trying to sprinkle micro-optimization tricks all over " -"your code." +msgid "Making your algorithms faster (or changing to faster ones) can yield much larger benefits than trying to sprinkle micro-optimization tricks all over your code." msgstr "" -#: ../../faq/programming.rst:1100 -msgid "" -"Use the right data structures. Study documentation for the :ref:`bltin-" -"types` and the :mod:`collections` module." +msgid "Use the right data structures. Study documentation for the :ref:`bltin-types` and the :mod:`collections` module." msgstr "" -#: ../../faq/programming.rst:1103 -msgid "" -"When the standard library provides a primitive for doing something, it is " -"likely (although not guaranteed) to be faster than any alternative you may " -"come up with. This is doubly true for primitives written in C, such as " -"builtins and some extension types. For example, be sure to use either " -"the :meth:`list.sort` built-in method or the related :func:`sorted` function " -"to do sorting (and see the :ref:`sortinghowto` for examples of moderately " -"advanced usage)." +msgid "When the standard library provides a primitive for doing something, it is likely (although not guaranteed) to be faster than any alternative you may come up with. This is doubly true for primitives written in C, such as builtins and some extension types. For example, be sure to use either the :meth:`list.sort` built-in method or the related :func:`sorted` function to do sorting (and see the :ref:`sortinghowto` for examples of moderately advanced usage)." msgstr "" -#: ../../faq/programming.rst:1111 -msgid "" -"Abstractions tend to create indirections and force the interpreter to work " -"more. If the levels of indirection outweigh the amount of useful work done, " -"your program will be slower. You should avoid excessive abstraction, " -"especially under the form of tiny functions or methods (which are also often " -"detrimental to readability)." +msgid "Abstractions tend to create indirections and force the interpreter to work more. If the levels of indirection outweigh the amount of useful work done, your program will be slower. You should avoid excessive abstraction, especially under the form of tiny functions or methods (which are also often detrimental to readability)." msgstr "" -#: ../../faq/programming.rst:1117 -msgid "" -"If you have reached the limit of what pure Python can allow, there are tools " -"to take you further away. For example, `Cython `_ can " -"compile a slightly modified version of Python code into a C extension, and " -"can be used on many different platforms. Cython can take advantage of " -"compilation (and optional type annotations) to make your code significantly " -"faster than when interpreted. If you are confident in your C programming " -"skills, you can also :ref:`write a C extension module ` " -"yourself." +msgid "If you have reached the limit of what pure Python can allow, there are tools to take you further away. For example, `Cython `_ can compile a slightly modified version of Python code into a C extension, and can be used on many different platforms. Cython can take advantage of compilation (and optional type annotations) to make your code significantly faster than when interpreted. If you are confident in your C programming skills, you can also :ref:`write a C extension module ` yourself." msgstr "" -#: ../../faq/programming.rst:1127 -msgid "" -"The wiki page devoted to `performance tips `_." +msgid "The wiki page devoted to `performance tips `_." msgstr "" -#: ../../faq/programming.rst:1134 msgid "What is the most efficient way to concatenate many strings together?" msgstr "" -#: ../../faq/programming.rst:1136 -msgid "" -":class:`str` and :class:`bytes` objects are immutable, therefore " -"concatenating many strings together is inefficient as each concatenation " -"creates a new object. In the general case, the total runtime cost is " -"quadratic in the total string length." +msgid ":class:`str` and :class:`bytes` objects are immutable, therefore concatenating many strings together is inefficient as each concatenation creates a new object. In the general case, the total runtime cost is quadratic in the total string length." msgstr "" -#: ../../faq/programming.rst:1141 -msgid "" -"To accumulate many :class:`str` objects, the recommended idiom is to place " -"them into a list and call :meth:`str.join` at the end::" +msgid "To accumulate many :class:`str` objects, the recommended idiom is to place them into a list and call :meth:`str.join` at the end::" msgstr "" -#: ../../faq/programming.rst:1144 msgid "" "chunks = []\n" "for s in my_strings:\n" @@ -1745,113 +1061,68 @@ msgid "" "result = ''.join(chunks)" msgstr "" -#: ../../faq/programming.rst:1149 msgid "(Another reasonably efficient idiom is to use :class:`io.StringIO`.)" msgstr "" -#: ../../faq/programming.rst:1151 -msgid "" -"To accumulate many :class:`bytes` objects, the recommended idiom is to " -"extend a :class:`bytearray` object using in-place concatenation (the ``+=`` " -"operator)::" +msgid "To accumulate many :class:`bytes` objects, the recommended idiom is to extend a :class:`bytearray` object using in-place concatenation (the ``+=`` operator)::" msgstr "" -#: ../../faq/programming.rst:1154 msgid "" "result = bytearray()\n" "for b in my_bytes_objects:\n" " result += b" msgstr "" -#: ../../faq/programming.rst:1160 msgid "Sequences (tuples/lists)" msgstr "" -#: ../../faq/programming.rst:1163 msgid "How do I convert between tuples and lists?" msgstr "" -#: ../../faq/programming.rst:1165 -msgid "" -"The type constructor ``tuple(seq)`` converts any sequence (actually, any " -"iterable) into a tuple with the same items in the same order." +msgid "The type constructor ``tuple(seq)`` converts any sequence (actually, any iterable) into a tuple with the same items in the same order." msgstr "" -#: ../../faq/programming.rst:1168 -msgid "" -"For example, ``tuple([1, 2, 3])`` yields ``(1, 2, 3)`` and ``tuple('abc')`` " -"yields ``('a', 'b', 'c')``. If the argument is a tuple, it does not make a " -"copy but returns the same object, so it is cheap to call :func:`tuple` when " -"you aren't sure that an object is already a tuple." +msgid "For example, ``tuple([1, 2, 3])`` yields ``(1, 2, 3)`` and ``tuple('abc')`` yields ``('a', 'b', 'c')``. If the argument is a tuple, it does not make a copy but returns the same object, so it is cheap to call :func:`tuple` when you aren't sure that an object is already a tuple." msgstr "" -#: ../../faq/programming.rst:1173 -msgid "" -"The type constructor ``list(seq)`` converts any sequence or iterable into a " -"list with the same items in the same order. For example, ``list((1, 2, " -"3))`` yields ``[1, 2, 3]`` and ``list('abc')`` yields ``['a', 'b', 'c']``. " -"If the argument is a list, it makes a copy just like ``seq[:]`` would." +msgid "The type constructor ``list(seq)`` converts any sequence or iterable into a list with the same items in the same order. For example, ``list((1, 2, 3))`` yields ``[1, 2, 3]`` and ``list('abc')`` yields ``['a', 'b', 'c']``. If the argument is a list, it makes a copy just like ``seq[:]`` would." msgstr "" -#: ../../faq/programming.rst:1180 msgid "What's a negative index?" msgstr "" -#: ../../faq/programming.rst:1182 -msgid "" -"Python sequences are indexed with positive numbers and negative numbers. " -"For positive numbers 0 is the first index 1 is the second index and so " -"forth. For negative indices -1 is the last index and -2 is the penultimate " -"(next to last) index and so forth. Think of ``seq[-n]`` as the same as " -"``seq[len(seq)-n]``." +msgid "Python sequences are indexed with positive numbers and negative numbers. For positive numbers 0 is the first index 1 is the second index and so forth. For negative indices -1 is the last index and -2 is the penultimate (next to last) index and so forth. Think of ``seq[-n]`` as the same as ``seq[len(seq)-n]``." msgstr "" -#: ../../faq/programming.rst:1187 -msgid "" -"Using negative indices can be very convenient. For example ``S[:-1]`` is " -"all of the string except for its last character, which is useful for " -"removing the trailing newline from a string." +msgid "Using negative indices can be very convenient. For example ``S[:-1]`` is all of the string except for its last character, which is useful for removing the trailing newline from a string." msgstr "" -#: ../../faq/programming.rst:1193 msgid "How do I iterate over a sequence in reverse order?" msgstr "" -#: ../../faq/programming.rst:1195 msgid "Use the :func:`reversed` built-in function::" msgstr "" -#: ../../faq/programming.rst:1197 msgid "" "for x in reversed(sequence):\n" " ... # do something with x ..." msgstr "" -#: ../../faq/programming.rst:1200 -msgid "" -"This won't touch your original sequence, but build a new copy with reversed " -"order to iterate over." +msgid "This won't touch your original sequence, but build a new copy with reversed order to iterate over." msgstr "" -#: ../../faq/programming.rst:1205 msgid "How do you remove duplicates from a list?" msgstr "" -#: ../../faq/programming.rst:1207 msgid "See the Python Cookbook for a long discussion of many ways to do this:" msgstr "" -#: ../../faq/programming.rst:1209 msgid "https://code.activestate.com/recipes/52560/" msgstr "" -#: ../../faq/programming.rst:1211 -msgid "" -"If you don't mind reordering the list, sort it and then scan from the end of " -"the list, deleting duplicates as you go::" +msgid "If you don't mind reordering the list, sort it and then scan from the end of the list, deleting duplicates as you go::" msgstr "" -#: ../../faq/programming.rst:1214 msgid "" "if mylist:\n" " mylist.sort()\n" @@ -1863,185 +1134,118 @@ msgid "" " last = mylist[i]" msgstr "" -#: ../../faq/programming.rst:1223 -msgid "" -"If all elements of the list may be used as set keys (that is, they are " -"all :term:`hashable`) this is often faster::" +msgid "If all elements of the list may be used as set keys (that is, they are all :term:`hashable`) this is often faster::" msgstr "" -#: ../../faq/programming.rst:1226 msgid "mylist = list(set(mylist))" msgstr "" -#: ../../faq/programming.rst:1228 -msgid "" -"This converts the list into a set, thereby removing duplicates, and then " -"back into a list." +msgid "This converts the list into a set, thereby removing duplicates, and then back into a list." msgstr "" -#: ../../faq/programming.rst:1233 msgid "How do you remove multiple items from a list?" msgstr "" -#: ../../faq/programming.rst:1235 -msgid "" -"As with removing duplicates, explicitly iterating in reverse with a delete " -"condition is one possibility. However, it is easier and faster to use slice " -"replacement with an implicit or explicit forward iteration. Here are three " -"variations::" +msgid "As with removing duplicates, explicitly iterating in reverse with a delete condition is one possibility. However, it is easier and faster to use slice replacement with an implicit or explicit forward iteration. Here are three variations::" msgstr "" -#: ../../faq/programming.rst:1240 msgid "" "mylist[:] = filter(keep_function, mylist)\n" "mylist[:] = (x for x in mylist if keep_condition)\n" "mylist[:] = [x for x in mylist if keep_condition]" msgstr "" -#: ../../faq/programming.rst:1244 msgid "The list comprehension may be fastest." msgstr "" -#: ../../faq/programming.rst:1248 msgid "How do you make an array in Python?" msgstr "" -#: ../../faq/programming.rst:1250 msgid "Use a list::" msgstr "" -#: ../../faq/programming.rst:1252 msgid "[\"this\", 1, \"is\", \"an\", \"array\"]" msgstr "" -#: ../../faq/programming.rst:1254 -msgid "" -"Lists are equivalent to C or Pascal arrays in their time complexity; the " -"primary difference is that a Python list can contain objects of many " -"different types." +msgid "Lists are equivalent to C or Pascal arrays in their time complexity; the primary difference is that a Python list can contain objects of many different types." msgstr "" -#: ../../faq/programming.rst:1257 -msgid "" -"The ``array`` module also provides methods for creating arrays of fixed " -"types with compact representations, but they are slower to index than " -"lists. Also note that `NumPy `_ and other third-party " -"packages define array-like structures with various characteristics as well." +msgid "The ``array`` module also provides methods for creating arrays of fixed types with compact representations, but they are slower to index than lists. Also note that `NumPy `_ and other third-party packages define array-like structures with various characteristics as well." msgstr "" -#: ../../faq/programming.rst:1263 -msgid "" -"To get Lisp-style linked lists, you can emulate *cons cells* using tuples::" +msgid "To get Lisp-style linked lists, you can emulate *cons cells* using tuples::" msgstr "" -#: ../../faq/programming.rst:1265 msgid "lisp_list = (\"like\", (\"this\", (\"example\", None) ) )" msgstr "" -#: ../../faq/programming.rst:1267 -msgid "" -"If mutability is desired, you could use lists instead of tuples. Here the " -"analogue of a Lisp *car* is ``lisp_list[0]`` and the analogue of *cdr* is " -"``lisp_list[1]``. Only do this if you're sure you really need to, because " -"it's usually a lot slower than using Python lists." +msgid "If mutability is desired, you could use lists instead of tuples. Here the analogue of a Lisp *car* is ``lisp_list[0]`` and the analogue of *cdr* is ``lisp_list[1]``. Only do this if you're sure you really need to, because it's usually a lot slower than using Python lists." msgstr "" -#: ../../faq/programming.rst:1276 msgid "How do I create a multidimensional list?" msgstr "" -#: ../../faq/programming.rst:1278 msgid "You probably tried to make a multidimensional array like this::" msgstr "" -#: ../../faq/programming.rst:1280 msgid ">>> A = [[None] * 2] * 3" msgstr "" -#: ../../faq/programming.rst:1282 msgid "This looks correct if you print it:" msgstr "" -#: ../../faq/programming.rst:1288 msgid "" ">>> A\n" "[[None, None], [None, None], [None, None]]" msgstr "" -#: ../../faq/programming.rst:1293 msgid "But when you assign a value, it shows up in multiple places:" msgstr "" -#: ../../faq/programming.rst:1299 msgid "" ">>> A[0][0] = 5\n" ">>> A\n" "[[5, None], [5, None], [5, None]]" msgstr "" -#: ../../faq/programming.rst:1305 -msgid "" -"The reason is that replicating a list with ``*`` doesn't create copies, it " -"only creates references to the existing objects. The ``*3`` creates a list " -"containing 3 references to the same list of length two. Changes to one row " -"will show in all rows, which is almost certainly not what you want." +msgid "The reason is that replicating a list with ``*`` doesn't create copies, it only creates references to the existing objects. The ``*3`` creates a list containing 3 references to the same list of length two. Changes to one row will show in all rows, which is almost certainly not what you want." msgstr "" -#: ../../faq/programming.rst:1310 -msgid "" -"The suggested approach is to create a list of the desired length first and " -"then fill in each element with a newly created list::" +msgid "The suggested approach is to create a list of the desired length first and then fill in each element with a newly created list::" msgstr "" -#: ../../faq/programming.rst:1313 msgid "" "A = [None] * 3\n" "for i in range(3):\n" " A[i] = [None] * 2" msgstr "" -#: ../../faq/programming.rst:1317 -msgid "" -"This generates a list containing 3 different lists of length two. You can " -"also use a list comprehension::" +msgid "This generates a list containing 3 different lists of length two. You can also use a list comprehension::" msgstr "" -#: ../../faq/programming.rst:1320 msgid "" "w, h = 2, 3\n" "A = [[None] * w for i in range(h)]" msgstr "" -#: ../../faq/programming.rst:1323 -msgid "" -"Or, you can use an extension that provides a matrix datatype; `NumPy " -"`_ is the best known." +msgid "Or, you can use an extension that provides a matrix datatype; `NumPy `_ is the best known." msgstr "" -#: ../../faq/programming.rst:1328 msgid "How do I apply a method or function to a sequence of objects?" msgstr "" -#: ../../faq/programming.rst:1330 -msgid "" -"To call a method or function and accumulate the return values in a list, " -"a :term:`list comprehension` is an elegant solution::" +msgid "To call a method or function and accumulate the return values in a list, a :term:`list comprehension` is an elegant solution::" msgstr "" -#: ../../faq/programming.rst:1333 msgid "" "result = [obj.method() for obj in mylist]\n" "\n" "result = [function(obj) for obj in mylist]" msgstr "" -#: ../../faq/programming.rst:1337 -msgid "" -"To just run the method or function without saving the return values, a " -"plain :keyword:`for` loop will suffice::" +msgid "To just run the method or function without saving the return values, a plain :keyword:`for` loop will suffice::" msgstr "" -#: ../../faq/programming.rst:1340 msgid "" "for obj in mylist:\n" " obj.method()\n" @@ -2050,30 +1254,18 @@ msgid "" " function(obj)" msgstr "" -#: ../../faq/programming.rst:1350 -msgid "" -"Why does a_tuple[i] += ['item'] raise an exception when the addition works?" +msgid "Why does a_tuple[i] += ['item'] raise an exception when the addition works?" msgstr "" -#: ../../faq/programming.rst:1352 -msgid "" -"This is because of a combination of the fact that augmented assignment " -"operators are *assignment* operators, and the difference between mutable and " -"immutable objects in Python." +msgid "This is because of a combination of the fact that augmented assignment operators are *assignment* operators, and the difference between mutable and immutable objects in Python." msgstr "" -#: ../../faq/programming.rst:1356 -msgid "" -"This discussion applies in general when augmented assignment operators are " -"applied to elements of a tuple that point to mutable objects, but we'll use " -"a ``list`` and ``+=`` as our exemplar." +msgid "This discussion applies in general when augmented assignment operators are applied to elements of a tuple that point to mutable objects, but we'll use a ``list`` and ``+=`` as our exemplar." msgstr "" -#: ../../faq/programming.rst:1360 msgid "If you wrote::" msgstr "" -#: ../../faq/programming.rst:1362 msgid "" ">>> a_tuple = (1, 2)\n" ">>> a_tuple[0] += 1\n" @@ -2082,22 +1274,12 @@ msgid "" "TypeError: 'tuple' object does not support item assignment" msgstr "" -#: ../../faq/programming.rst:1368 -msgid "" -"The reason for the exception should be immediately clear: ``1`` is added to " -"the object ``a_tuple[0]`` points to (``1``), producing the result object, " -"``2``, but when we attempt to assign the result of the computation, ``2``, " -"to element ``0`` of the tuple, we get an error because we can't change what " -"an element of a tuple points to." +msgid "The reason for the exception should be immediately clear: ``1`` is added to the object ``a_tuple[0]`` points to (``1``), producing the result object, ``2``, but when we attempt to assign the result of the computation, ``2``, to element ``0`` of the tuple, we get an error because we can't change what an element of a tuple points to." msgstr "" -#: ../../faq/programming.rst:1374 -msgid "" -"Under the covers, what this augmented assignment statement is doing is " -"approximately this::" +msgid "Under the covers, what this augmented assignment statement is doing is approximately this::" msgstr "" -#: ../../faq/programming.rst:1377 msgid "" ">>> result = a_tuple[0] + 1\n" ">>> a_tuple[0] = result\n" @@ -2106,17 +1288,12 @@ msgid "" "TypeError: 'tuple' object does not support item assignment" msgstr "" -#: ../../faq/programming.rst:1383 -msgid "" -"It is the assignment part of the operation that produces the error, since a " -"tuple is immutable." +msgid "It is the assignment part of the operation that produces the error, since a tuple is immutable." msgstr "" -#: ../../faq/programming.rst:1386 msgid "When you write something like::" msgstr "" -#: ../../faq/programming.rst:1388 msgid "" ">>> a_tuple = (['foo'], 'bar')\n" ">>> a_tuple[0] += ['item']\n" @@ -2125,30 +1302,17 @@ msgid "" "TypeError: 'tuple' object does not support item assignment" msgstr "" -#: ../../faq/programming.rst:1394 -msgid "" -"The exception is a bit more surprising, and even more surprising is the fact " -"that even though there was an error, the append worked::" +msgid "The exception is a bit more surprising, and even more surprising is the fact that even though there was an error, the append worked::" msgstr "" -#: ../../faq/programming.rst:1397 msgid "" ">>> a_tuple[0]\n" "['foo', 'item']" msgstr "" -#: ../../faq/programming.rst:1400 -msgid "" -"To see why this happens, you need to know that (a) if an object implements " -"an :meth:`~object.__iadd__` magic method, it gets called when the ``+=`` " -"augmented assignment is executed, and its return value is what gets used in " -"the assignment statement; and (b) for lists, :meth:`!__iadd__` is equivalent " -"to calling :meth:`~sequence.extend` on the list and returning the list. " -"That's why we say that for lists, ``+=`` is a \"shorthand\" " -"for :meth:`list.extend`::" +msgid "To see why this happens, you need to know that (a) if an object implements an :meth:`~object.__iadd__` magic method, it gets called when the ``+=`` augmented assignment is executed, and its return value is what gets used in the assignment statement; and (b) for lists, :meth:`!__iadd__` is equivalent to calling :meth:`~sequence.extend` on the list and returning the list. That's why we say that for lists, ``+=`` is a \"shorthand\" for :meth:`list.extend`::" msgstr "" -#: ../../faq/programming.rst:1408 msgid "" ">>> a_list = []\n" ">>> a_list += [1]\n" @@ -2156,29 +1320,20 @@ msgid "" "[1]" msgstr "" -#: ../../faq/programming.rst:1413 msgid "This is equivalent to::" msgstr "" -#: ../../faq/programming.rst:1415 msgid "" ">>> result = a_list.__iadd__([1])\n" ">>> a_list = result" msgstr "" -#: ../../faq/programming.rst:1418 -msgid "" -"The object pointed to by a_list has been mutated, and the pointer to the " -"mutated object is assigned back to ``a_list``. The end result of the " -"assignment is a no-op, since it is a pointer to the same object that " -"``a_list`` was previously pointing to, but the assignment still happens." +msgid "The object pointed to by a_list has been mutated, and the pointer to the mutated object is assigned back to ``a_list``. The end result of the assignment is a no-op, since it is a pointer to the same object that ``a_list`` was previously pointing to, but the assignment still happens." msgstr "" -#: ../../faq/programming.rst:1423 msgid "Thus, in our tuple example what is happening is equivalent to::" msgstr "" -#: ../../faq/programming.rst:1425 msgid "" ">>> result = a_tuple[0].__iadd__(['item'])\n" ">>> a_tuple[0] = result\n" @@ -2187,130 +1342,68 @@ msgid "" "TypeError: 'tuple' object does not support item assignment" msgstr "" -#: ../../faq/programming.rst:1431 -msgid "" -"The :meth:`!__iadd__` succeeds, and thus the list is extended, but even " -"though ``result`` points to the same object that ``a_tuple[0]`` already " -"points to, that final assignment still results in an error, because tuples " -"are immutable." +msgid "The :meth:`!__iadd__` succeeds, and thus the list is extended, but even though ``result`` points to the same object that ``a_tuple[0]`` already points to, that final assignment still results in an error, because tuples are immutable." msgstr "" -#: ../../faq/programming.rst:1437 -msgid "" -"I want to do a complicated sort: can you do a Schwartzian Transform in " -"Python?" +msgid "I want to do a complicated sort: can you do a Schwartzian Transform in Python?" msgstr "" -#: ../../faq/programming.rst:1439 -msgid "" -"The technique, attributed to Randal Schwartz of the Perl community, sorts " -"the elements of a list by a metric which maps each element to its \"sort " -"value\". In Python, use the ``key`` argument for the :meth:`list.sort` " -"method::" +msgid "The technique, attributed to Randal Schwartz of the Perl community, sorts the elements of a list by a metric which maps each element to its \"sort value\". In Python, use the ``key`` argument for the :meth:`list.sort` method::" msgstr "" -#: ../../faq/programming.rst:1443 msgid "" "Isorted = L[:]\n" "Isorted.sort(key=lambda s: int(s[10:15]))" msgstr "" -#: ../../faq/programming.rst:1448 msgid "How can I sort one list by values from another list?" msgstr "" -#: ../../faq/programming.rst:1450 -msgid "" -"Merge them into an iterator of tuples, sort the resulting list, and then " -"pick out the element you want." +msgid "Merge them into an iterator of tuples, sort the resulting list, and then pick out the element you want." msgstr "" -#: ../../faq/programming.rst:1465 msgid "Objects" msgstr "" -#: ../../faq/programming.rst:1468 msgid "What is a class?" msgstr "" -#: ../../faq/programming.rst:1470 -msgid "" -"A class is the particular object type created by executing a class " -"statement. Class objects are used as templates to create instance objects, " -"which embody both the data (attributes) and code (methods) specific to a " -"datatype." +msgid "A class is the particular object type created by executing a class statement. Class objects are used as templates to create instance objects, which embody both the data (attributes) and code (methods) specific to a datatype." msgstr "" -#: ../../faq/programming.rst:1474 -msgid "" -"A class can be based on one or more other classes, called its base " -"class(es). It then inherits the attributes and methods of its base classes. " -"This allows an object model to be successively refined by inheritance. You " -"might have a generic ``Mailbox`` class that provides basic accessor methods " -"for a mailbox, and subclasses such as ``MboxMailbox``, ``MaildirMailbox``, " -"``OutlookMailbox`` that handle various specific mailbox formats." +msgid "A class can be based on one or more other classes, called its base class(es). It then inherits the attributes and methods of its base classes. This allows an object model to be successively refined by inheritance. You might have a generic ``Mailbox`` class that provides basic accessor methods for a mailbox, and subclasses such as ``MboxMailbox``, ``MaildirMailbox``, ``OutlookMailbox`` that handle various specific mailbox formats." msgstr "" -#: ../../faq/programming.rst:1483 msgid "What is a method?" msgstr "" -#: ../../faq/programming.rst:1485 -msgid "" -"A method is a function on some object ``x`` that you normally call as " -"``x.name(arguments...)``. Methods are defined as functions inside the class " -"definition::" +msgid "A method is a function on some object ``x`` that you normally call as ``x.name(arguments...)``. Methods are defined as functions inside the class definition::" msgstr "" -#: ../../faq/programming.rst:1489 msgid "" "class C:\n" " def meth(self, arg):\n" " return arg * 2 + self.attribute" msgstr "" -#: ../../faq/programming.rst:1495 msgid "What is self?" msgstr "" -#: ../../faq/programming.rst:1497 -msgid "" -"Self is merely a conventional name for the first argument of a method. A " -"method defined as ``meth(self, a, b, c)`` should be called as ``x.meth(a, b, " -"c)`` for some instance ``x`` of the class in which the definition occurs; " -"the called method will think it is called as ``meth(x, a, b, c)``." +msgid "Self is merely a conventional name for the first argument of a method. A method defined as ``meth(self, a, b, c)`` should be called as ``x.meth(a, b, c)`` for some instance ``x`` of the class in which the definition occurs; the called method will think it is called as ``meth(x, a, b, c)``." msgstr "" -#: ../../faq/programming.rst:1502 msgid "See also :ref:`why-self`." msgstr "" -#: ../../faq/programming.rst:1506 -msgid "" -"How do I check if an object is an instance of a given class or of a subclass " -"of it?" +msgid "How do I check if an object is an instance of a given class or of a subclass of it?" msgstr "" -#: ../../faq/programming.rst:1508 -msgid "" -"Use the built-in function :func:`isinstance(obj, cls) `. You " -"can check if an object is an instance of any of a number of classes by " -"providing a tuple instead of a single class, for example, ``isinstance(obj, " -"(class1, class2, ...))``, and can also check whether an object is one of " -"Python's built-in types, for example, ``isinstance(obj, str)`` or " -"``isinstance(obj, (int, float, complex))``." +msgid "Use the built-in function :func:`isinstance(obj, cls) `. You can check if an object is an instance of any of a number of classes by providing a tuple instead of a single class, for example, ``isinstance(obj, (class1, class2, ...))``, and can also check whether an object is one of Python's built-in types, for example, ``isinstance(obj, str)`` or ``isinstance(obj, (int, float, complex))``." msgstr "" -#: ../../faq/programming.rst:1515 -msgid "" -"Note that :func:`isinstance` also checks for virtual inheritance from " -"an :term:`abstract base class`. So, the test will return ``True`` for a " -"registered class even if hasn't directly or indirectly inherited from it. " -"To test for \"true inheritance\", scan the :term:`method resolution order` " -"(MRO) of the class:" +msgid "Note that :func:`isinstance` also checks for virtual inheritance from an :term:`abstract base class`. So, the test will return ``True`` for a registered class even if hasn't directly or indirectly inherited from it. To test for \"true inheritance\", scan the :term:`method resolution order` (MRO) of the class:" msgstr "" -#: ../../faq/programming.rst:1521 msgid "" "from collections.abc import Mapping\n" "\n" @@ -2323,7 +1416,6 @@ msgid "" "Mapping.register(P)" msgstr "" -#: ../../faq/programming.rst:1533 msgid "" ">>> c = C()\n" ">>> isinstance(c, C) # direct\n" @@ -2342,17 +1434,9 @@ msgid "" "False" msgstr "" -#: ../../faq/programming.rst:1551 -msgid "" -"Note that most programs do not use :func:`isinstance` on user-defined " -"classes very often. If you are developing the classes yourself, a more " -"proper object-oriented style is to define methods on the classes that " -"encapsulate a particular behaviour, instead of checking the object's class " -"and doing a different thing based on what class it is. For example, if you " -"have a function that does something::" +msgid "Note that most programs do not use :func:`isinstance` on user-defined classes very often. If you are developing the classes yourself, a more proper object-oriented style is to define methods on the classes that encapsulate a particular behaviour, instead of checking the object's class and doing a different thing based on what class it is. For example, if you have a function that does something::" msgstr "" -#: ../../faq/programming.rst:1558 msgid "" "def search(obj):\n" " if isinstance(obj, Mailbox):\n" @@ -2362,13 +1446,9 @@ msgid "" " elif ..." msgstr "" -#: ../../faq/programming.rst:1565 -msgid "" -"A better approach is to define a ``search()`` method on all the classes and " -"just call it::" +msgid "A better approach is to define a ``search()`` method on all the classes and just call it::" msgstr "" -#: ../../faq/programming.rst:1568 msgid "" "class Mailbox:\n" " def search(self):\n" @@ -2381,27 +1461,15 @@ msgid "" "obj.search()" msgstr "" -#: ../../faq/programming.rst:1580 msgid "What is delegation?" msgstr "" -#: ../../faq/programming.rst:1582 -msgid "" -"Delegation is an object-oriented technique (also called a design pattern). " -"Let's say you have an object ``x`` and want to change the behaviour of just " -"one of its methods. You can create a new class that provides a new " -"implementation of the method you're interested in changing and delegates all " -"other methods to the corresponding method of ``x``." +msgid "Delegation is an object-oriented technique (also called a design pattern). Let's say you have an object ``x`` and want to change the behaviour of just one of its methods. You can create a new class that provides a new implementation of the method you're interested in changing and delegates all other methods to the corresponding method of ``x``." msgstr "" -#: ../../faq/programming.rst:1588 -msgid "" -"Python programmers can easily implement delegation. For example, the " -"following class implements a class that behaves like a file but converts all " -"written data to uppercase::" +msgid "Python programmers can easily implement delegation. For example, the following class implements a class that behaves like a file but converts all written data to uppercase::" msgstr "" -#: ../../faq/programming.rst:1592 msgid "" "class UpperOut:\n" "\n" @@ -2415,26 +1483,12 @@ msgid "" " return getattr(self._outfile, name)" msgstr "" -#: ../../faq/programming.rst:1603 -msgid "" -"Here the ``UpperOut`` class redefines the ``write()`` method to convert the " -"argument string to uppercase before calling the underlying " -"``self._outfile.write()`` method. All other methods are delegated to the " -"underlying ``self._outfile`` object. The delegation is accomplished via " -"the :meth:`~object.__getattr__` method; consult :ref:`the language reference " -"` for more information about controlling attribute access." +msgid "Here the ``UpperOut`` class redefines the ``write()`` method to convert the argument string to uppercase before calling the underlying ``self._outfile.write()`` method. All other methods are delegated to the underlying ``self._outfile`` object. The delegation is accomplished via the :meth:`~object.__getattr__` method; consult :ref:`the language reference ` for more information about controlling attribute access." msgstr "" -#: ../../faq/programming.rst:1610 -msgid "" -"Note that for more general cases delegation can get trickier. When " -"attributes must be set as well as retrieved, the class must define " -"a :meth:`~object.__setattr__` method too, and it must do so carefully. The " -"basic implementation of :meth:`!__setattr__` is roughly equivalent to the " -"following::" +msgid "Note that for more general cases delegation can get trickier. When attributes must be set as well as retrieved, the class must define a :meth:`~object.__setattr__` method too, and it must do so carefully. The basic implementation of :meth:`!__setattr__` is roughly equivalent to the following::" msgstr "" -#: ../../faq/programming.rst:1615 msgid "" "class X:\n" " ...\n" @@ -2443,14 +1497,9 @@ msgid "" " ..." msgstr "" -#: ../../faq/programming.rst:1621 -msgid "" -"Many :meth:`~object.__setattr__` implementations call :meth:`!" -"object.__setattr__` to set an attribute on self without causing infinite " -"recursion::" +msgid "Many :meth:`~object.__setattr__` implementations call :meth:`!object.__setattr__` to set an attribute on self without causing infinite recursion::" msgstr "" -#: ../../faq/programming.rst:1624 msgid "" "class X:\n" " def __setattr__(self, name, value):\n" @@ -2458,50 +1507,30 @@ msgid "" " object.__setattr__(self, name, value)" msgstr "" -#: ../../faq/programming.rst:1629 -msgid "" -"Alternatively, it is possible to set attributes by inserting entries " -"into :attr:`self.__dict__ ` directly." +msgid "Alternatively, it is possible to set attributes by inserting entries into :attr:`self.__dict__ ` directly." msgstr "" -#: ../../faq/programming.rst:1634 -msgid "" -"How do I call a method defined in a base class from a derived class that " -"extends it?" +msgid "How do I call a method defined in a base class from a derived class that extends it?" msgstr "" -#: ../../faq/programming.rst:1636 msgid "Use the built-in :func:`super` function::" msgstr "" -#: ../../faq/programming.rst:1638 msgid "" "class Derived(Base):\n" " def meth(self):\n" " super().meth() # calls Base.meth" msgstr "" -#: ../../faq/programming.rst:1642 -msgid "" -"In the example, :func:`super` will automatically determine the instance from " -"which it was called (the ``self`` value), look up the :term:`method " -"resolution order` (MRO) with ``type(self).__mro__``, and return the next in " -"line after ``Derived`` in the MRO: ``Base``." +msgid "In the example, :func:`super` will automatically determine the instance from which it was called (the ``self`` value), look up the :term:`method resolution order` (MRO) with ``type(self).__mro__``, and return the next in line after ``Derived`` in the MRO: ``Base``." msgstr "" -#: ../../faq/programming.rst:1649 msgid "How can I organize my code to make it easier to change the base class?" msgstr "" -#: ../../faq/programming.rst:1651 -msgid "" -"You could assign the base class to an alias and derive from the alias. Then " -"all you have to change is the value assigned to the alias. Incidentally, " -"this trick is also handy if you want to decide dynamically (such as " -"depending on availability of resources) which base class to use. Example::" +msgid "You could assign the base class to an alias and derive from the alias. Then all you have to change is the value assigned to the alias. Incidentally, this trick is also handy if you want to decide dynamically (such as depending on availability of resources) which base class to use. Example::" msgstr "" -#: ../../faq/programming.rst:1656 msgid "" "class Base:\n" " ...\n" @@ -2512,23 +1541,15 @@ msgid "" " ..." msgstr "" -#: ../../faq/programming.rst:1666 msgid "How do I create static class data and static class methods?" msgstr "" -#: ../../faq/programming.rst:1668 -msgid "" -"Both static data and static methods (in the sense of C++ or Java) are " -"supported in Python." +msgid "Both static data and static methods (in the sense of C++ or Java) are supported in Python." msgstr "" -#: ../../faq/programming.rst:1671 -msgid "" -"For static data, simply define a class attribute. To assign a new value to " -"the attribute, you have to explicitly use the class name in the assignment::" +msgid "For static data, simply define a class attribute. To assign a new value to the attribute, you have to explicitly use the class name in the assignment::" msgstr "" -#: ../../faq/programming.rst:1674 msgid "" "class C:\n" " count = 0 # number of times C.__init__ called\n" @@ -2540,30 +1561,18 @@ msgid "" " return C.count # or return self.count" msgstr "" -#: ../../faq/programming.rst:1683 -msgid "" -"``c.count`` also refers to ``C.count`` for any ``c`` such that " -"``isinstance(c, C)`` holds, unless overridden by ``c`` itself or by some " -"class on the base-class search path from ``c.__class__`` back to ``C``." +msgid "``c.count`` also refers to ``C.count`` for any ``c`` such that ``isinstance(c, C)`` holds, unless overridden by ``c`` itself or by some class on the base-class search path from ``c.__class__`` back to ``C``." msgstr "" -#: ../../faq/programming.rst:1687 -msgid "" -"Caution: within a method of C, an assignment like ``self.count = 42`` " -"creates a new and unrelated instance named \"count\" in ``self``'s own " -"dict. Rebinding of a class-static data name must always specify the class " -"whether inside a method or not::" +msgid "Caution: within a method of C, an assignment like ``self.count = 42`` creates a new and unrelated instance named \"count\" in ``self``'s own dict. Rebinding of a class-static data name must always specify the class whether inside a method or not::" msgstr "" -#: ../../faq/programming.rst:1692 msgid "C.count = 314" msgstr "" -#: ../../faq/programming.rst:1694 msgid "Static methods are possible::" msgstr "" -#: ../../faq/programming.rst:1696 msgid "" "class C:\n" " @staticmethod\n" @@ -2572,39 +1581,26 @@ msgid "" " ..." msgstr "" -#: ../../faq/programming.rst:1702 -msgid "" -"However, a far more straightforward way to get the effect of a static method " -"is via a simple module-level function::" +msgid "However, a far more straightforward way to get the effect of a static method is via a simple module-level function::" msgstr "" -#: ../../faq/programming.rst:1705 msgid "" "def getcount():\n" " return C.count" msgstr "" -#: ../../faq/programming.rst:1708 -msgid "" -"If your code is structured so as to define one class (or tightly related " -"class hierarchy) per module, this supplies the desired encapsulation." +msgid "If your code is structured so as to define one class (or tightly related class hierarchy) per module, this supplies the desired encapsulation." msgstr "" -#: ../../faq/programming.rst:1713 msgid "How can I overload constructors (or methods) in Python?" msgstr "" -#: ../../faq/programming.rst:1715 -msgid "" -"This answer actually applies to all methods, but the question usually comes " -"up first in the context of constructors." +msgid "This answer actually applies to all methods, but the question usually comes up first in the context of constructors." msgstr "" -#: ../../faq/programming.rst:1718 msgid "In C++ you'd write:" msgstr "" -#: ../../faq/programming.rst:1720 msgid "" "class C {\n" " C() { cout << \"No arguments\\n\"; }\n" @@ -2612,13 +1608,9 @@ msgid "" "}" msgstr "" -#: ../../faq/programming.rst:1727 -msgid "" -"In Python you have to write a single constructor that catches all cases " -"using default arguments. For example::" +msgid "In Python you have to write a single constructor that catches all cases using default arguments. For example::" msgstr "" -#: ../../faq/programming.rst:1730 msgid "" "class C:\n" " def __init__(self, i=None):\n" @@ -2628,45 +1620,29 @@ msgid "" " print(\"Argument is\", i)" msgstr "" -#: ../../faq/programming.rst:1737 msgid "This is not entirely equivalent, but close enough in practice." msgstr "" -#: ../../faq/programming.rst:1739 msgid "You could also try a variable-length argument list, for example::" msgstr "" -#: ../../faq/programming.rst:1741 msgid "" "def __init__(self, *args):\n" " ..." msgstr "" -#: ../../faq/programming.rst:1744 msgid "The same approach works for all method definitions." msgstr "" -#: ../../faq/programming.rst:1748 msgid "I try to use __spam and I get an error about _SomeClassName__spam." msgstr "" -#: ../../faq/programming.rst:1750 -msgid "" -"Variable names with double leading underscores are \"mangled\" to provide a " -"simple but effective way to define class private variables. Any identifier " -"of the form ``__spam`` (at least two leading underscores, at most one " -"trailing underscore) is textually replaced with ``_classname__spam``, where " -"``classname`` is the current class name with any leading underscores " -"stripped." +msgid "Variable names with double leading underscores are \"mangled\" to provide a simple but effective way to define class private variables. Any identifier of the form ``__spam`` (at least two leading underscores, at most one trailing underscore) is textually replaced with ``_classname__spam``, where ``classname`` is the current class name with any leading underscores stripped." msgstr "" -#: ../../faq/programming.rst:1756 -msgid "" -"The identifier can be used unchanged within the class, but to access it " -"outside the class, the mangled name must be used:" +msgid "The identifier can be used unchanged within the class, but to access it outside the class, the mangled name must be used:" msgstr "" -#: ../../faq/programming.rst:1759 msgid "" "class A:\n" " def __one(self):\n" @@ -2681,158 +1657,72 @@ msgid "" "four = 4 * A()._A__one()" msgstr "" -#: ../../faq/programming.rst:1773 -msgid "" -"In particular, this does not guarantee privacy since an outside user can " -"still deliberately access the private attribute; many Python programmers " -"never bother to use private variable names at all." +msgid "In particular, this does not guarantee privacy since an outside user can still deliberately access the private attribute; many Python programmers never bother to use private variable names at all." msgstr "" -#: ../../faq/programming.rst:1779 -msgid "" -"The :ref:`private name mangling specifications ` for " -"details and special cases." +msgid "The :ref:`private name mangling specifications ` for details and special cases." msgstr "" -#: ../../faq/programming.rst:1784 msgid "My class defines __del__ but it is not called when I delete the object." msgstr "" -#: ../../faq/programming.rst:1786 msgid "There are several possible reasons for this." msgstr "" -#: ../../faq/programming.rst:1788 -msgid "" -"The :keyword:`del` statement does not necessarily " -"call :meth:`~object.__del__` -- it simply decrements the object's reference " -"count, and if this reaches zero :meth:`!__del__` is called." +msgid "The :keyword:`del` statement does not necessarily call :meth:`~object.__del__` -- it simply decrements the object's reference count, and if this reaches zero :meth:`!__del__` is called." msgstr "" -#: ../../faq/programming.rst:1792 -msgid "" -"If your data structures contain circular links (for example, a tree where " -"each child has a parent reference and each parent has a list of children) " -"the reference counts will never go back to zero. Once in a while Python " -"runs an algorithm to detect such cycles, but the garbage collector might run " -"some time after the last reference to your data structure vanishes, so " -"your :meth:`!__del__` method may be called at an inconvenient and random " -"time. This is inconvenient if you're trying to reproduce a problem. Worse, " -"the order in which object's :meth:`!__del__` methods are executed is " -"arbitrary. You can run :func:`gc.collect` to force a collection, but there " -"*are* pathological cases where objects will never be collected." +msgid "If your data structures contain circular links (for example, a tree where each child has a parent reference and each parent has a list of children) the reference counts will never go back to zero. Once in a while Python runs an algorithm to detect such cycles, but the garbage collector might run some time after the last reference to your data structure vanishes, so your :meth:`!__del__` method may be called at an inconvenient and random time. This is inconvenient if you're trying to reproduce a problem. Worse, the order in which object's :meth:`!__del__` methods are executed is arbitrary. You can run :func:`gc.collect` to force a collection, but there *are* pathological cases where objects will never be collected." msgstr "" -#: ../../faq/programming.rst:1803 -msgid "" -"Despite the cycle collector, it's still a good idea to define an explicit " -"``close()`` method on objects to be called whenever you're done with them. " -"The ``close()`` method can then remove attributes that refer to subobjects. " -"Don't call :meth:`!__del__` directly -- :meth:`!__del__` should call " -"``close()`` and ``close()`` should make sure that it can be called more than " -"once for the same object." +msgid "Despite the cycle collector, it's still a good idea to define an explicit ``close()`` method on objects to be called whenever you're done with them. The ``close()`` method can then remove attributes that refer to subobjects. Don't call :meth:`!__del__` directly -- :meth:`!__del__` should call ``close()`` and ``close()`` should make sure that it can be called more than once for the same object." msgstr "" -#: ../../faq/programming.rst:1810 -msgid "" -"Another way to avoid cyclical references is to use the :mod:`weakref` " -"module, which allows you to point to objects without incrementing their " -"reference count. Tree data structures, for instance, should use weak " -"references for their parent and sibling references (if they need them!)." +msgid "Another way to avoid cyclical references is to use the :mod:`weakref` module, which allows you to point to objects without incrementing their reference count. Tree data structures, for instance, should use weak references for their parent and sibling references (if they need them!)." msgstr "" -#: ../../faq/programming.rst:1823 -msgid "" -"Finally, if your :meth:`!__del__` method raises an exception, a warning " -"message is printed to :data:`sys.stderr`." +msgid "Finally, if your :meth:`!__del__` method raises an exception, a warning message is printed to :data:`sys.stderr`." msgstr "" -#: ../../faq/programming.rst:1828 msgid "How do I get a list of all instances of a given class?" msgstr "" -#: ../../faq/programming.rst:1830 -msgid "" -"Python does not keep track of all instances of a class (or of a built-in " -"type). You can program the class's constructor to keep track of all " -"instances by keeping a list of weak references to each instance." +msgid "Python does not keep track of all instances of a class (or of a built-in type). You can program the class's constructor to keep track of all instances by keeping a list of weak references to each instance." msgstr "" -#: ../../faq/programming.rst:1836 msgid "Why does the result of ``id()`` appear to be not unique?" msgstr "" -#: ../../faq/programming.rst:1838 -msgid "" -"The :func:`id` builtin returns an integer that is guaranteed to be unique " -"during the lifetime of the object. Since in CPython, this is the object's " -"memory address, it happens frequently that after an object is deleted from " -"memory, the next freshly created object is allocated at the same position in " -"memory. This is illustrated by this example:" +msgid "The :func:`id` builtin returns an integer that is guaranteed to be unique during the lifetime of the object. Since in CPython, this is the object's memory address, it happens frequently that after an object is deleted from memory, the next freshly created object is allocated at the same position in memory. This is illustrated by this example:" msgstr "" -#: ../../faq/programming.rst:1849 -msgid "" -"The two ids belong to different integer objects that are created before, and " -"deleted immediately after execution of the ``id()`` call. To be sure that " -"objects whose id you want to examine are still alive, create another " -"reference to the object:" +msgid "The two ids belong to different integer objects that are created before, and deleted immediately after execution of the ``id()`` call. To be sure that objects whose id you want to examine are still alive, create another reference to the object:" msgstr "" -#: ../../faq/programming.rst:1864 msgid "When can I rely on identity tests with the *is* operator?" msgstr "" -#: ../../faq/programming.rst:1866 -msgid "" -"The ``is`` operator tests for object identity. The test ``a is b`` is " -"equivalent to ``id(a) == id(b)``." +msgid "The ``is`` operator tests for object identity. The test ``a is b`` is equivalent to ``id(a) == id(b)``." msgstr "" -#: ../../faq/programming.rst:1869 -msgid "" -"The most important property of an identity test is that an object is always " -"identical to itself, ``a is a`` always returns ``True``. Identity tests are " -"usually faster than equality tests. And unlike equality tests, identity " -"tests are guaranteed to return a boolean ``True`` or ``False``." +msgid "The most important property of an identity test is that an object is always identical to itself, ``a is a`` always returns ``True``. Identity tests are usually faster than equality tests. And unlike equality tests, identity tests are guaranteed to return a boolean ``True`` or ``False``." msgstr "" -#: ../../faq/programming.rst:1874 -msgid "" -"However, identity tests can *only* be substituted for equality tests when " -"object identity is assured. Generally, there are three circumstances where " -"identity is guaranteed:" +msgid "However, identity tests can *only* be substituted for equality tests when object identity is assured. Generally, there are three circumstances where identity is guaranteed:" msgstr "" -#: ../../faq/programming.rst:1878 -msgid "" -"Assignments create new names but do not change object identity. After the " -"assignment ``new = old``, it is guaranteed that ``new is old``." +msgid "Assignments create new names but do not change object identity. After the assignment ``new = old``, it is guaranteed that ``new is old``." msgstr "" -#: ../../faq/programming.rst:1881 -msgid "" -"Putting an object in a container that stores object references does not " -"change object identity. After the list assignment ``s[0] = x``, it is " -"guaranteed that ``s[0] is x``." +msgid "Putting an object in a container that stores object references does not change object identity. After the list assignment ``s[0] = x``, it is guaranteed that ``s[0] is x``." msgstr "" -#: ../../faq/programming.rst:1885 -msgid "" -"If an object is a singleton, it means that only one instance of that object " -"can exist. After the assignments ``a = None`` and ``b = None``, it is " -"guaranteed that ``a is b`` because ``None`` is a singleton." +msgid "If an object is a singleton, it means that only one instance of that object can exist. After the assignments ``a = None`` and ``b = None``, it is guaranteed that ``a is b`` because ``None`` is a singleton." msgstr "" -#: ../../faq/programming.rst:1889 -msgid "" -"In most other circumstances, identity tests are inadvisable and equality " -"tests are preferred. In particular, identity tests should not be used to " -"check constants such as :class:`int` and :class:`str` which aren't " -"guaranteed to be singletons::" +msgid "In most other circumstances, identity tests are inadvisable and equality tests are preferred. In particular, identity tests should not be used to check constants such as :class:`int` and :class:`str` which aren't guaranteed to be singletons::" msgstr "" -#: ../../faq/programming.rst:1894 msgid "" ">>> a = 10_000_000\n" ">>> b = 5_000_000\n" @@ -2847,11 +1737,9 @@ msgid "" "False" msgstr "" -#: ../../faq/programming.rst:1906 msgid "Likewise, new instances of mutable containers are never identical::" msgstr "" -#: ../../faq/programming.rst:1908 msgid "" ">>> a = []\n" ">>> b = []\n" @@ -2859,28 +1747,15 @@ msgid "" "False" msgstr "" -#: ../../faq/programming.rst:1913 -msgid "" -"In the standard library code, you will see several common patterns for " -"correctly using identity tests:" +msgid "In the standard library code, you will see several common patterns for correctly using identity tests:" msgstr "" -#: ../../faq/programming.rst:1916 -msgid "" -"As recommended by :pep:`8`, an identity test is the preferred way to check " -"for ``None``. This reads like plain English in code and avoids confusion " -"with other objects that may have boolean values that evaluate to false." +msgid "As recommended by :pep:`8`, an identity test is the preferred way to check for ``None``. This reads like plain English in code and avoids confusion with other objects that may have boolean values that evaluate to false." msgstr "" -#: ../../faq/programming.rst:1920 -msgid "" -"Detecting optional arguments can be tricky when ``None`` is a valid input " -"value. In those situations, you can create a singleton sentinel object " -"guaranteed to be distinct from other objects. For example, here is how to " -"implement a method that behaves like :meth:`dict.pop`:" +msgid "Detecting optional arguments can be tricky when ``None`` is a valid input value. In those situations, you can create a singleton sentinel object guaranteed to be distinct from other objects. For example, here is how to implement a method that behaves like :meth:`dict.pop`:" msgstr "" -#: ../../faq/programming.rst:1925 msgid "" "_sentinel = object()\n" "\n" @@ -2894,20 +1769,12 @@ msgid "" " return default" msgstr "" -#: ../../faq/programming.rst:1938 -msgid "" -"Container implementations sometimes need to augment equality tests with " -"identity tests. This prevents the code from being confused by objects such " -"as ``float('NaN')`` that are not equal to themselves." +msgid "Container implementations sometimes need to augment equality tests with identity tests. This prevents the code from being confused by objects such as ``float('NaN')`` that are not equal to themselves." msgstr "" -#: ../../faq/programming.rst:1942 -msgid "" -"For example, here is the implementation of :meth:`!" -"collections.abc.Sequence.__contains__`::" +msgid "For example, here is the implementation of :meth:`!collections.abc.Sequence.__contains__`::" msgstr "" -#: ../../faq/programming.rst:1945 msgid "" "def __contains__(self, value):\n" " for v in self:\n" @@ -2916,26 +1783,15 @@ msgid "" " return False" msgstr "" -#: ../../faq/programming.rst:1953 -msgid "" -"How can a subclass control what data is stored in an immutable instance?" +msgid "How can a subclass control what data is stored in an immutable instance?" msgstr "" -#: ../../faq/programming.rst:1955 -msgid "" -"When subclassing an immutable type, override the :meth:`~object.__new__` " -"method instead of the :meth:`~object.__init__` method. The latter only runs " -"*after* an instance is created, which is too late to alter data in an " -"immutable instance." +msgid "When subclassing an immutable type, override the :meth:`~object.__new__` method instead of the :meth:`~object.__init__` method. The latter only runs *after* an instance is created, which is too late to alter data in an immutable instance." msgstr "" -#: ../../faq/programming.rst:1960 -msgid "" -"All of these immutable classes have a different signature than their parent " -"class:" +msgid "All of these immutable classes have a different signature than their parent class:" msgstr "" -#: ../../faq/programming.rst:1963 msgid "" "import datetime as dt\n" "\n" @@ -2959,11 +1815,9 @@ msgid "" " return super().__new__(cls, s)" msgstr "" -#: ../../faq/programming.rst:1986 msgid "The classes can be used like this:" msgstr "" -#: ../../faq/programming.rst:1988 msgid "" ">>> FirstOfMonthDate(2012, 2, 14)\n" "FirstOfMonthDate(2012, 2, 1)\n" @@ -2975,52 +1829,27 @@ msgid "" "'blog-why-python-rocks'" msgstr "" -#: ../../faq/programming.rst:2003 msgid "How do I cache method calls?" msgstr "" -#: ../../faq/programming.rst:2005 -msgid "" -"The two principal tools for caching methods " -"are :deco:`functools.cached_property` and :deco:`functools.lru_cache`. The " -"former stores results at the instance level and the latter at the class " -"level." +msgid "The two principal tools for caching methods are :deco:`functools.cached_property` and :deco:`functools.lru_cache`. The former stores results at the instance level and the latter at the class level." msgstr "" -#: ../../faq/programming.rst:2010 -msgid "" -"The ``cached_property`` approach only works with methods that do not take " -"any arguments. It does not create a reference to the instance. The cached " -"method result will be kept only as long as the instance is alive." +msgid "The ``cached_property`` approach only works with methods that do not take any arguments. It does not create a reference to the instance. The cached method result will be kept only as long as the instance is alive." msgstr "" -#: ../../faq/programming.rst:2014 -msgid "" -"The advantage is that when an instance is no longer used, the cached method " -"result will be released right away. The disadvantage is that if instances " -"accumulate, so too will the accumulated method results. They can grow " -"without bound." +msgid "The advantage is that when an instance is no longer used, the cached method result will be released right away. The disadvantage is that if instances accumulate, so too will the accumulated method results. They can grow without bound." msgstr "" -#: ../../faq/programming.rst:2019 -msgid "" -"The ``lru_cache`` approach works with methods that have :term:`hashable` " -"arguments. It creates a reference to the instance unless special efforts " -"are made to pass in weak references." +msgid "The ``lru_cache`` approach works with methods that have :term:`hashable` arguments. It creates a reference to the instance unless special efforts are made to pass in weak references." msgstr "" -#: ../../faq/programming.rst:2023 -msgid "" -"The advantage of the least recently used algorithm is that the cache is " -"bounded by the specified *maxsize*. The disadvantage is that instances are " -"kept alive until they age out of the cache or until the cache is cleared." +msgid "The advantage of the least recently used algorithm is that the cache is bounded by the specified *maxsize*. The disadvantage is that instances are kept alive until they age out of the cache or until the cache is cleared." msgstr "" -#: ../../faq/programming.rst:2028 msgid "This example shows the various techniques::" msgstr "" -#: ../../faq/programming.rst:2030 msgid "" "class Weather:\n" " \"Lookup weather information on a government website\"\n" @@ -3045,22 +1874,12 @@ msgid "" " # Depends on the station_id, date, and units." msgstr "" -#: ../../faq/programming.rst:2052 -msgid "" -"The above example assumes that the *station_id* never changes. If the " -"relevant instance attributes are mutable, the ``cached_property`` approach " -"can't be made to work because it cannot detect changes to the attributes." +msgid "The above example assumes that the *station_id* never changes. If the relevant instance attributes are mutable, the ``cached_property`` approach can't be made to work because it cannot detect changes to the attributes." msgstr "" -#: ../../faq/programming.rst:2057 -msgid "" -"To make the ``lru_cache`` approach work when the *station_id* is mutable, " -"the class needs to define the :meth:`~object.__eq__` " -"and :meth:`~object.__hash__` methods so that the cache can detect relevant " -"attribute updates::" +msgid "To make the ``lru_cache`` approach work when the *station_id* is mutable, the class needs to define the :meth:`~object.__eq__` and :meth:`~object.__hash__` methods so that the cache can detect relevant attribute updates::" msgstr "" -#: ../../faq/programming.rst:2061 msgid "" "class Weather:\n" " \"Example with a mutable station identifier\"\n" @@ -3083,105 +1902,50 @@ msgid "" " # Depends on the station_id, date, and units." msgstr "" -#: ../../faq/programming.rst:2083 msgid "Modules" msgstr "" -#: ../../faq/programming.rst:2086 msgid "How do I create a .pyc file?" msgstr "" -#: ../../faq/programming.rst:2088 -msgid "" -"When a module is imported for the first time (or when the source file has " -"changed since the current compiled file was created) a ``.pyc`` file " -"containing the compiled code should be created in a ``__pycache__`` " -"subdirectory of the directory containing the ``.py`` file. The ``.pyc`` " -"file will have a filename that starts with the same name as the ``.py`` " -"file, and ends with ``.pyc``, with a middle component that depends on the " -"particular ``python`` binary that created it. (See :pep:`3147` for details.)" +msgid "When a module is imported for the first time (or when the source file has changed since the current compiled file was created) a ``.pyc`` file containing the compiled code should be created in a ``__pycache__`` subdirectory of the directory containing the ``.py`` file. The ``.pyc`` file will have a filename that starts with the same name as the ``.py`` file, and ends with ``.pyc``, with a middle component that depends on the particular ``python`` binary that created it. (See :pep:`3147` for details.)" msgstr "" -#: ../../faq/programming.rst:2096 -msgid "" -"One reason that a ``.pyc`` file may not be created is a permissions problem " -"with the directory containing the source file, meaning that the " -"``__pycache__`` subdirectory cannot be created. This can happen, for " -"example, if you develop as one user but run as another, such as if you are " -"testing with a web server." +msgid "One reason that a ``.pyc`` file may not be created is a permissions problem with the directory containing the source file, meaning that the ``__pycache__`` subdirectory cannot be created. This can happen, for example, if you develop as one user but run as another, such as if you are testing with a web server." msgstr "" -#: ../../faq/programming.rst:2101 -msgid "" -"Unless the :envvar:`PYTHONDONTWRITEBYTECODE` environment variable is set, " -"creation of a .pyc file is automatic if you're importing a module and Python " -"has the ability (permissions, free space, and so on) to create a " -"``__pycache__`` subdirectory and write the compiled module to that " -"subdirectory." +msgid "Unless the :envvar:`PYTHONDONTWRITEBYTECODE` environment variable is set, creation of a .pyc file is automatic if you're importing a module and Python has the ability (permissions, free space, and so on) to create a ``__pycache__`` subdirectory and write the compiled module to that subdirectory." msgstr "" -#: ../../faq/programming.rst:2106 -msgid "" -"Running Python on a top-level script is not considered an import and no " -"``.pyc`` will be created. For example, if you have a top-level module " -"``foo.py`` that imports another module ``xyz.py``, when you run ``foo`` (by " -"typing ``python foo.py`` as a shell command), a ``.pyc`` will be created for " -"``xyz`` because ``xyz`` is imported, but no ``.pyc`` file will be created " -"for ``foo`` since ``foo.py`` isn't being imported." +msgid "Running Python on a top-level script is not considered an import and no ``.pyc`` will be created. For example, if you have a top-level module ``foo.py`` that imports another module ``xyz.py``, when you run ``foo`` (by typing ``python foo.py`` as a shell command), a ``.pyc`` will be created for ``xyz`` because ``xyz`` is imported, but no ``.pyc`` file will be created for ``foo`` since ``foo.py`` isn't being imported." msgstr "" -#: ../../faq/programming.rst:2113 -msgid "" -"If you need to create a ``.pyc`` file for ``foo`` -- that is, to create a " -"``.pyc`` file for a module that is not imported -- you can, using " -"the :mod:`py_compile` and :mod:`compileall` modules." +msgid "If you need to create a ``.pyc`` file for ``foo`` -- that is, to create a ``.pyc`` file for a module that is not imported -- you can, using the :mod:`py_compile` and :mod:`compileall` modules." msgstr "" -#: ../../faq/programming.rst:2117 -msgid "" -"The :mod:`py_compile` module can manually compile any module. One way is to " -"use the ``compile()`` function in that module interactively::" +msgid "The :mod:`py_compile` module can manually compile any module. One way is to use the ``compile()`` function in that module interactively::" msgstr "" -#: ../../faq/programming.rst:2120 msgid "" ">>> import py_compile\n" ">>> py_compile.compile('foo.py')" msgstr "" -#: ../../faq/programming.rst:2123 -msgid "" -"This will write the ``.pyc`` to a ``__pycache__`` subdirectory in the same " -"location as ``foo.py`` (or you can override that with the optional parameter " -"*cfile*)." +msgid "This will write the ``.pyc`` to a ``__pycache__`` subdirectory in the same location as ``foo.py`` (or you can override that with the optional parameter *cfile*)." msgstr "" -#: ../../faq/programming.rst:2127 -msgid "" -"You can also automatically compile all files in a directory or directories " -"using the :mod:`compileall` module. You can do it from the shell prompt by " -"running ``compileall.py`` and providing the path of a directory containing " -"Python files to compile::" +msgid "You can also automatically compile all files in a directory or directories using the :mod:`compileall` module. You can do it from the shell prompt by running ``compileall.py`` and providing the path of a directory containing Python files to compile::" msgstr "" -#: ../../faq/programming.rst:2132 msgid "python -m compileall ." msgstr "" -#: ../../faq/programming.rst:2136 msgid "How do I find the current module name?" msgstr "" -#: ../../faq/programming.rst:2138 -msgid "" -"A module can find out its own module name by looking at the predefined " -"global variable ``__name__``. If this has the value ``'__main__'``, the " -"program is running as a script. Many modules that are usually used by " -"importing them also provide a command-line interface or a self-test, and " -"only execute this code after checking ``__name__``::" +msgid "A module can find out its own module name by looking at the predefined global variable ``__name__``. If this has the value ``'__main__'``, the program is running as a script. Many modules that are usually used by importing them also provide a command-line interface or a self-test, and only execute this code after checking ``__name__``::" msgstr "" -#: ../../faq/programming.rst:2144 msgid "" "def main():\n" " print('Running test...')\n" @@ -3191,190 +1955,118 @@ msgid "" " main()" msgstr "" -#: ../../faq/programming.rst:2153 msgid "How can I have modules that mutually import each other?" msgstr "" -#: ../../faq/programming.rst:2155 msgid "Suppose you have the following modules:" msgstr "" -#: ../../faq/programming.rst:2157 msgid ":file:`foo.py`::" msgstr "" -#: ../../faq/programming.rst:2159 msgid "" "from bar import bar_var\n" "foo_var = 1" msgstr "" -#: ../../faq/programming.rst:2162 msgid ":file:`bar.py`::" msgstr "" -#: ../../faq/programming.rst:2164 msgid "" "from foo import foo_var\n" "bar_var = 2" msgstr "" -#: ../../faq/programming.rst:2167 msgid "The problem is that the interpreter will perform the following steps:" msgstr "" -#: ../../faq/programming.rst:2169 msgid "main imports ``foo``" msgstr "" -#: ../../faq/programming.rst:2170 msgid "Empty globals for ``foo`` are created" msgstr "" -#: ../../faq/programming.rst:2171 msgid "``foo`` is compiled and starts executing" msgstr "" -#: ../../faq/programming.rst:2172 msgid "``foo`` imports ``bar``" msgstr "" -#: ../../faq/programming.rst:2173 msgid "Empty globals for ``bar`` are created" msgstr "" -#: ../../faq/programming.rst:2174 msgid "``bar`` is compiled and starts executing" msgstr "" -#: ../../faq/programming.rst:2175 -msgid "" -"``bar`` imports ``foo`` (which is a no-op since there already is a module " -"named ``foo``)" +msgid "``bar`` imports ``foo`` (which is a no-op since there already is a module named ``foo``)" msgstr "" -#: ../../faq/programming.rst:2176 -msgid "" -"The import mechanism tries to read ``foo_var`` from ``foo`` globals, to set " -"``bar.foo_var = foo.foo_var``" +msgid "The import mechanism tries to read ``foo_var`` from ``foo`` globals, to set ``bar.foo_var = foo.foo_var``" msgstr "" -#: ../../faq/programming.rst:2178 -msgid "" -"The last step fails, because Python isn't done with interpreting ``foo`` yet " -"and the global symbol dictionary for ``foo`` is still empty." +msgid "The last step fails, because Python isn't done with interpreting ``foo`` yet and the global symbol dictionary for ``foo`` is still empty." msgstr "" -#: ../../faq/programming.rst:2181 -msgid "" -"The same thing happens when you use ``import foo``, and then try to access " -"``foo.foo_var`` in global code." +msgid "The same thing happens when you use ``import foo``, and then try to access ``foo.foo_var`` in global code." msgstr "" -#: ../../faq/programming.rst:2184 msgid "There are (at least) three possible workarounds for this problem." msgstr "" -#: ../../faq/programming.rst:2186 -msgid "" -"Guido van Rossum recommends avoiding all uses of ``from " -"import ...``, and placing all code inside functions. Initializations of " -"global variables and class variables should use constants or built-in " -"functions only. This means everything from an imported module is referenced " -"as ``.``." +msgid "Guido van Rossum recommends avoiding all uses of ``from import ...``, and placing all code inside functions. Initializations of global variables and class variables should use constants or built-in functions only. This means everything from an imported module is referenced as ``.``." msgstr "" -#: ../../faq/programming.rst:2191 -msgid "" -"Jim Roskind suggests performing steps in the following order in each module:" +msgid "Jim Roskind suggests performing steps in the following order in each module:" msgstr "" -#: ../../faq/programming.rst:2193 -msgid "" -"exports (globals, functions, and classes that don't need imported base " -"classes)" +msgid "exports (globals, functions, and classes that don't need imported base classes)" msgstr "" -#: ../../faq/programming.rst:2195 msgid "``import`` statements" msgstr "" -#: ../../faq/programming.rst:2196 -msgid "" -"active code (including globals that are initialized from imported values)." +msgid "active code (including globals that are initialized from imported values)." msgstr "" -#: ../../faq/programming.rst:2198 -msgid "" -"Van Rossum doesn't like this approach much because the imports appear in a " -"strange place, but it does work." +msgid "Van Rossum doesn't like this approach much because the imports appear in a strange place, but it does work." msgstr "" -#: ../../faq/programming.rst:2201 -msgid "" -"Matthias Urlichs recommends restructuring your code so that the recursive " -"import is not necessary in the first place." +msgid "Matthias Urlichs recommends restructuring your code so that the recursive import is not necessary in the first place." msgstr "" -#: ../../faq/programming.rst:2204 msgid "These solutions are not mutually exclusive." msgstr "" -#: ../../faq/programming.rst:2208 msgid "__import__('x.y.z') returns ; how do I get z?" msgstr "" -#: ../../faq/programming.rst:2210 -msgid "" -"Consider using the convenience function :func:`~importlib.import_module` " -"from :mod:`importlib` instead::" +msgid "Consider using the convenience function :func:`~importlib.import_module` from :mod:`importlib` instead::" msgstr "" -#: ../../faq/programming.rst:2213 msgid "z = importlib.import_module('x.y.z')" msgstr "" -#: ../../faq/programming.rst:2217 -msgid "" -"When I edit an imported module and reimport it, the changes don't show up. " -"Why does this happen?" +msgid "When I edit an imported module and reimport it, the changes don't show up. Why does this happen?" msgstr "" -#: ../../faq/programming.rst:2219 -msgid "" -"For reasons of efficiency as well as consistency, Python only reads the " -"module file on the first time a module is imported. If it didn't, in a " -"program consisting of many modules where each one imports the same basic " -"module, the basic module would be parsed and re-parsed many times. To force " -"re-reading of a changed module, do this::" +msgid "For reasons of efficiency as well as consistency, Python only reads the module file on the first time a module is imported. If it didn't, in a program consisting of many modules where each one imports the same basic module, the basic module would be parsed and re-parsed many times. To force re-reading of a changed module, do this::" msgstr "" -#: ../../faq/programming.rst:2225 msgid "" "import importlib\n" "import modname\n" "importlib.reload(modname)" msgstr "" -#: ../../faq/programming.rst:2229 -msgid "" -"Warning: this technique is not 100% fool-proof. In particular, modules " -"containing statements like::" +msgid "Warning: this technique is not 100% fool-proof. In particular, modules containing statements like::" msgstr "" -#: ../../faq/programming.rst:2232 msgid "from modname import some_objects" msgstr "" -#: ../../faq/programming.rst:2234 -msgid "" -"will continue to work with the old version of the imported objects. If the " -"module contains class definitions, existing class instances will *not* be " -"updated to use the new class definition. This can result in the following " -"paradoxical behaviour::" +msgid "will continue to work with the old version of the imported objects. If the module contains class definitions, existing class instances will *not* be updated to use the new class definition. This can result in the following paradoxical behaviour::" msgstr "" -#: ../../faq/programming.rst:2239 msgid "" ">>> import importlib\n" ">>> import cls\n" @@ -3385,13 +2077,9 @@ msgid "" "False" msgstr "" -#: ../../faq/programming.rst:2247 -msgid "" -"The nature of the problem is made clear if you print out the \"identity\" of " -"the class objects::" +msgid "The nature of the problem is made clear if you print out the \"identity\" of the class objects::" msgstr "" -#: ../../faq/programming.rst:2250 msgid "" ">>> hex(id(c.__class__))\n" "'0x7352a0'\n" @@ -3399,18 +2087,14 @@ msgid "" "'0x4198d0'" msgstr "" -#: ../../faq/programming.rst:409 msgid "argument" msgstr "" -#: ../../faq/programming.rst:409 msgid "difference from parameter" msgstr "" -#: ../../faq/programming.rst:409 msgid "parameter" msgstr "" -#: ../../faq/programming.rst:409 msgid "difference from argument" msgstr "" diff --git a/faq/windows.po b/faq/windows.po index c2583ca9..7d493c64 100644 --- a/faq/windows.po +++ b/faq/windows.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:52+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,98 +24,54 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../faq/windows.rst:9 msgid "Python on Windows FAQ" msgstr "" -#: ../../faq/windows.rst:12 msgid "Contents" msgstr "" -#: ../../faq/windows.rst:22 msgid "How do I run a Python program under Windows?" msgstr "" -#: ../../faq/windows.rst:24 -msgid "" -"This is not necessarily a straightforward question. If you are already " -"familiar with running programs from the Windows command line then everything " -"will seem obvious; otherwise, you might need a little more guidance." +msgid "This is not necessarily a straightforward question. If you are already familiar with running programs from the Windows command line then everything will seem obvious; otherwise, you might need a little more guidance." msgstr "" -#: ../../faq/windows.rst:28 -msgid "" -"Unless you use some sort of integrated development environment, you will end " -"up *typing* Windows commands into what is referred to as a \"Command prompt " -"window\". Usually you can create such a window from your search bar by " -"searching for ``cmd``. You should be able to recognize when you have " -"started such a window because you will see a Windows \"command prompt\", " -"which usually looks like this:" +msgid "Unless you use some sort of integrated development environment, you will end up *typing* Windows commands into what is referred to as a \"Command prompt window\". Usually you can create such a window from your search bar by searching for ``cmd``. You should be able to recognize when you have started such a window because you will see a Windows \"command prompt\", which usually looks like this:" msgstr "" -#: ../../faq/windows.rst:35 msgid "C:\\>" msgstr "" -#: ../../faq/windows.rst:39 -msgid "" -"The letter may be different, and there might be other things after it, so " -"you might just as easily see something like:" +msgid "The letter may be different, and there might be other things after it, so you might just as easily see something like:" msgstr "" -#: ../../faq/windows.rst:42 msgid "D:\\YourName\\Projects\\Python>" msgstr "" -#: ../../faq/windows.rst:46 -msgid "" -"depending on how your computer has been set up and what else you have " -"recently done with it. Once you have started such a window, you are well on " -"the way to running Python programs." +msgid "depending on how your computer has been set up and what else you have recently done with it. Once you have started such a window, you are well on the way to running Python programs." msgstr "" -#: ../../faq/windows.rst:50 -msgid "" -"You need to realize that your Python scripts have to be processed by another " -"program called the Python *interpreter*. The interpreter reads your script, " -"compiles it into bytecodes, and then executes the bytecodes to run your " -"program. So, how do you arrange for the interpreter to handle your Python?" +msgid "You need to realize that your Python scripts have to be processed by another program called the Python *interpreter*. The interpreter reads your script, compiles it into bytecodes, and then executes the bytecodes to run your program. So, how do you arrange for the interpreter to handle your Python?" msgstr "" -#: ../../faq/windows.rst:55 -msgid "" -"First, you need to make sure that your command window recognises the word " -"\"py\" as an instruction to start the interpreter. If you have opened a " -"command window, you should try entering the command ``py`` and hitting " -"return:" +msgid "First, you need to make sure that your command window recognises the word \"py\" as an instruction to start the interpreter. If you have opened a command window, you should try entering the command ``py`` and hitting return:" msgstr "" -#: ../../faq/windows.rst:60 msgid "C:\\Users\\YourName> py" msgstr "" -#: ../../faq/windows.rst:64 msgid "You should then see something like:" msgstr "" -#: ../../faq/windows.rst:66 msgid "" -"Python 3.6.4 (v3.6.4:d48eceb, Dec 19 2017, 06:04:45) [MSC v.1900 32 bit " -"(Intel)] on win32\n" -"Type \"help\", \"copyright\", \"credits\" or \"license\" for more " -"information.\n" +"Python 3.6.4 (v3.6.4:d48eceb, Dec 19 2017, 06:04:45) [MSC v.1900 32 bit (Intel)] on win32\n" +"Type \"help\", \"copyright\", \"credits\" or \"license\" for more information.\n" ">>>" msgstr "" -#: ../../faq/windows.rst:72 -msgid "" -"You have started the interpreter in \"interactive mode\". That means you can " -"enter Python statements or expressions interactively and have them executed " -"or evaluated while you wait. This is one of Python's strongest features. " -"Check it by entering a few expressions of your choice and seeing the results:" +msgid "You have started the interpreter in \"interactive mode\". That means you can enter Python statements or expressions interactively and have them executed or evaluated while you wait. This is one of Python's strongest features. Check it by entering a few expressions of your choice and seeing the results:" msgstr "" -#: ../../faq/windows.rst:77 msgid "" ">>> print(\"Hello\")\n" "Hello\n" @@ -123,195 +79,83 @@ msgid "" "'HelloHelloHello'" msgstr "" -#: ../../faq/windows.rst:84 -msgid "" -"Many people use the interactive mode as a convenient yet highly programmable " -"calculator. When you want to end your interactive Python session, call " -"the :func:`exit` function or hold the :kbd:`Ctrl` key down while you enter " -"a :kbd:`Z`, then hit the \":kbd:`Enter`\" key to get back to your Windows " -"command prompt." +msgid "Many people use the interactive mode as a convenient yet highly programmable calculator. When you want to end your interactive Python session, call the :func:`exit` function or hold the :kbd:`Ctrl` key down while you enter a :kbd:`Z`, then hit the \":kbd:`Enter`\" key to get back to your Windows command prompt." msgstr "" -#: ../../faq/windows.rst:90 -msgid "" -"You may also find that you have a Start-menu entry such " -"as :menuselection:`Start --> Programs --> Python 3.x --> Python (command " -"line)` that results in you seeing the ``>>>`` prompt in a new window. If " -"so, the window will disappear after you call the :func:`exit` function or " -"enter the :kbd:`Ctrl-Z` character; Windows is running a single \"python\" " -"command in the window, and closes it when you terminate the interpreter." +msgid "You may also find that you have a Start-menu entry such as :menuselection:`Start --> Programs --> Python 3.x --> Python (command line)` that results in you seeing the ``>>>`` prompt in a new window. If so, the window will disappear after you call the :func:`exit` function or enter the :kbd:`Ctrl-Z` character; Windows is running a single \"python\" command in the window, and closes it when you terminate the interpreter." msgstr "" -#: ../../faq/windows.rst:97 -msgid "" -"Now that we know the ``py`` command is recognized, you can give your Python " -"script to it. You'll have to give either an absolute or a relative path to " -"the Python script. Let's say your Python script is located in your desktop " -"and is named ``hello.py``, and your command prompt is nicely opened in your " -"home directory so you're seeing something similar to::" +msgid "Now that we know the ``py`` command is recognized, you can give your Python script to it. You'll have to give either an absolute or a relative path to the Python script. Let's say your Python script is located in your desktop and is named ``hello.py``, and your command prompt is nicely opened in your home directory so you're seeing something similar to::" msgstr "" -#: ../../faq/windows.rst:104 msgid "C:\\Users\\YourName>" msgstr "" -#: ../../faq/windows.rst:106 -msgid "" -"So now you'll ask the ``py`` command to give your script to Python by typing " -"``py`` followed by your script path::" +msgid "So now you'll ask the ``py`` command to give your script to Python by typing ``py`` followed by your script path::" msgstr "" -#: ../../faq/windows.rst:110 msgid "" "C:\\Users\\YourName> py Desktop\\hello.py\n" "hello" msgstr "" -#: ../../faq/windows.rst:114 msgid "How do I make Python scripts executable?" msgstr "" -#: ../../faq/windows.rst:116 -msgid "" -"On Windows, the standard Python installer already associates the .py " -"extension with a file type (Python.File) and gives that file type an open " -"command that runs the interpreter (``D:\\Program Files\\Python\\python.exe " -"\"%1\" %*``). This is enough to make scripts executable from the command " -"prompt as 'foo.py'. If you'd rather be able to execute the script by simple " -"typing 'foo' with no extension you need to add .py to the PATHEXT " -"environment variable." +msgid "On Windows, the standard Python installer already associates the .py extension with a file type (Python.File) and gives that file type an open command that runs the interpreter (``D:\\Program Files\\Python\\python.exe \"%1\" %*``). This is enough to make scripts executable from the command prompt as 'foo.py'. If you'd rather be able to execute the script by simple typing 'foo' with no extension you need to add .py to the PATHEXT environment variable." msgstr "" -#: ../../faq/windows.rst:124 msgid "Why does Python sometimes take so long to start?" msgstr "" -#: ../../faq/windows.rst:126 -msgid "" -"Usually Python starts very quickly on Windows, but occasionally there are " -"bug reports that Python suddenly begins to take a long time to start up. " -"This is made even more puzzling because Python will work fine on other " -"Windows systems which appear to be configured identically." +msgid "Usually Python starts very quickly on Windows, but occasionally there are bug reports that Python suddenly begins to take a long time to start up. This is made even more puzzling because Python will work fine on other Windows systems which appear to be configured identically." msgstr "" -#: ../../faq/windows.rst:131 -msgid "" -"The problem may be caused by a misconfiguration of virus checking software " -"on the problem machine. Some virus scanners have been known to introduce " -"startup overhead of two orders of magnitude when the scanner is configured " -"to monitor all reads from the filesystem. Try checking the configuration of " -"virus scanning software on your systems to ensure that they are indeed " -"configured identically. McAfee, when configured to scan all file system read " -"activity, is a particular offender." +msgid "The problem may be caused by a misconfiguration of virus checking software on the problem machine. Some virus scanners have been known to introduce startup overhead of two orders of magnitude when the scanner is configured to monitor all reads from the filesystem. Try checking the configuration of virus scanning software on your systems to ensure that they are indeed configured identically. McAfee, when configured to scan all file system read activity, is a particular offender." msgstr "" -#: ../../faq/windows.rst:141 msgid "How do I make an executable from a Python script?" msgstr "" -#: ../../faq/windows.rst:143 -msgid "" -"See :ref:`faq-create-standalone-binary` for a list of tools that can be used " -"to make executables." +msgid "See :ref:`faq-create-standalone-binary` for a list of tools that can be used to make executables." msgstr "" -#: ../../faq/windows.rst:148 msgid "Is a ``*.pyd`` file the same as a DLL?" msgstr "" -#: ../../faq/windows.rst:150 -msgid "" -"Yes, .pyd files are dll's, but there are a few differences. If you have a " -"DLL named ``foo.pyd``, then it must have a function ``PyInit_foo()``. You " -"can then write Python \"import foo\", and Python will search for foo.pyd (as " -"well as foo.py, foo.pyc) and if it finds it, will attempt to call " -"``PyInit_foo()`` to initialize it. You do not link your .exe with foo.lib, " -"as that would cause Windows to require the DLL to be present." +msgid "Yes, .pyd files are dll's, but there are a few differences. If you have a DLL named ``foo.pyd``, then it must have a function ``PyInit_foo()``. You can then write Python \"import foo\", and Python will search for foo.pyd (as well as foo.py, foo.pyc) and if it finds it, will attempt to call ``PyInit_foo()`` to initialize it. You do not link your .exe with foo.lib, as that would cause Windows to require the DLL to be present." msgstr "" -#: ../../faq/windows.rst:157 -msgid "" -"Note that the search path for foo.pyd is PYTHONPATH, not the same as the " -"path that Windows uses to search for foo.dll. Also, foo.pyd need not be " -"present to run your program, whereas if you linked your program with a dll, " -"the dll is required. Of course, foo.pyd is required if you want to say " -"``import foo``. In a DLL, linkage is declared in the source code with " -"``__declspec(dllexport)``. In a .pyd, linkage is defined in a list of " -"available functions." +msgid "Note that the search path for foo.pyd is PYTHONPATH, not the same as the path that Windows uses to search for foo.dll. Also, foo.pyd need not be present to run your program, whereas if you linked your program with a dll, the dll is required. Of course, foo.pyd is required if you want to say ``import foo``. In a DLL, linkage is declared in the source code with ``__declspec(dllexport)``. In a .pyd, linkage is defined in a list of available functions." msgstr "" -#: ../../faq/windows.rst:166 msgid "How can I embed Python into a Windows application?" msgstr "" -#: ../../faq/windows.rst:168 -msgid "" -"Embedding the Python interpreter in a Windows app can be summarized as " -"follows:" +msgid "Embedding the Python interpreter in a Windows app can be summarized as follows:" msgstr "" -#: ../../faq/windows.rst:170 -msgid "" -"Do **not** build Python into your .exe file directly. On Windows, Python " -"must be a DLL to handle importing modules that are themselves DLL's. (This " -"is the first key undocumented fact.) Instead, link " -"to :file:`python{NN}.dll`; it is typically installed in ``C:" -"\\Windows\\System``. *NN* is the Python version, a number such as \"33\" " -"for Python 3.3." +msgid "Do **not** build Python into your .exe file directly. On Windows, Python must be a DLL to handle importing modules that are themselves DLL's. (This is the first key undocumented fact.) Instead, link to :file:`python{NN}.dll`; it is typically installed in ``C:\\Windows\\System``. *NN* is the Python version, a number such as \"33\" for Python 3.3." msgstr "" -#: ../../faq/windows.rst:176 -msgid "" -"You can link to Python in two different ways. Load-time linking means " -"linking against :file:`python{NN}.lib`, while run-time linking means linking " -"against :file:`python{NN}.dll`. (General note: :file:`python{NN}.lib` is " -"the so-called \"import lib\" corresponding to :file:`python{NN}.dll`. It " -"merely defines symbols for the linker.)" +msgid "You can link to Python in two different ways. Load-time linking means linking against :file:`python{NN}.lib`, while run-time linking means linking against :file:`python{NN}.dll`. (General note: :file:`python{NN}.lib` is the so-called \"import lib\" corresponding to :file:`python{NN}.dll`. It merely defines symbols for the linker.)" msgstr "" -#: ../../faq/windows.rst:182 -msgid "" -"Run-time linking greatly simplifies link options; everything happens at run " -"time. Your code must load :file:`python{NN}.dll` using the Windows " -"``LoadLibraryEx()`` routine. The code must also use access routines and " -"data in :file:`python{NN}.dll` (that is, Python's C API's) using pointers " -"obtained by the Windows ``GetProcAddress()`` routine. Macros can make using " -"these pointers transparent to any C code that calls routines in Python's C " -"API." +msgid "Run-time linking greatly simplifies link options; everything happens at run time. Your code must load :file:`python{NN}.dll` using the Windows ``LoadLibraryEx()`` routine. The code must also use access routines and data in :file:`python{NN}.dll` (that is, Python's C API's) using pointers obtained by the Windows ``GetProcAddress()`` routine. Macros can make using these pointers transparent to any C code that calls routines in Python's C API." msgstr "" -#: ../../faq/windows.rst:191 -msgid "" -"If you use SWIG, it is easy to create a Python \"extension module\" that " -"will make the app's data and methods available to Python. SWIG will handle " -"just about all the grungy details for you. The result is C code that you " -"link *into* your .exe file (!) You do **not** have to create a DLL file, " -"and this also simplifies linking." +msgid "If you use SWIG, it is easy to create a Python \"extension module\" that will make the app's data and methods available to Python. SWIG will handle just about all the grungy details for you. The result is C code that you link *into* your .exe file (!) You do **not** have to create a DLL file, and this also simplifies linking." msgstr "" -#: ../../faq/windows.rst:197 -msgid "" -"SWIG will create an init function (a C function) whose name depends on the " -"name of the extension module. For example, if the name of the module is " -"leo, the init function will be called initleo(). If you use SWIG shadow " -"classes, as you should, the init function will be called initleoc(). This " -"initializes a mostly hidden helper class used by the shadow class." +msgid "SWIG will create an init function (a C function) whose name depends on the name of the extension module. For example, if the name of the module is leo, the init function will be called initleo(). If you use SWIG shadow classes, as you should, the init function will be called initleoc(). This initializes a mostly hidden helper class used by the shadow class." msgstr "" -#: ../../faq/windows.rst:203 -msgid "" -"The reason you can link the C code in step 2 into your .exe file is that " -"calling the initialization function is equivalent to importing the module " -"into Python! (This is the second key undocumented fact.)" +msgid "The reason you can link the C code in step 2 into your .exe file is that calling the initialization function is equivalent to importing the module into Python! (This is the second key undocumented fact.)" msgstr "" -#: ../../faq/windows.rst:207 -msgid "" -"In short, you can use the following code to initialize the Python " -"interpreter with your extension module." +msgid "In short, you can use the following code to initialize the Python interpreter with your extension module." msgstr "" -#: ../../faq/windows.rst:210 msgid "" "#include \n" "...\n" @@ -320,110 +164,53 @@ msgid "" "PyRun_SimpleString(\"import myApp\"); // Import the shadow class." msgstr "" -#: ../../faq/windows.rst:218 -msgid "" -"There are two problems with Python's C API which will become apparent if you " -"use a compiler other than MSVC, the compiler used to build pythonNN.dll." +msgid "There are two problems with Python's C API which will become apparent if you use a compiler other than MSVC, the compiler used to build pythonNN.dll." msgstr "" -#: ../../faq/windows.rst:221 -msgid "" -"Problem 1: The so-called \"Very High Level\" functions that take ``FILE *`` " -"arguments will not work in a multi-compiler environment because each " -"compiler's notion of a ``struct FILE`` will be different. From an " -"implementation standpoint these are very low level functions." +msgid "Problem 1: The so-called \"Very High Level\" functions that take ``FILE *`` arguments will not work in a multi-compiler environment because each compiler's notion of a ``struct FILE`` will be different. From an implementation standpoint these are very low level functions." msgstr "" -#: ../../faq/windows.rst:226 -msgid "" -"Problem 2: SWIG generates the following code when generating wrappers to " -"void functions:" +msgid "Problem 2: SWIG generates the following code when generating wrappers to void functions:" msgstr "" -#: ../../faq/windows.rst:229 msgid "" "Py_INCREF(Py_None);\n" "_resultobj = Py_None;\n" "return _resultobj;" msgstr "" -#: ../../faq/windows.rst:235 -msgid "" -"Alas, Py_None is a macro that expands to a reference to a complex data " -"structure called _Py_NoneStruct inside pythonNN.dll. Again, this code will " -"fail in a mult-compiler environment. Replace such code by:" +msgid "Alas, Py_None is a macro that expands to a reference to a complex data structure called _Py_NoneStruct inside pythonNN.dll. Again, this code will fail in a mult-compiler environment. Replace such code by:" msgstr "" -#: ../../faq/windows.rst:239 msgid "return Py_BuildValue(\"\");" msgstr "" -#: ../../faq/windows.rst:243 -msgid "" -"It may be possible to use SWIG's ``%typemap`` command to make the change " -"automatically, though I have not been able to get this to work (I'm a " -"complete SWIG newbie)." +msgid "It may be possible to use SWIG's ``%typemap`` command to make the change automatically, though I have not been able to get this to work (I'm a complete SWIG newbie)." msgstr "" -#: ../../faq/windows.rst:247 -msgid "" -"Using a Python shell script to put up a Python interpreter window from " -"inside your Windows app is not a good idea; the resulting window will be " -"independent of your app's windowing system. Rather, you (or the " -"wxPythonWindow class) should create a \"native\" interpreter window. It is " -"easy to connect that window to the Python interpreter. You can redirect " -"Python's i/o to _any_ object that supports read and write, so all you need " -"is a Python object (defined in your extension module) that contains read() " -"and write() methods." +msgid "Using a Python shell script to put up a Python interpreter window from inside your Windows app is not a good idea; the resulting window will be independent of your app's windowing system. Rather, you (or the wxPythonWindow class) should create a \"native\" interpreter window. It is easy to connect that window to the Python interpreter. You can redirect Python's i/o to _any_ object that supports read and write, so all you need is a Python object (defined in your extension module) that contains read() and write() methods." msgstr "" -#: ../../faq/windows.rst:256 msgid "How do I keep editors from inserting tabs into my Python source?" msgstr "" -#: ../../faq/windows.rst:258 -msgid "" -"The FAQ does not recommend using tabs, and the Python style guide, :pep:`8`, " -"recommends 4 spaces for distributed Python code; this is also the Emacs " -"python-mode default." +msgid "The FAQ does not recommend using tabs, and the Python style guide, :pep:`8`, recommends 4 spaces for distributed Python code; this is also the Emacs python-mode default." msgstr "" -#: ../../faq/windows.rst:262 -msgid "" -"Under any editor, mixing tabs and spaces is a bad idea. MSVC is no " -"different in this respect, and is easily configured to use spaces: " -"Take :menuselection:`Tools --> Options --> Tabs`, and for file type " -"\"Default\" set \"Tab size\" and \"Indent size\" to 4, and select the " -"\"Insert spaces\" radio button." +msgid "Under any editor, mixing tabs and spaces is a bad idea. MSVC is no different in this respect, and is easily configured to use spaces: Take :menuselection:`Tools --> Options --> Tabs`, and for file type \"Default\" set \"Tab size\" and \"Indent size\" to 4, and select the \"Insert spaces\" radio button." msgstr "" -#: ../../faq/windows.rst:267 -msgid "" -"Python raises :exc:`IndentationError` or :exc:`TabError` if mixed tabs and " -"spaces are causing problems in leading whitespace. You may also run " -"the :mod:`tabnanny` module to check a directory tree in batch mode." +msgid "Python raises :exc:`IndentationError` or :exc:`TabError` if mixed tabs and spaces are causing problems in leading whitespace. You may also run the :mod:`tabnanny` module to check a directory tree in batch mode." msgstr "" -#: ../../faq/windows.rst:274 msgid "How do I check for a keypress without blocking?" msgstr "" -#: ../../faq/windows.rst:276 -msgid "" -"Use the :mod:`msvcrt` module. This is a standard Windows-specific extension " -"module. It defines a function ``kbhit()`` which checks whether a keyboard " -"hit is present, and ``getch()`` which gets one character without echoing it." +msgid "Use the :mod:`msvcrt` module. This is a standard Windows-specific extension module. It defines a function ``kbhit()`` which checks whether a keyboard hit is present, and ``getch()`` which gets one character without echoing it." msgstr "" -#: ../../faq/windows.rst:281 msgid "How do I solve the missing api-ms-win-crt-runtime-l1-1-0.dll error?" msgstr "" -#: ../../faq/windows.rst:283 -msgid "" -"This can occur on Python 3.5 and later when using Windows 8.1 or earlier " -"without all updates having been installed. First ensure your operating " -"system is supported and is up to date, and if that does not resolve the " -"issue, visit the `Microsoft support page `_ for guidance on manually installing the C Runtime update." +msgid "This can occur on Python 3.5 and later when using Windows 8.1 or earlier without all updates having been installed. First ensure your operating system is supported and is up to date, and if that does not resolve the issue, visit the `Microsoft support page `_ for guidance on manually installing the C Runtime update." msgstr "" diff --git a/glossary.po b/glossary.po index 22c9e82f..0fdf0a4f 100644 --- a/glossary.po +++ b/glossary.po @@ -16,7 +16,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2026-08-25 20:53+0330\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -27,111 +27,60 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Poedit 3.6\n" -#: ../../glossary.rst:5 msgid "Glossary" msgstr "واژه‌نامه" -#: ../../glossary.rst:10 msgid "``>>>``" msgstr "``>>>``" -#: ../../glossary.rst:12 msgid "The default Python prompt of the :term:`interactive` shell. Often seen for code examples which can be executed interactively in the interpreter." msgstr "اعلان پیش‌فرض پایتون در پوستهٔ :term:`تعاملی `. اغلب برای نمونه‌های کدی دیده می‌شود که می‌توان آن‌ها را به‌صورت تعاملی در مفسر اجرا کرد." -#: ../../glossary.rst:15 msgid "``...``" msgstr "``...``" -#: ../../glossary.rst:17 msgid "Can refer to:" msgstr "می‌تواند به موارد زیر اشاره کند:" -#: ../../glossary.rst:19 -msgid "" -"The default Python prompt of the :term:`interactive` shell when entering the code for an indented code block, when within a pair of matching left and right " -"delimiters (parentheses, square brackets, curly braces or triple quotes), or after specifying a decorator." -msgstr "" -"اعلان پیش‌فرض پایتون در پوستهٔ :term:`تعاملی ` هنگام وارد کردن کد برای یک بلوک کد تورفته، زمانی که درون یک جفت جداکنندهٔ چپ و راست متناظر (پرانتزها، " -"کروشه‌ها، آکولادها یا علامت‌های نقل‌قول سه‌گانه) قرار دارید، یا پس از مشخص کردن یک دکوراتور." +msgid "The default Python prompt of the :term:`interactive` shell when entering the code for an indented code block, when within a pair of matching left and right delimiters (parentheses, square brackets, curly braces or triple quotes), or after specifying a decorator." +msgstr "اعلان پیش‌فرض پایتون در پوستهٔ :term:`تعاملی ` هنگام وارد کردن کد برای یک بلوک کد تورفته، زمانی که درون یک جفت جداکنندهٔ چپ و راست متناظر (پرانتزها، کروشه‌ها، آکولادها یا علامت‌های نقل‌قول سه‌گانه) قرار دارید، یا پس از مشخص کردن یک دکوراتور." -#: ../../glossary.rst:26 msgid "The three dots form of the :ref:`Ellipsis ` object." msgstr "شکل سه‌نقطه‌ای شیء :ref:`Ellipsis `." -#: ../../glossary.rst:27 msgid "abstract base class" msgstr "کلاس پایهٔ انتزاعی" -#: ../../glossary.rst:29 -msgid "" -"Abstract base classes complement :term:`duck-typing` by providing a way to define interfaces when other techniques like :func:`hasattr` would be clumsy or subtly " -"wrong (for example with :ref:`magic methods `). ABCs introduce virtual subclasses, which are classes that don't inherit from a class but are " -"still recognized by :func:`isinstance` and :func:`issubclass`; see the :mod:`abc` module documentation. Python comes with many built-in ABCs for data structures " -"(in the :mod:`collections.abc` module), numbers (in the :mod:`numbers` module), streams (in the :mod:`io` module), import finders and loaders (in " -"the :mod:`importlib.abc` module). You can create your own ABCs with the :mod:`abc` module." -msgstr "" -"کلاس‌های پایهٔ انتزاعی با فراهم کردن روشی برای تعریف رابط‌ها، زمانی که تکنیک‌های دیگری مانند :func:`hasattr` دست‌وپاگیر یا به‌طور ضمنی نادرست هستند (برای مثال " -"با :ref:`magic methods `)، :term:`نوع‌دهی اردکی ` را تکمیل می‌کنند. ABCها زیرکلاس‌های مجازی معرفی می‌کنند، که کلاس‌هایی هستند که از یک " -"کلاس دیگر به ارث نمی‌برند اما همچنان توسط :func:`isinstance` و :func:`issubclass` شناخته می‌شوند؛ مستندات ماژول :mod:`abc` را ببینید. پایتون همراه با ABCهای توکار " -"بسیاری برای ساختارهای داده (در ماژول :mod:`collections.abc`)، اعداد (در ماژول :mod:`numbers`)، جریان‌ها (در ماژول :mod:`io`)، یابنده‌ها و بارگذارهای ایمپورت (در " -"ماژول :mod:`importlib.abc`) ارائه می‌شود. شما می‌توانید ABCهای سفارشی خود را با ماژول :mod:`abc` ایجاد کنید." +msgid "Abstract base classes complement :term:`duck-typing` by providing a way to define interfaces when other techniques like :func:`hasattr` would be clumsy or subtly wrong (for example with :ref:`magic methods `). ABCs introduce virtual subclasses, which are classes that don't inherit from a class but are still recognized by :func:`isinstance` and :func:`issubclass`; see the :mod:`abc` module documentation. Python comes with many built-in ABCs for data structures (in the :mod:`collections.abc` module), numbers (in the :mod:`numbers` module), streams (in the :mod:`io` module), import finders and loaders (in the :mod:`importlib.abc` module). You can create your own ABCs with the :mod:`abc` module." +msgstr "کلاس‌های پایهٔ انتزاعی با فراهم کردن روشی برای تعریف رابط‌ها، زمانی که تکنیک‌های دیگری مانند :func:`hasattr` دست‌وپاگیر یا به‌طور ضمنی نادرست هستند (برای مثال با :ref:`magic methods `)، :term:`نوع‌دهی اردکی ` را تکمیل می‌کنند. ABCها زیرکلاس‌های مجازی معرفی می‌کنند، که کلاس‌هایی هستند که از یک کلاس دیگر به ارث نمی‌برند اما همچنان توسط :func:`isinstance` و :func:`issubclass` شناخته می‌شوند؛ مستندات ماژول :mod:`abc` را ببینید. پایتون همراه با ABCهای توکار بسیاری برای ساختارهای داده (در ماژول :mod:`collections.abc`)، اعداد (در ماژول :mod:`numbers`)، جریان‌ها (در ماژول :mod:`io`)، یابنده‌ها و بارگذارهای ایمپورت (در ماژول :mod:`importlib.abc`) ارائه می‌شود. شما می‌توانید ABCهای سفارشی خود را با ماژول :mod:`abc` ایجاد کنید." -#: ../../glossary.rst:40 msgid "annotate function" msgstr "توابع حاشیه‌گذاری" -#: ../../glossary.rst:42 -msgid "" -"A callable that can be called to retrieve the :term:`annotations ` of an object. Annotate functions are usually :term:`functions `, " -"automatically generated as the :attr:`~object.__annotate__` attribute of functions, classes, and modules. Annotate functions are a subset of :term:`evaluate " -"functions `." -msgstr "" -"فراخوانی‌پذیری که می‌توان آن را برای بازیابی :term:`حاشیه‌گذاری ` یک شیء فراخوانی کرد. توابع حاشیه‌گذاری معمولاً :term:`توابعی ` هستند که به‌صورت " -"خودکار به‌عنوان ویژگی :attr:`~object.__annotate__` توابع، کلاس‌ها و ماژول‌ها تولید می‌شوند. توابع حاشیه‌گذاری زیرمجموعه‌ای از :term:`توابع ارزیابی ` " -"هستند." +msgid "A callable that can be called to retrieve the :term:`annotations ` of an object. Annotate functions are usually :term:`functions `, automatically generated as the :attr:`~object.__annotate__` attribute of functions, classes, and modules. Annotate functions are a subset of :term:`evaluate functions `." +msgstr "فراخوانی‌پذیری که می‌توان آن را برای بازیابی :term:`حاشیه‌گذاری ` یک شیء فراخوانی کرد. توابع حاشیه‌گذاری معمولاً :term:`توابعی ` هستند که به‌صورت خودکار به‌عنوان ویژگی :attr:`~object.__annotate__` توابع، کلاس‌ها و ماژول‌ها تولید می‌شوند. توابع حاشیه‌گذاری زیرمجموعه‌ای از :term:`توابع ارزیابی ` هستند." -#: ../../glossary.rst:47 msgid "annotation" msgstr "حاشیه‌گذاری" -#: ../../glossary.rst:49 msgid "A label associated with a variable, a class attribute or a function parameter or return value, used by convention as a :term:`type hint`." msgstr "برچسبی مرتبط با یک متغیر، یک ویژگی کلاس، یا یک پارامتر تابع یا مقدار بازگشتی، که طبق قرارداد به‌عنوان یک :term:`راهنمای نوع ` استفاده می‌شود." -#: ../../glossary.rst:53 -msgid "" -"Annotations of local variables cannot be accessed at runtime, but annotations of global variables, class attributes, and functions can be retrieved by " -"calling :func:`annotationlib.get_annotations` on modules, classes, and functions, respectively." -msgstr "" -"حاشیه‌گذاری‌های متغیرهای محلی را نمی‌توان در زمان ران‌تایم دسترسی کرد، اما حاشیه‌گذاری‌های متغیرهای سراسری، ویژگی‌های کلاس و توابع را می‌توان با " -"فراخوانی :func:`annotationlib.get_annotations` به‌ترتیب روی ماژول‌ها، کلاس‌ها و توابع بازیابی کرد." +msgid "Annotations of local variables cannot be accessed at runtime, but annotations of global variables, class attributes, and functions can be retrieved by calling :func:`annotationlib.get_annotations` on modules, classes, and functions, respectively." +msgstr "حاشیه‌گذاری‌های متغیرهای محلی را نمی‌توان در زمان ران‌تایم دسترسی کرد، اما حاشیه‌گذاری‌های متغیرهای سراسری، ویژگی‌های کلاس و توابع را می‌توان با فراخوانی :func:`annotationlib.get_annotations` به‌ترتیب روی ماژول‌ها، کلاس‌ها و توابع بازیابی کرد." -#: ../../glossary.rst:58 -msgid "" -"See :term:`variable annotation`, :term:`function annotation`, :pep:`484`, :pep:`526`, and :pep:`649`, which describe this functionality. Also " -"see :ref:`annotations-howto` for best practices on working with annotations." -msgstr "" -"همچنین به :term:`حاشیه‌نویسی متغیر `، :term:`حاشیه‌گذاری تابع `، :pep:`484`، :pep:`526` و :pep:`649` مراجعه کنید که این " -"قابلیت را توضیح می‌دهند. همچنین برای بهترین روش‌ها در کار با حاشیه‌گذاری‌ها، :ref:`annotations-howto` را ببینید." +msgid "See :term:`variable annotation`, :term:`function annotation`, :pep:`484`, :pep:`526`, and :pep:`649`, which describe this functionality. Also see :ref:`annotations-howto` for best practices on working with annotations." +msgstr "همچنین به :term:`حاشیه‌نویسی متغیر `، :term:`حاشیه‌گذاری تابع `، :pep:`484`، :pep:`526` و :pep:`649` مراجعه کنید که این قابلیت را توضیح می‌دهند. همچنین برای بهترین روش‌ها در کار با حاشیه‌گذاری‌ها، :ref:`annotations-howto` را ببینید." -#: ../../glossary.rst:62 msgid "argument" msgstr "آرگومان" -#: ../../glossary.rst:64 msgid "A value passed to a :term:`function` (or :term:`method`) when calling the function. There are two kinds of argument:" msgstr "مقداری که هنگام فراخوانی یک :term:`تابع ` (یا :term:`متد `) به آن تابع ارسال می‌شود. دو نوع آرگومان وجود دارد:" -#: ../../glossary.rst:67 -msgid "" -":dfn:`keyword argument`: an argument preceded by an identifier (e.g. ``name=``) in a function call or passed as a value in a dictionary preceded by ``**``. For " -"example, ``3`` and ``5`` are both keyword arguments in the following calls to :func:`complex`::" -msgstr "" -":dfn:`keyword argument`: آرگومانی که در فراخوانی تابع با یک شناسه (برای مثال ``name=``) پیش از آن قرار گرفته است، یا به‌عنوان مقداری در یک دیکشنری که پیش از آن " -"``**`` آمده است، ارسال می‌شود. برای مثال، ``3`` و ``5`` هر دو در فراخوانی‌های زیر از :func:`complex` آرگومان کلیدواژه‌ای هستند::" +msgid ":dfn:`keyword argument`: an argument preceded by an identifier (e.g. ``name=``) in a function call or passed as a value in a dictionary preceded by ``**``. For example, ``3`` and ``5`` are both keyword arguments in the following calls to :func:`complex`::" +msgstr ":dfn:`keyword argument`: آرگومانی که در فراخوانی تابع با یک شناسه (برای مثال ``name=``) پیش از آن قرار گرفته است، یا به‌عنوان مقداری در یک دیکشنری که پیش از آن ``**`` آمده است، ارسال می‌شود. برای مثال، ``3`` و ``5`` هر دو در فراخوانی‌های زیر از :func:`complex` آرگومان کلیدواژه‌ای هستند::" -#: ../../glossary.rst:72 msgid "" "complex(real=3, imag=5)\n" "complex(**{'real': 3, 'imag': 5})" @@ -139,15 +88,9 @@ msgstr "" "complex(real=3, imag=5)\n" "complex(**{'real': 3, 'imag': 5})" -#: ../../glossary.rst:75 -msgid "" -":dfn:`positional argument`: an argument that is not a keyword argument. Positional arguments can appear at the beginning of an argument list and/or be passed as " -"elements of an :term:`iterable` preceded by ``*``. For example, ``3`` and ``5`` are both positional arguments in the following calls::" -msgstr "" -":dfn:`positional argument`: آرگومانی که آرگومان کلیدواژه‌ای نیست. آرگومان‌های جایگاهی می‌توانند در ابتدای یک فهرست آرگومان ظاهر شوند و/یا به‌عنوان عناصر " -"یک :term:`تکرارپذیر ` که پیش از آن ``*`` آمده است، ارسال شوند. برای مثال، ``3`` و ``5`` هر دو در فراخوانی‌های زیر آرگومان جایگاهی هستند::" +msgid ":dfn:`positional argument`: an argument that is not a keyword argument. Positional arguments can appear at the beginning of an argument list and/or be passed as elements of an :term:`iterable` preceded by ``*``. For example, ``3`` and ``5`` are both positional arguments in the following calls::" +msgstr ":dfn:`positional argument`: آرگومانی که آرگومان کلیدواژه‌ای نیست. آرگومان‌های جایگاهی می‌توانند در ابتدای یک فهرست آرگومان ظاهر شوند و/یا به‌عنوان عناصر یک :term:`تکرارپذیر ` که پیش از آن ``*`` آمده است، ارسال شوند. برای مثال، ``3`` و ``5`` هر دو در فراخوانی‌های زیر آرگومان جایگاهی هستند::" -#: ../../glossary.rst:81 msgid "" "complex(3, 5)\n" "complex(*(3, 5))" @@ -155,351 +98,174 @@ msgstr "" "complex(3, 5)\n" "complex(*(3, 5))" -#: ../../glossary.rst:84 -msgid "" -"Arguments are assigned to the named local variables in a function body. See the :ref:`calls` section for the rules governing this assignment. Syntactically, any " -"expression can be used to represent an argument; the evaluated value is assigned to the local variable." -msgstr "" -"آرگومان‌ها به متغیرهای محلی نام‌گذاری‌شده در بدنهٔ یک تابع اختصاص داده می‌شوند. برای قوانین حاکم بر این تخصیص، بخش :ref:`calls` را ببینید. از نظر سینتکس، هر عبارتی " -"می‌تواند برای نمایش یک آرگومان استفاده شود؛ مقدار ارزیابی‌شده به متغیر محلی اختصاص داده می‌شود." +msgid "Arguments are assigned to the named local variables in a function body. See the :ref:`calls` section for the rules governing this assignment. Syntactically, any expression can be used to represent an argument; the evaluated value is assigned to the local variable." +msgstr "آرگومان‌ها به متغیرهای محلی نام‌گذاری‌شده در بدنهٔ یک تابع اختصاص داده می‌شوند. برای قوانین حاکم بر این تخصیص، بخش :ref:`calls` را ببینید. از نظر سینتکس، هر عبارتی می‌تواند برای نمایش یک آرگومان استفاده شود؛ مقدار ارزیابی‌شده به متغیر محلی اختصاص داده می‌شود." -#: ../../glossary.rst:89 -msgid "" -"See also the :term:`parameter` glossary entry, the FAQ question on :ref:`the difference between arguments and parameters `, " -"and :pep:`362`." -msgstr "" -"همچنین به ورودی واژه‌نامه‌ای :term:`پارامتر `، پرسش متداول دربارهٔ :ref:`تفاوت بین آرگومان‌ها و پارامترها ` و :pep:`362` مراجعه " -"کنید." +msgid "See also the :term:`parameter` glossary entry, the FAQ question on :ref:`the difference between arguments and parameters `, and :pep:`362`." +msgstr "همچنین به ورودی واژه‌نامه‌ای :term:`پارامتر `، پرسش متداول دربارهٔ :ref:`تفاوت بین آرگومان‌ها و پارامترها ` و :pep:`362` مراجعه کنید." -#: ../../glossary.rst:92 msgid "asynchronous context manager" msgstr "مدیر زمینهٔ ناهمگام" -#: ../../glossary.rst:94 -msgid "" -"An object which controls the environment seen in an :keyword:`async with` statement by defining :meth:`~object.__aenter__` and :meth:`~object.__aexit__` methods. " -"Introduced by :pep:`492`." -msgstr "" -"شی‌ءای که با تعریف متدهای :meth:`~object.__aenter__` و :meth:`~object.__aexit__`، محیط مشاهده‌شده در یک دستور :keyword:`async with` را کنترل می‌کند. این قابلیت " -"توسط :pep:`492` معرفی شد." +msgid "An object which controls the environment seen in an :keyword:`async with` statement by defining :meth:`~object.__aenter__` and :meth:`~object.__aexit__` methods. Introduced by :pep:`492`." +msgstr "شی‌ءای که با تعریف متدهای :meth:`~object.__aenter__` و :meth:`~object.__aexit__`، محیط مشاهده‌شده در یک دستور :keyword:`async with` را کنترل می‌کند. این قابلیت توسط :pep:`492` معرفی شد." -#: ../../glossary.rst:97 msgid "asynchronous generator" msgstr "تولیدگر ناهمگام" -#: ../../glossary.rst:99 -msgid "" -"Informally used to mean either an :term:`asynchronous generator function` or an :term:`asynchronous generator iterator`, depending on context. The formal " -"terms :term:`asynchronous generator function` and :term:`asynchronous generator iterator` are uncommon in practice; \"asynchronous generator\" alone is almost " -"always sufficient." -msgstr "" -"به‌صورت غیررسمی برای اشاره به یک :term:`تابع تولیدگر ناهمگام ` یا یک :term:`تکرارگر تولیدگر ناهمگام `، بسته به زمینه، استفاده می‌شود. اصطلاحات رسمی :term:`تابع تولیدگر ناهمگام ` و :term:`تکرارگر تولیدگر ناهمگام ` در عمل کمتر استفاده می‌شوند؛ «تولیدگر ناهمگام» به‌تنهایی تقریباً همیشه کافی است." +msgid "Informally used to mean either an :term:`asynchronous generator function` or an :term:`asynchronous generator iterator`, depending on context. The formal terms :term:`asynchronous generator function` and :term:`asynchronous generator iterator` are uncommon in practice; \"asynchronous generator\" alone is almost always sufficient." +msgstr "به‌صورت غیررسمی برای اشاره به یک :term:`تابع تولیدگر ناهمگام ` یا یک :term:`تکرارگر تولیدگر ناهمگام `، بسته به زمینه، استفاده می‌شود. اصطلاحات رسمی :term:`تابع تولیدگر ناهمگام ` و :term:`تکرارگر تولیدگر ناهمگام ` در عمل کمتر استفاده می‌شوند؛ «تولیدگر ناهمگام» به‌تنهایی تقریباً همیشه کافی است." -#: ../../glossary.rst:104 msgid "asynchronous generator function" msgstr "تابع تولیدگر ناهمگام" -#: ../../glossary.rst:106 -msgid "" -"A function which returns an :term:`asynchronous generator iterator`. It looks like a coroutine function defined with :keyword:`async def` except that it " -"contains :keyword:`yield` expressions for producing a series of values usable in an :keyword:`async for` loop. See :pep:`525`." -msgstr "" -"تابعی که یک :term:`تکرارگر تولیدگر ناهمگام ` بازمی‌گرداند. این تابع شبیه یک تابع هم‌روال که با :keyword:`async def` تعریف شده است " -"به نظر می‌رسد، با این تفاوت که شامل عبارت‌های :keyword:`yield` برای تولید مجموعه‌ای از مقادیر قابل استفاده در یک حلقهٔ :keyword:`async for` است. :pep:`525` را " -"ببینید." +msgid "A function which returns an :term:`asynchronous generator iterator`. It looks like a coroutine function defined with :keyword:`async def` except that it contains :keyword:`yield` expressions for producing a series of values usable in an :keyword:`async for` loop. See :pep:`525`." +msgstr "تابعی که یک :term:`تکرارگر تولیدگر ناهمگام ` بازمی‌گرداند. این تابع شبیه یک تابع هم‌روال که با :keyword:`async def` تعریف شده است به نظر می‌رسد، با این تفاوت که شامل عبارت‌های :keyword:`yield` برای تولید مجموعه‌ای از مقادیر قابل استفاده در یک حلقهٔ :keyword:`async for` است. :pep:`525` را ببینید." -#: ../../glossary.rst:111 msgid "An asynchronous generator function may contain :keyword:`await` expressions as well as :keyword:`async for`, and :keyword:`async with` statements." msgstr "یک تابع تولیدگر ناهمگام ممکن است علاوه بر عبارت‌های :keyword:`async for` و دستورهای :keyword:`async with`، شامل عبارت‌های :keyword:`await` نیز باشد." -#: ../../glossary.rst:114 msgid "asynchronous generator iterator" msgstr "تکرارگر تولیدگر ناهمگام" -#: ../../glossary.rst:116 msgid "An object created by an :term:`asynchronous generator function`." msgstr "شی‌ءای که توسط یک :term:`تابع تولیدگر ناهمگام ` ایجاد می‌شود." -#: ../../glossary.rst:118 -msgid "" -"This is an :term:`asynchronous iterator` which when called using the :meth:`~object.__anext__` method returns an awaitable object which will execute the body of " -"the asynchronous generator function until the next :keyword:`yield` expression." -msgstr "" -"این یک :term:`تکرارگر ناهمگام ` است که هنگام فراخوانی با استفاده از متد :meth:`~object.__anext__`، یک شیء awaitable بازمی‌گرداند که بدنهٔ " -"تابع تولیدگر ناهمگام را تا عبارت :keyword:`yield` بعدی اجرا خواهد کرد." +msgid "This is an :term:`asynchronous iterator` which when called using the :meth:`~object.__anext__` method returns an awaitable object which will execute the body of the asynchronous generator function until the next :keyword:`yield` expression." +msgstr "این یک :term:`تکرارگر ناهمگام ` است که هنگام فراخوانی با استفاده از متد :meth:`~object.__anext__`، یک شیء awaitable بازمی‌گرداند که بدنهٔ تابع تولیدگر ناهمگام را تا عبارت :keyword:`yield` بعدی اجرا خواهد کرد." -#: ../../glossary.rst:123 -msgid "" -"Each :keyword:`yield` temporarily suspends processing, remembering the execution state (including local variables and pending try-statements). When the " -"*asynchronous generator iterator* effectively resumes with another awaitable returned by :meth:`~object.__anext__`, it picks up where it left off. See :pep:`492` " -"and :pep:`525`." -msgstr "" -"هر :keyword:`yield` پردازش را به‌طور موقت متوقف می‌کند و وضعیت اجرا (شامل متغیرهای محلی و دستورهای try در انتظار) را به خاطر می‌سپارد. هنگامی که *تکرارگر تولیدگر " -"ناهمگام* عملاً با یک شیء awaitable دیگر که توسط :meth:`~object.__anext__` بازگردانده شده است ادامه می‌یابد، از همان نقطه‌ای که متوقف شده بود ادامه می‌دهد. :pep:`492` " -"و :pep:`525` را ببینید." +msgid "Each :keyword:`yield` temporarily suspends processing, remembering the execution state (including local variables and pending try-statements). When the *asynchronous generator iterator* effectively resumes with another awaitable returned by :meth:`~object.__anext__`, it picks up where it left off. See :pep:`492` and :pep:`525`." +msgstr "هر :keyword:`yield` پردازش را به‌طور موقت متوقف می‌کند و وضعیت اجرا (شامل متغیرهای محلی و دستورهای try در انتظار) را به خاطر می‌سپارد. هنگامی که *تکرارگر تولیدگر ناهمگام* عملاً با یک شیء awaitable دیگر که توسط :meth:`~object.__anext__` بازگردانده شده است ادامه می‌یابد، از همان نقطه‌ای که متوقف شده بود ادامه می‌دهد. :pep:`492` و :pep:`525` را ببینید." -#: ../../glossary.rst:128 msgid "asynchronous iterable" msgstr "تکرارپذیر ناهمگام" -#: ../../glossary.rst:130 -msgid "" -"An object, that can be used in an :keyword:`async for` statement. Must return an :term:`asynchronous iterator` from its :meth:`~object.__aiter__` method. " -"Introduced by :pep:`492`." -msgstr "" -"شی‌ءای که می‌تواند در یک دستور :keyword:`async for` استفاده شود. باید از متد :meth:`~object.__aiter__` خود یک :term:`تکرارگر ناهمگام ` " -"بازگرداند. این قابلیت توسط :pep:`492` معرفی شد." +msgid "An object, that can be used in an :keyword:`async for` statement. Must return an :term:`asynchronous iterator` from its :meth:`~object.__aiter__` method. Introduced by :pep:`492`." +msgstr "شی‌ءای که می‌تواند در یک دستور :keyword:`async for` استفاده شود. باید از متد :meth:`~object.__aiter__` خود یک :term:`تکرارگر ناهمگام ` بازگرداند. این قابلیت توسط :pep:`492` معرفی شد." -#: ../../glossary.rst:133 msgid "asynchronous iterator" msgstr "تکرارگر ناهمگام" -#: ../../glossary.rst:135 -msgid "" -"An object that implements the :meth:`~object.__aiter__` and :meth:`~object.__anext__` methods. :meth:`~object.__anext__` must return an :term:`awaitable` " -"object. :keyword:`async for` resolves the awaitables returned by an asynchronous iterator's :meth:`~object.__anext__` method until it raises " -"a :exc:`StopAsyncIteration` exception. Introduced by :pep:`492`." -msgstr "" -"شی‌ءای که متدهای :meth:`~object.__aiter__` و :meth:`~object.__anext__` را پیاده‌سازی می‌کند. :meth:`~object.__anext__` باید یک شیء :term:`awaitable ` " -"بازگرداند. :keyword:`async for` اشیای awaitable بازگردانده‌شده توسط متد :meth:`~object.__anext__` یک تکرارگر ناهمگام را تا زمانی که یک " -"استثنای :exc:`StopAsyncIteration` پرتاب شود، حل می‌کند. این قابلیت توسط :pep:`492` معرفی شد." +msgid "An object that implements the :meth:`~object.__aiter__` and :meth:`~object.__anext__` methods. :meth:`~object.__anext__` must return an :term:`awaitable` object. :keyword:`async for` resolves the awaitables returned by an asynchronous iterator's :meth:`~object.__anext__` method until it raises a :exc:`StopAsyncIteration` exception. Introduced by :pep:`492`." +msgstr "شی‌ءای که متدهای :meth:`~object.__aiter__` و :meth:`~object.__anext__` را پیاده‌سازی می‌کند. :meth:`~object.__anext__` باید یک شیء :term:`awaitable ` بازگرداند. :keyword:`async for` اشیای awaitable بازگردانده‌شده توسط متد :meth:`~object.__anext__` یک تکرارگر ناهمگام را تا زمانی که یک استثنای :exc:`StopAsyncIteration` پرتاب شود، حل می‌کند. این قابلیت توسط :pep:`492` معرفی شد." -#: ../../glossary.rst:140 msgid "atomic operation" msgstr "عملیات اتمی" -#: ../../glossary.rst:142 -msgid "" -"An operation that appears to execute as a single, indivisible step: no other thread can observe it half-done, and its effects become visible all at once. Python " -"does not guarantee that high-level statements are atomic (for example, ``x += 1`` performs multiple bytecode operations and is not atomic). Atomicity is only " -"guaranteed where explicitly documented. See also :term:`race condition` and :term:`data race`." -msgstr "" -"عملیاتی که به نظر می‌رسد به‌عنوان یک گام واحد و تقسیم‌ناپذیر اجرا می‌شود: هیچ نخ دیگری نمی‌تواند اجرای ناقص آن را مشاهده کند و اثرات آن یکباره قابل مشاهده می‌شوند. " -"پایتون تضمین نمی‌کند که دستورهای سطح بالا اتمی باشند (برای مثال، ``x += 1`` چندین عملیات بایت‌کد انجام می‌دهد و اتمی نیست). اتمی بودن فقط در مواردی تضمین می‌شود که " -"به‌صراحت مستند شده باشند. همچنین :term:`شرط رقابت ` و :term:`رقابت داده ` را ببینید." +msgid "An operation that appears to execute as a single, indivisible step: no other thread can observe it half-done, and its effects become visible all at once. Python does not guarantee that high-level statements are atomic (for example, ``x += 1`` performs multiple bytecode operations and is not atomic). Atomicity is only guaranteed where explicitly documented. See also :term:`race condition` and :term:`data race`." +msgstr "عملیاتی که به نظر می‌رسد به‌عنوان یک گام واحد و تقسیم‌ناپذیر اجرا می‌شود: هیچ نخ دیگری نمی‌تواند اجرای ناقص آن را مشاهده کند و اثرات آن یکباره قابل مشاهده می‌شوند. پایتون تضمین نمی‌کند که دستورهای سطح بالا اتمی باشند (برای مثال، ``x += 1`` چندین عملیات بایت‌کد انجام می‌دهد و اتمی نیست). اتمی بودن فقط در مواردی تضمین می‌شود که به‌صراحت مستند شده باشند. همچنین :term:`شرط رقابت ` و :term:`رقابت داده ` را ببینید." -#: ../../glossary.rst:148 msgid "attached thread state" msgstr "وضعیت نخ متصل" -#: ../../glossary.rst:151 msgid "A :term:`thread state` that is active for the current OS thread." msgstr "یک :term:`وضعیت نخ اجرایی ` که برای نخ فعلی سیستم‌عامل فعال است." -#: ../../glossary.rst:153 msgid "When a :term:`thread state` is attached, the OS thread has access to the full Python C API and can safely invoke the bytecode interpreter." -msgstr "" -"هنگامی که یک :term:`وضعیت نخ اجرایی ` متصل است، نخ سیستم‌عامل به تمام API زبان C پایتون دسترسی دارد و می‌تواند به‌طور ایمن مفسر بایت‌کد را فراخوانی کند." +msgstr "هنگامی که یک :term:`وضعیت نخ اجرایی ` متصل است، نخ سیستم‌عامل به تمام API زبان C پایتون دسترسی دارد و می‌تواند به‌طور ایمن مفسر بایت‌کد را فراخوانی کند." -#: ../../glossary.rst:157 -msgid "" -"Unless a function explicitly notes otherwise, attempting to call the C API without an attached thread state will result in a fatal error or undefined behavior. A " -"thread state can be attached and detached explicitly by the user through the C API, or implicitly by the runtime, including during blocking C calls and by the " -"bytecode interpreter in between calls." -msgstr "" -"مگر این‌که یک تابع به‌طور صریح خلاف آن را ذکر کند، تلاش برای فراخوانی API زبان C بدون یک وضعیت نخ متصل، به یک خطای مهلک یا رفتار تعریف‌نشده منجر خواهد شد. یک وضعیت " -"نخ می‌تواند به‌صورت صریح توسط کاربر از طریق API زبان C متصل و جدا شود، یا به‌صورت ضمنی توسط ران‌تایم، از جمله در طول فراخوانی‌های C مسدودکننده و توسط مفسر بایت‌کد در " -"بین فراخوانی‌ها، مدیریت شود." +msgid "Unless a function explicitly notes otherwise, attempting to call the C API without an attached thread state will result in a fatal error or undefined behavior. A thread state can be attached and detached explicitly by the user through the C API, or implicitly by the runtime, including during blocking C calls and by the bytecode interpreter in between calls." +msgstr "مگر این‌که یک تابع به‌طور صریح خلاف آن را ذکر کند، تلاش برای فراخوانی API زبان C بدون یک وضعیت نخ متصل، به یک خطای مهلک یا رفتار تعریف‌نشده منجر خواهد شد. یک وضعیت نخ می‌تواند به‌صورت صریح توسط کاربر از طریق API زبان C متصل و جدا شود، یا به‌صورت ضمنی توسط ران‌تایم، از جمله در طول فراخوانی‌های C مسدودکننده و توسط مفسر بایت‌کد در بین فراخوانی‌ها، مدیریت شود." -#: ../../glossary.rst:164 -msgid "" -"On most builds of Python, having an attached thread state implies that the caller holds the :term:`GIL` for the current interpreter, so only one OS thread can " -"have an attached thread state at a given moment. In :term:`free-threaded builds ` of Python, threads can concurrently hold an attached thread " -"state, allowing for true parallelism of the bytecode interpreter." -msgstr "" -"در بیشتر ساخت‌های پایتون، داشتن یک وضعیت نخ متصل به این معناست که فراخواننده :term:`GIL ` را برای مفسر فعلی در اختیار دارد، بنابراین در یک لحظهٔ مشخص فقط یک نخ " -"سیستم‌عامل می‌تواند یک وضعیت نخ متصل داشته باشد. در :term:`ساخت نخ‌آزاد ` پایتون، نخ‌ها می‌توانند به‌طور هم‌زمان وضعیت نخ متصل داشته باشند، که امکان " -"موازی‌سازی واقعی مفسر بایت‌کد را فراهم می‌کند." +msgid "On most builds of Python, having an attached thread state implies that the caller holds the :term:`GIL` for the current interpreter, so only one OS thread can have an attached thread state at a given moment. In :term:`free-threaded builds ` of Python, threads can concurrently hold an attached thread state, allowing for true parallelism of the bytecode interpreter." +msgstr "در بیشتر ساخت‌های پایتون، داشتن یک وضعیت نخ متصل به این معناست که فراخواننده :term:`GIL ` را برای مفسر فعلی در اختیار دارد، بنابراین در یک لحظهٔ مشخص فقط یک نخ سیستم‌عامل می‌تواند یک وضعیت نخ متصل داشته باشد. در :term:`ساخت نخ‌آزاد ` پایتون، نخ‌ها می‌توانند به‌طور هم‌زمان وضعیت نخ متصل داشته باشند، که امکان موازی‌سازی واقعی مفسر بایت‌کد را فراهم می‌کند." -#: ../../glossary.rst:170 msgid "attribute" msgstr "ویژگی" -#: ../../glossary.rst:172 -msgid "" -"A value associated with an object which is usually referenced by name using dotted expressions. For example, if an object *o* has an attribute *a* it would be " -"referenced as *o.a*." -msgstr "" -"مقداری مرتبط با یک شیء که معمولاً با استفاده از عبارت‌های نقطه‌ای و با نام به آن ارجاع داده می‌شود. برای مثال، اگر یک شیء *o* دارای یک ویژگی *a* باشد، با *o.a* به آن " -"ارجاع داده خواهد شد." +msgid "A value associated with an object which is usually referenced by name using dotted expressions. For example, if an object *o* has an attribute *a* it would be referenced as *o.a*." +msgstr "مقداری مرتبط با یک شیء که معمولاً با استفاده از عبارت‌های نقطه‌ای و با نام به آن ارجاع داده می‌شود. برای مثال، اگر یک شیء *o* دارای یک ویژگی *a* باشد، با *o.a* به آن ارجاع داده خواهد شد." -#: ../../glossary.rst:177 -msgid "" -"It is possible to give an object an attribute whose name is not an identifier as defined by :ref:`identifiers`, for example using :func:`setattr`, if the object " -"allows it. Such an attribute will not be accessible using a dotted expression, and would instead need to be retrieved with :func:`getattr`." -msgstr "" -"اگر شیء اجازه دهد، می‌توان با استفاده از :func:`setattr`، ویژگی‌ای با نامی که یک شناسه مطابق تعریف :ref:`identifiers` نیست به آن اختصاص داد. چنین ویژگی‌ای با استفاده " -"از یک عبارت نقطه‌ای قابل دسترسی نخواهد بود و باید در عوض با :func:`getattr` بازیابی شود." +msgid "It is possible to give an object an attribute whose name is not an identifier as defined by :ref:`identifiers`, for example using :func:`setattr`, if the object allows it. Such an attribute will not be accessible using a dotted expression, and would instead need to be retrieved with :func:`getattr`." +msgstr "اگر شیء اجازه دهد، می‌توان با استفاده از :func:`setattr`، ویژگی‌ای با نامی که یک شناسه مطابق تعریف :ref:`identifiers` نیست به آن اختصاص داد. چنین ویژگی‌ای با استفاده از یک عبارت نقطه‌ای قابل دسترسی نخواهد بود و باید در عوض با :func:`getattr` بازیابی شود." -#: ../../glossary.rst:182 msgid "awaitable" msgstr "awaitable" -#: ../../glossary.rst:184 -msgid "" -"An object that can be used in an :keyword:`await` expression. Can be a :term:`coroutine` or an object with an :meth:`~object.__await__` method. See " -"also :pep:`492`." -msgstr "" -"شیءای که می‌تواند در یک عبارت :keyword:`await` استفاده شود. می‌تواند یک :term:`هم‌روال ` یا شی‌ءای با متد :meth:`~object.__await__` باشد. همچنین :pep:`492` " -"را ببینید." +msgid "An object that can be used in an :keyword:`await` expression. Can be a :term:`coroutine` or an object with an :meth:`~object.__await__` method. See also :pep:`492`." +msgstr "شیءای که می‌تواند در یک عبارت :keyword:`await` استفاده شود. می‌تواند یک :term:`هم‌روال ` یا شی‌ءای با متد :meth:`~object.__await__` باشد. همچنین :pep:`492` را ببینید." -#: ../../glossary.rst:187 msgid "BDFL" msgstr "BDFL" -#: ../../glossary.rst:189 msgid "Benevolent Dictator For Life, a.k.a. `Guido van Rossum `_, Python's creator." msgstr "Benevolent Dictator For Life، نام دیگر `Guido van Rossum `_، خالق پایتون." -#: ../../glossary.rst:191 msgid "binary file" msgstr "فایل دودویی" -#: ../../glossary.rst:193 -msgid "" -"A :term:`file object` able to read and write :term:`bytes-like objects `. Examples of binary files are files opened in binary mode (``'rb'``, " -"``'wb'`` or ``'rb+'``), :data:`sys.stdin.buffer `, :data:`sys.stdout.buffer `, and instances of :class:`io.BytesIO` " -"and :class:`gzip.GzipFile`." -msgstr "" -"یک :term:`شیء فایل ` که می‌تواند :term:`شیء شبه‌بایت ` را بخواند و بنویسد. نمونه‌هایی از فایل‌های دودویی، فایل‌هایی هستند که در حالت " -"دودویی باز شده‌اند (``'rb'``، ``'wb'`` یا ``'rb+'``)، :data:`sys.stdin.buffer `، :data:`sys.stdout.buffer ` و نمونه‌هایی " -"از :class:`io.BytesIO` و :class:`gzip.GzipFile`." +msgid "A :term:`file object` able to read and write :term:`bytes-like objects `. Examples of binary files are files opened in binary mode (``'rb'``, ``'wb'`` or ``'rb+'``), :data:`sys.stdin.buffer `, :data:`sys.stdout.buffer `, and instances of :class:`io.BytesIO` and :class:`gzip.GzipFile`." +msgstr "یک :term:`شیء فایل ` که می‌تواند :term:`شیء شبه‌بایت ` را بخواند و بنویسد. نمونه‌هایی از فایل‌های دودویی، فایل‌هایی هستند که در حالت دودویی باز شده‌اند (``'rb'``، ``'wb'`` یا ``'rb+'``)، :data:`sys.stdin.buffer `، :data:`sys.stdout.buffer ` و نمونه‌هایی از :class:`io.BytesIO` و :class:`gzip.GzipFile`." -#: ../../glossary.rst:200 msgid "See also :term:`text file` for a file object able to read and write :class:`str` objects." msgstr "همچنین :term:`فایل متنی ` را برای یک شیء فایل که می‌تواند اشیای :class:`str` را بخواند و بنویسد ببینید." -#: ../../glossary.rst:202 msgid "borrowed reference" msgstr "ارجاع قرض‌گرفته‌شده" -#: ../../glossary.rst:204 -msgid "" -"In Python's C API, a borrowed reference is a reference to an object, where the code using the object does not own the reference. It becomes a dangling pointer if " -"the object is destroyed. For example, a garbage collection can remove the last :term:`strong reference` to the object and so destroy it." -msgstr "" -"در API زبان C پایتون، ارجاع قرض‌گرفته‌شده ارجاعی به یک شیء است که در آن کدی که از شیء استفاده می‌کند مالک ارجاع نیست. اگر شیء نابود شود، این ارجاع به یک اشاره‌گر " -"آویزان تبدیل می‌شود. برای مثال، جمع‌آوری زباله می‌تواند آخرین :term:`ارجاع قوی ` به شیء را حذف کند و در نتیجه آن را نابود کند." +msgid "In Python's C API, a borrowed reference is a reference to an object, where the code using the object does not own the reference. It becomes a dangling pointer if the object is destroyed. For example, a garbage collection can remove the last :term:`strong reference` to the object and so destroy it." +msgstr "در API زبان C پایتون، ارجاع قرض‌گرفته‌شده ارجاعی به یک شیء است که در آن کدی که از شیء استفاده می‌کند مالک ارجاع نیست. اگر شیء نابود شود، این ارجاع به یک اشاره‌گر آویزان تبدیل می‌شود. برای مثال، جمع‌آوری زباله می‌تواند آخرین :term:`ارجاع قوی ` به شیء را حذف کند و در نتیجه آن را نابود کند." -#: ../../glossary.rst:210 -msgid "" -"Calling :c:func:`Py_INCREF` on the :term:`borrowed reference` is recommended to convert it to a :term:`strong reference` in-place, except when the object cannot " -"be destroyed before the last usage of the borrowed reference. The :c:func:`Py_NewRef` function can be used to create a new :term:`strong reference`." -msgstr "" -"فراخوانی :c:func:`Py_INCREF` روی :term:`ارجاع قرض‌گرفته‌شده ` توصیه می‌شود تا آن را درجا به یک :term:`ارجاع قوی ` تبدیل کند، " -"مگر زمانی که شیء نمی‌تواند پیش از آخرین استفاده از ارجاع قرض‌گرفته‌شده نابود شود. تابع :c:func:`Py_NewRef` می‌تواند برای ایجاد یک :term:`ارجاع قوی ` " -"جدید استفاده شود." +msgid "Calling :c:func:`Py_INCREF` on the :term:`borrowed reference` is recommended to convert it to a :term:`strong reference` in-place, except when the object cannot be destroyed before the last usage of the borrowed reference. The :c:func:`Py_NewRef` function can be used to create a new :term:`strong reference`." +msgstr "فراخوانی :c:func:`Py_INCREF` روی :term:`ارجاع قرض‌گرفته‌شده ` توصیه می‌شود تا آن را درجا به یک :term:`ارجاع قوی ` تبدیل کند، مگر زمانی که شیء نمی‌تواند پیش از آخرین استفاده از ارجاع قرض‌گرفته‌شده نابود شود. تابع :c:func:`Py_NewRef` می‌تواند برای ایجاد یک :term:`ارجاع قوی ` جدید استفاده شود." -#: ../../glossary.rst:215 msgid "bytes-like object" msgstr "شیء شبه‌بایت" -#: ../../glossary.rst:217 -msgid "" -"An object that supports the :ref:`bufferobjects` and can export a C-:term:`contiguous` buffer. This includes all :class:`bytes`, :class:`bytearray`, " -"and :class:`array.array` objects, as well as many common :class:`memoryview` objects. Bytes-like objects can be used for various operations that work with binary " -"data; these include compression, saving to a binary file, and sending over a socket." -msgstr "" -"شی‌ءای که از :ref:`bufferobjects` پشتیبانی می‌کند و می‌تواند یک بافر C-:term:`پیوسته ` صادر کند. این شامل همهٔ اشیای :class:`bytes`، :class:`bytearray` " -"و :class:`array.array` و همچنین بسیاری از اشیای رایج :class:`memoryview` می‌شود. اشیای شبه‌بایت می‌توانند برای عملیات مختلفی که با داده‌های دودویی کار می‌کنند استفاده " -"شوند؛ از جمله فشرده‌سازی، ذخیره در یک فایل دودویی و ارسال از طریق یک سوکت." +msgid "An object that supports the :ref:`bufferobjects` and can export a C-:term:`contiguous` buffer. This includes all :class:`bytes`, :class:`bytearray`, and :class:`array.array` objects, as well as many common :class:`memoryview` objects. Bytes-like objects can be used for various operations that work with binary data; these include compression, saving to a binary file, and sending over a socket." +msgstr "شی‌ءای که از :ref:`bufferobjects` پشتیبانی می‌کند و می‌تواند یک بافر C-:term:`پیوسته ` صادر کند. این شامل همهٔ اشیای :class:`bytes`، :class:`bytearray` و :class:`array.array` و همچنین بسیاری از اشیای رایج :class:`memoryview` می‌شود. اشیای شبه‌بایت می‌توانند برای عملیات مختلفی که با داده‌های دودویی کار می‌کنند استفاده شوند؛ از جمله فشرده‌سازی، ذخیره در یک فایل دودویی و ارسال از طریق یک سوکت." -#: ../../glossary.rst:224 -msgid "" -"Some operations need the binary data to be mutable. The documentation often refers to these as \"read-write bytes-like objects\". Example mutable buffer objects " -"include :class:`bytearray` and a :class:`memoryview` of a :class:`bytearray`. Other operations require the binary data to be stored in immutable objects (\"read-" -"only bytes-like objects\"); examples of these include :class:`bytes` and a :class:`memoryview` of a :class:`bytes` object." -msgstr "" -"برخی عملیات‌ها نیاز دارند که داده‌های دودویی تغییرپذیر باشند. مستندات اغلب به این موارد با عنوان «اشیای شبه‌بایت خواندن-نوشتن» اشاره می‌کنند. نمونه‌هایی از اشیای بافر " -"تغییرپذیر شامل :class:`bytearray` و یک :class:`memoryview` از یک :class:`bytearray` هستند. عملیات‌های دیگر نیاز دارند که داده‌های دودویی در اشیای تغییرناپذیر ذخیره " -"شوند («اشیای شبه‌بایت فقط‌خواندنی»)؛ نمونه‌هایی از این موارد شامل :class:`bytes` و یک :class:`memoryview` از یک شیء :class:`bytes` هستند." +msgid "Some operations need the binary data to be mutable. The documentation often refers to these as \"read-write bytes-like objects\". Example mutable buffer objects include :class:`bytearray` and a :class:`memoryview` of a :class:`bytearray`. Other operations require the binary data to be stored in immutable objects (\"read-only bytes-like objects\"); examples of these include :class:`bytes` and a :class:`memoryview` of a :class:`bytes` object." +msgstr "برخی عملیات‌ها نیاز دارند که داده‌های دودویی تغییرپذیر باشند. مستندات اغلب به این موارد با عنوان «اشیای شبه‌بایت خواندن-نوشتن» اشاره می‌کنند. نمونه‌هایی از اشیای بافر تغییرپذیر شامل :class:`bytearray` و یک :class:`memoryview` از یک :class:`bytearray` هستند. عملیات‌های دیگر نیاز دارند که داده‌های دودویی در اشیای تغییرناپذیر ذخیره شوند («اشیای شبه‌بایت فقط‌خواندنی»)؛ نمونه‌هایی از این موارد شامل :class:`bytes` و یک :class:`memoryview` از یک شیء :class:`bytes` هستند." -#: ../../glossary.rst:232 msgid "bytecode" msgstr "بایت‌کد" -#: ../../glossary.rst:234 -msgid "" -"Python source code is compiled into bytecode, the internal representation of a Python program in the CPython interpreter. The bytecode is also cached in ``.pyc`` " -"files so that executing the same file is faster the second time (recompilation from source to bytecode can be avoided). This \"intermediate language\" is said to " -"run on a :term:`virtual machine` that executes the machine code corresponding to each bytecode. Do note that bytecodes are not expected to work between different " -"Python virtual machines, nor to be stable between Python releases." -msgstr "" -"کد منبع پایتون به بایت‌کد کامپایل می‌شود؛ بایت‌کد نمایش داخلی یک برنامهٔ پایتون در مفسر CPython است. بایت‌کد همچنین در فایل‌های ``.pyc`` ذخیره می‌شود تا اجرای همان فایل " -"در بار دوم سریع‌تر باشد (می‌توان از کامپایل دوباره از منبع به بایت‌کد جلوگیری کرد). گفته می‌شود این «زبان میانی» روی یک :term:`ماشین مجازی ` اجرا " -"می‌شود که کد ماشین متناظر با هر بایت‌کد را اجرا می‌کند. توجه داشته باشید که انتظار نمی‌رود بایت‌کدها بین ماشین‌های مجازی مختلف پایتون کار کنند یا بین نسخه‌های مختلف " -"پایتون پایدار باشند." +msgid "Python source code is compiled into bytecode, the internal representation of a Python program in the CPython interpreter. The bytecode is also cached in ``.pyc`` files so that executing the same file is faster the second time (recompilation from source to bytecode can be avoided). This \"intermediate language\" is said to run on a :term:`virtual machine` that executes the machine code corresponding to each bytecode. Do note that bytecodes are not expected to work between different Python virtual machines, nor to be stable between Python releases." +msgstr "کد منبع پایتون به بایت‌کد کامپایل می‌شود؛ بایت‌کد نمایش داخلی یک برنامهٔ پایتون در مفسر CPython است. بایت‌کد همچنین در فایل‌های ``.pyc`` ذخیره می‌شود تا اجرای همان فایل در بار دوم سریع‌تر باشد (می‌توان از کامپایل دوباره از منبع به بایت‌کد جلوگیری کرد). گفته می‌شود این «زبان میانی» روی یک :term:`ماشین مجازی ` اجرا می‌شود که کد ماشین متناظر با هر بایت‌کد را اجرا می‌کند. توجه داشته باشید که انتظار نمی‌رود بایت‌کدها بین ماشین‌های مجازی مختلف پایتون کار کنند یا بین نسخه‌های مختلف پایتون پایدار باشند." -#: ../../glossary.rst:244 msgid "A list of bytecode instructions can be found in the documentation for :ref:`the dis module `." msgstr "فهرستی از دستورهای بایت‌کد را می‌توان در مستندات :ref:`the dis module ` یافت." -#: ../../glossary.rst:246 msgid "callable" msgstr "فراخوانی‌پذیر" -#: ../../glossary.rst:248 msgid "A callable is an object that can be called, possibly with a set of arguments (see :term:`argument`), with the following syntax::" msgstr "یک فراخوانی‌پذیر شی‌ءای است که می‌توان آن را، احتمالاً با مجموعه‌ای از آرگومان‌ها (به :term:`آرگومان ` مراجعه کنید)، با سینتکس زیر فراخوانی کرد::" -#: ../../glossary.rst:251 msgid "callable(argument1, argument2, argumentN)" msgstr "callable(argument1, argument2, argumentN)" -#: ../../glossary.rst:253 -msgid "" -"A :term:`function`, and by extension a :term:`method`, is a callable. An instance of a class that implements the :meth:`~object.__call__` method is also a " -"callable." -msgstr "" -"یک :term:`تابع ` و به‌تبع آن یک :term:`متد `، یک فراخوانی‌پذیر است. یک نمونه از یک کلاس که متد :meth:`~object.__call__` را پیاده‌سازی می‌کند نیز یک " -"فراخوانی‌پذیر است." +msgid "A :term:`function`, and by extension a :term:`method`, is a callable. An instance of a class that implements the :meth:`~object.__call__` method is also a callable." +msgstr "یک :term:`تابع ` و به‌تبع آن یک :term:`متد `، یک فراخوانی‌پذیر است. یک نمونه از یک کلاس که متد :meth:`~object.__call__` را پیاده‌سازی می‌کند نیز یک فراخوانی‌پذیر است." -#: ../../glossary.rst:256 msgid "callback" msgstr "کال‌بک" -#: ../../glossary.rst:258 msgid "A subroutine function which is passed as an argument to be executed at some point in the future." msgstr "یک تابع زیرروال که به‌عنوان آرگومان ارسال می‌شود تا در نقطه‌ای در آینده اجرا شود." -#: ../../glossary.rst:260 msgid "class" msgstr "کلاس" -#: ../../glossary.rst:262 msgid "A template for creating user-defined objects. Class definitions normally contain method definitions which operate on instances of the class." msgstr "الگویی برای ایجاد اشیای تعریف‌شده توسط کاربر. تعریف‌های کلاس معمولاً شامل تعریف‌های متد هستند که روی نمونه‌های کلاس عمل می‌کنند." -#: ../../glossary.rst:265 msgid "class variable" msgstr "متغیر کلاس" -#: ../../glossary.rst:267 msgid "A variable defined in a class and intended to be modified only at class level (i.e., not in an instance of the class)." msgstr "متغیری که در یک کلاس تعریف شده است و قرار است فقط در سطح کلاس تغییر داده شود (یعنی نه در یک نمونه از کلاس)." -#: ../../glossary.rst:269 msgid "closure variable" msgstr "متغیر بستار" -#: ../../glossary.rst:271 -msgid "" -"A :term:`free variable` referenced from a :term:`nested scope` that is defined in an outer scope rather than being resolved at runtime from the globals or builtin " -"namespaces. May be explicitly defined with the :keyword:`nonlocal` keyword to allow write access, or implicitly defined if the variable is only being read." -msgstr "" -"یک :term:`متغیر آزاد ` که از یک :term:`محدودهٔ تو‌در‌تو ` ارجاع داده می‌شود و در یک محدودهٔ بیرونی تعریف شده است، به‌جای این‌که در زمان " -"ران‌تایم از نام‌فضاهای سراسری یا توکار حل شود. ممکن است به‌طور صریح با کلیدواژهٔ :keyword:`nonlocal` تعریف شود تا امکان دسترسی نوشتن فراهم شود، یا اگر متغیر فقط " -"خوانده می‌شود، به‌طور ضمنی تعریف شود." +msgid "A :term:`free variable` referenced from a :term:`nested scope` that is defined in an outer scope rather than being resolved at runtime from the globals or builtin namespaces. May be explicitly defined with the :keyword:`nonlocal` keyword to allow write access, or implicitly defined if the variable is only being read." +msgstr "یک :term:`متغیر آزاد ` که از یک :term:`محدودهٔ تو‌در‌تو ` ارجاع داده می‌شود و در یک محدودهٔ بیرونی تعریف شده است، به‌جای این‌که در زمان ران‌تایم از نام‌فضاهای سراسری یا توکار حل شود. ممکن است به‌طور صریح با کلیدواژهٔ :keyword:`nonlocal` تعریف شود تا امکان دسترسی نوشتن فراهم شود، یا اگر متغیر فقط خوانده می‌شود، به‌طور ضمنی تعریف شود." -#: ../../glossary.rst:276 -msgid "" -"For example, in the ``inner`` function in the following code, both ``x`` and ``print`` are :term:`free variables `, but only ``x`` is a *closure " -"variable*::" +msgid "For example, in the ``inner`` function in the following code, both ``x`` and ``print`` are :term:`free variables `, but only ``x`` is a *closure variable*::" msgstr "برای مثال، در تابع ``inner`` در کد زیر، هر دو مورد ``x`` و ``print`` :term:`متغیر آزاد ` هستند، اما فقط ``x`` یک *متغیر بستار* است::" -#: ../../glossary.rst:279 msgid "" "def outer():\n" " x = 0\n" @@ -517,240 +283,117 @@ msgstr "" " print(x)\n" " return inner" -#: ../../glossary.rst:287 -msgid "" -"Due to the :attr:`codeobject.co_freevars` attribute (which, despite its name, only includes the names of closure variables rather than listing all referenced free " -"variables), the more general :term:`free variable` term is sometimes used even when the intended meaning is to refer specifically to closure variables." -msgstr "" -"به‌دلیل ویژگی :attr:`codeobject.co_freevars` (که با وجود نامش، فقط نام‌های متغیرهای بستار را شامل می‌شود و همهٔ متغیرهای آزاد ارجاع‌داده‌شده را فهرست نمی‌کند)، اصطلاح " -"کلی‌تر :term:`متغیر آزاد ` گاهی حتی زمانی استفاده می‌شود که معنای مورد نظر به‌طور مشخص اشاره به متغیرهای بستار دارد." +msgid "Due to the :attr:`codeobject.co_freevars` attribute (which, despite its name, only includes the names of closure variables rather than listing all referenced free variables), the more general :term:`free variable` term is sometimes used even when the intended meaning is to refer specifically to closure variables." +msgstr "به‌دلیل ویژگی :attr:`codeobject.co_freevars` (که با وجود نامش، فقط نام‌های متغیرهای بستار را شامل می‌شود و همهٔ متغیرهای آزاد ارجاع‌داده‌شده را فهرست نمی‌کند)، اصطلاح کلی‌تر :term:`متغیر آزاد ` گاهی حتی زمانی استفاده می‌شود که معنای مورد نظر به‌طور مشخص اشاره به متغیرهای بستار دارد." -#: ../../glossary.rst:291 msgid "complex number" msgstr "عدد مختلط" -#: ../../glossary.rst:293 -msgid "" -"An extension of the familiar real number system in which all numbers are expressed as a sum of a real part and an imaginary part. Imaginary numbers are real " -"multiples of the imaginary unit (the square root of ``-1``), often written ``i`` in mathematics or ``j`` in engineering. Python has built-in support for complex " -"numbers, which are written with this latter notation; the imaginary part is written with a ``j`` suffix, e.g., ``3+1j``. To get access to complex equivalents of " -"the :mod:`math` module, use :mod:`cmath`. Use of complex numbers is a fairly advanced mathematical feature. If you're not aware of a need for them, it's almost " -"certain you can safely ignore them." -msgstr "" -"گسترشی از سیستم آشنای اعداد حقیقی که در آن همهٔ اعداد به‌صورت مجموع یک بخش حقیقی و یک بخش موهومی بیان می‌شوند. اعداد موهومی مضرب‌های حقیقی واحد موهومی (ریشهٔ دوم " -"``-1``) هستند که در ریاضیات اغلب با ``i`` و در مهندسی با ``j`` نوشته می‌شود. پایتون پشتیبانی توکار از اعداد مختلط دارد که با این نمادگذاری اخیر نوشته می‌شوند؛ بخش " -"موهومی با پسوند ``j`` نوشته می‌شود، برای مثال ``3+1j``. برای دسترسی به معادل‌های مختلط ماژول :mod:`math`، از :mod:`cmath` استفاده کنید. استفاده از اعداد مختلط یک " -"ویژگی نسبتاً پیشرفتهٔ ریاضی است. اگر از نیاز به آن‌ها آگاه نیستید، تقریباً قطعی است که می‌توانید با خیال راحت آن‌ها را نادیده بگیرید." +msgid "An extension of the familiar real number system in which all numbers are expressed as a sum of a real part and an imaginary part. Imaginary numbers are real multiples of the imaginary unit (the square root of ``-1``), often written ``i`` in mathematics or ``j`` in engineering. Python has built-in support for complex numbers, which are written with this latter notation; the imaginary part is written with a ``j`` suffix, e.g., ``3+1j``. To get access to complex equivalents of the :mod:`math` module, use :mod:`cmath`. Use of complex numbers is a fairly advanced mathematical feature. If you're not aware of a need for them, it's almost certain you can safely ignore them." +msgstr "گسترشی از سیستم آشنای اعداد حقیقی که در آن همهٔ اعداد به‌صورت مجموع یک بخش حقیقی و یک بخش موهومی بیان می‌شوند. اعداد موهومی مضرب‌های حقیقی واحد موهومی (ریشهٔ دوم ``-1``) هستند که در ریاضیات اغلب با ``i`` و در مهندسی با ``j`` نوشته می‌شود. پایتون پشتیبانی توکار از اعداد مختلط دارد که با این نمادگذاری اخیر نوشته می‌شوند؛ بخش موهومی با پسوند ``j`` نوشته می‌شود، برای مثال ``3+1j``. برای دسترسی به معادل‌های مختلط ماژول :mod:`math`، از :mod:`cmath` استفاده کنید. استفاده از اعداد مختلط یک ویژگی نسبتاً پیشرفتهٔ ریاضی است. اگر از نیاز به آن‌ها آگاه نیستید، تقریباً قطعی است که می‌توانید با خیال راحت آن‌ها را نادیده بگیرید." -#: ../../glossary.rst:303 msgid "concurrency" msgstr "هم‌زمانی" -#: ../../glossary.rst:305 -msgid "" -"The ability of a computer program to perform multiple tasks at the same time. Python provides libraries for writing programs that make use of different forms of " -"concurrency. :mod:`asyncio` is a library for dealing with asynchronous tasks and coroutines. :mod:`threading` provides access to operating system threads " -"and :mod:`multiprocessing` to operating system processes. Multi-core processors can execute threads and processes on different CPU cores at the same time " -"(see :term:`parallelism`)." -msgstr "" -"توانایی یک برنامهٔ کامپیوتری برای انجام چندین کار در یک زمان. پایتون کتابخانه‌هایی برای نوشتن برنامه‌هایی که از شکل‌های مختلف هم‌زمانی استفاده می‌کنند فراهم " -"می‌کند. :mod:`asyncio` کتابخانه‌ای برای کار با وظایف ناهمگام و coroutineها است. :mod:`threading` دسترسی به نخ‌های سیستم‌عامل و :mod:`multiprocessing` دسترسی به " -"پردازه‌های سیستم‌عامل را فراهم می‌کنند. پردازنده‌های چند‌هسته‌ای می‌توانند نخ‌ها و پردازه‌ها را روی هسته‌های مختلف CPU به‌طور هم‌زمان اجرا کنند (به :term:`موازی‌سازی " -"` مراجعه کنید)." +msgid "The ability of a computer program to perform multiple tasks at the same time. Python provides libraries for writing programs that make use of different forms of concurrency. :mod:`asyncio` is a library for dealing with asynchronous tasks and coroutines. :mod:`threading` provides access to operating system threads and :mod:`multiprocessing` to operating system processes. Multi-core processors can execute threads and processes on different CPU cores at the same time (see :term:`parallelism`)." +msgstr "توانایی یک برنامهٔ کامپیوتری برای انجام چندین کار در یک زمان. پایتون کتابخانه‌هایی برای نوشتن برنامه‌هایی که از شکل‌های مختلف هم‌زمانی استفاده می‌کنند فراهم می‌کند. :mod:`asyncio` کتابخانه‌ای برای کار با وظایف ناهمگام و coroutineها است. :mod:`threading` دسترسی به نخ‌های سیستم‌عامل و :mod:`multiprocessing` دسترسی به پردازه‌های سیستم‌عامل را فراهم می‌کنند. پردازنده‌های چند‌هسته‌ای می‌توانند نخ‌ها و پردازه‌ها را روی هسته‌های مختلف CPU به‌طور هم‌زمان اجرا کنند (به :term:`موازی‌سازی ` مراجعه کنید)." -#: ../../glossary.rst:313 msgid "concurrent modification" msgstr "تغییر هم‌زمان" -#: ../../glossary.rst:315 -msgid "" -"When multiple threads modify shared data at the same time. Concurrent modification without proper synchronization can cause :term:`race conditions `, and might also trigger a :term:`data race `, data corruption, or both." -msgstr "" -"هنگامی که چندین نخ در یک زمان داده‌های اشتراکی را تغییر می‌دهند. تغییر هم‌زمان بدون همگام‌سازی مناسب می‌تواند باعث :term:`شرط رقابت ` شود و همچنین ممکن " -"است یک :term:`رقابت داده `، خرابی داده یا هر دو را ایجاد کند." +msgid "When multiple threads modify shared data at the same time. Concurrent modification without proper synchronization can cause :term:`race conditions `, and might also trigger a :term:`data race `, data corruption, or both." +msgstr "هنگامی که چندین نخ در یک زمان داده‌های اشتراکی را تغییر می‌دهند. تغییر هم‌زمان بدون همگام‌سازی مناسب می‌تواند باعث :term:`شرط رقابت ` شود و همچنین ممکن است یک :term:`رقابت داده `، خرابی داده یا هر دو را ایجاد کند." -#: ../../glossary.rst:319 msgid "context" msgstr "زمینه" -#: ../../glossary.rst:321 msgid "This term has different meanings depending on where and how it is used. Some common meanings:" msgstr "این اصطلاح بسته به محل و نحوهٔ استفاده، معانی متفاوتی دارد. برخی از معانی رایج:" -#: ../../glossary.rst:324 msgid "The temporary state or environment established by a :term:`context manager` via a :keyword:`with` statement." msgstr "وضعیت یا محیط موقتی که توسط یک :term:`مدیر زمینه ` از طریق یک دستور :keyword:`with` ایجاد می‌شود." -#: ../../glossary.rst:326 -msgid "" -"The collection of key­value bindings associated with a particular :class:`contextvars.Context` object and accessed via :class:`~contextvars.ContextVar` objects. " -"Also see :term:`context variable`." -msgstr "" -"مجموعهٔ اتصال‌های کلید-مقدار مرتبط با یک شیء :class:`contextvars.Context` خاص و قابل دسترسی از طریق اشیای :class:`~contextvars.ContextVar`. همچنین :term:`متغیر " -"زمینه ` را ببینید." +msgid "The collection of key­value bindings associated with a particular :class:`contextvars.Context` object and accessed via :class:`~contextvars.ContextVar` objects. Also see :term:`context variable`." +msgstr "مجموعهٔ اتصال‌های کلید-مقدار مرتبط با یک شیء :class:`contextvars.Context` خاص و قابل دسترسی از طریق اشیای :class:`~contextvars.ContextVar`. همچنین :term:`متغیر زمینه ` را ببینید." -#: ../../glossary.rst:330 msgid "A :class:`contextvars.Context` object. Also see :term:`current context`." msgstr "یک شیء :class:`contextvars.Context`. همچنین :term:`زمینه فعلی ` را ببینید." -#: ../../glossary.rst:332 msgid "context management protocol" msgstr "پروتکل مدیریت زمینه" -#: ../../glossary.rst:334 msgid "The :meth:`~object.__enter__` and :meth:`~object.__exit__` methods called by the :keyword:`with` statement. See :pep:`343`." msgstr "متدهای :meth:`~object.__enter__` و :meth:`~object.__exit__` که توسط دستور :keyword:`with` فراخوانی می‌شوند. :pep:`343` را ببینید." -#: ../../glossary.rst:336 msgid "context manager" msgstr "مدیر زمینه" -#: ../../glossary.rst:338 msgid "An object which implements the :term:`context management protocol` and controls the environment seen in a :keyword:`with` statement. See :pep:`343`." -msgstr "" -"شی‌ءای که :term:`پروتکل مدیریت زمینه ` را پیاده‌سازی می‌کند و محیط مشاهده‌شده در یک دستور :keyword:`with` را کنترل می‌کند. :pep:`343` را " -"ببینید." +msgstr "شی‌ءای که :term:`پروتکل مدیریت زمینه ` را پیاده‌سازی می‌کند و محیط مشاهده‌شده در یک دستور :keyword:`with` را کنترل می‌کند. :pep:`343` را ببینید." -#: ../../glossary.rst:341 msgid "context variable" msgstr "متغیر زمینه" -#: ../../glossary.rst:343 -msgid "" -"A variable whose value depends on which context is the :term:`current context`. Values are accessed via :class:`contextvars.ContextVar` objects. Context " -"variables are primarily used to isolate state between concurrent asynchronous tasks." -msgstr "" -"متغیری که مقدار آن به این بستگی دارد که کدام زمینه :term:`زمینه فعلی ` است. مقادیر از طریق اشیای :class:`contextvars.ContextVar` قابل دسترسی " -"هستند. متغیرهای زمینه عمدتاً برای جداسازی وضعیت بین وظایف ناهمگام هم‌زمان استفاده می‌شوند." +msgid "A variable whose value depends on which context is the :term:`current context`. Values are accessed via :class:`contextvars.ContextVar` objects. Context variables are primarily used to isolate state between concurrent asynchronous tasks." +msgstr "متغیری که مقدار آن به این بستگی دارد که کدام زمینه :term:`زمینه فعلی ` است. مقادیر از طریق اشیای :class:`contextvars.ContextVar` قابل دسترسی هستند. متغیرهای زمینه عمدتاً برای جداسازی وضعیت بین وظایف ناهمگام هم‌زمان استفاده می‌شوند." -#: ../../glossary.rst:347 msgid "contiguous" msgstr "پیوسته" -#: ../../glossary.rst:351 -msgid "" -"A buffer is considered contiguous exactly if it is either *C-contiguous* or *Fortran contiguous*. Zero-dimensional buffers are C and Fortran contiguous. In one-" -"dimensional arrays, the items must be laid out in memory next to each other, in order of increasing indexes starting from zero. In multidimensional C-contiguous " -"arrays, the last index varies the fastest when visiting items in order of memory address. However, in Fortran contiguous arrays, the first index varies the " -"fastest." -msgstr "" -"یک بافر دقیقاً پیوسته در نظر گرفته می‌شود اگر یا *C-contiguous* یا *Fortran contiguous* باشد. بافرهای صفر‌بعدی هم C و هم Fortran پیوسته هستند. در آرایه‌های یک‌بعدی، " -"آیتم‌ها باید در حافظه در کنار یکدیگر و به‌ترتیب اندیس‌های افزایشی که از صفر شروع می‌شوند قرار گرفته باشند. در آرایه‌های چندبعدی C-contiguous، هنگام بازدید از آیتم‌ها " -"به‌ترتیب آدرس حافظه، آخرین اندیس سریع‌ترین تغییر را دارد. با این حال، در آرایه‌های Fortran contiguous، اولین اندیس سریع‌ترین تغییر را دارد." +msgid "A buffer is considered contiguous exactly if it is either *C-contiguous* or *Fortran contiguous*. Zero-dimensional buffers are C and Fortran contiguous. In one-dimensional arrays, the items must be laid out in memory next to each other, in order of increasing indexes starting from zero. In multidimensional C-contiguous arrays, the last index varies the fastest when visiting items in order of memory address. However, in Fortran contiguous arrays, the first index varies the fastest." +msgstr "یک بافر دقیقاً پیوسته در نظر گرفته می‌شود اگر یا *C-contiguous* یا *Fortran contiguous* باشد. بافرهای صفر‌بعدی هم C و هم Fortran پیوسته هستند. در آرایه‌های یک‌بعدی، آیتم‌ها باید در حافظه در کنار یکدیگر و به‌ترتیب اندیس‌های افزایشی که از صفر شروع می‌شوند قرار گرفته باشند. در آرایه‌های چندبعدی C-contiguous، هنگام بازدید از آیتم‌ها به‌ترتیب آدرس حافظه، آخرین اندیس سریع‌ترین تغییر را دارد. با این حال، در آرایه‌های Fortran contiguous، اولین اندیس سریع‌ترین تغییر را دارد." -#: ../../glossary.rst:359 msgid "coroutine" msgstr "هم‌روال" -#: ../../glossary.rst:361 -msgid "" -"Coroutines are a more generalized form of subroutines. Subroutines are entered at one point and exited at another point. Coroutines can be entered, exited, and " -"resumed at many different points. They can be implemented with the :keyword:`async def` statement. See also :pep:`492`." -msgstr "" -"هم‌روال‌ها شکل کلی‌تری از زیرروال‌ها هستند. زیرروال‌ها از یک نقطه وارد و از نقطه‌ای دیگر خارج می‌شوند. هم‌روال‌ها می‌توانند از نقاط مختلفی وارد، خارج و از سر گرفته شوند. " -"آن‌ها می‌توانند با دستور :keyword:`async def` پیاده‌سازی شوند. همچنین :pep:`492` را ببینید." +msgid "Coroutines are a more generalized form of subroutines. Subroutines are entered at one point and exited at another point. Coroutines can be entered, exited, and resumed at many different points. They can be implemented with the :keyword:`async def` statement. See also :pep:`492`." +msgstr "هم‌روال‌ها شکل کلی‌تری از زیرروال‌ها هستند. زیرروال‌ها از یک نقطه وارد و از نقطه‌ای دیگر خارج می‌شوند. هم‌روال‌ها می‌توانند از نقاط مختلفی وارد، خارج و از سر گرفته شوند. آن‌ها می‌توانند با دستور :keyword:`async def` پیاده‌سازی شوند. همچنین :pep:`492` را ببینید." -#: ../../glossary.rst:366 msgid "coroutine function" msgstr "تابع هم‌روال" -#: ../../glossary.rst:368 -msgid "" -"A function which returns a :term:`coroutine` object. A coroutine function may be defined with the :keyword:`async def` statement, and may " -"contain :keyword:`await`, :keyword:`async for`, and :keyword:`async with` keywords. These were introduced by :pep:`492`." -msgstr "" -"تابعی که یک شیء :term:`هم‌روال ` بازمی‌گرداند. یک تابع هم‌روال می‌تواند با دستور :keyword:`async def` تعریف شود و می‌تواند شامل " -"کلیدواژه‌های :keyword:`await`، :keyword:`async for` و :keyword:`async with` باشد. این موارد توسط :pep:`492` معرفی شدند." +msgid "A function which returns a :term:`coroutine` object. A coroutine function may be defined with the :keyword:`async def` statement, and may contain :keyword:`await`, :keyword:`async for`, and :keyword:`async with` keywords. These were introduced by :pep:`492`." +msgstr "تابعی که یک شیء :term:`هم‌روال ` بازمی‌گرداند. یک تابع هم‌روال می‌تواند با دستور :keyword:`async def` تعریف شود و می‌تواند شامل کلیدواژه‌های :keyword:`await`، :keyword:`async for` و :keyword:`async with` باشد. این موارد توسط :pep:`492` معرفی شدند." -#: ../../glossary.rst:373 msgid "CPython" msgstr "CPython" -#: ../../glossary.rst:375 -msgid "" -"The canonical implementation of the Python programming language, as distributed on `python.org `_. The term \"CPython\" is used when " -"necessary to distinguish this implementation from others such as Jython or IronPython." -msgstr "" -"پیاده‌سازی مرجع زبان برنامه‌نویسی پایتون، همان‌طور که در `python.org `_ توزیع می‌شود. اصطلاح «CPython» در مواقعی استفاده می‌شود که لازم باشد " -"این پیاده‌سازی از موارد دیگری مانند Jython یا IronPython متمایز شود." +msgid "The canonical implementation of the Python programming language, as distributed on `python.org `_. The term \"CPython\" is used when necessary to distinguish this implementation from others such as Jython or IronPython." +msgstr "پیاده‌سازی مرجع زبان برنامه‌نویسی پایتون، همان‌طور که در `python.org `_ توزیع می‌شود. اصطلاح «CPython» در مواقعی استفاده می‌شود که لازم باشد این پیاده‌سازی از موارد دیگری مانند Jython یا IronPython متمایز شود." -#: ../../glossary.rst:379 msgid "current context" msgstr "زمینه فعلی" -#: ../../glossary.rst:381 -msgid "" -"The :term:`context` (:class:`contextvars.Context` object) that is currently used by :class:`~contextvars.ContextVar` objects to access (get or set) the values " -"of :term:`context variables `. Each thread has its own current context. Frameworks for executing asynchronous tasks (see :mod:`asyncio`) " -"associate each task with a context which becomes the current context whenever the task starts or resumes execution." -msgstr "" -":term:`زمینه ` (:class:`contextvars.Context`) که در حال حاضر توسط اشیای :class:`~contextvars.ContextVar` برای دسترسی (دریافت یا تنظیم) " -"مقادیر :term:`متغیر زمینه ` استفاده می‌شود. هر نخ، زمینهٔ فعلی خود را دارد. چارچوب‌های اجرای وظایف ناهمگام (به :mod:`asyncio` مراجعه کنید) هر وظیفه " -"را با یک زمینه مرتبط می‌کنند که هر زمان وظیفه شروع یا ادامهٔ اجرا می‌دهد، به زمینهٔ فعلی تبدیل می‌شود." +msgid "The :term:`context` (:class:`contextvars.Context` object) that is currently used by :class:`~contextvars.ContextVar` objects to access (get or set) the values of :term:`context variables `. Each thread has its own current context. Frameworks for executing asynchronous tasks (see :mod:`asyncio`) associate each task with a context which becomes the current context whenever the task starts or resumes execution." +msgstr ":term:`زمینه ` (:class:`contextvars.Context`) که در حال حاضر توسط اشیای :class:`~contextvars.ContextVar` برای دسترسی (دریافت یا تنظیم) مقادیر :term:`متغیر زمینه ` استفاده می‌شود. هر نخ، زمینهٔ فعلی خود را دارد. چارچوب‌های اجرای وظایف ناهمگام (به :mod:`asyncio` مراجعه کنید) هر وظیفه را با یک زمینه مرتبط می‌کنند که هر زمان وظیفه شروع یا ادامهٔ اجرا می‌دهد، به زمینهٔ فعلی تبدیل می‌شود." -#: ../../glossary.rst:387 msgid "cyclic isolate" msgstr "جدایهٔ چرخه‌ای" -#: ../../glossary.rst:389 -msgid "" -"A subgroup of one or more objects that reference each other in a reference cycle, but are not referenced by objects outside the group. The goal of " -"the :term:`cyclic garbage collector ` is to identify these groups and break the reference cycles so that the memory can be reclaimed." -msgstr "" -"زیرگروهی شامل یک یا چند شیء که در یک چرخهٔ ارجاع به یکدیگر ارجاع می‌دهند، اما توسط اشیای خارج از گروه ارجاع داده نمی‌شوند. هدف :term:`زباله‌روبی ` " -"شناسایی این گروه‌ها و شکستن چرخه‌های ارجاع است تا حافظه بتواند بازیابی شود." +msgid "A subgroup of one or more objects that reference each other in a reference cycle, but are not referenced by objects outside the group. The goal of the :term:`cyclic garbage collector ` is to identify these groups and break the reference cycles so that the memory can be reclaimed." +msgstr "زیرگروهی شامل یک یا چند شیء که در یک چرخهٔ ارجاع به یکدیگر ارجاع می‌دهند، اما توسط اشیای خارج از گروه ارجاع داده نمی‌شوند. هدف :term:`زباله‌روبی ` شناسایی این گروه‌ها و شکستن چرخه‌های ارجاع است تا حافظه بتواند بازیابی شود." -#: ../../glossary.rst:393 msgid "data race" msgstr "رقابت داده" -#: ../../glossary.rst:395 -msgid "" -"A situation where multiple threads access the same memory location concurrently, at least one of the accesses is a write, and the threads do not use any " -"synchronization to control their access. Data races lead to :term:`non-deterministic` behavior and can cause data corruption. Proper use of :term:`locks ` " -"and other :term:`synchronization primitives ` prevents data races. Note that data races can only happen in native code, but " -"that :term:`native code` might be exposed in a Python API. See also :term:`race condition` and :term:`thread-safe`." -msgstr "" -"وضعیتی که در آن چندین نخ به یک محل حافظهٔ یکسان به‌طور هم‌زمان دسترسی دارند، دست‌کم یکی از دسترسی‌ها نوشتن است و نخ‌ها برای کنترل دسترسی خود از هیچ همگام‌سازی‌ای استفاده " -"نمی‌کنند. رقابت‌های داده به رفتار :term:`غیرقطعی ` منجر می‌شوند و می‌توانند باعث خرابی داده شوند. استفادهٔ درست از :term:`قفل ` و " -"دیگر :term:`اولیه ` از رقابت‌های داده جلوگیری می‌کند. توجه داشته باشید که رقابت‌های داده فقط در کد بومی رخ می‌دهند، اما آن :term:`کد بومی " -"` ممکن است در یک API پایتون در معرض استفاده قرار گرفته باشد. همچنین :term:`شرط رقابت ` و :term:`ایمن برای نخ‌های اجرایی ` " -"را ببینید." +msgid "A situation where multiple threads access the same memory location concurrently, at least one of the accesses is a write, and the threads do not use any synchronization to control their access. Data races lead to :term:`non-deterministic` behavior and can cause data corruption. Proper use of :term:`locks ` and other :term:`synchronization primitives ` prevents data races. Note that data races can only happen in native code, but that :term:`native code` might be exposed in a Python API. See also :term:`race condition` and :term:`thread-safe`." +msgstr "وضعیتی که در آن چندین نخ به یک محل حافظهٔ یکسان به‌طور هم‌زمان دسترسی دارند، دست‌کم یکی از دسترسی‌ها نوشتن است و نخ‌ها برای کنترل دسترسی خود از هیچ همگام‌سازی‌ای استفاده نمی‌کنند. رقابت‌های داده به رفتار :term:`غیرقطعی ` منجر می‌شوند و می‌توانند باعث خرابی داده شوند. استفادهٔ درست از :term:`قفل ` و دیگر :term:`اولیه ` از رقابت‌های داده جلوگیری می‌کند. توجه داشته باشید که رقابت‌های داده فقط در کد بومی رخ می‌دهند، اما آن :term:`کد بومی ` ممکن است در یک API پایتون در معرض استفاده قرار گرفته باشد. همچنین :term:`شرط رقابت ` و :term:`ایمن برای نخ‌های اجرایی ` را ببینید." -#: ../../glossary.rst:404 msgid "deadlock" msgstr "بن‌بست" -#: ../../glossary.rst:406 -msgid "" -"A situation in which two or more tasks (threads, processes, or coroutines) wait indefinitely for each other to release resources or complete actions, preventing " -"any from making progress. For example, if thread A holds lock 1 and waits for lock 2, while thread B holds lock 2 and waits for lock 1, both threads will wait " -"indefinitely. In Python this often arises from acquiring multiple locks in conflicting orders or from circular join/await dependencies. Deadlocks can be avoided " -"by always acquiring multiple :term:`locks ` in a consistent order. See also :term:`lock` and :term:`reentrant`." -msgstr "" -"وضعیتی که در آن دو یا چند وظیفه (نخ‌ها، پردازه‌ها یا هم‌روال‌ها) به‌طور نامحدود منتظر می‌مانند تا یکدیگر منابع را آزاد کنند یا اقداماتی را کامل کنند، و در نتیجه هیچ‌کدام " -"نمی‌توانند پیشرفت کنند. برای مثال، اگر نخ A قفل ۱ را در اختیار داشته باشد و منتظر قفل ۲ باشد، در حالی که نخ B قفل ۲ را در اختیار دارد و منتظر قفل ۱ است، هر دو نخ " -"به‌طور نامحدود منتظر خواهند ماند. در پایتون، این وضعیت اغلب از دریافت چندین قفل با ترتیب‌های ناسازگار یا از وابستگی‌های join/await چرخه‌ای ایجاد می‌شود. می‌توان با " -"همیشه دریافت کردن چندین :term:`قفل ` به یک ترتیب ثابت از بن‌بست‌ها جلوگیری کرد. همچنین :term:`قفل ` و :term:`بازورودپذیر ` را ببینید." +msgid "A situation in which two or more tasks (threads, processes, or coroutines) wait indefinitely for each other to release resources or complete actions, preventing any from making progress. For example, if thread A holds lock 1 and waits for lock 2, while thread B holds lock 2 and waits for lock 1, both threads will wait indefinitely. In Python this often arises from acquiring multiple locks in conflicting orders or from circular join/await dependencies. Deadlocks can be avoided by always acquiring multiple :term:`locks ` in a consistent order. See also :term:`lock` and :term:`reentrant`." +msgstr "وضعیتی که در آن دو یا چند وظیفه (نخ‌ها، پردازه‌ها یا هم‌روال‌ها) به‌طور نامحدود منتظر می‌مانند تا یکدیگر منابع را آزاد کنند یا اقداماتی را کامل کنند، و در نتیجه هیچ‌کدام نمی‌توانند پیشرفت کنند. برای مثال، اگر نخ A قفل ۱ را در اختیار داشته باشد و منتظر قفل ۲ باشد، در حالی که نخ B قفل ۲ را در اختیار دارد و منتظر قفل ۱ است، هر دو نخ به‌طور نامحدود منتظر خواهند ماند. در پایتون، این وضعیت اغلب از دریافت چندین قفل با ترتیب‌های ناسازگار یا از وابستگی‌های join/await چرخه‌ای ایجاد می‌شود. می‌توان با همیشه دریافت کردن چندین :term:`قفل ` به یک ترتیب ثابت از بن‌بست‌ها جلوگیری کرد. همچنین :term:`قفل ` و :term:`بازورودپذیر ` را ببینید." -#: ../../glossary.rst:415 msgid "decorator" msgstr "دکوراتور" -#: ../../glossary.rst:417 -msgid "" -"A function returning another function, usually applied as a function transformation using the ``@wrapper`` syntax. Common examples for decorators " -"are :deco:`classmethod` and :deco:`staticmethod`." -msgstr "" -"تابعی که تابع دیگری را بازمی‌گرداند و معمولاً با استفاده از سینتکس ``@wrapper`` به‌عنوان یک تبدیل تابع اعمال می‌شود. نمونه‌های رایج دکوراتورها :func:`classmethod` " -"و :func:`staticmethod` هستند." +msgid "A function returning another function, usually applied as a function transformation using the ``@wrapper`` syntax. Common examples for decorators are :deco:`classmethod` and :deco:`staticmethod`." +msgstr "تابعی که تابع دیگری را بازمی‌گرداند و معمولاً با استفاده از سینتکس ``@wrapper`` به‌عنوان یک تبدیل تابع اعمال می‌شود. نمونه‌های رایج دکوراتورها :func:`classmethod` و :func:`staticmethod` هستند." -#: ../../glossary.rst:421 msgid "The decorator syntax is merely syntactic sugar, the following two function definitions are semantically equivalent::" msgstr "سینتکس دکوراتور صرفاً یک قند نحوی (syntactic sugar) است؛ دو تعریف تابع زیر از نظر معنایی معادل هستند::" -#: ../../glossary.rst:424 msgid "" "def f(arg):\n" " ...\n" @@ -768,337 +411,174 @@ msgstr "" "def f(arg):\n" " ..." -#: ../../glossary.rst:432 -msgid "" -"The same concept exists for classes, but is less commonly used there. See the documentation for :ref:`function definitions ` and :ref:`class " -"definitions ` for more about decorators." -msgstr "" -"همین مفهوم برای کلاس‌ها نیز وجود دارد، اما استفاده از آن در آنجا کمتر رایج است. برای اطلاعات بیشتر دربارهٔ دکوراتورها، مستندات :ref:`function definitions " -"` و :ref:`class definitions ` را ببینید." +msgid "The same concept exists for classes, but is less commonly used there. See the documentation for :ref:`function definitions ` and :ref:`class definitions ` for more about decorators." +msgstr "همین مفهوم برای کلاس‌ها نیز وجود دارد، اما استفاده از آن در آنجا کمتر رایج است. برای اطلاعات بیشتر دربارهٔ دکوراتورها، مستندات :ref:`function definitions ` و :ref:`class definitions ` را ببینید." -#: ../../glossary.rst:435 msgid "descriptor" msgstr "توصیف‌گر" -#: ../../glossary.rst:437 -msgid "" -"Any object which defines the methods :meth:`~object.__get__`, :meth:`~object.__set__`, or :meth:`~object.__delete__`. When a class attribute is a descriptor, its " -"special binding behavior is triggered upon attribute lookup. Normally, using *a.b* to get, set or delete an attribute looks up the object named *b* in the class " -"dictionary for *a*, but if *b* is a descriptor, the respective descriptor method gets called. Understanding descriptors is a key to a deep understanding of " -"Python because they are the basis for many features including functions, methods, properties, class methods, static methods, and reference to super classes." -msgstr "" -"هر شی‌ءای که متدهای :meth:`~object.__get__`، :meth:`~object.__set__` یا :meth:`~object.__delete__` را تعریف کند. هنگامی که یک ویژگی کلاس یک توصیف‌گر باشد، رفتار " -"اتصال ویژهٔ آن هنگام جست‌وجوی ویژگی فعال می‌شود. معمولاً استفاده از *a.b* برای دریافت، تنظیم یا حذف یک ویژگی، شیء با نام *b* را در دیکشنری کلاس *a* جست‌وجو می‌کند، اما " -"اگر *b* یک توصیف‌گر باشد، متد مربوط به توصیف‌گر فراخوانی می‌شود. درک توصیف‌گرها کلیدی برای درک عمیق پایتون است، زیرا آن‌ها پایهٔ بسیاری از قابلیت‌ها از جمله توابع، " -"متدها، ویژگی‌ها، متدهای کلاس، متدهای ایستا و ارجاع به کلاس‌های بالادستی هستند." +msgid "Any object which defines the methods :meth:`~object.__get__`, :meth:`~object.__set__`, or :meth:`~object.__delete__`. When a class attribute is a descriptor, its special binding behavior is triggered upon attribute lookup. Normally, using *a.b* to get, set or delete an attribute looks up the object named *b* in the class dictionary for *a*, but if *b* is a descriptor, the respective descriptor method gets called. Understanding descriptors is a key to a deep understanding of Python because they are the basis for many features including functions, methods, properties, class methods, static methods, and reference to super classes." +msgstr "هر شی‌ءای که متدهای :meth:`~object.__get__`، :meth:`~object.__set__` یا :meth:`~object.__delete__` را تعریف کند. هنگامی که یک ویژگی کلاس یک توصیف‌گر باشد، رفتار اتصال ویژهٔ آن هنگام جست‌وجوی ویژگی فعال می‌شود. معمولاً استفاده از *a.b* برای دریافت، تنظیم یا حذف یک ویژگی، شیء با نام *b* را در دیکشنری کلاس *a* جست‌وجو می‌کند، اما اگر *b* یک توصیف‌گر باشد، متد مربوط به توصیف‌گر فراخوانی می‌شود. درک توصیف‌گرها کلیدی برای درک عمیق پایتون است، زیرا آن‌ها پایهٔ بسیاری از قابلیت‌ها از جمله توابع، متدها، ویژگی‌ها، متدهای کلاس، متدهای ایستا و ارجاع به کلاس‌های بالادستی هستند." -#: ../../glossary.rst:448 msgid "For more information about descriptors' methods, see :ref:`descriptors` or the :ref:`Descriptor How To Guide `." msgstr "برای اطلاعات بیشتر دربارهٔ متدهای توصیف‌گرها، :ref:`descriptors` یا :ref:`Descriptor How To Guide ` را ببینید." -#: ../../glossary.rst:450 msgid "dictionary" msgstr "دیکشنری" -#: ../../glossary.rst:452 -msgid "" -"An associative array, where arbitrary keys are mapped to values. The keys can be any object with :meth:`~object.__hash__` and :meth:`~object.__eq__` methods. " -"Called a hash in Perl." -msgstr "" -"یک آرایهٔ انجمنی که در آن کلیدهای دلخواه به مقادیر نگاشت می‌شوند. کلیدها می‌توانند هر شیءای باشند که متدهای :meth:`~object.__hash__` و :meth:`~object.__eq__` را " -"داشته باشد. در Perl به آن hash گفته می‌شود." +msgid "An associative array, where arbitrary keys are mapped to values. The keys can be any object with :meth:`~object.__hash__` and :meth:`~object.__eq__` methods. Called a hash in Perl." +msgstr "یک آرایهٔ انجمنی که در آن کلیدهای دلخواه به مقادیر نگاشت می‌شوند. کلیدها می‌توانند هر شیءای باشند که متدهای :meth:`~object.__hash__` و :meth:`~object.__eq__` را داشته باشد. در Perl به آن hash گفته می‌شود." -#: ../../glossary.rst:456 msgid "dictionary comprehension" msgstr "درک دیکشنری" -#: ../../glossary.rst:458 -msgid "" -"A compact way to process all or part of the elements in an iterable and return a dictionary with the results. ``results = {n: n ** 2 for n in range(10)}`` " -"generates a dictionary containing key ``n`` mapped to value ``n ** 2``. See :ref:`comprehensions`." -msgstr "" -"روشی فشرده برای پردازش همه یا بخشی از عناصر یک تکرارپذیر و بازگرداندن یک دیکشنری با نتایج. ``results = {n: n ** 2 for n in range(10)}`` یک دیکشنری ایجاد می‌کند که " -"شامل کلید ``n`` نگاشت‌شده به مقدار ``n ** 2`` است. :ref:`comprehensions` را ببینید." +msgid "A compact way to process all or part of the elements in an iterable and return a dictionary with the results. ``results = {n: n ** 2 for n in range(10)}`` generates a dictionary containing key ``n`` mapped to value ``n ** 2``. See :ref:`comprehensions`." +msgstr "روشی فشرده برای پردازش همه یا بخشی از عناصر یک تکرارپذیر و بازگرداندن یک دیکشنری با نتایج. ``results = {n: n ** 2 for n in range(10)}`` یک دیکشنری ایجاد می‌کند که شامل کلید ``n`` نگاشت‌شده به مقدار ``n ** 2`` است. :ref:`comprehensions` را ببینید." -#: ../../glossary.rst:462 msgid "dictionary view" msgstr "نمای دیکشنری" -#: ../../glossary.rst:464 -msgid "" -"The objects returned from :meth:`dict.keys`, :meth:`dict.values`, and :meth:`dict.items` are called dictionary views. They provide a dynamic view on the " -"dictionary’s entries, which means that when the dictionary changes, the view reflects these changes. To force the dictionary view to become a full list use " -"``list(dictview)``. See :ref:`dict-views`." -msgstr "" -"اشیایی که توسط :meth:`dict.keys`، :meth:`dict.values` و :meth:`dict.items` بازگردانده می‌شوند، نماهای دیکشنری نامیده می‌شوند. آن‌ها نمایی پویا از ورودی‌های دیکشنری " -"فراهم می‌کنند، به این معنا که هنگام تغییر دیکشنری، نما نیز این تغییرات را منعکس می‌کند. برای تبدیل نمای دیکشنری به یک فهرست کامل از ``list(dictview)`` استفاده " -"کنید. :ref:`dict-views` را ببینید." +msgid "The objects returned from :meth:`dict.keys`, :meth:`dict.values`, and :meth:`dict.items` are called dictionary views. They provide a dynamic view on the dictionary’s entries, which means that when the dictionary changes, the view reflects these changes. To force the dictionary view to become a full list use ``list(dictview)``. See :ref:`dict-views`." +msgstr "اشیایی که توسط :meth:`dict.keys`، :meth:`dict.values` و :meth:`dict.items` بازگردانده می‌شوند، نماهای دیکشنری نامیده می‌شوند. آن‌ها نمایی پویا از ورودی‌های دیکشنری فراهم می‌کنند، به این معنا که هنگام تغییر دیکشنری، نما نیز این تغییرات را منعکس می‌کند. برای تبدیل نمای دیکشنری به یک فهرست کامل از ``list(dictview)`` استفاده کنید. :ref:`dict-views` را ببینید." -#: ../../glossary.rst:470 msgid "docstring" msgstr "رشتهٔ مستندات" -#: ../../glossary.rst:472 -msgid "" -"A string literal which appears as the first expression in a class, function or module. While ignored when the suite is executed, it is recognized by the compiler " -"and put into the :attr:`~definition.__doc__` attribute of the enclosing class, function or module. Since it is available via introspection, it is the canonical " -"place for documentation of the object." -msgstr "" -"یک مقدار رشته‌ای که به‌عنوان اولین عبارت در یک کلاس، تابع یا ماژول ظاهر می‌شود. اگرچه هنگام اجرای مجموعه نادیده گرفته می‌شود، توسط کامپایلر شناسایی شده و در " -"ویژگی :attr:`~definition.__doc__` کلاس، تابع یا ماژول دربرگیرنده قرار داده می‌شود. از آنجا که از طریق درون‌بینی در دسترس است، مکان استاندارد برای مستندسازی شیء " -"محسوب می‌شود." +msgid "A string literal which appears as the first expression in a class, function or module. While ignored when the suite is executed, it is recognized by the compiler and put into the :attr:`~definition.__doc__` attribute of the enclosing class, function or module. Since it is available via introspection, it is the canonical place for documentation of the object." +msgstr "یک مقدار رشته‌ای که به‌عنوان اولین عبارت در یک کلاس، تابع یا ماژول ظاهر می‌شود. اگرچه هنگام اجرای مجموعه نادیده گرفته می‌شود، توسط کامپایلر شناسایی شده و در ویژگی :attr:`~definition.__doc__` کلاس، تابع یا ماژول دربرگیرنده قرار داده می‌شود. از آنجا که از طریق درون‌بینی در دسترس است، مکان استاندارد برای مستندسازی شیء محسوب می‌شود." -#: ../../glossary.rst:478 msgid "duck-typing" msgstr "نوع‌دهی اردکی" -#: ../../glossary.rst:480 -msgid "" -"A programming style which does not look at an object's type to determine if it has the right interface; instead, the method or attribute is simply called or used " -"(\"If it looks like a duck and quacks like a duck, it must be a duck.\") By emphasizing interfaces rather than specific types, well-designed code improves its " -"flexibility by allowing polymorphic substitution. Duck-typing avoids tests using :func:`type` or :func:`isinstance`. (Note, however, that duck-typing can be " -"complemented with :term:`abstract base classes `.) Instead, it typically employs :func:`hasattr` tests or :term:`EAFP` programming." -msgstr "" -"سبک برنامه‌نویسی‌ای که برای تعیین داشتن رابط مناسب توسط یک شیء، به نوع آن نگاه نمی‌کند؛ در عوض، متد یا ویژگی به‌سادگی فراخوانی یا استفاده می‌شود («اگر شبیه اردک است و " -"مانند اردک صدا می‌دهد، پس باید اردک باشد.»). با تأکید بر رابط‌ها به‌جای نوع‌های خاص، کد با طراحی خوب با امکان جایگزینی چندریخت، انعطاف‌پذیری خود را افزایش می‌دهد. " -"نوع‌دهی اردکی از آزمون‌های مبتنی بر :func:`type` یا :func:`isinstance` اجتناب می‌کند. (با این حال، توجه داشته باشید که نوع‌دهی اردکی می‌تواند با :term:`کلاس پایهٔ " -"انتزاعی ` تکمیل شود.) در عوض، معمولاً از آزمون‌های :func:`hasattr` یا برنامه‌نویسی :term:`EAFP ` استفاده می‌کند." +msgid "A programming style which does not look at an object's type to determine if it has the right interface; instead, the method or attribute is simply called or used (\"If it looks like a duck and quacks like a duck, it must be a duck.\") By emphasizing interfaces rather than specific types, well-designed code improves its flexibility by allowing polymorphic substitution. Duck-typing avoids tests using :func:`type` or :func:`isinstance`. (Note, however, that duck-typing can be complemented with :term:`abstract base classes `.) Instead, it typically employs :func:`hasattr` tests or :term:`EAFP` programming." +msgstr "سبک برنامه‌نویسی‌ای که برای تعیین داشتن رابط مناسب توسط یک شیء، به نوع آن نگاه نمی‌کند؛ در عوض، متد یا ویژگی به‌سادگی فراخوانی یا استفاده می‌شود («اگر شبیه اردک است و مانند اردک صدا می‌دهد، پس باید اردک باشد.»). با تأکید بر رابط‌ها به‌جای نوع‌های خاص، کد با طراحی خوب با امکان جایگزینی چندریخت، انعطاف‌پذیری خود را افزایش می‌دهد. نوع‌دهی اردکی از آزمون‌های مبتنی بر :func:`type` یا :func:`isinstance` اجتناب می‌کند. (با این حال، توجه داشته باشید که نوع‌دهی اردکی می‌تواند با :term:`کلاس پایهٔ انتزاعی ` تکمیل شود.) در عوض، معمولاً از آزمون‌های :func:`hasattr` یا برنامه‌نویسی :term:`EAFP ` استفاده می‌کند." -#: ../../glossary.rst:489 msgid "dunder" msgstr "داندر" -#: ../../glossary.rst:491 -msgid "" -"An informal short-hand for \"double underscore\", used when talking about a :term:`special method`. For example, ``__init__`` is often pronounced \"dunder init\"." -msgstr "" -"یک شکل کوتاه و غیررسمی برای «دو زیرخط» که هنگام صحبت دربارهٔ یک :term:`متد ویژه ` استفاده می‌شود. برای مثال، ``__init__`` اغلب «داندر اینیت» تلفظ " -"می‌شود." +msgid "An informal short-hand for \"double underscore\", used when talking about a :term:`special method`. For example, ``__init__`` is often pronounced \"dunder init\"." +msgstr "یک شکل کوتاه و غیررسمی برای «دو زیرخط» که هنگام صحبت دربارهٔ یک :term:`متد ویژه ` استفاده می‌شود. برای مثال، ``__init__`` اغلب «داندر اینیت» تلفظ می‌شود." -#: ../../glossary.rst:494 msgid "EAFP" msgstr "EAFP" -#: ../../glossary.rst:496 -msgid "" -"Easier to ask for forgiveness than permission. This common Python coding style assumes the existence of valid keys or attributes and catches exceptions if the " -"assumption proves false. This clean and fast style is characterized by the presence of many :keyword:`try` and :keyword:`except` statements. The technique " -"contrasts with the :term:`LBYL` style common to many other languages such as C." -msgstr "" -"آسان‌تر است که درخواست بخشش کنید تا اجازه. این سبک رایج کدنویسی پایتون وجود کلیدها یا ویژگی‌های معتبر را فرض می‌کند و اگر این فرض نادرست باشد، استثناها را دریافت " -"می‌کند. این سبک پاک و سریع با وجود تعداد زیادی دستورهای :keyword:`try` و :keyword:`except` شناخته می‌شود. این روش در تضاد با سبک :term:`LBYL ` است که در " -"بسیاری از زبان‌های دیگر مانند C رایج است." +msgid "Easier to ask for forgiveness than permission. This common Python coding style assumes the existence of valid keys or attributes and catches exceptions if the assumption proves false. This clean and fast style is characterized by the presence of many :keyword:`try` and :keyword:`except` statements. The technique contrasts with the :term:`LBYL` style common to many other languages such as C." +msgstr "آسان‌تر است که درخواست بخشش کنید تا اجازه. این سبک رایج کدنویسی پایتون وجود کلیدها یا ویژگی‌های معتبر را فرض می‌کند و اگر این فرض نادرست باشد، استثناها را دریافت می‌کند. این سبک پاک و سریع با وجود تعداد زیادی دستورهای :keyword:`try` و :keyword:`except` شناخته می‌شود. این روش در تضاد با سبک :term:`LBYL ` است که در بسیاری از زبان‌های دیگر مانند C رایج است." -#: ../../glossary.rst:502 msgid "evaluate function" msgstr "تابع ارزیابی" -#: ../../glossary.rst:504 -msgid "" -"A function that can be called to evaluate a lazily evaluated attribute of an object, such as the value of type aliases created with the :keyword:`type` statement." +msgid "A function that can be called to evaluate a lazily evaluated attribute of an object, such as the value of type aliases created with the :keyword:`type` statement." msgstr "تابعی که می‌توان آن را برای ارزیابی یک ویژگی با ارزیابی تنبل یک شیء فراخوانی کرد، مانند مقدار نام‌های مستعار نوع که با دستور :keyword:`type` ایجاد شده‌اند." -#: ../../glossary.rst:507 msgid "expression" msgstr "عبارت" -#: ../../glossary.rst:509 -msgid "" -"A piece of syntax which can be evaluated to some value. In other words, an expression is an accumulation of expression elements like literals, names, attribute " -"access, operators or function calls which all return a value. In contrast to many other languages, not all language constructs are expressions. There are " -"also :term:`statement`\\s which cannot be used as expressions, such as :keyword:`while`. Assignments are also statements, not expressions." -msgstr "" -"بخشی از سینتکس که می‌تواند به یک مقدار ارزیابی شود. به بیان دیگر، یک عبارت مجموعه‌ای از عناصر عبارت مانند لفظ‌ها، نام‌ها، دسترسی به ویژگی، عملگرها یا فراخوانی‌های تابع " -"است که همه مقداری بازمی‌گردانند. برخلاف بسیاری از زبان‌های دیگر، همهٔ ساختارهای زبان عبارت نیستند. همچنین :term:`دستور `\\هایی وجود دارند که نمی‌توان از " -"آن‌ها به‌عنوان عبارت استفاده کرد، مانند :keyword:`while`. تخصیص‌ها نیز دستور هستند، نه عبارت." +msgid "A piece of syntax which can be evaluated to some value. In other words, an expression is an accumulation of expression elements like literals, names, attribute access, operators or function calls which all return a value. In contrast to many other languages, not all language constructs are expressions. There are also :term:`statement`\\s which cannot be used as expressions, such as :keyword:`while`. Assignments are also statements, not expressions." +msgstr "بخشی از سینتکس که می‌تواند به یک مقدار ارزیابی شود. به بیان دیگر، یک عبارت مجموعه‌ای از عناصر عبارت مانند لفظ‌ها، نام‌ها، دسترسی به ویژگی، عملگرها یا فراخوانی‌های تابع است که همه مقداری بازمی‌گردانند. برخلاف بسیاری از زبان‌های دیگر، همهٔ ساختارهای زبان عبارت نیستند. همچنین :term:`دستور `\\هایی وجود دارند که نمی‌توان از آن‌ها به‌عنوان عبارت استفاده کرد، مانند :keyword:`while`. تخصیص‌ها نیز دستور هستند، نه عبارت." -#: ../../glossary.rst:516 msgid "extension module" msgstr "ماژول افزونه" -#: ../../glossary.rst:518 msgid "A module written in C or C++, using Python's C API to interact with the core and with user code." msgstr "ماژول نوشته‌شده به زبان C یا C++ که از API زبان C پایتون برای تعامل با هسته و کد کاربر استفاده می‌کند." -#: ../../glossary.rst:520 msgid "f-string" msgstr "اف‌استرینگ" -#: ../../glossary.rst:521 msgid "f-strings" msgstr "اف‌استرینگ‌ها" -#: ../../glossary.rst:523 -msgid "" -"String literals prefixed with ``f`` or ``F`` are commonly called \"f-strings\" which is short for :ref:`formatted string literals `. See " -"also :pep:`498`." -msgstr "" -"رشته‌های لفظی که با ``f`` یا ``F`` پیشوندگذاری شده‌اند، معمولاً «اف‌استرینگ» نامیده می‌شوند که کوتاه‌شدهٔ :ref:`formatted string literals ` است. " -"همچنین :pep:`498` را ببینید." +msgid "String literals prefixed with ``f`` or ``F`` are commonly called \"f-strings\" which is short for :ref:`formatted string literals `. See also :pep:`498`." +msgstr "رشته‌های لفظی که با ``f`` یا ``F`` پیشوندگذاری شده‌اند، معمولاً «اف‌استرینگ» نامیده می‌شوند که کوتاه‌شدهٔ :ref:`formatted string literals ` است. همچنین :pep:`498` را ببینید." -#: ../../glossary.rst:526 msgid "file object" msgstr "شیء فایل" -#: ../../glossary.rst:528 -msgid "" -"An object exposing a file-oriented API (with methods such as :meth:`!read` or :meth:`!write`) to an underlying resource. Depending on the way it was created, a " -"file object can mediate access to a real on-disk file or to another type of storage or communication device (for example standard input/output, in-memory buffers, " -"sockets, pipes, etc.). File objects are also called :dfn:`file-like objects` or :dfn:`streams`." -msgstr "" -"شی‌ءای که یک API فایل‌محور (با متدهایی مانند :meth:`!read` یا :meth:`!write`) برای یک منبع زیربنایی ارائه می‌دهد. بسته به نحوهٔ ایجاد آن، یک شیء فایل می‌تواند دسترسی " -"به یک فایل واقعی روی دیسک یا نوع دیگری از فضای ذخیره‌سازی یا دستگاه ارتباطی را مدیریت کند (برای مثال ورودی/خروجی استاندارد، بافرهای درون‌حافظه‌ای، سوکت‌ها، پایپ‌ها و " -"غیره). اشیای فایل همچنین با نام‌های :dfn:`file-like objects` یا :dfn:`streams` شناخته می‌شوند." +msgid "An object exposing a file-oriented API (with methods such as :meth:`!read` or :meth:`!write`) to an underlying resource. Depending on the way it was created, a file object can mediate access to a real on-disk file or to another type of storage or communication device (for example standard input/output, in-memory buffers, sockets, pipes, etc.). File objects are also called :dfn:`file-like objects` or :dfn:`streams`." +msgstr "شی‌ءای که یک API فایل‌محور (با متدهایی مانند :meth:`!read` یا :meth:`!write`) برای یک منبع زیربنایی ارائه می‌دهد. بسته به نحوهٔ ایجاد آن، یک شیء فایل می‌تواند دسترسی به یک فایل واقعی روی دیسک یا نوع دیگری از فضای ذخیره‌سازی یا دستگاه ارتباطی را مدیریت کند (برای مثال ورودی/خروجی استاندارد، بافرهای درون‌حافظه‌ای، سوکت‌ها، پایپ‌ها و غیره). اشیای فایل همچنین با نام‌های :dfn:`file-like objects` یا :dfn:`streams` شناخته می‌شوند." -#: ../../glossary.rst:536 -msgid "" -"There are actually three categories of file objects: raw :term:`binary files `, buffered :term:`binary files ` and :term:`text files " -"`. Their interfaces are defined in the :mod:`io` module. The canonical way to create a file object is by using the :func:`open` function." -msgstr "" -"در واقع سه دسته از اشیای فایل وجود دارد: :term:`فایل دودویی ` خام، :term:`فایل دودویی ` بافرشده و :term:`فایل متنی `. رابط‌های " -"آن‌ها در ماژول :mod:`io` تعریف شده‌اند. روش استاندارد ایجاد یک شیء فایل، استفاده از تابع :func:`open` است." +msgid "There are actually three categories of file objects: raw :term:`binary files `, buffered :term:`binary files ` and :term:`text files `. Their interfaces are defined in the :mod:`io` module. The canonical way to create a file object is by using the :func:`open` function." +msgstr "در واقع سه دسته از اشیای فایل وجود دارد: :term:`فایل دودویی ` خام، :term:`فایل دودویی ` بافرشده و :term:`فایل متنی `. رابط‌های آن‌ها در ماژول :mod:`io` تعریف شده‌اند. روش استاندارد ایجاد یک شیء فایل، استفاده از تابع :func:`open` است." -#: ../../glossary.rst:541 msgid "file-like object" msgstr "شیء شبه‌فایل" -#: ../../glossary.rst:543 msgid "A synonym for :term:`file object`." msgstr "هم‌معنای :term:`شیء فایل `." -#: ../../glossary.rst:544 msgid "filesystem encoding and error handler" msgstr "کدگذاری سیستم فایل و مدیریت‌کنندهٔ خطا" -#: ../../glossary.rst:546 msgid "Encoding and error handler used by Python to decode bytes from the operating system and encode Unicode to the operating system." msgstr "کدگذاری و مدیریت‌کنندهٔ خطایی که پایتون برای کدگشایی بایت‌ها از سیستم‌عامل و کدگذاری یونیکد به سیستم‌عامل استفاده می‌کند." -#: ../../glossary.rst:549 -msgid "" -"The filesystem encoding must guarantee to successfully decode all bytes below 128. If the file system encoding fails to provide this guarantee, API functions can " -"raise :exc:`UnicodeError`." -msgstr "" -"کدگذاری سیستم فایل باید تضمین کند که همهٔ بایت‌های کمتر از ۱۲۸ را با موفقیت کدگشایی می‌کند. اگر کدگذاری سیستم فایل نتواند این تضمین را ارائه دهد، توابع API ممکن است " -"استثنای :exc:`UnicodeError` ایجاد کنند." +msgid "The filesystem encoding must guarantee to successfully decode all bytes below 128. If the file system encoding fails to provide this guarantee, API functions can raise :exc:`UnicodeError`." +msgstr "کدگذاری سیستم فایل باید تضمین کند که همهٔ بایت‌های کمتر از ۱۲۸ را با موفقیت کدگشایی می‌کند. اگر کدگذاری سیستم فایل نتواند این تضمین را ارائه دهد، توابع API ممکن است استثنای :exc:`UnicodeError` ایجاد کنند." -#: ../../glossary.rst:553 msgid "The :func:`sys.getfilesystemencoding` and :func:`sys.getfilesystemencodeerrors` functions can be used to get the filesystem encoding and error handler." msgstr "از توابع :func:`sys.getfilesystemencoding` و :func:`sys.getfilesystemencodeerrors` می‌توان برای دریافت کدگذاری سیستم فایل و مدیریت‌کنندهٔ خطا استفاده کرد." -#: ../../glossary.rst:557 -msgid "" -"The :term:`filesystem encoding and error handler` are configured at Python startup by the :c:func:`PyConfig_Read` function: " -"see :c:member:`~PyConfig.filesystem_encoding` and :c:member:`~PyConfig.filesystem_errors` members of :c:type:`PyConfig`." -msgstr "" -":term:`کدگذاری سیستم فایل و مدیریت‌کنندهٔ خطا ` در هنگام راه‌اندازی پایتون توسط تابع :c:func:`PyConfig_Read` پیکربندی می‌شوند: " -"اعضای :c:member:`~PyConfig.filesystem_encoding` و :c:member:`~PyConfig.filesystem_errors` از :c:type:`PyConfig` را ببینید." +msgid "The :term:`filesystem encoding and error handler` are configured at Python startup by the :c:func:`PyConfig_Read` function: see :c:member:`~PyConfig.filesystem_encoding` and :c:member:`~PyConfig.filesystem_errors` members of :c:type:`PyConfig`." +msgstr ":term:`کدگذاری سیستم فایل و مدیریت‌کنندهٔ خطا ` در هنگام راه‌اندازی پایتون توسط تابع :c:func:`PyConfig_Read` پیکربندی می‌شوند: اعضای :c:member:`~PyConfig.filesystem_encoding` و :c:member:`~PyConfig.filesystem_errors` از :c:type:`PyConfig` را ببینید." -#: ../../glossary.rst:562 msgid "See also the :term:`locale encoding`." msgstr "همچنین :term:`کدگذاری محلی ` را ببینید." -#: ../../glossary.rst:563 msgid "finder" msgstr "یابنده" -#: ../../glossary.rst:565 msgid "An object that tries to find the :term:`loader` for a module that is being imported." msgstr "شیءای که تلاش می‌کند :term:`بارگذار ` مربوط به ماژولی را که در حال ایمپورت شدن است پیدا کند." -#: ../../glossary.rst:568 -msgid "" -"There are two types of finder: :term:`meta path finders ` for use with :data:`sys.meta_path`, and :term:`path entry finders ` " -"for use with :data:`sys.path_hooks`." -msgstr "" -"دو نوع یابنده وجود دارد: :term:`یابندهٔ مسیر فراداده ` برای استفاده با :data:`sys.meta_path` و :term:`یابندهٔ ورودی مسیر ` برای " -"استفاده با :data:`sys.path_hooks`." +msgid "There are two types of finder: :term:`meta path finders ` for use with :data:`sys.meta_path`, and :term:`path entry finders ` for use with :data:`sys.path_hooks`." +msgstr "دو نوع یابنده وجود دارد: :term:`یابندهٔ مسیر فراداده ` برای استفاده با :data:`sys.meta_path` و :term:`یابندهٔ ورودی مسیر ` برای استفاده با :data:`sys.path_hooks`." -#: ../../glossary.rst:572 msgid "See :ref:`finders-and-loaders` and :mod:`importlib` for much more detail." msgstr "برای جزئیات بسیار بیشتر، :ref:`finders-and-loaders` و :mod:`importlib` را ببینید." -#: ../../glossary.rst:573 msgid "floor division" msgstr "تقسیم کف" -#: ../../glossary.rst:575 -msgid "" -"Mathematical division that rounds down to nearest integer. The floor division operator is ``//``. For example, the expression ``11 // 4`` evaluates to ``2`` in " -"contrast to the ``2.75`` returned by float true division. Note that ``(-11) // 4`` is ``-3`` because that is ``-2.75`` rounded *downward*. See :pep:`238`." -msgstr "" -"تقسیم ریاضی که به نزدیک‌ترین عدد صحیح پایین گرد می‌شود. عملگر تقسیم کف ``//`` است. برای مثال، عبارت ``11 // 4`` به ``2`` ارزیابی می‌شود، در حالی که تقسیم حقیقی با " -"عدد اعشاری مقدار ``2.75`` را بازمی‌گرداند. توجه داشته باشید که ``(-11) // 4`` برابر ``-3`` است، زیرا ``-2.75`` به سمت *پایین* گرد می‌شود. :pep:`238` را ببینید." +msgid "Mathematical division that rounds down to nearest integer. The floor division operator is ``//``. For example, the expression ``11 // 4`` evaluates to ``2`` in contrast to the ``2.75`` returned by float true division. Note that ``(-11) // 4`` is ``-3`` because that is ``-2.75`` rounded *downward*. See :pep:`238`." +msgstr "تقسیم ریاضی که به نزدیک‌ترین عدد صحیح پایین گرد می‌شود. عملگر تقسیم کف ``//`` است. برای مثال، عبارت ``11 // 4`` به ``2`` ارزیابی می‌شود، در حالی که تقسیم حقیقی با عدد اعشاری مقدار ``2.75`` را بازمی‌گرداند. توجه داشته باشید که ``(-11) // 4`` برابر ``-3`` است، زیرا ``-2.75`` به سمت *پایین* گرد می‌شود. :pep:`238` را ببینید." -#: ../../glossary.rst:580 msgid "free threading" msgstr "نخ‌گذاری آزاد" -#: ../../glossary.rst:582 -msgid "" -"A threading model where multiple threads can run Python bytecode simultaneously within the same interpreter. This is in contrast to the :term:`global interpreter " -"lock` which allows only one thread to execute Python bytecode at a time. See :pep:`703`." -msgstr "" -"مدل نخ‌ای که در آن چندین نخ می‌توانند بایت‌کد پایتون را به‌طور هم‌زمان درون همان مفسر اجرا کنند. این در تضاد با :term:`قفل مفسر سراسری ` است " -"که اجازه می‌دهد فقط یک نخ در هر زمان بایت‌کد پایتون را اجرا کند. :pep:`703` را ببینید." +msgid "A threading model where multiple threads can run Python bytecode simultaneously within the same interpreter. This is in contrast to the :term:`global interpreter lock` which allows only one thread to execute Python bytecode at a time. See :pep:`703`." +msgstr "مدل نخ‌ای که در آن چندین نخ می‌توانند بایت‌کد پایتون را به‌طور هم‌زمان درون همان مفسر اجرا کنند. این در تضاد با :term:`قفل مفسر سراسری ` است که اجازه می‌دهد فقط یک نخ در هر زمان بایت‌کد پایتون را اجرا کند. :pep:`703` را ببینید." -#: ../../glossary.rst:586 msgid "free-threaded build" msgstr "ساخت نخ‌آزاد" -#: ../../glossary.rst:589 msgid "A build of :term:`CPython` that supports :term:`free threading`, configured using the :option:`--disable-gil` option before compilation." -msgstr "" -"ساختی از :term:`CPython ` که از :term:`نخ‌گذاری آزاد ` پشتیبانی می‌کند و با استفاده از گزینهٔ :option:`--disable-gil` پیش از کامپایل " -"پیکربندی شده است." +msgstr "ساختی از :term:`CPython ` که از :term:`نخ‌گذاری آزاد ` پشتیبانی می‌کند و با استفاده از گزینهٔ :option:`--disable-gil` پیش از کامپایل پیکربندی شده است." -#: ../../glossary.rst:592 msgid "See :ref:`freethreading-python-howto`." msgstr ":ref:`freethreading-python-howto` را ببینید." -#: ../../glossary.rst:593 msgid "free variable" msgstr "متغیر آزاد" -#: ../../glossary.rst:595 -msgid "" -"Formally, as defined in the :ref:`language execution model `, a free variable is any variable used in a namespace which is not a local variable in " -"that namespace. See :term:`closure variable` for an example. Pragmatically, due to the name of the :attr:`codeobject.co_freevars` attribute, the term is also " -"sometimes used as a synonym for :term:`closure variable`." -msgstr "" -"به‌صورت رسمی، همان‌طور که در :ref:`language execution model ` تعریف شده است، یک متغیر آزاد هر متغیری است که در یک نام‌فضا استفاده می‌شود اما در آن نام‌فضا " -"یک متغیر محلی نیست. برای نمونه، :term:`متغیر بستار ` را ببینید. از نظر عملی، به‌دلیل نام ویژگی :attr:`codeobject.co_freevars`، این اصطلاح گاهی " -"به‌عنوان مترادفی برای :term:`متغیر بستار ` نیز استفاده می‌شود." +msgid "Formally, as defined in the :ref:`language execution model `, a free variable is any variable used in a namespace which is not a local variable in that namespace. See :term:`closure variable` for an example. Pragmatically, due to the name of the :attr:`codeobject.co_freevars` attribute, the term is also sometimes used as a synonym for :term:`closure variable`." +msgstr "به‌صورت رسمی، همان‌طور که در :ref:`language execution model ` تعریف شده است، یک متغیر آزاد هر متغیری است که در یک نام‌فضا استفاده می‌شود اما در آن نام‌فضا یک متغیر محلی نیست. برای نمونه، :term:`متغیر بستار ` را ببینید. از نظر عملی، به‌دلیل نام ویژگی :attr:`codeobject.co_freevars`، این اصطلاح گاهی به‌عنوان مترادفی برای :term:`متغیر بستار ` نیز استفاده می‌شود." -#: ../../glossary.rst:600 msgid "function" msgstr "تابع" -#: ../../glossary.rst:602 -msgid "" -"A series of statements which returns some value to a caller. It can also be passed zero or more :term:`arguments ` which may be used in the execution of " -"the body. See also :term:`parameter`, :term:`method`, and the :ref:`function` section." -msgstr "" -"مجموعه‌ای از دستورها که مقداری را به یک فراخواننده بازمی‌گرداند. همچنین می‌تواند صفر یا چند :term:`آرگومان ` دریافت کند که ممکن است در اجرای بدنه استفاده " -"شوند. همچنین :term:`پارامتر `، :term:`متد ` و بخش :ref:`function` را ببینید." +msgid "A series of statements which returns some value to a caller. It can also be passed zero or more :term:`arguments ` which may be used in the execution of the body. See also :term:`parameter`, :term:`method`, and the :ref:`function` section." +msgstr "مجموعه‌ای از دستورها که مقداری را به یک فراخواننده بازمی‌گرداند. همچنین می‌تواند صفر یا چند :term:`آرگومان ` دریافت کند که ممکن است در اجرای بدنه استفاده شوند. همچنین :term:`پارامتر `، :term:`متد ` و بخش :ref:`function` را ببینید." -#: ../../glossary.rst:606 msgid "function annotation" msgstr "حاشیه‌گذاری تابع" -#: ../../glossary.rst:608 msgid "An :term:`annotation` of a function parameter or return value." msgstr "یک :term:`حاشیه‌گذاری ` برای پارامتر یک تابع یا مقدار بازگشتی." -#: ../../glossary.rst:610 -msgid "" -"Function annotations are usually used for :term:`type hints `: for example, this function is expected to take two :class:`int` arguments and is also " -"expected to have an :class:`int` return value::" -msgstr "" -"حاشیه‌گذاری‌های تابع معمولاً برای :term:`راهنمای نوع ` استفاده می‌شوند: برای مثال، انتظار می‌رود این تابع دو آرگومان :class:`int` دریافت کند و همچنین یک " -"مقدار بازگشتی :class:`int` داشته باشد::" +msgid "Function annotations are usually used for :term:`type hints `: for example, this function is expected to take two :class:`int` arguments and is also expected to have an :class:`int` return value::" +msgstr "حاشیه‌گذاری‌های تابع معمولاً برای :term:`راهنمای نوع ` استفاده می‌شوند: برای مثال، انتظار می‌رود این تابع دو آرگومان :class:`int` دریافت کند و همچنین یک مقدار بازگشتی :class:`int` داشته باشد::" -#: ../../glossary.rst:615 msgid "" "def sum_two_numbers(a: int, b: int) -> int:\n" " return a + b" @@ -1106,33 +586,18 @@ msgstr "" "def sum_two_numbers(a: int, b: int) -> int:\n" " return a + b" -#: ../../glossary.rst:618 msgid "Function annotation syntax is explained in section :ref:`function`." msgstr "نحو حاشیه‌گذاری تابع در بخش :ref:`function` توضیح داده شده است." -#: ../../glossary.rst:620 -msgid "" -"See :term:`variable annotation` and :pep:`484`, which describe this functionality. Also see :ref:`annotations-howto` for best practices on working with " -"annotations." -msgstr "" -"به :term:`حاشیه‌نویسی متغیر ` و :pep:`484` مراجعه کنید که این قابلیت را توضیح می‌دهند. همچنین برای بهترین روش‌ها در کار با " -"حاشیه‌گذاری‌ها، :ref:`annotations-howto` را ببینید." +msgid "See :term:`variable annotation` and :pep:`484`, which describe this functionality. Also see :ref:`annotations-howto` for best practices on working with annotations." +msgstr "به :term:`حاشیه‌نویسی متغیر ` و :pep:`484` مراجعه کنید که این قابلیت را توضیح می‌دهند. همچنین برای بهترین روش‌ها در کار با حاشیه‌گذاری‌ها، :ref:`annotations-howto` را ببینید." -#: ../../glossary.rst:624 msgid "__future__" msgstr "__future__" -#: ../../glossary.rst:626 -msgid "" -"A :ref:`future statement `, ``from __future__ import ``, directs the compiler to compile the current module using syntax or semantics that will " -"become standard in a future release of Python. The :mod:`__future__` module documents the possible values of *feature*. By importing this module and evaluating " -"its variables, you can see when a new feature was first added to the language and when it will (or did) become the default::" -msgstr "" -"یک :ref:`future statement `، یعنی ``from __future__ import ``, به کامپایلر دستور می‌دهد ماژول فعلی را با استفاده از سینتکس یا معناشناسی‌ای کامپایل " -"کند که در یک انتشار آیندهٔ پایتون استاندارد خواهد شد. ماژول :mod:`__future__` مقادیر ممکن *feature* را مستند می‌کند. با ایمپورت این ماژول و ارزیابی متغیرهای آن، " -"می‌توانید ببینید چه زمانی یک ویژگی جدید برای اولین بار به زبان اضافه شده است و چه زمانی به حالت پیش‌فرض تبدیل خواهد شد (یا شده است)::" +msgid "A :ref:`future statement `, ``from __future__ import ``, directs the compiler to compile the current module using syntax or semantics that will become standard in a future release of Python. The :mod:`__future__` module documents the possible values of *feature*. By importing this module and evaluating its variables, you can see when a new feature was first added to the language and when it will (or did) become the default::" +msgstr "یک :ref:`future statement `، یعنی ``from __future__ import ``, به کامپایلر دستور می‌دهد ماژول فعلی را با استفاده از سینتکس یا معناشناسی‌ای کامپایل کند که در یک انتشار آیندهٔ پایتون استاندارد خواهد شد. ماژول :mod:`__future__` مقادیر ممکن *feature* را مستند می‌کند. با ایمپورت این ماژول و ارزیابی متغیرهای آن، می‌توانید ببینید چه زمانی یک ویژگی جدید برای اولین بار به زبان اضافه شده است و چه زمانی به حالت پیش‌فرض تبدیل خواهد شد (یا شده است)::" -#: ../../glossary.rst:634 msgid "" ">>> import __future__\n" ">>> __future__.division\n" @@ -1142,79 +607,42 @@ msgstr "" ">>> __future__.division\n" "_Feature((2, 2, 0, 'alpha', 2), (3, 0, 0, 'alpha', 0), 8192)" -#: ../../glossary.rst:637 msgid "garbage collection" msgstr "زباله‌روبی" -#: ../../glossary.rst:639 -msgid "" -"The process of freeing memory when it is not used anymore. Python performs garbage collection via reference counting and a cyclic garbage collector that is able " -"to detect and break reference cycles. The garbage collector can be controlled using the :mod:`gc` module." -msgstr "" -"فرایند آزادسازی حافظه هنگامی که دیگر استفاده نمی‌شود. پایتون زباله‌روبی را از طریق شمارش ارجاع‌ها و یک زباله‌روب چرخه‌ای که قادر به شناسایی و شکستن چرخه‌های ارجاع است " -"انجام می‌دهد. زباله‌روب را می‌توان با استفاده از ماژول :mod:`gc` کنترل کرد." +msgid "The process of freeing memory when it is not used anymore. Python performs garbage collection via reference counting and a cyclic garbage collector that is able to detect and break reference cycles. The garbage collector can be controlled using the :mod:`gc` module." +msgstr "فرایند آزادسازی حافظه هنگامی که دیگر استفاده نمی‌شود. پایتون زباله‌روبی را از طریق شمارش ارجاع‌ها و یک زباله‌روب چرخه‌ای که قادر به شناسایی و شکستن چرخه‌های ارجاع است انجام می‌دهد. زباله‌روب را می‌توان با استفاده از ماژول :mod:`gc` کنترل کرد." -#: ../../glossary.rst:644 ../../glossary.rst:645 msgid "generator" msgstr "تولیدگر" -#: ../../glossary.rst:647 -msgid "" -"Informally used to mean either a :term:`generator function` or a :term:`generator iterator`, depending on context. The formal terms :term:`generator function` " -"and :term:`generator iterator` are uncommon in practice; \"generator\" alone is almost always sufficient." -msgstr "" -"به‌صورت غیررسمی برای اشاره به یک :term:`تابع تولیدگر ` یا یک :term:`تکرارگر تولیدگر `، بسته به زمینه، استفاده می‌شود. اصطلاحات " -"رسمی :term:`تابع تولیدگر ` و :term:`تکرارگر تولیدگر ` در عمل کمتر استفاده می‌شوند؛ «تولیدگر» به‌تنهایی تقریباً همیشه کافی است." +msgid "Informally used to mean either a :term:`generator function` or a :term:`generator iterator`, depending on context. The formal terms :term:`generator function` and :term:`generator iterator` are uncommon in practice; \"generator\" alone is almost always sufficient." +msgstr "به‌صورت غیررسمی برای اشاره به یک :term:`تابع تولیدگر ` یا یک :term:`تکرارگر تولیدگر `، بسته به زمینه، استفاده می‌شود. اصطلاحات رسمی :term:`تابع تولیدگر ` و :term:`تکرارگر تولیدگر ` در عمل کمتر استفاده می‌شوند؛ «تولیدگر» به‌تنهایی تقریباً همیشه کافی است." -#: ../../glossary.rst:652 ../../glossary.rst:653 msgid "generator function" msgstr "تابع تولیدگر" -#: ../../glossary.rst:655 -msgid "" -"A function which returns a :term:`generator` object. It looks like a normal function except that it contains :keyword:`yield` expressions for producing a series " -"of values usable in a :keyword:`for`-loop or that can be retrieved one at a time with the :func:`next` function. See :ref:`yieldexpr`." -msgstr "" -"تابعی که یک شیء :term:`تولیدگر ` بازمی‌گرداند. این تابع شبیه یک تابع معمولی است، با این تفاوت که شامل عبارت‌های :keyword:`yield` برای تولید مجموعه‌ای از " -"مقادیر قابل استفاده در یک حلقهٔ :keyword:`for` یا قابل بازیابی یکی‌یکی با تابع :func:`next` است. :ref:`yieldexpr` را ببینید." +msgid "A function which returns a :term:`generator` object. It looks like a normal function except that it contains :keyword:`yield` expressions for producing a series of values usable in a :keyword:`for`\\-loop or that can be retrieved one at a time with the :func:`next` function. See :ref:`yieldexpr`." +msgstr "تابعی که یک شیء :term:`تولیدگر ` بازمی‌گرداند. این تابع شبیه یک تابع معمولی است، با این تفاوت که شامل عبارت‌های :keyword:`yield` برای تولید مجموعه‌ای از مقادیر قابل استفاده در یک حلقهٔ :keyword:`for` یا قابل بازیابی یکی‌یکی با تابع :func:`next` است. :ref:`yieldexpr` را ببینید." -#: ../../glossary.rst:660 msgid "generator iterator" msgstr "تکرارگر تولیدگر" -#: ../../glossary.rst:662 msgid "An object created by a :term:`generator function` or a :term:`generator expression`." msgstr "شیءای که توسط یک :term:`تابع تولیدگر ` یا یک :term:`عبارت تولیدگر ` ایجاد می‌شود." -#: ../../glossary.rst:665 -msgid "" -"Each :keyword:`yield` temporarily suspends processing, remembering the execution state (including local variables and pending try-statements). When the *generator " -"iterator* resumes, it picks up where it left off (in contrast to functions which start fresh on every invocation)." -msgstr "" -"هر :keyword:`yield` پردازش را به‌طور موقت متوقف می‌کند و وضعیت اجرا (شامل متغیرهای محلی و دستورهای try در انتظار) را به خاطر می‌سپارد. هنگامی که *تکرارگر تولیدگر* " -"ادامهٔ اجرا می‌دهد، از همان نقطه‌ای که متوقف شده بود ادامه می‌دهد (برخلاف توابع که در هر فراخوانی از ابتدا شروع می‌شوند)." +msgid "Each :keyword:`yield` temporarily suspends processing, remembering the execution state (including local variables and pending try-statements). When the *generator iterator* resumes, it picks up where it left off (in contrast to functions which start fresh on every invocation)." +msgstr "هر :keyword:`yield` پردازش را به‌طور موقت متوقف می‌کند و وضعیت اجرا (شامل متغیرهای محلی و دستورهای try در انتظار) را به خاطر می‌سپارد. هنگامی که *تکرارگر تولیدگر* ادامهٔ اجرا می‌دهد، از همان نقطه‌ای که متوقف شده بود ادامه می‌دهد (برخلاف توابع که در هر فراخوانی از ابتدا شروع می‌شوند)." -#: ../../glossary.rst:670 -msgid "" -"Generator iterators also implement the :meth:`~generator.send` method to send a value into the suspended generator, and the :meth:`~generator.throw` method to " -"raise an exception at the point where the generator was paused. See :ref:`generator-methods`." -msgstr "" -"تکرارگرهای تولیدگر همچنین متد :meth:`~generator.send` را برای ارسال یک مقدار به تولیدگر متوقف‌شده و متد :meth:`~generator.throw` را برای پرتاب یک استثنا در نقطه‌ای که " -"تولیدگر در آن متوقف شده است، پیاده‌سازی می‌کنند. بخش :ref:`generator-methods` را ببینید." +msgid "Generator iterators also implement the :meth:`~generator.send` method to send a value into the suspended generator, and the :meth:`~generator.throw` method to raise an exception at the point where the generator was paused. See :ref:`generator-methods`." +msgstr "تکرارگرهای تولیدگر همچنین متد :meth:`~generator.send` را برای ارسال یک مقدار به تولیدگر متوقف‌شده و متد :meth:`~generator.throw` را برای پرتاب یک استثنا در نقطه‌ای که تولیدگر در آن متوقف شده است، پیاده‌سازی می‌کنند. بخش :ref:`generator-methods` را ببینید." -#: ../../glossary.rst:675 ../../glossary.rst:676 msgid "generator expression" msgstr "عبارت تولیدگر" -#: ../../glossary.rst:678 -msgid "" -"An :term:`expression` that returns an :term:`iterator`. It looks like a normal expression followed by a :keyword:`!for` clause defining a loop variable, range, " -"and an optional :keyword:`!if` clause. The combined expression generates values for an enclosing function::" -msgstr "" -"یک :term:`عبارت ` که یک :term:`تکرارگر ` بازمی‌گرداند. این عبارت شبیه یک عبارت معمولی است که پس از آن یک بند :keyword:`!for` برای تعریف متغیر " -"حلقه، محدوده و یک بند اختیاری :keyword:`!if` قرار گرفته است. عبارت ترکیبی، مقادیری را برای یک تابع دربرگیرنده تولید می‌کند::" +msgid "An :term:`expression` that returns an :term:`iterator`. It looks like a normal expression followed by a :keyword:`!for` clause defining a loop variable, range, and an optional :keyword:`!if` clause. The combined expression generates values for an enclosing function::" +msgstr "یک :term:`عبارت ` که یک :term:`تکرارگر ` بازمی‌گرداند. این عبارت شبیه یک عبارت معمولی است که پس از آن یک بند :keyword:`!for` برای تعریف متغیر حلقه، محدوده و یک بند اختیاری :keyword:`!if` قرار گرفته است. عبارت ترکیبی، مقادیری را برای یک تابع دربرگیرنده تولید می‌کند::" -#: ../../glossary.rst:683 msgid "" ">>> sum(i*i for i in range(10)) # sum of squares 0, 1, 4, ... 81\n" "285" @@ -1222,691 +650,351 @@ msgstr "" ">>> sum(i*i for i in range(10)) # sum of squares 0, 1, 4, ... 81\n" "285" -#: ../../glossary.rst:685 msgid "generic function" msgstr "تابع عمومی" -#: ../../glossary.rst:687 -msgid "" -"A function composed of multiple functions implementing the same operation for different types. Which implementation should be used during a call is determined by " -"the dispatch algorithm." -msgstr "" -"تابعی که از چندین تابع تشکیل شده است که یک عملیات یکسان را برای نوع‌های مختلف پیاده‌سازی می‌کنند. این‌که هنگام یک فراخوانی کدام پیاده‌سازی استفاده شود، توسط الگوریتم " -"ارسال تعیین می‌شود." +msgid "A function composed of multiple functions implementing the same operation for different types. Which implementation should be used during a call is determined by the dispatch algorithm." +msgstr "تابعی که از چندین تابع تشکیل شده است که یک عملیات یکسان را برای نوع‌های مختلف پیاده‌سازی می‌کنند. این‌که هنگام یک فراخوانی کدام پیاده‌سازی استفاده شود، توسط الگوریتم ارسال تعیین می‌شود." -#: ../../glossary.rst:691 msgid "See also the :term:`single dispatch` glossary entry, the :deco:`functools.singledispatch` decorator, and :pep:`443`." msgstr "همچنین به ورودی واژه‌نامه‌ای :term:`توزیع تک‌گانه `، دکوریتور :func:`functools.singledispatch` و :pep:`443` مراجعه کنید." -#: ../../glossary.rst:693 msgid "generic type" msgstr "نوع عمومی" -#: ../../glossary.rst:695 -msgid "" -"A :term:`type` that can be parameterized; typically a :ref:`container class` such as :class:`list` or :class:`dict`. Used for :term:`type hints " -"` and :term:`annotations `." -msgstr "" -"یک :term:`نوع ` که می‌تواند پارامتری شود؛ معمولاً یک :ref:`container class` مانند :class:`list` یا :class:`dict`. برای :term:`راهنمای نوع " -"` و :term:`حاشیه‌گذاری ` استفاده می‌شود." +msgid "A :term:`type` that can be parameterized; typically a :ref:`container class` such as :class:`list` or :class:`dict`. Used for :term:`type hints ` and :term:`annotations `." +msgstr "یک :term:`نوع ` که می‌تواند پارامتری شود؛ معمولاً یک :ref:`container class` مانند :class:`list` یا :class:`dict`. برای :term:`راهنمای نوع ` و :term:`حاشیه‌گذاری ` استفاده می‌شود." -#: ../../glossary.rst:700 msgid "For more details, see :ref:`generic alias types`, :pep:`483`, :pep:`484`, :pep:`585`, and the :mod:`typing` module." msgstr "برای جزئیات بیشتر، :ref:`generic alias types`، :pep:`483`، :pep:`484`، :pep:`585` و ماژول :mod:`typing` را ببینید." -#: ../../glossary.rst:702 msgid "GIL" msgstr "GIL" -#: ../../glossary.rst:704 msgid "See :term:`global interpreter lock`." msgstr ":term:`قفل مفسر سراسری ` را ببینید." -#: ../../glossary.rst:705 msgid "global interpreter lock" msgstr "قفل مفسر سراسری" -#: ../../glossary.rst:707 -msgid "" -"The mechanism used by the :term:`CPython` interpreter to assure that only one thread executes Python :term:`bytecode` at a time. This simplifies the CPython " -"implementation by making the object model (including critical built-in types such as :class:`dict`) implicitly safe against concurrent access. Locking the entire " -"interpreter makes it easier for the interpreter to be multi-threaded, at the expense of much of the parallelism afforded by multi-processor machines." -msgstr "" -"سازوکاری که توسط مفسر :term:`CPython ` استفاده می‌شود تا تضمین کند در هر زمان فقط یک نخ :term:`بایت‌کد ` پایتون را اجرا می‌کند. این کار پیاده‌سازی " -"CPython را ساده‌تر می‌کند، زیرا مدل شیء (شامل نوع‌های توکار مهمی مانند :class:`dict`) به‌طور ضمنی در برابر دسترسی هم‌زمان ایمن می‌شود. قفل کردن کل مفسر باعث می‌شود " -"چندنخی کردن مفسر آسان‌تر شود، اما به قیمت از دست دادن بخش زیادی از موازی‌سازی‌ای که ماشین‌های چندپردازنده‌ای فراهم می‌کنند." +msgid "The mechanism used by the :term:`CPython` interpreter to assure that only one thread executes Python :term:`bytecode` at a time. This simplifies the CPython implementation by making the object model (including critical built-in types such as :class:`dict`) implicitly safe against concurrent access. Locking the entire interpreter makes it easier for the interpreter to be multi-threaded, at the expense of much of the parallelism afforded by multi-processor machines." +msgstr "سازوکاری که توسط مفسر :term:`CPython ` استفاده می‌شود تا تضمین کند در هر زمان فقط یک نخ :term:`بایت‌کد ` پایتون را اجرا می‌کند. این کار پیاده‌سازی CPython را ساده‌تر می‌کند، زیرا مدل شیء (شامل نوع‌های توکار مهمی مانند :class:`dict`) به‌طور ضمنی در برابر دسترسی هم‌زمان ایمن می‌شود. قفل کردن کل مفسر باعث می‌شود چندنخی کردن مفسر آسان‌تر شود، اما به قیمت از دست دادن بخش زیادی از موازی‌سازی‌ای که ماشین‌های چندپردازنده‌ای فراهم می‌کنند." -#: ../../glossary.rst:716 -msgid "" -"However, some extension modules, either standard or third-party, are designed so as to release the GIL when doing computationally intensive tasks such as " -"compression or hashing. Also, the GIL is always released when doing I/O." -msgstr "" -"با این حال، برخی ماژول‌های افزونه، چه استاندارد و چه شخص ثالث، به‌گونه‌ای طراحی شده‌اند که هنگام انجام وظایف محاسباتی سنگین مانند فشرده‌سازی یا درهم‌سازی، GIL را آزاد " -"کنند. همچنین، GIL همیشه هنگام انجام عملیات ورودی/خروجی آزاد می‌شود." +msgid "However, some extension modules, either standard or third-party, are designed so as to release the GIL when doing computationally intensive tasks such as compression or hashing. Also, the GIL is always released when doing I/O." +msgstr "با این حال، برخی ماژول‌های افزونه، چه استاندارد و چه شخص ثالث، به‌گونه‌ای طراحی شده‌اند که هنگام انجام وظایف محاسباتی سنگین مانند فشرده‌سازی یا درهم‌سازی، GIL را آزاد کنند. همچنین، GIL همیشه هنگام انجام عملیات ورودی/خروجی آزاد می‌شود." -#: ../../glossary.rst:721 -msgid "" -"As of Python 3.13, the GIL can be disabled using the :option:`--disable-gil` build configuration. After building Python with this option, code must be run " -"with :option:`-X gil=0 <-X>` or after setting the :envvar:`PYTHON_GIL=0 ` environment variable. This feature enables improved performance for multi-" -"threaded applications and makes it easier to use multi-core CPUs efficiently. For more details, see :pep:`703`." -msgstr "" -"از پایتون ۳.۱۳، می‌توان GIL را با استفاده از پیکربندی ساخت :option:`--disable-gil` غیرفعال کرد. پس از ساخت پایتون با این گزینه، کد باید با :option:`-X gil=0 <-X>` " -"یا پس از تنظیم متغیر محیطی :envvar:`PYTHON_GIL=0 ` اجرا شود. این ویژگی عملکرد بهتر برای برنامه‌های چندنخی را فراهم می‌کند و استفادهٔ مؤثرتر از CPUهای " -"چند‌هسته‌ای را آسان‌تر می‌سازد. برای جزئیات بیشتر، :pep:`703` را ببینید." +msgid "As of Python 3.13, the GIL can be disabled using the :option:`--disable-gil` build configuration. After building Python with this option, code must be run with :option:`-X gil=0 <-X>` or after setting the :envvar:`PYTHON_GIL=0 ` environment variable. This feature enables improved performance for multi-threaded applications and makes it easier to use multi-core CPUs efficiently. For more details, see :pep:`703`." +msgstr "از پایتون ۳.۱۳، می‌توان GIL را با استفاده از پیکربندی ساخت :option:`--disable-gil` غیرفعال کرد. پس از ساخت پایتون با این گزینه، کد باید با :option:`-X gil=0 <-X>` یا پس از تنظیم متغیر محیطی :envvar:`PYTHON_GIL=0 ` اجرا شود. این ویژگی عملکرد بهتر برای برنامه‌های چندنخی را فراهم می‌کند و استفادهٔ مؤثرتر از CPUهای چند‌هسته‌ای را آسان‌تر می‌سازد. برای جزئیات بیشتر، :pep:`703` را ببینید." -#: ../../glossary.rst:728 -msgid "" -"In prior versions of Python's C API, a function might declare that it requires the GIL to be held in order to use it. This refers to having an :term:`attached " -"thread state`." -msgstr "" -"در نسخه‌های پیشین API زبان C پایتون، یک تابع ممکن بود اعلام کند که برای استفاده از آن، لازم است GIL در اختیار گرفته شده باشد. این موضوع به داشتن یک :term:`وضعیت نخ " -"متصل ` اشاره دارد." +msgid "In prior versions of Python's C API, a function might declare that it requires the GIL to be held in order to use it. This refers to having an :term:`attached thread state`." +msgstr "در نسخه‌های پیشین API زبان C پایتون، یک تابع ممکن بود اعلام کند که برای استفاده از آن، لازم است GIL در اختیار گرفته شده باشد. این موضوع به داشتن یک :term:`وضعیت نخ متصل ` اشاره دارد." -#: ../../glossary.rst:731 msgid "global state" msgstr "وضعیت سراسری" -#: ../../glossary.rst:733 -msgid "" -"Data that is accessible throughout a program, such as module-level variables, class variables, or C static variables in :term:`extension modules `. In multi-threaded programs, global state shared between threads typically requires synchronization to avoid :term:`race conditions ` " -"and :term:`data races `." -msgstr "" -"داده‌ای که در سراسر یک برنامه قابل دسترسی است، مانند متغیرهای سطح ماژول، متغیرهای کلاس یا متغیرهای ایستای C در :term:`ماژول افزونه `. در " -"برنامه‌های چندنخی، وضعیت سراسری اشتراک‌گذاری‌شده بین نخ‌ها معمولاً برای جلوگیری از :term:`شرط رقابت ` و :term:`رقابت داده ` به همگام‌سازی " -"نیاز دارد." +msgid "Data that is accessible throughout a program, such as module-level variables, class variables, or C static variables in :term:`extension modules `. In multi-threaded programs, global state shared between threads typically requires synchronization to avoid :term:`race conditions ` and :term:`data races `." +msgstr "داده‌ای که در سراسر یک برنامه قابل دسترسی است، مانند متغیرهای سطح ماژول، متغیرهای کلاس یا متغیرهای ایستای C در :term:`ماژول افزونه `. در برنامه‌های چندنخی، وضعیت سراسری اشتراک‌گذاری‌شده بین نخ‌ها معمولاً برای جلوگیری از :term:`شرط رقابت ` و :term:`رقابت داده ` به همگام‌سازی نیاز دارد." -#: ../../glossary.rst:739 msgid "hash-based pyc" msgstr "pyc مبتنی بر هش" -#: ../../glossary.rst:741 -msgid "" -"A bytecode cache file that uses the hash rather than the last-modified time of the corresponding source file to determine its validity. See :ref:`pyc-" -"invalidation`." +msgid "A bytecode cache file that uses the hash rather than the last-modified time of the corresponding source file to determine its validity. See :ref:`pyc-invalidation`." msgstr "یک فایل نهانگاه بایت‌کد که به‌جای زمان آخرین تغییر فایل منبع متناظر، از هش آن برای تعیین اعتبار خود استفاده می‌کند. :ref:`pyc-invalidation` را ببینید." -#: ../../glossary.rst:744 msgid "hashable" msgstr "قابل درهم‌سازی" -#: ../../glossary.rst:746 -msgid "" -"An object is *hashable* if it has a hash value which never changes during its lifetime (it needs a :meth:`~object.__hash__` method), and can be compared to other " -"objects (it needs an :meth:`~object.__eq__` method). Hashable objects which compare equal must have the same hash value." -msgstr "" -"یک شیء *قابل درهم‌سازی* است اگر دارای یک مقدار هش باشد که در طول عمر آن هرگز تغییر نمی‌کند (به یک متد :meth:`~object.__hash__` نیاز دارد) و بتوان آن را با اشیای " -"دیگر مقایسه کرد (به یک متد :meth:`~object.__eq__` نیاز دارد). اشیای قابل درهم‌سازی که برابر مقایسه می‌شوند باید مقدار هش یکسانی داشته باشند." +msgid "An object is *hashable* if it has a hash value which never changes during its lifetime (it needs a :meth:`~object.__hash__` method), and can be compared to other objects (it needs an :meth:`~object.__eq__` method). Hashable objects which compare equal must have the same hash value." +msgstr "یک شیء *قابل درهم‌سازی* است اگر دارای یک مقدار هش باشد که در طول عمر آن هرگز تغییر نمی‌کند (به یک متد :meth:`~object.__hash__` نیاز دارد) و بتوان آن را با اشیای دیگر مقایسه کرد (به یک متد :meth:`~object.__eq__` نیاز دارد). اشیای قابل درهم‌سازی که برابر مقایسه می‌شوند باید مقدار هش یکسانی داشته باشند." -#: ../../glossary.rst:752 msgid "Hashability makes an object usable as a dictionary key and a set member, because these data structures use the hash value internally." msgstr "قابل درهم‌سازی بودن باعث می‌شود یک شیء به‌عنوان کلید دیکشنری و عضو مجموعه قابل استفاده باشد، زیرا این ساختارهای داده مقدار هش را به‌صورت داخلی استفاده می‌کنند." -#: ../../glossary.rst:755 -msgid "" -"Most of Python's immutable built-in objects are hashable; mutable containers (such as lists or dictionaries) are not; immutable containers (such as tuples and " -"frozensets) are only hashable if their elements are hashable. Objects which are instances of user-defined classes are hashable by default. They all compare " -"unequal (except with themselves), and their hash value is derived from their :func:`id`." -msgstr "" -"بیشتر اشیای توکار تغییرناپذیر پایتون قابل درهم‌سازی هستند؛ محفظه‌های تغییرپذیر (مانند فهرست‌ها یا دیکشنری‌ها) قابل درهم‌سازی نیستند؛ محفظه‌های تغییرناپذیر (مانند تاپل‌ها " -"یا frozensetها) فقط در صورتی قابل درهم‌سازی هستند که عناصرشان قابل درهم‌سازی باشند. اشیایی که نمونه‌هایی از کلاس‌های تعریف‌شده توسط کاربر هستند، به‌طور پیش‌فرض قابل " -"درهم‌سازی هستند. همهٔ آن‌ها نابرابر مقایسه می‌شوند (به‌جز با خودشان) و مقدار هش آن‌ها از :func:`id` آن‌ها مشتق می‌شود." +msgid "Most of Python's immutable built-in objects are hashable; mutable containers (such as lists or dictionaries) are not; immutable containers (such as tuples and frozensets) are only hashable if their elements are hashable. Objects which are instances of user-defined classes are hashable by default. They all compare unequal (except with themselves), and their hash value is derived from their :func:`id`." +msgstr "بیشتر اشیای توکار تغییرناپذیر پایتون قابل درهم‌سازی هستند؛ محفظه‌های تغییرپذیر (مانند فهرست‌ها یا دیکشنری‌ها) قابل درهم‌سازی نیستند؛ محفظه‌های تغییرناپذیر (مانند تاپل‌ها یا frozensetها) فقط در صورتی قابل درهم‌سازی هستند که عناصرشان قابل درهم‌سازی باشند. اشیایی که نمونه‌هایی از کلاس‌های تعریف‌شده توسط کاربر هستند، به‌طور پیش‌فرض قابل درهم‌سازی هستند. همهٔ آن‌ها نابرابر مقایسه می‌شوند (به‌جز با خودشان) و مقدار هش آن‌ها از :func:`id` آن‌ها مشتق می‌شود." -#: ../../glossary.rst:762 msgid "IDLE" msgstr "IDLE" -#: ../../glossary.rst:764 -msgid "" -"An Integrated Development and Learning Environment for Python. :ref:`idle` is a basic editor and interpreter environment which ships with the standard " -"distribution of Python." +msgid "An Integrated Development and Learning Environment for Python. :ref:`idle` is a basic editor and interpreter environment which ships with the standard distribution of Python." msgstr "یک محیط توسعه و یادگیری یکپارچه برای پایتون. :ref:`idle` یک محیط ویرایشگر و مفسر پایه است که همراه با توزیع استاندارد پایتون ارائه می‌شود." -#: ../../glossary.rst:767 msgid "immortal" msgstr "نامیرا" -#: ../../glossary.rst:769 msgid "*Immortal objects* are a CPython implementation detail introduced in :pep:`683`." msgstr "*اشیای نامیرا* یک جزئیات پیاده‌سازی CPython هستند که در :pep:`683` معرفی شده‌اند." -#: ../../glossary.rst:772 -msgid "" -"If an object is immortal, its :term:`reference count` is never modified, and therefore it is never deallocated while the interpreter is running. For " -"example, :const:`True` and :const:`None` are immortal in CPython." -msgstr "" -"اگر یک شیء نامیرا باشد، :term:`شمارندهٔ ارجاع ` آن هرگز تغییر نمی‌کند و بنابراین تا زمانی که مفسر در حال اجرا است، هرگز آزاد نمی‌شود. برای " -"مثال، :const:`True` و :const:`None` در CPython نامیرا هستند." +msgid "If an object is immortal, its :term:`reference count` is never modified, and therefore it is never deallocated while the interpreter is running. For example, :const:`True` and :const:`None` are immortal in CPython." +msgstr "اگر یک شیء نامیرا باشد، :term:`شمارندهٔ ارجاع ` آن هرگز تغییر نمی‌کند و بنابراین تا زمانی که مفسر در حال اجرا است، هرگز آزاد نمی‌شود. برای مثال، :const:`True` و :const:`None` در CPython نامیرا هستند." -#: ../../glossary.rst:776 msgid "Immortal objects can be identified via :func:`sys._is_immortal`, or via :c:func:`PyUnstable_IsImmortal` in the C API." msgstr "اشیای نامیرا را می‌توان از طریق :func:`sys._is_immortal` یا از طریق :c:func:`PyUnstable_IsImmortal` در API زبان C شناسایی کرد." -#: ../../glossary.rst:778 msgid "immutable" msgstr "تغییرناپذیر" -#: ../../glossary.rst:780 -msgid "" -"An object with a fixed value. Immutable objects include numbers, strings and tuples. Such an object cannot be altered. A new object has to be created if a " -"different value has to be stored. They play an important role in places where a constant hash value is needed, for example as a key in a dictionary. Immutable " -"objects are inherently :term:`thread-safe` because their state cannot be modified after creation, eliminating concerns about improperly " -"synchronized :term:`concurrent modification`." -msgstr "" -"شیءای با مقدار ثابت. اشیای تغییرناپذیر شامل اعداد، نخ‌ها و تاپل‌ها هستند. چنین شی‌ءای نمی‌تواند تغییر داده شود. اگر لازم باشد مقدار متفاوتی ذخیره شود، باید شیء جدیدی " -"ایجاد شود. آن‌ها در جاهایی که مقدار هش ثابت لازم است، برای مثال به‌عنوان یک کلید در یک دیکشنری، نقش مهمی دارند. اشیای تغییرناپذیر ذاتاً :term:`ایمن برای نخ‌های اجرایی " -"` هستند، زیرا وضعیت آن‌ها پس از ایجاد قابل تغییر نیست و نگرانی‌ها دربارهٔ :term:`تغییر هم‌زمان ` که به‌درستی همگام‌سازی نشده است، " -"از بین می‌رود." +msgid "An object with a fixed value. Immutable objects include numbers, strings and tuples. Such an object cannot be altered. A new object has to be created if a different value has to be stored. They play an important role in places where a constant hash value is needed, for example as a key in a dictionary. Immutable objects are inherently :term:`thread-safe` because their state cannot be modified after creation, eliminating concerns about improperly synchronized :term:`concurrent modification`." +msgstr "شیءای با مقدار ثابت. اشیای تغییرناپذیر شامل اعداد، نخ‌ها و تاپل‌ها هستند. چنین شی‌ءای نمی‌تواند تغییر داده شود. اگر لازم باشد مقدار متفاوتی ذخیره شود، باید شیء جدیدی ایجاد شود. آن‌ها در جاهایی که مقدار هش ثابت لازم است، برای مثال به‌عنوان یک کلید در یک دیکشنری، نقش مهمی دارند. اشیای تغییرناپذیر ذاتاً :term:`ایمن برای نخ‌های اجرایی ` هستند، زیرا وضعیت آن‌ها پس از ایجاد قابل تغییر نیست و نگرانی‌ها دربارهٔ :term:`تغییر هم‌زمان ` که به‌درستی همگام‌سازی نشده است، از بین می‌رود." -#: ../../glossary.rst:787 msgid "import path" msgstr "مسیر ایمپورت" -#: ../../glossary.rst:789 -msgid "" -"A list of locations (or :term:`path entries `) that are searched by the :term:`path based finder` for modules to import. During import, this list of " -"locations usually comes from :data:`sys.path`, but for subpackages it may also come from the parent package's ``__path__`` attribute." -msgstr "" -"فهرستی از مکان‌ها (یا :term:`ورودی مسیر `) که توسط :term:`یابندهٔ مبتنی بر مسیر ` برای ماژول‌های قابل ایمپورت جست‌وجو می‌شود. هنگام " -"ایمپورت، این فهرست از مکان‌ها معمولاً از :data:`sys.path` می‌آید، اما برای زیر‌بسته‌ها ممکن است از ویژگی ``__path__`` بستهٔ والد نیز به‌دست آید." +msgid "A list of locations (or :term:`path entries `) that are searched by the :term:`path based finder` for modules to import. During import, this list of locations usually comes from :data:`sys.path`, but for subpackages it may also come from the parent package's ``__path__`` attribute." +msgstr "فهرستی از مکان‌ها (یا :term:`ورودی مسیر `) که توسط :term:`یابندهٔ مبتنی بر مسیر ` برای ماژول‌های قابل ایمپورت جست‌وجو می‌شود. هنگام ایمپورت، این فهرست از مکان‌ها معمولاً از :data:`sys.path` می‌آید، اما برای زیر‌بسته‌ها ممکن است از ویژگی ``__path__`` بستهٔ والد نیز به‌دست آید." -#: ../../glossary.rst:794 msgid "importing" msgstr "ایمپورت کردن" -#: ../../glossary.rst:796 msgid "The process by which Python code in one module is made available to Python code in another module." msgstr "فرایندی که طی آن کد پایتون در یک ماژول برای کد پایتون در ماژولی دیگر در دسترس قرار می‌گیرد." -#: ../../glossary.rst:798 msgid "importer" msgstr "ایمپورت‌کننده" -#: ../../glossary.rst:800 msgid "An object that both finds and loads a module; both a :term:`finder` and :term:`loader` object." msgstr "شی‌ءای که هم یک ماژول را پیدا می‌کند و هم آن را بارگذاری می‌کند؛ هم یک شیء :term:`یابنده ` و هم یک شیء :term:`بارگذار `." -#: ../../glossary.rst:802 msgid "index" msgstr "اندیس" -#: ../../glossary.rst:804 msgid "A numeric value that represents the position of an element in a :term:`sequence`." msgstr "مقداری عددی که موقعیت یک المان را در یک :term:`دنباله ` نشان می‌دهد." -#: ../../glossary.rst:807 msgid "In Python, indexing starts at zero. For example, ``things[0]`` names the *first* element of ``things``; ``things[1]`` names the second one." msgstr "در پایتون، اندیس‌گذاری از صفر شروع می‌شود. برای مثال، ``things[0]`` نخستین المان ``things`` را نام‌گذاری می‌کند؛ ``things[1]`` دومین مورد را نام‌گذاری می‌کند." -#: ../../glossary.rst:811 msgid "In some contexts, Python allows negative indexes for counting from the end of a sequence, and indexing using :term:`slices `." msgstr "در برخی زمینه‌ها، پایتون اجازه می‌دهد از اندیس‌های منفی برای شمارش از انتهای یک دنباله و از اندیس‌گذاری با استفاده از :term:`برش ` استفاده شود." -#: ../../glossary.rst:814 msgid "See also :term:`subscript`." msgstr "همچنین :term:`زیرنویس ` را ببینید." -#: ../../glossary.rst:815 msgid "interactive" msgstr "تعاملی" -#: ../../glossary.rst:817 -msgid "" -"Python has an interactive interpreter which means you can enter statements and expressions at the interpreter prompt, immediately execute them and see their " -"results. Just launch ``python`` with no arguments (possibly by selecting it from your computer's main menu). It is a very powerful way to test out new ideas or " -"inspect modules and packages (remember ``help(x)``). For more on interactive mode, see :ref:`tut-interac`." -msgstr "" -"پایتون یک مفسر تعاملی دارد، یعنی می‌توانید دستورها و عبارت‌ها را در اعلان مفسر وارد کنید، آن‌ها را بلافاصله اجرا کنید و نتایجشان را ببینید. فقط ``python`` را بدون " -"آرگومان اجرا کنید (احتمالاً با انتخاب آن از منوی اصلی رایانهٔ خود). این روش بسیار قدرتمندی برای آزمایش ایده‌های جدید یا بررسی ماژول‌ها و بسته‌ها است (``help(x)`` را به " -"خاطر داشته باشید). برای اطلاعات بیشتر دربارهٔ حالت تعاملی، :ref:`tut-interac` را ببینید." +msgid "Python has an interactive interpreter which means you can enter statements and expressions at the interpreter prompt, immediately execute them and see their results. Just launch ``python`` with no arguments (possibly by selecting it from your computer's main menu). It is a very powerful way to test out new ideas or inspect modules and packages (remember ``help(x)``). For more on interactive mode, see :ref:`tut-interac`." +msgstr "پایتون یک مفسر تعاملی دارد، یعنی می‌توانید دستورها و عبارت‌ها را در اعلان مفسر وارد کنید، آن‌ها را بلافاصله اجرا کنید و نتایجشان را ببینید. فقط ``python`` را بدون آرگومان اجرا کنید (احتمالاً با انتخاب آن از منوی اصلی رایانهٔ خود). این روش بسیار قدرتمندی برای آزمایش ایده‌های جدید یا بررسی ماژول‌ها و بسته‌ها است (``help(x)`` را به خاطر داشته باشید). برای اطلاعات بیشتر دربارهٔ حالت تعاملی، :ref:`tut-interac` را ببینید." -#: ../../glossary.rst:824 msgid "interpreted" msgstr "تفسیری" -#: ../../glossary.rst:826 -msgid "" -"Python is an interpreted language, as opposed to a compiled one, though the distinction can be blurry because of the presence of the bytecode compiler. This " -"means that source files can be run directly without explicitly creating an executable which is then run. Interpreted languages typically have a shorter " -"development/debug cycle than compiled ones, though their programs generally also run more slowly. See also :term:`interactive`." -msgstr "" -"پایتون زبانی تفسیری است، در مقابل زبان‌های کامپایل‌شده، هرچند به‌دلیل وجود کامپایلر بایت‌کد، این تمایز می‌تواند مبهم باشد. این یعنی فایل‌های منبع را می‌توان بدون ایجاد " -"صریح یک فایل اجرایی که سپس اجرا شود، مستقیماً اجرا کرد. زبان‌های تفسیری معمولاً چرخهٔ توسعه/اشکال‌زدایی کوتاه‌تری نسبت به زبان‌های کامپایل‌شده دارند، هرچند برنامه‌های آن‌ها " -"معمولاً کندتر اجرا می‌شوند. همچنین :term:`تعاملی ` را ببینید." +msgid "Python is an interpreted language, as opposed to a compiled one, though the distinction can be blurry because of the presence of the bytecode compiler. This means that source files can be run directly without explicitly creating an executable which is then run. Interpreted languages typically have a shorter development/debug cycle than compiled ones, though their programs generally also run more slowly. See also :term:`interactive`." +msgstr "پایتون زبانی تفسیری است، در مقابل زبان‌های کامپایل‌شده، هرچند به‌دلیل وجود کامپایلر بایت‌کد، این تمایز می‌تواند مبهم باشد. این یعنی فایل‌های منبع را می‌توان بدون ایجاد صریح یک فایل اجرایی که سپس اجرا شود، مستقیماً اجرا کرد. زبان‌های تفسیری معمولاً چرخهٔ توسعه/اشکال‌زدایی کوتاه‌تری نسبت به زبان‌های کامپایل‌شده دارند، هرچند برنامه‌های آن‌ها معمولاً کندتر اجرا می‌شوند. همچنین :term:`تعاملی ` را ببینید." -#: ../../glossary.rst:833 msgid "interpreter shutdown" msgstr "خاموشی مفسر" -#: ../../glossary.rst:835 -msgid "" -"When asked to shut down, the Python interpreter enters a special phase where it gradually releases all allocated resources, such as modules and various critical " -"internal structures. It also makes several calls to the :term:`garbage collector `. This can trigger the execution of code in user-defined " -"destructors or weakref callbacks. Code executed during the shutdown phase can encounter various exceptions as the resources it relies on may not function anymore " -"(common examples are library modules or the warnings machinery)." -msgstr "" -"هنگامی که از مفسر پایتون خواسته می‌شود خاموش شود، وارد مرحلهٔ ویژه‌ای می‌شود که در آن به‌تدریج همهٔ منابع تخصیص‌یافته، مانند ماژول‌ها و ساختارهای داخلی مهم مختلف، آزاد " -"می‌شوند. همچنین چندین فراخوانی به :term:`زباله‌روبی ` انجام می‌دهد. این کار می‌تواند اجرای کد در نابودگرهای تعریف‌شده توسط کاربر یا کال‌بک‌های " -"weakref را فعال کند. کدی که در مرحلهٔ خاموشی اجرا می‌شود ممکن است با استثناهای مختلفی روبه‌رو شود، زیرا منابعی که به آن‌ها وابسته است ممکن است دیگر کار نکنند " -"(نمونه‌های رایج شامل ماژول‌های کتابخانه یا سازوکار هشدارها هستند)." +msgid "When asked to shut down, the Python interpreter enters a special phase where it gradually releases all allocated resources, such as modules and various critical internal structures. It also makes several calls to the :term:`garbage collector `. This can trigger the execution of code in user-defined destructors or weakref callbacks. Code executed during the shutdown phase can encounter various exceptions as the resources it relies on may not function anymore (common examples are library modules or the warnings machinery)." +msgstr "هنگامی که از مفسر پایتون خواسته می‌شود خاموش شود، وارد مرحلهٔ ویژه‌ای می‌شود که در آن به‌تدریج همهٔ منابع تخصیص‌یافته، مانند ماژول‌ها و ساختارهای داخلی مهم مختلف، آزاد می‌شوند. همچنین چندین فراخوانی به :term:`زباله‌روبی ` انجام می‌دهد. این کار می‌تواند اجرای کد در نابودگرهای تعریف‌شده توسط کاربر یا کال‌بک‌های weakref را فعال کند. کدی که در مرحلهٔ خاموشی اجرا می‌شود ممکن است با استثناهای مختلفی روبه‌رو شود، زیرا منابعی که به آن‌ها وابسته است ممکن است دیگر کار نکنند (نمونه‌های رایج شامل ماژول‌های کتابخانه یا سازوکار هشدارها هستند)." -#: ../../glossary.rst:844 msgid "The main reason for interpreter shutdown is that the ``__main__`` module or the script being run has finished executing." msgstr "دلیل اصلی خاموشی مفسر این است که ماژول ``__main__`` یا اسکریپتی که در حال اجرا است، اجرای خود را به پایان رسانده است." -#: ../../glossary.rst:846 msgid "iterable" msgstr "تکرارپذیر" -#: ../../glossary.rst:848 -msgid "" -"An object capable of returning its members one at a time. Examples of iterables include all sequence types (such as :class:`list`, :class:`str`, " -"and :class:`tuple`) and some non-sequence types like :class:`dict`, :term:`file objects `, and objects of any classes you define with " -"an :meth:`~object.__iter__` method or with a :meth:`~object.__getitem__` method that implements :term:`sequence` semantics." -msgstr "" -"شیءای که قادر است اعضای خود را یکی‌یکی بازگرداند. نمونه‌هایی از تکرارپذیرها شامل همهٔ نوع‌های دنباله‌ای (مانند :class:`list`، :class:`str` و :class:`tuple`) و برخی " -"نوع‌های غیرتوالی مانند :class:`dict`، :term:`شیء فایل ` و اشیای هر کلاسی که شما با متد :meth:`~object.__iter__` یا با متد :meth:`~object.__getitem__` " -"که معناشناسی :term:`دنباله ` را پیاده‌سازی می‌کند تعریف می‌کنید، هستند." +msgid "An object capable of returning its members one at a time. Examples of iterables include all sequence types (such as :class:`list`, :class:`str`, and :class:`tuple`) and some non-sequence types like :class:`dict`, :term:`file objects `, and objects of any classes you define with an :meth:`~object.__iter__` method or with a :meth:`~object.__getitem__` method that implements :term:`sequence` semantics." +msgstr "شیءای که قادر است اعضای خود را یکی‌یکی بازگرداند. نمونه‌هایی از تکرارپذیرها شامل همهٔ نوع‌های دنباله‌ای (مانند :class:`list`، :class:`str` و :class:`tuple`) و برخی نوع‌های غیرتوالی مانند :class:`dict`، :term:`شیء فایل ` و اشیای هر کلاسی که شما با متد :meth:`~object.__iter__` یا با متد :meth:`~object.__getitem__` که معناشناسی :term:`دنباله ` را پیاده‌سازی می‌کند تعریف می‌کنید، هستند." -#: ../../glossary.rst:856 -msgid "" -"Iterables can be used in a :keyword:`for` loop and in many other places where a sequence is needed (:func:`zip`, :func:`map`, ...). When an iterable object is " -"passed as an argument to the built-in function :func:`iter`, it returns an iterator for the object. This iterator is good for one pass over the set of values. " -"When using iterables, it is usually not necessary to call :func:`iter` or deal with iterator objects yourself. The :keyword:`for` statement does that " -"automatically for you, creating a temporary unnamed variable to hold the iterator for the duration of the loop. See also :term:`iterator`, :term:`sequence`, " -"and :term:`generator`." -msgstr "" -"تکرارپذیرها را می‌توان در یک حلقهٔ :keyword:`for` و در بسیاری از مکان‌های دیگری که یک دنباله لازم است (:func:`zip`، :func:`map` و ...) استفاده کرد. هنگامی که یک شیء " -"تکرارپذیر به‌عنوان آرگومان به تابع توکار :func:`iter` داده می‌شود، یک تکرارگر برای آن شیء بازمی‌گرداند. این تکرارگر برای یک بار پیمایش مجموعهٔ مقادیر مناسب است. هنگام " -"استفاده از تکرارپذیرها، معمولاً لازم نیست خودتان :func:`iter` را فراخوانی کنید یا با اشیای تکرارگر سروکار داشته باشید. دستور :keyword:`for` این کار را به‌طور خودکار " -"برای شما انجام می‌دهد و یک متغیر موقتِ بدون نام ایجاد می‌کند تا در طول حلقه تکرارگر را نگه دارد. همچنین :term:`تکرارگر `، :term:`دنباله ` " -"و :term:`تولیدگر ` را ببینید." +msgid "Iterables can be used in a :keyword:`for` loop and in many other places where a sequence is needed (:func:`zip`, :func:`map`, ...). When an iterable object is passed as an argument to the built-in function :func:`iter`, it returns an iterator for the object. This iterator is good for one pass over the set of values. When using iterables, it is usually not necessary to call :func:`iter` or deal with iterator objects yourself. The :keyword:`for` statement does that automatically for you, creating a temporary unnamed variable to hold the iterator for the duration of the loop. See also :term:`iterator`, :term:`sequence`, and :term:`generator`." +msgstr "تکرارپذیرها را می‌توان در یک حلقهٔ :keyword:`for` و در بسیاری از مکان‌های دیگری که یک دنباله لازم است (:func:`zip`، :func:`map` و ...) استفاده کرد. هنگامی که یک شیء تکرارپذیر به‌عنوان آرگومان به تابع توکار :func:`iter` داده می‌شود، یک تکرارگر برای آن شیء بازمی‌گرداند. این تکرارگر برای یک بار پیمایش مجموعهٔ مقادیر مناسب است. هنگام استفاده از تکرارپذیرها، معمولاً لازم نیست خودتان :func:`iter` را فراخوانی کنید یا با اشیای تکرارگر سروکار داشته باشید. دستور :keyword:`for` این کار را به‌طور خودکار برای شما انجام می‌دهد و یک متغیر موقتِ بدون نام ایجاد می‌کند تا در طول حلقه تکرارگر را نگه دارد. همچنین :term:`تکرارگر `، :term:`دنباله ` و :term:`تولیدگر ` را ببینید." -#: ../../glossary.rst:866 msgid "iterator" msgstr "تکرارگر" -#: ../../glossary.rst:868 -msgid "" -"An object representing a stream of data. Repeated calls to the iterator's :meth:`~iterator.__next__` method (or passing it to the built-in function :func:`next`) " -"return successive items in the stream. When no more data are available a :exc:`StopIteration` exception is raised instead. At this point, the iterator object is " -"exhausted and any further calls to its :meth:`!__next__` method just raise :exc:`StopIteration` again. Iterators are required to have " -"an :meth:`~iterator.__iter__` method that returns the iterator object itself so every iterator is also iterable and may be used in most places where other " -"iterables are accepted. One notable exception is code which attempts multiple iteration passes. A container object (such as a :class:`list`) produces a fresh " -"new iterator each time you pass it to the :func:`iter` function or use it in a :keyword:`for` loop. Attempting this with an iterator will just return the same " -"exhausted iterator object used in the previous iteration pass, making it appear like an empty container." -msgstr "" -"شیءای که جریانی از داده‌ها را نمایش می‌دهد. فراخوانی‌های تکراری متد :meth:`~iterator.__next__` تکرارگر (یا ارسال آن به تابع توکار :func:`next`) آیتم‌های پیاپی در " -"جریان را بازمی‌گرداند. هنگامی که دادهٔ بیشتری در دسترس نباشد، به‌جای آن استثنای :exc:`StopIteration` پرتاب می‌شود. در این نقطه، شیء تکرارگر تمام شده است و هر فراخوانی " -"بعدی متد :meth:`!__next__` آن، دوباره فقط استثنای :exc:`StopIteration` ایجاد می‌کند. تکرارگرها باید متد :meth:`~iterator.__iter__` داشته باشند که خود شیء تکرارگر " -"را بازمی‌گرداند، بنابراین هر تکرارگر تکرارپذیر نیز هست و می‌تواند در بیشتر جاهایی که تکرارپذیرهای دیگر پذیرفته می‌شوند استفاده شود. یک استثنای قابل توجه، کدی است که " -"تلاش می‌کند چندین بار پیمایش انجام دهد. یک شیء محفظه‌ای (مانند :class:`list`) هر بار که به تابع :func:`iter` داده شود یا در یک حلقهٔ :keyword:`for` استفاده شود، یک " -"تکرارگر جدید تولید می‌کند. تلاش برای انجام این کار با یک تکرارگر، فقط همان شیء تکرارگر تمام‌شده‌ای را بازمی‌گرداند که در پیمایش قبلی استفاده شده بود و باعث می‌شود " -"مانند یک محفظهٔ خالی به نظر برسد." - -#: ../../glossary.rst:883 +msgid "An object representing a stream of data. Repeated calls to the iterator's :meth:`~iterator.__next__` method (or passing it to the built-in function :func:`next`) return successive items in the stream. When no more data are available a :exc:`StopIteration` exception is raised instead. At this point, the iterator object is exhausted and any further calls to its :meth:`!__next__` method just raise :exc:`StopIteration` again. Iterators are required to have an :meth:`~iterator.__iter__` method that returns the iterator object itself so every iterator is also iterable and may be used in most places where other iterables are accepted. One notable exception is code which attempts multiple iteration passes. A container object (such as a :class:`list`) produces a fresh new iterator each time you pass it to the :func:`iter` function or use it in a :keyword:`for` loop. Attempting this with an iterator will just return the same exhausted iterator object used in the previous iteration pass, making it appear like an empty container." +msgstr "شیءای که جریانی از داده‌ها را نمایش می‌دهد. فراخوانی‌های تکراری متد :meth:`~iterator.__next__` تکرارگر (یا ارسال آن به تابع توکار :func:`next`) آیتم‌های پیاپی در جریان را بازمی‌گرداند. هنگامی که دادهٔ بیشتری در دسترس نباشد، به‌جای آن استثنای :exc:`StopIteration` پرتاب می‌شود. در این نقطه، شیء تکرارگر تمام شده است و هر فراخوانی بعدی متد :meth:`!__next__` آن، دوباره فقط استثنای :exc:`StopIteration` ایجاد می‌کند. تکرارگرها باید متد :meth:`~iterator.__iter__` داشته باشند که خود شیء تکرارگر را بازمی‌گرداند، بنابراین هر تکرارگر تکرارپذیر نیز هست و می‌تواند در بیشتر جاهایی که تکرارپذیرهای دیگر پذیرفته می‌شوند استفاده شود. یک استثنای قابل توجه، کدی است که تلاش می‌کند چندین بار پیمایش انجام دهد. یک شیء محفظه‌ای (مانند :class:`list`) هر بار که به تابع :func:`iter` داده شود یا در یک حلقهٔ :keyword:`for` استفاده شود، یک تکرارگر جدید تولید می‌کند. تلاش برای انجام این کار با یک تکرارگر، فقط همان شیء تکرارگر تمام‌شده‌ای را بازمی‌گرداند که در پیمایش قبلی استفاده شده بود و باعث می‌شود مانند یک محفظهٔ خالی به نظر برسد." + msgid "More information can be found in :ref:`typeiter`." msgstr "اطلاعات بیشتر را می‌توان در :ref:`typeiter` یافت." -#: ../../glossary.rst:887 -msgid "" -"CPython does not consistently apply the requirement that an iterator define :meth:`~iterator.__iter__`. And also please note that :term:`free-threaded ` CPython does not guarantee :term:`thread-safe` behavior of iterator operations." -msgstr "" -"CPython به‌طور سازگار الزام تعریف متد :meth:`~iterator.__iter__` برای یک تکرارگر را اعمال نمی‌کند. همچنین توجه داشته باشید که CPython :term:`نخ‌گذاری آزاد ` رفتار :term:`ایمن برای نخ‌های اجرایی ` را برای عملیات تکرارگرها تضمین نمی‌کند." +msgid "CPython does not consistently apply the requirement that an iterator define :meth:`~iterator.__iter__`. And also please note that :term:`free-threaded ` CPython does not guarantee :term:`thread-safe` behavior of iterator operations." +msgstr "CPython به‌طور سازگار الزام تعریف متد :meth:`~iterator.__iter__` برای یک تکرارگر را اعمال نمی‌کند. همچنین توجه داشته باشید که CPython :term:`نخ‌گذاری آزاد ` رفتار :term:`ایمن برای نخ‌های اجرایی ` را برای عملیات تکرارگرها تضمین نمی‌کند." -#: ../../glossary.rst:892 msgid "key" msgstr "کلید" -#: ../../glossary.rst:894 msgid "A value that identifies an entry in a :term:`mapping`. See also :term:`subscript`." msgstr "مقداری که یک ورودی را در یک :term:`نگاشت ` شناسایی می‌کند. همچنین :term:`زیرنویس ` را ببینید." -#: ../../glossary.rst:896 msgid "key function" msgstr "تابع کلید" -#: ../../glossary.rst:898 -msgid "" -"A key function or collation function is a callable that returns a value used for sorting or ordering. For example, :func:`locale.strxfrm` is used to produce a " -"sort key that is aware of locale specific sort conventions." -msgstr "" -"یک تابع کلید یا تابع هم‌ترازی، یک شیء قابل فراخوانی است که مقداری را بازمی‌گرداند که برای مرتب‌سازی یا ترتیب‌دهی استفاده می‌شود. برای مثال، :func:`locale.strxfrm` برای " -"تولید یک کلید مرتب‌سازی که از قراردادهای مرتب‌سازی خاص یک محلی آگاه است استفاده می‌شود." +msgid "A key function or collation function is a callable that returns a value used for sorting or ordering. For example, :func:`locale.strxfrm` is used to produce a sort key that is aware of locale specific sort conventions." +msgstr "یک تابع کلید یا تابع هم‌ترازی، یک شیء قابل فراخوانی است که مقداری را بازمی‌گرداند که برای مرتب‌سازی یا ترتیب‌دهی استفاده می‌شود. برای مثال، :func:`locale.strxfrm` برای تولید یک کلید مرتب‌سازی که از قراردادهای مرتب‌سازی خاص یک محلی آگاه است استفاده می‌شود." -#: ../../glossary.rst:903 -msgid "" -"A number of tools in Python accept key functions to control how elements are ordered or grouped. They " -"include :func:`min`, :func:`max`, :func:`sorted`, :meth:`list.sort`, :func:`heapq.merge`, :func:`heapq.nsmallest`, :func:`heapq.nlargest`, " -"and :func:`itertools.groupby`." -msgstr "" -"تعدادی از ابزارهای پایتون، توابع کلید را برای کنترل نحوهٔ ترتیب‌دهی یا گروه‌بندی المان‌ها می‌پذیرند. این ابزارها " -"شامل :func:`min`، :func:`max`، :func:`sorted`، :meth:`list.sort`، :func:`heapq.merge`، :func:`heapq.nsmallest`، :func:`heapq.nlargest` و :func:`itertools.groupby` " -"هستند." +msgid "A number of tools in Python accept key functions to control how elements are ordered or grouped. They include :func:`min`, :func:`max`, :func:`sorted`, :meth:`list.sort`, :func:`heapq.merge`, :func:`heapq.nsmallest`, :func:`heapq.nlargest`, and :func:`itertools.groupby`." +msgstr "تعدادی از ابزارهای پایتون، توابع کلید را برای کنترل نحوهٔ ترتیب‌دهی یا گروه‌بندی المان‌ها می‌پذیرند. این ابزارها شامل :func:`min`، :func:`max`، :func:`sorted`، :meth:`list.sort`، :func:`heapq.merge`، :func:`heapq.nsmallest`، :func:`heapq.nlargest` و :func:`itertools.groupby` هستند." -#: ../../glossary.rst:909 -msgid "" -"There are several ways to create a key function. For example. the :meth:`str.casefold` method can serve as a key function for case insensitive sorts. " -"Alternatively, a key function can be built from a :keyword:`lambda` expression such as ``lambda r: (r[0], r[2])``. " -"Also, :func:`operator.attrgetter`, :func:`operator.itemgetter`, and :func:`operator.methodcaller` are three key function constructors. See the :ref:`Sorting HOW " -"TO ` for examples of how to create and use key functions." -msgstr "" -"چندین روش برای ایجاد یک تابع کلید وجود دارد. برای مثال، متد :meth:`str.casefold` می‌تواند به‌عنوان یک تابع کلید برای مرتب‌سازی‌های بدون حساسیت به بزرگی و کوچکی حروف " -"استفاده شود. همچنین، یک تابع کلید می‌تواند از یک عبارت :keyword:`lambda` مانند ``lambda r: (r[0], r[2])`` ساخته شود. علاوه بر " -"این، :func:`operator.attrgetter`، :func:`operator.itemgetter` و :func:`operator.methodcaller` سه سازندهٔ تابع کلید هستند. برای نمونه‌هایی از نحوهٔ ایجاد و استفاده از " -"توابع کلید، :ref:`Sorting HOW TO ` را ببینید." +msgid "There are several ways to create a key function. For example. the :meth:`str.casefold` method can serve as a key function for case insensitive sorts. Alternatively, a key function can be built from a :keyword:`lambda` expression such as ``lambda r: (r[0], r[2])``. Also, :func:`operator.attrgetter`, :func:`operator.itemgetter`, and :func:`operator.methodcaller` are three key function constructors. See the :ref:`Sorting HOW TO ` for examples of how to create and use key functions." +msgstr "چندین روش برای ایجاد یک تابع کلید وجود دارد. برای مثال، متد :meth:`str.casefold` می‌تواند به‌عنوان یک تابع کلید برای مرتب‌سازی‌های بدون حساسیت به بزرگی و کوچکی حروف استفاده شود. همچنین، یک تابع کلید می‌تواند از یک عبارت :keyword:`lambda` مانند ``lambda r: (r[0], r[2])`` ساخته شود. علاوه بر این، :func:`operator.attrgetter`، :func:`operator.itemgetter` و :func:`operator.methodcaller` سه سازندهٔ تابع کلید هستند. برای نمونه‌هایی از نحوهٔ ایجاد و استفاده از توابع کلید، :ref:`Sorting HOW TO ` را ببینید." -#: ../../glossary.rst:916 msgid "keyword argument" msgstr "آرگومان کلیدواژه‌ای" -#: ../../glossary.rst:918 ../../glossary.rst:1305 msgid "See :term:`argument`." msgstr ":term:`آرگومان ` را ببینید." -#: ../../glossary.rst:919 msgid "lambda" msgstr "lambda" -#: ../../glossary.rst:921 -msgid "" -"An anonymous inline function consisting of a single :term:`expression` which is evaluated when the function is called. The syntax to create a lambda function is " -"``lambda [parameters]: expression``" -msgstr "" -"یک تابع درون‌خطی بی‌نام که از یک :term:`عبارت ` واحد تشکیل شده است و هنگام فراخوانی تابع ارزیابی می‌شود. سینتکس ایجاد یک تابع lambda به‌صورت ``lambda " -"[parameters]: expression`` است" +msgid "An anonymous inline function consisting of a single :term:`expression` which is evaluated when the function is called. The syntax to create a lambda function is ``lambda [parameters]: expression``" +msgstr "یک تابع درون‌خطی بی‌نام که از یک :term:`عبارت ` واحد تشکیل شده است و هنگام فراخوانی تابع ارزیابی می‌شود. سینتکس ایجاد یک تابع lambda به‌صورت ``lambda [parameters]: expression`` است" -#: ../../glossary.rst:924 msgid "LBYL" msgstr "LBYL" -#: ../../glossary.rst:926 -msgid "" -"Look before you leap. This coding style explicitly tests for pre-conditions before making calls or lookups. This style contrasts with the :term:`EAFP` approach " -"and is characterized by the presence of many :keyword:`if` statements." -msgstr "" -"پیش از جهش نگاه کنید. این سبک کدنویسی پیش‌شرط‌ها را پیش از انجام فراخوانی‌ها یا جست‌وجوها به‌طور صریح آزمایش می‌کند. این سبک در تضاد با رویکرد :term:`EAFP ` است و " -"با وجود تعداد زیادی دستور :keyword:`if` شناخته می‌شود." +msgid "Look before you leap. This coding style explicitly tests for pre-conditions before making calls or lookups. This style contrasts with the :term:`EAFP` approach and is characterized by the presence of many :keyword:`if` statements." +msgstr "پیش از جهش نگاه کنید. این سبک کدنویسی پیش‌شرط‌ها را پیش از انجام فراخوانی‌ها یا جست‌وجوها به‌طور صریح آزمایش می‌کند. این سبک در تضاد با رویکرد :term:`EAFP ` است و با وجود تعداد زیادی دستور :keyword:`if` شناخته می‌شود." -#: ../../glossary.rst:931 -msgid "" -"In a multi-threaded environment, the LBYL approach can risk introducing a :term:`race condition` between \"the looking\" and \"the leaping\". For example, the " -"code, ``if key in mapping: return mapping[key]`` can fail if another thread removes *key* from *mapping* after the test, but before the lookup. This issue can be " -"solved with :term:`locks ` or by using the :term:`EAFP` approach. See also :term:`thread-safe`." -msgstr "" -"در یک محیط چندنخی، رویکرد LBYL می‌تواند خطر ایجاد یک :term:`شرط رقابت ` بین «نگاه کردن» و «جهش کردن» را به همراه داشته باشد. برای مثال، کد ``if key " -"in mapping: return mapping[key]`` ممکن است شکست بخورد اگر نخ‌ای دیگر پس از آزمون، اما پیش از جست‌وجو، *key* را از *mapping* حذف کند. این مشکل را می‌توان " -"با :term:`قفل ` یا با استفاده از رویکرد :term:`EAFP ` حل کرد. همچنین :term:`ایمن برای نخ‌های اجرایی ` را ببینید." +msgid "In a multi-threaded environment, the LBYL approach can risk introducing a :term:`race condition` between \"the looking\" and \"the leaping\". For example, the code, ``if key in mapping: return mapping[key]`` can fail if another thread removes *key* from *mapping* after the test, but before the lookup. This issue can be solved with :term:`locks ` or by using the :term:`EAFP` approach. See also :term:`thread-safe`." +msgstr "در یک محیط چندنخی، رویکرد LBYL می‌تواند خطر ایجاد یک :term:`شرط رقابت ` بین «نگاه کردن» و «جهش کردن» را به همراه داشته باشد. برای مثال، کد ``if key in mapping: return mapping[key]`` ممکن است شکست بخورد اگر نخ‌ای دیگر پس از آزمون، اما پیش از جست‌وجو، *key* را از *mapping* حذف کند. این مشکل را می‌توان با :term:`قفل ` یا با استفاده از رویکرد :term:`EAFP ` حل کرد. همچنین :term:`ایمن برای نخ‌های اجرایی ` را ببینید." -#: ../../glossary.rst:937 msgid "lexical analyzer" msgstr "تحلیلگر واژگانی" -#: ../../glossary.rst:940 msgid "Formal name for the *tokenizer*; see :term:`token`." msgstr "نام رسمی برای *tokenizer*؛ :term:`توکن ` را ببینید." -#: ../../glossary.rst:941 msgid "list" msgstr "فهرست" -#: ../../glossary.rst:943 -msgid "" -"A built-in Python :term:`sequence`. Despite its name it is more akin to an array in other languages than to a linked list since access to elements is *O*\\ (1)." -msgstr "" -"یک :term:`دنباله ` توکار پایتون. با وجود نام آن، این نوع بیشتر شبیه یک آرایه در زبان‌های دیگر است تا یک فهرست پیوندی، زیرا دسترسی به المان‌ها *O*\\ (1) " -"است." +msgid "A built-in Python :term:`sequence`. Despite its name it is more akin to an array in other languages than to a linked list since access to elements is *O*\\ (1)." +msgstr "یک :term:`دنباله ` توکار پایتون. با وجود نام آن، این نوع بیشتر شبیه یک آرایه در زبان‌های دیگر است تا یک فهرست پیوندی، زیرا دسترسی به المان‌ها *O*\\ (1) است." -#: ../../glossary.rst:946 msgid "list comprehension" msgstr "درک فهرستی" -#: ../../glossary.rst:948 -msgid "" -"A compact way to process all or part of the elements in a sequence and return a list with the results. ``result = ['{:#04x}'.format(x) for x in range(256) if x % " -"2 == 0]`` generates a list of strings containing even hex numbers (0x..) in the range from 0 to 255. The :keyword:`if` clause is optional. If omitted, all " -"elements in ``range(256)`` are processed." -msgstr "" -"روشی فشرده برای پردازش همه یا بخشی از المان‌های یک دنباله و بازگرداندن یک فهرست با نتایج. ``result = ['{:#04x}'.format(x) for x in range(256) if x % 2 == 0]`` " -"فهرستی از نخ‌ها شامل اعداد مبنای شانزده زوج (0x..) در محدودهٔ ۰ تا ۲۵۵ تولید می‌کند. بند :keyword:`if` اختیاری است. اگر حذف شود، همهٔ المان‌های ``range(256)`` پردازش " -"می‌شوند." +msgid "A compact way to process all or part of the elements in a sequence and return a list with the results. ``result = ['{:#04x}'.format(x) for x in range(256) if x % 2 == 0]`` generates a list of strings containing even hex numbers (0x..) in the range from 0 to 255. The :keyword:`if` clause is optional. If omitted, all elements in ``range(256)`` are processed." +msgstr "روشی فشرده برای پردازش همه یا بخشی از المان‌های یک دنباله و بازگرداندن یک فهرست با نتایج. ``result = ['{:#04x}'.format(x) for x in range(256) if x % 2 == 0]`` فهرستی از نخ‌ها شامل اعداد مبنای شانزده زوج (0x..) در محدودهٔ ۰ تا ۲۵۵ تولید می‌کند. بند :keyword:`if` اختیاری است. اگر حذف شود، همهٔ المان‌های ``range(256)`` پردازش می‌شوند." -#: ../../glossary.rst:954 msgid "lock" msgstr "قفل" -#: ../../glossary.rst:956 -msgid "" -"A :term:`synchronization primitive` that allows only one thread at a time to access a shared resource. A thread must acquire a lock before accessing the " -"protected resource and release it afterward. If a thread attempts to acquire a lock that is already held by another thread, it will block until the lock becomes " -"available. Python's :mod:`threading` module provides :class:`~threading.Lock` (a basic lock) and :class:`~threading.RLock` (a :term:`reentrant` lock). Locks are " -"used to prevent :term:`race conditions ` and ensure :term:`thread-safe` access to shared data. Alternative design patterns to locks exist such as " -"queues, producer/consumer patterns, and thread-local state. See also :term:`deadlock`, and :term:`reentrant`." -msgstr "" -"یک :term:`اولیه ` که در هر زمان فقط به یک نخ اجازهٔ دسترسی به یک منبع اشتراکی را می‌دهد. یک نخ باید پیش از دسترسی به منبع محافظت‌شده، یک " -"قفل را به‌دست آورد و پس از آن آن را آزاد کند. اگر یک نخ تلاش کند قفلی را به‌دست آورد که پیش‌تر توسط نخ‌ای دیگر در اختیار گرفته شده است، تا زمانی که قفل در دسترس قرار " -"گیرد مسدود می‌شود. ماژول :mod:`threading` پایتون، :class:`~threading.Lock` (یک قفل پایه) و :class:`~threading.RLock` (یک قفل :term:`بازورودپذیر `) را " -"فراهم می‌کند. قفل‌ها برای جلوگیری از :term:`شرط رقابت ` و تضمین دسترسی :term:`ایمن برای نخ‌های اجرایی ` به داده‌های اشتراکی استفاده " -"می‌شوند. الگوهای طراحی جایگزین برای قفل‌ها وجود دارند، مانند صف‌ها، الگوهای تولیدکننده/مصرف‌کننده و وضعیت محلی نخ. همچنین :term:`بن‌بست ` " -"و :term:`بازورودپذیر ` را ببینید." - -#: ../../glossary.rst:967 +msgid "A :term:`synchronization primitive` that allows only one thread at a time to access a shared resource. A thread must acquire a lock before accessing the protected resource and release it afterward. If a thread attempts to acquire a lock that is already held by another thread, it will block until the lock becomes available. Python's :mod:`threading` module provides :class:`~threading.Lock` (a basic lock) and :class:`~threading.RLock` (a :term:`reentrant` lock). Locks are used to prevent :term:`race conditions ` and ensure :term:`thread-safe` access to shared data. Alternative design patterns to locks exist such as queues, producer/consumer patterns, and thread-local state. See also :term:`deadlock`, and :term:`reentrant`." +msgstr "یک :term:`اولیه ` که در هر زمان فقط به یک نخ اجازهٔ دسترسی به یک منبع اشتراکی را می‌دهد. یک نخ باید پیش از دسترسی به منبع محافظت‌شده، یک قفل را به‌دست آورد و پس از آن آن را آزاد کند. اگر یک نخ تلاش کند قفلی را به‌دست آورد که پیش‌تر توسط نخ‌ای دیگر در اختیار گرفته شده است، تا زمانی که قفل در دسترس قرار گیرد مسدود می‌شود. ماژول :mod:`threading` پایتون، :class:`~threading.Lock` (یک قفل پایه) و :class:`~threading.RLock` (یک قفل :term:`بازورودپذیر `) را فراهم می‌کند. قفل‌ها برای جلوگیری از :term:`شرط رقابت ` و تضمین دسترسی :term:`ایمن برای نخ‌های اجرایی ` به داده‌های اشتراکی استفاده می‌شوند. الگوهای طراحی جایگزین برای قفل‌ها وجود دارند، مانند صف‌ها، الگوهای تولیدکننده/مصرف‌کننده و وضعیت محلی نخ. همچنین :term:`بن‌بست ` و :term:`بازورودپذیر ` را ببینید." + msgid "lock-free" msgstr "بدون قفل" -#: ../../glossary.rst:969 -msgid "" -"An operation that does not acquire any :term:`lock` and uses atomic CPU instructions to ensure correctness. Lock-free operations can execute concurrently without " -"blocking each other and cannot be blocked by operations that hold locks. In :term:`free-threaded ` Python, built-in types like :class:`dict` " -"and :class:`list` provide lock-free read operations, which means other threads may observe intermediate states during multi-step modifications even when those " -"modifications hold the :term:`per-object lock`." -msgstr "" -"عملیاتی که هیچ :term:`قفل `\ ای به‌دست نمی‌آورد و برای تضمین درستی از دستورهای اتمی CPU استفاده می‌کند. عملیات‌های بدون قفل می‌توانند به‌طور هم‌زمان و بدون مسدود " -"کردن یکدیگر اجرا شوند و نمی‌توانند توسط عملیات‌هایی که قفل‌ها را در اختیار دارند مسدود شوند. در پایتون :term:`نخ‌گذاری آزاد `، نوع‌های توکار " -"مانند :class:`dict` و :class:`list` عملیات‌های خواندن بدون قفل ارائه می‌کنند، یعنی نخ‌های دیگر ممکن است در طول تغییرات چندمرحله‌ای، حتی زمانی که آن تغییرات :term:`قفلِ " -"هر شیء ` را نگه داشته‌اند، وضعیت‌های میانی را مشاهده کنند." +msgid "An operation that does not acquire any :term:`lock` and uses atomic CPU instructions to ensure correctness. Lock-free operations can execute concurrently without blocking each other and cannot be blocked by operations that hold locks. In :term:`free-threaded ` Python, built-in types like :class:`dict` and :class:`list` provide lock-free read operations, which means other threads may observe intermediate states during multi-step modifications even when those modifications hold the :term:`per-object lock`." +msgstr "عملیاتی که هیچ :term:`قفل `\\ ای به‌دست نمی‌آورد و برای تضمین درستی از دستورهای اتمی CPU استفاده می‌کند. عملیات‌های بدون قفل می‌توانند به‌طور هم‌زمان و بدون مسدود کردن یکدیگر اجرا شوند و نمی‌توانند توسط عملیات‌هایی که قفل‌ها را در اختیار دارند مسدود شوند. در پایتون :term:`نخ‌گذاری آزاد `، نوع‌های توکار مانند :class:`dict` و :class:`list` عملیات‌های خواندن بدون قفل ارائه می‌کنند، یعنی نخ‌های دیگر ممکن است در طول تغییرات چندمرحله‌ای، حتی زمانی که آن تغییرات :term:`قفلِ هر شیء ` را نگه داشته‌اند، وضعیت‌های میانی را مشاهده کنند." -#: ../../glossary.rst:977 msgid "loader" msgstr "بارگذار" -#: ../../glossary.rst:979 -msgid "" -"An object that loads a module. It must define the :meth:`!exec_module` and :meth:`!create_module` methods to implement the :class:`~importlib.abc.Loader` " -"interface. A loader is typically returned by a :term:`finder`. See also:" -msgstr "" -"شیءای که یک ماژول را بارگذاری می‌کند. برای پیاده‌سازی رابط :class:`~importlib.abc.Loader` باید متدهای :meth:`!exec_module` و :meth:`!create_module` را تعریف کند. یک " -"بارگذار معمولاً توسط یک :term:`یابنده ` بازگردانده می‌شود. همچنین ببینید:" +msgid "An object that loads a module. It must define the :meth:`!exec_module` and :meth:`!create_module` methods to implement the :class:`~importlib.abc.Loader` interface. A loader is typically returned by a :term:`finder`. See also:" +msgstr "شیءای که یک ماژول را بارگذاری می‌کند. برای پیاده‌سازی رابط :class:`~importlib.abc.Loader` باید متدهای :meth:`!exec_module` و :meth:`!create_module` را تعریف کند. یک بارگذار معمولاً توسط یک :term:`یابنده ` بازگردانده می‌شود. همچنین ببینید:" -#: ../../glossary.rst:985 msgid ":ref:`finders-and-loaders`" msgstr ":ref:`finders-and-loaders`" -#: ../../glossary.rst:986 msgid ":class:`importlib.abc.Loader`" msgstr ":class:`importlib.abc.Loader`" -#: ../../glossary.rst:987 msgid ":pep:`302`" msgstr ":pep:`302`" -#: ../../glossary.rst:988 msgid "locale encoding" msgstr "کدگذاری محلی" -#: ../../glossary.rst:990 msgid "On Unix, it is the encoding of the LC_CTYPE locale. It can be set with :func:`locale.setlocale(locale.LC_CTYPE, new_locale) `." msgstr "در یونیکس، این همان کدگذاری محلی LC_CTYPE است. می‌توان آن را با :func:`locale.setlocale(locale.LC_CTYPE, new_locale) ` تنظیم کرد." -#: ../../glossary.rst:993 msgid "On Windows, it is the ANSI code page (ex: ``\"cp1252\"``)." msgstr "در ویندوز، این همان صفحهٔ کد ANSI است (برای مثال ``\"cp1252\"``)." -#: ../../glossary.rst:995 msgid "On Android and VxWorks, Python uses ``\"utf-8\"`` as the locale encoding." msgstr "در Android و VxWorks، پایتون از ``\"utf-8\"`` به‌عنوان کدگذاری محلی استفاده می‌کند." -#: ../../glossary.rst:997 msgid ":func:`locale.getencoding` can be used to get the locale encoding." msgstr "از :func:`locale.getencoding` می‌توان برای دریافت کدگذاری محلی استفاده کرد." -#: ../../glossary.rst:999 msgid "See also the :term:`filesystem encoding and error handler`." msgstr "همچنین :term:`کدگذاری سیستم فایل و مدیریت‌کنندهٔ خطا ` را ببینید." -#: ../../glossary.rst:1000 msgid "magic method" msgstr "متد جادویی" -#: ../../glossary.rst:1004 msgid "An informal synonym for :term:`special method`." msgstr "یک مترادف غیررسمی برای :term:`متد ویژه `." -#: ../../glossary.rst:1005 msgid "mapping" msgstr "نگاشت" -#: ../../glossary.rst:1007 -msgid "" -"A container object that supports arbitrary key lookups and implements the methods specified in the :class:`collections.abc.Mapping` " -"or :class:`collections.abc.MutableMapping` :ref:`abstract base classes `. Examples " -"include :class:`dict`, :class:`collections.defaultdict`, :class:`collections.OrderedDict` and :class:`collections.Counter`." -msgstr "" -"یک شیء محفظه‌ای که از جست‌وجوی کلیدهای دلخواه پشتیبانی می‌کند و متدهای مشخص‌شده در :class:`collections.abc.Mapping` " -"یا :class:`collections.abc.MutableMapping` :ref:`abstract base classes ` را پیاده‌سازی می‌کند. نمونه‌ها " -"شامل :class:`dict`، :class:`collections.defaultdict`، :class:`collections.OrderedDict` و :class:`collections.Counter` هستند." +msgid "A container object that supports arbitrary key lookups and implements the methods specified in the :class:`collections.abc.Mapping` or :class:`collections.abc.MutableMapping` :ref:`abstract base classes `. Examples include :class:`dict`, :class:`collections.defaultdict`, :class:`collections.OrderedDict` and :class:`collections.Counter`." +msgstr "یک شیء محفظه‌ای که از جست‌وجوی کلیدهای دلخواه پشتیبانی می‌کند و متدهای مشخص‌شده در :class:`collections.abc.Mapping` یا :class:`collections.abc.MutableMapping` :ref:`abstract base classes ` را پیاده‌سازی می‌کند. نمونه‌ها شامل :class:`dict`، :class:`collections.defaultdict`، :class:`collections.OrderedDict` و :class:`collections.Counter` هستند." -#: ../../glossary.rst:1013 msgid "meta path finder" msgstr "یابندهٔ مسیر فراداده" -#: ../../glossary.rst:1015 -msgid "" -"A :term:`finder` returned by a search of :data:`sys.meta_path`. Meta path finders are related to, but different from :term:`path entry finders `." -msgstr "" -"یک :term:`یابنده ` که از جست‌وجوی :data:`sys.meta_path` بازگردانده می‌شود. یابنده‌های مسیر فراداده با :term:`یابندهٔ ورودی مسیر ` مرتبط " -"هستند، اما با آن‌ها تفاوت دارند." +msgid "A :term:`finder` returned by a search of :data:`sys.meta_path`. Meta path finders are related to, but different from :term:`path entry finders `." +msgstr "یک :term:`یابنده ` که از جست‌وجوی :data:`sys.meta_path` بازگردانده می‌شود. یابنده‌های مسیر فراداده با :term:`یابندهٔ ورودی مسیر ` مرتبط هستند، اما با آن‌ها تفاوت دارند." -#: ../../glossary.rst:1019 msgid "See :class:`importlib.abc.MetaPathFinder` for the methods that meta path finders implement." msgstr "برای متدهایی که یابنده‌های مسیر فراداده پیاده‌سازی می‌کنند، :class:`importlib.abc.MetaPathFinder` را ببینید." -#: ../../glossary.rst:1021 msgid "metaclass" msgstr "فراکلاس" -#: ../../glossary.rst:1023 -msgid "" -"The class of a class. Class definitions create a class name, a class dictionary, and a list of base classes. The metaclass is responsible for taking those three " -"arguments and creating the class. Most object oriented programming languages provide a default implementation. What makes Python special is that it is possible " -"to create custom metaclasses. Most users never need this tool, but when the need arises, metaclasses can provide powerful, elegant solutions. They have been " -"used for logging attribute access, adding thread-safety, tracking object creation, implementing singletons, and many other tasks." -msgstr "" -"کلاس یک کلاس. تعریف‌های کلاس یک نام کلاس، یک دیکشنری کلاس و یک فهرست از کلاس‌های پایه ایجاد می‌کنند. فراکلاس مسئول دریافت این سه آرگومان و ایجاد کلاس است. بیشتر " -"زبان‌های برنامه‌نویسی شیءگرا یک پیاده‌سازی پیش‌فرض ارائه می‌کنند. چیزی که پایتون را ویژه می‌کند این است که امکان ایجاد فراکلاس‌های سفارشی وجود دارد. بیشتر کاربران هرگز " -"به این ابزار نیاز پیدا نمی‌کنند، اما هنگامی که نیاز به آن پیش بیاید، فراکلاس‌ها می‌توانند راه‌حل‌های قدرتمند و ظریفی ارائه دهند. از آن‌ها برای ثبت دسترسی به ویژگی‌ها، " -"افزودن ایمنی نخ‌ای، پیگیری ایجاد شیء، پیاده‌سازی تک‌نمونه‌ها و بسیاری کارهای دیگر استفاده شده است." +msgid "The class of a class. Class definitions create a class name, a class dictionary, and a list of base classes. The metaclass is responsible for taking those three arguments and creating the class. Most object oriented programming languages provide a default implementation. What makes Python special is that it is possible to create custom metaclasses. Most users never need this tool, but when the need arises, metaclasses can provide powerful, elegant solutions. They have been used for logging attribute access, adding thread-safety, tracking object creation, implementing singletons, and many other tasks." +msgstr "کلاس یک کلاس. تعریف‌های کلاس یک نام کلاس، یک دیکشنری کلاس و یک فهرست از کلاس‌های پایه ایجاد می‌کنند. فراکلاس مسئول دریافت این سه آرگومان و ایجاد کلاس است. بیشتر زبان‌های برنامه‌نویسی شیءگرا یک پیاده‌سازی پیش‌فرض ارائه می‌کنند. چیزی که پایتون را ویژه می‌کند این است که امکان ایجاد فراکلاس‌های سفارشی وجود دارد. بیشتر کاربران هرگز به این ابزار نیاز پیدا نمی‌کنند، اما هنگامی که نیاز به آن پیش بیاید، فراکلاس‌ها می‌توانند راه‌حل‌های قدرتمند و ظریفی ارائه دهند. از آن‌ها برای ثبت دسترسی به ویژگی‌ها، افزودن ایمنی نخ‌ای، پیگیری ایجاد شیء، پیاده‌سازی تک‌نمونه‌ها و بسیاری کارهای دیگر استفاده شده است." -#: ../../glossary.rst:1033 msgid "More information can be found in :ref:`metaclasses`." msgstr "اطلاعات بیشتر را می‌توان در :ref:`metaclasses` یافت." -#: ../../glossary.rst:1002 ../../glossary.rst:1034 ../../glossary.rst:1488 msgid "method" msgstr "متد" -#: ../../glossary.rst:1036 -msgid "" -"A function which is defined inside a class body. If called as an attribute of an instance of that class, the method will get the instance object as its " -"first :term:`argument` (which is usually called ``self``). See :term:`function` and :term:`nested scope`." -msgstr "" -"تابعی که درون بدنهٔ یک کلاس تعریف شده است. اگر به‌عنوان یک ویژگی از یک نمونهٔ آن کلاس فراخوانی شود، متد شیء نمونه را به‌عنوان نخستین :term:`آرگومان ` خود " -"دریافت می‌کند (که معمولاً ``self`` نامیده می‌شود). :term:`تابع ` و :term:`محدودهٔ تو‌در‌تو ` را ببینید." +msgid "A function which is defined inside a class body. If called as an attribute of an instance of that class, the method will get the instance object as its first :term:`argument` (which is usually called ``self``). See :term:`function` and :term:`nested scope`." +msgstr "تابعی که درون بدنهٔ یک کلاس تعریف شده است. اگر به‌عنوان یک ویژگی از یک نمونهٔ آن کلاس فراخوانی شود، متد شیء نمونه را به‌عنوان نخستین :term:`آرگومان ` خود دریافت می‌کند (که معمولاً ``self`` نامیده می‌شود). :term:`تابع ` و :term:`محدودهٔ تو‌در‌تو ` را ببینید." -#: ../../glossary.rst:1040 msgid "method resolution order" msgstr "ترتیب حل متد" -#: ../../glossary.rst:1042 -msgid "" -"Method Resolution Order is the order in which base classes are searched for a member during lookup. See :ref:`python_2.3_mro` for details of the algorithm used by " -"the Python interpreter since the 2.3 release." -msgstr "" -"ترتیب حل متد، ترتیبی است که در آن کلاس‌های پایه هنگام جست‌وجوی یک عضو بررسی می‌شوند. برای جزئیات الگوریتمی که مفسر پایتون از انتشار ۲.۳ به بعد استفاده " -"می‌کند، :ref:`python_2.3_mro` را ببینید." +msgid "Method Resolution Order is the order in which base classes are searched for a member during lookup. See :ref:`python_2.3_mro` for details of the algorithm used by the Python interpreter since the 2.3 release." +msgstr "ترتیب حل متد، ترتیبی است که در آن کلاس‌های پایه هنگام جست‌وجوی یک عضو بررسی می‌شوند. برای جزئیات الگوریتمی که مفسر پایتون از انتشار ۲.۳ به بعد استفاده می‌کند، :ref:`python_2.3_mro` را ببینید." -#: ../../glossary.rst:1045 msgid "module" msgstr "ماژول" -#: ../../glossary.rst:1047 -msgid "" -"An object that serves as an organizational unit of Python code. Modules have a namespace containing arbitrary Python objects. Modules are loaded into Python by " -"the process of :term:`importing`." -msgstr "" -"شیءای که به‌عنوان واحد سازمان‌دهی کد پایتون عمل می‌کند. ماژول‌ها یک نام‌فضا دارند که شامل اشیای دلخواه پایتون است. ماژول‌ها از طریق فرایند :term:`ایمپورت کردن " -"` در پایتون بارگذاری می‌شوند." +msgid "An object that serves as an organizational unit of Python code. Modules have a namespace containing arbitrary Python objects. Modules are loaded into Python by the process of :term:`importing`." +msgstr "شیءای که به‌عنوان واحد سازمان‌دهی کد پایتون عمل می‌کند. ماژول‌ها یک نام‌فضا دارند که شامل اشیای دلخواه پایتون است. ماژول‌ها از طریق فرایند :term:`ایمپورت کردن ` در پایتون بارگذاری می‌شوند." -#: ../../glossary.rst:1051 msgid "See also :term:`package`." msgstr "همچنین :term:`بسته ` را ببینید." -#: ../../glossary.rst:1052 msgid "module spec" msgstr "مشخصات ماژول" -#: ../../glossary.rst:1054 msgid "A namespace containing the import-related information used to load a module. An instance of :class:`importlib.machinery.ModuleSpec`." msgstr "نام‌فضایی که شامل اطلاعات مرتبط با ایمپورت است و برای بارگذاری یک ماژول استفاده می‌شود. یک نمونه از :class:`importlib.machinery.ModuleSpec`." -#: ../../glossary.rst:1057 msgid "See also :ref:`module-specs`." msgstr "همچنین :ref:`module-specs` را ببینید." -#: ../../glossary.rst:1058 msgid "MRO" msgstr "MRO" -#: ../../glossary.rst:1060 msgid "See :term:`method resolution order`." msgstr ":term:`ترتیب حل متد ` را ببینید." -#: ../../glossary.rst:1061 msgid "mutable" msgstr "تغییرپذیر" -#: ../../glossary.rst:1063 -msgid "" -"An :term:`object` with state that is allowed to change during the course of the program. In multi-threaded programs, mutable objects that are shared between " -"threads require careful synchronization to avoid :term:`race conditions `. See also :term:`immutable`, :term:`thread-safe`, and :term:`concurrent " -"modification`." -msgstr "" -"یک :term:`شیء ` که وضعیت آن در طول اجرای برنامه اجازهٔ تغییر دارد. در برنامه‌های چندنخی، اشیای تغییرپذیری که بین نخ‌ها اشتراک‌گذاری می‌شوند، برای جلوگیری " -"از :term:`شرط رقابت ` به همگام‌سازی دقیق نیاز دارند. همچنین :term:`تغییرناپذیر `، :term:`ایمن برای نخ‌های اجرایی ` " -"و :term:`تغییر هم‌زمان ` را ببینید." +msgid "An :term:`object` with state that is allowed to change during the course of the program. In multi-threaded programs, mutable objects that are shared between threads require careful synchronization to avoid :term:`race conditions `. See also :term:`immutable`, :term:`thread-safe`, and :term:`concurrent modification`." +msgstr "یک :term:`شیء ` که وضعیت آن در طول اجرای برنامه اجازهٔ تغییر دارد. در برنامه‌های چندنخی، اشیای تغییرپذیری که بین نخ‌ها اشتراک‌گذاری می‌شوند، برای جلوگیری از :term:`شرط رقابت ` به همگام‌سازی دقیق نیاز دارند. همچنین :term:`تغییرناپذیر `، :term:`ایمن برای نخ‌های اجرایی ` و :term:`تغییر هم‌زمان ` را ببینید." -#: ../../glossary.rst:1068 msgid "named tuple" msgstr "تاپل نام‌دار" -#: ../../glossary.rst:1070 -msgid "" -"The term \"named tuple\" applies to any type or class that inherits from tuple and whose indexable elements are also accessible using named attributes. The type " -"or class may have other features as well." -msgstr "" -"اصطلاح «تاپل نام‌دار» برای هر نوع یا کلاسی به‌کار می‌رود که از tuple ارث‌بری می‌کند و المان‌های قابل دسترسی با اندیس آن، با استفاده از ویژگی‌های نام‌دار نیز قابل دسترسی " -"هستند. این نوع یا کلاس ممکن است ویژگی‌های دیگری نیز داشته باشد." +msgid "The term \"named tuple\" applies to any type or class that inherits from tuple and whose indexable elements are also accessible using named attributes. The type or class may have other features as well." +msgstr "اصطلاح «تاپل نام‌دار» برای هر نوع یا کلاسی به‌کار می‌رود که از tuple ارث‌بری می‌کند و المان‌های قابل دسترسی با اندیس آن، با استفاده از ویژگی‌های نام‌دار نیز قابل دسترسی هستند. این نوع یا کلاس ممکن است ویژگی‌های دیگری نیز داشته باشد." -#: ../../glossary.rst:1074 -msgid "" -"Several built-in types are named tuples, including the values returned by :func:`time.localtime` and :func:`os.stat`. Another example is :data:`sys.float_info`::" -msgstr "" -"چندین نوع توکار، تاپل نام‌دار هستند، از جمله مقادیری که توسط :func:`time.localtime` و :func:`os.stat` بازگردانده می‌شوند. نمونهٔ دیگر :data:`sys.float_info` است::" +msgid "Several built-in types are named tuples, including the values returned by :func:`time.localtime` and :func:`os.stat`. Another example is :data:`sys.float_info`::" +msgstr "چندین نوع توکار، تاپل نام‌دار هستند، از جمله مقادیری که توسط :func:`time.localtime` و :func:`os.stat` بازگردانده می‌شوند. نمونهٔ دیگر :data:`sys.float_info` است::" -#: ../../glossary.rst:1078 msgid "" ">>> sys.float_info[1] # indexed access\n" "1024\n" @@ -1922,433 +1010,219 @@ msgstr "" ">>> isinstance(sys.float_info, tuple) # نوعی تاپل\n" "True" -#: ../../glossary.rst:1085 -msgid "" -"Some named tuples are built-in types (such as the above examples). Alternatively, a named tuple can be created from a regular class definition that inherits " -"from :class:`tuple` and that defines named fields. Such a class can be written by hand, or it can be created by inheriting :class:`typing.NamedTuple`, or with " -"the factory function :func:`collections.namedtuple`. The latter techniques also add some extra methods that may not be found in hand-written or built-in named " -"tuples." -msgstr "" -"برخی تاپل‌های نام‌دار، نوع‌های توکار هستند (مانند نمونه‌های بالا). روش دیگر، ایجاد یک تاپل نام‌دار از طریق یک تعریف کلاس معمولی است که از :class:`tuple` ارث‌بری می‌کند و " -"فیلدهای نام‌دار را تعریف می‌کند. چنین کلاسی را می‌توان به‌صورت دستی نوشت، یا با ارث‌بری از :class:`typing.NamedTuple`، یا با تابع " -"کارخانهٔ :func:`collections.namedtuple` ایجاد کرد. دو روش اخیر همچنین چند متد اضافی اضافه می‌کنند که ممکن است در تاپل‌های نام‌دار دست‌نویس یا توکار وجود نداشته باشند." +msgid "Some named tuples are built-in types (such as the above examples). Alternatively, a named tuple can be created from a regular class definition that inherits from :class:`tuple` and that defines named fields. Such a class can be written by hand, or it can be created by inheriting :class:`typing.NamedTuple`, or with the factory function :func:`collections.namedtuple`. The latter techniques also add some extra methods that may not be found in hand-written or built-in named tuples." +msgstr "برخی تاپل‌های نام‌دار، نوع‌های توکار هستند (مانند نمونه‌های بالا). روش دیگر، ایجاد یک تاپل نام‌دار از طریق یک تعریف کلاس معمولی است که از :class:`tuple` ارث‌بری می‌کند و فیلدهای نام‌دار را تعریف می‌کند. چنین کلاسی را می‌توان به‌صورت دستی نوشت، یا با ارث‌بری از :class:`typing.NamedTuple`، یا با تابع کارخانهٔ :func:`collections.namedtuple` ایجاد کرد. دو روش اخیر همچنین چند متد اضافی اضافه می‌کنند که ممکن است در تاپل‌های نام‌دار دست‌نویس یا توکار وجود نداشته باشند." -#: ../../glossary.rst:1093 msgid "namespace" msgstr "نام‌فضا" -#: ../../glossary.rst:1095 -msgid "" -"The place where a variable is stored. Namespaces are implemented as dictionaries. There are the local, global and built-in namespaces as well as nested " -"namespaces in objects (in methods). Namespaces support modularity by preventing naming conflicts. For instance, the functions :func:`builtins.open <.open>` " -"and :func:`os.open` are distinguished by their namespaces. Namespaces also aid readability and maintainability by making it clear which module implements a " -"function. For instance, writing :func:`random.seed` or :func:`itertools.islice` makes it clear that those functions are implemented by the :mod:`random` " -"and :mod:`itertools` modules, respectively." -msgstr "" -"محلی که یک متغیر در آن ذخیره می‌شود. نام‌فضاها به‌صورت دیکشنری پیاده‌سازی می‌شوند. نام‌فضاهای محلی، سراسری و توکار، همچنین نام‌فضاهای تو‌در‌تو در اشیا (در متدها) وجود " -"دارند. نام‌فضاها با جلوگیری از تداخل نام‌ها، پیمانه‌ای بودن را پشتیبانی می‌کنند. برای نمونه، تابع‌های :func:`builtins.open <.open>` و :func:`os.open` با استفاده از " -"نام‌فضاهای خود از یکدیگر متمایز می‌شوند. نام‌فضاها همچنین با مشخص کردن اینکه کدام ماژول یک تابع را پیاده‌سازی می‌کند، به خوانایی و نگه‌داری‌پذیری کمک می‌کنند. برای نمونه، " -"نوشتن :func:`random.seed` یا :func:`itertools.islice` مشخص می‌کند که این تابع‌ها به‌ترتیب توسط ماژول‌های :mod:`random` و :mod:`itertools` پیاده‌سازی شده‌اند." +msgid "The place where a variable is stored. Namespaces are implemented as dictionaries. There are the local, global and built-in namespaces as well as nested namespaces in objects (in methods). Namespaces support modularity by preventing naming conflicts. For instance, the functions :func:`builtins.open <.open>` and :func:`os.open` are distinguished by their namespaces. Namespaces also aid readability and maintainability by making it clear which module implements a function. For instance, writing :func:`random.seed` or :func:`itertools.islice` makes it clear that those functions are implemented by the :mod:`random` and :mod:`itertools` modules, respectively." +msgstr "محلی که یک متغیر در آن ذخیره می‌شود. نام‌فضاها به‌صورت دیکشنری پیاده‌سازی می‌شوند. نام‌فضاهای محلی، سراسری و توکار، همچنین نام‌فضاهای تو‌در‌تو در اشیا (در متدها) وجود دارند. نام‌فضاها با جلوگیری از تداخل نام‌ها، پیمانه‌ای بودن را پشتیبانی می‌کنند. برای نمونه، تابع‌های :func:`builtins.open <.open>` و :func:`os.open` با استفاده از نام‌فضاهای خود از یکدیگر متمایز می‌شوند. نام‌فضاها همچنین با مشخص کردن اینکه کدام ماژول یک تابع را پیاده‌سازی می‌کند، به خوانایی و نگه‌داری‌پذیری کمک می‌کنند. برای نمونه، نوشتن :func:`random.seed` یا :func:`itertools.islice` مشخص می‌کند که این تابع‌ها به‌ترتیب توسط ماژول‌های :mod:`random` و :mod:`itertools` پیاده‌سازی شده‌اند." -#: ../../glossary.rst:1105 msgid "namespace package" msgstr "بستهٔ نام‌فضا" -#: ../../glossary.rst:1107 -msgid "" -"A :term:`package` which serves only as a container for subpackages. Namespace packages may have no physical representation, and specifically are not like " -"a :term:`regular package` because they have no ``__init__.py`` file." -msgstr "" -"یک :term:`بسته ` که فقط به‌عنوان محفظه‌ای برای زیربسته‌ها عمل می‌کند. بسته‌های نام‌فضا ممکن است نمایش فیزیکی نداشته باشند و به‌طور مشخص مانند یک :term:`بستهٔ " -"معمولی ` نیستند، زیرا فایل ``__init__.py`` ندارند." +msgid "A :term:`package` which serves only as a container for subpackages. Namespace packages may have no physical representation, and specifically are not like a :term:`regular package` because they have no ``__init__.py`` file." +msgstr "یک :term:`بسته ` که فقط به‌عنوان محفظه‌ای برای زیربسته‌ها عمل می‌کند. بسته‌های نام‌فضا ممکن است نمایش فیزیکی نداشته باشند و به‌طور مشخص مانند یک :term:`بستهٔ معمولی ` نیستند، زیرا فایل ``__init__.py`` ندارند." -#: ../../glossary.rst:1112 -msgid "" -"Namespace packages allow several individually installable packages to have a common parent package. Otherwise, it is recommended to use a :term:`regular package`." -msgstr "" -"بسته‌های نام‌فضا به چندین بستهٔ قابل نصب مستقل اجازه می‌دهند که یک بستهٔ والد مشترک داشته باشند. در غیر این صورت، توصیه می‌شود از یک :term:`بستهٔ معمولی ` استفاده کنید." +msgid "Namespace packages allow several individually installable packages to have a common parent package. Otherwise, it is recommended to use a :term:`regular package`." +msgstr "بسته‌های نام‌فضا به چندین بستهٔ قابل نصب مستقل اجازه می‌دهند که یک بستهٔ والد مشترک داشته باشند. در غیر این صورت، توصیه می‌شود از یک :term:`بستهٔ معمولی ` استفاده کنید." -#: ../../glossary.rst:1115 msgid "For more information, see :pep:`420` and :ref:`reference-namespace-package`." msgstr "برای اطلاعات بیشتر، :pep:`420` و :ref:`reference-namespace-package` را ببینید." -#: ../../glossary.rst:1117 msgid "See also :term:`module`." msgstr "همچنین :term:`ماژول ` را ببینید." -#: ../../glossary.rst:1118 msgid "native code" msgstr "کد بومی" -#: ../../glossary.rst:1120 -msgid "" -"Code that is compiled to machine instructions and runs directly on the processor, as opposed to code that is interpreted or runs in a virtual machine. In the " -"context of Python, native code typically refers to C, C++, Rust or Fortran code in :term:`extension modules ` that can be called from Python. " -"See also :term:`extension module`." -msgstr "" -"کدی که به دستورهای ماشین کامپایل شده و مستقیماً روی پردازنده اجرا می‌شود، برخلاف کدی که تفسیر می‌شود یا در یک ماشین مجازی اجرا می‌شود. در زمینهٔ پایتون، کد بومی معمولاً " -"به کد C، C++، Rust یا Fortran در :term:`ماژول افزونه ` اشاره دارد که می‌توانند از پایتون فراخوانی شوند. همچنین :term:`ماژول افزونه ` را ببینید." +msgid "Code that is compiled to machine instructions and runs directly on the processor, as opposed to code that is interpreted or runs in a virtual machine. In the context of Python, native code typically refers to C, C++, Rust or Fortran code in :term:`extension modules ` that can be called from Python. See also :term:`extension module`." +msgstr "کدی که به دستورهای ماشین کامپایل شده و مستقیماً روی پردازنده اجرا می‌شود، برخلاف کدی که تفسیر می‌شود یا در یک ماشین مجازی اجرا می‌شود. در زمینهٔ پایتون، کد بومی معمولاً به کد C، C++، Rust یا Fortran در :term:`ماژول افزونه ` اشاره دارد که می‌توانند از پایتون فراخوانی شوند. همچنین :term:`ماژول افزونه ` را ببینید." -#: ../../glossary.rst:1125 msgid "nested scope" msgstr "محدودهٔ تو‌در‌تو" -#: ../../glossary.rst:1127 -msgid "" -"The ability to refer to a variable in an enclosing definition. For instance, a function defined inside another function can refer to variables in the outer " -"function. Note that nested scopes by default work only for reference and not for assignment. Local variables both read and write in the innermost scope. " -"Likewise, global variables read and write to the global namespace. The :keyword:`nonlocal` allows writing to outer scopes." -msgstr "" -"توانایی ارجاع به یک متغیر در یک تعریف دربرگیرنده. برای مثال، تابعی که داخل تابع دیگری تعریف شده است می‌تواند به متغیرهای تابع بیرونی دسترسی داشته باشد. توجه کنید " -"که محدوده‌های تو‌در‌تو به‌صورت پیش‌فرض فقط برای ارجاع دادن و نه برای انتساب کار می‌کنند. متغیرهای محلی هم در نزدیک‌ترین محدوده خوانده و نوشته می‌شوند. به همین ترتیب، " -"متغیرهای سراسری از نام‌فضای سراسری خوانده و در آن نوشته می‌شوند. کلیدواژهٔ :keyword:`nonlocal` امکان نوشتن در محدوده‌های بیرونی را فراهم می‌کند." +msgid "The ability to refer to a variable in an enclosing definition. For instance, a function defined inside another function can refer to variables in the outer function. Note that nested scopes by default work only for reference and not for assignment. Local variables both read and write in the innermost scope. Likewise, global variables read and write to the global namespace. The :keyword:`nonlocal` allows writing to outer scopes." +msgstr "توانایی ارجاع به یک متغیر در یک تعریف دربرگیرنده. برای مثال، تابعی که داخل تابع دیگری تعریف شده است می‌تواند به متغیرهای تابع بیرونی دسترسی داشته باشد. توجه کنید که محدوده‌های تو‌در‌تو به‌صورت پیش‌فرض فقط برای ارجاع دادن و نه برای انتساب کار می‌کنند. متغیرهای محلی هم در نزدیک‌ترین محدوده خوانده و نوشته می‌شوند. به همین ترتیب، متغیرهای سراسری از نام‌فضای سراسری خوانده و در آن نوشته می‌شوند. کلیدواژهٔ :keyword:`nonlocal` امکان نوشتن در محدوده‌های بیرونی را فراهم می‌کند." -#: ../../glossary.rst:1134 msgid "new-style class" msgstr "کلاس سبک جدید" -#: ../../glossary.rst:1136 -msgid "" -"Old name for the flavor of classes now used for all class objects. In earlier Python versions, only new-style classes could use Python's newer, versatile " -"features like :attr:`~object.__slots__`, descriptors, properties, :meth:`~object.__getattribute__`, class methods, and static methods." -msgstr "" -"نام قدیمی برای گونه‌ای از کلاس‌ها که اکنون برای همهٔ اشیای کلاس استفاده می‌شود. در نسخه‌های قدیمی‌تر پایتون، فقط کلاس‌های سبک جدید می‌توانستند از قابلیت‌های جدیدتر و " -"انعطاف‌پذیر پایتون مانند :attr:`~object.__slots__`، توصیف‌گرها، ویژگی‌ها، :meth:`~object.__getattribute__`، متدهای کلاس و متدهای ایستا استفاده کنند." +msgid "Old name for the flavor of classes now used for all class objects. In earlier Python versions, only new-style classes could use Python's newer, versatile features like :attr:`~object.__slots__`, descriptors, properties, :meth:`~object.__getattribute__`, class methods, and static methods." +msgstr "نام قدیمی برای گونه‌ای از کلاس‌ها که اکنون برای همهٔ اشیای کلاس استفاده می‌شود. در نسخه‌های قدیمی‌تر پایتون، فقط کلاس‌های سبک جدید می‌توانستند از قابلیت‌های جدیدتر و انعطاف‌پذیر پایتون مانند :attr:`~object.__slots__`، توصیف‌گرها، ویژگی‌ها، :meth:`~object.__getattribute__`، متدهای کلاس و متدهای ایستا استفاده کنند." -#: ../../glossary.rst:1141 msgid "non-deterministic" msgstr "غیرقطعی" -#: ../../glossary.rst:1143 -msgid "" -"Behavior where the outcome of a program can vary between executions with the same inputs. In multi-threaded programs, non-deterministic behavior often results " -"from :term:`race conditions ` where the relative timing or interleaving of threads affects the result. Proper synchronization using :term:`locks " -"` and other :term:`synchronization primitives ` helps ensure deterministic behavior." -msgstr "" -"رفتاری که در آن نتیجهٔ یک برنامه می‌تواند بین اجراهای مختلف با ورودی‌های یکسان متفاوت باشد. در برنامه‌های چندنخی، رفتار غیرقطعی اغلب از :term:`شرط رقابت ` ناشی می‌شود که در آن زمان‌بندی نسبی یا درهم‌تنیدگی نخ‌ها بر نتیجه تأثیر می‌گذارد. همگام‌سازی مناسب با استفاده از :term:`قفل ` و دیگر :term:`اولیه " -"` به تضمین رفتار قطعی کمک می‌کند." +msgid "Behavior where the outcome of a program can vary between executions with the same inputs. In multi-threaded programs, non-deterministic behavior often results from :term:`race conditions ` where the relative timing or interleaving of threads affects the result. Proper synchronization using :term:`locks ` and other :term:`synchronization primitives ` helps ensure deterministic behavior." +msgstr "رفتاری که در آن نتیجهٔ یک برنامه می‌تواند بین اجراهای مختلف با ورودی‌های یکسان متفاوت باشد. در برنامه‌های چندنخی، رفتار غیرقطعی اغلب از :term:`شرط رقابت ` ناشی می‌شود که در آن زمان‌بندی نسبی یا درهم‌تنیدگی نخ‌ها بر نتیجه تأثیر می‌گذارد. همگام‌سازی مناسب با استفاده از :term:`قفل ` و دیگر :term:`اولیه ` به تضمین رفتار قطعی کمک می‌کند." -#: ../../glossary.rst:1150 msgid "object" msgstr "شیء" -#: ../../glossary.rst:1152 msgid "Any data with state (attributes or value) and defined behavior (methods). Also the ultimate base class of any :term:`new-style class`." msgstr "هر داده‌ای با وضعیت (ویژگی‌ها یا مقدار) و رفتار تعریف‌شده (متدها). همچنین کلاس پایهٔ نهایی هر :term:`کلاس سبک جدید `." -#: ../../glossary.rst:1155 msgid "optimized scope" msgstr "محدودهٔ بهینه‌شده" -#: ../../glossary.rst:1157 -msgid "" -"A scope where target local variable names are reliably known to the compiler when the code is compiled, allowing optimization of read and write access to these " -"names. The local namespaces for functions, generators, coroutines, comprehensions, and generator expressions are optimized in this fashion. Note: most interpreter " -"optimizations are applied to all scopes, only those relying on a known set of local and nonlocal variable names are restricted to optimized scopes." -msgstr "" -"محدوده‌ای که در آن نام‌های متغیرهای محلی هدف هنگام کامپایل کد به‌طور قابل اطمینانی برای کامپایلر شناخته شده‌اند و امکان بهینه‌سازی دسترسی خواندن و نوشتن به این نام‌ها " -"فراهم می‌شود. نام‌فضاهای محلی برای تابع‌ها، تولیدگرها، هم‌روال‌ها، درک‌ها و عبارت‌های تولیدگر به این روش بهینه می‌شوند. توجه کنید: بیشتر بهینه‌سازی‌های مفسر روی همهٔ " -"محدوده‌ها اعمال می‌شوند؛ تنها بهینه‌سازی‌هایی که به مجموعهٔ شناخته‌شده‌ای از نام‌های متغیرهای محلی و غیرمحلی وابسته هستند، به محدوده‌های بهینه‌شده محدود می‌شوند." +msgid "A scope where target local variable names are reliably known to the compiler when the code is compiled, allowing optimization of read and write access to these names. The local namespaces for functions, generators, coroutines, comprehensions, and generator expressions are optimized in this fashion. Note: most interpreter optimizations are applied to all scopes, only those relying on a known set of local and nonlocal variable names are restricted to optimized scopes." +msgstr "محدوده‌ای که در آن نام‌های متغیرهای محلی هدف هنگام کامپایل کد به‌طور قابل اطمینانی برای کامپایلر شناخته شده‌اند و امکان بهینه‌سازی دسترسی خواندن و نوشتن به این نام‌ها فراهم می‌شود. نام‌فضاهای محلی برای تابع‌ها، تولیدگرها، هم‌روال‌ها، درک‌ها و عبارت‌های تولیدگر به این روش بهینه می‌شوند. توجه کنید: بیشتر بهینه‌سازی‌های مفسر روی همهٔ محدوده‌ها اعمال می‌شوند؛ تنها بهینه‌سازی‌هایی که به مجموعهٔ شناخته‌شده‌ای از نام‌های متغیرهای محلی و غیرمحلی وابسته هستند، به محدوده‌های بهینه‌شده محدود می‌شوند." -#: ../../glossary.rst:1164 msgid "optional module" msgstr "ماژول اختیاری" -#: ../../glossary.rst:1166 -msgid "" -"An :term:`extension module` that is part of the :term:`standard library`, but may be absent in some builds of :term:`CPython`, usually due to missing third-party " -"libraries or because the module is not available for a given platform." -msgstr "" -"یک :term:`ماژول افزونه ` که بخشی از :term:`کتابخانهٔ استاندارد ` است، اما ممکن است در برخی ساخت‌های :term:`CPython ` " -"وجود نداشته باشد؛ معمولاً به دلیل نبود کتابخانه‌های شخص ثالث یا در دسترس نبودن ماژول برای یک سکوی مشخص." +msgid "An :term:`extension module` that is part of the :term:`standard library`, but may be absent in some builds of :term:`CPython`, usually due to missing third-party libraries or because the module is not available for a given platform." +msgstr "یک :term:`ماژول افزونه ` که بخشی از :term:`کتابخانهٔ استاندارد ` است، اما ممکن است در برخی ساخت‌های :term:`CPython ` وجود نداشته باشد؛ معمولاً به دلیل نبود کتابخانه‌های شخص ثالث یا در دسترس نبودن ماژول برای یک سکوی مشخص." -#: ../../glossary.rst:1171 msgid "See :ref:`optional-module-requirements` for a list of optional modules that require third-party libraries." msgstr "برای فهرستی از ماژول‌های اختیاری که به کتابخانه‌های شخص ثالث نیاز دارند، :ref:`optional-module-requirements` را ببینید." -#: ../../glossary.rst:1173 msgid "package" msgstr "بسته" -#: ../../glossary.rst:1175 msgid "A Python :term:`module` which can contain submodules or recursively, subpackages. Technically, a package is a Python module with a ``__path__`` attribute." -msgstr "" -"یک :term:`ماژول ` پایتون که می‌تواند شامل زیرماژول‌ها یا به‌صورت بازگشتی، زیربسته‌ها باشد. از نظر فنی، یک بسته یک ماژول پایتون با ویژگی ``__path__`` است." +msgstr "یک :term:`ماژول ` پایتون که می‌تواند شامل زیرماژول‌ها یا به‌صورت بازگشتی، زیربسته‌ها باشد. از نظر فنی، یک بسته یک ماژول پایتون با ویژگی ``__path__`` است." -#: ../../glossary.rst:1179 msgid "See also :term:`regular package` and :term:`namespace package`." msgstr "همچنین :term:`بستهٔ معمولی ` و :term:`بستهٔ نام‌فضا ` را ببینید." -#: ../../glossary.rst:1180 msgid "parallelism" msgstr "موازی‌سازی" -#: ../../glossary.rst:1182 -msgid "" -"Executing multiple operations at the same time (e.g. on multiple CPU cores). In Python builds with the :term:`global interpreter lock (GIL) `, only one thread runs Python bytecode at a time, so taking advantage of multiple CPU cores typically involves multiple processes " -"(e.g. :mod:`multiprocessing`) or native extensions that release the GIL. In :term:`free-threaded ` Python, multiple Python threads can run Python " -"code simultaneously on different cores." -msgstr "" -"اجرای چندین عملیات در یک زمان (برای مثال روی چند هستهٔ CPU). در ساخت‌های پایتون با :term:`قفل مفسر سراسری `، تنها یک نخ در هر لحظه بایت‌کد " -"پایتون را اجرا می‌کند، بنابراین بهره‌گیری از چند هستهٔ CPU معمولاً شامل چند فرایند (برای مثال :mod:`multiprocessing`) یا افزونه‌های بومی است که GIL را آزاد می‌کنند. در " -"پایتون :term:`نخ‌گذاری آزاد `، چندین نخ پایتون می‌توانند به‌طور هم‌زمان کد پایتون را روی هسته‌های مختلف اجرا کنند." +msgid "Executing multiple operations at the same time (e.g. on multiple CPU cores). In Python builds with the :term:`global interpreter lock (GIL) `, only one thread runs Python bytecode at a time, so taking advantage of multiple CPU cores typically involves multiple processes (e.g. :mod:`multiprocessing`) or native extensions that release the GIL. In :term:`free-threaded ` Python, multiple Python threads can run Python code simultaneously on different cores." +msgstr "اجرای چندین عملیات در یک زمان (برای مثال روی چند هستهٔ CPU). در ساخت‌های پایتون با :term:`قفل مفسر سراسری `، تنها یک نخ در هر لحظه بایت‌کد پایتون را اجرا می‌کند، بنابراین بهره‌گیری از چند هستهٔ CPU معمولاً شامل چند فرایند (برای مثال :mod:`multiprocessing`) یا افزونه‌های بومی است که GIL را آزاد می‌کنند. در پایتون :term:`نخ‌گذاری آزاد `، چندین نخ پایتون می‌توانند به‌طور هم‌زمان کد پایتون را روی هسته‌های مختلف اجرا کنند." -#: ../../glossary.rst:1190 msgid "parameter" msgstr "پارامتر" -#: ../../glossary.rst:1192 -msgid "" -"A named entity in a :term:`function` (or method) definition that specifies an :term:`argument` (or in some cases, arguments) that the function can accept. There " -"are five kinds of parameter:" -msgstr "" -"یک موجودیت نام‌گذاری‌شده در تعریف یک :term:`تابع ` (یا متد) که یک :term:`آرگومان ` (یا در برخی موارد، آرگومان‌ها) را مشخص می‌کند که تابع می‌تواند " -"بپذیرد. پنج نوع پارامتر وجود دارد:" +msgid "A named entity in a :term:`function` (or method) definition that specifies an :term:`argument` (or in some cases, arguments) that the function can accept. There are five kinds of parameter:" +msgstr "یک موجودیت نام‌گذاری‌شده در تعریف یک :term:`تابع ` (یا متد) که یک :term:`آرگومان ` (یا در برخی موارد، آرگومان‌ها) را مشخص می‌کند که تابع می‌تواند بپذیرد. پنج نوع پارامتر وجود دارد:" -#: ../../glossary.rst:1196 -msgid "" -":dfn:`positional-or-keyword`: specifies an argument that can be passed either :term:`positionally ` or as a :term:`keyword argument `. This " -"is the default kind of parameter, for example *foo* and *bar* in the following::" -msgstr "" -":dfn:`positional-or-keyword`: آرگومانی را مشخص می‌کند که می‌تواند به‌صورت :term:`آرگومان جایگاهی ` یا به‌عنوان یک :term:`آرگومان کلیدواژه‌ای ` " -"ارسال شود. این نوع پیش‌فرض پارامتر است، برای مثال *foo* و *bar* در موارد زیر::" +msgid ":dfn:`positional-or-keyword`: specifies an argument that can be passed either :term:`positionally ` or as a :term:`keyword argument `. This is the default kind of parameter, for example *foo* and *bar* in the following::" +msgstr ":dfn:`positional-or-keyword`: آرگومانی را مشخص می‌کند که می‌تواند به‌صورت :term:`آرگومان جایگاهی ` یا به‌عنوان یک :term:`آرگومان کلیدواژه‌ای ` ارسال شود. این نوع پیش‌فرض پارامتر است، برای مثال *foo* و *bar* در موارد زیر::" -#: ../../glossary.rst:1201 msgid "def func(foo, bar=None): ..." msgstr "def func(foo, bar=None): ..." -#: ../../glossary.rst:1205 -msgid "" -":dfn:`positional-only`: specifies an argument that can be supplied only by position. Positional-only parameters can be defined by including a ``/`` character in " -"the parameter list of the function definition after them, for example *posonly1* and *posonly2* in the following::" -msgstr "" -":dfn:`positional-only`: آرگومانی را مشخص می‌کند که فقط می‌تواند بر اساس جایگاه ارائه شود. پارامترهای فقط-جایگاهی را می‌توان با قرار دادن یک نویسهٔ ``/`` در فهرست " -"پارامترهای تعریف تابع پس از آن‌ها تعریف کرد، برای مثال *posonly1* و *posonly2* در موارد زیر::" +msgid ":dfn:`positional-only`: specifies an argument that can be supplied only by position. Positional-only parameters can be defined by including a ``/`` character in the parameter list of the function definition after them, for example *posonly1* and *posonly2* in the following::" +msgstr ":dfn:`positional-only`: آرگومانی را مشخص می‌کند که فقط می‌تواند بر اساس جایگاه ارائه شود. پارامترهای فقط-جایگاهی را می‌توان با قرار دادن یک نویسهٔ ``/`` در فهرست پارامترهای تعریف تابع پس از آن‌ها تعریف کرد، برای مثال *posonly1* و *posonly2* در موارد زیر::" -#: ../../glossary.rst:1210 msgid "def func(posonly1, posonly2, /, positional_or_keyword): ..." msgstr "def func(posonly1, posonly2, /, positional_or_keyword): ..." -#: ../../glossary.rst:1214 -msgid "" -":dfn:`keyword-only`: specifies an argument that can be supplied only by keyword. Keyword-only parameters can be defined by including a single var-positional " -"parameter or bare ``*`` in the parameter list of the function definition before them, for example *kw_only1* and *kw_only2* in the following::" -msgstr "" -":dfn:`keyword-only`: آرگومانی را مشخص می‌کند که فقط می‌تواند با کلیدواژه ارسال شود. پارامترهای فقط کلیدواژه‌ای را می‌توان با قرار دادن یک پارامتر var-positional یا " -"``*`` بدون نام در فهرست پارامترهای تعریف تابع پیش از آن‌ها تعریف کرد، برای مثال *kw_only1* و *kw_only2* در موارد زیر::" +msgid ":dfn:`keyword-only`: specifies an argument that can be supplied only by keyword. Keyword-only parameters can be defined by including a single var-positional parameter or bare ``*`` in the parameter list of the function definition before them, for example *kw_only1* and *kw_only2* in the following::" +msgstr ":dfn:`keyword-only`: آرگومانی را مشخص می‌کند که فقط می‌تواند با کلیدواژه ارسال شود. پارامترهای فقط کلیدواژه‌ای را می‌توان با قرار دادن یک پارامتر var-positional یا ``*`` بدون نام در فهرست پارامترهای تعریف تابع پیش از آن‌ها تعریف کرد، برای مثال *kw_only1* و *kw_only2* در موارد زیر::" -#: ../../glossary.rst:1220 msgid "def func(arg, *, kw_only1, kw_only2): ..." msgstr "def func(arg, *, kw_only1, kw_only2): ..." -#: ../../glossary.rst:1222 -msgid "" -":dfn:`var-positional`: specifies that an arbitrary sequence of positional arguments can be provided (in addition to any positional arguments already accepted by " -"other parameters). Such a parameter can be defined by prepending the parameter name with ``*``, for example *args* in the following::" -msgstr "" -":dfn:`var-positional`: مشخص می‌کند که یک دنبالهٔ دلخواه از آرگومان‌های جایگاهی می‌تواند ارائه شود (علاوه بر هر آرگومان جایگاهی که پیش‌تر توسط پارامترهای دیگر پذیرفته " -"شده است). چنین پارامتری را می‌توان با افزودن ``*`` به ابتدای نام پارامتر تعریف کرد، برای مثال *args* در موارد زیر::" +msgid ":dfn:`var-positional`: specifies that an arbitrary sequence of positional arguments can be provided (in addition to any positional arguments already accepted by other parameters). Such a parameter can be defined by prepending the parameter name with ``*``, for example *args* in the following::" +msgstr ":dfn:`var-positional`: مشخص می‌کند که یک دنبالهٔ دلخواه از آرگومان‌های جایگاهی می‌تواند ارائه شود (علاوه بر هر آرگومان جایگاهی که پیش‌تر توسط پارامترهای دیگر پذیرفته شده است). چنین پارامتری را می‌توان با افزودن ``*`` به ابتدای نام پارامتر تعریف کرد، برای مثال *args* در موارد زیر::" -#: ../../glossary.rst:1228 msgid "def func(*args, **kwargs): ..." msgstr "def func(*args, **kwargs): ..." -#: ../../glossary.rst:1230 -msgid "" -":dfn:`var-keyword`: specifies that arbitrarily many keyword arguments can be provided (in addition to any keyword arguments already accepted by other " -"parameters). Such a parameter can be defined by prepending the parameter name with ``**``, for example *kwargs* in the example above." -msgstr "" -":dfn:`var-keyword`: مشخص می‌کند که تعداد دلخواهی از آرگومان‌های کلیدواژه‌ای می‌تواند ارائه شود (علاوه بر هر آرگومان کلیدواژه‌ای که پیش‌تر توسط پارامترهای دیگر پذیرفته " -"شده است). چنین پارامتری را می‌توان با افزودن ``**`` به ابتدای نام پارامتر تعریف کرد، برای مثال *kwargs* در مثال بالا." +msgid ":dfn:`var-keyword`: specifies that arbitrarily many keyword arguments can be provided (in addition to any keyword arguments already accepted by other parameters). Such a parameter can be defined by prepending the parameter name with ``**``, for example *kwargs* in the example above." +msgstr ":dfn:`var-keyword`: مشخص می‌کند که تعداد دلخواهی از آرگومان‌های کلیدواژه‌ای می‌تواند ارائه شود (علاوه بر هر آرگومان کلیدواژه‌ای که پیش‌تر توسط پارامترهای دیگر پذیرفته شده است). چنین پارامتری را می‌توان با افزودن ``**`` به ابتدای نام پارامتر تعریف کرد، برای مثال *kwargs* در مثال بالا." -#: ../../glossary.rst:1236 msgid "Parameters can specify both optional and required arguments, as well as default values for some optional arguments." msgstr "پارامترها می‌توانند هم آرگومان‌های اختیاری و ضروری، و هم مقدارهای پیش‌فرض برای برخی آرگومان‌های اختیاری را مشخص کنند." -#: ../../glossary.rst:1239 -msgid "" -"See also the :term:`argument` glossary entry, the FAQ question on :ref:`the difference between arguments and parameters `, " -"the :class:`inspect.Parameter` class, the :ref:`function` section, and :pep:`362`." -msgstr "" -"همچنین مدخل واژه‌نامهٔ :term:`آرگومان `، پرسش متداول دربارهٔ :ref:`تفاوت بین آرگومان‌ها و پارامترها `، " -"کلاس :class:`inspect.Parameter`، بخش :ref:`function` و :pep:`362` را ببینید." +msgid "See also the :term:`argument` glossary entry, the FAQ question on :ref:`the difference between arguments and parameters `, the :class:`inspect.Parameter` class, the :ref:`function` section, and :pep:`362`." +msgstr "همچنین مدخل واژه‌نامهٔ :term:`آرگومان `، پرسش متداول دربارهٔ :ref:`تفاوت بین آرگومان‌ها و پارامترها `، کلاس :class:`inspect.Parameter`، بخش :ref:`function` و :pep:`362` را ببینید." -#: ../../glossary.rst:1243 msgid "per-object lock" msgstr "قفلِ هر شیء" -#: ../../glossary.rst:1245 -msgid "" -"A :term:`lock` associated with an individual object instance rather than a global lock shared across all objects. In :term:`free-threaded ` " -"Python, built-in types like :class:`dict` and :class:`list` use per-object locks to allow concurrent operations on different objects while serializing operations " -"on the same object. Operations that hold the per-object lock prevent other locking operations on the same object from proceeding, but do not block :term:`lock-" -"free` operations." -msgstr "" -"یک :term:`قفل ` مرتبط با یک نمونهٔ شیء منفرد، به‌جای یک قفل سراسری که بین همهٔ اشیا اشتراک‌گذاری شده باشد. در پایتون :term:`نخ‌گذاری آزاد `، " -"نوع‌های توکار مانند :class:`dict` و :class:`list` از قفل‌های هر شیء استفاده می‌کنند تا امکان عملیات هم‌زمان روی اشیای مختلف را فراهم کنند، در حالی که عملیات روی همان " -"شیء را به‌صورت ترتیبی اجرا می‌کنند. عملیات‌هایی که قفل هر شیء را نگه می‌دارند، از ادامهٔ دیگر عملیات‌های قفل‌کننده روی همان شیء جلوگیری می‌کنند، اما عملیات‌های :term:`بدون " -"قفل ` را مسدود نمی‌کنند." +msgid "A :term:`lock` associated with an individual object instance rather than a global lock shared across all objects. In :term:`free-threaded ` Python, built-in types like :class:`dict` and :class:`list` use per-object locks to allow concurrent operations on different objects while serializing operations on the same object. Operations that hold the per-object lock prevent other locking operations on the same object from proceeding, but do not block :term:`lock-free` operations." +msgstr "یک :term:`قفل ` مرتبط با یک نمونهٔ شیء منفرد، به‌جای یک قفل سراسری که بین همهٔ اشیا اشتراک‌گذاری شده باشد. در پایتون :term:`نخ‌گذاری آزاد `، نوع‌های توکار مانند :class:`dict` و :class:`list` از قفل‌های هر شیء استفاده می‌کنند تا امکان عملیات هم‌زمان روی اشیای مختلف را فراهم کنند، در حالی که عملیات روی همان شیء را به‌صورت ترتیبی اجرا می‌کنند. عملیات‌هایی که قفل هر شیء را نگه می‌دارند، از ادامهٔ دیگر عملیات‌های قفل‌کننده روی همان شیء جلوگیری می‌کنند، اما عملیات‌های :term:`بدون قفل ` را مسدود نمی‌کنند." -#: ../../glossary.rst:1253 msgid "path entry" msgstr "ورودی مسیر" -#: ../../glossary.rst:1255 msgid "A single location on the :term:`import path` which the :term:`path based finder` consults to find modules for importing." msgstr "یک مکان منفرد در :term:`ایمپورت مسیر ` که :term:`یابندهٔ مبتنی بر مسیر ` برای یافتن ماژول‌ها جهت ایمپورت بررسی می‌کند." -#: ../../glossary.rst:1257 msgid "path entry finder" msgstr "یابندهٔ ورودی مسیر" -#: ../../glossary.rst:1259 -msgid "" -"A :term:`finder` returned by a callable on :data:`sys.path_hooks` (i.e. a :term:`path entry hook`) which knows how to locate modules given a :term:`path entry`." -msgstr "" -"یک :term:`یابنده ` که توسط یک فراخوانی‌پذیر در :data:`sys.path_hooks` (یعنی یک :term:`قلاب ورودی مسیر `) بازگردانده می‌شود و می‌داند چگونه " -"با داشتن یک :term:`ورودی مسیر `، ماژول‌ها را پیدا کند." +msgid "A :term:`finder` returned by a callable on :data:`sys.path_hooks` (i.e. a :term:`path entry hook`) which knows how to locate modules given a :term:`path entry`." +msgstr "یک :term:`یابنده ` که توسط یک فراخوانی‌پذیر در :data:`sys.path_hooks` (یعنی یک :term:`قلاب ورودی مسیر `) بازگردانده می‌شود و می‌داند چگونه با داشتن یک :term:`ورودی مسیر `، ماژول‌ها را پیدا کند." -#: ../../glossary.rst:1263 msgid "See :class:`importlib.abc.PathEntryFinder` for the methods that path entry finders implement." msgstr "برای متدهایی که یابنده‌های ورودی مسیر پیاده‌سازی می‌کنند، :class:`importlib.abc.PathEntryFinder` را ببینید." -#: ../../glossary.rst:1265 msgid "path entry hook" msgstr "قلاب ورودی مسیر" -#: ../../glossary.rst:1267 msgid "A callable on the :data:`sys.path_hooks` list which returns a :term:`path entry finder` if it knows how to find modules on a specific :term:`path entry`." -msgstr "" -"یک فراخوانی‌پذیر در فهرست :data:`sys.path_hooks` که اگر بداند چگونه ماژول‌ها را در یک :term:`ورودی مسیر ` مشخص پیدا کند، یک :term:`یابندهٔ ورودی مسیر " -"` بازمی‌گرداند." +msgstr "یک فراخوانی‌پذیر در فهرست :data:`sys.path_hooks` که اگر بداند چگونه ماژول‌ها را در یک :term:`ورودی مسیر ` مشخص پیدا کند، یک :term:`یابندهٔ ورودی مسیر ` بازمی‌گرداند." -#: ../../glossary.rst:1270 msgid "path based finder" msgstr "یابندهٔ مبتنی بر مسیر" -#: ../../glossary.rst:1272 msgid "One of the default :term:`meta path finders ` which searches an :term:`import path` for modules." msgstr "یکی از :term:`یابندهٔ مسیر فراداده ` پیش‌فرض که یک :term:`ایمپورت مسیر ` را برای یافتن ماژول‌ها جست‌وجو می‌کند." -#: ../../glossary.rst:1274 msgid "path-like object" msgstr "شیء شبه‌مسیر" -#: ../../glossary.rst:1276 -msgid "" -"An object representing a file system path. A path-like object is either a :class:`str` or :class:`bytes` object representing a path, or an object implementing " -"the :class:`os.PathLike` protocol. An object that supports the :class:`os.PathLike` protocol can be converted to a :class:`str` or :class:`bytes` file system path " -"by calling the :func:`os.fspath` function; :func:`os.fsdecode` and :func:`os.fsencode` can be used to guarantee a :class:`str` or :class:`bytes` result instead, " -"respectively. Introduced by :pep:`519`." -msgstr "" -"شی‌ءای که یک مسیر سامانهٔ فایل را نمایش می‌دهد. یک شیء شبه‌مسیر یا یک شیء :class:`str` یا :class:`bytes` است که یک مسیر را نمایش می‌دهد، یا شی‌ءای است که " -"پروتکل :class:`os.PathLike` را پیاده‌سازی می‌کند. شی‌ءای که از پروتکل :class:`os.PathLike` پشتیبانی می‌کند، می‌تواند با فراخوانی تابع :func:`os.fspath` به یک مسیر " -"سامانهٔ فایل :class:`str` یا :class:`bytes` تبدیل شود؛ :func:`os.fsdecode` و :func:`os.fsencode` می‌توانند به‌ترتیب برای تضمین نتیجهٔ :class:`str` یا :class:`bytes` " -"استفاده شوند. معرفی‌شده در :pep:`519`." +msgid "An object representing a file system path. A path-like object is either a :class:`str` or :class:`bytes` object representing a path, or an object implementing the :class:`os.PathLike` protocol. An object that supports the :class:`os.PathLike` protocol can be converted to a :class:`str` or :class:`bytes` file system path by calling the :func:`os.fspath` function; :func:`os.fsdecode` and :func:`os.fsencode` can be used to guarantee a :class:`str` or :class:`bytes` result instead, respectively. Introduced by :pep:`519`." +msgstr "شی‌ءای که یک مسیر سامانهٔ فایل را نمایش می‌دهد. یک شیء شبه‌مسیر یا یک شیء :class:`str` یا :class:`bytes` است که یک مسیر را نمایش می‌دهد، یا شی‌ءای است که پروتکل :class:`os.PathLike` را پیاده‌سازی می‌کند. شی‌ءای که از پروتکل :class:`os.PathLike` پشتیبانی می‌کند، می‌تواند با فراخوانی تابع :func:`os.fspath` به یک مسیر سامانهٔ فایل :class:`str` یا :class:`bytes` تبدیل شود؛ :func:`os.fsdecode` و :func:`os.fsencode` می‌توانند به‌ترتیب برای تضمین نتیجهٔ :class:`str` یا :class:`bytes` استفاده شوند. معرفی‌شده در :pep:`519`." -#: ../../glossary.rst:1284 msgid "PEP" msgstr "PEP" -#: ../../glossary.rst:1286 -msgid "" -"Python Enhancement Proposal. A PEP is a design document providing information to the Python community, or describing a new feature for Python or its processes or " -"environment. PEPs should provide a concise technical specification and a rationale for proposed features." -msgstr "" -"پیشنهاد بهبود پایتون. یک PEP یک سند طراحی است که اطلاعاتی را برای کامیونیتی پایتون ارائه می‌کند، یا یک ویژگی جدید برای پایتون، فرایندهای آن یا محیط آن را توصیف " -"می‌کند. PEPها باید یک مشخصات فنی مختصر و یک منطق برای ویژگی‌های پیشنهادی ارائه کنند." +msgid "Python Enhancement Proposal. A PEP is a design document providing information to the Python community, or describing a new feature for Python or its processes or environment. PEPs should provide a concise technical specification and a rationale for proposed features." +msgstr "پیشنهاد بهبود پایتون. یک PEP یک سند طراحی است که اطلاعاتی را برای کامیونیتی پایتون ارائه می‌کند، یا یک ویژگی جدید برای پایتون، فرایندهای آن یا محیط آن را توصیف می‌کند. PEPها باید یک مشخصات فنی مختصر و یک منطق برای ویژگی‌های پیشنهادی ارائه کنند." -#: ../../glossary.rst:1292 -msgid "" -"PEPs are intended to be the primary mechanisms for proposing major new features, for collecting community input on an issue, and for documenting the design " -"decisions that have gone into Python. The PEP author is responsible for building consensus within the community and documenting dissenting opinions." -msgstr "" -"PEP ها برای این طراحی شده‌اند که سازوکارهای اصلی پیشنهاد ویژگی‌های بزرگ جدید، جمع‌آوری نظرهای کامیونیتی دربارهٔ یک موضوع و مستندسازی تصمیم‌های طراحی گرفته‌شده برای " -"پایتون باشند. نویسندهٔ PEP مسئول ایجاد توافق در کامیونیتی و مستندسازی دیدگاه‌های مخالف است." +msgid "PEPs are intended to be the primary mechanisms for proposing major new features, for collecting community input on an issue, and for documenting the design decisions that have gone into Python. The PEP author is responsible for building consensus within the community and documenting dissenting opinions." +msgstr "PEP ها برای این طراحی شده‌اند که سازوکارهای اصلی پیشنهاد ویژگی‌های بزرگ جدید، جمع‌آوری نظرهای کامیونیتی دربارهٔ یک موضوع و مستندسازی تصمیم‌های طراحی گرفته‌شده برای پایتون باشند. نویسندهٔ PEP مسئول ایجاد توافق در کامیونیتی و مستندسازی دیدگاه‌های مخالف است." -#: ../../glossary.rst:1298 msgid "See :pep:`1`." msgstr ":pep:`1` را ببینید." -#: ../../glossary.rst:1299 msgid "portion" msgstr "بخش" -#: ../../glossary.rst:1301 msgid "A set of files in a single directory (possibly stored in a zip file) that contribute to a namespace package, as defined in :pep:`420`." msgstr "مجموعه‌ای از فایل‌ها در یک پوشهٔ واحد (که ممکن است در یک فایل zip ذخیره شده باشند) که در یک بستهٔ نام‌فضا، همان‌طور که در :pep:`420` تعریف شده است، مشارکت می‌کنند." -#: ../../glossary.rst:1303 msgid "positional argument" msgstr "آرگومان جایگاهی" -#: ../../glossary.rst:1306 msgid "provisional API" msgstr "API موقت" -#: ../../glossary.rst:1308 -msgid "" -"A provisional API is one which has been deliberately excluded from the standard library's backwards compatibility guarantees. While major changes to such " -"interfaces are not expected, as long as they are marked provisional, backwards incompatible changes (up to and including removal of the interface) may occur if " -"deemed necessary by core developers. Such changes will not be made gratuitously -- they will occur only if serious fundamental flaws are uncovered that were " -"missed prior to the inclusion of the API." -msgstr "" -"یک API موقت، رابطی است که به‌طور عمدی از تضمین‌های سازگاری رو‌به‌عقب کتابخانهٔ استاندارد خارج شده است. با اینکه تغییرات بزرگ در چنین رابط‌هایی انتظار نمی‌رود، تا زمانی " -"که موقت علامت‌گذاری شده باشند، اگر توسعه‌دهندگان اصلی آن را ضروری بدانند، تغییرات ناسازگار با نسخه‌های پیشین (تا حذف کامل رابط نیز) ممکن است رخ دهد. چنین تغییراتی " -"بدون دلیل انجام نخواهند شد؛ آن‌ها تنها در صورتی رخ می‌دهند که نقص‌های بنیادی و جدی‌ای کشف شوند که پیش از اضافه شدن API از آن‌ها چشم‌پوشی شده بود." +msgid "A provisional API is one which has been deliberately excluded from the standard library's backwards compatibility guarantees. While major changes to such interfaces are not expected, as long as they are marked provisional, backwards incompatible changes (up to and including removal of the interface) may occur if deemed necessary by core developers. Such changes will not be made gratuitously -- they will occur only if serious fundamental flaws are uncovered that were missed prior to the inclusion of the API." +msgstr "یک API موقت، رابطی است که به‌طور عمدی از تضمین‌های سازگاری رو‌به‌عقب کتابخانهٔ استاندارد خارج شده است. با اینکه تغییرات بزرگ در چنین رابط‌هایی انتظار نمی‌رود، تا زمانی که موقت علامت‌گذاری شده باشند، اگر توسعه‌دهندگان اصلی آن را ضروری بدانند، تغییرات ناسازگار با نسخه‌های پیشین (تا حذف کامل رابط نیز) ممکن است رخ دهد. چنین تغییراتی بدون دلیل انجام نخواهند شد؛ آن‌ها تنها در صورتی رخ می‌دهند که نقص‌های بنیادی و جدی‌ای کشف شوند که پیش از اضافه شدن API از آن‌ها چشم‌پوشی شده بود." -#: ../../glossary.rst:1317 -msgid "" -"Even for provisional APIs, backwards incompatible changes are seen as a \"solution of last resort\" - every attempt will still be made to find a backwards " -"compatible resolution to any identified problems." -msgstr "" -"حتی برای APIهای موقت، تغییرات ناسازگار با نسخه‌های پیشین به‌عنوان «راه‌حل آخر» در نظر گرفته می‌شوند؛ همچنان هر تلاشی برای یافتن راه‌حلی سازگار با نسخه‌های پیشین برای " -"مشکلات شناسایی‌شده انجام خواهد شد." +msgid "Even for provisional APIs, backwards incompatible changes are seen as a \"solution of last resort\" - every attempt will still be made to find a backwards compatible resolution to any identified problems." +msgstr "حتی برای APIهای موقت، تغییرات ناسازگار با نسخه‌های پیشین به‌عنوان «راه‌حل آخر» در نظر گرفته می‌شوند؛ همچنان هر تلاشی برای یافتن راه‌حلی سازگار با نسخه‌های پیشین برای مشکلات شناسایی‌شده انجام خواهد شد." -#: ../../glossary.rst:1321 -msgid "" -"This process allows the standard library to continue to evolve over time, without locking in problematic design errors for extended periods of time. " -"See :pep:`411` for more details." -msgstr "" -"این فرایند به کتابخانهٔ استاندارد اجازه می‌دهد در طول زمان به تکامل خود ادامه دهد، بدون اینکه خطاهای طراحی مشکل‌ساز را برای دوره‌های طولانی تثبیت کند. برای جزئیات " -"بیشتر، :pep:`411` را ببینید." +msgid "This process allows the standard library to continue to evolve over time, without locking in problematic design errors for extended periods of time. See :pep:`411` for more details." +msgstr "این فرایند به کتابخانهٔ استاندارد اجازه می‌دهد در طول زمان به تکامل خود ادامه دهد، بدون اینکه خطاهای طراحی مشکل‌ساز را برای دوره‌های طولانی تثبیت کند. برای جزئیات بیشتر، :pep:`411` را ببینید." -#: ../../glossary.rst:1324 msgid "provisional package" msgstr "بستهٔ موقت" -#: ../../glossary.rst:1326 msgid "See :term:`provisional API`." msgstr ":term:`API موقت ` را ببینید." -#: ../../glossary.rst:1327 msgid "Python 3000" msgstr "پایتون ۳۰۰۰" -#: ../../glossary.rst:1329 -msgid "" -"Nickname for the Python 3.x release line (coined long ago when the release of version 3 was something in the distant future.) This is also abbreviated \"Py3k\"." +msgid "Nickname for the Python 3.x release line (coined long ago when the release of version 3 was something in the distant future.) This is also abbreviated \"Py3k\"." msgstr "نام مستعار برای خط انتشار Python ۳.x (که مدت‌ها پیش، زمانی که انتشار نسخهٔ ۳ چیزی در آیندهٔ دور بود، ساخته شد.) این عبارت همچنین به‌صورت «Py3k» کوتاه می‌شود." -#: ../../glossary.rst:1332 msgid "Pythonic" msgstr "پایتونی" -#: ../../glossary.rst:1334 -msgid "" -"An idea or piece of code which closely follows the most common idioms of the Python language, rather than implementing code using concepts common to other " -"languages. For example, a common idiom in Python is to loop over all elements of an iterable using a :keyword:`for` statement. Many other languages don't have " -"this type of construct, so people unfamiliar with Python sometimes use a numerical counter instead::" -msgstr "" -"ایده یا بخشی از کد که به‌جای پیاده‌سازی با مفاهیم رایج در زبان‌های دیگر، به‌طور نزدیک از شیوه‌های رایج زبان پایتون پیروی می‌کند. برای مثال، یک شیوهٔ رایج در پایتون این " -"است که با استفاده از دستور :keyword:`for` روی همهٔ المان‌های یک تکرارپذیر حلقه زده شود. بسیاری از زبان‌های دیگر چنین ساختاری ندارند، بنابراین افرادی که با پایتون " -"آشنا نیستند گاهی به‌جای آن از یک شمارندهٔ عددی استفاده می‌کنند::" +msgid "An idea or piece of code which closely follows the most common idioms of the Python language, rather than implementing code using concepts common to other languages. For example, a common idiom in Python is to loop over all elements of an iterable using a :keyword:`for` statement. Many other languages don't have this type of construct, so people unfamiliar with Python sometimes use a numerical counter instead::" +msgstr "ایده یا بخشی از کد که به‌جای پیاده‌سازی با مفاهیم رایج در زبان‌های دیگر، به‌طور نزدیک از شیوه‌های رایج زبان پایتون پیروی می‌کند. برای مثال، یک شیوهٔ رایج در پایتون این است که با استفاده از دستور :keyword:`for` روی همهٔ المان‌های یک تکرارپذیر حلقه زده شود. بسیاری از زبان‌های دیگر چنین ساختاری ندارند، بنابراین افرادی که با پایتون آشنا نیستند گاهی به‌جای آن از یک شمارندهٔ عددی استفاده می‌کنند::" -#: ../../glossary.rst:1341 msgid "" "for i in range(len(food)):\n" " print(food[i])" @@ -2356,11 +1230,9 @@ msgstr "" "for i in range(len(food)):\n" " print(food[i])" -#: ../../glossary.rst:1344 msgid "As opposed to the cleaner, Pythonic method::" msgstr "در مقابل، روش تمیزتر و پایتونی::" -#: ../../glossary.rst:1346 msgid "" "for piece in food:\n" " print(piece)" @@ -2368,19 +1240,12 @@ msgstr "" "for piece in food:\n" " print(piece)" -#: ../../glossary.rst:1348 msgid "qualified name" msgstr "نام واجد شرایط" -#: ../../glossary.rst:1350 -msgid "" -"A dotted name showing the \"path\" from a module's global scope to a class, function or method defined in that module, as defined in :pep:`3155`. For top-level " -"functions and classes, the qualified name is the same as the object's name::" -msgstr "" -"نامی نقطه‌گذاری‌شده که «مسیر» از محدودهٔ سراسری یک ماژول تا یک کلاس، تابع یا متد تعریف‌شده در آن ماژول را نشان می‌دهد، همان‌طور که در :pep:`3155` تعریف شده است. برای " -"تابع‌ها و کلاس‌های سطح بالا، نام واجد شرایط همان نام شیء است::" +msgid "A dotted name showing the \"path\" from a module's global scope to a class, function or method defined in that module, as defined in :pep:`3155`. For top-level functions and classes, the qualified name is the same as the object's name::" +msgstr "نامی نقطه‌گذاری‌شده که «مسیر» از محدودهٔ سراسری یک ماژول تا یک کلاس، تابع یا متد تعریف‌شده در آن ماژول را نشان می‌دهد، همان‌طور که در :pep:`3155` تعریف شده است. برای تابع‌ها و کلاس‌های سطح بالا، نام واجد شرایط همان نام شیء است::" -#: ../../glossary.rst:1355 msgid "" ">>> class C:\n" "... class D:\n" @@ -2406,14 +1271,9 @@ msgstr "" ">>> C.D.meth.__qualname__\n" "'C.D.meth'" -#: ../../glossary.rst:1367 -msgid "" -"When used to refer to modules, the *fully qualified name* means the entire dotted path to the module, including any parent packages, e.g. ``email.mime.text``::" -msgstr "" -"هنگامی که برای اشاره به ماژول‌ها استفاده می‌شود، *نام کاملاً واجد شرایط* به معنای کل مسیر نقطه‌گذاری‌شده به ماژول است که شامل هر بستهٔ والد نیز می‌شود، برای مثال " -"``email.mime.text``::" +msgid "When used to refer to modules, the *fully qualified name* means the entire dotted path to the module, including any parent packages, e.g. ``email.mime.text``::" +msgstr "هنگامی که برای اشاره به ماژول‌ها استفاده می‌شود، *نام کاملاً واجد شرایط* به معنای کل مسیر نقطه‌گذاری‌شده به ماژول است که شامل هر بستهٔ والد نیز می‌شود، برای مثال ``email.mime.text``::" -#: ../../glossary.rst:1371 msgid "" ">>> import email.mime.text\n" ">>> email.mime.text.__name__\n" @@ -2423,484 +1283,246 @@ msgstr "" ">>> email.mime.text.__name__\n" "'email.mime.text'" -#: ../../glossary.rst:1374 msgid "race condition" msgstr "شرط رقابت" -#: ../../glossary.rst:1376 -msgid "" -"A condition of a program where the behavior depends on the relative timing or ordering of events, particularly in multi-threaded programs. Race conditions can " -"lead to :term:`non-deterministic` behavior and bugs that are difficult to reproduce. A :term:`data race` is a specific type of race condition involving " -"unsynchronized access to shared memory. The :term:`LBYL` coding style is particularly susceptible to race conditions in multi-threaded code. Using :term:`locks " -"` and other :term:`synchronization primitives ` helps prevent race conditions." -msgstr "" -"شرایطی در یک برنامه که در آن رفتار به زمان‌بندی نسبی یا ترتیب رویدادها وابسته است، به‌ویژه در برنامه‌های چندنخی. شرایط رقابت می‌توانند به رفتار :term:`غیرقطعی ` و خطاهایی منجر شوند که بازتولید آن‌ها دشوار است. یک :term:`رقابت داده ` نوع خاصی از شرط رقابت است که شامل دسترسی بدون همگام‌سازی به حافظهٔ " -"اشتراکی می‌شود. سبک کدنویسی :term:`LBYL ` در کد چندنخی به‌طور ویژه در برابر شرایط رقابت آسیب‌پذیر است. استفاده از :term:`قفل ` و دیگر :term:`اولیه " -"` به جلوگیری از شرایط رقابت کمک می‌کند." +msgid "A condition of a program where the behavior depends on the relative timing or ordering of events, particularly in multi-threaded programs. Race conditions can lead to :term:`non-deterministic` behavior and bugs that are difficult to reproduce. A :term:`data race` is a specific type of race condition involving unsynchronized access to shared memory. The :term:`LBYL` coding style is particularly susceptible to race conditions in multi-threaded code. Using :term:`locks ` and other :term:`synchronization primitives ` helps prevent race conditions." +msgstr "شرایطی در یک برنامه که در آن رفتار به زمان‌بندی نسبی یا ترتیب رویدادها وابسته است، به‌ویژه در برنامه‌های چندنخی. شرایط رقابت می‌توانند به رفتار :term:`غیرقطعی ` و خطاهایی منجر شوند که بازتولید آن‌ها دشوار است. یک :term:`رقابت داده ` نوع خاصی از شرط رقابت است که شامل دسترسی بدون همگام‌سازی به حافظهٔ اشتراکی می‌شود. سبک کدنویسی :term:`LBYL ` در کد چندنخی به‌طور ویژه در برابر شرایط رقابت آسیب‌پذیر است. استفاده از :term:`قفل ` و دیگر :term:`اولیه ` به جلوگیری از شرایط رقابت کمک می‌کند." -#: ../../glossary.rst:1386 msgid "reference count" msgstr "شمارندهٔ ارجاع" -#: ../../glossary.rst:1388 -msgid "" -"The number of references to an object. When the reference count of an object drops to zero, it is deallocated. Some objects are :term:`immortal` and have " -"reference counts that are never modified, and therefore the objects are never deallocated. Reference counting is generally not visible to Python code, but it is " -"a key element of the :term:`CPython` implementation. Programmers can call the :func:`sys.getrefcount` function to return the reference count for a particular " -"object." -msgstr "" -"تعداد ارجاع‌ها به یک شیء. هنگامی که تعداد ارجاع‌های یک شیء به صفر کاهش یابد، آن شیء از حافظه آزاد می‌شود. برخی اشیاء :term:`نامیرا ` هستند و تعداد ارجاع‌های " -"آن‌ها هرگز تغییر نمی‌کند و بنابراین این اشیاء هرگز از حافظه آزاد نمی‌شوند. شمارش ارجاع‌ها عموماً برای کد پایتون قابل مشاهده نیست، اما یکی از عناصر کلیدی " -"پیاده‌سازی :term:`CPython ` است. برنامه‌نویسان می‌توانند تابع :func:`sys.getrefcount` را فراخوانی کنند تا تعداد ارجاع‌های یک شیء خاص را برگرداند." +msgid "The number of references to an object. When the reference count of an object drops to zero, it is deallocated. Some objects are :term:`immortal` and have reference counts that are never modified, and therefore the objects are never deallocated. Reference counting is generally not visible to Python code, but it is a key element of the :term:`CPython` implementation. Programmers can call the :func:`sys.getrefcount` function to return the reference count for a particular object." +msgstr "تعداد ارجاع‌ها به یک شیء. هنگامی که تعداد ارجاع‌های یک شیء به صفر کاهش یابد، آن شیء از حافظه آزاد می‌شود. برخی اشیاء :term:`نامیرا ` هستند و تعداد ارجاع‌های آن‌ها هرگز تغییر نمی‌کند و بنابراین این اشیاء هرگز از حافظه آزاد نمی‌شوند. شمارش ارجاع‌ها عموماً برای کد پایتون قابل مشاهده نیست، اما یکی از عناصر کلیدی پیاده‌سازی :term:`CPython ` است. برنامه‌نویسان می‌توانند تابع :func:`sys.getrefcount` را فراخوانی کنند تا تعداد ارجاع‌های یک شیء خاص را برگرداند." -#: ../../glossary.rst:1397 -msgid "" -"In :term:`CPython`, reference counts are not considered to be stable or well-defined values; the number of references to an object, and how that number is " -"affected by Python code, may be different between versions." -msgstr "" -"در :term:`CPython `، تعداد ارجاع‌ها مقادیر پایدار یا به‌خوبی تعریف‌شده‌ای در نظر گرفته نمی‌شوند؛ تعداد ارجاع‌ها به یک شیء و نحوه تأثیرپذیری این تعداد از کد " -"پایتون ممکن است بین نسخه‌ها متفاوت باشد." +msgid "In :term:`CPython`, reference counts are not considered to be stable or well-defined values; the number of references to an object, and how that number is affected by Python code, may be different between versions." +msgstr "در :term:`CPython `، تعداد ارجاع‌ها مقادیر پایدار یا به‌خوبی تعریف‌شده‌ای در نظر گرفته نمی‌شوند؛ تعداد ارجاع‌ها به یک شیء و نحوه تأثیرپذیری این تعداد از کد پایتون ممکن است بین نسخه‌ها متفاوت باشد." -#: ../../glossary.rst:1401 msgid "regular package" msgstr "بستهٔ معمولی" -#: ../../glossary.rst:1403 msgid "A traditional :term:`package`, such as a directory containing an ``__init__.py`` file." msgstr "یک :term:`بسته ` سنتی، مانند پوشه‌ای که شامل یک فایل ``__init__.py`` است." -#: ../../glossary.rst:1406 msgid "See also :term:`namespace package`." msgstr "همچنین :term:`بستهٔ نام‌فضا ` را ببینید." -#: ../../glossary.rst:1407 msgid "reentrant" msgstr "بازورودپذیر" -#: ../../glossary.rst:1409 -msgid "" -"A property of a function or :term:`lock` that allows it to be called or acquired multiple times by the same thread without causing errors or a :term:`deadlock`." -msgstr "" -"ویژگی یک تابع یا :term:`قفل ` که به آن اجازه می‌دهد بدون ایجاد خطا یا یک :term:`بن‌بست `، چندین بار توسط یک نخ اجرایی یکسان فراخوانی یا دریافت شود." +msgid "A property of a function or :term:`lock` that allows it to be called or acquired multiple times by the same thread without causing errors or a :term:`deadlock`." +msgstr "ویژگی یک تابع یا :term:`قفل ` که به آن اجازه می‌دهد بدون ایجاد خطا یا یک :term:`بن‌بست `، چندین بار توسط یک نخ اجرایی یکسان فراخوانی یا دریافت شود." -#: ../../glossary.rst:1413 -msgid "" -"For functions, reentrancy means the function can be safely called again before a previous invocation has completed, which is important when functions may be " -"called recursively or from signal handlers. Thread-unsafe functions may be :term:`non-deterministic` if they're called reentrantly in a multithreaded program." -msgstr "" -"در مورد توابع، بازورودپذیری به این معناست که می‌توان تابع را پیش از کامل‌شدن یک فراخوانی قبلی، دوباره با ایمنی فراخوانی کرد؛ این موضوع زمانی اهمیت دارد که توابع " -"ممکن است به‌صورت بازگشتی یا از درون دستگردان‌های سیگنال فراخوانی شوند. توابع ناایمن برای نخ‌های اجرایی ممکن است در صورتی که در یک برنامهٔ چندنخی به‌صورت بازورودپذیر " -"فراخوانی شوند، :term:`غیرقطعی ` باشند." +msgid "For functions, reentrancy means the function can be safely called again before a previous invocation has completed, which is important when functions may be called recursively or from signal handlers. Thread-unsafe functions may be :term:`non-deterministic` if they're called reentrantly in a multithreaded program." +msgstr "در مورد توابع، بازورودپذیری به این معناست که می‌توان تابع را پیش از کامل‌شدن یک فراخوانی قبلی، دوباره با ایمنی فراخوانی کرد؛ این موضوع زمانی اهمیت دارد که توابع ممکن است به‌صورت بازگشتی یا از درون دستگردان‌های سیگنال فراخوانی شوند. توابع ناایمن برای نخ‌های اجرایی ممکن است در صورتی که در یک برنامهٔ چندنخی به‌صورت بازورودپذیر فراخوانی شوند، :term:`غیرقطعی ` باشند." -#: ../../glossary.rst:1419 -msgid "" -"For locks, Python's :class:`threading.RLock` (reentrant lock) is reentrant, meaning a thread that already holds the lock can acquire it again without blocking. " -"In contrast, :class:`threading.Lock` is not reentrant - attempting to acquire it twice from the same thread will cause a deadlock." -msgstr "" -"در مورد قفل‌ها، :class:`threading.RLock` پایتون (قفل بازورودپذیر) بازورودپذیر است؛ یعنی نخ اجرایی‌ای که از پیش قفل را در اختیار دارد، می‌تواند دوباره آن را دریافت " -"کند، بدون آنکه مسدود شود. در مقابل، :class:`threading.Lock` بازورودپذیر نیست؛ تلاش برای دریافت آن دو بار از همان نخ اجرایی باعث یک بن‌بست می‌شود." +msgid "For locks, Python's :class:`threading.RLock` (reentrant lock) is reentrant, meaning a thread that already holds the lock can acquire it again without blocking. In contrast, :class:`threading.Lock` is not reentrant - attempting to acquire it twice from the same thread will cause a deadlock." +msgstr "در مورد قفل‌ها، :class:`threading.RLock` پایتون (قفل بازورودپذیر) بازورودپذیر است؛ یعنی نخ اجرایی‌ای که از پیش قفل را در اختیار دارد، می‌تواند دوباره آن را دریافت کند، بدون آنکه مسدود شود. در مقابل، :class:`threading.Lock` بازورودپذیر نیست؛ تلاش برای دریافت آن دو بار از همان نخ اجرایی باعث یک بن‌بست می‌شود." -#: ../../glossary.rst:1425 msgid "See also :term:`lock` and :term:`deadlock`." msgstr "همچنین :term:`قفل ` و :term:`بن‌بست ` را ببینید." -#: ../../glossary.rst:1426 msgid "REPL" msgstr "REPL" -#: ../../glossary.rst:1428 msgid "An acronym for the \"read–eval–print loop\", another name for the :term:`interactive` interpreter shell." msgstr "سرواژهٔ «read–eval–print loop» و نام دیگری برای پوستهٔ مفسر :term:`تعاملی ` است." -#: ../../glossary.rst:1430 msgid "__slots__" msgstr "__slots__" -#: ../../glossary.rst:1432 -msgid "" -"A declaration inside a class that saves memory by pre-declaring space for instance attributes and eliminating instance dictionaries. Though popular, the " -"technique is somewhat tricky to get right and is best reserved for rare cases where there are large numbers of instances in a memory-critical application." -msgstr "" -"یک اعلان درون یک کلاس که با پیش‌اعلام فضای موردنیاز برای ویژگی‌های نمونه و حذف دیکشنری‌های نمونه، در حافظه صرفه‌جویی می‌کند. با وجود محبوبیت این روش، پیاده‌سازی درست آن " -"تا حدی دشوار است و بهتر است آن را به موارد نادری محدود کنید که تعداد نمونه‌ها زیاد است و برنامه از نظر حافظه حساس است." +msgid "A declaration inside a class that saves memory by pre-declaring space for instance attributes and eliminating instance dictionaries. Though popular, the technique is somewhat tricky to get right and is best reserved for rare cases where there are large numbers of instances in a memory-critical application." +msgstr "یک اعلان درون یک کلاس که با پیش‌اعلام فضای موردنیاز برای ویژگی‌های نمونه و حذف دیکشنری‌های نمونه، در حافظه صرفه‌جویی می‌کند. با وجود محبوبیت این روش، پیاده‌سازی درست آن تا حدی دشوار است و بهتر است آن را به موارد نادری محدود کنید که تعداد نمونه‌ها زیاد است و برنامه از نظر حافظه حساس است." -#: ../../glossary.rst:1437 msgid "sequence" msgstr "دنباله" -#: ../../glossary.rst:1439 -msgid "" -"An :term:`iterable` which supports efficient element access using integer indices via the :meth:`~object.__getitem__` special method and defines " -"a :meth:`~object.__len__` method that returns the length of the sequence. Some built-in sequence types are :class:`list`, :class:`str`, :class:`tuple`, " -"and :class:`bytes`. Note that :class:`dict` also supports :meth:`~object.__getitem__` and :meth:`!__len__`, but is considered a mapping rather than a sequence " -"because the lookups use arbitrary :term:`hashable` keys rather than integers." -msgstr "" -"یک :term:`تکرارپذیر ` که از دسترسی کارآمد به المان‌ها با استفاده از اندیس‌های عدد صحیح از طریق متد ویژهٔ :meth:`~object.__getitem__` پشتیبانی می‌کند و " -"متد :meth:`~object.__len__` را تعریف می‌کند که طول دنباله را برمی‌گرداند. برخی از انواع دنبالهٔ توکار عبارت‌اند از :class:`list`، :class:`str`، :class:`tuple` " -"و :class:`bytes`. توجه کنید که :class:`dict` نیز از :meth:`~object.__getitem__` و :meth:`!__len__` پشتیبانی می‌کند، اما به‌جای دنباله، نگاشت در نظر گرفته می‌شود، " -"زیرا جست‌وجوها از کلیدهای :term:`قابل درهم‌سازی ` دلخواه به‌جای اعداد صحیح استفاده می‌کنند." +msgid "An :term:`iterable` which supports efficient element access using integer indices via the :meth:`~object.__getitem__` special method and defines a :meth:`~object.__len__` method that returns the length of the sequence. Some built-in sequence types are :class:`list`, :class:`str`, :class:`tuple`, and :class:`bytes`. Note that :class:`dict` also supports :meth:`~object.__getitem__` and :meth:`!__len__`, but is considered a mapping rather than a sequence because the lookups use arbitrary :term:`hashable` keys rather than integers." +msgstr "یک :term:`تکرارپذیر ` که از دسترسی کارآمد به المان‌ها با استفاده از اندیس‌های عدد صحیح از طریق متد ویژهٔ :meth:`~object.__getitem__` پشتیبانی می‌کند و متد :meth:`~object.__len__` را تعریف می‌کند که طول دنباله را برمی‌گرداند. برخی از انواع دنبالهٔ توکار عبارت‌اند از :class:`list`، :class:`str`، :class:`tuple` و :class:`bytes`. توجه کنید که :class:`dict` نیز از :meth:`~object.__getitem__` و :meth:`!__len__` پشتیبانی می‌کند، اما به‌جای دنباله، نگاشت در نظر گرفته می‌شود، زیرا جست‌وجوها از کلیدهای :term:`قابل درهم‌سازی ` دلخواه به‌جای اعداد صحیح استفاده می‌کنند." -#: ../../glossary.rst:1448 -msgid "" -"The :class:`collections.abc.Sequence` abstract base class defines a much richer interface that goes beyond just :meth:`~object.__getitem__` " -"and :meth:`~object.__len__`, adding :meth:`~sequence.count`, :meth:`~sequence.index`, :meth:`~object.__contains__`, and :meth:`~object.__reversed__`. Types that " -"implement this expanded interface can be registered explicitly using :func:`~abc.ABCMeta.register`. For more documentation on sequence methods generally, " -"see :ref:`Common Sequence Operations `." -msgstr "" -"کلاس پایهٔ انتزاعی :class:`collections.abc.Sequence` رابط بسیار غنی‌تری را تعریف می‌کند که فراتر از صرفاً :meth:`~object.__getitem__` و :meth:`~object.__len__` است " -"و :meth:`~sequence.count`، :meth:`~sequence.index`، :meth:`~object.__contains__` و :meth:`~object.__reversed__` را نیز اضافه می‌کند. نوع‌هایی که این رابط گسترش‌یافته " -"را پیاده‌سازی می‌کنند، می‌توانند به‌طور صریح با استفاده از :func:`~abc.ABCMeta.register` ثبت شوند. برای مستندات بیشتر دربارهٔ متدهای دنباله به‌طور کلی، :ref:`Common " -"Sequence Operations ` را ببینید." +msgid "The :class:`collections.abc.Sequence` abstract base class defines a much richer interface that goes beyond just :meth:`~object.__getitem__` and :meth:`~object.__len__`, adding :meth:`~sequence.count`, :meth:`~sequence.index`, :meth:`~object.__contains__`, and :meth:`~object.__reversed__`. Types that implement this expanded interface can be registered explicitly using :func:`~abc.ABCMeta.register`. For more documentation on sequence methods generally, see :ref:`Common Sequence Operations `." +msgstr "کلاس پایهٔ انتزاعی :class:`collections.abc.Sequence` رابط بسیار غنی‌تری را تعریف می‌کند که فراتر از صرفاً :meth:`~object.__getitem__` و :meth:`~object.__len__` است و :meth:`~sequence.count`، :meth:`~sequence.index`، :meth:`~object.__contains__` و :meth:`~object.__reversed__` را نیز اضافه می‌کند. نوع‌هایی که این رابط گسترش‌یافته را پیاده‌سازی می‌کنند، می‌توانند به‌طور صریح با استفاده از :func:`~abc.ABCMeta.register` ثبت شوند. برای مستندات بیشتر دربارهٔ متدهای دنباله به‌طور کلی، :ref:`Common Sequence Operations ` را ببینید." -#: ../../glossary.rst:1458 msgid "set comprehension" msgstr "درک مجموعه‌ای" -#: ../../glossary.rst:1460 -msgid "" -"A compact way to process all or part of the elements in an iterable and return a set with the results. ``results = {c for c in 'abracadabra' if c not in 'abc'}`` " -"generates the set of strings ``{'r', 'd'}``. See :ref:`comprehensions`." -msgstr "" -"روشی فشرده برای پردازش همه یا بخشی از المان‌های یک تکرارپذیر و بازگرداندن یک مجموعه با نتایج. ``results = {c for c in 'abracadabra' if c not in 'abc'}`` مجموعه‌ای " -"از رشته‌ها به‌شکل ``{'r', 'd'}`` تولید می‌کند. :ref:`comprehensions` را ببینید." +msgid "A compact way to process all or part of the elements in an iterable and return a set with the results. ``results = {c for c in 'abracadabra' if c not in 'abc'}`` generates the set of strings ``{'r', 'd'}``. See :ref:`comprehensions`." +msgstr "روشی فشرده برای پردازش همه یا بخشی از المان‌های یک تکرارپذیر و بازگرداندن یک مجموعه با نتایج. ``results = {c for c in 'abracadabra' if c not in 'abc'}`` مجموعه‌ای از رشته‌ها به‌شکل ``{'r', 'd'}`` تولید می‌کند. :ref:`comprehensions` را ببینید." -#: ../../glossary.rst:1464 msgid "single dispatch" msgstr "توزیع تک‌گانه" -#: ../../glossary.rst:1466 msgid "A form of :term:`generic function` dispatch where the implementation is chosen based on the type of a single argument." msgstr "نوعی توزیع :term:`تابع عمومی ` که در آن پیاده‌سازی بر اساس نوع یک آرگومان واحد انتخاب می‌شود." -#: ../../glossary.rst:1468 msgid "slice" msgstr "برش" -#: ../../glossary.rst:1470 -msgid "" -"An object of type :class:`slice`, used to describe a portion of a :term:`sequence`. A slice object is created when using the :ref:`slicing ` form " -"of :ref:`subscript notation `, with colons inside square brackets, such as in ``variable_name[1:3:5]``." -msgstr "" -"یک شیء از نوع :class:`slice` که برای توصیف بخشی از یک :term:`دنباله ` استفاده می‌شود. یک شیء برش هنگام استفاده از شکل :ref:`slicing ` " -"در :ref:`subscript notation `، با دو نقطه درون کروشه‌ها، مانند ``variable_name[1:3:5]``، ایجاد می‌شود." +msgid "An object of type :class:`slice`, used to describe a portion of a :term:`sequence`. A slice object is created when using the :ref:`slicing ` form of :ref:`subscript notation `, with colons inside square brackets, such as in ``variable_name[1:3:5]``." +msgstr "یک شیء از نوع :class:`slice` که برای توصیف بخشی از یک :term:`دنباله ` استفاده می‌شود. یک شیء برش هنگام استفاده از شکل :ref:`slicing ` در :ref:`subscript notation `، با دو نقطه درون کروشه‌ها، مانند ``variable_name[1:3:5]``، ایجاد می‌شود." -#: ../../glossary.rst:1475 msgid "soft deprecated" msgstr "منسوخ‌سازی نرم" -#: ../../glossary.rst:1477 -msgid "" -"A soft deprecated API should not be used in new code, but it is safe for already existing code to use it. The API remains documented and tested, but will not be " -"enhanced further." -msgstr "" -"از یک API که به‌صورت منسوخ‌سازی نرم علامت‌گذاری شده است نباید در کد جدید استفاده شود، اما استفاده از آن در کدهای موجود ایمن است. این API همچنان مستندسازی و آزمایش " -"می‌شود، اما دیگر بهبود داده نخواهد شد." +msgid "A soft deprecated API should not be used in new code, but it is safe for already existing code to use it. The API remains documented and tested, but will not be enhanced further." +msgstr "از یک API که به‌صورت منسوخ‌سازی نرم علامت‌گذاری شده است نباید در کد جدید استفاده شود، اما استفاده از آن در کدهای موجود ایمن است. این API همچنان مستندسازی و آزمایش می‌شود، اما دیگر بهبود داده نخواهد شد." -#: ../../glossary.rst:1481 msgid "Soft deprecation, unlike normal deprecation, does not plan on removing the API and will not emit warnings." msgstr "منسوخ‌سازی نرم، برخلاف منسوخ‌سازی معمولی، قصد حذف API را ندارد و هیچ هشداری نیز ایجاد نمی‌کند." -#: ../../glossary.rst:1484 msgid "See `PEP 387: Soft Deprecation `_." msgstr "`PEP 387: Soft Deprecation `_ را نیز ببینید." -#: ../../glossary.rst:1486 msgid "special method" msgstr "متد ویژه" -#: ../../glossary.rst:1490 -msgid "" -"A method that is called implicitly by Python to execute a certain operation on a type, such as addition. Such methods have names starting and ending with double " -"underscores. Special methods are documented in :ref:`specialnames`." -msgstr "" -"متدی که به‌طور ضمنی توسط پایتون فراخوانی می‌شود تا عملیاتی خاص را روی یک نوع، مانند جمع، اجرا کند. نام این متدها با دو زیرخط آغاز و با دو زیرخط پایان می‌یابد. متدهای " -"ویژه در :ref:`specialnames` مستند شده‌اند." +msgid "A method that is called implicitly by Python to execute a certain operation on a type, such as addition. Such methods have names starting and ending with double underscores. Special methods are documented in :ref:`specialnames`." +msgstr "متدی که به‌طور ضمنی توسط پایتون فراخوانی می‌شود تا عملیاتی خاص را روی یک نوع، مانند جمع، اجرا کند. نام این متدها با دو زیرخط آغاز و با دو زیرخط پایان می‌یابد. متدهای ویژه در :ref:`specialnames` مستند شده‌اند." -#: ../../glossary.rst:1494 msgid "standard library" msgstr "کتابخانهٔ استاندارد" -#: ../../glossary.rst:1496 -msgid "" -"The collection of :term:`packages `, :term:`modules ` and :term:`extension modules ` distributed as a part of the official " -"Python interpreter package. The exact membership of the collection may vary based on platform, available system libraries, or other criteria. Documentation can " -"be found at :ref:`library-index`." -msgstr "" -"مجموعه‌ای از :term:`بسته `، :term:`ماژول ` و :term:`ماژول افزونه ` که به‌عنوان بخشی از بستهٔ رسمی مفسر پایتون توزیع می‌شوند. اعضای " -"دقیق این مجموعه ممکن است بر اساس سکو، کتابخانه‌های سیستمی موجود یا معیارهای دیگر متفاوت باشند. مستندات آن را می‌توانید در :ref:`library-index` پیدا کنید." +msgid "The collection of :term:`packages `, :term:`modules ` and :term:`extension modules ` distributed as a part of the official Python interpreter package. The exact membership of the collection may vary based on platform, available system libraries, or other criteria. Documentation can be found at :ref:`library-index`." +msgstr "مجموعه‌ای از :term:`بسته `، :term:`ماژول ` و :term:`ماژول افزونه ` که به‌عنوان بخشی از بستهٔ رسمی مفسر پایتون توزیع می‌شوند. اعضای دقیق این مجموعه ممکن است بر اساس سکو، کتابخانه‌های سیستمی موجود یا معیارهای دیگر متفاوت باشند. مستندات آن را می‌توانید در :ref:`library-index` پیدا کنید." -#: ../../glossary.rst:1502 msgid "See also :data:`sys.stdlib_module_names` for a list of all possible standard library module names." msgstr "همچنین :data:`sys.stdlib_module_names` را برای فهرستی از همهٔ نام‌های ممکن ماژول‌های کتابخانهٔ استاندارد ببینید." -#: ../../glossary.rst:1504 msgid "statement" msgstr "دستور" -#: ../../glossary.rst:1506 -msgid "" -"A statement is part of a suite (a \"block\" of code). A statement is either an :term:`expression` or one of several constructs with a keyword, such " -"as :keyword:`if`, :keyword:`while` or :keyword:`for`." -msgstr "" -"دستور بخشی از یک مجموعه (یک «بلوک» کد) است. یک دستور یا یک :term:`عبارت ` است یا یکی از چند ساختار دارای کلیدواژه، " -"مانند :keyword:`if`، :keyword:`while` یا :keyword:`for`." +msgid "A statement is part of a suite (a \"block\" of code). A statement is either an :term:`expression` or one of several constructs with a keyword, such as :keyword:`if`, :keyword:`while` or :keyword:`for`." +msgstr "دستور بخشی از یک مجموعه (یک «بلوک» کد) است. یک دستور یا یک :term:`عبارت ` است یا یکی از چند ساختار دارای کلیدواژه، مانند :keyword:`if`، :keyword:`while` یا :keyword:`for`." -#: ../../glossary.rst:1509 msgid "static type checker" msgstr "بررسی‌کنندهٔ نوع ایستا" -#: ../../glossary.rst:1511 -msgid "" -"An external tool that reads Python code and analyzes it, looking for issues such as incorrect types. See also :term:`type hints ` and the :mod:`typing` " -"module." -msgstr "" -"یک ابزار خارجی که کد پایتون را می‌خواند و آن را تحلیل می‌کند و به‌دنبال مشکلاتی مانند نوع‌های نادرست می‌گردد. همچنین :term:`راهنمای نوع ` و " -"ماژول :mod:`typing` را ببینید." +msgid "An external tool that reads Python code and analyzes it, looking for issues such as incorrect types. See also :term:`type hints ` and the :mod:`typing` module." +msgstr "یک ابزار خارجی که کد پایتون را می‌خواند و آن را تحلیل می‌کند و به‌دنبال مشکلاتی مانند نوع‌های نادرست می‌گردد. همچنین :term:`راهنمای نوع ` و ماژول :mod:`typing` را ببینید." -#: ../../glossary.rst:1514 msgid "stdlib" msgstr "stdlib" -#: ../../glossary.rst:1516 msgid "An abbreviation of :term:`standard library`." msgstr "شکل کوتاه‌شدهٔ :term:`کتابخانهٔ استاندارد `." -#: ../../glossary.rst:1517 msgid "steal" msgstr "دزدیدن" -#: ../../glossary.rst:1519 -msgid "" -"In Python's C API, \"*stealing*\" an argument means that ownership of the argument is transferred to the called function. The caller must not use that reference " -"after the call. Generally, functions that \"steal\" an argument do so even if they fail." -msgstr "" -"در C API پایتون، «دزدیدن» یک آرگومان به این معناست که مالکیت آرگومان به تابع فراخوانی‌شده منتقل می‌شود. فراخواننده نباید پس از فراخوانی از آن ارجاع استفاده کند. " -"به‌طور کلی، توابعی که یک آرگومان را «می‌دزدند»، این کار را حتی در صورت شکست نیز انجام می‌دهند." +msgid "In Python's C API, \"*stealing*\" an argument means that ownership of the argument is transferred to the called function. The caller must not use that reference after the call. Generally, functions that \"steal\" an argument do so even if they fail." +msgstr "در C API پایتون، «دزدیدن» یک آرگومان به این معناست که مالکیت آرگومان به تابع فراخوانی‌شده منتقل می‌شود. فراخواننده نباید پس از فراخوانی از آن ارجاع استفاده کند. به‌طور کلی، توابعی که یک آرگومان را «می‌دزدند»، این کار را حتی در صورت شکست نیز انجام می‌دهند." -#: ../../glossary.rst:1524 msgid "See :ref:`api-refcountdetails` for a full explanation." msgstr "برای توضیح کامل، بخش :ref:`api-refcountdetails` را ببینید." -#: ../../glossary.rst:1525 msgid "strong reference" msgstr "ارجاع قوی" -#: ../../glossary.rst:1527 -msgid "" -"In Python's C API, a strong reference is a reference to an object which is owned by the code holding the reference. The strong reference is taken by " -"calling :c:func:`Py_INCREF` when the reference is created and released with :c:func:`Py_DECREF` when the reference is deleted." -msgstr "" -"در API زبان C پایتون، ارجاع قوی ارجاعی به یک شیء است که کدی که ارجاع را در اختیار دارد، مالک آن است. ارجاع قوی هنگام ایجاد ارجاع با فراخوانی :c:func:`Py_INCREF` " -"گرفته می‌شود و هنگام حذف ارجاع با :c:func:`Py_DECREF` آزاد می‌شود." +msgid "In Python's C API, a strong reference is a reference to an object which is owned by the code holding the reference. The strong reference is taken by calling :c:func:`Py_INCREF` when the reference is created and released with :c:func:`Py_DECREF` when the reference is deleted." +msgstr "در API زبان C پایتون، ارجاع قوی ارجاعی به یک شیء است که کدی که ارجاع را در اختیار دارد، مالک آن است. ارجاع قوی هنگام ایجاد ارجاع با فراخوانی :c:func:`Py_INCREF` گرفته می‌شود و هنگام حذف ارجاع با :c:func:`Py_DECREF` آزاد می‌شود." -#: ../../glossary.rst:1533 -msgid "" -"The :c:func:`Py_NewRef` function can be used to create a strong reference to an object. Usually, the :c:func:`Py_DECREF` function must be called on the strong " -"reference before exiting the scope of the strong reference, to avoid leaking one reference." -msgstr "" -"از تابع :c:func:`Py_NewRef` می‌توان برای ایجاد یک ارجاع قوی به یک شیء استفاده کرد. معمولاً باید تابع :c:func:`Py_DECREF` پیش از خروج از محدودهٔ ارجاع قوی، روی آن " -"فراخوانی شود تا از نشت یک ارجاع جلوگیری شود." +msgid "The :c:func:`Py_NewRef` function can be used to create a strong reference to an object. Usually, the :c:func:`Py_DECREF` function must be called on the strong reference before exiting the scope of the strong reference, to avoid leaking one reference." +msgstr "از تابع :c:func:`Py_NewRef` می‌توان برای ایجاد یک ارجاع قوی به یک شیء استفاده کرد. معمولاً باید تابع :c:func:`Py_DECREF` پیش از خروج از محدودهٔ ارجاع قوی، روی آن فراخوانی شود تا از نشت یک ارجاع جلوگیری شود." -#: ../../glossary.rst:1538 msgid "See also :term:`borrowed reference`." msgstr "همچنین :term:`ارجاع قرض‌گرفته‌شده ` را ببینید." -#: ../../glossary.rst:1539 msgid "subscript" msgstr "زیرنویس" -#: ../../glossary.rst:1541 -msgid "" -"The expression in square brackets of a :ref:`subscription expression `, for example, the ``3`` in ``items[3]``. Usually used to select an element " -"of a container. Also called a :term:`key` when subscripting a :term:`mapping`, or an :term:`index` when subscripting a :term:`sequence`." -msgstr "" -"عبارت درون کروشه‌های یک :ref:`subscription expression `، برای مثال ``3`` در ``items[3]``. معمولاً برای انتخاب یک المان از یک کانتینر استفاده می‌شود. " -"هنگام زیرنویس‌گذاری یک :term:`نگاشت `، به آن :term:`کلید ` نیز گفته می‌شود و هنگام زیرنویس‌گذاری یک :term:`دنباله `، به آن :term:`اندیس " -"` گفته می‌شود." +msgid "The expression in square brackets of a :ref:`subscription expression `, for example, the ``3`` in ``items[3]``. Usually used to select an element of a container. Also called a :term:`key` when subscripting a :term:`mapping`, or an :term:`index` when subscripting a :term:`sequence`." +msgstr "عبارت درون کروشه‌های یک :ref:`subscription expression `، برای مثال ``3`` در ``items[3]``. معمولاً برای انتخاب یک المان از یک کانتینر استفاده می‌شود. هنگام زیرنویس‌گذاری یک :term:`نگاشت `، به آن :term:`کلید ` نیز گفته می‌شود و هنگام زیرنویس‌گذاری یک :term:`دنباله `، به آن :term:`اندیس ` گفته می‌شود." -#: ../../glossary.rst:1547 msgid "synchronization primitive" msgstr "اولیه" -#: ../../glossary.rst:1549 -msgid "" -"A basic building block for coordinating (synchronizing) the execution of multiple threads to ensure :term:`thread-safe` access to shared resources. " -"Python's :mod:`threading` module provides several synchronization primitives " -"including :class:`~threading.Lock`, :class:`~threading.RLock`, :class:`~threading.Semaphore`, :class:`~threading.Condition`, :class:`~threading.Event`, " -"and :class:`~threading.Barrier`. Additionally, the :mod:`queue` module provides multi-producer, multi-consumer queues that are especially useful in multithreaded " -"programs. These primitives help prevent :term:`race conditions ` and coordinate thread execution. See also :term:`lock`." -msgstr "" -"یک سازهٔ پایه برای هماهنگ‌سازی اجرای چند نخ اجرایی، با هدف اطمینان از دسترسی :term:`ایمن برای نخ‌های اجرایی ` به منابع مشترک. ماژول :mod:`threading` " -"پایتون چندین اولیهٔ همگام‌سازی، از " -"جمله :class:`~threading.Lock`، :class:`~threading.RLock`، :class:`~threading.Semaphore`، :class:`~threading.Condition`، :class:`~threading.Event` " -"و :class:`~threading.Barrier` را فراهم می‌کند. افزون بر این، ماژول :mod:`queue` صف‌های چندتولیدکننده، چندمصرف‌کننده‌ای را فراهم می‌کند که به‌ویژه در برنامه‌های چندنخی " -"مفید هستند. این اولیه‌ها به جلوگیری از :term:`شرط رقابت ` و هماهنگ‌سازی اجرای نخ‌های اجرایی کمک می‌کنند. همچنین :term:`قفل ` را ببینید." +msgid "A basic building block for coordinating (synchronizing) the execution of multiple threads to ensure :term:`thread-safe` access to shared resources. Python's :mod:`threading` module provides several synchronization primitives including :class:`~threading.Lock`, :class:`~threading.RLock`, :class:`~threading.Semaphore`, :class:`~threading.Condition`, :class:`~threading.Event`, and :class:`~threading.Barrier`. Additionally, the :mod:`queue` module provides multi-producer, multi-consumer queues that are especially useful in multithreaded programs. These primitives help prevent :term:`race conditions ` and coordinate thread execution. See also :term:`lock`." +msgstr "یک سازهٔ پایه برای هماهنگ‌سازی اجرای چند نخ اجرایی، با هدف اطمینان از دسترسی :term:`ایمن برای نخ‌های اجرایی ` به منابع مشترک. ماژول :mod:`threading` پایتون چندین اولیهٔ همگام‌سازی، از جمله :class:`~threading.Lock`، :class:`~threading.RLock`، :class:`~threading.Semaphore`، :class:`~threading.Condition`، :class:`~threading.Event` و :class:`~threading.Barrier` را فراهم می‌کند. افزون بر این، ماژول :mod:`queue` صف‌های چندتولیدکننده، چندمصرف‌کننده‌ای را فراهم می‌کند که به‌ویژه در برنامه‌های چندنخی مفید هستند. این اولیه‌ها به جلوگیری از :term:`شرط رقابت ` و هماهنگ‌سازی اجرای نخ‌های اجرایی کمک می‌کنند. همچنین :term:`قفل ` را ببینید." -#: ../../glossary.rst:1559 msgid "t-string" msgstr "تی‌استرینگ" -#: ../../glossary.rst:1560 msgid "t-strings" msgstr "تی‌استرینگ‌ها" -#: ../../glossary.rst:1562 msgid "String literals prefixed with ``t`` or ``T`` are commonly called \"t-strings\" which is short for :ref:`template string literals `." msgstr "لیترال‌های رشته‌ای که با ``t`` یا ``T`` پیشوندگذاری شده‌اند، معمولاً «t-string» نامیده می‌شوند که شکل کوتاه‌شدهٔ :ref:`template string literals ` است." -#: ../../glossary.rst:1565 msgid "text encoding" msgstr "کدگذاری متن" -#: ../../glossary.rst:1567 -msgid "" -"A string in Python is a sequence of Unicode code points (in range ``U+0000``--``U+10FFFF``). To store or transfer a string, it needs to be serialized as a " -"sequence of bytes." -msgstr "" -"یک رشته در پایتون دنباله‌ای از نقاط کد یونیکد است (در محدودهٔ ``U+0000``--``U+10FFFF``). برای ذخیره یا انتقال یک رشته، لازم است آن را به‌صورت دنباله‌ای از بایت‌ها " -"سریال‌سازی کرد." +msgid "A string in Python is a sequence of Unicode code points (in range ``U+0000``--``U+10FFFF``). To store or transfer a string, it needs to be serialized as a sequence of bytes." +msgstr "یک رشته در پایتون دنباله‌ای از نقاط کد یونیکد است (در محدودهٔ ``U+0000``--``U+10FFFF``). برای ذخیره یا انتقال یک رشته، لازم است آن را به‌صورت دنباله‌ای از بایت‌ها سریال‌سازی کرد." -#: ../../glossary.rst:1571 msgid "Serializing a string into a sequence of bytes is known as \"encoding\", and recreating the string from the sequence of bytes is known as \"decoding\"." msgstr "سریال‌سازی یک رشته به‌صورت دنباله‌ای از بایت‌ها «کدگذاری» نامیده می‌شود و بازسازی رشته از دنبالهٔ بایت‌ها «کدگشایی» نام دارد." -#: ../../glossary.rst:1574 msgid "There are a variety of different text serialization :ref:`codecs `, which are collectively referred to as \"text encodings\"." msgstr "انواع مختلفی از :ref:`codecs ` برای سریال‌سازی متن وجود دارند که در مجموع «کدگذاری‌های متن» نامیده می‌شوند." -#: ../../glossary.rst:1577 msgid "text file" msgstr "فایل متنی" -#: ../../glossary.rst:1579 -msgid "" -"A :term:`file object` able to read and write :class:`str` objects. Often, a text file actually accesses a byte-oriented datastream and handles the :term:`text " -"encoding` automatically. Examples of text files are files opened in text mode (``'r'`` or ``'w'``), :data:`sys.stdin`, :data:`sys.stdout`, and instances " -"of :class:`io.StringIO`." -msgstr "" -"یک :term:`شیء فایل ` که می‌تواند اشیای :class:`str` را بخواند و بنویسد. یک فایل متنی اغلب در واقع به یک جریان دادهٔ بایت‌محور دسترسی دارد " -"و :term:`کدگذاری متن ` را به‌طور خودکار مدیریت می‌کند. نمونه‌هایی از فایل‌های متنی، فایل‌هایی هستند که در حالت متنی باز شده‌اند (``'r'`` یا " -"``'w'``)، :data:`sys.stdin`، :data:`sys.stdout` و نمونه‌های :class:`io.StringIO`." +msgid "A :term:`file object` able to read and write :class:`str` objects. Often, a text file actually accesses a byte-oriented datastream and handles the :term:`text encoding` automatically. Examples of text files are files opened in text mode (``'r'`` or ``'w'``), :data:`sys.stdin`, :data:`sys.stdout`, and instances of :class:`io.StringIO`." +msgstr "یک :term:`شیء فایل ` که می‌تواند اشیای :class:`str` را بخواند و بنویسد. یک فایل متنی اغلب در واقع به یک جریان دادهٔ بایت‌محور دسترسی دارد و :term:`کدگذاری متن ` را به‌طور خودکار مدیریت می‌کند. نمونه‌هایی از فایل‌های متنی، فایل‌هایی هستند که در حالت متنی باز شده‌اند (``'r'`` یا ``'w'``)، :data:`sys.stdin`، :data:`sys.stdout` و نمونه‌های :class:`io.StringIO`." -#: ../../glossary.rst:1586 msgid "See also :term:`binary file` for a file object able to read and write :term:`bytes-like objects `." msgstr "همچنین برای یک شیء فایل که می‌تواند :term:`شیء شبه‌بایت ` را بخواند و بنویسد، :term:`فایل دودویی ` را ببینید." -#: ../../glossary.rst:1588 msgid "thread state" msgstr "وضعیت نخ اجرایی" -#: ../../glossary.rst:1591 -msgid "" -"The information used by the :term:`CPython` runtime to run in an OS thread. For example, this includes the current exception, if any, and the state of the " -"bytecode interpreter." -msgstr "" -"اطلاعاتی که :term:`CPython ` ران‌تایم برای اجرا در یک نخ اجرایی سیستم‌عامل استفاده می‌کند. برای مثال، این اطلاعات شامل استثنای فعلی، در صورت وجود، و وضعیت " -"مفسر بایت‌کد است." +msgid "The information used by the :term:`CPython` runtime to run in an OS thread. For example, this includes the current exception, if any, and the state of the bytecode interpreter." +msgstr "اطلاعاتی که :term:`CPython ` ران‌تایم برای اجرا در یک نخ اجرایی سیستم‌عامل استفاده می‌کند. برای مثال، این اطلاعات شامل استثنای فعلی، در صورت وجود، و وضعیت مفسر بایت‌کد است." -#: ../../glossary.rst:1595 -msgid "" -"Each thread state is bound to a single OS thread, but threads may have many thread states available. At most, one of them may be :term:`attached ` at once." -msgstr "" -"هر وضعیت نخ اجرایی به یک نخ اجرایی سیستم‌عامل واحد وابسته است، اما نخ‌های اجرایی ممکن است وضعیت‌های نخ اجرایی متعددی در دسترس داشته باشند. در هر لحظه حداکثر یکی از " -"آن‌ها می‌تواند :term:`وضعیت نخ متصل ` باشد." +msgid "Each thread state is bound to a single OS thread, but threads may have many thread states available. At most, one of them may be :term:`attached ` at once." +msgstr "هر وضعیت نخ اجرایی به یک نخ اجرایی سیستم‌عامل واحد وابسته است، اما نخ‌های اجرایی ممکن است وضعیت‌های نخ اجرایی متعددی در دسترس داشته باشند. در هر لحظه حداکثر یکی از آن‌ها می‌تواند :term:`وضعیت نخ متصل ` باشد." -#: ../../glossary.rst:1599 -msgid "" -"An :term:`attached thread state` is required to call most of Python's C API, unless a function explicitly documents otherwise. The bytecode interpreter only runs " -"under an attached thread state." -msgstr "" -"برای فراخوانی بیشتر API زبان C پایتون، یک :term:`وضعیت نخ متصل ` لازم است، مگر اینکه تابعی صراحتاً خلاف آن را مستند کرده باشد. مفسر بایت‌کد " -"فقط در یک وضعیت نخ اجرایی پیوست‌شده اجرا می‌شود." +msgid "An :term:`attached thread state` is required to call most of Python's C API, unless a function explicitly documents otherwise. The bytecode interpreter only runs under an attached thread state." +msgstr "برای فراخوانی بیشتر API زبان C پایتون، یک :term:`وضعیت نخ متصل ` لازم است، مگر اینکه تابعی صراحتاً خلاف آن را مستند کرده باشد. مفسر بایت‌کد فقط در یک وضعیت نخ اجرایی پیوست‌شده اجرا می‌شود." -#: ../../glossary.rst:1603 -msgid "" -"Each thread state belongs to a single interpreter, but each interpreter may have many thread states, including multiple for the same OS thread. Thread states from " -"multiple interpreters may be bound to the same thread, but only one can be :term:`attached ` in that thread at any given moment." -msgstr "" -"هر وضعیت نخ اجرایی به یک مفسر واحد تعلق دارد، اما هر مفسر ممکن است وضعیت‌های نخ اجرایی متعددی داشته باشد، از جمله چند وضعیت برای یک نخ اجرایی سیستم‌عامل یکسان. " -"وضعیت‌های نخ اجرایی از مفسرهای متعدد ممکن است به یک نخ اجرایی یکسان وابسته باشند، اما در هر لحظه فقط یکی از آن‌ها می‌تواند در آن نخ اجرایی :term:`وضعیت نخ متصل " -"` باشد." +msgid "Each thread state belongs to a single interpreter, but each interpreter may have many thread states, including multiple for the same OS thread. Thread states from multiple interpreters may be bound to the same thread, but only one can be :term:`attached ` in that thread at any given moment." +msgstr "هر وضعیت نخ اجرایی به یک مفسر واحد تعلق دارد، اما هر مفسر ممکن است وضعیت‌های نخ اجرایی متعددی داشته باشد، از جمله چند وضعیت برای یک نخ اجرایی سیستم‌عامل یکسان. وضعیت‌های نخ اجرایی از مفسرهای متعدد ممکن است به یک نخ اجرایی یکسان وابسته باشند، اما در هر لحظه فقط یکی از آن‌ها می‌تواند در آن نخ اجرایی :term:`وضعیت نخ متصل ` باشد." -#: ../../glossary.rst:1609 msgid "See :ref:`Thread State and the Global Interpreter Lock ` for more information." msgstr "برای اطلاعات بیشتر، :ref:`Thread State and the Global Interpreter Lock ` را ببینید." -#: ../../glossary.rst:1611 msgid "thread-safe" msgstr "ایمن برای نخ‌های اجرایی" -#: ../../glossary.rst:1613 -msgid "" -"A module, function, or class that behaves correctly when used by multiple threads concurrently. Thread-safe code uses appropriate :term:`synchronization " -"primitives ` like :term:`locks ` to protect shared mutable state, or is designed to avoid shared mutable state entirely. In " -"the :term:`free-threaded ` build, built-in types like :class:`dict`, :class:`list`, and :class:`set` use internal locking to make many operations " -"thread-safe, although thread safety is not necessarily guaranteed. Code that is not thread-safe may experience :term:`race conditions ` " -"and :term:`data races ` when used in multi-threaded programs." -msgstr "" -"یک ماژول، تابع یا کلاس که هنگام استفادهٔ هم‌زمان توسط چند نخ اجرایی، به‌درستی رفتار می‌کند. کد ایمن برای نخ‌های اجرایی از :term:`اولیه ` " -"مناسب، مانند :term:`قفل `، برای محافظت از وضعیت تغییرپذیر مشترک استفاده می‌کند یا به‌گونه‌ای طراحی شده است که به‌طور کامل از وضعیت تغییرپذیر مشترک اجتناب کند. " -"در ساخت :term:`نخ‌گذاری آزاد `، نوع‌های توکار مانند :class:`dict`، :class:`list` و :class:`set` از قفل‌گذاری داخلی برای ایمن‌کردن بسیاری از عملیات در " -"برابر اجرای هم‌زمان نخ‌های اجرایی استفاده می‌کنند، هرچند ایمنی در برابر نخ‌های اجرایی لزوماً تضمین‌شده نیست. کدی که برای نخ‌های اجرایی ایمن نیست، هنگام استفاده در " -"برنامه‌های چندنخی ممکن است دچار :term:`شرط رقابت ` و :term:`رقابت داده ` شود." +msgid "A module, function, or class that behaves correctly when used by multiple threads concurrently. Thread-safe code uses appropriate :term:`synchronization primitives ` like :term:`locks ` to protect shared mutable state, or is designed to avoid shared mutable state entirely. In the :term:`free-threaded ` build, built-in types like :class:`dict`, :class:`list`, and :class:`set` use internal locking to make many operations thread-safe, although thread safety is not necessarily guaranteed. Code that is not thread-safe may experience :term:`race conditions ` and :term:`data races ` when used in multi-threaded programs." +msgstr "یک ماژول، تابع یا کلاس که هنگام استفادهٔ هم‌زمان توسط چند نخ اجرایی، به‌درستی رفتار می‌کند. کد ایمن برای نخ‌های اجرایی از :term:`اولیه ` مناسب، مانند :term:`قفل `، برای محافظت از وضعیت تغییرپذیر مشترک استفاده می‌کند یا به‌گونه‌ای طراحی شده است که به‌طور کامل از وضعیت تغییرپذیر مشترک اجتناب کند. در ساخت :term:`نخ‌گذاری آزاد `، نوع‌های توکار مانند :class:`dict`، :class:`list` و :class:`set` از قفل‌گذاری داخلی برای ایمن‌کردن بسیاری از عملیات در برابر اجرای هم‌زمان نخ‌های اجرایی استفاده می‌کنند، هرچند ایمنی در برابر نخ‌های اجرایی لزوماً تضمین‌شده نیست. کدی که برای نخ‌های اجرایی ایمن نیست، هنگام استفاده در برنامه‌های چندنخی ممکن است دچار :term:`شرط رقابت ` و :term:`رقابت داده ` شود." -#: ../../glossary.rst:1624 msgid "token" msgstr "توکن" -#: ../../glossary.rst:1627 -msgid "" -"A small unit of source code, generated by the :ref:`lexical analyzer ` (also called the *tokenizer*). Names, numbers, strings, operators, newlines and " -"similar are represented by tokens." -msgstr "" -"واحد کوچکی از کد منبع که توسط :ref:`lexical analyzer ` (که *tokenizer* نیز نامیده می‌شود) تولید می‌شود. نام‌ها، اعداد، رشته‌ها، عملگرها، نویسه‌های خط جدید و " -"موارد مشابه به‌صورت توکن نمایش داده می‌شوند." +msgid "A small unit of source code, generated by the :ref:`lexical analyzer ` (also called the *tokenizer*). Names, numbers, strings, operators, newlines and similar are represented by tokens." +msgstr "واحد کوچکی از کد منبع که توسط :ref:`lexical analyzer ` (که *tokenizer* نیز نامیده می‌شود) تولید می‌شود. نام‌ها، اعداد، رشته‌ها، عملگرها، نویسه‌های خط جدید و موارد مشابه به‌صورت توکن نمایش داده می‌شوند." -#: ../../glossary.rst:1632 msgid "The :mod:`tokenize` module exposes Python's lexical analyzer. The :mod:`token` module contains information on the various types of tokens." msgstr "ماژول :mod:`tokenize` تحلیل‌گر واژگانی پایتون را در دسترس قرار می‌دهد. ماژول :mod:`token` حاوی اطلاعاتی دربارهٔ انواع مختلف توکن‌ها است." -#: ../../glossary.rst:1635 msgid "triple-quoted string" msgstr "رشتهٔ سه‌نقل‌قولی" -#: ../../glossary.rst:1637 -msgid "" -"A string which is bound by three instances of either a quotation mark (\") or an apostrophe ('). While they don't provide any functionality not available with " -"single-quoted strings, they are useful for a number of reasons. They allow you to include unescaped single and double quotes within a string and they can span " -"multiple lines without the use of the continuation character, making them especially useful when writing docstrings." -msgstr "" -"رشته‌ای که با سه نمونه از یکی از علامت‌های نقل‌قول (\") یا آپاستروف (') محصور شده است. با اینکه این رشته‌ها قابلیت جدیدی فراتر از رشته‌های تک‌نقل‌قولی فراهم نمی‌کنند، به " -"دلایل متعددی مفید هستند. آن‌ها به شما اجازه می‌دهند علامت‌های نقل‌قول تکی و دوتایی را بدون خنثی‌سازی درون یک رشته قرار دهید و می‌توانند بدون استفاده از نویسهٔ ادامهٔ خط، " -"چندین خط را دربر بگیرند؛ بنابراین هنگام نوشتن docstringها به‌ویژه مفید هستند." +msgid "A string which is bound by three instances of either a quotation mark (\") or an apostrophe ('). While they don't provide any functionality not available with single-quoted strings, they are useful for a number of reasons. They allow you to include unescaped single and double quotes within a string and they can span multiple lines without the use of the continuation character, making them especially useful when writing docstrings." +msgstr "رشته‌ای که با سه نمونه از یکی از علامت‌های نقل‌قول (\") یا آپاستروف (') محصور شده است. با اینکه این رشته‌ها قابلیت جدیدی فراتر از رشته‌های تک‌نقل‌قولی فراهم نمی‌کنند، به دلایل متعددی مفید هستند. آن‌ها به شما اجازه می‌دهند علامت‌های نقل‌قول تکی و دوتایی را بدون خنثی‌سازی درون یک رشته قرار دهید و می‌توانند بدون استفاده از نویسهٔ ادامهٔ خط، چندین خط را دربر بگیرند؛ بنابراین هنگام نوشتن docstringها به‌ویژه مفید هستند." -#: ../../glossary.rst:1644 msgid "type" msgstr "نوع" -#: ../../glossary.rst:1646 -msgid "" -"The type of a Python object determines what kind of object it is; every object has a type. An object's type is accessible as its :attr:`~object.__class__` " -"attribute or can be retrieved with ``type(obj)``." -msgstr "" -"نوع یک شیء پایتون تعیین می‌کند که آن شیء از چه نوعی است؛ هر شیء یک نوع دارد. نوع یک شیء به‌عنوان ویژگی :attr:`~object.__class__` آن در دسترس است یا می‌توان آن را با " -"``type(obj)`` به‌دست آورد." +msgid "The type of a Python object determines what kind of object it is; every object has a type. An object's type is accessible as its :attr:`~object.__class__` attribute or can be retrieved with ``type(obj)``." +msgstr "نوع یک شیء پایتون تعیین می‌کند که آن شیء از چه نوعی است؛ هر شیء یک نوع دارد. نوع یک شیء به‌عنوان ویژگی :attr:`~object.__class__` آن در دسترس است یا می‌توان آن را با ``type(obj)`` به‌دست آورد." -#: ../../glossary.rst:1650 msgid "type alias" msgstr "نام مستعار نوع" -#: ../../glossary.rst:1652 msgid "A synonym for a type, created by assigning the type to an identifier." msgstr "مترادفی برای یک نوع که با نسبت‌دادن نوع به یک شناسه ایجاد می‌شود." -#: ../../glossary.rst:1654 msgid "Type aliases are useful for simplifying :term:`type hints `. For example::" msgstr "نام‌های مستعار نوع برای ساده‌سازی :term:`راهنمای نوع ` مفید هستند. برای مثال::" -#: ../../glossary.rst:1657 msgid "" "def remove_gray_shades(\n" " colors: list[tuple[int, int, int]]) -> list[tuple[int, int, int]]:\n" @@ -2910,11 +1532,9 @@ msgstr "" " colors: list[tuple[int, int, int]]) -> list[tuple[int, int, int]]:\n" " pass" -#: ../../glossary.rst:1661 msgid "could be made more readable like this::" msgstr "می‌توانست به این شکل خواناتر شود::" -#: ../../glossary.rst:1663 msgid "" "Color = tuple[int, int, int]\n" "\n" @@ -2926,55 +1546,36 @@ msgstr "" "def remove_gray_shades(colors: list[Color]) -> list[Color]:\n" " pass" -#: ../../glossary.rst:1668 ../../glossary.rst:1682 msgid "See :mod:`typing` and :pep:`484`, which describe this functionality." msgstr "برای توضیح این قابلیت، :mod:`typing` و :pep:`484` را ببینید." -#: ../../glossary.rst:1669 msgid "type hint" msgstr "راهنمای نوع" -#: ../../glossary.rst:1671 msgid "An :term:`annotation` that specifies the expected type for a variable, a class attribute, or a function parameter or return value." msgstr "یک :term:`حاشیه‌گذاری ` که نوع مورد انتظار برای یک متغیر، یک ویژگی کلاس، یا یک پارامتر یا مقدار بازگشتی تابع را مشخص می‌کند." -#: ../../glossary.rst:1674 -msgid "" -"Type hints are optional and are not enforced by Python but they are useful to :term:`static type checkers `. They can also aid IDEs with code " -"completion and refactoring." -msgstr "" -"راهنماهای نوع اختیاری هستند و پایتون آن‌ها را اعمال نمی‌کند، اما برای :term:`بررسی‌کنندهٔ نوع ایستا ` مفید هستند. آن‌ها همچنین می‌توانند به IDEها " -"در تکمیل کد و بازآرایی کد کمک کنند." +msgid "Type hints are optional and are not enforced by Python but they are useful to :term:`static type checkers `. They can also aid IDEs with code completion and refactoring." +msgstr "راهنماهای نوع اختیاری هستند و پایتون آن‌ها را اعمال نمی‌کند، اما برای :term:`بررسی‌کنندهٔ نوع ایستا ` مفید هستند. آن‌ها همچنین می‌توانند به IDEها در تکمیل کد و بازآرایی کد کمک کنند." -#: ../../glossary.rst:1678 msgid "Type hints of global variables, class attributes, and functions, but not local variables, can be accessed using :func:`typing.get_type_hints`." msgstr "راهنماهای نوع متغیرهای سراسری، ویژگی‌های کلاس و توابع، اما نه متغیرهای محلی، با استفاده از :func:`typing.get_type_hints` قابل دسترسی هستند." -#: ../../glossary.rst:1683 msgid "universal newlines" msgstr "خط جدید همگانی" -#: ../../glossary.rst:1685 -msgid "" -"A manner of interpreting text streams in which all of the following are recognized as ending a line: the Unix end-of-line convention ``'\\n'``, the Windows " -"convention ``'\\r\\n'``, and the old Macintosh convention ``'\\r'``. See :pep:`278` and :pep:`3116`, as well as :func:`bytes.splitlines` for an additional use." -msgstr "" -"روشی برای تفسیر جریان‌های متنی که در آن همهٔ موارد زیر به‌عنوان پایان یک خط شناخته می‌شوند: قرارداد پایان خط یونیکس ``'\\n'``، قرارداد ویندوز ``'\\r\\n'`` و قرارداد " -"قدیمی مکینتاش ``'\\r'``. همچنین :pep:`278` و :pep:`3116` و نیز :func:`bytes.splitlines` را برای کاربردی دیگر ببینید." +msgid "A manner of interpreting text streams in which all of the following are recognized as ending a line: the Unix end-of-line convention ``'\\n'``, the Windows convention ``'\\r\\n'``, and the old Macintosh convention ``'\\r'``. See :pep:`278` and :pep:`3116`, as well as :func:`bytes.splitlines` for an additional use." +msgstr "روشی برای تفسیر جریان‌های متنی که در آن همهٔ موارد زیر به‌عنوان پایان یک خط شناخته می‌شوند: قرارداد پایان خط یونیکس ``'\\n'``، قرارداد ویندوز ``'\\r\\n'`` و قرارداد قدیمی مکینتاش ``'\\r'``. همچنین :pep:`278` و :pep:`3116` و نیز :func:`bytes.splitlines` را برای کاربردی دیگر ببینید." -#: ../../glossary.rst:1690 msgid "variable annotation" msgstr "حاشیه‌نویسی متغیر" -#: ../../glossary.rst:1692 msgid "An :term:`annotation` of a variable or a class attribute." msgstr "یک :term:`حاشیه‌گذاری ` برای یک متغیر یا یک ویژگی کلاس." -#: ../../glossary.rst:1694 msgid "When annotating a variable or a class attribute, assignment is optional::" msgstr "هنگام حاشیه‌نویسی یک متغیر یا یک ویژگی کلاس، انتساب اختیاری است::" -#: ../../glossary.rst:1696 msgid "" "class C:\n" " field: 'annotation'" @@ -2982,107 +1583,65 @@ msgstr "" "class C:\n" " field: 'annotation'" -#: ../../glossary.rst:1699 msgid "Variable annotations are usually used for :term:`type hints `: for example this variable is expected to take :class:`int` values::" msgstr "حاشیه‌نویسی‌های متغیر معمولاً برای :term:`راهنمای نوع ` استفاده می‌شوند؛ برای مثال، انتظار می‌رود این متغیر مقادیر :class:`int` را بپذیرد::" -#: ../../glossary.rst:1703 msgid "count: int = 0" msgstr "count: int = 0" -#: ../../glossary.rst:1705 msgid "Variable annotation syntax is explained in section :ref:`annassign`." msgstr "سینتکس حاشیه‌نویسی متغیر در بخش :ref:`annassign` توضیح داده شده است." -#: ../../glossary.rst:1707 -msgid "" -"See :term:`function annotation`, :pep:`484` and :pep:`526`, which describe this functionality. Also see :ref:`annotations-howto` for best practices on working " -"with annotations." -msgstr "" -"همچنین :term:`حاشیه‌گذاری تابع `، :pep:`484` و :pep:`526` را که این قابلیت را توصیف می‌کنند، ببینید. برای بهترین روش‌های کار با حاشیه‌نویسی‌ها " -"نیز :ref:`annotations-howto` را ببینید." +msgid "See :term:`function annotation`, :pep:`484` and :pep:`526`, which describe this functionality. Also see :ref:`annotations-howto` for best practices on working with annotations." +msgstr "همچنین :term:`حاشیه‌گذاری تابع `، :pep:`484` و :pep:`526` را که این قابلیت را توصیف می‌کنند، ببینید. برای بهترین روش‌های کار با حاشیه‌نویسی‌ها نیز :ref:`annotations-howto` را ببینید." -#: ../../glossary.rst:1711 msgid "virtual environment" msgstr "محیط مجازی" -#: ../../glossary.rst:1713 -msgid "" -"A cooperatively isolated runtime environment that allows Python users and applications to install and upgrade Python distribution packages without interfering " -"with the behaviour of other Python applications running on the same system." -msgstr "" -"یک محیط ران‌تایم ایزوله‌شدهٔ مشارکتی که به کاربران و برنامه‌های پایتون اجازه می‌دهد بسته‌های توزیعی پایتون را بدون تداخل با رفتار سایر برنامه‌های پایتونی در حال اجرا روی " -"همان سیستم، نصب و ارتقا دهند." +msgid "A cooperatively isolated runtime environment that allows Python users and applications to install and upgrade Python distribution packages without interfering with the behaviour of other Python applications running on the same system." +msgstr "یک محیط ران‌تایم ایزوله‌شدهٔ مشارکتی که به کاربران و برنامه‌های پایتون اجازه می‌دهد بسته‌های توزیعی پایتون را بدون تداخل با رفتار سایر برنامه‌های پایتونی در حال اجرا روی همان سیستم، نصب و ارتقا دهند." -#: ../../glossary.rst:1718 msgid "See also :mod:`venv`." msgstr "همچنین :mod:`venv` را ببینید." -#: ../../glossary.rst:1719 msgid "virtual machine" msgstr "ماشین مجازی" -#: ../../glossary.rst:1721 msgid "A computer defined entirely in software. Python's virtual machine executes the :term:`bytecode` emitted by the bytecode compiler." msgstr "یک رایانه که به‌طور کامل در نرم‌افزار تعریف شده است. ماشین مجازی پایتون :term:`بایت‌کد ` تولیدشده توسط کامپایلر بایت‌کد را اجرا می‌کند." -#: ../../glossary.rst:1723 msgid "walrus operator" msgstr "عملگر والروس" -#: ../../glossary.rst:1725 -msgid "" -"A light-hearted way to refer to the :ref:`assignment expression ` operator ``:=`` because it looks a bit like a walrus if you turn your " -"head." -msgstr "" -"روشی شوخ‌طبعانه برای اشاره به عملگر :ref:`assignment expression ` یعنی ``:=``، زیرا اگر سرتان را کمی کج کنید، ظاهر آن تا حدی شبیه یک والروس " -"است." +msgid "A light-hearted way to refer to the :ref:`assignment expression ` operator ``:=`` because it looks a bit like a walrus if you turn your head." +msgstr "روشی شوخ‌طبعانه برای اشاره به عملگر :ref:`assignment expression ` یعنی ``:=``، زیرا اگر سرتان را کمی کج کنید، ظاهر آن تا حدی شبیه یک والروس است." -#: ../../glossary.rst:1728 msgid "Zen of Python" msgstr "ذن پایتون" -#: ../../glossary.rst:1730 -msgid "" -"Listing of Python design principles and philosophies that are helpful in understanding and using the language. The listing can be found by typing \"``import " -"this``\" at the interactive prompt." -msgstr "" -"فهرستی از اصول و فلسفه‌های طراحی پایتون که برای درک و استفاده از این زبان مفید هستند. این فهرست با واردکردن «``import this``» در اعلان تعاملی قابل مشاهده است." +msgid "Listing of Python design principles and philosophies that are helpful in understanding and using the language. The listing can be found by typing \"``import this``\" at the interactive prompt." +msgstr "فهرستی از اصول و فلسفه‌های طراحی پایتون که برای درک و استفاده از این زبان مفید هستند. این فهرست با واردکردن «``import this``» در اعلان تعاملی قابل مشاهده است." -#: ../../glossary.rst:24 msgid "..." msgstr "..." -#: ../../glossary.rst:24 msgid "ellipsis literal" msgstr "لیترال سه‌نقطه" -#: ../../glossary.rst:349 msgid "C-contiguous" msgstr "پیوسته در C" -#: ../../glossary.rst:349 msgid "Fortran contiguous" msgstr "پیوسته در Fortran" -#: ../../glossary.rst:1002 msgid "magic" msgstr "جادو" -#: ../../glossary.rst:1488 msgid "special" msgstr "ویژه" -#~ msgid "" -#~ "Usually refers to an asynchronous generator function, but may refer to an *asynchronous generator iterator* in some contexts. In cases where the intended " -#~ "meaning isn't clear, using the full terms avoids ambiguity." -#~ msgstr "" -#~ "معمولاً به یک تابع تولیدگر ناهمگام اشاره دارد، اما در برخی زمینه‌ها ممکن است به یک *تکرارگر تولیدگر ناهمگام* اشاره کند. در مواردی که معنای مورد نظر واضح نیست، " -#~ "استفاده از اصطلاحات کامل از ابهام جلوگیری می‌کند." - -#~ msgid "" -#~ "Usually refers to a generator function, but may refer to a *generator iterator* in some contexts. In cases where the intended meaning isn't clear, using the " -#~ "full terms avoids ambiguity." -#~ msgstr "" -#~ "معمولاً به یک تابع تولیدگر اشاره دارد، اما در برخی زمینه‌ها ممکن است به یک *تکرارگر تولیدگر* اشاره کند. در مواردی که معنای مورد نظر واضح نیست، استفاده از " -#~ "اصطلاحات کامل از ابهام جلوگیری می‌کند." +#~ msgid "Usually refers to an asynchronous generator function, but may refer to an *asynchronous generator iterator* in some contexts. In cases where the intended meaning isn't clear, using the full terms avoids ambiguity." +#~ msgstr "معمولاً به یک تابع تولیدگر ناهمگام اشاره دارد، اما در برخی زمینه‌ها ممکن است به یک *تکرارگر تولیدگر ناهمگام* اشاره کند. در مواردی که معنای مورد نظر واضح نیست، استفاده از اصطلاحات کامل از ابهام جلوگیری می‌کند." + +#~ msgid "Usually refers to a generator function, but may refer to a *generator iterator* in some contexts. In cases where the intended meaning isn't clear, using the full terms avoids ambiguity." +#~ msgstr "معمولاً به یک تابع تولیدگر اشاره دارد، اما در برخی زمینه‌ها ممکن است به یک *تکرارگر تولیدگر* اشاره کند. در مواردی که معنای مورد نظر واضح نیست، استفاده از اصطلاحات کامل از ابهام جلوگیری می‌کند." diff --git a/howto/a-conceptual-overview-of-asyncio.po b/howto/a-conceptual-overview-of-asyncio.po index a724d297..9f790843 100644 --- a/howto/a-conceptual-overview-of-asyncio.po +++ b/howto/a-conceptual-overview-of-asyncio.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2026-07-25 12:59+0330\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: none\n" @@ -19,108 +19,51 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:5 msgid "A Conceptual Overview of :mod:`!asyncio`" msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:7 -msgid "" -"This :ref:`HOWTO ` article seeks to help you build a sturdy mental " -"model of how :mod:`asyncio` fundamentally works, helping you understand the " -"how and why behind the recommended patterns." +msgid "This :ref:`HOWTO ` article seeks to help you build a sturdy mental model of how :mod:`asyncio` fundamentally works, helping you understand the how and why behind the recommended patterns." msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:11 -msgid "" -"You might be curious about some key :mod:`!asyncio` concepts. By the end of " -"this article, you'll be able to comfortably answer these questions:" +msgid "You might be curious about some key :mod:`!asyncio` concepts. By the end of this article, you'll be able to comfortably answer these questions:" msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:14 msgid "What's happening behind the scenes when an object is awaited?" msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:15 -msgid "" -"How does :mod:`!asyncio` differentiate between a task which doesn't need CPU " -"time (such as a network request or file read) as opposed to a task that does " -"(such as computing n-factorial)?" +msgid "How does :mod:`!asyncio` differentiate between a task which doesn't need CPU time (such as a network request or file read) as opposed to a task that does (such as computing n-factorial)?" msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:18 -msgid "" -"How to write an asynchronous variant of an operation, such as an async sleep " -"or database request." +msgid "How to write an asynchronous variant of an operation, such as an async sleep or database request." msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:23 -msgid "" -"The `guide `_ that inspired this HOWTO article, by Alexander Nordin." +msgid "The `guide `_ that inspired this HOWTO article, by Alexander Nordin." msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:25 -msgid "" -"This in-depth `YouTube tutorial series `_ on ``asyncio`` " -"created by Python core team member, Łukasz Langa." +msgid "This in-depth `YouTube tutorial series `_ on ``asyncio`` created by Python core team member, Łukasz Langa." msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:28 -msgid "" -"`500 Lines or Less: A Web Crawler With asyncio Coroutines `_ by A. " -"Jesse Jiryu Davis and Guido van Rossum." +msgid "`500 Lines or Less: A Web Crawler With asyncio Coroutines `_ by A. Jesse Jiryu Davis and Guido van Rossum." msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:34 msgid "A conceptual overview part 1: the high-level" msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:36 -msgid "" -"In part 1, we'll cover the main, high-level building blocks of :mod:`!" -"asyncio`: the event loop, coroutine functions, coroutine objects, tasks, and " -"``await``." +msgid "In part 1, we'll cover the main, high-level building blocks of :mod:`!asyncio`: the event loop, coroutine functions, coroutine objects, tasks, and ``await``." msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:41 msgid "Event Loop" msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:43 -msgid "" -"Everything in :mod:`!asyncio` happens relative to the event loop. It's the " -"star of the show. It's like an orchestra conductor. It's behind the scenes " -"managing resources. Some power is explicitly granted to it, but a lot of its " -"ability to get things done comes from the respect and cooperation of its " -"worker bees." +msgid "Everything in :mod:`!asyncio` happens relative to the event loop. It's the star of the show. It's like an orchestra conductor. It's behind the scenes managing resources. Some power is explicitly granted to it, but a lot of its ability to get things done comes from the respect and cooperation of its worker bees." msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:50 -msgid "" -"In more technical terms, the event loop contains a collection of jobs to be " -"run. Some jobs are added directly by you, and some indirectly by :mod:`!" -"asyncio`. The event loop takes a job from its backlog of work and invokes it " -"(or \"gives it control\"), similar to calling a function, and then that job " -"runs. Once it pauses or completes, it returns control to the event loop. The " -"event loop will then select another job from its pool and invoke it. You can " -"*roughly* think of the collection of jobs as a queue: jobs are added and " -"then processed one at a time, generally (but not always) in order. This " -"process repeats indefinitely, with the event loop cycling endlessly onwards. " -"If there are no more jobs pending execution, the event loop is smart enough " -"to rest and avoid needlessly wasting CPU cycles, and will come back when " -"there's more work to be done." -msgstr "" - -#: ../../howto/a-conceptual-overview-of-asyncio.rst:64 -msgid "" -"Effective execution relies on jobs sharing well and cooperating; a greedy " -"job could hog control and leave the other jobs to starve, rendering the " -"overall event loop approach rather useless." +msgid "In more technical terms, the event loop contains a collection of jobs to be run. Some jobs are added directly by you, and some indirectly by :mod:`!asyncio`. The event loop takes a job from its backlog of work and invokes it (or \"gives it control\"), similar to calling a function, and then that job runs. Once it pauses or completes, it returns control to the event loop. The event loop will then select another job from its pool and invoke it. You can *roughly* think of the collection of jobs as a queue: jobs are added and then processed one at a time, generally (but not always) in order. This process repeats indefinitely, with the event loop cycling endlessly onwards. If there are no more jobs pending execution, the event loop is smart enough to rest and avoid needlessly wasting CPU cycles, and will come back when there's more work to be done." +msgstr "" + +msgid "Effective execution relies on jobs sharing well and cooperating; a greedy job could hog control and leave the other jobs to starve, rendering the overall event loop approach rather useless." msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:70 msgid "" "import asyncio\n" "\n" @@ -130,15 +73,12 @@ msgid "" "event_loop.run_forever()" msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:79 msgid "Asynchronous functions and coroutines" msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:81 msgid "This is a basic, boring Python function::" msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:83 msgid "" "def hello_printer():\n" " print(\n" @@ -148,74 +88,43 @@ msgid "" " )" msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:90 msgid "Calling a regular function invokes its logic or body::" msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:92 msgid "" ">>> hello_printer()\n" "Hi, I am a lowly, simple printer, though I have all I need in life --\n" "fresh paper and my dearly beloved octopus partner in crime." msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:96 -msgid "" -"The :ref:`async def `, as opposed to just a plain ``def``, makes " -"this an asynchronous function (or \"coroutine function\"). Calling it " -"creates and returns a :ref:`coroutine ` object." +msgid "The :ref:`async def `, as opposed to just a plain ``def``, makes this an asynchronous function (or \"coroutine function\"). Calling it creates and returns a :ref:`coroutine ` object." msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:102 msgid "" "async def loudmouth_penguin(magic_number: int):\n" " print(\n" -" \"I am a super special talking penguin. Far cooler than that printer. " -"\"\n" +" \"I am a super special talking penguin. Far cooler than that printer. \"\n" " f\"By the way, my lucky number is: {magic_number}.\"\n" " )" msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:108 -msgid "" -"Calling the async function, ``loudmouth_penguin``, does not execute the " -"print statement; instead, it creates a coroutine object::" +msgid "Calling the async function, ``loudmouth_penguin``, does not execute the print statement; instead, it creates a coroutine object::" msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:111 msgid "" ">>> loudmouth_penguin(magic_number=3)\n" "" msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:114 -msgid "" -"The terms \"coroutine function\" and \"coroutine object\" are often " -"conflated as coroutine. That can be confusing! In this article, coroutine " -"specifically refers to a coroutine object, or more precisely, an instance " -"of :class:`types.CoroutineType` (native coroutine). Note that coroutines can " -"also exist as instances of :class:`collections.abc.Coroutine` -- a " -"distinction that matters for type checking." +msgid "The terms \"coroutine function\" and \"coroutine object\" are often conflated as coroutine. That can be confusing! In this article, coroutine specifically refers to a coroutine object, or more precisely, an instance of :class:`types.CoroutineType` (native coroutine). Note that coroutines can also exist as instances of :class:`collections.abc.Coroutine` -- a distinction that matters for type checking." msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:123 -msgid "" -"A coroutine represents the function's body or logic. A coroutine has to be " -"explicitly started; again, merely creating the coroutine does not start it. " -"Notably, the coroutine can be paused and resumed at various points within " -"the function's body. That pausing and resuming ability is what allows for " -"asynchronous behavior!" +msgid "A coroutine represents the function's body or logic. A coroutine has to be explicitly started; again, merely creating the coroutine does not start it. Notably, the coroutine can be paused and resumed at various points within the function's body. That pausing and resuming ability is what allows for asynchronous behavior!" msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:130 -msgid "" -"Coroutines and coroutine functions were built by leveraging the " -"functionality of :term:`generators ` " -"and :term:`generator functions `. Recall, a generator function is " -"a function that :keyword:`yield`\\s, like this one::" +msgid "Coroutines and coroutine functions were built by leveraging the functionality of :term:`generators ` and :term:`generator functions `. Recall, a generator function is a function that :keyword:`yield`\\s, like this one::" msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:136 msgid "" "def get_random_number():\n" " # This would be a bad random number generator!\n" @@ -228,26 +137,17 @@ msgid "" " ..." msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:146 -msgid "" -"Similar to a coroutine function, calling a generator function does not run " -"it. Instead, it creates a generator object::" +msgid "Similar to a coroutine function, calling a generator function does not run it. Instead, it creates a generator object::" msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:149 msgid "" ">>> get_random_number()\n" "" msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:152 -msgid "" -"You can proceed to the next ``yield`` of a generator by using the built-in " -"function :func:`next`. In other words, the generator runs, then pauses. For " -"example::" +msgid "You can proceed to the next ``yield`` of a generator by using the built-in function :func:`next`. In other words, the generator runs, then pauses. For example::" msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:157 msgid "" ">>> generator = get_random_number()\n" ">>> next(generator)\n" @@ -258,53 +158,27 @@ msgid "" "7" msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:167 msgid "Tasks" msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:169 -msgid "" -"Roughly speaking, :ref:`tasks ` are coroutines (not " -"coroutine functions) tied to an event loop. A task also maintains a list of " -"callback functions whose importance will become clear in a moment when we " -"discuss :keyword:`await`. The recommended way to create tasks is " -"via :func:`asyncio.create_task`." +msgid "Roughly speaking, :ref:`tasks ` are coroutines (not coroutine functions) tied to an event loop. A task also maintains a list of callback functions whose importance will become clear in a moment when we discuss :keyword:`await`. The recommended way to create tasks is via :func:`asyncio.create_task`." msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:175 -msgid "" -"Creating a task automatically schedules it for execution (by adding a " -"callback to run it in the event loop's to-do list, that is, collection of " -"jobs)." +msgid "Creating a task automatically schedules it for execution (by adding a callback to run it in the event loop's to-do list, that is, collection of jobs)." msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:178 -msgid "" -":mod:`!asyncio` automatically associates tasks with the event loop for you. " -"This automatic association was purposely designed into :mod:`!asyncio` for " -"the sake of simplicity. Without it, you'd have to keep track of the event " -"loop object and pass it to any coroutine function that wants to create " -"tasks, adding redundant clutter to your code." +msgid ":mod:`!asyncio` automatically associates tasks with the event loop for you. This automatic association was purposely designed into :mod:`!asyncio` for the sake of simplicity. Without it, you'd have to keep track of the event loop object and pass it to any coroutine function that wants to create tasks, adding redundant clutter to your code." msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:187 msgid "" "coroutine = loudmouth_penguin(magic_number=5)\n" -"# This creates a Task object and schedules its execution via the event " -"loop.\n" +"# This creates a Task object and schedules its execution via the event loop.\n" "task = asyncio.create_task(coroutine)" msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:191 -msgid "" -"Earlier, we manually created the event loop and set it to run forever. In " -"practice, it's recommended to use (and common to see) :func:`asyncio.run`, " -"which takes care of managing the event loop and ensuring the provided " -"coroutine finishes before advancing. For example, many async programs follow " -"this setup::" +msgid "Earlier, we manually created the event loop and set it to run forever. In practice, it's recommended to use (and common to see) :func:`asyncio.run`, which takes care of managing the event loop and ensuring the provided coroutine finishes before advancing. For example, many async programs follow this setup::" msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:197 msgid "" "import asyncio\n" "\n" @@ -319,15 +193,9 @@ msgid "" " print(\"coroutine main() is done!\")" msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:209 -msgid "" -"It's important to be aware that the task itself is not added to the event " -"loop, only a callback to the task is. This matters if the task object you " -"created is garbage collected before it's called by the event loop. For " -"example, consider this program:" +msgid "It's important to be aware that the task itself is not added to the event loop, only a callback to the task is. This matters if the task object you created is garbage collected before it's called by the event loop. For example, consider this program:" msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:215 msgid "" "async def hello():\n" " print(\"hello!\")\n" @@ -341,50 +209,26 @@ msgid "" "asyncio.run(main())" msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:229 -msgid "" -"Because there's no reference to the task object created on line 5, it " -"*might* be garbage collected before the event loop invokes it. Later " -"instructions in the coroutine ``main()`` hand control back to the event loop " -"so it can invoke other jobs. When the event loop eventually tries to run the " -"task, it might fail and discover the task object does not exist! This can " -"also happen even if a coroutine keeps a reference to a task but completes " -"before that task finishes. When the coroutine exits, local variables go out " -"of scope and may be subject to garbage collection. In practice, ``asyncio`` " -"and Python's garbage collector work pretty hard to ensure this sort of thing " -"doesn't happen. But that's no reason to be reckless!" -msgstr "" - -#: ../../howto/a-conceptual-overview-of-asyncio.rst:245 +msgid "Because there's no reference to the task object created on line 5, it *might* be garbage collected before the event loop invokes it. Later instructions in the coroutine ``main()`` hand control back to the event loop so it can invoke other jobs. When the event loop eventually tries to run the task, it might fail and discover the task object does not exist! This can also happen even if a coroutine keeps a reference to a task but completes before that task finishes. When the coroutine exits, local variables go out of scope and may be subject to garbage collection. In practice, ``asyncio`` and Python's garbage collector work pretty hard to ensure this sort of thing doesn't happen. But that's no reason to be reckless!" +msgstr "" + msgid "await" msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:247 -msgid "" -":keyword:`await` is a Python keyword that's commonly used in one of two " -"different ways::" +msgid ":keyword:`await` is a Python keyword that's commonly used in one of two different ways::" msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:250 msgid "" "await task\n" "await coroutine" msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:253 -msgid "" -"In a crucial way, the behavior of ``await`` depends on the type of object " -"being awaited." +msgid "In a crucial way, the behavior of ``await`` depends on the type of object being awaited." msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:256 -msgid "" -"Awaiting a task will cede control from the current task or coroutine to the " -"event loop. In the process of relinquishing control, a few important things " -"happen. We'll use the following code example to illustrate::" +msgid "Awaiting a task will cede control from the current task or coroutine to the event loop. In the process of relinquishing control, a few important things happen. We'll use the following code example to illustrate::" msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:261 msgid "" "async def plant_a_tree():\n" " dig_the_hole_task = asyncio.create_task(dig_the_hole())\n" @@ -394,42 +238,18 @@ msgid "" " ..." msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:268 -msgid "" -"In this example, imagine the event loop has passed control to the start of " -"the coroutine ``plant_a_tree()``. As seen above, the coroutine creates a " -"task and then awaits it. The ``await dig_the_hole_task`` instruction adds a " -"callback (which will resume ``plant_a_tree()``) to the ``dig_the_hole_task`` " -"object's list of callbacks. And then, the instruction cedes control to the " -"event loop. Some time later, the event loop will pass control to " -"``dig_the_hole_task`` and the task will finish whatever it needs to do. Once " -"the task finishes, it will add its various callbacks to the event loop, in " -"this case, a call to resume ``plant_a_tree()``." -msgstr "" - -#: ../../howto/a-conceptual-overview-of-asyncio.rst:279 -msgid "" -"Generally speaking, when the awaited task finishes (``dig_the_hole_task``), " -"the original task or coroutine (``plant_a_tree()``) is added back to the " -"event loop's to-do list to be resumed." +msgid "In this example, imagine the event loop has passed control to the start of the coroutine ``plant_a_tree()``. As seen above, the coroutine creates a task and then awaits it. The ``await dig_the_hole_task`` instruction adds a callback (which will resume ``plant_a_tree()``) to the ``dig_the_hole_task`` object's list of callbacks. And then, the instruction cedes control to the event loop. Some time later, the event loop will pass control to ``dig_the_hole_task`` and the task will finish whatever it needs to do. Once the task finishes, it will add its various callbacks to the event loop, in this case, a call to resume ``plant_a_tree()``." msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:283 -msgid "" -"This is a basic, yet reliable mental model. In practice, the control " -"handoffs are slightly more complex, but not by much. In part 2, we'll walk " -"through the details that make this possible." +msgid "Generally speaking, when the awaited task finishes (``dig_the_hole_task``), the original task or coroutine (``plant_a_tree()``) is added back to the event loop's to-do list to be resumed." msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:287 -msgid "" -"**Unlike tasks, awaiting a coroutine does not hand control back to the event " -"loop!** Wrapping a coroutine in a task first, then awaiting that would cede " -"control. The behavior of ``await coroutine`` is effectively the same as " -"invoking a regular, synchronous Python function. Consider this program::" +msgid "This is a basic, yet reliable mental model. In practice, the control handoffs are slightly more complex, but not by much. In part 2, we'll walk through the details that make this possible." +msgstr "" + +msgid "**Unlike tasks, awaiting a coroutine does not hand control back to the event loop!** Wrapping a coroutine in a task first, then awaiting that would cede control. The behavior of ``await coroutine`` is effectively the same as invoking a regular, synchronous Python function. Consider this program::" msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:295 msgid "" "import asyncio\n" "\n" @@ -449,16 +269,9 @@ msgid "" "asyncio.run(main())" msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:312 -msgid "" -"The first statement in the coroutine ``main()`` creates ``task_b`` and " -"schedules it for execution via the event loop. Then, ``coro_a()`` is " -"repeatedly awaited. Control never cedes to the event loop, which is why we " -"see the output of all three ``coro_a()`` invocations before ``coro_b()``'s " -"output:" +msgid "The first statement in the coroutine ``main()`` creates ``task_b`` and schedules it for execution via the event loop. Then, ``coro_a()`` is repeatedly awaited. Control never cedes to the event loop, which is why we see the output of all three ``coro_a()`` invocations before ``coro_b()``'s output:" msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:318 msgid "" "I am coro_a(). Hi!\n" "I am coro_a(). Hi!\n" @@ -466,16 +279,9 @@ msgid "" "I am coro_b(). I sure hope no one hogs the event loop..." msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:325 -msgid "" -"If we change ``await coro_a()`` to ``await asyncio.create_task(coro_a())``, " -"the behavior changes. The coroutine ``main()`` cedes control to the event " -"loop with that statement. The event loop then proceeds through its backlog " -"of work, calling ``task_b`` and then the task which wraps ``coro_a()`` " -"before resuming the coroutine ``main()``." +msgid "If we change ``await coro_a()`` to ``await asyncio.create_task(coro_a())``, the behavior changes. The coroutine ``main()`` cedes control to the event loop with that statement. The event loop then proceeds through its backlog of work, calling ``task_b`` and then the task which wraps ``coro_a()`` before resuming the coroutine ``main()``." msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:332 msgid "" "I am coro_b(). I sure hope no one hogs the event loop...\n" "I am coro_a(). Hi!\n" @@ -483,56 +289,27 @@ msgid "" "I am coro_a(). Hi!" msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:339 -msgid "" -"This behavior of ``await coroutine`` can trip a lot of people up! That " -"example highlights how using only ``await coroutine`` could unintentionally " -"hog control from other tasks and effectively stall the event " -"loop. :func:`asyncio.run` can help you detect such occurrences via the " -"``debug=True`` flag, which enables :ref:`debug mode `. " -"Among other things, it will log any coroutines that monopolize execution for " -"100ms or longer." +msgid "This behavior of ``await coroutine`` can trip a lot of people up! That example highlights how using only ``await coroutine`` could unintentionally hog control from other tasks and effectively stall the event loop. :func:`asyncio.run` can help you detect such occurrences via the ``debug=True`` flag, which enables :ref:`debug mode `. Among other things, it will log any coroutines that monopolize execution for 100ms or longer." msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:349 -msgid "" -"The design intentionally trades off some conceptual clarity around usage of " -"``await`` for improved performance. Each time a task is awaited, control " -"needs to be passed all the way up the call stack to the event loop. That " -"might sound minor, but in a large program with many ``await`` statements and " -"a deep call stack, that overhead can add up to a meaningful performance drag." +msgid "The design intentionally trades off some conceptual clarity around usage of ``await`` for improved performance. Each time a task is awaited, control needs to be passed all the way up the call stack to the event loop. That might sound minor, but in a large program with many ``await`` statements and a deep call stack, that overhead can add up to a meaningful performance drag." msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:358 msgid "A conceptual overview part 2: the nuts and bolts" msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:360 -msgid "" -"Part 2 goes into detail on the mechanisms :mod:`!asyncio` uses to manage " -"control flow. This is where the magic happens. You'll come away from this " -"section knowing what ``await`` does behind the scenes and how to make your " -"own asynchronous operators." +msgid "Part 2 goes into detail on the mechanisms :mod:`!asyncio` uses to manage control flow. This is where the magic happens. You'll come away from this section knowing what ``await`` does behind the scenes and how to make your own asynchronous operators." msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:368 msgid "The inner workings of coroutines" msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:370 msgid ":mod:`!asyncio` leverages four components to pass around control." msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:372 -msgid "" -":meth:`coroutine.send(arg) ` is the method used to start or " -"resume a coroutine. If the coroutine was paused and is now being resumed, " -"the argument ``arg`` will be sent in as the return value of the ``yield`` " -"statement which originally paused it. If the coroutine is being used for the " -"first time (as opposed to being resumed), ``arg`` must be ``None``." +msgid ":meth:`coroutine.send(arg) ` is the method used to start or resume a coroutine. If the coroutine was paused and is now being resumed, the argument ``arg`` will be sent in as the return value of the ``yield`` statement which originally paused it. If the coroutine is being used for the first time (as opposed to being resumed), ``arg`` must be ``None``." msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:380 msgid "" "class Rock:\n" " def __await__(self):\n" @@ -550,8 +327,7 @@ msgid "" "\n" "coroutine = main()\n" "intermediate_result = coroutine.send(None)\n" -"print(f\"Coroutine paused and returned intermediate value: " -"{intermediate_result}.\")\n" +"print(f\"Coroutine paused and returned intermediate value: {intermediate_result}.\")\n" "\n" "print(f\"Resuming coroutine and sending in value: 42.\")\n" "try:\n" @@ -561,31 +337,15 @@ msgid "" "print(f\"Coroutine main() finished and provided value: {returned_value}.\")" msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:408 -msgid "" -":ref:`yield `, as usual, pauses execution and returns control to " -"the caller. In the example above, the ``yield``, on line 3, is called by " -"``... = await rock`` on line 11. More broadly speaking, ``await`` calls " -"the :meth:`~object.__await__` method of the given object. ``await`` also " -"does one more very special thing: it propagates (or \"passes along\") any " -"``yield``\\ s it receives up the call chain. In this case, that's back to " -"``... = coroutine.send(None)`` on line 16." +msgid ":ref:`yield `, as usual, pauses execution and returns control to the caller. In the example above, the ``yield``, on line 3, is called by ``... = await rock`` on line 11. More broadly speaking, ``await`` calls the :meth:`~object.__await__` method of the given object. ``await`` also does one more very special thing: it propagates (or \"passes along\") any ``yield``\\ s it receives up the call chain. In this case, that's back to ``... = coroutine.send(None)`` on line 16." msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:418 -msgid "" -"The coroutine is resumed via the ``coroutine.send(42)`` call on line 21. The " -"coroutine picks back up from where it ``yield``\\ ed (or paused) on line 3 " -"and executes the remaining statements in its body. When a coroutine " -"finishes, it raises a :exc:`StopIteration` exception with the return value " -"attached in the :attr:`~StopIteration.value` attribute." +msgid "The coroutine is resumed via the ``coroutine.send(42)`` call on line 21. The coroutine picks back up from where it ``yield``\\ ed (or paused) on line 3 and executes the remaining statements in its body. When a coroutine finishes, it raises a :exc:`StopIteration` exception with the return value attached in the :attr:`~StopIteration.value` attribute." msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:424 msgid "That snippet produces this output:" msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:426 msgid "" "Beginning coroutine main().\n" "Awaiting rock...\n" @@ -596,96 +356,42 @@ msgid "" "Coroutine main() finished and provided value: 23." msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:436 -msgid "" -"It's worth pausing for a moment here and making sure you followed the " -"various ways that control flow and values were passed. A lot of important " -"ideas were covered and it's worth ensuring your understanding is firm." +msgid "It's worth pausing for a moment here and making sure you followed the various ways that control flow and values were passed. A lot of important ideas were covered and it's worth ensuring your understanding is firm." msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:440 -msgid "" -"The only way to yield (or effectively cede control) from a coroutine is to " -"``await`` an object that ``yield``\\ s in its ``__await__`` method. That " -"might sound odd to you. You might be thinking:" +msgid "The only way to yield (or effectively cede control) from a coroutine is to ``await`` an object that ``yield``\\ s in its ``__await__`` method. That might sound odd to you. You might be thinking:" msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:444 -msgid "" -"1. What about a ``yield`` directly within the coroutine function? The " -"coroutine function becomes an :ref:`async generator function `, a different beast entirely." +msgid "1. What about a ``yield`` directly within the coroutine function? The coroutine function becomes an :ref:`async generator function `, a different beast entirely." msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:449 -msgid "" -"2. What about a :ref:`yield from ` within the coroutine function " -"to a (plain) generator? That causes the error: ``SyntaxError: yield from not " -"allowed in a coroutine.`` This was intentionally designed for the sake of " -"simplicity -- mandating only one way of using coroutines. Initially " -"``yield`` was barred as well, but was re-accepted to allow for async " -"generators. Despite that, ``yield from`` and ``await`` effectively do the " -"same thing." +msgid "2. What about a :ref:`yield from ` within the coroutine function to a (plain) generator? That causes the error: ``SyntaxError: yield from not allowed in a coroutine.`` This was intentionally designed for the sake of simplicity -- mandating only one way of using coroutines. Initially ``yield`` was barred as well, but was re-accepted to allow for async generators. Despite that, ``yield from`` and ``await`` effectively do the same thing." msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:460 msgid "Futures" msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:462 -msgid "" -"A :ref:`future ` is an object meant to represent a " -"computation's status and result. The term is a nod to the idea of something " -"still to come or not yet happened, and the object is a way to keep an eye on " -"that something." +msgid "A :ref:`future ` is an object meant to represent a computation's status and result. The term is a nod to the idea of something still to come or not yet happened, and the object is a way to keep an eye on that something." msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:467 -msgid "" -"A future has a few important attributes. One is its state, which can be " -"either \"pending\", \"cancelled\", or \"done\". Another is its result, which " -"is set when the state transitions to done. Unlike a coroutine, a future does " -"not represent the actual computation to be done; instead, it represents the " -"status and result of that computation, kind of like a status light (red, " -"yellow, or green) or indicator." +msgid "A future has a few important attributes. One is its state, which can be either \"pending\", \"cancelled\", or \"done\". Another is its result, which is set when the state transitions to done. Unlike a coroutine, a future does not represent the actual computation to be done; instead, it represents the status and result of that computation, kind of like a status light (red, yellow, or green) or indicator." msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:474 -msgid "" -":class:`asyncio.Task` subclasses :class:`asyncio.Future` in order to gain " -"these various capabilities. The prior section said tasks store a list of " -"callbacks, which wasn't entirely accurate. It's actually the ``Future`` " -"class that implements this logic, which ``Task`` inherits." +msgid ":class:`asyncio.Task` subclasses :class:`asyncio.Future` in order to gain these various capabilities. The prior section said tasks store a list of callbacks, which wasn't entirely accurate. It's actually the ``Future`` class that implements this logic, which ``Task`` inherits." msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:481 -msgid "" -"Futures may also be used directly (not via tasks). Tasks mark themselves as " -"done when their coroutine is complete. Futures are much more versatile and " -"will be marked as done when you say so. In this way, they're the flexible " -"interface for you to make your own conditions for waiting and resuming." +msgid "Futures may also be used directly (not via tasks). Tasks mark themselves as done when their coroutine is complete. Futures are much more versatile and will be marked as done when you say so. In this way, they're the flexible interface for you to make your own conditions for waiting and resuming." msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:489 msgid "A homemade asyncio.sleep" msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:491 -msgid "" -"We'll go through an example of how you could leverage a future to create " -"your own variant of asynchronous sleep (``async_sleep``) which " -"mimics :func:`asyncio.sleep`." +msgid "We'll go through an example of how you could leverage a future to create your own variant of asynchronous sleep (``async_sleep``) which mimics :func:`asyncio.sleep`." msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:495 -msgid "" -"This snippet registers a few tasks with the event loop and then awaits the " -"task created by ``asyncio.create_task``, which wraps the ``async_sleep(3)`` " -"coroutine. We want that task to finish only after three seconds have " -"elapsed, but without preventing other tasks from running." +msgid "This snippet registers a few tasks with the event loop and then awaits the task created by ``asyncio.create_task``, which wraps the ``async_sleep(3)`` coroutine. We want that task to finish only after three seconds have elapsed, but without preventing other tasks from running." msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:502 msgid "" "async def other_work():\n" " print(\"I like work. Work work.\")\n" @@ -711,53 +417,25 @@ msgid "" " await asyncio.gather(*work_tasks)" msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:526 -msgid "" -"Below, we use a future to enable custom control over when that task will be " -"marked as done. If :meth:`future.set_result() ` " -"(the method responsible for marking that future as done) is never called, " -"then this task will never finish. We've also enlisted the help of another " -"task, which we'll see in a moment, that will monitor how much time has " -"elapsed and, accordingly, call ``future.set_result()``." +msgid "Below, we use a future to enable custom control over when that task will be marked as done. If :meth:`future.set_result() ` (the method responsible for marking that future as done) is never called, then this task will never finish. We've also enlisted the help of another task, which we'll see in a moment, that will monitor how much time has elapsed and, accordingly, call ``future.set_result()``." msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:537 msgid "" "async def async_sleep(seconds: float):\n" " future = asyncio.Future()\n" " time_to_wake = time.time() + seconds\n" " # Add the watcher-task to the event loop.\n" -" watcher_task = asyncio.create_task(_sleep_watcher(future, " -"time_to_wake))\n" +" watcher_task = asyncio.create_task(_sleep_watcher(future, time_to_wake))\n" " # Block until the future is marked as done.\n" " await future" msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:545 -msgid "" -"Below, we use a rather bare ``YieldToEventLoop()`` object to ``yield`` from " -"its ``__await__`` method, ceding control to the event loop. This is " -"effectively the same as calling ``asyncio.sleep(0)``, but this approach " -"offers more clarity, not to mention it's somewhat cheating to use " -"``asyncio.sleep`` when showcasing how to implement it!" +msgid "Below, we use a rather bare ``YieldToEventLoop()`` object to ``yield`` from its ``__await__`` method, ceding control to the event loop. This is effectively the same as calling ``asyncio.sleep(0)``, but this approach offers more clarity, not to mention it's somewhat cheating to use ``asyncio.sleep`` when showcasing how to implement it!" +msgstr "" + +msgid "As usual, the event loop cycles through its tasks, giving them control and receiving control back when they pause or finish. The ``watcher_task``, which runs the coroutine ``_sleep_watcher(...)``, will be invoked once per full cycle of the event loop. On each resumption, it'll check the time and if not enough has elapsed, then it'll pause once again and hand control back to the event loop. Once enough time has elapsed, ``_sleep_watcher(...)`` marks the future as done and completes by exiting its infinite ``while`` loop. Given this helper task is only invoked once per cycle of the event loop, you'd be correct to note that this asynchronous sleep will sleep *at least* three seconds, rather than exactly three seconds. Note this is also true of ``asyncio.sleep``." msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:551 -msgid "" -"As usual, the event loop cycles through its tasks, giving them control and " -"receiving control back when they pause or finish. The ``watcher_task``, " -"which runs the coroutine ``_sleep_watcher(...)``, will be invoked once per " -"full cycle of the event loop. On each resumption, it'll check the time and " -"if not enough has elapsed, then it'll pause once again and hand control back " -"to the event loop. Once enough time has elapsed, ``_sleep_watcher(...)`` " -"marks the future as done and completes by exiting its infinite ``while`` " -"loop. Given this helper task is only invoked once per cycle of the event " -"loop, you'd be correct to note that this asynchronous sleep will sleep *at " -"least* three seconds, rather than exactly three seconds. Note this is also " -"true of ``asyncio.sleep``." -msgstr "" - -#: ../../howto/a-conceptual-overview-of-asyncio.rst:567 msgid "" "class YieldToEventLoop:\n" " def __await__(self):\n" @@ -773,11 +451,9 @@ msgid "" " await YieldToEventLoop()" msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:580 msgid "Here is the full program's output:" msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:582 msgid "" "$ python custom-async-sleep.py\n" "Beginning asynchronous sleep at time: 14:52:22.\n" @@ -787,16 +463,9 @@ msgid "" "Done asynchronous sleep at time: 14:52:25." msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:591 -msgid "" -"You might feel this implementation of asynchronous sleep was unnecessarily " -"convoluted. And, well, it was. The example was meant to showcase the " -"versatility of futures with a simple example that could be mimicked for more " -"complex needs. For reference, you could implement it without futures, like " -"so::" +msgid "You might feel this implementation of asynchronous sleep was unnecessarily convoluted. And, well, it was. The example was meant to showcase the versatility of futures with a simple example that could be mimicked for more complex needs. For reference, you could implement it without futures, like so::" msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:598 msgid "" "async def simpler_async_sleep(seconds):\n" " time_to_wake = time.time() + seconds\n" @@ -807,9 +476,5 @@ msgid "" " await YieldToEventLoop()" msgstr "" -#: ../../howto/a-conceptual-overview-of-asyncio.rst:606 -msgid "" -"But that's all for now. Hopefully you're ready to more confidently dive into " -"some async programming or check out advanced topics in the :mod:`rest of the " -"documentation `." +msgid "But that's all for now. Hopefully you're ready to more confidently dive into some async programming or check out advanced topics in the :mod:`rest of the documentation `." msgstr "" diff --git a/howto/annotations.po b/howto/annotations.po index f90e3c7f..c2199d07 100644 --- a/howto/annotations.po +++ b/howto/annotations.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:52+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,127 +24,57 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../howto/annotations.rst:5 msgid "Annotations Best Practices" msgstr "" -#: ../../howto/annotations.rst:0 msgid "author" msgstr "" -#: ../../howto/annotations.rst:7 msgid "Larry Hastings" msgstr "" -#: ../../howto/annotations.rst:-1 msgid "Abstract" msgstr "" -#: ../../howto/annotations.rst:11 -msgid "" -"This document is designed to encapsulate the best practices for working with " -"annotations dicts. If you write Python code that examines " -"``__annotations__`` on Python objects, we encourage you to follow the " -"guidelines described below." +msgid "This document is designed to encapsulate the best practices for working with annotations dicts. If you write Python code that examines ``__annotations__`` on Python objects, we encourage you to follow the guidelines described below." msgstr "" -#: ../../howto/annotations.rst:16 -msgid "" -"The document is organized into four sections: best practices for accessing " -"the annotations of an object in Python versions 3.10 and newer, best " -"practices for accessing the annotations of an object in Python versions 3.9 " -"and older, other best practices for ``__annotations__`` that apply to any " -"Python version, and quirks of ``__annotations__``." +msgid "The document is organized into four sections: best practices for accessing the annotations of an object in Python versions 3.10 and newer, best practices for accessing the annotations of an object in Python versions 3.9 and older, other best practices for ``__annotations__`` that apply to any Python version, and quirks of ``__annotations__``." msgstr "" -#: ../../howto/annotations.rst:26 -msgid "" -"Note that this document is specifically about working with " -"``__annotations__``, not uses *for* annotations. If you're looking for " -"information on how to use \"type hints\" in your code, please see " -"the :mod:`typing` module." +msgid "Note that this document is specifically about working with ``__annotations__``, not uses *for* annotations. If you're looking for information on how to use \"type hints\" in your code, please see the :mod:`typing` module." msgstr "" -#: ../../howto/annotations.rst:33 msgid "Accessing The Annotations Dict Of An Object In Python 3.10 And Newer" msgstr "" -#: ../../howto/annotations.rst:35 -msgid "" -"Python 3.10 adds a new function to the standard " -"library: :func:`inspect.get_annotations`. In Python versions 3.10 through " -"3.13, calling this function is the best practice for accessing the " -"annotations dict of any object that supports annotations. This function can " -"also \"un-stringize\" stringized annotations for you." +msgid "Python 3.10 adds a new function to the standard library: :func:`inspect.get_annotations`. In Python versions 3.10 through 3.13, calling this function is the best practice for accessing the annotations dict of any object that supports annotations. This function can also \"un-stringize\" stringized annotations for you." msgstr "" -#: ../../howto/annotations.rst:42 -msgid "" -"In Python 3.14, there is a new :mod:`annotationlib` module with " -"functionality for working with annotations. This includes " -"a :func:`annotationlib.get_annotations` function, which " -"supersedes :func:`inspect.get_annotations`." +msgid "In Python 3.14, there is a new :mod:`annotationlib` module with functionality for working with annotations. This includes a :func:`annotationlib.get_annotations` function, which supersedes :func:`inspect.get_annotations`." msgstr "" -#: ../../howto/annotations.rst:47 -msgid "" -"If for some reason :func:`inspect.get_annotations` isn't viable for your use " -"case, you may access the ``__annotations__`` data member manually. Best " -"practice for this changed in Python 3.10 as well: as of Python 3.10, " -"``o.__annotations__`` is guaranteed to *always* work on Python functions, " -"classes, and modules. If you're certain the object you're examining is one " -"of these three *specific* objects, you may simply use ``o.__annotations__`` " -"to get at the object's annotations dict." +msgid "If for some reason :func:`inspect.get_annotations` isn't viable for your use case, you may access the ``__annotations__`` data member manually. Best practice for this changed in Python 3.10 as well: as of Python 3.10, ``o.__annotations__`` is guaranteed to *always* work on Python functions, classes, and modules. If you're certain the object you're examining is one of these three *specific* objects, you may simply use ``o.__annotations__`` to get at the object's annotations dict." msgstr "" -#: ../../howto/annotations.rst:57 -msgid "" -"However, other types of callables--for example, callables created " -"by :func:`functools.partial`--may not have an ``__annotations__`` attribute " -"defined. When accessing the ``__annotations__`` of a possibly unknown " -"object, best practice in Python versions 3.10 and newer is to " -"call :func:`getattr` with three arguments, for example ``getattr(o, " -"'__annotations__', None)``." +msgid "However, other types of callables--for example, callables created by :func:`functools.partial`--may not have an ``__annotations__`` attribute defined. When accessing the ``__annotations__`` of a possibly unknown object, best practice in Python versions 3.10 and newer is to call :func:`getattr` with three arguments, for example ``getattr(o, '__annotations__', None)``." msgstr "" -#: ../../howto/annotations.rst:65 -msgid "" -"Before Python 3.10, accessing ``__annotations__`` on a class that defines no " -"annotations but that has a parent class with annotations would return the " -"parent's ``__annotations__``. In Python 3.10 and newer, the child class's " -"annotations will be an empty dict instead." +msgid "Before Python 3.10, accessing ``__annotations__`` on a class that defines no annotations but that has a parent class with annotations would return the parent's ``__annotations__``. In Python 3.10 and newer, the child class's annotations will be an empty dict instead." msgstr "" -#: ../../howto/annotations.rst:73 msgid "Accessing The Annotations Dict Of An Object In Python 3.9 And Older" msgstr "" -#: ../../howto/annotations.rst:75 -msgid "" -"In Python 3.9 and older, accessing the annotations dict of an object is much " -"more complicated than in newer versions. The problem is a design flaw in " -"these older versions of Python, specifically to do with class annotations." +msgid "In Python 3.9 and older, accessing the annotations dict of an object is much more complicated than in newer versions. The problem is a design flaw in these older versions of Python, specifically to do with class annotations." msgstr "" -#: ../../howto/annotations.rst:80 -msgid "" -"Best practice for accessing the annotations dict of other objects--" -"functions, other callables, and modules--is the same as best practice for " -"3.10, assuming you aren't calling :func:`inspect.get_annotations`: you " -"should use three-argument :func:`getattr` to access the object's " -"``__annotations__`` attribute." +msgid "Best practice for accessing the annotations dict of other objects--functions, other callables, and modules--is the same as best practice for 3.10, assuming you aren't calling :func:`inspect.get_annotations`: you should use three-argument :func:`getattr` to access the object's ``__annotations__`` attribute." msgstr "" -#: ../../howto/annotations.rst:87 -msgid "" -"Unfortunately, this isn't best practice for classes. The problem is that, " -"since ``__annotations__`` is optional on classes, and because classes can " -"inherit attributes from their base classes, accessing the " -"``__annotations__`` attribute of a class may inadvertently return the " -"annotations dict of a *base class.* As an example::" +msgid "Unfortunately, this isn't best practice for classes. The problem is that, since ``__annotations__`` is optional on classes, and because classes can inherit attributes from their base classes, accessing the ``__annotations__`` attribute of a class may inadvertently return the annotations dict of a *base class.* As an example::" msgstr "" -#: ../../howto/annotations.rst:94 msgid "" "class Base:\n" " a: int = 3\n" @@ -156,28 +86,15 @@ msgid "" "print(Derived.__annotations__)" msgstr "" -#: ../../howto/annotations.rst:103 msgid "This will print the annotations dict from ``Base``, not ``Derived``." msgstr "" -#: ../../howto/annotations.rst:106 -msgid "" -"Your code will have to have a separate code path if the object you're " -"examining is a class (``isinstance(o, type)``). In that case, best practice " -"relies on an implementation detail of Python 3.9 and before: if a class has " -"annotations defined, they are stored in the class's :attr:`~type.__dict__` " -"dictionary. Since the class may or may not have annotations defined, best " -"practice is to call the :meth:`~dict.get` method on the class dict." +msgid "Your code will have to have a separate code path if the object you're examining is a class (``isinstance(o, type)``). In that case, best practice relies on an implementation detail of Python 3.9 and before: if a class has annotations defined, they are stored in the class's :attr:`~type.__dict__` dictionary. Since the class may or may not have annotations defined, best practice is to call the :meth:`~dict.get` method on the class dict." msgstr "" -#: ../../howto/annotations.rst:114 -msgid "" -"To put it all together, here is some sample code that safely accesses the " -"``__annotations__`` attribute on an arbitrary object in Python 3.9 and " -"before::" +msgid "To put it all together, here is some sample code that safely accesses the ``__annotations__`` attribute on an arbitrary object in Python 3.9 and before::" msgstr "" -#: ../../howto/annotations.rst:118 msgid "" "if isinstance(o, type):\n" " ann = o.__dict__.get('__annotations__', None)\n" @@ -185,185 +102,84 @@ msgid "" " ann = getattr(o, '__annotations__', None)" msgstr "" -#: ../../howto/annotations.rst:123 -msgid "" -"After running this code, ``ann`` should be either a dictionary or ``None``. " -"You're encouraged to double-check the type of ``ann`` " -"using :func:`isinstance` before further examination." +msgid "After running this code, ``ann`` should be either a dictionary or ``None``. You're encouraged to double-check the type of ``ann`` using :func:`isinstance` before further examination." msgstr "" -#: ../../howto/annotations.rst:128 -msgid "" -"Note that some exotic or malformed type objects may not have " -"a :attr:`~type.__dict__` attribute, so for extra safety you may also wish to " -"use :func:`getattr` to access :attr:`!__dict__`." +msgid "Note that some exotic or malformed type objects may not have a :attr:`~type.__dict__` attribute, so for extra safety you may also wish to use :func:`getattr` to access :attr:`!__dict__`." msgstr "" -#: ../../howto/annotations.rst:134 msgid "Manually Un-Stringizing Stringized Annotations" msgstr "" -#: ../../howto/annotations.rst:136 -msgid "" -"In situations where some annotations may be \"stringized\", and you wish to " -"evaluate those strings to produce the Python values they represent, it " -"really is best to call :func:`inspect.get_annotations` to do this work for " -"you." +msgid "In situations where some annotations may be \"stringized\", and you wish to evaluate those strings to produce the Python values they represent, it really is best to call :func:`inspect.get_annotations` to do this work for you." msgstr "" -#: ../../howto/annotations.rst:142 -msgid "" -"If you're using Python 3.9 or older, or if for some reason you can't " -"use :func:`inspect.get_annotations`, you'll need to duplicate its logic. " -"You're encouraged to examine the implementation " -"of :func:`inspect.get_annotations` in the current Python version and follow " -"a similar approach." +msgid "If you're using Python 3.9 or older, or if for some reason you can't use :func:`inspect.get_annotations`, you'll need to duplicate its logic. You're encouraged to examine the implementation of :func:`inspect.get_annotations` in the current Python version and follow a similar approach." msgstr "" -#: ../../howto/annotations.rst:148 -msgid "" -"In a nutshell, if you wish to evaluate a stringized annotation on an " -"arbitrary object ``o``:" +msgid "In a nutshell, if you wish to evaluate a stringized annotation on an arbitrary object ``o``:" msgstr "" -#: ../../howto/annotations.rst:151 -msgid "" -"If ``o`` is a module, use ``o.__dict__`` as the ``globals`` when " -"calling :func:`eval`." +msgid "If ``o`` is a module, use ``o.__dict__`` as the ``globals`` when calling :func:`eval`." msgstr "" -#: ../../howto/annotations.rst:153 -msgid "" -"If ``o`` is a class, use ``sys.modules[o.__module__].__dict__`` as the " -"``globals``, and ``dict(vars(o))`` as the ``locals``, when " -"calling :func:`eval`." +msgid "If ``o`` is a class, use ``sys.modules[o.__module__].__dict__`` as the ``globals``, and ``dict(vars(o))`` as the ``locals``, when calling :func:`eval`." msgstr "" -#: ../../howto/annotations.rst:156 -msgid "" -"If ``o`` is a wrapped callable " -"using :func:`functools.update_wrapper`, :deco:`functools.wraps`, " -"or :func:`functools.partial`, iteratively unwrap it by accessing either " -"``o.__wrapped__`` or ``o.func`` as appropriate, until you have found the " -"root unwrapped function." +msgid "If ``o`` is a wrapped callable using :func:`functools.update_wrapper`, :deco:`functools.wraps`, or :func:`functools.partial`, iteratively unwrap it by accessing either ``o.__wrapped__`` or ``o.func`` as appropriate, until you have found the root unwrapped function." msgstr "" -#: ../../howto/annotations.rst:160 -msgid "" -"If ``o`` is a callable (but not a class), use :attr:`o.__globals__ " -"` as the globals when calling :func:`eval`." +msgid "If ``o`` is a callable (but not a class), use :attr:`o.__globals__ ` as the globals when calling :func:`eval`." msgstr "" -#: ../../howto/annotations.rst:164 -msgid "" -"However, not all string values used as annotations can be successfully " -"turned into Python values by :func:`eval`. String values could theoretically " -"contain any valid string, and in practice there are valid use cases for type " -"hints that require annotating with string values that specifically *can't* " -"be evaluated. For example:" +msgid "However, not all string values used as annotations can be successfully turned into Python values by :func:`eval`. String values could theoretically contain any valid string, and in practice there are valid use cases for type hints that require annotating with string values that specifically *can't* be evaluated. For example:" msgstr "" -#: ../../howto/annotations.rst:171 -msgid "" -":pep:`604` union types using ``|``, before support for this was added to " -"Python 3.10." +msgid ":pep:`604` union types using ``|``, before support for this was added to Python 3.10." msgstr "" -#: ../../howto/annotations.rst:173 -msgid "" -"Definitions that aren't needed at runtime, only imported " -"when :const:`typing.TYPE_CHECKING` is true." +msgid "Definitions that aren't needed at runtime, only imported when :const:`typing.TYPE_CHECKING` is true." msgstr "" -#: ../../howto/annotations.rst:176 -msgid "" -"If :func:`eval` attempts to evaluate such values, it will fail and raise an " -"exception. So, when designing a library API that works with annotations, " -"it's recommended to only attempt to evaluate string values when explicitly " -"requested to by the caller." +msgid "If :func:`eval` attempts to evaluate such values, it will fail and raise an exception. So, when designing a library API that works with annotations, it's recommended to only attempt to evaluate string values when explicitly requested to by the caller." msgstr "" -#: ../../howto/annotations.rst:184 msgid "Best Practices For ``__annotations__`` In Any Python Version" msgstr "" -#: ../../howto/annotations.rst:186 -msgid "" -"You should avoid assigning to the ``__annotations__`` member of objects " -"directly. Let Python manage setting ``__annotations__``." +msgid "You should avoid assigning to the ``__annotations__`` member of objects directly. Let Python manage setting ``__annotations__``." msgstr "" -#: ../../howto/annotations.rst:189 -msgid "" -"If you do assign directly to the ``__annotations__`` member of an object, " -"you should always set it to a ``dict`` object." +msgid "If you do assign directly to the ``__annotations__`` member of an object, you should always set it to a ``dict`` object." msgstr "" -#: ../../howto/annotations.rst:192 -msgid "" -"You should avoid accessing ``__annotations__`` directly on any object. " -"Instead, use :func:`annotationlib.get_annotations` (Python 3.14+) " -"or :func:`inspect.get_annotations` (Python 3.10+)." +msgid "You should avoid accessing ``__annotations__`` directly on any object. Instead, use :func:`annotationlib.get_annotations` (Python 3.14+) or :func:`inspect.get_annotations` (Python 3.10+)." msgstr "" -#: ../../howto/annotations.rst:196 -msgid "" -"If you do directly access the ``__annotations__`` member of an object, you " -"should ensure that it's a dictionary before attempting to examine its " -"contents." +msgid "If you do directly access the ``__annotations__`` member of an object, you should ensure that it's a dictionary before attempting to examine its contents." msgstr "" -#: ../../howto/annotations.rst:200 msgid "You should avoid modifying ``__annotations__`` dicts." msgstr "" -#: ../../howto/annotations.rst:202 -msgid "" -"You should avoid deleting the ``__annotations__`` attribute of an object." +msgid "You should avoid deleting the ``__annotations__`` attribute of an object." msgstr "" -#: ../../howto/annotations.rst:207 msgid "``__annotations__`` Quirks" msgstr "" -#: ../../howto/annotations.rst:209 -msgid "" -"In all versions of Python 3, function objects lazy-create an annotations " -"dict if no annotations are defined on that object. You can delete the " -"``__annotations__`` attribute using ``del fn.__annotations__``, but if you " -"then access ``fn.__annotations__`` the object will create a new empty dict " -"that it will store and return as its annotations. Deleting the annotations " -"on a function before it has lazily created its annotations dict will throw " -"an ``AttributeError``; using ``del fn.__annotations__`` twice in a row is " -"guaranteed to always throw an ``AttributeError``." +msgid "In all versions of Python 3, function objects lazy-create an annotations dict if no annotations are defined on that object. You can delete the ``__annotations__`` attribute using ``del fn.__annotations__``, but if you then access ``fn.__annotations__`` the object will create a new empty dict that it will store and return as its annotations. Deleting the annotations on a function before it has lazily created its annotations dict will throw an ``AttributeError``; using ``del fn.__annotations__`` twice in a row is guaranteed to always throw an ``AttributeError``." msgstr "" -#: ../../howto/annotations.rst:219 -msgid "" -"Everything in the above paragraph also applies to class and module objects " -"in Python 3.10 and newer." +msgid "Everything in the above paragraph also applies to class and module objects in Python 3.10 and newer." msgstr "" -#: ../../howto/annotations.rst:222 -msgid "" -"In all versions of Python 3, you can set ``__annotations__`` on a function " -"object to ``None``. However, subsequently accessing the annotations on that " -"object using ``fn.__annotations__`` will lazy-create an empty dictionary as " -"per the first paragraph of this section. This is *not* true of modules and " -"classes, in any Python version; those objects permit setting " -"``__annotations__`` to any Python value, and will retain whatever value is " -"set." +msgid "In all versions of Python 3, you can set ``__annotations__`` on a function object to ``None``. However, subsequently accessing the annotations on that object using ``fn.__annotations__`` will lazy-create an empty dictionary as per the first paragraph of this section. This is *not* true of modules and classes, in any Python version; those objects permit setting ``__annotations__`` to any Python value, and will retain whatever value is set." msgstr "" -#: ../../howto/annotations.rst:230 -msgid "" -"If Python stringizes your annotations for you (using ``from __future__ " -"import annotations``), and you specify a string as an annotation, the string " -"will itself be quoted. In effect the annotation is quoted *twice.* For " -"example::" +msgid "If Python stringizes your annotations for you (using ``from __future__ import annotations``), and you specify a string as an annotation, the string will itself be quoted. In effect the annotation is quoted *twice.* For example::" msgstr "" -#: ../../howto/annotations.rst:236 msgid "" "from __future__ import annotations\n" "def foo(a: \"str\"): pass\n" @@ -371,29 +187,11 @@ msgid "" "print(foo.__annotations__)" msgstr "" -#: ../../howto/annotations.rst:241 -msgid "" -"This prints ``{'a': \"'str'\"}``. This shouldn't really be considered a " -"\"quirk\"; it's mentioned here simply because it might be surprising." +msgid "This prints ``{'a': \"'str'\"}``. This shouldn't really be considered a \"quirk\"; it's mentioned here simply because it might be surprising." msgstr "" -#: ../../howto/annotations.rst:244 -msgid "" -"If you use a class with a custom metaclass and access ``__annotations__`` on " -"the class, you may observe unexpected behavior; see :pep:`749 <749#pep749-" -"metaclasses>` for some examples. You can avoid these quirks by " -"using :func:`annotationlib.get_annotations` on Python 3.14+ " -"or :func:`inspect.get_annotations` on Python 3.10+. On earlier versions of " -"Python, you can avoid these bugs by accessing the annotations from the " -"class's :attr:`~type.__dict__` (for example, " -"``cls.__dict__.get('__annotations__', None)``)." +msgid "If you use a class with a custom metaclass and access ``__annotations__`` on the class, you may observe unexpected behavior; see :pep:`749 <749#pep749-metaclasses>` for some examples. You can avoid these quirks by using :func:`annotationlib.get_annotations` on Python 3.14+ or :func:`inspect.get_annotations` on Python 3.10+. On earlier versions of Python, you can avoid these bugs by accessing the annotations from the class's :attr:`~type.__dict__` (for example, ``cls.__dict__.get('__annotations__', None)``)." msgstr "" -#: ../../howto/annotations.rst:253 -msgid "" -"In some versions of Python, instances of classes may have an " -"``__annotations__`` attribute. However, this is not supported functionality. " -"If you need the annotations of an instance, you can use :func:`type` to " -"access its class (for example, " -"``annotationlib.get_annotations(type(myinstance))`` on Python 3.14+)." +msgid "In some versions of Python, instances of classes may have an ``__annotations__`` attribute. However, this is not supported functionality. If you need the annotations of an instance, you can use :func:`type` to access its class (for example, ``annotationlib.get_annotations(type(myinstance))`` on Python 3.14+)." msgstr "" diff --git a/howto/argparse-optparse.po b/howto/argparse-optparse.po index 6ec9af83..4ecf29ef 100644 --- a/howto/argparse-optparse.po +++ b/howto/argparse-optparse.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2024-10-11 14:19+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,120 +23,62 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../howto/argparse-optparse.rst:8 msgid "Migrating ``optparse`` code to ``argparse``" msgstr "" -#: ../../howto/argparse-optparse.rst:10 -msgid "" -"The :mod:`argparse` module offers several higher level features not natively " -"provided by the :mod:`optparse` module, including:" +msgid "The :mod:`argparse` module offers several higher level features not natively provided by the :mod:`optparse` module, including:" msgstr "" -#: ../../howto/argparse-optparse.rst:13 msgid "Handling positional arguments." msgstr "" -#: ../../howto/argparse-optparse.rst:14 msgid "Supporting subcommands." msgstr "" -#: ../../howto/argparse-optparse.rst:15 msgid "Allowing alternative option prefixes like ``+`` and ``/``." msgstr "" -#: ../../howto/argparse-optparse.rst:16 msgid "Handling zero-or-more and one-or-more style arguments." msgstr "" -#: ../../howto/argparse-optparse.rst:17 msgid "Producing more informative usage messages." msgstr "" -#: ../../howto/argparse-optparse.rst:18 msgid "Providing a much simpler interface for custom ``type`` and ``action``." msgstr "" -#: ../../howto/argparse-optparse.rst:20 -msgid "" -"Originally, the :mod:`argparse` module attempted to maintain compatibility " -"with :mod:`optparse`. However, the fundamental design differences between " -"supporting declarative command line option processing (while leaving " -"positional argument processing to application code), and supporting both " -"named options and positional arguments in the declarative interface mean " -"that the API has diverged from that of ``optparse`` over time." +msgid "Originally, the :mod:`argparse` module attempted to maintain compatibility with :mod:`optparse`. However, the fundamental design differences between supporting declarative command line option processing (while leaving positional argument processing to application code), and supporting both named options and positional arguments in the declarative interface mean that the API has diverged from that of ``optparse`` over time." msgstr "" -#: ../../howto/argparse-optparse.rst:27 -msgid "" -"As described in :ref:`choosing-an-argument-parser`, applications that are " -"currently using :mod:`optparse` and are happy with the way it works can just " -"continue to use ``optparse``." +msgid "As described in :ref:`choosing-an-argument-parser`, applications that are currently using :mod:`optparse` and are happy with the way it works can just continue to use ``optparse``." msgstr "" -#: ../../howto/argparse-optparse.rst:31 -msgid "" -"Application developers that are considering migrating should also review the " -"list of intrinsic behavioural differences described in that section before " -"deciding whether or not migration is desirable." +msgid "Application developers that are considering migrating should also review the list of intrinsic behavioural differences described in that section before deciding whether or not migration is desirable." msgstr "" -#: ../../howto/argparse-optparse.rst:35 -msgid "" -"For applications that do choose to migrate from :mod:`optparse` " -"to :mod:`argparse`, the following suggestions should be helpful:" +msgid "For applications that do choose to migrate from :mod:`optparse` to :mod:`argparse`, the following suggestions should be helpful:" msgstr "" -#: ../../howto/argparse-optparse.rst:38 -msgid "" -"Replace all :meth:`optparse.OptionParser.add_option` calls " -"with :meth:`ArgumentParser.add_argument` calls." +msgid "Replace all :meth:`optparse.OptionParser.add_option` calls with :meth:`ArgumentParser.add_argument` calls." msgstr "" -#: ../../howto/argparse-optparse.rst:41 -msgid "" -"Replace ``(options, args) = parser.parse_args()`` with ``args = " -"parser.parse_args()`` and add additional :meth:`ArgumentParser.add_argument` " -"calls for the positional arguments. Keep in mind that what was previously " -"called ``options``, now in the :mod:`argparse` context is called ``args``." +msgid "Replace ``(options, args) = parser.parse_args()`` with ``args = parser.parse_args()`` and add additional :meth:`ArgumentParser.add_argument` calls for the positional arguments. Keep in mind that what was previously called ``options``, now in the :mod:`argparse` context is called ``args``." msgstr "" -#: ../../howto/argparse-optparse.rst:46 -msgid "" -"Replace :meth:`optparse.OptionParser.disable_interspersed_args` by " -"using :meth:`~ArgumentParser.parse_intermixed_args` instead " -"of :meth:`~ArgumentParser.parse_args`." +msgid "Replace :meth:`optparse.OptionParser.disable_interspersed_args` by using :meth:`~ArgumentParser.parse_intermixed_args` instead of :meth:`~ArgumentParser.parse_args`." msgstr "" -#: ../../howto/argparse-optparse.rst:50 -msgid "" -"Replace callback actions and the ``callback_*`` keyword arguments with " -"``type`` or ``action`` arguments." +msgid "Replace callback actions and the ``callback_*`` keyword arguments with ``type`` or ``action`` arguments." msgstr "" -#: ../../howto/argparse-optparse.rst:53 -msgid "" -"Replace string names for ``type`` keyword arguments with the corresponding " -"type objects (e.g. int, float, complex, etc)." +msgid "Replace string names for ``type`` keyword arguments with the corresponding type objects (e.g. int, float, complex, etc)." msgstr "" -#: ../../howto/argparse-optparse.rst:56 -msgid "" -"Replace :class:`optparse.Values` with :class:`Namespace` " -"and :exc:`optparse.OptionError` and :exc:`optparse.OptionValueError` " -"with :exc:`ArgumentError`." +msgid "Replace :class:`optparse.Values` with :class:`Namespace` and :exc:`optparse.OptionError` and :exc:`optparse.OptionValueError` with :exc:`ArgumentError`." msgstr "" -#: ../../howto/argparse-optparse.rst:60 -msgid "" -"Replace strings with implicit arguments such as ``%default`` or ``%prog`` " -"with the standard Python syntax to use dictionaries to format strings, that " -"is, ``%(default)s`` and ``%(prog)s``." +msgid "Replace strings with implicit arguments such as ``%default`` or ``%prog`` with the standard Python syntax to use dictionaries to format strings, that is, ``%(default)s`` and ``%(prog)s``." msgstr "" -#: ../../howto/argparse-optparse.rst:64 -msgid "" -"Replace the OptionParser constructor ``version`` argument with a call to " -"``parser.add_argument('--version', action='version', version='')``." +msgid "Replace the OptionParser constructor ``version`` argument with a call to ``parser.add_argument('--version', action='version', version='')``." msgstr "" diff --git a/howto/argparse.po b/howto/argparse.po index ce3e3728..63e20c9b 100644 --- a/howto/argparse.po +++ b/howto/argparse.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:52+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,49 +24,27 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../howto/argparse.rst:5 msgid "Argparse Tutorial" msgstr "" -#: ../../howto/argparse.rst:0 msgid "author" msgstr "" -#: ../../howto/argparse.rst:7 msgid "Tshepang Mbambo" msgstr "" -#: ../../howto/argparse.rst:11 -msgid "" -"This tutorial is intended to be a gentle introduction to :mod:`argparse`, " -"the recommended command-line parsing module in the Python standard library." +msgid "This tutorial is intended to be a gentle introduction to :mod:`argparse`, the recommended command-line parsing module in the Python standard library." +msgstr "" + +msgid "The standard library includes two other libraries directly related to command-line parameter processing: the lower level :mod:`optparse` module (which may require more code to configure for a given application, but also allows an application to request behaviors that ``argparse`` doesn't support), and the very low level :mod:`getopt` (which specifically serves as an equivalent to the :c:func:`!getopt` family of functions available to C programmers). While neither of those modules is covered directly in this guide, many of the core concepts in ``argparse`` first originated in ``optparse``, so some aspects of this tutorial will also be relevant to ``optparse`` users." msgstr "" -#: ../../howto/argparse.rst:16 -msgid "" -"The standard library includes two other libraries directly related to " -"command-line parameter processing: the lower level :mod:`optparse` module " -"(which may require more code to configure for a given application, but also " -"allows an application to request behaviors that ``argparse`` doesn't " -"support), and the very low level :mod:`getopt` (which specifically serves as " -"an equivalent to the :c:func:`!getopt` family of functions available to C " -"programmers). While neither of those modules is covered directly in this " -"guide, many of the core concepts in ``argparse`` first originated in " -"``optparse``, so some aspects of this tutorial will also be relevant to " -"``optparse`` users." -msgstr "" - -#: ../../howto/argparse.rst:29 msgid "Concepts" msgstr "" -#: ../../howto/argparse.rst:31 -msgid "" -"Let's show the sort of functionality that we are going to explore in this " -"introductory tutorial by making use of the :command:`ls` command:" +msgid "Let's show the sort of functionality that we are going to explore in this introductory tutorial by making use of the :command:`ls` command:" msgstr "" -#: ../../howto/argparse.rst:34 msgid "" "$ ls\n" "cpython devguide prog.py pypy rm-unused-function.patch\n" @@ -86,63 +64,36 @@ msgid "" "..." msgstr "" -#: ../../howto/argparse.rst:53 msgid "A few concepts we can learn from the four commands:" msgstr "" -#: ../../howto/argparse.rst:55 -msgid "" -"The :command:`ls` command is useful when run without any options at all. It " -"defaults to displaying the contents of the current directory." +msgid "The :command:`ls` command is useful when run without any options at all. It defaults to displaying the contents of the current directory." msgstr "" -#: ../../howto/argparse.rst:58 -msgid "" -"If we want beyond what it provides by default, we tell it a bit more. In " -"this case, we want it to display a different directory, ``pypy``. What we " -"did is specify what is known as a positional argument. It's named so because " -"the program should know what to do with the value, solely based on where it " -"appears on the command line. This concept is more relevant to a command " -"like :command:`cp`, whose most basic usage is ``cp SRC DEST``. The first " -"position is *what you want copied,* and the second position is *where you " -"want it copied to*." +msgid "If we want beyond what it provides by default, we tell it a bit more. In this case, we want it to display a different directory, ``pypy``. What we did is specify what is known as a positional argument. It's named so because the program should know what to do with the value, solely based on where it appears on the command line. This concept is more relevant to a command like :command:`cp`, whose most basic usage is ``cp SRC DEST``. The first position is *what you want copied,* and the second position is *where you want it copied to*." msgstr "" -#: ../../howto/argparse.rst:67 -msgid "" -"Now, say we want to change behaviour of the program. In our example, we " -"display more info for each file instead of just showing the file names. The " -"``-l`` in that case is known as an optional argument." +msgid "Now, say we want to change behaviour of the program. In our example, we display more info for each file instead of just showing the file names. The ``-l`` in that case is known as an optional argument." msgstr "" -#: ../../howto/argparse.rst:71 -msgid "" -"That's a snippet of the help text. It's very useful in that you can come " -"across a program you have never used before, and can figure out how it works " -"simply by reading its help text." +msgid "That's a snippet of the help text. It's very useful in that you can come across a program you have never used before, and can figure out how it works simply by reading its help text." msgstr "" -#: ../../howto/argparse.rst:77 msgid "The basics" msgstr "" -#: ../../howto/argparse.rst:79 msgid "Let us start with a very simple example which does (almost) nothing::" msgstr "" -#: ../../howto/argparse.rst:81 msgid "" "import argparse\n" "parser = argparse.ArgumentParser()\n" "parser.parse_args()" msgstr "" -#: ../../howto/argparse.rst:85 ../../howto/argparse.rst:193 -#: ../../howto/argparse.rst:214 msgid "Following is a result of running the code:" msgstr "" -#: ../../howto/argparse.rst:87 msgid "" "$ python prog.py\n" "$ python prog.py --help\n" @@ -158,40 +109,24 @@ msgid "" "prog.py: error: unrecognized arguments: foo" msgstr "" -#: ../../howto/argparse.rst:102 ../../howto/argparse.rst:259 -#: ../../howto/argparse.rst:303 msgid "Here is what is happening:" msgstr "" -#: ../../howto/argparse.rst:104 -msgid "" -"Running the script without any options results in nothing displayed to " -"stdout. Not so useful." +msgid "Running the script without any options results in nothing displayed to stdout. Not so useful." msgstr "" -#: ../../howto/argparse.rst:107 -msgid "" -"The second one starts to display the usefulness of the :mod:`argparse` " -"module. We have done almost nothing, but already we get a nice help message." +msgid "The second one starts to display the usefulness of the :mod:`argparse` module. We have done almost nothing, but already we get a nice help message." msgstr "" -#: ../../howto/argparse.rst:110 -msgid "" -"The ``--help`` option, which can also be shortened to ``-h``, is the only " -"option we get for free (i.e. no need to specify it). Specifying anything " -"else results in an error. But even then, we do get a useful usage message, " -"also for free." +msgid "The ``--help`` option, which can also be shortened to ``-h``, is the only option we get for free (i.e. no need to specify it). Specifying anything else results in an error. But even then, we do get a useful usage message, also for free." msgstr "" -#: ../../howto/argparse.rst:117 msgid "Introducing Positional arguments" msgstr "" -#: ../../howto/argparse.rst:119 msgid "An example::" msgstr "" -#: ../../howto/argparse.rst:121 msgid "" "import argparse\n" "parser = argparse.ArgumentParser()\n" @@ -200,11 +135,9 @@ msgid "" "print(args.echo)" msgstr "" -#: ../../howto/argparse.rst:127 msgid "And running the code:" msgstr "" -#: ../../howto/argparse.rst:129 msgid "" "$ python prog.py\n" "usage: prog.py [-h] echo\n" @@ -221,46 +154,24 @@ msgid "" "foo" msgstr "" -#: ../../howto/argparse.rst:145 msgid "Here is what's happening:" msgstr "" -#: ../../howto/argparse.rst:147 -msgid "" -"We've added the :meth:`~ArgumentParser.add_argument` method, which is what " -"we use to specify which command-line options the program is willing to " -"accept. In this case, I've named it ``echo`` so that it's in line with its " -"function." +msgid "We've added the :meth:`~ArgumentParser.add_argument` method, which is what we use to specify which command-line options the program is willing to accept. In this case, I've named it ``echo`` so that it's in line with its function." msgstr "" -#: ../../howto/argparse.rst:151 msgid "Calling our program now requires us to specify an option." msgstr "" -#: ../../howto/argparse.rst:153 -msgid "" -"The :meth:`~ArgumentParser.parse_args` method actually returns some data " -"from the options specified, in this case, ``echo``." +msgid "The :meth:`~ArgumentParser.parse_args` method actually returns some data from the options specified, in this case, ``echo``." msgstr "" -#: ../../howto/argparse.rst:156 -msgid "" -"The variable is some form of 'magic' that :mod:`argparse` performs for free " -"(i.e. no need to specify which variable that value is stored in). You will " -"also notice that its name matches the string argument given to the method, " -"``echo``." +msgid "The variable is some form of 'magic' that :mod:`argparse` performs for free (i.e. no need to specify which variable that value is stored in). You will also notice that its name matches the string argument given to the method, ``echo``." msgstr "" -#: ../../howto/argparse.rst:161 -msgid "" -"Note however that, although the help display looks nice and all, it " -"currently is not as helpful as it can be. For example we see that we got " -"``echo`` as a positional argument, but we don't know what it does, other " -"than by guessing or by reading the source code. So, let's make it a bit more " -"useful::" +msgid "Note however that, although the help display looks nice and all, it currently is not as helpful as it can be. For example we see that we got ``echo`` as a positional argument, but we don't know what it does, other than by guessing or by reading the source code. So, let's make it a bit more useful::" msgstr "" -#: ../../howto/argparse.rst:166 msgid "" "import argparse\n" "parser = argparse.ArgumentParser()\n" @@ -269,11 +180,9 @@ msgid "" "print(args.echo)" msgstr "" -#: ../../howto/argparse.rst:172 msgid "And we get:" msgstr "" -#: ../../howto/argparse.rst:174 msgid "" "$ python prog.py -h\n" "usage: prog.py [-h] echo\n" @@ -285,21 +194,17 @@ msgid "" " -h, --help show this help message and exit" msgstr "" -#: ../../howto/argparse.rst:185 msgid "Now, how about doing something even more useful::" msgstr "" -#: ../../howto/argparse.rst:187 msgid "" "import argparse\n" "parser = argparse.ArgumentParser()\n" -"parser.add_argument(\"square\", help=\"display a square of a given " -"number\")\n" +"parser.add_argument(\"square\", help=\"display a square of a given number\")\n" "args = parser.parse_args()\n" "print(args.square**2)" msgstr "" -#: ../../howto/argparse.rst:195 msgid "" "$ python prog.py 4\n" "Traceback (most recent call last):\n" @@ -308,25 +213,18 @@ msgid "" "TypeError: unsupported operand type(s) for ** or pow(): 'str' and 'int'" msgstr "" -#: ../../howto/argparse.rst:203 -msgid "" -"That didn't go so well. That's because :mod:`argparse` treats the options we " -"give it as strings, unless we tell it otherwise. So, let's " -"tell :mod:`argparse` to treat that input as an integer::" +msgid "That didn't go so well. That's because :mod:`argparse` treats the options we give it as strings, unless we tell it otherwise. So, let's tell :mod:`argparse` to treat that input as an integer::" msgstr "" -#: ../../howto/argparse.rst:207 msgid "" "import argparse\n" "parser = argparse.ArgumentParser()\n" -"parser.add_argument(\"square\", help=\"display a square of a given " -"number\",\n" +"parser.add_argument(\"square\", help=\"display a square of a given number\",\n" " type=int)\n" "args = parser.parse_args()\n" "print(args.square**2)" msgstr "" -#: ../../howto/argparse.rst:216 msgid "" "$ python prog.py 4\n" "16\n" @@ -335,23 +233,15 @@ msgid "" "prog.py: error: argument square: invalid int value: 'four'" msgstr "" -#: ../../howto/argparse.rst:224 -msgid "" -"That went well. The program now even helpfully quits on bad illegal input " -"before proceeding." +msgid "That went well. The program now even helpfully quits on bad illegal input before proceeding." msgstr "" -#: ../../howto/argparse.rst:229 msgid "Introducing Optional arguments" msgstr "" -#: ../../howto/argparse.rst:231 -msgid "" -"So far we have been playing with positional arguments. Let us have a look on " -"how to add optional ones::" +msgid "So far we have been playing with positional arguments. Let us have a look on how to add optional ones::" msgstr "" -#: ../../howto/argparse.rst:234 msgid "" "import argparse\n" "parser = argparse.ArgumentParser()\n" @@ -361,12 +251,9 @@ msgid "" " print(\"verbosity turned on\")" msgstr "" -#: ../../howto/argparse.rst:241 ../../howto/argparse.rst:287 -#: ../../howto/argparse.rst:403 ../../howto/argparse.rst:437 msgid "And the output:" msgstr "" -#: ../../howto/argparse.rst:243 msgid "" "$ python prog.py --verbosity 1\n" "verbosity turned on\n" @@ -383,39 +270,21 @@ msgid "" "prog.py: error: argument --verbosity: expected one argument" msgstr "" -#: ../../howto/argparse.rst:261 -msgid "" -"The program is written so as to display something when ``--verbosity`` is " -"specified and display nothing when not." +msgid "The program is written so as to display something when ``--verbosity`` is specified and display nothing when not." msgstr "" -#: ../../howto/argparse.rst:264 -msgid "" -"To show that the option is actually optional, there is no error when running " -"the program without it. Note that by default, if an optional argument isn't " -"used, the relevant variable, in this case ``args.verbosity``, is given " -"``None`` as a value, which is the reason it fails the truth test of " -"the :keyword:`if` statement." +msgid "To show that the option is actually optional, there is no error when running the program without it. Note that by default, if an optional argument isn't used, the relevant variable, in this case ``args.verbosity``, is given ``None`` as a value, which is the reason it fails the truth test of the :keyword:`if` statement." msgstr "" -#: ../../howto/argparse.rst:270 msgid "The help message is a bit different." msgstr "" -#: ../../howto/argparse.rst:272 -msgid "" -"When using the ``--verbosity`` option, one must also specify some value, any " -"value." +msgid "When using the ``--verbosity`` option, one must also specify some value, any value." msgstr "" -#: ../../howto/argparse.rst:275 -msgid "" -"The above example accepts arbitrary integer values for ``--verbosity``, but " -"for our simple program, only two values are actually useful, ``True`` or " -"``False``. Let's modify the code accordingly::" +msgid "The above example accepts arbitrary integer values for ``--verbosity``, but for our simple program, only two values are actually useful, ``True`` or ``False``. Let's modify the code accordingly::" msgstr "" -#: ../../howto/argparse.rst:279 msgid "" "import argparse\n" "parser = argparse.ArgumentParser()\n" @@ -426,7 +295,6 @@ msgid "" " print(\"verbosity turned on\")" msgstr "" -#: ../../howto/argparse.rst:289 msgid "" "$ python prog.py --verbose\n" "verbosity turned on\n" @@ -441,53 +309,34 @@ msgid "" " --verbose increase output verbosity" msgstr "" -#: ../../howto/argparse.rst:305 -msgid "" -"The option is now more of a flag than something that requires a value. We " -"even changed the name of the option to match that idea. Note that we now " -"specify a new keyword, ``action``, and give it the value ``\"store_true\"``. " -"This means that, if the option is specified, assign the value ``True`` to " -"``args.verbose``. Not specifying it implies ``False``." +msgid "The option is now more of a flag than something that requires a value. We even changed the name of the option to match that idea. Note that we now specify a new keyword, ``action``, and give it the value ``\"store_true\"``. This means that, if the option is specified, assign the value ``True`` to ``args.verbose``. Not specifying it implies ``False``." msgstr "" -#: ../../howto/argparse.rst:312 -msgid "" -"It complains when you specify a value, in true spirit of what flags actually " -"are." +msgid "It complains when you specify a value, in true spirit of what flags actually are." msgstr "" -#: ../../howto/argparse.rst:315 msgid "Notice the different help text." msgstr "" -#: ../../howto/argparse.rst:319 msgid "Short options" msgstr "" -#: ../../howto/argparse.rst:321 -msgid "" -"If you are familiar with command line usage, you will notice that I haven't " -"yet touched on the topic of short versions of the options. It's quite " -"simple::" +msgid "If you are familiar with command line usage, you will notice that I haven't yet touched on the topic of short versions of the options. It's quite simple::" msgstr "" -#: ../../howto/argparse.rst:325 msgid "" "import argparse\n" "parser = argparse.ArgumentParser()\n" -"parser.add_argument(\"-v\", \"--verbose\", help=\"increase output " -"verbosity\",\n" +"parser.add_argument(\"-v\", \"--verbose\", help=\"increase output verbosity\",\n" " action=\"store_true\")\n" "args = parser.parse_args()\n" "if args.verbose:\n" " print(\"verbosity turned on\")" msgstr "" -#: ../../howto/argparse.rst:333 msgid "And here goes:" msgstr "" -#: ../../howto/argparse.rst:335 msgid "" "$ python prog.py -v\n" "verbosity turned on\n" @@ -499,19 +348,15 @@ msgid "" " -v, --verbose increase output verbosity" msgstr "" -#: ../../howto/argparse.rst:346 msgid "Note that the new ability is also reflected in the help text." msgstr "" -#: ../../howto/argparse.rst:350 msgid "Combining Positional and Optional arguments" msgstr "" -#: ../../howto/argparse.rst:352 msgid "Our program keeps growing in complexity::" msgstr "" -#: ../../howto/argparse.rst:354 msgid "" "import argparse\n" "parser = argparse.ArgumentParser()\n" @@ -527,11 +372,9 @@ msgid "" " print(answer)" msgstr "" -#: ../../howto/argparse.rst:367 msgid "And now the output:" msgstr "" -#: ../../howto/argparse.rst:369 msgid "" "$ python prog.py\n" "usage: prog.py [-h] [-v] square\n" @@ -544,21 +387,15 @@ msgid "" "the square of 4 equals 16" msgstr "" -#: ../../howto/argparse.rst:381 msgid "We've brought back a positional argument, hence the complaint." msgstr "" -#: ../../howto/argparse.rst:383 msgid "Note that the order does not matter." msgstr "" -#: ../../howto/argparse.rst:385 -msgid "" -"How about we give this program of ours back the ability to have multiple " -"verbosity values, and actually get to use them::" +msgid "How about we give this program of ours back the ability to have multiple verbosity values, and actually get to use them::" msgstr "" -#: ../../howto/argparse.rst:388 msgid "" "import argparse\n" "parser = argparse.ArgumentParser()\n" @@ -576,7 +413,6 @@ msgid "" " print(answer)" msgstr "" -#: ../../howto/argparse.rst:405 msgid "" "$ python prog.py 4\n" "16\n" @@ -591,14 +427,9 @@ msgid "" "16" msgstr "" -#: ../../howto/argparse.rst:419 -msgid "" -"These all look good except the last one, which exposes a bug in our program. " -"Let's fix it by restricting the values the ``--verbosity`` option can " -"accept::" +msgid "These all look good except the last one, which exposes a bug in our program. Let's fix it by restricting the values the ``--verbosity`` option can accept::" msgstr "" -#: ../../howto/argparse.rst:422 msgid "" "import argparse\n" "parser = argparse.ArgumentParser()\n" @@ -616,12 +447,10 @@ msgid "" " print(answer)" msgstr "" -#: ../../howto/argparse.rst:439 msgid "" "$ python prog.py 4 -v 3\n" "usage: prog.py [-h] [-v {0,1,2}] square\n" -"prog.py: error: argument -v/--verbosity: invalid choice: 3 (choose from 0, " -"1, 2)\n" +"prog.py: error: argument -v/--verbosity: invalid choice: 3 (choose from 0, 1, 2)\n" "$ python prog.py 4 -h\n" "usage: prog.py [-h] [-v {0,1,2}] square\n" "\n" @@ -634,20 +463,12 @@ msgid "" " increase output verbosity" msgstr "" -#: ../../howto/argparse.rst:455 -msgid "" -"Note that the change also reflects both in the error message as well as the " -"help string." +msgid "Note that the change also reflects both in the error message as well as the help string." msgstr "" -#: ../../howto/argparse.rst:458 -msgid "" -"Now, let's use a different approach of playing with verbosity, which is " -"pretty common. It also matches the way the CPython executable handles its " -"own verbosity argument (check the output of ``python --help``)::" +msgid "Now, let's use a different approach of playing with verbosity, which is pretty common. It also matches the way the CPython executable handles its own verbosity argument (check the output of ``python --help``)::" msgstr "" -#: ../../howto/argparse.rst:462 msgid "" "import argparse\n" "parser = argparse.ArgumentParser()\n" @@ -665,13 +486,9 @@ msgid "" " print(answer)" msgstr "" -#: ../../howto/argparse.rst:477 -msgid "" -"We have introduced another action, \"count\", to count the number of " -"occurrences of specific options." +msgid "We have introduced another action, \"count\", to count the number of occurrences of specific options." msgstr "" -#: ../../howto/argparse.rst:481 msgid "" "$ python prog.py 4\n" "16\n" @@ -697,50 +514,30 @@ msgid "" "16" msgstr "" -#: ../../howto/argparse.rst:506 -msgid "" -"Yes, it's now more of a flag (similar to ``action=\"store_true\"``) in the " -"previous version of our script. That should explain the complaint." +msgid "Yes, it's now more of a flag (similar to ``action=\"store_true\"``) in the previous version of our script. That should explain the complaint." msgstr "" -#: ../../howto/argparse.rst:509 msgid "It also behaves similar to \"store_true\" action." msgstr "" -#: ../../howto/argparse.rst:511 -msgid "" -"Now here's a demonstration of what the \"count\" action gives. You've " -"probably seen this sort of usage before." +msgid "Now here's a demonstration of what the \"count\" action gives. You've probably seen this sort of usage before." msgstr "" -#: ../../howto/argparse.rst:514 -msgid "" -"And if you don't specify the ``-v`` flag, that flag is considered to have " -"``None`` value." +msgid "And if you don't specify the ``-v`` flag, that flag is considered to have ``None`` value." msgstr "" -#: ../../howto/argparse.rst:517 -msgid "" -"As should be expected, specifying the long form of the flag, we should get " -"the same output." +msgid "As should be expected, specifying the long form of the flag, we should get the same output." msgstr "" -#: ../../howto/argparse.rst:520 -msgid "" -"Sadly, our help output isn't very informative on the new ability our script " -"has acquired, but that can always be fixed by improving the documentation " -"for our script (e.g. via the ``help`` keyword argument)." +msgid "Sadly, our help output isn't very informative on the new ability our script has acquired, but that can always be fixed by improving the documentation for our script (e.g. via the ``help`` keyword argument)." msgstr "" -#: ../../howto/argparse.rst:524 msgid "That last output exposes a bug in our program." msgstr "" -#: ../../howto/argparse.rst:527 msgid "Let's fix::" msgstr "" -#: ../../howto/argparse.rst:529 msgid "" "import argparse\n" "parser = argparse.ArgumentParser()\n" @@ -760,11 +557,9 @@ msgid "" " print(answer)" msgstr "" -#: ../../howto/argparse.rst:546 msgid "And this is what it gives:" msgstr "" -#: ../../howto/argparse.rst:548 msgid "" "$ python prog.py 4 -vvv\n" "the square of 4 equals 16\n" @@ -777,21 +572,15 @@ msgid "" "TypeError: '>=' not supported between instances of 'NoneType' and 'int'" msgstr "" -#: ../../howto/argparse.rst:561 -msgid "" -"First output went well, and fixes the bug we had before. That is, we want " -"any value >= 2 to be as verbose as possible." +msgid "First output went well, and fixes the bug we had before. That is, we want any value >= 2 to be as verbose as possible." msgstr "" -#: ../../howto/argparse.rst:564 msgid "Third output not so good." msgstr "" -#: ../../howto/argparse.rst:566 msgid "Let's fix that bug::" msgstr "" -#: ../../howto/argparse.rst:568 msgid "" "import argparse\n" "parser = argparse.ArgumentParser()\n" @@ -809,43 +598,26 @@ msgid "" " print(answer)" msgstr "" -#: ../../howto/argparse.rst:583 -msgid "" -"We've just introduced yet another keyword, ``default``. We've set it to " -"``0`` in order to make it comparable to the other int values. Remember that " -"by default, if an optional argument isn't specified, it gets the ``None`` " -"value, and that cannot be compared to an int value (hence " -"the :exc:`TypeError` exception)." +msgid "We've just introduced yet another keyword, ``default``. We've set it to ``0`` in order to make it comparable to the other int values. Remember that by default, if an optional argument isn't specified, it gets the ``None`` value, and that cannot be compared to an int value (hence the :exc:`TypeError` exception)." msgstr "" -#: ../../howto/argparse.rst:590 msgid "And:" msgstr "" -#: ../../howto/argparse.rst:592 msgid "" "$ python prog.py 4\n" "16" msgstr "" -#: ../../howto/argparse.rst:597 -msgid "" -"You can go quite far just with what we've learned so far, and we have only " -"scratched the surface. The :mod:`argparse` module is very powerful, and " -"we'll explore a bit more of it before we end this tutorial." +msgid "You can go quite far just with what we've learned so far, and we have only scratched the surface. The :mod:`argparse` module is very powerful, and we'll explore a bit more of it before we end this tutorial." msgstr "" -#: ../../howto/argparse.rst:604 msgid "Getting a little more advanced" msgstr "" -#: ../../howto/argparse.rst:606 -msgid "" -"What if we wanted to expand our tiny program to perform other powers, not " -"just squares::" +msgid "What if we wanted to expand our tiny program to perform other powers, not just squares::" msgstr "" -#: ../../howto/argparse.rst:609 msgid "" "import argparse\n" "parser = argparse.ArgumentParser()\n" @@ -862,12 +634,9 @@ msgid "" " print(answer)" msgstr "" -#: ../../howto/argparse.rst:623 ../../howto/argparse.rst:661 -#: ../../howto/argparse.rst:877 msgid "Output:" msgstr "" -#: ../../howto/argparse.rst:625 msgid "" "$ python prog.py\n" "usage: prog.py [-h] [-v] x y\n" @@ -886,14 +655,9 @@ msgid "" "4^2 == 16" msgstr "" -#: ../../howto/argparse.rst:644 -msgid "" -"Notice that so far we've been using verbosity level to *change* the text " -"that gets displayed. The following example instead uses verbosity level to " -"display *more* text instead::" +msgid "Notice that so far we've been using verbosity level to *change* the text that gets displayed. The following example instead uses verbosity level to display *more* text instead::" msgstr "" -#: ../../howto/argparse.rst:648 msgid "" "import argparse\n" "parser = argparse.ArgumentParser()\n" @@ -909,7 +673,6 @@ msgid "" "print(answer)" msgstr "" -#: ../../howto/argparse.rst:663 msgid "" "$ python prog.py 4 2\n" "16\n" @@ -920,18 +683,12 @@ msgid "" "4^2 == 16" msgstr "" -#: ../../howto/argparse.rst:677 msgid "Specifying ambiguous arguments" msgstr "" -#: ../../howto/argparse.rst:679 -msgid "" -"When there is ambiguity in deciding whether an argument is positional or for " -"an argument, ``--`` can be used to tell :meth:`~ArgumentParser.parse_args` " -"that everything after that is a positional argument::" +msgid "When there is ambiguity in deciding whether an argument is positional or for an argument, ``--`` can be used to tell :meth:`~ArgumentParser.parse_args` that everything after that is a positional argument::" msgstr "" -#: ../../howto/argparse.rst:683 msgid "" ">>> parser = argparse.ArgumentParser(prog='PROG')\n" ">>> parser.add_argument('-n', nargs='+')\n" @@ -953,22 +710,12 @@ msgid "" "Namespace(args=['2', '3'], n=['1'])" msgstr "" -#: ../../howto/argparse.rst:704 msgid "Conflicting options" msgstr "" -#: ../../howto/argparse.rst:706 -msgid "" -"So far, we have been working with two methods of " -"an :class:`argparse.ArgumentParser` instance. Let's introduce a third " -"one, :meth:`~ArgumentParser.add_mutually_exclusive_group`. It allows for us " -"to specify options that conflict with each other. Let's also change the rest " -"of the program so that the new functionality makes more sense: we'll " -"introduce the ``--quiet`` option, which will be the opposite of the ``--" -"verbose`` one::" +msgid "So far, we have been working with two methods of an :class:`argparse.ArgumentParser` instance. Let's introduce a third one, :meth:`~ArgumentParser.add_mutually_exclusive_group`. It allows for us to specify options that conflict with each other. Let's also change the rest of the program so that the new functionality makes more sense: we'll introduce the ``--quiet`` option, which will be the opposite of the ``--verbose`` one::" msgstr "" -#: ../../howto/argparse.rst:714 msgid "" "import argparse\n" "\n" @@ -989,13 +736,9 @@ msgid "" " print(f\"{args.x}^{args.y} == {answer}\")" msgstr "" -#: ../../howto/argparse.rst:732 -msgid "" -"Our program is now simpler, and we've lost some functionality for the sake " -"of demonstration. Anyways, here's the output:" +msgid "Our program is now simpler, and we've lost some functionality for the sake of demonstration. Anyways, here's the output:" msgstr "" -#: ../../howto/argparse.rst:735 msgid "" "$ python prog.py 4 2\n" "4^2 == 16\n" @@ -1011,25 +754,16 @@ msgid "" "prog.py: error: argument -q/--quiet: not allowed with argument -v/--verbose" msgstr "" -#: ../../howto/argparse.rst:750 -msgid "" -"That should be easy to follow. I've added that last output so you can see " -"the sort of flexibility you get, i.e. mixing long form options with short " -"form ones." +msgid "That should be easy to follow. I've added that last output so you can see the sort of flexibility you get, i.e. mixing long form options with short form ones." msgstr "" -#: ../../howto/argparse.rst:754 -msgid "" -"Before we conclude, you probably want to tell your users the main purpose of " -"your program, just in case they don't know::" +msgid "Before we conclude, you probably want to tell your users the main purpose of your program, just in case they don't know::" msgstr "" -#: ../../howto/argparse.rst:757 msgid "" "import argparse\n" "\n" -"parser = argparse.ArgumentParser(description=\"calculate X to the power of " -"Y\")\n" +"parser = argparse.ArgumentParser(description=\"calculate X to the power of Y\")\n" "group = parser.add_mutually_exclusive_group()\n" "group.add_argument(\"-v\", \"--verbose\", action=\"store_true\")\n" "group.add_argument(\"-q\", \"--quiet\", action=\"store_true\")\n" @@ -1046,14 +780,9 @@ msgid "" " print(f\"{args.x}^{args.y} == {answer}\")" msgstr "" -#: ../../howto/argparse.rst:775 -msgid "" -"Note that slight difference in the usage text. Note the ``[-v | -q]``, which " -"tells us that we can either use ``-v`` or ``-q``, but not both at the same " -"time:" +msgid "Note that slight difference in the usage text. Note the ``[-v | -q]``, which tells us that we can either use ``-v`` or ``-q``, but not both at the same time:" msgstr "" -#: ../../howto/argparse.rst:779 ../../howto/argparse.rst:806 msgid "" "$ python prog.py --help\n" "usage: prog.py [-h] [-v | -q] x y\n" @@ -1070,98 +799,53 @@ msgid "" " -q, --quiet" msgstr "" -#: ../../howto/argparse.rst:797 msgid "How to translate the argparse output" msgstr "" -#: ../../howto/argparse.rst:799 -msgid "" -"The output of the :mod:`argparse` module such as its help text and error " -"messages are all made translatable using the :mod:`gettext` module. This " -"allows applications to easily localize messages produced by :mod:`argparse`. " -"See also :ref:`i18n-howto`." +msgid "The output of the :mod:`argparse` module such as its help text and error messages are all made translatable using the :mod:`gettext` module. This allows applications to easily localize messages produced by :mod:`argparse`. See also :ref:`i18n-howto`." msgstr "" -#: ../../howto/argparse.rst:804 msgid "For instance, in this :mod:`argparse` output:" msgstr "" -#: ../../howto/argparse.rst:822 -msgid "" -"The strings ``usage:``, ``positional arguments:``, ``options:`` and ``show " -"this help message and exit`` are all translatable." +msgid "The strings ``usage:``, ``positional arguments:``, ``options:`` and ``show this help message and exit`` are all translatable." msgstr "" -#: ../../howto/argparse.rst:825 -msgid "" -"In order to translate these strings, they must first be extracted into a " -"``.po`` file. For example, using `Babel `__, run " -"this command:" +msgid "In order to translate these strings, they must first be extracted into a ``.po`` file. For example, using `Babel `__, run this command:" msgstr "" -#: ../../howto/argparse.rst:829 msgid "$ pybabel extract -o messages.po /usr/lib/python3.12/argparse.py" msgstr "" -#: ../../howto/argparse.rst:833 -msgid "" -"This command will extract all translatable strings from the :mod:`argparse` " -"module and output them into a file named ``messages.po``. This command " -"assumes that your Python installation is in ``/usr/lib``." +msgid "This command will extract all translatable strings from the :mod:`argparse` module and output them into a file named ``messages.po``. This command assumes that your Python installation is in ``/usr/lib``." msgstr "" -#: ../../howto/argparse.rst:837 -msgid "" -"You can find out the location of the :mod:`argparse` module on your system " -"using this script::" +msgid "You can find out the location of the :mod:`argparse` module on your system using this script::" msgstr "" -#: ../../howto/argparse.rst:840 msgid "" "import argparse\n" "print(argparse.__file__)" msgstr "" -#: ../../howto/argparse.rst:843 -msgid "" -"Once the messages in the ``.po`` file are translated and the translations " -"are installed using :mod:`gettext`, :mod:`argparse` will be able to display " -"the translated messages." +msgid "Once the messages in the ``.po`` file are translated and the translations are installed using :mod:`gettext`, :mod:`argparse` will be able to display the translated messages." msgstr "" -#: ../../howto/argparse.rst:847 -msgid "" -"To translate your own strings in the :mod:`argparse` output, " -"use :mod:`gettext`." +msgid "To translate your own strings in the :mod:`argparse` output, use :mod:`gettext`." msgstr "" -#: ../../howto/argparse.rst:850 msgid "Custom type converters" msgstr "" -#: ../../howto/argparse.rst:852 -msgid "" -"The :mod:`argparse` module allows you to specify custom type converters for " -"your command-line arguments. This allows you to modify user input before " -"it's stored in the :class:`argparse.Namespace`. This can be useful when you " -"need to pre-process the input before it is used in your program." +msgid "The :mod:`argparse` module allows you to specify custom type converters for your command-line arguments. This allows you to modify user input before it's stored in the :class:`argparse.Namespace`. This can be useful when you need to pre-process the input before it is used in your program." msgstr "" -#: ../../howto/argparse.rst:857 -msgid "" -"When using a custom type converter, you can use any callable that takes a " -"single string argument (the argument value) and returns the converted value. " -"However, if you need to handle more complex scenarios, you can use a custom " -"action class with the **action** parameter instead." +msgid "When using a custom type converter, you can use any callable that takes a single string argument (the argument value) and returns the converted value. However, if you need to handle more complex scenarios, you can use a custom action class with the **action** parameter instead." msgstr "" -#: ../../howto/argparse.rst:862 -msgid "" -"For example, let's say you want to handle arguments with different prefixes " -"and process them accordingly::" +msgid "For example, let's say you want to handle arguments with different prefixes and process them accordingly::" msgstr "" -#: ../../howto/argparse.rst:865 msgid "" "import argparse\n" "\n" @@ -1176,44 +860,25 @@ msgid "" "print(args)" msgstr "" -#: ../../howto/argparse.rst:879 msgid "" "$ python prog.py -a value1 +a value2\n" "Namespace(a=[('-', 'value1'), ('+', 'value2')])" msgstr "" -#: ../../howto/argparse.rst:884 msgid "In this example, we:" msgstr "" -#: ../../howto/argparse.rst:886 -msgid "" -"Created a parser with custom prefix characters using the ``prefix_chars`` " -"parameter." +msgid "Created a parser with custom prefix characters using the ``prefix_chars`` parameter." msgstr "" -#: ../../howto/argparse.rst:889 -msgid "" -"Defined two arguments, ``-a`` and ``+a``, which used the ``type`` parameter " -"to create custom type converters to store the value in a tuple with the " -"prefix." +msgid "Defined two arguments, ``-a`` and ``+a``, which used the ``type`` parameter to create custom type converters to store the value in a tuple with the prefix." msgstr "" -#: ../../howto/argparse.rst:892 -msgid "" -"Without the custom type converters, the arguments would have treated the ``-" -"a`` and ``+a`` as the same argument, which would have been undesirable. By " -"using custom type converters, we were able to differentiate between the two " -"arguments." +msgid "Without the custom type converters, the arguments would have treated the ``-a`` and ``+a`` as the same argument, which would have been undesirable. By using custom type converters, we were able to differentiate between the two arguments." msgstr "" -#: ../../howto/argparse.rst:897 msgid "Conclusion" msgstr "" -#: ../../howto/argparse.rst:899 -msgid "" -"The :mod:`argparse` module offers a lot more than shown here. Its docs are " -"quite detailed and thorough, and full of examples. Having gone through this " -"tutorial, you should easily digest them without feeling overwhelmed." +msgid "The :mod:`argparse` module offers a lot more than shown here. Its docs are quite detailed and thorough, and full of examples. Having gone through this tutorial, you should easily digest them without feeling overwhelmed." msgstr "" diff --git a/howto/clinic.po b/howto/clinic.po index b76c9d52..3ae078fc 100644 --- a/howto/clinic.po +++ b/howto/clinic.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:52+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,12 +23,8 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../howto/clinic.rst:8 msgid "Argument Clinic How-To" msgstr "" -#: ../../howto/clinic.rst:13 -msgid "" -"The Argument Clinic How-TO has been moved to the `Python Developer's Guide " -"`__." +msgid "The Argument Clinic How-TO has been moved to the `Python Developer's Guide `__." msgstr "" diff --git a/howto/cporting.po b/howto/cporting.po index f28700aa..eefa4d00 100644 --- a/howto/cporting.po +++ b/howto/cporting.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:52+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,33 +21,17 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../howto/cporting.rst:7 msgid "Porting Extension Modules to Python 3" msgstr "" -#: ../../howto/cporting.rst:9 -msgid "" -"We recommend the following resources for porting extension modules to Python " -"3:" +msgid "We recommend the following resources for porting extension modules to Python 3:" msgstr "" -#: ../../howto/cporting.rst:11 -msgid "" -"The `Migrating C extensions`_ chapter from *Supporting Python 3: An in-depth " -"guide*, a book on moving from Python 2 to Python 3 in general, guides the " -"reader through porting an extension module." +msgid "The `Migrating C extensions`_ chapter from *Supporting Python 3: An in-depth guide*, a book on moving from Python 2 to Python 3 in general, guides the reader through porting an extension module." msgstr "" -#: ../../howto/cporting.rst:15 -msgid "" -"The `Porting guide`_ from the *py3c* project provides opinionated " -"suggestions with supporting code." +msgid "The `Porting guide`_ from the *py3c* project provides opinionated suggestions with supporting code." msgstr "" -#: ../../howto/cporting.rst:17 -msgid "" -":ref:`Recommended third party tools ` offer abstractions over " -"the Python's C API. Extensions generally need to be re-written to use one of " -"them, but the library then handles differences between various Python " -"versions and implementations." +msgid ":ref:`Recommended third party tools ` offer abstractions over the Python's C API. Extensions generally need to be re-written to use one of them, but the library then handles differences between various Python versions and implementations." msgstr "" diff --git a/howto/curses.po b/howto/curses.po index 9c89e3d2..94c94c12 100644 --- a/howto/curses.po +++ b/howto/curses.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:53+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,212 +24,104 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../howto/curses.rst:5 msgid "Curses Programming with Python" msgstr "" -#: ../../howto/curses.rst:0 msgid "Author" msgstr "" -#: ../../howto/curses.rst:9 msgid "A.M. Kuchling, Eric S. Raymond" msgstr "" -#: ../../howto/curses.rst:0 msgid "Release" msgstr "" -#: ../../howto/curses.rst:10 msgid "2.04" msgstr "" -#: ../../howto/curses.rst:-1 msgid "Abstract" msgstr "" -#: ../../howto/curses.rst:15 -msgid "" -"This document describes how to use the :mod:`curses` extension module to " -"control text-mode displays." +msgid "This document describes how to use the :mod:`curses` extension module to control text-mode displays." msgstr "" -#: ../../howto/curses.rst:20 msgid "What is curses?" msgstr "" -#: ../../howto/curses.rst:22 -msgid "" -"The curses library supplies a terminal-independent screen-painting and " -"keyboard-handling facility for text-based terminals; such terminals include " -"VT100s, the Linux console, and the simulated terminal provided by various " -"programs. Display terminals support various control codes to perform common " -"operations such as moving the cursor, scrolling the screen, and erasing " -"areas. Different terminals use widely differing codes, and often have their " -"own minor quirks." +msgid "The curses library supplies a terminal-independent screen-painting and keyboard-handling facility for text-based terminals; such terminals include VT100s, the Linux console, and the simulated terminal provided by various programs. Display terminals support various control codes to perform common operations such as moving the cursor, scrolling the screen, and erasing areas. Different terminals use widely differing codes, and often have their own minor quirks." msgstr "" -#: ../../howto/curses.rst:30 -msgid "" -"In a world of graphical displays, one might ask \"why bother\"? It's true " -"that character-cell display terminals are an obsolete technology, but there " -"are niches in which being able to do fancy things with them are still " -"valuable. One niche is on small-footprint or embedded Unixes that don't run " -"an X server. Another is tools such as OS installers and kernel " -"configurators that may have to run before any graphical support is available." +msgid "In a world of graphical displays, one might ask \"why bother\"? It's true that character-cell display terminals are an obsolete technology, but there are niches in which being able to do fancy things with them are still valuable. One niche is on small-footprint or embedded Unixes that don't run an X server. Another is tools such as OS installers and kernel configurators that may have to run before any graphical support is available." msgstr "" -#: ../../howto/curses.rst:38 -msgid "" -"The curses library provides fairly basic functionality, providing the " -"programmer with an abstraction of a display containing multiple non-" -"overlapping windows of text. The contents of a window can be changed in " -"various ways---adding text, erasing it, changing its appearance---and the " -"curses library will figure out what control codes need to be sent to the " -"terminal to produce the right output. curses doesn't provide many user-" -"interface concepts such as buttons, checkboxes, or dialogs; if you need such " -"features, consider a user interface library such as :pypi:`Urwid`." +msgid "The curses library provides fairly basic functionality, providing the programmer with an abstraction of a display containing multiple non-overlapping windows of text. The contents of a window can be changed in various ways---adding text, erasing it, changing its appearance---and the curses library will figure out what control codes need to be sent to the terminal to produce the right output. curses doesn't provide many user-interface concepts such as buttons, checkboxes, or dialogs; if you need such features, consider a user interface library such as :pypi:`Urwid`." msgstr "" -#: ../../howto/curses.rst:48 -msgid "" -"The curses library was originally written for BSD Unix; the later System V " -"versions of Unix from AT&T added many enhancements and new functions. BSD " -"curses is no longer maintained, having been replaced by ncurses, which is an " -"open-source implementation of the AT&T interface. If you're using an open-" -"source Unix such as Linux or FreeBSD, your system almost certainly uses " -"ncurses. Since most current commercial Unix versions are based on System V " -"code, all the functions described here will probably be available. The " -"older versions of curses carried by some proprietary Unixes may not support " -"everything, though." -msgstr "" - -#: ../../howto/curses.rst:58 -msgid "" -"The Windows version of Python doesn't include the :mod:`curses` module. The " -"third-party :pypi:`windows-curses` package provides the same interface on " -"Windows." +msgid "The curses library was originally written for BSD Unix; the later System V versions of Unix from AT&T added many enhancements and new functions. BSD curses is no longer maintained, having been replaced by ncurses, which is an open-source implementation of the AT&T interface. If you're using an open-source Unix such as Linux or FreeBSD, your system almost certainly uses ncurses. Since most current commercial Unix versions are based on System V code, all the functions described here will probably be available. The older versions of curses carried by some proprietary Unixes may not support everything, though." +msgstr "" + +msgid "The Windows version of Python doesn't include the :mod:`curses` module. The third-party :pypi:`windows-curses` package provides the same interface on Windows." msgstr "" -#: ../../howto/curses.rst:63 msgid "The Python curses module" msgstr "" -#: ../../howto/curses.rst:65 -msgid "" -"The Python module is a fairly simple wrapper over the C functions provided " -"by curses; if you're already familiar with curses programming in C, it's " -"really easy to transfer that knowledge to Python. The biggest difference is " -"that the Python interface makes things simpler by merging different C " -"functions such as :c:func:`!addstr`, :c:func:`!mvaddstr`, and :c:func:`!" -"mvwaddstr` into a single :meth:`~curses.window.addstr` method. You'll see " -"this covered in more detail later." +msgid "The Python module is a fairly simple wrapper over the C functions provided by curses; if you're already familiar with curses programming in C, it's really easy to transfer that knowledge to Python. The biggest difference is that the Python interface makes things simpler by merging different C functions such as :c:func:`!addstr`, :c:func:`!mvaddstr`, and :c:func:`!mvwaddstr` into a single :meth:`~curses.window.addstr` method. You'll see this covered in more detail later." msgstr "" -#: ../../howto/curses.rst:73 -msgid "" -"This HOWTO is an introduction to writing text-mode programs with curses and " -"Python. It doesn't attempt to be a complete guide to the curses API; for " -"that, see the Python library guide's section on ncurses, and the C manual " -"pages for ncurses. It will, however, give you the basic ideas." +msgid "This HOWTO is an introduction to writing text-mode programs with curses and Python. It doesn't attempt to be a complete guide to the curses API; for that, see the Python library guide's section on ncurses, and the C manual pages for ncurses. It will, however, give you the basic ideas." msgstr "" -#: ../../howto/curses.rst:80 msgid "Starting and ending a curses application" msgstr "" -#: ../../howto/curses.rst:82 -msgid "" -"Before doing anything, curses must be initialized. This is done by calling " -"the :func:`~curses.initscr` function, which will determine the terminal " -"type, send any required setup codes to the terminal, and create various " -"internal data structures. If successful, :func:`!initscr` returns a window " -"object representing the entire screen; this is usually called ``stdscr`` " -"after the name of the corresponding C variable. ::" +msgid "Before doing anything, curses must be initialized. This is done by calling the :func:`~curses.initscr` function, which will determine the terminal type, send any required setup codes to the terminal, and create various internal data structures. If successful, :func:`!initscr` returns a window object representing the entire screen; this is usually called ``stdscr`` after the name of the corresponding C variable. ::" msgstr "" -#: ../../howto/curses.rst:90 msgid "" "import curses\n" "stdscr = curses.initscr()" msgstr "" -#: ../../howto/curses.rst:93 -msgid "" -"Usually curses applications turn off automatic echoing of keys to the " -"screen, in order to be able to read keys and only display them under certain " -"circumstances. This requires calling the :func:`~curses.noecho` function. ::" +msgid "Usually curses applications turn off automatic echoing of keys to the screen, in order to be able to read keys and only display them under certain circumstances. This requires calling the :func:`~curses.noecho` function. ::" msgstr "" -#: ../../howto/curses.rst:98 msgid "curses.noecho()" msgstr "" -#: ../../howto/curses.rst:100 -msgid "" -"Applications will also commonly need to react to keys instantly, without " -"requiring the Enter key to be pressed; this is called cbreak mode, as " -"opposed to the usual buffered input mode. ::" +msgid "Applications will also commonly need to react to keys instantly, without requiring the Enter key to be pressed; this is called cbreak mode, as opposed to the usual buffered input mode. ::" msgstr "" -#: ../../howto/curses.rst:104 msgid "curses.cbreak()" msgstr "" -#: ../../howto/curses.rst:106 -msgid "" -"Terminals usually return special keys, such as the cursor keys or navigation " -"keys such as Page Up and Home, as a multibyte escape sequence. While you " -"could write your application to expect such sequences and process them " -"accordingly, curses can do it for you, returning a special value such " -"as :const:`curses.KEY_LEFT`. To get curses to do the job, you'll have to " -"enable keypad mode. ::" +msgid "Terminals usually return special keys, such as the cursor keys or navigation keys such as Page Up and Home, as a multibyte escape sequence. While you could write your application to expect such sequences and process them accordingly, curses can do it for you, returning a special value such as :const:`curses.KEY_LEFT`. To get curses to do the job, you'll have to enable keypad mode. ::" msgstr "" -#: ../../howto/curses.rst:113 msgid "stdscr.keypad(True)" msgstr "" -#: ../../howto/curses.rst:115 -msgid "" -"Terminating a curses application is much easier than starting one. You'll " -"need to call::" +msgid "Terminating a curses application is much easier than starting one. You'll need to call::" msgstr "" -#: ../../howto/curses.rst:118 msgid "" "curses.nocbreak()\n" "stdscr.keypad(False)\n" "curses.echo()" msgstr "" -#: ../../howto/curses.rst:122 -msgid "" -"to reverse the curses-friendly terminal settings. Then call " -"the :func:`~curses.endwin` function to restore the terminal to its original " -"operating mode. ::" +msgid "to reverse the curses-friendly terminal settings. Then call the :func:`~curses.endwin` function to restore the terminal to its original operating mode. ::" msgstr "" -#: ../../howto/curses.rst:126 msgid "curses.endwin()" msgstr "" -#: ../../howto/curses.rst:128 -msgid "" -"A common problem when debugging a curses application is to get your terminal " -"messed up when the application dies without restoring the terminal to its " -"previous state. In Python this commonly happens when your code is buggy and " -"raises an uncaught exception. Keys are no longer echoed to the screen when " -"you type them, for example, which makes using the shell difficult." +msgid "A common problem when debugging a curses application is to get your terminal messed up when the application dies without restoring the terminal to its previous state. In Python this commonly happens when your code is buggy and raises an uncaught exception. Keys are no longer echoed to the screen when you type them, for example, which makes using the shell difficult." msgstr "" -#: ../../howto/curses.rst:134 -msgid "" -"In Python you can avoid these complications and make debugging much easier " -"by importing the :func:`curses.wrapper` function and using it like this::" +msgid "In Python you can avoid these complications and make debugging much easier by importing the :func:`curses.wrapper` function and using it like this::" msgstr "" -#: ../../howto/curses.rst:137 msgid "" "from curses import wrapper\n" "\n" @@ -248,104 +140,42 @@ msgid "" "wrapper(main)" msgstr "" -#: ../../howto/curses.rst:153 -msgid "" -"The :func:`~curses.wrapper` function takes a callable object and does the " -"initializations described above, also initializing colors if color support " -"is present. :func:`!wrapper` then runs your provided callable. Once the " -"callable returns, :func:`!wrapper` will restore the original state of the " -"terminal. The callable is called inside a :keyword:`try`..." -"\\ :keyword:`except` that catches exceptions, restores the state of the " -"terminal, and then re-raises the exception. Therefore your terminal won't " -"be left in a funny state on exception and you'll be able to read the " -"exception's message and traceback." -msgstr "" - -#: ../../howto/curses.rst:165 +msgid "The :func:`~curses.wrapper` function takes a callable object and does the initializations described above, also initializing colors if color support is present. :func:`!wrapper` then runs your provided callable. Once the callable returns, :func:`!wrapper` will restore the original state of the terminal. The callable is called inside a :keyword:`try`...\\ :keyword:`except` that catches exceptions, restores the state of the terminal, and then re-raises the exception. Therefore your terminal won't be left in a funny state on exception and you'll be able to read the exception's message and traceback." +msgstr "" + msgid "Windows and Pads" msgstr "" -#: ../../howto/curses.rst:167 -msgid "" -"Windows are the basic abstraction in curses. A window object represents a " -"rectangular area of the screen, and supports methods to display text, erase " -"it, allow the user to input strings, and so forth." +msgid "Windows are the basic abstraction in curses. A window object represents a rectangular area of the screen, and supports methods to display text, erase it, allow the user to input strings, and so forth." msgstr "" -#: ../../howto/curses.rst:171 -msgid "" -"The ``stdscr`` object returned by the :func:`~curses.initscr` function is a " -"window object that covers the entire screen. Many programs may need only " -"this single window, but you might wish to divide the screen into smaller " -"windows, in order to redraw or clear them separately. " -"The :func:`~curses.newwin` function creates a new window of a given size, " -"returning the new window object. ::" +msgid "The ``stdscr`` object returned by the :func:`~curses.initscr` function is a window object that covers the entire screen. Many programs may need only this single window, but you might wish to divide the screen into smaller windows, in order to redraw or clear them separately. The :func:`~curses.newwin` function creates a new window of a given size, returning the new window object. ::" msgstr "" -#: ../../howto/curses.rst:178 msgid "" "begin_x = 20; begin_y = 7\n" "height = 5; width = 40\n" "win = curses.newwin(height, width, begin_y, begin_x)" msgstr "" -#: ../../howto/curses.rst:182 -msgid "" -"Note that the coordinate system used in curses is unusual. Coordinates are " -"always passed in the order *y,x*, and the top-left corner of a window is " -"coordinate (0,0). This breaks the normal convention for handling " -"coordinates where the *x* coordinate comes first. This is an unfortunate " -"difference from most other computer applications, but it's been part of " -"curses since it was first written, and it's too late to change things now." +msgid "Note that the coordinate system used in curses is unusual. Coordinates are always passed in the order *y,x*, and the top-left corner of a window is coordinate (0,0). This breaks the normal convention for handling coordinates where the *x* coordinate comes first. This is an unfortunate difference from most other computer applications, but it's been part of curses since it was first written, and it's too late to change things now." msgstr "" -#: ../../howto/curses.rst:190 -msgid "" -"Your application can determine the size of the screen by using " -"the :data:`curses.LINES` and :data:`curses.COLS` variables to obtain the *y* " -"and *x* sizes. Legal coordinates will then extend from ``(0,0)`` to " -"``(curses.LINES - 1, curses.COLS - 1)``." +msgid "Your application can determine the size of the screen by using the :data:`curses.LINES` and :data:`curses.COLS` variables to obtain the *y* and *x* sizes. Legal coordinates will then extend from ``(0,0)`` to ``(curses.LINES - 1, curses.COLS - 1)``." msgstr "" -#: ../../howto/curses.rst:195 -msgid "" -"When you call a method to display or erase text, the effect doesn't " -"immediately show up on the display. Instead you must call " -"the :meth:`~curses.window.refresh` method of window objects to update the " -"screen." +msgid "When you call a method to display or erase text, the effect doesn't immediately show up on the display. Instead you must call the :meth:`~curses.window.refresh` method of window objects to update the screen." msgstr "" -#: ../../howto/curses.rst:200 -msgid "" -"This is because curses was originally written with slow 300-baud terminal " -"connections in mind; with these terminals, minimizing the time required to " -"redraw the screen was very important. Instead curses accumulates changes to " -"the screen and displays them in the most efficient manner when you " -"call :meth:`!refresh`. For example, if your program displays some text in a " -"window and then clears the window, there's no need to send the original text " -"because they're never visible." +msgid "This is because curses was originally written with slow 300-baud terminal connections in mind; with these terminals, minimizing the time required to redraw the screen was very important. Instead curses accumulates changes to the screen and displays them in the most efficient manner when you call :meth:`!refresh`. For example, if your program displays some text in a window and then clears the window, there's no need to send the original text because they're never visible." msgstr "" -#: ../../howto/curses.rst:209 -msgid "" -"In practice, explicitly telling curses to redraw a window doesn't really " -"complicate programming with curses much. Most programs go into a flurry of " -"activity, and then pause waiting for a keypress or some other action on the " -"part of the user. All you have to do is to be sure that the screen has been " -"redrawn before pausing to wait for user input, by first calling :meth:`!" -"stdscr.refresh` or the :meth:`!refresh` method of some other relevant window." +msgid "In practice, explicitly telling curses to redraw a window doesn't really complicate programming with curses much. Most programs go into a flurry of activity, and then pause waiting for a keypress or some other action on the part of the user. All you have to do is to be sure that the screen has been redrawn before pausing to wait for user input, by first calling :meth:`!stdscr.refresh` or the :meth:`!refresh` method of some other relevant window." msgstr "" -#: ../../howto/curses.rst:217 -msgid "" -"A pad is a special case of a window; it can be larger than the actual " -"display screen, and only a portion of the pad displayed at a time. Creating " -"a pad requires the pad's height and width, while refreshing a pad requires " -"giving the coordinates of the on-screen area where a subsection of the pad " -"will be displayed. ::" +msgid "A pad is a special case of a window; it can be larger than the actual display screen, and only a portion of the pad displayed at a time. Creating a pad requires the pad's height and width, while refreshing a pad requires giving the coordinates of the on-screen area where a subsection of the pad will be displayed. ::" msgstr "" -#: ../../howto/curses.rst:223 msgid "" "pad = curses.newpad(100, 100)\n" "# These loops fill the pad with letters; addch() is\n" @@ -363,391 +193,194 @@ msgid "" "pad.refresh( 0,0, 5,5, 20,75)" msgstr "" -#: ../../howto/curses.rst:238 -msgid "" -"The :meth:`!refresh` call displays a section of the pad in the rectangle " -"extending from coordinate (5,5) to coordinate (20,75) on the screen; the " -"upper left corner of the displayed section is coordinate (0,0) on the pad. " -"Beyond that difference, pads are exactly like ordinary windows and support " -"the same methods." +msgid "The :meth:`!refresh` call displays a section of the pad in the rectangle extending from coordinate (5,5) to coordinate (20,75) on the screen; the upper left corner of the displayed section is coordinate (0,0) on the pad. Beyond that difference, pads are exactly like ordinary windows and support the same methods." msgstr "" -#: ../../howto/curses.rst:244 -msgid "" -"If you have multiple windows and pads on screen there is a more efficient " -"way to update the screen and prevent annoying screen flicker as each part of " -"the screen gets updated. :meth:`!refresh` actually does two things:" +msgid "If you have multiple windows and pads on screen there is a more efficient way to update the screen and prevent annoying screen flicker as each part of the screen gets updated. :meth:`!refresh` actually does two things:" msgstr "" -#: ../../howto/curses.rst:249 -msgid "" -"Calls the :meth:`~curses.window.noutrefresh` method of each window to update " -"an underlying data structure representing the desired state of the screen." +msgid "Calls the :meth:`~curses.window.noutrefresh` method of each window to update an underlying data structure representing the desired state of the screen." msgstr "" -#: ../../howto/curses.rst:252 -msgid "" -"Calls the function :func:`~curses.doupdate` function to change the physical " -"screen to match the desired state recorded in the data structure." +msgid "Calls the function :func:`~curses.doupdate` function to change the physical screen to match the desired state recorded in the data structure." msgstr "" -#: ../../howto/curses.rst:255 -msgid "" -"Instead you can call :meth:`!noutrefresh` on a number of windows to update " -"the data structure, and then call :func:`!doupdate` to update the screen." +msgid "Instead you can call :meth:`!noutrefresh` on a number of windows to update the data structure, and then call :func:`!doupdate` to update the screen." msgstr "" -#: ../../howto/curses.rst:261 msgid "Displaying Text" msgstr "" -#: ../../howto/curses.rst:263 -msgid "" -"From a C programmer's point of view, curses may sometimes look like a twisty " -"maze of functions, all subtly different. For example, :c:func:`!addstr` " -"displays a string at the current cursor location in the ``stdscr`` window, " -"while :c:func:`!mvaddstr` moves to a given y,x coordinate first before " -"displaying the string. :c:func:`!waddstr` is just like :c:func:`!addstr`, " -"but allows specifying a window to use instead of using ``stdscr`` by " -"default. :c:func:`!mvwaddstr` allows specifying both a window and a " -"coordinate." +msgid "From a C programmer's point of view, curses may sometimes look like a twisty maze of functions, all subtly different. For example, :c:func:`!addstr` displays a string at the current cursor location in the ``stdscr`` window, while :c:func:`!mvaddstr` moves to a given y,x coordinate first before displaying the string. :c:func:`!waddstr` is just like :c:func:`!addstr`, but allows specifying a window to use instead of using ``stdscr`` by default. :c:func:`!mvwaddstr` allows specifying both a window and a coordinate." msgstr "" -#: ../../howto/curses.rst:272 -msgid "" -"Fortunately the Python interface hides all these details. ``stdscr`` is a " -"window object like any other, and methods such " -"as :meth:`~curses.window.addstr` accept multiple argument forms. Usually " -"there are four different forms." +msgid "Fortunately the Python interface hides all these details. ``stdscr`` is a window object like any other, and methods such as :meth:`~curses.window.addstr` accept multiple argument forms. Usually there are four different forms." msgstr "" -#: ../../howto/curses.rst:278 msgid "Form" msgstr "" -#: ../../howto/curses.rst:278 ../../howto/curses.rst:346 msgid "Description" msgstr "" -#: ../../howto/curses.rst:280 msgid "*str* or *ch*" msgstr "" -#: ../../howto/curses.rst:280 msgid "Display the string *str* or character *ch* at the current position" msgstr "" -#: ../../howto/curses.rst:283 msgid "*str* or *ch*, *attr*" msgstr "" -#: ../../howto/curses.rst:283 -msgid "" -"Display the string *str* or character *ch*, using attribute *attr* at the " -"current position" +msgid "Display the string *str* or character *ch*, using attribute *attr* at the current position" msgstr "" -#: ../../howto/curses.rst:287 msgid "*y*, *x*, *str* or *ch*" msgstr "" -#: ../../howto/curses.rst:287 msgid "Move to position *y,x* within the window, and display *str* or *ch*" msgstr "" -#: ../../howto/curses.rst:290 msgid "*y*, *x*, *str* or *ch*, *attr*" msgstr "" -#: ../../howto/curses.rst:290 -msgid "" -"Move to position *y,x* within the window, and display *str* or *ch*, using " -"attribute *attr*" +msgid "Move to position *y,x* within the window, and display *str* or *ch*, using attribute *attr*" msgstr "" -#: ../../howto/curses.rst:294 -msgid "" -"Attributes allow displaying text in highlighted forms such as boldface, " -"underline, reverse code, or in color. They'll be explained in more detail " -"in the next subsection." +msgid "Attributes allow displaying text in highlighted forms such as boldface, underline, reverse code, or in color. They'll be explained in more detail in the next subsection." msgstr "" -#: ../../howto/curses.rst:299 -msgid "" -"The :meth:`~curses.window.addstr` method takes a Python string or bytestring " -"as the value to be displayed. The contents of bytestrings are sent to the " -"terminal as-is. Strings are encoded to bytes using the value of the " -"window's :attr:`~window.encoding` attribute; this defaults to the default " -"system encoding as returned by :func:`locale.getencoding`." +msgid "The :meth:`~curses.window.addstr` method takes a Python string or bytestring as the value to be displayed. The contents of bytestrings are sent to the terminal as-is. Strings are encoded to bytes using the value of the window's :attr:`~window.encoding` attribute; this defaults to the default system encoding as returned by :func:`locale.getencoding`." msgstr "" -#: ../../howto/curses.rst:305 -msgid "" -"The :meth:`~curses.window.addch` methods take a character, which can be " -"either a string of length 1, a bytestring of length 1, or an integer." +msgid "The :meth:`~curses.window.addch` methods take a character, which can be either a string of length 1, a bytestring of length 1, or an integer." msgstr "" -#: ../../howto/curses.rst:308 -msgid "" -"Constants are provided for extension characters; these constants are " -"integers greater than 255. For example, :const:`ACS_PLMINUS` is a +/- " -"symbol, and :const:`ACS_ULCORNER` is the upper left corner of a box (handy " -"for drawing borders). You can also use the appropriate Unicode character." +msgid "Constants are provided for extension characters; these constants are integers greater than 255. For example, :const:`ACS_PLMINUS` is a +/- symbol, and :const:`ACS_ULCORNER` is the upper left corner of a box (handy for drawing borders). You can also use the appropriate Unicode character." msgstr "" -#: ../../howto/curses.rst:314 -msgid "" -"Windows remember where the cursor was left after the last operation, so if " -"you leave out the *y,x* coordinates, the string or character will be " -"displayed wherever the last operation left off. You can also move the " -"cursor with the ``move(y,x)`` method. Because some terminals always display " -"a flashing cursor, you may want to ensure that the cursor is positioned in " -"some location where it won't be distracting; it can be confusing to have the " -"cursor blinking at some apparently random location." +msgid "Windows remember where the cursor was left after the last operation, so if you leave out the *y,x* coordinates, the string or character will be displayed wherever the last operation left off. You can also move the cursor with the ``move(y,x)`` method. Because some terminals always display a flashing cursor, you may want to ensure that the cursor is positioned in some location where it won't be distracting; it can be confusing to have the cursor blinking at some apparently random location." msgstr "" -#: ../../howto/curses.rst:322 -msgid "" -"If your application doesn't need a blinking cursor at all, you can call " -"``curs_set(False)`` to make it invisible. For compatibility with older " -"curses versions, there's a ``leaveok(bool)`` function that's a synonym " -"for :func:`~curses.curs_set`. When *bool* is true, the curses library will " -"attempt to suppress the flashing cursor, and you won't need to worry about " -"leaving it in odd locations." +msgid "If your application doesn't need a blinking cursor at all, you can call ``curs_set(False)`` to make it invisible. For compatibility with older curses versions, there's a ``leaveok(bool)`` function that's a synonym for :func:`~curses.curs_set`. When *bool* is true, the curses library will attempt to suppress the flashing cursor, and you won't need to worry about leaving it in odd locations." msgstr "" -#: ../../howto/curses.rst:331 msgid "Attributes and Color" msgstr "" -#: ../../howto/curses.rst:333 -msgid "" -"Characters can be displayed in different ways. Status lines in a text-based " -"application are commonly shown in reverse video, or a text viewer may need " -"to highlight certain words. curses supports this by allowing you to specify " -"an attribute for each cell on the screen." +msgid "Characters can be displayed in different ways. Status lines in a text-based application are commonly shown in reverse video, or a text viewer may need to highlight certain words. curses supports this by allowing you to specify an attribute for each cell on the screen." msgstr "" -#: ../../howto/curses.rst:338 -msgid "" -"An attribute is an integer, each bit representing a different attribute. " -"You can try to display text with multiple attribute bits set, but curses " -"doesn't guarantee that all the possible combinations are available, or that " -"they're all visually distinct. That depends on the ability of the terminal " -"being used, so it's safest to stick to the most commonly available " -"attributes, listed here." +msgid "An attribute is an integer, each bit representing a different attribute. You can try to display text with multiple attribute bits set, but curses doesn't guarantee that all the possible combinations are available, or that they're all visually distinct. That depends on the ability of the terminal being used, so it's safest to stick to the most commonly available attributes, listed here." msgstr "" -#: ../../howto/curses.rst:346 msgid "Attribute" msgstr "" -#: ../../howto/curses.rst:348 msgid ":const:`A_BLINK`" msgstr "" -#: ../../howto/curses.rst:348 msgid "Blinking text" msgstr "" -#: ../../howto/curses.rst:350 msgid ":const:`A_BOLD`" msgstr "" -#: ../../howto/curses.rst:350 msgid "Extra bright or bold text" msgstr "" -#: ../../howto/curses.rst:352 msgid ":const:`A_DIM`" msgstr "" -#: ../../howto/curses.rst:352 msgid "Half bright text" msgstr "" -#: ../../howto/curses.rst:354 msgid ":const:`A_REVERSE`" msgstr "" -#: ../../howto/curses.rst:354 msgid "Reverse-video text" msgstr "" -#: ../../howto/curses.rst:356 msgid ":const:`A_STANDOUT`" msgstr "" -#: ../../howto/curses.rst:356 msgid "The best highlighting mode available" msgstr "" -#: ../../howto/curses.rst:358 msgid ":const:`A_UNDERLINE`" msgstr "" -#: ../../howto/curses.rst:358 msgid "Underlined text" msgstr "" -#: ../../howto/curses.rst:361 -msgid "" -"So, to display a reverse-video status line on the top line of the screen, " -"you could code::" +msgid "So, to display a reverse-video status line on the top line of the screen, you could code::" msgstr "" -#: ../../howto/curses.rst:364 msgid "" "stdscr.addstr(0, 0, \"Current mode: Typing mode\",\n" " curses.A_REVERSE)\n" "stdscr.refresh()" msgstr "" -#: ../../howto/curses.rst:368 -msgid "" -"The curses library also supports color on those terminals that provide it. " -"The most common such terminal is probably the Linux console, followed by " -"color xterms." +msgid "The curses library also supports color on those terminals that provide it. The most common such terminal is probably the Linux console, followed by color xterms." msgstr "" -#: ../../howto/curses.rst:372 -msgid "" -"To use color, you must call the :func:`~curses.start_color` function soon " -"after calling :func:`~curses.initscr`, to initialize the default color set " -"(the :func:`curses.wrapper` function does this automatically). Once that's " -"done, the :func:`~curses.has_colors` function returns TRUE if the terminal " -"in use can actually display color. (Note: curses uses the American spelling " -"'color', instead of the Canadian/British spelling 'colour'. If you're used " -"to the British spelling, you'll have to resign yourself to misspelling it " -"for the sake of these functions.)" +msgid "To use color, you must call the :func:`~curses.start_color` function soon after calling :func:`~curses.initscr`, to initialize the default color set (the :func:`curses.wrapper` function does this automatically). Once that's done, the :func:`~curses.has_colors` function returns TRUE if the terminal in use can actually display color. (Note: curses uses the American spelling 'color', instead of the Canadian/British spelling 'colour'. If you're used to the British spelling, you'll have to resign yourself to misspelling it for the sake of these functions.)" msgstr "" -#: ../../howto/curses.rst:382 -msgid "" -"The curses library maintains a finite number of color pairs, containing a " -"foreground (or text) color and a background color. You can get the " -"attribute value corresponding to a color pair with " -"the :func:`~curses.color_pair` function; this can be bitwise-OR'ed with " -"other attributes such as :const:`A_REVERSE`, but again, such combinations " -"are not guaranteed to work on all terminals." +msgid "The curses library maintains a finite number of color pairs, containing a foreground (or text) color and a background color. You can get the attribute value corresponding to a color pair with the :func:`~curses.color_pair` function; this can be bitwise-OR'ed with other attributes such as :const:`A_REVERSE`, but again, such combinations are not guaranteed to work on all terminals." msgstr "" -#: ../../howto/curses.rst:389 msgid "An example, which displays a line of text using color pair 1::" msgstr "" -#: ../../howto/curses.rst:391 msgid "" "stdscr.addstr(\"Pretty text\", curses.color_pair(1))\n" "stdscr.refresh()" msgstr "" -#: ../../howto/curses.rst:394 -msgid "" -"As I said before, a color pair consists of a foreground and background " -"color. The ``init_pair(n, f, b)`` function changes the definition of color " -"pair *n*, to foreground color f and background color b. Color pair 0 is " -"hard-wired to white on black, and cannot be changed." +msgid "As I said before, a color pair consists of a foreground and background color. The ``init_pair(n, f, b)`` function changes the definition of color pair *n*, to foreground color f and background color b. Color pair 0 is hard-wired to white on black, and cannot be changed." msgstr "" -#: ../../howto/curses.rst:399 -msgid "" -"Colors are numbered, and :func:`start_color` initializes 8 basic colors when " -"it activates color mode. They are: 0:black, 1:red, 2:green, 3:yellow, " -"4:blue, 5:magenta, 6:cyan, and 7:white. The :mod:`curses` module defines " -"named constants for each of these " -"colors: :const:`curses.COLOR_BLACK`, :const:`curses.COLOR_RED`, and so forth." +msgid "Colors are numbered, and :func:`start_color` initializes 8 basic colors when it activates color mode. They are: 0:black, 1:red, 2:green, 3:yellow, 4:blue, 5:magenta, 6:cyan, and 7:white. The :mod:`curses` module defines named constants for each of these colors: :const:`curses.COLOR_BLACK`, :const:`curses.COLOR_RED`, and so forth." msgstr "" -#: ../../howto/curses.rst:405 -msgid "" -"Let's put all this together. To change color 1 to red text on a white " -"background, you would call::" +msgid "Let's put all this together. To change color 1 to red text on a white background, you would call::" msgstr "" -#: ../../howto/curses.rst:408 msgid "curses.init_pair(1, curses.COLOR_RED, curses.COLOR_WHITE)" msgstr "" -#: ../../howto/curses.rst:410 -msgid "" -"When you change a color pair, any text already displayed using that color " -"pair will change to the new colors. You can also display new text in this " -"color with::" +msgid "When you change a color pair, any text already displayed using that color pair will change to the new colors. You can also display new text in this color with::" msgstr "" -#: ../../howto/curses.rst:414 msgid "stdscr.addstr(0,0, \"RED ALERT!\", curses.color_pair(1))" msgstr "" -#: ../../howto/curses.rst:416 -msgid "" -"Very fancy terminals can change the definitions of the actual colors to a " -"given RGB value. This lets you change color 1, which is usually red, to " -"purple or blue or any other color you like. Unfortunately, the Linux " -"console doesn't support this, so I'm unable to try it out, and can't provide " -"any examples. You can check if your terminal can do this by " -"calling :func:`~curses.can_change_color`, which returns ``True`` if the " -"capability is there. If you're lucky enough to have such a talented " -"terminal, consult your system's man pages for more information." +msgid "Very fancy terminals can change the definitions of the actual colors to a given RGB value. This lets you change color 1, which is usually red, to purple or blue or any other color you like. Unfortunately, the Linux console doesn't support this, so I'm unable to try it out, and can't provide any examples. You can check if your terminal can do this by calling :func:`~curses.can_change_color`, which returns ``True`` if the capability is there. If you're lucky enough to have such a talented terminal, consult your system's man pages for more information." msgstr "" -#: ../../howto/curses.rst:427 msgid "User Input" msgstr "" -#: ../../howto/curses.rst:429 -msgid "" -"The C curses library offers only very simple input mechanisms. " -"Python's :mod:`curses` module adds a basic text-input widget. (Other " -"libraries such as :pypi:`Urwid` have more extensive collections of widgets.)" +msgid "The C curses library offers only very simple input mechanisms. Python's :mod:`curses` module adds a basic text-input widget. (Other libraries such as :pypi:`Urwid` have more extensive collections of widgets.)" msgstr "" -#: ../../howto/curses.rst:433 msgid "There are two methods for getting input from a window:" msgstr "" -#: ../../howto/curses.rst:435 -msgid "" -":meth:`~curses.window.getch` refreshes the screen and then waits for the " -"user to hit a key, displaying the key if :func:`~curses.echo` has been " -"called earlier. You can optionally specify a coordinate to which the cursor " -"should be moved before pausing." +msgid ":meth:`~curses.window.getch` refreshes the screen and then waits for the user to hit a key, displaying the key if :func:`~curses.echo` has been called earlier. You can optionally specify a coordinate to which the cursor should be moved before pausing." msgstr "" -#: ../../howto/curses.rst:440 -msgid "" -":meth:`~curses.window.getkey` does the same thing but converts the integer " -"to a string. Individual characters are returned as 1-character strings, and " -"special keys such as function keys return longer strings containing a key " -"name such as ``KEY_UP`` or ``^G``." +msgid ":meth:`~curses.window.getkey` does the same thing but converts the integer to a string. Individual characters are returned as 1-character strings, and special keys such as function keys return longer strings containing a key name such as ``KEY_UP`` or ``^G``." msgstr "" -#: ../../howto/curses.rst:445 -msgid "" -"It's possible to not wait for the user using " -"the :meth:`~curses.window.nodelay` window method. After " -"``nodelay(True)``, :meth:`!getch` and :meth:`!getkey` for the window become " -"non-blocking. To signal that no input is ready, :meth:`!getch` returns " -"``curses.ERR`` (a value of -1) and :meth:`!getkey` raises an exception. " -"There's also a :func:`~curses.halfdelay` function, which can be used to (in " -"effect) set a timer on each :meth:`!getch`; if no input becomes available " -"within a specified delay (measured in tenths of a second), curses raises an " -"exception." -msgstr "" - -#: ../../howto/curses.rst:455 -msgid "" -"The :meth:`!getch` method returns an integer; if it's between 0 and 255, it " -"represents the ASCII code of the key pressed. Values greater than 255 are " -"special keys such as Page Up, Home, or the cursor keys. You can compare the " -"value returned to constants such " -"as :const:`curses.KEY_PPAGE`, :const:`curses.KEY_HOME`, " -"or :const:`curses.KEY_LEFT`. The main loop of your program may look " -"something like this::" +msgid "It's possible to not wait for the user using the :meth:`~curses.window.nodelay` window method. After ``nodelay(True)``, :meth:`!getch` and :meth:`!getkey` for the window become non-blocking. To signal that no input is ready, :meth:`!getch` returns ``curses.ERR`` (a value of -1) and :meth:`!getkey` raises an exception. There's also a :func:`~curses.halfdelay` function, which can be used to (in effect) set a timer on each :meth:`!getch`; if no input becomes available within a specified delay (measured in tenths of a second), curses raises an exception." +msgstr "" + +msgid "The :meth:`!getch` method returns an integer; if it's between 0 and 255, it represents the ASCII code of the key pressed. Values greater than 255 are special keys such as Page Up, Home, or the cursor keys. You can compare the value returned to constants such as :const:`curses.KEY_PPAGE`, :const:`curses.KEY_HOME`, or :const:`curses.KEY_LEFT`. The main loop of your program may look something like this::" msgstr "" -#: ../../howto/curses.rst:462 msgid "" "while True:\n" " c = stdscr.getch()\n" @@ -759,26 +392,12 @@ msgid "" " x = y = 0" msgstr "" -#: ../../howto/curses.rst:471 -msgid "" -"The :mod:`curses.ascii` module supplies ASCII class membership functions " -"that take either integer or 1-character string arguments; these may be " -"useful in writing more readable tests for such loops. It also supplies " -"conversion functions that take either integer or 1-character-string " -"arguments and return the same type. For example, :func:`curses.ascii.ctrl` " -"returns the control character corresponding to its argument." +msgid "The :mod:`curses.ascii` module supplies ASCII class membership functions that take either integer or 1-character string arguments; these may be useful in writing more readable tests for such loops. It also supplies conversion functions that take either integer or 1-character-string arguments and return the same type. For example, :func:`curses.ascii.ctrl` returns the control character corresponding to its argument." msgstr "" -#: ../../howto/curses.rst:478 -msgid "" -"There's also a method to retrieve an entire " -"string, :meth:`~curses.window.getstr`. It isn't used very often, because " -"its functionality is quite limited; the only editing keys available are the " -"backspace key and the Enter key, which terminates the string. It can " -"optionally be limited to a fixed number of characters. ::" +msgid "There's also a method to retrieve an entire string, :meth:`~curses.window.getstr`. It isn't used very often, because its functionality is quite limited; the only editing keys available are the backspace key and the Enter key, which terminates the string. It can optionally be limited to a fixed number of characters. ::" msgstr "" -#: ../../howto/curses.rst:484 msgid "" "curses.echo() # Enable echoing of characters\n" "\n" @@ -786,16 +405,9 @@ msgid "" "s = stdscr.getstr(0,0, 15)" msgstr "" -#: ../../howto/curses.rst:489 -msgid "" -"The :mod:`curses.textpad` module supplies a text box that supports an Emacs-" -"like set of keybindings. Various methods of " -"the :class:`~curses.textpad.Textbox` class support editing with input " -"validation and gathering the edit results either with or without trailing " -"spaces. Here's an example::" +msgid "The :mod:`curses.textpad` module supplies a text box that supports an Emacs-like set of keybindings. Various methods of the :class:`~curses.textpad.Textbox` class support editing with input validation and gathering the edit results either with or without trailing spaces. Here's an example::" msgstr "" -#: ../../howto/curses.rst:495 msgid "" "import curses\n" "from curses.textpad import Textbox, rectangle\n" @@ -816,67 +428,32 @@ msgid "" " message = box.gather()" msgstr "" -#: ../../howto/curses.rst:513 -msgid "" -"See the library documentation on :mod:`curses.textpad` for more details." +msgid "See the library documentation on :mod:`curses.textpad` for more details." msgstr "" -#: ../../howto/curses.rst:517 msgid "For More Information" msgstr "" -#: ../../howto/curses.rst:519 -msgid "" -"This HOWTO doesn't cover some advanced topics, such as reading the contents " -"of the screen or capturing mouse events from an xterm instance, but the " -"Python library page for the :mod:`curses` module is now reasonably " -"complete. You should browse it next." +msgid "This HOWTO doesn't cover some advanced topics, such as reading the contents of the screen or capturing mouse events from an xterm instance, but the Python library page for the :mod:`curses` module is now reasonably complete. You should browse it next." msgstr "" -#: ../../howto/curses.rst:524 -msgid "" -"If you're in doubt about the detailed behavior of the curses functions, " -"consult the manual pages for your curses implementation, whether it's " -"ncurses or a proprietary Unix vendor's. The manual pages will document any " -"quirks, and provide complete lists of all the functions, attributes, " -"and :ref:`ACS_\\* ` characters available to you." +msgid "If you're in doubt about the detailed behavior of the curses functions, consult the manual pages for your curses implementation, whether it's ncurses or a proprietary Unix vendor's. The manual pages will document any quirks, and provide complete lists of all the functions, attributes, and :ref:`ACS_\\* ` characters available to you." msgstr "" -#: ../../howto/curses.rst:531 -msgid "" -"Because the curses API is so large, some functions aren't supported in the " -"Python interface. Often this isn't because they're difficult to implement, " -"but because no one has needed them yet. Also, Python doesn't yet support " -"the menu library associated with ncurses. Patches adding support for these " -"would be welcome; see `the Python Developer's Guide `_ to learn more about submitting patches to Python." +msgid "Because the curses API is so large, some functions aren't supported in the Python interface. Often this isn't because they're difficult to implement, but because no one has needed them yet. Also, Python doesn't yet support the menu library associated with ncurses. Patches adding support for these would be welcome; see `the Python Developer's Guide `_ to learn more about submitting patches to Python." msgstr "" -#: ../../howto/curses.rst:539 -msgid "" -"`Writing Programs with NCURSES `_: a lengthy tutorial for C programmers." +msgid "`Writing Programs with NCURSES `_: a lengthy tutorial for C programmers." msgstr "" -#: ../../howto/curses.rst:541 msgid "`The ncurses man page `_" msgstr "" -#: ../../howto/curses.rst:542 -msgid "" -"`The ncurses FAQ `_" +msgid "`The ncurses FAQ `_" msgstr "" -#: ../../howto/curses.rst:543 -msgid "" -"`\"Use curses... don't swear\" `_: video of a PyCon 2013 talk on controlling terminals using " -"curses or Urwid." +msgid "`\"Use curses... don't swear\" `_: video of a PyCon 2013 talk on controlling terminals using curses or Urwid." msgstr "" -#: ../../howto/curses.rst:545 -msgid "" -"`\"Console Applications with Urwid\" `_: video of a PyCon CA 2012 talk demonstrating some " -"applications written using Urwid." +msgid "`\"Console Applications with Urwid\" `_: video of a PyCon CA 2012 talk demonstrating some applications written using Urwid." msgstr "" diff --git a/howto/descriptor.po b/howto/descriptor.po index 76bb350e..bd41fb89 100644 --- a/howto/descriptor.po +++ b/howto/descriptor.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:53+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,115 +24,72 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../howto/descriptor.rst:5 msgid "Descriptor Guide" msgstr "" -#: ../../howto/descriptor.rst:0 msgid "Author" msgstr "" -#: ../../howto/descriptor.rst:7 msgid "Raymond Hettinger" msgstr "" -#: ../../howto/descriptor.rst:0 msgid "Contact" msgstr "" -#: ../../howto/descriptor.rst:8 msgid "" msgstr "" -#: ../../howto/descriptor.rst:11 msgid "Contents" msgstr "" -#: ../../howto/descriptor.rst:13 -msgid "" -":term:`Descriptors ` let objects customize attribute lookup, " -"storage, and deletion." +msgid ":term:`Descriptors ` let objects customize attribute lookup, storage, and deletion." msgstr "" -#: ../../howto/descriptor.rst:16 msgid "This guide has four major sections:" msgstr "" -#: ../../howto/descriptor.rst:18 -msgid "" -"The \"primer\" gives a basic overview, moving gently from simple examples, " -"adding one feature at a time. Start here if you're new to descriptors." +msgid "The \"primer\" gives a basic overview, moving gently from simple examples, adding one feature at a time. Start here if you're new to descriptors." msgstr "" -#: ../../howto/descriptor.rst:21 -msgid "" -"The second section shows a complete, practical descriptor example. If you " -"already know the basics, start there." +msgid "The second section shows a complete, practical descriptor example. If you already know the basics, start there." msgstr "" -#: ../../howto/descriptor.rst:24 -msgid "" -"The third section provides a more technical tutorial that goes into the " -"detailed mechanics of how descriptors work. Most people don't need this " -"level of detail." +msgid "The third section provides a more technical tutorial that goes into the detailed mechanics of how descriptors work. Most people don't need this level of detail." msgstr "" -#: ../../howto/descriptor.rst:28 -msgid "" -"The last section has pure Python equivalents for built-in descriptors that " -"are written in C. Read this if you're curious about how functions turn into " -"bound methods or about the implementation of common tools " -"like :deco:`classmethod`, :deco:`staticmethod`, :deco:`property`, " -"and :term:`__slots__`." +msgid "The last section has pure Python equivalents for built-in descriptors that are written in C. Read this if you're curious about how functions turn into bound methods or about the implementation of common tools like :deco:`classmethod`, :deco:`staticmethod`, :deco:`property`, and :term:`__slots__`." msgstr "" -#: ../../howto/descriptor.rst:36 msgid "Primer" msgstr "" -#: ../../howto/descriptor.rst:38 -msgid "" -"In this primer, we start with the most basic possible example and then we'll " -"add new capabilities one by one." +msgid "In this primer, we start with the most basic possible example and then we'll add new capabilities one by one." msgstr "" -#: ../../howto/descriptor.rst:43 msgid "Simple example: A descriptor that returns a constant" msgstr "" -#: ../../howto/descriptor.rst:45 -msgid "" -"The :class:`!Ten` class is a descriptor whose :meth:`~object.__get__` method " -"always returns the constant ``10``:" +msgid "The :class:`!Ten` class is a descriptor whose :meth:`~object.__get__` method always returns the constant ``10``:" msgstr "" -#: ../../howto/descriptor.rst:48 msgid "" "class Ten:\n" " def __get__(self, obj, objtype=None):\n" " return 10" msgstr "" -#: ../../howto/descriptor.rst:54 -msgid "" -"To use the descriptor, it must be stored as a class variable in another " -"class:" +msgid "To use the descriptor, it must be stored as a class variable in another class:" msgstr "" -#: ../../howto/descriptor.rst:56 msgid "" "class A:\n" " x = 5 # Regular class attribute\n" " y = Ten() # Descriptor instance" msgstr "" -#: ../../howto/descriptor.rst:62 -msgid "" -"An interactive session shows the difference between normal attribute lookup " -"and descriptor lookup:" +msgid "An interactive session shows the difference between normal attribute lookup and descriptor lookup:" msgstr "" -#: ../../howto/descriptor.rst:65 msgid "" ">>> a = A() # Make an instance of class A\n" ">>> a.x # Normal attribute lookup\n" @@ -141,42 +98,24 @@ msgid "" "10" msgstr "" -#: ../../howto/descriptor.rst:73 -msgid "" -"In the ``a.x`` attribute lookup, the dot operator finds ``'x': 5`` in the " -"class dictionary. In the ``a.y`` lookup, the dot operator finds a " -"descriptor instance, recognized by its ``__get__`` method. Calling that " -"method returns ``10``." +msgid "In the ``a.x`` attribute lookup, the dot operator finds ``'x': 5`` in the class dictionary. In the ``a.y`` lookup, the dot operator finds a descriptor instance, recognized by its ``__get__`` method. Calling that method returns ``10``." msgstr "" -#: ../../howto/descriptor.rst:78 -msgid "" -"Note that the value ``10`` is not stored in either the class dictionary or " -"the instance dictionary. Instead, the value ``10`` is computed on demand." +msgid "Note that the value ``10`` is not stored in either the class dictionary or the instance dictionary. Instead, the value ``10`` is computed on demand." msgstr "" -#: ../../howto/descriptor.rst:81 -msgid "" -"This example shows how a simple descriptor works, but it isn't very useful. " -"For retrieving constants, normal attribute lookup would be better." +msgid "This example shows how a simple descriptor works, but it isn't very useful. For retrieving constants, normal attribute lookup would be better." msgstr "" -#: ../../howto/descriptor.rst:84 -msgid "" -"In the next section, we'll create something more useful, a dynamic lookup." +msgid "In the next section, we'll create something more useful, a dynamic lookup." msgstr "" -#: ../../howto/descriptor.rst:88 msgid "Dynamic lookups" msgstr "" -#: ../../howto/descriptor.rst:90 -msgid "" -"Interesting descriptors typically run computations instead of returning " -"constants:" +msgid "Interesting descriptors typically run computations instead of returning constants:" msgstr "" -#: ../../howto/descriptor.rst:93 msgid "" "import os\n" "\n" @@ -193,60 +132,33 @@ msgid "" " self.dirname = dirname # Regular instance attribute" msgstr "" -#: ../../howto/descriptor.rst:109 -msgid "" -"An interactive session shows that the lookup is dynamic — it computes " -"different, updated answers each time::" +msgid "An interactive session shows that the lookup is dynamic — it computes different, updated answers each time::" msgstr "" -#: ../../howto/descriptor.rst:112 msgid "" ">>> s = Directory('songs')\n" ">>> g = Directory('games')\n" -">>> s.size # The songs directory has twenty " -"files\n" +">>> s.size # The songs directory has twenty files\n" "20\n" -">>> g.size # The games directory has three " -"files\n" +">>> g.size # The games directory has three files\n" "3\n" ">>> os.remove('games/chess') # Delete a game\n" -">>> g.size # File count is automatically " -"updated\n" +">>> g.size # File count is automatically updated\n" "2" msgstr "" -#: ../../howto/descriptor.rst:122 -msgid "" -"Besides showing how descriptors can run computations, this example also " -"reveals the purpose of the parameters to :meth:`~object.__get__`. The " -"*self* parameter is *size*, an instance of *DirectorySize*. The *obj* " -"parameter is either *g* or *s*, an instance of *Directory*. It is the *obj* " -"parameter that lets the :meth:`~object.__get__` method learn the target " -"directory. The *objtype* parameter is the class *Directory*." +msgid "Besides showing how descriptors can run computations, this example also reveals the purpose of the parameters to :meth:`~object.__get__`. The *self* parameter is *size*, an instance of *DirectorySize*. The *obj* parameter is either *g* or *s*, an instance of *Directory*. It is the *obj* parameter that lets the :meth:`~object.__get__` method learn the target directory. The *objtype* parameter is the class *Directory*." msgstr "" -#: ../../howto/descriptor.rst:131 msgid "Managed attributes" msgstr "" -#: ../../howto/descriptor.rst:133 -msgid "" -"A popular use for descriptors is managing access to instance data. The " -"descriptor is assigned to a public attribute in the class dictionary while " -"the actual data is stored as a private attribute in the instance " -"dictionary. The descriptor's :meth:`~object.__get__` " -"and :meth:`~object.__set__` methods are triggered when the public attribute " -"is accessed." +msgid "A popular use for descriptors is managing access to instance data. The descriptor is assigned to a public attribute in the class dictionary while the actual data is stored as a private attribute in the instance dictionary. The descriptor's :meth:`~object.__get__` and :meth:`~object.__set__` methods are triggered when the public attribute is accessed." msgstr "" -#: ../../howto/descriptor.rst:139 -msgid "" -"In the following example, *age* is the public attribute and *_age* is the " -"private attribute. When the public attribute is accessed, the descriptor " -"logs the lookup or update:" +msgid "In the following example, *age* is the public attribute and *_age* is the private attribute. When the public attribute is accessed, the descriptor logs the lookup or update:" msgstr "" -#: ../../howto/descriptor.rst:143 msgid "" "import logging\n" "\n" @@ -275,70 +187,46 @@ msgid "" " self.age += 1 # Calls both __get__() and __set__()" msgstr "" -#: ../../howto/descriptor.rst:172 -msgid "" -"An interactive session shows that all access to the managed attribute *age* " -"is logged, but that the regular attribute *name* is not logged:" +msgid "An interactive session shows that all access to the managed attribute *age* is logged, but that the regular attribute *name* is not logged:" msgstr "" -#: ../../howto/descriptor.rst:181 msgid "" ">>> mary = Person('Mary M', 30) # The initial age update is logged\n" "INFO:root:Updating 'age' to 30\n" ">>> dave = Person('David D', 40)\n" "INFO:root:Updating 'age' to 40\n" "\n" -">>> vars(mary) # The actual data is in a private " -"attribute\n" +">>> vars(mary) # The actual data is in a private attribute\n" "{'name': 'Mary M', '_age': 30}\n" ">>> vars(dave)\n" "{'name': 'David D', '_age': 40}\n" "\n" -">>> mary.age # Access the data and log the " -"lookup\n" +">>> mary.age # Access the data and log the lookup\n" "INFO:root:Accessing 'age' giving 30\n" "30\n" ">>> mary.birthday() # Updates are logged as well\n" "INFO:root:Accessing 'age' giving 30\n" "INFO:root:Updating 'age' to 31\n" "\n" -">>> dave.name # Regular attribute lookup isn't " -"logged\n" +">>> dave.name # Regular attribute lookup isn't logged\n" "'David D'\n" -">>> dave.age # Only the managed attribute is " -"logged\n" +">>> dave.age # Only the managed attribute is logged\n" "INFO:root:Accessing 'age' giving 40\n" "40" msgstr "" -#: ../../howto/descriptor.rst:206 -msgid "" -"One major issue with this example is that the private name *_age* is " -"hardwired in the *LoggedAgeAccess* class. That means that each instance can " -"only have one logged attribute and that its name is unchangeable. In the " -"next example, we'll fix that problem." +msgid "One major issue with this example is that the private name *_age* is hardwired in the *LoggedAgeAccess* class. That means that each instance can only have one logged attribute and that its name is unchangeable. In the next example, we'll fix that problem." msgstr "" -#: ../../howto/descriptor.rst:213 msgid "Customized names" msgstr "" -#: ../../howto/descriptor.rst:215 -msgid "" -"When a class uses descriptors, it can inform each descriptor about which " -"variable name was used." +msgid "When a class uses descriptors, it can inform each descriptor about which variable name was used." msgstr "" -#: ../../howto/descriptor.rst:218 -msgid "" -"In this example, the :class:`!Person` class has two descriptor instances, " -"*name* and *age*. When the :class:`!Person` class is defined, it makes a " -"callback to :meth:`~object.__set_name__` in *LoggedAccess* so that the field " -"names can be recorded, giving each descriptor its own *public_name* and " -"*private_name*:" +msgid "In this example, the :class:`!Person` class has two descriptor instances, *name* and *age*. When the :class:`!Person` class is defined, it makes a callback to :meth:`~object.__set_name__` in *LoggedAccess* so that the field names can be recorded, giving each descriptor its own *public_name* and *private_name*:" msgstr "" -#: ../../howto/descriptor.rst:223 msgid "" "import logging\n" "\n" @@ -372,15 +260,9 @@ msgid "" " self.age += 1" msgstr "" -#: ../../howto/descriptor.rst:256 -msgid "" -"An interactive session shows that the :class:`!Person` class has " -"called :meth:`~object.__set_name__` so that the field names would be " -"recorded. Here we call :func:`vars` to look up the descriptor without " -"triggering it:" +msgid "An interactive session shows that the :class:`!Person` class has called :meth:`~object.__set_name__` so that the field names would be recorded. Here we call :func:`vars` to look up the descriptor without triggering it:" msgstr "" -#: ../../howto/descriptor.rst:260 msgid "" ">>> vars(vars(Person)['name'])\n" "{'public_name': 'name', 'private_name': '_name'}\n" @@ -388,11 +270,9 @@ msgid "" "{'public_name': 'age', 'private_name': '_age'}" msgstr "" -#: ../../howto/descriptor.rst:267 msgid "The new class now logs access to both *name* and *age*:" msgstr "" -#: ../../howto/descriptor.rst:275 msgid "" ">>> pete = Person('Peter P', 10)\n" "INFO:root:Updating 'name' to 'Peter P'\n" @@ -402,11 +282,9 @@ msgid "" "INFO:root:Updating 'age' to 20" msgstr "" -#: ../../howto/descriptor.rst:284 msgid "The two *Person* instances contain only the private names:" msgstr "" -#: ../../howto/descriptor.rst:286 msgid "" ">>> vars(pete)\n" "{'_name': 'Peter P', '_age': 10}\n" @@ -414,88 +292,45 @@ msgid "" "{'_name': 'Catherine C', '_age': 20}" msgstr "" -#: ../../howto/descriptor.rst:295 msgid "Closing thoughts" msgstr "" -#: ../../howto/descriptor.rst:297 -msgid "" -"A :term:`descriptor` is what we call any object that " -"defines :meth:`~object.__get__`, :meth:`~object.__set__`, " -"or :meth:`~object.__delete__`." +msgid "A :term:`descriptor` is what we call any object that defines :meth:`~object.__get__`, :meth:`~object.__set__`, or :meth:`~object.__delete__`." msgstr "" -#: ../../howto/descriptor.rst:300 -msgid "" -"Optionally, descriptors can have a :meth:`~object.__set_name__` method. " -"This is only used in cases where a descriptor needs to know either the class " -"where it was created or the name of class variable it was assigned to. " -"(This method, if present, is called even if the class is not a descriptor.)" +msgid "Optionally, descriptors can have a :meth:`~object.__set_name__` method. This is only used in cases where a descriptor needs to know either the class where it was created or the name of class variable it was assigned to. (This method, if present, is called even if the class is not a descriptor.)" msgstr "" -#: ../../howto/descriptor.rst:305 -msgid "" -"Descriptors get invoked by the dot operator during attribute lookup. If a " -"descriptor is accessed indirectly with ``vars(some_class)" -"[descriptor_name]``, the descriptor instance is returned without invoking it." +msgid "Descriptors get invoked by the dot operator during attribute lookup. If a descriptor is accessed indirectly with ``vars(some_class)[descriptor_name]``, the descriptor instance is returned without invoking it." msgstr "" -#: ../../howto/descriptor.rst:309 -msgid "" -"Descriptors only work when used as class variables. When put in instances, " -"they have no effect." +msgid "Descriptors only work when used as class variables. When put in instances, they have no effect." msgstr "" -#: ../../howto/descriptor.rst:312 -msgid "" -"The main motivation for descriptors is to provide a hook allowing objects " -"stored in class variables to control what happens during attribute lookup." +msgid "The main motivation for descriptors is to provide a hook allowing objects stored in class variables to control what happens during attribute lookup." msgstr "" -#: ../../howto/descriptor.rst:315 -msgid "" -"Traditionally, the calling class controls what happens during lookup. " -"Descriptors invert that relationship and allow the data being looked-up to " -"have a say in the matter." +msgid "Traditionally, the calling class controls what happens during lookup. Descriptors invert that relationship and allow the data being looked-up to have a say in the matter." msgstr "" -#: ../../howto/descriptor.rst:319 -msgid "" -"Descriptors are used throughout the language. It is how functions turn into " -"bound methods. Common tools " -"like :deco:`classmethod`, :deco:`staticmethod`, :deco:`property`, " -"and :deco:`functools.cached_property` are all implemented as descriptors." +msgid "Descriptors are used throughout the language. It is how functions turn into bound methods. Common tools like :deco:`classmethod`, :deco:`staticmethod`, :deco:`property`, and :deco:`functools.cached_property` are all implemented as descriptors." msgstr "" -#: ../../howto/descriptor.rst:326 msgid "Complete Practical Example" msgstr "" -#: ../../howto/descriptor.rst:328 -msgid "" -"In this example, we create a practical and powerful tool for locating " -"notoriously hard to find data corruption bugs." +msgid "In this example, we create a practical and powerful tool for locating notoriously hard to find data corruption bugs." msgstr "" -#: ../../howto/descriptor.rst:333 msgid "Validator class" msgstr "" -#: ../../howto/descriptor.rst:335 -msgid "" -"A validator is a descriptor for managed attribute access. Prior to storing " -"any data, it verifies that the new value meets various type and range " -"restrictions. If those restrictions aren't met, it raises an exception to " -"prevent data corruption at its source." +msgid "A validator is a descriptor for managed attribute access. Prior to storing any data, it verifies that the new value meets various type and range restrictions. If those restrictions aren't met, it raises an exception to prevent data corruption at its source." msgstr "" -#: ../../howto/descriptor.rst:340 -msgid "" -"This :class:`!Validator` class is both an :term:`abstract base class` and a " -"managed attribute descriptor:" +msgid "This :class:`!Validator` class is both an :term:`abstract base class` and a managed attribute descriptor:" msgstr "" -#: ../../howto/descriptor.rst:343 msgid "" "from abc import ABC, abstractmethod\n" "\n" @@ -516,41 +351,24 @@ msgid "" " pass" msgstr "" -#: ../../howto/descriptor.rst:363 -msgid "" -"Custom validators need to inherit from :class:`!Validator` and must supply " -"a :meth:`!validate` method to test various restrictions as needed." +msgid "Custom validators need to inherit from :class:`!Validator` and must supply a :meth:`!validate` method to test various restrictions as needed." msgstr "" -#: ../../howto/descriptor.rst:368 msgid "Custom validators" msgstr "" -#: ../../howto/descriptor.rst:370 msgid "Here are three practical data validation utilities:" msgstr "" -#: ../../howto/descriptor.rst:372 -msgid "" -":class:`!OneOf` verifies that a value is one of a restricted set of options." +msgid ":class:`!OneOf` verifies that a value is one of a restricted set of options." msgstr "" -#: ../../howto/descriptor.rst:374 -msgid "" -":class:`!Number` verifies that a value is either an :class:`int` " -"or :class:`float`. Optionally, it verifies that a value is between a given " -"minimum or maximum." +msgid ":class:`!Number` verifies that a value is either an :class:`int` or :class:`float`. Optionally, it verifies that a value is between a given minimum or maximum." msgstr "" -#: ../../howto/descriptor.rst:378 -msgid "" -":class:`!String` verifies that a value is a :class:`str`. Optionally, it " -"validates a given minimum or maximum length. It can validate a user-defined " -"`predicate `_ " -"as well." +msgid ":class:`!String` verifies that a value is a :class:`str`. Optionally, it validates a given minimum or maximum length. It can validate a user-defined `predicate `_ as well." msgstr "" -#: ../../howto/descriptor.rst:383 msgid "" "class OneOf(Validator):\n" "\n" @@ -593,8 +411,7 @@ msgid "" " raise TypeError(f'Expected {value!r} to be a str')\n" " if self.minsize is not None and len(value) < self.minsize:\n" " raise ValueError(\n" -" f'Expected {value!r} to be no smaller than {self.minsize!" -"r}'\n" +" f'Expected {value!r} to be no smaller than {self.minsize!r}'\n" " )\n" " if self.maxsize is not None and len(value) > self.maxsize:\n" " raise ValueError(\n" @@ -606,15 +423,12 @@ msgid "" " )" msgstr "" -#: ../../howto/descriptor.rst:439 msgid "Practical application" msgstr "" -#: ../../howto/descriptor.rst:441 msgid "Here's how the data validators can be used in a real class:" msgstr "" -#: ../../howto/descriptor.rst:443 msgid "" "class Component:\n" "\n" @@ -628,18 +442,14 @@ msgid "" " self.quantity = quantity" msgstr "" -#: ../../howto/descriptor.rst:456 msgid "The descriptors prevent invalid instances from being created:" msgstr "" -#: ../../howto/descriptor.rst:458 msgid "" -">>> Component('Widget', 'metal', 5) # Blocked: 'Widget' is not all " -"uppercase\n" +">>> Component('Widget', 'metal', 5) # Blocked: 'Widget' is not all uppercase\n" "Traceback (most recent call last):\n" " ...\n" -"ValueError: Expected to be true for " -"'Widget'\n" +"ValueError: Expected to be true for 'Widget'\n" "\n" ">>> Component('WIDGET', 'metle', 5) # Blocked: 'metle' is misspelled\n" "Traceback (most recent call last):\n" @@ -659,170 +469,84 @@ msgid "" ">>> c = Component('WIDGET', 'metal', 5) # Allowed: The inputs are valid" msgstr "" -#: ../../howto/descriptor.rst:484 msgid "Technical Tutorial" msgstr "" -#: ../../howto/descriptor.rst:486 -msgid "" -"What follows is a more technical tutorial for the mechanics and details of " -"how descriptors work." +msgid "What follows is a more technical tutorial for the mechanics and details of how descriptors work." msgstr "" -#: ../../howto/descriptor.rst:491 msgid "Abstract" msgstr "" -#: ../../howto/descriptor.rst:493 -msgid "" -"Defines descriptors, summarizes the protocol, and shows how descriptors are " -"called. Provides an example showing how object relational mappings work." +msgid "Defines descriptors, summarizes the protocol, and shows how descriptors are called. Provides an example showing how object relational mappings work." msgstr "" -#: ../../howto/descriptor.rst:496 -msgid "" -"Learning about descriptors not only provides access to a larger toolset, it " -"creates a deeper understanding of how Python works." +msgid "Learning about descriptors not only provides access to a larger toolset, it creates a deeper understanding of how Python works." msgstr "" -#: ../../howto/descriptor.rst:501 msgid "Definition and introduction" msgstr "" -#: ../../howto/descriptor.rst:503 -msgid "" -"In general, a descriptor is an attribute value that has one of the methods " -"in the descriptor protocol. Those methods " -"are :meth:`~object.__get__`, :meth:`~object.__set__`, " -"and :meth:`~object.__delete__`. If any of those methods are defined for an " -"attribute, it is said to be a :term:`descriptor`." +msgid "In general, a descriptor is an attribute value that has one of the methods in the descriptor protocol. Those methods are :meth:`~object.__get__`, :meth:`~object.__set__`, and :meth:`~object.__delete__`. If any of those methods are defined for an attribute, it is said to be a :term:`descriptor`." msgstr "" -#: ../../howto/descriptor.rst:508 -msgid "" -"The default behavior for attribute access is to get, set, or delete the " -"attribute from an object's dictionary. For instance, ``a.x`` has a lookup " -"chain starting with ``a.__dict__['x']``, then ``type(a).__dict__['x']``, and " -"continuing through the method resolution order of ``type(a)``. If the looked-" -"up value is an object defining one of the descriptor methods, then Python " -"may override the default behavior and invoke the descriptor method instead. " -"Where this occurs in the precedence chain depends on which descriptor " -"methods were defined." +msgid "The default behavior for attribute access is to get, set, or delete the attribute from an object's dictionary. For instance, ``a.x`` has a lookup chain starting with ``a.__dict__['x']``, then ``type(a).__dict__['x']``, and continuing through the method resolution order of ``type(a)``. If the looked-up value is an object defining one of the descriptor methods, then Python may override the default behavior and invoke the descriptor method instead. Where this occurs in the precedence chain depends on which descriptor methods were defined." msgstr "" -#: ../../howto/descriptor.rst:517 -msgid "" -"Descriptors are a powerful, general purpose protocol. They are the " -"mechanism behind properties, methods, static methods, class methods, " -"and :func:`super`. They are used throughout Python itself. Descriptors " -"simplify the underlying C code and offer a flexible set of new tools for " -"everyday Python programs." +msgid "Descriptors are a powerful, general purpose protocol. They are the mechanism behind properties, methods, static methods, class methods, and :func:`super`. They are used throughout Python itself. Descriptors simplify the underlying C code and offer a flexible set of new tools for everyday Python programs." msgstr "" -#: ../../howto/descriptor.rst:525 msgid "Descriptor protocol" msgstr "" -#: ../../howto/descriptor.rst:527 msgid "``descr.__get__(self, obj, type=None)``" msgstr "" -#: ../../howto/descriptor.rst:529 msgid "``descr.__set__(self, obj, value)``" msgstr "" -#: ../../howto/descriptor.rst:531 msgid "``descr.__delete__(self, obj)``" msgstr "" -#: ../../howto/descriptor.rst:533 -msgid "" -"That is all there is to it. Define any of these methods and an object is " -"considered a descriptor and can override default behavior upon being looked " -"up as an attribute." +msgid "That is all there is to it. Define any of these methods and an object is considered a descriptor and can override default behavior upon being looked up as an attribute." msgstr "" -#: ../../howto/descriptor.rst:537 -msgid "" -"If an object defines :meth:`~object.__set__` or :meth:`~object.__delete__`, " -"it is considered a data descriptor. Descriptors that only " -"define :meth:`~object.__get__` are called non-data descriptors (they are " -"often used for methods but other uses are possible)." +msgid "If an object defines :meth:`~object.__set__` or :meth:`~object.__delete__`, it is considered a data descriptor. Descriptors that only define :meth:`~object.__get__` are called non-data descriptors (they are often used for methods but other uses are possible)." msgstr "" -#: ../../howto/descriptor.rst:542 -msgid "" -"Data and non-data descriptors differ in how overrides are calculated with " -"respect to entries in an instance's dictionary. If an instance's dictionary " -"has an entry with the same name as a data descriptor, the data descriptor " -"takes precedence. If an instance's dictionary has an entry with the same " -"name as a non-data descriptor, the dictionary entry takes precedence." +msgid "Data and non-data descriptors differ in how overrides are calculated with respect to entries in an instance's dictionary. If an instance's dictionary has an entry with the same name as a data descriptor, the data descriptor takes precedence. If an instance's dictionary has an entry with the same name as a non-data descriptor, the dictionary entry takes precedence." msgstr "" -#: ../../howto/descriptor.rst:548 -msgid "" -"To make a read-only data descriptor, define both :meth:`~object.__get__` " -"and :meth:`~object.__set__` with the :meth:`~object.__set__` raising " -"an :exc:`AttributeError` when called. Defining the :meth:`~object.__set__` " -"method with an exception raising placeholder is enough to make it a data " -"descriptor." +msgid "To make a read-only data descriptor, define both :meth:`~object.__get__` and :meth:`~object.__set__` with the :meth:`~object.__set__` raising an :exc:`AttributeError` when called. Defining the :meth:`~object.__set__` method with an exception raising placeholder is enough to make it a data descriptor." msgstr "" -#: ../../howto/descriptor.rst:555 msgid "Overview of descriptor invocation" msgstr "" -#: ../../howto/descriptor.rst:557 -msgid "" -"A descriptor can be called directly with ``desc.__get__(obj)`` or " -"``desc.__get__(None, cls)``." +msgid "A descriptor can be called directly with ``desc.__get__(obj)`` or ``desc.__get__(None, cls)``." msgstr "" -#: ../../howto/descriptor.rst:560 -msgid "" -"But it is more common for a descriptor to be invoked automatically from " -"attribute access." +msgid "But it is more common for a descriptor to be invoked automatically from attribute access." msgstr "" -#: ../../howto/descriptor.rst:563 -msgid "" -"The expression ``obj.x`` looks up the attribute ``x`` in the chain of " -"namespaces for ``obj``. If the search finds a descriptor outside of the " -"instance :attr:`~object.__dict__`, its :meth:`~object.__get__` method is " -"invoked according to the precedence rules listed below." +msgid "The expression ``obj.x`` looks up the attribute ``x`` in the chain of namespaces for ``obj``. If the search finds a descriptor outside of the instance :attr:`~object.__dict__`, its :meth:`~object.__get__` method is invoked according to the precedence rules listed below." msgstr "" -#: ../../howto/descriptor.rst:568 -msgid "" -"The details of invocation depend on whether ``obj`` is an object, class, or " -"instance of super." +msgid "The details of invocation depend on whether ``obj`` is an object, class, or instance of super." msgstr "" -#: ../../howto/descriptor.rst:573 msgid "Invocation from an instance" msgstr "" -#: ../../howto/descriptor.rst:575 -msgid "" -"Instance lookup scans through a chain of namespaces giving data descriptors " -"the highest priority, followed by instance variables, then non-data " -"descriptors, then class variables, and lastly :meth:`~object.__getattr__` if " -"it is provided." +msgid "Instance lookup scans through a chain of namespaces giving data descriptors the highest priority, followed by instance variables, then non-data descriptors, then class variables, and lastly :meth:`~object.__getattr__` if it is provided." msgstr "" -#: ../../howto/descriptor.rst:580 -msgid "" -"If a descriptor is found for ``a.x``, then it is invoked with: " -"``desc.__get__(a, type(a))``." +msgid "If a descriptor is found for ``a.x``, then it is invoked with: ``desc.__get__(a, type(a))``." msgstr "" -#: ../../howto/descriptor.rst:583 -msgid "" -"The logic for a dotted lookup is in :meth:`object.__getattribute__`. Here " -"is a pure Python equivalent:" +msgid "The logic for a dotted lookup is in :meth:`object.__getattribute__`. Here is a pure Python equivalent:" msgstr "" -#: ../../howto/descriptor.rst:586 msgid "" "def find_name_in_mro(cls, name, default):\n" " \"Emulate _PyType_Lookup() in Objects/typeobject.c\"\n" @@ -844,31 +568,18 @@ msgid "" " if hasattr(obj, '__dict__') and name in vars(obj):\n" " return vars(obj)[name] # instance variable\n" " if descr_get is not null:\n" -" return descr_get(cls_var, obj, objtype) # non-data " -"descriptor\n" +" return descr_get(cls_var, obj, objtype) # non-data descriptor\n" " if cls_var is not null:\n" " return cls_var # class variable\n" " raise AttributeError(name)" msgstr "" -#: ../../howto/descriptor.rst:722 -msgid "" -"Note, there is no :meth:`~object.__getattr__` hook in " -"the :meth:`~object.__getattribute__` code. That is why " -"calling :meth:`~object.__getattribute__` directly or with " -"``super().__getattribute__`` will bypass :meth:`~object.__getattr__` " -"entirely." +msgid "Note, there is no :meth:`~object.__getattr__` hook in the :meth:`~object.__getattribute__` code. That is why calling :meth:`~object.__getattribute__` directly or with ``super().__getattribute__`` will bypass :meth:`~object.__getattr__` entirely." msgstr "" -#: ../../howto/descriptor.rst:726 -msgid "" -"Instead, it is the dot operator and the :func:`getattr` function that are " -"responsible for invoking :meth:`~object.__getattr__` " -"whenever :meth:`~object.__getattribute__` raises an :exc:`AttributeError`. " -"Their logic is encapsulated in a helper function:" +msgid "Instead, it is the dot operator and the :func:`getattr` function that are responsible for invoking :meth:`~object.__getattr__` whenever :meth:`~object.__getattribute__` raises an :exc:`AttributeError`. Their logic is encapsulated in a helper function:" msgstr "" -#: ../../howto/descriptor.rst:731 msgid "" "def getattr_hook(obj, name):\n" " \"Emulate slot_tp_getattr_hook() in Objects/typeobject.c\"\n" @@ -880,156 +591,84 @@ msgid "" " return type(obj).__getattr__(obj, name) # __getattr__" msgstr "" -#: ../../howto/descriptor.rst:776 msgid "Invocation from a class" msgstr "" -#: ../../howto/descriptor.rst:778 -msgid "" -"The logic for a dotted lookup such as ``A.x`` is in :meth:`!" -"type.__getattribute__`. The steps are similar to those for :meth:`!" -"object.__getattribute__` but the instance dictionary lookup is replaced by a " -"search through the class's :term:`method resolution order`." +msgid "The logic for a dotted lookup such as ``A.x`` is in :meth:`!type.__getattribute__`. The steps are similar to those for :meth:`!object.__getattribute__` but the instance dictionary lookup is replaced by a search through the class's :term:`method resolution order`." msgstr "" -#: ../../howto/descriptor.rst:783 msgid "If a descriptor is found, it is invoked with ``desc.__get__(None, A)``." msgstr "" -#: ../../howto/descriptor.rst:785 -msgid "" -"The full C implementation can be found in :c:func:`!type_getattro` " -"and :c:func:`!_PyType_Lookup` in :source:`Objects/typeobject.c`." +msgid "The full C implementation can be found in :c:func:`!type_getattro` and :c:func:`!_PyType_Lookup` in :source:`Objects/typeobject.c`." msgstr "" -#: ../../howto/descriptor.rst:790 msgid "Invocation from super" msgstr "" -#: ../../howto/descriptor.rst:792 -msgid "" -"The logic for super's dotted lookup is in " -"the :meth:`~object.__getattribute__` method for object returned " -"by :func:`super`." +msgid "The logic for super's dotted lookup is in the :meth:`~object.__getattribute__` method for object returned by :func:`super`." msgstr "" -#: ../../howto/descriptor.rst:795 -msgid "" -"A dotted lookup such as ``super(A, obj).m`` searches " -"``obj.__class__.__mro__`` for the base class ``B`` immediately following " -"``A`` and then returns ``B.__dict__['m'].__get__(obj, A)``. If not a " -"descriptor, ``m`` is returned unchanged." +msgid "A dotted lookup such as ``super(A, obj).m`` searches ``obj.__class__.__mro__`` for the base class ``B`` immediately following ``A`` and then returns ``B.__dict__['m'].__get__(obj, A)``. If not a descriptor, ``m`` is returned unchanged." msgstr "" -#: ../../howto/descriptor.rst:800 -msgid "" -"The full C implementation can be found in :c:func:`!super_getattro` " -"in :source:`Objects/typeobject.c`. A pure Python equivalent can be found in " -"`Guido's Tutorial `_." +msgid "The full C implementation can be found in :c:func:`!super_getattro` in :source:`Objects/typeobject.c`. A pure Python equivalent can be found in `Guido's Tutorial `_." msgstr "" -#: ../../howto/descriptor.rst:807 msgid "Summary of invocation logic" msgstr "" -#: ../../howto/descriptor.rst:809 -msgid "" -"The mechanism for descriptors is embedded in " -"the :meth:`~object.__getattribute__` methods " -"for :class:`object`, :class:`type`, and :func:`super`." +msgid "The mechanism for descriptors is embedded in the :meth:`~object.__getattribute__` methods for :class:`object`, :class:`type`, and :func:`super`." msgstr "" -#: ../../howto/descriptor.rst:812 msgid "The important points to remember are:" msgstr "" -#: ../../howto/descriptor.rst:814 msgid "Descriptors are invoked by the :meth:`~object.__getattribute__` method." msgstr "" -#: ../../howto/descriptor.rst:816 -msgid "" -"Classes inherit this machinery from :class:`object`, :class:`type`, " -"or :func:`super`." +msgid "Classes inherit this machinery from :class:`object`, :class:`type`, or :func:`super`." msgstr "" -#: ../../howto/descriptor.rst:819 -msgid "" -"Overriding :meth:`~object.__getattribute__` prevents automatic descriptor " -"calls because all the descriptor logic is in that method." +msgid "Overriding :meth:`~object.__getattribute__` prevents automatic descriptor calls because all the descriptor logic is in that method." msgstr "" -#: ../../howto/descriptor.rst:822 -msgid "" -":meth:`!object.__getattribute__` and :meth:`!type.__getattribute__` make " -"different calls to :meth:`~object.__get__`. The first includes the instance " -"and may include the class. The second puts in ``None`` for the instance and " -"always includes the class." +msgid ":meth:`!object.__getattribute__` and :meth:`!type.__getattribute__` make different calls to :meth:`~object.__get__`. The first includes the instance and may include the class. The second puts in ``None`` for the instance and always includes the class." msgstr "" -#: ../../howto/descriptor.rst:827 msgid "Data descriptors always override instance dictionaries." msgstr "" -#: ../../howto/descriptor.rst:829 msgid "Non-data descriptors may be overridden by instance dictionaries." msgstr "" -#: ../../howto/descriptor.rst:833 msgid "Automatic name notification" msgstr "" -#: ../../howto/descriptor.rst:835 -msgid "" -"Sometimes it is desirable for a descriptor to know what class variable name " -"it was assigned to. When a new class is created, the :class:`type` " -"metaclass scans the dictionary of the new class. If any of the entries are " -"descriptors and if they define :meth:`~object.__set_name__`, that method is " -"called with two arguments. The *owner* is the class where the descriptor is " -"used, and the *name* is the class variable the descriptor was assigned to." +msgid "Sometimes it is desirable for a descriptor to know what class variable name it was assigned to. When a new class is created, the :class:`type` metaclass scans the dictionary of the new class. If any of the entries are descriptors and if they define :meth:`~object.__set_name__`, that method is called with two arguments. The *owner* is the class where the descriptor is used, and the *name* is the class variable the descriptor was assigned to." msgstr "" -#: ../../howto/descriptor.rst:842 -msgid "" -"The implementation details are in :c:func:`!type_new` and :c:func:`!" -"set_names` in :source:`Objects/typeobject.c`." +msgid "The implementation details are in :c:func:`!type_new` and :c:func:`!set_names` in :source:`Objects/typeobject.c`." msgstr "" -#: ../../howto/descriptor.rst:845 -msgid "" -"Since the update logic is in :meth:`!type.__new__`, notifications only take " -"place at the time of class creation. If descriptors are added to the class " -"afterwards, :meth:`~object.__set_name__` will need to be called manually." +msgid "Since the update logic is in :meth:`!type.__new__`, notifications only take place at the time of class creation. If descriptors are added to the class afterwards, :meth:`~object.__set_name__` will need to be called manually." msgstr "" -#: ../../howto/descriptor.rst:851 msgid "ORM example" msgstr "" -#: ../../howto/descriptor.rst:853 -msgid "" -"The following code is a simplified skeleton showing how data descriptors " -"could be used to implement an `object relational mapping `_." +msgid "The following code is a simplified skeleton showing how data descriptors could be used to implement an `object relational mapping `_." msgstr "" -#: ../../howto/descriptor.rst:857 -msgid "" -"The essential idea is that the data is stored in an external database. The " -"Python instances only hold keys to the database's tables. Descriptors take " -"care of lookups or updates:" +msgid "The essential idea is that the data is stored in an external database. The Python instances only hold keys to the database's tables. Descriptors take care of lookups or updates:" msgstr "" -#: ../../howto/descriptor.rst:861 msgid "" "class Field:\n" "\n" " def __set_name__(self, owner, name):\n" -" self.fetch = f'SELECT {name} FROM {owner.table} WHERE {owner.key}" -"=?;'\n" -" self.store = f'UPDATE {owner.table} SET {name}=? WHERE {owner.key}" -"=?;'\n" +" self.fetch = f'SELECT {name} FROM {owner.table} WHERE {owner.key}=?;'\n" +" self.store = f'UPDATE {owner.table} SET {name}=? WHERE {owner.key}=?;'\n" "\n" " def __get__(self, obj, objtype=None):\n" " return conn.execute(self.fetch, [obj.key]).fetchone()[0]\n" @@ -1039,14 +678,9 @@ msgid "" " conn.commit()" msgstr "" -#: ../../howto/descriptor.rst:876 -msgid "" -"We can use the :class:`!Field` class to define `models `_ that describe the schema for each " -"table in a database:" +msgid "We can use the :class:`!Field` class to define `models `_ that describe the schema for each table in a database:" msgstr "" -#: ../../howto/descriptor.rst:880 msgid "" "class Movie:\n" " table = 'Movies' # Table name\n" @@ -1068,23 +702,17 @@ msgid "" " self.key = key" msgstr "" -#: ../../howto/descriptor.rst:901 msgid "To use the models, first connect to the database::" msgstr "" -#: ../../howto/descriptor.rst:903 msgid "" ">>> import sqlite3\n" ">>> conn = sqlite3.connect('entertainment.db')" msgstr "" -#: ../../howto/descriptor.rst:906 -msgid "" -"An interactive session shows how data is retrieved from the database and how " -"it can be updated:" +msgid "An interactive session shows how data is retrieved from the database and how it can be updated:" msgstr "" -#: ../../howto/descriptor.rst:934 msgid "" ">>> Movie('Star Wars').director\n" "'George Lucas'\n" @@ -1100,39 +728,24 @@ msgid "" "'J.J. Abrams'" msgstr "" -#: ../../howto/descriptor.rst:955 msgid "Pure Python Equivalents" msgstr "" -#: ../../howto/descriptor.rst:957 -msgid "" -"The descriptor protocol is simple and offers exciting possibilities. " -"Several use cases are so common that they have been prepackaged into built-" -"in tools. Properties, bound methods, static methods, class methods, and " -"\\_\\_slots\\_\\_ are all based on the descriptor protocol." +msgid "The descriptor protocol is simple and offers exciting possibilities. Several use cases are so common that they have been prepackaged into built-in tools. Properties, bound methods, static methods, class methods, and \\_\\_slots\\_\\_ are all based on the descriptor protocol." msgstr "" -#: ../../howto/descriptor.rst:964 msgid "Properties" msgstr "" -#: ../../howto/descriptor.rst:966 -msgid "" -"Calling :func:`property` is a succinct way of building a data descriptor " -"that triggers a function call upon access to an attribute. Its signature " -"is::" +msgid "Calling :func:`property` is a succinct way of building a data descriptor that triggers a function call upon access to an attribute. Its signature is::" msgstr "" -#: ../../howto/descriptor.rst:969 msgid "property(fget=None, fset=None, fdel=None, doc=None) -> property" msgstr "" -#: ../../howto/descriptor.rst:971 -msgid "" -"The documentation shows a typical use to define a managed attribute ``x``:" +msgid "The documentation shows a typical use to define a managed attribute ``x``:" msgstr "" -#: ../../howto/descriptor.rst:973 msgid "" "class C:\n" " def getx(self): return self.__x\n" @@ -1141,14 +754,9 @@ msgid "" " x = property(getx, setx, delx, \"I'm the 'x' property.\")" msgstr "" -#: ../../howto/descriptor.rst:995 -msgid "" -"To see how :func:`property` is implemented in terms of the descriptor " -"protocol, here is a pure Python equivalent that implements most of the core " -"functionality:" +msgid "To see how :func:`property` is implemented in terms of the descriptor protocol, here is a pure Python equivalent that implements most of the core functionality:" msgstr "" -#: ../../howto/descriptor.rst:998 msgid "" "class Property:\n" " \"Emulate PyProperty_Type() in Objects/descrobject.c\"\n" @@ -1191,24 +799,12 @@ msgid "" " return type(self)(self.fget, self.fset, fdel, self.__doc__)" msgstr "" -#: ../../howto/descriptor.rst:1122 -msgid "" -"The :func:`property` builtin helps whenever a user interface has granted " -"attribute access and then subsequent changes require the intervention of a " -"method." +msgid "The :func:`property` builtin helps whenever a user interface has granted attribute access and then subsequent changes require the intervention of a method." msgstr "" -#: ../../howto/descriptor.rst:1126 -msgid "" -"For instance, a spreadsheet class may grant access to a cell value through " -"``Cell('b10').value``. Subsequent improvements to the program require the " -"cell to be recalculated on every access; however, the programmer does not " -"want to affect existing client code accessing the attribute directly. The " -"solution is to wrap access to the value attribute in a property data " -"descriptor:" +msgid "For instance, a spreadsheet class may grant access to a cell value through ``Cell('b10').value``. Subsequent improvements to the program require the cell to be recalculated on every access; however, the programmer does not want to affect existing client code accessing the attribute directly. The solution is to wrap access to the value attribute in a property data descriptor:" msgstr "" -#: ../../howto/descriptor.rst:1132 msgid "" "class Cell:\n" " ...\n" @@ -1220,37 +816,21 @@ msgid "" " return self._value" msgstr "" -#: ../../howto/descriptor.rst:1143 -msgid "" -"Either the built-in :func:`property` or our :func:`!Property` equivalent " -"would work in this example." +msgid "Either the built-in :func:`property` or our :func:`!Property` equivalent would work in this example." msgstr "" -#: ../../howto/descriptor.rst:1148 msgid "Functions and methods" msgstr "" -#: ../../howto/descriptor.rst:1150 -msgid "" -"Python's object oriented features are built upon a function based " -"environment. Using non-data descriptors, the two are merged seamlessly." +msgid "Python's object oriented features are built upon a function based environment. Using non-data descriptors, the two are merged seamlessly." msgstr "" -#: ../../howto/descriptor.rst:1153 -msgid "" -"Functions stored in class dictionaries get turned into methods when invoked. " -"Methods only differ from regular functions in that the object instance is " -"prepended to the other arguments. By convention, the instance is called " -"*self* but could be called *this* or any other variable name." +msgid "Functions stored in class dictionaries get turned into methods when invoked. Methods only differ from regular functions in that the object instance is prepended to the other arguments. By convention, the instance is called *self* but could be called *this* or any other variable name." msgstr "" -#: ../../howto/descriptor.rst:1158 -msgid "" -"Methods can be created manually with :class:`types.MethodType` which is " -"roughly equivalent to:" +msgid "Methods can be created manually with :class:`types.MethodType` which is roughly equivalent to:" msgstr "" -#: ../../howto/descriptor.rst:1161 msgid "" "class MethodType:\n" " \"Emulate PyMethod_Type in Objects/classobject.c\"\n" @@ -1279,15 +859,9 @@ msgid "" " return self" msgstr "" -#: ../../howto/descriptor.rst:1189 -msgid "" -"To support automatic creation of methods, functions include " -"the :meth:`~object.__get__` method for binding methods during attribute " -"access. This means that functions are non-data descriptors that return " -"bound methods during dotted lookup from an instance. Here's how it works:" +msgid "To support automatic creation of methods, functions include the :meth:`~object.__get__` method for binding methods during attribute access. This means that functions are non-data descriptors that return bound methods during dotted lookup from an instance. Here's how it works:" msgstr "" -#: ../../howto/descriptor.rst:1194 msgid "" "class Function:\n" " ...\n" @@ -1299,13 +873,9 @@ msgid "" " return MethodType(self, obj)" msgstr "" -#: ../../howto/descriptor.rst:1205 -msgid "" -"Running the following class in the interpreter shows how the function " -"descriptor works in practice:" +msgid "Running the following class in the interpreter shows how the function descriptor works in practice:" msgstr "" -#: ../../howto/descriptor.rst:1208 msgid "" "class D:\n" " def f(self):\n" @@ -1315,63 +885,42 @@ msgid "" " pass" msgstr "" -#: ../../howto/descriptor.rst:1226 -msgid "" -"The function has a :term:`qualified name` attribute to support introspection:" +msgid "The function has a :term:`qualified name` attribute to support introspection:" msgstr "" -#: ../../howto/descriptor.rst:1228 msgid "" ">>> D.f.__qualname__\n" "'D.f'" msgstr "" -#: ../../howto/descriptor.rst:1233 -msgid "" -"Accessing the function through the class dictionary does not " -"invoke :meth:`~object.__get__`. Instead, it just returns the underlying " -"function object::" +msgid "Accessing the function through the class dictionary does not invoke :meth:`~object.__get__`. Instead, it just returns the underlying function object::" msgstr "" -#: ../../howto/descriptor.rst:1236 msgid "" ">>> D.__dict__['f']\n" "" msgstr "" -#: ../../howto/descriptor.rst:1239 -msgid "" -"Dotted access from a class calls :meth:`~object.__get__` which just returns " -"the underlying function unchanged::" +msgid "Dotted access from a class calls :meth:`~object.__get__` which just returns the underlying function unchanged::" msgstr "" -#: ../../howto/descriptor.rst:1242 msgid "" ">>> D.f\n" "" msgstr "" -#: ../../howto/descriptor.rst:1245 -msgid "" -"The interesting behavior occurs during dotted access from an instance. The " -"dotted lookup calls :meth:`~object.__get__` which returns a bound method " -"object::" +msgid "The interesting behavior occurs during dotted access from an instance. The dotted lookup calls :meth:`~object.__get__` which returns a bound method object::" msgstr "" -#: ../../howto/descriptor.rst:1248 msgid "" ">>> d = D()\n" ">>> d.f\n" ">" msgstr "" -#: ../../howto/descriptor.rst:1252 -msgid "" -"Internally, the bound method stores the underlying function and the bound " -"instance::" +msgid "Internally, the bound method stores the underlying function and the bound instance::" msgstr "" -#: ../../howto/descriptor.rst:1255 msgid "" ">>> d.f.__func__\n" "\n" @@ -1380,112 +929,66 @@ msgid "" "<__main__.D object at 0x00B18C90>" msgstr "" -#: ../../howto/descriptor.rst:1261 -msgid "" -"If you have ever wondered where *self* comes from in regular methods or " -"where *cls* comes from in class methods, this is it!" +msgid "If you have ever wondered where *self* comes from in regular methods or where *cls* comes from in class methods, this is it!" msgstr "" -#: ../../howto/descriptor.rst:1266 msgid "Kinds of methods" msgstr "" -#: ../../howto/descriptor.rst:1268 -msgid "" -"Non-data descriptors provide a simple mechanism for variations on the usual " -"patterns of binding functions into methods." +msgid "Non-data descriptors provide a simple mechanism for variations on the usual patterns of binding functions into methods." msgstr "" -#: ../../howto/descriptor.rst:1271 -msgid "" -"To recap, functions have a :meth:`~object.__get__` method so that they can " -"be converted to a method when accessed as attributes. The non-data " -"descriptor transforms an ``obj.f(*args)`` call into ``f(obj, *args)``. " -"Calling ``cls.f(*args)`` becomes ``f(*args)``." +msgid "To recap, functions have a :meth:`~object.__get__` method so that they can be converted to a method when accessed as attributes. The non-data descriptor transforms an ``obj.f(*args)`` call into ``f(obj, *args)``. Calling ``cls.f(*args)`` becomes ``f(*args)``." msgstr "" -#: ../../howto/descriptor.rst:1276 msgid "This chart summarizes the binding and its two most useful variants:" msgstr "" -#: ../../howto/descriptor.rst:1279 msgid "Transformation" msgstr "" -#: ../../howto/descriptor.rst:1279 msgid "Called from an object" msgstr "" -#: ../../howto/descriptor.rst:1279 msgid "Called from a class" msgstr "" -#: ../../howto/descriptor.rst:1282 msgid "function" msgstr "" -#: ../../howto/descriptor.rst:1282 msgid "f(obj, \\*args)" msgstr "" -#: ../../howto/descriptor.rst:1282 ../../howto/descriptor.rst:1284 msgid "f(\\*args)" msgstr "" -#: ../../howto/descriptor.rst:1284 msgid "staticmethod" msgstr "" -#: ../../howto/descriptor.rst:1286 msgid "classmethod" msgstr "" -#: ../../howto/descriptor.rst:1286 msgid "f(type(obj), \\*args)" msgstr "" -#: ../../howto/descriptor.rst:1286 msgid "f(cls, \\*args)" msgstr "" -#: ../../howto/descriptor.rst:1291 msgid "Static methods" msgstr "" -#: ../../howto/descriptor.rst:1293 -msgid "" -"Static methods return the underlying function without changes. Calling " -"either ``c.f`` or ``C.f`` is the equivalent of a direct lookup into " -"``object.__getattribute__(c, \"f\")`` or ``object.__getattribute__(C, " -"\"f\")``. As a result, the function becomes identically accessible from " -"either an object or a class." +msgid "Static methods return the underlying function without changes. Calling either ``c.f`` or ``C.f`` is the equivalent of a direct lookup into ``object.__getattribute__(c, \"f\")`` or ``object.__getattribute__(C, \"f\")``. As a result, the function becomes identically accessible from either an object or a class." msgstr "" -#: ../../howto/descriptor.rst:1299 -msgid "" -"Good candidates for static methods are methods that do not reference the " -"``self`` variable." +msgid "Good candidates for static methods are methods that do not reference the ``self`` variable." msgstr "" -#: ../../howto/descriptor.rst:1302 -msgid "" -"For instance, a statistics package may include a container class for " -"experimental data. The class provides normal methods for computing the " -"average, mean, median, and other descriptive statistics that depend on the " -"data. However, there may be useful functions which are conceptually related " -"but do not depend on the data. For instance, ``erf(x)`` is handy conversion " -"routine that comes up in statistical work but does not directly depend on a " -"particular dataset. It can be called either from an object or the class: " -"``s.erf(1.5) --> 0.9332`` or ``Sample.erf(1.5) --> 0.9332``." +msgid "For instance, a statistics package may include a container class for experimental data. The class provides normal methods for computing the average, mean, median, and other descriptive statistics that depend on the data. However, there may be useful functions which are conceptually related but do not depend on the data. For instance, ``erf(x)`` is handy conversion routine that comes up in statistical work but does not directly depend on a particular dataset. It can be called either from an object or the class: ``s.erf(1.5) --> 0.9332`` or ``Sample.erf(1.5) --> 0.9332``." msgstr "" -#: ../../howto/descriptor.rst:1311 -msgid "" -"Since static methods return the underlying function with no changes, the " -"example calls are unexciting:" +msgid "Since static methods return the underlying function with no changes, the example calls are unexciting:" msgstr "" -#: ../../howto/descriptor.rst:1314 msgid "" "class E:\n" " @staticmethod\n" @@ -1493,7 +996,6 @@ msgid "" " return x * 10" msgstr "" -#: ../../howto/descriptor.rst:1321 msgid "" ">>> E.f(3)\n" "30\n" @@ -1501,13 +1003,9 @@ msgid "" "30" msgstr "" -#: ../../howto/descriptor.rst:1328 -msgid "" -"Using the non-data descriptor protocol, a pure Python version " -"of :deco:`staticmethod` would look like this:" +msgid "Using the non-data descriptor protocol, a pure Python version of :deco:`staticmethod` would look like this:" msgstr "" -#: ../../howto/descriptor.rst:1331 msgid "" "import functools\n" "\n" @@ -1529,27 +1027,15 @@ msgid "" " return self.f.__annotations__" msgstr "" -#: ../../howto/descriptor.rst:1352 -msgid "" -"The :func:`functools.update_wrapper` call adds a ``__wrapped__`` attribute " -"that refers to the underlying function. Also it carries forward the " -"attributes necessary to make the wrapper look like the wrapped function, " -"including :attr:`~function.__name__`, :attr:`~function.__qualname__`, " -"and :attr:`~function.__doc__`." +msgid "The :func:`functools.update_wrapper` call adds a ``__wrapped__`` attribute that refers to the underlying function. Also it carries forward the attributes necessary to make the wrapper look like the wrapped function, including :attr:`~function.__name__`, :attr:`~function.__qualname__`, and :attr:`~function.__doc__`." msgstr "" -#: ../../howto/descriptor.rst:1421 msgid "Class methods" msgstr "" -#: ../../howto/descriptor.rst:1423 -msgid "" -"Unlike static methods, class methods prepend the class reference to the " -"argument list before calling the function. This format is the same for " -"whether the caller is an object or a class:" +msgid "Unlike static methods, class methods prepend the class reference to the argument list before calling the function. This format is the same for whether the caller is an object or a class:" msgstr "" -#: ../../howto/descriptor.rst:1427 msgid "" "class F:\n" " @classmethod\n" @@ -1557,7 +1043,6 @@ msgid "" " return cls.__name__, x" msgstr "" -#: ../../howto/descriptor.rst:1434 msgid "" ">>> F.f(3)\n" "('F', 3)\n" @@ -1565,16 +1050,9 @@ msgid "" "('F', 3)" msgstr "" -#: ../../howto/descriptor.rst:1441 -msgid "" -"This behavior is useful whenever the method only needs to have a class " -"reference and does not rely on data stored in a specific instance. One use " -"for class methods is to create alternate class constructors. For example, " -"the classmethod :func:`dict.fromkeys` creates a new dictionary from a list " -"of keys. The pure Python equivalent is:" +msgid "This behavior is useful whenever the method only needs to have a class reference and does not rely on data stored in a specific instance. One use for class methods is to create alternate class constructors. For example, the classmethod :func:`dict.fromkeys` creates a new dictionary from a list of keys. The pure Python equivalent is:" msgstr "" -#: ../../howto/descriptor.rst:1447 msgid "" "class Dict(dict):\n" " @classmethod\n" @@ -1586,11 +1064,9 @@ msgid "" " return d" msgstr "" -#: ../../howto/descriptor.rst:1458 msgid "Now a new dictionary of unique keys can be constructed like this:" msgstr "" -#: ../../howto/descriptor.rst:1460 msgid "" ">>> d = Dict.fromkeys('abracadabra')\n" ">>> type(d) is Dict\n" @@ -1599,13 +1075,9 @@ msgid "" "{'a': None, 'b': None, 'r': None, 'c': None, 'd': None}" msgstr "" -#: ../../howto/descriptor.rst:1468 -msgid "" -"Using the non-data descriptor protocol, a pure Python version " -"of :deco:`classmethod` would look like this:" +msgid "Using the non-data descriptor protocol, a pure Python version of :deco:`classmethod` would look like this:" msgstr "" -#: ../../howto/descriptor.rst:1471 msgid "" "import functools\n" "\n" @@ -1622,40 +1094,23 @@ msgid "" " return MethodType(self.f, cls)" msgstr "" -#: ../../howto/descriptor.rst:1533 -msgid "" -"The :func:`functools.update_wrapper` call in ``ClassMethod`` adds a " -"``__wrapped__`` attribute that refers to the underlying function. Also it " -"carries forward the attributes necessary to make the wrapper look like the " -"wrapped " -"function: :attr:`~function.__name__`, :attr:`~function.__qualname__`, :attr:`~function.__doc__`, " -"and :attr:`~function.__annotations__`." +msgid "The :func:`functools.update_wrapper` call in ``ClassMethod`` adds a ``__wrapped__`` attribute that refers to the underlying function. Also it carries forward the attributes necessary to make the wrapper look like the wrapped function: :attr:`~function.__name__`, :attr:`~function.__qualname__`, :attr:`~function.__doc__`, and :attr:`~function.__annotations__`." msgstr "" -#: ../../howto/descriptor.rst:1542 msgid "Member objects and __slots__" msgstr "" -#: ../../howto/descriptor.rst:1544 -msgid "" -"When a class defines ``__slots__``, it replaces instance dictionaries with a " -"fixed-length array of slot values. From a user point of view that has " -"several effects:" +msgid "When a class defines ``__slots__``, it replaces instance dictionaries with a fixed-length array of slot values. From a user point of view that has several effects:" msgstr "" -#: ../../howto/descriptor.rst:1548 -msgid "" -"1. Provides immediate detection of bugs due to misspelled attribute " -"assignments. Only attribute names specified in ``__slots__`` are allowed:" +msgid "1. Provides immediate detection of bugs due to misspelled attribute assignments. Only attribute names specified in ``__slots__`` are allowed:" msgstr "" -#: ../../howto/descriptor.rst:1551 msgid "" "class Vehicle:\n" " __slots__ = ('id_number', 'make', 'model')" msgstr "" -#: ../../howto/descriptor.rst:1556 msgid "" ">>> auto = Vehicle()\n" ">>> auto.id_nubmer = 'VYE483814LQEX'\n" @@ -1664,18 +1119,13 @@ msgid "" "AttributeError: 'Vehicle' object has no attribute 'id_nubmer'" msgstr "" -#: ../../howto/descriptor.rst:1564 -msgid "" -"2. Helps create immutable objects where descriptors manage access to private " -"attributes stored in ``__slots__``:" +msgid "2. Helps create immutable objects where descriptors manage access to private attributes stored in ``__slots__``:" msgstr "" -#: ../../howto/descriptor.rst:1567 msgid "" "class Immutable:\n" "\n" -" __slots__ = ('_dept', '_name') # Replace the instance " -"dictionary\n" +" __slots__ = ('_dept', '_name') # Replace the instance dictionary\n" "\n" " def __init__(self, dept, name):\n" " self._dept = dept # Store to private attribute\n" @@ -1690,7 +1140,6 @@ msgid "" " return self._name" msgstr "" -#: ../../howto/descriptor.rst:1585 msgid "" ">>> mark = Immutable('Botany', 'Mark Watney')\n" ">>> mark.dept\n" @@ -1705,27 +1154,15 @@ msgid "" "AttributeError: 'Immutable' object has no attribute 'location'" msgstr "" -#: ../../howto/descriptor.rst:1599 -msgid "" -"3. Saves memory. On a 64-bit Linux build, an instance with two attributes " -"takes 48 bytes with ``__slots__`` and 152 bytes without. This `flyweight " -"design pattern `_ likely " -"only matters when a large number of instances are going to be created." +msgid "3. Saves memory. On a 64-bit Linux build, an instance with two attributes takes 48 bytes with ``__slots__`` and 152 bytes without. This `flyweight design pattern `_ likely only matters when a large number of instances are going to be created." msgstr "" -#: ../../howto/descriptor.rst:1604 -msgid "" -"4. Improves speed. Reading instance variables is 35% faster with " -"``__slots__`` (as measured with Python 3.10 on an Apple M1 processor)." +msgid "4. Improves speed. Reading instance variables is 35% faster with ``__slots__`` (as measured with Python 3.10 on an Apple M1 processor)." msgstr "" -#: ../../howto/descriptor.rst:1607 -msgid "" -"5. Blocks tools like :deco:`functools.cached_property` which require an " -"instance dictionary to function correctly:" +msgid "5. Blocks tools like :deco:`functools.cached_property` which require an instance dictionary to function correctly:" msgstr "" -#: ../../howto/descriptor.rst:1610 msgid "" "from functools import cached_property\n" "\n" @@ -1738,7 +1175,6 @@ msgid "" " for n in reversed(range(100_000)))" msgstr "" -#: ../../howto/descriptor.rst:1622 msgid "" ">>> CP().pi\n" "Traceback (most recent call last):\n" @@ -1746,17 +1182,9 @@ msgid "" "TypeError: No '__dict__' attribute on 'CP' instance to cache 'pi' property." msgstr "" -#: ../../howto/descriptor.rst:1629 -msgid "" -"It is not possible to create an exact drop-in pure Python version of " -"``__slots__`` because it requires direct access to C structures and control " -"over object memory allocation. However, we can build a mostly faithful " -"simulation where the actual C structure for slots is emulated by a private " -"``_slotvalues`` list. Reads and writes to that private structure are " -"managed by member descriptors:" +msgid "It is not possible to create an exact drop-in pure Python version of ``__slots__`` because it requires direct access to C structures and control over object memory allocation. However, we can build a mostly faithful simulation where the actual C structure for slots is emulated by a private ``_slotvalues`` list. Reads and writes to that private structure are managed by member descriptors:" msgstr "" -#: ../../howto/descriptor.rst:1636 msgid "" "null = object()\n" "\n" @@ -1795,13 +1223,9 @@ msgid "" " return f''" msgstr "" -#: ../../howto/descriptor.rst:1674 -msgid "" -"The :meth:`!type.__new__` method takes care of adding member objects to " -"class variables:" +msgid "The :meth:`!type.__new__` method takes care of adding member objects to class variables:" msgstr "" -#: ../../howto/descriptor.rst:1677 msgid "" "class Type(type):\n" " 'Simulate how the type metaclass adds member objects for slots'\n" @@ -1815,14 +1239,9 @@ msgid "" " return type.__new__(mcls, clsname, bases, mapping, **kwargs)" msgstr "" -#: ../../howto/descriptor.rst:1690 -msgid "" -"The :meth:`object.__new__` method takes care of creating instances that have " -"slots instead of an instance dictionary. Here is a rough simulation in pure " -"Python:" +msgid "The :meth:`object.__new__` method takes care of creating instances that have slots instead of an instance dictionary. Here is a rough simulation in pure Python:" msgstr "" -#: ../../howto/descriptor.rst:1694 msgid "" "class Object:\n" " 'Simulate how object.__new__() allocates memory for __slots__'\n" @@ -1854,13 +1273,9 @@ msgid "" " super().__delattr__(name)" msgstr "" -#: ../../howto/descriptor.rst:1725 -msgid "" -"To use the simulation in a real class, just inherit from :class:`!Object` " -"and set the :term:`metaclass` to :class:`Type`:" +msgid "To use the simulation in a real class, just inherit from :class:`!Object` and set the :term:`metaclass` to :class:`Type`:" msgstr "" -#: ../../howto/descriptor.rst:1728 msgid "" "class H(Object, metaclass=Type):\n" " 'Instance variables stored in slots'\n" @@ -1872,12 +1287,9 @@ msgid "" " self.y = y" msgstr "" -#: ../../howto/descriptor.rst:1739 -msgid "" -"At this point, the metaclass has loaded member objects for *x* and *y*::" +msgid "At this point, the metaclass has loaded member objects for *x* and *y*::" msgstr "" -#: ../../howto/descriptor.rst:1741 msgid "" ">>> from pprint import pp\n" ">>> pp(dict(vars(H)))\n" @@ -1889,13 +1301,9 @@ msgid "" " 'y': }" msgstr "" -#: ../../howto/descriptor.rst:1760 -msgid "" -"When instances are created, they have a ``slot_values`` list where the " -"attributes are stored:" +msgid "When instances are created, they have a ``slot_values`` list where the attributes are stored:" msgstr "" -#: ../../howto/descriptor.rst:1763 msgid "" ">>> h = H(10, 20)\n" ">>> vars(h)\n" @@ -1905,11 +1313,9 @@ msgid "" "{'_slotvalues': [55, 20]}" msgstr "" -#: ../../howto/descriptor.rst:1772 msgid "Misspelled or unassigned attributes will raise an exception:" msgstr "" -#: ../../howto/descriptor.rst:1774 msgid "" ">>> h.xz\n" "Traceback (most recent call last):\n" diff --git a/howto/enum.po b/howto/enum.po index 7f658e56..9d5d1f86 100644 --- a/howto/enum.po +++ b/howto/enum.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:53+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,24 +24,15 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../howto/enum.rst:5 msgid "Enum HOWTO" msgstr "" -#: ../../howto/enum.rst:11 -msgid "" -"An :class:`Enum` is a set of symbolic names bound to unique values. They " -"are similar to global variables, but they offer a more useful :func:`repr`, " -"grouping, type-safety, and a few other features." +msgid "An :class:`Enum` is a set of symbolic names bound to unique values. They are similar to global variables, but they offer a more useful :func:`repr`, grouping, type-safety, and a few other features." msgstr "" -#: ../../howto/enum.rst:15 -msgid "" -"They are most useful when you have a variable that can take one of a limited " -"selection of values. For example, the days of the week::" +msgid "They are most useful when you have a variable that can take one of a limited selection of values. For example, the days of the week::" msgstr "" -#: ../../howto/enum.rst:18 msgid "" ">>> from enum import Enum\n" ">>> class Weekday(Enum):\n" @@ -54,11 +45,9 @@ msgid "" "... SUNDAY = 7" msgstr "" -#: ../../howto/enum.rst:28 msgid "Or perhaps the RGB primary colors::" msgstr "" -#: ../../howto/enum.rst:30 msgid "" ">>> from enum import Enum\n" ">>> class Color(Enum):\n" @@ -67,55 +56,34 @@ msgid "" "... BLUE = 3" msgstr "" -#: ../../howto/enum.rst:36 -msgid "" -"As you can see, creating an :class:`Enum` is as simple as writing a class " -"that inherits from :class:`Enum` itself." +msgid "As you can see, creating an :class:`Enum` is as simple as writing a class that inherits from :class:`Enum` itself." msgstr "" -#: ../../howto/enum.rst:39 msgid "Case of Enum Members" msgstr "" -#: ../../howto/enum.rst:41 -msgid "" -"Because Enums are used to represent constants, and to help avoid issues with " -"name clashes between mixin-class methods/attributes and enum names, we " -"strongly recommend using UPPER_CASE names for members, and will be using " -"that style in our examples." +msgid "Because Enums are used to represent constants, and to help avoid issues with name clashes between mixin-class methods/attributes and enum names, we strongly recommend using UPPER_CASE names for members, and will be using that style in our examples." msgstr "" -#: ../../howto/enum.rst:46 -msgid "" -"Depending on the nature of the enum a member's value may or may not be " -"important, but either way that value can be used to get the corresponding " -"member::" +msgid "Depending on the nature of the enum a member's value may or may not be important, but either way that value can be used to get the corresponding member::" msgstr "" -#: ../../howto/enum.rst:50 msgid "" ">>> Weekday(3)\n" "" msgstr "" -#: ../../howto/enum.rst:53 -msgid "" -"As you can see, the ``repr()`` of a member shows the enum name, the member " -"name, and the value. The ``str()`` of a member shows only the enum name and " -"member name::" +msgid "As you can see, the ``repr()`` of a member shows the enum name, the member name, and the value. The ``str()`` of a member shows only the enum name and member name::" msgstr "" -#: ../../howto/enum.rst:57 msgid "" ">>> print(Weekday.THURSDAY)\n" "Weekday.THURSDAY" msgstr "" -#: ../../howto/enum.rst:60 msgid "The *type* of an enumeration member is the enum it belongs to::" msgstr "" -#: ../../howto/enum.rst:62 msgid "" ">>> type(Weekday.MONDAY)\n" "\n" @@ -123,50 +91,34 @@ msgid "" "True" msgstr "" -#: ../../howto/enum.rst:67 msgid "Enum members have an attribute that contains just their :attr:`!name`::" msgstr "" -#: ../../howto/enum.rst:69 msgid "" ">>> print(Weekday.TUESDAY.name)\n" "TUESDAY" msgstr "" -#: ../../howto/enum.rst:72 msgid "Likewise, they have an attribute for their :attr:`!value`::" msgstr "" -#: ../../howto/enum.rst:75 msgid "" ">>> Weekday.WEDNESDAY.value\n" "3" msgstr "" -#: ../../howto/enum.rst:78 -msgid "" -"Unlike many languages that treat enumerations solely as name/value pairs, " -"Python Enums can have behavior added. For example, :class:`datetime.date` " -"has two methods for returning the weekday: :meth:`~datetime.date.weekday` " -"and :meth:`~datetime.date.isoweekday`. The difference is that one of them " -"counts from 0-6 and the other from 1-7. Rather than keep track of that " -"ourselves we can add a method to the :class:`!Weekday` enum to extract the " -"day from the :class:`~datetime.date` instance and return the matching enum " -"member::" +msgid "Unlike many languages that treat enumerations solely as name/value pairs, Python Enums can have behavior added. For example, :class:`datetime.date` has two methods for returning the weekday: :meth:`~datetime.date.weekday` and :meth:`~datetime.date.isoweekday`. The difference is that one of them counts from 0-6 and the other from 1-7. Rather than keep track of that ourselves we can add a method to the :class:`!Weekday` enum to extract the day from the :class:`~datetime.date` instance and return the matching enum member::" msgstr "" -#: ../../howto/enum.rst:87 msgid "" "@classmethod\n" "def from_date(cls, date):\n" " return cls(date.isoweekday())" msgstr "" -#: ../../howto/enum.rst:91 msgid "The complete :class:`!Weekday` enum now looks like this::" msgstr "" -#: ../../howto/enum.rst:93 msgid "" ">>> class Weekday(Enum):\n" "... MONDAY = 1\n" @@ -182,32 +134,21 @@ msgid "" "... return cls(date.isoweekday())" msgstr "" -#: ../../howto/enum.rst:106 msgid "Now we can find out what today is! Observe::" msgstr "" -#: ../../howto/enum.rst:108 msgid "" ">>> import datetime as dt\n" ">>> Weekday.from_date(dt.date.today())\n" "" msgstr "" -#: ../../howto/enum.rst:112 -msgid "" -"Of course, if you're reading this on some other day, you'll see that day " -"instead." +msgid "Of course, if you're reading this on some other day, you'll see that day instead." msgstr "" -#: ../../howto/enum.rst:114 -msgid "" -"This :class:`!Weekday` enum is great if our variable only needs one day, but " -"what if we need several? Maybe we're writing a function to plot chores " -"during a week, and don't want to use a :class:`list` -- we could use a " -"different type of :class:`Enum`::" +msgid "This :class:`!Weekday` enum is great if our variable only needs one day, but what if we need several? Maybe we're writing a function to plot chores during a week, and don't want to use a :class:`list` -- we could use a different type of :class:`Enum`::" msgstr "" -#: ../../howto/enum.rst:119 msgid "" ">>> from enum import Flag\n" ">>> class Weekday(Flag):\n" @@ -220,43 +161,30 @@ msgid "" "... SUNDAY = 64" msgstr "" -#: ../../howto/enum.rst:129 -msgid "" -"We've changed two things: we're inherited from :class:`Flag`, and the values " -"are all powers of 2." +msgid "We've changed two things: we're inherited from :class:`Flag`, and the values are all powers of 2." msgstr "" -#: ../../howto/enum.rst:132 -msgid "" -"Just like the original :class:`!Weekday` enum above, we can have a single " -"selection::" +msgid "Just like the original :class:`!Weekday` enum above, we can have a single selection::" msgstr "" -#: ../../howto/enum.rst:134 msgid "" ">>> first_week_day = Weekday.MONDAY\n" ">>> first_week_day\n" "" msgstr "" -#: ../../howto/enum.rst:138 -msgid "" -"But :class:`Flag` also allows us to combine several members into a single " -"variable::" +msgid "But :class:`Flag` also allows us to combine several members into a single variable::" msgstr "" -#: ../../howto/enum.rst:141 msgid "" ">>> weekend = Weekday.SATURDAY | Weekday.SUNDAY\n" ">>> weekend\n" "" msgstr "" -#: ../../howto/enum.rst:145 msgid "You can even iterate over a :class:`Flag` variable::" msgstr "" -#: ../../howto/enum.rst:147 msgid "" ">>> for day in weekend:\n" "... print(day)\n" @@ -264,25 +192,20 @@ msgid "" "Weekday.SUNDAY" msgstr "" -#: ../../howto/enum.rst:152 msgid "Okay, let's get some chores set up::" msgstr "" -#: ../../howto/enum.rst:154 msgid "" ">>> chores_for_ethan = {\n" -"... 'feed the cat': Weekday.MONDAY | Weekday.WEDNESDAY | " -"Weekday.FRIDAY,\n" +"... 'feed the cat': Weekday.MONDAY | Weekday.WEDNESDAY | Weekday.FRIDAY,\n" "... 'do the dishes': Weekday.TUESDAY | Weekday.THURSDAY,\n" "... 'answer SO questions': Weekday.SATURDAY,\n" "... }" msgstr "" -#: ../../howto/enum.rst:160 msgid "And a function to display the chores for a given day::" msgstr "" -#: ../../howto/enum.rst:162 msgid "" ">>> def show_chores(chores, day):\n" "... for chore, days in chores.items():\n" @@ -293,13 +216,9 @@ msgid "" "answer SO questions" msgstr "" -#: ../../howto/enum.rst:170 -msgid "" -"In cases where the actual values of the members do not matter, you can save " -"yourself some work and use :func:`auto` for the values::" +msgid "In cases where the actual values of the members do not matter, you can save yourself some work and use :func:`auto` for the values::" msgstr "" -#: ../../howto/enum.rst:173 msgid "" ">>> from enum import auto\n" ">>> class Weekday(Flag):\n" @@ -313,18 +232,12 @@ msgid "" "... WEEKEND = SATURDAY | SUNDAY" msgstr "" -#: ../../howto/enum.rst:189 msgid "Programmatic access to enumeration members and their attributes" msgstr "" -#: ../../howto/enum.rst:191 -msgid "" -"Sometimes it's useful to access members in enumerations programmatically " -"(i.e. situations where ``Color.RED`` won't do because the exact color is not " -"known at program-writing time). ``Enum`` allows such access::" +msgid "Sometimes it's useful to access members in enumerations programmatically (i.e. situations where ``Color.RED`` won't do because the exact color is not known at program-writing time). ``Enum`` allows such access::" msgstr "" -#: ../../howto/enum.rst:195 msgid "" ">>> Color(1)\n" "\n" @@ -332,11 +245,9 @@ msgid "" "" msgstr "" -#: ../../howto/enum.rst:200 msgid "If you want to access enum members by *name*, use item access::" msgstr "" -#: ../../howto/enum.rst:202 msgid "" ">>> Color['RED']\n" "\n" @@ -344,12 +255,9 @@ msgid "" "" msgstr "" -#: ../../howto/enum.rst:207 -msgid "" -"If you have an enum member and need its :attr:`!name` or :attr:`!value`::" +msgid "If you have an enum member and need its :attr:`!name` or :attr:`!value`::" msgstr "" -#: ../../howto/enum.rst:209 msgid "" ">>> member = Color.RED\n" ">>> member.name\n" @@ -358,15 +266,12 @@ msgid "" "1" msgstr "" -#: ../../howto/enum.rst:217 msgid "Duplicating enum members and values" msgstr "" -#: ../../howto/enum.rst:219 msgid "Having two enum members with the same name is invalid::" msgstr "" -#: ../../howto/enum.rst:221 msgid "" ">>> class Shape(Enum):\n" "... SQUARE = 2\n" @@ -377,16 +282,9 @@ msgid "" "TypeError: 'SQUARE' already defined as 2" msgstr "" -#: ../../howto/enum.rst:229 -msgid "" -"However, an enum member can have other names associated with it. Given two " -"entries ``A`` and ``B`` with the same value (and ``A`` defined first), ``B`` " -"is an alias for the member ``A``. By-value lookup of the value of ``A`` " -"will return the member ``A``. By-name lookup of ``A`` will return the " -"member ``A``. By-name lookup of ``B`` will also return the member ``A``::" +msgid "However, an enum member can have other names associated with it. Given two entries ``A`` and ``B`` with the same value (and ``A`` defined first), ``B`` is an alias for the member ``A``. By-value lookup of the value of ``A`` will return the member ``A``. By-name lookup of ``A`` will return the member ``A``. By-name lookup of ``B`` will also return the member ``A``::" msgstr "" -#: ../../howto/enum.rst:235 msgid "" ">>> class Shape(Enum):\n" "... SQUARE = 2\n" @@ -402,24 +300,15 @@ msgid "" "" msgstr "" -#: ../../howto/enum.rst:250 -msgid "" -"Attempting to create a member with the same name as an already defined " -"attribute (another member, a method, etc.) or attempting to create an " -"attribute with the same name as a member is not allowed." +msgid "Attempting to create a member with the same name as an already defined attribute (another member, a method, etc.) or attempting to create an attribute with the same name as a member is not allowed." msgstr "" -#: ../../howto/enum.rst:256 msgid "Ensuring unique enumeration values" msgstr "" -#: ../../howto/enum.rst:258 -msgid "" -"By default, enumerations allow multiple names as aliases for the same value. " -"When this behavior isn't desired, you can use the :deco:`unique` decorator::" +msgid "By default, enumerations allow multiple names as aliases for the same value. When this behavior isn't desired, you can use the :deco:`unique` decorator::" msgstr "" -#: ../../howto/enum.rst:261 msgid "" ">>> from enum import Enum, unique\n" ">>> @unique\n" @@ -434,15 +323,12 @@ msgid "" "ValueError: duplicate values found in : FOUR -> THREE" msgstr "" -#: ../../howto/enum.rst:275 msgid "Using automatic values" msgstr "" -#: ../../howto/enum.rst:277 msgid "If the exact value is unimportant you can use :class:`auto`::" msgstr "" -#: ../../howto/enum.rst:279 msgid "" ">>> from enum import Enum, auto\n" ">>> class Color(Enum):\n" @@ -454,13 +340,9 @@ msgid "" "[1, 2, 3]" msgstr "" -#: ../../howto/enum.rst:288 -msgid "" -"The values are chosen by :func:`~Enum._generate_next_value_`, which can be " -"overridden::" +msgid "The values are chosen by :func:`~Enum._generate_next_value_`, which can be overridden::" msgstr "" -#: ../../howto/enum.rst:291 msgid "" ">>> class AutoName(Enum):\n" "... @staticmethod\n" @@ -477,44 +359,28 @@ msgid "" "['NORTH', 'SOUTH', 'EAST', 'WEST']" msgstr "" -#: ../../howto/enum.rst:307 -msgid "" -"The :meth:`~Enum._generate_next_value_` method must be defined before any " -"members." +msgid "The :meth:`~Enum._generate_next_value_` method must be defined before any members." msgstr "" -#: ../../howto/enum.rst:310 msgid "Iteration" msgstr "" -#: ../../howto/enum.rst:312 msgid "Iterating over the members of an enum does not provide the aliases::" msgstr "" -#: ../../howto/enum.rst:314 msgid "" ">>> list(Shape)\n" "[, , ]\n" ">>> list(Weekday)\n" -"[, , , " -", , , " -"]" +"[, , , , , , ]" msgstr "" -#: ../../howto/enum.rst:319 -msgid "" -"Note that the aliases ``Shape.ALIAS_FOR_SQUARE`` and ``Weekday.WEEKEND`` " -"aren't shown." +msgid "Note that the aliases ``Shape.ALIAS_FOR_SQUARE`` and ``Weekday.WEEKEND`` aren't shown." msgstr "" -#: ../../howto/enum.rst:321 -msgid "" -"The special attribute ``__members__`` is a read-only ordered mapping of " -"names to members. It includes all names defined in the enumeration, " -"including the aliases::" +msgid "The special attribute ``__members__`` is a read-only ordered mapping of names to members. It includes all names defined in the enumeration, including the aliases::" msgstr "" -#: ../../howto/enum.rst:325 msgid "" ">>> for name, member in Shape.__members__.items():\n" "... name, member\n" @@ -525,34 +391,23 @@ msgid "" "('ALIAS_FOR_SQUARE', )" msgstr "" -#: ../../howto/enum.rst:333 -msgid "" -"The ``__members__`` attribute can be used for detailed programmatic access " -"to the enumeration members. For example, finding all the aliases::" +msgid "The ``__members__`` attribute can be used for detailed programmatic access to the enumeration members. For example, finding all the aliases::" msgstr "" -#: ../../howto/enum.rst:336 msgid "" -">>> [name for name, member in Shape.__members__.items() if member.name != " -"name]\n" +">>> [name for name, member in Shape.__members__.items() if member.name != name]\n" "['ALIAS_FOR_SQUARE']" msgstr "" -#: ../../howto/enum.rst:341 -msgid "" -"Aliases for flags include values with multiple flags set, such as ``3``, and " -"no flags set, i.e. ``0``." +msgid "Aliases for flags include values with multiple flags set, such as ``3``, and no flags set, i.e. ``0``." msgstr "" -#: ../../howto/enum.rst:346 msgid "Comparisons" msgstr "" -#: ../../howto/enum.rst:348 msgid "Enumeration members are compared by identity::" msgstr "" -#: ../../howto/enum.rst:350 msgid "" ">>> Color.RED is Color.RED\n" "True\n" @@ -562,13 +417,9 @@ msgid "" "True" msgstr "" -#: ../../howto/enum.rst:357 -msgid "" -"Ordered comparisons between enumeration values are *not* supported. Enum " -"members are not integers (but see `IntEnum`_ below)::" +msgid "Ordered comparisons between enumeration values are *not* supported. Enum members are not integers (but see `IntEnum`_ below)::" msgstr "" -#: ../../howto/enum.rst:360 msgid "" ">>> Color.RED < Color.BLUE\n" "Traceback (most recent call last):\n" @@ -576,11 +427,9 @@ msgid "" "TypeError: '<' not supported between instances of 'Color' and 'Color'" msgstr "" -#: ../../howto/enum.rst:365 msgid "Equality comparisons are defined though::" msgstr "" -#: ../../howto/enum.rst:367 msgid "" ">>> Color.BLUE == Color.RED\n" "False\n" @@ -590,46 +439,26 @@ msgid "" "True" msgstr "" -#: ../../howto/enum.rst:374 -msgid "" -"Comparisons against non-enumeration values will always compare not equal " -"(again, :class:`IntEnum` was explicitly designed to behave differently, see " -"below)::" +msgid "Comparisons against non-enumeration values will always compare not equal (again, :class:`IntEnum` was explicitly designed to behave differently, see below)::" msgstr "" -#: ../../howto/enum.rst:378 msgid "" ">>> Color.BLUE == 2\n" "False" msgstr "" -#: ../../howto/enum.rst:383 -msgid "" -"It is possible to reload modules -- if a reloaded module contains enums, " -"they will be recreated, and the new members may not compare identical/equal " -"to the original members." +msgid "It is possible to reload modules -- if a reloaded module contains enums, they will be recreated, and the new members may not compare identical/equal to the original members." msgstr "" -#: ../../howto/enum.rst:388 msgid "Allowed members and attributes of enumerations" msgstr "" -#: ../../howto/enum.rst:390 -msgid "" -"Most of the examples above use integers for enumeration values. Using " -"integers is short and handy (and provided by default by the `Functional " -"API`_), but not strictly enforced. In the vast majority of use-cases, one " -"doesn't care what the actual value of an enumeration is. But if the value " -"*is* important, enumerations can have arbitrary values." +msgid "Most of the examples above use integers for enumeration values. Using integers is short and handy (and provided by default by the `Functional API`_), but not strictly enforced. In the vast majority of use-cases, one doesn't care what the actual value of an enumeration is. But if the value *is* important, enumerations can have arbitrary values." msgstr "" -#: ../../howto/enum.rst:396 -msgid "" -"Enumerations are Python classes, and can have methods and special methods as " -"usual. If we have this enumeration::" +msgid "Enumerations are Python classes, and can have methods and special methods as usual. If we have this enumeration::" msgstr "" -#: ../../howto/enum.rst:399 msgid "" ">>> class Mood(Enum):\n" "... FUNKY = 1\n" @@ -649,11 +478,9 @@ msgid "" "..." msgstr "" -#: ../../howto/enum.rst:416 msgid "Then::" msgstr "" -#: ../../howto/enum.rst:418 msgid "" ">>> Mood.favorite_mood()\n" "\n" @@ -663,56 +490,29 @@ msgid "" "'my custom str! 1'" msgstr "" -#: ../../howto/enum.rst:425 -msgid "" -"The rules for what is allowed are as follows: names that start and end with " -"a single underscore are reserved by enum and cannot be used; all other " -"attributes defined within an enumeration will become members of this " -"enumeration, with the exception of special methods " -"(:meth:`~object.__str__`, :meth:`~object.__add__`, etc.), descriptors " -"(methods are also descriptors), and variable names listed " -"in :attr:`~Enum._ignore_`." +msgid "The rules for what is allowed are as follows: names that start and end with a single underscore are reserved by enum and cannot be used; all other attributes defined within an enumeration will become members of this enumeration, with the exception of special methods (:meth:`~object.__str__`, :meth:`~object.__add__`, etc.), descriptors (methods are also descriptors), and variable names listed in :attr:`~Enum._ignore_`." msgstr "" -#: ../../howto/enum.rst:432 -msgid "" -"Note: if your enumeration defines :meth:`~object.__new__` and/" -"or :meth:`~object.__init__`, any value(s) given to the enum member will be " -"passed into those methods. See `Planet`_ for an example." +msgid "Note: if your enumeration defines :meth:`~object.__new__` and/or :meth:`~object.__init__`, any value(s) given to the enum member will be passed into those methods. See `Planet`_ for an example." msgstr "" -#: ../../howto/enum.rst:438 -msgid "" -"The :meth:`~object.__new__` method, if defined, is used during creation of " -"the Enum members; it is then replaced by Enum's :meth:`~object.__new__` " -"which is used after class creation for lookup of existing members. " -"See :ref:`new-vs-init` for more details." +msgid "The :meth:`~object.__new__` method, if defined, is used during creation of the Enum members; it is then replaced by Enum's :meth:`~object.__new__` which is used after class creation for lookup of existing members. See :ref:`new-vs-init` for more details." msgstr "" -#: ../../howto/enum.rst:445 msgid "Restricted Enum subclassing" msgstr "" -#: ../../howto/enum.rst:447 -msgid "" -"A new :class:`Enum` class must have one base enum class, up to one concrete " -"data type, and as many :class:`object`-based mixin classes as needed. The " -"order of these base classes is::" +msgid "A new :class:`Enum` class must have one base enum class, up to one concrete data type, and as many :class:`object`-based mixin classes as needed. The order of these base classes is::" msgstr "" -#: ../../howto/enum.rst:451 msgid "" "class EnumName([mix-in, ...,] [data-type,] base-enum):\n" " pass" msgstr "" -#: ../../howto/enum.rst:454 -msgid "" -"Also, subclassing an enumeration is allowed only if the enumeration does not " -"define any members. So this is forbidden::" +msgid "Also, subclassing an enumeration is allowed only if the enumeration does not define any members. So this is forbidden::" msgstr "" -#: ../../howto/enum.rst:457 msgid "" ">>> class MoreColor(Color):\n" "... PINK = 17\n" @@ -722,11 +522,9 @@ msgid "" "TypeError: cannot extend " msgstr "" -#: ../../howto/enum.rst:464 msgid "But this is allowed::" msgstr "" -#: ../../howto/enum.rst:466 msgid "" ">>> class Foo(Enum):\n" "... def some_behavior(self):\n" @@ -738,25 +536,15 @@ msgid "" "..." msgstr "" -#: ../../howto/enum.rst:475 -msgid "" -"Allowing subclassing of enums that define members would lead to a violation " -"of some important invariants of types and instances. On the other hand, it " -"makes sense to allow sharing some common behavior between a group of " -"enumerations. (See `OrderedEnum`_ for an example.)" +msgid "Allowing subclassing of enums that define members would lead to a violation of some important invariants of types and instances. On the other hand, it makes sense to allow sharing some common behavior between a group of enumerations. (See `OrderedEnum`_ for an example.)" msgstr "" -#: ../../howto/enum.rst:484 msgid "Dataclass support" msgstr "" -#: ../../howto/enum.rst:486 -msgid "" -"When inheriting from a :class:`~dataclasses.dataclass`, " -"the :meth:`~Enum.__repr__` omits the inherited class' name. For example::" +msgid "When inheriting from a :class:`~dataclasses.dataclass`, the :meth:`~Enum.__repr__` omits the inherited class' name. For example::" msgstr "" -#: ../../howto/enum.rst:489 msgid "" ">>> from dataclasses import dataclass, field\n" ">>> @dataclass\n" @@ -773,27 +561,15 @@ msgid "" "" msgstr "" -#: ../../howto/enum.rst:503 -msgid "" -"Use the :func:`~dataclasses.dataclass` argument ``repr=False`` to use the " -"standard :func:`repr`." +msgid "Use the :func:`~dataclasses.dataclass` argument ``repr=False`` to use the standard :func:`repr`." msgstr "" -#: ../../howto/enum.rst:506 -msgid "" -"Only the dataclass fields are shown in the value area, not the dataclass' " -"name." +msgid "Only the dataclass fields are shown in the value area, not the dataclass' name." msgstr "" -#: ../../howto/enum.rst:512 -msgid "" -"Adding :deco:`~dataclasses.dataclass` decorator to :class:`Enum` and its " -"subclasses is not supported. It will not raise any errors, but it will " -"produce very strange results at runtime, such as members being equal to each " -"other::" +msgid "Adding :deco:`~dataclasses.dataclass` decorator to :class:`Enum` and its subclasses is not supported. It will not raise any errors, but it will produce very strange results at runtime, such as members being equal to each other::" msgstr "" -#: ../../howto/enum.rst:517 msgid "" ">>> @dataclass # don't do this: it does not make any sense\n" "... class Color(Enum):\n" @@ -806,15 +582,12 @@ msgid "" "True" msgstr "" -#: ../../howto/enum.rst:529 msgid "Pickling" msgstr "" -#: ../../howto/enum.rst:531 msgid "Enumerations can be pickled and unpickled::" msgstr "" -#: ../../howto/enum.rst:533 msgid "" ">>> from test.test_enum import Fruit\n" ">>> from pickle import dumps, loads\n" @@ -822,50 +595,30 @@ msgid "" "True" msgstr "" -#: ../../howto/enum.rst:538 -msgid "" -"The usual restrictions for pickling apply: picklable enums must be defined " -"in the top level of a module, since unpickling requires them to be " -"importable from that module." +msgid "The usual restrictions for pickling apply: picklable enums must be defined in the top level of a module, since unpickling requires them to be importable from that module." msgstr "" -#: ../../howto/enum.rst:544 -msgid "" -"With pickle protocol version 4 it is possible to easily pickle enums nested " -"in other classes." +msgid "With pickle protocol version 4 it is possible to easily pickle enums nested in other classes." msgstr "" -#: ../../howto/enum.rst:547 -msgid "" -"It is possible to modify how enum members are pickled/unpickled by " -"defining :meth:`~object.__reduce_ex__` in the enumeration class. The " -"default method is by-value, but enums with complicated values may want to " -"use by-name::" +msgid "It is possible to modify how enum members are pickled/unpickled by defining :meth:`~object.__reduce_ex__` in the enumeration class. The default method is by-value, but enums with complicated values may want to use by-name::" msgstr "" -#: ../../howto/enum.rst:551 msgid "" ">>> import enum\n" ">>> class MyEnum(enum.Enum):\n" "... __reduce_ex__ = enum.pickle_by_enum_name" msgstr "" -#: ../../howto/enum.rst:557 -msgid "" -"Using by-name for flags is not recommended, as unnamed aliases will not " -"unpickle." +msgid "Using by-name for flags is not recommended, as unnamed aliases will not unpickle." msgstr "" -#: ../../howto/enum.rst:562 msgid "Functional API" msgstr "" -#: ../../howto/enum.rst:564 -msgid "" -"The :class:`Enum` class is callable, providing the following functional API::" +msgid "The :class:`Enum` class is callable, providing the following functional API::" msgstr "" -#: ../../howto/enum.rst:566 msgid "" ">>> Animal = Enum('Animal', 'ANT BEE CAT DOG')\n" ">>> Animal\n" @@ -876,25 +629,12 @@ msgid "" "[, , , ]" msgstr "" -#: ../../howto/enum.rst:574 -msgid "" -"The semantics of this API resemble :class:`~collections.namedtuple`. The " -"first argument of the call to :class:`Enum` is the name of the enumeration." +msgid "The semantics of this API resemble :class:`~collections.namedtuple`. The first argument of the call to :class:`Enum` is the name of the enumeration." msgstr "" -#: ../../howto/enum.rst:577 -msgid "" -"The second argument is the *source* of enumeration member names. It can be " -"a whitespace-separated string of names, a sequence of names, a sequence of 2-" -"tuples with key/value pairs, or a mapping (e.g. dictionary) of names to " -"values. The last two options enable assigning arbitrary values to " -"enumerations; the others auto-assign increasing integers starting with 1 " -"(use the ``start`` parameter to specify a different starting value). A new " -"class derived from :class:`Enum` is returned. In other words, the above " -"assignment to :class:`!Animal` is equivalent to::" +msgid "The second argument is the *source* of enumeration member names. It can be a whitespace-separated string of names, a sequence of names, a sequence of 2-tuples with key/value pairs, or a mapping (e.g. dictionary) of names to values. The last two options enable assigning arbitrary values to enumerations; the others auto-assign increasing integers starting with 1 (use the ``start`` parameter to specify a different starting value). A new class derived from :class:`Enum` is returned. In other words, the above assignment to :class:`!Animal` is equivalent to::" msgstr "" -#: ../../howto/enum.rst:586 msgid "" ">>> class Animal(Enum):\n" "... ANT = 1\n" @@ -904,51 +644,27 @@ msgid "" "..." msgstr "" -#: ../../howto/enum.rst:593 -msgid "" -"The reason for defaulting to ``1`` as the starting number and not ``0`` is " -"that ``0`` is ``False`` in a boolean sense, but by default enum members all " -"evaluate to ``True``." +msgid "The reason for defaulting to ``1`` as the starting number and not ``0`` is that ``0`` is ``False`` in a boolean sense, but by default enum members all evaluate to ``True``." msgstr "" -#: ../../howto/enum.rst:597 -msgid "" -"Pickling enums created with the functional API can be tricky as frame stack " -"implementation details are used to try and figure out which module the " -"enumeration is being created in (e.g. it will fail if you use a utility " -"function in a separate module, and also may not work on IronPython or " -"Jython). The solution is to specify the module name explicitly as follows::" +msgid "Pickling enums created with the functional API can be tricky as frame stack implementation details are used to try and figure out which module the enumeration is being created in (e.g. it will fail if you use a utility function in a separate module, and also may not work on IronPython or Jython). The solution is to specify the module name explicitly as follows::" msgstr "" -#: ../../howto/enum.rst:603 msgid ">>> Animal = Enum('Animal', 'ANT BEE CAT DOG', module=__name__)" msgstr "" -#: ../../howto/enum.rst:607 -msgid "" -"If ``module`` is not supplied, and Enum cannot determine what it is, the new " -"Enum members will not be unpicklable; to keep errors closer to the source, " -"pickling will be disabled." +msgid "If ``module`` is not supplied, and Enum cannot determine what it is, the new Enum members will not be unpicklable; to keep errors closer to the source, pickling will be disabled." msgstr "" -#: ../../howto/enum.rst:611 -msgid "" -"The new pickle protocol 4 also, in some circumstances, relies " -"on :attr:`~type.__qualname__` being set to the location where pickle will be " -"able to find the class. For example, if the class was made available in " -"class SomeData in the global scope::" +msgid "The new pickle protocol 4 also, in some circumstances, relies on :attr:`~type.__qualname__` being set to the location where pickle will be able to find the class. For example, if the class was made available in class SomeData in the global scope::" msgstr "" -#: ../../howto/enum.rst:616 -msgid "" -">>> Animal = Enum('Animal', 'ANT BEE CAT DOG', qualname='SomeData.Animal')" +msgid ">>> Animal = Enum('Animal', 'ANT BEE CAT DOG', qualname='SomeData.Animal')" msgstr "" -#: ../../howto/enum.rst:618 msgid "The complete signature is::" msgstr "" -#: ../../howto/enum.rst:620 msgid "" "Enum(\n" " value='NewEnumName',\n" @@ -961,81 +677,57 @@ msgid "" " )" msgstr "" -#: ../../howto/enum.rst:630 msgid "*value*: What the new enum class will record as its name." msgstr "" -#: ../../howto/enum.rst:632 -msgid "" -"*names*: The enum members. This can be a whitespace- or comma-separated " -"string (values will start at 1 unless otherwise specified)::" +msgid "*names*: The enum members. This can be a whitespace- or comma-separated string (values will start at 1 unless otherwise specified)::" msgstr "" -#: ../../howto/enum.rst:635 msgid "'RED GREEN BLUE' | 'RED,GREEN,BLUE' | 'RED, GREEN, BLUE'" msgstr "" -#: ../../howto/enum.rst:637 msgid "or an iterator of names::" msgstr "" -#: ../../howto/enum.rst:639 msgid "['RED', 'GREEN', 'BLUE']" msgstr "" -#: ../../howto/enum.rst:641 msgid "or an iterator of (name, value) pairs::" msgstr "" -#: ../../howto/enum.rst:643 msgid "[('CYAN', 4), ('MAGENTA', 5), ('YELLOW', 6)]" msgstr "" -#: ../../howto/enum.rst:645 msgid "or a mapping::" msgstr "" -#: ../../howto/enum.rst:647 msgid "{'CHARTREUSE': 7, 'SEA_GREEN': 11, 'ROSEMARY': 42}" msgstr "" -#: ../../howto/enum.rst:649 msgid "*module*: name of module where new enum class can be found." msgstr "" -#: ../../howto/enum.rst:651 msgid "*qualname*: where in module new enum class can be found." msgstr "" -#: ../../howto/enum.rst:653 msgid "*type*: type to mix in to new enum class." msgstr "" -#: ../../howto/enum.rst:655 msgid "*start*: number to start counting at if only names are passed in." msgstr "" -#: ../../howto/enum.rst:657 msgid "The *start* parameter was added." msgstr "" -#: ../../howto/enum.rst:662 msgid "Derived Enumerations" msgstr "" -#: ../../howto/enum.rst:665 msgid "IntEnum" msgstr "" -#: ../../howto/enum.rst:667 -msgid "" -"The first variation of :class:`Enum` that is provided is also a subclass " -"of :class:`int`. Members of an :class:`IntEnum` can be compared to " -"integers; by extension, integer enumerations of different types can also be " -"compared to each other::" +msgid "The first variation of :class:`Enum` that is provided is also a subclass of :class:`int`. Members of an :class:`IntEnum` can be compared to integers; by extension, integer enumerations of different types can also be compared to each other::" msgstr "" -#: ../../howto/enum.rst:672 msgid "" ">>> from enum import IntEnum\n" ">>> class Shape(IntEnum):\n" @@ -1054,13 +746,9 @@ msgid "" "True" msgstr "" -#: ../../howto/enum.rst:688 -msgid "" -"However, they still can't be compared to standard :class:`Enum` " -"enumerations::" +msgid "However, they still can't be compared to standard :class:`Enum` enumerations::" msgstr "" -#: ../../howto/enum.rst:690 msgid "" ">>> class Shape(IntEnum):\n" "... CIRCLE = 1\n" @@ -1074,12 +762,9 @@ msgid "" "False" msgstr "" -#: ../../howto/enum.rst:701 -msgid "" -":class:`IntEnum` values behave like integers in other ways you'd expect::" +msgid ":class:`IntEnum` values behave like integers in other ways you'd expect::" msgstr "" -#: ../../howto/enum.rst:703 msgid "" ">>> int(Shape.CIRCLE)\n" "1\n" @@ -1089,49 +774,27 @@ msgid "" "[0, 1]" msgstr "" -#: ../../howto/enum.rst:712 msgid "StrEnum" msgstr "" -#: ../../howto/enum.rst:714 -msgid "" -"The second variation of :class:`Enum` that is provided is also a subclass " -"of :class:`str`. Members of a :class:`StrEnum` can be compared to strings; " -"by extension, string enumerations of different types can also be compared to " -"each other." +msgid "The second variation of :class:`Enum` that is provided is also a subclass of :class:`str`. Members of a :class:`StrEnum` can be compared to strings; by extension, string enumerations of different types can also be compared to each other." msgstr "" -#: ../../howto/enum.rst:723 msgid "IntFlag" msgstr "" -#: ../../howto/enum.rst:725 -msgid "" -"The next variation of :class:`Enum` provided, :class:`IntFlag`, is also " -"based on :class:`int`. The difference being :class:`IntFlag` members can be " -"combined using the bitwise operators (&, \\|, ^, ~) and the result is still " -"an :class:`IntFlag` member, if possible. " -"Like :class:`IntEnum`, :class:`IntFlag` members are also integers and can be " -"used wherever an :class:`int` is used." +msgid "The next variation of :class:`Enum` provided, :class:`IntFlag`, is also based on :class:`int`. The difference being :class:`IntFlag` members can be combined using the bitwise operators (&, \\|, ^, ~) and the result is still an :class:`IntFlag` member, if possible. Like :class:`IntEnum`, :class:`IntFlag` members are also integers and can be used wherever an :class:`int` is used." msgstr "" -#: ../../howto/enum.rst:733 -msgid "" -"Any operation on an :class:`IntFlag` member besides the bit-wise operations " -"will lose the :class:`IntFlag` membership." +msgid "Any operation on an :class:`IntFlag` member besides the bit-wise operations will lose the :class:`IntFlag` membership." msgstr "" -#: ../../howto/enum.rst:736 -msgid "" -"Bit-wise operations that result in invalid :class:`IntFlag` values will lose " -"the :class:`IntFlag` membership. See :class:`FlagBoundary` for details." +msgid "Bit-wise operations that result in invalid :class:`IntFlag` values will lose the :class:`IntFlag` membership. See :class:`FlagBoundary` for details." msgstr "" -#: ../../howto/enum.rst:743 msgid "Sample :class:`IntFlag` class::" msgstr "" -#: ../../howto/enum.rst:745 msgid "" ">>> from enum import IntFlag\n" ">>> class Perm(IntFlag):\n" @@ -1148,11 +811,9 @@ msgid "" "True" msgstr "" -#: ../../howto/enum.rst:759 msgid "It is also possible to name the combinations::" msgstr "" -#: ../../howto/enum.rst:761 msgid "" ">>> class Perm(IntFlag):\n" "... R = 4\n" @@ -1168,20 +829,12 @@ msgid "" "" msgstr "" -#: ../../howto/enum.rst:776 -msgid "" -"Named combinations are considered aliases. Aliases do not show up during " -"iteration, but can be returned from by-value lookups." +msgid "Named combinations are considered aliases. Aliases do not show up during iteration, but can be returned from by-value lookups." msgstr "" -#: ../../howto/enum.rst:781 -msgid "" -"Another important difference between :class:`IntFlag` and :class:`Enum` is " -"that if no flags are set (the value is 0), its boolean evaluation " -"is :data:`False`::" +msgid "Another important difference between :class:`IntFlag` and :class:`Enum` is that if no flags are set (the value is 0), its boolean evaluation is :data:`False`::" msgstr "" -#: ../../howto/enum.rst:784 msgid "" ">>> Perm.R & Perm.X\n" "\n" @@ -1189,13 +842,9 @@ msgid "" "False" msgstr "" -#: ../../howto/enum.rst:789 -msgid "" -"Because :class:`IntFlag` members are also subclasses of :class:`int` they " -"can be combined with them (but may lose :class:`IntFlag` membership::" +msgid "Because :class:`IntFlag` members are also subclasses of :class:`int` they can be combined with them (but may lose :class:`IntFlag` membership::" msgstr "" -#: ../../howto/enum.rst:792 msgid "" ">>> Perm.X | 4\n" "\n" @@ -1204,49 +853,31 @@ msgid "" "9" msgstr "" -#: ../../howto/enum.rst:800 -msgid "" -"The negation operator, ``~``, always returns an :class:`IntFlag` member with " -"a positive value::" +msgid "The negation operator, ``~``, always returns an :class:`IntFlag` member with a positive value::" msgstr "" -#: ../../howto/enum.rst:803 msgid "" ">>> (~Perm.X).value == (Perm.R|Perm.W).value == 6\n" "True" msgstr "" -#: ../../howto/enum.rst:806 msgid ":class:`IntFlag` members can also be iterated over::" msgstr "" -#: ../../howto/enum.rst:808 msgid "" ">>> list(RW)\n" "[, ]" msgstr "" -#: ../../howto/enum.rst:815 msgid "Flag" msgstr "" -#: ../../howto/enum.rst:817 -msgid "" -"The last variation is :class:`Flag`. Like :class:`IntFlag`, :class:`Flag` " -"members can be combined using the bitwise operators (&, \\|, ^, ~). " -"Unlike :class:`IntFlag`, they cannot be combined with, nor compared against, " -"any other :class:`Flag` enumeration, nor :class:`int`. While it is possible " -"to specify the values directly it is recommended to use :class:`auto` as the " -"value and let :class:`Flag` select an appropriate value." +msgid "The last variation is :class:`Flag`. Like :class:`IntFlag`, :class:`Flag` members can be combined using the bitwise operators (&, \\|, ^, ~). Unlike :class:`IntFlag`, they cannot be combined with, nor compared against, any other :class:`Flag` enumeration, nor :class:`int`. While it is possible to specify the values directly it is recommended to use :class:`auto` as the value and let :class:`Flag` select an appropriate value." msgstr "" -#: ../../howto/enum.rst:826 -msgid "" -"Like :class:`IntFlag`, if a combination of :class:`Flag` members results in " -"no flags being set, the boolean evaluation is :data:`False`::" +msgid "Like :class:`IntFlag`, if a combination of :class:`Flag` members results in no flags being set, the boolean evaluation is :data:`False`::" msgstr "" -#: ../../howto/enum.rst:829 msgid "" ">>> from enum import Flag, auto\n" ">>> class Color(Flag):\n" @@ -1260,13 +891,9 @@ msgid "" "False" msgstr "" -#: ../../howto/enum.rst:840 -msgid "" -"Individual flags should have values that are powers of two (1, 2, 4, " -"8, ...), while combinations of flags will not::" +msgid "Individual flags should have values that are powers of two (1, 2, 4, 8, ...), while combinations of flags will not::" msgstr "" -#: ../../howto/enum.rst:843 msgid "" ">>> class Color(Flag):\n" "... RED = auto()\n" @@ -1278,13 +905,9 @@ msgid "" "" msgstr "" -#: ../../howto/enum.rst:852 -msgid "" -"Giving a name to the \"no flags set\" condition does not change its boolean " -"value::" +msgid "Giving a name to the \"no flags set\" condition does not change its boolean value::" msgstr "" -#: ../../howto/enum.rst:855 msgid "" ">>> class Color(Flag):\n" "... BLACK = 0\n" @@ -1298,131 +921,68 @@ msgid "" "False" msgstr "" -#: ../../howto/enum.rst:866 msgid ":class:`Flag` members can also be iterated over::" msgstr "" -#: ../../howto/enum.rst:868 msgid "" ">>> purple = Color.RED | Color.BLUE\n" ">>> list(purple)\n" "[, ]" msgstr "" -#: ../../howto/enum.rst:876 -msgid "" -"For the majority of new code, :class:`Enum` and :class:`Flag` are strongly " -"recommended, since :class:`IntEnum` and :class:`IntFlag` break some semantic " -"promises of an enumeration (by being comparable to integers, and thus by " -"transitivity to other unrelated enumerations). :class:`IntEnum` " -"and :class:`IntFlag` should be used only in cases where :class:`Enum` " -"and :class:`Flag` will not do; for example, when integer constants are " -"replaced with enumerations, or for interoperability with other systems." +msgid "For the majority of new code, :class:`Enum` and :class:`Flag` are strongly recommended, since :class:`IntEnum` and :class:`IntFlag` break some semantic promises of an enumeration (by being comparable to integers, and thus by transitivity to other unrelated enumerations). :class:`IntEnum` and :class:`IntFlag` should be used only in cases where :class:`Enum` and :class:`Flag` will not do; for example, when integer constants are replaced with enumerations, or for interoperability with other systems." msgstr "" -#: ../../howto/enum.rst:886 msgid "Others" msgstr "" -#: ../../howto/enum.rst:888 -msgid "" -"While :class:`IntEnum` is part of the :mod:`enum` module, it would be very " -"simple to implement independently::" +msgid "While :class:`IntEnum` is part of the :mod:`enum` module, it would be very simple to implement independently::" msgstr "" -#: ../../howto/enum.rst:891 msgid "" "class IntEnum(int, ReprEnum): # or Enum instead of ReprEnum\n" " pass" msgstr "" -#: ../../howto/enum.rst:894 -msgid "" -"This demonstrates how similar derived enumerations can be defined; for " -"example a :class:`!FloatEnum` that mixes in :class:`float` instead " -"of :class:`int`." +msgid "This demonstrates how similar derived enumerations can be defined; for example a :class:`!FloatEnum` that mixes in :class:`float` instead of :class:`int`." msgstr "" -#: ../../howto/enum.rst:897 msgid "Some rules:" msgstr "" -#: ../../howto/enum.rst:899 -msgid "" -"When subclassing :class:`Enum`, mix-in types must appear before " -"the :class:`Enum` class itself in the sequence of bases, as in " -"the :class:`IntEnum` example above." +msgid "When subclassing :class:`Enum`, mix-in types must appear before the :class:`Enum` class itself in the sequence of bases, as in the :class:`IntEnum` example above." msgstr "" -#: ../../howto/enum.rst:902 -msgid "" -"Mix-in types must be subclassable. For example, :class:`bool` " -"and :class:`range` are not subclassable and will throw an error during Enum " -"creation if used as the mix-in type." +msgid "Mix-in types must be subclassable. For example, :class:`bool` and :class:`range` are not subclassable and will throw an error during Enum creation if used as the mix-in type." msgstr "" -#: ../../howto/enum.rst:905 -msgid "" -"While :class:`Enum` can have members of any type, once you mix in an " -"additional type, all the members must have values of that type, " -"e.g. :class:`int` above. This restriction does not apply to mix-ins which " -"only add methods and don't specify another type." +msgid "While :class:`Enum` can have members of any type, once you mix in an additional type, all the members must have values of that type, e.g. :class:`int` above. This restriction does not apply to mix-ins which only add methods and don't specify another type." msgstr "" -#: ../../howto/enum.rst:909 -msgid "" -"When another data type is mixed in, the :attr:`~Enum.value` attribute is " -"*not the same* as the enum member itself, although it is equivalent and will " -"compare equal." +msgid "When another data type is mixed in, the :attr:`~Enum.value` attribute is *not the same* as the enum member itself, although it is equivalent and will compare equal." msgstr "" -#: ../../howto/enum.rst:912 -msgid "" -"A ``data type`` is a mixin that defines :meth:`~object.__new__`, or " -"a :class:`~dataclasses.dataclass`" +msgid "A ``data type`` is a mixin that defines :meth:`~object.__new__`, or a :class:`~dataclasses.dataclass`" msgstr "" -#: ../../howto/enum.rst:914 -msgid "" -"%-style formatting: ``%s`` and ``%r`` call the :class:`Enum` " -"class's :meth:`~object.__str__` and :meth:`~object.__repr__` respectively; " -"other codes (such as ``%i`` or ``%h`` for IntEnum) treat the enum member as " -"its mixed-in type." +msgid "%-style formatting: ``%s`` and ``%r`` call the :class:`Enum` class's :meth:`~object.__str__` and :meth:`~object.__repr__` respectively; other codes (such as ``%i`` or ``%h`` for IntEnum) treat the enum member as its mixed-in type." msgstr "" -#: ../../howto/enum.rst:917 -msgid "" -":ref:`Formatted string literals `, :meth:`str.format`, " -"and :func:`format` will use the enum's :meth:`~object.__str__` method." +msgid ":ref:`Formatted string literals `, :meth:`str.format`, and :func:`format` will use the enum's :meth:`~object.__str__` method." msgstr "" -#: ../../howto/enum.rst:922 -msgid "" -"Because :class:`IntEnum`, :class:`IntFlag`, and :class:`StrEnum` are " -"designed to be drop-in replacements for existing constants, " -"their :meth:`~object.__str__` method has been reset to their data " -"types' :meth:`~object.__str__` method." +msgid "Because :class:`IntEnum`, :class:`IntFlag`, and :class:`StrEnum` are designed to be drop-in replacements for existing constants, their :meth:`~object.__str__` method has been reset to their data types' :meth:`~object.__str__` method." msgstr "" -#: ../../howto/enum.rst:930 msgid "When to use :meth:`~object.__new__` vs. :meth:`~object.__init__`" msgstr "" -#: ../../howto/enum.rst:932 -msgid "" -":meth:`~object.__new__` must be used whenever you want to customize the " -"actual value of the :class:`Enum` member. Any other modifications may go in " -"either :meth:`~object.__new__` or :meth:`~object.__init__`, " -"with :meth:`~object.__init__` being preferred." +msgid ":meth:`~object.__new__` must be used whenever you want to customize the actual value of the :class:`Enum` member. Any other modifications may go in either :meth:`~object.__new__` or :meth:`~object.__init__`, with :meth:`~object.__init__` being preferred." msgstr "" -#: ../../howto/enum.rst:936 -msgid "" -"For example, if you want to pass several items to the constructor, but only " -"want one of them to be the value::" +msgid "For example, if you want to pass several items to the constructor, but only want one of them to be the value::" msgstr "" -#: ../../howto/enum.rst:939 msgid "" ">>> class Coordinate(bytes, Enum):\n" "... \"\"\"\n" @@ -1447,62 +1007,36 @@ msgid "" "Coordinate.VY" msgstr "" -#: ../../howto/enum.rst:963 -msgid "" -"*Do not* call ``super().__new__()``, as the lookup-only ``__new__`` is the " -"one that is found; instead, use the data type directly." +msgid "*Do not* call ``super().__new__()``, as the lookup-only ``__new__`` is the one that is found; instead, use the data type directly." msgstr "" -#: ../../howto/enum.rst:968 msgid "Finer Points" msgstr "" -#: ../../howto/enum.rst:971 msgid "Supported ``__dunder__`` and ``_sunder_`` names" msgstr "" -#: ../../howto/enum.rst:973 -msgid "" -"The supported ``__dunder__`` and ``_sunder_`` names can be found in " -"the :ref:`Enum API documentation `." +msgid "The supported ``__dunder__`` and ``_sunder_`` names can be found in the :ref:`Enum API documentation `." msgstr "" -#: ../../howto/enum.rst:977 msgid "_Private__names" msgstr "" -#: ../../howto/enum.rst:979 -msgid "" -":ref:`Private names ` are not converted to enum " -"members, but remain normal attributes." +msgid ":ref:`Private names ` are not converted to enum members, but remain normal attributes." msgstr "" -#: ../../howto/enum.rst:986 msgid "``Enum`` member type" msgstr "" -#: ../../howto/enum.rst:988 -msgid "" -"Enum members are instances of their enum class, and are normally accessed as " -"``EnumClass.member``. In certain situations, such as writing custom enum " -"behavior, being able to access one member directly from another is useful, " -"and is supported; however, in order to avoid name clashes between member " -"names and attributes/methods from mixed-in classes, upper-case names are " -"strongly recommended." +msgid "Enum members are instances of their enum class, and are normally accessed as ``EnumClass.member``. In certain situations, such as writing custom enum behavior, being able to access one member directly from another is useful, and is supported; however, in order to avoid name clashes between member names and attributes/methods from mixed-in classes, upper-case names are strongly recommended." msgstr "" -#: ../../howto/enum.rst:999 msgid "Creating members that are mixed with other data types" msgstr "" -#: ../../howto/enum.rst:1001 -msgid "" -"When subclassing other data types, such as :class:`int` or :class:`str`, " -"with an :class:`Enum`, all values after the ``=`` are passed to that data " -"type's constructor. For example::" +msgid "When subclassing other data types, such as :class:`int` or :class:`str`, with an :class:`Enum`, all values after the ``=`` are passed to that data type's constructor. For example::" msgstr "" -#: ../../howto/enum.rst:1005 msgid "" ">>> class MyEnum(IntEnum): # help(int) -> int(x, base=10) -> integer\n" "... example = '11', 16 # so x='11' and base=16\n" @@ -1511,61 +1045,39 @@ msgid "" "17" msgstr "" -#: ../../howto/enum.rst:1013 msgid "Boolean value of ``Enum`` classes and members" msgstr "" -#: ../../howto/enum.rst:1015 -msgid "" -"Enum classes that are mixed with non-:class:`Enum` types (such " -"as :class:`int`, :class:`str`, etc.) are evaluated according to the mixed-in " -"type's rules; otherwise, all members evaluate as :data:`True`. To make your " -"own enum's boolean evaluation depend on the member's value add the following " -"to your class::" +msgid "Enum classes that are mixed with non-:class:`Enum` types (such as :class:`int`, :class:`str`, etc.) are evaluated according to the mixed-in type's rules; otherwise, all members evaluate as :data:`True`. To make your own enum's boolean evaluation depend on the member's value add the following to your class::" msgstr "" -#: ../../howto/enum.rst:1021 msgid "" "def __bool__(self):\n" " return bool(self.value)" msgstr "" -#: ../../howto/enum.rst:1024 msgid "Plain :class:`Enum` classes always evaluate as :data:`True`." msgstr "" -#: ../../howto/enum.rst:1028 msgid "``Enum`` classes with methods" msgstr "" -#: ../../howto/enum.rst:1030 -msgid "" -"If you give your enum subclass extra methods, like the `Planet`_ class " -"below, those methods will show up in a :func:`dir` of the member, but not of " -"the class::" +msgid "If you give your enum subclass extra methods, like the `Planet`_ class below, those methods will show up in a :func:`dir` of the member, but not of the class::" msgstr "" -#: ../../howto/enum.rst:1034 msgid "" ">>> dir(Planet)\n" -"['EARTH', 'JUPITER', 'MARS', 'MERCURY', 'NEPTUNE', 'SATURN', 'URANUS', " -"'VENUS', '__class__', '__doc__', '__members__', '__module__']\n" +"['EARTH', 'JUPITER', 'MARS', 'MERCURY', 'NEPTUNE', 'SATURN', 'URANUS', 'VENUS', '__class__', '__doc__', '__members__', '__module__']\n" ">>> dir(Planet.EARTH)\n" -"['__class__', '__doc__', '__module__', 'mass', 'name', 'radius', " -"'surface_gravity', 'value']" +"['__class__', '__doc__', '__module__', 'mass', 'name', 'radius', 'surface_gravity', 'value']" msgstr "" -#: ../../howto/enum.rst:1041 msgid "Combining members of ``Flag``" msgstr "" -#: ../../howto/enum.rst:1043 -msgid "" -"Iterating over a combination of :class:`Flag` members will only return the " -"members that are comprised of a single bit::" +msgid "Iterating over a combination of :class:`Flag` members will only return the members that are comprised of a single bit::" msgstr "" -#: ../../howto/enum.rst:1046 msgid "" ">>> class Color(Flag):\n" "... RED = auto()\n" @@ -1581,15 +1093,12 @@ msgid "" "" msgstr "" -#: ../../howto/enum.rst:1061 msgid "``Flag`` and ``IntFlag`` minutia" msgstr "" -#: ../../howto/enum.rst:1063 msgid "Using the following snippet for our examples::" msgstr "" -#: ../../howto/enum.rst:1065 msgid "" ">>> class Color(IntFlag):\n" "... BLACK = 0\n" @@ -1601,35 +1110,26 @@ msgid "" "..." msgstr "" -#: ../../howto/enum.rst:1074 msgid "the following are true:" msgstr "" -#: ../../howto/enum.rst:1076 msgid "single-bit flags are canonical" msgstr "" -#: ../../howto/enum.rst:1077 msgid "multi-bit and zero-bit flags are aliases" msgstr "" -#: ../../howto/enum.rst:1078 msgid "only canonical flags are returned during iteration::" msgstr "" -#: ../../howto/enum.rst:1080 msgid "" ">>> list(Color.WHITE)\n" "[, , ]" msgstr "" -#: ../../howto/enum.rst:1083 -msgid "" -"negating a flag or flag set returns a new flag/flag set with the " -"corresponding positive integer value::" +msgid "negating a flag or flag set returns a new flag/flag set with the corresponding positive integer value::" msgstr "" -#: ../../howto/enum.rst:1086 msgid "" ">>> Color.BLUE\n" "\n" @@ -1638,11 +1138,9 @@ msgid "" "" msgstr "" -#: ../../howto/enum.rst:1092 msgid "names of pseudo-flags are constructed from their members' names::" msgstr "" -#: ../../howto/enum.rst:1094 msgid "" ">>> (Color.RED | Color.GREEN).name\n" "'RED|GREEN'\n" @@ -1656,11 +1154,9 @@ msgid "" "True" msgstr "" -#: ../../howto/enum.rst:1105 msgid "multi-bit flags, aka aliases, can be returned from operations::" msgstr "" -#: ../../howto/enum.rst:1107 msgid "" ">>> Color.RED | Color.BLUE\n" "\n" @@ -1672,25 +1168,17 @@ msgid "" "" msgstr "" -#: ../../howto/enum.rst:1116 -msgid "" -"membership / containment checking: zero-valued flags are always considered " -"to be contained::" +msgid "membership / containment checking: zero-valued flags are always considered to be contained::" msgstr "" -#: ../../howto/enum.rst:1119 msgid "" ">>> Color.BLACK in Color.WHITE\n" "True" msgstr "" -#: ../../howto/enum.rst:1122 -msgid "" -"otherwise, only if all bits of one flag are in the other flag will True be " -"returned::" +msgid "otherwise, only if all bits of one flag are in the other flag will True be returned::" msgstr "" -#: ../../howto/enum.rst:1125 msgid "" ">>> Color.PURPLE in Color.WHITE\n" "True\n" @@ -1699,200 +1187,120 @@ msgid "" "False" msgstr "" -#: ../../howto/enum.rst:1131 -msgid "" -"There is a new boundary mechanism that controls how out-of-range / invalid " -"bits are handled: ``STRICT``, ``CONFORM``, ``EJECT``, and ``KEEP``:" +msgid "There is a new boundary mechanism that controls how out-of-range / invalid bits are handled: ``STRICT``, ``CONFORM``, ``EJECT``, and ``KEEP``:" msgstr "" -#: ../../howto/enum.rst:1134 msgid "STRICT --> raises an exception when presented with invalid values" msgstr "" -#: ../../howto/enum.rst:1135 msgid "CONFORM --> discards any invalid bits" msgstr "" -#: ../../howto/enum.rst:1136 msgid "EJECT --> lose Flag status and become a normal int with the given value" msgstr "" -#: ../../howto/enum.rst:1137 msgid "KEEP --> keep the extra bits" msgstr "" -#: ../../howto/enum.rst:1139 msgid "keeps Flag status and extra bits" msgstr "" -#: ../../howto/enum.rst:1140 msgid "extra bits do not show up in iteration" msgstr "" -#: ../../howto/enum.rst:1141 msgid "extra bits do show up in repr() and str()" msgstr "" -#: ../../howto/enum.rst:1143 -msgid "" -"The default for Flag is ``STRICT``, the default for ``IntFlag`` is " -"``EJECT``, and the default for ``_convert_`` is ``KEEP`` (see " -"``ssl.Options`` for an example of when ``KEEP`` is needed)." +msgid "The default for Flag is ``STRICT``, the default for ``IntFlag`` is ``EJECT``, and the default for ``_convert_`` is ``KEEP`` (see ``ssl.Options`` for an example of when ``KEEP`` is needed)." msgstr "" -#: ../../howto/enum.rst:1151 msgid "How are Enums and Flags different?" msgstr "" -#: ../../howto/enum.rst:1153 -msgid "" -"Enums have a custom metaclass that affects many aspects of both " -"derived :class:`Enum` classes and their instances (members)." +msgid "Enums have a custom metaclass that affects many aspects of both derived :class:`Enum` classes and their instances (members)." msgstr "" -#: ../../howto/enum.rst:1158 msgid "Enum Classes" msgstr "" -#: ../../howto/enum.rst:1160 -msgid "" -"The :class:`EnumType` metaclass is responsible for providing " -"the :meth:`~object.__contains__`, :meth:`~object.__dir__`, :meth:`~object.__iter__` " -"and other methods that allow one to do things with an :class:`Enum` class " -"that fail on a typical class, such as ``list(Color)`` or ``some_enum_var in " -"Color``. :class:`EnumType` is responsible for ensuring that various other " -"methods on the final :class:`Enum` class are correct (such " -"as :meth:`~object.__new__`, :meth:`~object.__getnewargs__`, :meth:`~object.__str__` " -"and :meth:`~object.__repr__`)." +msgid "The :class:`EnumType` metaclass is responsible for providing the :meth:`~object.__contains__`, :meth:`~object.__dir__`, :meth:`~object.__iter__` and other methods that allow one to do things with an :class:`Enum` class that fail on a typical class, such as ``list(Color)`` or ``some_enum_var in Color``. :class:`EnumType` is responsible for ensuring that various other methods on the final :class:`Enum` class are correct (such as :meth:`~object.__new__`, :meth:`~object.__getnewargs__`, :meth:`~object.__str__` and :meth:`~object.__repr__`)." msgstr "" -#: ../../howto/enum.rst:1169 msgid "Flag Classes" msgstr "" -#: ../../howto/enum.rst:1171 -msgid "" -"Flags have an expanded view of aliasing: to be canonical, the value of a " -"flag needs to be a power-of-two value, and not a duplicate name. So, in " -"addition to the :class:`Enum` definition of alias, a flag with no value " -"(a.k.a. ``0``) or with more than one power-of-two value (e.g. ``3``) is " -"considered an alias." +msgid "Flags have an expanded view of aliasing: to be canonical, the value of a flag needs to be a power-of-two value, and not a duplicate name. So, in addition to the :class:`Enum` definition of alias, a flag with no value (a.k.a. ``0``) or with more than one power-of-two value (e.g. ``3``) is considered an alias." msgstr "" -#: ../../howto/enum.rst:1177 msgid "Enum Members (aka instances)" msgstr "" -#: ../../howto/enum.rst:1179 -msgid "" -"The most interesting thing about enum members is that they are " -"singletons. :class:`EnumType` creates them all while it is creating the enum " -"class itself, and then puts a custom :meth:`~object.__new__` in place to " -"ensure that no new ones are ever instantiated by returning only the existing " -"member instances." +msgid "The most interesting thing about enum members is that they are singletons. :class:`EnumType` creates them all while it is creating the enum class itself, and then puts a custom :meth:`~object.__new__` in place to ensure that no new ones are ever instantiated by returning only the existing member instances." msgstr "" -#: ../../howto/enum.rst:1185 msgid "Flag Members" msgstr "" -#: ../../howto/enum.rst:1187 -msgid "" -"Flag members can be iterated over just like the :class:`Flag` class, and " -"only the canonical members will be returned. For example::" +msgid "Flag members can be iterated over just like the :class:`Flag` class, and only the canonical members will be returned. For example::" msgstr "" -#: ../../howto/enum.rst:1190 msgid "" ">>> list(Color)\n" "[, , ]" msgstr "" -#: ../../howto/enum.rst:1193 msgid "(Note that ``BLACK``, ``PURPLE``, and ``WHITE`` do not show up.)" msgstr "" -#: ../../howto/enum.rst:1195 -msgid "" -"Inverting a flag member returns the corresponding positive value, rather " -"than a negative value --- for example::" +msgid "Inverting a flag member returns the corresponding positive value, rather than a negative value --- for example::" msgstr "" -#: ../../howto/enum.rst:1198 msgid "" ">>> ~Color.RED\n" "" msgstr "" -#: ../../howto/enum.rst:1201 -msgid "" -"Flag members have a length corresponding to the number of power-of-two " -"values they contain. For example::" +msgid "Flag members have a length corresponding to the number of power-of-two values they contain. For example::" msgstr "" -#: ../../howto/enum.rst:1204 msgid "" ">>> len(Color.PURPLE)\n" "2" msgstr "" -#: ../../howto/enum.rst:1211 msgid "Enum Cookbook" msgstr "" -#: ../../howto/enum.rst:1214 -msgid "" -"While :class:`Enum`, :class:`IntEnum`, :class:`StrEnum`, :class:`Flag`, " -"and :class:`IntFlag` are expected to cover the majority of use-cases, they " -"cannot cover them all. Here are recipes for some different types of " -"enumerations that can be used directly, or as examples for creating one's " -"own." +msgid "While :class:`Enum`, :class:`IntEnum`, :class:`StrEnum`, :class:`Flag`, and :class:`IntFlag` are expected to cover the majority of use-cases, they cannot cover them all. Here are recipes for some different types of enumerations that can be used directly, or as examples for creating one's own." msgstr "" -#: ../../howto/enum.rst:1221 msgid "Omitting values" msgstr "" -#: ../../howto/enum.rst:1223 -msgid "" -"In many use-cases, one doesn't care what the actual value of an enumeration " -"is. There are several ways to define this type of simple enumeration:" +msgid "In many use-cases, one doesn't care what the actual value of an enumeration is. There are several ways to define this type of simple enumeration:" msgstr "" -#: ../../howto/enum.rst:1226 msgid "use instances of :class:`auto` for the value" msgstr "" -#: ../../howto/enum.rst:1227 msgid "use instances of :class:`object` as the value" msgstr "" -#: ../../howto/enum.rst:1228 msgid "use a descriptive string as the value" msgstr "" -#: ../../howto/enum.rst:1229 -msgid "" -"use a tuple as the value and a custom :meth:`~object.__new__` to replace the " -"tuple with an :class:`int` value" +msgid "use a tuple as the value and a custom :meth:`~object.__new__` to replace the tuple with an :class:`int` value" msgstr "" -#: ../../howto/enum.rst:1232 -msgid "" -"Using any of these methods signifies to the user that these values are not " -"important, and also enables one to add, remove, or reorder members without " -"having to renumber the remaining members." +msgid "Using any of these methods signifies to the user that these values are not important, and also enables one to add, remove, or reorder members without having to renumber the remaining members." msgstr "" -#: ../../howto/enum.rst:1238 msgid "Using :class:`auto`" msgstr "" -#: ../../howto/enum.rst:1240 msgid "Using :class:`auto` would look like::" msgstr "" -#: ../../howto/enum.rst:1242 msgid "" ">>> class Color(Enum):\n" "... RED = auto()\n" @@ -1903,15 +1311,12 @@ msgid "" "" msgstr "" -#: ../../howto/enum.rst:1252 msgid "Using :class:`object`" msgstr "" -#: ../../howto/enum.rst:1254 msgid "Using :class:`object` would look like::" msgstr "" -#: ../../howto/enum.rst:1256 msgid "" ">>> class Color(Enum):\n" "... RED = object()\n" @@ -1922,13 +1327,9 @@ msgid "" ">" msgstr "" -#: ../../howto/enum.rst:1264 -msgid "" -"This is also a good example of why you might want to write your " -"own :meth:`~object.__repr__`::" +msgid "This is also a good example of why you might want to write your own :meth:`~object.__repr__`::" msgstr "" -#: ../../howto/enum.rst:1267 msgid "" ">>> class Color(Enum):\n" "... RED = object()\n" @@ -1941,15 +1342,12 @@ msgid "" "" msgstr "" -#: ../../howto/enum.rst:1280 msgid "Using a descriptive string" msgstr "" -#: ../../howto/enum.rst:1282 msgid "Using a string as the value would look like::" msgstr "" -#: ../../howto/enum.rst:1284 msgid "" ">>> class Color(Enum):\n" "... RED = 'stop'\n" @@ -1960,15 +1358,12 @@ msgid "" "" msgstr "" -#: ../../howto/enum.rst:1294 msgid "Using a custom :meth:`~object.__new__`" msgstr "" -#: ../../howto/enum.rst:1296 msgid "Using an auto-numbering :meth:`~object.__new__` would look like::" msgstr "" -#: ../../howto/enum.rst:1298 msgid "" ">>> class AutoNumber(Enum):\n" "... def __new__(cls):\n" @@ -1986,13 +1381,9 @@ msgid "" "" msgstr "" -#: ../../howto/enum.rst:1313 -msgid "" -"To make a more general purpose ``AutoNumber``, add ``*args`` to the " -"signature::" +msgid "To make a more general purpose ``AutoNumber``, add ``*args`` to the signature::" msgstr "" -#: ../../howto/enum.rst:1315 msgid "" ">>> class AutoNumber(Enum):\n" "... def __new__(cls, *args): # this is the only change from above\n" @@ -2003,13 +1394,9 @@ msgid "" "..." msgstr "" -#: ../../howto/enum.rst:1323 -msgid "" -"Then when you inherit from ``AutoNumber`` you can write your own " -"``__init__`` to handle any extra arguments::" +msgid "Then when you inherit from ``AutoNumber`` you can write your own ``__init__`` to handle any extra arguments::" msgstr "" -#: ../../howto/enum.rst:1326 msgid "" ">>> class Swatch(AutoNumber):\n" "... def __init__(self, pantone='unknown'):\n" @@ -2026,35 +1413,21 @@ msgid "" "'unknown'" msgstr "" -#: ../../howto/enum.rst:1342 -msgid "" -"The :meth:`~object.__new__` method, if defined, is used during creation of " -"the Enum members; it is then replaced by Enum's :meth:`~object.__new__` " -"which is used after class creation for lookup of existing members." +msgid "The :meth:`~object.__new__` method, if defined, is used during creation of the Enum members; it is then replaced by Enum's :meth:`~object.__new__` which is used after class creation for lookup of existing members." msgstr "" -#: ../../howto/enum.rst:1348 -msgid "" -"*Do not* call ``super().__new__()``, as the lookup-only ``__new__`` is the " -"one that is found; instead, use the data type directly -- e.g.::" +msgid "*Do not* call ``super().__new__()``, as the lookup-only ``__new__`` is the one that is found; instead, use the data type directly -- e.g.::" msgstr "" -#: ../../howto/enum.rst:1351 msgid "obj = int.__new__(cls, value)" msgstr "" -#: ../../howto/enum.rst:1355 msgid "OrderedEnum" msgstr "" -#: ../../howto/enum.rst:1357 -msgid "" -"An ordered enumeration that is not based on :class:`IntEnum` and so " -"maintains the normal :class:`Enum` invariants (such as not being comparable " -"to other enumerations)::" +msgid "An ordered enumeration that is not based on :class:`IntEnum` and so maintains the normal :class:`Enum` invariants (such as not being comparable to other enumerations)::" msgstr "" -#: ../../howto/enum.rst:1361 msgid "" ">>> class OrderedEnum(Enum):\n" "... def __ge__(self, other):\n" @@ -2085,17 +1458,12 @@ msgid "" "True" msgstr "" -#: ../../howto/enum.rst:1391 msgid "DuplicateFreeEnum" msgstr "" -#: ../../howto/enum.rst:1393 -msgid "" -"Raises an error if a duplicate member value is found instead of creating an " -"alias::" +msgid "Raises an error if a duplicate member value is found instead of creating an alias::" msgstr "" -#: ../../howto/enum.rst:1396 msgid "" ">>> class DuplicateFreeEnum(Enum):\n" "... def __init__(self, *args):\n" @@ -2104,8 +1472,7 @@ msgid "" "... a = self.name\n" "... e = cls(self.value).name\n" "... raise ValueError(\n" -"... \"aliases not allowed in DuplicateFreeEnum: %r --> " -"%r\"\n" +"... \"aliases not allowed in DuplicateFreeEnum: %r --> %r\"\n" "... % (a, e))\n" "...\n" ">>> class Color(DuplicateFreeEnum):\n" @@ -2119,22 +1486,15 @@ msgid "" "ValueError: aliases not allowed in DuplicateFreeEnum: 'GRENE' --> 'GREEN'" msgstr "" -#: ../../howto/enum.rst:1418 -msgid "" -"This is a useful example for subclassing Enum to add or change other " -"behaviors as well as disallowing aliases. If the only desired change is " -"disallowing aliases, the :func:`unique` decorator can be used instead." +msgid "This is a useful example for subclassing Enum to add or change other behaviors as well as disallowing aliases. If the only desired change is disallowing aliases, the :func:`unique` decorator can be used instead." msgstr "" -#: ../../howto/enum.rst:1425 msgid "MultiValueEnum" msgstr "" -#: ../../howto/enum.rst:1427 msgid "Supports having more than one value per member::" msgstr "" -#: ../../howto/enum.rst:1429 msgid "" ">>> class MultiValueEnum(Enum):\n" "... def __new__(cls, value, *values):\n" @@ -2154,17 +1514,12 @@ msgid "" "" msgstr "" -#: ../../howto/enum.rst:1448 msgid "Planet" msgstr "" -#: ../../howto/enum.rst:1450 -msgid "" -"If :meth:`~object.__new__` or :meth:`~object.__init__` is defined, the value " -"of the enum member will be passed to those methods::" +msgid "If :meth:`~object.__new__` or :meth:`~object.__init__` is defined, the value of the enum member will be passed to those methods::" msgstr "" -#: ../../howto/enum.rst:1453 msgid "" ">>> class Planet(Enum):\n" "... MERCURY = (3.303e+23, 2.4397e6)\n" @@ -2190,15 +1545,12 @@ msgid "" "9.802652743337129" msgstr "" -#: ../../howto/enum.rst:1479 msgid "TimePeriod" msgstr "" -#: ../../howto/enum.rst:1481 msgid "An example to show the :attr:`~Enum._ignore_` attribute in use::" msgstr "" -#: ../../howto/enum.rst:1483 msgid "" ">>> import datetime as dt\n" ">>> class Period(dt.timedelta, Enum):\n" @@ -2209,20 +1561,13 @@ msgid "" "... Period['day_%d' % i] = i\n" "...\n" ">>> list(Period)[:2]\n" -"[, ]\n" +"[, ]\n" ">>> list(Period)[-2:]\n" -"[, ]" +"[, ]" msgstr "" -#: ../../howto/enum.rst:1500 msgid "Subclassing EnumType" msgstr "" -#: ../../howto/enum.rst:1502 -msgid "" -"While most enum needs can be met by customizing :class:`Enum` subclasses, " -"either with class decorators or custom functions, :class:`EnumType` can be " -"subclassed to provide a different Enum experience." +msgid "While most enum needs can be met by customizing :class:`Enum` subclasses, either with class decorators or custom functions, :class:`EnumType` can be subclassed to provide a different Enum experience." msgstr "" diff --git a/howto/free-threading-extensions.po b/howto/free-threading-extensions.po index 98c6c6bb..05ee711c 100644 --- a/howto/free-threading-extensions.po +++ b/howto/free-threading-extensions.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2024-06-20 06:42+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,76 +23,42 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../howto/free-threading-extensions.rst:7 msgid "C API Extension Support for Free Threading" msgstr "" -#: ../../howto/free-threading-extensions.rst:9 -msgid "" -"Starting with the 3.13 release, CPython has support for running with " -"the :term:`global interpreter lock` (GIL) disabled in a configuration " -"called :term:`free threading`. This document describes how to adapt C API " -"extensions to support free threading." +msgid "Starting with the 3.13 release, CPython has support for running with the :term:`global interpreter lock` (GIL) disabled in a configuration called :term:`free threading`. This document describes how to adapt C API extensions to support free threading." msgstr "" -#: ../../howto/free-threading-extensions.rst:16 msgid "Identifying the Free-Threaded Build in C" msgstr "" -#: ../../howto/free-threading-extensions.rst:18 -msgid "" -"The CPython C API exposes the ``Py_GIL_DISABLED`` macro: in the free-" -"threaded build it's defined to ``1``, and in the regular build it's not " -"defined. You can use it to enable code that only runs under the free-" -"threaded build::" +msgid "The CPython C API exposes the ``Py_GIL_DISABLED`` macro: in the free-threaded build it's defined to ``1``, and in the regular build it's not defined. You can use it to enable code that only runs under the free-threaded build::" msgstr "" -#: ../../howto/free-threading-extensions.rst:22 msgid "" "#ifdef Py_GIL_DISABLED\n" "/* code that only runs in the free-threaded build */\n" "#endif" msgstr "" -#: ../../howto/free-threading-extensions.rst:28 -msgid "" -"On Windows, this macro is not defined automatically, but must be specified " -"to the compiler when building. The :func:`sysconfig.get_config_var` function " -"can be used to determine whether the current running interpreter had the " -"macro defined." +msgid "On Windows, this macro is not defined automatically, but must be specified to the compiler when building. The :func:`sysconfig.get_config_var` function can be used to determine whether the current running interpreter had the macro defined." msgstr "" -#: ../../howto/free-threading-extensions.rst:35 msgid "Module Initialization" msgstr "" -#: ../../howto/free-threading-extensions.rst:37 -msgid "" -"Extension modules need to explicitly indicate that they support running with " -"the GIL disabled; otherwise importing the extension will raise a warning and " -"enable the GIL at runtime." +msgid "Extension modules need to explicitly indicate that they support running with the GIL disabled; otherwise importing the extension will raise a warning and enable the GIL at runtime." msgstr "" -#: ../../howto/free-threading-extensions.rst:41 -msgid "" -"There are two ways to indicate that an extension module supports running " -"with the GIL disabled depending on whether the extension uses multi-phase or " -"single-phase initialization." +msgid "There are two ways to indicate that an extension module supports running with the GIL disabled depending on whether the extension uses multi-phase or single-phase initialization." msgstr "" -#: ../../howto/free-threading-extensions.rst:46 msgid "Multi-Phase Initialization" msgstr "" -#: ../../howto/free-threading-extensions.rst:48 -msgid "" -"Extensions that use multi-phase initialization " -"(i.e., :c:func:`PyModuleDef_Init`) should add a :c:data:`Py_mod_gil` slot in " -"the module definition. If your extension supports older versions of " -"CPython, you should guard the slot with a :c:data:`PY_VERSION_HEX` check." +msgid "Extensions that use multi-phase initialization (i.e., :c:func:`PyModuleDef_Init`) should add a :c:data:`Py_mod_gil` slot in the module definition. If your extension supports older versions of CPython, you should guard the slot with a :c:data:`PY_VERSION_HEX` check." msgstr "" -#: ../../howto/free-threading-extensions.rst:55 msgid "" "static struct PyModuleDef_Slot module_slots[] = {\n" " ...\n" @@ -109,21 +75,12 @@ msgid "" "};" msgstr "" -#: ../../howto/free-threading-extensions.rst:71 msgid "Single-Phase Initialization" msgstr "" -#: ../../howto/free-threading-extensions.rst:73 -msgid "" -"Extensions that use single-phase initialization " -"(i.e., :c:func:`PyModule_Create`) should " -"call :c:func:`PyUnstable_Module_SetGIL` to indicate that they support " -"running with the GIL disabled. The function is only defined in the free-" -"threaded build, so you should guard the call with ``#ifdef Py_GIL_DISABLED`` " -"to avoid compilation errors in the regular build." +msgid "Extensions that use single-phase initialization (i.e., :c:func:`PyModule_Create`) should call :c:func:`PyUnstable_Module_SetGIL` to indicate that they support running with the GIL disabled. The function is only defined in the free-threaded build, so you should guard the call with ``#ifdef Py_GIL_DISABLED`` to avoid compilation errors in the regular build." msgstr "" -#: ../../howto/free-threading-extensions.rst:81 msgid "" "static struct PyModuleDef moduledef = {\n" " PyModuleDef_HEAD_INIT,\n" @@ -144,63 +101,33 @@ msgid "" "}" msgstr "" -#: ../../howto/free-threading-extensions.rst:101 msgid "General API Guidelines" msgstr "" -#: ../../howto/free-threading-extensions.rst:103 msgid "Most of the C API is thread-safe, but there are some exceptions." msgstr "" -#: ../../howto/free-threading-extensions.rst:105 -msgid "" -"**Struct Fields**: Accessing fields in Python C API objects or structs " -"directly is not thread-safe if the field may be concurrently modified." +msgid "**Struct Fields**: Accessing fields in Python C API objects or structs directly is not thread-safe if the field may be concurrently modified." msgstr "" -#: ../../howto/free-threading-extensions.rst:107 -msgid "" -"**Macros**: Accessor macros " -"like :c:macro:`PyList_GET_ITEM`, :c:macro:`PyList_SET_ITEM`, and macros " -"like :c:macro:`PySequence_Fast_GET_SIZE` that use the object returned " -"by :c:func:`PySequence_Fast` do not perform any error checking or locking. " -"These macros are not thread-safe if the container object may be modified " -"concurrently." +msgid "**Macros**: Accessor macros like :c:macro:`PyList_GET_ITEM`, :c:macro:`PyList_SET_ITEM`, and macros like :c:macro:`PySequence_Fast_GET_SIZE` that use the object returned by :c:func:`PySequence_Fast` do not perform any error checking or locking. These macros are not thread-safe if the container object may be modified concurrently." msgstr "" -#: ../../howto/free-threading-extensions.rst:113 -msgid "" -"**Borrowed References**: C API functions that return :term:`borrowed " -"references ` may not be thread-safe if the containing " -"object is modified concurrently. See the section on :ref:`borrowed " -"references ` for more information." +msgid "**Borrowed References**: C API functions that return :term:`borrowed references ` may not be thread-safe if the containing object is modified concurrently. See the section on :ref:`borrowed references ` for more information." msgstr "" -#: ../../howto/free-threading-extensions.rst:120 msgid "Container Thread Safety" msgstr "" -#: ../../howto/free-threading-extensions.rst:122 -msgid "" -"Containers like :c:struct:`PyListObject`, :c:struct:`PyDictObject`, " -"and :c:struct:`PySetObject` perform internal locking in the free-threaded " -"build. For example, the :c:func:`PyList_Append` will lock the list before " -"appending an item." +msgid "Containers like :c:struct:`PyListObject`, :c:struct:`PyDictObject`, and :c:struct:`PySetObject` perform internal locking in the free-threaded build. For example, the :c:func:`PyList_Append` will lock the list before appending an item." msgstr "" -#: ../../howto/free-threading-extensions.rst:130 msgid "``PyDict_Next``" msgstr "" -#: ../../howto/free-threading-extensions.rst:132 -msgid "" -"A notable exception is :c:func:`PyDict_Next`, which does not lock the " -"dictionary. You should use :c:macro:`Py_BEGIN_CRITICAL_SECTION` to protect " -"the dictionary while iterating over it if the dictionary may be concurrently " -"modified::" +msgid "A notable exception is :c:func:`PyDict_Next`, which does not lock the dictionary. You should use :c:macro:`Py_BEGIN_CRITICAL_SECTION` to protect the dictionary while iterating over it if the dictionary may be concurrently modified::" msgstr "" -#: ../../howto/free-threading-extensions.rst:137 msgid "" "Py_BEGIN_CRITICAL_SECTION(dict);\n" "PyObject *key, *value;\n" @@ -211,282 +138,156 @@ msgid "" "Py_END_CRITICAL_SECTION();" msgstr "" -#: ../../howto/free-threading-extensions.rst:147 msgid "Borrowed References" msgstr "" -#: ../../howto/free-threading-extensions.rst:151 -msgid "" -"Some C API functions return :term:`borrowed references `. These APIs are not thread-safe if the containing object is " -"modified concurrently. For example, it's not safe to " -"use :c:func:`PyList_GetItem` if the list may be modified concurrently." +msgid "Some C API functions return :term:`borrowed references `. These APIs are not thread-safe if the containing object is modified concurrently. For example, it's not safe to use :c:func:`PyList_GetItem` if the list may be modified concurrently." msgstr "" -#: ../../howto/free-threading-extensions.rst:156 -msgid "" -"The following table lists some borrowed reference APIs and their " -"replacements that return :term:`strong references `." +msgid "The following table lists some borrowed reference APIs and their replacements that return :term:`strong references `." msgstr "" -#: ../../howto/free-threading-extensions.rst:160 msgid "Borrowed reference API" msgstr "" -#: ../../howto/free-threading-extensions.rst:160 msgid "Strong reference API" msgstr "" -#: ../../howto/free-threading-extensions.rst:162 msgid ":c:func:`PyList_GetItem`" msgstr "" -#: ../../howto/free-threading-extensions.rst:162 -#: ../../howto/free-threading-extensions.rst:164 msgid ":c:func:`PyList_GetItemRef`" msgstr "" -#: ../../howto/free-threading-extensions.rst:164 msgid ":c:func:`PyList_GET_ITEM`" msgstr "" -#: ../../howto/free-threading-extensions.rst:166 msgid ":c:func:`PyDict_GetItem`" msgstr "" -#: ../../howto/free-threading-extensions.rst:166 -#: ../../howto/free-threading-extensions.rst:168 msgid ":c:func:`PyDict_GetItemRef`" msgstr "" -#: ../../howto/free-threading-extensions.rst:168 msgid ":c:func:`PyDict_GetItemWithError`" msgstr "" -#: ../../howto/free-threading-extensions.rst:170 msgid ":c:func:`PyDict_GetItemString`" msgstr "" -#: ../../howto/free-threading-extensions.rst:170 msgid ":c:func:`PyDict_GetItemStringRef`" msgstr "" -#: ../../howto/free-threading-extensions.rst:172 msgid ":c:func:`PyDict_SetDefault`" msgstr "" -#: ../../howto/free-threading-extensions.rst:172 msgid ":c:func:`PyDict_SetDefaultRef`" msgstr "" -#: ../../howto/free-threading-extensions.rst:174 msgid ":c:func:`PyDict_Next`" msgstr "" -#: ../../howto/free-threading-extensions.rst:174 msgid "none (see :ref:`PyDict_Next`)" msgstr "" -#: ../../howto/free-threading-extensions.rst:176 msgid ":c:func:`PyWeakref_GetObject`" msgstr "" -#: ../../howto/free-threading-extensions.rst:176 -#: ../../howto/free-threading-extensions.rst:178 msgid ":c:func:`PyWeakref_GetRef`" msgstr "" -#: ../../howto/free-threading-extensions.rst:178 msgid ":c:func:`PyWeakref_GET_OBJECT`" msgstr "" -#: ../../howto/free-threading-extensions.rst:180 msgid ":c:func:`PyImport_AddModule`" msgstr "" -#: ../../howto/free-threading-extensions.rst:180 msgid ":c:func:`PyImport_AddModuleRef`" msgstr "" -#: ../../howto/free-threading-extensions.rst:182 msgid ":c:func:`PyCell_GET`" msgstr "" -#: ../../howto/free-threading-extensions.rst:182 msgid ":c:func:`PyCell_Get`" msgstr "" -#: ../../howto/free-threading-extensions.rst:185 -msgid "" -"Not all APIs that return borrowed references are problematic. For " -"example, :c:func:`PyTuple_GetItem` is safe because tuples are immutable. " -"Similarly, not all uses of the above APIs are problematic. For " -"example, :c:func:`PyDict_GetItem` is often used for parsing keyword argument " -"dictionaries in function calls; those keyword argument dictionaries are " -"effectively private (not accessible by other threads), so using borrowed " -"references in that context is safe." +msgid "Not all APIs that return borrowed references are problematic. For example, :c:func:`PyTuple_GetItem` is safe because tuples are immutable. Similarly, not all uses of the above APIs are problematic. For example, :c:func:`PyDict_GetItem` is often used for parsing keyword argument dictionaries in function calls; those keyword argument dictionaries are effectively private (not accessible by other threads), so using borrowed references in that context is safe." msgstr "" -#: ../../howto/free-threading-extensions.rst:193 -msgid "" -"Some of these functions were added in Python 3.13. You can use the " -"`pythoncapi-compat `_ package " -"to provide implementations of these functions for older Python versions." +msgid "Some of these functions were added in Python 3.13. You can use the `pythoncapi-compat `_ package to provide implementations of these functions for older Python versions." msgstr "" -#: ../../howto/free-threading-extensions.rst:201 msgid "Memory Allocation APIs" msgstr "" -#: ../../howto/free-threading-extensions.rst:203 -msgid "" -"Python's memory management C API provides functions in three " -"different :ref:`allocation domains `: \"raw\", \"mem\", " -"and \"object\". For thread-safety, the free-threaded build requires that " -"only Python objects are allocated using the object domain, and that all " -"Python objects are allocated using that domain. This differs from the prior " -"Python versions, where this was only a best practice and not a hard " -"requirement." +msgid "Python's memory management C API provides functions in three different :ref:`allocation domains `: \"raw\", \"mem\", and \"object\". For thread-safety, the free-threaded build requires that only Python objects are allocated using the object domain, and that all Python objects are allocated using that domain. This differs from the prior Python versions, where this was only a best practice and not a hard requirement." msgstr "" -#: ../../howto/free-threading-extensions.rst:212 -msgid "" -"Search for uses of :c:func:`PyObject_Malloc` in your extension and check " -"that the allocated memory is used for Python objects. " -"Use :c:func:`PyMem_Malloc` to allocate buffers instead " -"of :c:func:`PyObject_Malloc`." +msgid "Search for uses of :c:func:`PyObject_Malloc` in your extension and check that the allocated memory is used for Python objects. Use :c:func:`PyMem_Malloc` to allocate buffers instead of :c:func:`PyObject_Malloc`." msgstr "" -#: ../../howto/free-threading-extensions.rst:219 msgid "Thread State and GIL APIs" msgstr "" -#: ../../howto/free-threading-extensions.rst:221 -msgid "" -"Python provides a set of functions and macros to manage thread state and the " -"GIL, such as:" +msgid "Python provides a set of functions and macros to manage thread state and the GIL, such as:" msgstr "" -#: ../../howto/free-threading-extensions.rst:224 msgid ":c:func:`PyGILState_Ensure` and :c:func:`PyGILState_Release`" msgstr "" -#: ../../howto/free-threading-extensions.rst:225 msgid ":c:func:`PyEval_SaveThread` and :c:func:`PyEval_RestoreThread`" msgstr "" -#: ../../howto/free-threading-extensions.rst:226 msgid ":c:macro:`Py_BEGIN_ALLOW_THREADS` and :c:macro:`Py_END_ALLOW_THREADS`" msgstr "" -#: ../../howto/free-threading-extensions.rst:228 -msgid "" -"These functions should still be used in the free-threaded build to manage " -"thread state even when the :term:`GIL` is disabled. For example, if you " -"create a thread outside of Python, you must call :c:func:`PyGILState_Ensure` " -"before calling into the Python API to ensure that the thread has a valid " -"Python thread state." +msgid "These functions should still be used in the free-threaded build to manage thread state even when the :term:`GIL` is disabled. For example, if you create a thread outside of Python, you must call :c:func:`PyGILState_Ensure` before calling into the Python API to ensure that the thread has a valid Python thread state." msgstr "" -#: ../../howto/free-threading-extensions.rst:234 -msgid "" -"You should continue to call :c:func:`PyEval_SaveThread` " -"or :c:macro:`Py_BEGIN_ALLOW_THREADS` around blocking operations, such as I/O " -"or lock acquisitions, to allow other threads to run the :term:`cyclic " -"garbage collector `." +msgid "You should continue to call :c:func:`PyEval_SaveThread` or :c:macro:`Py_BEGIN_ALLOW_THREADS` around blocking operations, such as I/O or lock acquisitions, to allow other threads to run the :term:`cyclic garbage collector `." msgstr "" -#: ../../howto/free-threading-extensions.rst:241 msgid "Protecting Internal Extension State" msgstr "" -#: ../../howto/free-threading-extensions.rst:243 -msgid "" -"Your extension may have internal state that was previously protected by the " -"GIL. You may need to add locking to protect this state. The approach will " -"depend on your extension, but some common patterns include:" +msgid "Your extension may have internal state that was previously protected by the GIL. You may need to add locking to protect this state. The approach will depend on your extension, but some common patterns include:" msgstr "" -#: ../../howto/free-threading-extensions.rst:247 -msgid "" -"**Caches**: global caches are a common source of shared state. Consider " -"using a lock to protect the cache or disabling it in the free-threaded build " -"if the cache is not critical for performance." +msgid "**Caches**: global caches are a common source of shared state. Consider using a lock to protect the cache or disabling it in the free-threaded build if the cache is not critical for performance." msgstr "" -#: ../../howto/free-threading-extensions.rst:250 -msgid "" -"**Global State**: global state may need to be protected by a lock or moved " -"to thread local storage. C11 and C++11 provide the ``thread_local`` or " -"``_Thread_local`` for `thread-local storage `_." +msgid "**Global State**: global state may need to be protected by a lock or moved to thread local storage. C11 and C++11 provide the ``thread_local`` or ``_Thread_local`` for `thread-local storage `_." msgstr "" -#: ../../howto/free-threading-extensions.rst:257 msgid "Critical Sections" msgstr "" -#: ../../howto/free-threading-extensions.rst:261 -msgid "" -"In the free-threaded build, CPython provides a mechanism called \"critical " -"sections\" to protect data that would otherwise be protected by the GIL. " -"While extension authors may not interact with the internal critical section " -"implementation directly, understanding their behavior is crucial when using " -"certain C API functions or managing shared state in the free-threaded build." +msgid "In the free-threaded build, CPython provides a mechanism called \"critical sections\" to protect data that would otherwise be protected by the GIL. While extension authors may not interact with the internal critical section implementation directly, understanding their behavior is crucial when using certain C API functions or managing shared state in the free-threaded build." msgstr "" -#: ../../howto/free-threading-extensions.rst:268 msgid "What Are Critical Sections?" msgstr "" -#: ../../howto/free-threading-extensions.rst:270 -msgid "" -"Conceptually, critical sections act as a deadlock avoidance layer built on " -"top of simple mutexes. Each thread maintains a stack of active critical " -"sections. When a thread needs to acquire a lock associated with a critical " -"section (e.g., implicitly when calling a thread-safe C API function " -"like :c:func:`PyDict_SetItem`, or explicitly using macros), it attempts to " -"acquire the underlying mutex." +msgid "Conceptually, critical sections act as a deadlock avoidance layer built on top of simple mutexes. Each thread maintains a stack of active critical sections. When a thread needs to acquire a lock associated with a critical section (e.g., implicitly when calling a thread-safe C API function like :c:func:`PyDict_SetItem`, or explicitly using macros), it attempts to acquire the underlying mutex." msgstr "" -#: ../../howto/free-threading-extensions.rst:278 msgid "Using Critical Sections" msgstr "" -#: ../../howto/free-threading-extensions.rst:280 msgid "The primary APIs for using critical sections are:" msgstr "" -#: ../../howto/free-threading-extensions.rst:282 -msgid "" -":c:macro:`Py_BEGIN_CRITICAL_SECTION` and :c:macro:`Py_END_CRITICAL_SECTION` " -"- For locking a single object" +msgid ":c:macro:`Py_BEGIN_CRITICAL_SECTION` and :c:macro:`Py_END_CRITICAL_SECTION` - For locking a single object" msgstr "" -#: ../../howto/free-threading-extensions.rst:285 -msgid "" -":c:macro:`Py_BEGIN_CRITICAL_SECTION2` " -"and :c:macro:`Py_END_CRITICAL_SECTION2` - For locking two objects " -"simultaneously" +msgid ":c:macro:`Py_BEGIN_CRITICAL_SECTION2` and :c:macro:`Py_END_CRITICAL_SECTION2` - For locking two objects simultaneously" msgstr "" -#: ../../howto/free-threading-extensions.rst:288 -msgid "" -"These macros must be used in matching pairs and must appear in the same C " -"scope, since they establish a new local scope. These macros are no-ops in " -"non-free-threaded builds, so they can be safely added to code that needs to " -"support both build types." +msgid "These macros must be used in matching pairs and must appear in the same C scope, since they establish a new local scope. These macros are no-ops in non-free-threaded builds, so they can be safely added to code that needs to support both build types." msgstr "" -#: ../../howto/free-threading-extensions.rst:293 -msgid "" -"A common use of a critical section would be to lock an object while " -"accessing an internal attribute of it. For example, if an extension type " -"has an internal count field, you could use a critical section while reading " -"or writing that field::" +msgid "A common use of a critical section would be to lock an object while accessing an internal attribute of it. For example, if an extension type has an internal count field, you could use a critical section while reading or writing that field::" msgstr "" -#: ../../howto/free-threading-extensions.rst:298 msgid "" "// read the count, returns new reference to internal count value\n" "PyObject *result;\n" @@ -501,195 +302,92 @@ msgid "" "Py_END_CRITICAL_SECTION();" msgstr "" -#: ../../howto/free-threading-extensions.rst:312 msgid "How Critical Sections Work" msgstr "" -#: ../../howto/free-threading-extensions.rst:314 -msgid "" -"Unlike traditional locks, critical sections do not guarantee exclusive " -"access throughout their entire duration. If a thread would block while " -"holding a critical section (e.g., by acquiring another lock or performing I/" -"O), the critical section is temporarily suspended—all locks are released—and " -"then resumed when the blocking operation completes." +msgid "Unlike traditional locks, critical sections do not guarantee exclusive access throughout their entire duration. If a thread would block while holding a critical section (e.g., by acquiring another lock or performing I/O), the critical section is temporarily suspended—all locks are released—and then resumed when the blocking operation completes." msgstr "" -#: ../../howto/free-threading-extensions.rst:320 -msgid "" -"This behavior is similar to what happens with the GIL when a thread makes a " -"blocking call. The key differences are:" +msgid "This behavior is similar to what happens with the GIL when a thread makes a blocking call. The key differences are:" msgstr "" -#: ../../howto/free-threading-extensions.rst:323 msgid "Critical sections operate on a per-object basis rather than globally" msgstr "" -#: ../../howto/free-threading-extensions.rst:325 -msgid "" -"Critical sections follow a stack discipline within each thread (the " -"\"begin\" and \"end\" macros enforce this since they must be paired and " -"within the same scope)" +msgid "Critical sections follow a stack discipline within each thread (the \"begin\" and \"end\" macros enforce this since they must be paired and within the same scope)" msgstr "" -#: ../../howto/free-threading-extensions.rst:328 -msgid "" -"Critical sections automatically release and reacquire locks around potential " -"blocking operations" +msgid "Critical sections automatically release and reacquire locks around potential blocking operations" msgstr "" -#: ../../howto/free-threading-extensions.rst:332 msgid "Deadlock Avoidance" msgstr "" -#: ../../howto/free-threading-extensions.rst:334 msgid "Critical sections help avoid deadlocks in two ways:" msgstr "" -#: ../../howto/free-threading-extensions.rst:336 -msgid "" -"If a thread tries to acquire a lock that's already held by another thread, " -"it first suspends all of its active critical sections, temporarily releasing " -"their locks" +msgid "If a thread tries to acquire a lock that's already held by another thread, it first suspends all of its active critical sections, temporarily releasing their locks" msgstr "" -#: ../../howto/free-threading-extensions.rst:340 -msgid "" -"When the blocking operation completes, only the top-most critical section is " -"reacquired first" +msgid "When the blocking operation completes, only the top-most critical section is reacquired first" msgstr "" -#: ../../howto/free-threading-extensions.rst:343 -msgid "" -"This means you cannot rely on nested critical sections to lock multiple " -"objects at once, as the inner critical section may suspend the outer ones. " -"Instead, use :c:macro:`Py_BEGIN_CRITICAL_SECTION2` to lock two objects " -"simultaneously." +msgid "This means you cannot rely on nested critical sections to lock multiple objects at once, as the inner critical section may suspend the outer ones. Instead, use :c:macro:`Py_BEGIN_CRITICAL_SECTION2` to lock two objects simultaneously." msgstr "" -#: ../../howto/free-threading-extensions.rst:347 -msgid "" -"Note that the locks described above are only :c:type:`PyMutex` based locks. " -"The critical section implementation does not know about or affect other " -"locking mechanisms that might be in use, like POSIX mutexes. Also note that " -"while blocking on any :c:type:`PyMutex` causes the critical sections to be " -"suspended, only the mutexes that are part of the critical sections are " -"released. If :c:type:`PyMutex` is used without a critical section, it will " -"not be released and therefore does not get the same deadlock avoidance." +msgid "Note that the locks described above are only :c:type:`PyMutex` based locks. The critical section implementation does not know about or affect other locking mechanisms that might be in use, like POSIX mutexes. Also note that while blocking on any :c:type:`PyMutex` causes the critical sections to be suspended, only the mutexes that are part of the critical sections are released. If :c:type:`PyMutex` is used without a critical section, it will not be released and therefore does not get the same deadlock avoidance." msgstr "" -#: ../../howto/free-threading-extensions.rst:356 msgid "Important Considerations" msgstr "" -#: ../../howto/free-threading-extensions.rst:358 -msgid "" -"Critical sections may temporarily release their locks, allowing other " -"threads to modify the protected data. Be careful about making assumptions " -"about the state of the data after operations that might block." +msgid "Critical sections may temporarily release their locks, allowing other threads to modify the protected data. Be careful about making assumptions about the state of the data after operations that might block." msgstr "" -#: ../../howto/free-threading-extensions.rst:362 -msgid "" -"Because locks can be temporarily released (suspended), entering a critical " -"section does not guarantee exclusive access to the protected resource " -"throughout the section's duration. If code within a critical section calls " -"another function that blocks (e.g., acquires another lock, performs blocking " -"I/O), all locks held by the thread via critical sections will be released. " -"This is similar to how the GIL can be released during blocking calls." +msgid "Because locks can be temporarily released (suspended), entering a critical section does not guarantee exclusive access to the protected resource throughout the section's duration. If code within a critical section calls another function that blocks (e.g., acquires another lock, performs blocking I/O), all locks held by the thread via critical sections will be released. This is similar to how the GIL can be released during blocking calls." msgstr "" -#: ../../howto/free-threading-extensions.rst:369 -msgid "" -"Only the lock(s) associated with the most recently entered (top-most) " -"critical section are guaranteed to be held at any given time. Locks for " -"outer, nested critical sections might have been suspended." +msgid "Only the lock(s) associated with the most recently entered (top-most) critical section are guaranteed to be held at any given time. Locks for outer, nested critical sections might have been suspended." msgstr "" -#: ../../howto/free-threading-extensions.rst:373 -msgid "" -"You can lock at most two objects simultaneously with these APIs. If you need " -"to lock more objects, you'll need to restructure your code." +msgid "You can lock at most two objects simultaneously with these APIs. If you need to lock more objects, you'll need to restructure your code." msgstr "" -#: ../../howto/free-threading-extensions.rst:376 -msgid "" -"While critical sections will not deadlock if you attempt to lock the same " -"object twice, they are less efficient than purpose-built reentrant locks for " -"this use case." +msgid "While critical sections will not deadlock if you attempt to lock the same object twice, they are less efficient than purpose-built reentrant locks for this use case." msgstr "" -#: ../../howto/free-threading-extensions.rst:380 -msgid "" -"When using :c:macro:`Py_BEGIN_CRITICAL_SECTION2`, the order of the objects " -"doesn't affect correctness (the implementation handles deadlock avoidance), " -"but it's good practice to always lock objects in a consistent order." +msgid "When using :c:macro:`Py_BEGIN_CRITICAL_SECTION2`, the order of the objects doesn't affect correctness (the implementation handles deadlock avoidance), but it's good practice to always lock objects in a consistent order." msgstr "" -#: ../../howto/free-threading-extensions.rst:384 -msgid "" -"Remember that the critical section macros are primarily for protecting " -"access to *Python objects* that might be involved in internal CPython " -"operations susceptible to the deadlock scenarios described above. For " -"protecting purely internal extension state, standard mutexes or other " -"synchronization primitives might be more appropriate." +msgid "Remember that the critical section macros are primarily for protecting access to *Python objects* that might be involved in internal CPython operations susceptible to the deadlock scenarios described above. For protecting purely internal extension state, standard mutexes or other synchronization primitives might be more appropriate." msgstr "" -#: ../../howto/free-threading-extensions.rst:392 msgid "Building Extensions for the Free-Threaded Build" msgstr "" -#: ../../howto/free-threading-extensions.rst:394 -msgid "" -"C API extensions need to be built specifically for the free-threaded build. " -"The wheels, shared libraries, and binaries are indicated by a ``t`` suffix." +msgid "C API extensions need to be built specifically for the free-threaded build. The wheels, shared libraries, and binaries are indicated by a ``t`` suffix." msgstr "" -#: ../../howto/free-threading-extensions.rst:397 -msgid "" -"`pypa/manylinux `_ supports the free-" -"threaded build, with the ``t`` suffix, such as ``python3.14t``." +msgid "`pypa/manylinux `_ supports the free-threaded build, with the ``t`` suffix, such as ``python3.14t``." msgstr "" -#: ../../howto/free-threading-extensions.rst:399 -msgid "" -"`pypa/cibuildwheel `_ supports " -"building wheels for the free-threaded build of Python 3.14 and newer." +msgid "`pypa/cibuildwheel `_ supports building wheels for the free-threaded build of Python 3.14 and newer." msgstr "" -#: ../../howto/free-threading-extensions.rst:403 msgid "Limited C API and Stable ABI" msgstr "" -#: ../../howto/free-threading-extensions.rst:405 -msgid "" -"The free-threaded build does not currently support the :ref:`Limited C API " -"` or the stable ABI. If you use `setuptools `_ to build your extension and " -"currently set ``py_limited_api=True`` you can use ``py_limited_api=not " -"sysconfig.get_config_var(\"Py_GIL_DISABLED\")`` to opt out of the limited " -"API when building with the free-threaded build." +msgid "The free-threaded build does not currently support the :ref:`Limited C API ` or the stable ABI. If you use `setuptools `_ to build your extension and currently set ``py_limited_api=True`` you can use ``py_limited_api=not sysconfig.get_config_var(\"Py_GIL_DISABLED\")`` to opt out of the limited API when building with the free-threaded build." msgstr "" -#: ../../howto/free-threading-extensions.rst:413 -msgid "" -"You will need to build separate wheels specifically for the free-threaded " -"build. If you currently use the stable ABI, you can continue to build a " -"single wheel for multiple non-free-threaded Python versions." +msgid "You will need to build separate wheels specifically for the free-threaded build. If you currently use the stable ABI, you can continue to build a single wheel for multiple non-free-threaded Python versions." msgstr "" -#: ../../howto/free-threading-extensions.rst:419 msgid "Windows" msgstr "" -#: ../../howto/free-threading-extensions.rst:421 -msgid "" -"Due to a limitation of the official Windows installer, you will need to " -"manually define ``Py_GIL_DISABLED=1`` when building extensions from source." +msgid "Due to a limitation of the official Windows installer, you will need to manually define ``Py_GIL_DISABLED=1`` when building extensions from source." msgstr "" -#: ../../howto/free-threading-extensions.rst:426 -msgid "" -"`Porting Extension Modules to Support Free-Threading `_: A community-maintained porting guide for " -"extension authors." +msgid "`Porting Extension Modules to Support Free-Threading `_: A community-maintained porting guide for extension authors." msgstr "" diff --git a/howto/free-threading-python.po b/howto/free-threading-python.po index 56574fe0..bae52914 100644 --- a/howto/free-threading-python.po +++ b/howto/free-threading-python.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2024-10-04 14:19+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,437 +23,203 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../howto/free-threading-python.rst:5 msgid "Python support for free threading" msgstr "" -#: ../../howto/free-threading-python.rst:7 -msgid "" -"Starting with the 3.13 release, CPython has support for a build of Python " -"called :term:`free threading` where the :term:`global interpreter lock` " -"(GIL) is disabled. Free-threaded execution allows for full utilization of " -"the available processing power by running threads in parallel on available " -"CPU cores. While not all software will benefit from this automatically, " -"programs designed with threading in mind will run faster on multi-core " -"hardware." +msgid "Starting with the 3.13 release, CPython has support for a build of Python called :term:`free threading` where the :term:`global interpreter lock` (GIL) is disabled. Free-threaded execution allows for full utilization of the available processing power by running threads in parallel on available CPU cores. While not all software will benefit from this automatically, programs designed with threading in mind will run faster on multi-core hardware." msgstr "" -#: ../../howto/free-threading-python.rst:14 -msgid "" -"Some third-party packages, in particular ones with an :term:`extension " -"module`, may not be ready for use in a free-threaded build, and will re-" -"enable the :term:`GIL`." +msgid "Some third-party packages, in particular ones with an :term:`extension module`, may not be ready for use in a free-threaded build, and will re-enable the :term:`GIL`." msgstr "" -#: ../../howto/free-threading-python.rst:18 -msgid "" -"This document describes the implications of free threading for Python code. " -"See :ref:`freethreading-extensions-howto` for information on how to write C " -"extensions that support the free-threaded build." +msgid "This document describes the implications of free threading for Python code. See :ref:`freethreading-extensions-howto` for information on how to write C extensions that support the free-threaded build." msgstr "" -#: ../../howto/free-threading-python.rst:24 -msgid "" -":pep:`703` – Making the Global Interpreter Lock Optional in CPython for an " -"overall description of free-threaded Python." +msgid ":pep:`703` – Making the Global Interpreter Lock Optional in CPython for an overall description of free-threaded Python." msgstr "" -#: ../../howto/free-threading-python.rst:29 msgid "Installation" msgstr "" -#: ../../howto/free-threading-python.rst:31 -msgid "" -"Starting with Python 3.13, the official macOS and Windows installers " -"optionally support installing free-threaded Python binaries. The installers " -"are available at https://www.python.org/downloads/." +msgid "Starting with Python 3.13, the official macOS and Windows installers optionally support installing free-threaded Python binaries. The installers are available at https://www.python.org/downloads/." msgstr "" -#: ../../howto/free-threading-python.rst:35 -msgid "" -"For information on other platforms, see the `Installing a Free-Threaded " -"Python `_, a " -"community-maintained installation guide for installing free-threaded Python." +msgid "For information on other platforms, see the `Installing a Free-Threaded Python `_, a community-maintained installation guide for installing free-threaded Python." msgstr "" -#: ../../howto/free-threading-python.rst:39 -msgid "" -"When building CPython from source, the :option:`--disable-gil` configure " -"option should be used to build a free-threaded Python interpreter." +msgid "When building CPython from source, the :option:`--disable-gil` configure option should be used to build a free-threaded Python interpreter." msgstr "" -#: ../../howto/free-threading-python.rst:44 msgid "Identifying free-threaded Python" msgstr "" -#: ../../howto/free-threading-python.rst:46 -msgid "" -"To check if the current interpreter supports free-threading, :option:`python " -"-VV <-V>` and :data:`sys.version` contain \"free-threading build\". The " -"new :func:`sys._is_gil_enabled` function can be used to check whether the " -"GIL is actually disabled in the running process." +msgid "To check if the current interpreter supports free-threading, :option:`python -VV <-V>` and :data:`sys.version` contain \"free-threading build\". The new :func:`sys._is_gil_enabled` function can be used to check whether the GIL is actually disabled in the running process." msgstr "" -#: ../../howto/free-threading-python.rst:51 -msgid "" -"The ``sysconfig.get_config_var(\"Py_GIL_DISABLED\")`` configuration variable " -"can be used to determine whether the build supports free threading. If the " -"variable is set to ``1``, then the build supports free threading. This is " -"the recommended mechanism for decisions related to the build configuration." +msgid "The ``sysconfig.get_config_var(\"Py_GIL_DISABLED\")`` configuration variable can be used to determine whether the build supports free threading. If the variable is set to ``1``, then the build supports free threading. This is the recommended mechanism for decisions related to the build configuration." msgstr "" -#: ../../howto/free-threading-python.rst:58 msgid "The global interpreter lock in free-threaded Python" msgstr "" -#: ../../howto/free-threading-python.rst:60 -msgid "" -"Free-threaded builds of CPython support optionally running with the GIL " -"enabled at runtime using the environment variable :envvar:`PYTHON_GIL` or " -"the command-line option :option:`-X gil`." +msgid "Free-threaded builds of CPython support optionally running with the GIL enabled at runtime using the environment variable :envvar:`PYTHON_GIL` or the command-line option :option:`-X gil`." msgstr "" -#: ../../howto/free-threading-python.rst:64 -msgid "" -"The GIL may also automatically be enabled when importing a C-API extension " -"module that is not explicitly marked as supporting free threading. A " -"warning will be printed in this case." +msgid "The GIL may also automatically be enabled when importing a C-API extension module that is not explicitly marked as supporting free threading. A warning will be printed in this case." msgstr "" -#: ../../howto/free-threading-python.rst:68 -msgid "" -"In addition to individual package documentation, the following websites " -"track the status of popular packages support for free threading:" +msgid "In addition to individual package documentation, the following websites track the status of popular packages support for free threading:" msgstr "" -#: ../../howto/free-threading-python.rst:71 msgid "https://py-free-threading.github.io/tracking/" msgstr "" -#: ../../howto/free-threading-python.rst:72 msgid "https://hugovk.github.io/free-threaded-wheels/" msgstr "" -#: ../../howto/free-threading-python.rst:76 msgid "Thread safety" msgstr "" -#: ../../howto/free-threading-python.rst:78 -msgid "" -"The free-threaded build of CPython aims to provide similar thread-safety " -"behavior at the Python level to the default GIL-enabled build. Built-in " -"types like :class:`dict`, :class:`list`, and :class:`set` use internal locks " -"to protect against concurrent modifications in ways that behave similarly to " -"the GIL. However, Python has not historically guaranteed specific behavior " -"for concurrent modifications to these built-in types, so this should be " -"treated as a description of the current implementation, not a guarantee of " -"current or future behavior." +msgid "The free-threaded build of CPython aims to provide similar thread-safety behavior at the Python level to the default GIL-enabled build. Built-in types like :class:`dict`, :class:`list`, and :class:`set` use internal locks to protect against concurrent modifications in ways that behave similarly to the GIL. However, Python has not historically guaranteed specific behavior for concurrent modifications to these built-in types, so this should be treated as a description of the current implementation, not a guarantee of current or future behavior." msgstr "" -#: ../../howto/free-threading-python.rst:89 -msgid "" -"It's recommended to use the :class:`threading.Lock` or other synchronization " -"primitives instead of relying on the internal locks of built-in types, when " -"possible." +msgid "It's recommended to use the :class:`threading.Lock` or other synchronization primitives instead of relying on the internal locks of built-in types, when possible." msgstr "" -#: ../../howto/free-threading-python.rst:95 msgid "Known limitations" msgstr "" -#: ../../howto/free-threading-python.rst:97 -msgid "" -"This section describes known limitations of the free-threaded CPython build." +msgid "This section describes known limitations of the free-threaded CPython build." msgstr "" -#: ../../howto/free-threading-python.rst:100 msgid "Immortalization" msgstr "" -#: ../../howto/free-threading-python.rst:102 -msgid "" -"In the free-threaded build, some objects are :term:`immortal`. Immortal " -"objects are not deallocated and have reference counts that are never " -"modified. This is done to avoid reference count contention that would " -"prevent efficient multi-threaded scaling." +msgid "In the free-threaded build, some objects are :term:`immortal`. Immortal objects are not deallocated and have reference counts that are never modified. This is done to avoid reference count contention that would prevent efficient multi-threaded scaling." msgstr "" -#: ../../howto/free-threading-python.rst:107 msgid "As of the 3.14 release, immortalization is limited to:" msgstr "" -#: ../../howto/free-threading-python.rst:109 -msgid "" -"Code constants: numeric literals, string literals, and tuple literals " -"composed of other constants." +msgid "Code constants: numeric literals, string literals, and tuple literals composed of other constants." msgstr "" -#: ../../howto/free-threading-python.rst:111 msgid "Strings interned by :func:`sys.intern`." msgstr "" -#: ../../howto/free-threading-python.rst:115 msgid "Frame objects" msgstr "" -#: ../../howto/free-threading-python.rst:117 -msgid "" -"It is not safe to access :attr:`frame.f_locals` from a :ref:`frame ` object if that frame is currently executing in another thread, and " -"doing so may crash the interpreter." +msgid "It is not safe to access :attr:`frame.f_locals` from a :ref:`frame ` object if that frame is currently executing in another thread, and doing so may crash the interpreter." msgstr "" -#: ../../howto/free-threading-python.rst:123 msgid "Iterators" msgstr "" -#: ../../howto/free-threading-python.rst:125 -msgid "" -"It is generally not thread-safe to access the same iterator object from " -"multiple threads concurrently, and threads may see duplicate or missing " -"elements." +msgid "It is generally not thread-safe to access the same iterator object from multiple threads concurrently, and threads may see duplicate or missing elements." msgstr "" -#: ../../howto/free-threading-python.rst:131 msgid "Single-threaded performance" msgstr "" -#: ../../howto/free-threading-python.rst:133 -msgid "" -"The free-threaded build has additional overhead when executing Python code " -"compared to the default GIL-enabled build. The amount of overhead depends " -"on the workload and hardware. On the pyperformance benchmark suite, the " -"average overhead ranges from about 1% on macOS aarch64 to 8% on x86-64 Linux " -"systems." +msgid "The free-threaded build has additional overhead when executing Python code compared to the default GIL-enabled build. The amount of overhead depends on the workload and hardware. On the pyperformance benchmark suite, the average overhead ranges from about 1% on macOS aarch64 to 8% on x86-64 Linux systems." msgstr "" -#: ../../howto/free-threading-python.rst:141 msgid "Behavioral changes" msgstr "" -#: ../../howto/free-threading-python.rst:143 -msgid "" -"This section describes CPython behavioural changes with the free-threaded " -"build." +msgid "This section describes CPython behavioural changes with the free-threaded build." msgstr "" -#: ../../howto/free-threading-python.rst:148 msgid "Context variables" msgstr "" -#: ../../howto/free-threading-python.rst:150 -msgid "" -"In the free-threaded build, the " -"flag :data:`~sys.flags.thread_inherit_context` is set to true by default " -"which causes threads created with :class:`threading.Thread` to start with a " -"copy of the :class:`~contextvars.Context()` of the caller " -"of :meth:`~threading.Thread.start`. In the default GIL-enabled build, the " -"flag defaults to false so threads start with an " -"empty :class:`~contextvars.Context()`." +msgid "In the free-threaded build, the flag :data:`~sys.flags.thread_inherit_context` is set to true by default which causes threads created with :class:`threading.Thread` to start with a copy of the :class:`~contextvars.Context()` of the caller of :meth:`~threading.Thread.start`. In the default GIL-enabled build, the flag defaults to false so threads start with an empty :class:`~contextvars.Context()`." msgstr "" -#: ../../howto/free-threading-python.rst:160 msgid "Warning filters" msgstr "" -#: ../../howto/free-threading-python.rst:162 -msgid "" -"In the free-threaded build, the " -"flag :data:`~sys.flags.context_aware_warnings` is set to true by default. " -"In the default GIL-enabled build, the flag defaults to false. If the flag " -"is true then the :class:`warnings.catch_warnings` context manager uses a " -"context variable for warning filters. If the flag is false " -"then :class:`~warnings.catch_warnings` modifies the global filters list, " -"which is not thread-safe. See the :mod:`warnings` module for more details." +msgid "In the free-threaded build, the flag :data:`~sys.flags.context_aware_warnings` is set to true by default. In the default GIL-enabled build, the flag defaults to false. If the flag is true then the :class:`warnings.catch_warnings` context manager uses a context variable for warning filters. If the flag is false then :class:`~warnings.catch_warnings` modifies the global filters list, which is not thread-safe. See the :mod:`warnings` module for more details." msgstr "" -#: ../../howto/free-threading-python.rst:171 msgid "Increased memory usage" msgstr "" -#: ../../howto/free-threading-python.rst:173 -msgid "" -"The free-threaded build will typically use more memory compared to the " -"default build. There are multiple reasons for this, mostly due to design " -"decisions." +msgid "The free-threaded build will typically use more memory compared to the default build. There are multiple reasons for this, mostly due to design decisions." msgstr "" -#: ../../howto/free-threading-python.rst:178 msgid "All interned strings are immortal" msgstr "" -#: ../../howto/free-threading-python.rst:180 -msgid "" -"For modern Python versions (since version 2.3), interning a string (e.g. " -"with :func:`sys.intern`) does not cause it to become immortal. Instead, if " -"the last reference to that string disappears, it will be removed from the " -"interned string table. This is not the case for the free-threaded build and " -"any interned string will become immortal, surviving until interpreter " -"shutdown." +msgid "For modern Python versions (since version 2.3), interning a string (e.g. with :func:`sys.intern`) does not cause it to become immortal. Instead, if the last reference to that string disappears, it will be removed from the interned string table. This is not the case for the free-threaded build and any interned string will become immortal, surviving until interpreter shutdown." msgstr "" -#: ../../howto/free-threading-python.rst:188 msgid "Non-GC objects have a larger object header" msgstr "" -#: ../../howto/free-threading-python.rst:190 -msgid "" -"The free-threaded build uses a different :c:type:`PyObject` structure. " -"Instead of having the GC related information allocated before " -"the :c:type:`PyObject` structure, like in the default build, the GC related " -"info is part of the normal object header. For example, on the AMD64 " -"platform, ``None`` uses 32 bytes on the free-threaded build vs 16 bytes for " -"the default build. GC objects (such as dicts and lists) are the same size " -"for both builds since the free-threaded build does not use additional space " -"for the GC info." +msgid "The free-threaded build uses a different :c:type:`PyObject` structure. Instead of having the GC related information allocated before the :c:type:`PyObject` structure, like in the default build, the GC related info is part of the normal object header. For example, on the AMD64 platform, ``None`` uses 32 bytes on the free-threaded build vs 16 bytes for the default build. GC objects (such as dicts and lists) are the same size for both builds since the free-threaded build does not use additional space for the GC info." msgstr "" -#: ../../howto/free-threading-python.rst:200 msgid "QSBR can delay freeing of memory" msgstr "" -#: ../../howto/free-threading-python.rst:202 -msgid "" -"In order to safely implement lock-free data structures, a safe memory " -"reclamation (SMR) scheme is used, known as quiescent state-based reclamation " -"(QSBR). This means that the memory backing data structures allowing lock-" -"free access will use QSBR, which defers the free operation, rather than " -"immediately freeing the memory. Two examples of these data structures are " -"the list object and the dictionary keys object. See ``InternalDocs/" -"qsbr.md`` in the CPython source tree for more details on how QSBR is " -"implemented. Running :func:`gc.collect` should cause all memory being held " -"by QSBR to be actually freed. Note that even when QSBR frees the memory, " -"the underlying memory allocator may not immediately return that memory to " -"the OS and so the resident set size (RSS) of the process might not decrease." -msgstr "" - -#: ../../howto/free-threading-python.rst:216 +msgid "In order to safely implement lock-free data structures, a safe memory reclamation (SMR) scheme is used, known as quiescent state-based reclamation (QSBR). This means that the memory backing data structures allowing lock-free access will use QSBR, which defers the free operation, rather than immediately freeing the memory. Two examples of these data structures are the list object and the dictionary keys object. See ``InternalDocs/qsbr.md`` in the CPython source tree for more details on how QSBR is implemented. Running :func:`gc.collect` should cause all memory being held by QSBR to be actually freed. Note that even when QSBR frees the memory, the underlying memory allocator may not immediately return that memory to the OS and so the resident set size (RSS) of the process might not decrease." +msgstr "" + msgid "mimalloc allocator vs pymalloc" msgstr "" -#: ../../howto/free-threading-python.rst:218 -msgid "" -"The default build will normally use the \"pymalloc\" memory allocator for " -"small allocations (512 bytes or smaller). The free-threaded build does not " -"use pymalloc and allocates all Python objects using the \"mimalloc\" " -"allocator. The pymalloc allocator has the following properties that help " -"keep memory usage low: small per-allocated-block overhead, effective memory " -"fragmentation prevention, and quick return of free memory to the operating " -"system. The mimalloc allocator does quite well in these respects as well " -"but can have some more overhead." +msgid "The default build will normally use the \"pymalloc\" memory allocator for small allocations (512 bytes or smaller). The free-threaded build does not use pymalloc and allocates all Python objects using the \"mimalloc\" allocator. The pymalloc allocator has the following properties that help keep memory usage low: small per-allocated-block overhead, effective memory fragmentation prevention, and quick return of free memory to the operating system. The mimalloc allocator does quite well in these respects as well but can have some more overhead." msgstr "" -#: ../../howto/free-threading-python.rst:227 -msgid "" -"In the free-threaded build, mimalloc manages memory in a number of separate " -"heaps (currently four). For example, all GC supporting objects are " -"allocated from their own heap. Using separate heaps means that free memory " -"in one heap cannot be used for an allocation that uses another heap. Also, " -"some heaps are configured to use QSBR (quiescent-state based reclamation) " -"when freeing the memory that backs up the heap (known as \"pages\" in " -"mimalloc terminology). The use of QSBR creates a delay between all memory " -"blocks for a page being freed and the memory page being released, either for " -"new allocations or back to the OS." -msgstr "" - -#: ../../howto/free-threading-python.rst:237 -msgid "" -"The mimalloc allocator also defers returning freed memory back to the OS. " -"You can reduce that delay by setting the environment variable :envvar:`!" -"MIMALLOC_PURGE_DELAY` to ``0``. Note that this will likely reduce the " -"performance of the allocator." +msgid "In the free-threaded build, mimalloc manages memory in a number of separate heaps (currently four). For example, all GC supporting objects are allocated from their own heap. Using separate heaps means that free memory in one heap cannot be used for an allocation that uses another heap. Also, some heaps are configured to use QSBR (quiescent-state based reclamation) when freeing the memory that backs up the heap (known as \"pages\" in mimalloc terminology). The use of QSBR creates a delay between all memory blocks for a page being freed and the memory page being released, either for new allocations or back to the OS." +msgstr "" + +msgid "The mimalloc allocator also defers returning freed memory back to the OS. You can reduce that delay by setting the environment variable :envvar:`!MIMALLOC_PURGE_DELAY` to ``0``. Note that this will likely reduce the performance of the allocator." msgstr "" -#: ../../howto/free-threading-python.rst:244 msgid "Free-threaded reference counting can cause objects to live longer" msgstr "" -#: ../../howto/free-threading-python.rst:246 -msgid "" -"In the default build, when an object's reference count reaches zero, it is " -"normally deallocated. The free-threaded build uses \"biased reference " -"counting\", with a fast-path for objects \"owned\" by the current thread and " -"a slow path for other objects. See :pep:`703` for additional details. Any " -"time an object's reference count ends up in a \"queued\" state, deallocation " -"can be deferred. The queued state is cleared from the \"eval breaker\" " -"section of the bytecode evaluator." +msgid "In the default build, when an object's reference count reaches zero, it is normally deallocated. The free-threaded build uses \"biased reference counting\", with a fast-path for objects \"owned\" by the current thread and a slow path for other objects. See :pep:`703` for additional details. Any time an object's reference count ends up in a \"queued\" state, deallocation can be deferred. The queued state is cleared from the \"eval breaker\" section of the bytecode evaluator." msgstr "" -#: ../../howto/free-threading-python.rst:254 -msgid "" -"The free-threaded build also allows a different mode of reference counting, " -"known as \"deferred reference counting\". This mode is enabled by setting a " -"flag on a per-object basis. Deferred reference counting is enabled for the " -"following types:" +msgid "The free-threaded build also allows a different mode of reference counting, known as \"deferred reference counting\". This mode is enabled by setting a flag on a per-object basis. Deferred reference counting is enabled for the following types:" msgstr "" -#: ../../howto/free-threading-python.rst:259 msgid "module objects" msgstr "" -#: ../../howto/free-threading-python.rst:260 msgid "module top-level functions" msgstr "" -#: ../../howto/free-threading-python.rst:261 msgid "class methods defined in the class scope" msgstr "" -#: ../../howto/free-threading-python.rst:262 msgid "descriptor objects" msgstr "" -#: ../../howto/free-threading-python.rst:263 msgid "thread-local objects, created by :class:`threading.local`" msgstr "" -#: ../../howto/free-threading-python.rst:265 -msgid "" -"When deferred reference counting is enabled, references from Python function " -"stacks are not added to the reference count. This scheme reduces the " -"overhead of reference counting, especially for objects used from multiple " -"threads. Because the stack references are not counted, objects with deferred " -"reference counting are not immediately freed when their internal reference " -"count goes to zero. Instead, they are examined by the next GC run and, if " -"no stack references to them are found, they are freed. This means these " -"objects are freed by the GC and not when their reference count goes to zero, " -"as is typical." -msgstr "" - -#: ../../howto/free-threading-python.rst:276 +msgid "When deferred reference counting is enabled, references from Python function stacks are not added to the reference count. This scheme reduces the overhead of reference counting, especially for objects used from multiple threads. Because the stack references are not counted, objects with deferred reference counting are not immediately freed when their internal reference count goes to zero. Instead, they are examined by the next GC run and, if no stack references to them are found, they are freed. This means these objects are freed by the GC and not when their reference count goes to zero, as is typical." +msgstr "" + msgid "Per-thread reference counting can delay freeing objects" msgstr "" -#: ../../howto/free-threading-python.rst:278 -msgid "" -"To avoid contention on the reference count fields of frequently shared " -"objects, the free-threaded build also uses \"per-thread reference counting\" " -"for a few selected object types. Rather than updating a single shared " -"reference count, each thread maintains its own local reference count array, " -"indexed by a unique id assigned to the object. The true reference count is " -"only computed by summing the per-thread counts when the object's local count " -"drops to zero. Per-thread reference counting is currently used for:" +msgid "To avoid contention on the reference count fields of frequently shared objects, the free-threaded build also uses \"per-thread reference counting\" for a few selected object types. Rather than updating a single shared reference count, each thread maintains its own local reference count array, indexed by a unique id assigned to the object. The true reference count is only computed by summing the per-thread counts when the object's local count drops to zero. Per-thread reference counting is currently used for:" msgstr "" -#: ../../howto/free-threading-python.rst:286 msgid "heap type objects (classes created in Python)" msgstr "" -#: ../../howto/free-threading-python.rst:287 msgid "code objects" msgstr "" -#: ../../howto/free-threading-python.rst:288 msgid "the ``__dict__`` of module objects" msgstr "" -#: ../../howto/free-threading-python.rst:290 -msgid "" -"Because the per-thread counts must be merged back to the object before it " -"can be deallocated, objects using per-thread reference counting are " -"typically freed later than they would be in the default build. In " -"particular, such an object is usually not freed until the thread that " -"referenced it reaches a safe point (for example, in the \"eval breaker\" " -"section of the bytecode evaluator) or exits. Running :func:`gc.collect` " -"will merge the per-thread counts and allow these objects to be freed." +msgid "Because the per-thread counts must be merged back to the object before it can be deallocated, objects using per-thread reference counting are typically freed later than they would be in the default build. In particular, such an object is usually not freed until the thread that referenced it reaches a safe point (for example, in the \"eval breaker\" section of the bytecode evaluator) or exits. Running :func:`gc.collect` will merge the per-thread counts and allow these objects to be freed." msgstr "" diff --git a/howto/functional.po b/howto/functional.po index 8bffe7a7..73ed84b7 100644 --- a/howto/functional.po +++ b/howto/functional.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:53+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,321 +24,138 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../howto/functional.rst:5 msgid "Functional Programming HOWTO" msgstr "" -#: ../../howto/functional.rst:0 msgid "Author" msgstr "" -#: ../../howto/functional.rst:7 msgid "\\A. M. Kuchling" msgstr "" -#: ../../howto/functional.rst:0 msgid "Release" msgstr "" -#: ../../howto/functional.rst:8 msgid "0.32" msgstr "" -#: ../../howto/functional.rst:10 -msgid "" -"In this document, we'll take a tour of Python's features suitable for " -"implementing programs in a functional style. After an introduction to the " -"concepts of functional programming, we'll look at language features such " -"as :term:`iterator`\\s and :term:`generator`\\s and relevant library modules " -"such as :mod:`itertools` and :mod:`functools`." +msgid "In this document, we'll take a tour of Python's features suitable for implementing programs in a functional style. After an introduction to the concepts of functional programming, we'll look at language features such as :term:`iterator`\\s and :term:`generator`\\s and relevant library modules such as :mod:`itertools` and :mod:`functools`." msgstr "" -#: ../../howto/functional.rst:18 msgid "Introduction" msgstr "" -#: ../../howto/functional.rst:20 -msgid "" -"This section explains the basic concept of functional programming; if you're " -"just interested in learning about Python language features, skip to the next " -"section on :ref:`functional-howto-iterators`." +msgid "This section explains the basic concept of functional programming; if you're just interested in learning about Python language features, skip to the next section on :ref:`functional-howto-iterators`." msgstr "" -#: ../../howto/functional.rst:24 -msgid "" -"Programming languages support decomposing problems in several different ways:" +msgid "Programming languages support decomposing problems in several different ways:" msgstr "" -#: ../../howto/functional.rst:26 -msgid "" -"Most programming languages are **procedural**: programs are lists of " -"instructions that tell the computer what to do with the program's input. C, " -"Pascal, and even Unix shells are procedural languages." +msgid "Most programming languages are **procedural**: programs are lists of instructions that tell the computer what to do with the program's input. C, Pascal, and even Unix shells are procedural languages." msgstr "" -#: ../../howto/functional.rst:30 -msgid "" -"In **declarative** languages, you write a specification that describes the " -"problem to be solved, and the language implementation figures out how to " -"perform the computation efficiently. SQL is the declarative language you're " -"most likely to be familiar with; a SQL query describes the data set you want " -"to retrieve, and the SQL engine decides whether to scan tables or use " -"indexes, which subclauses should be performed first, etc." +msgid "In **declarative** languages, you write a specification that describes the problem to be solved, and the language implementation figures out how to perform the computation efficiently. SQL is the declarative language you're most likely to be familiar with; a SQL query describes the data set you want to retrieve, and the SQL engine decides whether to scan tables or use indexes, which subclauses should be performed first, etc." msgstr "" -#: ../../howto/functional.rst:37 -msgid "" -"**Object-oriented** programs manipulate collections of objects. Objects " -"have internal state and support methods that query or modify this internal " -"state in some way. Smalltalk and Java are object-oriented languages. C++ " -"and Python are languages that support object-oriented programming, but don't " -"force the use of object-oriented features." +msgid "**Object-oriented** programs manipulate collections of objects. Objects have internal state and support methods that query or modify this internal state in some way. Smalltalk and Java are object-oriented languages. C++ and Python are languages that support object-oriented programming, but don't force the use of object-oriented features." msgstr "" -#: ../../howto/functional.rst:43 -msgid "" -"**Functional** programming decomposes a problem into a set of functions. " -"Ideally, functions only take inputs and produce outputs, and don't have any " -"internal state that affects the output produced for a given input. Well-" -"known functional languages include the ML family (Standard ML, OCaml, and " -"other variants) and Haskell." +msgid "**Functional** programming decomposes a problem into a set of functions. Ideally, functions only take inputs and produce outputs, and don't have any internal state that affects the output produced for a given input. Well-known functional languages include the ML family (Standard ML, OCaml, and other variants) and Haskell." msgstr "" -#: ../../howto/functional.rst:49 -msgid "" -"The designers of some computer languages choose to emphasize one particular " -"approach to programming. This often makes it difficult to write programs " -"that use a different approach. Other languages are multi-paradigm languages " -"that support several different approaches. Lisp, C++, and Python are multi-" -"paradigm; you can write programs or libraries that are largely procedural, " -"object-oriented, or functional in all of these languages. In a large " -"program, different sections might be written using different approaches; the " -"GUI might be object-oriented while the processing logic is procedural or " -"functional, for example." -msgstr "" - -#: ../../howto/functional.rst:60 -msgid "" -"In a functional program, input flows through a set of functions. Each " -"function operates on its input and produces some output. Functional style " -"discourages functions with side effects that modify internal state or make " -"other changes that aren't visible in the function's return value. Functions " -"that have no side effects at all are called **purely functional**. Avoiding " -"side effects means not using data structures that get updated as a program " -"runs; every function's output must only depend on its input." +msgid "The designers of some computer languages choose to emphasize one particular approach to programming. This often makes it difficult to write programs that use a different approach. Other languages are multi-paradigm languages that support several different approaches. Lisp, C++, and Python are multi-paradigm; you can write programs or libraries that are largely procedural, object-oriented, or functional in all of these languages. In a large program, different sections might be written using different approaches; the GUI might be object-oriented while the processing logic is procedural or functional, for example." msgstr "" -#: ../../howto/functional.rst:68 -msgid "" -"Some languages are very strict about purity and don't even have assignment " -"statements such as ``a=3`` or ``c = a + b``, but it's difficult to avoid all " -"side effects, such as printing to the screen or writing to a disk file. " -"Another example is a call to the :func:`print` or :func:`time.sleep` " -"function, neither of which returns a useful value. Both are called only for " -"their side effects of sending some text to the screen or pausing execution " -"for a second." +msgid "In a functional program, input flows through a set of functions. Each function operates on its input and produces some output. Functional style discourages functions with side effects that modify internal state or make other changes that aren't visible in the function's return value. Functions that have no side effects at all are called **purely functional**. Avoiding side effects means not using data structures that get updated as a program runs; every function's output must only depend on its input." msgstr "" -#: ../../howto/functional.rst:75 -msgid "" -"Python programs written in functional style usually won't go to the extreme " -"of avoiding all I/O or all assignments; instead, they'll provide a " -"functional-appearing interface but will use non-functional features " -"internally. For example, the implementation of a function will still use " -"assignments to local variables, but won't modify global variables or have " -"other side effects." +msgid "Some languages are very strict about purity and don't even have assignment statements such as ``a=3`` or ``c = a + b``, but it's difficult to avoid all side effects, such as printing to the screen or writing to a disk file. Another example is a call to the :func:`print` or :func:`time.sleep` function, neither of which returns a useful value. Both are called only for their side effects of sending some text to the screen or pausing execution for a second." msgstr "" -#: ../../howto/functional.rst:81 -msgid "" -"Functional programming can be considered the opposite of object-oriented " -"programming. Objects are little capsules containing some internal state " -"along with a collection of method calls that let you modify this state, and " -"programs consist of making the right set of state changes. Functional " -"programming wants to avoid state changes as much as possible and works with " -"data flowing between functions. In Python you might combine the two " -"approaches by writing functions that take and return instances representing " -"objects in your application (e-mail messages, transactions, etc.)." +msgid "Python programs written in functional style usually won't go to the extreme of avoiding all I/O or all assignments; instead, they'll provide a functional-appearing interface but will use non-functional features internally. For example, the implementation of a function will still use assignments to local variables, but won't modify global variables or have other side effects." msgstr "" -#: ../../howto/functional.rst:90 -msgid "" -"Functional design may seem like an odd constraint to work under. Why should " -"you avoid objects and side effects? There are theoretical and practical " -"advantages to the functional style:" +msgid "Functional programming can be considered the opposite of object-oriented programming. Objects are little capsules containing some internal state along with a collection of method calls that let you modify this state, and programs consist of making the right set of state changes. Functional programming wants to avoid state changes as much as possible and works with data flowing between functions. In Python you might combine the two approaches by writing functions that take and return instances representing objects in your application (e-mail messages, transactions, etc.)." +msgstr "" + +msgid "Functional design may seem like an odd constraint to work under. Why should you avoid objects and side effects? There are theoretical and practical advantages to the functional style:" msgstr "" -#: ../../howto/functional.rst:94 msgid "Formal provability." msgstr "" -#: ../../howto/functional.rst:95 msgid "Modularity." msgstr "" -#: ../../howto/functional.rst:96 msgid "Composability." msgstr "" -#: ../../howto/functional.rst:97 msgid "Ease of debugging and testing." msgstr "" -#: ../../howto/functional.rst:101 msgid "Formal provability" msgstr "" -#: ../../howto/functional.rst:103 -msgid "" -"A theoretical benefit is that it's easier to construct a mathematical proof " -"that a functional program is correct." +msgid "A theoretical benefit is that it's easier to construct a mathematical proof that a functional program is correct." msgstr "" -#: ../../howto/functional.rst:106 -msgid "" -"For a long time researchers have been interested in finding ways to " -"mathematically prove programs correct. This is different from testing a " -"program on numerous inputs and concluding that its output is usually " -"correct, or reading a program's source code and concluding that the code " -"looks right; the goal is instead a rigorous proof that a program produces " -"the right result for all possible inputs." +msgid "For a long time researchers have been interested in finding ways to mathematically prove programs correct. This is different from testing a program on numerous inputs and concluding that its output is usually correct, or reading a program's source code and concluding that the code looks right; the goal is instead a rigorous proof that a program produces the right result for all possible inputs." msgstr "" -#: ../../howto/functional.rst:113 -msgid "" -"The technique used to prove programs correct is to write down " -"**invariants**, properties of the input data and of the program's variables " -"that are always true. For each line of code, you then show that if " -"invariants X and Y are true **before** the line is executed, the slightly " -"different invariants X' and Y' are true **after** the line is executed. " -"This continues until you reach the end of the program, at which point the " -"invariants should match the desired conditions on the program's output." +msgid "The technique used to prove programs correct is to write down **invariants**, properties of the input data and of the program's variables that are always true. For each line of code, you then show that if invariants X and Y are true **before** the line is executed, the slightly different invariants X' and Y' are true **after** the line is executed. This continues until you reach the end of the program, at which point the invariants should match the desired conditions on the program's output." msgstr "" -#: ../../howto/functional.rst:121 -msgid "" -"Functional programming's avoidance of assignments arose because assignments " -"are difficult to handle with this technique; assignments can break " -"invariants that were true before the assignment without producing any new " -"invariants that can be propagated onward." +msgid "Functional programming's avoidance of assignments arose because assignments are difficult to handle with this technique; assignments can break invariants that were true before the assignment without producing any new invariants that can be propagated onward." msgstr "" -#: ../../howto/functional.rst:126 -msgid "" -"Unfortunately, proving programs correct is largely impractical and not " -"relevant to Python software. Even trivial programs require proofs that are " -"several pages long; the proof of correctness for a moderately complicated " -"program would be enormous, and few or none of the programs you use daily " -"(the Python interpreter, your XML parser, your web browser) could be proven " -"correct. Even if you wrote down or generated a proof, there would then be " -"the question of verifying the proof; maybe there's an error in it, and you " -"wrongly believe you've proved the program correct." +msgid "Unfortunately, proving programs correct is largely impractical and not relevant to Python software. Even trivial programs require proofs that are several pages long; the proof of correctness for a moderately complicated program would be enormous, and few or none of the programs you use daily (the Python interpreter, your XML parser, your web browser) could be proven correct. Even if you wrote down or generated a proof, there would then be the question of verifying the proof; maybe there's an error in it, and you wrongly believe you've proved the program correct." msgstr "" -#: ../../howto/functional.rst:137 msgid "Modularity" msgstr "" -#: ../../howto/functional.rst:139 -msgid "" -"A more practical benefit of functional programming is that it forces you to " -"break apart your problem into small pieces. Programs are more modular as a " -"result. It's easier to specify and write a small function that does one " -"thing than a large function that performs a complicated transformation. " -"Small functions are also easier to read and to check for errors." +msgid "A more practical benefit of functional programming is that it forces you to break apart your problem into small pieces. Programs are more modular as a result. It's easier to specify and write a small function that does one thing than a large function that performs a complicated transformation. Small functions are also easier to read and to check for errors." msgstr "" -#: ../../howto/functional.rst:147 msgid "Ease of debugging and testing" msgstr "" -#: ../../howto/functional.rst:149 msgid "Testing and debugging a functional-style program is easier." msgstr "" -#: ../../howto/functional.rst:151 -msgid "" -"Debugging is simplified because functions are generally small and clearly " -"specified. When a program doesn't work, each function is an interface point " -"where you can check that the data are correct. You can look at the " -"intermediate inputs and outputs to quickly isolate the function that's " -"responsible for a bug." +msgid "Debugging is simplified because functions are generally small and clearly specified. When a program doesn't work, each function is an interface point where you can check that the data are correct. You can look at the intermediate inputs and outputs to quickly isolate the function that's responsible for a bug." msgstr "" -#: ../../howto/functional.rst:156 -msgid "" -"Testing is easier because each function is a potential subject for a unit " -"test. Functions don't depend on system state that needs to be replicated " -"before running a test; instead you only have to synthesize the right input " -"and then check that the output matches expectations." +msgid "Testing is easier because each function is a potential subject for a unit test. Functions don't depend on system state that needs to be replicated before running a test; instead you only have to synthesize the right input and then check that the output matches expectations." msgstr "" -#: ../../howto/functional.rst:163 msgid "Composability" msgstr "" -#: ../../howto/functional.rst:165 -msgid "" -"As you work on a functional-style program, you'll write a number of " -"functions with varying inputs and outputs. Some of these functions will be " -"unavoidably specialized to a particular application, but others will be " -"useful in a wide variety of programs. For example, a function that takes a " -"directory path and returns all the XML files in the directory, or a function " -"that takes a filename and returns its contents, can be applied to many " -"different situations." +msgid "As you work on a functional-style program, you'll write a number of functions with varying inputs and outputs. Some of these functions will be unavoidably specialized to a particular application, but others will be useful in a wide variety of programs. For example, a function that takes a directory path and returns all the XML files in the directory, or a function that takes a filename and returns its contents, can be applied to many different situations." msgstr "" -#: ../../howto/functional.rst:172 -msgid "" -"Over time you'll form a personal library of utilities. Often you'll " -"assemble new programs by arranging existing functions in a new configuration " -"and writing a few functions specialized for the current task." +msgid "Over time you'll form a personal library of utilities. Often you'll assemble new programs by arranging existing functions in a new configuration and writing a few functions specialized for the current task." msgstr "" -#: ../../howto/functional.rst:180 msgid "Iterators" msgstr "" -#: ../../howto/functional.rst:182 -msgid "" -"I'll start by looking at a Python language feature that's an important " -"foundation for writing functional-style programs: iterators." +msgid "I'll start by looking at a Python language feature that's an important foundation for writing functional-style programs: iterators." msgstr "" -#: ../../howto/functional.rst:185 -msgid "" -"An iterator is an object representing a stream of data; this object returns " -"the data one element at a time. A Python iterator must support a method " -"called :meth:`~iterator.__next__` that takes no arguments and always returns " -"the next element of the stream. If there are no more elements in the " -"stream, :meth:`~iterator.__next__` must raise the :exc:`StopIteration` " -"exception. Iterators don't have to be finite, though; it's perfectly " -"reasonable to write an iterator that produces an infinite stream of data." +msgid "An iterator is an object representing a stream of data; this object returns the data one element at a time. A Python iterator must support a method called :meth:`~iterator.__next__` that takes no arguments and always returns the next element of the stream. If there are no more elements in the stream, :meth:`~iterator.__next__` must raise the :exc:`StopIteration` exception. Iterators don't have to be finite, though; it's perfectly reasonable to write an iterator that produces an infinite stream of data." msgstr "" -#: ../../howto/functional.rst:193 -msgid "" -"The built-in :func:`iter` function takes an arbitrary object and tries to " -"return an iterator that will return the object's contents or elements, " -"raising :exc:`TypeError` if the object doesn't support iteration. Several " -"of Python's built-in data types support iteration, the most common being " -"lists and dictionaries. An object is called :term:`iterable` if you can get " -"an iterator for it." +msgid "The built-in :func:`iter` function takes an arbitrary object and tries to return an iterator that will return the object's contents or elements, raising :exc:`TypeError` if the object doesn't support iteration. Several of Python's built-in data types support iteration, the most common being lists and dictionaries. An object is called :term:`iterable` if you can get an iterator for it." msgstr "" -#: ../../howto/functional.rst:200 msgid "You can experiment with the iteration interface manually:" msgstr "" -#: ../../howto/functional.rst:218 -msgid "" -"Python expects iterable objects in several different contexts, the most " -"important being the :keyword:`for` statement. In the statement ``for X in " -"Y``, Y must be an iterator or some object for which :func:`iter` can create " -"an iterator. These two statements are equivalent::" +msgid "Python expects iterable objects in several different contexts, the most important being the :keyword:`for` statement. In the statement ``for X in Y``, Y must be an iterator or some object for which :func:`iter` can create an iterator. These two statements are equivalent::" msgstr "" -#: ../../howto/functional.rst:224 msgid "" "for i in iter(obj):\n" " print(i)\n" @@ -347,59 +164,27 @@ msgid "" " print(i)" msgstr "" -#: ../../howto/functional.rst:230 -msgid "" -"Iterators can be materialized as lists or tuples by using the :func:`list` " -"or :func:`tuple` constructor functions:" +msgid "Iterators can be materialized as lists or tuples by using the :func:`list` or :func:`tuple` constructor functions:" msgstr "" -#: ../../howto/functional.rst:239 -msgid "" -"Sequence unpacking also supports iterators: if you know an iterator will " -"return N elements, you can unpack them into an N-tuple:" +msgid "Sequence unpacking also supports iterators: if you know an iterator will return N elements, you can unpack them into an N-tuple:" msgstr "" -#: ../../howto/functional.rst:248 -msgid "" -"Built-in functions such as :func:`max` and :func:`min` can take a single " -"iterator argument and will return the largest or smallest element. The " -"``\"in\"`` and ``\"not in\"`` operators also support iterators: ``X in " -"iterator`` is true if X is found in the stream returned by the iterator. " -"You'll run into obvious problems if the iterator is " -"infinite; :func:`max`, :func:`min` will never return, and if the element X " -"never appears in the stream, the ``\"in\"`` and ``\"not in\"`` operators " -"won't return either." +msgid "Built-in functions such as :func:`max` and :func:`min` can take a single iterator argument and will return the largest or smallest element. The ``\"in\"`` and ``\"not in\"`` operators also support iterators: ``X in iterator`` is true if X is found in the stream returned by the iterator. You'll run into obvious problems if the iterator is infinite; :func:`max`, :func:`min` will never return, and if the element X never appears in the stream, the ``\"in\"`` and ``\"not in\"`` operators won't return either." msgstr "" -#: ../../howto/functional.rst:256 -msgid "" -"Note that you can only go forward in an iterator; there's no way to get the " -"previous element, reset the iterator, or make a copy of it. Iterator " -"objects can optionally provide these additional capabilities, but the " -"iterator protocol only specifies the :meth:`~iterator.__next__` method. " -"Functions may therefore consume all of the iterator's output, and if you " -"need to do something different with the same stream, you'll have to create a " -"new iterator." +msgid "Note that you can only go forward in an iterator; there's no way to get the previous element, reset the iterator, or make a copy of it. Iterator objects can optionally provide these additional capabilities, but the iterator protocol only specifies the :meth:`~iterator.__next__` method. Functions may therefore consume all of the iterator's output, and if you need to do something different with the same stream, you'll have to create a new iterator." msgstr "" -#: ../../howto/functional.rst:266 msgid "Data Types That Support Iterators" msgstr "" -#: ../../howto/functional.rst:268 -msgid "" -"We've already seen how lists and tuples support iterators. In fact, any " -"Python sequence type, such as strings, will automatically support creation " -"of an iterator." +msgid "We've already seen how lists and tuples support iterators. In fact, any Python sequence type, such as strings, will automatically support creation of an iterator." msgstr "" -#: ../../howto/functional.rst:272 -msgid "" -"Calling :func:`iter` on a dictionary returns an iterator that will loop over " -"the dictionary's keys::" +msgid "Calling :func:`iter` on a dictionary returns an iterator that will loop over the dictionary's keys::" msgstr "" -#: ../../howto/functional.rst:275 msgid "" ">>> m = {'Jan': 1, 'Feb': 2, 'Mar': 3, 'Apr': 4, 'May': 5, 'Jun': 6,\n" "... 'Jul': 7, 'Aug': 8, 'Sep': 9, 'Oct': 10, 'Nov': 11, 'Dec': 12}\n" @@ -419,49 +204,27 @@ msgid "" "Dec 12" msgstr "" -#: ../../howto/functional.rst:292 -msgid "" -"Note that starting with Python 3.7, dictionary iteration order is guaranteed " -"to be the same as the insertion order. In earlier versions, the behaviour " -"was unspecified and could vary between implementations." +msgid "Note that starting with Python 3.7, dictionary iteration order is guaranteed to be the same as the insertion order. In earlier versions, the behaviour was unspecified and could vary between implementations." msgstr "" -#: ../../howto/functional.rst:296 -msgid "" -"Applying :func:`iter` to a dictionary always loops over the keys, but " -"dictionaries have methods that return other iterators. If you want to " -"iterate over values or key/value pairs, you can explicitly call " -"the :meth:`~dict.values` or :meth:`~dict.items` methods to get an " -"appropriate iterator." +msgid "Applying :func:`iter` to a dictionary always loops over the keys, but dictionaries have methods that return other iterators. If you want to iterate over values or key/value pairs, you can explicitly call the :meth:`~dict.values` or :meth:`~dict.items` methods to get an appropriate iterator." msgstr "" -#: ../../howto/functional.rst:302 -msgid "" -"The :func:`dict` constructor can accept an iterator that returns a finite " -"stream of ``(key, value)`` tuples:" +msgid "The :func:`dict` constructor can accept an iterator that returns a finite stream of ``(key, value)`` tuples:" msgstr "" -#: ../../howto/functional.rst:309 -msgid "" -"Files also support iteration by calling the :meth:`~io.TextIOBase.readline` " -"method until there are no more lines in the file. This means you can read " -"each line of a file like this::" +msgid "Files also support iteration by calling the :meth:`~io.TextIOBase.readline` method until there are no more lines in the file. This means you can read each line of a file like this::" msgstr "" -#: ../../howto/functional.rst:313 msgid "" "for line in file:\n" " # do something for each line\n" " ..." msgstr "" -#: ../../howto/functional.rst:317 -msgid "" -"Sets can take their contents from an iterable and let you iterate over the " -"set's elements::" +msgid "Sets can take their contents from an iterable and let you iterate over the set's elements::" msgstr "" -#: ../../howto/functional.rst:320 msgid "" ">>> S = {2, 3, 5, 7, 11, 13}\n" ">>> for i in S:\n" @@ -474,28 +237,15 @@ msgid "" "13" msgstr "" -#: ../../howto/functional.rst:333 msgid "Generator expressions and list comprehensions" msgstr "" -#: ../../howto/functional.rst:335 -msgid "" -"Two common operations on an iterator's output are 1) performing some " -"operation for every element, 2) selecting a subset of elements that meet " -"some condition. For example, given a list of strings, you might want to " -"strip off trailing whitespace from each line or extract all the strings " -"containing a given substring." +msgid "Two common operations on an iterator's output are 1) performing some operation for every element, 2) selecting a subset of elements that meet some condition. For example, given a list of strings, you might want to strip off trailing whitespace from each line or extract all the strings containing a given substring." msgstr "" -#: ../../howto/functional.rst:341 -msgid "" -"List comprehensions and generator expressions (short form: \"listcomps\" and " -"\"genexps\") are a concise notation for such operations, borrowed from the " -"functional programming language Haskell (https://www.haskell.org/). You can " -"strip all the whitespace from a stream of strings with the following code::" +msgid "List comprehensions and generator expressions (short form: \"listcomps\" and \"genexps\") are a concise notation for such operations, borrowed from the functional programming language Haskell (https://www.haskell.org/). You can strip all the whitespace from a stream of strings with the following code::" msgstr "" -#: ../../howto/functional.rst:346 msgid "" ">>> line_list = [' line 1\\n', 'line 2 \\n', ' \\n', '']\n" "\n" @@ -506,36 +256,20 @@ msgid "" ">>> stripped_list = [line.strip() for line in line_list]" msgstr "" -#: ../../howto/functional.rst:354 -msgid "" -"You can select only certain elements by adding an ``\"if\"`` condition::" +msgid "You can select only certain elements by adding an ``\"if\"`` condition::" msgstr "" -#: ../../howto/functional.rst:356 msgid "" ">>> stripped_list = [line.strip() for line in line_list\n" "... if line != \"\"]" msgstr "" -#: ../../howto/functional.rst:359 -msgid "" -"With a list comprehension, you get back a Python list; ``stripped_list`` is " -"a list containing the resulting lines, not an iterator. Generator " -"expressions return an iterator that computes the values as necessary, not " -"needing to materialize all the values at once. This means that list " -"comprehensions aren't useful if you're working with iterators that return an " -"infinite stream or a very large amount of data. Generator expressions are " -"preferable in these situations." +msgid "With a list comprehension, you get back a Python list; ``stripped_list`` is a list containing the resulting lines, not an iterator. Generator expressions return an iterator that computes the values as necessary, not needing to materialize all the values at once. This means that list comprehensions aren't useful if you're working with iterators that return an infinite stream or a very large amount of data. Generator expressions are preferable in these situations." msgstr "" -#: ../../howto/functional.rst:366 -msgid "" -"Generator expressions are surrounded by parentheses (\"()\") and list " -"comprehensions are surrounded by square brackets (\"[]\"). Generator " -"expressions have the form::" +msgid "Generator expressions are surrounded by parentheses (\"()\") and list comprehensions are surrounded by square brackets (\"[]\"). Generator expressions have the form::" msgstr "" -#: ../../howto/functional.rst:370 msgid "" "( expression for expr in sequence1\n" " if condition1\n" @@ -548,48 +282,24 @@ msgid "" " if conditionN )" msgstr "" -#: ../../howto/functional.rst:380 -msgid "" -"Again, for a list comprehension only the outside brackets are different " -"(square brackets instead of parentheses)." +msgid "Again, for a list comprehension only the outside brackets are different (square brackets instead of parentheses)." msgstr "" -#: ../../howto/functional.rst:383 -msgid "" -"The elements of the generated output will be the successive values of " -"``expression``. The ``if`` clauses are all optional; if present, " -"``expression`` is only evaluated and added to the result when ``condition`` " -"is true." +msgid "The elements of the generated output will be the successive values of ``expression``. The ``if`` clauses are all optional; if present, ``expression`` is only evaluated and added to the result when ``condition`` is true." msgstr "" -#: ../../howto/functional.rst:387 -msgid "" -"Generator expressions always have to be written inside parentheses, but the " -"parentheses signalling a function call also count. If you want to create an " -"iterator that will be immediately passed to a function you can write::" +msgid "Generator expressions always have to be written inside parentheses, but the parentheses signalling a function call also count. If you want to create an iterator that will be immediately passed to a function you can write::" msgstr "" -#: ../../howto/functional.rst:391 msgid "obj_total = sum(obj.count for obj in list_all_objects())" msgstr "" -#: ../../howto/functional.rst:393 -msgid "" -"The ``for...in`` clauses contain the sequences to be iterated over. The " -"sequences do not have to be the same length, because they are iterated over " -"from left to right, **not** in parallel. For each element in ``sequence1``, " -"``sequence2`` is looped over from the beginning. ``sequence3`` is then " -"looped over for each resulting pair of elements from ``sequence1`` and " -"``sequence2``." +msgid "The ``for...in`` clauses contain the sequences to be iterated over. The sequences do not have to be the same length, because they are iterated over from left to right, **not** in parallel. For each element in ``sequence1``, ``sequence2`` is looped over from the beginning. ``sequence3`` is then looped over for each resulting pair of elements from ``sequence1`` and ``sequence2``." msgstr "" -#: ../../howto/functional.rst:399 -msgid "" -"To put it another way, a list comprehension or generator expression is " -"equivalent to the following Python code::" +msgid "To put it another way, a list comprehension or generator expression is equivalent to the following Python code::" msgstr "" -#: ../../howto/functional.rst:402 msgid "" "for expr1 in sequence1:\n" " if not (condition1):\n" @@ -606,22 +316,12 @@ msgid "" " # the expression." msgstr "" -#: ../../howto/functional.rst:416 -msgid "" -"This means that when there are multiple ``for...in`` clauses but no ``if`` " -"clauses, the length of the resulting output will be equal to the product of " -"the lengths of all the sequences. If you have two lists of length 3, the " -"output list is 9 elements long:" +msgid "This means that when there are multiple ``for...in`` clauses but no ``if`` clauses, the length of the resulting output will be equal to the product of the lengths of all the sequences. If you have two lists of length 3, the output list is 9 elements long:" msgstr "" -#: ../../howto/functional.rst:428 -msgid "" -"To avoid introducing an ambiguity into Python's grammar, if ``expression`` " -"is creating a tuple, it must be surrounded with parentheses. The first list " -"comprehension below is a syntax error, while the second one is correct::" +msgid "To avoid introducing an ambiguity into Python's grammar, if ``expression`` is creating a tuple, it must be surrounded with parentheses. The first list comprehension below is a syntax error, while the second one is correct::" msgstr "" -#: ../../howto/functional.rst:432 msgid "" "# Syntax error\n" "[x, y for x in seq1 for y in seq2]\n" @@ -629,90 +329,39 @@ msgid "" "[(x, y) for x in seq1 for y in seq2]" msgstr "" -#: ../../howto/functional.rst:439 msgid "Generators" msgstr "" -#: ../../howto/functional.rst:441 -msgid "" -"Generators are a special class of functions that simplify the task of " -"writing iterators. Regular functions compute a value and return it, but " -"generators return an iterator that returns a stream of values." +msgid "Generators are a special class of functions that simplify the task of writing iterators. Regular functions compute a value and return it, but generators return an iterator that returns a stream of values." +msgstr "" + +msgid "You're doubtless familiar with how regular function calls work in Python or C. When you call a function, it gets a private namespace where its local variables are created. When the function reaches a ``return`` statement, the local variables are destroyed and the value is returned to the caller. A later call to the same function creates a new private namespace and a fresh set of local variables. But, what if the local variables weren't thrown away on exiting a function? What if you could later resume the function where it left off? This is what generators provide; they can be thought of as resumable functions." msgstr "" -#: ../../howto/functional.rst:445 -msgid "" -"You're doubtless familiar with how regular function calls work in Python or " -"C. When you call a function, it gets a private namespace where its local " -"variables are created. When the function reaches a ``return`` statement, " -"the local variables are destroyed and the value is returned to the caller. " -"A later call to the same function creates a new private namespace and a " -"fresh set of local variables. But, what if the local variables weren't " -"thrown away on exiting a function? What if you could later resume the " -"function where it left off? This is what generators provide; they can be " -"thought of as resumable functions." -msgstr "" - -#: ../../howto/functional.rst:454 msgid "Here's the simplest example of a generator function:" msgstr "" -#: ../../howto/functional.rst:460 -msgid "" -"Any function containing a :keyword:`yield` keyword is a generator function; " -"this is detected by Python's :term:`bytecode` compiler which compiles the " -"function specially as a result." +msgid "Any function containing a :keyword:`yield` keyword is a generator function; this is detected by Python's :term:`bytecode` compiler which compiles the function specially as a result." msgstr "" -#: ../../howto/functional.rst:464 -msgid "" -"When you call a generator function, it doesn't return a single value; " -"instead it returns a generator object that supports the iterator protocol. " -"On executing the ``yield`` expression, the generator outputs the value of " -"``i``, similar to a ``return`` statement. The big difference between " -"``yield`` and a ``return`` statement is that on reaching a ``yield`` the " -"generator's state of execution is suspended and local variables are " -"preserved. On the next call to the generator's :meth:`~generator.__next__` " -"method, the function will resume executing." +msgid "When you call a generator function, it doesn't return a single value; instead it returns a generator object that supports the iterator protocol. On executing the ``yield`` expression, the generator outputs the value of ``i``, similar to a ``return`` statement. The big difference between ``yield`` and a ``return`` statement is that on reaching a ``yield`` the generator's state of execution is suspended and local variables are preserved. On the next call to the generator's :meth:`~generator.__next__` method, the function will resume executing." msgstr "" -#: ../../howto/functional.rst:473 msgid "Here's a sample usage of the ``generate_ints()`` generator:" msgstr "" -#: ../../howto/functional.rst:490 -msgid "" -"You could equally write ``for i in generate_ints(5)``, or ``a, b, c = " -"generate_ints(3)``." +msgid "You could equally write ``for i in generate_ints(5)``, or ``a, b, c = generate_ints(3)``." msgstr "" -#: ../../howto/functional.rst:493 -msgid "" -"Inside a generator function, ``return value`` causes " -"``StopIteration(value)`` to be raised from the :meth:`~generator.__next__` " -"method. Once this happens, or the bottom of the function is reached, the " -"procession of values ends and the generator cannot yield any further values." +msgid "Inside a generator function, ``return value`` causes ``StopIteration(value)`` to be raised from the :meth:`~generator.__next__` method. Once this happens, or the bottom of the function is reached, the procession of values ends and the generator cannot yield any further values." msgstr "" -#: ../../howto/functional.rst:498 -msgid "" -"You could achieve the effect of generators manually by writing your own " -"class and storing all the local variables of the generator as instance " -"variables. For example, returning a list of integers could be done by " -"setting ``self.count`` to 0, and having the :meth:`~iterator.__next__` " -"method increment ``self.count`` and return it. However, for a moderately " -"complicated generator, writing a corresponding class can be much messier." +msgid "You could achieve the effect of generators manually by writing your own class and storing all the local variables of the generator as instance variables. For example, returning a list of integers could be done by setting ``self.count`` to 0, and having the :meth:`~iterator.__next__` method increment ``self.count`` and return it. However, for a moderately complicated generator, writing a corresponding class can be much messier." msgstr "" -#: ../../howto/functional.rst:506 -msgid "" -"The test suite included with Python's library, :source:`Lib/test/" -"test_generators.py`, contains a number of more interesting examples. Here's " -"one generator that implements an in-order traversal of a tree using " -"generators recursively. ::" +msgid "The test suite included with Python's library, :source:`Lib/test/test_generators.py`, contains a number of more interesting examples. Here's one generator that implements an in-order traversal of a tree using generators recursively. ::" msgstr "" -#: ../../howto/functional.rst:511 msgid "" "# A recursive generator that generates Tree leaves in in-order.\n" "def inorder(t):\n" @@ -726,73 +375,33 @@ msgid "" " yield x" msgstr "" -#: ../../howto/functional.rst:522 -msgid "" -"Two other examples in ``test_generators.py`` produce solutions for the N-" -"Queens problem (placing N queens on an NxN chess board so that no queen " -"threatens another) and the Knight's Tour (finding a route that takes a " -"knight to every square of an NxN chessboard without visiting any square " -"twice)." +msgid "Two other examples in ``test_generators.py`` produce solutions for the N-Queens problem (placing N queens on an NxN chess board so that no queen threatens another) and the Knight's Tour (finding a route that takes a knight to every square of an NxN chessboard without visiting any square twice)." msgstr "" -#: ../../howto/functional.rst:530 msgid "Passing values into a generator" msgstr "" -#: ../../howto/functional.rst:532 -msgid "" -"In Python 2.4 and earlier, generators only produced output. Once a " -"generator's code was invoked to create an iterator, there was no way to pass " -"any new information into the function when its execution is resumed. You " -"could hack together this ability by making the generator look at a global " -"variable or by passing in some mutable object that callers then modify, but " -"these approaches are messy." +msgid "In Python 2.4 and earlier, generators only produced output. Once a generator's code was invoked to create an iterator, there was no way to pass any new information into the function when its execution is resumed. You could hack together this ability by making the generator look at a global variable or by passing in some mutable object that callers then modify, but these approaches are messy." msgstr "" -#: ../../howto/functional.rst:539 -msgid "" -"In Python 2.5 there's a simple way to pass values into a " -"generator. :keyword:`yield` became an expression, returning a value that can " -"be assigned to a variable or otherwise operated on::" +msgid "In Python 2.5 there's a simple way to pass values into a generator. :keyword:`yield` became an expression, returning a value that can be assigned to a variable or otherwise operated on::" msgstr "" -#: ../../howto/functional.rst:543 msgid "val = (yield i)" msgstr "" -#: ../../howto/functional.rst:545 -msgid "" -"I recommend that you **always** put parentheses around a ``yield`` " -"expression when you're doing something with the returned value, as in the " -"above example. The parentheses aren't always necessary, but it's easier to " -"always add them instead of having to remember when they're needed." +msgid "I recommend that you **always** put parentheses around a ``yield`` expression when you're doing something with the returned value, as in the above example. The parentheses aren't always necessary, but it's easier to always add them instead of having to remember when they're needed." msgstr "" -#: ../../howto/functional.rst:550 -msgid "" -"(:pep:`342` explains the exact rules, which are that a ``yield``-expression " -"must always be parenthesized except when it occurs at the top-level " -"expression on the right-hand side of an assignment. This means you can " -"write ``val = yield i`` but have to use parentheses when there's an " -"operation, as in ``val = (yield i) + 12``.)" +msgid "(:pep:`342` explains the exact rules, which are that a ``yield``-expression must always be parenthesized except when it occurs at the top-level expression on the right-hand side of an assignment. This means you can write ``val = yield i`` but have to use parentheses when there's an operation, as in ``val = (yield i) + 12``.)" msgstr "" -#: ../../howto/functional.rst:556 -msgid "" -"Values are sent into a generator by calling its :meth:`send(value) " -"` method. This method resumes the generator's code and the " -"``yield`` expression returns the specified value. If the " -"regular :meth:`~generator.__next__` method is called, the ``yield`` returns " -"``None``." +msgid "Values are sent into a generator by calling its :meth:`send(value) ` method. This method resumes the generator's code and the ``yield`` expression returns the specified value. If the regular :meth:`~generator.__next__` method is called, the ``yield`` returns ``None``." msgstr "" -#: ../../howto/functional.rst:561 -msgid "" -"Here's a simple counter that increments by 1 and allows changing the value " -"of the internal counter." +msgid "Here's a simple counter that increments by 1 and allows changing the value of the internal counter." msgstr "" -#: ../../howto/functional.rst:564 msgid "" "def counter(maximum):\n" " i = 0\n" @@ -805,114 +414,57 @@ msgid "" " i += 1" msgstr "" -#: ../../howto/functional.rst:576 msgid "And here's an example of changing the counter:" msgstr "" -#: ../../howto/functional.rst:593 -msgid "" -"Because ``yield`` will often be returning ``None``, you should always check " -"for this case. Don't just use its value in expressions unless you're sure " -"that the :meth:`~generator.send` method will be the only method used to " -"resume your generator function." +msgid "Because ``yield`` will often be returning ``None``, you should always check for this case. Don't just use its value in expressions unless you're sure that the :meth:`~generator.send` method will be the only method used to resume your generator function." msgstr "" -#: ../../howto/functional.rst:598 -msgid "" -"In addition to :meth:`~generator.send`, there are two other methods on " -"generators:" +msgid "In addition to :meth:`~generator.send`, there are two other methods on generators:" msgstr "" -#: ../../howto/functional.rst:601 -msgid "" -":meth:`throw(value) ` is used to raise an exception inside " -"the generator; the exception is raised by the ``yield`` expression where the " -"generator's execution is paused." +msgid ":meth:`throw(value) ` is used to raise an exception inside the generator; the exception is raised by the ``yield`` expression where the generator's execution is paused." msgstr "" -#: ../../howto/functional.rst:605 -msgid "" -":meth:`~generator.close` sends a :exc:`GeneratorExit` exception to the " -"generator to terminate the iteration. On receiving this exception, the " -"generator's code must either raise :exc:`GeneratorExit` " -"or :exc:`StopIteration`; catching the exception and doing anything else is " -"illegal and will trigger a :exc:`RuntimeError`. :meth:`~generator.close` " -"will also be called by Python's garbage collector when the generator is " -"garbage-collected." +msgid ":meth:`~generator.close` sends a :exc:`GeneratorExit` exception to the generator to terminate the iteration. On receiving this exception, the generator's code must either raise :exc:`GeneratorExit` or :exc:`StopIteration`; catching the exception and doing anything else is illegal and will trigger a :exc:`RuntimeError`. :meth:`~generator.close` will also be called by Python's garbage collector when the generator is garbage-collected." msgstr "" -#: ../../howto/functional.rst:613 -msgid "" -"If you need to run cleanup code when a :exc:`GeneratorExit` occurs, I " -"suggest using a ``try: ... finally:`` suite instead of " -"catching :exc:`GeneratorExit`." +msgid "If you need to run cleanup code when a :exc:`GeneratorExit` occurs, I suggest using a ``try: ... finally:`` suite instead of catching :exc:`GeneratorExit`." msgstr "" -#: ../../howto/functional.rst:616 -msgid "" -"The cumulative effect of these changes is to turn generators from one-way " -"producers of information into both producers and consumers." +msgid "The cumulative effect of these changes is to turn generators from one-way producers of information into both producers and consumers." msgstr "" -#: ../../howto/functional.rst:619 -msgid "" -"Generators also become **coroutines**, a more generalized form of " -"subroutines. Subroutines are entered at one point and exited at another " -"point (the top of the function, and a ``return`` statement), but coroutines " -"can be entered, exited, and resumed at many different points (the ``yield`` " -"statements)." +msgid "Generators also become **coroutines**, a more generalized form of subroutines. Subroutines are entered at one point and exited at another point (the top of the function, and a ``return`` statement), but coroutines can be entered, exited, and resumed at many different points (the ``yield`` statements)." msgstr "" -#: ../../howto/functional.rst:626 msgid "Built-in functions" msgstr "" -#: ../../howto/functional.rst:628 -msgid "" -"Let's look in more detail at built-in functions often used with iterators." +msgid "Let's look in more detail at built-in functions often used with iterators." msgstr "" -#: ../../howto/functional.rst:630 -msgid "" -"Two of Python's built-in functions, :func:`map` and :func:`filter` duplicate " -"the features of generator expressions:" +msgid "Two of Python's built-in functions, :func:`map` and :func:`filter` duplicate the features of generator expressions:" msgstr "" -#: ../../howto/functional.rst:633 -msgid "" -":func:`map(f, iterA, iterB, ...) ` returns an iterator over the sequence" +msgid ":func:`map(f, iterA, iterB, ...) ` returns an iterator over the sequence" msgstr "" -#: ../../howto/functional.rst:634 -msgid "" -"``f(iterA[0], iterB[0]), f(iterA[1], iterB[1]), f(iterA[2], iterB[2]), ...``." +msgid "``f(iterA[0], iterB[0]), f(iterA[1], iterB[1]), f(iterA[2], iterB[2]), ...``." msgstr "" -#: ../../howto/functional.rst:644 msgid "You can of course achieve the same effect with a list comprehension." msgstr "" -#: ../../howto/functional.rst:646 -msgid "" -":func:`filter(predicate, iter) ` returns an iterator over all the " -"sequence elements that meet a certain condition, and is similarly duplicated " -"by list comprehensions. A **predicate** is a function that returns the " -"truth value of some condition; for use with :func:`filter`, the predicate " -"must take a single value." +msgid ":func:`filter(predicate, iter) ` returns an iterator over all the sequence elements that meet a certain condition, and is similarly duplicated by list comprehensions. A **predicate** is a function that returns the truth value of some condition; for use with :func:`filter`, the predicate must take a single value." msgstr "" -#: ../../howto/functional.rst:659 msgid "This can also be written as a list comprehension:" msgstr "" -#: ../../howto/functional.rst:665 -msgid "" -":func:`enumerate(iter, start=0) ` counts off the elements in the " -"iterable returning 2-tuples containing the count (from *start*) and each " -"element. ::" +msgid ":func:`enumerate(iter, start=0) ` counts off the elements in the iterable returning 2-tuples containing the count (from *start*) and each element. ::" msgstr "" -#: ../../howto/functional.rst:669 msgid "" ">>> for item in enumerate(['subject', 'verb', 'object']):\n" "... print(item)\n" @@ -921,13 +473,9 @@ msgid "" "(2, 'object')" msgstr "" -#: ../../howto/functional.rst:675 -msgid "" -":func:`enumerate` is often used when looping through a list and recording " -"the indexes at which certain conditions are met::" +msgid ":func:`enumerate` is often used when looping through a list and recording the indexes at which certain conditions are met::" msgstr "" -#: ../../howto/functional.rst:678 msgid "" "f = open('data.txt', 'r')\n" "for i, line in enumerate(f):\n" @@ -935,15 +483,9 @@ msgid "" " print('Blank line at line #%i' % i)" msgstr "" -#: ../../howto/functional.rst:683 -msgid "" -":func:`sorted(iterable, key=None, reverse=False) ` collects all the " -"elements of the iterable into a list, sorts the list, and returns the sorted " -"result. The *key* and *reverse* arguments are passed through to the " -"constructed list's :meth:`~list.sort` method. ::" +msgid ":func:`sorted(iterable, key=None, reverse=False) ` collects all the elements of the iterable into a list, sorts the list, and returns the sorted result. The *key* and *reverse* arguments are passed through to the constructed list's :meth:`~list.sort` method. ::" msgstr "" -#: ../../howto/functional.rst:688 msgid "" ">>> import random\n" ">>> # Generate 8 random numbers between [0, 10000)\n" @@ -956,103 +498,61 @@ msgid "" "[9878, 9828, 8442, 7953, 6431, 6213, 2207, 769]" msgstr "" -#: ../../howto/functional.rst:698 -msgid "" -"(For a more detailed discussion of sorting, see the :ref:`sortinghowto`.)" +msgid "(For a more detailed discussion of sorting, see the :ref:`sortinghowto`.)" msgstr "" -#: ../../howto/functional.rst:701 -msgid "" -"The :func:`any(iter) ` and :func:`all(iter) ` built-ins look at " -"the truth values of an iterable's contents. :func:`any` returns ``True`` if " -"any element in the iterable is a true value, and :func:`all` returns " -"``True`` if all of the elements are true values:" +msgid "The :func:`any(iter) ` and :func:`all(iter) ` built-ins look at the truth values of an iterable's contents. :func:`any` returns ``True`` if any element in the iterable is a true value, and :func:`all` returns ``True`` if all of the elements are true values:" msgstr "" -#: ../../howto/functional.rst:720 -msgid "" -":func:`zip(iterA, iterB, ...) ` takes one element from each iterable " -"and returns them in a tuple::" +msgid ":func:`zip(iterA, iterB, ...) ` takes one element from each iterable and returns them in a tuple::" msgstr "" -#: ../../howto/functional.rst:723 msgid "" "zip(['a', 'b', 'c'], (1, 2, 3)) =>\n" " ('a', 1), ('b', 2), ('c', 3)" msgstr "" -#: ../../howto/functional.rst:726 -msgid "" -"It doesn't construct an in-memory list and exhaust all the input iterators " -"before returning; instead tuples are constructed and returned only if " -"they're requested. (The technical term for this behaviour is `lazy " -"evaluation `__.)" +msgid "It doesn't construct an in-memory list and exhaust all the input iterators before returning; instead tuples are constructed and returned only if they're requested. (The technical term for this behaviour is `lazy evaluation `__.)" msgstr "" -#: ../../howto/functional.rst:731 -msgid "" -"This iterator is intended to be used with iterables that are all of the same " -"length. If the iterables are of different lengths, the resulting stream " -"will be the same length as the shortest iterable. ::" +msgid "This iterator is intended to be used with iterables that are all of the same length. If the iterables are of different lengths, the resulting stream will be the same length as the shortest iterable. ::" msgstr "" -#: ../../howto/functional.rst:735 msgid "" "zip(['a', 'b'], (1, 2, 3)) =>\n" " ('a', 1), ('b', 2)" msgstr "" -#: ../../howto/functional.rst:738 -msgid "" -"You should avoid doing this, though, because an element may be taken from " -"the longer iterators and discarded. This means you can't go on to use the " -"iterators further because you risk skipping a discarded element." +msgid "You should avoid doing this, though, because an element may be taken from the longer iterators and discarded. This means you can't go on to use the iterators further because you risk skipping a discarded element." msgstr "" -#: ../../howto/functional.rst:744 msgid "The itertools module" msgstr "" -#: ../../howto/functional.rst:746 -msgid "" -"The :mod:`itertools` module contains a number of commonly used iterators as " -"well as functions for combining several iterators. This section will " -"introduce the module's contents by showing small examples." +msgid "The :mod:`itertools` module contains a number of commonly used iterators as well as functions for combining several iterators. This section will introduce the module's contents by showing small examples." msgstr "" -#: ../../howto/functional.rst:750 msgid "The module's functions fall into a few broad classes:" msgstr "" -#: ../../howto/functional.rst:752 msgid "Functions that create a new iterator based on an existing iterator." msgstr "" -#: ../../howto/functional.rst:753 msgid "Functions for treating an iterator's elements as function arguments." msgstr "" -#: ../../howto/functional.rst:754 msgid "Functions for selecting portions of an iterator's output." msgstr "" -#: ../../howto/functional.rst:755 msgid "A function for grouping an iterator's output." msgstr "" -#: ../../howto/functional.rst:758 msgid "Creating new iterators" msgstr "" -#: ../../howto/functional.rst:760 -msgid "" -":func:`itertools.count(start, step) ` returns an infinite " -"stream of evenly spaced values. You can optionally supply the starting " -"number, which defaults to 0, and the interval between numbers, which " -"defaults to 1::" +msgid ":func:`itertools.count(start, step) ` returns an infinite stream of evenly spaced values. You can optionally supply the starting number, which defaults to 0, and the interval between numbers, which defaults to 1::" msgstr "" -#: ../../howto/functional.rst:764 msgid "" "itertools.count() =>\n" " 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, ...\n" @@ -1062,28 +562,17 @@ msgid "" " 10, 15, 20, 25, 30, 35, 40, 45, 50, 55, ..." msgstr "" -#: ../../howto/functional.rst:771 -msgid "" -":func:`itertools.cycle(iter) ` saves a copy of the contents " -"of a provided iterable and returns a new iterator that returns its elements " -"from first to last. The new iterator will repeat these elements " -"infinitely. ::" +msgid ":func:`itertools.cycle(iter) ` saves a copy of the contents of a provided iterable and returns a new iterator that returns its elements from first to last. The new iterator will repeat these elements infinitely. ::" msgstr "" -#: ../../howto/functional.rst:775 msgid "" "itertools.cycle([1, 2, 3, 4, 5]) =>\n" " 1, 2, 3, 4, 5, 1, 2, 3, 4, 5, ..." msgstr "" -#: ../../howto/functional.rst:778 -msgid "" -":func:`itertools.repeat(elem, [n]) ` returns the provided " -"element *n* times, or returns the element endlessly if *n* is not " -"provided. ::" +msgid ":func:`itertools.repeat(elem, [n]) ` returns the provided element *n* times, or returns the element endlessly if *n* is not provided. ::" msgstr "" -#: ../../howto/functional.rst:781 msgid "" "itertools.repeat('abc') =>\n" " abc, abc, abc, abc, abc, abc, abc, abc, abc, abc, ...\n" @@ -1091,32 +580,17 @@ msgid "" " abc, abc, abc, abc, abc" msgstr "" -#: ../../howto/functional.rst:786 -msgid "" -":func:`itertools.chain(iterA, iterB, ...) ` takes an " -"arbitrary number of iterables as input, and returns all the elements of the " -"first iterator, then all the elements of the second, and so on, until all of " -"the iterables have been exhausted. ::" +msgid ":func:`itertools.chain(iterA, iterB, ...) ` takes an arbitrary number of iterables as input, and returns all the elements of the first iterator, then all the elements of the second, and so on, until all of the iterables have been exhausted. ::" msgstr "" -#: ../../howto/functional.rst:791 msgid "" "itertools.chain(['a', 'b', 'c'], (1, 2, 3)) =>\n" " a, b, c, 1, 2, 3" msgstr "" -#: ../../howto/functional.rst:794 -msgid "" -":func:`itertools.islice(iter, [start], stop, [step]) ` " -"returns a stream that's a slice of the iterator. With a single *stop* " -"argument, it will return the first *stop* elements. If you supply a " -"starting index, you'll get *stop-start* elements, and if you supply a value " -"for *step*, elements will be skipped accordingly. Unlike Python's string " -"and list slicing, you can't use negative values for *start*, *stop*, or " -"*step*. ::" +msgid ":func:`itertools.islice(iter, [start], stop, [step]) ` returns a stream that's a slice of the iterator. With a single *stop* argument, it will return the first *stop* elements. If you supply a starting index, you'll get *stop-start* elements, and if you supply a value for *step*, elements will be skipped accordingly. Unlike Python's string and list slicing, you can't use negative values for *start*, *stop*, or *step*. ::" msgstr "" -#: ../../howto/functional.rst:801 msgid "" "itertools.islice(range(10), 8) =>\n" " 0, 1, 2, 3, 4, 5, 6, 7\n" @@ -1126,17 +600,9 @@ msgid "" " 2, 4, 6" msgstr "" -#: ../../howto/functional.rst:808 -msgid "" -":func:`itertools.tee(iter, [n]) ` replicates an iterator; it " -"returns *n* independent iterators that will all return the contents of the " -"source iterator. If you don't supply a value for *n*, the default is 2. " -"Replicating iterators requires saving some of the contents of the source " -"iterator, so this can consume significant memory if the iterator is large " -"and one of the new iterators is consumed more than the others. ::" +msgid ":func:`itertools.tee(iter, [n]) ` replicates an iterator; it returns *n* independent iterators that will all return the contents of the source iterator. If you don't supply a value for *n*, the default is 2. Replicating iterators requires saving some of the contents of the source iterator, so this can consume significant memory if the iterator is large and one of the new iterators is consumed more than the others. ::" msgstr "" -#: ../../howto/functional.rst:816 msgid "" "itertools.tee( itertools.count() ) =>\n" " iterA, iterB\n" @@ -1148,28 +614,15 @@ msgid "" " 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, ..." msgstr "" -#: ../../howto/functional.rst:827 msgid "Calling functions on elements" msgstr "" -#: ../../howto/functional.rst:829 -msgid "" -"The :mod:`operator` module contains a set of functions corresponding to " -"Python's operators. Some examples are :func:`operator.add(a, b) " -"` (adds two values), :func:`operator.ne(a, b) ` " -"(same as ``a != b``), and :func:`operator.attrgetter('id') " -"` (returns a callable that fetches the ``.id`` " -"attribute)." +msgid "The :mod:`operator` module contains a set of functions corresponding to Python's operators. Some examples are :func:`operator.add(a, b) ` (adds two values), :func:`operator.ne(a, b) ` (same as ``a != b``), and :func:`operator.attrgetter('id') ` (returns a callable that fetches the ``.id`` attribute)." msgstr "" -#: ../../howto/functional.rst:835 -msgid "" -":func:`itertools.starmap(func, iter) ` assumes that the " -"iterable will return a stream of tuples, and calls *func* using these tuples " -"as the arguments::" +msgid ":func:`itertools.starmap(func, iter) ` assumes that the iterable will return a stream of tuples, and calls *func* using these tuples as the arguments::" msgstr "" -#: ../../howto/functional.rst:839 msgid "" "itertools.starmap(os.path.join,\n" " [('/bin', 'python'), ('/usr', 'bin', 'java'),\n" @@ -1178,37 +631,23 @@ msgid "" " /bin/python, /usr/bin/java, /usr/bin/perl, /usr/bin/ruby" msgstr "" -#: ../../howto/functional.rst:847 msgid "Selecting elements" msgstr "" -#: ../../howto/functional.rst:849 -msgid "" -"Another group of functions chooses a subset of an iterator's elements based " -"on a predicate." +msgid "Another group of functions chooses a subset of an iterator's elements based on a predicate." msgstr "" -#: ../../howto/functional.rst:852 -msgid "" -":func:`itertools.filterfalse(predicate, iter) ` is " -"the opposite of :func:`filter`, returning all elements for which the " -"predicate returns false::" +msgid ":func:`itertools.filterfalse(predicate, iter) ` is the opposite of :func:`filter`, returning all elements for which the predicate returns false::" msgstr "" -#: ../../howto/functional.rst:856 msgid "" "itertools.filterfalse(is_even, itertools.count()) =>\n" " 1, 3, 5, 7, 9, 11, 13, 15, ..." msgstr "" -#: ../../howto/functional.rst:859 -msgid "" -":func:`itertools.takewhile(predicate, iter) ` returns " -"elements for as long as the predicate returns true. Once the predicate " -"returns false, the iterator will signal the end of its results. ::" +msgid ":func:`itertools.takewhile(predicate, iter) ` returns elements for as long as the predicate returns true. Once the predicate returns false, the iterator will signal the end of its results. ::" msgstr "" -#: ../../howto/functional.rst:863 msgid "" "def less_than_10(x):\n" " return x < 10\n" @@ -1220,14 +659,9 @@ msgid "" " 0" msgstr "" -#: ../../howto/functional.rst:872 -msgid "" -":func:`itertools.dropwhile(predicate, iter) ` discards " -"elements while the predicate returns true, and then returns the rest of the " -"iterable's results. ::" +msgid ":func:`itertools.dropwhile(predicate, iter) ` discards elements while the predicate returns true, and then returns the rest of the iterable's results. ::" msgstr "" -#: ../../howto/functional.rst:876 msgid "" "itertools.dropwhile(less_than_10, itertools.count()) =>\n" " 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, ...\n" @@ -1236,32 +670,20 @@ msgid "" " 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, ..." msgstr "" -#: ../../howto/functional.rst:882 -msgid "" -":func:`itertools.compress(data, selectors) ` takes two " -"iterators and returns only those elements of *data* for which the " -"corresponding element of *selectors* is true, stopping whenever either one " -"is exhausted::" +msgid ":func:`itertools.compress(data, selectors) ` takes two iterators and returns only those elements of *data* for which the corresponding element of *selectors* is true, stopping whenever either one is exhausted::" msgstr "" -#: ../../howto/functional.rst:886 msgid "" "itertools.compress([1, 2, 3, 4, 5], [True, True, False, False, True]) =>\n" " 1, 2, 5" msgstr "" -#: ../../howto/functional.rst:891 msgid "Combinatoric functions" msgstr "" -#: ../../howto/functional.rst:893 -msgid "" -"The :func:`itertools.combinations(iterable, r) ` " -"returns an iterator giving all possible *r*-tuple combinations of the " -"elements contained in *iterable*. ::" +msgid "The :func:`itertools.combinations(iterable, r) ` returns an iterator giving all possible *r*-tuple combinations of the elements contained in *iterable*. ::" msgstr "" -#: ../../howto/functional.rst:897 msgid "" "itertools.combinations([1, 2, 3, 4, 5], 2) =>\n" " (1, 2), (1, 3), (1, 4), (1, 5),\n" @@ -1275,17 +697,9 @@ msgid "" " (3, 4, 5)" msgstr "" -#: ../../howto/functional.rst:908 -msgid "" -"The elements within each tuple remain in the same order as *iterable* " -"returned them. For example, the number 1 is always before 2, 3, 4, or 5 in " -"the examples above. A similar " -"function, :func:`itertools.permutations(iterable, r=None) " -"`, removes this constraint on the order, returning " -"all possible arrangements of length *r*::" +msgid "The elements within each tuple remain in the same order as *iterable* returned them. For example, the number 1 is always before 2, 3, 4, or 5 in the examples above. A similar function, :func:`itertools.permutations(iterable, r=None) `, removes this constraint on the order, returning all possible arrangements of length *r*::" msgstr "" -#: ../../howto/functional.rst:915 msgid "" "itertools.permutations([1, 2, 3, 4, 5], 2) =>\n" " (1, 2), (1, 3), (1, 4), (1, 5),\n" @@ -1300,41 +714,24 @@ msgid "" " (5, 4, 3, 2, 1)" msgstr "" -#: ../../howto/functional.rst:927 -msgid "" -"If you don't supply a value for *r* the length of the iterable is used, " -"meaning that all the elements are permuted." +msgid "If you don't supply a value for *r* the length of the iterable is used, meaning that all the elements are permuted." msgstr "" -#: ../../howto/functional.rst:930 -msgid "" -"Note that these functions produce all of the possible combinations by " -"position and don't require that the contents of *iterable* are unique::" +msgid "Note that these functions produce all of the possible combinations by position and don't require that the contents of *iterable* are unique::" msgstr "" -#: ../../howto/functional.rst:933 msgid "" "itertools.permutations('aba', 3) =>\n" " ('a', 'b', 'a'), ('a', 'a', 'b'), ('b', 'a', 'a'),\n" " ('b', 'a', 'a'), ('a', 'a', 'b'), ('a', 'b', 'a')" msgstr "" -#: ../../howto/functional.rst:937 -msgid "" -"The identical tuple ``('a', 'a', 'b')`` occurs twice, but the two 'a' " -"strings came from different positions." +msgid "The identical tuple ``('a', 'a', 'b')`` occurs twice, but the two 'a' strings came from different positions." msgstr "" -#: ../../howto/functional.rst:940 -msgid "" -"The :func:`itertools.combinations_with_replacement(iterable, r) " -"` function relaxes a different " -"constraint: elements can be repeated within a single tuple. Conceptually an " -"element is selected for the first position of each tuple and then is " -"replaced before the second element is selected. ::" +msgid "The :func:`itertools.combinations_with_replacement(iterable, r) ` function relaxes a different constraint: elements can be repeated within a single tuple. Conceptually an element is selected for the first position of each tuple and then is replaced before the second element is selected. ::" msgstr "" -#: ../../howto/functional.rst:946 msgid "" "itertools.combinations_with_replacement([1, 2, 3, 4, 5], 2) =>\n" " (1, 1), (1, 2), (1, 3), (1, 4), (1, 5),\n" @@ -1344,27 +741,15 @@ msgid "" " (5, 5)" msgstr "" -#: ../../howto/functional.rst:955 msgid "Grouping elements" msgstr "" -#: ../../howto/functional.rst:957 -msgid "" -"The last function I'll discuss, :func:`itertools.groupby(iter, " -"key_func=None) `, is the most complicated. " -"``key_func(elem)`` is a function that can compute a key value for each " -"element returned by the iterable. If you don't supply a key function, the " -"key is simply each element itself." +msgid "The last function I'll discuss, :func:`itertools.groupby(iter, key_func=None) `, is the most complicated. ``key_func(elem)`` is a function that can compute a key value for each element returned by the iterable. If you don't supply a key function, the key is simply each element itself." msgstr "" -#: ../../howto/functional.rst:962 -msgid "" -":func:`~itertools.groupby` collects all the consecutive elements from the " -"underlying iterable that have the same key value, and returns a stream of 2-" -"tuples containing a key value and an iterator for the elements with that key." +msgid ":func:`~itertools.groupby` collects all the consecutive elements from the underlying iterable that have the same key value, and returns a stream of 2-tuples containing a key value and an iterator for the elements with that key." msgstr "" -#: ../../howto/functional.rst:968 msgid "" "city_list = [('Decatur', 'AL'), ('Huntsville', 'AL'), ('Selma', 'AL'),\n" " ('Anchorage', 'AK'), ('Nome', 'AK'),\n" @@ -1389,49 +774,24 @@ msgid "" " ('Flagstaff', 'AZ'), ('Phoenix', 'AZ'), ('Tucson', 'AZ')" msgstr "" -#: ../../howto/functional.rst:990 -msgid "" -":func:`~itertools.groupby` assumes that the underlying iterable's contents " -"will already be sorted based on the key. Note that the returned iterators " -"also use the underlying iterable, so you have to consume the results of " -"iterator-1 before requesting iterator-2 and its corresponding key." +msgid ":func:`~itertools.groupby` assumes that the underlying iterable's contents will already be sorted based on the key. Note that the returned iterators also use the underlying iterable, so you have to consume the results of iterator-1 before requesting iterator-2 and its corresponding key." msgstr "" -#: ../../howto/functional.rst:997 msgid "The functools module" msgstr "" -#: ../../howto/functional.rst:999 -msgid "" -"The :mod:`functools` module contains some higher-order functions. A **higher-" -"order function** takes one or more functions as input and returns a new " -"function. The most useful tool in this module is " -"the :func:`functools.partial` function." +msgid "The :mod:`functools` module contains some higher-order functions. A **higher-order function** takes one or more functions as input and returns a new function. The most useful tool in this module is the :func:`functools.partial` function." msgstr "" -#: ../../howto/functional.rst:1004 -msgid "" -"For programs written in a functional style, you'll sometimes want to " -"construct variants of existing functions that have some of the parameters " -"filled in. Consider a Python function ``f(a, b, c)``; you may wish to create " -"a new function ``g(b, c)`` that's equivalent to ``f(1, b, c)``; you're " -"filling in a value for one of ``f()``'s parameters. This is called " -"\"partial function application\"." +msgid "For programs written in a functional style, you'll sometimes want to construct variants of existing functions that have some of the parameters filled in. Consider a Python function ``f(a, b, c)``; you may wish to create a new function ``g(b, c)`` that's equivalent to ``f(1, b, c)``; you're filling in a value for one of ``f()``'s parameters. This is called \"partial function application\"." msgstr "" -#: ../../howto/functional.rst:1010 -msgid "" -"The constructor for :func:`~functools.partial` takes the arguments " -"``(function, arg1, arg2, ..., kwarg1=value1, kwarg2=value2)``. The " -"resulting object is callable, so you can just call it to invoke ``function`` " -"with the filled-in arguments." +msgid "The constructor for :func:`~functools.partial` takes the arguments ``(function, arg1, arg2, ..., kwarg1=value1, kwarg2=value2)``. The resulting object is callable, so you can just call it to invoke ``function`` with the filled-in arguments." msgstr "" -#: ../../howto/functional.rst:1015 msgid "Here's a small but realistic example::" msgstr "" -#: ../../howto/functional.rst:1017 msgid "" "import functools\n" "\n" @@ -1444,22 +804,9 @@ msgid "" "server_log('Unable to open socket')" msgstr "" -#: ../../howto/functional.rst:1027 -msgid "" -":func:`functools.reduce(func, iter, [initial_value]) ` " -"cumulatively performs an operation on all the iterable's elements and, " -"therefore, can't be applied to infinite iterables. *func* must be a function " -"that takes two elements and returns a single " -"value. :func:`functools.reduce` takes the first two elements A and B " -"returned by the iterator and calculates ``func(A, B)``. It then requests " -"the third element, C, calculates ``func(func(A, B), C)``, combines this " -"result with the fourth element returned, and continues until the iterable is " -"exhausted. If the iterable returns no values at all, a :exc:`TypeError` " -"exception is raised. If the initial value is supplied, it's used as a " -"starting point and ``func(initial_value, A)`` is the first calculation. ::" -msgstr "" - -#: ../../howto/functional.rst:1039 +msgid ":func:`functools.reduce(func, iter, [initial_value]) ` cumulatively performs an operation on all the iterable's elements and, therefore, can't be applied to infinite iterables. *func* must be a function that takes two elements and returns a single value. :func:`functools.reduce` takes the first two elements A and B returned by the iterator and calculates ``func(A, B)``. It then requests the third element, C, calculates ``func(func(A, B), C)``, combines this result with the fourth element returned, and continues until the iterable is exhausted. If the iterable returns no values at all, a :exc:`TypeError` exception is raised. If the initial value is supplied, it's used as a starting point and ``func(initial_value, A)`` is the first calculation. ::" +msgstr "" + msgid "" ">>> import operator, functools\n" ">>> functools.reduce(operator.concat, ['A', 'BB', 'C'])\n" @@ -1474,20 +821,12 @@ msgid "" "1" msgstr "" -#: ../../howto/functional.rst:1051 -msgid "" -"If you use :func:`operator.add` with :func:`functools.reduce`, you'll add up " -"all the elements of the iterable. This case is so common that there's a " -"special built-in called :func:`sum` to compute it:" +msgid "If you use :func:`operator.add` with :func:`functools.reduce`, you'll add up all the elements of the iterable. This case is so common that there's a special built-in called :func:`sum` to compute it:" msgstr "" -#: ../../howto/functional.rst:1063 -msgid "" -"For many uses of :func:`functools.reduce`, though, it can be clearer to just " -"write the obvious :keyword:`for` loop::" +msgid "For many uses of :func:`functools.reduce`, though, it can be clearer to just write the obvious :keyword:`for` loop::" msgstr "" -#: ../../howto/functional.rst:1066 msgid "" "import functools\n" "# Instead of:\n" @@ -1499,16 +838,9 @@ msgid "" " product *= i" msgstr "" -#: ../../howto/functional.rst:1075 -msgid "" -"A related function is :func:`itertools.accumulate(iterable, " -"func=operator.add) `. It performs the same " -"calculation, but instead of returning only the final " -"result, :func:`~itertools.accumulate` returns an iterator that also yields " -"each partial result::" +msgid "A related function is :func:`itertools.accumulate(iterable, func=operator.add) `. It performs the same calculation, but instead of returning only the final result, :func:`~itertools.accumulate` returns an iterator that also yields each partial result::" msgstr "" -#: ../../howto/functional.rst:1080 msgid "" "itertools.accumulate([1, 2, 3, 4, 5]) =>\n" " 1, 3, 6, 10, 15\n" @@ -1517,94 +849,59 @@ msgid "" " 1, 2, 6, 24, 120" msgstr "" -#: ../../howto/functional.rst:1088 msgid "The operator module" msgstr "" -#: ../../howto/functional.rst:1090 -msgid "" -"The :mod:`operator` module was mentioned earlier. It contains a set of " -"functions corresponding to Python's operators. These functions are often " -"useful in functional-style code because they save you from writing trivial " -"functions that perform a single operation." +msgid "The :mod:`operator` module was mentioned earlier. It contains a set of functions corresponding to Python's operators. These functions are often useful in functional-style code because they save you from writing trivial functions that perform a single operation." msgstr "" -#: ../../howto/functional.rst:1095 msgid "Some of the functions in this module are:" msgstr "" -#: ../../howto/functional.rst:1097 -msgid "" -"Math operations: ``add()``, ``sub()``, ``mul()``, ``floordiv()``, " -"``abs()``, ..." +msgid "Math operations: ``add()``, ``sub()``, ``mul()``, ``floordiv()``, ``abs()``, ..." msgstr "" -#: ../../howto/functional.rst:1098 msgid "Logical operations: ``not_()``, ``truth()``." msgstr "" -#: ../../howto/functional.rst:1099 msgid "Bitwise operations: ``and_()``, ``or_()``, ``invert()``." msgstr "" -#: ../../howto/functional.rst:1100 -msgid "" -"Comparisons: ``eq()``, ``ne()``, ``lt()``, ``le()``, ``gt()``, and ``ge()``." +msgid "Comparisons: ``eq()``, ``ne()``, ``lt()``, ``le()``, ``gt()``, and ``ge()``." msgstr "" -#: ../../howto/functional.rst:1101 msgid "Object identity: ``is_()``, ``is_not()``." msgstr "" -#: ../../howto/functional.rst:1103 msgid "Consult the operator module's documentation for a complete list." msgstr "" -#: ../../howto/functional.rst:1107 msgid "Small functions and the lambda expression" msgstr "" -#: ../../howto/functional.rst:1109 -msgid "" -"When writing functional-style programs, you'll often need little functions " -"that act as predicates or that combine elements in some way." +msgid "When writing functional-style programs, you'll often need little functions that act as predicates or that combine elements in some way." msgstr "" -#: ../../howto/functional.rst:1112 -msgid "" -"If there's a Python built-in or a module function that's suitable, you don't " -"need to define a new function at all::" +msgid "If there's a Python built-in or a module function that's suitable, you don't need to define a new function at all::" msgstr "" -#: ../../howto/functional.rst:1115 msgid "" "stripped_lines = [line.strip() for line in lines]\n" "existing_files = filter(os.path.exists, file_list)" msgstr "" -#: ../../howto/functional.rst:1118 -msgid "" -"If the function you need doesn't exist, you need to write it. One way to " -"write small functions is to use the :keyword:`lambda` expression. " -"``lambda`` takes a number of parameters and an expression combining these " -"parameters, and creates an anonymous function that returns the value of the " -"expression::" +msgid "If the function you need doesn't exist, you need to write it. One way to write small functions is to use the :keyword:`lambda` expression. ``lambda`` takes a number of parameters and an expression combining these parameters, and creates an anonymous function that returns the value of the expression::" msgstr "" -#: ../../howto/functional.rst:1123 msgid "" "adder = lambda x, y: x+y\n" "\n" "print_assign = lambda name, value: name + '=' + str(value)" msgstr "" -#: ../../howto/functional.rst:1127 -msgid "" -"An alternative is to just use the ``def`` statement and define a function in " -"the usual way::" +msgid "An alternative is to just use the ``def`` statement and define a function in the usual way::" msgstr "" -#: ../../howto/functional.rst:1130 msgid "" "def adder(x, y):\n" " return x + y\n" @@ -1613,36 +910,20 @@ msgid "" " return name + '=' + str(value)" msgstr "" -#: ../../howto/functional.rst:1136 -msgid "" -"Which alternative is preferable? That's a style question; my usual course " -"is to avoid using ``lambda``." +msgid "Which alternative is preferable? That's a style question; my usual course is to avoid using ``lambda``." msgstr "" -#: ../../howto/functional.rst:1139 -msgid "" -"One reason for my preference is that ``lambda`` is quite limited in the " -"functions it can define. The result has to be computable as a single " -"expression, which means you can't have multiway ``if... elif... else`` " -"comparisons or ``try... except`` statements. If you try to do too much in a " -"``lambda`` statement, you'll end up with an overly complicated expression " -"that's hard to read. Quick, what's the following code doing? ::" +msgid "One reason for my preference is that ``lambda`` is quite limited in the functions it can define. The result has to be computable as a single expression, which means you can't have multiway ``if... elif... else`` comparisons or ``try... except`` statements. If you try to do too much in a ``lambda`` statement, you'll end up with an overly complicated expression that's hard to read. Quick, what's the following code doing? ::" msgstr "" -#: ../../howto/functional.rst:1146 msgid "" "import functools\n" "total = functools.reduce(lambda a, b: (0, a[1] + b[1]), items)[1]" msgstr "" -#: ../../howto/functional.rst:1149 -msgid "" -"You can figure it out, but it takes time to disentangle the expression to " -"figure out what's going on. Using a short nested ``def`` statements makes " -"things a little bit better::" +msgid "You can figure it out, but it takes time to disentangle the expression to figure out what's going on. Using a short nested ``def`` statements makes things a little bit better::" msgstr "" -#: ../../howto/functional.rst:1153 msgid "" "import functools\n" "def combine(a, b):\n" @@ -1651,191 +932,113 @@ msgid "" "total = functools.reduce(combine, items)[1]" msgstr "" -#: ../../howto/functional.rst:1159 msgid "But it would be best of all if I had simply used a ``for`` loop::" msgstr "" -#: ../../howto/functional.rst:1161 msgid "" "total = 0\n" "for a, b in items:\n" " total += b" msgstr "" -#: ../../howto/functional.rst:1165 msgid "Or the :func:`sum` built-in and a generator expression::" msgstr "" -#: ../../howto/functional.rst:1167 msgid "total = sum(b for a, b in items)" msgstr "" -#: ../../howto/functional.rst:1169 -msgid "" -"Many uses of :func:`functools.reduce` are clearer when written as ``for`` " -"loops." +msgid "Many uses of :func:`functools.reduce` are clearer when written as ``for`` loops." msgstr "" -#: ../../howto/functional.rst:1171 -msgid "" -"Fredrik Lundh once suggested the following set of rules for refactoring uses " -"of ``lambda``:" +msgid "Fredrik Lundh once suggested the following set of rules for refactoring uses of ``lambda``:" msgstr "" -#: ../../howto/functional.rst:1174 msgid "Write a lambda function." msgstr "" -#: ../../howto/functional.rst:1175 msgid "Write a comment explaining what the heck that lambda does." msgstr "" -#: ../../howto/functional.rst:1176 -msgid "" -"Study the comment for a while, and think of a name that captures the essence " -"of the comment." +msgid "Study the comment for a while, and think of a name that captures the essence of the comment." msgstr "" -#: ../../howto/functional.rst:1178 msgid "Convert the lambda to a def statement, using that name." msgstr "" -#: ../../howto/functional.rst:1179 msgid "Remove the comment." msgstr "" -#: ../../howto/functional.rst:1181 -msgid "" -"I really like these rules, but you're free to disagree about whether this " -"lambda-free style is better." +msgid "I really like these rules, but you're free to disagree about whether this lambda-free style is better." msgstr "" -#: ../../howto/functional.rst:1186 msgid "Revision History and Acknowledgements" msgstr "" -#: ../../howto/functional.rst:1188 -msgid "" -"The author would like to thank the following people for offering " -"suggestions, corrections and assistance with various drafts of this article: " -"Ian Bicking, Nick Coghlan, Nick Efford, Raymond Hettinger, Jim Jewett, Mike " -"Krell, Leandro Lameiro, Jussi Salmela, Collin Winter, Blake Winton." +msgid "The author would like to thank the following people for offering suggestions, corrections and assistance with various drafts of this article: Ian Bicking, Nick Coghlan, Nick Efford, Raymond Hettinger, Jim Jewett, Mike Krell, Leandro Lameiro, Jussi Salmela, Collin Winter, Blake Winton." msgstr "" -#: ../../howto/functional.rst:1193 msgid "Version 0.1: posted June 30 2006." msgstr "" -#: ../../howto/functional.rst:1195 msgid "Version 0.11: posted July 1 2006. Typo fixes." msgstr "" -#: ../../howto/functional.rst:1197 -msgid "" -"Version 0.2: posted July 10 2006. Merged genexp and listcomp sections into " -"one. Typo fixes." +msgid "Version 0.2: posted July 10 2006. Merged genexp and listcomp sections into one. Typo fixes." msgstr "" -#: ../../howto/functional.rst:1200 -msgid "" -"Version 0.21: Added more references suggested on the tutor mailing list." +msgid "Version 0.21: Added more references suggested on the tutor mailing list." msgstr "" -#: ../../howto/functional.rst:1202 -msgid "" -"Version 0.30: Adds a section on the ``functional`` module written by Collin " -"Winter; adds short section on the operator module; a few other edits." +msgid "Version 0.30: Adds a section on the ``functional`` module written by Collin Winter; adds short section on the operator module; a few other edits." msgstr "" -#: ../../howto/functional.rst:1207 msgid "References" msgstr "" -#: ../../howto/functional.rst:1210 msgid "General" msgstr "" -#: ../../howto/functional.rst:1212 -msgid "" -"**Structure and Interpretation of Computer Programs**, by Harold Abelson and " -"Gerald Jay Sussman with Julie Sussman. The book can be found at https://" -"mitpress.mit.edu/sicp. In this classic textbook of computer science, " -"chapters 2 and 3 discuss the use of sequences and streams to organize the " -"data flow inside a program. The book uses Scheme for its examples, but many " -"of the design approaches described in these chapters are applicable to " -"functional-style Python code." +msgid "**Structure and Interpretation of Computer Programs**, by Harold Abelson and Gerald Jay Sussman with Julie Sussman. The book can be found at https://mitpress.mit.edu/sicp. In this classic textbook of computer science, chapters 2 and 3 discuss the use of sequences and streams to organize the data flow inside a program. The book uses Scheme for its examples, but many of the design approaches described in these chapters are applicable to functional-style Python code." msgstr "" -#: ../../howto/functional.rst:1220 -msgid "" -"https://defmacro.org/2006/06/19/fp.html: A general introduction to " -"functional programming that uses Java examples and has a lengthy historical " -"introduction." +msgid "https://defmacro.org/2006/06/19/fp.html: A general introduction to functional programming that uses Java examples and has a lengthy historical introduction." msgstr "" -#: ../../howto/functional.rst:1223 -msgid "" -"https://en.wikipedia.org/wiki/Functional_programming: General Wikipedia " -"entry describing functional programming." +msgid "https://en.wikipedia.org/wiki/Functional_programming: General Wikipedia entry describing functional programming." msgstr "" -#: ../../howto/functional.rst:1226 msgid "https://en.wikipedia.org/wiki/Coroutine: Entry for coroutines." msgstr "" -#: ../../howto/functional.rst:1228 -msgid "" -"https://en.wikipedia.org/wiki/Partial_application: Entry for the concept of " -"partial function application." +msgid "https://en.wikipedia.org/wiki/Partial_application: Entry for the concept of partial function application." msgstr "" -#: ../../howto/functional.rst:1230 -msgid "" -"https://en.wikipedia.org/wiki/Currying: Entry for the concept of currying." +msgid "https://en.wikipedia.org/wiki/Currying: Entry for the concept of currying." msgstr "" -#: ../../howto/functional.rst:1233 msgid "Python-specific" msgstr "" -#: ../../howto/functional.rst:1235 -msgid "" -"https://gnosis.cx/TPiP/: The first chapter of David Mertz's book :title-" -"reference:`Text Processing in Python` discusses functional programming for " -"text processing, in the section titled \"Utilizing Higher-Order Functions in " -"Text Processing\"." +msgid "https://gnosis.cx/TPiP/: The first chapter of David Mertz's book :title-reference:`Text Processing in Python` discusses functional programming for text processing, in the section titled \"Utilizing Higher-Order Functions in Text Processing\"." msgstr "" -#: ../../howto/functional.rst:1240 -msgid "" -"Mertz also wrote a 3-part series of articles on functional programming for " -"IBM's DeveloperWorks site; see `part 1 `__, `part 2 `__, and " -"`part 3 `__," +msgid "Mertz also wrote a 3-part series of articles on functional programming for IBM's DeveloperWorks site; see `part 1 `__, `part 2 `__, and `part 3 `__," msgstr "" -#: ../../howto/functional.rst:1248 msgid "Python documentation" msgstr "" -#: ../../howto/functional.rst:1250 msgid "Documentation for the :mod:`itertools` module." msgstr "" -#: ../../howto/functional.rst:1252 msgid "Documentation for the :mod:`functools` module." msgstr "" -#: ../../howto/functional.rst:1254 msgid "Documentation for the :mod:`operator` module." msgstr "" -#: ../../howto/functional.rst:1256 msgid ":pep:`289`: \"Generator Expressions\"" msgstr "" -#: ../../howto/functional.rst:1258 -msgid "" -":pep:`342`: \"Coroutines via Enhanced Generators\" describes the new " -"generator features in Python 2.5." +msgid ":pep:`342`: \"Coroutines via Enhanced Generators\" describes the new generator features in Python 2.5." msgstr "" diff --git a/howto/gdb_helpers.po b/howto/gdb_helpers.po index 48869746..9fbd0970 100644 --- a/howto/gdb_helpers.po +++ b/howto/gdb_helpers.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2024-02-25 01:11+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -22,239 +22,134 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../howto/gdb_helpers.rst:5 msgid "Debugging C API extensions and CPython Internals with GDB" msgstr "" -#: ../../howto/gdb_helpers.rst:9 -msgid "" -"This document explains how the Python GDB extension, ``python-gdb.py``, can " -"be used with the GDB debugger to debug CPython extensions and the CPython " -"interpreter itself." +msgid "This document explains how the Python GDB extension, ``python-gdb.py``, can be used with the GDB debugger to debug CPython extensions and the CPython interpreter itself." msgstr "" -#: ../../howto/gdb_helpers.rst:13 -msgid "" -"When debugging low-level problems such as crashes or deadlocks, a low-level " -"debugger, such as GDB, is useful to diagnose and correct the issue. By " -"default, GDB (or any of its front-ends) doesn't support high-level " -"information specific to the CPython interpreter." +msgid "When debugging low-level problems such as crashes or deadlocks, a low-level debugger, such as GDB, is useful to diagnose and correct the issue. By default, GDB (or any of its front-ends) doesn't support high-level information specific to the CPython interpreter." msgstr "" -#: ../../howto/gdb_helpers.rst:18 -msgid "" -"The ``python-gdb.py`` extension adds CPython interpreter information to GDB. " -"The extension helps introspect the stack of currently executing Python " -"functions. Given a Python object represented by a :c:expr:`PyObject *` " -"pointer, the extension surfaces the type and value of the object." +msgid "The ``python-gdb.py`` extension adds CPython interpreter information to GDB. The extension helps introspect the stack of currently executing Python functions. Given a Python object represented by a :c:expr:`PyObject *` pointer, the extension surfaces the type and value of the object." msgstr "" -#: ../../howto/gdb_helpers.rst:23 -msgid "" -"Developers who are working on CPython extensions or tinkering with parts of " -"CPython that are written in C can use this document to learn how to use the " -"``python-gdb.py`` extension with GDB." +msgid "Developers who are working on CPython extensions or tinkering with parts of CPython that are written in C can use this document to learn how to use the ``python-gdb.py`` extension with GDB." msgstr "" -#: ../../howto/gdb_helpers.rst:29 -msgid "" -"This document assumes that you are familiar with the basics of GDB and the " -"CPython C API. It consolidates guidance from the `devguide `_ and the `Python wiki `_." +msgid "This document assumes that you are familiar with the basics of GDB and the CPython C API. It consolidates guidance from the `devguide `_ and the `Python wiki `_." msgstr "" -#: ../../howto/gdb_helpers.rst:36 msgid "Prerequisites" msgstr "" -#: ../../howto/gdb_helpers.rst:38 msgid "You need to have:" msgstr "" -#: ../../howto/gdb_helpers.rst:40 -msgid "" -"GDB 7 or later. (For earlier versions of GDB, see ``Misc/gdbinit`` in the " -"sources of Python 3.11 or earlier.)" +msgid "GDB 7 or later. (For earlier versions of GDB, see ``Misc/gdbinit`` in the sources of Python 3.11 or earlier.)" msgstr "" -#: ../../howto/gdb_helpers.rst:42 -msgid "" -"GDB-compatible debugging information for Python and any extension you are " -"debugging." +msgid "GDB-compatible debugging information for Python and any extension you are debugging." msgstr "" -#: ../../howto/gdb_helpers.rst:44 msgid "The ``python-gdb.py`` extension." msgstr "" -#: ../../howto/gdb_helpers.rst:46 -msgid "" -"The extension is built with Python, but might be distributed separately or " -"not at all. Below, we include tips for a few common systems as examples. " -"Note that even if the instructions match your system, they might be outdated." +msgid "The extension is built with Python, but might be distributed separately or not at all. Below, we include tips for a few common systems as examples. Note that even if the instructions match your system, they might be outdated." msgstr "" -#: ../../howto/gdb_helpers.rst:52 msgid "Setup with Python built from source" msgstr "" -#: ../../howto/gdb_helpers.rst:54 -msgid "" -"When you build CPython from source, debugging information should be " -"available, and the build should add a ``python-gdb.py`` file to the root " -"directory of your repository." +msgid "When you build CPython from source, debugging information should be available, and the build should add a ``python-gdb.py`` file to the root directory of your repository." msgstr "" -#: ../../howto/gdb_helpers.rst:58 -msgid "" -"To activate support, you must add the directory containing ``python-gdb.py`` " -"to GDB's \"auto-load-safe-path\". If you haven't done this, recent versions " -"of GDB will print out a warning with instructions on how to do this." +msgid "To activate support, you must add the directory containing ``python-gdb.py`` to GDB's \"auto-load-safe-path\". If you haven't done this, recent versions of GDB will print out a warning with instructions on how to do this." msgstr "" -#: ../../howto/gdb_helpers.rst:65 -msgid "" -"If you do not see instructions for your version of GDB, put this in your " -"configuration file (``~/.gdbinit`` or ``~/.config/gdb/gdbinit``)::" +msgid "If you do not see instructions for your version of GDB, put this in your configuration file (``~/.gdbinit`` or ``~/.config/gdb/gdbinit``)::" msgstr "" -#: ../../howto/gdb_helpers.rst:68 msgid "add-auto-load-safe-path /path/to/cpython" msgstr "" -#: ../../howto/gdb_helpers.rst:70 msgid "You can also add multiple paths, separated by ``:``." msgstr "" -#: ../../howto/gdb_helpers.rst:74 msgid "Setup for Python from a Linux distro" msgstr "" -#: ../../howto/gdb_helpers.rst:76 -msgid "" -"Most Linux systems provide debug information for the system Python in a " -"package called ``python-debuginfo``, ``python-dbg`` or similar. For example:" +msgid "Most Linux systems provide debug information for the system Python in a package called ``python-debuginfo``, ``python-dbg`` or similar. For example:" msgstr "" -#: ../../howto/gdb_helpers.rst:80 msgid "Fedora:" msgstr "" -#: ../../howto/gdb_helpers.rst:82 msgid "" "sudo dnf install gdb\n" "sudo dnf debuginfo-install python3" msgstr "" -#: ../../howto/gdb_helpers.rst:87 msgid "Ubuntu:" msgstr "" -#: ../../howto/gdb_helpers.rst:89 msgid "sudo apt install gdb python3-dbg" msgstr "" -#: ../../howto/gdb_helpers.rst:93 -msgid "" -"On several recent Linux systems, GDB can download debugging symbols " -"automatically using *debuginfod*. However, this will not install the " -"``python-gdb.py`` extension; you generally do need to install the debug info " -"package separately." +msgid "On several recent Linux systems, GDB can download debugging symbols automatically using *debuginfod*. However, this will not install the ``python-gdb.py`` extension; you generally do need to install the debug info package separately." msgstr "" -#: ../../howto/gdb_helpers.rst:100 msgid "Using the Debug build and Development mode" msgstr "" -#: ../../howto/gdb_helpers.rst:102 msgid "For easier debugging, you might want to:" msgstr "" -#: ../../howto/gdb_helpers.rst:104 -msgid "" -"Use a :ref:`debug build ` of Python. (When building from " -"source, use ``configure --with-pydebug``. On Linux distros, install and run " -"a package like ``python-debug`` or ``python-dbg``, if available.)" +msgid "Use a :ref:`debug build ` of Python. (When building from source, use ``configure --with-pydebug``. On Linux distros, install and run a package like ``python-debug`` or ``python-dbg``, if available.)" msgstr "" -#: ../../howto/gdb_helpers.rst:107 msgid "Use the runtime :ref:`development mode ` (``-X dev``)." msgstr "" -#: ../../howto/gdb_helpers.rst:109 -msgid "" -"Both enable extra assertions and disable some optimizations. Sometimes this " -"hides the bug you are trying to find, but in most cases they make the " -"process easier." +msgid "Both enable extra assertions and disable some optimizations. Sometimes this hides the bug you are trying to find, but in most cases they make the process easier." msgstr "" -#: ../../howto/gdb_helpers.rst:115 msgid "Using the ``python-gdb`` extension" msgstr "" -#: ../../howto/gdb_helpers.rst:117 -msgid "" -"When the extension is loaded, it provides two main features: pretty printers " -"for Python values, and additional commands." +msgid "When the extension is loaded, it provides two main features: pretty printers for Python values, and additional commands." msgstr "" -#: ../../howto/gdb_helpers.rst:121 msgid "Pretty-printers" msgstr "" -#: ../../howto/gdb_helpers.rst:123 -msgid "" -"This is what a GDB backtrace looks like (truncated) when this extension is " -"enabled::" +msgid "This is what a GDB backtrace looks like (truncated) when this extension is enabled::" msgstr "" -#: ../../howto/gdb_helpers.rst:126 msgid "" -"#0 0x000000000041a6b1 in PyObject_Malloc (nbytes=Cannot access memory at " -"address 0x7fffff7fefe8\n" +"#0 0x000000000041a6b1 in PyObject_Malloc (nbytes=Cannot access memory at address 0x7fffff7fefe8\n" ") at Objects/obmalloc.c:748\n" -"#1 0x000000000041b7c0 in _PyObject_DebugMallocApi (id=111 'o', nbytes=24) " -"at Objects/obmalloc.c:1445\n" -"#2 0x000000000041b717 in _PyObject_DebugMalloc (nbytes=24) at Objects/" -"obmalloc.c:1412\n" -"#3 0x000000000044060a in _PyUnicode_New (length=11) at Objects/" -"unicodeobject.c:346\n" -"#4 0x00000000004466aa in PyUnicodeUCS2_DecodeUTF8Stateful (s=0x5c2b8d " -"\"__lltrace__\", size=11, errors=0x0, consumed=\n" +"#1 0x000000000041b7c0 in _PyObject_DebugMallocApi (id=111 'o', nbytes=24) at Objects/obmalloc.c:1445\n" +"#2 0x000000000041b717 in _PyObject_DebugMalloc (nbytes=24) at Objects/obmalloc.c:1412\n" +"#3 0x000000000044060a in _PyUnicode_New (length=11) at Objects/unicodeobject.c:346\n" +"#4 0x00000000004466aa in PyUnicodeUCS2_DecodeUTF8Stateful (s=0x5c2b8d \"__lltrace__\", size=11, errors=0x0, consumed=\n" " 0x0) at Objects/unicodeobject.c:2531\n" -"#5 0x0000000000446647 in PyUnicodeUCS2_DecodeUTF8 (s=0x5c2b8d " -"\"__lltrace__\", size=11, errors=0x0)\n" +"#5 0x0000000000446647 in PyUnicodeUCS2_DecodeUTF8 (s=0x5c2b8d \"__lltrace__\", size=11, errors=0x0)\n" " at Objects/unicodeobject.c:2495\n" -"#6 0x0000000000440d1b in PyUnicodeUCS2_FromStringAndSize (u=0x5c2b8d " -"\"__lltrace__\", size=11)\n" +"#6 0x0000000000440d1b in PyUnicodeUCS2_FromStringAndSize (u=0x5c2b8d \"__lltrace__\", size=11)\n" " at Objects/unicodeobject.c:551\n" -"#7 0x0000000000440d94 in PyUnicodeUCS2_FromString (u=0x5c2b8d " -"\"__lltrace__\") at Objects/unicodeobject.c:569\n" +"#7 0x0000000000440d94 in PyUnicodeUCS2_FromString (u=0x5c2b8d \"__lltrace__\") at Objects/unicodeobject.c:569\n" "#8 0x0000000000584abd in PyDict_GetItemString (v=\n" -" {'Yuck': , '__builtins__': , '__file__': 'Lib/test/crashers/nasty_eq_vs_dict.py', " -"'__package__': None, 'y': , 'dict': {0: 0, 1: " -"1, 2: 2, 3: 3}, '__cached__': None, '__name__': '__main__', 'z': , '__doc__': None}, key=\n" +" {'Yuck': , '__builtins__': , '__file__': 'Lib/test/crashers/nasty_eq_vs_dict.py', '__package__': None, 'y': , 'dict': {0: 0, 1: 1, 2: 2, 3: 3}, '__cached__': None, '__name__': '__main__', 'z': , '__doc__': None}, key=\n" " 0x5c2b8d \"__lltrace__\") at Objects/dictobject.c:2171" msgstr "" -#: ../../howto/gdb_helpers.rst:142 -msgid "" -"Notice how the dictionary argument to ``PyDict_GetItemString`` is displayed " -"as its ``repr()``, rather than an opaque ``PyObject *`` pointer." +msgid "Notice how the dictionary argument to ``PyDict_GetItemString`` is displayed as its ``repr()``, rather than an opaque ``PyObject *`` pointer." msgstr "" -#: ../../howto/gdb_helpers.rst:145 -msgid "" -"The extension works by supplying a custom printing routine for values of " -"type ``PyObject *``. If you need to access lower-level details of an " -"object, then cast the value to a pointer of the appropriate type. For " -"example::" +msgid "The extension works by supplying a custom printing routine for values of type ``PyObject *``. If you need to access lower-level details of an object, then cast the value to a pointer of the appropriate type. For example::" msgstr "" -#: ../../howto/gdb_helpers.rst:149 msgid "" "(gdb) p globals\n" "$1 = {'__builtins__': , '__name__':\n" @@ -276,22 +171,12 @@ msgid "" " me_hash = 6614918939584953775, me_key = '__package__', me_value = None}}}" msgstr "" -#: ../../howto/gdb_helpers.rst:168 -msgid "" -"Note that the pretty-printers do not actually call ``repr()``. For basic " -"types, they try to match its result closely." +msgid "Note that the pretty-printers do not actually call ``repr()``. For basic types, they try to match its result closely." msgstr "" -#: ../../howto/gdb_helpers.rst:171 -msgid "" -"An area that can be confusing is that the custom printer for some types look " -"a lot like GDB's built-in printer for standard types. For example, the " -"pretty-printer for a Python ``int`` (:c:expr:`PyLongObject *`) gives a " -"representation that is not distinguishable from one of a regular machine-" -"level integer::" +msgid "An area that can be confusing is that the custom printer for some types look a lot like GDB's built-in printer for standard types. For example, the pretty-printer for a Python ``int`` (:c:expr:`PyLongObject *`) gives a representation that is not distinguishable from one of a regular machine-level integer::" msgstr "" -#: ../../howto/gdb_helpers.rst:177 msgid "" "(gdb) p some_machine_integer\n" "$3 = 42\n" @@ -300,70 +185,46 @@ msgid "" "$4 = 42" msgstr "" -#: ../../howto/gdb_helpers.rst:183 -msgid "" -"The internal structure can be revealed with a cast to :c:expr:`PyLongObject " -"*`::" +msgid "The internal structure can be revealed with a cast to :c:expr:`PyLongObject *`::" msgstr "" -#: ../../howto/gdb_helpers.rst:185 msgid "" "(gdb) p *(PyLongObject*)some_python_integer\n" -"$5 = {ob_base = {ob_base = {ob_refcnt = 8, ob_type = 0x3dad39f5e0}, ob_size " -"= 1},\n" +"$5 = {ob_base = {ob_base = {ob_refcnt = 8, ob_type = 0x3dad39f5e0}, ob_size = 1},\n" "ob_digit = {42}}" msgstr "" -#: ../../howto/gdb_helpers.rst:189 -msgid "" -"A similar confusion can arise with the ``str`` type, where the output looks " -"a lot like gdb's built-in printer for ``char *``::" +msgid "A similar confusion can arise with the ``str`` type, where the output looks a lot like gdb's built-in printer for ``char *``::" msgstr "" -#: ../../howto/gdb_helpers.rst:192 msgid "" "(gdb) p ptr_to_python_str\n" "$6 = '__builtins__'" msgstr "" -#: ../../howto/gdb_helpers.rst:195 -msgid "" -"The pretty-printer for ``str`` instances defaults to using single-quotes (as " -"does Python's ``repr`` for strings) whereas the standard printer for ``char " -"*`` values uses double-quotes and contains a hexadecimal address::" +msgid "The pretty-printer for ``str`` instances defaults to using single-quotes (as does Python's ``repr`` for strings) whereas the standard printer for ``char *`` values uses double-quotes and contains a hexadecimal address::" msgstr "" -#: ../../howto/gdb_helpers.rst:199 msgid "" "(gdb) p ptr_to_char_star\n" "$7 = 0x6d72c0 \"hello world\"" msgstr "" -#: ../../howto/gdb_helpers.rst:202 -msgid "" -"Again, the implementation details can be revealed with a cast " -"to :c:expr:`PyUnicodeObject *`::" +msgid "Again, the implementation details can be revealed with a cast to :c:expr:`PyUnicodeObject *`::" msgstr "" -#: ../../howto/gdb_helpers.rst:205 msgid "" "(gdb) p *(PyUnicodeObject*)$6\n" "$8 = {ob_base = {ob_refcnt = 33, ob_type = 0x3dad3a95a0}, length = 12,\n" "str = 0x7ffff2128500, hash = 7065186196740147912, state = 1, defenc = 0x0}" msgstr "" -#: ../../howto/gdb_helpers.rst:210 msgid "``py-list``" msgstr "" -#: ../../howto/gdb_helpers.rst:212 -msgid "" -"The extension adds a ``py-list`` command, which lists the Python source code " -"(if any) for the current frame in the selected thread. The current line is " -"marked with a \">\"::" +msgid "The extension adds a ``py-list`` command, which lists the Python source code (if any) for the current frame in the selected thread. The current line is marked with a \">\"::" msgstr "" -#: ../../howto/gdb_helpers.rst:216 msgid "" "(gdb) py-list\n" " 901 if options.profile:\n" @@ -379,42 +240,24 @@ msgid "" " 911 # properly quit on a keyboard interrupt..." msgstr "" -#: ../../howto/gdb_helpers.rst:229 -msgid "" -"Use ``py-list START`` to list at a different line number within the Python " -"source, and ``py-list START,END`` to list a specific range of lines within " -"the Python source." +msgid "Use ``py-list START`` to list at a different line number within the Python source, and ``py-list START,END`` to list a specific range of lines within the Python source." msgstr "" -#: ../../howto/gdb_helpers.rst:234 msgid "``py-up`` and ``py-down``" msgstr "" -#: ../../howto/gdb_helpers.rst:236 -msgid "" -"The ``py-up`` and ``py-down`` commands are analogous to GDB's regular ``up`` " -"and ``down`` commands, but try to move at the level of CPython frames, " -"rather than C frames." +msgid "The ``py-up`` and ``py-down`` commands are analogous to GDB's regular ``up`` and ``down`` commands, but try to move at the level of CPython frames, rather than C frames." msgstr "" -#: ../../howto/gdb_helpers.rst:240 -msgid "" -"GDB is not always able to read the relevant frame information, depending on " -"the optimization level with which CPython was compiled. Internally, the " -"commands look for C frames that are executing the default frame evaluation " -"function (that is, the core bytecode interpreter loop within CPython) and " -"look up the value of the related ``PyFrameObject *``." +msgid "GDB is not always able to read the relevant frame information, depending on the optimization level with which CPython was compiled. Internally, the commands look for C frames that are executing the default frame evaluation function (that is, the core bytecode interpreter loop within CPython) and look up the value of the related ``PyFrameObject *``." msgstr "" -#: ../../howto/gdb_helpers.rst:246 msgid "They emit the frame number (at the C level) within the thread." msgstr "" -#: ../../howto/gdb_helpers.rst:248 ../../howto/gdb_helpers.rst:320 msgid "For example::" msgstr "" -#: ../../howto/gdb_helpers.rst:250 msgid "" "(gdb) py-up\n" "#37 Frame 0x9420b04, for file /usr/lib/python2.6/site-packages/\n" @@ -422,33 +265,24 @@ msgid "" " u = UI()\n" "(gdb) py-up\n" "#40 Frame 0x948e82c, for file /usr/lib/python2.6/site-packages/\n" -"gnome_sudoku/gnome_sudoku.py, line 22, in start_game(main=)\n" +"gnome_sudoku/gnome_sudoku.py, line 22, in start_game(main=)\n" " main.start_game()\n" "(gdb) py-up\n" "Unable to find an older python frame" msgstr "" -#: ../../howto/gdb_helpers.rst:261 msgid "so we're at the top of the Python stack." msgstr "" -#: ../../howto/gdb_helpers.rst:263 -msgid "" -"The frame numbers correspond to those displayed by GDB's standard " -"``backtrace`` command. The command skips C frames which are not executing " -"Python code." +msgid "The frame numbers correspond to those displayed by GDB's standard ``backtrace`` command. The command skips C frames which are not executing Python code." msgstr "" -#: ../../howto/gdb_helpers.rst:267 msgid "Going back down::" msgstr "" -#: ../../howto/gdb_helpers.rst:269 msgid "" "(gdb) py-down\n" -"#37 Frame 0x9420b04, for file /usr/lib/python2.6/site-packages/gnome_sudoku/" -"main.py, line 906, in start_game ()\n" +"#37 Frame 0x9420b04, for file /usr/lib/python2.6/site-packages/gnome_sudoku/main.py, line 906, in start_game ()\n" " u = UI()\n" "(gdb) py-down\n" "#34 (unable to read python frame information)\n" @@ -457,27 +291,10 @@ msgid "" "(gdb) py-down\n" "#19 (unable to read python frame information)\n" "(gdb) py-down\n" -"#14 Frame 0x99262ac, for file /usr/lib/python2.6/site-packages/gnome_sudoku/" -"game_selector.py, line 201, in run_swallowed_dialog " -"(self=, puzzle=None, saved_games=[{'gsd.auto_fills': 0, 'tracking': {}, " -"'trackers': {}, 'notes': [], 'saved_at': 1270084485, 'game': '7 8 0 0 0 0 0 " -"5 6 0 0 9 0 8 0 1 0 0 0 4 6 0 0 0 0 7 0 6 5 0 0 0 4 7 9 2 0 0 0 9 0 1 0 0 0 " -"3 9 7 6 0 0 0 1 8 0 6 0 0 0 0 2 8 0 0 0 5 0 4 0 6 0 0 2 1 0 0 0 0 0 4 5\\n7 " -"8 0 0 0 0 0 5 6 0 0 9 0 8 0 1 0 0 0 4 6 0 0 0 0 7 0 6 5 1 8 3 4 7 9 2 0 0 0 " -"9 0 1 0 0 0 3 9 7 6 0 0 0 1 8 0 6 0 0 0 0 2 8 0 0 0 5 0 4 0 6 0 0 2 1 0 0 0 " -"0 0 4 5', 'gsd.impossible_hints': 0, 'timer.__absolute_start_time__': , 'gsd.hints': 0, 'timer.active_time': , 'timer.total_time': }], " -"dialog=, saved_game_model=, sudoku_maker=, puzzle=None, saved_games=[{'gsd.auto_fills': 0, 'tracking': {}, 'trackers': {}, 'notes': [], 'saved_at': 1270084485, 'game': '7 8 0 0 0 0 0 5 6 0 0 9 0 8 0 1 0 0 0 4 6 0 0 0 0 7 0 6 5 0 0 0 4 7 9 2 0 0 0 9 0 1 0 0 0 3 9 7 6 0 0 0 1 8 0 6 0 0 0 0 2 8 0 0 0 5 0 4 0 6 0 0 2 1 0 0 0 0 0 4 5\\n7 8 0 0 0 0 0 5 6 0 0 9 0 8 0 1 0 0 0 4 6 0 0 0 0 7 0 6 5 1 8 3 4 7 9 2 0 0 0 9 0 1 0 0 0 3 9 7 6 0 0 0 1 8 0 6 0 0 0 0 2 8 0 0 0 5 0 4 0 6 0 0 2 1 0 0 0 0 0 4 5', 'gsd.impossible_hints': 0, 'timer.__absolute_start_time__': , 'gsd.hints': 0, 'timer.active_time': , 'timer.total_time': }], dialog=, saved_game_model=, sudoku_maker=, main_page=0) " -"at remote 0x98fa6e4>, d=)\n" +"#11 Frame 0x9aead74, for file /usr/lib/python2.6/site-packages/gnome_sudoku/dialog_swallower.py, line 48, in run_dialog (self=, main_page=0) at remote 0x98fa6e4>, d=)\n" " gtk.main()\n" "(gdb) py-down\n" "#8 (unable to read python frame information)\n" @@ -485,37 +302,25 @@ msgid "" "Unable to find a newer python frame" msgstr "" -#: ../../howto/gdb_helpers.rst:289 msgid "and we're at the bottom of the Python stack." msgstr "" -#: ../../howto/gdb_helpers.rst:291 -msgid "" -"Note that in Python 3.12 and newer, the same C stack frame can be used for " -"multiple Python stack frames. This means that ``py-up`` and ``py-down`` may " -"move multiple Python frames at once. For example::" +msgid "Note that in Python 3.12 and newer, the same C stack frame can be used for multiple Python stack frames. This means that ``py-up`` and ``py-down`` may move multiple Python frames at once. For example::" msgstr "" -#: ../../howto/gdb_helpers.rst:295 msgid "" "(gdb) py-up\n" -"#6 Frame 0x7ffff7fb62b0, for file /tmp/rec.py, line 5, in recursive_function " -"(n=0)\n" +"#6 Frame 0x7ffff7fb62b0, for file /tmp/rec.py, line 5, in recursive_function (n=0)\n" " time.sleep(5)\n" -"#6 Frame 0x7ffff7fb6240, for file /tmp/rec.py, line 7, in recursive_function " -"(n=1)\n" +"#6 Frame 0x7ffff7fb6240, for file /tmp/rec.py, line 7, in recursive_function (n=1)\n" " recursive_function(n-1)\n" -"#6 Frame 0x7ffff7fb61d0, for file /tmp/rec.py, line 7, in recursive_function " -"(n=2)\n" +"#6 Frame 0x7ffff7fb61d0, for file /tmp/rec.py, line 7, in recursive_function (n=2)\n" " recursive_function(n-1)\n" -"#6 Frame 0x7ffff7fb6160, for file /tmp/rec.py, line 7, in recursive_function " -"(n=3)\n" +"#6 Frame 0x7ffff7fb6160, for file /tmp/rec.py, line 7, in recursive_function (n=3)\n" " recursive_function(n-1)\n" -"#6 Frame 0x7ffff7fb60f0, for file /tmp/rec.py, line 7, in recursive_function " -"(n=4)\n" +"#6 Frame 0x7ffff7fb60f0, for file /tmp/rec.py, line 7, in recursive_function (n=4)\n" " recursive_function(n-1)\n" -"#6 Frame 0x7ffff7fb6080, for file /tmp/rec.py, line 7, in recursive_function " -"(n=5)\n" +"#6 Frame 0x7ffff7fb6080, for file /tmp/rec.py, line 7, in recursive_function (n=5)\n" " recursive_function(n-1)\n" "#6 Frame 0x7ffff7fb6020, for file /tmp/rec.py, line 9, in ()\n" " recursive_function(5)\n" @@ -523,71 +328,37 @@ msgid "" "Unable to find an older python frame" msgstr "" -#: ../../howto/gdb_helpers.rst:315 msgid "``py-bt``" msgstr "" -#: ../../howto/gdb_helpers.rst:317 -msgid "" -"The ``py-bt`` command attempts to display a Python-level backtrace of the " -"current thread." +msgid "The ``py-bt`` command attempts to display a Python-level backtrace of the current thread." msgstr "" -#: ../../howto/gdb_helpers.rst:322 msgid "" "(gdb) py-bt\n" "#8 (unable to read python frame information)\n" -"#11 Frame 0x9aead74, for file /usr/lib/python2.6/site-packages/gnome_sudoku/" -"dialog_swallower.py, line 48, in run_dialog " -"(self=, main_page=0) " -"at remote 0x98fa6e4>, d=)\n" +"#11 Frame 0x9aead74, for file /usr/lib/python2.6/site-packages/gnome_sudoku/dialog_swallower.py, line 48, in run_dialog (self=, main_page=0) at remote 0x98fa6e4>, d=)\n" " gtk.main()\n" -"#14 Frame 0x99262ac, for file /usr/lib/python2.6/site-packages/gnome_sudoku/" -"game_selector.py, line 201, in run_swallowed_dialog " -"(self=, puzzle=None, saved_games=[{'gsd.auto_fills': 0, 'tracking': {}, " -"'trackers': {}, 'notes': [], 'saved_at': 1270084485, 'game': '7 8 0 0 0 0 0 " -"5 6 0 0 9 0 8 0 1 0 0 0 4 6 0 0 0 0 7 0 6 5 0 0 0 4 7 9 2 0 0 0 9 0 1 0 0 0 " -"3 9 7 6 0 0 0 1 8 0 6 0 0 0 0 2 8 0 0 0 5 0 4 0 6 0 0 2 1 0 0 0 0 0 4 5\\n7 " -"8 0 0 0 0 0 5 6 0 0 9 0 8 0 1 0 0 0 4 6 0 0 0 0 7 0 6 5 1 8 3 4 7 9 2 0 0 0 " -"9 0 1 0 0 0 3 9 7 6 0 0 0 1 8 0 6 0 0 0 0 2 8 0 0 0 5 0 4 0 6 0 0 2 1 0 0 0 " -"0 0 4 5', 'gsd.impossible_hints': 0, 'timer.__absolute_start_time__': , 'gsd.hints': 0, 'timer.active_time': , 'timer.total_time': }], " -"dialog=, saved_game_model=, sudoku_maker=, puzzle=None, saved_games=[{'gsd.auto_fills': 0, 'tracking': {}, 'trackers': {}, 'notes': [], 'saved_at': 1270084485, 'game': '7 8 0 0 0 0 0 5 6 0 0 9 0 8 0 1 0 0 0 4 6 0 0 0 0 7 0 6 5 0 0 0 4 7 9 2 0 0 0 9 0 1 0 0 0 3 9 7 6 0 0 0 1 8 0 6 0 0 0 0 2 8 0 0 0 5 0 4 0 6 0 0 2 1 0 0 0 0 0 4 5\\n7 8 0 0 0 0 0 5 6 0 0 9 0 8 0 1 0 0 0 4 6 0 0 0 0 7 0 6 5 1 8 3 4 7 9 2 0 0 0 9 0 1 0 0 0 3 9 7 6 0 0 0 1 8 0 6 0 0 0 0 2 8 0 0 0 5 0 4 0 6 0 0 2 1 0 0 0 0 0 4 5', 'gsd.impossible_hints': 0, 'timer.__absolute_start_time__': , 'gsd.hints': 0, 'timer.active_time': , 'timer.total_time': }], dialog=, saved_game_model=, sudoku_maker=)\n" +"#40 Frame 0x948e82c, for file /usr/lib/python2.6/site-packages/gnome_sudoku/gnome_sudoku.py, line 22, in start_game (main=)\n" " main.start_game()" msgstr "" -#: ../../howto/gdb_helpers.rst:336 -msgid "" -"The frame numbers correspond to those displayed by GDB's standard " -"``backtrace`` command." +msgid "The frame numbers correspond to those displayed by GDB's standard ``backtrace`` command." msgstr "" -#: ../../howto/gdb_helpers.rst:340 msgid "``py-print``" msgstr "" -#: ../../howto/gdb_helpers.rst:342 -msgid "" -"The ``py-print`` command looks up a Python name and tries to print it. It " -"looks in locals within the current thread, then globals, then finally " -"builtins::" +msgid "The ``py-print`` command looks up a Python name and tries to print it. It looks in locals within the current thread, then globals, then finally builtins::" msgstr "" -#: ../../howto/gdb_helpers.rst:346 msgid "" "(gdb) py-print self\n" "local 'self' = ,\n" @@ -600,23 +371,15 @@ msgid "" "'scarlet_pimpernel' not found" msgstr "" -#: ../../howto/gdb_helpers.rst:356 -msgid "" -"If the current C frame corresponds to multiple Python frames, ``py-print`` " -"only considers the first one." +msgid "If the current C frame corresponds to multiple Python frames, ``py-print`` only considers the first one." msgstr "" -#: ../../howto/gdb_helpers.rst:360 msgid "``py-locals``" msgstr "" -#: ../../howto/gdb_helpers.rst:362 -msgid "" -"The ``py-locals`` command looks up all Python locals within the current " -"Python frame in the selected thread, and prints their representations::" +msgid "The ``py-locals`` command looks up all Python locals within the current Python frame in the selected thread, and prints their representations::" msgstr "" -#: ../../howto/gdb_helpers.rst:365 msgid "" "(gdb) py-locals\n" "self = ,\n" @@ -624,13 +387,9 @@ msgid "" "d = " msgstr "" -#: ../../howto/gdb_helpers.rst:370 -msgid "" -"If the current C frame corresponds to multiple Python frames, locals from " -"all of them will be shown::" +msgid "If the current C frame corresponds to multiple Python frames, locals from all of them will be shown::" msgstr "" -#: ../../howto/gdb_helpers.rst:373 msgid "" "(gdb) py-locals\n" "Locals for recursive_function\n" @@ -648,142 +407,68 @@ msgid "" "Locals for " msgstr "" -#: ../../howto/gdb_helpers.rst:390 msgid "Use with GDB commands" msgstr "" -#: ../../howto/gdb_helpers.rst:392 -msgid "" -"The extension commands complement GDB's built-in commands. For example, you " -"can use a frame numbers shown by ``py-bt`` with the ``frame`` command to go " -"a specific frame within the selected thread, like this::" +msgid "The extension commands complement GDB's built-in commands. For example, you can use a frame numbers shown by ``py-bt`` with the ``frame`` command to go a specific frame within the selected thread, like this::" msgstr "" -#: ../../howto/gdb_helpers.rst:396 msgid "" "(gdb) py-bt\n" "(output snipped)\n" -"#68 Frame 0xaa4560, for file Lib/test/regrtest.py, line 1548, in " -"()\n" +"#68 Frame 0xaa4560, for file Lib/test/regrtest.py, line 1548, in ()\n" " main()\n" "(gdb) frame 68\n" -"#68 0x00000000004cd1e6 in PyEval_EvalFrameEx (f=Frame 0xaa4560, for file Lib/" -"test/regrtest.py, line 1548, in (), throwflag=0) at Python/" -"ceval.c:2665\n" +"#68 0x00000000004cd1e6 in PyEval_EvalFrameEx (f=Frame 0xaa4560, for file Lib/test/regrtest.py, line 1548, in (), throwflag=0) at Python/ceval.c:2665\n" "2665 x = call_function(&sp, oparg);\n" "(gdb) py-list\n" -"1543 # Run the tests in a context manager that temporary changes the " -"CWD to a\n" -"1544 # temporary and writable directory. If it's not possible to " -"create or\n" -"1545 # change the CWD, the original CWD will be used. The original " -"CWD is\n" +"1543 # Run the tests in a context manager that temporary changes the CWD to a\n" +"1544 # temporary and writable directory. If it's not possible to create or\n" +"1545 # change the CWD, the original CWD will be used. The original CWD is\n" "1546 # available from test_support.SAVEDCWD.\n" "1547 with test_support.temp_cwd(TESTCWD, quiet=True):\n" ">1548 main()" msgstr "" -#: ../../howto/gdb_helpers.rst:411 -msgid "" -"The ``info threads`` command will give you a list of the threads within the " -"process, and you can use the ``thread`` command to select a different one::" +msgid "The ``info threads`` command will give you a list of the threads within the process, and you can use the ``thread`` command to select a different one::" msgstr "" -#: ../../howto/gdb_helpers.rst:414 msgid "" "(gdb) info threads\n" -" 105 Thread 0x7fffefa18710 (LWP 10260) sem_wait () at ../nptl/sysdeps/unix/" -"sysv/linux/x86_64/sem_wait.S:86\n" -" 104 Thread 0x7fffdf5fe710 (LWP 10259) sem_wait () at ../nptl/sysdeps/unix/" -"sysv/linux/x86_64/sem_wait.S:86\n" -"* 1 Thread 0x7ffff7fe2700 (LWP 10145) 0x00000038e46d73e3 in select () at ../" -"sysdeps/unix/syscall-template.S:82" +" 105 Thread 0x7fffefa18710 (LWP 10260) sem_wait () at ../nptl/sysdeps/unix/sysv/linux/x86_64/sem_wait.S:86\n" +" 104 Thread 0x7fffdf5fe710 (LWP 10259) sem_wait () at ../nptl/sysdeps/unix/sysv/linux/x86_64/sem_wait.S:86\n" +"* 1 Thread 0x7ffff7fe2700 (LWP 10145) 0x00000038e46d73e3 in select () at ../sysdeps/unix/syscall-template.S:82" msgstr "" -#: ../../howto/gdb_helpers.rst:419 -msgid "" -"You can use ``thread apply all COMMAND`` or (``t a a COMMAND`` for short) to " -"run a command on all threads. With ``py-bt``, this lets you see what every " -"thread is doing at the Python level::" +msgid "You can use ``thread apply all COMMAND`` or (``t a a COMMAND`` for short) to run a command on all threads. With ``py-bt``, this lets you see what every thread is doing at the Python level::" msgstr "" -#: ../../howto/gdb_helpers.rst:423 msgid "" "(gdb) t a a py-bt\n" "\n" "Thread 105 (Thread 0x7fffefa18710 (LWP 10260)):\n" -"#5 Frame 0x7fffd00019d0, for file /home/david/coding/python-svn/Lib/" -"threading.py, line 155, in _acquire_restore " -"(self=<_RLock(_Verbose__verbose=False, _RLock__owner=140737354016512, " -"_RLock__block=, _RLock__count=1) at remote " -"0xd7ff40>, count_owner=(1, 140737213728528), count=1, " -"owner=140737213728528)\n" +"#5 Frame 0x7fffd00019d0, for file /home/david/coding/python-svn/Lib/threading.py, line 155, in _acquire_restore (self=<_RLock(_Verbose__verbose=False, _RLock__owner=140737354016512, _RLock__block=, _RLock__count=1) at remote 0xd7ff40>, count_owner=(1, 140737213728528), count=1, owner=140737213728528)\n" " self.__block.acquire()\n" -"#8 Frame 0x7fffac001640, for file /home/david/coding/python-svn/Lib/" -"threading.py, line 269, in wait " -"(self=<_Condition(_Condition__lock=<_RLock(_Verbose__verbose=False, " -"_RLock__owner=140737354016512, _RLock__block=, _RLock__count=1) at remote 0xd7ff40>, acquire=, _is_owned=, " -"_release_save=, release=, _acquire_restore=, " -"_Verbose__verbose=False, _Condition__waiters=[]) at remote 0xd7fd10>, " -"timeout=None, waiter=, saved_state=(1, " -"140737213728528))\n" +"#8 Frame 0x7fffac001640, for file /home/david/coding/python-svn/Lib/threading.py, line 269, in wait (self=<_Condition(_Condition__lock=<_RLock(_Verbose__verbose=False, _RLock__owner=140737354016512, _RLock__block=, _RLock__count=1) at remote 0xd7ff40>, acquire=, _is_owned=, _release_save=, release=, _acquire_restore=, _Verbose__verbose=False, _Condition__waiters=[]) at remote 0xd7fd10>, timeout=None, waiter=, saved_state=(1, 140737213728528))\n" " self._acquire_restore(saved_state)\n" -"#12 Frame 0x7fffb8001a10, for file /home/david/coding/python-svn/Lib/test/" -"lock_tests.py, line 348, in f ()\n" +"#12 Frame 0x7fffb8001a10, for file /home/david/coding/python-svn/Lib/test/lock_tests.py, line 348, in f ()\n" " cond.wait()\n" -"#16 Frame 0x7fffb8001c40, for file /home/david/coding/python-svn/Lib/test/" -"lock_tests.py, line 37, in task (tid=140737213728528)\n" +"#16 Frame 0x7fffb8001c40, for file /home/david/coding/python-svn/Lib/test/lock_tests.py, line 37, in task (tid=140737213728528)\n" " f()\n" "\n" "Thread 104 (Thread 0x7fffdf5fe710 (LWP 10259)):\n" -"#5 Frame 0x7fffe4001580, for file /home/david/coding/python-svn/Lib/" -"threading.py, line 155, in _acquire_restore " -"(self=<_RLock(_Verbose__verbose=False, _RLock__owner=140737354016512, " -"_RLock__block=, _RLock__count=1) at remote " -"0xd7ff40>, count_owner=(1, 140736940992272), count=1, " -"owner=140736940992272)\n" +"#5 Frame 0x7fffe4001580, for file /home/david/coding/python-svn/Lib/threading.py, line 155, in _acquire_restore (self=<_RLock(_Verbose__verbose=False, _RLock__owner=140737354016512, _RLock__block=, _RLock__count=1) at remote 0xd7ff40>, count_owner=(1, 140736940992272), count=1, owner=140736940992272)\n" " self.__block.acquire()\n" -"#8 Frame 0x7fffc8002090, for file /home/david/coding/python-svn/Lib/" -"threading.py, line 269, in wait " -"(self=<_Condition(_Condition__lock=<_RLock(_Verbose__verbose=False, " -"_RLock__owner=140737354016512, _RLock__block=, _RLock__count=1) at remote 0xd7ff40>, acquire=, _is_owned=, " -"_release_save=, release=, _acquire_restore=, " -"_Verbose__verbose=False, _Condition__waiters=[]) at remote 0xd7fd10>, " -"timeout=None, waiter=, saved_state=(1, " -"140736940992272))\n" +"#8 Frame 0x7fffc8002090, for file /home/david/coding/python-svn/Lib/threading.py, line 269, in wait (self=<_Condition(_Condition__lock=<_RLock(_Verbose__verbose=False, _RLock__owner=140737354016512, _RLock__block=, _RLock__count=1) at remote 0xd7ff40>, acquire=, _is_owned=, _release_save=, release=, _acquire_restore=, _Verbose__verbose=False, _Condition__waiters=[]) at remote 0xd7fd10>, timeout=None, waiter=, saved_state=(1, 140736940992272))\n" " self._acquire_restore(saved_state)\n" -"#12 Frame 0x7fffac001c90, for file /home/david/coding/python-svn/Lib/test/" -"lock_tests.py, line 348, in f ()\n" +"#12 Frame 0x7fffac001c90, for file /home/david/coding/python-svn/Lib/test/lock_tests.py, line 348, in f ()\n" " cond.wait()\n" -"#16 Frame 0x7fffac0011c0, for file /home/david/coding/python-svn/Lib/test/" -"lock_tests.py, line 37, in task (tid=140736940992272)\n" +"#16 Frame 0x7fffac0011c0, for file /home/david/coding/python-svn/Lib/test/lock_tests.py, line 37, in task (tid=140736940992272)\n" " f()\n" "\n" "Thread 1 (Thread 0x7ffff7fe2700 (LWP 10145)):\n" -"#5 Frame 0xcb5380, for file /home/david/coding/python-svn/Lib/test/" -"lock_tests.py, line 16, in _wait ()\n" +"#5 Frame 0xcb5380, for file /home/david/coding/python-svn/Lib/test/lock_tests.py, line 16, in _wait ()\n" " time.sleep(0.01)\n" -"#8 Frame 0x7fffd00024a0, for file /home/david/coding/python-svn/Lib/test/" -"lock_tests.py, line 378, in _check_notify " -"(self=, skipped=[], _mirrorOutput=False, testsRun=39, " -"buffer=False, _original_stderr=, " -"_stdout_buffer=, " -"_stderr_buffer=, " -"_moduleSetUpFailed=False, expectedFailures=[], errors=[], " -"_previousTestClass=, unexpectedSuccesses=[], " -"failures=[], shouldStop=False, failfast=False) at remote 0xc185a0>, " -"_threads=(0,), _cleanups=[], _type_equality_funcs={: , : " -", : " -", : " -", , skipped=[], _mirrorOutput=False, testsRun=39, buffer=False, _original_stderr=, _stdout_buffer=, _stderr_buffer=, _moduleSetUpFailed=False, expectedFailures=[], errors=[], _previousTestClass=, unexpectedSuccesses=[], failures=[], shouldStop=False, failfast=False) at remote 0xc185a0>, _threads=(0,), _cleanups=[], _type_equality_funcs={: , : , : , : , , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,126 +23,92 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../howto/index.rst:5 msgid "Python HOWTOs" msgstr "" -#: ../../howto/index.rst:7 -msgid "" -"Python HOWTOs are documents that cover a specific topic in-depth. Modeled on " -"the Linux Documentation Project's HOWTO collection, this collection is an " -"effort to foster documentation that's more detailed than the Python Library " -"Reference." +msgid "Python HOWTOs are documents that cover a specific topic in-depth. Modeled on the Linux Documentation Project's HOWTO collection, this collection is an effort to foster documentation that's more detailed than the Python Library Reference." msgstr "" -#: ../../howto/index.rst:42 msgid "General:" msgstr "" -#: ../../howto/index.rst:44 msgid ":ref:`a-conceptual-overview-of-asyncio`" msgstr "" -#: ../../howto/index.rst:45 msgid ":ref:`annotations-howto`" msgstr "" -#: ../../howto/index.rst:46 msgid ":ref:`argparse-tutorial`" msgstr "" -#: ../../howto/index.rst:47 msgid ":ref:`descriptorhowto`" msgstr "" -#: ../../howto/index.rst:48 msgid ":ref:`enum-howto`" msgstr "" -#: ../../howto/index.rst:49 msgid ":ref:`functional-howto`" msgstr "" -#: ../../howto/index.rst:50 msgid ":ref:`ipaddress-howto`" msgstr "" -#: ../../howto/index.rst:51 msgid ":ref:`logging-howto`" msgstr "" -#: ../../howto/index.rst:52 msgid ":ref:`logging-cookbook`" msgstr "" -#: ../../howto/index.rst:53 msgid ":ref:`regex-howto`" msgstr "" -#: ../../howto/index.rst:54 msgid ":ref:`sortinghowto`" msgstr "" -#: ../../howto/index.rst:55 msgid ":ref:`unicode-howto`" msgstr "" -#: ../../howto/index.rst:56 msgid ":ref:`urllib-howto`" msgstr "" -#: ../../howto/index.rst:58 msgid "Advanced development:" msgstr "" -#: ../../howto/index.rst:60 msgid ":ref:`curses-howto`" msgstr "" -#: ../../howto/index.rst:61 msgid ":ref:`freethreading-python-howto`" msgstr "" -#: ../../howto/index.rst:62 msgid ":ref:`freethreading-extensions-howto`" msgstr "" -#: ../../howto/index.rst:63 msgid ":ref:`isolating-extensions-howto`" msgstr "" -#: ../../howto/index.rst:64 msgid ":ref:`python_2.3_mro`" msgstr "" -#: ../../howto/index.rst:65 msgid ":ref:`socket-howto`" msgstr "" -#: ../../howto/index.rst:66 msgid ":ref:`timerfd-howto`" msgstr "" -#: ../../howto/index.rst:67 msgid ":ref:`cporting-howto`" msgstr "" -#: ../../howto/index.rst:69 msgid "Debugging and profiling:" msgstr "" -#: ../../howto/index.rst:71 msgid ":ref:`gdb`" msgstr "" -#: ../../howto/index.rst:72 msgid ":ref:`instrumentation`" msgstr "" -#: ../../howto/index.rst:73 msgid ":ref:`perf_profiling`" msgstr "" -#: ../../howto/index.rst:74 msgid ":ref:`remote-debugging`" msgstr "" diff --git a/howto/instrumentation.po b/howto/instrumentation.po index 04e1231f..9081e7ba 100644 --- a/howto/instrumentation.po +++ b/howto/instrumentation.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:53+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -25,219 +25,143 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../howto/instrumentation.rst:7 msgid "Instrumenting CPython with DTrace and SystemTap" msgstr "" -#: ../../howto/instrumentation.rst:0 msgid "author" msgstr "" -#: ../../howto/instrumentation.rst:9 msgid "David Malcolm" msgstr "" -#: ../../howto/instrumentation.rst:10 msgid "Łukasz Langa" msgstr "" -#: ../../howto/instrumentation.rst:12 -msgid "" -"DTrace and SystemTap are monitoring tools, each providing a way to inspect " -"what the processes on a computer system are doing. They both use domain-" -"specific languages allowing a user to write scripts which:" +msgid "DTrace and SystemTap are monitoring tools, each providing a way to inspect what the processes on a computer system are doing. They both use domain-specific languages allowing a user to write scripts which:" msgstr "" -#: ../../howto/instrumentation.rst:16 msgid "filter which processes are to be observed" msgstr "" -#: ../../howto/instrumentation.rst:17 msgid "gather data from the processes of interest" msgstr "" -#: ../../howto/instrumentation.rst:18 msgid "generate reports on the data" msgstr "" -#: ../../howto/instrumentation.rst:20 -msgid "" -"As of Python 3.6, CPython can be built with embedded \"markers\", also known " -"as \"probes\", that can be observed by a DTrace or SystemTap script, making " -"it easier to monitor what the CPython processes on a system are doing." +msgid "As of Python 3.6, CPython can be built with embedded \"markers\", also known as \"probes\", that can be observed by a DTrace or SystemTap script, making it easier to monitor what the CPython processes on a system are doing." msgstr "" -#: ../../howto/instrumentation.rst:27 -msgid "" -"DTrace markers are implementation details of the CPython interpreter. No " -"guarantees are made about probe compatibility between versions of CPython. " -"DTrace scripts can stop working or work incorrectly without warning when " -"changing CPython versions." +msgid "DTrace markers are implementation details of the CPython interpreter. No guarantees are made about probe compatibility between versions of CPython. DTrace scripts can stop working or work incorrectly without warning when changing CPython versions." msgstr "" -#: ../../howto/instrumentation.rst:34 msgid "Enabling the static markers" msgstr "" -#: ../../howto/instrumentation.rst:36 -msgid "" -"macOS comes with built-in support for DTrace. On Linux, in order to build " -"CPython with the embedded markers for SystemTap, the SystemTap development " -"tools must be installed." +msgid "macOS comes with built-in support for DTrace. On Linux, in order to build CPython with the embedded markers for SystemTap, the SystemTap development tools must be installed." msgstr "" -#: ../../howto/instrumentation.rst:40 msgid "On a Linux machine, this can be done via::" msgstr "" -#: ../../howto/instrumentation.rst:42 msgid "$ yum install systemtap-sdt-devel" msgstr "" -#: ../../howto/instrumentation.rst:44 msgid "or::" msgstr "" -#: ../../howto/instrumentation.rst:46 msgid "$ sudo apt-get install systemtap-sdt-dev" msgstr "" -#: ../../howto/instrumentation.rst:49 -msgid "" -"CPython must then be :option:`configured with the --with-dtrace option <--" -"with-dtrace>`:" +msgid "CPython must then be :option:`configured with the --with-dtrace option <--with-dtrace>`:" msgstr "" -#: ../../howto/instrumentation.rst:52 msgid "checking for --with-dtrace... yes" msgstr "" -#: ../../howto/instrumentation.rst:56 -msgid "" -"On macOS, you can list available DTrace probes by running a Python process " -"in the background and listing all probes made available by the Python " -"provider::" +msgid "On macOS, you can list available DTrace probes by running a Python process in the background and listing all probes made available by the Python provider::" msgstr "" -#: ../../howto/instrumentation.rst:60 msgid "" "$ python3.6 -q &\n" "$ sudo dtrace -l -P python$! # or: dtrace -l -m python3.6\n" "\n" " ID PROVIDER MODULE FUNCTION NAME\n" -"29564 python18035 python3.6 _PyEval_EvalFrameDefault " -"function-entry\n" -"29565 python18035 python3.6 dtrace_function_entry " -"function-entry\n" -"29566 python18035 python3.6 _PyEval_EvalFrameDefault " -"function-return\n" -"29567 python18035 python3.6 dtrace_function_return " -"function-return\n" -"29568 python18035 python3.6 collect gc-" -"done\n" -"29569 python18035 python3.6 collect gc-" -"start\n" +"29564 python18035 python3.6 _PyEval_EvalFrameDefault function-entry\n" +"29565 python18035 python3.6 dtrace_function_entry function-entry\n" +"29566 python18035 python3.6 _PyEval_EvalFrameDefault function-return\n" +"29567 python18035 python3.6 dtrace_function_return function-return\n" +"29568 python18035 python3.6 collect gc-done\n" +"29569 python18035 python3.6 collect gc-start\n" "29570 python18035 python3.6 _PyEval_EvalFrameDefault line\n" "29571 python18035 python3.6 maybe_dtrace_line line" msgstr "" -#: ../../howto/instrumentation.rst:73 -msgid "" -"On Linux, you can verify if the SystemTap static markers are present in the " -"built binary by seeing if it contains a \".note.stapsdt\" section." +msgid "On Linux, you can verify if the SystemTap static markers are present in the built binary by seeing if it contains a \".note.stapsdt\" section." msgstr "" -#: ../../howto/instrumentation.rst:78 msgid "" "$ readelf -S ./python | grep .note.stapsdt\n" "[30] .note.stapsdt NOTE 0000000000000000 00308d78" msgstr "" -#: ../../howto/instrumentation.rst:81 -msgid "" -"If you've built Python as a shared library (with the :option:`--enable-" -"shared` configure option), you need to look instead within the shared " -"library. For example::" +msgid "If you've built Python as a shared library (with the :option:`--enable-shared` configure option), you need to look instead within the shared library. For example::" msgstr "" -#: ../../howto/instrumentation.rst:85 msgid "" "$ readelf -S libpython3.3dm.so.1.0 | grep .note.stapsdt\n" "[29] .note.stapsdt NOTE 0000000000000000 00365b68" msgstr "" -#: ../../howto/instrumentation.rst:88 msgid "Sufficiently modern readelf can print the metadata::" msgstr "" -#: ../../howto/instrumentation.rst:90 msgid "" "$ readelf -n ./python\n" "\n" "Displaying notes found at file offset 0x00000254 with length 0x00000020:\n" " Owner Data size Description\n" -" GNU 0x00000010 NT_GNU_ABI_TAG (ABI version " -"tag)\n" +" GNU 0x00000010 NT_GNU_ABI_TAG (ABI version tag)\n" " OS: Linux, ABI: 2.6.32\n" "\n" "Displaying notes found at file offset 0x00000274 with length 0x00000024:\n" " Owner Data size Description\n" -" GNU 0x00000014 NT_GNU_BUILD_ID (unique build " -"ID bitstring)\n" +" GNU 0x00000014 NT_GNU_BUILD_ID (unique build ID bitstring)\n" " Build ID: df924a2b08a7e89f6e11251d4602022977af2670\n" "\n" "Displaying notes found at file offset 0x002d6c30 with length 0x00000144:\n" " Owner Data size Description\n" -" stapsdt 0x00000031 NT_STAPSDT (SystemTap probe " -"descriptors)\n" +" stapsdt 0x00000031 NT_STAPSDT (SystemTap probe descriptors)\n" " Provider: python\n" " Name: gc__start\n" -" Location: 0x00000000004371c3, Base: 0x0000000000630ce2, Semaphore: " -"0x00000000008d6bf6\n" +" Location: 0x00000000004371c3, Base: 0x0000000000630ce2, Semaphore: 0x00000000008d6bf6\n" " Arguments: -4@%ebx\n" -" stapsdt 0x00000030 NT_STAPSDT (SystemTap probe " -"descriptors)\n" +" stapsdt 0x00000030 NT_STAPSDT (SystemTap probe descriptors)\n" " Provider: python\n" " Name: gc__done\n" -" Location: 0x00000000004374e1, Base: 0x0000000000630ce2, Semaphore: " -"0x00000000008d6bf8\n" +" Location: 0x00000000004374e1, Base: 0x0000000000630ce2, Semaphore: 0x00000000008d6bf8\n" " Arguments: -8@%rax\n" -" stapsdt 0x00000045 NT_STAPSDT (SystemTap probe " -"descriptors)\n" +" stapsdt 0x00000045 NT_STAPSDT (SystemTap probe descriptors)\n" " Provider: python\n" " Name: function__entry\n" -" Location: 0x000000000053db6c, Base: 0x0000000000630ce2, Semaphore: " -"0x00000000008d6be8\n" +" Location: 0x000000000053db6c, Base: 0x0000000000630ce2, Semaphore: 0x00000000008d6be8\n" " Arguments: 8@%rbp 8@%r12 -4@%eax\n" -" stapsdt 0x00000046 NT_STAPSDT (SystemTap probe " -"descriptors)\n" +" stapsdt 0x00000046 NT_STAPSDT (SystemTap probe descriptors)\n" " Provider: python\n" " Name: function__return\n" -" Location: 0x000000000053dba8, Base: 0x0000000000630ce2, Semaphore: " -"0x00000000008d6bea\n" +" Location: 0x000000000053dba8, Base: 0x0000000000630ce2, Semaphore: 0x00000000008d6bea\n" " Arguments: 8@%rbp 8@%r12 -4@%eax" msgstr "" -#: ../../howto/instrumentation.rst:125 -msgid "" -"The above metadata contains information for SystemTap describing how it can " -"patch strategically placed machine code instructions to enable the tracing " -"hooks used by a SystemTap script." +msgid "The above metadata contains information for SystemTap describing how it can patch strategically placed machine code instructions to enable the tracing hooks used by a SystemTap script." msgstr "" -#: ../../howto/instrumentation.rst:131 msgid "Static DTrace probes" msgstr "" -#: ../../howto/instrumentation.rst:133 -msgid "" -"The following example DTrace script can be used to show the call/return " -"hierarchy of a Python script, only tracing within the invocation of a " -"function called \"start\". In other words, import-time function invocations " -"are not going to be listed:" +msgid "The following example DTrace script can be used to show the call/return hierarchy of a Python script, only tracing within the invocation of a function called \"start\". In other words, import-time function invocations are not going to be listed:" msgstr "" -#: ../../howto/instrumentation.rst:138 msgid "" "self int indent;\n" "\n" @@ -252,8 +176,7 @@ msgid "" "{\n" " printf(\"%d\\t%*s:\", timestamp, 15, probename);\n" " printf(\"%*s\", self->indent, \"\");\n" -" printf(\"%s:%s:%d\\n\", basename(copyinstr(arg0)), copyinstr(arg1), " -"arg2);\n" +" printf(\"%s:%s:%d\\n\", basename(copyinstr(arg0)), copyinstr(arg1), arg2);\n" " self->indent++;\n" "}\n" "\n" @@ -263,8 +186,7 @@ msgid "" " self->indent--;\n" " printf(\"%d\\t%*s:\", timestamp, 15, probename);\n" " printf(\"%*s\", self->indent, \"\");\n" -" printf(\"%s:%s:%d\\n\", basename(copyinstr(arg0)), copyinstr(arg1), " -"arg2);\n" +" printf(\"%s:%s:%d\\n\", basename(copyinstr(arg0)), copyinstr(arg1), arg2);\n" "}\n" "\n" "python$target:::function-return\n" @@ -274,19 +196,15 @@ msgid "" "}" msgstr "" -#: ../../howto/instrumentation.rst:172 ../../howto/instrumentation.rst:230 msgid "It can be invoked like this::" msgstr "" -#: ../../howto/instrumentation.rst:174 msgid "$ sudo dtrace -q -s call_stack.d -c \"python3.6 script.py\"" msgstr "" -#: ../../howto/instrumentation.rst:176 ../../howto/instrumentation.rst:236 msgid "The output looks like this:" msgstr "" -#: ../../howto/instrumentation.rst:178 msgid "" "156641360502280 function-entry:call_stack.py:start:23\n" "156641360518804 function-entry: call_stack.py:function_1:1\n" @@ -308,24 +226,15 @@ msgid "" "156641360747370 function-return:call_stack.py:start:28" msgstr "" -#: ../../howto/instrumentation.rst:201 msgid "Static SystemTap markers" msgstr "" -#: ../../howto/instrumentation.rst:203 -msgid "" -"The low-level way to use the SystemTap integration is to use the static " -"markers directly. This requires you to explicitly state the binary file " -"containing them." +msgid "The low-level way to use the SystemTap integration is to use the static markers directly. This requires you to explicitly state the binary file containing them." msgstr "" -#: ../../howto/instrumentation.rst:207 -msgid "" -"For example, this SystemTap script can be used to show the call/return " -"hierarchy of a Python script:" +msgid "For example, this SystemTap script can be used to show the call/return hierarchy of a Python script:" msgstr "" -#: ../../howto/instrumentation.rst:210 msgid "" "probe process(\"python\").mark(\"function__entry\") {\n" " filename = user_string($arg1);\n" @@ -346,14 +255,12 @@ msgid "" "}" msgstr "" -#: ../../howto/instrumentation.rst:232 msgid "" "$ stap \\\n" " show-call-hierarchy.stp \\\n" " -c \"./python test.py\"" msgstr "" -#: ../../howto/instrumentation.rst:238 msgid "" "11408 python(8274): => __contains__ in Lib/_abcoll.py:362\n" "11414 python(8274): => __getitem__ in Lib/os.py:425\n" @@ -363,254 +270,156 @@ msgid "" "11433 python(8274): <= __contains__ in Lib/_abcoll.py:366" msgstr "" -#: ../../howto/instrumentation.rst:247 msgid "where the columns are:" msgstr "" -#: ../../howto/instrumentation.rst:249 msgid "time in microseconds since start of script" msgstr "" -#: ../../howto/instrumentation.rst:250 msgid "name of executable" msgstr "" -#: ../../howto/instrumentation.rst:251 msgid "PID of process" msgstr "" -#: ../../howto/instrumentation.rst:253 -msgid "" -"and the remainder indicates the call/return hierarchy as the script executes." +msgid "and the remainder indicates the call/return hierarchy as the script executes." msgstr "" -#: ../../howto/instrumentation.rst:255 -msgid "" -"For a :option:`--enable-shared` build of CPython, the markers are contained " -"within the libpython shared library, and the probe's dotted path needs to " -"reflect this. For example, this line from the above example:" +msgid "For a :option:`--enable-shared` build of CPython, the markers are contained within the libpython shared library, and the probe's dotted path needs to reflect this. For example, this line from the above example:" msgstr "" -#: ../../howto/instrumentation.rst:259 msgid "probe process(\"python\").mark(\"function__entry\") {" msgstr "" -#: ../../howto/instrumentation.rst:263 msgid "should instead read:" msgstr "" -#: ../../howto/instrumentation.rst:265 -msgid "" -"probe " -"process(\"python\").library(\"libpython3.6dm.so.1.0\").mark(\"function__entry\") " -"{" +msgid "probe process(\"python\").library(\"libpython3.6dm.so.1.0\").mark(\"function__entry\") {" msgstr "" -#: ../../howto/instrumentation.rst:269 msgid "(assuming a :ref:`debug build ` of CPython 3.6)" msgstr "" -#: ../../howto/instrumentation.rst:275 msgid "Available static markers" msgstr "" -#: ../../howto/instrumentation.rst:279 -msgid "" -"This marker indicates that execution of a Python function has begun. It is " -"only triggered for pure-Python (bytecode) functions." +msgid "This marker indicates that execution of a Python function has begun. It is only triggered for pure-Python (bytecode) functions." msgstr "" -#: ../../howto/instrumentation.rst:282 -msgid "" -"The filename, function name, and line number are provided back to the " -"tracing script as positional arguments, which must be accessed using " -"``$arg1``, ``$arg2``, ``$arg3``:" +msgid "The filename, function name, and line number are provided back to the tracing script as positional arguments, which must be accessed using ``$arg1``, ``$arg2``, ``$arg3``:" msgstr "" -#: ../../howto/instrumentation.rst:286 -msgid "" -"``$arg1`` : ``(const char *)`` filename, accessible using " -"``user_string($arg1)``" +msgid "``$arg1`` : ``(const char *)`` filename, accessible using ``user_string($arg1)``" msgstr "" -#: ../../howto/instrumentation.rst:288 -msgid "" -"``$arg2`` : ``(const char *)`` function name, accessible using " -"``user_string($arg2)``" +msgid "``$arg2`` : ``(const char *)`` function name, accessible using ``user_string($arg2)``" msgstr "" -#: ../../howto/instrumentation.rst:291 msgid "``$arg3`` : ``int`` line number" msgstr "" -#: ../../howto/instrumentation.rst:295 -msgid "" -"This marker is the converse of :c:func:`!function__entry`, and indicates " -"that execution of a Python function has ended (either via ``return``, or via " -"an exception). It is only triggered for pure-Python (bytecode) functions." +msgid "This marker is the converse of :c:func:`!function__entry`, and indicates that execution of a Python function has ended (either via ``return``, or via an exception). It is only triggered for pure-Python (bytecode) functions." msgstr "" -#: ../../howto/instrumentation.rst:299 msgid "The arguments are the same as for :c:func:`!function__entry`" msgstr "" -#: ../../howto/instrumentation.rst:303 -msgid "" -"This marker indicates a Python line is about to be executed. It is the " -"equivalent of line-by-line tracing with a Python profiler. It is not " -"triggered within C functions." +msgid "This marker indicates a Python line is about to be executed. It is the equivalent of line-by-line tracing with a Python profiler. It is not triggered within C functions." msgstr "" -#: ../../howto/instrumentation.rst:307 msgid "The arguments are the same as for :c:func:`!function__entry`." msgstr "" -#: ../../howto/instrumentation.rst:311 -msgid "" -"Fires when the Python interpreter starts a garbage collection cycle. " -"``arg0`` is the generation to scan, like :func:`gc.collect`." +msgid "Fires when the Python interpreter starts a garbage collection cycle. ``arg0`` is the generation to scan, like :func:`gc.collect`." msgstr "" -#: ../../howto/instrumentation.rst:316 -msgid "" -"Fires when the Python interpreter finishes a garbage collection cycle. " -"``arg0`` is the number of collected objects." +msgid "Fires when the Python interpreter finishes a garbage collection cycle. ``arg0`` is the number of collected objects." msgstr "" -#: ../../howto/instrumentation.rst:321 -msgid "" -"Fires before :mod:`importlib` attempts to find and load the module. ``arg0`` " -"is the module name." +msgid "Fires before :mod:`importlib` attempts to find and load the module. ``arg0`` is the module name." msgstr "" -#: ../../howto/instrumentation.rst:328 -msgid "" -"Fires after :mod:`importlib`'s find_and_load function is called. ``arg0`` is " -"the module name, ``arg1`` indicates if module was successfully loaded." +msgid "Fires after :mod:`importlib`'s find_and_load function is called. ``arg0`` is the module name, ``arg1`` indicates if module was successfully loaded." msgstr "" -#: ../../howto/instrumentation.rst:337 -msgid "" -"Fires when :func:`sys.audit` or :c:func:`PySys_Audit` is called. ``arg0`` is " -"the event name as C string, ``arg1`` is a :c:type:`PyObject` pointer to a " -"tuple object." +msgid "Fires when :func:`sys.audit` or :c:func:`PySys_Audit` is called. ``arg0`` is the event name as C string, ``arg1`` is a :c:type:`PyObject` pointer to a tuple object." msgstr "" -#: ../../howto/instrumentation.rst:345 msgid "C Entry Points" msgstr "" -#: ../../howto/instrumentation.rst:347 -msgid "" -"To simplify triggering of DTrace markers, Python's C API comes with a number " -"of helper functions that mirror each static marker. On builds of Python " -"without DTrace enabled, these do nothing." +msgid "To simplify triggering of DTrace markers, Python's C API comes with a number of helper functions that mirror each static marker. On builds of Python without DTrace enabled, these do nothing." msgstr "" -#: ../../howto/instrumentation.rst:351 -msgid "" -"In general, it is not necessary to call these yourself, as Python will do it " -"for you." +msgid "In general, it is not necessary to call these yourself, as Python will do it for you." msgstr "" -#: ../../howto/instrumentation.rst:358 msgid "C API Function" msgstr "" -#: ../../howto/instrumentation.rst:359 msgid "Static Marker" msgstr "" -#: ../../howto/instrumentation.rst:360 msgid "Notes" msgstr "" -#: ../../howto/instrumentation.rst:362 msgid ":c:func:`!line`" msgstr "" -#: ../../howto/instrumentation.rst:365 msgid ":c:func:`!function__entry`" msgstr "" -#: ../../howto/instrumentation.rst:368 msgid ":c:func:`!function__return`" msgstr "" -#: ../../howto/instrumentation.rst:371 msgid ":c:func:`!gc__start`" msgstr "" -#: ../../howto/instrumentation.rst:374 msgid ":c:func:`!gc__done`" msgstr "" -#: ../../howto/instrumentation.rst:377 msgid ":c:func:`!instance__new__start`" msgstr "" -#: ../../howto/instrumentation.rst:378 ../../howto/instrumentation.rst:381 -#: ../../howto/instrumentation.rst:384 ../../howto/instrumentation.rst:387 msgid "Not used by Python" msgstr "" -#: ../../howto/instrumentation.rst:380 msgid ":c:func:`!instance__new__done`" msgstr "" -#: ../../howto/instrumentation.rst:383 msgid ":c:func:`!instance__delete__start`" msgstr "" -#: ../../howto/instrumentation.rst:386 msgid ":c:func:`!instance__delete__done`" msgstr "" -#: ../../howto/instrumentation.rst:389 msgid ":c:func:`!import__find__load__start`" msgstr "" -#: ../../howto/instrumentation.rst:392 msgid ":c:func:`!import__find__load__done`" msgstr "" -#: ../../howto/instrumentation.rst:395 msgid ":c:func:`!audit`" msgstr "" -#: ../../howto/instrumentation.rst:400 msgid "C Probing Checks" msgstr "" -#: ../../howto/instrumentation.rst:415 -msgid "" -"All calls to ``PyDTrace`` functions must be guarded by a call to one of " -"these functions. This allows Python to minimize performance impact when " -"probing is disabled." +msgid "All calls to ``PyDTrace`` functions must be guarded by a call to one of these functions. This allows Python to minimize performance impact when probing is disabled." msgstr "" -#: ../../howto/instrumentation.rst:419 -msgid "" -"On builds without DTrace enabled, these functions do nothing and return " -"``0``." +msgid "On builds without DTrace enabled, these functions do nothing and return ``0``." msgstr "" -#: ../../howto/instrumentation.rst:423 msgid "SystemTap Tapsets" msgstr "" -#: ../../howto/instrumentation.rst:425 -msgid "" -"The higher-level way to use the SystemTap integration is to use a " -"\"tapset\": SystemTap's equivalent of a library, which hides some of the " -"lower-level details of the static markers." +msgid "The higher-level way to use the SystemTap integration is to use a \"tapset\": SystemTap's equivalent of a library, which hides some of the lower-level details of the static markers." msgstr "" -#: ../../howto/instrumentation.rst:429 msgid "Here is a tapset file, based on a non-shared build of CPython:" msgstr "" -#: ../../howto/instrumentation.rst:431 msgid "" "/*\n" " Provide a higher-level wrapping around the function__entry and\n" @@ -623,8 +432,7 @@ msgid "" " lineno = $arg3;\n" " frameptr = $arg4\n" "}\n" -"probe python.function.return = " -"process(\"python\").mark(\"function__return\")\n" +"probe python.function.return = process(\"python\").mark(\"function__return\")\n" "{\n" " filename = user_string($arg1);\n" " funcname = user_string($arg2);\n" @@ -633,38 +441,21 @@ msgid "" "}" msgstr "" -#: ../../howto/instrumentation.rst:452 -msgid "" -"If this file is installed in SystemTap's tapset directory (e.g. ``/usr/share/" -"systemtap/tapset``), then these additional probepoints become available:" +msgid "If this file is installed in SystemTap's tapset directory (e.g. ``/usr/share/systemtap/tapset``), then these additional probepoints become available:" msgstr "" -#: ../../howto/instrumentation.rst:458 -msgid "" -"This probe point indicates that execution of a Python function has begun. It " -"is only triggered for pure-Python (bytecode) functions." +msgid "This probe point indicates that execution of a Python function has begun. It is only triggered for pure-Python (bytecode) functions." msgstr "" -#: ../../howto/instrumentation.rst:463 -msgid "" -"This probe point is the converse of ``python.function.return``, and " -"indicates that execution of a Python function has ended (either via " -"``return``, or via an exception). It is only triggered for pure-Python " -"(bytecode) functions." +msgid "This probe point is the converse of ``python.function.return``, and indicates that execution of a Python function has ended (either via ``return``, or via an exception). It is only triggered for pure-Python (bytecode) functions." msgstr "" -#: ../../howto/instrumentation.rst:470 msgid "Examples" msgstr "" -#: ../../howto/instrumentation.rst:471 -msgid "" -"This SystemTap script uses the tapset above to more cleanly implement the " -"example given above of tracing the Python function-call hierarchy, without " -"needing to directly name the static markers:" +msgid "This SystemTap script uses the tapset above to more cleanly implement the example given above of tracing the Python function-call hierarchy, without needing to directly name the static markers:" msgstr "" -#: ../../howto/instrumentation.rst:475 msgid "" "probe python.function.entry\n" "{\n" @@ -679,14 +470,9 @@ msgid "" "}" msgstr "" -#: ../../howto/instrumentation.rst:490 -msgid "" -"The following script uses the tapset above to provide a top-like view of all " -"running CPython code, showing the top 20 most frequently entered bytecode " -"frames, each second, across the whole system:" +msgid "The following script uses the tapset above to provide a top-like view of all running CPython code, showing the top 20 most frequently entered bytecode frames, each second, across the whole system:" msgstr "" -#: ../../howto/instrumentation.rst:494 msgid "" "global fn_calls;\n" "\n" diff --git a/howto/ipaddress.po b/howto/ipaddress.po index 03c8c0ad..c798f6ed 100644 --- a/howto/ipaddress.po +++ b/howto/ipaddress.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:53+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,89 +24,48 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../howto/ipaddress.rst:9 msgid "An introduction to the ipaddress module" msgstr "" -#: ../../howto/ipaddress.rst:0 msgid "author" msgstr "" -#: ../../howto/ipaddress.rst:11 msgid "Peter Moody" msgstr "" -#: ../../howto/ipaddress.rst:12 msgid "Nick Coghlan" msgstr "" -#: ../../howto/ipaddress.rst:-1 msgid "Overview" msgstr "" -#: ../../howto/ipaddress.rst:16 -msgid "" -"This document aims to provide a gentle introduction to the :mod:`ipaddress` " -"module. It is aimed primarily at users that aren't already familiar with IP " -"networking terminology, but may also be useful to network engineers wanting " -"an overview of how :mod:`ipaddress` represents IP network addressing " -"concepts." +msgid "This document aims to provide a gentle introduction to the :mod:`ipaddress` module. It is aimed primarily at users that aren't already familiar with IP networking terminology, but may also be useful to network engineers wanting an overview of how :mod:`ipaddress` represents IP network addressing concepts." msgstr "" -#: ../../howto/ipaddress.rst:24 msgid "Creating Address/Network/Interface objects" msgstr "" -#: ../../howto/ipaddress.rst:26 -msgid "" -"Since :mod:`ipaddress` is a module for inspecting and manipulating IP " -"addresses, the first thing you'll want to do is create some objects. You " -"can use :mod:`ipaddress` to create objects from strings and integers." +msgid "Since :mod:`ipaddress` is a module for inspecting and manipulating IP addresses, the first thing you'll want to do is create some objects. You can use :mod:`ipaddress` to create objects from strings and integers." msgstr "" -#: ../../howto/ipaddress.rst:32 msgid "A Note on IP Versions" msgstr "" -#: ../../howto/ipaddress.rst:34 -msgid "" -"For readers that aren't particularly familiar with IP addressing, it's " -"important to know that the Internet Protocol (IP) is currently in the " -"process of moving from version 4 of the protocol to version 6. This " -"transition is occurring largely because version 4 of the protocol doesn't " -"provide enough addresses to handle the needs of the whole world, especially " -"given the increasing number of devices with direct connections to the " -"internet." +msgid "For readers that aren't particularly familiar with IP addressing, it's important to know that the Internet Protocol (IP) is currently in the process of moving from version 4 of the protocol to version 6. This transition is occurring largely because version 4 of the protocol doesn't provide enough addresses to handle the needs of the whole world, especially given the increasing number of devices with direct connections to the internet." msgstr "" -#: ../../howto/ipaddress.rst:41 -msgid "" -"Explaining the details of the differences between the two versions of the " -"protocol is beyond the scope of this introduction, but readers need to at " -"least be aware that these two versions exist, and it will sometimes be " -"necessary to force the use of one version or the other." +msgid "Explaining the details of the differences between the two versions of the protocol is beyond the scope of this introduction, but readers need to at least be aware that these two versions exist, and it will sometimes be necessary to force the use of one version or the other." msgstr "" -#: ../../howto/ipaddress.rst:48 msgid "IP Host Addresses" msgstr "" -#: ../../howto/ipaddress.rst:50 -msgid "" -"Addresses, often referred to as \"host addresses\" are the most basic unit " -"when working with IP addressing. The simplest way to create addresses is to " -"use the :func:`ipaddress.ip_address` factory function, which automatically " -"determines whether to create an IPv4 or IPv6 address based on the passed in " -"value:" +msgid "Addresses, often referred to as \"host addresses\" are the most basic unit when working with IP addressing. The simplest way to create addresses is to use the :func:`ipaddress.ip_address` factory function, which automatically determines whether to create an IPv4 or IPv6 address based on the passed in value:" msgstr "" -#: ../../howto/ipaddress.rst:61 -msgid "" -"Addresses can also be created directly from integers. Values that will fit " -"within 32 bits are assumed to be IPv4 addresses::" +msgid "Addresses can also be created directly from integers. Values that will fit within 32 bits are assumed to be IPv4 addresses::" msgstr "" -#: ../../howto/ipaddress.rst:64 msgid "" ">>> ipaddress.ip_address(3221225985)\n" "IPv4Address('192.0.2.1')\n" @@ -114,14 +73,9 @@ msgid "" "IPv6Address('2001:db8::1')" msgstr "" -#: ../../howto/ipaddress.rst:69 -msgid "" -"To force the use of IPv4 or IPv6 addresses, the relevant classes can be " -"invoked directly. This is particularly useful to force creation of IPv6 " -"addresses for small integers::" +msgid "To force the use of IPv4 or IPv6 addresses, the relevant classes can be invoked directly. This is particularly useful to force creation of IPv6 addresses for small integers::" msgstr "" -#: ../../howto/ipaddress.rst:73 msgid "" ">>> ipaddress.ip_address(1)\n" "IPv4Address('0.0.0.1')\n" @@ -131,29 +85,15 @@ msgid "" "IPv6Address('::1')" msgstr "" -#: ../../howto/ipaddress.rst:82 msgid "Defining Networks" msgstr "" -#: ../../howto/ipaddress.rst:84 -msgid "" -"Host addresses are usually grouped together into IP networks, " -"so :mod:`ipaddress` provides a way to create, inspect and manipulate network " -"definitions. IP network objects are constructed from strings that define the " -"range of host addresses that are part of that network. The simplest form for " -"that information is a \"network address/network prefix\" pair, where the " -"prefix defines the number of leading bits that are compared to determine " -"whether or not an address is part of the network and the network address " -"defines the expected value of those bits." +msgid "Host addresses are usually grouped together into IP networks, so :mod:`ipaddress` provides a way to create, inspect and manipulate network definitions. IP network objects are constructed from strings that define the range of host addresses that are part of that network. The simplest form for that information is a \"network address/network prefix\" pair, where the prefix defines the number of leading bits that are compared to determine whether or not an address is part of the network and the network address defines the expected value of those bits." msgstr "" -#: ../../howto/ipaddress.rst:93 -msgid "" -"As for addresses, a factory function is provided that determines the correct " -"IP version automatically::" +msgid "As for addresses, a factory function is provided that determines the correct IP version automatically::" msgstr "" -#: ../../howto/ipaddress.rst:96 msgid "" ">>> ipaddress.ip_network('192.0.2.0/24')\n" "IPv4Network('192.0.2.0/24')\n" @@ -161,24 +101,12 @@ msgid "" "IPv6Network('2001:db8::/96')" msgstr "" -#: ../../howto/ipaddress.rst:101 -msgid "" -"Network objects cannot have any host bits set. The practical effect of this " -"is that ``192.0.2.1/24`` does not describe a network. Such definitions are " -"referred to as interface objects since the ip-on-a-network notation is " -"commonly used to describe network interfaces of a computer on a given " -"network and are described further in the next section." +msgid "Network objects cannot have any host bits set. The practical effect of this is that ``192.0.2.1/24`` does not describe a network. Such definitions are referred to as interface objects since the ip-on-a-network notation is commonly used to describe network interfaces of a computer on a given network and are described further in the next section." msgstr "" -#: ../../howto/ipaddress.rst:107 -msgid "" -"By default, attempting to create a network object with host bits set will " -"result in :exc:`ValueError` being raised. To request that the additional " -"bits instead be coerced to zero, the flag ``strict=False`` can be passed to " -"the constructor::" +msgid "By default, attempting to create a network object with host bits set will result in :exc:`ValueError` being raised. To request that the additional bits instead be coerced to zero, the flag ``strict=False`` can be passed to the constructor::" msgstr "" -#: ../../howto/ipaddress.rst:112 msgid "" ">>> ipaddress.ip_network('192.0.2.1/24')\n" "Traceback (most recent call last):\n" @@ -188,15 +116,9 @@ msgid "" "IPv4Network('192.0.2.0/24')" msgstr "" -#: ../../howto/ipaddress.rst:119 -msgid "" -"While the string form offers significantly more flexibility, networks can " -"also be defined with integers, just like host addresses. In this case, the " -"network is considered to contain only the single address identified by the " -"integer, so the network prefix includes the entire network address::" +msgid "While the string form offers significantly more flexibility, networks can also be defined with integers, just like host addresses. In this case, the network is considered to contain only the single address identified by the integer, so the network prefix includes the entire network address::" msgstr "" -#: ../../howto/ipaddress.rst:124 msgid "" ">>> ipaddress.ip_network(3221225984)\n" "IPv4Network('192.0.2.0/32')\n" @@ -204,51 +126,27 @@ msgid "" "IPv6Network('2001:db8::/128')" msgstr "" -#: ../../howto/ipaddress.rst:129 -msgid "" -"As with addresses, creation of a particular kind of network can be forced by " -"calling the class constructor directly instead of using the factory function." +msgid "As with addresses, creation of a particular kind of network can be forced by calling the class constructor directly instead of using the factory function." msgstr "" -#: ../../howto/ipaddress.rst:135 msgid "Host Interfaces" msgstr "" -#: ../../howto/ipaddress.rst:137 -msgid "" -"As mentioned just above, if you need to describe an address on a particular " -"network, neither the address nor the network classes are sufficient. " -"Notation like ``192.0.2.1/24`` is commonly used by network engineers and the " -"people who write tools for firewalls and routers as shorthand for \"the host " -"``192.0.2.1`` on the network ``192.0.2.0/24``\", " -"Accordingly, :mod:`ipaddress` provides a set of hybrid classes that " -"associate an address with a particular network. The interface for creation " -"is identical to that for defining network objects, except that the address " -"portion isn't constrained to being a network address." -msgstr "" - -#: ../../howto/ipaddress.rst:152 -msgid "" -"Integer inputs are accepted (as with networks), and use of a particular IP " -"version can be forced by calling the relevant constructor directly." +msgid "As mentioned just above, if you need to describe an address on a particular network, neither the address nor the network classes are sufficient. Notation like ``192.0.2.1/24`` is commonly used by network engineers and the people who write tools for firewalls and routers as shorthand for \"the host ``192.0.2.1`` on the network ``192.0.2.0/24``\", Accordingly, :mod:`ipaddress` provides a set of hybrid classes that associate an address with a particular network. The interface for creation is identical to that for defining network objects, except that the address portion isn't constrained to being a network address." +msgstr "" + +msgid "Integer inputs are accepted (as with networks), and use of a particular IP version can be forced by calling the relevant constructor directly." msgstr "" -#: ../../howto/ipaddress.rst:157 msgid "Inspecting Address/Network/Interface Objects" msgstr "" -#: ../../howto/ipaddress.rst:159 -msgid "" -"You've gone to the trouble of creating an IPv(4|6)(Address|Network|" -"Interface) object, so you probably want to get information about " -"it. :mod:`ipaddress` tries to make doing this easy and intuitive." +msgid "You've gone to the trouble of creating an IPv(4|6)(Address|Network|Interface) object, so you probably want to get information about it. :mod:`ipaddress` tries to make doing this easy and intuitive." msgstr "" -#: ../../howto/ipaddress.rst:163 msgid "Extracting the IP version::" msgstr "" -#: ../../howto/ipaddress.rst:165 msgid "" ">>> addr4 = ipaddress.ip_address('192.0.2.1')\n" ">>> addr6 = ipaddress.ip_address('2001:db8::1')\n" @@ -258,11 +156,9 @@ msgid "" "4" msgstr "" -#: ../../howto/ipaddress.rst:172 msgid "Obtaining the network from an interface::" msgstr "" -#: ../../howto/ipaddress.rst:174 msgid "" ">>> host4 = ipaddress.ip_interface('192.0.2.1/24')\n" ">>> host4.network\n" @@ -272,11 +168,9 @@ msgid "" "IPv6Network('2001:db8::/96')" msgstr "" -#: ../../howto/ipaddress.rst:181 msgid "Finding out how many individual addresses are in a network::" msgstr "" -#: ../../howto/ipaddress.rst:183 msgid "" ">>> net4 = ipaddress.ip_network('192.0.2.0/24')\n" ">>> net4.num_addresses\n" @@ -286,11 +180,9 @@ msgid "" "4294967296" msgstr "" -#: ../../howto/ipaddress.rst:190 msgid "Iterating through the \"usable\" addresses on a network::" msgstr "" -#: ../../howto/ipaddress.rst:192 msgid "" ">>> net4 = ipaddress.ip_network('192.0.2.0/24')\n" ">>> for x in net4.hosts():\n" @@ -305,17 +197,12 @@ msgid "" "192.0.2.254" msgstr "" -#: ../../howto/ipaddress.rst:205 -msgid "" -"Obtaining the netmask (i.e. set bits corresponding to the network prefix) or " -"the hostmask (any bits that are not part of the netmask):" +msgid "Obtaining the netmask (i.e. set bits corresponding to the network prefix) or the hostmask (any bits that are not part of the netmask):" msgstr "" -#: ../../howto/ipaddress.rst:220 msgid "Exploding or compressing the address::" msgstr "" -#: ../../howto/ipaddress.rst:222 msgid "" ">>> addr6.exploded\n" "'2001:0db8:0000:0000:0000:0000:0000:0001'\n" @@ -327,25 +214,15 @@ msgid "" "'2001:db8::/96'" msgstr "" -#: ../../howto/ipaddress.rst:231 -msgid "" -"While IPv4 doesn't support explosion or compression, the associated objects " -"still provide the relevant properties so that version neutral code can " -"easily ensure the most concise or most verbose form is used for IPv6 " -"addresses while still correctly handling IPv4 addresses." +msgid "While IPv4 doesn't support explosion or compression, the associated objects still provide the relevant properties so that version neutral code can easily ensure the most concise or most verbose form is used for IPv6 addresses while still correctly handling IPv4 addresses." msgstr "" -#: ../../howto/ipaddress.rst:238 msgid "Networks as lists of Addresses" msgstr "" -#: ../../howto/ipaddress.rst:240 -msgid "" -"It's sometimes useful to treat networks as lists. This means it is possible " -"to index them like this::" +msgid "It's sometimes useful to treat networks as lists. This means it is possible to index them like this::" msgstr "" -#: ../../howto/ipaddress.rst:243 msgid "" ">>> net4[1]\n" "IPv4Address('192.0.2.1')\n" @@ -357,23 +234,17 @@ msgid "" "IPv6Address('2001:db8::ffff:ffff')" msgstr "" -#: ../../howto/ipaddress.rst:253 -msgid "" -"It also means that network objects lend themselves to using the list " -"membership test syntax like this::" +msgid "It also means that network objects lend themselves to using the list membership test syntax like this::" msgstr "" -#: ../../howto/ipaddress.rst:256 msgid "" "if address in network:\n" " # do something" msgstr "" -#: ../../howto/ipaddress.rst:259 msgid "Containment testing is done efficiently based on the network prefix::" msgstr "" -#: ../../howto/ipaddress.rst:261 msgid "" ">>> addr4 = ipaddress.ip_address('192.0.2.1')\n" ">>> addr4 in ipaddress.ip_network('192.0.2.0/24')\n" @@ -382,40 +253,26 @@ msgid "" "False" msgstr "" -#: ../../howto/ipaddress.rst:269 msgid "Comparisons" msgstr "" -#: ../../howto/ipaddress.rst:271 -msgid "" -":mod:`ipaddress` provides some simple, hopefully intuitive ways to compare " -"objects, where it makes sense::" +msgid ":mod:`ipaddress` provides some simple, hopefully intuitive ways to compare objects, where it makes sense::" msgstr "" -#: ../../howto/ipaddress.rst:274 msgid "" ">>> ipaddress.ip_address('192.0.2.1') < ipaddress.ip_address('192.0.2.2')\n" "True" msgstr "" -#: ../../howto/ipaddress.rst:277 -msgid "" -"A :exc:`TypeError` exception is raised if you try to compare objects of " -"different versions or different types." +msgid "A :exc:`TypeError` exception is raised if you try to compare objects of different versions or different types." msgstr "" -#: ../../howto/ipaddress.rst:282 msgid "Using IP Addresses with other modules" msgstr "" -#: ../../howto/ipaddress.rst:284 -msgid "" -"Other modules that use IP addresses (such as :mod:`socket`) usually won't " -"accept objects from this module directly. Instead, they must be coerced to " -"an integer or string that the other module will accept::" +msgid "Other modules that use IP addresses (such as :mod:`socket`) usually won't accept objects from this module directly. Instead, they must be coerced to an integer or string that the other module will accept::" msgstr "" -#: ../../howto/ipaddress.rst:288 msgid "" ">>> addr4 = ipaddress.ip_address('192.0.2.1')\n" ">>> str(addr4)\n" @@ -424,36 +281,18 @@ msgid "" "3221225985" msgstr "" -#: ../../howto/ipaddress.rst:296 msgid "Getting more detail when instance creation fails" msgstr "" -#: ../../howto/ipaddress.rst:298 -msgid "" -"When creating address/network/interface objects using the version-agnostic " -"factory functions, any errors will be reported as :exc:`ValueError` with a " -"generic error message that simply says the passed in value was not " -"recognized as an object of that type. The lack of a specific error is " -"because it's necessary to know whether the value is *supposed* to be IPv4 or " -"IPv6 in order to provide more detail on why it has been rejected." +msgid "When creating address/network/interface objects using the version-agnostic factory functions, any errors will be reported as :exc:`ValueError` with a generic error message that simply says the passed in value was not recognized as an object of that type. The lack of a specific error is because it's necessary to know whether the value is *supposed* to be IPv4 or IPv6 in order to provide more detail on why it has been rejected." msgstr "" -#: ../../howto/ipaddress.rst:305 -msgid "" -"To support use cases where it is useful to have access to this additional " -"detail, the individual class constructors actually raise " -"the :exc:`ValueError` subclasses :exc:`ipaddress.AddressValueError` " -"and :exc:`ipaddress.NetmaskValueError` to indicate exactly which part of the " -"definition failed to parse correctly." +msgid "To support use cases where it is useful to have access to this additional detail, the individual class constructors actually raise the :exc:`ValueError` subclasses :exc:`ipaddress.AddressValueError` and :exc:`ipaddress.NetmaskValueError` to indicate exactly which part of the definition failed to parse correctly." msgstr "" -#: ../../howto/ipaddress.rst:311 -msgid "" -"The error messages are significantly more detailed when using the class " -"constructors directly. For example::" +msgid "The error messages are significantly more detailed when using the class constructors directly. For example::" msgstr "" -#: ../../howto/ipaddress.rst:314 msgid "" ">>> ipaddress.ip_address(\"192.168.0.256\")\n" "Traceback (most recent call last):\n" @@ -462,8 +301,7 @@ msgid "" ">>> ipaddress.IPv4Address(\"192.168.0.256\")\n" "Traceback (most recent call last):\n" " ...\n" -"ipaddress.AddressValueError: Octet 256 (> 255) not permitted in " -"'192.168.0.256'\n" +"ipaddress.AddressValueError: Octet 256 (> 255) not permitted in '192.168.0.256'\n" "\n" ">>> ipaddress.ip_network(\"192.168.0.1/64\")\n" "Traceback (most recent call last):\n" @@ -475,14 +313,9 @@ msgid "" "ipaddress.NetmaskValueError: '64' is not a valid netmask" msgstr "" -#: ../../howto/ipaddress.rst:332 -msgid "" -"However, both of the module specific exceptions have :exc:`ValueError` as " -"their parent class, so if you're not concerned with the particular type of " -"error, you can still write code like the following::" +msgid "However, both of the module specific exceptions have :exc:`ValueError` as their parent class, so if you're not concerned with the particular type of error, you can still write code like the following::" msgstr "" -#: ../../howto/ipaddress.rst:336 msgid "" "try:\n" " network = ipaddress.IPv4Network(address)\n" diff --git a/howto/isolating-extensions.po b/howto/isolating-extensions.po index 49672e4e..328ff862 100644 --- a/howto/isolating-extensions.po +++ b/howto/isolating-extensions.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2022-11-05 19:48+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,139 +24,66 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../howto/isolating-extensions.rst:7 msgid "Isolating Extension Modules" msgstr "" -#: ../../howto/isolating-extensions.rst:-1 msgid "Abstract" msgstr "" -#: ../../howto/isolating-extensions.rst:11 -msgid "" -"Traditionally, state belonging to Python extension modules was kept in C " -"``static`` variables, which have process-wide scope. This document describes " -"problems of such per-process state and shows a safer way: per-module state." +msgid "Traditionally, state belonging to Python extension modules was kept in C ``static`` variables, which have process-wide scope. This document describes problems of such per-process state and shows a safer way: per-module state." msgstr "" -#: ../../howto/isolating-extensions.rst:16 -msgid "" -"The document also describes how to switch to per-module state where " -"possible. This transition involves allocating space for that state, " -"potentially switching from static types to heap types, and—perhaps most " -"importantly—accessing per-module state from code." +msgid "The document also describes how to switch to per-module state where possible. This transition involves allocating space for that state, potentially switching from static types to heap types, and—perhaps most importantly—accessing per-module state from code." msgstr "" -#: ../../howto/isolating-extensions.rst:23 msgid "Who should read this" msgstr "" -#: ../../howto/isolating-extensions.rst:25 -msgid "" -"This guide is written for maintainers of :ref:`C-API ` " -"extensions who would like to make that extension safer to use in " -"applications where Python itself is used as a library." +msgid "This guide is written for maintainers of :ref:`C-API ` extensions who would like to make that extension safer to use in applications where Python itself is used as a library." msgstr "" -#: ../../howto/isolating-extensions.rst:31 msgid "Background" msgstr "" -#: ../../howto/isolating-extensions.rst:33 -msgid "" -"An *interpreter* is the context in which Python code runs. It contains " -"configuration (e.g. the import path) and runtime state (e.g. the set of " -"imported modules)." +msgid "An *interpreter* is the context in which Python code runs. It contains configuration (e.g. the import path) and runtime state (e.g. the set of imported modules)." msgstr "" -#: ../../howto/isolating-extensions.rst:37 -msgid "" -"Python supports running multiple interpreters in one process. There are two " -"cases to think about—users may run interpreters:" +msgid "Python supports running multiple interpreters in one process. There are two cases to think about—users may run interpreters:" msgstr "" -#: ../../howto/isolating-extensions.rst:40 -msgid "" -"in sequence, with several :c:func:`Py_InitializeEx`/:c:func:`Py_FinalizeEx` " -"cycles, and" +msgid "in sequence, with several :c:func:`Py_InitializeEx`/:c:func:`Py_FinalizeEx` cycles, and" msgstr "" -#: ../../howto/isolating-extensions.rst:42 -msgid "" -"in parallel, managing \"sub-interpreters\" " -"using :c:func:`Py_NewInterpreter`/:c:func:`Py_EndInterpreter`." +msgid "in parallel, managing \"sub-interpreters\" using :c:func:`Py_NewInterpreter`/:c:func:`Py_EndInterpreter`." msgstr "" -#: ../../howto/isolating-extensions.rst:45 -msgid "" -"Both cases (and combinations of them) would be most useful when embedding " -"Python within a library. Libraries generally shouldn't make assumptions " -"about the application that uses them, which include assuming a process-wide " -"\"main Python interpreter\"." +msgid "Both cases (and combinations of them) would be most useful when embedding Python within a library. Libraries generally shouldn't make assumptions about the application that uses them, which include assuming a process-wide \"main Python interpreter\"." msgstr "" -#: ../../howto/isolating-extensions.rst:50 -msgid "" -"Historically, Python extension modules don't handle this use case well. Many " -"extension modules (and even some stdlib modules) use *per-process* global " -"state, because C ``static`` variables are extremely easy to use. Thus, data " -"that should be specific to an interpreter ends up being shared between " -"interpreters. Unless the extension developer is careful, it is very easy to " -"introduce edge cases that lead to crashes when a module is loaded in more " -"than one interpreter in the same process." +msgid "Historically, Python extension modules don't handle this use case well. Many extension modules (and even some stdlib modules) use *per-process* global state, because C ``static`` variables are extremely easy to use. Thus, data that should be specific to an interpreter ends up being shared between interpreters. Unless the extension developer is careful, it is very easy to introduce edge cases that lead to crashes when a module is loaded in more than one interpreter in the same process." msgstr "" -#: ../../howto/isolating-extensions.rst:58 -msgid "" -"Unfortunately, *per-interpreter* state is not easy to achieve. Extension " -"authors tend to not keep multiple interpreters in mind when developing, and " -"it is currently cumbersome to test the behavior." +msgid "Unfortunately, *per-interpreter* state is not easy to achieve. Extension authors tend to not keep multiple interpreters in mind when developing, and it is currently cumbersome to test the behavior." msgstr "" -#: ../../howto/isolating-extensions.rst:63 msgid "Enter Per-Module State" msgstr "" -#: ../../howto/isolating-extensions.rst:65 -msgid "" -"Instead of focusing on per-interpreter state, Python's C API is evolving to " -"better support the more granular *per-module* state. This means that C-level " -"data should be attached to a *module object*. Each interpreter creates its " -"own module object, keeping the data separate. For testing the isolation, " -"multiple module objects corresponding to a single extension can even be " -"loaded in a single interpreter." +msgid "Instead of focusing on per-interpreter state, Python's C API is evolving to better support the more granular *per-module* state. This means that C-level data should be attached to a *module object*. Each interpreter creates its own module object, keeping the data separate. For testing the isolation, multiple module objects corresponding to a single extension can even be loaded in a single interpreter." msgstr "" -#: ../../howto/isolating-extensions.rst:72 -msgid "" -"Per-module state provides an easy way to think about lifetime and resource " -"ownership: the extension module will initialize when a module object is " -"created, and clean up when it's freed. In this regard, a module is just like " -"any other :c:expr:`PyObject *`; there are no \"on interpreter shutdown\" " -"hooks to think—or forget—about." +msgid "Per-module state provides an easy way to think about lifetime and resource ownership: the extension module will initialize when a module object is created, and clean up when it's freed. In this regard, a module is just like any other :c:expr:`PyObject *`; there are no \"on interpreter shutdown\" hooks to think—or forget—about." msgstr "" -#: ../../howto/isolating-extensions.rst:78 -msgid "" -"Note that there are use cases for different kinds of \"globals\": per-" -"process, per-interpreter, per-thread or per-task state. With per-module " -"state as the default, these are still possible, but you should treat them as " -"exceptional cases: if you need them, you should give them additional care " -"and testing. (Note that this guide does not cover them.)" +msgid "Note that there are use cases for different kinds of \"globals\": per-process, per-interpreter, per-thread or per-task state. With per-module state as the default, these are still possible, but you should treat them as exceptional cases: if you need them, you should give them additional care and testing. (Note that this guide does not cover them.)" msgstr "" -#: ../../howto/isolating-extensions.rst:87 msgid "Isolated Module Objects" msgstr "" -#: ../../howto/isolating-extensions.rst:89 -msgid "" -"The key point to keep in mind when developing an extension module is that " -"several module objects can be created from a single shared library. For " -"example:" +msgid "The key point to keep in mind when developing an extension module is that several module objects can be created from a single shared library. For example:" msgstr "" -#: ../../howto/isolating-extensions.rst:93 msgid "" ">>> import sys\n" ">>> import binascii\n" @@ -167,38 +94,18 @@ msgid "" "False" msgstr "" -#: ../../howto/isolating-extensions.rst:103 -msgid "" -"As a rule of thumb, the two modules should be completely independent. All " -"objects and state specific to the module should be encapsulated within the " -"module object, not shared with other module objects, and cleaned up when the " -"module object is deallocated. Since this just is a rule of thumb, exceptions " -"are possible (see `Managing Global State`_), but they will need more thought " -"and attention to edge cases." +msgid "As a rule of thumb, the two modules should be completely independent. All objects and state specific to the module should be encapsulated within the module object, not shared with other module objects, and cleaned up when the module object is deallocated. Since this just is a rule of thumb, exceptions are possible (see `Managing Global State`_), but they will need more thought and attention to edge cases." msgstr "" -#: ../../howto/isolating-extensions.rst:111 -msgid "" -"While some modules could do with less stringent restrictions, isolated " -"modules make it easier to set clear expectations and guidelines that work " -"across a variety of use cases." +msgid "While some modules could do with less stringent restrictions, isolated modules make it easier to set clear expectations and guidelines that work across a variety of use cases." msgstr "" -#: ../../howto/isolating-extensions.rst:117 msgid "Surprising Edge Cases" msgstr "" -#: ../../howto/isolating-extensions.rst:119 -msgid "" -"Note that isolated modules do create some surprising edge cases. Most " -"notably, each module object will typically not share its classes and " -"exceptions with other similar modules. Continuing from the `example above " -"`__, note that ``old_binascii.Error`` and " -"``binascii.Error`` are separate objects. In the following code, the " -"exception is *not* caught:" +msgid "Note that isolated modules do create some surprising edge cases. Most notably, each module object will typically not share its classes and exceptions with other similar modules. Continuing from the `example above `__, note that ``old_binascii.Error`` and ``binascii.Error`` are separate objects. In the following code, the exception is *not* caught:" msgstr "" -#: ../../howto/isolating-extensions.rst:126 msgid "" ">>> old_binascii.Error == binascii.Error\n" "False\n" @@ -212,126 +119,60 @@ msgid "" "binascii.Error: Non-hexadecimal digit found" msgstr "" -#: ../../howto/isolating-extensions.rst:139 -msgid "" -"This is expected. Notice that pure-Python modules behave the same way: it is " -"a part of how Python works." +msgid "This is expected. Notice that pure-Python modules behave the same way: it is a part of how Python works." msgstr "" -#: ../../howto/isolating-extensions.rst:142 -msgid "" -"The goal is to make extension modules safe at the C level, not to make hacks " -"behave intuitively. Mutating ``sys.modules`` \"manually\" counts as a hack." +msgid "The goal is to make extension modules safe at the C level, not to make hacks behave intuitively. Mutating ``sys.modules`` \"manually\" counts as a hack." msgstr "" -#: ../../howto/isolating-extensions.rst:148 msgid "Making Modules Safe with Multiple Interpreters" msgstr "" -#: ../../howto/isolating-extensions.rst:152 msgid "Managing Global State" msgstr "" -#: ../../howto/isolating-extensions.rst:154 -msgid "" -"Sometimes, the state associated with a Python module is not specific to that " -"module, but to the entire process (or something else \"more global\" than a " -"module). For example:" +msgid "Sometimes, the state associated with a Python module is not specific to that module, but to the entire process (or something else \"more global\" than a module). For example:" msgstr "" -#: ../../howto/isolating-extensions.rst:158 msgid "The ``readline`` module manages *the* terminal." msgstr "" -#: ../../howto/isolating-extensions.rst:159 -msgid "" -"A module running on a circuit board wants to control *the* on-board LED." +msgid "A module running on a circuit board wants to control *the* on-board LED." msgstr "" -#: ../../howto/isolating-extensions.rst:162 -msgid "" -"In these cases, the Python module should provide *access* to the global " -"state, rather than *own* it. If possible, write the module so that multiple " -"copies of it can access the state independently (along with other libraries, " -"whether for Python or other languages). If that is not possible, consider " -"explicit locking." +msgid "In these cases, the Python module should provide *access* to the global state, rather than *own* it. If possible, write the module so that multiple copies of it can access the state independently (along with other libraries, whether for Python or other languages). If that is not possible, consider explicit locking." msgstr "" -#: ../../howto/isolating-extensions.rst:168 -msgid "" -"If it is necessary to use process-global state, the simplest way to avoid " -"issues with multiple interpreters is to explicitly prevent a module from " -"being loaded more than once per process—see :ref:`isolating-extensions-" -"optout`." +msgid "If it is necessary to use process-global state, the simplest way to avoid issues with multiple interpreters is to explicitly prevent a module from being loaded more than once per process—see :ref:`isolating-extensions-optout`." msgstr "" -#: ../../howto/isolating-extensions.rst:175 msgid "Managing Per-Module State" msgstr "" -#: ../../howto/isolating-extensions.rst:177 -msgid "" -"To use per-module state, use :ref:`multi-phase extension module " -"initialization `. This signals that your module " -"supports multiple interpreters correctly." +msgid "To use per-module state, use :ref:`multi-phase extension module initialization `. This signals that your module supports multiple interpreters correctly." msgstr "" -#: ../../howto/isolating-extensions.rst:181 -msgid "" -"Set ``PyModuleDef.m_size`` to a positive number to request that many bytes " -"of storage local to the module. Usually, this will be set to the size of " -"some module-specific ``struct``, which can store all of the module's C-level " -"state. In particular, it is where you should put pointers to classes " -"(including exceptions, but excluding static types) and settings (e.g. " -"``csv``'s :py:data:`~csv.field_size_limit`) which the C code needs to " -"function." +msgid "Set ``PyModuleDef.m_size`` to a positive number to request that many bytes of storage local to the module. Usually, this will be set to the size of some module-specific ``struct``, which can store all of the module's C-level state. In particular, it is where you should put pointers to classes (including exceptions, but excluding static types) and settings (e.g. ``csv``'s :py:data:`~csv.field_size_limit`) which the C code needs to function." msgstr "" -#: ../../howto/isolating-extensions.rst:190 -msgid "" -"Another option is to store state in the module's ``__dict__``, but you must " -"avoid crashing when users modify ``__dict__`` from Python code. This usually " -"means error- and type-checking at the C level, which is easy to get wrong " -"and hard to test sufficiently." +msgid "Another option is to store state in the module's ``__dict__``, but you must avoid crashing when users modify ``__dict__`` from Python code. This usually means error- and type-checking at the C level, which is easy to get wrong and hard to test sufficiently." msgstr "" -#: ../../howto/isolating-extensions.rst:195 -msgid "" -"However, if module state is not needed in C code, storing it in ``__dict__`` " -"only is a good idea." +msgid "However, if module state is not needed in C code, storing it in ``__dict__`` only is a good idea." msgstr "" -#: ../../howto/isolating-extensions.rst:198 -msgid "" -"If the module state includes ``PyObject`` pointers, the module object must " -"hold references to those objects and implement the module-level hooks " -"``m_traverse``, ``m_clear`` and ``m_free``. These work like ``tp_traverse``, " -"``tp_clear`` and ``tp_free`` of a class. Adding them will require some work " -"and make the code longer; this is the price for modules which can be " -"unloaded cleanly." +msgid "If the module state includes ``PyObject`` pointers, the module object must hold references to those objects and implement the module-level hooks ``m_traverse``, ``m_clear`` and ``m_free``. These work like ``tp_traverse``, ``tp_clear`` and ``tp_free`` of a class. Adding them will require some work and make the code longer; this is the price for modules which can be unloaded cleanly." msgstr "" -#: ../../howto/isolating-extensions.rst:205 -msgid "" -"An example of a module with per-module state is currently available as " -"`xxlimited `__; example module initialization shown at the bottom of the " -"file." +msgid "An example of a module with per-module state is currently available as `xxlimited `__; example module initialization shown at the bottom of the file." msgstr "" -#: ../../howto/isolating-extensions.rst:213 msgid "Opt-Out: Limiting to One Module Object per Process" msgstr "" -#: ../../howto/isolating-extensions.rst:215 -msgid "" -"A non-negative ``PyModuleDef.m_size`` signals that a module supports " -"multiple interpreters correctly. If this is not yet the case for your " -"module, you can explicitly make your module loadable only once per process. " -"For example::" +msgid "A non-negative ``PyModuleDef.m_size`` signals that a module supports multiple interpreters correctly. If this is not yet the case for your module, you can explicitly make your module loadable only once per process. For example::" msgstr "" -#: ../../howto/isolating-extensions.rst:220 msgid "" "// A process-wide flag\n" "static int loaded = 0;\n" @@ -355,27 +196,15 @@ msgid "" "}" msgstr "" -#: ../../howto/isolating-extensions.rst:242 -msgid "" -"If your module's :c:member:`PyModuleDef.m_clear` function is able to prepare " -"for future re-initialization, it should clear the ``loaded`` flag. In this " -"case, your module won't support multiple instances existing *concurrently*, " -"but it will, for example, support being loaded after Python runtime shutdown " -"(:c:func:`Py_FinalizeEx`) and re-initialization (:c:func:`Py_Initialize`)." +msgid "If your module's :c:member:`PyModuleDef.m_clear` function is able to prepare for future re-initialization, it should clear the ``loaded`` flag. In this case, your module won't support multiple instances existing *concurrently*, but it will, for example, support being loaded after Python runtime shutdown (:c:func:`Py_FinalizeEx`) and re-initialization (:c:func:`Py_Initialize`)." msgstr "" -#: ../../howto/isolating-extensions.rst:251 msgid "Module State Access from Functions" msgstr "" -#: ../../howto/isolating-extensions.rst:253 -msgid "" -"Accessing the state from module-level functions is straightforward. " -"Functions get the module object as their first argument; for extracting the " -"state, you can use ``PyModule_GetState``::" +msgid "Accessing the state from module-level functions is straightforward. Functions get the module object as their first argument; for extracting the state, you can use ``PyModule_GetState``::" msgstr "" -#: ../../howto/isolating-extensions.rst:257 msgid "" "static PyObject *\n" "func(PyObject *module, PyObject *args)\n" @@ -388,164 +217,81 @@ msgid "" "}" msgstr "" -#: ../../howto/isolating-extensions.rst:268 -msgid "" -"``PyModule_GetState`` may return ``NULL`` without setting an exception if " -"there is no module state, i.e. ``PyModuleDef.m_size`` was zero. In your own " -"module, you're in control of ``m_size``, so this is easy to prevent." +msgid "``PyModule_GetState`` may return ``NULL`` without setting an exception if there is no module state, i.e. ``PyModuleDef.m_size`` was zero. In your own module, you're in control of ``m_size``, so this is easy to prevent." msgstr "" -#: ../../howto/isolating-extensions.rst:275 msgid "Heap Types" msgstr "" -#: ../../howto/isolating-extensions.rst:277 -msgid "" -"Traditionally, types defined in C code are *static*; that is, ``static " -"PyTypeObject`` structures defined directly in code and initialized using " -"``PyType_Ready()``." +msgid "Traditionally, types defined in C code are *static*; that is, ``static PyTypeObject`` structures defined directly in code and initialized using ``PyType_Ready()``." msgstr "" -#: ../../howto/isolating-extensions.rst:281 -msgid "" -"Such types are necessarily shared across the process. Sharing them between " -"module objects requires paying attention to any state they own or access. To " -"limit the possible issues, static types are immutable at the Python level: " -"for example, you can't set ``str.myattribute = 123``." +msgid "Such types are necessarily shared across the process. Sharing them between module objects requires paying attention to any state they own or access. To limit the possible issues, static types are immutable at the Python level: for example, you can't set ``str.myattribute = 123``." msgstr "" -#: ../../howto/isolating-extensions.rst:287 -msgid "" -"Sharing truly immutable objects between interpreters is fine, as long as " -"they don't provide access to mutable objects. However, in CPython, every " -"Python object has a mutable implementation detail: the reference count. " -"Changes to the refcount are guarded by the GIL. Thus, code that shares any " -"Python objects across interpreters implicitly depends on CPython's current, " -"process-wide GIL." +msgid "Sharing truly immutable objects between interpreters is fine, as long as they don't provide access to mutable objects. However, in CPython, every Python object has a mutable implementation detail: the reference count. Changes to the refcount are guarded by the GIL. Thus, code that shares any Python objects across interpreters implicitly depends on CPython's current, process-wide GIL." msgstr "" -#: ../../howto/isolating-extensions.rst:294 -msgid "" -"Because they are immutable and process-global, static types cannot access " -"\"their\" module state. If any method of such a type requires access to " -"module state, the type must be converted to a *heap-allocated type*, or " -"*heap type* for short. These correspond more closely to classes created by " -"Python's ``class`` statement." +msgid "Because they are immutable and process-global, static types cannot access \"their\" module state. If any method of such a type requires access to module state, the type must be converted to a *heap-allocated type*, or *heap type* for short. These correspond more closely to classes created by Python's ``class`` statement." msgstr "" -#: ../../howto/isolating-extensions.rst:301 msgid "For new modules, using heap types by default is a good rule of thumb." msgstr "" -#: ../../howto/isolating-extensions.rst:305 msgid "Changing Static Types to Heap Types" msgstr "" -#: ../../howto/isolating-extensions.rst:307 -msgid "" -"Static types can be converted to heap types, but note that the heap type API " -"was not designed for \"lossless\" conversion from static types—that is, " -"creating a type that works exactly like a given static type. So, when " -"rewriting the class definition in a new API, you are likely to " -"unintentionally change a few details (e.g. pickleability or inherited " -"slots). Always test the details that are important to you." +msgid "Static types can be converted to heap types, but note that the heap type API was not designed for \"lossless\" conversion from static types—that is, creating a type that works exactly like a given static type. So, when rewriting the class definition in a new API, you are likely to unintentionally change a few details (e.g. pickleability or inherited slots). Always test the details that are important to you." msgstr "" -#: ../../howto/isolating-extensions.rst:316 -msgid "" -"Watch out for the following two points in particular (but note that this is " -"not a comprehensive list):" +msgid "Watch out for the following two points in particular (but note that this is not a comprehensive list):" msgstr "" -#: ../../howto/isolating-extensions.rst:319 -msgid "" -"Unlike static types, heap type objects are mutable by default. Use " -"the :c:macro:`Py_TPFLAGS_IMMUTABLETYPE` flag to prevent mutability." +msgid "Unlike static types, heap type objects are mutable by default. Use the :c:macro:`Py_TPFLAGS_IMMUTABLETYPE` flag to prevent mutability." msgstr "" -#: ../../howto/isolating-extensions.rst:321 -msgid "" -"Heap types inherit :c:member:`~PyTypeObject.tp_new` by default, so it may " -"become possible to instantiate them from Python code. You can prevent this " -"with the :c:macro:`Py_TPFLAGS_DISALLOW_INSTANTIATION` flag." +msgid "Heap types inherit :c:member:`~PyTypeObject.tp_new` by default, so it may become possible to instantiate them from Python code. You can prevent this with the :c:macro:`Py_TPFLAGS_DISALLOW_INSTANTIATION` flag." msgstr "" -#: ../../howto/isolating-extensions.rst:327 msgid "Defining Heap Types" msgstr "" -#: ../../howto/isolating-extensions.rst:329 -msgid "" -"Heap types can be created by filling a :c:struct:`PyType_Spec` structure, a " -"description or \"blueprint\" of a class, and " -"calling :c:func:`PyType_FromModuleAndSpec` to construct a new class object." +msgid "Heap types can be created by filling a :c:struct:`PyType_Spec` structure, a description or \"blueprint\" of a class, and calling :c:func:`PyType_FromModuleAndSpec` to construct a new class object." msgstr "" -#: ../../howto/isolating-extensions.rst:334 -msgid "" -"Other functions, like :c:func:`PyType_FromSpec`, can also create heap types, " -"but :c:func:`PyType_FromModuleAndSpec` associates the module with the class, " -"allowing access to the module state from methods." +msgid "Other functions, like :c:func:`PyType_FromSpec`, can also create heap types, but :c:func:`PyType_FromModuleAndSpec` associates the module with the class, allowing access to the module state from methods." msgstr "" -#: ../../howto/isolating-extensions.rst:338 -msgid "" -"The class should generally be stored in *both* the module state (for safe " -"access from C) and the module's ``__dict__`` (for access from Python code)." +msgid "The class should generally be stored in *both* the module state (for safe access from C) and the module's ``__dict__`` (for access from Python code)." msgstr "" -#: ../../howto/isolating-extensions.rst:344 msgid "Garbage-Collection Protocol" msgstr "" -#: ../../howto/isolating-extensions.rst:346 -msgid "" -"Instances of heap types hold a reference to their type. This ensures that " -"the type isn't destroyed before all its instances are, but may result in " -"reference cycles that need to be broken by the garbage collector." +msgid "Instances of heap types hold a reference to their type. This ensures that the type isn't destroyed before all its instances are, but may result in reference cycles that need to be broken by the garbage collector." msgstr "" -#: ../../howto/isolating-extensions.rst:351 -msgid "" -"To avoid memory leaks, instances of heap types must implement the garbage " -"collection protocol. That is, heap types should:" +msgid "To avoid memory leaks, instances of heap types must implement the garbage collection protocol. That is, heap types should:" msgstr "" -#: ../../howto/isolating-extensions.rst:355 msgid "Have the :c:macro:`Py_TPFLAGS_HAVE_GC` flag." msgstr "" -#: ../../howto/isolating-extensions.rst:356 -msgid "" -"Define a traverse function using :c:data:`Py_tp_traverse`, which visits the " -"type (e.g. using ``Py_VISIT(Py_TYPE(self))``)." +msgid "Define a traverse function using :c:data:`Py_tp_traverse`, which visits the type (e.g. using ``Py_VISIT(Py_TYPE(self))``)." msgstr "" -#: ../../howto/isolating-extensions.rst:359 -msgid "" -"Please refer to the documentation of :c:macro:`Py_TPFLAGS_HAVE_GC` " -"and :c:member:`~PyTypeObject.tp_traverse` for additional considerations." +msgid "Please refer to the documentation of :c:macro:`Py_TPFLAGS_HAVE_GC` and :c:member:`~PyTypeObject.tp_traverse` for additional considerations." msgstr "" -#: ../../howto/isolating-extensions.rst:363 -msgid "" -"The API for defining heap types grew organically, leaving it somewhat " -"awkward to use in its current state. The following sections will guide you " -"through common issues." +msgid "The API for defining heap types grew organically, leaving it somewhat awkward to use in its current state. The following sections will guide you through common issues." msgstr "" -#: ../../howto/isolating-extensions.rst:369 msgid "``tp_traverse`` in Python 3.8 and lower" msgstr "" -#: ../../howto/isolating-extensions.rst:371 -msgid "" -"The requirement to visit the type from ``tp_traverse`` was added in Python " -"3.9. If you support Python 3.8 and lower, the traverse function must *not* " -"visit the type, so it must be more complicated::" +msgid "The requirement to visit the type from ``tp_traverse`` was added in Python 3.9. If you support Python 3.8 and lower, the traverse function must *not* visit the type, so it must be more complicated::" msgstr "" -#: ../../howto/isolating-extensions.rst:375 msgid "" "static int my_traverse(PyObject *self, visitproc visit, void *arg)\n" "{\n" @@ -556,47 +302,30 @@ msgid "" "}" msgstr "" -#: ../../howto/isolating-extensions.rst:383 -msgid "" -"Unfortunately, :c:data:`Py_Version` was only added in Python 3.11. As a " -"replacement, use:" +msgid "Unfortunately, :c:data:`Py_Version` was only added in Python 3.11. As a replacement, use:" msgstr "" -#: ../../howto/isolating-extensions.rst:386 msgid ":c:macro:`PY_VERSION_HEX`, if not using the stable ABI, or" msgstr "" -#: ../../howto/isolating-extensions.rst:387 -msgid "" -":py:data:`sys.version_info` (via :c:func:`PySys_GetObject` " -"and :c:func:`PyArg_ParseTuple`)." +msgid ":py:data:`sys.version_info` (via :c:func:`PySys_GetObject` and :c:func:`PyArg_ParseTuple`)." msgstr "" -#: ../../howto/isolating-extensions.rst:392 msgid "Delegating ``tp_traverse``" msgstr "" -#: ../../howto/isolating-extensions.rst:394 -msgid "" -"If your traverse function delegates to " -"the :c:member:`~PyTypeObject.tp_traverse` of its base class (or another " -"type), ensure that ``Py_TYPE(self)`` is visited only once. Note that only " -"heap type are expected to visit the type in ``tp_traverse``." +msgid "If your traverse function delegates to the :c:member:`~PyTypeObject.tp_traverse` of its base class (or another type), ensure that ``Py_TYPE(self)`` is visited only once. Note that only heap type are expected to visit the type in ``tp_traverse``." msgstr "" -#: ../../howto/isolating-extensions.rst:399 msgid "For example, if your traverse function includes::" msgstr "" -#: ../../howto/isolating-extensions.rst:401 msgid "base->tp_traverse(self, visit, arg)" msgstr "" -#: ../../howto/isolating-extensions.rst:403 msgid "...and ``base`` may be a static type, then it should also include::" msgstr "" -#: ../../howto/isolating-extensions.rst:405 msgid "" "if (base->tp_flags & Py_TPFLAGS_HEAPTYPE) {\n" " // a heap type's tp_traverse already visited Py_TYPE(self)\n" @@ -607,38 +336,24 @@ msgid "" "}" msgstr "" -#: ../../howto/isolating-extensions.rst:413 -msgid "" -"It is not necessary to handle the type's reference count " -"in :c:member:`~PyTypeObject.tp_new` and :c:member:`~PyTypeObject.tp_clear`." +msgid "It is not necessary to handle the type's reference count in :c:member:`~PyTypeObject.tp_new` and :c:member:`~PyTypeObject.tp_clear`." msgstr "" -#: ../../howto/isolating-extensions.rst:418 msgid "Defining ``tp_dealloc``" msgstr "" -#: ../../howto/isolating-extensions.rst:420 -msgid "" -"If your type has a custom :c:member:`~PyTypeObject.tp_dealloc` function, it " -"needs to:" +msgid "If your type has a custom :c:member:`~PyTypeObject.tp_dealloc` function, it needs to:" msgstr "" -#: ../../howto/isolating-extensions.rst:423 -msgid "" -"call :c:func:`PyObject_GC_UnTrack` before any fields are invalidated, and" +msgid "call :c:func:`PyObject_GC_UnTrack` before any fields are invalidated, and" msgstr "" -#: ../../howto/isolating-extensions.rst:424 msgid "decrement the reference count of the type." msgstr "" -#: ../../howto/isolating-extensions.rst:426 -msgid "" -"To keep the type valid while ``tp_free`` is called, the type's refcount " -"needs to be decremented *after* the instance is deallocated. For example::" +msgid "To keep the type valid while ``tp_free`` is called, the type's refcount needs to be decremented *after* the instance is deallocated. For example::" msgstr "" -#: ../../howto/isolating-extensions.rst:429 msgid "" "static void my_dealloc(PyObject *self)\n" "{\n" @@ -650,81 +365,51 @@ msgid "" "}" msgstr "" -#: ../../howto/isolating-extensions.rst:438 -msgid "" -"The default ``tp_dealloc`` function does this, so if your type does *not* " -"override ``tp_dealloc`` you don't need to add it." +msgid "The default ``tp_dealloc`` function does this, so if your type does *not* override ``tp_dealloc`` you don't need to add it." msgstr "" -#: ../../howto/isolating-extensions.rst:444 msgid "Not overriding ``tp_free``" msgstr "" -#: ../../howto/isolating-extensions.rst:446 -msgid "" -"The :c:member:`~PyTypeObject.tp_free` slot of a heap type must be set " -"to :c:func:`PyObject_GC_Del`. This is the default; do not override it." +msgid "The :c:member:`~PyTypeObject.tp_free` slot of a heap type must be set to :c:func:`PyObject_GC_Del`. This is the default; do not override it." msgstr "" -#: ../../howto/isolating-extensions.rst:452 msgid "Avoiding ``PyObject_New``" msgstr "" -#: ../../howto/isolating-extensions.rst:454 msgid "GC-tracked objects need to be allocated using GC-aware functions." msgstr "" -#: ../../howto/isolating-extensions.rst:456 msgid "If you use :c:func:`PyObject_New` or :c:func:`PyObject_NewVar`:" msgstr "" -#: ../../howto/isolating-extensions.rst:458 -msgid "" -"Get and call type's :c:member:`~PyTypeObject.tp_alloc` slot, if possible. " -"That is, replace ``TYPE *o = PyObject_New(TYPE, typeobj)`` with::" +msgid "Get and call type's :c:member:`~PyTypeObject.tp_alloc` slot, if possible. That is, replace ``TYPE *o = PyObject_New(TYPE, typeobj)`` with::" msgstr "" -#: ../../howto/isolating-extensions.rst:461 msgid "TYPE *o = typeobj->tp_alloc(typeobj, 0);" msgstr "" -#: ../../howto/isolating-extensions.rst:463 -msgid "" -"Replace ``o = PyObject_NewVar(TYPE, typeobj, size)`` with the same, but use " -"size instead of the 0." +msgid "Replace ``o = PyObject_NewVar(TYPE, typeobj, size)`` with the same, but use size instead of the 0." msgstr "" -#: ../../howto/isolating-extensions.rst:466 -msgid "" -"If the above is not possible (e.g. inside a custom ``tp_alloc``), " -"call :c:func:`PyObject_GC_New` or :c:func:`PyObject_GC_NewVar`::" +msgid "If the above is not possible (e.g. inside a custom ``tp_alloc``), call :c:func:`PyObject_GC_New` or :c:func:`PyObject_GC_NewVar`::" msgstr "" -#: ../../howto/isolating-extensions.rst:469 msgid "" "TYPE *o = PyObject_GC_New(TYPE, typeobj);\n" "\n" "TYPE *o = PyObject_GC_NewVar(TYPE, typeobj, size);" msgstr "" -#: ../../howto/isolating-extensions.rst:475 msgid "Module State Access from Classes" msgstr "" -#: ../../howto/isolating-extensions.rst:477 -msgid "" -"If you have a type object defined with :c:func:`PyType_FromModuleAndSpec`, " -"you can call :c:func:`PyType_GetModule` to get the associated module, and " -"then :c:func:`PyModule_GetState` to get the module's state." +msgid "If you have a type object defined with :c:func:`PyType_FromModuleAndSpec`, you can call :c:func:`PyType_GetModule` to get the associated module, and then :c:func:`PyModule_GetState` to get the module's state." msgstr "" -#: ../../howto/isolating-extensions.rst:481 -msgid "" -"To save a some tedious error-handling boilerplate code, you can combine " -"these two steps with :c:func:`PyType_GetModuleState`, resulting in::" +msgid "To save a some tedious error-handling boilerplate code, you can combine these two steps with :c:func:`PyType_GetModuleState`, resulting in::" msgstr "" -#: ../../howto/isolating-extensions.rst:484 msgid "" "my_struct *state = (my_struct*)PyType_GetModuleState(type);\n" "if (state == NULL) {\n" @@ -732,39 +417,21 @@ msgid "" "}" msgstr "" -#: ../../howto/isolating-extensions.rst:491 msgid "Module State Access from Regular Methods" msgstr "" -#: ../../howto/isolating-extensions.rst:493 -msgid "" -"Accessing the module-level state from methods of a class is somewhat more " -"complicated, but is possible thanks to API introduced in Python 3.9. To get " -"the state, you need to first get the *defining class*, and then get the " -"module state from it." +msgid "Accessing the module-level state from methods of a class is somewhat more complicated, but is possible thanks to API introduced in Python 3.9. To get the state, you need to first get the *defining class*, and then get the module state from it." msgstr "" -#: ../../howto/isolating-extensions.rst:498 -msgid "" -"The largest roadblock is getting *the class a method was defined in*, or " -"that method's \"defining class\" for short. The defining class can have a " -"reference to the module it is part of." +msgid "The largest roadblock is getting *the class a method was defined in*, or that method's \"defining class\" for short. The defining class can have a reference to the module it is part of." msgstr "" -#: ../../howto/isolating-extensions.rst:502 -msgid "" -"Do not confuse the defining class with ``Py_TYPE(self)``. If the method is " -"called on a *subclass* of your type, ``Py_TYPE(self)`` will refer to that " -"subclass, which may be defined in different module than yours." +msgid "Do not confuse the defining class with ``Py_TYPE(self)``. If the method is called on a *subclass* of your type, ``Py_TYPE(self)`` will refer to that subclass, which may be defined in different module than yours." msgstr "" -#: ../../howto/isolating-extensions.rst:507 -msgid "" -"The following Python code can illustrate the concept. " -"``Base.get_defining_class`` returns ``Base`` even if ``type(self) == Sub``:" +msgid "The following Python code can illustrate the concept. ``Base.get_defining_class`` returns ``Base`` even if ``type(self) == Sub``:" msgstr "" -#: ../../howto/isolating-extensions.rst:511 msgid "" "class Base:\n" " def get_type_of_self(self):\n" @@ -777,15 +444,9 @@ msgid "" " pass" msgstr "" -#: ../../howto/isolating-extensions.rst:523 -msgid "" -"For a method to get its \"defining class\", it must use " -"the :ref:`METH_METHOD | METH_FASTCALL | METH_KEYWORDS ` :c:type:`calling convention ` and " -"the corresponding :c:type:`PyCMethod` signature::" +msgid "For a method to get its \"defining class\", it must use the :ref:`METH_METHOD | METH_FASTCALL | METH_KEYWORDS ` :c:type:`calling convention ` and the corresponding :c:type:`PyCMethod` signature::" msgstr "" -#: ../../howto/isolating-extensions.rst:528 msgid "" "PyObject *PyCMethod(\n" " PyObject *self, // object the method was called on\n" @@ -795,17 +456,12 @@ msgid "" " PyObject *kwnames) // NULL, or dict of keyword arguments" msgstr "" -#: ../../howto/isolating-extensions.rst:535 -msgid "" -"Once you have the defining class, call :c:func:`PyType_GetModuleState` to " -"get the state of its associated module." +msgid "Once you have the defining class, call :c:func:`PyType_GetModuleState` to get the state of its associated module." msgstr "" -#: ../../howto/isolating-extensions.rst:538 msgid "For example::" msgstr "" -#: ../../howto/isolating-extensions.rst:540 msgid "" "static PyObject *\n" "example_method(PyObject *self,\n" @@ -832,33 +488,18 @@ msgid "" "}" msgstr "" -#: ../../howto/isolating-extensions.rst:566 msgid "Module State Access from Slot Methods, Getters and Setters" msgstr "" -#: ../../howto/isolating-extensions.rst:570 msgid "This is new in Python 3.11." msgstr "" -#: ../../howto/isolating-extensions.rst:578 -msgid "" -"Slot methods—the fast C equivalents for special methods, such " -"as :c:member:`~PyNumberMethods.nb_add` for :py:attr:`~object.__add__` " -"or :c:member:`~PyTypeObject.tp_new` for initialization—have a very simple " -"API that doesn't allow passing in the defining class, unlike " -"with :c:type:`PyCMethod`. The same goes for getters and setters defined " -"with :c:type:`PyGetSetDef`." +msgid "Slot methods—the fast C equivalents for special methods, such as :c:member:`~PyNumberMethods.nb_add` for :py:attr:`~object.__add__` or :c:member:`~PyTypeObject.tp_new` for initialization—have a very simple API that doesn't allow passing in the defining class, unlike with :c:type:`PyCMethod`. The same goes for getters and setters defined with :c:type:`PyGetSetDef`." msgstr "" -#: ../../howto/isolating-extensions.rst:585 -msgid "" -"To access the module state in these cases, use " -"the :c:func:`PyType_GetModuleByDef` function, and pass in the module " -"definition. Once you have the module, call :c:func:`PyModule_GetState` to " -"get the state::" +msgid "To access the module state in these cases, use the :c:func:`PyType_GetModuleByDef` function, and pass in the module definition. Once you have the module, call :c:func:`PyModule_GetState` to get the state::" msgstr "" -#: ../../howto/isolating-extensions.rst:590 msgid "" "PyObject *module = PyType_GetModuleByDef(Py_TYPE(self), &module_def);\n" "my_struct *state = (my_struct*)PyModule_GetState(module);\n" @@ -867,73 +508,38 @@ msgid "" "}" msgstr "" -#: ../../howto/isolating-extensions.rst:596 -msgid "" -":c:func:`!PyType_GetModuleByDef` works by searching the :term:`method " -"resolution order` (i.e. all superclasses) for the first superclass that has " -"a corresponding module." +msgid ":c:func:`!PyType_GetModuleByDef` works by searching the :term:`method resolution order` (i.e. all superclasses) for the first superclass that has a corresponding module." msgstr "" -#: ../../howto/isolating-extensions.rst:602 -msgid "" -"In very exotic cases (inheritance chains spanning multiple modules created " -"from the same definition), :c:func:`!PyType_GetModuleByDef` might not return " -"the module of the true defining class. However, it will always return a " -"module with the same definition, ensuring a compatible C memory layout." +msgid "In very exotic cases (inheritance chains spanning multiple modules created from the same definition), :c:func:`!PyType_GetModuleByDef` might not return the module of the true defining class. However, it will always return a module with the same definition, ensuring a compatible C memory layout." msgstr "" -#: ../../howto/isolating-extensions.rst:610 msgid "Lifetime of the Module State" msgstr "" -#: ../../howto/isolating-extensions.rst:612 -msgid "" -"When a module object is garbage-collected, its module state is freed. For " -"each pointer to (a part of) the module state, you must hold a reference to " -"the module object." +msgid "When a module object is garbage-collected, its module state is freed. For each pointer to (a part of) the module state, you must hold a reference to the module object." msgstr "" -#: ../../howto/isolating-extensions.rst:616 -msgid "" -"Usually this is not an issue, because types created " -"with :c:func:`PyType_FromModuleAndSpec`, and their instances, hold a " -"reference to the module. However, you must be careful in reference counting " -"when you reference module state from other places, such as callbacks for " -"external libraries." +msgid "Usually this is not an issue, because types created with :c:func:`PyType_FromModuleAndSpec`, and their instances, hold a reference to the module. However, you must be careful in reference counting when you reference module state from other places, such as callbacks for external libraries." msgstr "" -#: ../../howto/isolating-extensions.rst:625 msgid "Open Issues" msgstr "" -#: ../../howto/isolating-extensions.rst:627 msgid "Several issues around per-module state and heap types are still open." msgstr "" -#: ../../howto/isolating-extensions.rst:629 -msgid "" -"Discussions about improving the situation are best held on the `discuss " -"forum under c-api tag `__." +msgid "Discussions about improving the situation are best held on the `discuss forum under c-api tag `__." msgstr "" -#: ../../howto/isolating-extensions.rst:633 msgid "Per-Class Scope" msgstr "" -#: ../../howto/isolating-extensions.rst:635 -msgid "" -"It is currently (as of Python 3.11) not possible to attach state to " -"individual *types* without relying on CPython implementation details (which " -"may change in the future—perhaps, ironically, to allow a proper solution for " -"per-class scope)." +msgid "It is currently (as of Python 3.11) not possible to attach state to individual *types* without relying on CPython implementation details (which may change in the future—perhaps, ironically, to allow a proper solution for per-class scope)." msgstr "" -#: ../../howto/isolating-extensions.rst:642 msgid "Lossless Conversion to Heap Types" msgstr "" -#: ../../howto/isolating-extensions.rst:644 -msgid "" -"The heap type API was not designed for \"lossless\" conversion from static " -"types; that is, creating a type that works exactly like a given static type." +msgid "The heap type API was not designed for \"lossless\" conversion from static types; that is, creating a type that works exactly like a given static type." msgstr "" diff --git a/howto/logging-cookbook.po b/howto/logging-cookbook.po index 79d72d4c..3418e11e 100644 --- a/howto/logging-cookbook.po +++ b/howto/logging-cookbook.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:53+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,42 +24,24 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../howto/logging-cookbook.rst:5 msgid "Logging Cookbook" msgstr "" -#: ../../howto/logging-cookbook.rst:0 msgid "Author" msgstr "" -#: ../../howto/logging-cookbook.rst:7 msgid "Vinay Sajip " msgstr "" -#: ../../howto/logging-cookbook.rst:9 -msgid "" -"This page contains a number of recipes related to logging, which have been " -"found useful in the past. For links to tutorial and reference information, " -"please see :ref:`cookbook-ref-links`." +msgid "This page contains a number of recipes related to logging, which have been found useful in the past. For links to tutorial and reference information, please see :ref:`cookbook-ref-links`." msgstr "" -#: ../../howto/logging-cookbook.rst:16 msgid "Using logging in multiple modules" msgstr "" -#: ../../howto/logging-cookbook.rst:18 -msgid "" -"Multiple calls to ``logging.getLogger('someLogger')`` return a reference to " -"the same logger object. This is true not only within the same module, but " -"also across modules as long as it is in the same Python interpreter " -"process. It is true for references to the same object; additionally, " -"application code can define and configure a parent logger in one module and " -"create (but not configure) a child logger in a separate module, and all " -"logger calls to the child will pass up to the parent. Here is a main " -"module::" +msgid "Multiple calls to ``logging.getLogger('someLogger')`` return a reference to the same logger object. This is true not only within the same module, but also across modules as long as it is in the same Python interpreter process. It is true for references to the same object; additionally, application code can define and configure a parent logger in one module and create (but not configure) a child logger in a separate module, and all logger calls to the child will pass up to the parent. Here is a main module::" msgstr "" -#: ../../howto/logging-cookbook.rst:26 msgid "" "import logging\n" "import auxiliary_module\n" @@ -74,8 +56,7 @@ msgid "" "ch = logging.StreamHandler()\n" "ch.setLevel(logging.ERROR)\n" "# create formatter and add it to the handlers\n" -"formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %" -"(message)s')\n" +"formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s')\n" "fh.setFormatter(formatter)\n" "ch.setFormatter(formatter)\n" "# add the handlers to the logger\n" @@ -93,11 +74,9 @@ msgid "" "logger.info('done with auxiliary_module.some_function()')" msgstr "" -#: ../../howto/logging-cookbook.rst:56 msgid "Here is the auxiliary module::" msgstr "" -#: ../../howto/logging-cookbook.rst:58 msgid "" "import logging\n" "\n" @@ -106,8 +85,7 @@ msgid "" "\n" "class Auxiliary:\n" " def __init__(self):\n" -" self.logger = " -"logging.getLogger('spam_application.auxiliary.Auxiliary')\n" +" self.logger = logging.getLogger('spam_application.auxiliary.Auxiliary')\n" " self.logger.info('creating an instance of Auxiliary')\n" "\n" " def do_something(self):\n" @@ -119,11 +97,9 @@ msgid "" " module_logger.info('received a call to \"some_function\"')" msgstr "" -#: ../../howto/logging-cookbook.rst:76 msgid "The output looks like this:" msgstr "" -#: ../../howto/logging-cookbook.rst:78 msgid "" "2005-03-23 23:47:11,663 - spam_application - INFO -\n" " creating an instance of auxiliary_module.Auxiliary\n" @@ -147,17 +123,12 @@ msgid "" " done with auxiliary_module.some_function()" msgstr "" -#: ../../howto/logging-cookbook.rst:102 msgid "Logging from multiple threads" msgstr "" -#: ../../howto/logging-cookbook.rst:104 -msgid "" -"Logging from multiple threads requires no special effort. The following " -"example shows logging from the main (initial) thread and another thread::" +msgid "Logging from multiple threads requires no special effort. The following example shows logging from the main (initial) thread and another thread::" msgstr "" -#: ../../howto/logging-cookbook.rst:107 msgid "" "import logging\n" "import threading\n" @@ -169,8 +140,7 @@ msgid "" " time.sleep(0.5)\n" "\n" "def main():\n" -" logging.basicConfig(level=logging.DEBUG, format='%(relativeCreated)6d %" -"(threadName)s %(message)s')\n" +" logging.basicConfig(level=logging.DEBUG, format='%(relativeCreated)6d %(threadName)s %(message)s')\n" " info = {'stop': False}\n" " thread = threading.Thread(target=worker, args=(info,))\n" " thread.start()\n" @@ -187,11 +157,9 @@ msgid "" " main()" msgstr "" -#: ../../howto/logging-cookbook.rst:133 msgid "When run, the script should print something like the following:" msgstr "" -#: ../../howto/logging-cookbook.rst:135 msgid "" " 0 Thread-1 Hi from myfunc\n" " 3 MainThread Hello from main\n" @@ -212,29 +180,15 @@ msgid "" "4518 Thread-1 Hi from myfunc" msgstr "" -#: ../../howto/logging-cookbook.rst:155 -msgid "" -"This shows the logging output interspersed as one might expect. This " -"approach works for more threads than shown here, of course." +msgid "This shows the logging output interspersed as one might expect. This approach works for more threads than shown here, of course." msgstr "" -#: ../../howto/logging-cookbook.rst:159 msgid "Multiple handlers and formatters" msgstr "" -#: ../../howto/logging-cookbook.rst:161 -msgid "" -"Loggers are plain Python objects. The :meth:`~Logger.addHandler` method has " -"no minimum or maximum quota for the number of handlers you may add. " -"Sometimes it will be beneficial for an application to log all messages of " -"all severities to a text file while simultaneously logging errors or above " -"to the console. To set this up, simply configure the appropriate handlers. " -"The logging calls in the application code will remain unchanged. Here is a " -"slight modification to the previous simple module-based configuration " -"example::" +msgid "Loggers are plain Python objects. The :meth:`~Logger.addHandler` method has no minimum or maximum quota for the number of handlers you may add. Sometimes it will be beneficial for an application to log all messages of all severities to a text file while simultaneously logging errors or above to the console. To set this up, simply configure the appropriate handlers. The logging calls in the application code will remain unchanged. Here is a slight modification to the previous simple module-based configuration example::" msgstr "" -#: ../../howto/logging-cookbook.rst:169 msgid "" "import logging\n" "\n" @@ -247,8 +201,7 @@ msgid "" "ch = logging.StreamHandler()\n" "ch.setLevel(logging.ERROR)\n" "# create formatter and add it to the handlers\n" -"formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %" -"(message)s')\n" +"formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s')\n" "ch.setFormatter(formatter)\n" "fh.setFormatter(formatter)\n" "# add the handlers to logger\n" @@ -263,46 +216,24 @@ msgid "" "logger.critical('critical message')" msgstr "" -#: ../../howto/logging-cookbook.rst:194 -msgid "" -"Notice that the 'application' code does not care about multiple handlers. " -"All that changed was the addition and configuration of a new handler named " -"*fh*." +msgid "Notice that the 'application' code does not care about multiple handlers. All that changed was the addition and configuration of a new handler named *fh*." msgstr "" -#: ../../howto/logging-cookbook.rst:197 -msgid "" -"The ability to create new handlers with higher- or lower-severity filters " -"can be very helpful when writing and testing an application. Instead of " -"using many ``print`` statements for debugging, use ``logger.debug``: Unlike " -"the print statements, which you will have to delete or comment out later, " -"the logger.debug statements can remain intact in the source code and remain " -"dormant until you need them again. At that time, the only change that needs " -"to happen is to modify the severity level of the logger and/or handler to " -"debug." +msgid "The ability to create new handlers with higher- or lower-severity filters can be very helpful when writing and testing an application. Instead of using many ``print`` statements for debugging, use ``logger.debug``: Unlike the print statements, which you will have to delete or comment out later, the logger.debug statements can remain intact in the source code and remain dormant until you need them again. At that time, the only change that needs to happen is to modify the severity level of the logger and/or handler to debug." msgstr "" -#: ../../howto/logging-cookbook.rst:208 msgid "Logging to multiple destinations" msgstr "" -#: ../../howto/logging-cookbook.rst:210 -msgid "" -"Let's say you want to log to console and file with different message formats " -"and in differing circumstances. Say you want to log messages with levels of " -"DEBUG and higher to file, and those messages at level INFO and higher to the " -"console. Let's also assume that the file should contain timestamps, but the " -"console messages should not. Here's how you can achieve this::" +msgid "Let's say you want to log to console and file with different message formats and in differing circumstances. Say you want to log messages with levels of DEBUG and higher to file, and those messages at level INFO and higher to the console. Let's also assume that the file should contain timestamps, but the console messages should not. Here's how you can achieve this::" msgstr "" -#: ../../howto/logging-cookbook.rst:216 msgid "" "import logging\n" "\n" "# set up logging to file - see previous section for more details\n" "logging.basicConfig(level=logging.DEBUG,\n" -" format='%(asctime)s %(name)-12s %(levelname)-8s %" -"(message)s',\n" +" format='%(asctime)s %(name)-12s %(levelname)-8s %(message)s',\n" " datefmt='%m-%d %H:%M',\n" " filename='/tmp/myapp.log',\n" " filemode='w')\n" @@ -316,8 +247,7 @@ msgid "" "# add the handler to the root logger\n" "logging.getLogger().addHandler(console)\n" "\n" -"# Now, we can log to the root logger, or any other logger. First the " -"root...\n" +"# Now, we can log to the root logger, or any other logger. First the root...\n" "logging.info('Jackdaws love my big sphinx of quartz.')\n" "\n" "# Now, define a couple of other loggers which might represent areas in your\n" @@ -332,11 +262,9 @@ msgid "" "logger2.error('The five boxing wizards jump quickly.')" msgstr "" -#: ../../howto/logging-cookbook.rst:248 msgid "When you run this, on the console you will see" msgstr "" -#: ../../howto/logging-cookbook.rst:250 msgid "" "root : INFO Jackdaws love my big sphinx of quartz.\n" "myapp.area1 : INFO How quickly daft jumping zebras vex.\n" @@ -344,70 +272,44 @@ msgid "" "myapp.area2 : ERROR The five boxing wizards jump quickly." msgstr "" -#: ../../howto/logging-cookbook.rst:257 msgid "and in the file you will see something like" msgstr "" -#: ../../howto/logging-cookbook.rst:259 msgid "" "10-22 22:19 root INFO Jackdaws love my big sphinx of quartz.\n" "10-22 22:19 myapp.area1 DEBUG Quick zephyrs blow, vexing daft Jim.\n" "10-22 22:19 myapp.area1 INFO How quickly daft jumping zebras vex.\n" -"10-22 22:19 myapp.area2 WARNING Jail zesty vixen who grabbed pay from " -"quack.\n" +"10-22 22:19 myapp.area2 WARNING Jail zesty vixen who grabbed pay from quack.\n" "10-22 22:19 myapp.area2 ERROR The five boxing wizards jump quickly." msgstr "" -#: ../../howto/logging-cookbook.rst:267 -msgid "" -"As you can see, the DEBUG message only shows up in the file. The other " -"messages are sent to both destinations." +msgid "As you can see, the DEBUG message only shows up in the file. The other messages are sent to both destinations." msgstr "" -#: ../../howto/logging-cookbook.rst:270 -msgid "" -"This example uses console and file handlers, but you can use any number and " -"combination of handlers you choose." +msgid "This example uses console and file handlers, but you can use any number and combination of handlers you choose." msgstr "" -#: ../../howto/logging-cookbook.rst:273 -msgid "" -"Note that the above choice of log filename ``/tmp/myapp.log`` implies use of " -"a standard location for temporary files on POSIX systems. On Windows, you " -"may need to choose a different directory name for the log - just ensure that " -"the directory exists and that you have the permissions to create and update " -"files in it." +msgid "Note that the above choice of log filename ``/tmp/myapp.log`` implies use of a standard location for temporary files on POSIX systems. On Windows, you may need to choose a different directory name for the log - just ensure that the directory exists and that you have the permissions to create and update files in it." msgstr "" -#: ../../howto/logging-cookbook.rst:282 msgid "Custom handling of levels" msgstr "" -#: ../../howto/logging-cookbook.rst:284 -msgid "" -"Sometimes, you might want to do something slightly different from the " -"standard handling of levels in handlers, where all levels above a threshold " -"get processed by a handler. To do this, you need to use filters. Let's look " -"at a scenario where you want to arrange things as follows:" +msgid "Sometimes, you might want to do something slightly different from the standard handling of levels in handlers, where all levels above a threshold get processed by a handler. To do this, you need to use filters. Let's look at a scenario where you want to arrange things as follows:" msgstr "" -#: ../../howto/logging-cookbook.rst:289 msgid "Send messages of severity ``INFO`` and ``WARNING`` to ``sys.stdout``" msgstr "" -#: ../../howto/logging-cookbook.rst:290 msgid "Send messages of severity ``ERROR`` and above to ``sys.stderr``" msgstr "" -#: ../../howto/logging-cookbook.rst:291 msgid "Send messages of severity ``DEBUG`` and above to file ``app.log``" msgstr "" -#: ../../howto/logging-cookbook.rst:293 msgid "Suppose you configure logging with the following JSON:" msgstr "" -#: ../../howto/logging-cookbook.rst:295 msgid "" "{\n" " \"version\": 1,\n" @@ -448,17 +350,9 @@ msgid "" "}" msgstr "" -#: ../../howto/logging-cookbook.rst:335 -msgid "" -"This configuration does *almost* what we want, except that ``sys.stdout`` " -"would show messages of severity ``ERROR`` and only events of this severity " -"and higher will be tracked as well as ``INFO`` and ``WARNING`` messages. To " -"prevent this, we can set up a filter which excludes those messages and add " -"it to the relevant handler. This can be configured by adding a ``filters`` " -"section parallel to ``formatters`` and ``handlers``:" +msgid "This configuration does *almost* what we want, except that ``sys.stdout`` would show messages of severity ``ERROR`` and only events of this severity and higher will be tracked as well as ``INFO`` and ``WARNING`` messages. To prevent this, we can set up a filter which excludes those messages and add it to the relevant handler. This can be configured by adding a ``filters`` section parallel to ``formatters`` and ``handlers``:" msgstr "" -#: ../../howto/logging-cookbook.rst:341 msgid "" "{\n" " \"filters\": {\n" @@ -470,11 +364,9 @@ msgid "" "}" msgstr "" -#: ../../howto/logging-cookbook.rst:352 msgid "and changing the section on the ``stdout`` handler to add it:" msgstr "" -#: ../../howto/logging-cookbook.rst:354 msgid "" "{\n" " \"stdout\": {\n" @@ -487,13 +379,9 @@ msgid "" "}" msgstr "" -#: ../../howto/logging-cookbook.rst:366 -msgid "" -"A filter is just a function, so we can define the ``filter_maker`` (a " -"factory function) as follows:" +msgid "A filter is just a function, so we can define the ``filter_maker`` (a factory function) as follows:" msgstr "" -#: ../../howto/logging-cookbook.rst:369 msgid "" "def filter_maker(level):\n" " level = getattr(logging, level)\n" @@ -504,22 +392,12 @@ msgid "" " return filter" msgstr "" -#: ../../howto/logging-cookbook.rst:379 -msgid "" -"This converts the string argument passed in to a numeric level, and returns " -"a function which only returns ``True`` if the level of the passed in record " -"is at or below the specified level. Note that in this example I have defined " -"the ``filter_maker`` in a test script ``main.py`` that I run from the " -"command line, so its module will be ``__main__`` - hence the " -"``__main__.filter_maker`` in the filter configuration. You will need to " -"change that if you define it in a different module." +msgid "This converts the string argument passed in to a numeric level, and returns a function which only returns ``True`` if the level of the passed in record is at or below the specified level. Note that in this example I have defined the ``filter_maker`` in a test script ``main.py`` that I run from the command line, so its module will be ``__main__`` - hence the ``__main__.filter_maker`` in the filter configuration. You will need to change that if you define it in a different module." msgstr "" -#: ../../howto/logging-cookbook.rst:387 msgid "With the filter added, we can run ``main.py``, which in full is:" msgstr "" -#: ../../howto/logging-cookbook.rst:389 msgid "" "import json\n" "import logging\n" @@ -588,19 +466,15 @@ msgid "" "logging.critical('A CRITICAL message')" msgstr "" -#: ../../howto/logging-cookbook.rst:457 msgid "And after running it like this:" msgstr "" -#: ../../howto/logging-cookbook.rst:459 msgid "python main.py 2>stderr.log >stdout.log" msgstr "" -#: ../../howto/logging-cookbook.rst:463 msgid "We can see the results are as expected:" msgstr "" -#: ../../howto/logging-cookbook.rst:465 msgid "" "$ more *.log\n" "::::::::::::::\n" @@ -623,15 +497,12 @@ msgid "" "WARNING - A WARNING message" msgstr "" -#: ../../howto/logging-cookbook.rst:489 msgid "Configuration server example" msgstr "" -#: ../../howto/logging-cookbook.rst:491 msgid "Here is an example of a module using the logging configuration server::" msgstr "" -#: ../../howto/logging-cookbook.rst:493 msgid "" "import logging\n" "import logging.config\n" @@ -663,14 +534,9 @@ msgid "" " t.join()" msgstr "" -#: ../../howto/logging-cookbook.rst:522 -msgid "" -"And here is a script that takes a filename and sends that file to the " -"server, properly preceded with the binary-encoded length, as the new logging " -"configuration::" +msgid "And here is a script that takes a filename and sends that file to the server, properly preceded with the binary-encoded length, as the new logging configuration::" msgstr "" -#: ../../howto/logging-cookbook.rst:526 msgid "" "#!/usr/bin/env python\n" "import socket, sys, struct\n" @@ -690,67 +556,27 @@ msgid "" "print('complete')" msgstr "" -#: ../../howto/logging-cookbook.rst:547 msgid "Dealing with handlers that block" msgstr "" -#: ../../howto/logging-cookbook.rst:551 -msgid "" -"Sometimes you have to get your logging handlers to do their work without " -"blocking the thread you're logging from. This is common in web applications, " -"though of course it also occurs in other scenarios." +msgid "Sometimes you have to get your logging handlers to do their work without blocking the thread you're logging from. This is common in web applications, though of course it also occurs in other scenarios." msgstr "" -#: ../../howto/logging-cookbook.rst:555 -msgid "" -"A common culprit which demonstrates sluggish behaviour is " -"the :class:`SMTPHandler`: sending emails can take a long time, for a number " -"of reasons outside the developer's control (for example, a poorly performing " -"mail or network infrastructure). But almost any network-based handler can " -"block: Even a :class:`SocketHandler` operation may do a DNS query under the " -"hood which is too slow (and this query can be deep in the socket library " -"code, below the Python layer, and outside your control)." +msgid "A common culprit which demonstrates sluggish behaviour is the :class:`SMTPHandler`: sending emails can take a long time, for a number of reasons outside the developer's control (for example, a poorly performing mail or network infrastructure). But almost any network-based handler can block: Even a :class:`SocketHandler` operation may do a DNS query under the hood which is too slow (and this query can be deep in the socket library code, below the Python layer, and outside your control)." msgstr "" -#: ../../howto/logging-cookbook.rst:563 -msgid "" -"One solution is to use a two-part approach. For the first part, attach only " -"a :class:`QueueHandler` to those loggers which are accessed from performance-" -"critical threads. They simply write to their queue, which can be sized to a " -"large enough capacity or initialized with no upper bound to their size. The " -"write to the queue will typically be accepted quickly, though you will " -"probably need to catch the :exc:`queue.Full` exception as a precaution in " -"your code. If you are a library developer who has performance-critical " -"threads in their code, be sure to document this (together with a suggestion " -"to attach only ``QueueHandlers`` to your loggers) for the benefit of other " -"developers who will use your code." -msgstr "" - -#: ../../howto/logging-cookbook.rst:574 -msgid "" -"The second part of the solution is :class:`QueueListener`, which has been " -"designed as the counterpart to :class:`QueueHandler`. " -"A :class:`QueueListener` is very simple: it's passed a queue and some " -"handlers, and it fires up an internal thread which listens to its queue for " -"LogRecords sent from ``QueueHandlers`` (or any other source of " -"``LogRecords``, for that matter). The ``LogRecords`` are removed from the " -"queue and passed to the handlers for processing." +msgid "One solution is to use a two-part approach. For the first part, attach only a :class:`QueueHandler` to those loggers which are accessed from performance-critical threads. They simply write to their queue, which can be sized to a large enough capacity or initialized with no upper bound to their size. The write to the queue will typically be accepted quickly, though you will probably need to catch the :exc:`queue.Full` exception as a precaution in your code. If you are a library developer who has performance-critical threads in their code, be sure to document this (together with a suggestion to attach only ``QueueHandlers`` to your loggers) for the benefit of other developers who will use your code." msgstr "" -#: ../../howto/logging-cookbook.rst:582 -msgid "" -"The advantage of having a separate :class:`QueueListener` class is that you " -"can use the same instance to service multiple ``QueueHandlers``. This is " -"more resource-friendly than, say, having threaded versions of the existing " -"handler classes, which would eat up one thread per handler for no particular " -"benefit." +msgid "The second part of the solution is :class:`QueueListener`, which has been designed as the counterpart to :class:`QueueHandler`. A :class:`QueueListener` is very simple: it's passed a queue and some handlers, and it fires up an internal thread which listens to its queue for LogRecords sent from ``QueueHandlers`` (or any other source of ``LogRecords``, for that matter). The ``LogRecords`` are removed from the queue and passed to the handlers for processing." +msgstr "" + +msgid "The advantage of having a separate :class:`QueueListener` class is that you can use the same instance to service multiple ``QueueHandlers``. This is more resource-friendly than, say, having threaded versions of the existing handler classes, which would eat up one thread per handler for no particular benefit." msgstr "" -#: ../../howto/logging-cookbook.rst:587 msgid "An example of using these two classes follows (imports omitted)::" msgstr "" -#: ../../howto/logging-cookbook.rst:589 msgid "" "que = queue.Queue(-1) # no limit on size\n" "queue_handler = QueueHandler(que)\n" @@ -769,44 +595,21 @@ msgid "" "listener.stop()" msgstr "" -#: ../../howto/logging-cookbook.rst:605 msgid "which, when run, will produce:" msgstr "" -#: ../../howto/logging-cookbook.rst:607 msgid "MainThread: Look out!" msgstr "" -#: ../../howto/logging-cookbook.rst:611 -msgid "" -"Although the earlier discussion wasn't specifically talking about async " -"code, but rather about slow logging handlers, it should be noted that when " -"logging from async code, network and even file handlers could lead to " -"problems (blocking the event loop) because some logging is done " -"from :mod:`asyncio` internals. It might be best, if any async code is used " -"in an application, to use the above approach for logging, so that any " -"blocking code runs only in the ``QueueListener`` thread." +msgid "Although the earlier discussion wasn't specifically talking about async code, but rather about slow logging handlers, it should be noted that when logging from async code, network and even file handlers could lead to problems (blocking the event loop) because some logging is done from :mod:`asyncio` internals. It might be best, if any async code is used in an application, to use the above approach for logging, so that any blocking code runs only in the ``QueueListener`` thread." msgstr "" -#: ../../howto/logging-cookbook.rst:619 -msgid "" -"Prior to Python 3.5, the :class:`QueueListener` always passed every message " -"received from the queue to every handler it was initialized with. (This was " -"because it was assumed that level filtering was all done on the other side, " -"where the queue is filled.) From 3.5 onwards, this behaviour can be changed " -"by passing a keyword argument ``respect_handler_level=True`` to the " -"listener's constructor. When this is done, the listener compares the level " -"of each message with the handler's level, and only passes a message to a " -"handler if it's appropriate to do so." +msgid "Prior to Python 3.5, the :class:`QueueListener` always passed every message received from the queue to every handler it was initialized with. (This was because it was assumed that level filtering was all done on the other side, where the queue is filled.) From 3.5 onwards, this behaviour can be changed by passing a keyword argument ``respect_handler_level=True`` to the listener's constructor. When this is done, the listener compares the level of each message with the handler's level, and only passes a message to a handler if it's appropriate to do so." msgstr "" -#: ../../howto/logging-cookbook.rst:629 -msgid "" -"The :class:`QueueListener` can be started (and stopped) via " -"the :keyword:`with` statement. For example:" +msgid "The :class:`QueueListener` can be started (and stopped) via the :keyword:`with` statement. For example:" msgstr "" -#: ../../howto/logging-cookbook.rst:633 msgid "" "with QueueListener(que, handler) as listener:\n" " # The queue listener automatically starts\n" @@ -816,18 +619,12 @@ msgid "" "# the 'with' block is exited." msgstr "" -#: ../../howto/logging-cookbook.rst:645 msgid "Sending and receiving logging events across a network" msgstr "" -#: ../../howto/logging-cookbook.rst:647 -msgid "" -"Let's say you want to send logging events across a network, and handle them " -"at the receiving end. A simple way of doing this is attaching " -"a :class:`SocketHandler` instance to the root logger at the sending end::" +msgid "Let's say you want to send logging events across a network, and handle them at the receiving end. A simple way of doing this is attaching a :class:`SocketHandler` instance to the root logger at the sending end::" msgstr "" -#: ../../howto/logging-cookbook.rst:651 msgid "" "import logging, logging.handlers\n" "\n" @@ -839,8 +636,7 @@ msgid "" "# an unformatted pickle\n" "rootLogger.addHandler(socketHandler)\n" "\n" -"# Now, we can log to the root logger, or any other logger. First the " -"root...\n" +"# Now, we can log to the root logger, or any other logger. First the root...\n" "logging.info('Jackdaws love my big sphinx of quartz.')\n" "\n" "# Now, define a couple of other loggers which might represent areas in your\n" @@ -855,13 +651,9 @@ msgid "" "logger2.error('The five boxing wizards jump quickly.')" msgstr "" -#: ../../howto/logging-cookbook.rst:675 -msgid "" -"At the receiving end, you can set up a receiver using " -"the :mod:`socketserver` module. Here is a basic working example::" +msgid "At the receiving end, you can set up a receiver using the :mod:`socketserver` module. Here is a basic working example::" msgstr "" -#: ../../howto/logging-cookbook.rst:678 msgid "" "import pickle\n" "import logging\n" @@ -899,8 +691,7 @@ msgid "" " return pickle.loads(data)\n" "\n" " def handleLogRecord(self, record):\n" -" # if a name is specified, we use the named logger rather than the " -"one\n" +" # if a name is specified, we use the named logger rather than the one\n" " # implied by the record.\n" " if self.server.logname is not None:\n" " name = self.server.logname\n" @@ -923,8 +714,7 @@ msgid "" " def __init__(self, host='localhost',\n" " port=logging.handlers.DEFAULT_TCP_LOGGING_PORT,\n" " handler=LogRecordStreamHandler):\n" -" socketserver.ThreadingTCPServer.__init__(self, (host, port), " -"handler)\n" +" socketserver.ThreadingTCPServer.__init__(self, (host, port), handler)\n" " self.abort = 0\n" " self.timeout = 1\n" " self.logname = None\n" @@ -942,8 +732,7 @@ msgid "" "\n" "def main():\n" " logging.basicConfig(\n" -" format='%(relativeCreated)5d %(name)-15s %(levelname)-8s %" -"(message)s')\n" +" format='%(relativeCreated)5d %(name)-15s %(levelname)-8s %(message)s')\n" " tcpserver = LogRecordSocketReceiver()\n" " print('About to start TCP server...')\n" " tcpserver.serve_until_stopped()\n" @@ -952,13 +741,9 @@ msgid "" " main()" msgstr "" -#: ../../howto/logging-cookbook.rst:763 -msgid "" -"First run the server, and then the client. On the client side, nothing is " -"printed on the console; on the server side, you should see something like:" +msgid "First run the server, and then the client. On the client side, nothing is printed on the console; on the server side, you should see something like:" msgstr "" -#: ../../howto/logging-cookbook.rst:766 msgid "" "About to start TCP server...\n" " 59 root INFO Jackdaws love my big sphinx of quartz.\n" @@ -968,230 +753,117 @@ msgid "" " 69 myapp.area2 ERROR The five boxing wizards jump quickly." msgstr "" -#: ../../howto/logging-cookbook.rst:775 -msgid "" -"Note that there are some security issues with pickle in some scenarios. If " -"these affect you, you can use an alternative serialization scheme by " -"overriding the :meth:`~SocketHandler.makePickle` method and implementing " -"your alternative there, as well as adapting the above script to use your " -"alternative serialization." +msgid "Note that there are some security issues with pickle in some scenarios. If these affect you, you can use an alternative serialization scheme by overriding the :meth:`~SocketHandler.makePickle` method and implementing your alternative there, as well as adapting the above script to use your alternative serialization." msgstr "" -#: ../../howto/logging-cookbook.rst:783 msgid "Running a logging socket listener in production" msgstr "" -#: ../../howto/logging-cookbook.rst:787 -msgid "" -"To run a logging listener in production, you may need to use a process-" -"management tool such as `Supervisor `_. `Here is a " -"Gist `__ which provides the bare-bones files to run " -"the above functionality using Supervisor. It consists of the following files:" +msgid "To run a logging listener in production, you may need to use a process-management tool such as `Supervisor `_. `Here is a Gist `__ which provides the bare-bones files to run the above functionality using Supervisor. It consists of the following files:" msgstr "" -#: ../../howto/logging-cookbook.rst:794 msgid "File" msgstr "" -#: ../../howto/logging-cookbook.rst:794 msgid "Purpose" msgstr "" -#: ../../howto/logging-cookbook.rst:796 msgid ":file:`prepare.sh`" msgstr "" -#: ../../howto/logging-cookbook.rst:796 msgid "A Bash script to prepare the environment for testing" msgstr "" -#: ../../howto/logging-cookbook.rst:799 msgid ":file:`supervisor.conf`" msgstr "" -#: ../../howto/logging-cookbook.rst:799 -msgid "" -"The Supervisor configuration file, which has entries for the listener and a " -"multi-process web application" +msgid "The Supervisor configuration file, which has entries for the listener and a multi-process web application" msgstr "" -#: ../../howto/logging-cookbook.rst:803 msgid ":file:`ensure_app.sh`" msgstr "" -#: ../../howto/logging-cookbook.rst:803 -msgid "" -"A Bash script to ensure that Supervisor is running with the above " -"configuration" +msgid "A Bash script to ensure that Supervisor is running with the above configuration" msgstr "" -#: ../../howto/logging-cookbook.rst:806 msgid ":file:`log_listener.py`" msgstr "" -#: ../../howto/logging-cookbook.rst:806 -msgid "" -"The socket listener program which receives log events and records them to a " -"file" +msgid "The socket listener program which receives log events and records them to a file" msgstr "" -#: ../../howto/logging-cookbook.rst:809 msgid ":file:`main.py`" msgstr "" -#: ../../howto/logging-cookbook.rst:809 -msgid "" -"A simple web application which performs logging via a socket connected to " -"the listener" +msgid "A simple web application which performs logging via a socket connected to the listener" msgstr "" -#: ../../howto/logging-cookbook.rst:812 msgid ":file:`webapp.json`" msgstr "" -#: ../../howto/logging-cookbook.rst:812 msgid "A JSON configuration file for the web application" msgstr "" -#: ../../howto/logging-cookbook.rst:814 msgid ":file:`client.py`" msgstr "" -#: ../../howto/logging-cookbook.rst:814 msgid "A Python script to exercise the web application" msgstr "" -#: ../../howto/logging-cookbook.rst:817 -msgid "" -"The web application uses `Gunicorn `_, which is a " -"popular web application server that starts multiple worker processes to " -"handle requests. This example setup shows how the workers can write to the " -"same log file without conflicting with one another --- they all go through " -"the socket listener." +msgid "The web application uses `Gunicorn `_, which is a popular web application server that starts multiple worker processes to handle requests. This example setup shows how the workers can write to the same log file without conflicting with one another --- they all go through the socket listener." msgstr "" -#: ../../howto/logging-cookbook.rst:822 msgid "To test these files, do the following in a POSIX environment:" msgstr "" -#: ../../howto/logging-cookbook.rst:824 -msgid "" -"Download `the Gist `__ as a ZIP archive using " -"the :guilabel:`Download ZIP` button." +msgid "Download `the Gist `__ as a ZIP archive using the :guilabel:`Download ZIP` button." msgstr "" -#: ../../howto/logging-cookbook.rst:827 msgid "Unzip the above files from the archive into a scratch directory." msgstr "" -#: ../../howto/logging-cookbook.rst:829 -msgid "" -"In the scratch directory, run ``bash prepare.sh`` to get things ready. This " -"creates a :file:`run` subdirectory to contain Supervisor-related and log " -"files, and a :file:`venv` subdirectory to contain a virtual environment into " -"which ``bottle``, ``gunicorn`` and ``supervisor`` are installed." +msgid "In the scratch directory, run ``bash prepare.sh`` to get things ready. This creates a :file:`run` subdirectory to contain Supervisor-related and log files, and a :file:`venv` subdirectory to contain a virtual environment into which ``bottle``, ``gunicorn`` and ``supervisor`` are installed." msgstr "" -#: ../../howto/logging-cookbook.rst:834 -msgid "" -"Run ``bash ensure_app.sh`` to ensure that Supervisor is running with the " -"above configuration." +msgid "Run ``bash ensure_app.sh`` to ensure that Supervisor is running with the above configuration." msgstr "" -#: ../../howto/logging-cookbook.rst:837 -msgid "" -"Run ``venv/bin/python client.py`` to exercise the web application, which " -"will lead to records being written to the log." +msgid "Run ``venv/bin/python client.py`` to exercise the web application, which will lead to records being written to the log." msgstr "" -#: ../../howto/logging-cookbook.rst:840 -msgid "" -"Inspect the log files in the :file:`run` subdirectory. You should see the " -"most recent log lines in files matching the pattern :file:`app.log*`. They " -"won't be in any particular order, since they have been handled concurrently " -"by different worker processes in a non-deterministic way." +msgid "Inspect the log files in the :file:`run` subdirectory. You should see the most recent log lines in files matching the pattern :file:`app.log*`. They won't be in any particular order, since they have been handled concurrently by different worker processes in a non-deterministic way." msgstr "" -#: ../../howto/logging-cookbook.rst:845 -msgid "" -"You can shut down the listener and the web application by running ``venv/bin/" -"supervisorctl -c supervisor.conf shutdown``." +msgid "You can shut down the listener and the web application by running ``venv/bin/supervisorctl -c supervisor.conf shutdown``." msgstr "" -#: ../../howto/logging-cookbook.rst:848 -msgid "" -"You may need to tweak the configuration files in the unlikely event that the " -"configured ports clash with something else in your test environment." +msgid "You may need to tweak the configuration files in the unlikely event that the configured ports clash with something else in your test environment." msgstr "" -#: ../../howto/logging-cookbook.rst:851 -msgid "" -"The default configuration uses a TCP socket on port 9020. You can use a Unix " -"Domain socket instead of a TCP socket by doing the following:" +msgid "The default configuration uses a TCP socket on port 9020. You can use a Unix Domain socket instead of a TCP socket by doing the following:" msgstr "" -#: ../../howto/logging-cookbook.rst:854 -msgid "" -"In :file:`listener.json`, add a ``socket`` key with the path to the domain " -"socket you want to use. If this key is present, the listener listens on the " -"corresponding domain socket and not on a TCP socket (the ``port`` key is " -"ignored)." +msgid "In :file:`listener.json`, add a ``socket`` key with the path to the domain socket you want to use. If this key is present, the listener listens on the corresponding domain socket and not on a TCP socket (the ``port`` key is ignored)." msgstr "" -#: ../../howto/logging-cookbook.rst:859 -msgid "" -"In :file:`webapp.json`, change the socket handler configuration dictionary " -"so that the ``host`` value is the path to the domain socket, and set the " -"``port`` value to ``null``." +msgid "In :file:`webapp.json`, change the socket handler configuration dictionary so that the ``host`` value is the path to the domain socket, and set the ``port`` value to ``null``." msgstr "" -#: ../../howto/logging-cookbook.rst:869 msgid "Adding contextual information to your logging output" msgstr "" -#: ../../howto/logging-cookbook.rst:871 -msgid "" -"Sometimes you want logging output to contain contextual information in " -"addition to the parameters passed to the logging call. For example, in a " -"networked application, it may be desirable to log client-specific " -"information in the log (e.g. remote client's username, or IP address). " -"Although you could use the *extra* parameter to achieve this, it's not " -"always convenient to pass the information in this way. While it might be " -"tempting to create :class:`Logger` instances on a per-connection basis, this " -"is not a good idea because these instances are not garbage collected. While " -"this is not a problem in practice, when the number of :class:`Logger` " -"instances is dependent on the level of granularity you want to use in " -"logging an application, it could be hard to manage if the number " -"of :class:`Logger` instances becomes effectively unbounded." -msgstr "" - -#: ../../howto/logging-cookbook.rst:886 +msgid "Sometimes you want logging output to contain contextual information in addition to the parameters passed to the logging call. For example, in a networked application, it may be desirable to log client-specific information in the log (e.g. remote client's username, or IP address). Although you could use the *extra* parameter to achieve this, it's not always convenient to pass the information in this way. While it might be tempting to create :class:`Logger` instances on a per-connection basis, this is not a good idea because these instances are not garbage collected. While this is not a problem in practice, when the number of :class:`Logger` instances is dependent on the level of granularity you want to use in logging an application, it could be hard to manage if the number of :class:`Logger` instances becomes effectively unbounded." +msgstr "" + msgid "Using LoggerAdapters to impart contextual information" msgstr "" -#: ../../howto/logging-cookbook.rst:888 -msgid "" -"An easy way in which you can pass contextual information to be output along " -"with logging event information is to use the :class:`LoggerAdapter` class. " -"This class is designed to look like a :class:`Logger`, so that you can " -"call :meth:`debug`, :meth:`info`, :meth:`warning`, :meth:`error`, :meth:`exception`, :meth:`critical` " -"and :meth:`log`. These methods have the same signatures as their " -"counterparts in :class:`Logger`, so you can use the two types of instances " -"interchangeably." +msgid "An easy way in which you can pass contextual information to be output along with logging event information is to use the :class:`LoggerAdapter` class. This class is designed to look like a :class:`Logger`, so that you can call :meth:`debug`, :meth:`info`, :meth:`warning`, :meth:`error`, :meth:`exception`, :meth:`critical` and :meth:`log`. These methods have the same signatures as their counterparts in :class:`Logger`, so you can use the two types of instances interchangeably." msgstr "" -#: ../../howto/logging-cookbook.rst:896 -msgid "" -"When you create an instance of :class:`LoggerAdapter`, you pass it " -"a :class:`Logger` instance and a dict-like object which contains your " -"contextual information. When you call one of the logging methods on an " -"instance of :class:`LoggerAdapter`, it delegates the call to the underlying " -"instance of :class:`Logger` passed to its constructor, and arranges to pass " -"the contextual information in the delegated call. Here's a snippet from the " -"code of :class:`LoggerAdapter`::" +msgid "When you create an instance of :class:`LoggerAdapter`, you pass it a :class:`Logger` instance and a dict-like object which contains your contextual information. When you call one of the logging methods on an instance of :class:`LoggerAdapter`, it delegates the call to the underlying instance of :class:`Logger` passed to its constructor, and arranges to pass the contextual information in the delegated call. Here's a snippet from the code of :class:`LoggerAdapter`::" msgstr "" -#: ../../howto/logging-cookbook.rst:904 msgid "" "def debug(self, msg, /, *args, **kwargs):\n" " \"\"\"\n" @@ -1202,32 +874,12 @@ msgid "" " self.logger.debug(msg, *args, **kwargs)" msgstr "" -#: ../../howto/logging-cookbook.rst:912 -msgid "" -"The :meth:`~LoggerAdapter.process` method of :class:`LoggerAdapter` is where " -"the contextual information is added to the logging output. It's passed the " -"message and keyword arguments of the logging call, and it passes back " -"(potentially) modified versions of these to use in the call to the " -"underlying logger. The default implementation of this method leaves the " -"message alone, but inserts an 'extra' key in the keyword argument whose " -"value is the dict-like object passed to the constructor. Of course, if you " -"had passed an 'extra' keyword argument in the call to the adapter, it will " -"be silently overwritten." -msgstr "" - -#: ../../howto/logging-cookbook.rst:921 -msgid "" -"The advantage of using 'extra' is that the values in the dict-like object " -"are merged into the :class:`LogRecord` instance's __dict__, allowing you to " -"use customized strings with your :class:`Formatter` instances which know " -"about the keys of the dict-like object. If you need a different method, e.g. " -"if you want to prepend or append the contextual information to the message " -"string, you just need to subclass :class:`LoggerAdapter` and " -"override :meth:`~LoggerAdapter.process` to do what you need. Here is a " -"simple example::" +msgid "The :meth:`~LoggerAdapter.process` method of :class:`LoggerAdapter` is where the contextual information is added to the logging output. It's passed the message and keyword arguments of the logging call, and it passes back (potentially) modified versions of these to use in the call to the underlying logger. The default implementation of this method leaves the message alone, but inserts an 'extra' key in the keyword argument whose value is the dict-like object passed to the constructor. Of course, if you had passed an 'extra' keyword argument in the call to the adapter, it will be silently overwritten." +msgstr "" + +msgid "The advantage of using 'extra' is that the values in the dict-like object are merged into the :class:`LogRecord` instance's __dict__, allowing you to use customized strings with your :class:`Formatter` instances which know about the keys of the dict-like object. If you need a different method, e.g. if you want to prepend or append the contextual information to the message string, you just need to subclass :class:`LoggerAdapter` and override :meth:`~LoggerAdapter.process` to do what you need. Here is a simple example::" msgstr "" -#: ../../howto/logging-cookbook.rst:929 msgid "" "class CustomAdapter(logging.LoggerAdapter):\n" " \"\"\"\n" @@ -1238,61 +890,32 @@ msgid "" " return '[%s] %s' % (self.extra['connid'], msg), kwargs" msgstr "" -#: ../../howto/logging-cookbook.rst:937 msgid "which you can use like this::" msgstr "" -#: ../../howto/logging-cookbook.rst:939 msgid "" "logger = logging.getLogger(__name__)\n" "adapter = CustomAdapter(logger, {'connid': some_conn_id})" msgstr "" -#: ../../howto/logging-cookbook.rst:942 -msgid "" -"Then any events that you log to the adapter will have the value of " -"``some_conn_id`` prepended to the log messages." +msgid "Then any events that you log to the adapter will have the value of ``some_conn_id`` prepended to the log messages." msgstr "" -#: ../../howto/logging-cookbook.rst:946 msgid "Using objects other than dicts to pass contextual information" msgstr "" -#: ../../howto/logging-cookbook.rst:948 -msgid "" -"You don't need to pass an actual dict to a :class:`LoggerAdapter` - you " -"could pass an instance of a class which implements ``__getitem__`` and " -"``__iter__`` so that it looks like a dict to logging. This would be useful " -"if you want to generate values dynamically (whereas the values in a dict " -"would be constant)." +msgid "You don't need to pass an actual dict to a :class:`LoggerAdapter` - you could pass an instance of a class which implements ``__getitem__`` and ``__iter__`` so that it looks like a dict to logging. This would be useful if you want to generate values dynamically (whereas the values in a dict would be constant)." msgstr "" -#: ../../howto/logging-cookbook.rst:957 msgid "Using Filters to impart contextual information" msgstr "" -#: ../../howto/logging-cookbook.rst:959 -msgid "" -"You can also add contextual information to log output using a user-" -"defined :class:`Filter`. ``Filter`` instances are allowed to modify the " -"``LogRecords`` passed to them, including adding additional attributes which " -"can then be output using a suitable format string, or if needed a " -"custom :class:`Formatter`." +msgid "You can also add contextual information to log output using a user-defined :class:`Filter`. ``Filter`` instances are allowed to modify the ``LogRecords`` passed to them, including adding additional attributes which can then be output using a suitable format string, or if needed a custom :class:`Formatter`." msgstr "" -#: ../../howto/logging-cookbook.rst:964 -msgid "" -"For example in a web application, the request being processed (or at least, " -"the interesting parts of it) can be stored in a threadlocal " -"(:class:`threading.local`) variable, and then accessed from a ``Filter`` to " -"add, say, information from the request - say, the remote IP address and " -"remote user's username - to the ``LogRecord``, using the attribute names " -"'ip' and 'user' as in the ``LoggerAdapter`` example above. In that case, the " -"same format string can be used to get similar output to that shown above. " -"Here's an example script::" +msgid "For example in a web application, the request being processed (or at least, the interesting parts of it) can be stored in a threadlocal (:class:`threading.local`) variable, and then accessed from a ``Filter`` to add, say, information from the request - say, the remote IP address and remote user's username - to the ``LogRecord``, using the attribute names 'ip' and 'user' as in the ``LoggerAdapter`` example above. In that case, the same format string can be used to get similar output to that shown above. Here's an example script::" msgstr "" -#: ../../howto/logging-cookbook.rst:973 msgid "" "import logging\n" "from random import choice\n" @@ -1315,11 +938,9 @@ msgid "" " return True\n" "\n" "if __name__ == '__main__':\n" -" levels = (logging.DEBUG, logging.INFO, logging.WARNING, logging.ERROR, " -"logging.CRITICAL)\n" +" levels = (logging.DEBUG, logging.INFO, logging.WARNING, logging.ERROR, logging.CRITICAL)\n" " logging.basicConfig(level=logging.DEBUG,\n" -" format='%(asctime)-15s %(name)-5s %(levelname)-8s " -"IP: %(ip)-15s User: %(user)-8s %(message)s')\n" +" format='%(asctime)-15s %(name)-5s %(levelname)-8s IP: %(ip)-15s User: %(user)-8s %(message)s')\n" " a1 = logging.getLogger('a.b.c')\n" " a2 = logging.getLogger('d.e.f')\n" "\n" @@ -1331,72 +952,39 @@ msgid "" " for x in range(10):\n" " lvl = choice(levels)\n" " lvlname = logging.getLevelName(lvl)\n" -" a2.log(lvl, 'A message at %s level with %d %s', lvlname, 2, " -"'parameters')" +" a2.log(lvl, 'A message at %s level with %d %s', lvlname, 2, 'parameters')" msgstr "" -#: ../../howto/logging-cookbook.rst:1010 msgid "which, when run, produces something like:" msgstr "" -#: ../../howto/logging-cookbook.rst:1012 msgid "" -"2010-09-06 22:38:15,292 a.b.c DEBUG IP: 123.231.231.123 User: fred A " -"debug message\n" -"2010-09-06 22:38:15,300 a.b.c INFO IP: 192.168.0.1 User: sheila An " -"info message with some parameters\n" -"2010-09-06 22:38:15,300 d.e.f CRITICAL IP: 127.0.0.1 User: sheila A " -"message at CRITICAL level with 2 parameters\n" -"2010-09-06 22:38:15,300 d.e.f ERROR IP: 127.0.0.1 User: jim A " -"message at ERROR level with 2 parameters\n" -"2010-09-06 22:38:15,300 d.e.f DEBUG IP: 127.0.0.1 User: sheila A " -"message at DEBUG level with 2 parameters\n" -"2010-09-06 22:38:15,300 d.e.f ERROR IP: 123.231.231.123 User: fred A " -"message at ERROR level with 2 parameters\n" -"2010-09-06 22:38:15,300 d.e.f CRITICAL IP: 192.168.0.1 User: jim A " -"message at CRITICAL level with 2 parameters\n" -"2010-09-06 22:38:15,300 d.e.f CRITICAL IP: 127.0.0.1 User: sheila A " -"message at CRITICAL level with 2 parameters\n" -"2010-09-06 22:38:15,300 d.e.f DEBUG IP: 192.168.0.1 User: jim A " -"message at DEBUG level with 2 parameters\n" -"2010-09-06 22:38:15,301 d.e.f ERROR IP: 127.0.0.1 User: sheila A " -"message at ERROR level with 2 parameters\n" -"2010-09-06 22:38:15,301 d.e.f DEBUG IP: 123.231.231.123 User: fred A " -"message at DEBUG level with 2 parameters\n" -"2010-09-06 22:38:15,301 d.e.f INFO IP: 123.231.231.123 User: fred A " -"message at INFO level with 2 parameters" -msgstr "" - -#: ../../howto/logging-cookbook.rst:1028 +"2010-09-06 22:38:15,292 a.b.c DEBUG IP: 123.231.231.123 User: fred A debug message\n" +"2010-09-06 22:38:15,300 a.b.c INFO IP: 192.168.0.1 User: sheila An info message with some parameters\n" +"2010-09-06 22:38:15,300 d.e.f CRITICAL IP: 127.0.0.1 User: sheila A message at CRITICAL level with 2 parameters\n" +"2010-09-06 22:38:15,300 d.e.f ERROR IP: 127.0.0.1 User: jim A message at ERROR level with 2 parameters\n" +"2010-09-06 22:38:15,300 d.e.f DEBUG IP: 127.0.0.1 User: sheila A message at DEBUG level with 2 parameters\n" +"2010-09-06 22:38:15,300 d.e.f ERROR IP: 123.231.231.123 User: fred A message at ERROR level with 2 parameters\n" +"2010-09-06 22:38:15,300 d.e.f CRITICAL IP: 192.168.0.1 User: jim A message at CRITICAL level with 2 parameters\n" +"2010-09-06 22:38:15,300 d.e.f CRITICAL IP: 127.0.0.1 User: sheila A message at CRITICAL level with 2 parameters\n" +"2010-09-06 22:38:15,300 d.e.f DEBUG IP: 192.168.0.1 User: jim A message at DEBUG level with 2 parameters\n" +"2010-09-06 22:38:15,301 d.e.f ERROR IP: 127.0.0.1 User: sheila A message at ERROR level with 2 parameters\n" +"2010-09-06 22:38:15,301 d.e.f DEBUG IP: 123.231.231.123 User: fred A message at DEBUG level with 2 parameters\n" +"2010-09-06 22:38:15,301 d.e.f INFO IP: 123.231.231.123 User: fred A message at INFO level with 2 parameters" +msgstr "" + msgid "Use of ``contextvars``" msgstr "" -#: ../../howto/logging-cookbook.rst:1030 -msgid "" -"Since Python 3.7, the :mod:`contextvars` module has provided context-local " -"storage which works for both :mod:`threading` and :mod:`asyncio` processing " -"needs. This type of storage may thus be generally preferable to thread-" -"locals. The following example shows how, in a multi-threaded environment, " -"logs can populated with contextual information such as, for example, request " -"attributes handled by web applications." +msgid "Since Python 3.7, the :mod:`contextvars` module has provided context-local storage which works for both :mod:`threading` and :mod:`asyncio` processing needs. This type of storage may thus be generally preferable to thread-locals. The following example shows how, in a multi-threaded environment, logs can populated with contextual information such as, for example, request attributes handled by web applications." msgstr "" -#: ../../howto/logging-cookbook.rst:1036 -msgid "" -"For the purposes of illustration, say that you have different web " -"applications, each independent of the other but running in the same Python " -"process and using a library common to them. How can each of these " -"applications have their own log, where all logging messages from the library " -"(and other request processing code) are directed to the appropriate " -"application's log file, while including in the log additional contextual " -"information such as client IP, HTTP request method and client username?" +msgid "For the purposes of illustration, say that you have different web applications, each independent of the other but running in the same Python process and using a library common to them. How can each of these applications have their own log, where all logging messages from the library (and other request processing code) are directed to the appropriate application's log file, while including in the log additional contextual information such as client IP, HTTP request method and client username?" msgstr "" -#: ../../howto/logging-cookbook.rst:1043 msgid "Let's assume that the library can be simulated by the following code:" msgstr "" -#: ../../howto/logging-cookbook.rst:1045 msgid "" "# webapplib.py\n" "import logging\n" @@ -1411,14 +999,9 @@ msgid "" " time.sleep(0.01)" msgstr "" -#: ../../howto/logging-cookbook.rst:1059 -msgid "" -"We can simulate the multiple web applications by means of two simple " -"classes, ``Request`` and ``WebApp``. These simulate how real threaded web " -"applications work - each request is handled by a thread:" +msgid "We can simulate the multiple web applications by means of two simple classes, ``Request`` and ``WebApp``. These simulate how real threaded web applications work - each request is handled by a thread:" msgstr "" -#: ../../howto/logging-cookbook.rst:1063 msgid "" "# main.py\n" "import argparse\n" @@ -1435,8 +1018,7 @@ msgid "" "\n" "class Request:\n" " \"\"\"\n" -" A simple dummy request class which just holds dummy HTTP request " -"method,\n" +" A simple dummy request class which just holds dummy HTTP request method,\n" " client IP address and client username\n" " \"\"\"\n" " def __init__(self, method, ip, user):\n" @@ -1444,12 +1026,9 @@ msgid "" " self.ip = ip\n" " self.user = user\n" "\n" -"# A dummy set of requests which will be used in the simulation - we'll just " -"pick\n" -"# from this list randomly. Note that all GET requests are from " -"192.168.2.XXX\n" -"# addresses, whereas POST requests are from 192.16.3.XXX addresses. Three " -"users\n" +"# A dummy set of requests which will be used in the simulation - we'll just pick\n" +"# from this list randomly. Note that all GET requests are from 192.168.2.XXX\n" +"# addresses, whereas POST requests are from 192.16.3.XXX addresses. Three users\n" "# are represented in the sample requests.\n" "\n" "REQUESTS = [\n" @@ -1461,15 +1040,12 @@ msgid "" " Request('POST', '192.168.3.22', 'sheila'),\n" "]\n" "\n" -"# Note that the format string includes references to request context " -"information\n" +"# Note that the format string includes references to request context information\n" "# such as HTTP method, client IP and username\n" "\n" -"formatter = logging.Formatter('%(threadName)-11s %(appName)s %(name)-9s %" -"(user)-6s %(ip)s %(method)-4s %(message)s')\n" +"formatter = logging.Formatter('%(threadName)-11s %(appName)s %(name)-9s %(user)-6s %(ip)s %(method)-4s %(message)s')\n" "\n" -"# Create our context variables. These will be filled at the start of " -"request\n" +"# Create our context variables. These will be filled at the start of request\n" "# processing, and used in the logging that happens during that processing\n" "\n" "ctx_request = ContextVar('request')\n" @@ -1477,8 +1053,7 @@ msgid "" "\n" "class InjectingFilter(logging.Filter):\n" " \"\"\"\n" -" A filter which injects context-specific information into logs and " -"ensures\n" +" A filter which injects context-specific information into logs and ensures\n" " that only information for a specific webapp is included in its log\n" " \"\"\"\n" " def __init__(self, app):\n" @@ -1494,8 +1069,7 @@ msgid "" "\n" "class WebApp:\n" " \"\"\"\n" -" A dummy web application class which has its own handler and filter for " -"a\n" +" A dummy web application class which has its own handler and filter for a\n" " webapp-specific log.\n" " \"\"\"\n" " def __init__(self, name):\n" @@ -1510,8 +1084,7 @@ msgid "" " def process_request(self, request):\n" " \"\"\"\n" " This is the dummy method for processing a request. It's called on a\n" -" different thread for every request. We store the context information " -"into\n" +" different thread for every request. We store the context information into\n" " the context vars before doing anything else.\n" " \"\"\"\n" " ctx_request.set(request)\n" @@ -1527,17 +1100,14 @@ msgid "" " ap = argparse.ArgumentParser(formatter_class=adhf, prog=fn,\n" " description='Simulate a couple of web '\n" " 'applications handling some '\n" -" 'requests, showing how request " -"'\n" +" 'requests, showing how request '\n" " 'context can be used to '\n" " 'populate logs')\n" " aa = ap.add_argument\n" -" aa('--count', '-c', type=int, default=100, help='How many requests to " -"simulate')\n" +" aa('--count', '-c', type=int, default=100, help='How many requests to simulate')\n" " options = ap.parse_args()\n" "\n" -" # Create the dummy webapps and put them in a list which we can use to " -"select\n" +" # Create the dummy webapps and put them in a list which we can use to select\n" " # from randomly\n" " app1 = WebApp('app1')\n" " app2 = WebApp('app2')\n" @@ -1555,8 +1125,7 @@ msgid "" " app = choice(apps)\n" " request = choice(REQUESTS)\n" " # Process the request in its own thread\n" -" t = threading.Thread(target=app.process_request, " -"args=(request,))\n" +" t = threading.Thread(target=app.process_request, args=(request,))\n" " threads.append(t)\n" " t.start()\n" " except KeyboardInterrupt:\n" @@ -1573,18 +1142,9 @@ msgid "" " main()" msgstr "" -#: ../../howto/logging-cookbook.rst:1203 -msgid "" -"If you run the above, you should find that roughly half the requests go " -"into :file:`app1.log` and the rest into :file:`app2.log`, and the all the " -"requests are logged to :file:`app.log`. Each webapp-specific log will " -"contain only log entries for only that webapp, and the request information " -"will be displayed consistently in the log (i.e. the information in each " -"dummy request will always appear together in a log line). This is " -"illustrated by the following shell output:" +msgid "If you run the above, you should find that roughly half the requests go into :file:`app1.log` and the rest into :file:`app2.log`, and the all the requests are logged to :file:`app.log`. Each webapp-specific log will contain only log entries for only that webapp, and the request information will be displayed consistently in the log (i.e. the information in each dummy request will always appear together in a log line). This is illustrated by the following shell output:" msgstr "" -#: ../../howto/logging-cookbook.rst:1210 msgid "" "~/logging-contextual-webapp$ python main.py\n" "app1 processed 51 requests\n" @@ -1595,40 +1155,24 @@ msgid "" " 300 app.log\n" " 600 total\n" "~/logging-contextual-webapp$ head -3 app1.log\n" -"Thread-3 (process_request) app1 __main__ jim 192.168.3.21 POST Request " -"processing started\n" -"Thread-3 (process_request) app1 webapplib jim 192.168.3.21 POST Hello " -"from webapplib!\n" -"Thread-5 (process_request) app1 __main__ jim 192.168.3.21 POST Request " -"processing started\n" +"Thread-3 (process_request) app1 __main__ jim 192.168.3.21 POST Request processing started\n" +"Thread-3 (process_request) app1 webapplib jim 192.168.3.21 POST Hello from webapplib!\n" +"Thread-5 (process_request) app1 __main__ jim 192.168.3.21 POST Request processing started\n" "~/logging-contextual-webapp$ head -3 app2.log\n" -"Thread-1 (process_request) app2 __main__ sheila 192.168.2.21 GET Request " -"processing started\n" -"Thread-1 (process_request) app2 webapplib sheila 192.168.2.21 GET Hello " -"from webapplib!\n" -"Thread-2 (process_request) app2 __main__ jim 192.168.2.20 GET Request " -"processing started\n" +"Thread-1 (process_request) app2 __main__ sheila 192.168.2.21 GET Request processing started\n" +"Thread-1 (process_request) app2 webapplib sheila 192.168.2.21 GET Hello from webapplib!\n" +"Thread-2 (process_request) app2 __main__ jim 192.168.2.20 GET Request processing started\n" "~/logging-contextual-webapp$ head app.log\n" -"Thread-1 (process_request) app2 __main__ sheila 192.168.2.21 GET Request " -"processing started\n" -"Thread-1 (process_request) app2 webapplib sheila 192.168.2.21 GET Hello " -"from webapplib!\n" -"Thread-2 (process_request) app2 __main__ jim 192.168.2.20 GET Request " -"processing started\n" -"Thread-3 (process_request) app1 __main__ jim 192.168.3.21 POST Request " -"processing started\n" -"Thread-2 (process_request) app2 webapplib jim 192.168.2.20 GET Hello " -"from webapplib!\n" -"Thread-3 (process_request) app1 webapplib jim 192.168.3.21 POST Hello " -"from webapplib!\n" -"Thread-4 (process_request) app2 __main__ fred 192.168.2.22 GET Request " -"processing started\n" -"Thread-5 (process_request) app1 __main__ jim 192.168.3.21 POST Request " -"processing started\n" -"Thread-4 (process_request) app2 webapplib fred 192.168.2.22 GET Hello " -"from webapplib!\n" -"Thread-6 (process_request) app1 __main__ jim 192.168.3.21 POST Request " -"processing started\n" +"Thread-1 (process_request) app2 __main__ sheila 192.168.2.21 GET Request processing started\n" +"Thread-1 (process_request) app2 webapplib sheila 192.168.2.21 GET Hello from webapplib!\n" +"Thread-2 (process_request) app2 __main__ jim 192.168.2.20 GET Request processing started\n" +"Thread-3 (process_request) app1 __main__ jim 192.168.3.21 POST Request processing started\n" +"Thread-2 (process_request) app2 webapplib jim 192.168.2.20 GET Hello from webapplib!\n" +"Thread-3 (process_request) app1 webapplib jim 192.168.3.21 POST Hello from webapplib!\n" +"Thread-4 (process_request) app2 __main__ fred 192.168.2.22 GET Request processing started\n" +"Thread-5 (process_request) app1 __main__ jim 192.168.3.21 POST Request processing started\n" +"Thread-4 (process_request) app2 webapplib fred 192.168.2.22 GET Hello from webapplib!\n" +"Thread-6 (process_request) app1 __main__ jim 192.168.3.21 POST Request processing started\n" "~/logging-contextual-webapp$ grep app1 app1.log | wc -l\n" "153\n" "~/logging-contextual-webapp$ grep app2 app2.log | wc -l\n" @@ -1639,19 +1183,12 @@ msgid "" "147" msgstr "" -#: ../../howto/logging-cookbook.rst:1250 msgid "Imparting contextual information in handlers" msgstr "" -#: ../../howto/logging-cookbook.rst:1252 -msgid "" -"Each :class:`~Handler` has its own chain of filters. If you want to add " -"contextual information to a :class:`LogRecord` without leaking it to other " -"handlers, you can use a filter that returns a new :class:`~LogRecord` " -"instead of modifying it in-place, as shown in the following script::" +msgid "Each :class:`~Handler` has its own chain of filters. If you want to add contextual information to a :class:`LogRecord` without leaking it to other handlers, you can use a filter that returns a new :class:`~LogRecord` instead of modifying it in-place, as shown in the following script::" msgstr "" -#: ../../howto/logging-cookbook.rst:1257 msgid "" "import copy\n" "import logging\n" @@ -1673,51 +1210,18 @@ msgid "" " logger.info('A log message')" msgstr "" -#: ../../howto/logging-cookbook.rst:1279 msgid "Logging to a single file from multiple processes" msgstr "" -#: ../../howto/logging-cookbook.rst:1281 -msgid "" -"Although logging is thread-safe, and logging to a single file from multiple " -"threads in a single process *is* supported, logging to a single file from " -"*multiple processes* is *not* supported, because there is no standard way to " -"serialize access to a single file across multiple processes in Python. If " -"you need to log to a single file from multiple processes, one way of doing " -"this is to have all the processes log to a :class:`~handlers.SocketHandler`, " -"and have a separate process which implements a socket server which reads " -"from the socket and logs to file. (If you prefer, you can dedicate one " -"thread in one of the existing processes to perform this " -"function.) :ref:`This section ` documents this approach in " -"more detail and includes a working socket receiver which can be used as a " -"starting point for you to adapt in your own applications." -msgstr "" - -#: ../../howto/logging-cookbook.rst:1294 -msgid "" -"You could also write your own handler which uses " -"the :class:`~multiprocessing.Lock` class from the :mod:`multiprocessing` " -"module to serialize access to the file from your processes. The " -"stdlib :class:`FileHandler` and subclasses do not make use " -"of :mod:`multiprocessing`." +msgid "Although logging is thread-safe, and logging to a single file from multiple threads in a single process *is* supported, logging to a single file from *multiple processes* is *not* supported, because there is no standard way to serialize access to a single file across multiple processes in Python. If you need to log to a single file from multiple processes, one way of doing this is to have all the processes log to a :class:`~handlers.SocketHandler`, and have a separate process which implements a socket server which reads from the socket and logs to file. (If you prefer, you can dedicate one thread in one of the existing processes to perform this function.) :ref:`This section ` documents this approach in more detail and includes a working socket receiver which can be used as a starting point for you to adapt in your own applications." +msgstr "" + +msgid "You could also write your own handler which uses the :class:`~multiprocessing.Lock` class from the :mod:`multiprocessing` module to serialize access to the file from your processes. The stdlib :class:`FileHandler` and subclasses do not make use of :mod:`multiprocessing`." +msgstr "" + +msgid "Alternatively, you can use a ``Queue`` and a :class:`QueueHandler` to send all logging events to one of the processes in your multi-process application. The following example script demonstrates how you can do this; in the example a separate listener process listens for events sent by other processes and logs them according to its own logging configuration. Although the example only demonstrates one way of doing it (for example, you may want to use a listener thread rather than a separate listener process -- the implementation would be analogous) it does allow for completely different logging configurations for the listener and the other processes in your application, and can be used as the basis for code meeting your own specific requirements::" msgstr "" -#: ../../howto/logging-cookbook.rst:1301 -msgid "" -"Alternatively, you can use a ``Queue`` and a :class:`QueueHandler` to send " -"all logging events to one of the processes in your multi-process " -"application. The following example script demonstrates how you can do this; " -"in the example a separate listener process listens for events sent by other " -"processes and logs them according to its own logging configuration. Although " -"the example only demonstrates one way of doing it (for example, you may want " -"to use a listener thread rather than a separate listener process -- the " -"implementation would be analogous) it does allow for completely different " -"logging configurations for the listener and the other processes in your " -"application, and can be used as the basis for code meeting your own specific " -"requirements::" -msgstr "" - -#: ../../howto/logging-cookbook.rst:1312 msgid "" "# You'll need these imports in your own code\n" "import logging\n" @@ -1729,29 +1233,21 @@ msgid "" "import time\n" "\n" "#\n" -"# Because you'll want to define the logging configurations for listener and " -"workers, the\n" -"# listener and worker process functions take a configurer parameter which is " -"a callable\n" -"# for configuring logging for that process. These functions are also passed " -"the queue,\n" +"# Because you'll want to define the logging configurations for listener and workers, the\n" +"# listener and worker process functions take a configurer parameter which is a callable\n" +"# for configuring logging for that process. These functions are also passed the queue,\n" "# which they use for communication.\n" "#\n" -"# In practice, you can configure the listener however you want, but note " -"that in this\n" -"# simple example, the listener does not apply level or filter logic to " -"received records.\n" -"# In practice, you would probably want to do this logic in the worker " -"processes, to avoid\n" +"# In practice, you can configure the listener however you want, but note that in this\n" +"# simple example, the listener does not apply level or filter logic to received records.\n" +"# In practice, you would probably want to do this logic in the worker processes, to avoid\n" "# sending events which would be filtered out between processes.\n" "#\n" -"# The size of the rotated files is made small so you can see the results " -"easily.\n" +"# The size of the rotated files is made small so you can see the results easily.\n" "def listener_configurer():\n" " root = logging.getLogger()\n" " h = logging.handlers.RotatingFileHandler('mptest.log', 'a', 300, 10)\n" -" f = logging.Formatter('%(asctime)s %(processName)-10s %(name)s %" -"(levelname)-8s %(message)s')\n" +" f = logging.Formatter('%(asctime)s %(processName)-10s %(name)s %(levelname)-8s %(message)s')\n" " h.setFormatter(f)\n" " root.addHandler(h)\n" "\n" @@ -1763,12 +1259,10 @@ msgid "" " while True:\n" " try:\n" " record = queue.get()\n" -" if record is None: # We send this as a sentinel to tell the " -"listener to quit.\n" +" if record is None: # We send this as a sentinel to tell the listener to quit.\n" " break\n" " logger = logging.getLogger(record.name)\n" -" logger.handle(record) # No level or filter logic applied - just " -"do it!\n" +" logger.handle(record) # No level or filter logic applied - just do it!\n" " except Exception:\n" " import sys, traceback\n" " print('Whoops! Problem:', file=sys.stderr)\n" @@ -1797,8 +1291,7 @@ msgid "" " # send all messages, for demo; no other level or filter logic applied.\n" " root.setLevel(logging.DEBUG)\n" "\n" -"# This is the worker process top-level loop, which just logs ten events " -"with\n" +"# This is the worker process top-level loop, which just logs ten events with\n" "# random intervening delays before terminating.\n" "# The print messages are just so you know it's doing something!\n" "def worker_process(queue, configurer):\n" @@ -1813,8 +1306,7 @@ msgid "" " logger.log(level, message)\n" " print('Worker finished: %s' % name)\n" "\n" -"# Here's where the demo gets orchestrated. Create the queue, create and " -"start\n" +"# Here's where the demo gets orchestrated. Create the queue, create and start\n" "# the listener, create ten workers and start them, wait for them to finish,\n" "# then send a None to the queue to tell the listener to finish.\n" "def main():\n" @@ -1837,13 +1329,9 @@ msgid "" " main()" msgstr "" -#: ../../howto/logging-cookbook.rst:1417 -msgid "" -"A variant of the above script keeps the logging in the main process, in a " -"separate thread::" +msgid "A variant of the above script keeps the logging in the main process, in a separate thread::" msgstr "" -#: ../../howto/logging-cookbook.rst:1420 msgid "" "import logging\n" "import logging.config\n" @@ -1883,8 +1371,7 @@ msgid "" " 'formatters': {\n" " 'detailed': {\n" " 'class': 'logging.Formatter',\n" -" 'format': '%(asctime)s %(name)-15s %(levelname)-8s %" -"(processName)-10s %(message)s'\n" +" 'format': '%(asctime)s %(name)-15s %(levelname)-8s %(processName)-10s %(message)s'\n" " }\n" " },\n" " 'handlers': {\n" @@ -1924,8 +1411,7 @@ msgid "" " }\n" " workers = []\n" " for i in range(5):\n" -" wp = Process(target=worker_process, name='worker %d' % (i + 1), " -"args=(q,))\n" +" wp = Process(target=worker_process, name='worker %d' % (i + 1), args=(q,))\n" " workers.append(wp)\n" " wp.start()\n" " logging.config.dictConfig(d)\n" @@ -1940,46 +1426,27 @@ msgid "" " lp.join()" msgstr "" -#: ../../howto/logging-cookbook.rst:1512 -msgid "" -"This variant shows how you can e.g. apply configuration for particular " -"loggers - e.g. the ``foo`` logger has a special handler which stores all " -"events in the ``foo`` subsystem in a file ``mplog-foo.log``. This will be " -"used by the logging machinery in the main process (even though the logging " -"events are generated in the worker processes) to direct the messages to the " -"appropriate destinations." +msgid "This variant shows how you can e.g. apply configuration for particular loggers - e.g. the ``foo`` logger has a special handler which stores all events in the ``foo`` subsystem in a file ``mplog-foo.log``. This will be used by the logging machinery in the main process (even though the logging events are generated in the worker processes) to direct the messages to the appropriate destinations." msgstr "" -#: ../../howto/logging-cookbook.rst:1519 msgid "Using concurrent.futures.ProcessPoolExecutor" msgstr "" -#: ../../howto/logging-cookbook.rst:1521 -msgid "" -"If you want to use :class:`concurrent.futures.ProcessPoolExecutor` to start " -"your worker processes, you need to create the queue slightly differently. " -"Instead of" +msgid "If you want to use :class:`concurrent.futures.ProcessPoolExecutor` to start your worker processes, you need to create the queue slightly differently. Instead of" msgstr "" -#: ../../howto/logging-cookbook.rst:1525 msgid "queue = multiprocessing.Queue(-1)" msgstr "" -#: ../../howto/logging-cookbook.rst:1529 msgid "you should use" msgstr "" -#: ../../howto/logging-cookbook.rst:1531 -msgid "" -"queue = multiprocessing.Manager().Queue(-1) # also works with the examples " -"above" +msgid "queue = multiprocessing.Manager().Queue(-1) # also works with the examples above" msgstr "" -#: ../../howto/logging-cookbook.rst:1535 msgid "and you can then replace the worker creation from this::" msgstr "" -#: ../../howto/logging-cookbook.rst:1537 msgid "" "workers = []\n" "for i in range(10):\n" @@ -1991,47 +1458,27 @@ msgid "" " w.join()" msgstr "" -#: ../../howto/logging-cookbook.rst:1546 msgid "to this (remembering to first import :mod:`concurrent.futures`)::" msgstr "" -#: ../../howto/logging-cookbook.rst:1548 msgid "" "with concurrent.futures.ProcessPoolExecutor(max_workers=10) as executor:\n" " for i in range(10):\n" " executor.submit(worker_process, queue, worker_configurer)" msgstr "" -#: ../../howto/logging-cookbook.rst:1553 msgid "Deploying web applications using Gunicorn and uWSGI" msgstr "" -#: ../../howto/logging-cookbook.rst:1555 -msgid "" -"When deploying web applications using `Gunicorn `_ or " -"`uWSGI `_ (or similar), " -"multiple worker processes are created to handle client requests. In such " -"environments, avoid creating file-based handlers directly in your web " -"application. Instead, use a :class:`SocketHandler` to log from the web " -"application to a listener in a separate process. This can be set up using a " -"process management tool such as Supervisor - see `Running a logging socket " -"listener in production`_ for more details." +msgid "When deploying web applications using `Gunicorn `_ or `uWSGI `_ (or similar), multiple worker processes are created to handle client requests. In such environments, avoid creating file-based handlers directly in your web application. Instead, use a :class:`SocketHandler` to log from the web application to a listener in a separate process. This can be set up using a process management tool such as Supervisor - see `Running a logging socket listener in production`_ for more details." msgstr "" -#: ../../howto/logging-cookbook.rst:1565 msgid "Using file rotation" msgstr "" -#: ../../howto/logging-cookbook.rst:1570 -msgid "" -"Sometimes you want to let a log file grow to a certain size, then open a new " -"file and log to that. You may want to keep a certain number of these files, " -"and when that many files have been created, rotate the files so that the " -"number of files and the size of the files both remain bounded. For this " -"usage pattern, the logging package provides a :class:`RotatingFileHandler`::" +msgid "Sometimes you want to let a log file grow to a certain size, then open a new file and log to that. You may want to keep a certain number of these files, and when that many files have been created, rotate the files so that the number of files and the size of the files both remain bounded. For this usage pattern, the logging package provides a :class:`RotatingFileHandler`::" msgstr "" -#: ../../howto/logging-cookbook.rst:1576 msgid "" "import glob\n" "import logging\n" @@ -2060,13 +1507,9 @@ msgid "" " print(filename)" msgstr "" -#: ../../howto/logging-cookbook.rst:1602 -msgid "" -"The result should be 6 separate files, each with part of the log history for " -"the application:" +msgid "The result should be 6 separate files, each with part of the log history for the application:" msgstr "" -#: ../../howto/logging-cookbook.rst:1605 msgid "" "logging_rotatingfile_example.out\n" "logging_rotatingfile_example.out.1\n" @@ -2076,47 +1519,21 @@ msgid "" "logging_rotatingfile_example.out.5" msgstr "" -#: ../../howto/logging-cookbook.rst:1614 -msgid "" -"The most current file is always :file:`logging_rotatingfile_example.out`, " -"and each time it reaches the size limit it is renamed with the suffix " -"``.1``. Each of the existing backup files is renamed to increment the suffix " -"(``.1`` becomes ``.2``, etc.) and the ``.6`` file is erased." +msgid "The most current file is always :file:`logging_rotatingfile_example.out`, and each time it reaches the size limit it is renamed with the suffix ``.1``. Each of the existing backup files is renamed to increment the suffix (``.1`` becomes ``.2``, etc.) and the ``.6`` file is erased." msgstr "" -#: ../../howto/logging-cookbook.rst:1619 -msgid "" -"Obviously this example sets the log length much too small as an extreme " -"example. You would want to set *maxBytes* to an appropriate value." +msgid "Obviously this example sets the log length much too small as an extreme example. You would want to set *maxBytes* to an appropriate value." msgstr "" -#: ../../howto/logging-cookbook.rst:1627 msgid "Use of alternative formatting styles" msgstr "" -#: ../../howto/logging-cookbook.rst:1629 -msgid "" -"When logging was added to the Python standard library, the only way of " -"formatting messages with variable content was to use the %-formatting " -"method. Since then, Python has gained two new formatting " -"approaches: :class:`string.Template` (added in Python 2.4) " -"and :meth:`str.format` (added in Python 2.6)." +msgid "When logging was added to the Python standard library, the only way of formatting messages with variable content was to use the %-formatting method. Since then, Python has gained two new formatting approaches: :class:`string.Template` (added in Python 2.4) and :meth:`str.format` (added in Python 2.6)." +msgstr "" + +msgid "Logging (as of 3.2) provides improved support for these two additional formatting styles. The :class:`Formatter` class been enhanced to take an additional, optional keyword parameter named ``style``. This defaults to ``'%'``, but other possible values are ``'{'`` and ``'$'``, which correspond to the other two formatting styles. Backwards compatibility is maintained by default (as you would expect), but by explicitly specifying a style parameter, you get the ability to specify format strings which work with :meth:`str.format` or :class:`string.Template`. Here's an example console session to show the possibilities:" msgstr "" -#: ../../howto/logging-cookbook.rst:1635 -msgid "" -"Logging (as of 3.2) provides improved support for these two additional " -"formatting styles. The :class:`Formatter` class been enhanced to take an " -"additional, optional keyword parameter named ``style``. This defaults to " -"``'%'``, but other possible values are ``'{'`` and ``'$'``, which correspond " -"to the other two formatting styles. Backwards compatibility is maintained by " -"default (as you would expect), but by explicitly specifying a style " -"parameter, you get the ability to specify format strings which work " -"with :meth:`str.format` or :class:`string.Template`. Here's an example " -"console session to show the possibilities:" -msgstr "" - -#: ../../howto/logging-cookbook.rst:1645 msgid "" ">>> import logging\n" ">>> root = logging.getLogger()\n" @@ -2141,46 +1558,21 @@ msgid "" ">>>" msgstr "" -#: ../../howto/logging-cookbook.rst:1669 -msgid "" -"Note that the formatting of logging messages for final output to logs is " -"completely independent of how an individual logging message is constructed. " -"That can still use %-formatting, as shown here::" +msgid "Note that the formatting of logging messages for final output to logs is completely independent of how an individual logging message is constructed. That can still use %-formatting, as shown here::" msgstr "" -#: ../../howto/logging-cookbook.rst:1673 msgid "" ">>> logger.error('This is an%s %s %s', 'other,', 'ERROR,', 'message')\n" "2010-10-28 15:19:29,833 foo.bar ERROR This is another, ERROR, message\n" ">>>" msgstr "" -#: ../../howto/logging-cookbook.rst:1677 -msgid "" -"Logging calls (``logger.debug()``, ``logger.info()`` etc.) only take " -"positional parameters for the actual logging message itself, with keyword " -"parameters used only for determining options for how to handle the actual " -"logging call (e.g. the ``exc_info`` keyword parameter to indicate that " -"traceback information should be logged, or the ``extra`` keyword parameter " -"to indicate additional contextual information to be added to the log). So " -"you cannot directly make logging calls using :meth:`str.format` " -"or :class:`string.Template` syntax, because internally the logging package " -"uses %-formatting to merge the format string and the variable arguments. " -"There would be no changing this while preserving backward compatibility, " -"since all logging calls which are out there in existing code will be using %-" -"format strings." -msgstr "" - -#: ../../howto/logging-cookbook.rst:1690 -msgid "" -"There is, however, a way that you can use {}- and $- formatting to construct " -"your individual log messages. Recall that for a message you can use an " -"arbitrary object as a message format string, and that the logging package " -"will call ``str()`` on that object to get the actual format string. Consider " -"the following two classes::" +msgid "Logging calls (``logger.debug()``, ``logger.info()`` etc.) only take positional parameters for the actual logging message itself, with keyword parameters used only for determining options for how to handle the actual logging call (e.g. the ``exc_info`` keyword parameter to indicate that traceback information should be logged, or the ``extra`` keyword parameter to indicate additional contextual information to be added to the log). So you cannot directly make logging calls using :meth:`str.format` or :class:`string.Template` syntax, because internally the logging package uses %-formatting to merge the format string and the variable arguments. There would be no changing this while preserving backward compatibility, since all logging calls which are out there in existing code will be using %-format strings." +msgstr "" + +msgid "There is, however, a way that you can use {}- and $- formatting to construct your individual log messages. Recall that for a message you can use an arbitrary object as a message format string, and that the logging package will call ``str()`` on that object to get the actual format string. Consider the following two classes::" msgstr "" -#: ../../howto/logging-cookbook.rst:1696 ../../howto/logging-cookbook.rst:2784 msgid "" "class BraceMessage:\n" " def __init__(self, fmt, /, *args, **kwargs):\n" @@ -2201,25 +1593,12 @@ msgid "" " return Template(self.fmt).substitute(**self.kwargs)" msgstr "" -#: ../../howto/logging-cookbook.rst:1714 -msgid "" -"Either of these can be used in place of a format string, to allow {}- or $-" -"formatting to be used to build the actual \"message\" part which appears in " -"the formatted log output in place of \"%(message)s\" or \"{message}\" or " -"\"$message\". It's a little unwieldy to use the class names whenever you " -"want to log something, but it's quite palatable if you use an alias such as " -"__ (double underscore --- not to be confused with _, the single underscore " -"used as a synonym/alias for :func:`gettext.gettext` or its brethren)." +msgid "Either of these can be used in place of a format string, to allow {}- or $-formatting to be used to build the actual \"message\" part which appears in the formatted log output in place of \"%(message)s\" or \"{message}\" or \"$message\". It's a little unwieldy to use the class names whenever you want to log something, but it's quite palatable if you use an alias such as __ (double underscore --- not to be confused with _, the single underscore used as a synonym/alias for :func:`gettext.gettext` or its brethren)." msgstr "" -#: ../../howto/logging-cookbook.rst:1722 -msgid "" -"The above classes are not included in Python, though they're easy enough to " -"copy and paste into your own code. They can be used as follows (assuming " -"that they're declared in a module called ``wherever``):" +msgid "The above classes are not included in Python, though they're easy enough to copy and paste into your own code. They can be used as follows (assuming that they're declared in a module called ``wherever``):" msgstr "" -#: ../../howto/logging-cookbook.rst:1726 msgid "" ">>> from wherever import BraceMessage as __\n" ">>> print(__('Message with {0} {name}', 2, name='placeholders'))\n" @@ -2238,31 +1617,15 @@ msgid "" ">>>" msgstr "" -#: ../../howto/logging-cookbook.rst:1744 -msgid "" -"While the above examples use ``print()`` to show how the formatting works, " -"you would of course use ``logger.debug()`` or similar to actually log using " -"this approach." +msgid "While the above examples use ``print()`` to show how the formatting works, you would of course use ``logger.debug()`` or similar to actually log using this approach." msgstr "" -#: ../../howto/logging-cookbook.rst:1748 -msgid "" -"One thing to note is that you pay no significant performance penalty with " -"this approach: the actual formatting happens not when you make the logging " -"call, but when (and if) the logged message is actually about to be output to " -"a log by a handler. So the only slightly unusual thing which might trip you " -"up is that the parentheses go around the format string and the arguments, " -"not just the format string. That's because the __ notation is just syntax " -"sugar for a constructor call to one of the :samp:`{XXX}Message` classes." +msgid "One thing to note is that you pay no significant performance penalty with this approach: the actual formatting happens not when you make the logging call, but when (and if) the logged message is actually about to be output to a log by a handler. So the only slightly unusual thing which might trip you up is that the parentheses go around the format string and the arguments, not just the format string. That's because the __ notation is just syntax sugar for a constructor call to one of the :samp:`{XXX}Message` classes." msgstr "" -#: ../../howto/logging-cookbook.rst:1756 -msgid "" -"If you prefer, you can use a :class:`LoggerAdapter` to achieve a similar " -"effect to the above, as in the following example::" +msgid "If you prefer, you can use a :class:`LoggerAdapter` to achieve a similar effect to the above, as in the following example::" msgstr "" -#: ../../howto/logging-cookbook.rst:1759 msgid "" "import logging\n" "\n" @@ -2291,113 +1654,48 @@ msgid "" " main()" msgstr "" -#: ../../howto/logging-cookbook.rst:1785 -msgid "" -"The above script should log the message ``Hello, world!`` when run with " -"Python 3.8 or later." +msgid "The above script should log the message ``Hello, world!`` when run with Python 3.8 or later." msgstr "" -#: ../../howto/logging-cookbook.rst:1794 msgid "Customizing ``LogRecord``" msgstr "" -#: ../../howto/logging-cookbook.rst:1796 -msgid "" -"Every logging event is represented by a :class:`LogRecord` instance. When an " -"event is logged and not filtered out by a logger's level, " -"a :class:`LogRecord` is created, populated with information about the event " -"and then passed to the handlers for that logger (and its ancestors, up to " -"and including the logger where further propagation up the hierarchy is " -"disabled). Before Python 3.2, there were only two places where this creation " -"was done:" +msgid "Every logging event is represented by a :class:`LogRecord` instance. When an event is logged and not filtered out by a logger's level, a :class:`LogRecord` is created, populated with information about the event and then passed to the handlers for that logger (and its ancestors, up to and including the logger where further propagation up the hierarchy is disabled). Before Python 3.2, there were only two places where this creation was done:" msgstr "" -#: ../../howto/logging-cookbook.rst:1803 -msgid "" -":meth:`Logger.makeRecord`, which is called in the normal process of logging " -"an event. This invoked :class:`LogRecord` directly to create an instance." +msgid ":meth:`Logger.makeRecord`, which is called in the normal process of logging an event. This invoked :class:`LogRecord` directly to create an instance." msgstr "" -#: ../../howto/logging-cookbook.rst:1806 -msgid "" -":func:`makeLogRecord`, which is called with a dictionary containing " -"attributes to be added to the LogRecord. This is typically invoked when a " -"suitable dictionary has been received over the network (e.g. in pickle form " -"via a :class:`~handlers.SocketHandler`, or in JSON form via " -"an :class:`~handlers.HTTPHandler`)." +msgid ":func:`makeLogRecord`, which is called with a dictionary containing attributes to be added to the LogRecord. This is typically invoked when a suitable dictionary has been received over the network (e.g. in pickle form via a :class:`~handlers.SocketHandler`, or in JSON form via an :class:`~handlers.HTTPHandler`)." msgstr "" -#: ../../howto/logging-cookbook.rst:1812 -msgid "" -"This has usually meant that if you need to do anything special with " -"a :class:`LogRecord`, you've had to do one of the following." +msgid "This has usually meant that if you need to do anything special with a :class:`LogRecord`, you've had to do one of the following." msgstr "" -#: ../../howto/logging-cookbook.rst:1815 -msgid "" -"Create your own :class:`Logger` subclass, which " -"overrides :meth:`Logger.makeRecord`, and set it " -"using :func:`~logging.setLoggerClass` before any loggers that you care about " -"are instantiated." +msgid "Create your own :class:`Logger` subclass, which overrides :meth:`Logger.makeRecord`, and set it using :func:`~logging.setLoggerClass` before any loggers that you care about are instantiated." msgstr "" -#: ../../howto/logging-cookbook.rst:1818 -msgid "" -"Add a :class:`Filter` to a logger or handler, which does the necessary " -"special manipulation you need when its :meth:`~Filter.filter` method is " -"called." +msgid "Add a :class:`Filter` to a logger or handler, which does the necessary special manipulation you need when its :meth:`~Filter.filter` method is called." msgstr "" -#: ../../howto/logging-cookbook.rst:1822 -msgid "" -"The first approach would be a little unwieldy in the scenario where (say) " -"several different libraries wanted to do different things. Each would " -"attempt to set its own :class:`Logger` subclass, and the one which did this " -"last would win." +msgid "The first approach would be a little unwieldy in the scenario where (say) several different libraries wanted to do different things. Each would attempt to set its own :class:`Logger` subclass, and the one which did this last would win." msgstr "" -#: ../../howto/logging-cookbook.rst:1827 -msgid "" -"The second approach works reasonably well for many cases, but does not allow " -"you to e.g. use a specialized subclass of :class:`LogRecord`. Library " -"developers can set a suitable filter on their loggers, but they would have " -"to remember to do this every time they introduced a new logger (which they " -"would do simply by adding new packages or modules and doing ::" +msgid "The second approach works reasonably well for many cases, but does not allow you to e.g. use a specialized subclass of :class:`LogRecord`. Library developers can set a suitable filter on their loggers, but they would have to remember to do this every time they introduced a new logger (which they would do simply by adding new packages or modules and doing ::" msgstr "" -#: ../../howto/logging-cookbook.rst:1833 msgid "logger = logging.getLogger(__name__)" msgstr "" -#: ../../howto/logging-cookbook.rst:1835 -msgid "" -"at module level). It's probably one too many things to think about. " -"Developers could also add the filter to a :class:`~logging.NullHandler` " -"attached to their top-level logger, but this would not be invoked if an " -"application developer attached a handler to a lower-level library logger --- " -"so output from that handler would not reflect the intentions of the library " -"developer." +msgid "at module level). It's probably one too many things to think about. Developers could also add the filter to a :class:`~logging.NullHandler` attached to their top-level logger, but this would not be invoked if an application developer attached a handler to a lower-level library logger --- so output from that handler would not reflect the intentions of the library developer." msgstr "" -#: ../../howto/logging-cookbook.rst:1841 -msgid "" -"In Python 3.2 and later, :class:`~logging.LogRecord` creation is done " -"through a factory, which you can specify. The factory is just a callable you " -"can set with :func:`~logging.setLogRecordFactory`, and interrogate " -"with :func:`~logging.getLogRecordFactory`. The factory is invoked with the " -"same signature as the :class:`~logging.LogRecord` constructor, " -"as :class:`LogRecord` is the default setting for the factory." +msgid "In Python 3.2 and later, :class:`~logging.LogRecord` creation is done through a factory, which you can specify. The factory is just a callable you can set with :func:`~logging.setLogRecordFactory`, and interrogate with :func:`~logging.getLogRecordFactory`. The factory is invoked with the same signature as the :class:`~logging.LogRecord` constructor, as :class:`LogRecord` is the default setting for the factory." msgstr "" -#: ../../howto/logging-cookbook.rst:1848 -msgid "" -"This approach allows a custom factory to control all aspects of LogRecord " -"creation. For example, you could return a subclass, or just add some " -"additional attributes to the record once created, using a pattern similar to " -"this::" +msgid "This approach allows a custom factory to control all aspects of LogRecord creation. For example, you could return a subclass, or just add some additional attributes to the record once created, using a pattern similar to this::" msgstr "" -#: ../../howto/logging-cookbook.rst:1852 msgid "" "old_factory = logging.getLogRecordFactory()\n" "\n" @@ -2409,32 +1707,18 @@ msgid "" "logging.setLogRecordFactory(record_factory)" msgstr "" -#: ../../howto/logging-cookbook.rst:1861 -msgid "" -"This pattern allows different libraries to chain factories together, and as " -"long as they don't overwrite each other's attributes or unintentionally " -"overwrite the attributes provided as standard, there should be no surprises. " -"However, it should be borne in mind that each link in the chain adds run-" -"time overhead to all logging operations, and the technique should only be " -"used when the use of a :class:`Filter` does not provide the desired result." +msgid "This pattern allows different libraries to chain factories together, and as long as they don't overwrite each other's attributes or unintentionally overwrite the attributes provided as standard, there should be no surprises. However, it should be borne in mind that each link in the chain adds run-time overhead to all logging operations, and the technique should only be used when the use of a :class:`Filter` does not provide the desired result." msgstr "" -#: ../../howto/logging-cookbook.rst:1873 msgid "Subclassing QueueHandler and QueueListener- a ZeroMQ example" msgstr "" -#: ../../howto/logging-cookbook.rst:1876 ../../howto/logging-cookbook.rst:2009 msgid "Subclass ``QueueHandler``" msgstr "" -#: ../../howto/logging-cookbook.rst:1878 -msgid "" -"You can use a :class:`QueueHandler` subclass to send messages to other kinds " -"of queues, for example a ZeroMQ 'publish' socket. In the example below,the " -"socket is created separately and passed to the handler (as its 'queue')::" +msgid "You can use a :class:`QueueHandler` subclass to send messages to other kinds of queues, for example a ZeroMQ 'publish' socket. In the example below,the socket is created separately and passed to the handler (as its 'queue')::" msgstr "" -#: ../../howto/logging-cookbook.rst:1882 msgid "" "import zmq # using pyzmq, the Python binding for ZeroMQ\n" "import json # for serializing records portably\n" @@ -2451,13 +1735,9 @@ msgid "" "handler = ZeroMQSocketHandler(sock)" msgstr "" -#: ../../howto/logging-cookbook.rst:1897 -msgid "" -"Of course there are other ways of organizing this, for example passing in " -"the data needed by the handler to create the socket::" +msgid "Of course there are other ways of organizing this, for example passing in the data needed by the handler to create the socket::" msgstr "" -#: ../../howto/logging-cookbook.rst:1900 msgid "" "class ZeroMQSocketHandler(QueueHandler):\n" " def __init__(self, uri, socktype=zmq.PUB, ctx=None):\n" @@ -2473,24 +1753,18 @@ msgid "" " self.queue.close()" msgstr "" -#: ../../howto/logging-cookbook.rst:1915 ../../howto/logging-cookbook.rst:1945 msgid "Subclass ``QueueListener``" msgstr "" -#: ../../howto/logging-cookbook.rst:1917 -msgid "" -"You can also subclass :class:`QueueListener` to get messages from other " -"kinds of queues, for example a ZeroMQ 'subscribe' socket. Here's an example::" +msgid "You can also subclass :class:`QueueListener` to get messages from other kinds of queues, for example a ZeroMQ 'subscribe' socket. Here's an example::" msgstr "" -#: ../../howto/logging-cookbook.rst:1920 msgid "" "class ZeroMQSocketListener(QueueListener):\n" " def __init__(self, uri, /, *handlers, **kwargs):\n" " self.ctx = kwargs.get('ctx') or zmq.Context()\n" " socket = zmq.Socket(self.ctx, zmq.SUB)\n" -" socket.setsockopt_string(zmq.SUBSCRIBE, '') # subscribe to " -"everything\n" +" socket.setsockopt_string(zmq.SUBSCRIBE, '') # subscribe to everything\n" " socket.connect(uri)\n" " super().__init__(socket, *handlers, **kwargs)\n" "\n" @@ -2499,20 +1773,12 @@ msgid "" " return logging.makeLogRecord(msg)" msgstr "" -#: ../../howto/logging-cookbook.rst:1935 msgid "Subclassing QueueHandler and QueueListener- a ``pynng`` example" msgstr "" -#: ../../howto/logging-cookbook.rst:1937 -msgid "" -"In a similar way to the above section, we can implement a listener and " -"handler using :pypi:`pynng`, which is a Python binding to `NNG `_, billed as a spiritual successor to ZeroMQ. The " -"following snippets illustrate -- you can test them in an environment which " -"has ``pynng`` installed. Just for variety, we present the listener first." +msgid "In a similar way to the above section, we can implement a listener and handler using :pypi:`pynng`, which is a Python binding to `NNG `_, billed as a spiritual successor to ZeroMQ. The following snippets illustrate -- you can test them in an environment which has ``pynng`` installed. Just for variety, we present the listener first." msgstr "" -#: ../../howto/logging-cookbook.rst:1947 msgid "" "# listener.py\n" "import json\n" @@ -2561,8 +1827,7 @@ msgid "" " pass\n" "\n" "logging.getLogger('pynng').propagate = False\n" -"listener = NNGSocketListener(DEFAULT_ADDR, logging.StreamHandler(), " -"topics=b'')\n" +"listener = NNGSocketListener(DEFAULT_ADDR, logging.StreamHandler(), topics=b'')\n" "listener.start()\n" "print('Press Ctrl-C to stop.')\n" "try:\n" @@ -2574,7 +1839,6 @@ msgid "" " listener.stop()" msgstr "" -#: ../../howto/logging-cookbook.rst:2013 msgid "" "# sender.py\n" "import json\n" @@ -2607,8 +1871,7 @@ msgid "" "# Make sure the process ID is in the output\n" "logging.basicConfig(level=logging.DEBUG,\n" " handlers=[logging.StreamHandler(), handler],\n" -" format='%(levelname)-8s %(name)10s %(process)6s %" -"(message)s')\n" +" format='%(levelname)-8s %(name)10s %(process)6s %(message)s')\n" "levels = (logging.DEBUG, logging.INFO, logging.WARNING, logging.ERROR,\n" " logging.CRITICAL)\n" "logger_names = ('myapp', 'myapp.lib1', 'myapp.lib2')\n" @@ -2623,14 +1886,9 @@ msgid "" " time.sleep(delay)" msgstr "" -#: ../../howto/logging-cookbook.rst:2060 -msgid "" -"You can run the above two snippets in separate command shells. If we run the " -"listener in one shell and run the sender in two separate shells, we should " -"see something like the following. In the first sender shell:" +msgid "You can run the above two snippets in separate command shells. If we run the listener in one shell and run the sender in two separate shells, we should see something like the following. In the first sender shell:" msgstr "" -#: ../../howto/logging-cookbook.rst:2064 msgid "" "$ python sender.py\n" "DEBUG myapp 613 Message no. 1\n" @@ -2644,11 +1902,9 @@ msgid "" "(and so on)" msgstr "" -#: ../../howto/logging-cookbook.rst:2077 msgid "In the second sender shell:" msgstr "" -#: ../../howto/logging-cookbook.rst:2079 msgid "" "$ python sender.py\n" "INFO myapp.lib2 657 Message no. 1\n" @@ -2662,11 +1918,9 @@ msgid "" "(and so on)" msgstr "" -#: ../../howto/logging-cookbook.rst:2092 msgid "In the listener shell:" msgstr "" -#: ../../howto/logging-cookbook.rst:2094 msgid "" "$ python listener.py\n" "Press Ctrl-C to stop.\n" @@ -2689,33 +1943,22 @@ msgid "" "(and so on)" msgstr "" -#: ../../howto/logging-cookbook.rst:2116 -msgid "" -"As you can see, the logging from the two sender processes is interleaved in " -"the listener's output." +msgid "As you can see, the logging from the two sender processes is interleaved in the listener's output." msgstr "" -#: ../../howto/logging-cookbook.rst:2121 msgid "An example dictionary-based configuration" msgstr "" -#: ../../howto/logging-cookbook.rst:2123 -msgid "" -"Below is an example of a logging configuration dictionary - it's taken from " -"the `documentation on the Django project `_. This dictionary is passed " -"to :func:`~config.dictConfig` to put the configuration into effect::" +msgid "Below is an example of a logging configuration dictionary - it's taken from the `documentation on the Django project `_. This dictionary is passed to :func:`~config.dictConfig` to put the configuration into effect::" msgstr "" -#: ../../howto/logging-cookbook.rst:2127 msgid "" "LOGGING = {\n" " 'version': 1,\n" " 'disable_existing_loggers': False,\n" " 'formatters': {\n" " 'verbose': {\n" -" 'format': '{levelname} {asctime} {module} {process:d} {thread:d} " -"{message}',\n" +" 'format': '{levelname} {asctime} {module} {process:d} {thread:d} {message}',\n" " 'style': '{',\n" " },\n" " 'simple': {\n" @@ -2760,24 +2003,15 @@ msgid "" "}" msgstr "" -#: ../../howto/logging-cookbook.rst:2176 -msgid "" -"For more information about this configuration, you can see the `relevant " -"section `_ of the Django documentation." +msgid "For more information about this configuration, you can see the `relevant section `_ of the Django documentation." msgstr "" -#: ../../howto/logging-cookbook.rst:2183 msgid "Using a rotator and namer to customize log rotation processing" msgstr "" -#: ../../howto/logging-cookbook.rst:2185 -msgid "" -"An example of how you can define a namer and rotator is given in the " -"following runnable script, which shows gzip compression of the log file::" +msgid "An example of how you can define a namer and rotator is given in the following runnable script, which shows gzip compression of the log file::" msgstr "" -#: ../../howto/logging-cookbook.rst:2188 msgid "" "import gzip\n" "import logging\n" @@ -2795,8 +2029,7 @@ msgid "" " os.remove(source)\n" "\n" "\n" -"rh = logging.handlers.RotatingFileHandler('rotated.log', maxBytes=128, " -"backupCount=5)\n" +"rh = logging.handlers.RotatingFileHandler('rotated.log', maxBytes=128, backupCount=5)\n" "rh.rotator = rotator\n" "rh.namer = namer\n" "\n" @@ -2809,12 +2042,9 @@ msgid "" " root.info(f'Message no. {i + 1}')" msgstr "" -#: ../../howto/logging-cookbook.rst:2216 -msgid "" -"After running this, you will see six new files, five of which are compressed:" +msgid "After running this, you will see six new files, five of which are compressed:" msgstr "" -#: ../../howto/logging-cookbook.rst:2218 msgid "" "$ ls rotated.log*\n" "rotated.log rotated.log.2.gz rotated.log.4.gz\n" @@ -2825,38 +2055,18 @@ msgid "" "2023-01-20 02:28:17,767 Message no. 998" msgstr "" -#: ../../howto/logging-cookbook.rst:2229 msgid "A more elaborate multiprocessing example" msgstr "" -#: ../../howto/logging-cookbook.rst:2231 -msgid "" -"The following working example shows how logging can be used with " -"multiprocessing using configuration files. The configurations are fairly " -"simple, but serve to illustrate how more complex ones could be implemented " -"in a real multiprocessing scenario." +msgid "The following working example shows how logging can be used with multiprocessing using configuration files. The configurations are fairly simple, but serve to illustrate how more complex ones could be implemented in a real multiprocessing scenario." msgstr "" -#: ../../howto/logging-cookbook.rst:2236 -msgid "" -"In the example, the main process spawns a listener process and some worker " -"processes. Each of the main process, the listener and the workers have three " -"separate configurations (the workers all share the same configuration). We " -"can see logging in the main process, how the workers log to a QueueHandler " -"and how the listener implements a QueueListener and a more complex logging " -"configuration, and arranges to dispatch events received via the queue to the " -"handlers specified in the configuration. Note that these configurations are " -"purely illustrative, but you should be able to adapt this example to your " -"own scenario." -msgstr "" - -#: ../../howto/logging-cookbook.rst:2246 -msgid "" -"Here's the script - the docstrings and the comments hopefully explain how it " -"works::" +msgid "In the example, the main process spawns a listener process and some worker processes. Each of the main process, the listener and the workers have three separate configurations (the workers all share the same configuration). We can see logging in the main process, how the workers log to a QueueHandler and how the listener implements a QueueListener and a more complex logging configuration, and arranges to dispatch events received via the queue to the handlers specified in the configuration. Note that these configurations are purely illustrative, but you should be able to adapt this example to your own scenario." +msgstr "" + +msgid "Here's the script - the docstrings and the comments hopefully explain how it works::" msgstr "" -#: ../../howto/logging-cookbook.rst:2249 msgid "" "import logging\n" "import logging.config\n" @@ -2868,8 +2078,7 @@ msgid "" "\n" "class MyHandler:\n" " \"\"\"\n" -" A simple handler for logging events. It runs in the listener process " -"and\n" +" A simple handler for logging events. It runs in the listener process and\n" " dispatches events to loggers based on the name in the received record,\n" " which then get dispatched, by the logging system, to the handlers\n" " configured for those loggers.\n" @@ -2882,11 +2091,9 @@ msgid "" " logger = logging.getLogger(record.name)\n" "\n" " if logger.isEnabledFor(record.levelno):\n" -" # The process name is transformed just to show that it's the " -"listener\n" +" # The process name is transformed just to show that it's the listener\n" " # doing the logging to files and console\n" -" record.processName = '%s (for %s)' % (current_process().name, " -"record.processName)\n" +" record.processName = '%s (for %s)' % (current_process().name, record.processName)\n" " logger.handle(record)\n" "\n" "def listener_process(q, stop_event, config):\n" @@ -2909,8 +2116,7 @@ msgid "" " # exist in the child, so it would be created and the message\n" " # would appear - hence the \"if posix\" clause.\n" " logger = logging.getLogger('setup')\n" -" logger.critical('Should not appear, because of disabled " -"logger ...')\n" +" logger.critical('Should not appear, because of disabled logger ...')\n" " stop_event.wait()\n" " listener.stop()\n" "\n" @@ -2941,8 +2147,7 @@ msgid "" " # exist in the child, so it would be created and the message\n" " # would appear - hence the \"if posix\" clause.\n" " logger = logging.getLogger('setup')\n" -" logger.critical('Should not appear, because of disabled " -"logger ...')\n" +" logger.critical('Should not appear, because of disabled logger ...')\n" " for i in range(100):\n" " lvl = random.choice(levels)\n" " logger = logging.getLogger(random.choice(loggers))\n" @@ -2951,8 +2156,7 @@ msgid "" "\n" "def main():\n" " q = Queue()\n" -" # The main process gets a simple configuration which prints to the " -"console.\n" +" # The main process gets a simple configuration which prints to the console.\n" " config_initial = {\n" " 'version': 1,\n" " 'handlers': {\n" @@ -2966,11 +2170,9 @@ msgid "" " 'level': 'DEBUG'\n" " }\n" " }\n" -" # The worker process configuration is just a QueueHandler attached to " -"the\n" +" # The worker process configuration is just a QueueHandler attached to the\n" " # root logger, which allows all messages to be sent to the queue.\n" -" # We disable existing loggers to disable the \"setup\" logger used in " -"the\n" +" # We disable existing loggers to disable the \"setup\" logger used in the\n" " # parent process. This is needed on POSIX because the logger will\n" " # be there in the child following a fork().\n" " config_worker = {\n" @@ -2988,11 +2190,9 @@ msgid "" " }\n" " }\n" " # The listener process configuration shows that the full flexibility of\n" -" # logging configuration is available to dispatch events to handlers " -"however\n" +" # logging configuration is available to dispatch events to handlers however\n" " # you want.\n" -" # We disable existing loggers to disable the \"setup\" logger used in " -"the\n" +" # We disable existing loggers to disable the \"setup\" logger used in the\n" " # parent process. This is needed on POSIX because the logger will\n" " # be there in the child following a fork().\n" " config_listener = {\n" @@ -3001,13 +2201,11 @@ msgid "" " 'formatters': {\n" " 'detailed': {\n" " 'class': 'logging.Formatter',\n" -" 'format': '%(asctime)s %(name)-15s %(levelname)-8s %" -"(processName)-10s %(message)s'\n" +" 'format': '%(asctime)s %(name)-15s %(levelname)-8s %(processName)-10s %(message)s'\n" " },\n" " 'simple': {\n" " 'class': 'logging.Formatter',\n" -" 'format': '%(name)-15s %(levelname)-8s %(processName)-10s %" -"(message)s'\n" +" 'format': '%(name)-15s %(levelname)-8s %(processName)-10s %(message)s'\n" " }\n" " },\n" " 'handlers': {\n" @@ -3046,8 +2244,7 @@ msgid "" " 'level': 'DEBUG'\n" " }\n" " }\n" -" # Log some initial events, just to show that logging in the parent " -"works\n" +" # Log some initial events, just to show that logging in the parent works\n" " # normally.\n" " logging.config.dictConfig(config_initial)\n" " logger = logging.getLogger('setup')\n" @@ -3079,93 +2276,42 @@ msgid "" " main()" msgstr "" -#: ../../howto/logging-cookbook.rst:2458 msgid "Inserting a BOM into messages sent to a SysLogHandler" msgstr "" -#: ../../howto/logging-cookbook.rst:2460 -msgid "" -":rfc:`5424` requires that a Unicode message be sent to a syslog daemon as a " -"set of bytes which have the following structure: an optional pure-ASCII " -"component, followed by a UTF-8 Byte Order Mark (BOM), followed by Unicode " -"encoded using UTF-8. (See the :rfc:`relevant section of the specification " -"<5424#section-6>`.)" +msgid ":rfc:`5424` requires that a Unicode message be sent to a syslog daemon as a set of bytes which have the following structure: an optional pure-ASCII component, followed by a UTF-8 Byte Order Mark (BOM), followed by Unicode encoded using UTF-8. (See the :rfc:`relevant section of the specification <5424#section-6>`.)" msgstr "" -#: ../../howto/logging-cookbook.rst:2466 -msgid "" -"In Python 3.1, code was added to :class:`~logging.handlers.SysLogHandler` to " -"insert a BOM into the message, but unfortunately, it was implemented " -"incorrectly, with the BOM appearing at the beginning of the message and " -"hence not allowing any pure-ASCII component to appear before it." +msgid "In Python 3.1, code was added to :class:`~logging.handlers.SysLogHandler` to insert a BOM into the message, but unfortunately, it was implemented incorrectly, with the BOM appearing at the beginning of the message and hence not allowing any pure-ASCII component to appear before it." msgstr "" -#: ../../howto/logging-cookbook.rst:2472 -msgid "" -"As this behaviour is broken, the incorrect BOM insertion code is being " -"removed from Python 3.2.4 and later. However, it is not being replaced, and " -"if you want to produce :rfc:`5424`-compliant messages which include a BOM, " -"an optional pure-ASCII sequence before it and arbitrary Unicode after it, " -"encoded using UTF-8, then you need to do the following:" +msgid "As this behaviour is broken, the incorrect BOM insertion code is being removed from Python 3.2.4 and later. However, it is not being replaced, and if you want to produce :rfc:`5424`-compliant messages which include a BOM, an optional pure-ASCII sequence before it and arbitrary Unicode after it, encoded using UTF-8, then you need to do the following:" msgstr "" -#: ../../howto/logging-cookbook.rst:2478 -msgid "" -"Attach a :class:`~logging.Formatter` instance to " -"your :class:`~logging.handlers.SysLogHandler` instance, with a format string " -"such as::" +msgid "Attach a :class:`~logging.Formatter` instance to your :class:`~logging.handlers.SysLogHandler` instance, with a format string such as::" msgstr "" -#: ../../howto/logging-cookbook.rst:2482 msgid "'ASCII section\\ufeffUnicode section'" msgstr "" -#: ../../howto/logging-cookbook.rst:2484 -msgid "" -"The Unicode code point U+FEFF, when encoded using UTF-8, will be encoded as " -"a UTF-8 BOM -- the byte-string ``b'\\xef\\xbb\\xbf'``." +msgid "The Unicode code point U+FEFF, when encoded using UTF-8, will be encoded as a UTF-8 BOM -- the byte-string ``b'\\xef\\xbb\\xbf'``." msgstr "" -#: ../../howto/logging-cookbook.rst:2487 -msgid "" -"Replace the ASCII section with whatever placeholders you like, but make sure " -"that the data that appears in there after substitution is always ASCII (that " -"way, it will remain unchanged after UTF-8 encoding)." +msgid "Replace the ASCII section with whatever placeholders you like, but make sure that the data that appears in there after substitution is always ASCII (that way, it will remain unchanged after UTF-8 encoding)." msgstr "" -#: ../../howto/logging-cookbook.rst:2491 -msgid "" -"Replace the Unicode section with whatever placeholders you like; if the data " -"which appears there after substitution contains characters outside the ASCII " -"range, that's fine -- it will be encoded using UTF-8." +msgid "Replace the Unicode section with whatever placeholders you like; if the data which appears there after substitution contains characters outside the ASCII range, that's fine -- it will be encoded using UTF-8." msgstr "" -#: ../../howto/logging-cookbook.rst:2495 -msgid "" -"The formatted message *will* be encoded using UTF-8 encoding by " -"``SysLogHandler``. If you follow the above rules, you should be able to " -"produce :rfc:`5424`-compliant messages. If you don't, logging may not " -"complain, but your messages will not be RFC 5424-compliant, and your syslog " -"daemon may complain." +msgid "The formatted message *will* be encoded using UTF-8 encoding by ``SysLogHandler``. If you follow the above rules, you should be able to produce :rfc:`5424`-compliant messages. If you don't, logging may not complain, but your messages will not be RFC 5424-compliant, and your syslog daemon may complain." msgstr "" -#: ../../howto/logging-cookbook.rst:2502 msgid "Implementing structured logging" msgstr "" -#: ../../howto/logging-cookbook.rst:2504 -msgid "" -"Although most logging messages are intended for reading by humans, and thus " -"not readily machine-parseable, there might be circumstances where you want " -"to output messages in a structured format which *is* capable of being parsed " -"by a program (without needing complex regular expressions to parse the log " -"message). This is straightforward to achieve using the logging package. " -"There are a number of ways in which this could be achieved, but the " -"following is a simple approach which uses JSON to serialise the event in a " -"machine-parseable manner::" +msgid "Although most logging messages are intended for reading by humans, and thus not readily machine-parseable, there might be circumstances where you want to output messages in a structured format which *is* capable of being parsed by a program (without needing complex regular expressions to parse the log message). This is straightforward to achieve using the logging package. There are a number of ways in which this could be achieved, but the following is a simple approach which uses JSON to serialise the event in a machine-parseable manner::" msgstr "" -#: ../../howto/logging-cookbook.rst:2512 msgid "" "import json\n" "import logging\n" @@ -3184,29 +2330,18 @@ msgid "" "logging.info(_('message 1', foo='bar', bar='baz', num=123, fnum=123.456))" msgstr "" -#: ../../howto/logging-cookbook.rst:2528 msgid "If the above script is run, it prints:" msgstr "" -#: ../../howto/logging-cookbook.rst:2530 -msgid "" -"message 1 >>> {\"fnum\": 123.456, \"num\": 123, \"bar\": \"baz\", \"foo\": " -"\"bar\"}" +msgid "message 1 >>> {\"fnum\": 123.456, \"num\": 123, \"bar\": \"baz\", \"foo\": \"bar\"}" msgstr "" -#: ../../howto/logging-cookbook.rst:2534 ../../howto/logging-cookbook.rst:2576 -msgid "" -"Note that the order of items might be different according to the version of " -"Python used." +msgid "Note that the order of items might be different according to the version of Python used." msgstr "" -#: ../../howto/logging-cookbook.rst:2537 -msgid "" -"If you need more specialised processing, you can use a custom JSON encoder, " -"as in the following complete example::" +msgid "If you need more specialised processing, you can use a custom JSON encoder, as in the following complete example::" msgstr "" -#: ../../howto/logging-cookbook.rst:2540 msgid "" "import json\n" "import logging\n" @@ -3239,29 +2374,18 @@ msgid "" " main()" msgstr "" -#: ../../howto/logging-cookbook.rst:2570 msgid "When the above script is run, it prints:" msgstr "" -#: ../../howto/logging-cookbook.rst:2572 msgid "message 1 >>> {\"snowman\": \"\\u2603\", \"set_value\": [1, 2, 3]}" msgstr "" -#: ../../howto/logging-cookbook.rst:2585 msgid "Customizing handlers with :func:`dictConfig`" msgstr "" -#: ../../howto/logging-cookbook.rst:2587 -msgid "" -"There are times when you want to customize logging handlers in particular " -"ways, and if you use :func:`dictConfig` you may be able to do this without " -"subclassing. As an example, consider that you may want to set the ownership " -"of a log file. On POSIX, this is easily done using :func:`shutil.chown`, but " -"the file handlers in the stdlib don't offer built-in support. You can " -"customize handler creation using a plain function such as::" +msgid "There are times when you want to customize logging handlers in particular ways, and if you use :func:`dictConfig` you may be able to do this without subclassing. As an example, consider that you may want to set the ownership of a log file. On POSIX, this is easily done using :func:`shutil.chown`, but the file handlers in the stdlib don't offer built-in support. You can customize handler creation using a plain function such as::" msgstr "" -#: ../../howto/logging-cookbook.rst:2594 msgid "" "def owned_file_handler(filename, mode='a', encoding=None, owner=None):\n" " if owner:\n" @@ -3271,14 +2395,9 @@ msgid "" " return logging.FileHandler(filename, mode, encoding)" msgstr "" -#: ../../howto/logging-cookbook.rst:2601 -msgid "" -"You can then specify, in a logging configuration passed " -"to :func:`dictConfig`, that a logging handler be created by calling this " -"function::" +msgid "You can then specify, in a logging configuration passed to :func:`dictConfig`, that a logging handler be created by calling this function::" msgstr "" -#: ../../howto/logging-cookbook.rst:2604 msgid "" "LOGGING = {\n" " 'version': 1,\n" @@ -3311,14 +2430,9 @@ msgid "" "}" msgstr "" -#: ../../howto/logging-cookbook.rst:2634 -msgid "" -"In this example I am setting the ownership using the ``pulse`` user and " -"group, just for the purposes of illustration. Putting it together into a " -"working script, ``chowntest.py``::" +msgid "In this example I am setting the ownership using the ``pulse`` user and group, just for the purposes of illustration. Putting it together into a working script, ``chowntest.py``::" msgstr "" -#: ../../howto/logging-cookbook.rst:2638 msgid "" "import logging, logging.config, os, shutil\n" "\n" @@ -3364,11 +2478,9 @@ msgid "" "logger.debug('A debug message')" msgstr "" -#: ../../howto/logging-cookbook.rst:2681 msgid "To run this, you will probably need to run as ``root``:" msgstr "" -#: ../../howto/logging-cookbook.rst:2683 msgid "" "$ sudo python3.3 chowntest.py\n" "$ cat chowntest.log\n" @@ -3377,159 +2489,66 @@ msgid "" "-rw-r--r-- 1 pulse pulse 55 2013-11-05 09:34 chowntest.log" msgstr "" -#: ../../howto/logging-cookbook.rst:2691 -msgid "" -"Note that this example uses Python 3.3 because that's " -"where :func:`shutil.chown` makes an appearance. This approach should work " -"with any Python version that supports :func:`dictConfig` - namely, Python " -"2.7, 3.2 or later. With pre-3.3 versions, you would need to implement the " -"actual ownership change using e.g. :func:`os.chown`." +msgid "Note that this example uses Python 3.3 because that's where :func:`shutil.chown` makes an appearance. This approach should work with any Python version that supports :func:`dictConfig` - namely, Python 2.7, 3.2 or later. With pre-3.3 versions, you would need to implement the actual ownership change using e.g. :func:`os.chown`." msgstr "" -#: ../../howto/logging-cookbook.rst:2697 -msgid "" -"In practice, the handler-creating function may be in a utility module " -"somewhere in your project. Instead of the line in the configuration::" +msgid "In practice, the handler-creating function may be in a utility module somewhere in your project. Instead of the line in the configuration::" msgstr "" -#: ../../howto/logging-cookbook.rst:2700 msgid "'()': owned_file_handler," msgstr "" -#: ../../howto/logging-cookbook.rst:2702 msgid "you could use e.g.::" msgstr "" -#: ../../howto/logging-cookbook.rst:2704 msgid "'()': 'ext://project.util.owned_file_handler'," msgstr "" -#: ../../howto/logging-cookbook.rst:2706 -msgid "" -"where ``project.util`` can be replaced with the actual name of the package " -"where the function resides. In the above working script, using ``'ext://" -"__main__.owned_file_handler'`` should work. Here, the actual callable is " -"resolved by :func:`dictConfig` from the ``ext://`` specification." +msgid "where ``project.util`` can be replaced with the actual name of the package where the function resides. In the above working script, using ``'ext://__main__.owned_file_handler'`` should work. Here, the actual callable is resolved by :func:`dictConfig` from the ``ext://`` specification." msgstr "" -#: ../../howto/logging-cookbook.rst:2711 -msgid "" -"This example hopefully also points the way to how you could implement other " -"types of file change - e.g. setting specific POSIX permission bits - in the " -"same way, using :func:`os.chmod`." +msgid "This example hopefully also points the way to how you could implement other types of file change - e.g. setting specific POSIX permission bits - in the same way, using :func:`os.chmod`." msgstr "" -#: ../../howto/logging-cookbook.rst:2715 -msgid "" -"Of course, the approach could also be extended to types of handler other " -"than a :class:`~logging.FileHandler` - for example, one of the rotating file " -"handlers, or a different type of handler altogether." +msgid "Of course, the approach could also be extended to types of handler other than a :class:`~logging.FileHandler` - for example, one of the rotating file handlers, or a different type of handler altogether." msgstr "" -#: ../../howto/logging-cookbook.rst:2725 msgid "Using particular formatting styles throughout your application" msgstr "" -#: ../../howto/logging-cookbook.rst:2727 -msgid "" -"In Python 3.2, the :class:`~logging.Formatter` gained a ``style`` keyword " -"parameter which, while defaulting to ``%`` for backward compatibility, " -"allowed the specification of ``{`` or ``$`` to support the formatting " -"approaches supported by :meth:`str.format` and :class:`string.Template`. " -"Note that this governs the formatting of logging messages for final output " -"to logs, and is completely orthogonal to how an individual logging message " -"is constructed." +msgid "In Python 3.2, the :class:`~logging.Formatter` gained a ``style`` keyword parameter which, while defaulting to ``%`` for backward compatibility, allowed the specification of ``{`` or ``$`` to support the formatting approaches supported by :meth:`str.format` and :class:`string.Template`. Note that this governs the formatting of logging messages for final output to logs, and is completely orthogonal to how an individual logging message is constructed." msgstr "" -#: ../../howto/logging-cookbook.rst:2734 -msgid "" -"Logging calls (:meth:`~Logger.debug`, :meth:`~Logger.info` etc.) only take " -"positional parameters for the actual logging message itself, with keyword " -"parameters used only for determining options for how to handle the logging " -"call (e.g. the ``exc_info`` keyword parameter to indicate that traceback " -"information should be logged, or the ``extra`` keyword parameter to indicate " -"additional contextual information to be added to the log). So you cannot " -"directly make logging calls using :meth:`str.format` " -"or :class:`string.Template` syntax, because internally the logging package " -"uses %-formatting to merge the format string and the variable arguments. " -"There would be no changing this while preserving backward compatibility, " -"since all logging calls which are out there in existing code will be using %-" -"format strings." -msgstr "" - -#: ../../howto/logging-cookbook.rst:2746 -msgid "" -"There have been suggestions to associate format styles with specific " -"loggers, but that approach also runs into backward compatibility problems " -"because any existing code could be using a given logger name and using %-" -"formatting." +msgid "Logging calls (:meth:`~Logger.debug`, :meth:`~Logger.info` etc.) only take positional parameters for the actual logging message itself, with keyword parameters used only for determining options for how to handle the logging call (e.g. the ``exc_info`` keyword parameter to indicate that traceback information should be logged, or the ``extra`` keyword parameter to indicate additional contextual information to be added to the log). So you cannot directly make logging calls using :meth:`str.format` or :class:`string.Template` syntax, because internally the logging package uses %-formatting to merge the format string and the variable arguments. There would be no changing this while preserving backward compatibility, since all logging calls which are out there in existing code will be using %-format strings." msgstr "" -#: ../../howto/logging-cookbook.rst:2750 -msgid "" -"For logging to work interoperably between any third-party libraries and your " -"code, decisions about formatting need to be made at the level of the " -"individual logging call. This opens up a couple of ways in which alternative " -"formatting styles can be accommodated." +msgid "There have been suggestions to associate format styles with specific loggers, but that approach also runs into backward compatibility problems because any existing code could be using a given logger name and using %-formatting." +msgstr "" + +msgid "For logging to work interoperably between any third-party libraries and your code, decisions about formatting need to be made at the level of the individual logging call. This opens up a couple of ways in which alternative formatting styles can be accommodated." msgstr "" -#: ../../howto/logging-cookbook.rst:2757 msgid "Using LogRecord factories" msgstr "" -#: ../../howto/logging-cookbook.rst:2759 -msgid "" -"In Python 3.2, along with the :class:`~logging.Formatter` changes mentioned " -"above, the logging package gained the ability to allow users to set their " -"own :class:`LogRecord` subclasses, using the :func:`setLogRecordFactory` " -"function. You can use this to set your own subclass of :class:`LogRecord`, " -"which does the Right Thing by overriding the :meth:`~LogRecord.getMessage` " -"method. The base class implementation of this method is where the ``msg % " -"args`` formatting happens, and where you can substitute your alternate " -"formatting; however, you should be careful to support all formatting styles " -"and allow %-formatting as the default, to ensure interoperability with other " -"code. Care should also be taken to call ``str(self.msg)``, just as the base " -"implementation does." -msgstr "" - -#: ../../howto/logging-cookbook.rst:2770 -msgid "" -"Refer to the reference documentation on :func:`setLogRecordFactory` " -"and :class:`LogRecord` for more information." +msgid "In Python 3.2, along with the :class:`~logging.Formatter` changes mentioned above, the logging package gained the ability to allow users to set their own :class:`LogRecord` subclasses, using the :func:`setLogRecordFactory` function. You can use this to set your own subclass of :class:`LogRecord`, which does the Right Thing by overriding the :meth:`~LogRecord.getMessage` method. The base class implementation of this method is where the ``msg % args`` formatting happens, and where you can substitute your alternate formatting; however, you should be careful to support all formatting styles and allow %-formatting as the default, to ensure interoperability with other code. Care should also be taken to call ``str(self.msg)``, just as the base implementation does." +msgstr "" + +msgid "Refer to the reference documentation on :func:`setLogRecordFactory` and :class:`LogRecord` for more information." msgstr "" -#: ../../howto/logging-cookbook.rst:2775 msgid "Using custom message objects" msgstr "" -#: ../../howto/logging-cookbook.rst:2777 -msgid "" -"There is another, perhaps simpler way that you can use {}- and $- formatting " -"to construct your individual log messages. You may recall " -"(from :ref:`arbitrary-object-messages`) that when logging you can use an " -"arbitrary object as a message format string, and that the logging package " -"will call :func:`str` on that object to get the actual format string. " -"Consider the following two classes::" +msgid "There is another, perhaps simpler way that you can use {}- and $- formatting to construct your individual log messages. You may recall (from :ref:`arbitrary-object-messages`) that when logging you can use an arbitrary object as a message format string, and that the logging package will call :func:`str` on that object to get the actual format string. Consider the following two classes::" msgstr "" -#: ../../howto/logging-cookbook.rst:2802 -msgid "" -"Either of these can be used in place of a format string, to allow {}- or $-" -"formatting to be used to build the actual \"message\" part which appears in " -"the formatted log output in place of “%(message)s” or “{message}” or " -"“$message”. If you find it a little unwieldy to use the class names whenever " -"you want to log something, you can make it more palatable if you use an " -"alias such as ``M`` or ``_`` for the message (or perhaps ``__``, if you are " -"using ``_`` for localization)." +msgid "Either of these can be used in place of a format string, to allow {}- or $-formatting to be used to build the actual \"message\" part which appears in the formatted log output in place of “%(message)s” or “{message}” or “$message”. If you find it a little unwieldy to use the class names whenever you want to log something, you can make it more palatable if you use an alias such as ``M`` or ``_`` for the message (or perhaps ``__``, if you are using ``_`` for localization)." msgstr "" -#: ../../howto/logging-cookbook.rst:2810 -msgid "" -"Examples of this approach are given below. Firstly, formatting " -"with :meth:`str.format`::" +msgid "Examples of this approach are given below. Firstly, formatting with :meth:`str.format`::" msgstr "" -#: ../../howto/logging-cookbook.rst:2813 msgid "" ">>> __ = BraceMessage\n" ">>> print(__('Message with {0} {1}', 2, 'placeholders'))\n" @@ -3539,16 +2558,13 @@ msgid "" ">>> p = Point()\n" ">>> p.x = 0.5\n" ">>> p.y = 0.5\n" -">>> print(__('Message with coordinates: ({point.x:.2f}, {point.y:.2f})', " -"point=p))\n" +">>> print(__('Message with coordinates: ({point.x:.2f}, {point.y:.2f})', point=p))\n" "Message with coordinates: (0.50, 0.50)" msgstr "" -#: ../../howto/logging-cookbook.rst:2824 msgid "Secondly, formatting with :class:`string.Template`::" msgstr "" -#: ../../howto/logging-cookbook.rst:2826 msgid "" ">>> __ = DollarMessage\n" ">>> print(__('Message with $num $what', num=2, what='placeholders'))\n" @@ -3556,38 +2572,15 @@ msgid "" ">>>" msgstr "" -#: ../../howto/logging-cookbook.rst:2831 -msgid "" -"One thing to note is that you pay no significant performance penalty with " -"this approach: the actual formatting happens not when you make the logging " -"call, but when (and if) the logged message is actually about to be output to " -"a log by a handler. So the only slightly unusual thing which might trip you " -"up is that the parentheses go around the format string and the arguments, " -"not just the format string. That’s because the __ notation is just syntax " -"sugar for a constructor call to one of the :samp:`{XXX}Message` classes " -"shown above." +msgid "One thing to note is that you pay no significant performance penalty with this approach: the actual formatting happens not when you make the logging call, but when (and if) the logged message is actually about to be output to a log by a handler. So the only slightly unusual thing which might trip you up is that the parentheses go around the format string and the arguments, not just the format string. That’s because the __ notation is just syntax sugar for a constructor call to one of the :samp:`{XXX}Message` classes shown above." msgstr "" -#: ../../howto/logging-cookbook.rst:2845 msgid "Configuring filters with :func:`dictConfig`" msgstr "" -#: ../../howto/logging-cookbook.rst:2847 -msgid "" -"You *can* configure filters using :func:`~logging.config.dictConfig`, though " -"it might not be obvious at first glance how to do it (hence this recipe). " -"Since :class:`~logging.Filter` is the only filter class included in the " -"standard library, and it is unlikely to cater to many requirements (it's " -"only there as a base class), you will typically need to define your " -"own :class:`~logging.Filter` subclass with an " -"overridden :meth:`~logging.Filter.filter` method. To do this, specify the " -"``()`` key in the configuration dictionary for the filter, specifying a " -"callable which will be used to create the filter (a class is the most " -"obvious, but you can provide any callable which returns " -"a :class:`~logging.Filter` instance). Here is a complete example::" -msgstr "" - -#: ../../howto/logging-cookbook.rst:2858 +msgid "You *can* configure filters using :func:`~logging.config.dictConfig`, though it might not be obvious at first glance how to do it (hence this recipe). Since :class:`~logging.Filter` is the only filter class included in the standard library, and it is unlikely to cater to many requirements (it's only there as a base class), you will typically need to define your own :class:`~logging.Filter` subclass with an overridden :meth:`~logging.Filter.filter` method. To do this, specify the ``()`` key in the configuration dictionary for the filter, specifying a callable which will be used to create the filter (a class is the most obvious, but you can provide any callable which returns a :class:`~logging.Filter` instance). Here is a complete example::" +msgstr "" + msgid "" "import logging\n" "import logging.config\n" @@ -3632,57 +2625,30 @@ msgid "" " logging.debug('hello - noshow')" msgstr "" -#: ../../howto/logging-cookbook.rst:2900 -msgid "" -"This example shows how you can pass configuration data to the callable which " -"constructs the instance, in the form of keyword parameters. When run, the " -"above script will print:" +msgid "This example shows how you can pass configuration data to the callable which constructs the instance, in the form of keyword parameters. When run, the above script will print:" msgstr "" -#: ../../howto/logging-cookbook.rst:2904 msgid "changed: hello" msgstr "" -#: ../../howto/logging-cookbook.rst:2908 msgid "which shows that the filter is working as configured." msgstr "" -#: ../../howto/logging-cookbook.rst:2910 msgid "A couple of extra points to note:" msgstr "" -#: ../../howto/logging-cookbook.rst:2912 -msgid "" -"If you can't refer to the callable directly in the configuration (e.g. if it " -"lives in a different module, and you can't import it directly where the " -"configuration dictionary is), you can use the form ``ext://...`` as " -"described in :ref:`logging-config-dict-externalobj`. For example, you could " -"have used the text ``'ext://__main__.MyFilter'`` instead of ``MyFilter`` in " -"the above example." +msgid "If you can't refer to the callable directly in the configuration (e.g. if it lives in a different module, and you can't import it directly where the configuration dictionary is), you can use the form ``ext://...`` as described in :ref:`logging-config-dict-externalobj`. For example, you could have used the text ``'ext://__main__.MyFilter'`` instead of ``MyFilter`` in the above example." msgstr "" -#: ../../howto/logging-cookbook.rst:2919 -msgid "" -"As well as for filters, this technique can also be used to configure custom " -"handlers and formatters. See :ref:`logging-config-dict-userdef` for more " -"information on how logging supports using user-defined objects in its " -"configuration, and see the other cookbook recipe :ref:`custom-handlers` " -"above." +msgid "As well as for filters, this technique can also be used to configure custom handlers and formatters. See :ref:`logging-config-dict-userdef` for more information on how logging supports using user-defined objects in its configuration, and see the other cookbook recipe :ref:`custom-handlers` above." msgstr "" -#: ../../howto/logging-cookbook.rst:2928 msgid "Customized exception formatting" msgstr "" -#: ../../howto/logging-cookbook.rst:2930 -msgid "" -"There might be times when you want to do customized exception formatting - " -"for argument's sake, let's say you want exactly one line per logged event, " -"even when exception information is present. You can do this with a custom " -"formatter class, as shown in the following example::" +msgid "There might be times when you want to do customized exception formatting - for argument's sake, let's say you want exactly one line per logged event, even when exception information is present. You can do this with a custom formatter class, as shown in the following example::" msgstr "" -#: ../../howto/logging-cookbook.rst:2935 msgid "" "import logging\n" "\n" @@ -3721,47 +2687,23 @@ msgid "" " main()" msgstr "" -#: ../../howto/logging-cookbook.rst:2971 msgid "When run, this produces a file with exactly two lines:" msgstr "" -#: ../../howto/logging-cookbook.rst:2973 msgid "" "28/01/2015 07:21:23|INFO|Sample message|\n" -"28/01/2015 07:21:23|ERROR|ZeroDivisionError: division by zero|'Traceback " -"(most recent call last):\\n File \"logtest7.py\", line 30, in main\\n x " -"= 1 / 0\\nZeroDivisionError: division by zero'|" +"28/01/2015 07:21:23|ERROR|ZeroDivisionError: division by zero|'Traceback (most recent call last):\\n File \"logtest7.py\", line 30, in main\\n x = 1 / 0\\nZeroDivisionError: division by zero'|" msgstr "" -#: ../../howto/logging-cookbook.rst:2978 -msgid "" -"While the above treatment is simplistic, it points the way to how exception " -"information can be formatted to your liking. The :mod:`traceback` module may " -"be helpful for more specialized needs." +msgid "While the above treatment is simplistic, it points the way to how exception information can be formatted to your liking. The :mod:`traceback` module may be helpful for more specialized needs." msgstr "" -#: ../../howto/logging-cookbook.rst:2985 msgid "Speaking logging messages" msgstr "" -#: ../../howto/logging-cookbook.rst:2987 -msgid "" -"There might be situations when it is desirable to have logging messages " -"rendered in an audible rather than a visible format. This is easy to do if " -"you have text-to-speech (TTS) functionality available in your system, even " -"if it doesn't have a Python binding. Most TTS systems have a command line " -"program you can run, and this can be invoked from a handler " -"using :mod:`subprocess`. It's assumed here that TTS command line programs " -"won't expect to interact with users or take a long time to complete, and " -"that the frequency of logged messages will be not so high as to swamp the " -"user with messages, and that it's acceptable to have the messages spoken one " -"at a time rather than concurrently, The example implementation below waits " -"for one message to be spoken before the next is processed, and this might " -"cause other handlers to be kept waiting. Here is a short example showing the " -"approach, which assumes that the ``espeak`` TTS package is available::" -msgstr "" - -#: ../../howto/logging-cookbook.rst:3000 +msgid "There might be situations when it is desirable to have logging messages rendered in an audible rather than a visible format. This is easy to do if you have text-to-speech (TTS) functionality available in your system, even if it doesn't have a Python binding. Most TTS systems have a command line program you can run, and this can be invoked from a handler using :mod:`subprocess`. It's assumed here that TTS command line programs won't expect to interact with users or take a long time to complete, and that the frequency of logged messages will be not so high as to swamp the user with messages, and that it's acceptable to have the messages spoken one at a time rather than concurrently, The example implementation below waits for one message to be spoken before the next is processed, and this might cause other handlers to be kept waiting. Here is a short example showing the approach, which assumes that the ``espeak`` TTS package is available::" +msgstr "" + msgid "" "import logging\n" "import subprocess\n" @@ -3793,72 +2735,30 @@ msgid "" " sys.exit(main())" msgstr "" -#: ../../howto/logging-cookbook.rst:3029 -msgid "" -"When run, this script should say \"Hello\" and then \"Goodbye\" in a female " -"voice." +msgid "When run, this script should say \"Hello\" and then \"Goodbye\" in a female voice." msgstr "" -#: ../../howto/logging-cookbook.rst:3031 -msgid "" -"The above approach can, of course, be adapted to other TTS systems and even " -"other systems altogether which can process messages via external programs " -"run from a command line." +msgid "The above approach can, of course, be adapted to other TTS systems and even other systems altogether which can process messages via external programs run from a command line." msgstr "" -#: ../../howto/logging-cookbook.rst:3039 msgid "Buffering logging messages and outputting them conditionally" msgstr "" -#: ../../howto/logging-cookbook.rst:3041 -msgid "" -"There might be situations where you want to log messages in a temporary area " -"and only output them if a certain condition occurs. For example, you may " -"want to start logging debug events in a function, and if the function " -"completes without errors, you don't want to clutter the log with the " -"collected debug information, but if there is an error, you want all the " -"debug information to be output as well as the error." +msgid "There might be situations where you want to log messages in a temporary area and only output them if a certain condition occurs. For example, you may want to start logging debug events in a function, and if the function completes without errors, you don't want to clutter the log with the collected debug information, but if there is an error, you want all the debug information to be output as well as the error." msgstr "" -#: ../../howto/logging-cookbook.rst:3048 -msgid "" -"Here is an example which shows how you could do this using a decorator for " -"your functions where you want logging to behave this way. It makes use of " -"the :class:`logging.handlers.MemoryHandler`, which allows buffering of " -"logged events until some condition occurs, at which point the buffered " -"events are ``flushed`` - passed to another handler (the ``target`` handler) " -"for processing. By default, the ``MemoryHandler`` flushed when its buffer " -"gets filled up or an event whose level is greater than or equal to a " -"specified threshold is seen. You can use this recipe with a more specialised " -"subclass of ``MemoryHandler`` if you want custom flushing behavior." -msgstr "" - -#: ../../howto/logging-cookbook.rst:3058 -msgid "" -"The example script has a simple function, ``foo``, which just cycles through " -"all the logging levels, writing to ``sys.stderr`` to say what level it's " -"about to log at, and then actually logging a message at that level. You can " -"pass a parameter to ``foo`` which, if true, will log at ERROR and CRITICAL " -"levels - otherwise, it only logs at DEBUG, INFO and WARNING levels." +msgid "Here is an example which shows how you could do this using a decorator for your functions where you want logging to behave this way. It makes use of the :class:`logging.handlers.MemoryHandler`, which allows buffering of logged events until some condition occurs, at which point the buffered events are ``flushed`` - passed to another handler (the ``target`` handler) for processing. By default, the ``MemoryHandler`` flushed when its buffer gets filled up or an event whose level is greater than or equal to a specified threshold is seen. You can use this recipe with a more specialised subclass of ``MemoryHandler`` if you want custom flushing behavior." msgstr "" -#: ../../howto/logging-cookbook.rst:3064 -msgid "" -"The script just arranges to decorate ``foo`` with a decorator which will do " -"the conditional logging that's required. The decorator takes a logger as a " -"parameter and attaches a memory handler for the duration of the call to the " -"decorated function. The decorator can be additionally parameterised using a " -"target handler, a level at which flushing should occur, and a capacity for " -"the buffer (number of records buffered). These default to " -"a :class:`~logging.StreamHandler` which writes to ``sys.stderr``, " -"``logging.ERROR`` and ``100`` respectively." +msgid "The example script has a simple function, ``foo``, which just cycles through all the logging levels, writing to ``sys.stderr`` to say what level it's about to log at, and then actually logging a message at that level. You can pass a parameter to ``foo`` which, if true, will log at ERROR and CRITICAL levels - otherwise, it only logs at DEBUG, INFO and WARNING levels." +msgstr "" + +msgid "The script just arranges to decorate ``foo`` with a decorator which will do the conditional logging that's required. The decorator takes a logger as a parameter and attaches a memory handler for the duration of the call to the decorated function. The decorator can be additionally parameterised using a target handler, a level at which flushing should occur, and a capacity for the buffer (number of records buffered). These default to a :class:`~logging.StreamHandler` which writes to ``sys.stderr``, ``logging.ERROR`` and ``100`` respectively." msgstr "" -#: ../../howto/logging-cookbook.rst:3072 msgid "Here's the script::" msgstr "" -#: ../../howto/logging-cookbook.rst:3074 msgid "" "import logging\n" "from logging.handlers import MemoryHandler\n" @@ -3867,16 +2767,14 @@ msgid "" "logger = logging.getLogger(__name__)\n" "logger.addHandler(logging.NullHandler())\n" "\n" -"def log_if_errors(logger, target_handler=None, flush_level=None, " -"capacity=None):\n" +"def log_if_errors(logger, target_handler=None, flush_level=None, capacity=None):\n" " if target_handler is None:\n" " target_handler = logging.StreamHandler()\n" " if flush_level is None:\n" " flush_level = logging.ERROR\n" " if capacity is None:\n" " capacity = 100\n" -" handler = MemoryHandler(capacity, flushLevel=flush_level, " -"target=target_handler)\n" +" handler = MemoryHandler(capacity, flushLevel=flush_level, target=target_handler)\n" "\n" " def decorator(fn):\n" " def wrapper(*args, **kwargs):\n" @@ -3924,11 +2822,9 @@ msgid "" " assert decorated_foo(True)" msgstr "" -#: ../../howto/logging-cookbook.rst:3135 msgid "When this script is run, the following output should be observed:" msgstr "" -#: ../../howto/logging-cookbook.rst:3137 msgid "" "Calling undecorated foo with False\n" "about to log at DEBUG ...\n" @@ -3957,49 +2853,31 @@ msgid "" "Actually logged at CRITICAL" msgstr "" -#: ../../howto/logging-cookbook.rst:3165 -msgid "" -"As you can see, actual logging output only occurs when an event is logged " -"whose severity is ERROR or greater, but in that case, any previous events at " -"lower severities are also logged." +msgid "As you can see, actual logging output only occurs when an event is logged whose severity is ERROR or greater, but in that case, any previous events at lower severities are also logged." msgstr "" -#: ../../howto/logging-cookbook.rst:3169 msgid "You can of course use the conventional means of decoration::" msgstr "" -#: ../../howto/logging-cookbook.rst:3171 msgid "" "@log_if_errors(logger)\n" "def foo(fail=False):\n" " ..." msgstr "" -#: ../../howto/logging-cookbook.rst:3179 msgid "Sending logging messages to email, with buffering" msgstr "" -#: ../../howto/logging-cookbook.rst:3181 -msgid "" -"To illustrate how you can send log messages via email, so that a set number " -"of messages are sent per email, you can " -"subclass :class:`~logging.handlers.BufferingHandler`. In the following " -"example, which you can adapt to suit your specific needs, a simple test " -"harness is provided which allows you to run the script with command line " -"arguments specifying what you typically need to send things via SMTP. (Run " -"the downloaded script with the ``-h`` argument to see the required and " -"optional arguments.)" +msgid "To illustrate how you can send log messages via email, so that a set number of messages are sent per email, you can subclass :class:`~logging.handlers.BufferingHandler`. In the following example, which you can adapt to suit your specific needs, a simple test harness is provided which allows you to run the script with command line arguments specifying what you typically need to send things via SMTP. (Run the downloaded script with the ``-h`` argument to see the required and optional arguments.)" msgstr "" -#: ../../howto/logging-cookbook.rst:3189 msgid "" "import logging\n" "import logging.handlers\n" "import smtplib\n" "\n" "class BufferingSMTPHandler(logging.handlers.BufferingHandler):\n" -" def __init__(self, mailhost, port, username, password, fromaddr, " -"toaddrs,\n" +" def __init__(self, mailhost, port, username, password, fromaddr, toaddrs,\n" " subject, capacity):\n" " logging.handlers.BufferingHandler.__init__(self, capacity)\n" " self.mailhost = mailhost\n" @@ -4011,8 +2889,7 @@ msgid "" " toaddrs = [toaddrs]\n" " self.toaddrs = toaddrs\n" " self.subject = subject\n" -" self.setFormatter(logging.Formatter(\"%(asctime)s %(levelname)-5s %" -"(message)s\"))\n" +" self.setFormatter(logging.Formatter(\"%(asctime)s %(levelname)-5s %(message)s\"))\n" "\n" " def flush(self):\n" " if len(self.buffer) > 0:\n" @@ -4020,8 +2897,7 @@ msgid "" " smtp = smtplib.SMTP(self.mailhost, self.mailport)\n" " smtp.starttls()\n" " smtp.login(self.username, self.password)\n" -" msg = \"From: %s\\r\\nTo: %s\\r\\nSubject: %s\\r\\n\\r\\n\" " -"% (self.fromaddr, ','.join(self.toaddrs), self.subject)\n" +" msg = \"From: %s\\r\\nTo: %s\\r\\nSubject: %s\\r\\n\\r\\n\" % (self.fromaddr, ','.join(self.toaddrs), self.subject)\n" " for record in self.buffer:\n" " s = self.format(record)\n" " msg = msg + s + \"\\r\\n\"\n" @@ -4059,25 +2935,15 @@ msgid "" " h.close()" msgstr "" -#: ../../howto/logging-cookbook.rst:3253 -msgid "" -"If you run this script and your SMTP server is correctly set up, you should " -"find that it sends eleven emails to the addressee you specify. The first ten " -"emails will each have ten log messages, and the eleventh will have two " -"messages. That makes up 102 messages as specified in the script." +msgid "If you run this script and your SMTP server is correctly set up, you should find that it sends eleven emails to the addressee you specify. The first ten emails will each have ten log messages, and the eleventh will have two messages. That makes up 102 messages as specified in the script." msgstr "" -#: ../../howto/logging-cookbook.rst:3261 msgid "Formatting times using UTC (GMT) via configuration" msgstr "" -#: ../../howto/logging-cookbook.rst:3263 -msgid "" -"Sometimes you want to format times using UTC, which can be done using a " -"class such as ``UTCFormatter``, shown below::" +msgid "Sometimes you want to format times using UTC, which can be done using a class such as ``UTCFormatter``, shown below::" msgstr "" -#: ../../howto/logging-cookbook.rst:3266 msgid "" "import logging\n" "import time\n" @@ -4086,15 +2952,9 @@ msgid "" " converter = time.gmtime" msgstr "" -#: ../../howto/logging-cookbook.rst:3272 -msgid "" -"and you can then use the ``UTCFormatter`` in your code instead " -"of :class:`~logging.Formatter`. If you want to do that via configuration, " -"you can use the :func:`~logging.config.dictConfig` API with an approach " -"illustrated by the following complete example::" +msgid "and you can then use the ``UTCFormatter`` in your code instead of :class:`~logging.Formatter`. If you want to do that via configuration, you can use the :func:`~logging.config.dictConfig` API with an approach illustrated by the following complete example::" msgstr "" -#: ../../howto/logging-cookbook.rst:3277 msgid "" "import logging\n" "import logging.config\n" @@ -4135,37 +2995,23 @@ msgid "" " logging.warning('The local time is %s', time.asctime())" msgstr "" -#: ../../howto/logging-cookbook.rst:3315 msgid "When this script is run, it should print something like:" msgstr "" -#: ../../howto/logging-cookbook.rst:3317 msgid "" "2015-10-17 12:53:29,501 The local time is Sat Oct 17 13:53:29 2015\n" "2015-10-17 13:53:29,501 The local time is Sat Oct 17 13:53:29 2015" msgstr "" -#: ../../howto/logging-cookbook.rst:3322 -msgid "" -"showing how the time is formatted both as local time and UTC, one for each " -"handler." +msgid "showing how the time is formatted both as local time and UTC, one for each handler." msgstr "" -#: ../../howto/logging-cookbook.rst:3329 msgid "Using a context manager for selective logging" msgstr "" -#: ../../howto/logging-cookbook.rst:3331 -msgid "" -"There are times when it would be useful to temporarily change the logging " -"configuration and revert it back after doing something. For this, a context " -"manager is the most obvious way of saving and restoring the logging context. " -"Here is a simple example of such a context manager, which allows you to " -"optionally change the logging level and add a logging handler purely in the " -"scope of the context manager::" +msgid "There are times when it would be useful to temporarily change the logging configuration and revert it back after doing something. For this, a context manager is the most obvious way of saving and restoring the logging context. Here is a simple example of such a context manager, which allows you to optionally change the logging level and add a logging handler purely in the scope of the context manager::" msgstr "" -#: ../../howto/logging-cookbook.rst:3338 msgid "" "import logging\n" "import sys\n" @@ -4194,22 +3040,12 @@ msgid "" " # implicit return of None => don't swallow exceptions" msgstr "" -#: ../../howto/logging-cookbook.rst:3364 -msgid "" -"If you specify a level value, the logger's level is set to that value in the " -"scope of the with block covered by the context manager. If you specify a " -"handler, it is added to the logger on entry to the block and removed on exit " -"from the block. You can also ask the manager to close the handler for you on " -"block exit - you could do this if you don't need the handler any more." +msgid "If you specify a level value, the logger's level is set to that value in the scope of the with block covered by the context manager. If you specify a handler, it is added to the logger on entry to the block and removed on exit from the block. You can also ask the manager to close the handler for you on block exit - you could do this if you don't need the handler any more." msgstr "" -#: ../../howto/logging-cookbook.rst:3370 -msgid "" -"To illustrate how it works, we can add the following block of code to the " -"above::" +msgid "To illustrate how it works, we can add the following block of code to the above::" msgstr "" -#: ../../howto/logging-cookbook.rst:3373 msgid "" "if __name__ == '__main__':\n" " logger = logging.getLogger('foo')\n" @@ -4221,32 +3057,18 @@ msgid "" " logger.debug('3. This should appear once on stderr.')\n" " logger.debug('4. This should not appear.')\n" " h = logging.StreamHandler(sys.stdout)\n" -" with LoggingContext(logger, level=logging.DEBUG, handler=h, " -"close=True):\n" -" logger.debug('5. This should appear twice - once on stderr and once " -"on stdout.')\n" +" with LoggingContext(logger, level=logging.DEBUG, handler=h, close=True):\n" +" logger.debug('5. This should appear twice - once on stderr and once on stdout.')\n" " logger.info('6. This should appear just once on stderr.')\n" " logger.debug('7. This should not appear.')" msgstr "" -#: ../../howto/logging-cookbook.rst:3388 -msgid "" -"We initially set the logger's level to ``INFO``, so message #1 appears and " -"message #2 doesn't. We then change the level to ``DEBUG`` temporarily in the " -"following ``with`` block, and so message #3 appears. After the block exits, " -"the logger's level is restored to ``INFO`` and so message #4 doesn't appear. " -"In the next ``with`` block, we set the level to ``DEBUG`` again but also add " -"a handler writing to ``sys.stdout``. Thus, message #5 appears twice on the " -"console (once via ``stderr`` and once via ``stdout``). After the ``with`` " -"statement's completion, the status is as it was before so message #6 appears " -"(like message #1) whereas message #7 doesn't (just like message #2)." -msgstr "" - -#: ../../howto/logging-cookbook.rst:3398 +msgid "We initially set the logger's level to ``INFO``, so message #1 appears and message #2 doesn't. We then change the level to ``DEBUG`` temporarily in the following ``with`` block, and so message #3 appears. After the block exits, the logger's level is restored to ``INFO`` and so message #4 doesn't appear. In the next ``with`` block, we set the level to ``DEBUG`` again but also add a handler writing to ``sys.stdout``. Thus, message #5 appears twice on the console (once via ``stderr`` and once via ``stdout``). After the ``with`` statement's completion, the status is as it was before so message #6 appears (like message #1) whereas message #7 doesn't (just like message #2)." +msgstr "" + msgid "If we run the resulting script, the result is as follows:" msgstr "" -#: ../../howto/logging-cookbook.rst:3400 msgid "" "$ python logctx.py\n" "1. This should appear just once on stderr.\n" @@ -4256,23 +3078,17 @@ msgid "" "6. This should appear just once on stderr." msgstr "" -#: ../../howto/logging-cookbook.rst:3409 -msgid "" -"If we run it again, but pipe ``stderr`` to ``/dev/null``, we see the " -"following, which is the only message written to ``stdout``:" +msgid "If we run it again, but pipe ``stderr`` to ``/dev/null``, we see the following, which is the only message written to ``stdout``:" msgstr "" -#: ../../howto/logging-cookbook.rst:3412 msgid "" "$ python logctx.py 2>/dev/null\n" "5. This should appear twice - once on stderr and once on stdout." msgstr "" -#: ../../howto/logging-cookbook.rst:3417 msgid "Once again, but piping ``stdout`` to ``/dev/null``, we get:" msgstr "" -#: ../../howto/logging-cookbook.rst:3419 msgid "" "$ python logctx.py >/dev/null\n" "1. This should appear just once on stderr.\n" @@ -4281,53 +3097,30 @@ msgid "" "6. This should appear just once on stderr." msgstr "" -#: ../../howto/logging-cookbook.rst:3427 -msgid "" -"In this case, the message #5 printed to ``stdout`` doesn't appear, as " -"expected." +msgid "In this case, the message #5 printed to ``stdout`` doesn't appear, as expected." msgstr "" -#: ../../howto/logging-cookbook.rst:3429 -msgid "" -"Of course, the approach described here can be generalised, for example to " -"attach logging filters temporarily. Note that the above code works in Python " -"2 as well as Python 3." +msgid "Of course, the approach described here can be generalised, for example to attach logging filters temporarily. Note that the above code works in Python 2 as well as Python 3." msgstr "" -#: ../../howto/logging-cookbook.rst:3437 msgid "A CLI application starter template" msgstr "" -#: ../../howto/logging-cookbook.rst:3439 msgid "Here's an example which shows how you can:" msgstr "" -#: ../../howto/logging-cookbook.rst:3441 msgid "Use a logging level based on command-line arguments" msgstr "" -#: ../../howto/logging-cookbook.rst:3442 -msgid "" -"Dispatch to multiple subcommands in separate files, all logging at the same " -"level in a consistent way" +msgid "Dispatch to multiple subcommands in separate files, all logging at the same level in a consistent way" msgstr "" -#: ../../howto/logging-cookbook.rst:3444 msgid "Make use of simple, minimal configuration" msgstr "" -#: ../../howto/logging-cookbook.rst:3446 -msgid "" -"Suppose we have a command-line application whose job is to stop, start or " -"restart some services. This could be organised for the purposes of " -"illustration as a file ``app.py`` that is the main script for the " -"application, with individual commands implemented in ``start.py``, " -"``stop.py`` and ``restart.py``. Suppose further that we want to control the " -"verbosity of the application via a command-line argument, defaulting to " -"``logging.INFO``. Here's one way that ``app.py`` could be written::" +msgid "Suppose we have a command-line application whose job is to stop, start or restart some services. This could be organised for the purposes of illustration as a file ``app.py`` that is the main script for the application, with individual commands implemented in ``start.py``, ``stop.py`` and ``restart.py``. Suppose further that we want to control the verbosity of the application via a command-line argument, defaulting to ``logging.INFO``. Here's one way that ``app.py`` could be written::" msgstr "" -#: ../../howto/logging-cookbook.rst:3454 msgid "" "import argparse\n" "import importlib\n" @@ -4350,20 +3143,17 @@ msgid "" " stop_cmd.add_argument('names', metavar='NAME', nargs='+',\n" " help='Name of service to stop')\n" " restart_cmd = subparsers.add_parser('restart',\n" -" help='Restart one or more " -"services')\n" +" help='Restart one or more services')\n" " restart_cmd.add_argument('names', metavar='NAME', nargs='+',\n" " help='Name of service to restart')\n" " options = parser.parse_args()\n" -" # the code to dispatch commands could all be in this file. For the " -"purposes\n" +" # the code to dispatch commands could all be in this file. For the purposes\n" " # of illustration only, we implement each command in a separate module.\n" " try:\n" " mod = importlib.import_module(options.command)\n" " cmd = getattr(mod, 'command')\n" " except (ImportError, AttributeError):\n" -" print('Unable to find the code for command \\'%s\\'' % " -"options.command)\n" +" print('Unable to find the code for command \\'%s\\'' % options.command)\n" " return 1\n" " # Could get fancy here and load configuration from file or dictionary\n" " logging.basicConfig(level=options.log_level,\n" @@ -4374,13 +3164,9 @@ msgid "" " sys.exit(main())" msgstr "" -#: ../../howto/logging-cookbook.rst:3495 -msgid "" -"And the ``start``, ``stop`` and ``restart`` commands can be implemented in " -"separate modules, like so for starting::" +msgid "And the ``start``, ``stop`` and ``restart`` commands can be implemented in separate modules, like so for starting::" msgstr "" -#: ../../howto/logging-cookbook.rst:3498 msgid "" "# start.py\n" "import logging\n" @@ -4393,11 +3179,9 @@ msgid "" " logger.info('Started the \\'%s\\' service.', options.name)" msgstr "" -#: ../../howto/logging-cookbook.rst:3508 msgid "and thus for stopping::" msgstr "" -#: ../../howto/logging-cookbook.rst:3510 msgid "" "# stop.py\n" "import logging\n" @@ -4419,11 +3203,9 @@ msgid "" " logger.info('Stopped the %s service%s.', services, plural)" msgstr "" -#: ../../howto/logging-cookbook.rst:3529 msgid "and similarly for restarting::" msgstr "" -#: ../../howto/logging-cookbook.rst:3531 msgid "" "# restart.py\n" "import logging\n" @@ -4445,13 +3227,9 @@ msgid "" " logger.info('Restarted the %s service%s.', services, plural)" msgstr "" -#: ../../howto/logging-cookbook.rst:3550 -msgid "" -"If we run this application with the default log level, we get output like " -"this:" +msgid "If we run this application with the default log level, we get output like this:" msgstr "" -#: ../../howto/logging-cookbook.rst:3552 msgid "" "$ python app.py start foo\n" "INFO start Started the 'foo' service.\n" @@ -4463,19 +3241,12 @@ msgid "" "INFO restart Restarted the 'foo', 'bar' and 'baz' services." msgstr "" -#: ../../howto/logging-cookbook.rst:3563 -msgid "" -"The first word is the logging level, and the second word is the module or " -"package name of the place where the event was logged." +msgid "The first word is the logging level, and the second word is the module or package name of the place where the event was logged." msgstr "" -#: ../../howto/logging-cookbook.rst:3566 -msgid "" -"If we change the logging level, then we can change the information sent to " -"the log. For example, if we want more information:" +msgid "If we change the logging level, then we can change the information sent to the log. For example, if we want more information:" msgstr "" -#: ../../howto/logging-cookbook.rst:3569 msgid "" "$ python app.py --log-level DEBUG start foo\n" "DEBUG start About to start foo\n" @@ -4490,61 +3261,33 @@ msgid "" "INFO restart Restarted the 'foo', 'bar' and 'baz' services." msgstr "" -#: ../../howto/logging-cookbook.rst:3583 msgid "And if we want less:" msgstr "" -#: ../../howto/logging-cookbook.rst:3585 msgid "" "$ python app.py --log-level WARNING start foo\n" "$ python app.py --log-level WARNING stop foo bar\n" "$ python app.py --log-level WARNING restart foo bar baz" msgstr "" -#: ../../howto/logging-cookbook.rst:3591 -msgid "" -"In this case, the commands don't print anything to the console, since " -"nothing at ``WARNING`` level or above is logged by them." +msgid "In this case, the commands don't print anything to the console, since nothing at ``WARNING`` level or above is logged by them." msgstr "" -#: ../../howto/logging-cookbook.rst:3597 msgid "A Qt GUI for logging" msgstr "" -#: ../../howto/logging-cookbook.rst:3599 -msgid "" -"A question that comes up from time to time is about how to log to a GUI " -"application. The `Qt `_ framework is a popular cross-" -"platform UI framework with Python bindings using :pypi:`PySide2` " -"or :pypi:`PyQt5` libraries." +msgid "A question that comes up from time to time is about how to log to a GUI application. The `Qt `_ framework is a popular cross-platform UI framework with Python bindings using :pypi:`PySide2` or :pypi:`PyQt5` libraries." msgstr "" -#: ../../howto/logging-cookbook.rst:3604 -msgid "" -"The following example shows how to log to a Qt GUI. This introduces a simple " -"``QtHandler`` class which takes a callable, which should be a slot in the " -"main thread that does GUI updates. A worker thread is also created to show " -"how you can log to the GUI from both the UI itself (via a button for manual " -"logging) as well as a worker thread doing work in the background (here, just " -"logging messages at random levels with random short delays in between)." +msgid "The following example shows how to log to a Qt GUI. This introduces a simple ``QtHandler`` class which takes a callable, which should be a slot in the main thread that does GUI updates. A worker thread is also created to show how you can log to the GUI from both the UI itself (via a button for manual logging) as well as a worker thread doing work in the background (here, just logging messages at random levels with random short delays in between)." msgstr "" -#: ../../howto/logging-cookbook.rst:3611 -msgid "" -"The worker thread is implemented using Qt's ``QThread`` class rather than " -"the :mod:`threading` module, as there are circumstances where one has to use " -"``QThread``, which offers better integration with other ``Qt`` components." +msgid "The worker thread is implemented using Qt's ``QThread`` class rather than the :mod:`threading` module, as there are circumstances where one has to use ``QThread``, which offers better integration with other ``Qt`` components." msgstr "" -#: ../../howto/logging-cookbook.rst:3615 -msgid "" -"The code should work with recent releases of any of ``PySide6``, ``PyQt6``, " -"``PySide2`` or ``PyQt5``. You should be able to adapt the approach to " -"earlier versions of Qt. Please refer to the comments in the code snippet for " -"more detailed information." +msgid "The code should work with recent releases of any of ``PySide6``, ``PyQt6``, ``PySide2`` or ``PyQt5``. You should be able to adapt the approach to earlier versions of Qt. Please refer to the comments in the code snippet for more detailed information." msgstr "" -#: ../../howto/logging-cookbook.rst:3620 msgid "" "import logging\n" "import random\n" @@ -4575,27 +3318,21 @@ msgid "" "\n" "\n" "#\n" -"# Signals need to be contained in a QObject or subclass in order to be " -"correctly\n" +"# Signals need to be contained in a QObject or subclass in order to be correctly\n" "# initialized.\n" "#\n" "class Signaller(QtCore.QObject):\n" " signal = Signal(str, logging.LogRecord)\n" "\n" "#\n" -"# Output to a Qt GUI is only supposed to happen on the main thread. So, " -"this\n" -"# handler is designed to take a slot function which is set up to run in the " -"main\n" +"# Output to a Qt GUI is only supposed to happen on the main thread. So, this\n" +"# handler is designed to take a slot function which is set up to run in the main\n" "# thread. In this example, the function takes a string argument which is a\n" -"# formatted log message, and the log record which generated it. The " -"formatted\n" -"# string is just a convenience - you could format a string for output any " -"way\n" +"# formatted log message, and the log record which generated it. The formatted\n" +"# string is just a convenience - you could format a string for output any way\n" "# you like in the slot function itself.\n" "#\n" -"# You specify the slot function to do whatever GUI updates you want. The " -"handler\n" +"# You specify the slot function to do whatever GUI updates you want. The handler\n" "# doesn't know or care about specific UI elements.\n" "#\n" "class QtHandler(logging.Handler):\n" @@ -4609,10 +3346,8 @@ msgid "" " self.signaller.signal.emit(s, record)\n" "\n" "#\n" -"# This example uses QThreads, which means that the threads at the Python " -"level\n" -"# are named something like \"Dummy-1\". The function below gets the Qt name " -"of the\n" +"# This example uses QThreads, which means that the threads at the Python level\n" +"# are named something like \"Dummy-1\". The function below gets the Qt name of the\n" "# current thread.\n" "#\n" "def ctname():\n" @@ -4626,18 +3361,13 @@ msgid "" " logging.CRITICAL)\n" "\n" "#\n" -"# This worker class represents work that is done in a thread separate to " -"the\n" -"# main thread. The way the thread is kicked off to do work is via a button " -"press\n" +"# This worker class represents work that is done in a thread separate to the\n" +"# main thread. The way the thread is kicked off to do work is via a button press\n" "# that connects to a slot in the worker.\n" "#\n" -"# Because the default threadName value in the LogRecord isn't much use, we " -"add\n" -"# a qThreadName which contains the QThread name as computed above, and pass " -"that\n" -"# value in an \"extra\" dictionary which is used to update the LogRecord " -"with the\n" +"# Because the default threadName value in the LogRecord isn't much use, we add\n" +"# a qThreadName which contains the QThread name as computed above, and pass that\n" +"# value in an \"extra\" dictionary which is used to update the LogRecord with the\n" "# QThread name.\n" "#\n" "# This example worker just outputs messages sequentially, interspersed with\n" @@ -4649,8 +3379,7 @@ msgid "" " extra = {'qThreadName': ctname() }\n" " logger.debug('Started work', extra=extra)\n" " i = 1\n" -" # Let the thread run until interrupted. This allows reasonably " -"clean\n" +" # Let the thread run until interrupted. This allows reasonably clean\n" " # thread termination.\n" " while not QtCore.QThread.currentThread().isInterruptionRequested():\n" " delay = 0.5 + random.random() * 2\n" @@ -4660,8 +3389,7 @@ msgid "" " raise ValueError('Exception raised: %d' % i)\n" " else:\n" " level = random.choice(LEVELS)\n" -" logger.log(level, 'Message after delay of %3.1f: %d', " -"delay, i, extra=extra)\n" +" logger.log(level, 'Message after delay of %3.1f: %d', delay, i, extra=extra)\n" " except ValueError as e:\n" " logger.exception('Failed: %s', e, extra=extra)\n" " i += 1\n" @@ -4701,8 +3429,7 @@ msgid "" " self.log_button = PB('Log a message at a random level', self)\n" " self.clear_button = PB('Clear log window', self)\n" " self.handler = h = QtHandler(self.update_status)\n" -" # Remember to use qThreadName rather than threadName in the format " -"string.\n" +" # Remember to use qThreadName rather than threadName in the format string.\n" " fs = '%(asctime)s %(qThreadName)-12s %(levelname)-8s %(message)s'\n" " formatter = logging.Formatter(fs)\n" " h.setFormatter(formatter)\n" @@ -4726,8 +3453,7 @@ msgid "" " self.start_thread()\n" " self.work_button.clicked.connect(self.worker.start)\n" " # Once started, the button should be disabled\n" -" self.work_button.clicked.connect(lambda : " -"self.work_button.setEnabled(False))\n" +" self.work_button.clicked.connect(lambda : self.work_button.setEnabled(False))\n" "\n" " def start_thread(self):\n" " self.worker = Worker()\n" @@ -4739,8 +3465,7 @@ msgid "" " self.worker_thread.start()\n" "\n" " def kill_thread(self):\n" -" # Just tell the worker to stop, then tell it to quit and wait for " -"that\n" +" # Just tell the worker to stop, then tell it to quit and wait for that\n" " # to happen\n" " self.worker_thread.requestInterruption()\n" " if self.worker_thread.isRunning():\n" @@ -4766,8 +3491,7 @@ msgid "" " @Slot()\n" " def manual_update(self):\n" " # This function uses the formatted message passed in, but also uses\n" -" # information from the record to format the message in an " -"appropriate\n" +" # information from the record to format the message in an appropriate\n" " # color according to its severity (level).\n" " level = random.choice(LEVELS)\n" " extra = {'qThreadName': ctname() }\n" @@ -4794,29 +3518,15 @@ msgid "" " main()" msgstr "" -#: ../../howto/logging-cookbook.rst:3851 msgid "Logging to syslog with RFC5424 support" msgstr "" -#: ../../howto/logging-cookbook.rst:3853 -msgid "" -"Although :rfc:`5424` dates from 2009, most syslog servers are configured by " -"default to use the older :rfc:`3164`, which hails from 2001. When " -"``logging`` was added to Python in 2003, it supported the earlier (and only " -"existing) protocol at the time. Since RFC 5424 came out, as there has not " -"been widespread deployment of it in syslog servers, " -"the :class:`~logging.handlers.SysLogHandler` functionality has not been " -"updated." +msgid "Although :rfc:`5424` dates from 2009, most syslog servers are configured by default to use the older :rfc:`3164`, which hails from 2001. When ``logging`` was added to Python in 2003, it supported the earlier (and only existing) protocol at the time. Since RFC 5424 came out, as there has not been widespread deployment of it in syslog servers, the :class:`~logging.handlers.SysLogHandler` functionality has not been updated." msgstr "" -#: ../../howto/logging-cookbook.rst:3860 -msgid "" -"RFC 5424 contains some useful features such as support for structured data, " -"and if you need to be able to log to a syslog server with support for it, " -"you can do so with a subclassed handler which looks something like this::" +msgid "RFC 5424 contains some useful features such as support for structured data, and if you need to be able to log to a syslog server with support for it, you can do so with a subclassed handler which looks something like this::" msgstr "" -#: ../../howto/logging-cookbook.rst:3864 msgid "" "import datetime as dt\n" "import logging.handlers\n" @@ -4858,13 +3568,10 @@ msgid "" " sdata = '-'\n" " if hasattr(record, 'structured_data'):\n" " sd = record.structured_data\n" -" # This should be a dict where the keys are SD-ID and the value " -"is a\n" -" # dict mapping PARAM-NAME to PARAM-VALUE (refer to the RFC for " -"what these\n" +" # This should be a dict where the keys are SD-ID and the value is a\n" +" # dict mapping PARAM-NAME to PARAM-VALUE (refer to the RFC for what these\n" " # mean)\n" -" # There's no error checking here - it's purely for illustration, " -"and you\n" +" # There's no error checking here - it's purely for illustration, and you\n" " # can adapt this code for use in production environments\n" " parts = []\n" "\n" @@ -4881,20 +3588,12 @@ msgid "" " part += ']'\n" " parts.append(part)\n" " sdata = ''.join(parts)\n" -" return f'{version} {asctime} {hostname} {appname} {procid} {msgid} " -"{sdata} {msg}'" +" return f'{version} {asctime} {hostname} {appname} {procid} {msgid} {sdata} {msg}'" msgstr "" -#: ../../howto/logging-cookbook.rst:3926 -msgid "" -"You'll need to be familiar with RFC 5424 to fully understand the above code, " -"and it may be that you have slightly different needs (e.g. for how you pass " -"structural data to the log). Nevertheless, the above should be adaptable to " -"your speciric needs. With the above handler, you'd pass structured data " -"using something like this::" +msgid "You'll need to be familiar with RFC 5424 to fully understand the above code, and it may be that you have slightly different needs (e.g. for how you pass structural data to the log). Nevertheless, the above should be adaptable to your speciric needs. With the above handler, you'd pass structured data using something like this::" msgstr "" -#: ../../howto/logging-cookbook.rst:3931 msgid "" "sd = {\n" " 'foo@12345': {'bar': 'baz', 'baz': 'bozz', 'fizz': r'buzz'},\n" @@ -4905,19 +3604,12 @@ msgid "" "logger.debug('Message %d', i, extra=extra)" msgstr "" -#: ../../howto/logging-cookbook.rst:3940 msgid "How to treat a logger like an output stream" msgstr "" -#: ../../howto/logging-cookbook.rst:3942 -msgid "" -"Sometimes, you need to interface to a third-party API which expects a file-" -"like object to write to, but you want to direct the API's output to a " -"logger. You can do this using a class which wraps a logger with a file-like " -"API. Here's a short script illustrating such a class:" +msgid "Sometimes, you need to interface to a third-party API which expects a file-like object to write to, but you want to direct the API's output to a logger. You can do this using a class which wraps a logger with a file-like API. Here's a short script illustrating such a class:" msgstr "" -#: ../../howto/logging-cookbook.rst:3947 msgid "" "import logging\n" "\n" @@ -4931,14 +3623,12 @@ msgid "" " self.logger.log(self.level, message)\n" "\n" " def flush(self):\n" -" # doesn't actually do anything, but might be expected of a file-" -"like\n" +" # doesn't actually do anything, but might be expected of a file-like\n" " # object - so optional depending on your situation\n" " pass\n" "\n" " def close(self):\n" -" # doesn't actually do anything, but might be expected of a file-" -"like\n" +" # doesn't actually do anything, but might be expected of a file-like\n" " # object - so optional depending on your situation. You might want\n" " # to set a flag so that later calls to write raise an exception\n" " pass\n" @@ -4955,23 +3645,17 @@ msgid "" " main()" msgstr "" -#: ../../howto/logging-cookbook.rst:3982 msgid "When this script is run, it prints" msgstr "" -#: ../../howto/logging-cookbook.rst:3984 msgid "" "INFO:demo:An INFO message\n" "DEBUG:demo:A DEBUG message" msgstr "" -#: ../../howto/logging-cookbook.rst:3989 -msgid "" -"You could also use ``LoggerWriter`` to redirect ``sys.stdout`` and " -"``sys.stderr`` by doing something like this:" +msgid "You could also use ``LoggerWriter`` to redirect ``sys.stdout`` and ``sys.stderr`` by doing something like this:" msgstr "" -#: ../../howto/logging-cookbook.rst:3992 msgid "" "import sys\n" "\n" @@ -4979,15 +3663,9 @@ msgid "" "sys.stderr = LoggerWriter(logger, logging.WARNING)" msgstr "" -#: ../../howto/logging-cookbook.rst:3999 -msgid "" -"You should do this *after* configuring logging for your needs. In the above " -"example, the :func:`~logging.basicConfig` call does this (using the " -"``sys.stderr`` value *before* it is overwritten by a ``LoggerWriter`` " -"instance). Then, you'd get this kind of result:" +msgid "You should do this *after* configuring logging for your needs. In the above example, the :func:`~logging.basicConfig` call does this (using the ``sys.stderr`` value *before* it is overwritten by a ``LoggerWriter`` instance). Then, you'd get this kind of result:" msgstr "" -#: ../../howto/logging-cookbook.rst:4004 msgid "" ">>> print('Foo')\n" "INFO:demo:Foo\n" @@ -4996,41 +3674,28 @@ msgid "" ">>>" msgstr "" -#: ../../howto/logging-cookbook.rst:4012 -msgid "" -"Of course, the examples above show output according to the format used " -"by :func:`~logging.basicConfig`, but you can use a different formatter when " -"you configure logging." +msgid "Of course, the examples above show output according to the format used by :func:`~logging.basicConfig`, but you can use a different formatter when you configure logging." msgstr "" -#: ../../howto/logging-cookbook.rst:4016 -msgid "" -"Note that with the above scheme, you are somewhat at the mercy of buffering " -"and the sequence of write calls which you are intercepting. For example, " -"with the definition of ``LoggerWriter`` above, if you have the snippet" +msgid "Note that with the above scheme, you are somewhat at the mercy of buffering and the sequence of write calls which you are intercepting. For example, with the definition of ``LoggerWriter`` above, if you have the snippet" msgstr "" -#: ../../howto/logging-cookbook.rst:4020 msgid "" "sys.stderr = LoggerWriter(logger, logging.WARNING)\n" "1 / 0" msgstr "" -#: ../../howto/logging-cookbook.rst:4025 msgid "then running the script results in" msgstr "" -#: ../../howto/logging-cookbook.rst:4027 msgid "" "WARNING:demo:Traceback (most recent call last):\n" "\n" -"WARNING:demo: File \"/home/runner/cookbook-loggerwriter/test.py\", line 53, " -"in \n" +"WARNING:demo: File \"/home/runner/cookbook-loggerwriter/test.py\", line 53, in \n" "\n" "WARNING:demo:\n" "WARNING:demo:main()\n" -"WARNING:demo: File \"/home/runner/cookbook-loggerwriter/test.py\", line 49, " -"in main\n" +"WARNING:demo: File \"/home/runner/cookbook-loggerwriter/test.py\", line 49, in main\n" "\n" "WARNING:demo:\n" "WARNING:demo:1 / 0\n" @@ -5039,17 +3704,9 @@ msgid "" "WARNING:demo:division by zero" msgstr "" -#: ../../howto/logging-cookbook.rst:4043 -msgid "" -"As you can see, this output isn't ideal. That's because the underlying code " -"which writes to ``sys.stderr`` makes multiple writes, each of which results " -"in a separate logged line (for example, the last three lines above). To get " -"around this problem, you need to buffer things and only output log lines " -"when newlines are seen. Let's use a slightly better implementation of " -"``LoggerWriter``:" +msgid "As you can see, this output isn't ideal. That's because the underlying code which writes to ``sys.stderr`` makes multiple writes, each of which results in a separate logged line (for example, the last three lines above). To get around this problem, you need to buffer things and only output log lines when newlines are seen. Let's use a slightly better implementation of ``LoggerWriter``:" msgstr "" -#: ../../howto/logging-cookbook.rst:4049 msgid "" "class BufferingLoggerWriter(LoggerWriter):\n" " def __init__(self, logger, level):\n" @@ -5069,40 +3726,24 @@ msgid "" " self.logger.log(self.level, part)" msgstr "" -#: ../../howto/logging-cookbook.rst:4068 -msgid "" -"This just buffers up stuff until a newline is seen, and then logs complete " -"lines. With this approach, you get better output:" +msgid "This just buffers up stuff until a newline is seen, and then logs complete lines. With this approach, you get better output:" msgstr "" -#: ../../howto/logging-cookbook.rst:4071 msgid "" "WARNING:demo:Traceback (most recent call last):\n" -"WARNING:demo: File \"/home/runner/cookbook-loggerwriter/main.py\", line 55, " -"in \n" +"WARNING:demo: File \"/home/runner/cookbook-loggerwriter/main.py\", line 55, in \n" "WARNING:demo: main()\n" -"WARNING:demo: File \"/home/runner/cookbook-loggerwriter/main.py\", line 52, " -"in main\n" +"WARNING:demo: File \"/home/runner/cookbook-loggerwriter/main.py\", line 52, in main\n" "WARNING:demo: 1/0\n" "WARNING:demo:ZeroDivisionError: division by zero" msgstr "" -#: ../../howto/logging-cookbook.rst:4081 msgid "How to uniformly handle newlines in logging output" msgstr "" -#: ../../howto/logging-cookbook.rst:4083 -msgid "" -"Usually, messages that are logged (say to console or file) consist of a " -"single line of text. However, sometimes there is a need to handle messages " -"with multiple lines - whether because a logging format string contains " -"newlines, or logged data contains newlines. If you want to handle such " -"messages uniformly, so that each line in the logged message appears " -"uniformly formatted as if it was logged separately, you can do this using a " -"handler mixin, as in the following snippet:" +msgid "Usually, messages that are logged (say to console or file) consist of a single line of text. However, sometimes there is a need to handle messages with multiple lines - whether because a logging format string contains newlines, or logged data contains newlines. If you want to handle such messages uniformly, so that each line in the logged message appears uniformly formatted as if it was logged separately, you can do this using a handler mixin, as in the following snippet:" msgstr "" -#: ../../howto/logging-cookbook.rst:4091 msgid "" "# Assume this is in a module mymixins.py\n" "import copy\n" @@ -5121,11 +3762,9 @@ msgid "" " super().emit(rec)" msgstr "" -#: ../../howto/logging-cookbook.rst:4109 msgid "You can use the mixin as in the following script:" msgstr "" -#: ../../howto/logging-cookbook.rst:4111 msgid "" "import logging\n" "\n" @@ -5137,21 +3776,17 @@ msgid "" " pass\n" "\n" "if __name__ == '__main__':\n" -" logging.basicConfig(level=logging.DEBUG, format='%(asctime)s %" -"(levelname)-9s %(message)s',\n" +" logging.basicConfig(level=logging.DEBUG, format='%(asctime)s %(levelname)-9s %(message)s',\n" " handlers = [StreamHandler()])\n" " logger.debug('Single line')\n" " logger.debug('Multiple lines:\\nfool me once ...')\n" " logger.debug('Another single line')\n" -" logger.debug('Multiple lines:\\n%s', 'fool me ...\\ncan\\'t get fooled " -"again')" +" logger.debug('Multiple lines:\\n%s', 'fool me ...\\ncan\\'t get fooled again')" msgstr "" -#: ../../howto/logging-cookbook.rst:4130 msgid "The script, when run, prints something like:" msgstr "" -#: ../../howto/logging-cookbook.rst:4132 msgid "" "2025-07-02 13:54:47,234 DEBUG Single line\n" "2025-07-02 13:54:47,234 DEBUG Multiple lines:\n" @@ -5162,14 +3797,9 @@ msgid "" "2025-07-02 13:54:47,234 DEBUG can't get fooled again" msgstr "" -#: ../../howto/logging-cookbook.rst:4142 -msgid "" -"If, on the other hand, you are concerned about `log injection `_, you can use a formatter " -"which escapes newlines, as per the following example:" +msgid "If, on the other hand, you are concerned about `log injection `_, you can use a formatter which escapes newlines, as per the following example:" msgstr "" -#: ../../howto/logging-cookbook.rst:4146 msgid "" "import logging\n" "\n" @@ -5182,187 +3812,101 @@ msgid "" "\n" "if __name__ == '__main__':\n" " h = logging.StreamHandler()\n" -" h.setFormatter(EscapingFormatter('%(asctime)s %(levelname)-9s %" -"(message)s'))\n" +" h.setFormatter(EscapingFormatter('%(asctime)s %(levelname)-9s %(message)s'))\n" " logging.basicConfig(level=logging.DEBUG, handlers = [h])\n" " logger.debug('Single line')\n" " logger.debug('Multiple lines:\\nfool me once ...')\n" " logger.debug('Another single line')\n" -" logger.debug('Multiple lines:\\n%s', 'fool me ...\\ncan\\'t get fooled " -"again')" +" logger.debug('Multiple lines:\\n%s', 'fool me ...\\ncan\\'t get fooled again')" msgstr "" -#: ../../howto/logging-cookbook.rst:4166 -msgid "" -"You can, of course, use whatever escaping scheme makes the most sense for " -"you. The script, when run, should produce output like this:" +msgid "You can, of course, use whatever escaping scheme makes the most sense for you. The script, when run, should produce output like this:" msgstr "" -#: ../../howto/logging-cookbook.rst:4169 msgid "" "2025-07-09 06:47:33,783 DEBUG Single line\n" "2025-07-09 06:47:33,783 DEBUG Multiple lines:\\nfool me once ...\n" "2025-07-09 06:47:33,783 DEBUG Another single line\n" -"2025-07-09 06:47:33,783 DEBUG Multiple lines:\\nfool me ...\\ncan't get " -"fooled again" +"2025-07-09 06:47:33,783 DEBUG Multiple lines:\\nfool me ...\\ncan't get fooled again" msgstr "" -#: ../../howto/logging-cookbook.rst:4176 -msgid "" -"Escaping behaviour can't be the stdlib default , as it would break backwards " -"compatibility." +msgid "Escaping behaviour can't be the stdlib default , as it would break backwards compatibility." msgstr "" -#: ../../howto/logging-cookbook.rst:4182 msgid "Patterns to avoid" msgstr "" -#: ../../howto/logging-cookbook.rst:4184 -msgid "" -"Although the preceding sections have described ways of doing things you " -"might need to do or deal with, it is worth mentioning some usage patterns " -"which are *unhelpful*, and which should therefore be avoided in most cases. " -"The following sections are in no particular order." +msgid "Although the preceding sections have described ways of doing things you might need to do or deal with, it is worth mentioning some usage patterns which are *unhelpful*, and which should therefore be avoided in most cases. The following sections are in no particular order." msgstr "" -#: ../../howto/logging-cookbook.rst:4190 msgid "Opening the same log file multiple times" msgstr "" -#: ../../howto/logging-cookbook.rst:4192 -msgid "" -"On Windows, you will generally not be able to open the same file multiple " -"times as this will lead to a \"file is in use by another process\" error. " -"However, on POSIX platforms you'll not get any errors if you open the same " -"file multiple times. This could be done accidentally, for example by:" +msgid "On Windows, you will generally not be able to open the same file multiple times as this will lead to a \"file is in use by another process\" error. However, on POSIX platforms you'll not get any errors if you open the same file multiple times. This could be done accidentally, for example by:" msgstr "" -#: ../../howto/logging-cookbook.rst:4197 -msgid "" -"Adding a file handler more than once which references the same file (e.g. by " -"a copy/paste/forget-to-change error)." +msgid "Adding a file handler more than once which references the same file (e.g. by a copy/paste/forget-to-change error)." msgstr "" -#: ../../howto/logging-cookbook.rst:4200 -msgid "" -"Opening two files that look different, as they have different names, but are " -"the same because one is a symbolic link to the other." +msgid "Opening two files that look different, as they have different names, but are the same because one is a symbolic link to the other." msgstr "" -#: ../../howto/logging-cookbook.rst:4203 -msgid "" -"Forking a process, following which both parent and child have a reference to " -"the same file. This might be through use of the :mod:`multiprocessing` " -"module, for example." +msgid "Forking a process, following which both parent and child have a reference to the same file. This might be through use of the :mod:`multiprocessing` module, for example." msgstr "" -#: ../../howto/logging-cookbook.rst:4207 -msgid "" -"Opening a file multiple times might *appear* to work most of the time, but " -"can lead to a number of problems in practice:" +msgid "Opening a file multiple times might *appear* to work most of the time, but can lead to a number of problems in practice:" msgstr "" -#: ../../howto/logging-cookbook.rst:4210 -msgid "" -"Logging output can be garbled because multiple threads or processes try to " -"write to the same file. Although logging guards against concurrent use of " -"the same handler instance by multiple threads, there is no such protection " -"if concurrent writes are attempted by two different threads using two " -"different handler instances which happen to point to the same file." +msgid "Logging output can be garbled because multiple threads or processes try to write to the same file. Although logging guards against concurrent use of the same handler instance by multiple threads, there is no such protection if concurrent writes are attempted by two different threads using two different handler instances which happen to point to the same file." msgstr "" -#: ../../howto/logging-cookbook.rst:4216 -msgid "" -"An attempt to delete a file (e.g. during file rotation) silently fails, " -"because there is another reference pointing to it. This can lead to " -"confusion and wasted debugging time - log entries end up in unexpected " -"places, or are lost altogether. Or a file that was supposed to be moved " -"remains in place, and grows in size unexpectedly despite size-based rotation " -"being supposedly in place." +msgid "An attempt to delete a file (e.g. during file rotation) silently fails, because there is another reference pointing to it. This can lead to confusion and wasted debugging time - log entries end up in unexpected places, or are lost altogether. Or a file that was supposed to be moved remains in place, and grows in size unexpectedly despite size-based rotation being supposedly in place." msgstr "" -#: ../../howto/logging-cookbook.rst:4223 -msgid "" -"Use the techniques outlined in :ref:`multiple-processes` to circumvent such " -"issues." +msgid "Use the techniques outlined in :ref:`multiple-processes` to circumvent such issues." msgstr "" -#: ../../howto/logging-cookbook.rst:4227 msgid "Using loggers as attributes in a class or passing them as parameters" msgstr "" -#: ../../howto/logging-cookbook.rst:4229 -msgid "" -"While there might be unusual cases where you'll need to do this, in general " -"there is no point because loggers are singletons. Code can always access a " -"given logger instance by name using ``logging.getLogger(name)``, so passing " -"instances around and holding them as instance attributes is pointless. Note " -"that in other languages such as Java and C#, loggers are often static class " -"attributes. However, this pattern doesn't make sense in Python, where the " -"module (and not the class) is the unit of software decomposition." +msgid "While there might be unusual cases where you'll need to do this, in general there is no point because loggers are singletons. Code can always access a given logger instance by name using ``logging.getLogger(name)``, so passing instances around and holding them as instance attributes is pointless. Note that in other languages such as Java and C#, loggers are often static class attributes. However, this pattern doesn't make sense in Python, where the module (and not the class) is the unit of software decomposition." msgstr "" -#: ../../howto/logging-cookbook.rst:4238 -msgid "" -"Adding handlers other than :class:`~logging.NullHandler` to a logger in a " -"library" +msgid "Adding handlers other than :class:`~logging.NullHandler` to a logger in a library" msgstr "" -#: ../../howto/logging-cookbook.rst:4240 -msgid "" -"Configuring logging by adding handlers, formatters and filters is the " -"responsibility of the application developer, not the library developer. If " -"you are maintaining a library, ensure that you don't add handlers to any of " -"your loggers other than a :class:`~logging.NullHandler` instance." +msgid "Configuring logging by adding handlers, formatters and filters is the responsibility of the application developer, not the library developer. If you are maintaining a library, ensure that you don't add handlers to any of your loggers other than a :class:`~logging.NullHandler` instance." msgstr "" -#: ../../howto/logging-cookbook.rst:4246 msgid "Creating a lot of loggers" msgstr "" -#: ../../howto/logging-cookbook.rst:4248 -msgid "" -"Loggers are singletons that are never freed during a script execution, and " -"so creating lots of loggers will use up memory which can't then be freed. " -"Rather than create a logger per e.g. file processed or network connection " -"made, use the :ref:`existing mechanisms ` for passing " -"contextual information into your logs and restrict the loggers created to " -"those describing areas within your application (generally modules, but " -"occasionally slightly more fine-grained than that)." +msgid "Loggers are singletons that are never freed during a script execution, and so creating lots of loggers will use up memory which can't then be freed. Rather than create a logger per e.g. file processed or network connection made, use the :ref:`existing mechanisms ` for passing contextual information into your logs and restrict the loggers created to those describing areas within your application (generally modules, but occasionally slightly more fine-grained than that)." msgstr "" -#: ../../howto/logging-cookbook.rst:4259 msgid "Other resources" msgstr "" -#: ../../howto/logging-cookbook.rst:4263 msgid "Module :mod:`logging`" msgstr "" -#: ../../howto/logging-cookbook.rst:4264 msgid "API reference for the logging module." msgstr "" -#: ../../howto/logging-cookbook.rst:4266 msgid "Module :mod:`logging.config`" msgstr "" -#: ../../howto/logging-cookbook.rst:4267 msgid "Configuration API for the logging module." msgstr "" -#: ../../howto/logging-cookbook.rst:4269 msgid "Module :mod:`logging.handlers`" msgstr "" -#: ../../howto/logging-cookbook.rst:4270 msgid "Useful handlers included with the logging module." msgstr "" -#: ../../howto/logging-cookbook.rst:4272 msgid ":ref:`Basic Tutorial `" msgstr "" -#: ../../howto/logging-cookbook.rst:4274 msgid ":ref:`Advanced Tutorial `" msgstr "" diff --git a/howto/logging.po b/howto/logging.po index 80086474..11046456 100644 --- a/howto/logging.po +++ b/howto/logging.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:53+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,280 +24,160 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../howto/logging.rst:5 msgid "Logging HOWTO" msgstr "" -#: ../../howto/logging.rst:0 msgid "Author" msgstr "" -#: ../../howto/logging.rst:7 msgid "Vinay Sajip " msgstr "" -#: ../../howto/logging.rst:13 -msgid "" -"This page contains tutorial information. For links to reference information " -"and a logging cookbook, please see :ref:`tutorial-ref-links`." +msgid "This page contains tutorial information. For links to reference information and a logging cookbook, please see :ref:`tutorial-ref-links`." msgstr "" -#: ../../howto/logging.rst:17 msgid "Basic Logging Tutorial" msgstr "" -#: ../../howto/logging.rst:19 -msgid "" -"Logging is a means of tracking events that happen when some software runs. " -"The software's developer adds logging calls to their code to indicate that " -"certain events have occurred. An event is described by a descriptive message " -"which can optionally contain variable data (i.e. data that is potentially " -"different for each occurrence of the event). Events also have an importance " -"which the developer ascribes to the event; the importance can also be called " -"the *level* or *severity*." +msgid "Logging is a means of tracking events that happen when some software runs. The software's developer adds logging calls to their code to indicate that certain events have occurred. An event is described by a descriptive message which can optionally contain variable data (i.e. data that is potentially different for each occurrence of the event). Events also have an importance which the developer ascribes to the event; the importance can also be called the *level* or *severity*." msgstr "" -#: ../../howto/logging.rst:28 msgid "When to use logging" msgstr "" -#: ../../howto/logging.rst:30 -msgid "" -"You can access logging functionality by creating a logger via ``logger = " -"logging.getLogger(__name__)``, and then calling the " -"logger's :meth:`~Logger.debug`, :meth:`~Logger.info`, :meth:`~Logger.warning`, :meth:`~Logger.error` " -"and :meth:`~Logger.critical` methods. To determine when to use logging, and " -"to see which logger methods to use when, see the table below. It states, for " -"each of a set of common tasks, the best tool to use for that task." +msgid "You can access logging functionality by creating a logger via ``logger = logging.getLogger(__name__)``, and then calling the logger's :meth:`~Logger.debug`, :meth:`~Logger.info`, :meth:`~Logger.warning`, :meth:`~Logger.error` and :meth:`~Logger.critical` methods. To determine when to use logging, and to see which logger methods to use when, see the table below. It states, for each of a set of common tasks, the best tool to use for that task." msgstr "" -#: ../../howto/logging.rst:38 msgid "Task you want to perform" msgstr "" -#: ../../howto/logging.rst:38 msgid "The best tool for the task" msgstr "" -#: ../../howto/logging.rst:40 -msgid "" -"Display console output for ordinary usage of a command line script or program" +msgid "Display console output for ordinary usage of a command line script or program" msgstr "" -#: ../../howto/logging.rst:40 msgid ":func:`print`" msgstr "" -#: ../../howto/logging.rst:44 -msgid "" -"Report events that occur during normal operation of a program (e.g. for " -"status monitoring or fault investigation)" +msgid "Report events that occur during normal operation of a program (e.g. for status monitoring or fault investigation)" msgstr "" -#: ../../howto/logging.rst:44 -msgid "" -"A logger's :meth:`~Logger.info` (or :meth:`~Logger.debug` method for very " -"detailed output for diagnostic purposes)" +msgid "A logger's :meth:`~Logger.info` (or :meth:`~Logger.debug` method for very detailed output for diagnostic purposes)" msgstr "" -#: ../../howto/logging.rst:49 msgid "Issue a warning regarding a particular runtime event" msgstr "" -#: ../../howto/logging.rst:49 -msgid "" -":func:`warnings.warn` in library code if the issue is avoidable and the " -"client application should be modified to eliminate the warning" +msgid ":func:`warnings.warn` in library code if the issue is avoidable and the client application should be modified to eliminate the warning" msgstr "" -#: ../../howto/logging.rst:54 -msgid "" -"A logger's :meth:`~Logger.warning` method if there is nothing the client " -"application can do about the situation, but the event should still be noted" +msgid "A logger's :meth:`~Logger.warning` method if there is nothing the client application can do about the situation, but the event should still be noted" msgstr "" -#: ../../howto/logging.rst:60 msgid "Report an error regarding a particular runtime event" msgstr "" -#: ../../howto/logging.rst:60 msgid "Raise an exception" msgstr "" -#: ../../howto/logging.rst:63 -msgid "" -"Report suppression of an error without raising an exception (e.g. error " -"handler in a long-running server process)" +msgid "Report suppression of an error without raising an exception (e.g. error handler in a long-running server process)" msgstr "" -#: ../../howto/logging.rst:63 -msgid "" -"A logger's :meth:`~Logger.error`, :meth:`~Logger.exception` " -"or :meth:`~Logger.critical` method as appropriate for the specific error and " -"application domain" +msgid "A logger's :meth:`~Logger.error`, :meth:`~Logger.exception` or :meth:`~Logger.critical` method as appropriate for the specific error and application domain" msgstr "" -#: ../../howto/logging.rst:70 -msgid "" -"The logger methods are named after the level or severity of the events they " -"are used to track. The standard levels and their applicability are described " -"below (in increasing order of severity):" +msgid "The logger methods are named after the level or severity of the events they are used to track. The standard levels and their applicability are described below (in increasing order of severity):" msgstr "" -#: ../../howto/logging.rst:77 ../../howto/logging.rst:875 msgid "Level" msgstr "" -#: ../../howto/logging.rst:77 msgid "When it's used" msgstr "" -#: ../../howto/logging.rst:79 ../../howto/logging.rst:885 msgid "``DEBUG``" msgstr "" -#: ../../howto/logging.rst:79 -msgid "" -"Detailed information, typically of interest only when diagnosing problems." +msgid "Detailed information, typically of interest only when diagnosing problems." msgstr "" -#: ../../howto/logging.rst:82 ../../howto/logging.rst:883 msgid "``INFO``" msgstr "" -#: ../../howto/logging.rst:82 msgid "Confirmation that things are working as expected." msgstr "" -#: ../../howto/logging.rst:85 ../../howto/logging.rst:881 msgid "``WARNING``" msgstr "" -#: ../../howto/logging.rst:85 -msgid "" -"An indication that something unexpected happened, or indicative of some " -"problem in the near future (e.g. 'disk space low'). The software is still " -"working as expected." +msgid "An indication that something unexpected happened, or indicative of some problem in the near future (e.g. 'disk space low'). The software is still working as expected." msgstr "" -#: ../../howto/logging.rst:90 ../../howto/logging.rst:879 msgid "``ERROR``" msgstr "" -#: ../../howto/logging.rst:90 -msgid "" -"Due to a more serious problem, the software has not been able to perform " -"some function." +msgid "Due to a more serious problem, the software has not been able to perform some function." msgstr "" -#: ../../howto/logging.rst:93 ../../howto/logging.rst:877 msgid "``CRITICAL``" msgstr "" -#: ../../howto/logging.rst:93 -msgid "" -"A serious error, indicating that the program itself may be unable to " -"continue running." +msgid "A serious error, indicating that the program itself may be unable to continue running." msgstr "" -#: ../../howto/logging.rst:97 -msgid "" -"The default level is ``WARNING``, which means that only events of this " -"severity and higher will be tracked, unless the logging package is " -"configured to do otherwise." +msgid "The default level is ``WARNING``, which means that only events of this severity and higher will be tracked, unless the logging package is configured to do otherwise." msgstr "" -#: ../../howto/logging.rst:100 -msgid "" -"Events that are tracked can be handled in different ways. The simplest way " -"of handling tracked events is to print them to the console. Another common " -"way is to write them to a disk file." +msgid "Events that are tracked can be handled in different ways. The simplest way of handling tracked events is to print them to the console. Another common way is to write them to a disk file." msgstr "" -#: ../../howto/logging.rst:108 msgid "A simple example" msgstr "" -#: ../../howto/logging.rst:110 msgid "A very simple example is::" msgstr "" -#: ../../howto/logging.rst:112 msgid "" "import logging\n" "logging.warning('Watch out!') # will print a message to the console\n" "logging.info('I told you so') # will not print anything" msgstr "" -#: ../../howto/logging.rst:116 msgid "If you type these lines into a script and run it, you'll see:" msgstr "" -#: ../../howto/logging.rst:118 msgid "WARNING:root:Watch out!" msgstr "" -#: ../../howto/logging.rst:122 -msgid "" -"printed out on the console. The ``INFO`` message doesn't appear because the " -"default level is ``WARNING``. The printed message includes the indication of " -"the level and the description of the event provided in the logging call, " -"i.e. 'Watch out!'. The actual output can be formatted quite flexibly if you " -"need that; formatting options will also be explained later." +msgid "printed out on the console. The ``INFO`` message doesn't appear because the default level is ``WARNING``. The printed message includes the indication of the level and the description of the event provided in the logging call, i.e. 'Watch out!'. The actual output can be formatted quite flexibly if you need that; formatting options will also be explained later." msgstr "" -#: ../../howto/logging.rst:128 -msgid "" -"Notice that in this example, we use functions directly on the ``logging`` " -"module, like ``logging.debug``, rather than creating a logger and calling " -"functions on it. These functions operate on the root logger, but can be " -"useful as they will call :func:`~logging.basicConfig` for you if it has not " -"been called yet, like in this example. In larger programs you'll usually " -"want to control the logging configuration explicitly however - so for that " -"reason as well as others, it's better to create loggers and call their " -"methods." +msgid "Notice that in this example, we use functions directly on the ``logging`` module, like ``logging.debug``, rather than creating a logger and calling functions on it. These functions operate on the root logger, but can be useful as they will call :func:`~logging.basicConfig` for you if it has not been called yet, like in this example. In larger programs you'll usually want to control the logging configuration explicitly however - so for that reason as well as others, it's better to create loggers and call their methods." msgstr "" -#: ../../howto/logging.rst:137 msgid "Logging to a file" msgstr "" -#: ../../howto/logging.rst:139 -msgid "" -"A very common situation is that of recording logging events in a file, so " -"let's look at that next. Be sure to try the following in a newly started " -"Python interpreter, and don't just continue from the session described " -"above::" +msgid "A very common situation is that of recording logging events in a file, so let's look at that next. Be sure to try the following in a newly started Python interpreter, and don't just continue from the session described above::" msgstr "" -#: ../../howto/logging.rst:143 msgid "" "import logging\n" "logger = logging.getLogger(__name__)\n" -"logging.basicConfig(filename='example.log', encoding='utf-8', " -"level=logging.DEBUG)\n" +"logging.basicConfig(filename='example.log', encoding='utf-8', level=logging.DEBUG)\n" "logger.debug('This message should go to the log file')\n" "logger.info('So should this')\n" "logger.warning('And this, too')\n" "logger.error('And non-ASCII stuff, too, like Øresund and Malmö')" msgstr "" -#: ../../howto/logging.rst:151 -msgid "" -"The *encoding* argument was added. In earlier Python versions, or if not " -"specified, the encoding used is the default value used by :func:`open`. " -"While not shown in the above example, an *errors* argument can also now be " -"passed, which determines how encoding errors are handled. For available " -"values and the default, see the documentation for :func:`open`." +msgid "The *encoding* argument was added. In earlier Python versions, or if not specified, the encoding used is the default value used by :func:`open`. While not shown in the above example, an *errors* argument can also now be passed, which determines how encoding errors are handled. For available values and the default, see the documentation for :func:`open`." msgstr "" -#: ../../howto/logging.rst:158 -msgid "" -"And now if we open the file and look at what we have, we should find the log " -"messages:" +msgid "And now if we open the file and look at what we have, we should find the log messages:" msgstr "" -#: ../../howto/logging.rst:161 msgid "" "DEBUG:__main__:This message should go to the log file\n" "INFO:__main__:So should this\n" @@ -305,40 +185,24 @@ msgid "" "ERROR:__main__:And non-ASCII stuff, too, like Øresund and Malmö" msgstr "" -#: ../../howto/logging.rst:168 -msgid "" -"This example also shows how you can set the logging level which acts as the " -"threshold for tracking. In this case, because we set the threshold to " -"``DEBUG``, all of the messages were printed." +msgid "This example also shows how you can set the logging level which acts as the threshold for tracking. In this case, because we set the threshold to ``DEBUG``, all of the messages were printed." msgstr "" -#: ../../howto/logging.rst:172 -msgid "" -"If you want to set the logging level from a command-line option such as:" +msgid "If you want to set the logging level from a command-line option such as:" msgstr "" -#: ../../howto/logging.rst:174 msgid "--log=INFO" msgstr "" -#: ../../howto/logging.rst:178 -msgid "" -"and you have the value of the parameter passed for ``--log`` in some " -"variable *loglevel*, you can use::" +msgid "and you have the value of the parameter passed for ``--log`` in some variable *loglevel*, you can use::" msgstr "" -#: ../../howto/logging.rst:181 msgid "getattr(logging, loglevel.upper())" msgstr "" -#: ../../howto/logging.rst:183 -msgid "" -"to get the value which you'll pass to :func:`basicConfig` via the *level* " -"argument. You may want to error check any user input value, perhaps as in " -"the following example::" +msgid "to get the value which you'll pass to :func:`basicConfig` via the *level* argument. You may want to error check any user input value, perhaps as in the following example::" msgstr "" -#: ../../howto/logging.rst:187 msgid "" "# assuming loglevel is bound to the string value obtained from the\n" "# command line argument. Convert to upper case to allow the user to\n" @@ -349,596 +213,286 @@ msgid "" "logging.basicConfig(level=numeric_level, ...)" msgstr "" -#: ../../howto/logging.rst:195 -msgid "" -"The call to :func:`basicConfig` should come *before* any calls to a logger's " -"methods such as :meth:`~Logger.debug`, :meth:`~Logger.info`, etc. Otherwise, " -"that logging event may not be handled in the desired manner." +msgid "The call to :func:`basicConfig` should come *before* any calls to a logger's methods such as :meth:`~Logger.debug`, :meth:`~Logger.info`, etc. Otherwise, that logging event may not be handled in the desired manner." msgstr "" -#: ../../howto/logging.rst:199 -msgid "" -"If you run the above script several times, the messages from successive runs " -"are appended to the file *example.log*. If you want each run to start " -"afresh, not remembering the messages from earlier runs, you can specify the " -"*filemode* argument, by changing the call in the above example to::" +msgid "If you run the above script several times, the messages from successive runs are appended to the file *example.log*. If you want each run to start afresh, not remembering the messages from earlier runs, you can specify the *filemode* argument, by changing the call in the above example to::" msgstr "" -#: ../../howto/logging.rst:204 -msgid "" -"logging.basicConfig(filename='example.log', filemode='w', " -"level=logging.DEBUG)" +msgid "logging.basicConfig(filename='example.log', filemode='w', level=logging.DEBUG)" msgstr "" -#: ../../howto/logging.rst:206 -msgid "" -"The output will be the same as before, but the log file is no longer " -"appended to, so the messages from earlier runs are lost." +msgid "The output will be the same as before, but the log file is no longer appended to, so the messages from earlier runs are lost." msgstr "" -#: ../../howto/logging.rst:211 msgid "Logging variable data" msgstr "" -#: ../../howto/logging.rst:213 -msgid "" -"To log variable data, use a format string for the event description message " -"and append the variable data as arguments. For example::" +msgid "To log variable data, use a format string for the event description message and append the variable data as arguments. For example::" msgstr "" -#: ../../howto/logging.rst:216 msgid "" "import logging\n" "logging.warning('%s before you %s', 'Look', 'leap!')" msgstr "" -#: ../../howto/logging.rst:219 msgid "will display:" msgstr "" -#: ../../howto/logging.rst:221 msgid "WARNING:root:Look before you leap!" msgstr "" -#: ../../howto/logging.rst:225 -msgid "" -"As you can see, merging of variable data into the event description message " -"uses the old, %-style of string formatting. This is for backwards " -"compatibility: the logging package pre-dates newer formatting options such " -"as :meth:`str.format` and :class:`string.Template`. These newer formatting " -"options *are* supported, but exploring them is outside the scope of this " -"tutorial: see :ref:`formatting-styles` for more information." +msgid "As you can see, merging of variable data into the event description message uses the old, %-style of string formatting. This is for backwards compatibility: the logging package pre-dates newer formatting options such as :meth:`str.format` and :class:`string.Template`. These newer formatting options *are* supported, but exploring them is outside the scope of this tutorial: see :ref:`formatting-styles` for more information." msgstr "" -#: ../../howto/logging.rst:234 msgid "Changing the format of displayed messages" msgstr "" -#: ../../howto/logging.rst:236 -msgid "" -"To change the format which is used to display messages, you need to specify " -"the format you want to use::" +msgid "To change the format which is used to display messages, you need to specify the format you want to use::" msgstr "" -#: ../../howto/logging.rst:239 msgid "" "import logging\n" -"logging.basicConfig(format='%(levelname)s:%(message)s', " -"level=logging.DEBUG)\n" +"logging.basicConfig(format='%(levelname)s:%(message)s', level=logging.DEBUG)\n" "logging.debug('This message should appear on the console')\n" "logging.info('So should this')\n" "logging.warning('And this, too')" msgstr "" -#: ../../howto/logging.rst:245 msgid "which would print:" msgstr "" -#: ../../howto/logging.rst:247 msgid "" "DEBUG:This message should appear on the console\n" "INFO:So should this\n" "WARNING:And this, too" msgstr "" -#: ../../howto/logging.rst:253 -msgid "" -"Notice that the 'root' which appeared in earlier examples has disappeared. " -"For a full set of things that can appear in format strings, you can refer to " -"the documentation for :ref:`logrecord-attributes`, but for simple usage, you " -"just need the *levelname* (severity), *message* (event description, " -"including variable data) and perhaps to display when the event occurred. " -"This is described in the next section." +msgid "Notice that the 'root' which appeared in earlier examples has disappeared. For a full set of things that can appear in format strings, you can refer to the documentation for :ref:`logrecord-attributes`, but for simple usage, you just need the *levelname* (severity), *message* (event description, including variable data) and perhaps to display when the event occurred. This is described in the next section." msgstr "" -#: ../../howto/logging.rst:262 msgid "Displaying the date/time in messages" msgstr "" -#: ../../howto/logging.rst:264 -msgid "" -"To display the date and time of an event, you would place '%(asctime)s' in " -"your format string::" +msgid "To display the date and time of an event, you would place '%(asctime)s' in your format string::" msgstr "" -#: ../../howto/logging.rst:267 msgid "" "import logging\n" "logging.basicConfig(format='%(asctime)s %(message)s')\n" "logging.warning('is when this event was logged.')" msgstr "" -#: ../../howto/logging.rst:271 msgid "which should print something like this:" msgstr "" -#: ../../howto/logging.rst:273 msgid "2010-12-12 11:41:42,612 is when this event was logged." msgstr "" -#: ../../howto/logging.rst:277 -msgid "" -"The default format for date/time display (shown above) is like ISO8601 " -"or :rfc:`3339`. If you need more control over the formatting of the date/" -"time, provide a *datefmt* argument to ``basicConfig``, as in this example::" +msgid "The default format for date/time display (shown above) is like ISO8601 or :rfc:`3339`. If you need more control over the formatting of the date/time, provide a *datefmt* argument to ``basicConfig``, as in this example::" msgstr "" -#: ../../howto/logging.rst:281 msgid "" "import logging\n" -"logging.basicConfig(format='%(asctime)s %(message)s', datefmt='%m/%d/%Y %I:" -"%M:%S %p')\n" +"logging.basicConfig(format='%(asctime)s %(message)s', datefmt='%m/%d/%Y %I:%M:%S %p')\n" "logging.warning('is when this event was logged.')" msgstr "" -#: ../../howto/logging.rst:285 msgid "which would display something like this:" msgstr "" -#: ../../howto/logging.rst:287 msgid "12/12/2010 11:46:36 AM is when this event was logged." msgstr "" -#: ../../howto/logging.rst:291 -msgid "" -"The format of the *datefmt* argument is the same as supported " -"by :func:`time.strftime`." +msgid "The format of the *datefmt* argument is the same as supported by :func:`time.strftime`." msgstr "" -#: ../../howto/logging.rst:296 msgid "Next Steps" msgstr "" -#: ../../howto/logging.rst:298 -msgid "" -"That concludes the basic tutorial. It should be enough to get you up and " -"running with logging. There's a lot more that the logging package offers, " -"but to get the best out of it, you'll need to invest a little more of your " -"time in reading the following sections. If you're ready for that, grab some " -"of your favourite beverage and carry on." +msgid "That concludes the basic tutorial. It should be enough to get you up and running with logging. There's a lot more that the logging package offers, but to get the best out of it, you'll need to invest a little more of your time in reading the following sections. If you're ready for that, grab some of your favourite beverage and carry on." msgstr "" -#: ../../howto/logging.rst:304 -msgid "" -"If your logging needs are simple, then use the above examples to incorporate " -"logging into your own scripts, and if you run into problems or don't " -"understand something, please post a question in the Help category of the " -"`Python discussion forum `_ and you " -"should receive help before too long." +msgid "If your logging needs are simple, then use the above examples to incorporate logging into your own scripts, and if you run into problems or don't understand something, please post a question in the Help category of the `Python discussion forum `_ and you should receive help before too long." msgstr "" -#: ../../howto/logging.rst:310 -msgid "" -"Still here? You can carry on reading the next few sections, which provide a " -"slightly more advanced/in-depth tutorial than the basic one above. After " -"that, you can take a look at the :ref:`logging-cookbook`." +msgid "Still here? You can carry on reading the next few sections, which provide a slightly more advanced/in-depth tutorial than the basic one above. After that, you can take a look at the :ref:`logging-cookbook`." msgstr "" -#: ../../howto/logging.rst:318 msgid "Advanced Logging Tutorial" msgstr "" -#: ../../howto/logging.rst:320 -msgid "" -"The logging library takes a modular approach and offers several categories " -"of components: loggers, handlers, filters, and formatters." +msgid "The logging library takes a modular approach and offers several categories of components: loggers, handlers, filters, and formatters." msgstr "" -#: ../../howto/logging.rst:323 msgid "Loggers expose the interface that application code directly uses." msgstr "" -#: ../../howto/logging.rst:324 -msgid "" -"Handlers send the log records (created by loggers) to the appropriate " -"destination." +msgid "Handlers send the log records (created by loggers) to the appropriate destination." msgstr "" -#: ../../howto/logging.rst:326 -msgid "" -"Filters provide a finer grained facility for determining which log records " -"to output." +msgid "Filters provide a finer grained facility for determining which log records to output." msgstr "" -#: ../../howto/logging.rst:328 msgid "Formatters specify the layout of log records in the final output." msgstr "" -#: ../../howto/logging.rst:330 -msgid "" -"Log event information is passed between loggers, handlers, filters and " -"formatters in a :class:`LogRecord` instance." +msgid "Log event information is passed between loggers, handlers, filters and formatters in a :class:`LogRecord` instance." msgstr "" -#: ../../howto/logging.rst:333 -msgid "" -"Logging is performed by calling methods on instances of the :class:`Logger` " -"class (hereafter called :dfn:`loggers`). Each instance has a name, and they " -"are conceptually arranged in a namespace hierarchy using dots (periods) as " -"separators. For example, a logger named 'scan' is the parent of loggers " -"'scan.text', 'scan.html' and 'scan.pdf'. Logger names can be anything you " -"want, and indicate the area of an application in which a logged message " -"originates." +msgid "Logging is performed by calling methods on instances of the :class:`Logger` class (hereafter called :dfn:`loggers`). Each instance has a name, and they are conceptually arranged in a namespace hierarchy using dots (periods) as separators. For example, a logger named 'scan' is the parent of loggers 'scan.text', 'scan.html' and 'scan.pdf'. Logger names can be anything you want, and indicate the area of an application in which a logged message originates." msgstr "" -#: ../../howto/logging.rst:340 -msgid "" -"A good convention to use when naming loggers is to use a module-level " -"logger, in each module which uses logging, named as follows::" +msgid "A good convention to use when naming loggers is to use a module-level logger, in each module which uses logging, named as follows::" msgstr "" -#: ../../howto/logging.rst:343 msgid "logger = logging.getLogger(__name__)" msgstr "" -#: ../../howto/logging.rst:345 -msgid "" -"This means that logger names track the package/module hierarchy, and it's " -"intuitively obvious where events are logged just from the logger name." +msgid "This means that logger names track the package/module hierarchy, and it's intuitively obvious where events are logged just from the logger name." msgstr "" -#: ../../howto/logging.rst:348 -msgid "" -"The root of the hierarchy of loggers is called the root logger. That's the " -"logger used by the " -"functions :func:`debug`, :func:`info`, :func:`warning`, :func:`error` " -"and :func:`critical`, which just call the same-named method of the root " -"logger. The functions and the methods have the same signatures. The root " -"logger's name is printed as 'root' in the logged output." +msgid "The root of the hierarchy of loggers is called the root logger. That's the logger used by the functions :func:`debug`, :func:`info`, :func:`warning`, :func:`error` and :func:`critical`, which just call the same-named method of the root logger. The functions and the methods have the same signatures. The root logger's name is printed as 'root' in the logged output." msgstr "" -#: ../../howto/logging.rst:354 -msgid "" -"It is, of course, possible to log messages to different destinations. " -"Support is included in the package for writing log messages to files, HTTP " -"GET/POST locations, email via SMTP, generic sockets, queues, or OS-specific " -"logging mechanisms such as syslog or the Windows NT event log. Destinations " -"are served by :dfn:`handler` classes. You can create your own log " -"destination class if you have special requirements not met by any of the " -"built-in handler classes." +msgid "It is, of course, possible to log messages to different destinations. Support is included in the package for writing log messages to files, HTTP GET/POST locations, email via SMTP, generic sockets, queues, or OS-specific logging mechanisms such as syslog or the Windows NT event log. Destinations are served by :dfn:`handler` classes. You can create your own log destination class if you have special requirements not met by any of the built-in handler classes." msgstr "" -#: ../../howto/logging.rst:361 -msgid "" -"By default, no destination is set for any logging messages. You can specify " -"a destination (such as console or file) by using :func:`basicConfig` as in " -"the tutorial examples. If you call the " -"functions :func:`debug`, :func:`info`, :func:`warning`, :func:`error` " -"and :func:`critical`, they will check to see if no destination is set; and " -"if one is not set, they will set a destination of the console " -"(``sys.stderr``) and a default format for the displayed message before " -"delegating to the root logger to do the actual message output." +msgid "By default, no destination is set for any logging messages. You can specify a destination (such as console or file) by using :func:`basicConfig` as in the tutorial examples. If you call the functions :func:`debug`, :func:`info`, :func:`warning`, :func:`error` and :func:`critical`, they will check to see if no destination is set; and if one is not set, they will set a destination of the console (``sys.stderr``) and a default format for the displayed message before delegating to the root logger to do the actual message output." msgstr "" -#: ../../howto/logging.rst:369 msgid "The default format set by :func:`basicConfig` for messages is:" msgstr "" -#: ../../howto/logging.rst:371 msgid "severity:logger name:message" msgstr "" -#: ../../howto/logging.rst:375 -msgid "" -"You can change this by passing a format string to :func:`basicConfig` with " -"the *format* keyword argument. For all options regarding how a format string " -"is constructed, see :ref:`formatter-objects`." +msgid "You can change this by passing a format string to :func:`basicConfig` with the *format* keyword argument. For all options regarding how a format string is constructed, see :ref:`formatter-objects`." msgstr "" -#: ../../howto/logging.rst:380 msgid "Logging Flow" msgstr "" -#: ../../howto/logging.rst:382 -msgid "" -"The flow of log event information in loggers and handlers is illustrated in " -"the following diagram." +msgid "The flow of log event information in loggers and handlers is illustrated in the following diagram." msgstr "" -#: ../../howto/logging.rst:433 msgid "Loggers" msgstr "" -#: ../../howto/logging.rst:435 -msgid "" -":class:`Logger` objects have a threefold job. First, they expose several " -"methods to application code so that applications can log messages at " -"runtime. Second, logger objects determine which log messages to act upon " -"based upon severity (the default filtering facility) or filter objects. " -"Third, logger objects pass along relevant log messages to all interested log " -"handlers." +msgid ":class:`Logger` objects have a threefold job. First, they expose several methods to application code so that applications can log messages at runtime. Second, logger objects determine which log messages to act upon based upon severity (the default filtering facility) or filter objects. Third, logger objects pass along relevant log messages to all interested log handlers." msgstr "" -#: ../../howto/logging.rst:441 -msgid "" -"The most widely used methods on logger objects fall into two categories: " -"configuration and message sending." +msgid "The most widely used methods on logger objects fall into two categories: configuration and message sending." msgstr "" -#: ../../howto/logging.rst:444 msgid "These are the most common configuration methods:" msgstr "" -#: ../../howto/logging.rst:446 -msgid "" -":meth:`Logger.setLevel` specifies the lowest-severity log message a logger " -"will handle, where debug is the lowest built-in severity level and critical " -"is the highest built-in severity. For example, if the severity level is " -"INFO, the logger will handle only INFO, WARNING, ERROR, and CRITICAL " -"messages and will ignore DEBUG messages." +msgid ":meth:`Logger.setLevel` specifies the lowest-severity log message a logger will handle, where debug is the lowest built-in severity level and critical is the highest built-in severity. For example, if the severity level is INFO, the logger will handle only INFO, WARNING, ERROR, and CRITICAL messages and will ignore DEBUG messages." msgstr "" -#: ../../howto/logging.rst:452 -msgid "" -":meth:`Logger.addHandler` and :meth:`Logger.removeHandler` add and remove " -"handler objects from the logger object. Handlers are covered in more detail " -"in :ref:`handler-basic`." +msgid ":meth:`Logger.addHandler` and :meth:`Logger.removeHandler` add and remove handler objects from the logger object. Handlers are covered in more detail in :ref:`handler-basic`." msgstr "" -#: ../../howto/logging.rst:456 -msgid "" -":meth:`Logger.addFilter` and :meth:`Logger.removeFilter` add and remove " -"filter objects from the logger object. Filters are covered in more detail " -"in :ref:`filter`." +msgid ":meth:`Logger.addFilter` and :meth:`Logger.removeFilter` add and remove filter objects from the logger object. Filters are covered in more detail in :ref:`filter`." msgstr "" -#: ../../howto/logging.rst:460 -msgid "" -"You don't need to always call these methods on every logger you create. See " -"the last two paragraphs in this section." +msgid "You don't need to always call these methods on every logger you create. See the last two paragraphs in this section." msgstr "" -#: ../../howto/logging.rst:463 -msgid "" -"With the logger object configured, the following methods create log messages:" +msgid "With the logger object configured, the following methods create log messages:" msgstr "" -#: ../../howto/logging.rst:465 -msgid "" -":meth:`Logger.debug`, :meth:`Logger.info`, :meth:`Logger.warning`, :meth:`Logger.error`, " -"and :meth:`Logger.critical` all create log records with a message and a " -"level that corresponds to their respective method names. The message is " -"actually a format string, which may contain the standard string substitution " -"syntax of ``%s``, ``%d``, ``%f``, and so on. The rest of their arguments is " -"a list of objects that correspond with the substitution fields in the " -"message. With regard to ``**kwargs``, the logging methods care only about a " -"keyword of ``exc_info`` and use it to determine whether to log exception " -"information." -msgstr "" - -#: ../../howto/logging.rst:475 -msgid "" -":meth:`Logger.exception` creates a log message similar " -"to :meth:`Logger.error`. The difference is that :meth:`Logger.exception` " -"dumps a stack trace along with it. Call this method only from an exception " -"handler." +msgid ":meth:`Logger.debug`, :meth:`Logger.info`, :meth:`Logger.warning`, :meth:`Logger.error`, and :meth:`Logger.critical` all create log records with a message and a level that corresponds to their respective method names. The message is actually a format string, which may contain the standard string substitution syntax of ``%s``, ``%d``, ``%f``, and so on. The rest of their arguments is a list of objects that correspond with the substitution fields in the message. With regard to ``**kwargs``, the logging methods care only about a keyword of ``exc_info`` and use it to determine whether to log exception information." msgstr "" -#: ../../howto/logging.rst:479 -msgid "" -":meth:`Logger.log` takes a log level as an explicit argument. This is a " -"little more verbose for logging messages than using the log level " -"convenience methods listed above, but this is how to log at custom log " -"levels." +msgid ":meth:`Logger.exception` creates a log message similar to :meth:`Logger.error`. The difference is that :meth:`Logger.exception` dumps a stack trace along with it. Call this method only from an exception handler." msgstr "" -#: ../../howto/logging.rst:483 -msgid "" -":func:`getLogger` returns a reference to a logger instance with the " -"specified name if it is provided, or ``root`` if not. The names are period-" -"separated hierarchical structures. Multiple calls to :func:`getLogger` with " -"the same name will return a reference to the same logger object. Loggers " -"that are further down in the hierarchical list are children of loggers " -"higher up in the list. For example, given a logger with a name of ``foo``, " -"loggers with names of ``foo.bar``, ``foo.bar.baz``, and ``foo.bam`` are all " -"descendants of ``foo``." +msgid ":meth:`Logger.log` takes a log level as an explicit argument. This is a little more verbose for logging messages than using the log level convenience methods listed above, but this is how to log at custom log levels." msgstr "" -#: ../../howto/logging.rst:491 -msgid "" -"Loggers have a concept of *effective level*. If a level is not explicitly " -"set on a logger, the level of its parent is used instead as its effective " -"level. If the parent has no explicit level set, *its* parent is examined, " -"and so on - all ancestors are searched until an explicitly set level is " -"found. The root logger always has an explicit level set (``WARNING`` by " -"default). When deciding whether to process an event, the effective level of " -"the logger is used to determine whether the event is passed to the logger's " -"handlers." +msgid ":func:`getLogger` returns a reference to a logger instance with the specified name if it is provided, or ``root`` if not. The names are period-separated hierarchical structures. Multiple calls to :func:`getLogger` with the same name will return a reference to the same logger object. Loggers that are further down in the hierarchical list are children of loggers higher up in the list. For example, given a logger with a name of ``foo``, loggers with names of ``foo.bar``, ``foo.bar.baz``, and ``foo.bam`` are all descendants of ``foo``." msgstr "" -#: ../../howto/logging.rst:499 -msgid "" -"Child loggers propagate messages up to the handlers associated with their " -"ancestor loggers. Because of this, it is unnecessary to define and configure " -"handlers for all the loggers an application uses. It is sufficient to " -"configure handlers for a top-level logger and create child loggers as " -"needed. (You can, however, turn off propagation by setting the *propagate* " -"attribute of a logger to ``False``.)" +msgid "Loggers have a concept of *effective level*. If a level is not explicitly set on a logger, the level of its parent is used instead as its effective level. If the parent has no explicit level set, *its* parent is examined, and so on - all ancestors are searched until an explicitly set level is found. The root logger always has an explicit level set (``WARNING`` by default). When deciding whether to process an event, the effective level of the logger is used to determine whether the event is passed to the logger's handlers." +msgstr "" + +msgid "Child loggers propagate messages up to the handlers associated with their ancestor loggers. Because of this, it is unnecessary to define and configure handlers for all the loggers an application uses. It is sufficient to configure handlers for a top-level logger and create child loggers as needed. (You can, however, turn off propagation by setting the *propagate* attribute of a logger to ``False``.)" msgstr "" -#: ../../howto/logging.rst:510 msgid "Handlers" msgstr "" -#: ../../howto/logging.rst:512 -msgid "" -":class:`~logging.Handler` objects are responsible for dispatching the " -"appropriate log messages (based on the log messages' severity) to the " -"handler's specified destination. :class:`Logger` objects can add zero or " -"more handler objects to themselves with an :meth:`~Logger.addHandler` " -"method. As an example scenario, an application may want to send all log " -"messages to a log file, all log messages of error or higher to stdout, and " -"all messages of critical to an email address. This scenario requires three " -"individual handlers where each handler is responsible for sending messages " -"of a specific severity to a specific location." -msgstr "" - -#: ../../howto/logging.rst:522 -msgid "" -"The standard library includes quite a few handler types (see :ref:`useful-" -"handlers`); the tutorials use mainly :class:`StreamHandler` " -"and :class:`FileHandler` in its examples." +msgid ":class:`~logging.Handler` objects are responsible for dispatching the appropriate log messages (based on the log messages' severity) to the handler's specified destination. :class:`Logger` objects can add zero or more handler objects to themselves with an :meth:`~Logger.addHandler` method. As an example scenario, an application may want to send all log messages to a log file, all log messages of error or higher to stdout, and all messages of critical to an email address. This scenario requires three individual handlers where each handler is responsible for sending messages of a specific severity to a specific location." msgstr "" -#: ../../howto/logging.rst:526 -msgid "" -"There are very few methods in a handler for application developers to " -"concern themselves with. The only handler methods that seem relevant for " -"application developers who are using the built-in handler objects (that is, " -"not creating custom handlers) are the following configuration methods:" +msgid "The standard library includes quite a few handler types (see :ref:`useful-handlers`); the tutorials use mainly :class:`StreamHandler` and :class:`FileHandler` in its examples." msgstr "" -#: ../../howto/logging.rst:531 -msgid "" -"The :meth:`~Handler.setLevel` method, just as in logger objects, specifies " -"the lowest severity that will be dispatched to the appropriate destination. " -"Why are there two :meth:`~Handler.setLevel` methods? The level set in the " -"logger determines which severity of messages it will pass to its handlers. " -"The level set in each handler determines which messages that handler will " -"send on." +msgid "There are very few methods in a handler for application developers to concern themselves with. The only handler methods that seem relevant for application developers who are using the built-in handler objects (that is, not creating custom handlers) are the following configuration methods:" msgstr "" -#: ../../howto/logging.rst:537 -msgid "" -":meth:`~Handler.setFormatter` selects a Formatter object for this handler to " -"use." +msgid "The :meth:`~Handler.setLevel` method, just as in logger objects, specifies the lowest severity that will be dispatched to the appropriate destination. Why are there two :meth:`~Handler.setLevel` methods? The level set in the logger determines which severity of messages it will pass to its handlers. The level set in each handler determines which messages that handler will send on." msgstr "" -#: ../../howto/logging.rst:540 -msgid "" -":meth:`~Handler.addFilter` and :meth:`~Handler.removeFilter` respectively " -"configure and deconfigure filter objects on handlers." +msgid ":meth:`~Handler.setFormatter` selects a Formatter object for this handler to use." msgstr "" -#: ../../howto/logging.rst:543 -msgid "" -"Application code should not directly instantiate and use instances " -"of :class:`Handler`. Instead, the :class:`Handler` class is a base class " -"that defines the interface that all handlers should have and establishes " -"some default behavior that child classes can use (or override)." +msgid ":meth:`~Handler.addFilter` and :meth:`~Handler.removeFilter` respectively configure and deconfigure filter objects on handlers." +msgstr "" + +msgid "Application code should not directly instantiate and use instances of :class:`Handler`. Instead, the :class:`Handler` class is a base class that defines the interface that all handlers should have and establishes some default behavior that child classes can use (or override)." msgstr "" -#: ../../howto/logging.rst:550 msgid "Formatters" msgstr "" -#: ../../howto/logging.rst:552 -msgid "" -"Formatter objects configure the final order, structure, and contents of the " -"log message. Unlike the base :class:`logging.Handler` class, application " -"code may instantiate formatter classes, although you could likely subclass " -"the formatter if your application needs special behavior. The constructor " -"takes three optional arguments -- a message format string, a date format " -"string and a style indicator." +msgid "Formatter objects configure the final order, structure, and contents of the log message. Unlike the base :class:`logging.Handler` class, application code may instantiate formatter classes, although you could likely subclass the formatter if your application needs special behavior. The constructor takes three optional arguments -- a message format string, a date format string and a style indicator." msgstr "" -#: ../../howto/logging.rst:561 -msgid "" -"If there is no message format string, the default is to use the raw " -"message. If there is no date format string, the default date format is:" +msgid "If there is no message format string, the default is to use the raw message. If there is no date format string, the default date format is:" msgstr "" -#: ../../howto/logging.rst:564 msgid "%Y-%m-%d %H:%M:%S" msgstr "" -#: ../../howto/logging.rst:568 -msgid "" -"with the milliseconds tacked on at the end. The ``style`` is one of ``'%'``, " -"``'{'``, or ``'$'``. If one of these is not specified, then ``'%'`` will be " -"used." +msgid "with the milliseconds tacked on at the end. The ``style`` is one of ``'%'``, ``'{'``, or ``'$'``. If one of these is not specified, then ``'%'`` will be used." msgstr "" -#: ../../howto/logging.rst:571 -msgid "" -"If the ``style`` is ``'%'``, the message format string uses ``%()s`` styled string substitution; the possible keys are documented " -"in :ref:`logrecord-attributes`. If the style is ``'{'``, the message format " -"string is assumed to be compatible with :meth:`str.format` (using keyword " -"arguments), while if the style is ``'$'`` then the message format string " -"should conform to what is expected by :meth:`string.Template.substitute`." +msgid "If the ``style`` is ``'%'``, the message format string uses ``%()s`` styled string substitution; the possible keys are documented in :ref:`logrecord-attributes`. If the style is ``'{'``, the message format string is assumed to be compatible with :meth:`str.format` (using keyword arguments), while if the style is ``'$'`` then the message format string should conform to what is expected by :meth:`string.Template.substitute`." msgstr "" -#: ../../howto/logging.rst:578 msgid "Added the ``style`` parameter." msgstr "" -#: ../../howto/logging.rst:581 -msgid "" -"The following message format string will log the time in a human-readable " -"format, the severity of the message, and the contents of the message, in " -"that order::" +msgid "The following message format string will log the time in a human-readable format, the severity of the message, and the contents of the message, in that order::" msgstr "" -#: ../../howto/logging.rst:585 msgid "'%(asctime)s - %(levelname)s - %(message)s'" msgstr "" -#: ../../howto/logging.rst:587 -msgid "" -"Formatters use a user-configurable function to convert the creation time of " -"a record to a tuple. By default, :func:`time.localtime` is used; to change " -"this for a particular formatter instance, set the ``converter`` attribute of " -"the instance to a function with the same signature as :func:`time.localtime` " -"or :func:`time.gmtime`. To change it for all formatters, for example if you " -"want all logging times to be shown in GMT, set the ``converter`` attribute " -"in the Formatter class (to ``time.gmtime`` for GMT display)." +msgid "Formatters use a user-configurable function to convert the creation time of a record to a tuple. By default, :func:`time.localtime` is used; to change this for a particular formatter instance, set the ``converter`` attribute of the instance to a function with the same signature as :func:`time.localtime` or :func:`time.gmtime`. To change it for all formatters, for example if you want all logging times to be shown in GMT, set the ``converter`` attribute in the Formatter class (to ``time.gmtime`` for GMT display)." msgstr "" -#: ../../howto/logging.rst:597 msgid "Configuring Logging" msgstr "" -#: ../../howto/logging.rst:601 msgid "Programmers can configure logging in three ways:" msgstr "" -#: ../../howto/logging.rst:603 -msgid "" -"Creating loggers, handlers, and formatters explicitly using Python code that " -"calls the configuration methods listed above." +msgid "Creating loggers, handlers, and formatters explicitly using Python code that calls the configuration methods listed above." msgstr "" -#: ../../howto/logging.rst:605 -msgid "" -"Creating a logging config file and reading it using the :func:`fileConfig` " -"function." +msgid "Creating a logging config file and reading it using the :func:`fileConfig` function." msgstr "" -#: ../../howto/logging.rst:607 -msgid "" -"Creating a dictionary of configuration information and passing it to " -"the :func:`dictConfig` function." +msgid "Creating a dictionary of configuration information and passing it to the :func:`dictConfig` function." msgstr "" -#: ../../howto/logging.rst:610 -msgid "" -"For the reference documentation on the last two options, see :ref:`logging-" -"config-api`. The following example configures a very simple logger, a " -"console handler, and a simple formatter using Python code::" +msgid "For the reference documentation on the last two options, see :ref:`logging-config-api`. The following example configures a very simple logger, a console handler, and a simple formatter using Python code::" msgstr "" -#: ../../howto/logging.rst:614 msgid "" "import logging\n" "\n" @@ -951,8 +505,7 @@ msgid "" "ch.setLevel(logging.DEBUG)\n" "\n" "# create formatter\n" -"formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %" -"(message)s')\n" +"formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s')\n" "\n" "# add formatter to ch\n" "ch.setFormatter(formatter)\n" @@ -968,12 +521,9 @@ msgid "" "logger.critical('critical message')" msgstr "" -#: ../../howto/logging.rst:640 -msgid "" -"Running this module from the command line produces the following output:" +msgid "Running this module from the command line produces the following output:" msgstr "" -#: ../../howto/logging.rst:642 msgid "" "$ python simple_logging_module.py\n" "2005-03-19 15:10:26,618 - simple_example - DEBUG - debug message\n" @@ -983,14 +533,9 @@ msgid "" "2005-03-19 15:10:26,773 - simple_example - CRITICAL - critical message" msgstr "" -#: ../../howto/logging.rst:651 -msgid "" -"The following Python module creates a logger, handler, and formatter nearly " -"identical to those in the example listed above, with the only difference " -"being the names of the objects::" +msgid "The following Python module creates a logger, handler, and formatter nearly identical to those in the example listed above, with the only difference being the names of the objects::" msgstr "" -#: ../../howto/logging.rst:655 msgid "" "import logging\n" "import logging.config\n" @@ -1008,11 +553,9 @@ msgid "" "logger.critical('critical message')" msgstr "" -#: ../../howto/logging.rst:670 msgid "Here is the logging.conf file:" msgstr "" -#: ../../howto/logging.rst:672 msgid "" "[loggers]\n" "keys=root,simpleExample\n" @@ -1043,12 +586,9 @@ msgid "" "format=%(asctime)s - %(name)s - %(levelname)s - %(message)s" msgstr "" -#: ../../howto/logging.rst:702 -msgid "" -"The output is nearly identical to that of the non-config-file-based example:" +msgid "The output is nearly identical to that of the non-config-file-based example:" msgstr "" -#: ../../howto/logging.rst:704 msgid "" "$ python simple_logging_config.py\n" "2005-03-19 15:38:55,977 - simpleExample - DEBUG - debug message\n" @@ -1058,66 +598,24 @@ msgid "" "2005-03-19 15:38:56,130 - simpleExample - CRITICAL - critical message" msgstr "" -#: ../../howto/logging.rst:713 -msgid "" -"You can see that the config file approach has a few advantages over the " -"Python code approach, mainly separation of configuration and code and the " -"ability of noncoders to easily modify the logging properties." +msgid "You can see that the config file approach has a few advantages over the Python code approach, mainly separation of configuration and code and the ability of noncoders to easily modify the logging properties." msgstr "" -#: ../../howto/logging.rst:717 -msgid "" -"The :func:`fileConfig` function takes a default parameter, " -"``disable_existing_loggers``, which defaults to ``True`` for reasons of " -"backward compatibility. This may or may not be what you want, since it will " -"cause any non-root loggers existing before the :func:`fileConfig` call to be " -"disabled unless they (or an ancestor) are explicitly named in the " -"configuration. Please refer to the reference documentation for more " -"information, and specify ``False`` for this parameter if you wish." +msgid "The :func:`fileConfig` function takes a default parameter, ``disable_existing_loggers``, which defaults to ``True`` for reasons of backward compatibility. This may or may not be what you want, since it will cause any non-root loggers existing before the :func:`fileConfig` call to be disabled unless they (or an ancestor) are explicitly named in the configuration. Please refer to the reference documentation for more information, and specify ``False`` for this parameter if you wish." msgstr "" -#: ../../howto/logging.rst:725 -msgid "" -"The dictionary passed to :func:`dictConfig` can also specify a Boolean value " -"with key ``disable_existing_loggers``, which if not specified explicitly in " -"the dictionary also defaults to being interpreted as ``True``. This leads to " -"the logger-disabling behaviour described above, which may not be what you " -"want - in which case, provide the key explicitly with a value of ``False``." +msgid "The dictionary passed to :func:`dictConfig` can also specify a Boolean value with key ``disable_existing_loggers``, which if not specified explicitly in the dictionary also defaults to being interpreted as ``True``. This leads to the logger-disabling behaviour described above, which may not be what you want - in which case, provide the key explicitly with a value of ``False``." msgstr "" -#: ../../howto/logging.rst:735 -msgid "" -"Note that the class names referenced in config files need to be either " -"relative to the logging module, or absolute values which can be resolved " -"using normal import mechanisms. Thus, you could use " -"either :class:`~logging.handlers.WatchedFileHandler` (relative to the " -"logging module) or ``mypackage.mymodule.MyHandler`` (for a class defined in " -"package ``mypackage`` and module ``mymodule``, where ``mypackage`` is " -"available on the Python import path)." +msgid "Note that the class names referenced in config files need to be either relative to the logging module, or absolute values which can be resolved using normal import mechanisms. Thus, you could use either :class:`~logging.handlers.WatchedFileHandler` (relative to the logging module) or ``mypackage.mymodule.MyHandler`` (for a class defined in package ``mypackage`` and module ``mymodule``, where ``mypackage`` is available on the Python import path)." msgstr "" -#: ../../howto/logging.rst:743 -msgid "" -"In Python 3.2, a new means of configuring logging has been introduced, using " -"dictionaries to hold configuration information. This provides a superset of " -"the functionality of the config-file-based approach outlined above, and is " -"the recommended configuration method for new applications and deployments. " -"Because a Python dictionary is used to hold configuration information, and " -"since you can populate that dictionary using different means, you have more " -"options for configuration. For example, you can use a configuration file in " -"JSON format, or, if you have access to YAML processing functionality, a file " -"in YAML format, to populate the configuration dictionary. Or, of course, you " -"can construct the dictionary in Python code, receive it in pickled form over " -"a socket, or use whatever approach makes sense for your application." -msgstr "" - -#: ../../howto/logging.rst:755 -msgid "" -"Here's an example of the same configuration as above, in YAML format for the " -"new dictionary-based approach:" +msgid "In Python 3.2, a new means of configuring logging has been introduced, using dictionaries to hold configuration information. This provides a superset of the functionality of the config-file-based approach outlined above, and is the recommended configuration method for new applications and deployments. Because a Python dictionary is used to hold configuration information, and since you can populate that dictionary using different means, you have more options for configuration. For example, you can use a configuration file in JSON format, or, if you have access to YAML processing functionality, a file in YAML format, to populate the configuration dictionary. Or, of course, you can construct the dictionary in Python code, receive it in pickled form over a socket, or use whatever approach makes sense for your application." +msgstr "" + +msgid "Here's an example of the same configuration as above, in YAML format for the new dictionary-based approach:" msgstr "" -#: ../../howto/logging.rst:758 msgid "" "version: 1\n" "formatters:\n" @@ -1139,577 +637,277 @@ msgid "" " handlers: [console]" msgstr "" -#: ../../howto/logging.rst:779 -msgid "" -"For more information about logging using a dictionary, see :ref:`logging-" -"config-api`." +msgid "For more information about logging using a dictionary, see :ref:`logging-config-api`." msgstr "" -#: ../../howto/logging.rst:783 msgid "What happens if no configuration is provided" msgstr "" -#: ../../howto/logging.rst:785 -msgid "" -"If no logging configuration is provided, it is possible to have a situation " -"where a logging event needs to be output, but no handlers can be found to " -"output the event." +msgid "If no logging configuration is provided, it is possible to have a situation where a logging event needs to be output, but no handlers can be found to output the event." msgstr "" -#: ../../howto/logging.rst:789 -msgid "" -"The event is output using a 'handler of last resort', stored " -"in :data:`lastResort`. This internal handler is not associated with any " -"logger, and acts like a :class:`~logging.StreamHandler` which writes the " -"event description message to the current value of ``sys.stderr`` (therefore " -"respecting any redirections which may be in effect). No formatting is done " -"on the message - just the bare event description message is printed. The " -"handler's level is set to ``WARNING``, so all events at this and greater " -"severities will be output." +msgid "The event is output using a 'handler of last resort', stored in :data:`lastResort`. This internal handler is not associated with any logger, and acts like a :class:`~logging.StreamHandler` which writes the event description message to the current value of ``sys.stderr`` (therefore respecting any redirections which may be in effect). No formatting is done on the message - just the bare event description message is printed. The handler's level is set to ``WARNING``, so all events at this and greater severities will be output." msgstr "" -#: ../../howto/logging.rst:800 msgid "For versions of Python prior to 3.2, the behaviour is as follows:" msgstr "" -#: ../../howto/logging.rst:802 -msgid "" -"If :data:`raiseExceptions` is ``False`` (production mode), the event is " -"silently dropped." +msgid "If :data:`raiseExceptions` is ``False`` (production mode), the event is silently dropped." msgstr "" -#: ../../howto/logging.rst:805 -msgid "" -"If :data:`raiseExceptions` is ``True`` (development mode), a message 'No " -"handlers could be found for logger X.Y.Z' is printed once." +msgid "If :data:`raiseExceptions` is ``True`` (development mode), a message 'No handlers could be found for logger X.Y.Z' is printed once." msgstr "" -#: ../../howto/logging.rst:808 -msgid "" -"To obtain the pre-3.2 behaviour, :data:`lastResort` can be set to ``None``." +msgid "To obtain the pre-3.2 behaviour, :data:`lastResort` can be set to ``None``." msgstr "" -#: ../../howto/logging.rst:814 msgid "Configuring Logging for a Library" msgstr "" -#: ../../howto/logging.rst:816 -msgid "" -"When developing a library which uses logging, you should take care to " -"document how the library uses logging - for example, the names of loggers " -"used. Some consideration also needs to be given to its logging " -"configuration. If the using application does not use logging, and library " -"code makes logging calls, then (as described in the previous section) events " -"of severity ``WARNING`` and greater will be printed to ``sys.stderr``. This " -"is regarded as the best default behaviour." +msgid "When developing a library which uses logging, you should take care to document how the library uses logging - for example, the names of loggers used. Some consideration also needs to be given to its logging configuration. If the using application does not use logging, and library code makes logging calls, then (as described in the previous section) events of severity ``WARNING`` and greater will be printed to ``sys.stderr``. This is regarded as the best default behaviour." msgstr "" -#: ../../howto/logging.rst:824 -msgid "" -"If for some reason you *don't* want these messages printed in the absence of " -"any logging configuration, you can attach a do-nothing handler to the top-" -"level logger for your library. This avoids the message being printed, since " -"a handler will always be found for the library's events: it just doesn't " -"produce any output. If the library user configures logging for application " -"use, presumably that configuration will add some handlers, and if levels are " -"suitably configured then logging calls made in library code will send output " -"to those handlers, as normal." +msgid "If for some reason you *don't* want these messages printed in the absence of any logging configuration, you can attach a do-nothing handler to the top-level logger for your library. This avoids the message being printed, since a handler will always be found for the library's events: it just doesn't produce any output. If the library user configures logging for application use, presumably that configuration will add some handlers, and if levels are suitably configured then logging calls made in library code will send output to those handlers, as normal." msgstr "" -#: ../../howto/logging.rst:833 -msgid "" -"A do-nothing handler is included in the logging " -"package: :class:`~logging.NullHandler` (since Python 3.1). An instance of " -"this handler could be added to the top-level logger of the logging namespace " -"used by the library (*if* you want to prevent your library's logged events " -"being output to ``sys.stderr`` in the absence of logging configuration). If " -"all logging by a library *foo* is done using loggers with names matching " -"'foo.x', 'foo.x.y', etc. then the code::" +msgid "A do-nothing handler is included in the logging package: :class:`~logging.NullHandler` (since Python 3.1). An instance of this handler could be added to the top-level logger of the logging namespace used by the library (*if* you want to prevent your library's logged events being output to ``sys.stderr`` in the absence of logging configuration). If all logging by a library *foo* is done using loggers with names matching 'foo.x', 'foo.x.y', etc. then the code::" msgstr "" -#: ../../howto/logging.rst:841 msgid "" "import logging\n" "logging.getLogger('foo').addHandler(logging.NullHandler())" msgstr "" -#: ../../howto/logging.rst:844 -msgid "" -"should have the desired effect. If an organisation produces a number of " -"libraries, then the logger name specified can be 'orgname.foo' rather than " -"just 'foo'." +msgid "should have the desired effect. If an organisation produces a number of libraries, then the logger name specified can be 'orgname.foo' rather than just 'foo'." msgstr "" -#: ../../howto/logging.rst:848 -msgid "" -"It is strongly advised that you *do not log to the root logger* in your " -"library. Instead, use a logger with a unique and easily identifiable name, " -"such as the ``__name__`` for your library's top-level package or module. " -"Logging to the root logger will make it difficult or impossible for the " -"application developer to configure the logging verbosity or handlers of your " -"library as they wish." +msgid "It is strongly advised that you *do not log to the root logger* in your library. Instead, use a logger with a unique and easily identifiable name, such as the ``__name__`` for your library's top-level package or module. Logging to the root logger will make it difficult or impossible for the application developer to configure the logging verbosity or handlers of your library as they wish." msgstr "" -#: ../../howto/logging.rst:855 -msgid "" -"It is strongly advised that you *do not add any handlers other " -"than* :class:`~logging.NullHandler` *to your library's loggers*. This is " -"because the configuration of handlers is the prerogative of the application " -"developer who uses your library. The application developer knows their " -"target audience and what handlers are most appropriate for their " -"application: if you add handlers 'under the hood', you might well interfere " -"with their ability to carry out unit tests and deliver logs which suit their " -"requirements." +msgid "It is strongly advised that you *do not add any handlers other than* :class:`~logging.NullHandler` *to your library's loggers*. This is because the configuration of handlers is the prerogative of the application developer who uses your library. The application developer knows their target audience and what handlers are most appropriate for their application: if you add handlers 'under the hood', you might well interfere with their ability to carry out unit tests and deliver logs which suit their requirements." msgstr "" -#: ../../howto/logging.rst:866 msgid "Logging Levels" msgstr "" -#: ../../howto/logging.rst:868 -msgid "" -"The numeric values of logging levels are given in the following table. These " -"are primarily of interest if you want to define your own levels, and need " -"them to have specific values relative to the predefined levels. If you " -"define a level with the same numeric value, it overwrites the predefined " -"value; the predefined name is lost." +msgid "The numeric values of logging levels are given in the following table. These are primarily of interest if you want to define your own levels, and need them to have specific values relative to the predefined levels. If you define a level with the same numeric value, it overwrites the predefined value; the predefined name is lost." msgstr "" -#: ../../howto/logging.rst:875 msgid "Numeric value" msgstr "" -#: ../../howto/logging.rst:877 msgid "50" msgstr "" -#: ../../howto/logging.rst:879 msgid "40" msgstr "" -#: ../../howto/logging.rst:881 msgid "30" msgstr "" -#: ../../howto/logging.rst:883 msgid "20" msgstr "" -#: ../../howto/logging.rst:885 msgid "10" msgstr "" -#: ../../howto/logging.rst:887 msgid "``NOTSET``" msgstr "" -#: ../../howto/logging.rst:887 msgid "0" msgstr "" -#: ../../howto/logging.rst:890 -msgid "" -"Levels can also be associated with loggers, being set either by the " -"developer or through loading a saved logging configuration. When a logging " -"method is called on a logger, the logger compares its own level with the " -"level associated with the method call. If the logger's level is higher than " -"the method call's, no logging message is actually generated. This is the " -"basic mechanism controlling the verbosity of logging output." +msgid "Levels can also be associated with loggers, being set either by the developer or through loading a saved logging configuration. When a logging method is called on a logger, the logger compares its own level with the level associated with the method call. If the logger's level is higher than the method call's, no logging message is actually generated. This is the basic mechanism controlling the verbosity of logging output." msgstr "" -#: ../../howto/logging.rst:897 -msgid "" -"Logging messages are encoded as instances of the :class:`~logging.LogRecord` " -"class. When a logger decides to actually log an event, " -"a :class:`~logging.LogRecord` instance is created from the logging message." +msgid "Logging messages are encoded as instances of the :class:`~logging.LogRecord` class. When a logger decides to actually log an event, a :class:`~logging.LogRecord` instance is created from the logging message." msgstr "" -#: ../../howto/logging.rst:901 -msgid "" -"Logging messages are subjected to a dispatch mechanism through the use " -"of :dfn:`handlers`, which are instances of subclasses of " -"the :class:`Handler` class. Handlers are responsible for ensuring that a " -"logged message (in the form of a :class:`LogRecord`) ends up in a particular " -"location (or set of locations) which is useful for the target audience for " -"that message (such as end users, support desk staff, system administrators, " -"developers). Handlers are passed :class:`LogRecord` instances intended for " -"particular destinations. Each logger can have zero, one or more handlers " -"associated with it (via the :meth:`~Logger.addHandler` method " -"of :class:`Logger`). In addition to any handlers directly associated with a " -"logger, *all handlers associated with all ancestors of the logger* are " -"called to dispatch the message (unless the *propagate* flag for a logger is " -"set to a false value, at which point the passing to ancestor handlers stops)." -msgstr "" - -#: ../../howto/logging.rst:915 -msgid "" -"Just as for loggers, handlers can have levels associated with them. A " -"handler's level acts as a filter in the same way as a logger's level does. " -"If a handler decides to actually dispatch an event, " -"the :meth:`~Handler.emit` method is used to send the message to its " -"destination. Most user-defined subclasses of :class:`Handler` will need to " -"override this :meth:`~Handler.emit`." +msgid "Logging messages are subjected to a dispatch mechanism through the use of :dfn:`handlers`, which are instances of subclasses of the :class:`Handler` class. Handlers are responsible for ensuring that a logged message (in the form of a :class:`LogRecord`) ends up in a particular location (or set of locations) which is useful for the target audience for that message (such as end users, support desk staff, system administrators, developers). Handlers are passed :class:`LogRecord` instances intended for particular destinations. Each logger can have zero, one or more handlers associated with it (via the :meth:`~Logger.addHandler` method of :class:`Logger`). In addition to any handlers directly associated with a logger, *all handlers associated with all ancestors of the logger* are called to dispatch the message (unless the *propagate* flag for a logger is set to a false value, at which point the passing to ancestor handlers stops)." +msgstr "" + +msgid "Just as for loggers, handlers can have levels associated with them. A handler's level acts as a filter in the same way as a logger's level does. If a handler decides to actually dispatch an event, the :meth:`~Handler.emit` method is used to send the message to its destination. Most user-defined subclasses of :class:`Handler` will need to override this :meth:`~Handler.emit`." msgstr "" -#: ../../howto/logging.rst:924 msgid "Custom Levels" msgstr "" -#: ../../howto/logging.rst:926 -msgid "" -"Defining your own levels is possible, but should not be necessary, as the " -"existing levels have been chosen on the basis of practical experience. " -"However, if you are convinced that you need custom levels, great care should " -"be exercised when doing this, and it is possibly *a very bad idea to define " -"custom levels if you are developing a library*. That's because if multiple " -"library authors all define their own custom levels, there is a chance that " -"the logging output from such multiple libraries used together will be " -"difficult for the using developer to control and/or interpret, because a " -"given numeric value might mean different things for different libraries." -msgstr "" - -#: ../../howto/logging.rst:939 +msgid "Defining your own levels is possible, but should not be necessary, as the existing levels have been chosen on the basis of practical experience. However, if you are convinced that you need custom levels, great care should be exercised when doing this, and it is possibly *a very bad idea to define custom levels if you are developing a library*. That's because if multiple library authors all define their own custom levels, there is a chance that the logging output from such multiple libraries used together will be difficult for the using developer to control and/or interpret, because a given numeric value might mean different things for different libraries." +msgstr "" + msgid "Useful Handlers" msgstr "" -#: ../../howto/logging.rst:941 -msgid "" -"In addition to the base :class:`Handler` class, many useful subclasses are " -"provided:" +msgid "In addition to the base :class:`Handler` class, many useful subclasses are provided:" msgstr "" -#: ../../howto/logging.rst:944 -msgid "" -":class:`StreamHandler` instances send messages to streams (file-like " -"objects)." +msgid ":class:`StreamHandler` instances send messages to streams (file-like objects)." msgstr "" -#: ../../howto/logging.rst:947 msgid ":class:`FileHandler` instances send messages to disk files." msgstr "" -#: ../../howto/logging.rst:949 -msgid "" -":class:`~handlers.BaseRotatingHandler` is the base class for handlers that " -"rotate log files at a certain point. It is not meant to be instantiated " -"directly. Instead, use :class:`~handlers.RotatingFileHandler` " -"or :class:`~handlers.TimedRotatingFileHandler`." +msgid ":class:`~handlers.BaseRotatingHandler` is the base class for handlers that rotate log files at a certain point. It is not meant to be instantiated directly. Instead, use :class:`~handlers.RotatingFileHandler` or :class:`~handlers.TimedRotatingFileHandler`." msgstr "" -#: ../../howto/logging.rst:954 -msgid "" -":class:`~handlers.RotatingFileHandler` instances send messages to disk " -"files, with support for maximum log file sizes and log file rotation." +msgid ":class:`~handlers.RotatingFileHandler` instances send messages to disk files, with support for maximum log file sizes and log file rotation." msgstr "" -#: ../../howto/logging.rst:957 -msgid "" -":class:`~handlers.TimedRotatingFileHandler` instances send messages to disk " -"files, rotating the log file at certain timed intervals." +msgid ":class:`~handlers.TimedRotatingFileHandler` instances send messages to disk files, rotating the log file at certain timed intervals." msgstr "" -#: ../../howto/logging.rst:960 -msgid "" -":class:`~handlers.SocketHandler` instances send messages to TCP/IP sockets. " -"Since 3.4, Unix domain sockets are also supported." +msgid ":class:`~handlers.SocketHandler` instances send messages to TCP/IP sockets. Since 3.4, Unix domain sockets are also supported." msgstr "" -#: ../../howto/logging.rst:963 -msgid "" -":class:`~handlers.DatagramHandler` instances send messages to UDP sockets. " -"Since 3.4, Unix domain sockets are also supported." +msgid ":class:`~handlers.DatagramHandler` instances send messages to UDP sockets. Since 3.4, Unix domain sockets are also supported." msgstr "" -#: ../../howto/logging.rst:966 -msgid "" -":class:`~handlers.SMTPHandler` instances send messages to a designated email " -"address." +msgid ":class:`~handlers.SMTPHandler` instances send messages to a designated email address." msgstr "" -#: ../../howto/logging.rst:969 -msgid "" -":class:`~handlers.SysLogHandler` instances send messages to a Unix syslog " -"daemon, possibly on a remote machine." +msgid ":class:`~handlers.SysLogHandler` instances send messages to a Unix syslog daemon, possibly on a remote machine." msgstr "" -#: ../../howto/logging.rst:972 -msgid "" -":class:`~handlers.NTEventLogHandler` instances send messages to a Windows NT/" -"2000/XP event log." +msgid ":class:`~handlers.NTEventLogHandler` instances send messages to a Windows NT/2000/XP event log." msgstr "" -#: ../../howto/logging.rst:975 -msgid "" -":class:`~handlers.MemoryHandler` instances send messages to a buffer in " -"memory, which is flushed whenever specific criteria are met." +msgid ":class:`~handlers.MemoryHandler` instances send messages to a buffer in memory, which is flushed whenever specific criteria are met." msgstr "" -#: ../../howto/logging.rst:978 -msgid "" -":class:`~handlers.HTTPHandler` instances send messages to an HTTP server " -"using either ``GET`` or ``POST`` semantics." +msgid ":class:`~handlers.HTTPHandler` instances send messages to an HTTP server using either ``GET`` or ``POST`` semantics." msgstr "" -#: ../../howto/logging.rst:981 -msgid "" -":class:`~handlers.WatchedFileHandler` instances watch the file they are " -"logging to. If the file changes, it is closed and reopened using the file " -"name. This handler is only useful on Unix-like systems; Windows does not " -"support the underlying mechanism used." +msgid ":class:`~handlers.WatchedFileHandler` instances watch the file they are logging to. If the file changes, it is closed and reopened using the file name. This handler is only useful on Unix-like systems; Windows does not support the underlying mechanism used." msgstr "" -#: ../../howto/logging.rst:986 -msgid "" -":class:`~handlers.QueueHandler` instances send messages to a queue, such as " -"those implemented in the :mod:`queue` or :mod:`multiprocessing` modules." +msgid ":class:`~handlers.QueueHandler` instances send messages to a queue, such as those implemented in the :mod:`queue` or :mod:`multiprocessing` modules." msgstr "" -#: ../../howto/logging.rst:989 -msgid "" -":class:`NullHandler` instances do nothing with error messages. They are used " -"by library developers who want to use logging, but want to avoid the 'No " -"handlers could be found for logger *XXX*' message which can be displayed if " -"the library user has not configured logging. See :ref:`library-config` for " -"more information." +msgid ":class:`NullHandler` instances do nothing with error messages. They are used by library developers who want to use logging, but want to avoid the 'No handlers could be found for logger *XXX*' message which can be displayed if the library user has not configured logging. See :ref:`library-config` for more information." msgstr "" -#: ../../howto/logging.rst:995 msgid "The :class:`NullHandler` class." msgstr "" -#: ../../howto/logging.rst:998 msgid "The :class:`~handlers.QueueHandler` class." msgstr "" -#: ../../howto/logging.rst:1001 -msgid "" -"The :class:`NullHandler`, :class:`StreamHandler` and :class:`FileHandler` " -"classes are defined in the core logging package. The other handlers are " -"defined in a sub-module, :mod:`logging.handlers`. (There is also another sub-" -"module, :mod:`logging.config`, for configuration functionality.)" +msgid "The :class:`NullHandler`, :class:`StreamHandler` and :class:`FileHandler` classes are defined in the core logging package. The other handlers are defined in a sub-module, :mod:`logging.handlers`. (There is also another sub-module, :mod:`logging.config`, for configuration functionality.)" msgstr "" -#: ../../howto/logging.rst:1006 -msgid "" -"Logged messages are formatted for presentation through instances of " -"the :class:`Formatter` class. They are initialized with a format string " -"suitable for use with the % operator and a dictionary." +msgid "Logged messages are formatted for presentation through instances of the :class:`Formatter` class. They are initialized with a format string suitable for use with the % operator and a dictionary." msgstr "" -#: ../../howto/logging.rst:1010 -msgid "" -"For formatting multiple messages in a batch, instances " -"of :class:`BufferingFormatter` can be used. In addition to the format string " -"(which is applied to each message in the batch), there is provision for " -"header and trailer format strings." +msgid "For formatting multiple messages in a batch, instances of :class:`BufferingFormatter` can be used. In addition to the format string (which is applied to each message in the batch), there is provision for header and trailer format strings." msgstr "" -#: ../../howto/logging.rst:1015 -msgid "" -"When filtering based on logger level and/or handler level is not enough, " -"instances of :class:`Filter` can be added to both :class:`Logger` " -"and :class:`Handler` instances (through their :meth:`~Handler.addFilter` " -"method). Before deciding to process a message further, both loggers and " -"handlers consult all their filters for permission. If any filter returns a " -"false value, the message is not processed further." +msgid "When filtering based on logger level and/or handler level is not enough, instances of :class:`Filter` can be added to both :class:`Logger` and :class:`Handler` instances (through their :meth:`~Handler.addFilter` method). Before deciding to process a message further, both loggers and handlers consult all their filters for permission. If any filter returns a false value, the message is not processed further." msgstr "" -#: ../../howto/logging.rst:1022 -msgid "" -"The basic :class:`Filter` functionality allows filtering by specific logger " -"name. If this feature is used, messages sent to the named logger and its " -"children are allowed through the filter, and all others dropped." +msgid "The basic :class:`Filter` functionality allows filtering by specific logger name. If this feature is used, messages sent to the named logger and its children are allowed through the filter, and all others dropped." msgstr "" -#: ../../howto/logging.rst:1030 msgid "Exceptions raised during logging" msgstr "" -#: ../../howto/logging.rst:1032 -msgid "" -"The logging package is designed to swallow exceptions which occur while " -"logging in production. This is so that errors which occur while handling " -"logging events - such as logging misconfiguration, network or other similar " -"errors - do not cause the application using logging to terminate prematurely." +msgid "The logging package is designed to swallow exceptions which occur while logging in production. This is so that errors which occur while handling logging events - such as logging misconfiguration, network or other similar errors - do not cause the application using logging to terminate prematurely." msgstr "" -#: ../../howto/logging.rst:1037 -msgid "" -":class:`SystemExit` and :class:`KeyboardInterrupt` exceptions are never " -"swallowed. Other exceptions which occur during the :meth:`~Handler.emit` " -"method of a :class:`Handler` subclass are passed to " -"its :meth:`~Handler.handleError` method." +msgid ":class:`SystemExit` and :class:`KeyboardInterrupt` exceptions are never swallowed. Other exceptions which occur during the :meth:`~Handler.emit` method of a :class:`Handler` subclass are passed to its :meth:`~Handler.handleError` method." msgstr "" -#: ../../howto/logging.rst:1042 -msgid "" -"The default implementation of :meth:`~Handler.handleError` " -"in :class:`Handler` checks to see if a module-level " -"variable, :data:`raiseExceptions`, is set. If set, a traceback is printed " -"to :data:`sys.stderr`. If not set, the exception is swallowed." +msgid "The default implementation of :meth:`~Handler.handleError` in :class:`Handler` checks to see if a module-level variable, :data:`raiseExceptions`, is set. If set, a traceback is printed to :data:`sys.stderr`. If not set, the exception is swallowed." msgstr "" -#: ../../howto/logging.rst:1048 -msgid "" -"The default value of :data:`raiseExceptions` is ``True``. This is because " -"during development, you typically want to be notified of any exceptions that " -"occur. It's advised that you set :data:`raiseExceptions` to ``False`` for " -"production usage." +msgid "The default value of :data:`raiseExceptions` is ``True``. This is because during development, you typically want to be notified of any exceptions that occur. It's advised that you set :data:`raiseExceptions` to ``False`` for production usage." msgstr "" -#: ../../howto/logging.rst:1058 msgid "Using arbitrary objects as messages" msgstr "" -#: ../../howto/logging.rst:1060 -msgid "" -"In the preceding sections and examples, it has been assumed that the message " -"passed when logging the event is a string. However, this is not the only " -"possibility. You can pass an arbitrary object as a message, and " -"its :meth:`~object.__str__` method will be called when the logging system " -"needs to convert it to a string representation. In fact, if you want to, you " -"can avoid computing a string representation altogether - for example, " -"the :class:`~handlers.SocketHandler` emits an event by pickling it and " -"sending it over the wire." +msgid "In the preceding sections and examples, it has been assumed that the message passed when logging the event is a string. However, this is not the only possibility. You can pass an arbitrary object as a message, and its :meth:`~object.__str__` method will be called when the logging system needs to convert it to a string representation. In fact, if you want to, you can avoid computing a string representation altogether - for example, the :class:`~handlers.SocketHandler` emits an event by pickling it and sending it over the wire." msgstr "" -#: ../../howto/logging.rst:1071 msgid "Optimization" msgstr "" -#: ../../howto/logging.rst:1073 -msgid "" -"Formatting of message arguments is deferred until it cannot be avoided. " -"However, computing the arguments passed to the logging method can also be " -"expensive, and you may want to avoid doing it if the logger will just throw " -"away your event. To decide what to do, you can call " -"the :meth:`~Logger.isEnabledFor` method which takes a level argument and " -"returns true if the event would be created by the Logger for that level of " -"call. You can write code like this::" +msgid "Formatting of message arguments is deferred until it cannot be avoided. However, computing the arguments passed to the logging method can also be expensive, and you may want to avoid doing it if the logger will just throw away your event. To decide what to do, you can call the :meth:`~Logger.isEnabledFor` method which takes a level argument and returns true if the event would be created by the Logger for that level of call. You can write code like this::" msgstr "" -#: ../../howto/logging.rst:1081 msgid "" "if logger.isEnabledFor(logging.DEBUG):\n" " logger.debug('Message with %s, %s', expensive_func1(),\n" " expensive_func2())" msgstr "" -#: ../../howto/logging.rst:1085 -msgid "" -"so that if the logger's threshold is set above ``DEBUG``, the calls to " -"``expensive_func1`` and ``expensive_func2`` are never made." +msgid "so that if the logger's threshold is set above ``DEBUG``, the calls to ``expensive_func1`` and ``expensive_func2`` are never made." msgstr "" -#: ../../howto/logging.rst:1088 -msgid "" -"In some cases, :meth:`~Logger.isEnabledFor` can itself be more expensive " -"than you'd like (e.g. for deeply nested loggers where an explicit level is " -"only set high up in the logger hierarchy). In such cases (or if you want to " -"avoid calling a method in tight loops), you can cache the result of a call " -"to :meth:`~Logger.isEnabledFor` in a local or instance variable, and use " -"that instead of calling the method each time. Such a cached value would only " -"need to be recomputed when the logging configuration changes dynamically " -"while the application is running (which is not all that common)." +msgid "In some cases, :meth:`~Logger.isEnabledFor` can itself be more expensive than you'd like (e.g. for deeply nested loggers where an explicit level is only set high up in the logger hierarchy). In such cases (or if you want to avoid calling a method in tight loops), you can cache the result of a call to :meth:`~Logger.isEnabledFor` in a local or instance variable, and use that instead of calling the method each time. Such a cached value would only need to be recomputed when the logging configuration changes dynamically while the application is running (which is not all that common)." msgstr "" -#: ../../howto/logging.rst:1097 -msgid "" -"There are other optimizations which can be made for specific applications " -"which need more precise control over what logging information is collected. " -"Here's a list of things you can do to avoid processing during logging which " -"you don't need:" +msgid "There are other optimizations which can be made for specific applications which need more precise control over what logging information is collected. Here's a list of things you can do to avoid processing during logging which you don't need:" msgstr "" -#: ../../howto/logging.rst:1103 msgid "What you don't want to collect" msgstr "" -#: ../../howto/logging.rst:1103 msgid "How to avoid collecting it" msgstr "" -#: ../../howto/logging.rst:1105 msgid "Information about where calls were made from." msgstr "" -#: ../../howto/logging.rst:1105 -msgid "" -"Set ``logging._srcfile`` to ``None``. This avoids " -"calling :func:`sys._getframe`, which may help to speed up your code in " -"environments like PyPy (which can't speed up code that " -"uses :func:`sys._getframe`)." +msgid "Set ``logging._srcfile`` to ``None``. This avoids calling :func:`sys._getframe`, which may help to speed up your code in environments like PyPy (which can't speed up code that uses :func:`sys._getframe`)." msgstr "" -#: ../../howto/logging.rst:1111 msgid "Threading information." msgstr "" -#: ../../howto/logging.rst:1111 msgid "Set ``logging.logThreads`` to ``False``." msgstr "" -#: ../../howto/logging.rst:1113 msgid "Current process ID (:func:`os.getpid`)" msgstr "" -#: ../../howto/logging.rst:1113 msgid "Set ``logging.logProcesses`` to ``False``." msgstr "" -#: ../../howto/logging.rst:1115 -msgid "" -"Current process name when using ``multiprocessing`` to manage multiple " -"processes." +msgid "Current process name when using ``multiprocessing`` to manage multiple processes." msgstr "" -#: ../../howto/logging.rst:1115 msgid "Set ``logging.logMultiprocessing`` to ``False``." msgstr "" -#: ../../howto/logging.rst:1118 msgid "Current :class:`asyncio.Task` name when using ``asyncio``." msgstr "" -#: ../../howto/logging.rst:1118 msgid "Set ``logging.logAsyncioTasks`` to ``False``." msgstr "" -#: ../../howto/logging.rst:1122 -msgid "" -"Also note that the core logging module only includes the basic handlers. If " -"you don't import :mod:`logging.handlers` and :mod:`logging.config`, they " -"won't take up any memory." +msgid "Also note that the core logging module only includes the basic handlers. If you don't import :mod:`logging.handlers` and :mod:`logging.config`, they won't take up any memory." msgstr "" -#: ../../howto/logging.rst:1129 msgid "Other resources" msgstr "" -#: ../../howto/logging.rst:1133 msgid "Module :mod:`logging`" msgstr "" -#: ../../howto/logging.rst:1134 msgid "API reference for the logging module." msgstr "" -#: ../../howto/logging.rst:1136 msgid "Module :mod:`logging.config`" msgstr "" -#: ../../howto/logging.rst:1137 msgid "Configuration API for the logging module." msgstr "" -#: ../../howto/logging.rst:1139 msgid "Module :mod:`logging.handlers`" msgstr "" -#: ../../howto/logging.rst:1140 msgid "Useful handlers included with the logging module." msgstr "" -#: ../../howto/logging.rst:1142 msgid ":ref:`A logging cookbook `" msgstr "" diff --git a/howto/mro.po b/howto/mro.po index 5b45477f..061fb3d1 100644 --- a/howto/mro.po +++ b/howto/mro.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2024-04-19 14:15+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,171 +23,78 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../howto/mro.rst:4 msgid "The Python 2.3 Method Resolution Order" msgstr "" -#: ../../howto/mro.rst:8 -msgid "" -"This is a historical document, provided as an appendix to the official " -"documentation. The Method Resolution Order discussed here was *introduced* " -"in Python 2.3, but it is still used in later versions -- including Python 3." +msgid "This is a historical document, provided as an appendix to the official documentation. The Method Resolution Order discussed here was *introduced* in Python 2.3, but it is still used in later versions -- including Python 3." msgstr "" -#: ../../howto/mro.rst:13 msgid "By `Michele Simionato `__." msgstr "" -#: ../../howto/mro.rst:0 msgid "Abstract" msgstr "" -#: ../../howto/mro.rst:17 -msgid "" -"*This document is intended for Python programmers who want to understand the " -"C3 Method Resolution Order used in Python 2.3. Although it is not intended " -"for newbies, it is quite pedagogical with many worked out examples. I am " -"not aware of other publicly available documents with the same scope, " -"therefore it should be useful.*" +msgid "*This document is intended for Python programmers who want to understand the C3 Method Resolution Order used in Python 2.3. Although it is not intended for newbies, it is quite pedagogical with many worked out examples. I am not aware of other publicly available documents with the same scope, therefore it should be useful.*" msgstr "" -#: ../../howto/mro.rst:23 msgid "Disclaimer:" msgstr "" -#: ../../howto/mro.rst:25 -msgid "" -"*I donate this document to the Python Software Foundation, under the Python " -"2.3 license. As usual in these circumstances, I warn the reader that what " -"follows* should *be correct, but I don't give any warranty. Use it at your " -"own risk and peril!*" +msgid "*I donate this document to the Python Software Foundation, under the Python 2.3 license. As usual in these circumstances, I warn the reader that what follows* should *be correct, but I don't give any warranty. Use it at your own risk and peril!*" msgstr "" -#: ../../howto/mro.rst:30 msgid "Acknowledgments:" msgstr "" -#: ../../howto/mro.rst:32 -msgid "" -"*All the people of the Python mailing list who sent me their support. Paul " -"Foley who pointed out various imprecisions and made me to add the part on " -"local precedence ordering. David Goodger for help with the formatting in " -"reStructuredText. David Mertz for help with the editing. Finally, Guido van " -"Rossum who enthusiastically added this document to the official Python 2.3 " -"home-page.*" +msgid "*All the people of the Python mailing list who sent me their support. Paul Foley who pointed out various imprecisions and made me to add the part on local precedence ordering. David Goodger for help with the formatting in reStructuredText. David Mertz for help with the editing. Finally, Guido van Rossum who enthusiastically added this document to the official Python 2.3 home-page.*" msgstr "" -#: ../../howto/mro.rst:40 msgid "The beginning" msgstr "" -#: ../../howto/mro.rst:42 msgid "*Felix qui potuit rerum cognoscere causas* -- Virgilius" msgstr "" -#: ../../howto/mro.rst:44 -msgid "" -"Everything started with a post by Samuele Pedroni to the Python development " -"mailing list [#]_. In his post, Samuele showed that the Python 2.2 method " -"resolution order is not monotonic and he proposed to replace it with the C3 " -"method resolution order. Guido agreed with his arguments and therefore now " -"Python 2.3 uses C3. The C3 method itself has nothing to do with Python, " -"since it was invented by people working on Dylan and it is described in a " -"paper intended for lispers [#]_. The present paper gives a (hopefully) " -"readable discussion of the C3 algorithm for Pythonistas who want to " -"understand the reasons for the change." -msgstr "" - -#: ../../howto/mro.rst:55 -msgid "" -"First of all, let me point out that what I am going to say only applies to " -"the *new style classes* introduced in Python 2.2: *classic classes* " -"maintain their old method resolution order, depth first and then left to " -"right. Therefore, there is no breaking of old code for classic classes; and " -"even if in principle there could be breaking of code for Python 2.2 new " -"style classes, in practice the cases in which the C3 resolution order " -"differs from the Python 2.2 method resolution order are so rare that no real " -"breaking of code is expected. Therefore:" +msgid "Everything started with a post by Samuele Pedroni to the Python development mailing list [#]_. In his post, Samuele showed that the Python 2.2 method resolution order is not monotonic and he proposed to replace it with the C3 method resolution order. Guido agreed with his arguments and therefore now Python 2.3 uses C3. The C3 method itself has nothing to do with Python, since it was invented by people working on Dylan and it is described in a paper intended for lispers [#]_. The present paper gives a (hopefully) readable discussion of the C3 algorithm for Pythonistas who want to understand the reasons for the change." +msgstr "" + +msgid "First of all, let me point out that what I am going to say only applies to the *new style classes* introduced in Python 2.2: *classic classes* maintain their old method resolution order, depth first and then left to right. Therefore, there is no breaking of old code for classic classes; and even if in principle there could be breaking of code for Python 2.2 new style classes, in practice the cases in which the C3 resolution order differs from the Python 2.2 method resolution order are so rare that no real breaking of code is expected. Therefore:" msgstr "" -#: ../../howto/mro.rst:64 msgid "*Don't be scared!*" msgstr "" -#: ../../howto/mro.rst:66 -msgid "" -"Moreover, unless you make strong use of multiple inheritance and you have " -"non-trivial hierarchies, you don't need to understand the C3 algorithm, and " -"you can easily skip this paper. On the other hand, if you really want to " -"know how multiple inheritance works, then this paper is for you. The good " -"news is that things are not as complicated as you might expect." +msgid "Moreover, unless you make strong use of multiple inheritance and you have non-trivial hierarchies, you don't need to understand the C3 algorithm, and you can easily skip this paper. On the other hand, if you really want to know how multiple inheritance works, then this paper is for you. The good news is that things are not as complicated as you might expect." msgstr "" -#: ../../howto/mro.rst:73 msgid "Let me begin with some basic definitions." msgstr "" -#: ../../howto/mro.rst:75 -msgid "" -"Given a class C in a complicated multiple inheritance hierarchy, it is a non-" -"trivial task to specify the order in which methods are overridden, i.e. to " -"specify the order of the ancestors of C." +msgid "Given a class C in a complicated multiple inheritance hierarchy, it is a non-trivial task to specify the order in which methods are overridden, i.e. to specify the order of the ancestors of C." msgstr "" -#: ../../howto/mro.rst:79 -msgid "" -"The list of the ancestors of a class C, including the class itself, ordered " -"from the nearest ancestor to the furthest, is called the class precedence " -"list or the *linearization* of C." +msgid "The list of the ancestors of a class C, including the class itself, ordered from the nearest ancestor to the furthest, is called the class precedence list or the *linearization* of C." msgstr "" -#: ../../howto/mro.rst:83 -msgid "" -"The *Method Resolution Order* (MRO) is the set of rules that construct the " -"linearization. In the Python literature, the idiom \"the MRO of C\" is also " -"used as a synonymous for the linearization of the class C." +msgid "The *Method Resolution Order* (MRO) is the set of rules that construct the linearization. In the Python literature, the idiom \"the MRO of C\" is also used as a synonymous for the linearization of the class C." msgstr "" -#: ../../howto/mro.rst:88 -msgid "" -"For instance, in the case of single inheritance hierarchy, if C is a " -"subclass of C1, and C1 is a subclass of C2, then the linearization of C is " -"simply the list [C, C1 , C2]. However, with multiple inheritance " -"hierarchies, the construction of the linearization is more cumbersome, since " -"it is more difficult to construct a linearization that respects *local " -"precedence ordering* and *monotonicity*." +msgid "For instance, in the case of single inheritance hierarchy, if C is a subclass of C1, and C1 is a subclass of C2, then the linearization of C is simply the list [C, C1 , C2]. However, with multiple inheritance hierarchies, the construction of the linearization is more cumbersome, since it is more difficult to construct a linearization that respects *local precedence ordering* and *monotonicity*." msgstr "" -#: ../../howto/mro.rst:96 -msgid "" -"I will discuss the local precedence ordering later, but I can give the " -"definition of monotonicity here. A MRO is monotonic when the following is " -"true: *if C1 precedes C2 in the linearization of C, then C1 precedes C2 in " -"the linearization of any subclass of C*. Otherwise, the innocuous operation " -"of deriving a new class could change the resolution order of methods, " -"potentially introducing very subtle bugs. Examples where this happens will " -"be shown later." +msgid "I will discuss the local precedence ordering later, but I can give the definition of monotonicity here. A MRO is monotonic when the following is true: *if C1 precedes C2 in the linearization of C, then C1 precedes C2 in the linearization of any subclass of C*. Otherwise, the innocuous operation of deriving a new class could change the resolution order of methods, potentially introducing very subtle bugs. Examples where this happens will be shown later." msgstr "" -#: ../../howto/mro.rst:104 -msgid "" -"Not all classes admit a linearization. There are cases, in complicated " -"hierarchies, where it is not possible to derive a class such that its " -"linearization respects all the desired properties." +msgid "Not all classes admit a linearization. There are cases, in complicated hierarchies, where it is not possible to derive a class such that its linearization respects all the desired properties." msgstr "" -#: ../../howto/mro.rst:108 msgid "Here I give an example of this situation. Consider the hierarchy" msgstr "" -#: ../../howto/mro.rst:116 -msgid "" -"which can be represented with the following inheritance graph, where I have " -"denoted with O the ``object`` class, which is the beginning of any hierarchy " -"for new style classes:" +msgid "which can be represented with the following inheritance graph, where I have denoted with O the ``object`` class, which is the beginning of any hierarchy for new style classes:" msgstr "" -#: ../../howto/mro.rst:120 msgid "" " -----------\n" "| |\n" @@ -201,156 +108,93 @@ msgid "" " ?" msgstr "" -#: ../../howto/mro.rst:133 -msgid "" -"In this case, it is not possible to derive a new class C from A and B, since " -"X precedes Y in A, but Y precedes X in B, therefore the method resolution " -"order would be ambiguous in C." +msgid "In this case, it is not possible to derive a new class C from A and B, since X precedes Y in A, but Y precedes X in B, therefore the method resolution order would be ambiguous in C." msgstr "" -#: ../../howto/mro.rst:137 -msgid "" -"Python 2.3 raises an exception in this situation (TypeError: MRO conflict " -"among bases Y, X) forbidding the naive programmer from creating ambiguous " -"hierarchies. Python 2.2 instead does not raise an exception, but chooses an " -"*ad hoc* ordering (CABXYO in this case)." +msgid "Python 2.3 raises an exception in this situation (TypeError: MRO conflict among bases Y, X) forbidding the naive programmer from creating ambiguous hierarchies. Python 2.2 instead does not raise an exception, but chooses an *ad hoc* ordering (CABXYO in this case)." msgstr "" -#: ../../howto/mro.rst:143 msgid "The C3 Method Resolution Order" msgstr "" -#: ../../howto/mro.rst:145 -msgid "" -"Let me introduce a few simple notations which will be useful for the " -"following discussion. I will use the shortcut notation::" +msgid "Let me introduce a few simple notations which will be useful for the following discussion. I will use the shortcut notation::" msgstr "" -#: ../../howto/mro.rst:148 msgid "C1 C2 ... CN" msgstr "" -#: ../../howto/mro.rst:150 msgid "to indicate the list of classes [C1, C2, ... , CN]." msgstr "" -#: ../../howto/mro.rst:152 msgid "The *head* of the list is its first element::" msgstr "" -#: ../../howto/mro.rst:154 msgid "head = C1" msgstr "" -#: ../../howto/mro.rst:156 msgid "whereas the *tail* is the rest of the list::" msgstr "" -#: ../../howto/mro.rst:158 msgid "tail = C2 ... CN." msgstr "" -#: ../../howto/mro.rst:160 msgid "I shall also use the notation::" msgstr "" -#: ../../howto/mro.rst:162 msgid "C + (C1 C2 ... CN) = C C1 C2 ... CN" msgstr "" -#: ../../howto/mro.rst:164 msgid "to denote the sum of the lists [C] + [C1, C2, ... ,CN]." msgstr "" -#: ../../howto/mro.rst:166 msgid "Now I can explain how the MRO works in Python 2.3." msgstr "" -#: ../../howto/mro.rst:168 -msgid "" -"Consider a class C in a multiple inheritance hierarchy, with C inheriting " -"from the base classes B1, B2, ... , BN. We want to compute the " -"linearization L[C] of the class C. The rule is the following:" +msgid "Consider a class C in a multiple inheritance hierarchy, with C inheriting from the base classes B1, B2, ... , BN. We want to compute the linearization L[C] of the class C. The rule is the following:" msgstr "" -#: ../../howto/mro.rst:173 -msgid "" -"*the linearization of C is the sum of C plus the merge of the linearizations " -"of the parents and the list of the parents.*" +msgid "*the linearization of C is the sum of C plus the merge of the linearizations of the parents and the list of the parents.*" msgstr "" -#: ../../howto/mro.rst:176 msgid "In symbolic notation::" msgstr "" -#: ../../howto/mro.rst:178 msgid "L[C(B1 ... BN)] = C + merge(L[B1] ... L[BN], B1 ... BN)" msgstr "" -#: ../../howto/mro.rst:180 -msgid "" -"In particular, if C is the ``object`` class, which has no parents, the " -"linearization is trivial::" +msgid "In particular, if C is the ``object`` class, which has no parents, the linearization is trivial::" msgstr "" -#: ../../howto/mro.rst:183 msgid "L[object] = object." msgstr "" -#: ../../howto/mro.rst:185 -msgid "" -"However, in general one has to compute the merge according to the following " -"prescription:" +msgid "However, in general one has to compute the merge according to the following prescription:" msgstr "" -#: ../../howto/mro.rst:188 -msgid "" -"*take the head of the first list, i.e L[B1][0]; if this head is not in the " -"tail of any of the other lists, then add it to the linearization of C and " -"remove it from the lists in the merge, otherwise look at the head of the " -"next list and take it, if it is a good head. Then repeat the operation " -"until all the class are removed or it is impossible to find good heads. In " -"this case, it is impossible to construct the merge, Python 2.3 will refuse " -"to create the class C and will raise an exception.*" +msgid "*take the head of the first list, i.e L[B1][0]; if this head is not in the tail of any of the other lists, then add it to the linearization of C and remove it from the lists in the merge, otherwise look at the head of the next list and take it, if it is a good head. Then repeat the operation until all the class are removed or it is impossible to find good heads. In this case, it is impossible to construct the merge, Python 2.3 will refuse to create the class C and will raise an exception.*" msgstr "" -#: ../../howto/mro.rst:197 -msgid "" -"This prescription ensures that the merge operation *preserves* the ordering, " -"if the ordering can be preserved. On the other hand, if the order cannot be " -"preserved (as in the example of serious order disagreement discussed above) " -"then the merge cannot be computed." +msgid "This prescription ensures that the merge operation *preserves* the ordering, if the ordering can be preserved. On the other hand, if the order cannot be preserved (as in the example of serious order disagreement discussed above) then the merge cannot be computed." msgstr "" -#: ../../howto/mro.rst:202 -msgid "" -"The computation of the merge is trivial if C has only one parent (single " -"inheritance); in this case::" +msgid "The computation of the merge is trivial if C has only one parent (single inheritance); in this case::" msgstr "" -#: ../../howto/mro.rst:205 msgid "L[C(B)] = C + merge(L[B],B) = C + L[B]" msgstr "" -#: ../../howto/mro.rst:207 -msgid "" -"However, in the case of multiple inheritance things are more cumbersome and " -"I don't expect you can understand the rule without a couple of examples ;-)" +msgid "However, in the case of multiple inheritance things are more cumbersome and I don't expect you can understand the rule without a couple of examples ;-)" msgstr "" -#: ../../howto/mro.rst:212 msgid "Examples" msgstr "" -#: ../../howto/mro.rst:214 msgid "First example. Consider the following hierarchy:" msgstr "" -#: ../../howto/mro.rst:224 msgid "In this case the inheritance graph can be drawn as:" msgstr "" -#: ../../howto/mro.rst:226 msgid "" " 6\n" " ---\n" @@ -375,11 +219,9 @@ msgid "" " ---" msgstr "" -#: ../../howto/mro.rst:251 msgid "The linearizations of O,D,E and F are trivial::" msgstr "" -#: ../../howto/mro.rst:253 msgid "" "L[O] = O\n" "L[D] = D O\n" @@ -387,32 +229,21 @@ msgid "" "L[F] = F O" msgstr "" -#: ../../howto/mro.rst:258 msgid "The linearization of B can be computed as::" msgstr "" -#: ../../howto/mro.rst:260 msgid "L[B] = B + merge(DO, EO, DE)" msgstr "" -#: ../../howto/mro.rst:262 -msgid "" -"We see that D is a good head, therefore we take it and we are reduced to " -"compute ``merge(O,EO,E)``. Now O is not a good head, since it is in the " -"tail of the sequence EO. In this case the rule says that we have to skip to " -"the next sequence. Then we see that E is a good head; we take it and we are " -"reduced to compute ``merge(O,O)`` which gives O. Therefore::" +msgid "We see that D is a good head, therefore we take it and we are reduced to compute ``merge(O,EO,E)``. Now O is not a good head, since it is in the tail of the sequence EO. In this case the rule says that we have to skip to the next sequence. Then we see that E is a good head; we take it and we are reduced to compute ``merge(O,O)`` which gives O. Therefore::" msgstr "" -#: ../../howto/mro.rst:268 msgid "L[B] = B D E O" msgstr "" -#: ../../howto/mro.rst:270 msgid "Using the same procedure one finds::" msgstr "" -#: ../../howto/mro.rst:272 msgid "" "L[C] = C + merge(DO,FO,DF)\n" " = C + D + merge(O,FO,F)\n" @@ -420,11 +251,9 @@ msgid "" " = C D F O" msgstr "" -#: ../../howto/mro.rst:277 msgid "Now we can compute::" msgstr "" -#: ../../howto/mro.rst:279 msgid "" "L[A] = A + merge(BDEO,CDFO,BC)\n" " = A + B + merge(DEO,CDFO,C)\n" @@ -435,28 +264,15 @@ msgid "" " = A B C D E F O" msgstr "" -#: ../../howto/mro.rst:287 -msgid "" -"In this example, the linearization is ordered in a pretty nice way according " -"to the inheritance level, in the sense that lower levels (i.e. more " -"specialized classes) have higher precedence (see the inheritance graph). " -"However, this is not the general case." +msgid "In this example, the linearization is ordered in a pretty nice way according to the inheritance level, in the sense that lower levels (i.e. more specialized classes) have higher precedence (see the inheritance graph). However, this is not the general case." msgstr "" -#: ../../howto/mro.rst:292 -msgid "" -"I leave as an exercise for the reader to compute the linearization for my " -"second example:" +msgid "I leave as an exercise for the reader to compute the linearization for my second example:" msgstr "" -#: ../../howto/mro.rst:303 -msgid "" -"The only difference with the previous example is the change B(D,E) --> " -"B(E,D); however even such a little modification completely changes the " -"ordering of the hierarchy:" +msgid "The only difference with the previous example is the change B(D,E) --> B(E,D); however even such a little modification completely changes the ordering of the hierarchy:" msgstr "" -#: ../../howto/mro.rst:307 msgid "" " 6\n" " ---\n" @@ -481,28 +297,15 @@ msgid "" " ---" msgstr "" -#: ../../howto/mro.rst:332 -msgid "" -"Notice that the class E, which is in the second level of the hierarchy, " -"precedes the class C, which is in the first level of the hierarchy, i.e. E " -"is more specialized than C, even if it is in a higher level." +msgid "Notice that the class E, which is in the second level of the hierarchy, precedes the class C, which is in the first level of the hierarchy, i.e. E is more specialized than C, even if it is in a higher level." msgstr "" -#: ../../howto/mro.rst:336 -msgid "" -"A lazy programmer can obtain the MRO directly from Python 2.2, since in this " -"case it coincides with the Python 2.3 linearization. It is enough to invoke " -"the :meth:`~type.mro` method of class A:" +msgid "A lazy programmer can obtain the MRO directly from Python 2.2, since in this case it coincides with the Python 2.3 linearization. It is enough to invoke the :meth:`~type.mro` method of class A:" msgstr "" -#: ../../howto/mro.rst:345 -msgid "" -"Finally, let me consider the example discussed in the first section, " -"involving a serious order disagreement. In this case, it is straightforward " -"to compute the linearizations of O, X, Y, A and B:" +msgid "Finally, let me consider the example discussed in the first section, involving a serious order disagreement. In this case, it is straightforward to compute the linearizations of O, X, Y, A and B:" msgstr "" -#: ../../howto/mro.rst:349 msgid "" "L[O] = 0\n" "L[X] = X O\n" @@ -511,50 +314,30 @@ msgid "" "L[B] = B Y X O" msgstr "" -#: ../../howto/mro.rst:357 -msgid "" -"However, it is impossible to compute the linearization for a class C that " -"inherits from A and B::" +msgid "However, it is impossible to compute the linearization for a class C that inherits from A and B::" msgstr "" -#: ../../howto/mro.rst:360 msgid "" "L[C] = C + merge(AXYO, BYXO, AB)\n" " = C + A + merge(XYO, BYXO, B)\n" " = C + A + B + merge(XYO, YXO)" msgstr "" -#: ../../howto/mro.rst:364 -msgid "" -"At this point we cannot merge the lists XYO and YXO, since X is in the tail " -"of YXO whereas Y is in the tail of XYO: therefore there are no good heads " -"and the C3 algorithm stops. Python 2.3 raises an error and refuses to " -"create the class C." +msgid "At this point we cannot merge the lists XYO and YXO, since X is in the tail of YXO whereas Y is in the tail of XYO: therefore there are no good heads and the C3 algorithm stops. Python 2.3 raises an error and refuses to create the class C." msgstr "" -#: ../../howto/mro.rst:370 msgid "Bad Method Resolution Orders" msgstr "" -#: ../../howto/mro.rst:372 -msgid "" -"A MRO is *bad* when it breaks such fundamental properties as local " -"precedence ordering and monotonicity. In this section, I will show that " -"both the MRO for classic classes and the MRO for new style classes in Python " -"2.2 are bad." +msgid "A MRO is *bad* when it breaks such fundamental properties as local precedence ordering and monotonicity. In this section, I will show that both the MRO for classic classes and the MRO for new style classes in Python 2.2 are bad." msgstr "" -#: ../../howto/mro.rst:377 -msgid "" -"It is easier to start with the local precedence ordering. Consider the " -"following example:" +msgid "It is easier to start with the local precedence ordering. Consider the following example:" msgstr "" -#: ../../howto/mro.rst:384 msgid "with inheritance diagram" msgstr "" -#: ../../howto/mro.rst:386 msgid "" " O\n" " |\n" @@ -567,65 +350,33 @@ msgid "" " (buy eggs or spam ?)" msgstr "" -#: ../../howto/mro.rst:399 -msgid "" -"We see that class G inherits from F and E, with F *before* E: therefore we " -"would expect the attribute *G.remember2buy* to be inherited by " -"*F.remember2buy* and not by *E.remember2buy*: nevertheless Python 2.2 gives" +msgid "We see that class G inherits from F and E, with F *before* E: therefore we would expect the attribute *G.remember2buy* to be inherited by *F.remember2buy* and not by *E.remember2buy*: nevertheless Python 2.2 gives" msgstr "" -#: ../../howto/mro.rst:407 -msgid "" -"This is a breaking of local precedence ordering since the order in the local " -"precedence list, i.e. the list of the parents of G, is not preserved in the " -"Python 2.2 linearization of G::" +msgid "This is a breaking of local precedence ordering since the order in the local precedence list, i.e. the list of the parents of G, is not preserved in the Python 2.2 linearization of G::" msgstr "" -#: ../../howto/mro.rst:411 msgid "L[G,P22]= G E F object # F *follows* E" msgstr "" -#: ../../howto/mro.rst:413 -msgid "" -"One could argue that the reason why F follows E in the Python 2.2 " -"linearization is that F is less specialized than E, since F is the " -"superclass of E; nevertheless the breaking of local precedence ordering is " -"quite non-intuitive and error prone. This is particularly true since it is " -"a different from old style classes:" +msgid "One could argue that the reason why F follows E in the Python 2.2 linearization is that F is less specialized than E, since F is the superclass of E; nevertheless the breaking of local precedence ordering is quite non-intuitive and error prone. This is particularly true since it is a different from old style classes:" msgstr "" -#: ../../howto/mro.rst:425 -msgid "" -"In this case the MRO is GFEF and the local precedence ordering is preserved." +msgid "In this case the MRO is GFEF and the local precedence ordering is preserved." msgstr "" -#: ../../howto/mro.rst:428 -msgid "" -"As a general rule, hierarchies such as the previous one should be avoided, " -"since it is unclear if F should override E or vice-versa. Python 2.3 solves " -"the ambiguity by raising an exception in the creation of class G, " -"effectively stopping the programmer from generating ambiguous hierarchies. " -"The reason for that is that the C3 algorithm fails when the merge::" +msgid "As a general rule, hierarchies such as the previous one should be avoided, since it is unclear if F should override E or vice-versa. Python 2.3 solves the ambiguity by raising an exception in the creation of class G, effectively stopping the programmer from generating ambiguous hierarchies. The reason for that is that the C3 algorithm fails when the merge::" msgstr "" -#: ../../howto/mro.rst:435 msgid "merge(FO,EFO,FE)" msgstr "" -#: ../../howto/mro.rst:437 -msgid "" -"cannot be computed, because F is in the tail of EFO and E is in the tail of " -"FE." +msgid "cannot be computed, because F is in the tail of EFO and E is in the tail of FE." msgstr "" -#: ../../howto/mro.rst:440 -msgid "" -"The real solution is to design a non-ambiguous hierarchy, i.e. to derive G " -"from E and F (the more specific first) and not from F and E; in this case " -"the MRO is GEF without any doubt." +msgid "The real solution is to design a non-ambiguous hierarchy, i.e. to derive G from E and F (the more specific first) and not from F and E; in this case the MRO is GEF without any doubt." msgstr "" -#: ../../howto/mro.rst:444 msgid "" " O\n" " |\n" @@ -637,56 +388,30 @@ msgid "" " (eggs, no doubt)" msgstr "" -#: ../../howto/mro.rst:456 -msgid "" -"Python 2.3 forces the programmer to write good hierarchies (or, at least, " -"less error-prone ones)." +msgid "Python 2.3 forces the programmer to write good hierarchies (or, at least, less error-prone ones)." msgstr "" -#: ../../howto/mro.rst:459 -msgid "" -"On a related note, let me point out that the Python 2.3 algorithm is smart " -"enough to recognize obvious mistakes, as the duplication of classes in the " -"list of parents:" +msgid "On a related note, let me point out that the Python 2.3 algorithm is smart enough to recognize obvious mistakes, as the duplication of classes in the list of parents:" msgstr "" -#: ../../howto/mro.rst:469 -msgid "" -"Python 2.2 (both for classic classes and new style classes) in this " -"situation, would not raise any exception." +msgid "Python 2.2 (both for classic classes and new style classes) in this situation, would not raise any exception." msgstr "" -#: ../../howto/mro.rst:472 -msgid "" -"Finally, I would like to point out two lessons we have learned from this " -"example:" +msgid "Finally, I would like to point out two lessons we have learned from this example:" msgstr "" -#: ../../howto/mro.rst:475 -msgid "" -"despite the name, the MRO determines the resolution order of attributes, not " -"only of methods;" +msgid "despite the name, the MRO determines the resolution order of attributes, not only of methods;" msgstr "" -#: ../../howto/mro.rst:478 -msgid "" -"the default food for Pythonistas is spam ! (but you already knew that ;-)" +msgid "the default food for Pythonistas is spam ! (but you already knew that ;-)" msgstr "" -#: ../../howto/mro.rst:481 -msgid "" -"Having discussed the issue of local precedence ordering, let me now consider " -"the issue of monotonicity. My goal is to show that neither the MRO for " -"classic classes nor that for Python 2.2 new style classes is monotonic." +msgid "Having discussed the issue of local precedence ordering, let me now consider the issue of monotonicity. My goal is to show that neither the MRO for classic classes nor that for Python 2.2 new style classes is monotonic." msgstr "" -#: ../../howto/mro.rst:486 -msgid "" -"To prove that the MRO for classic classes is non-monotonic is rather " -"trivial, it is enough to look at the diamond diagram:" +msgid "To prove that the MRO for classic classes is non-monotonic is rather trivial, it is enough to look at the diamond diagram:" msgstr "" -#: ../../howto/mro.rst:489 msgid "" " C\n" " / \\\n" @@ -697,49 +422,29 @@ msgid "" " D" msgstr "" -#: ../../howto/mro.rst:500 msgid "One easily discerns the inconsistency::" msgstr "" -#: ../../howto/mro.rst:502 msgid "" "L[B,P21] = B C # B precedes C : B's methods win\n" "L[D,P21] = D A C B C # B follows C : C's methods win!" msgstr "" -#: ../../howto/mro.rst:505 -msgid "" -"On the other hand, there are no problems with the Python 2.2 and 2.3 MROs, " -"they give both::" +msgid "On the other hand, there are no problems with the Python 2.2 and 2.3 MROs, they give both::" msgstr "" -#: ../../howto/mro.rst:508 msgid "L[D] = D A B C" msgstr "" -#: ../../howto/mro.rst:510 -msgid "" -"Guido points out in his essay [#]_ that the classic MRO is not so bad in " -"practice, since one can typically avoids diamonds for classic classes. But " -"all new style classes inherit from ``object``, therefore diamonds are " -"unavoidable and inconsistencies shows up in every multiple inheritance graph." +msgid "Guido points out in his essay [#]_ that the classic MRO is not so bad in practice, since one can typically avoids diamonds for classic classes. But all new style classes inherit from ``object``, therefore diamonds are unavoidable and inconsistencies shows up in every multiple inheritance graph." msgstr "" -#: ../../howto/mro.rst:516 -msgid "" -"The MRO of Python 2.2 makes breaking monotonicity difficult, but not " -"impossible. The following example, originally provided by Samuele Pedroni, " -"shows that the MRO of Python 2.2 is non-monotonic:" +msgid "The MRO of Python 2.2 makes breaking monotonicity difficult, but not impossible. The following example, originally provided by Samuele Pedroni, shows that the MRO of Python 2.2 is non-monotonic:" msgstr "" -#: ../../howto/mro.rst:530 -msgid "" -"Here are the linearizations according to the C3 MRO (the reader should " -"verify these linearizations as an exercise and draw the inheritance " -"diagram ;-) ::" +msgid "Here are the linearizations according to the C3 MRO (the reader should verify these linearizations as an exercise and draw the inheritance diagram ;-) ::" msgstr "" -#: ../../howto/mro.rst:534 msgid "" "L[A] = A O\n" "L[B] = B O\n" @@ -752,53 +457,25 @@ msgid "" "L[Z] = Z K1 K2 K3 D A B C E O" msgstr "" -#: ../../howto/mro.rst:544 -msgid "" -"Python 2.2 gives exactly the same linearizations for A, B, C, D, E, K1, K2 " -"and K3, but a different linearization for Z::" +msgid "Python 2.2 gives exactly the same linearizations for A, B, C, D, E, K1, K2 and K3, but a different linearization for Z::" msgstr "" -#: ../../howto/mro.rst:547 msgid "L[Z,P22] = Z K1 K3 A K2 D B C E O" msgstr "" -#: ../../howto/mro.rst:549 -msgid "" -"It is clear that this linearization is *wrong*, since A comes before D " -"whereas in the linearization of K3 A comes *after* D. In other words, in K3 " -"methods derived by D override methods derived by A, but in Z, which still is " -"a subclass of K3, methods derived by A override methods derived by D! This " -"is a violation of monotonicity. Moreover, the Python 2.2 linearization of Z " -"is also inconsistent with local precedence ordering, since the local " -"precedence list of the class Z is [K1, K2, K3] (K2 precedes K3), whereas in " -"the linearization of Z K2 *follows* K3. These problems explain why the 2.2 " -"rule has been dismissed in favor of the C3 rule." -msgstr "" - -#: ../../howto/mro.rst:561 +msgid "It is clear that this linearization is *wrong*, since A comes before D whereas in the linearization of K3 A comes *after* D. In other words, in K3 methods derived by D override methods derived by A, but in Z, which still is a subclass of K3, methods derived by A override methods derived by D! This is a violation of monotonicity. Moreover, the Python 2.2 linearization of Z is also inconsistent with local precedence ordering, since the local precedence list of the class Z is [K1, K2, K3] (K2 precedes K3), whereas in the linearization of Z K2 *follows* K3. These problems explain why the 2.2 rule has been dismissed in favor of the C3 rule." +msgstr "" + msgid "The end" msgstr "" -#: ../../howto/mro.rst:563 -msgid "" -"This section is for the impatient reader, who skipped all the previous " -"sections and jumped immediately to the end. This section is for the lazy " -"programmer too, who didn't want to exercise her/his brain. Finally, it is " -"for the programmer with some hubris, otherwise s/he would not be reading a " -"paper on the C3 method resolution order in multiple inheritance " -"hierarchies ;-) These three virtues taken all together (and *not* " -"separately) deserve a prize: the prize is a short Python 2.2 script that " -"allows you to compute the 2.3 MRO without risk to your brain. Simply change " -"the last line to play with the various examples I have discussed in this " -"paper.::" -msgstr "" - -#: ../../howto/mro.rst:574 +msgid "This section is for the impatient reader, who skipped all the previous sections and jumped immediately to the end. This section is for the lazy programmer too, who didn't want to exercise her/his brain. Finally, it is for the programmer with some hubris, otherwise s/he would not be reading a paper on the C3 method resolution order in multiple inheritance hierarchies ;-) These three virtues taken all together (and *not* separately) deserve a prize: the prize is a short Python 2.2 script that allows you to compute the 2.3 MRO without risk to your brain. Simply change the last line to play with the various examples I have discussed in this paper.::" +msgstr "" + msgid "" "#\n" "\n" -"\"\"\"C3 algorithm by Samuele Pedroni (with readability enhanced by me)." -"\"\"\"\n" +"\"\"\"C3 algorithm by Samuele Pedroni (with readability enhanced by me).\"\"\"\n" "\n" "class __metaclass__(type):\n" " \"All classes are metamagically modified to be nicely printed\"\n" @@ -879,33 +556,20 @@ msgid "" "#" msgstr "" -#: ../../howto/mro.rst:656 msgid "That's all folks," msgstr "" -#: ../../howto/mro.rst:658 msgid "enjoy !" msgstr "" -#: ../../howto/mro.rst:662 msgid "Resources" msgstr "" -#: ../../howto/mro.rst:664 -msgid "" -"The thread on python-dev started by Samuele Pedroni: https://mail.python.org/" -"pipermail/python-dev/2002-October/029035.html" +msgid "The thread on python-dev started by Samuele Pedroni: https://mail.python.org/pipermail/python-dev/2002-October/029035.html" msgstr "" -#: ../../howto/mro.rst:667 -msgid "" -"The paper *A Monotonic Superclass Linearization for Dylan*: https://doi.org/" -"10.1145/236337.236343" +msgid "The paper *A Monotonic Superclass Linearization for Dylan*: https://doi.org/10.1145/236337.236343" msgstr "" -#: ../../howto/mro.rst:670 -msgid "" -"Guido van Rossum's essay, *Unifying types and classes in Python 2.2*: " -"https://web.archive.org/web/20140210194412/http://www.python.org/download/" -"releases/2.2.2/descrintro" +msgid "Guido van Rossum's essay, *Unifying types and classes in Python 2.2*: https://web.archive.org/web/20140210194412/http://www.python.org/download/releases/2.2.2/descrintro" msgstr "" diff --git a/howto/perf_profiling.po b/howto/perf_profiling.po index 8f101d0c..a1f5bcf2 100644 --- a/howto/perf_profiling.po +++ b/howto/perf_profiling.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2023-05-24 13:07+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,58 +23,30 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../howto/perf_profiling.rst:7 msgid "Python support for the Linux ``perf`` profiler" msgstr "" -#: ../../howto/perf_profiling.rst:0 msgid "author" msgstr "" -#: ../../howto/perf_profiling.rst:9 msgid "Pablo Galindo" msgstr "" -#: ../../howto/perf_profiling.rst:11 -msgid "" -"`The Linux perf profiler `_ is a very powerful " -"tool that allows you to profile and obtain information about the performance " -"of your application. ``perf`` also has a very vibrant ecosystem of tools " -"that aid with the analysis of the data that it produces." +msgid "`The Linux perf profiler `_ is a very powerful tool that allows you to profile and obtain information about the performance of your application. ``perf`` also has a very vibrant ecosystem of tools that aid with the analysis of the data that it produces." msgstr "" -#: ../../howto/perf_profiling.rst:17 -msgid "" -"The main problem with using the ``perf`` profiler with Python applications " -"is that ``perf`` only gets information about native symbols, that is, the " -"names of functions and procedures written in C. This means that the names " -"and file names of Python functions in your code will not appear in the " -"output of ``perf``." +msgid "The main problem with using the ``perf`` profiler with Python applications is that ``perf`` only gets information about native symbols, that is, the names of functions and procedures written in C. This means that the names and file names of Python functions in your code will not appear in the output of ``perf``." msgstr "" -#: ../../howto/perf_profiling.rst:22 -msgid "" -"Since Python 3.12, the interpreter can run in a special mode that allows " -"Python functions to appear in the output of the ``perf`` profiler. When this " -"mode is enabled, the interpreter will interpose a small piece of code " -"compiled on the fly before the execution of every Python function and it " -"will teach ``perf`` the relationship between this piece of code and the " -"associated Python function using :doc:`perf map files <../c-api/perfmaps>`." +msgid "Since Python 3.12, the interpreter can run in a special mode that allows Python functions to appear in the output of the ``perf`` profiler. When this mode is enabled, the interpreter will interpose a small piece of code compiled on the fly before the execution of every Python function and it will teach ``perf`` the relationship between this piece of code and the associated Python function using :doc:`perf map files <../c-api/perfmaps>`." msgstr "" -#: ../../howto/perf_profiling.rst:31 -msgid "" -"Support for the ``perf`` profiler is currently only available for Linux on " -"select architectures. Check the output of the ``configure`` build step or " -"check the output of ``python -m sysconfig | grep HAVE_PERF_TRAMPOLINE`` to " -"see if your system is supported." +msgid "Support for the ``perf`` profiler is currently only available for Linux on select architectures. Check the output of the ``configure`` build step or check the output of ``python -m sysconfig | grep HAVE_PERF_TRAMPOLINE`` to see if your system is supported." msgstr "" -#: ../../howto/perf_profiling.rst:36 msgid "For example, consider the following script:" msgstr "" -#: ../../howto/perf_profiling.rst:38 msgid "" "def foo(n):\n" " result = 0\n" @@ -92,27 +64,22 @@ msgid "" " baz(1000000)" msgstr "" -#: ../../howto/perf_profiling.rst:55 msgid "We can run ``perf`` to sample CPU stack traces at 9999 hertz::" msgstr "" -#: ../../howto/perf_profiling.rst:57 msgid "$ perf record -F 9999 -g -o perf.data python my_script.py" msgstr "" -#: ../../howto/perf_profiling.rst:59 msgid "Then we can use ``perf report`` to analyze the data:" msgstr "" -#: ../../howto/perf_profiling.rst:61 msgid "" "$ perf report --stdio -n -g\n" "\n" "# Children Self Samples Command Shared Object Symbol\n" "# ........ ........ ............ .......... .................. ..........................................\n" "#\n" -" 91.08% 0.00% 0 python.exe python.exe [.] " -"_start\n" +" 91.08% 0.00% 0 python.exe python.exe [.] _start\n" " |\n" " ---_start\n" " |\n" @@ -126,63 +93,38 @@ msgid "" " | | |\n" " | | |--55.02%--run_mod\n" " | | | |\n" -" | | | --54.65%--" -"PyEval_EvalCode\n" -" | | | " -"_PyEval_EvalFrameDefault\n" -" | | | " -"PyObject_Vectorcall\n" -" | | | " -"_PyEval_Vector\n" -" | | | " -"_PyEval_EvalFrameDefault\n" -" | | | " -"PyObject_Vectorcall\n" -" | | | " -"_PyEval_Vector\n" -" | | | " -"_PyEval_EvalFrameDefault\n" -" | | | " -"PyObject_Vectorcall\n" -" | | | " -"_PyEval_Vector\n" +" | | | --54.65%--PyEval_EvalCode\n" +" | | | _PyEval_EvalFrameDefault\n" +" | | | PyObject_Vectorcall\n" +" | | | _PyEval_Vector\n" +" | | | _PyEval_EvalFrameDefault\n" +" | | | PyObject_Vectorcall\n" +" | | | _PyEval_Vector\n" +" | | | _PyEval_EvalFrameDefault\n" +" | | | PyObject_Vectorcall\n" +" | | | _PyEval_Vector\n" " | | | |\n" -" | | | " -"|--51.67%--_PyEval_EvalFrameDefault\n" -" | | | " -"| |\n" -" | | | " -"| |--11.52%--_PyLong_Add\n" -" | | | " -"| | |\n" -" | | | " -"| | |--2.97%--_PyObject_Malloc\n" +" | | | |--51.67%--_PyEval_EvalFrameDefault\n" +" | | | | |\n" +" | | | | |--11.52%--_PyLong_Add\n" +" | | | | | |\n" +" | | | | | |--2.97%--_PyObject_Malloc\n" "..." msgstr "" -#: ../../howto/perf_profiling.rst:100 -msgid "" -"As you can see, the Python functions are not shown in the output, only " -"``_PyEval_EvalFrameDefault`` (the function that evaluates the Python " -"bytecode) shows up. Unfortunately that's not very useful because all Python " -"functions use the same C function to evaluate bytecode so we cannot know " -"which Python function corresponds to which bytecode-evaluating function." +msgid "As you can see, the Python functions are not shown in the output, only ``_PyEval_EvalFrameDefault`` (the function that evaluates the Python bytecode) shows up. Unfortunately that's not very useful because all Python functions use the same C function to evaluate bytecode so we cannot know which Python function corresponds to which bytecode-evaluating function." msgstr "" -#: ../../howto/perf_profiling.rst:105 -msgid "" -"Instead, if we run the same experiment with ``perf`` support enabled we get:" +msgid "Instead, if we run the same experiment with ``perf`` support enabled we get:" msgstr "" -#: ../../howto/perf_profiling.rst:107 msgid "" "$ perf report --stdio -n -g\n" "\n" "# Children Self Samples Command Shared Object Symbol\n" "# ........ ........ ............ .......... .................. .....................................................................\n" "#\n" -" 90.58% 0.36% 1 python.exe python.exe [.] " -"_start\n" +" 90.58% 0.36% 1 python.exe python.exe [.] _start\n" " |\n" " ---_start\n" " |\n" @@ -196,91 +138,56 @@ msgid "" " | | |\n" " | | |--53.62%--run_mod\n" " | | | |\n" -" | | | --53.26%--" -"PyEval_EvalCode\n" -" | | | py::" -":/src/script.py\n" -" | | | " -"_PyEval_EvalFrameDefault\n" -" | | | " -"PyObject_Vectorcall\n" -" | | | " -"_PyEval_Vector\n" -" | | | py::baz:/" -"src/script.py\n" -" | | | " -"_PyEval_EvalFrameDefault\n" -" | | | " -"PyObject_Vectorcall\n" -" | | | " -"_PyEval_Vector\n" -" | | | py::bar:/" -"src/script.py\n" -" | | | " -"_PyEval_EvalFrameDefault\n" -" | | | " -"PyObject_Vectorcall\n" -" | | | " -"_PyEval_Vector\n" -" | | | py::foo:/" -"src/script.py\n" +" | | | --53.26%--PyEval_EvalCode\n" +" | | | py:::/src/script.py\n" +" | | | _PyEval_EvalFrameDefault\n" +" | | | PyObject_Vectorcall\n" +" | | | _PyEval_Vector\n" +" | | | py::baz:/src/script.py\n" +" | | | _PyEval_EvalFrameDefault\n" +" | | | PyObject_Vectorcall\n" +" | | | _PyEval_Vector\n" +" | | | py::bar:/src/script.py\n" +" | | | _PyEval_EvalFrameDefault\n" +" | | | PyObject_Vectorcall\n" +" | | | _PyEval_Vector\n" +" | | | py::foo:/src/script.py\n" " | | | |\n" -" | | | " -"|--51.81%--_PyEval_EvalFrameDefault\n" -" | | | " -"| |\n" -" | | | " -"| |--13.77%--_PyLong_Add\n" -" | | | " -"| | |\n" -" | | | " -"| | |--3.26%--_PyObject_Malloc" -msgstr "" - -#: ../../howto/perf_profiling.rst:152 +" | | | |--51.81%--_PyEval_EvalFrameDefault\n" +" | | | | |\n" +" | | | | |--13.77%--_PyLong_Add\n" +" | | | | | |\n" +" | | | | | |--3.26%--_PyObject_Malloc" +msgstr "" + msgid "How to enable ``perf`` profiling support" msgstr "" -#: ../../howto/perf_profiling.rst:154 -msgid "" -"``perf`` profiling support can be enabled either from the start using the " -"environment variable :envvar:`PYTHONPERFSUPPORT` or the :option:`-X perf <-" -"X>` option, or dynamically using :func:`sys.activate_stack_trampoline` " -"and :func:`sys.deactivate_stack_trampoline`." +msgid "``perf`` profiling support can be enabled either from the start using the environment variable :envvar:`PYTHONPERFSUPPORT` or the :option:`-X perf <-X>` option, or dynamically using :func:`sys.activate_stack_trampoline` and :func:`sys.deactivate_stack_trampoline`." msgstr "" -#: ../../howto/perf_profiling.rst:160 -msgid "" -"The :mod:`!sys` functions take precedence over the :option:`!-X` option, " -"the :option:`!-X` option takes precedence over the environment variable." +msgid "The :mod:`!sys` functions take precedence over the :option:`!-X` option, the :option:`!-X` option takes precedence over the environment variable." msgstr "" -#: ../../howto/perf_profiling.rst:163 msgid "Example, using the environment variable::" msgstr "" -#: ../../howto/perf_profiling.rst:165 msgid "" -"$ PYTHONPERFSUPPORT=1 perf record -F 9999 -g -o perf.data python " -"my_script.py\n" +"$ PYTHONPERFSUPPORT=1 perf record -F 9999 -g -o perf.data python my_script.py\n" "$ perf report -g -i perf.data" msgstr "" -#: ../../howto/perf_profiling.rst:168 msgid "Example, using the :option:`!-X` option::" msgstr "" -#: ../../howto/perf_profiling.rst:170 msgid "" "$ perf record -F 9999 -g -o perf.data python -X perf my_script.py\n" "$ perf report -g -i perf.data" msgstr "" -#: ../../howto/perf_profiling.rst:173 msgid "Example, using the :mod:`sys` APIs in file :file:`example.py`:" msgstr "" -#: ../../howto/perf_profiling.rst:175 msgid "" "import sys\n" "\n" @@ -291,169 +198,85 @@ msgid "" "non_profiled_stuff()" msgstr "" -#: ../../howto/perf_profiling.rst:185 msgid "...then::" msgstr "" -#: ../../howto/perf_profiling.rst:187 msgid "" "$ perf record -F 9999 -g -o perf.data python ./example.py\n" "$ perf report -g -i perf.data" msgstr "" -#: ../../howto/perf_profiling.rst:192 msgid "How to obtain the best results" msgstr "" -#: ../../howto/perf_profiling.rst:194 -msgid "" -"For best results, Python should be compiled with ``CFLAGS=\"-fno-omit-frame-" -"pointer -mno-omit-leaf-frame-pointer\"`` as this allows profilers to unwind " -"using only the frame pointer and not on DWARF debug information. This is " -"because as the code that is interposed to allow ``perf`` support is " -"dynamically generated it doesn't have any DWARF debugging information " -"available." +msgid "For best results, Python should be compiled with ``CFLAGS=\"-fno-omit-frame-pointer -mno-omit-leaf-frame-pointer\"`` as this allows profilers to unwind using only the frame pointer and not on DWARF debug information. This is because as the code that is interposed to allow ``perf`` support is dynamically generated it doesn't have any DWARF debugging information available." msgstr "" -#: ../../howto/perf_profiling.rst:201 -msgid "" -"You can check if your system has been compiled with this flag by running::" +msgid "You can check if your system has been compiled with this flag by running::" msgstr "" -#: ../../howto/perf_profiling.rst:203 msgid "$ python -m sysconfig | grep 'no-omit-frame-pointer'" msgstr "" -#: ../../howto/perf_profiling.rst:205 -msgid "" -"If you don't see any output it means that your interpreter has not been " -"compiled with frame pointers and therefore it may not be able to show Python " -"functions in the output of ``perf``." +msgid "If you don't see any output it means that your interpreter has not been compiled with frame pointers and therefore it may not be able to show Python functions in the output of ``perf``." msgstr "" -#: ../../howto/perf_profiling.rst:211 msgid "How to work without frame pointers" msgstr "" -#: ../../howto/perf_profiling.rst:213 -msgid "" -"If you are working with a Python interpreter that has been compiled without " -"frame pointers, you can still use the ``perf`` profiler, but the overhead " -"will be a bit higher because Python needs to generate unwinding information " -"for every Python function call on the fly. Additionally, ``perf`` will take " -"more time to process the data because it will need to use the DWARF " -"debugging information to unwind the stack and this is a slow process." +msgid "If you are working with a Python interpreter that has been compiled without frame pointers, you can still use the ``perf`` profiler, but the overhead will be a bit higher because Python needs to generate unwinding information for every Python function call on the fly. Additionally, ``perf`` will take more time to process the data because it will need to use the DWARF debugging information to unwind the stack and this is a slow process." msgstr "" -#: ../../howto/perf_profiling.rst:220 -msgid "" -"To enable this mode, you can use the environment " -"variable :envvar:`PYTHON_PERF_JIT_SUPPORT` or the :option:`-X perf_jit <-X>` " -"option, which will enable the JIT mode for the ``perf`` profiler." +msgid "To enable this mode, you can use the environment variable :envvar:`PYTHON_PERF_JIT_SUPPORT` or the :option:`-X perf_jit <-X>` option, which will enable the JIT mode for the ``perf`` profiler." msgstr "" -#: ../../howto/perf_profiling.rst:226 -msgid "" -"Due to a bug in the ``perf`` tool, only ``perf`` versions higher than v6.8 " -"will work with the JIT mode. The fix was also backported to the v6.7.2 " -"version of the tool." +msgid "Due to a bug in the ``perf`` tool, only ``perf`` versions higher than v6.8 will work with the JIT mode. The fix was also backported to the v6.7.2 version of the tool." msgstr "" -#: ../../howto/perf_profiling.rst:230 -msgid "" -"Note that when checking the version of the ``perf`` tool (which can be done " -"by running ``perf version``) you must take into account that some distros " -"add some custom version numbers including a ``-`` character. This means " -"that ``perf 6.7-3`` is not necessarily ``perf 6.7.3``." +msgid "Note that when checking the version of the ``perf`` tool (which can be done by running ``perf version``) you must take into account that some distros add some custom version numbers including a ``-`` character. This means that ``perf 6.7-3`` is not necessarily ``perf 6.7.3``." msgstr "" -#: ../../howto/perf_profiling.rst:235 -msgid "" -"When using the perf JIT mode, you need an extra step before you can run " -"``perf report``. You need to call the ``perf inject`` command to inject the " -"JIT information into the ``perf.data`` file.::" +msgid "When using the perf JIT mode, you need an extra step before you can run ``perf report``. You need to call the ``perf inject`` command to inject the JIT information into the ``perf.data`` file.::" msgstr "" -#: ../../howto/perf_profiling.rst:239 msgid "" -"$ perf record -F 9999 -g -k 1 --call-graph dwarf -o perf.data python " -"-Xperf_jit my_script.py\n" +"$ perf record -F 9999 -g -k 1 --call-graph dwarf -o perf.data python -Xperf_jit my_script.py\n" "$ perf inject -i perf.data --jit --output perf.jit.data\n" "$ perf report -g -i perf.jit.data" msgstr "" -#: ../../howto/perf_profiling.rst:243 msgid "or using the environment variable::" msgstr "" -#: ../../howto/perf_profiling.rst:245 msgid "" -"$ PYTHON_PERF_JIT_SUPPORT=1 perf record -F 9999 -g --call-graph dwarf -o " -"perf.data python my_script.py\n" +"$ PYTHON_PERF_JIT_SUPPORT=1 perf record -F 9999 -g --call-graph dwarf -o perf.data python my_script.py\n" "$ perf inject -i perf.data --jit --output perf.jit.data\n" "$ perf report -g -i perf.jit.data" msgstr "" -#: ../../howto/perf_profiling.rst:249 -msgid "" -"``perf inject --jit`` command will read ``perf.data``, automatically pick up " -"the perf dump file that Python creates (in ``/tmp/perf-$PID.dump``), and " -"then create ``perf.jit.data`` which merges all the JIT information together. " -"It should also create a lot of ``jitted-XXXX-N.so`` files in the current " -"directory which are ELF images for all the JIT trampolines that were created " -"by Python." +msgid "``perf inject --jit`` command will read ``perf.data``, automatically pick up the perf dump file that Python creates (in ``/tmp/perf-$PID.dump``), and then create ``perf.jit.data`` which merges all the JIT information together. It should also create a lot of ``jitted-XXXX-N.so`` files in the current directory which are ELF images for all the JIT trampolines that were created by Python." msgstr "" -#: ../../howto/perf_profiling.rst:257 -msgid "" -"When using ``--call-graph dwarf``, the ``perf`` tool will take snapshots of " -"the stack of the process being profiled and save the information in the " -"``perf.data`` file. By default, the size of the stack dump is 8192 bytes, " -"but you can change the size by passing it after a comma like ``--call-graph " -"dwarf,16384``." +msgid "When using ``--call-graph dwarf``, the ``perf`` tool will take snapshots of the stack of the process being profiled and save the information in the ``perf.data`` file. By default, the size of the stack dump is 8192 bytes, but you can change the size by passing it after a comma like ``--call-graph dwarf,16384``." msgstr "" -#: ../../howto/perf_profiling.rst:263 -msgid "" -"The size of the stack dump is important because if the size is too small " -"``perf`` will not be able to unwind the stack and the output will be " -"incomplete. On the other hand, if the size is too big, then ``perf`` won't " -"be able to sample the process as frequently as it would like as the overhead " -"will be higher." +msgid "The size of the stack dump is important because if the size is too small ``perf`` will not be able to unwind the stack and the output will be incomplete. On the other hand, if the size is too big, then ``perf`` won't be able to sample the process as frequently as it would like as the overhead will be higher." msgstr "" -#: ../../howto/perf_profiling.rst:269 -msgid "" -"The stack size is particularly important when profiling Python code compiled " -"with low optimization levels (like ``-O0``), as these builds tend to have " -"larger stack frames. If you are compiling Python with ``-O0`` and not seeing " -"Python functions in your profiling output, try increasing the stack dump " -"size to 65528 bytes (the maximum)::" +msgid "The stack size is particularly important when profiling Python code compiled with low optimization levels (like ``-O0``), as these builds tend to have larger stack frames. If you are compiling Python with ``-O0`` and not seeing Python functions in your profiling output, try increasing the stack dump size to 65528 bytes (the maximum)::" msgstr "" -#: ../../howto/perf_profiling.rst:275 -msgid "" -"$ perf record -F 9999 -g -k 1 --call-graph dwarf,65528 -o perf.data python " -"-Xperf_jit my_script.py" +msgid "$ perf record -F 9999 -g -k 1 --call-graph dwarf,65528 -o perf.data python -Xperf_jit my_script.py" msgstr "" -#: ../../howto/perf_profiling.rst:277 msgid "Different compilation flags can significantly impact stack sizes:" msgstr "" -#: ../../howto/perf_profiling.rst:279 -msgid "" -"Builds with ``-O0`` typically have much larger stack frames than those with " -"``-O1`` or higher" +msgid "Builds with ``-O0`` typically have much larger stack frames than those with ``-O1`` or higher" msgstr "" -#: ../../howto/perf_profiling.rst:280 -msgid "" -"Adding optimizations (``-O1``, ``-O2``, etc.) typically reduces stack size" +msgid "Adding optimizations (``-O1``, ``-O2``, etc.) typically reduces stack size" msgstr "" -#: ../../howto/perf_profiling.rst:281 -msgid "" -"Frame pointers (``-fno-omit-frame-pointer``) generally provide more reliable " -"stack unwinding" +msgid "Frame pointers (``-fno-omit-frame-pointer``) generally provide more reliable stack unwinding" msgstr "" diff --git a/howto/pyporting.po b/howto/pyporting.po index 9bca9fbf..78c71295 100644 --- a/howto/pyporting.po +++ b/howto/pyporting.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:53+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,68 +24,41 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../howto/pyporting.rst:7 msgid "How to port Python 2 Code to Python 3" msgstr "" -#: ../../howto/pyporting.rst:0 msgid "author" msgstr "" -#: ../../howto/pyporting.rst:9 msgid "Brett Cannon" msgstr "" -#: ../../howto/pyporting.rst:11 -msgid "" -"Python 2 reached its official end-of-life at the start of 2020. This means " -"that no new bug reports, fixes, or changes will be made to Python 2 - it's " -"no longer supported: see :pep:`373` and `status of Python versions `_." +msgid "Python 2 reached its official end-of-life at the start of 2020. This means that no new bug reports, fixes, or changes will be made to Python 2 - it's no longer supported: see :pep:`373` and `status of Python versions `_." msgstr "" -#: ../../howto/pyporting.rst:16 -msgid "" -"If you are looking to port an extension module instead of pure Python code, " -"please see :ref:`cporting-howto`." +msgid "If you are looking to port an extension module instead of pure Python code, please see :ref:`cporting-howto`." msgstr "" -#: ../../howto/pyporting.rst:19 -msgid "" -"The archived python-porting_ mailing list may contain some useful guidance." +msgid "The archived python-porting_ mailing list may contain some useful guidance." msgstr "" -#: ../../howto/pyporting.rst:21 -msgid "" -"Since Python 3.11 the original porting guide was discontinued. You can find " -"the old guide in the `archive `_." +msgid "Since Python 3.11 the original porting guide was discontinued. You can find the old guide in the `archive `_." msgstr "" -#: ../../howto/pyporting.rst:27 msgid "Third-party guides" msgstr "" -#: ../../howto/pyporting.rst:29 msgid "There are also multiple third-party guides that might be useful:" msgstr "" -#: ../../howto/pyporting.rst:31 msgid "`Guide by Fedora `_" msgstr "" -#: ../../howto/pyporting.rst:32 msgid "`PyCon 2020 tutorial `_" msgstr "" -#: ../../howto/pyporting.rst:33 -msgid "" -"`Guide by DigitalOcean `_" +msgid "`Guide by DigitalOcean `_" msgstr "" -#: ../../howto/pyporting.rst:34 -msgid "" -"`Guide by ActiveState `_" +msgid "`Guide by ActiveState `_" msgstr "" diff --git a/howto/regex.po b/howto/regex.po index c9f72ac2..619594ca 100644 --- a/howto/regex.po +++ b/howto/regex.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:53+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,479 +24,237 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../howto/regex.rst:5 msgid "Regular expression HOWTO" msgstr "" -#: ../../howto/regex.rst:0 msgid "Author" msgstr "" -#: ../../howto/regex.rst:7 msgid "A.M. Kuchling " msgstr "" -#: ../../howto/regex.rst:-1 msgid "Abstract" msgstr "" -#: ../../howto/regex.rst:18 -msgid "" -"This document is an introductory tutorial to using regular expressions in " -"Python with the :mod:`re` module. It provides a gentler introduction than " -"the corresponding section in the Library Reference." +msgid "This document is an introductory tutorial to using regular expressions in Python with the :mod:`re` module. It provides a gentler introduction than the corresponding section in the Library Reference." msgstr "" -#: ../../howto/regex.rst:24 msgid "Introduction" msgstr "" -#: ../../howto/regex.rst:26 -msgid "" -"Regular expressions (called REs, or regexes, or regex patterns) are " -"essentially a tiny, highly specialized programming language embedded inside " -"Python and made available through the :mod:`re` module. Using this little " -"language, you specify the rules for the set of possible strings that you " -"want to match; this set might contain English sentences, or e-mail " -"addresses, or TeX commands, or anything you like. You can then ask " -"questions such as \"Does this string match the pattern?\", or \"Is there a " -"match for the pattern anywhere in this string?\". You can also use REs to " -"modify a string or to split it apart in various ways." -msgstr "" - -#: ../../howto/regex.rst:35 -msgid "" -"Regular expression patterns are compiled into a series of bytecodes which " -"are then executed by a matching engine written in C. For advanced use, it " -"may be necessary to pay careful attention to how the engine will execute a " -"given RE, and write the RE in a certain way in order to produce bytecode " -"that runs faster. Optimization isn't covered in this document, because it " -"requires that you have a good understanding of the matching engine's " -"internals." +msgid "Regular expressions (called REs, or regexes, or regex patterns) are essentially a tiny, highly specialized programming language embedded inside Python and made available through the :mod:`re` module. Using this little language, you specify the rules for the set of possible strings that you want to match; this set might contain English sentences, or e-mail addresses, or TeX commands, or anything you like. You can then ask questions such as \"Does this string match the pattern?\", or \"Is there a match for the pattern anywhere in this string?\". You can also use REs to modify a string or to split it apart in various ways." msgstr "" -#: ../../howto/regex.rst:42 -msgid "" -"The regular expression language is relatively small and restricted, so not " -"all possible string processing tasks can be done using regular expressions. " -"There are also tasks that *can* be done with regular expressions, but the " -"expressions turn out to be very complicated. In these cases, you may be " -"better off writing Python code to do the processing; while Python code will " -"be slower than an elaborate regular expression, it will also probably be " -"more understandable." +msgid "Regular expression patterns are compiled into a series of bytecodes which are then executed by a matching engine written in C. For advanced use, it may be necessary to pay careful attention to how the engine will execute a given RE, and write the RE in a certain way in order to produce bytecode that runs faster. Optimization isn't covered in this document, because it requires that you have a good understanding of the matching engine's internals." +msgstr "" + +msgid "The regular expression language is relatively small and restricted, so not all possible string processing tasks can be done using regular expressions. There are also tasks that *can* be done with regular expressions, but the expressions turn out to be very complicated. In these cases, you may be better off writing Python code to do the processing; while Python code will be slower than an elaborate regular expression, it will also probably be more understandable." msgstr "" -#: ../../howto/regex.rst:51 msgid "Simple patterns" msgstr "" -#: ../../howto/regex.rst:53 -msgid "" -"We'll start by learning about the simplest possible regular expressions. " -"Since regular expressions are used to operate on strings, we'll begin with " -"the most common task: matching characters." +msgid "We'll start by learning about the simplest possible regular expressions. Since regular expressions are used to operate on strings, we'll begin with the most common task: matching characters." msgstr "" -#: ../../howto/regex.rst:57 -msgid "" -"For a detailed explanation of the computer science underlying regular " -"expressions (deterministic and non-deterministic finite automata), you can " -"refer to almost any textbook on writing compilers." +msgid "For a detailed explanation of the computer science underlying regular expressions (deterministic and non-deterministic finite automata), you can refer to almost any textbook on writing compilers." msgstr "" -#: ../../howto/regex.rst:63 msgid "Matching characters" msgstr "" -#: ../../howto/regex.rst:65 -msgid "" -"Most letters and characters will simply match themselves. For example, the " -"regular expression ``test`` will match the string ``test`` exactly. (You " -"can enable a case-insensitive mode that would let this RE match ``Test`` or " -"``TEST`` as well; more about this later.)" +msgid "Most letters and characters will simply match themselves. For example, the regular expression ``test`` will match the string ``test`` exactly. (You can enable a case-insensitive mode that would let this RE match ``Test`` or ``TEST`` as well; more about this later.)" msgstr "" -#: ../../howto/regex.rst:70 -msgid "" -"There are exceptions to this rule; some characters are " -"special :dfn:`metacharacters`, and don't match themselves. Instead, they " -"signal that some out-of-the-ordinary thing should be matched, or they affect " -"other portions of the RE by repeating them or changing their meaning. Much " -"of this document is devoted to discussing various metacharacters and what " -"they do." +msgid "There are exceptions to this rule; some characters are special :dfn:`metacharacters`, and don't match themselves. Instead, they signal that some out-of-the-ordinary thing should be matched, or they affect other portions of the RE by repeating them or changing their meaning. Much of this document is devoted to discussing various metacharacters and what they do." msgstr "" -#: ../../howto/regex.rst:76 -msgid "" -"Here's a complete list of the metacharacters; their meanings will be " -"discussed in the rest of this HOWTO." +msgid "Here's a complete list of the metacharacters; their meanings will be discussed in the rest of this HOWTO." msgstr "" -#: ../../howto/regex.rst:79 msgid ". ^ $ * + ? { } [ ] \\ | ( )" msgstr "" -#: ../../howto/regex.rst:83 -msgid "" -"The first metacharacters we'll look at are ``[`` and ``]``. They're used for " -"specifying a character class, which is a set of characters that you wish to " -"match. Characters can be listed individually, or a range of characters can " -"be indicated by giving two characters and separating them by a ``'-'``. For " -"example, ``[abc]`` will match any of the characters ``a``, ``b``, or ``c``; " -"this is the same as ``[a-c]``, which uses a range to express the same set of " -"characters. If you wanted to match only lowercase letters, your RE would be " -"``[a-z]``." +msgid "The first metacharacters we'll look at are ``[`` and ``]``. They're used for specifying a character class, which is a set of characters that you wish to match. Characters can be listed individually, or a range of characters can be indicated by giving two characters and separating them by a ``'-'``. For example, ``[abc]`` will match any of the characters ``a``, ``b``, or ``c``; this is the same as ``[a-c]``, which uses a range to express the same set of characters. If you wanted to match only lowercase letters, your RE would be ``[a-z]``." msgstr "" -#: ../../howto/regex.rst:92 -msgid "" -"Metacharacters (except ``\\``) are not active inside classes. For example, " -"``[akm$]`` will match any of the characters ``'a'``, ``'k'``, ``'m'``, or " -"``'$'``; ``'$'`` is usually a metacharacter, but inside a character class " -"it's stripped of its special nature." +msgid "Metacharacters (except ``\\``) are not active inside classes. For example, ``[akm$]`` will match any of the characters ``'a'``, ``'k'``, ``'m'``, or ``'$'``; ``'$'`` is usually a metacharacter, but inside a character class it's stripped of its special nature." msgstr "" -#: ../../howto/regex.rst:97 -msgid "" -"You can match the characters not listed within the class " -"by :dfn:`complementing` the set. This is indicated by including a ``'^'`` " -"as the first character of the class. For example, ``[^5]`` will match any " -"character except ``'5'``. If the caret appears elsewhere in a character " -"class, it does not have special meaning. For example: ``[5^]`` will match " -"either a ``'5'`` or a ``'^'``." +msgid "You can match the characters not listed within the class by :dfn:`complementing` the set. This is indicated by including a ``'^'`` as the first character of the class. For example, ``[^5]`` will match any character except ``'5'``. If the caret appears elsewhere in a character class, it does not have special meaning. For example: ``[5^]`` will match either a ``'5'`` or a ``'^'``." msgstr "" -#: ../../howto/regex.rst:103 -msgid "" -"Perhaps the most important metacharacter is the backslash, ``\\``. As in " -"Python string literals, the backslash can be followed by various characters " -"to signal various special sequences. It's also used to escape all the " -"metacharacters so you can still match them in patterns; for example, if you " -"need to match a ``[`` or ``\\``, you can precede them with a backslash to " -"remove their special meaning: ``\\[`` or ``\\\\``." +msgid "Perhaps the most important metacharacter is the backslash, ``\\``. As in Python string literals, the backslash can be followed by various characters to signal various special sequences. It's also used to escape all the metacharacters so you can still match them in patterns; for example, if you need to match a ``[`` or ``\\``, you can precede them with a backslash to remove their special meaning: ``\\[`` or ``\\\\``." msgstr "" -#: ../../howto/regex.rst:110 -msgid "" -"Some of the special sequences beginning with ``'\\'`` represent predefined " -"sets of characters that are often useful, such as the set of digits, the set " -"of letters, or the set of anything that isn't whitespace." +msgid "Some of the special sequences beginning with ``'\\'`` represent predefined sets of characters that are often useful, such as the set of digits, the set of letters, or the set of anything that isn't whitespace." msgstr "" -#: ../../howto/regex.rst:115 -msgid "" -"Let's take an example: ``\\w`` matches any alphanumeric character. If the " -"regex pattern is expressed in bytes, this is equivalent to the class ``[a-zA-" -"Z0-9_]``. If the regex pattern is a string, ``\\w`` will match all the " -"characters marked as letters in the Unicode database provided by " -"the :mod:`unicodedata` module. You can use the more restricted definition " -"of ``\\w`` in a string pattern by supplying the :const:`re.ASCII` flag when " -"compiling the regular expression." +msgid "Let's take an example: ``\\w`` matches any alphanumeric character. If the regex pattern is expressed in bytes, this is equivalent to the class ``[a-zA-Z0-9_]``. If the regex pattern is a string, ``\\w`` will match all the characters marked as letters in the Unicode database provided by the :mod:`unicodedata` module. You can use the more restricted definition of ``\\w`` in a string pattern by supplying the :const:`re.ASCII` flag when compiling the regular expression." msgstr "" -#: ../../howto/regex.rst:123 -msgid "" -"The following list of special sequences isn't complete. For a complete list " -"of sequences and expanded class definitions for Unicode string patterns, see " -"the last part of :ref:`Regular Expression Syntax ` in the " -"Standard Library reference. In general, the Unicode versions match any " -"character that's in the appropriate category in the Unicode database." +msgid "The following list of special sequences isn't complete. For a complete list of sequences and expanded class definitions for Unicode string patterns, see the last part of :ref:`Regular Expression Syntax ` in the Standard Library reference. In general, the Unicode versions match any character that's in the appropriate category in the Unicode database." msgstr "" -#: ../../howto/regex.rst:130 msgid "``\\d``" msgstr "" -#: ../../howto/regex.rst:131 msgid "Matches any decimal digit; this is equivalent to the class ``[0-9]``." msgstr "" -#: ../../howto/regex.rst:133 msgid "``\\D``" msgstr "" -#: ../../howto/regex.rst:134 -msgid "" -"Matches any non-digit character; this is equivalent to the class ``[^0-9]``." +msgid "Matches any non-digit character; this is equivalent to the class ``[^0-9]``." msgstr "" -#: ../../howto/regex.rst:136 msgid "``\\s``" msgstr "" -#: ../../howto/regex.rst:137 -msgid "" -"Matches any whitespace character; this is equivalent to the class " -"``[ \\t\\n\\r\\f\\v]``." +msgid "Matches any whitespace character; this is equivalent to the class ``[ \\t\\n\\r\\f\\v]``." msgstr "" -#: ../../howto/regex.rst:140 msgid "``\\S``" msgstr "" -#: ../../howto/regex.rst:141 -msgid "" -"Matches any non-whitespace character; this is equivalent to the class ``[^ " -"\\t\\n\\r\\f\\v]``." +msgid "Matches any non-whitespace character; this is equivalent to the class ``[^ \\t\\n\\r\\f\\v]``." msgstr "" -#: ../../howto/regex.rst:144 msgid "``\\w``" msgstr "" -#: ../../howto/regex.rst:145 -msgid "" -"Matches any alphanumeric character; this is equivalent to the class ``[a-zA-" -"Z0-9_]``." +msgid "Matches any alphanumeric character; this is equivalent to the class ``[a-zA-Z0-9_]``." msgstr "" -#: ../../howto/regex.rst:148 msgid "``\\W``" msgstr "" -#: ../../howto/regex.rst:149 -msgid "" -"Matches any non-alphanumeric character; this is equivalent to the class " -"``[^a-zA-Z0-9_]``." +msgid "Matches any non-alphanumeric character; this is equivalent to the class ``[^a-zA-Z0-9_]``." msgstr "" -#: ../../howto/regex.rst:152 -msgid "" -"These sequences can be included inside a character class. For example, " -"``[\\s,.]`` is a character class that will match any whitespace character, " -"or ``','`` or ``'.'``." +msgid "These sequences can be included inside a character class. For example, ``[\\s,.]`` is a character class that will match any whitespace character, or ``','`` or ``'.'``." msgstr "" -#: ../../howto/regex.rst:156 -msgid "" -"The final metacharacter in this section is ``.``. It matches anything " -"except a newline character, and there's an alternate mode " -"(:const:`re.DOTALL`) where it will match even a newline. ``.`` is often " -"used where you want to match \"any character\"." +msgid "The final metacharacter in this section is ``.``. It matches anything except a newline character, and there's an alternate mode (:const:`re.DOTALL`) where it will match even a newline. ``.`` is often used where you want to match \"any character\"." msgstr "" -#: ../../howto/regex.rst:163 msgid "Repeating things" msgstr "" -#: ../../howto/regex.rst:165 -msgid "" -"Being able to match varying sets of characters is the first thing regular " -"expressions can do that isn't already possible with the methods available on " -"strings. However, if that was the only additional capability of regexes, " -"they wouldn't be much of an advance. Another capability is that you can " -"specify that portions of the RE must be repeated a certain number of times." +msgid "Being able to match varying sets of characters is the first thing regular expressions can do that isn't already possible with the methods available on strings. However, if that was the only additional capability of regexes, they wouldn't be much of an advance. Another capability is that you can specify that portions of the RE must be repeated a certain number of times." msgstr "" -#: ../../howto/regex.rst:171 -msgid "" -"The first metacharacter for repeating things that we'll look at is ``*``. " -"``*`` doesn't match the literal character ``'*'``; instead, it specifies " -"that the previous character can be matched zero or more times, instead of " -"exactly once." +msgid "The first metacharacter for repeating things that we'll look at is ``*``. ``*`` doesn't match the literal character ``'*'``; instead, it specifies that the previous character can be matched zero or more times, instead of exactly once." msgstr "" -#: ../../howto/regex.rst:175 -msgid "" -"For example, ``ca*t`` will match ``'ct'`` (0 ``'a'`` characters), ``'cat'`` " -"(1 ``'a'``), ``'caaat'`` (3 ``'a'`` characters), and so forth." +msgid "For example, ``ca*t`` will match ``'ct'`` (0 ``'a'`` characters), ``'cat'`` (1 ``'a'``), ``'caaat'`` (3 ``'a'`` characters), and so forth." msgstr "" -#: ../../howto/regex.rst:178 -msgid "" -"Repetitions such as ``*`` are :dfn:`greedy`; when repeating a RE, the " -"matching engine will try to repeat it as many times as possible. If later " -"portions of the pattern don't match, the matching engine will then back up " -"and try again with fewer repetitions." +msgid "Repetitions such as ``*`` are :dfn:`greedy`; when repeating a RE, the matching engine will try to repeat it as many times as possible. If later portions of the pattern don't match, the matching engine will then back up and try again with fewer repetitions." msgstr "" -#: ../../howto/regex.rst:183 -msgid "" -"A step-by-step example will make this more obvious. Let's consider the " -"expression ``a[bcd]*b``. This matches the letter ``'a'``, zero or more " -"letters from the class ``[bcd]``, and finally ends with a ``'b'``. Now " -"imagine matching this RE against the string ``'abcbd'``." +msgid "A step-by-step example will make this more obvious. Let's consider the expression ``a[bcd]*b``. This matches the letter ``'a'``, zero or more letters from the class ``[bcd]``, and finally ends with a ``'b'``. Now imagine matching this RE against the string ``'abcbd'``." msgstr "" -#: ../../howto/regex.rst:189 msgid "Step" msgstr "" -#: ../../howto/regex.rst:189 msgid "Matched" msgstr "" -#: ../../howto/regex.rst:189 msgid "Explanation" msgstr "" -#: ../../howto/regex.rst:191 msgid "1" msgstr "" -#: ../../howto/regex.rst:191 msgid "``a``" msgstr "" -#: ../../howto/regex.rst:191 msgid "The ``a`` in the RE matches." msgstr "" -#: ../../howto/regex.rst:193 msgid "2" msgstr "" -#: ../../howto/regex.rst:193 msgid "``abcbd``" msgstr "" -#: ../../howto/regex.rst:193 -msgid "" -"The engine matches ``[bcd]*``, going as far as it can, which is to the end " -"of the string." +msgid "The engine matches ``[bcd]*``, going as far as it can, which is to the end of the string." msgstr "" -#: ../../howto/regex.rst:197 msgid "3" msgstr "" -#: ../../howto/regex.rst:197 ../../howto/regex.rst:205 msgid "*Failure*" msgstr "" -#: ../../howto/regex.rst:197 -msgid "" -"The engine tries to match ``b``, but the current position is at the end of " -"the string, so it fails." +msgid "The engine tries to match ``b``, but the current position is at the end of the string, so it fails." msgstr "" -#: ../../howto/regex.rst:202 msgid "4" msgstr "" -#: ../../howto/regex.rst:202 ../../howto/regex.rst:213 msgid "``abcb``" msgstr "" -#: ../../howto/regex.rst:202 msgid "Back up, so that ``[bcd]*`` matches one less character." msgstr "" -#: ../../howto/regex.rst:205 msgid "5" msgstr "" -#: ../../howto/regex.rst:205 -msgid "" -"Try ``b`` again, but the current position is at the last character, which is " -"a ``'d'``." +msgid "Try ``b`` again, but the current position is at the last character, which is a ``'d'``." msgstr "" -#: ../../howto/regex.rst:209 msgid "6" msgstr "" -#: ../../howto/regex.rst:209 msgid "``abc``" msgstr "" -#: ../../howto/regex.rst:209 msgid "Back up again, so that ``[bcd]*`` is only matching ``bc``." msgstr "" -#: ../../howto/regex.rst:213 msgid "7" msgstr "" -#: ../../howto/regex.rst:213 -msgid "" -"Try ``b`` again. This time the character at the current position is " -"``'b'``, so it succeeds." +msgid "Try ``b`` again. This time the character at the current position is ``'b'``, so it succeeds." msgstr "" -#: ../../howto/regex.rst:219 -msgid "" -"The end of the RE has now been reached, and it has matched ``'abcb'``. This " -"demonstrates how the matching engine goes as far as it can at first, and if " -"no match is found it will then progressively back up and retry the rest of " -"the RE again and again. It will back up until it has tried zero matches for " -"``[bcd]*``, and if that subsequently fails, the engine will conclude that " -"the string doesn't match the RE at all." +msgid "The end of the RE has now been reached, and it has matched ``'abcb'``. This demonstrates how the matching engine goes as far as it can at first, and if no match is found it will then progressively back up and retry the rest of the RE again and again. It will back up until it has tried zero matches for ``[bcd]*``, and if that subsequently fails, the engine will conclude that the string doesn't match the RE at all." msgstr "" -#: ../../howto/regex.rst:226 -msgid "" -"Another repeating metacharacter is ``+``, which matches one or more times. " -"Pay careful attention to the difference between ``*`` and ``+``; ``*`` " -"matches *zero* or more times, so whatever's being repeated may not be " -"present at all, while ``+`` requires at least *one* occurrence. To use a " -"similar example, ``ca+t`` will match ``'cat'`` (1 ``'a'``), ``'caaat'`` (3 " -"``'a'``\\ s), but won't match ``'ct'``." +msgid "Another repeating metacharacter is ``+``, which matches one or more times. Pay careful attention to the difference between ``*`` and ``+``; ``*`` matches *zero* or more times, so whatever's being repeated may not be present at all, while ``+`` requires at least *one* occurrence. To use a similar example, ``ca+t`` will match ``'cat'`` (1 ``'a'``), ``'caaat'`` (3 ``'a'``\\ s), but won't match ``'ct'``." msgstr "" -#: ../../howto/regex.rst:233 -msgid "" -"There are two more repeating operators or quantifiers. The question mark " -"character, ``?``, matches either once or zero times; you can think of it as " -"marking something as being optional. For example, ``home-?brew`` matches " -"either ``'homebrew'`` or ``'home-brew'``." +msgid "There are two more repeating operators or quantifiers. The question mark character, ``?``, matches either once or zero times; you can think of it as marking something as being optional. For example, ``home-?brew`` matches either ``'homebrew'`` or ``'home-brew'``." msgstr "" -#: ../../howto/regex.rst:238 -msgid "" -"The most complicated quantifier is ``{m,n}``, where *m* and *n* are decimal " -"integers. This quantifier means there must be at least *m* repetitions, and " -"at most *n*. For example, ``a/{1,3}b`` will match ``'a/b'``, ``'a//b'``, " -"and ``'a///b'``. It won't match ``'ab'``, which has no slashes, or ``'a////" -"b'``, which has four." +msgid "The most complicated quantifier is ``{m,n}``, where *m* and *n* are decimal integers. This quantifier means there must be at least *m* repetitions, and at most *n*. For example, ``a/{1,3}b`` will match ``'a/b'``, ``'a//b'``, and ``'a///b'``. It won't match ``'ab'``, which has no slashes, or ``'a////b'``, which has four." msgstr "" -#: ../../howto/regex.rst:244 -msgid "" -"You can omit either *m* or *n*; in that case, a reasonable value is assumed " -"for the missing value. Omitting *m* is interpreted as a lower limit of 0, " -"while omitting *n* results in an upper bound of infinity." +msgid "You can omit either *m* or *n*; in that case, a reasonable value is assumed for the missing value. Omitting *m* is interpreted as a lower limit of 0, while omitting *n* results in an upper bound of infinity." msgstr "" -#: ../../howto/regex.rst:248 -msgid "" -"The simplest case ``{m}`` matches the preceding item exactly *m* times. For " -"example, ``a/{2}b`` will only match ``'a//b'``." +msgid "The simplest case ``{m}`` matches the preceding item exactly *m* times. For example, ``a/{2}b`` will only match ``'a//b'``." msgstr "" -#: ../../howto/regex.rst:251 -msgid "" -"Readers of a reductionist bent may notice that the three other quantifiers " -"can all be expressed using this notation. ``{0,}`` is the same as ``*``, " -"``{1,}`` is equivalent to ``+``, and ``{0,1}`` is the same as ``?``. It's " -"better to use ``*``, ``+``, or ``?`` when you can, simply because they're " -"shorter and easier to read." +msgid "Readers of a reductionist bent may notice that the three other quantifiers can all be expressed using this notation. ``{0,}`` is the same as ``*``, ``{1,}`` is equivalent to ``+``, and ``{0,1}`` is the same as ``?``. It's better to use ``*``, ``+``, or ``?`` when you can, simply because they're shorter and easier to read." msgstr "" -#: ../../howto/regex.rst:259 msgid "Using regular expressions" msgstr "" -#: ../../howto/regex.rst:261 -msgid "" -"Now that we've looked at some simple regular expressions, how do we actually " -"use them in Python? The :mod:`re` module provides an interface to the " -"regular expression engine, allowing you to compile REs into objects and then " -"perform matches with them." +msgid "Now that we've looked at some simple regular expressions, how do we actually use them in Python? The :mod:`re` module provides an interface to the regular expression engine, allowing you to compile REs into objects and then perform matches with them." msgstr "" -#: ../../howto/regex.rst:268 msgid "Compiling regular expressions" msgstr "" -#: ../../howto/regex.rst:270 -msgid "" -"Regular expressions are compiled into pattern objects, which have methods " -"for various operations such as searching for pattern matches or performing " -"string substitutions. ::" +msgid "Regular expressions are compiled into pattern objects, which have methods for various operations such as searching for pattern matches or performing string substitutions. ::" msgstr "" -#: ../../howto/regex.rst:274 msgid "" ">>> import re\n" ">>> p = re.compile('ab*')\n" @@ -504,223 +262,126 @@ msgid "" "re.compile('ab*')" msgstr "" -#: ../../howto/regex.rst:279 -msgid "" -":func:`re.compile` also accepts an optional *flags* argument, used to enable " -"various special features and syntax variations. We'll go over the available " -"settings later, but for now a single example will do::" +msgid ":func:`re.compile` also accepts an optional *flags* argument, used to enable various special features and syntax variations. We'll go over the available settings later, but for now a single example will do::" msgstr "" -#: ../../howto/regex.rst:283 msgid ">>> p = re.compile('ab*', re.IGNORECASE)" msgstr "" -#: ../../howto/regex.rst:285 -msgid "" -"The RE is passed to :func:`re.compile` as a string. REs are handled as " -"strings because regular expressions aren't part of the core Python language, " -"and no special syntax was created for expressing them. (There are " -"applications that don't need REs at all, so there's no need to bloat the " -"language specification by including them.) Instead, the :mod:`re` module is " -"simply a C extension module included with Python, just like " -"the :mod:`socket` or :mod:`zlib` modules." +msgid "The RE is passed to :func:`re.compile` as a string. REs are handled as strings because regular expressions aren't part of the core Python language, and no special syntax was created for expressing them. (There are applications that don't need REs at all, so there's no need to bloat the language specification by including them.) Instead, the :mod:`re` module is simply a C extension module included with Python, just like the :mod:`socket` or :mod:`zlib` modules." msgstr "" -#: ../../howto/regex.rst:292 -msgid "" -"Putting REs in strings keeps the Python language simpler, but has one " -"disadvantage which is the topic of the next section." +msgid "Putting REs in strings keeps the Python language simpler, but has one disadvantage which is the topic of the next section." msgstr "" -#: ../../howto/regex.rst:299 msgid "The backslash plague" msgstr "" -#: ../../howto/regex.rst:301 -msgid "" -"As stated earlier, regular expressions use the backslash character " -"(``'\\'``) to indicate special forms or to allow special characters to be " -"used without invoking their special meaning. This conflicts with Python's " -"usage of the same character for the same purpose in string literals." +msgid "As stated earlier, regular expressions use the backslash character (``'\\'``) to indicate special forms or to allow special characters to be used without invoking their special meaning. This conflicts with Python's usage of the same character for the same purpose in string literals." msgstr "" -#: ../../howto/regex.rst:306 -msgid "" -"Let's say you want to write a RE that matches the string ``\\section``, " -"which might be found in a LaTeX file. To figure out what to write in the " -"program code, start with the desired string to be matched. Next, you must " -"escape any backslashes and other metacharacters by preceding them with a " -"backslash, resulting in the string ``\\\\section``. The resulting string " -"that must be passed to :func:`re.compile` must be ``\\\\section``. However, " -"to express this as a Python string literal, both backslashes must be escaped " -"*again*." +msgid "Let's say you want to write a RE that matches the string ``\\section``, which might be found in a LaTeX file. To figure out what to write in the program code, start with the desired string to be matched. Next, you must escape any backslashes and other metacharacters by preceding them with a backslash, resulting in the string ``\\\\section``. The resulting string that must be passed to :func:`re.compile` must be ``\\\\section``. However, to express this as a Python string literal, both backslashes must be escaped *again*." msgstr "" -#: ../../howto/regex.rst:315 msgid "Characters" msgstr "" -#: ../../howto/regex.rst:315 msgid "Stage" msgstr "" -#: ../../howto/regex.rst:317 msgid "``\\section``" msgstr "" -#: ../../howto/regex.rst:317 msgid "Text string to be matched" msgstr "" -#: ../../howto/regex.rst:319 msgid "``\\\\section``" msgstr "" -#: ../../howto/regex.rst:319 msgid "Escaped backslash for :func:`re.compile`" msgstr "" -#: ../../howto/regex.rst:321 ../../howto/regex.rst:348 msgid "``\"\\\\\\\\section\"``" msgstr "" -#: ../../howto/regex.rst:321 msgid "Escaped backslashes for a string literal" msgstr "" -#: ../../howto/regex.rst:324 -msgid "" -"In short, to match a literal backslash, one has to write ``'\\\\\\\\'`` as " -"the RE string, because the regular expression must be ``\\\\``, and each " -"backslash must be expressed as ``\\\\`` inside a regular Python string " -"literal. In REs that feature backslashes repeatedly, this leads to lots of " -"repeated backslashes and makes the resulting strings difficult to understand." +msgid "In short, to match a literal backslash, one has to write ``'\\\\\\\\'`` as the RE string, because the regular expression must be ``\\\\``, and each backslash must be expressed as ``\\\\`` inside a regular Python string literal. In REs that feature backslashes repeatedly, this leads to lots of repeated backslashes and makes the resulting strings difficult to understand." msgstr "" -#: ../../howto/regex.rst:330 -msgid "" -"The solution is to use Python's raw string notation for regular expressions; " -"backslashes are not handled in any special way in a string literal prefixed " -"with ``'r'``, so ``r\"\\n\"`` is a two-character string containing ``'\\'`` " -"and ``'n'``, while ``\"\\n\"`` is a one-character string containing a " -"newline. Regular expressions will often be written in Python code using this " -"raw string notation." +msgid "The solution is to use Python's raw string notation for regular expressions; backslashes are not handled in any special way in a string literal prefixed with ``'r'``, so ``r\"\\n\"`` is a two-character string containing ``'\\'`` and ``'n'``, while ``\"\\n\"`` is a one-character string containing a newline. Regular expressions will often be written in Python code using this raw string notation." msgstr "" -#: ../../howto/regex.rst:336 -msgid "" -"In addition, special escape sequences that are valid in regular expressions, " -"but not valid as Python string literals, now result in " -"a :exc:`SyntaxWarning` and will eventually become a :exc:`SyntaxError`, " -"which means the sequences will be invalid if raw string notation or escaping " -"the backslashes isn't used." +msgid "In addition, special escape sequences that are valid in regular expressions, but not valid as Python string literals, now result in a :exc:`SyntaxWarning` and will eventually become a :exc:`SyntaxError`, which means the sequences will be invalid if raw string notation or escaping the backslashes isn't used." msgstr "" -#: ../../howto/regex.rst:344 msgid "Regular String" msgstr "" -#: ../../howto/regex.rst:344 msgid "Raw string" msgstr "" -#: ../../howto/regex.rst:346 msgid "``\"ab*\"``" msgstr "" -#: ../../howto/regex.rst:346 msgid "``r\"ab*\"``" msgstr "" -#: ../../howto/regex.rst:348 msgid "``r\"\\\\section\"``" msgstr "" -#: ../../howto/regex.rst:350 msgid "``\"\\\\w+\\\\s+\\\\1\"``" msgstr "" -#: ../../howto/regex.rst:350 msgid "``r\"\\w+\\s+\\1\"``" msgstr "" -#: ../../howto/regex.rst:355 msgid "Performing matches" msgstr "" -#: ../../howto/regex.rst:357 -msgid "" -"Once you have an object representing a compiled regular expression, what do " -"you do with it? Pattern objects have several methods and attributes. Only " -"the most significant ones will be covered here; consult the :mod:`re` docs " -"for a complete listing." +msgid "Once you have an object representing a compiled regular expression, what do you do with it? Pattern objects have several methods and attributes. Only the most significant ones will be covered here; consult the :mod:`re` docs for a complete listing." msgstr "" -#: ../../howto/regex.rst:363 ../../howto/regex.rst:417 -#: ../../howto/regex.rst:1072 msgid "Method/Attribute" msgstr "" -#: ../../howto/regex.rst:363 ../../howto/regex.rst:417 -#: ../../howto/regex.rst:1072 msgid "Purpose" msgstr "" -#: ../../howto/regex.rst:365 msgid "``match()``" msgstr "" -#: ../../howto/regex.rst:365 msgid "Determine if the RE matches at the beginning of the string." msgstr "" -#: ../../howto/regex.rst:368 msgid "``search()``" msgstr "" -#: ../../howto/regex.rst:368 msgid "Scan through a string, looking for any location where this RE matches." msgstr "" -#: ../../howto/regex.rst:371 msgid "``findall()``" msgstr "" -#: ../../howto/regex.rst:371 msgid "Find all substrings where the RE matches, and return them as a list." msgstr "" -#: ../../howto/regex.rst:374 msgid "``finditer()``" msgstr "" -#: ../../howto/regex.rst:374 -msgid "" -"Find all substrings where the RE matches, and return them as " -"an :term:`iterator`." +msgid "Find all substrings where the RE matches, and return them as an :term:`iterator`." msgstr "" -#: ../../howto/regex.rst:378 -msgid "" -":meth:`~re.Pattern.match` and :meth:`~re.Pattern.search` return ``None`` if " -"no match can be found. If they're successful, a :ref:`match object ` instance is returned, containing information about the match: " -"where it starts and ends, the substring it matched, and more." +msgid ":meth:`~re.Pattern.match` and :meth:`~re.Pattern.search` return ``None`` if no match can be found. If they're successful, a :ref:`match object ` instance is returned, containing information about the match: where it starts and ends, the substring it matched, and more." msgstr "" -#: ../../howto/regex.rst:383 -msgid "" -"You can learn about this by interactively experimenting with the :mod:`re` " -"module." +msgid "You can learn about this by interactively experimenting with the :mod:`re` module." msgstr "" -#: ../../howto/regex.rst:386 -msgid "" -"This HOWTO uses the standard Python interpreter for its examples. First, run " -"the Python interpreter, import the :mod:`re` module, and compile a RE::" +msgid "This HOWTO uses the standard Python interpreter for its examples. First, run the Python interpreter, import the :mod:`re` module, and compile a RE::" msgstr "" -#: ../../howto/regex.rst:389 msgid "" ">>> import re\n" ">>> p = re.compile('[a-z]+')\n" @@ -728,80 +389,54 @@ msgid "" "re.compile('[a-z]+')" msgstr "" -#: ../../howto/regex.rst:394 -msgid "" -"Now, you can try matching various strings against the RE ``[a-z]+``. An " -"empty string shouldn't match at all, since ``+`` means 'one or more " -"repetitions'. :meth:`~re.Pattern.match` should return ``None`` in this case, " -"which will cause the interpreter to print no output. You can explicitly " -"print the result of :meth:`!match` to make this clear. ::" +msgid "Now, you can try matching various strings against the RE ``[a-z]+``. An empty string shouldn't match at all, since ``+`` means 'one or more repetitions'. :meth:`~re.Pattern.match` should return ``None`` in this case, which will cause the interpreter to print no output. You can explicitly print the result of :meth:`!match` to make this clear. ::" msgstr "" -#: ../../howto/regex.rst:400 msgid "" ">>> p.match(\"\")\n" ">>> print(p.match(\"\"))\n" "None" msgstr "" -#: ../../howto/regex.rst:404 -msgid "" -"Now, let's try it on a string that it should match, such as ``tempo``. In " -"this case, :meth:`~re.Pattern.match` will return a :ref:`match object `, so you should store the result in a variable for later use. ::" +msgid "Now, let's try it on a string that it should match, such as ``tempo``. In this case, :meth:`~re.Pattern.match` will return a :ref:`match object `, so you should store the result in a variable for later use. ::" msgstr "" -#: ../../howto/regex.rst:408 msgid "" ">>> m = p.match('tempo')\n" ">>> m\n" "" msgstr "" -#: ../../howto/regex.rst:412 -msgid "" -"Now you can query the :ref:`match object ` for information " -"about the matching string. Match object instances also have several methods " -"and attributes; the most important ones are:" +msgid "Now you can query the :ref:`match object ` for information about the matching string. Match object instances also have several methods and attributes; the most important ones are:" msgstr "" -#: ../../howto/regex.rst:419 msgid "``group()``" msgstr "" -#: ../../howto/regex.rst:419 msgid "Return the string matched by the RE" msgstr "" -#: ../../howto/regex.rst:421 msgid "``start()``" msgstr "" -#: ../../howto/regex.rst:421 msgid "Return the starting position of the match" msgstr "" -#: ../../howto/regex.rst:423 msgid "``end()``" msgstr "" -#: ../../howto/regex.rst:423 msgid "Return the ending position of the match" msgstr "" -#: ../../howto/regex.rst:425 msgid "``span()``" msgstr "" -#: ../../howto/regex.rst:425 msgid "Return a tuple containing the (start, end) positions of the match" msgstr "" -#: ../../howto/regex.rst:429 msgid "Trying these methods will soon clarify their meaning::" msgstr "" -#: ../../howto/regex.rst:431 msgid "" ">>> m.group()\n" "'tempo'\n" @@ -811,19 +446,9 @@ msgid "" "(0, 5)" msgstr "" -#: ../../howto/regex.rst:438 -msgid "" -":meth:`~re.Match.group` returns the substring that was matched by the " -"RE. :meth:`~re.Match.start` and :meth:`~re.Match.end` return the starting " -"and ending index of the match. :meth:`~re.Match.span` returns both start and " -"end indexes in a single tuple. Since the :meth:`~re.Pattern.match` method " -"only checks if the RE matches at the start of a string, :meth:`!start` will " -"always be zero. However, the :meth:`~re.Pattern.search` method of patterns " -"scans through the string, so the match may not start at zero in that " -"case. ::" +msgid ":meth:`~re.Match.group` returns the substring that was matched by the RE. :meth:`~re.Match.start` and :meth:`~re.Match.end` return the starting and ending index of the match. :meth:`~re.Match.span` returns both start and end indexes in a single tuple. Since the :meth:`~re.Pattern.match` method only checks if the RE matches at the start of a string, :meth:`!start` will always be zero. However, the :meth:`~re.Pattern.search` method of patterns scans through the string, so the match may not start at zero in that case. ::" msgstr "" -#: ../../howto/regex.rst:446 msgid "" ">>> print(p.match('::: message'))\n" "None\n" @@ -835,14 +460,9 @@ msgid "" "(4, 11)" msgstr "" -#: ../../howto/regex.rst:455 -msgid "" -"In actual programs, the most common style is to store the :ref:`match object " -"` in a variable, and then check if it was ``None``. This " -"usually looks like::" +msgid "In actual programs, the most common style is to store the :ref:`match object ` in a variable, and then check if it was ``None``. This usually looks like::" msgstr "" -#: ../../howto/regex.rst:459 msgid "" "p = re.compile( ... )\n" "m = p.match( 'string goes here' )\n" @@ -852,37 +472,21 @@ msgid "" " print('No match')" msgstr "" -#: ../../howto/regex.rst:466 -msgid "" -"Two pattern methods return all of the matches for a " -"pattern. :meth:`~re.Pattern.findall` returns a list of matching strings::" +msgid "Two pattern methods return all of the matches for a pattern. :meth:`~re.Pattern.findall` returns a list of matching strings::" msgstr "" -#: ../../howto/regex.rst:469 msgid "" ">>> p = re.compile(r'\\d+')\n" ">>> p.findall('12 drummers drumming, 11 pipers piping, 10 lords a-leaping')\n" "['12', '11', '10']" msgstr "" -#: ../../howto/regex.rst:473 -msgid "" -"The ``r`` prefix, making the literal a raw string literal, is needed in this " -"example because escape sequences in a normal \"cooked\" string literal that " -"are not recognized by Python, as opposed to regular expressions, now result " -"in a :exc:`SyntaxWarning` and will eventually become a :exc:`SyntaxError`. " -"See :ref:`the-backslash-plague`." +msgid "The ``r`` prefix, making the literal a raw string literal, is needed in this example because escape sequences in a normal \"cooked\" string literal that are not recognized by Python, as opposed to regular expressions, now result in a :exc:`SyntaxWarning` and will eventually become a :exc:`SyntaxError`. See :ref:`the-backslash-plague`." msgstr "" -#: ../../howto/regex.rst:479 -msgid "" -":meth:`~re.Pattern.findall` has to create the entire list before it can be " -"returned as the result. The :meth:`~re.Pattern.finditer` method returns a " -"sequence of :ref:`match object ` instances as " -"an :term:`iterator`::" +msgid ":meth:`~re.Pattern.findall` has to create the entire list before it can be returned as the result. The :meth:`~re.Pattern.finditer` method returns a sequence of :ref:`match object ` instances as an :term:`iterator`::" msgstr "" -#: ../../howto/regex.rst:483 msgid "" ">>> iterator = p.finditer('12 drummers drumming, 11 ... 10 ...')\n" ">>> iterator\n" @@ -895,21 +499,12 @@ msgid "" "(29, 31)" msgstr "" -#: ../../howto/regex.rst:495 msgid "Module-level functions" msgstr "" -#: ../../howto/regex.rst:497 -msgid "" -"You don't have to create a pattern object and call its methods; " -"the :mod:`re` module also provides top-level functions " -"called :func:`~re.match`, :func:`~re.search`, :func:`~re.findall`, :func:`~re.sub`, " -"and so forth. These functions take the same arguments as the corresponding " -"pattern method with the RE string added as the first argument, and still " -"return either ``None`` or a :ref:`match object ` instance. ::" +msgid "You don't have to create a pattern object and call its methods; the :mod:`re` module also provides top-level functions called :func:`~re.match`, :func:`~re.search`, :func:`~re.findall`, :func:`~re.sub`, and so forth. These functions take the same arguments as the corresponding pattern method with the RE string added as the first argument, and still return either ``None`` or a :ref:`match object ` instance. ::" msgstr "" -#: ../../howto/regex.rst:504 msgid "" ">>> print(re.match(r'From\\s+', 'Fromage amk'))\n" "None\n" @@ -917,193 +512,90 @@ msgid "" "" msgstr "" -#: ../../howto/regex.rst:509 -msgid "" -"Under the hood, these functions simply create a pattern object for you and " -"call the appropriate method on it. They also store the compiled object in a " -"cache, so future calls using the same RE won't need to parse the pattern " -"again and again." +msgid "Under the hood, these functions simply create a pattern object for you and call the appropriate method on it. They also store the compiled object in a cache, so future calls using the same RE won't need to parse the pattern again and again." msgstr "" -#: ../../howto/regex.rst:514 -msgid "" -"Should you use these module-level functions, or should you get the pattern " -"and call its methods yourself? If you're accessing a regex within a loop, " -"pre-compiling it will save a few function calls. Outside of loops, there's " -"not much difference thanks to the internal cache." +msgid "Should you use these module-level functions, or should you get the pattern and call its methods yourself? If you're accessing a regex within a loop, pre-compiling it will save a few function calls. Outside of loops, there's not much difference thanks to the internal cache." msgstr "" -#: ../../howto/regex.rst:522 msgid "Compilation flags" msgstr "" -#: ../../howto/regex.rst:526 -msgid "" -"Compilation flags let you modify some aspects of how regular expressions " -"work. Flags are available in the :mod:`re` module under two names, a long " -"name such as :const:`IGNORECASE` and a short, one-letter form such " -"as :const:`I`. (If you're familiar with Perl's pattern modifiers, the one-" -"letter forms use the same letters; the short form of :const:`re.VERBOSE` " -"is :const:`re.X`, for example.) Multiple flags can be specified by bitwise " -"OR-ing them; ``re.I | re.M`` sets both the :const:`I` and :const:`M` flags, " -"for example." +msgid "Compilation flags let you modify some aspects of how regular expressions work. Flags are available in the :mod:`re` module under two names, a long name such as :const:`IGNORECASE` and a short, one-letter form such as :const:`I`. (If you're familiar with Perl's pattern modifiers, the one-letter forms use the same letters; the short form of :const:`re.VERBOSE` is :const:`re.X`, for example.) Multiple flags can be specified by bitwise OR-ing them; ``re.I | re.M`` sets both the :const:`I` and :const:`M` flags, for example." msgstr "" -#: ../../howto/regex.rst:534 -msgid "" -"Here's a table of the available flags, followed by a more detailed " -"explanation of each one." +msgid "Here's a table of the available flags, followed by a more detailed explanation of each one." msgstr "" -#: ../../howto/regex.rst:538 msgid "Flag" msgstr "" -#: ../../howto/regex.rst:538 msgid "Meaning" msgstr "" -#: ../../howto/regex.rst:540 msgid ":const:`ASCII`, :const:`A`" msgstr "" -#: ../../howto/regex.rst:540 -msgid "" -"Makes several escapes like ``\\w``, ``\\b``, ``\\s`` and ``\\d`` match only " -"on ASCII characters with the respective property." +msgid "Makes several escapes like ``\\w``, ``\\b``, ``\\s`` and ``\\d`` match only on ASCII characters with the respective property." msgstr "" -#: ../../howto/regex.rst:544 msgid ":const:`DOTALL`, :const:`S`" msgstr "" -#: ../../howto/regex.rst:544 msgid "Make ``.`` match any character, including newlines." msgstr "" -#: ../../howto/regex.rst:547 msgid ":const:`IGNORECASE`, :const:`I`" msgstr "" -#: ../../howto/regex.rst:547 msgid "Do case-insensitive matches." msgstr "" -#: ../../howto/regex.rst:549 msgid ":const:`LOCALE`, :const:`L`" msgstr "" -#: ../../howto/regex.rst:549 msgid "Do a locale-aware match." msgstr "" -#: ../../howto/regex.rst:551 msgid ":const:`MULTILINE`, :const:`M`" msgstr "" -#: ../../howto/regex.rst:551 msgid "Multi-line matching, affecting ``^`` and ``$``." msgstr "" -#: ../../howto/regex.rst:554 msgid ":const:`VERBOSE`, :const:`X` (for 'extended')" msgstr "" -#: ../../howto/regex.rst:554 -msgid "" -"Enable verbose REs, which can be organized more cleanly and understandably." +msgid "Enable verbose REs, which can be organized more cleanly and understandably." msgstr "" -#: ../../howto/regex.rst:563 -msgid "" -"Perform case-insensitive matching; character class and literal strings will " -"match letters by ignoring case. For example, ``[A-Z]`` will match lowercase " -"letters, too. Full Unicode matching also works unless the :const:`ASCII` " -"flag is used to disable non-ASCII matches. When the Unicode patterns ``[a-" -"z]`` or ``[A-Z]`` are used in combination with the :const:`IGNORECASE` flag, " -"they will match the 52 ASCII letters and 4 additional non-ASCII letters: 'İ' " -"(U+0130, Latin capital letter I with dot above), 'ı' (U+0131, Latin small " -"letter dotless i), 'ſ' (U+017F, Latin small letter long s) and 'K' (U+212A, " -"Kelvin sign). ``Spam`` will match ``'Spam'``, ``'spam'``, ``'spAM'``, or " -"``'ſpam'`` (the latter is matched only in Unicode mode). This lowercasing " -"doesn't take the current locale into account; it will if you also set " -"the :const:`LOCALE` flag." -msgstr "" - -#: ../../howto/regex.rst:581 -msgid "" -"Make ``\\w``, ``\\W``, ``\\b``, ``\\B`` and case-insensitive matching " -"dependent on the current locale instead of the Unicode database." +msgid "Perform case-insensitive matching; character class and literal strings will match letters by ignoring case. For example, ``[A-Z]`` will match lowercase letters, too. Full Unicode matching also works unless the :const:`ASCII` flag is used to disable non-ASCII matches. When the Unicode patterns ``[a-z]`` or ``[A-Z]`` are used in combination with the :const:`IGNORECASE` flag, they will match the 52 ASCII letters and 4 additional non-ASCII letters: 'İ' (U+0130, Latin capital letter I with dot above), 'ı' (U+0131, Latin small letter dotless i), 'ſ' (U+017F, Latin small letter long s) and 'K' (U+212A, Kelvin sign). ``Spam`` will match ``'Spam'``, ``'spam'``, ``'spAM'``, or ``'ſpam'`` (the latter is matched only in Unicode mode). This lowercasing doesn't take the current locale into account; it will if you also set the :const:`LOCALE` flag." msgstr "" -#: ../../howto/regex.rst:584 -msgid "" -"Locales are a feature of the C library intended to help in writing programs " -"that take account of language differences. For example, if you're " -"processing encoded French text, you'd want to be able to write ``\\w+`` to " -"match words, but ``\\w`` only matches the character class ``[A-Za-z]`` in " -"bytes patterns; it won't match bytes corresponding to ``é`` or ``ç``. If " -"your system is configured properly and a French locale is selected, certain " -"C functions will tell the program that the byte corresponding to ``é`` " -"should also be considered a letter. Setting the :const:`LOCALE` flag when " -"compiling a regular expression will cause the resulting compiled object to " -"use these C functions for ``\\w``; this is slower, but also enables ``\\w+`` " -"to match French words as you'd expect. The use of this flag is discouraged " -"in Python 3 as the locale mechanism is very unreliable, it only handles one " -"\"culture\" at a time, and it only works with 8-bit locales. Unicode " -"matching is already enabled by default in Python 3 for Unicode (str) " -"patterns, and it is able to handle different locales/languages." -msgstr "" - -#: ../../howto/regex.rst:606 -msgid "" -"(``^`` and ``$`` haven't been explained yet; they'll be introduced in " -"section :ref:`more-metacharacters`.)" +msgid "Make ``\\w``, ``\\W``, ``\\b``, ``\\B`` and case-insensitive matching dependent on the current locale instead of the Unicode database." msgstr "" -#: ../../howto/regex.rst:609 -msgid "" -"Usually ``^`` matches only at the beginning of the string, and ``$`` matches " -"only at the end of the string and immediately before the newline (if any) at " -"the end of the string. When this flag is specified, ``^`` matches at the " -"beginning of the string and at the beginning of each line within the string, " -"immediately following each newline. Similarly, the ``$`` metacharacter " -"matches either at the end of the string and at the end of each line " -"(immediately preceding each newline)." +msgid "Locales are a feature of the C library intended to help in writing programs that take account of language differences. For example, if you're processing encoded French text, you'd want to be able to write ``\\w+`` to match words, but ``\\w`` only matches the character class ``[A-Za-z]`` in bytes patterns; it won't match bytes corresponding to ``é`` or ``ç``. If your system is configured properly and a French locale is selected, certain C functions will tell the program that the byte corresponding to ``é`` should also be considered a letter. Setting the :const:`LOCALE` flag when compiling a regular expression will cause the resulting compiled object to use these C functions for ``\\w``; this is slower, but also enables ``\\w+`` to match French words as you'd expect. The use of this flag is discouraged in Python 3 as the locale mechanism is very unreliable, it only handles one \"culture\" at a time, and it only works with 8-bit locales. Unicode matching is already enabled by default in Python 3 for Unicode (str) patterns, and it is able to handle different locales/languages." msgstr "" -#: ../../howto/regex.rst:622 -msgid "" -"Makes the ``'.'`` special character match any character at all, including a " -"newline; without this flag, ``'.'`` will match anything *except* a newline." +msgid "(``^`` and ``$`` haven't been explained yet; they'll be introduced in section :ref:`more-metacharacters`.)" msgstr "" -#: ../../howto/regex.rst:630 -msgid "" -"Make ``\\w``, ``\\W``, ``\\b``, ``\\B``, ``\\s`` and ``\\S`` perform ASCII-" -"only matching instead of full Unicode matching. This is only meaningful for " -"Unicode patterns, and is ignored for byte patterns." +msgid "Usually ``^`` matches only at the beginning of the string, and ``$`` matches only at the end of the string and immediately before the newline (if any) at the end of the string. When this flag is specified, ``^`` matches at the beginning of the string and at the beginning of each line within the string, immediately following each newline. Similarly, the ``$`` metacharacter matches either at the end of the string and at the end of each line (immediately preceding each newline)." msgstr "" -#: ../../howto/regex.rst:639 -msgid "" -"This flag allows you to write regular expressions that are more readable by " -"granting you more flexibility in how you can format them. When this flag " -"has been specified, whitespace within the RE string is ignored, except when " -"the whitespace is in a character class or preceded by an unescaped " -"backslash; this lets you organize and indent the RE more clearly. This flag " -"also lets you put comments within a RE that will be ignored by the engine; " -"comments are marked by a ``'#'`` that's neither in a character class nor " -"preceded by an unescaped backslash." +msgid "Makes the ``'.'`` special character match any character at all, including a newline; without this flag, ``'.'`` will match anything *except* a newline." msgstr "" -#: ../../howto/regex.rst:648 -msgid "" -"For example, here's a RE that uses :const:`re.VERBOSE`; see how much easier " -"it is to read? ::" +msgid "Make ``\\w``, ``\\W``, ``\\b``, ``\\B``, ``\\s`` and ``\\S`` perform ASCII-only matching instead of full Unicode matching. This is only meaningful for Unicode patterns, and is ignored for byte patterns." +msgstr "" + +msgid "This flag allows you to write regular expressions that are more readable by granting you more flexibility in how you can format them. When this flag has been specified, whitespace within the RE string is ignored, except when the whitespace is in a character class or preceded by an unescaped backslash; this lets you organize and indent the RE more clearly. This flag also lets you put comments within a RE that will be ignored by the engine; comments are marked by a ``'#'`` that's neither in a character class nor preceded by an unescaped backslash." +msgstr "" + +msgid "For example, here's a RE that uses :const:`re.VERBOSE`; see how much easier it is to read? ::" msgstr "" -#: ../../howto/regex.rst:651 msgid "" "charref = re.compile(r\"\"\"\n" " &[#] # Start of a numeric entity reference\n" @@ -1116,96 +608,51 @@ msgid "" "\"\"\", re.VERBOSE)" msgstr "" -#: ../../howto/regex.rst:661 msgid "Without the verbose setting, the RE would look like this::" msgstr "" -#: ../../howto/regex.rst:663 msgid "" "charref = re.compile(\"&#(0[0-7]+\"\n" " \"|[0-9]+\"\n" " \"|x[0-9a-fA-F]+);\")" msgstr "" -#: ../../howto/regex.rst:667 -msgid "" -"In the above example, Python's automatic concatenation of string literals " -"has been used to break up the RE into smaller pieces, but it's still more " -"difficult to understand than the version using :const:`re.VERBOSE`." +msgid "In the above example, Python's automatic concatenation of string literals has been used to break up the RE into smaller pieces, but it's still more difficult to understand than the version using :const:`re.VERBOSE`." msgstr "" -#: ../../howto/regex.rst:673 msgid "More pattern power" msgstr "" -#: ../../howto/regex.rst:675 -msgid "" -"So far we've only covered a part of the features of regular expressions. In " -"this section, we'll cover some new metacharacters, and how to use groups to " -"retrieve portions of the text that was matched." +msgid "So far we've only covered a part of the features of regular expressions. In this section, we'll cover some new metacharacters, and how to use groups to retrieve portions of the text that was matched." msgstr "" -#: ../../howto/regex.rst:683 msgid "More metacharacters" msgstr "" -#: ../../howto/regex.rst:685 -msgid "" -"There are some metacharacters that we haven't covered yet. Most of them " -"will be covered in this section." +msgid "There are some metacharacters that we haven't covered yet. Most of them will be covered in this section." msgstr "" -#: ../../howto/regex.rst:688 -msgid "" -"Some of the remaining metacharacters to be discussed are :dfn:`zero-width " -"assertions`. They don't cause the engine to advance through the string; " -"instead, they consume no characters at all, and simply succeed or fail. For " -"example, ``\\b`` is an assertion that the current position is located at a " -"word boundary; the position isn't changed by the ``\\b`` at all. This means " -"that zero-width assertions should never be repeated, because if they match " -"once at a given location, they can obviously be matched an infinite number " -"of times." +msgid "Some of the remaining metacharacters to be discussed are :dfn:`zero-width assertions`. They don't cause the engine to advance through the string; instead, they consume no characters at all, and simply succeed or fail. For example, ``\\b`` is an assertion that the current position is located at a word boundary; the position isn't changed by the ``\\b`` at all. This means that zero-width assertions should never be repeated, because if they match once at a given location, they can obviously be matched an infinite number of times." msgstr "" -#: ../../howto/regex.rst:696 msgid "``|``" msgstr "" -#: ../../howto/regex.rst:697 -msgid "" -"Alternation, or the \"or\" operator. If *A* and *B* are regular " -"expressions, ``A|B`` will match any string that matches either *A* or *B*. " -"``|`` has very low precedence in order to make it work reasonably when " -"you're alternating multi-character strings. ``Crow|Servo`` will match either " -"``'Crow'`` or ``'Servo'``, not ``'Cro'``, a ``'w'`` or an ``'S'``, and " -"``'ervo'``." +msgid "Alternation, or the \"or\" operator. If *A* and *B* are regular expressions, ``A|B`` will match any string that matches either *A* or *B*. ``|`` has very low precedence in order to make it work reasonably when you're alternating multi-character strings. ``Crow|Servo`` will match either ``'Crow'`` or ``'Servo'``, not ``'Cro'``, a ``'w'`` or an ``'S'``, and ``'ervo'``." msgstr "" -#: ../../howto/regex.rst:703 -msgid "" -"To match a literal ``'|'``, use ``\\|``, or enclose it inside a character " -"class, as in ``[|]``." +msgid "To match a literal ``'|'``, use ``\\|``, or enclose it inside a character class, as in ``[|]``." msgstr "" -#: ../../howto/regex.rst:706 msgid "``^``" msgstr "" -#: ../../howto/regex.rst:707 -msgid "" -"Matches at the beginning of lines. Unless the :const:`MULTILINE` flag has " -"been set, this will only match at the beginning of the string. " -"In :const:`MULTILINE` mode, this also matches immediately after each newline " -"within the string." +msgid "Matches at the beginning of lines. Unless the :const:`MULTILINE` flag has been set, this will only match at the beginning of the string. In :const:`MULTILINE` mode, this also matches immediately after each newline within the string." msgstr "" -#: ../../howto/regex.rst:711 -msgid "" -"For example, if you wish to match the word ``From`` only at the beginning of " -"a line, the RE to use is ``^From``. ::" +msgid "For example, if you wish to match the word ``From`` only at the beginning of a line, the RE to use is ``^From``. ::" msgstr "" -#: ../../howto/regex.rst:714 msgid "" ">>> print(re.search('^From', 'From Here to Eternity'))\n" "\n" @@ -1213,21 +660,15 @@ msgid "" "None" msgstr "" -#: ../../howto/regex.rst:719 msgid "To match a literal ``'^'``, use ``\\^``." msgstr "" -#: ../../howto/regex.rst:721 msgid "``$``" msgstr "" -#: ../../howto/regex.rst:722 -msgid "" -"Matches at the end of a line, which is defined as either the end of the " -"string, or any location followed by a newline character. ::" +msgid "Matches at the end of a line, which is defined as either the end of the string, or any location followed by a newline character. ::" msgstr "" -#: ../../howto/regex.rst:725 msgid "" ">>> print(re.search('}$', '{block}'))\n" "\n" @@ -1237,60 +678,36 @@ msgid "" "" msgstr "" -#: ../../howto/regex.rst:732 -msgid "" -"To match a literal ``'$'``, use ``\\$`` or enclose it inside a character " -"class, as in ``[$]``." +msgid "To match a literal ``'$'``, use ``\\$`` or enclose it inside a character class, as in ``[$]``." msgstr "" -#: ../../howto/regex.rst:735 msgid "``\\A``" msgstr "" -#: ../../howto/regex.rst:736 -msgid "" -"Matches only at the start of the string. When not in :const:`MULTILINE` " -"mode, ``\\A`` and ``^`` are effectively the same. In :const:`MULTILINE` " -"mode, they're different: ``\\A`` still matches only at the beginning of the " -"string, but ``^`` may match at any location inside the string that follows a " -"newline character." +msgid "Matches only at the start of the string. When not in :const:`MULTILINE` mode, ``\\A`` and ``^`` are effectively the same. In :const:`MULTILINE` mode, they're different: ``\\A`` still matches only at the beginning of the string, but ``^`` may match at any location inside the string that follows a newline character." msgstr "" -#: ../../howto/regex.rst:741 msgid "``\\z``" msgstr "" -#: ../../howto/regex.rst:742 msgid "Matches only at the end of the string." msgstr "" -#: ../../howto/regex.rst:744 msgid "``\\Z``" msgstr "" -#: ../../howto/regex.rst:745 msgid "The same as ``\\z``. For compatibility with old Python versions." msgstr "" -#: ../../howto/regex.rst:747 msgid "``\\b``" msgstr "" -#: ../../howto/regex.rst:748 -msgid "" -"Word boundary. This is a zero-width assertion that matches only at the " -"beginning or end of a word. A word is defined as a sequence of alphanumeric " -"characters, so the end of a word is indicated by whitespace or a non-" -"alphanumeric character." +msgid "Word boundary. This is a zero-width assertion that matches only at the beginning or end of a word. A word is defined as a sequence of alphanumeric characters, so the end of a word is indicated by whitespace or a non-alphanumeric character." msgstr "" -#: ../../howto/regex.rst:753 -msgid "" -"The following example matches ``class`` only when it's a complete word; it " -"won't match when it's contained inside another word. ::" +msgid "The following example matches ``class`` only when it's a complete word; it won't match when it's contained inside another word. ::" msgstr "" -#: ../../howto/regex.rst:756 msgid "" ">>> p = re.compile(r'\\bclass\\b')\n" ">>> print(p.search('no class at all'))\n" @@ -1301,18 +718,9 @@ msgid "" "None" msgstr "" -#: ../../howto/regex.rst:764 -msgid "" -"There are two subtleties you should remember when using this special " -"sequence. First, this is the worst collision between Python's string " -"literals and regular expression sequences. In Python's string literals, " -"``\\b`` is the backspace character, ASCII value 8. If you're not using raw " -"strings, then Python will convert the ``\\b`` to a backspace, and your RE " -"won't match as you expect it to. The following example looks the same as our " -"previous RE, but omits the ``'r'`` in front of the RE string. ::" +msgid "There are two subtleties you should remember when using this special sequence. First, this is the worst collision between Python's string literals and regular expression sequences. In Python's string literals, ``\\b`` is the backspace character, ASCII value 8. If you're not using raw strings, then Python will convert the ``\\b`` to a backspace, and your RE won't match as you expect it to. The following example looks the same as our previous RE, but omits the ``'r'`` in front of the RE string. ::" msgstr "" -#: ../../howto/regex.rst:772 msgid "" ">>> p = re.compile('\\bclass\\b')\n" ">>> print(p.search('no class at all'))\n" @@ -1321,37 +729,21 @@ msgid "" "" msgstr "" -#: ../../howto/regex.rst:778 -msgid "" -"Second, inside a character class, where there's no use for this assertion, " -"``\\b`` represents the backspace character, for compatibility with Python's " -"string literals." +msgid "Second, inside a character class, where there's no use for this assertion, ``\\b`` represents the backspace character, for compatibility with Python's string literals." msgstr "" -#: ../../howto/regex.rst:782 msgid "``\\B``" msgstr "" -#: ../../howto/regex.rst:783 -msgid "" -"Another zero-width assertion, this is the opposite of ``\\b``, only matching " -"when the current position is not at a word boundary." +msgid "Another zero-width assertion, this is the opposite of ``\\b``, only matching when the current position is not at a word boundary." msgstr "" -#: ../../howto/regex.rst:788 msgid "Grouping" msgstr "" -#: ../../howto/regex.rst:790 -msgid "" -"Frequently you need to obtain more information than just whether the RE " -"matched or not. Regular expressions are often used to dissect strings by " -"writing a RE divided into several subgroups which match different components " -"of interest. For example, an RFC-822 header line is divided into a header " -"name and a value, separated by a ``':'``, like this:" +msgid "Frequently you need to obtain more information than just whether the RE matched or not. Regular expressions are often used to dissect strings by writing a RE divided into several subgroups which match different components of interest. For example, an RFC-822 header line is divided into a header name and a value, separated by a ``':'``, like this:" msgstr "" -#: ../../howto/regex.rst:796 msgid "" "From: author@example.com\n" "User-Agent: Thunderbird 1.5.0.9 (X11/20061227)\n" @@ -1359,43 +751,21 @@ msgid "" "To: editor@example.com" msgstr "" -#: ../../howto/regex.rst:803 -msgid "" -"This can be handled by writing a regular expression which matches an entire " -"header line, and has one group which matches the header name, and another " -"group which matches the header's value." +msgid "This can be handled by writing a regular expression which matches an entire header line, and has one group which matches the header name, and another group which matches the header's value." msgstr "" -#: ../../howto/regex.rst:807 -msgid "" -"Groups are marked by the ``'('``, ``')'`` metacharacters. ``'('`` and " -"``')'`` have much the same meaning as they do in mathematical expressions; " -"they group together the expressions contained inside them, and you can " -"repeat the contents of a group with a quantifier, such as ``*``, ``+``, ``?" -"``, or ``{m,n}``. For example, ``(ab)*`` will match zero or more " -"repetitions of ``ab``. ::" +msgid "Groups are marked by the ``'('``, ``')'`` metacharacters. ``'('`` and ``')'`` have much the same meaning as they do in mathematical expressions; they group together the expressions contained inside them, and you can repeat the contents of a group with a quantifier, such as ``*``, ``+``, ``?``, or ``{m,n}``. For example, ``(ab)*`` will match zero or more repetitions of ``ab``. ::" msgstr "" -#: ../../howto/regex.rst:814 msgid "" ">>> p = re.compile('(ab)*')\n" ">>> print(p.match('ababababab').span())\n" "(0, 10)" msgstr "" -#: ../../howto/regex.rst:818 -msgid "" -"Groups indicated with ``'('``, ``')'`` also capture the starting and ending " -"index of the text that they match; this can be retrieved by passing an " -"argument " -"to :meth:`~re.Match.group`, :meth:`~re.Match.start`, :meth:`~re.Match.end`, " -"and :meth:`~re.Match.span`. Groups are numbered starting with 0. Group 0 " -"is always present; it's the whole RE, so :ref:`match object ` " -"methods all have group 0 as their default argument. Later we'll see how to " -"express groups that don't capture the span of text that they match. ::" +msgid "Groups indicated with ``'('``, ``')'`` also capture the starting and ending index of the text that they match; this can be retrieved by passing an argument to :meth:`~re.Match.group`, :meth:`~re.Match.start`, :meth:`~re.Match.end`, and :meth:`~re.Match.span`. Groups are numbered starting with 0. Group 0 is always present; it's the whole RE, so :ref:`match object ` methods all have group 0 as their default argument. Later we'll see how to express groups that don't capture the span of text that they match. ::" msgstr "" -#: ../../howto/regex.rst:827 msgid "" ">>> p = re.compile('(a)b')\n" ">>> m = p.match('ab')\n" @@ -1405,14 +775,9 @@ msgid "" "'ab'" msgstr "" -#: ../../howto/regex.rst:834 -msgid "" -"Subgroups are numbered from left to right, from 1 upward. Groups can be " -"nested; to determine the number, just count the opening parenthesis " -"characters, going from left to right. ::" +msgid "Subgroups are numbered from left to right, from 1 upward. Groups can be nested; to determine the number, just count the opening parenthesis characters, going from left to right. ::" msgstr "" -#: ../../howto/regex.rst:838 msgid "" ">>> p = re.compile('(a(b)c)d')\n" ">>> m = p.match('abcd')\n" @@ -1424,118 +789,58 @@ msgid "" "'b'" msgstr "" -#: ../../howto/regex.rst:847 -msgid "" -":meth:`~re.Match.group` can be passed multiple group numbers at a time, in " -"which case it will return a tuple containing the corresponding values for " -"those groups. ::" +msgid ":meth:`~re.Match.group` can be passed multiple group numbers at a time, in which case it will return a tuple containing the corresponding values for those groups. ::" msgstr "" -#: ../../howto/regex.rst:850 msgid "" ">>> m.group(2,1,2)\n" "('b', 'abc', 'b')" msgstr "" -#: ../../howto/regex.rst:853 -msgid "" -"The :meth:`~re.Match.groups` method returns a tuple containing the strings " -"for all the subgroups, from 1 up to however many there are. ::" +msgid "The :meth:`~re.Match.groups` method returns a tuple containing the strings for all the subgroups, from 1 up to however many there are. ::" msgstr "" -#: ../../howto/regex.rst:856 msgid "" ">>> m.groups()\n" "('abc', 'b')" msgstr "" -#: ../../howto/regex.rst:859 -msgid "" -"Backreferences in a pattern allow you to specify that the contents of an " -"earlier capturing group must also be found at the current location in the " -"string. For example, ``\\1`` will succeed if the exact contents of group 1 " -"can be found at the current position, and fails otherwise. Remember that " -"Python's string literals also use a backslash followed by numbers to allow " -"including arbitrary characters in a string, so be sure to use a raw string " -"when incorporating backreferences in a RE." +msgid "Backreferences in a pattern allow you to specify that the contents of an earlier capturing group must also be found at the current location in the string. For example, ``\\1`` will succeed if the exact contents of group 1 can be found at the current position, and fails otherwise. Remember that Python's string literals also use a backslash followed by numbers to allow including arbitrary characters in a string, so be sure to use a raw string when incorporating backreferences in a RE." msgstr "" -#: ../../howto/regex.rst:867 msgid "For example, the following RE detects doubled words in a string. ::" msgstr "" -#: ../../howto/regex.rst:869 msgid "" ">>> p = re.compile(r'\\b(\\w+)\\s+\\1\\b')\n" ">>> p.search('Paris in the the spring').group()\n" "'the the'" msgstr "" -#: ../../howto/regex.rst:873 -msgid "" -"Backreferences like this aren't often useful for just searching through a " -"string --- there are few text formats which repeat data in this way --- but " -"you'll soon find out that they're *very* useful when performing string " -"substitutions." +msgid "Backreferences like this aren't often useful for just searching through a string --- there are few text formats which repeat data in this way --- but you'll soon find out that they're *very* useful when performing string substitutions." msgstr "" -#: ../../howto/regex.rst:879 msgid "Non-capturing and named groups" msgstr "" -#: ../../howto/regex.rst:881 -msgid "" -"Elaborate REs may use many groups, both to capture substrings of interest, " -"and to group and structure the RE itself. In complex REs, it becomes " -"difficult to keep track of the group numbers. There are two features which " -"help with this problem. Both of them use a common syntax for regular " -"expression extensions, so we'll look at that first." +msgid "Elaborate REs may use many groups, both to capture substrings of interest, and to group and structure the RE itself. In complex REs, it becomes difficult to keep track of the group numbers. There are two features which help with this problem. Both of them use a common syntax for regular expression extensions, so we'll look at that first." msgstr "" -#: ../../howto/regex.rst:887 -msgid "" -"Perl 5 is well known for its powerful additions to standard regular " -"expressions. For these new features the Perl developers couldn't choose new " -"single-keystroke metacharacters or new special sequences beginning with " -"``\\`` without making Perl's regular expressions confusingly different from " -"standard REs. If they chose ``&`` as a new metacharacter, for example, old " -"expressions would be assuming that ``&`` was a regular character and " -"wouldn't have escaped it by writing ``\\&`` or ``[&]``." +msgid "Perl 5 is well known for its powerful additions to standard regular expressions. For these new features the Perl developers couldn't choose new single-keystroke metacharacters or new special sequences beginning with ``\\`` without making Perl's regular expressions confusingly different from standard REs. If they chose ``&`` as a new metacharacter, for example, old expressions would be assuming that ``&`` was a regular character and wouldn't have escaped it by writing ``\\&`` or ``[&]``." msgstr "" -#: ../../howto/regex.rst:894 -msgid "" -"The solution chosen by the Perl developers was to use ``(?...)`` as the " -"extension syntax. ``?`` immediately after a parenthesis was a syntax error " -"because the ``?`` would have nothing to repeat, so this didn't introduce any " -"compatibility problems. The characters immediately after the ``?`` " -"indicate what extension is being used, so ``(?=foo)`` is one thing (a " -"positive lookahead assertion) and ``(?:foo)`` is something else (a non-" -"capturing group containing the subexpression ``foo``)." +msgid "The solution chosen by the Perl developers was to use ``(?...)`` as the extension syntax. ``?`` immediately after a parenthesis was a syntax error because the ``?`` would have nothing to repeat, so this didn't introduce any compatibility problems. The characters immediately after the ``?`` indicate what extension is being used, so ``(?=foo)`` is one thing (a positive lookahead assertion) and ``(?:foo)`` is something else (a non-capturing group containing the subexpression ``foo``)." msgstr "" -#: ../../howto/regex.rst:902 -msgid "" -"Python supports several of Perl's extensions and adds an extension syntax to " -"Perl's extension syntax. If the first character after the question mark is " -"a ``P``, you know that it's an extension that's specific to Python." +msgid "Python supports several of Perl's extensions and adds an extension syntax to Perl's extension syntax. If the first character after the question mark is a ``P``, you know that it's an extension that's specific to Python." msgstr "" -#: ../../howto/regex.rst:907 -msgid "" -"Now that we've looked at the general extension syntax, we can return to the " -"features that simplify working with groups in complex REs." +msgid "Now that we've looked at the general extension syntax, we can return to the features that simplify working with groups in complex REs." msgstr "" -#: ../../howto/regex.rst:910 -msgid "" -"Sometimes you'll want to use a group to denote a part of a regular " -"expression, but aren't interested in retrieving the group's contents. You " -"can make this fact explicit by using a non-capturing group: ``(?:...)``, " -"where you can replace the ``...`` with any other regular expression. ::" +msgid "Sometimes you'll want to use a group to denote a part of a regular expression, but aren't interested in retrieving the group's contents. You can make this fact explicit by using a non-capturing group: ``(?:...)``, where you can replace the ``...`` with any other regular expression. ::" msgstr "" -#: ../../howto/regex.rst:915 msgid "" ">>> m = re.match(\"([abc])+\", \"abc\")\n" ">>> m.groups()\n" @@ -1545,38 +850,15 @@ msgid "" "()" msgstr "" -#: ../../howto/regex.rst:922 -msgid "" -"Except for the fact that you can't retrieve the contents of what the group " -"matched, a non-capturing group behaves exactly the same as a capturing " -"group; you can put anything inside it, repeat it with a repetition " -"metacharacter such as ``*``, and nest it within other groups (capturing or " -"non-capturing). ``(?:...)`` is particularly useful when modifying an " -"existing pattern, since you can add new groups without changing how all the " -"other groups are numbered. It should be mentioned that there's no " -"performance difference in searching between capturing and non-capturing " -"groups; neither form is any faster than the other." -msgstr "" - -#: ../../howto/regex.rst:931 -msgid "" -"A more significant feature is named groups: instead of referring to them by " -"numbers, groups can be referenced by a name." +msgid "Except for the fact that you can't retrieve the contents of what the group matched, a non-capturing group behaves exactly the same as a capturing group; you can put anything inside it, repeat it with a repetition metacharacter such as ``*``, and nest it within other groups (capturing or non-capturing). ``(?:...)`` is particularly useful when modifying an existing pattern, since you can add new groups without changing how all the other groups are numbered. It should be mentioned that there's no performance difference in searching between capturing and non-capturing groups; neither form is any faster than the other." msgstr "" -#: ../../howto/regex.rst:934 -msgid "" -"The syntax for a named group is one of the Python-specific extensions: ``(?" -"P...)``. *name* is, obviously, the name of the group. Named groups " -"behave exactly like capturing groups, and additionally associate a name with " -"a group. The :ref:`match object ` methods that deal with " -"capturing groups all accept either integers that refer to the group by " -"number or strings that contain the desired group's name. Named groups are " -"still given numbers, so you can retrieve information about a group in two " -"ways::" +msgid "A more significant feature is named groups: instead of referring to them by numbers, groups can be referenced by a name." +msgstr "" + +msgid "The syntax for a named group is one of the Python-specific extensions: ``(?P...)``. *name* is, obviously, the name of the group. Named groups behave exactly like capturing groups, and additionally associate a name with a group. The :ref:`match object ` methods that deal with capturing groups all accept either integers that refer to the group by number or strings that contain the desired group's name. Named groups are still given numbers, so you can retrieve information about a group in two ways::" msgstr "" -#: ../../howto/regex.rst:942 msgid "" ">>> p = re.compile(r'(?P\\b\\w+\\b)')\n" ">>> m = p.search( '(((( Lots of punctuation )))' )\n" @@ -1586,27 +868,18 @@ msgid "" "'Lots'" msgstr "" -#: ../../howto/regex.rst:949 -msgid "" -"Additionally, you can retrieve named groups as a dictionary " -"with :meth:`~re.Match.groupdict`::" +msgid "Additionally, you can retrieve named groups as a dictionary with :meth:`~re.Match.groupdict`::" msgstr "" -#: ../../howto/regex.rst:952 msgid "" ">>> m = re.match(r'(?P\\w+) (?P\\w+)', 'Jane Doe')\n" ">>> m.groupdict()\n" "{'first': 'Jane', 'last': 'Doe'}" msgstr "" -#: ../../howto/regex.rst:956 -msgid "" -"Named groups are handy because they let you use easily remembered names, " -"instead of having to remember numbers. Here's an example RE from " -"the :mod:`imaplib` module::" +msgid "Named groups are handy because they let you use easily remembered names, instead of having to remember numbers. Here's an example RE from the :mod:`imaplib` module::" msgstr "" -#: ../../howto/regex.rst:960 msgid "" "InternalDate = re.compile(r'INTERNALDATE \"'\n" " r'(?P[ 123][0-9])-(?P[A-Z][a-z][a-z])-'\n" @@ -1616,242 +889,123 @@ msgid "" " r'\"')" msgstr "" -#: ../../howto/regex.rst:967 -msgid "" -"It's obviously much easier to retrieve ``m.group('zonem')``, instead of " -"having to remember to retrieve group 9." +msgid "It's obviously much easier to retrieve ``m.group('zonem')``, instead of having to remember to retrieve group 9." msgstr "" -#: ../../howto/regex.rst:970 -msgid "" -"The syntax for backreferences in an expression such as ``(...)\\1`` refers " -"to the number of the group. There's naturally a variant that uses the group " -"name instead of the number. This is another Python extension: ``(?P=name)`` " -"indicates that the contents of the group called *name* should again be " -"matched at the current point. The regular expression for finding doubled " -"words, ``\\b(\\w+)\\s+\\1\\b`` can also be written as ``\\b(?P\\w+)\\s+" -"(?P=word)\\b``::" +msgid "The syntax for backreferences in an expression such as ``(...)\\1`` refers to the number of the group. There's naturally a variant that uses the group name instead of the number. This is another Python extension: ``(?P=name)`` indicates that the contents of the group called *name* should again be matched at the current point. The regular expression for finding doubled words, ``\\b(\\w+)\\s+\\1\\b`` can also be written as ``\\b(?P\\w+)\\s+(?P=word)\\b``::" msgstr "" -#: ../../howto/regex.rst:977 msgid "" ">>> p = re.compile(r'\\b(?P\\w+)\\s+(?P=word)\\b')\n" ">>> p.search('Paris in the the spring').group()\n" "'the the'" msgstr "" -#: ../../howto/regex.rst:983 msgid "Lookahead assertions" msgstr "" -#: ../../howto/regex.rst:985 -msgid "" -"Another zero-width assertion is the lookahead assertion. Lookahead " -"assertions are available in both positive and negative form, and look like " -"this:" +msgid "Another zero-width assertion is the lookahead assertion. Lookahead assertions are available in both positive and negative form, and look like this:" msgstr "" -#: ../../howto/regex.rst:988 msgid "``(?=...)``" msgstr "" -#: ../../howto/regex.rst:989 -msgid "" -"Positive lookahead assertion. This succeeds if the contained regular " -"expression, represented here by ``...``, successfully matches at the current " -"location, and fails otherwise. But, once the contained expression has been " -"tried, the matching engine doesn't advance at all; the rest of the pattern " -"is tried right where the assertion started." +msgid "Positive lookahead assertion. This succeeds if the contained regular expression, represented here by ``...``, successfully matches at the current location, and fails otherwise. But, once the contained expression has been tried, the matching engine doesn't advance at all; the rest of the pattern is tried right where the assertion started." msgstr "" -#: ../../howto/regex.rst:995 msgid "``(?!...)``" msgstr "" -#: ../../howto/regex.rst:996 -msgid "" -"Negative lookahead assertion. This is the opposite of the positive " -"assertion; it succeeds if the contained expression *doesn't* match at the " -"current position in the string." +msgid "Negative lookahead assertion. This is the opposite of the positive assertion; it succeeds if the contained expression *doesn't* match at the current position in the string." msgstr "" -#: ../../howto/regex.rst:1000 -msgid "" -"To make this concrete, let's look at a case where a lookahead is useful. " -"Consider a simple pattern to match a filename and split it apart into a base " -"name and an extension, separated by a ``.``. For example, in ``news.rc``, " -"``news`` is the base name, and ``rc`` is the filename's extension." +msgid "To make this concrete, let's look at a case where a lookahead is useful. Consider a simple pattern to match a filename and split it apart into a base name and an extension, separated by a ``.``. For example, in ``news.rc``, ``news`` is the base name, and ``rc`` is the filename's extension." msgstr "" -#: ../../howto/regex.rst:1005 msgid "The pattern to match this is quite simple:" msgstr "" -#: ../../howto/regex.rst:1007 msgid "``.*[.].*$``" msgstr "" -#: ../../howto/regex.rst:1009 -msgid "" -"Notice that the ``.`` needs to be treated specially because it's a " -"metacharacter, so it's inside a character class to only match that specific " -"character. Also notice the trailing ``$``; this is added to ensure that all " -"the rest of the string must be included in the extension. This regular " -"expression matches ``foo.bar`` and ``autoexec.bat`` and ``sendmail.cf`` and " -"``printers.conf``." +msgid "Notice that the ``.`` needs to be treated specially because it's a metacharacter, so it's inside a character class to only match that specific character. Also notice the trailing ``$``; this is added to ensure that all the rest of the string must be included in the extension. This regular expression matches ``foo.bar`` and ``autoexec.bat`` and ``sendmail.cf`` and ``printers.conf``." msgstr "" -#: ../../howto/regex.rst:1016 -msgid "" -"Now, consider complicating the problem a bit; what if you want to match " -"filenames where the extension is not ``bat``? Some incorrect attempts:" +msgid "Now, consider complicating the problem a bit; what if you want to match filenames where the extension is not ``bat``? Some incorrect attempts:" msgstr "" -#: ../../howto/regex.rst:1019 msgid "``.*[.][^b].*$``" msgstr "" -#: ../../howto/regex.rst:1021 -msgid "" -"The first attempt above tries to exclude ``bat`` by requiring that the first " -"character of the extension is not a ``b``. This is wrong, because the " -"pattern also doesn't match ``foo.bar``." +msgid "The first attempt above tries to exclude ``bat`` by requiring that the first character of the extension is not a ``b``. This is wrong, because the pattern also doesn't match ``foo.bar``." msgstr "" -#: ../../howto/regex.rst:1025 msgid "``.*[.]([^b]..|.[^a].|..[^t])$``" msgstr "" -#: ../../howto/regex.rst:1027 -msgid "" -"The expression gets messier when you try to patch up the first solution by " -"requiring one of the following cases to match: the first character of the " -"extension isn't ``b``; the second character isn't ``a``; or the third " -"character isn't ``t``. This accepts ``foo.bar`` and rejects " -"``autoexec.bat``, but it requires a three-letter extension and won't accept " -"a filename with a two-letter extension such as ``sendmail.cf``. We'll " -"complicate the pattern again in an effort to fix it." +msgid "The expression gets messier when you try to patch up the first solution by requiring one of the following cases to match: the first character of the extension isn't ``b``; the second character isn't ``a``; or the third character isn't ``t``. This accepts ``foo.bar`` and rejects ``autoexec.bat``, but it requires a three-letter extension and won't accept a filename with a two-letter extension such as ``sendmail.cf``. We'll complicate the pattern again in an effort to fix it." msgstr "" -#: ../../howto/regex.rst:1035 msgid "``.*[.]([^b].?.?|.[^a]?.?|..?[^t]?)$``" msgstr "" -#: ../../howto/regex.rst:1037 -msgid "" -"In the third attempt, the second and third letters are all made optional in " -"order to allow matching extensions shorter than three characters, such as " -"``sendmail.cf``." +msgid "In the third attempt, the second and third letters are all made optional in order to allow matching extensions shorter than three characters, such as ``sendmail.cf``." msgstr "" -#: ../../howto/regex.rst:1041 -msgid "" -"The pattern's getting really complicated now, which makes it hard to read " -"and understand. Worse, if the problem changes and you want to exclude both " -"``bat`` and ``exe`` as extensions, the pattern would get even more " -"complicated and confusing." +msgid "The pattern's getting really complicated now, which makes it hard to read and understand. Worse, if the problem changes and you want to exclude both ``bat`` and ``exe`` as extensions, the pattern would get even more complicated and confusing." msgstr "" -#: ../../howto/regex.rst:1046 msgid "A negative lookahead cuts through all this confusion:" msgstr "" -#: ../../howto/regex.rst:1048 msgid "``.*[.](?!bat$)[^.]*$``" msgstr "" -#: ../../howto/regex.rst:1050 -msgid "" -"The negative lookahead means: if the expression ``bat`` doesn't match at " -"this point, try the rest of the pattern; if ``bat$`` does match, the whole " -"pattern will fail. The trailing ``$`` is required to ensure that something " -"like ``sample.batch``, where the extension only starts with ``bat``, will be " -"allowed. The ``[^.]*`` makes sure that the pattern works when there are " -"multiple dots in the filename." +msgid "The negative lookahead means: if the expression ``bat`` doesn't match at this point, try the rest of the pattern; if ``bat$`` does match, the whole pattern will fail. The trailing ``$`` is required to ensure that something like ``sample.batch``, where the extension only starts with ``bat``, will be allowed. The ``[^.]*`` makes sure that the pattern works when there are multiple dots in the filename." msgstr "" -#: ../../howto/regex.rst:1057 -msgid "" -"Excluding another filename extension is now easy; simply add it as an " -"alternative inside the assertion. The following pattern excludes filenames " -"that end in either ``bat`` or ``exe``:" +msgid "Excluding another filename extension is now easy; simply add it as an alternative inside the assertion. The following pattern excludes filenames that end in either ``bat`` or ``exe``:" msgstr "" -#: ../../howto/regex.rst:1061 msgid "``.*[.](?!bat$|exe$)[^.]*$``" msgstr "" -#: ../../howto/regex.rst:1065 msgid "Modifying strings" msgstr "" -#: ../../howto/regex.rst:1067 -msgid "" -"Up to this point, we've simply performed searches against a static string. " -"Regular expressions are also commonly used to modify strings in various " -"ways, using the following pattern methods:" +msgid "Up to this point, we've simply performed searches against a static string. Regular expressions are also commonly used to modify strings in various ways, using the following pattern methods:" msgstr "" -#: ../../howto/regex.rst:1074 msgid "``split()``" msgstr "" -#: ../../howto/regex.rst:1074 msgid "Split the string into a list, splitting it wherever the RE matches" msgstr "" -#: ../../howto/regex.rst:1077 msgid "``sub()``" msgstr "" -#: ../../howto/regex.rst:1077 -msgid "" -"Find all substrings where the RE matches, and replace them with a different " -"string" +msgid "Find all substrings where the RE matches, and replace them with a different string" msgstr "" -#: ../../howto/regex.rst:1080 msgid "``subn()``" msgstr "" -#: ../../howto/regex.rst:1080 -msgid "" -"Does the same thing as :meth:`!sub`, but returns the new string and the " -"number of replacements" +msgid "Does the same thing as :meth:`!sub`, but returns the new string and the number of replacements" msgstr "" -#: ../../howto/regex.rst:1087 msgid "Splitting strings" msgstr "" -#: ../../howto/regex.rst:1089 -msgid "" -"The :meth:`~re.Pattern.split` method of a pattern splits a string apart " -"wherever the RE matches, returning a list of the pieces. It's similar to " -"the :meth:`~str.split` method of strings but provides much more generality " -"in the delimiters that you can split by; string :meth:`!split` only supports " -"splitting by whitespace or by a fixed string. As you'd expect, there's a " -"module-level :func:`re.split` function, too." +msgid "The :meth:`~re.Pattern.split` method of a pattern splits a string apart wherever the RE matches, returning a list of the pieces. It's similar to the :meth:`~str.split` method of strings but provides much more generality in the delimiters that you can split by; string :meth:`!split` only supports splitting by whitespace or by a fixed string. As you'd expect, there's a module-level :func:`re.split` function, too." msgstr "" -#: ../../howto/regex.rst:1100 -msgid "" -"Split *string* by the matches of the regular expression. If capturing " -"parentheses are used in the RE, then their contents will also be returned as " -"part of the resulting list. If *maxsplit* is nonzero, at most *maxsplit* " -"splits are performed." +msgid "Split *string* by the matches of the regular expression. If capturing parentheses are used in the RE, then their contents will also be returned as part of the resulting list. If *maxsplit* is nonzero, at most *maxsplit* splits are performed." msgstr "" -#: ../../howto/regex.rst:1105 -msgid "" -"You can limit the number of splits made, by passing a value for *maxsplit*. " -"When *maxsplit* is nonzero, at most *maxsplit* splits will be made, and the " -"remainder of the string is returned as the final element of the list. In " -"the following example, the delimiter is any sequence of non-alphanumeric " -"characters. ::" +msgid "You can limit the number of splits made, by passing a value for *maxsplit*. When *maxsplit* is nonzero, at most *maxsplit* splits will be made, and the remainder of the string is returned as the final element of the list. In the following example, the delimiter is any sequence of non-alphanumeric characters. ::" msgstr "" -#: ../../howto/regex.rst:1111 msgid "" ">>> p = re.compile(r'\\W+')\n" ">>> p.split('This is a test, short and sweet, of split().')\n" @@ -1860,15 +1014,9 @@ msgid "" "['This', 'is', 'a', 'test, short and sweet, of split().']" msgstr "" -#: ../../howto/regex.rst:1117 -msgid "" -"Sometimes you're not only interested in what the text between delimiters is, " -"but also need to know what the delimiter was. If capturing parentheses are " -"used in the RE, then their values are also returned as part of the list. " -"Compare the following calls::" +msgid "Sometimes you're not only interested in what the text between delimiters is, but also need to know what the delimiter was. If capturing parentheses are used in the RE, then their values are also returned as part of the list. Compare the following calls::" msgstr "" -#: ../../howto/regex.rst:1122 msgid "" ">>> p = re.compile(r'\\W+')\n" ">>> p2 = re.compile(r'(\\W+)')\n" @@ -1878,13 +1026,9 @@ msgid "" "['This', '... ', 'is', ' ', 'a', ' ', 'test', '.', '']" msgstr "" -#: ../../howto/regex.rst:1129 -msgid "" -"The module-level function :func:`re.split` adds the RE to be used as the " -"first argument, but is otherwise the same. ::" +msgid "The module-level function :func:`re.split` adds the RE to be used as the first argument, but is otherwise the same. ::" msgstr "" -#: ../../howto/regex.rst:1132 msgid "" ">>> re.split(r'[\\W]+', 'Words, words, words.')\n" "['Words', 'words', 'words', '']\n" @@ -1894,39 +1038,21 @@ msgid "" "['Words', 'words, words.']" msgstr "" -#: ../../howto/regex.rst:1141 msgid "Search and replace" msgstr "" -#: ../../howto/regex.rst:1143 -msgid "" -"Another common task is to find all the matches for a pattern, and replace " -"them with a different string. The :meth:`~re.Pattern.sub` method takes a " -"replacement value, which can be either a string or a function, and the " -"string to be processed." +msgid "Another common task is to find all the matches for a pattern, and replace them with a different string. The :meth:`~re.Pattern.sub` method takes a replacement value, which can be either a string or a function, and the string to be processed." msgstr "" -#: ../../howto/regex.rst:1150 -msgid "" -"Returns the string obtained by replacing the leftmost non-overlapping " -"occurrences of the RE in *string* by the replacement *replacement*. If the " -"pattern isn't found, *string* is returned unchanged." +msgid "Returns the string obtained by replacing the leftmost non-overlapping occurrences of the RE in *string* by the replacement *replacement*. If the pattern isn't found, *string* is returned unchanged." msgstr "" -#: ../../howto/regex.rst:1154 -msgid "" -"The optional argument *count* is the maximum number of pattern occurrences " -"to be replaced; *count* must be a non-negative integer. The default value " -"of 0 means to replace all occurrences." +msgid "The optional argument *count* is the maximum number of pattern occurrences to be replaced; *count* must be a non-negative integer. The default value of 0 means to replace all occurrences." msgstr "" -#: ../../howto/regex.rst:1158 -msgid "" -"Here's a simple example of using the :meth:`~re.Pattern.sub` method. It " -"replaces colour names with the word ``colour``::" +msgid "Here's a simple example of using the :meth:`~re.Pattern.sub` method. It replaces colour names with the word ``colour``::" msgstr "" -#: ../../howto/regex.rst:1161 msgid "" ">>> p = re.compile('(blue|white|red)')\n" ">>> p.sub('colour', 'blue socks and red shoes')\n" @@ -1935,14 +1061,9 @@ msgid "" "'colour socks and red shoes'" msgstr "" -#: ../../howto/regex.rst:1167 -msgid "" -"The :meth:`~re.Pattern.subn` method does the same work, but returns a 2-" -"tuple containing the new string value and the number of replacements that " -"were performed::" +msgid "The :meth:`~re.Pattern.subn` method does the same work, but returns a 2-tuple containing the new string value and the number of replacements that were performed::" msgstr "" -#: ../../howto/regex.rst:1170 msgid "" ">>> p = re.compile('(blue|white|red)')\n" ">>> p.subn('colour', 'blue socks and red shoes')\n" @@ -1951,56 +1072,30 @@ msgid "" "('no colours at all', 0)" msgstr "" -#: ../../howto/regex.rst:1176 -msgid "" -"Empty matches are replaced only when they're not adjacent to a previous " -"empty match. ::" +msgid "Empty matches are replaced only when they're not adjacent to a previous empty match. ::" msgstr "" -#: ../../howto/regex.rst:1179 msgid "" ">>> p = re.compile('x*')\n" ">>> p.sub('-', 'abxd')\n" "'-a-b--d-'" msgstr "" -#: ../../howto/regex.rst:1183 -msgid "" -"If *replacement* is a string, any backslash escapes in it are processed. " -"That is, ``\\n`` is converted to a single newline character, ``\\r`` is " -"converted to a carriage return, and so forth. Unknown escapes such as " -"``\\&`` are left alone. Backreferences, such as ``\\6``, are replaced with " -"the substring matched by the corresponding group in the RE. This lets you " -"incorporate portions of the original text in the resulting replacement " -"string." +msgid "If *replacement* is a string, any backslash escapes in it are processed. That is, ``\\n`` is converted to a single newline character, ``\\r`` is converted to a carriage return, and so forth. Unknown escapes such as ``\\&`` are left alone. Backreferences, such as ``\\6``, are replaced with the substring matched by the corresponding group in the RE. This lets you incorporate portions of the original text in the resulting replacement string." msgstr "" -#: ../../howto/regex.rst:1190 -msgid "" -"This example matches the word ``section`` followed by a string enclosed in " -"``{``, ``}``, and changes ``section`` to ``subsection``::" +msgid "This example matches the word ``section`` followed by a string enclosed in ``{``, ``}``, and changes ``section`` to ``subsection``::" msgstr "" -#: ../../howto/regex.rst:1193 msgid "" ">>> p = re.compile('section{ ( [^}]* ) }', re.VERBOSE)\n" ">>> p.sub(r'subsection{\\1}','section{First} section{second}')\n" "'subsection{First} subsection{second}'" msgstr "" -#: ../../howto/regex.rst:1197 -msgid "" -"There's also a syntax for referring to named groups as defined by the ``(?" -"P...)`` syntax. ``\\g`` will use the substring matched by the " -"group named ``name``, and ``\\g`` uses the corresponding group " -"number. ``\\g<2>`` is therefore equivalent to ``\\2``, but isn't ambiguous " -"in a replacement string such as ``\\g<2>0``. (``\\20`` would be interpreted " -"as a reference to group 20, not a reference to group 2 followed by the " -"literal character ``'0'``.) The following substitutions are all equivalent, " -"but use all three variations of the replacement string. ::" +msgid "There's also a syntax for referring to named groups as defined by the ``(?P...)`` syntax. ``\\g`` will use the substring matched by the group named ``name``, and ``\\g`` uses the corresponding group number. ``\\g<2>`` is therefore equivalent to ``\\2``, but isn't ambiguous in a replacement string such as ``\\g<2>0``. (``\\20`` would be interpreted as a reference to group 20, not a reference to group 2 followed by the literal character ``'0'``.) The following substitutions are all equivalent, but use all three variations of the replacement string. ::" msgstr "" -#: ../../howto/regex.rst:1206 msgid "" ">>> p = re.compile('section{ (?P [^}]* ) }', re.VERBOSE)\n" ">>> p.sub(r'subsection{\\1}','section{First}')\n" @@ -2011,22 +1106,12 @@ msgid "" "'subsection{First}'" msgstr "" -#: ../../howto/regex.rst:1214 -msgid "" -"*replacement* can also be a function, which gives you even more control. If " -"*replacement* is a function, the function is called for every non-" -"overlapping occurrence of *pattern*. On each call, the function is passed " -"a :ref:`match object ` argument for the match and can use " -"this information to compute the desired replacement string and return it." +msgid "*replacement* can also be a function, which gives you even more control. If *replacement* is a function, the function is called for every non-overlapping occurrence of *pattern*. On each call, the function is passed a :ref:`match object ` argument for the match and can use this information to compute the desired replacement string and return it." msgstr "" -#: ../../howto/regex.rst:1220 -msgid "" -"In the following example, the replacement function translates decimals into " -"hexadecimal::" +msgid "In the following example, the replacement function translates decimals into hexadecimal::" msgstr "" -#: ../../howto/regex.rst:1223 msgid "" ">>> def hexrepl(match):\n" "... \"Return the hex string for a decimal number\"\n" @@ -2038,87 +1123,36 @@ msgid "" "'Call 0xffd2 for printing, 0xc000 for user code.'" msgstr "" -#: ../../howto/regex.rst:1232 -msgid "" -"When using the module-level :func:`re.sub` function, the pattern is passed " -"as the first argument. The pattern may be provided as an object or as a " -"string; if you need to specify regular expression flags, you must either use " -"a pattern object as the first parameter, or use embedded modifiers in the " -"pattern string, e.g. ``sub(\"(?i)b+\", \"x\", \"bbbb BBBB\")`` returns ``'x " -"x'``." +msgid "When using the module-level :func:`re.sub` function, the pattern is passed as the first argument. The pattern may be provided as an object or as a string; if you need to specify regular expression flags, you must either use a pattern object as the first parameter, or use embedded modifiers in the pattern string, e.g. ``sub(\"(?i)b+\", \"x\", \"bbbb BBBB\")`` returns ``'x x'``." msgstr "" -#: ../../howto/regex.rst:1240 msgid "Common problems" msgstr "" -#: ../../howto/regex.rst:1242 -msgid "" -"Regular expressions are a powerful tool for some applications, but in some " -"ways their behaviour isn't intuitive and at times they don't behave the way " -"you may expect them to. This section will point out some of the most common " -"pitfalls." +msgid "Regular expressions are a powerful tool for some applications, but in some ways their behaviour isn't intuitive and at times they don't behave the way you may expect them to. This section will point out some of the most common pitfalls." msgstr "" -#: ../../howto/regex.rst:1248 msgid "Use string methods" msgstr "" -#: ../../howto/regex.rst:1250 -msgid "" -"Sometimes using the :mod:`re` module is a mistake. If you're matching a " -"fixed string, or a single character class, and you're not using " -"any :mod:`re` features such as the :const:`~re.IGNORECASE` flag, then the " -"full power of regular expressions may not be required. Strings have several " -"methods for performing operations with fixed strings and they're usually " -"much faster, because the implementation is a single small C loop that's been " -"optimized for the purpose, instead of the large, more generalized regular " -"expression engine." +msgid "Sometimes using the :mod:`re` module is a mistake. If you're matching a fixed string, or a single character class, and you're not using any :mod:`re` features such as the :const:`~re.IGNORECASE` flag, then the full power of regular expressions may not be required. Strings have several methods for performing operations with fixed strings and they're usually much faster, because the implementation is a single small C loop that's been optimized for the purpose, instead of the large, more generalized regular expression engine." msgstr "" -#: ../../howto/regex.rst:1258 -msgid "" -"One example might be replacing a single fixed string with another one; for " -"example, you might replace ``word`` with ``deed``. :func:`re.sub` seems " -"like the function to use for this, but consider the :meth:`~str.replace` " -"method. Note that :meth:`!replace` will also replace ``word`` inside words, " -"turning ``swordfish`` into ``sdeedfish``, but the naive RE ``word`` would " -"have done that, too. (To avoid performing the substitution on parts of " -"words, the pattern would have to be ``\\bword\\b``, in order to require that " -"``word`` have a word boundary on either side. This takes the job " -"beyond :meth:`!replace`'s abilities.)" -msgstr "" - -#: ../../howto/regex.rst:1267 -msgid "" -"Another common task is deleting every occurrence of a single character from " -"a string or replacing it with another single character. You might do this " -"with something like ``re.sub('\\n', ' ', S)``, but :meth:`~str.translate` is " -"capable of doing both tasks and will be faster than any regular expression " -"operation can be." +msgid "One example might be replacing a single fixed string with another one; for example, you might replace ``word`` with ``deed``. :func:`re.sub` seems like the function to use for this, but consider the :meth:`~str.replace` method. Note that :meth:`!replace` will also replace ``word`` inside words, turning ``swordfish`` into ``sdeedfish``, but the naive RE ``word`` would have done that, too. (To avoid performing the substitution on parts of words, the pattern would have to be ``\\bword\\b``, in order to require that ``word`` have a word boundary on either side. This takes the job beyond :meth:`!replace`'s abilities.)" msgstr "" -#: ../../howto/regex.rst:1273 -msgid "" -"In short, before turning to the :mod:`re` module, consider whether your " -"problem can be solved with a faster and simpler string method." +msgid "Another common task is deleting every occurrence of a single character from a string or replacing it with another single character. You might do this with something like ``re.sub('\\n', ' ', S)``, but :meth:`~str.translate` is capable of doing both tasks and will be faster than any regular expression operation can be." +msgstr "" + +msgid "In short, before turning to the :mod:`re` module, consider whether your problem can be solved with a faster and simpler string method." msgstr "" -#: ../../howto/regex.rst:1278 msgid "match() versus search()" msgstr "" -#: ../../howto/regex.rst:1280 -msgid "" -"The :func:`~re.match` function only checks if the RE matches at the " -"beginning of the string while :func:`~re.search` will scan forward through " -"the string for a match. It's important to keep this distinction in mind. " -"Remember, :func:`!match` will only report a successful match which will " -"start at 0; if the match wouldn't start at zero, :func:`!match` will *not* " -"report it. ::" +msgid "The :func:`~re.match` function only checks if the RE matches at the beginning of the string while :func:`~re.search` will scan forward through the string for a match. It's important to keep this distinction in mind. Remember, :func:`!match` will only report a successful match which will start at 0; if the match wouldn't start at zero, :func:`!match` will *not* report it. ::" msgstr "" -#: ../../howto/regex.rst:1286 msgid "" ">>> print(re.match('super', 'superstition').span())\n" "(0, 5)\n" @@ -2126,13 +1160,9 @@ msgid "" "None" msgstr "" -#: ../../howto/regex.rst:1291 -msgid "" -"On the other hand, :func:`~re.search` will scan forward through the string, " -"reporting the first match it finds. ::" +msgid "On the other hand, :func:`~re.search` will scan forward through the string, reporting the first match it finds. ::" msgstr "" -#: ../../howto/regex.rst:1294 msgid "" ">>> print(re.search('super', 'superstition').span())\n" "(0, 5)\n" @@ -2140,40 +1170,18 @@ msgid "" "(2, 7)" msgstr "" -#: ../../howto/regex.rst:1299 -msgid "" -"Sometimes you'll be tempted to keep using :func:`re.match`, and just add " -"``.*`` to the front of your RE. Resist this temptation and " -"use :func:`re.search` instead. The regular expression compiler does some " -"analysis of REs in order to speed up the process of looking for a match. " -"One such analysis figures out what the first character of a match must be; " -"for example, a pattern starting with ``Crow`` must match starting with a " -"``'C'``. The analysis lets the engine quickly scan through the string " -"looking for the starting character, only trying the full match if a ``'C'`` " -"is found." -msgstr "" - -#: ../../howto/regex.rst:1308 -msgid "" -"Adding ``.*`` defeats this optimization, requiring scanning to the end of " -"the string and then backtracking to find a match for the rest of the RE. " -"Use :func:`re.search` instead." +msgid "Sometimes you'll be tempted to keep using :func:`re.match`, and just add ``.*`` to the front of your RE. Resist this temptation and use :func:`re.search` instead. The regular expression compiler does some analysis of REs in order to speed up the process of looking for a match. One such analysis figures out what the first character of a match must be; for example, a pattern starting with ``Crow`` must match starting with a ``'C'``. The analysis lets the engine quickly scan through the string looking for the starting character, only trying the full match if a ``'C'`` is found." +msgstr "" + +msgid "Adding ``.*`` defeats this optimization, requiring scanning to the end of the string and then backtracking to find a match for the rest of the RE. Use :func:`re.search` instead." msgstr "" -#: ../../howto/regex.rst:1314 msgid "Greedy versus non-greedy" msgstr "" -#: ../../howto/regex.rst:1316 -msgid "" -"When repeating a regular expression, as in ``a*``, the resulting action is " -"to consume as much of the pattern as possible. This fact often bites you " -"when you're trying to match a pair of balanced delimiters, such as the angle " -"brackets surrounding an HTML tag. The naive pattern for matching a single " -"HTML tag doesn't work because of the greedy nature of ``.*``. ::" +msgid "When repeating a regular expression, as in ``a*``, the resulting action is to consume as much of the pattern as possible. This fact often bites you when you're trying to match a pair of balanced delimiters, such as the angle brackets surrounding an HTML tag. The naive pattern for matching a single HTML tag doesn't work because of the greedy nature of ``.*``. ::" msgstr "" -#: ../../howto/regex.rst:1322 msgid "" ">>> s = 'Title'\n" ">>> len(s)\n" @@ -2184,72 +1192,32 @@ msgid "" "Title" msgstr "" -#: ../../howto/regex.rst:1330 -msgid "" -"The RE matches the ``'<'`` in ``''``, and the ``.*`` consumes the rest " -"of the string. There's still more left in the RE, though, and the ``>`` " -"can't match at the end of the string, so the regular expression engine has " -"to backtrack character by character until it finds a match for the ``>``. " -"The final match extends from the ``'<'`` in ``''`` to the ``'>'`` in " -"``''``, which isn't what you want." +msgid "The RE matches the ``'<'`` in ``''``, and the ``.*`` consumes the rest of the string. There's still more left in the RE, though, and the ``>`` can't match at the end of the string, so the regular expression engine has to backtrack character by character until it finds a match for the ``>``. The final match extends from the ``'<'`` in ``''`` to the ``'>'`` in ``''``, which isn't what you want." msgstr "" -#: ../../howto/regex.rst:1337 -msgid "" -"In this case, the solution is to use the non-greedy quantifiers ``*?``, ``+?" -"``, ``??``, or ``{m,n}?``, which match as *little* text as possible. In the " -"above example, the ``'>'`` is tried immediately after the first ``'<'`` " -"matches, and when it fails, the engine advances a character at a time, " -"retrying the ``'>'`` at every step. This produces just the right result::" +msgid "In this case, the solution is to use the non-greedy quantifiers ``*?``, ``+?``, ``??``, or ``{m,n}?``, which match as *little* text as possible. In the above example, the ``'>'`` is tried immediately after the first ``'<'`` matches, and when it fails, the engine advances a character at a time, retrying the ``'>'`` at every step. This produces just the right result::" msgstr "" -#: ../../howto/regex.rst:1343 msgid "" ">>> print(re.match('<.*?>', s).group())\n" "" msgstr "" -#: ../../howto/regex.rst:1346 -msgid "" -"(Note that parsing HTML or XML with regular expressions is painful. Quick-" -"and-dirty patterns will handle common cases, but HTML and XML have special " -"cases that will break the obvious regular expression; by the time you've " -"written a regular expression that handles all of the possible cases, the " -"patterns will be *very* complicated. Use an HTML or XML parser module for " -"such tasks.)" +msgid "(Note that parsing HTML or XML with regular expressions is painful. Quick-and-dirty patterns will handle common cases, but HTML and XML have special cases that will break the obvious regular expression; by the time you've written a regular expression that handles all of the possible cases, the patterns will be *very* complicated. Use an HTML or XML parser module for such tasks.)" msgstr "" -#: ../../howto/regex.rst:1354 msgid "Using re.VERBOSE" msgstr "" -#: ../../howto/regex.rst:1356 -msgid "" -"By now you've probably noticed that regular expressions are a very compact " -"notation, but they're not terribly readable. REs of moderate complexity can " -"become lengthy collections of backslashes, parentheses, and metacharacters, " -"making them difficult to read and understand." +msgid "By now you've probably noticed that regular expressions are a very compact notation, but they're not terribly readable. REs of moderate complexity can become lengthy collections of backslashes, parentheses, and metacharacters, making them difficult to read and understand." msgstr "" -#: ../../howto/regex.rst:1361 -msgid "" -"For such REs, specifying the :const:`re.VERBOSE` flag when compiling the " -"regular expression can be helpful, because it allows you to format the " -"regular expression more clearly." +msgid "For such REs, specifying the :const:`re.VERBOSE` flag when compiling the regular expression can be helpful, because it allows you to format the regular expression more clearly." msgstr "" -#: ../../howto/regex.rst:1365 -msgid "" -"The ``re.VERBOSE`` flag has several effects. Whitespace in the regular " -"expression that *isn't* inside a character class is ignored. This means " -"that an expression such as ``dog | cat`` is equivalent to the less readable " -"``dog|cat``, but ``[a b]`` will still match the characters ``'a'``, ``'b'``, " -"or a space. In addition, you can also put comments inside a RE; comments " -"extend from a ``#`` character to the next newline. When used with triple-" -"quoted strings, this enables REs to be formatted more neatly::" +msgid "The ``re.VERBOSE`` flag has several effects. Whitespace in the regular expression that *isn't* inside a character class is ignored. This means that an expression such as ``dog | cat`` is equivalent to the less readable ``dog|cat``, but ``[a b]`` will still match the characters ``'a'``, ``'b'``, or a space. In addition, you can also put comments inside a RE; comments extend from a ``#`` character to the next newline. When used with triple-quoted strings, this enables REs to be formatted more neatly::" msgstr "" -#: ../../howto/regex.rst:1373 msgid "" "pat = re.compile(r\"\"\"\n" " \\s* # Skip leading whitespace\n" @@ -2261,33 +1229,17 @@ msgid "" "\"\"\", re.VERBOSE)" msgstr "" -#: ../../howto/regex.rst:1382 msgid "This is far more readable than::" msgstr "" -#: ../../howto/regex.rst:1384 msgid "pat = re.compile(r\"\\s*(?P
[^:]+)\\s*:(?P.*?)\\s*$\")" msgstr "" -#: ../../howto/regex.rst:1388 msgid "Feedback" msgstr "" -#: ../../howto/regex.rst:1390 -msgid "" -"Regular expressions are a complicated topic. Did this document help you " -"understand them? Were there parts that were unclear, or problems you " -"encountered that weren't covered here? If so, please send suggestions for " -"improvements to the :ref:`issue tracker `." +msgid "Regular expressions are a complicated topic. Did this document help you understand them? Were there parts that were unclear, or problems you encountered that weren't covered here? If so, please send suggestions for improvements to the :ref:`issue tracker `." msgstr "" -#: ../../howto/regex.rst:1395 -msgid "" -"The most complete book on regular expressions is almost certainly Jeffrey " -"Friedl's Mastering Regular Expressions, published by O'Reilly. " -"Unfortunately, it exclusively concentrates on Perl and Java's flavours of " -"regular expressions, and doesn't contain any Python material at all, so it " -"won't be useful as a reference for programming in Python. (The first " -"edition covered Python's now-removed :mod:`!regex` module, which won't help " -"you much.) Consider checking it out from your library." +msgid "The most complete book on regular expressions is almost certainly Jeffrey Friedl's Mastering Regular Expressions, published by O'Reilly. Unfortunately, it exclusively concentrates on Perl and Java's flavours of regular expressions, and doesn't contain any Python material at all, so it won't be useful as a reference for programming in Python. (The first edition covered Python's now-removed :mod:`!regex` module, which won't help you much.) Consider checking it out from your library." msgstr "" diff --git a/howto/remote_debugging.po b/howto/remote_debugging.po index b29df84d..4b907f07 100644 --- a/howto/remote_debugging.po +++ b/howto/remote_debugging.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2026-07-25 12:59+0330\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: none\n" @@ -19,293 +19,162 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../howto/remote_debugging.rst:4 msgid "Remote debugging attachment protocol" msgstr "" -#: ../../howto/remote_debugging.rst:6 -msgid "" -"This protocol enables external tools to attach to a running CPython process " -"and execute Python code remotely." +msgid "This protocol enables external tools to attach to a running CPython process and execute Python code remotely." msgstr "" -#: ../../howto/remote_debugging.rst:9 -msgid "" -"Most platforms require elevated privileges to attach to another Python " -"process." +msgid "Most platforms require elevated privileges to attach to another Python process." msgstr "" -#: ../../howto/remote_debugging.rst:12 msgid "Disabling remote debugging" msgstr "" -#: ../../howto/remote_debugging.rst:14 msgid "To disable remote debugging support, use any of the following:" msgstr "" -#: ../../howto/remote_debugging.rst:16 -msgid "" -"Set the :envvar:`PYTHON_DISABLE_REMOTE_DEBUG` environment variable to ``1`` " -"before starting the interpreter." +msgid "Set the :envvar:`PYTHON_DISABLE_REMOTE_DEBUG` environment variable to ``1`` before starting the interpreter." msgstr "" -#: ../../howto/remote_debugging.rst:18 msgid "Use the :option:`-X disable_remote_debug` command-line option." msgstr "" -#: ../../howto/remote_debugging.rst:19 msgid "Compile Python with the :option:`--without-remote-debug` build flag." msgstr "" -#: ../../howto/remote_debugging.rst:24 msgid "Permission requirements" msgstr "" -#: ../../howto/remote_debugging.rst:26 -msgid "" -"Attaching to a running Python process for remote debugging requires elevated " -"privileges on most platforms. The specific requirements and troubleshooting " -"steps depend on your operating system:" +msgid "Attaching to a running Python process for remote debugging requires elevated privileges on most platforms. The specific requirements and troubleshooting steps depend on your operating system:" msgstr "" -#: ../../howto/remote_debugging.rst:31 msgid "Linux" msgstr "" -#: ../../howto/remote_debugging.rst:32 -msgid "" -"The tracer process must have the ``CAP_SYS_PTRACE`` capability or equivalent " -"privileges. You can only trace processes you own and can signal. Tracing may " -"fail if the process is already being traced, or if it is running with set-" -"user-ID or set-group-ID. Security modules like Yama may further restrict " -"tracing." +msgid "The tracer process must have the ``CAP_SYS_PTRACE`` capability or equivalent privileges. You can only trace processes you own and can signal. Tracing may fail if the process is already being traced, or if it is running with set-user-ID or set-group-ID. Security modules like Yama may further restrict tracing." msgstr "" -#: ../../howto/remote_debugging.rst:38 msgid "To temporarily relax ptrace restrictions (until reboot), run:" msgstr "" -#: ../../howto/remote_debugging.rst:40 msgid "``echo 0 | sudo tee /proc/sys/kernel/yama/ptrace_scope``" msgstr "" -#: ../../howto/remote_debugging.rst:44 -msgid "" -"Disabling ``ptrace_scope`` reduces system hardening and should only be done " -"in trusted environments." +msgid "Disabling ``ptrace_scope`` reduces system hardening and should only be done in trusted environments." msgstr "" -#: ../../howto/remote_debugging.rst:47 -msgid "" -"If running inside a container, use ``--cap-add=SYS_PTRACE`` or ``--" -"privileged``, and run as root if needed." +msgid "If running inside a container, use ``--cap-add=SYS_PTRACE`` or ``--privileged``, and run as root if needed." msgstr "" -#: ../../howto/remote_debugging.rst:50 msgid "Try re-running the command with elevated privileges:" msgstr "" -#: ../../howto/remote_debugging.rst:52 msgid "``sudo -E !!``" msgstr "" -#: ../../howto/remote_debugging.rst:56 msgid "macOS" msgstr "" -#: ../../howto/remote_debugging.rst:57 -msgid "" -"To attach to another process, you typically need to run your debugging tool " -"with elevated privileges. This can be done by using ``sudo`` or running as " -"root." +msgid "To attach to another process, you typically need to run your debugging tool with elevated privileges. This can be done by using ``sudo`` or running as root." msgstr "" -#: ../../howto/remote_debugging.rst:61 -msgid "" -"Even when attaching to processes you own, macOS may block debugging unless " -"the debugger is run with root privileges due to system security restrictions." +msgid "Even when attaching to processes you own, macOS may block debugging unless the debugger is run with root privileges due to system security restrictions." msgstr "" -#: ../../howto/remote_debugging.rst:66 msgid "Windows" msgstr "" -#: ../../howto/remote_debugging.rst:67 -msgid "" -"To attach to another process, you usually need to run your debugging tool " -"with administrative privileges. Start the command prompt or terminal as " -"Administrator." +msgid "To attach to another process, you usually need to run your debugging tool with administrative privileges. Start the command prompt or terminal as Administrator." msgstr "" -#: ../../howto/remote_debugging.rst:71 -msgid "" -"Some processes may still be inaccessible even with Administrator rights, " -"unless you have the ``SeDebugPrivilege`` privilege enabled." +msgid "Some processes may still be inaccessible even with Administrator rights, unless you have the ``SeDebugPrivilege`` privilege enabled." msgstr "" -#: ../../howto/remote_debugging.rst:74 -msgid "" -"To resolve file or folder access issues, adjust the security permissions:" +msgid "To resolve file or folder access issues, adjust the security permissions:" msgstr "" -#: ../../howto/remote_debugging.rst:76 msgid "Right-click the file or folder and select **Properties**." msgstr "" -#: ../../howto/remote_debugging.rst:77 msgid "Go to the **Security** tab to view users and groups with access." msgstr "" -#: ../../howto/remote_debugging.rst:78 msgid "Click **Edit** to modify permissions." msgstr "" -#: ../../howto/remote_debugging.rst:79 msgid "Select your user account." msgstr "" -#: ../../howto/remote_debugging.rst:80 msgid "In **Permissions**, check **Read** or **Full control** as needed." msgstr "" -#: ../../howto/remote_debugging.rst:81 msgid "Click **Apply**, then **OK** to confirm." msgstr "" -#: ../../howto/remote_debugging.rst:86 -msgid "" -"Ensure you've satisfied all :ref:`permission-requirements` before proceeding." +msgid "Ensure you've satisfied all :ref:`permission-requirements` before proceeding." msgstr "" -#: ../../howto/remote_debugging.rst:88 -msgid "" -"This section describes the low-level protocol that enables external tools to " -"inject and execute a Python script within a running CPython process." +msgid "This section describes the low-level protocol that enables external tools to inject and execute a Python script within a running CPython process." msgstr "" -#: ../../howto/remote_debugging.rst:91 -msgid "" -"This mechanism forms the basis of the :func:`sys.remote_exec` function, " -"which instructs a remote Python process to execute a ``.py`` file. However, " -"this section does not document the usage of that function. Instead, it " -"provides a detailed explanation of the underlying protocol, which takes as " -"input the ``pid`` of a target Python process and the path to a Python source " -"file to be executed. This information supports independent reimplementation " -"of the protocol, regardless of programming language." +msgid "This mechanism forms the basis of the :func:`sys.remote_exec` function, which instructs a remote Python process to execute a ``.py`` file. However, this section does not document the usage of that function. Instead, it provides a detailed explanation of the underlying protocol, which takes as input the ``pid`` of a target Python process and the path to a Python source file to be executed. This information supports independent reimplementation of the protocol, regardless of programming language." msgstr "" -#: ../../howto/remote_debugging.rst:101 -msgid "" -"The execution of the injected script depends on the interpreter reaching a " -"safe evaluation point. As a result, execution may be delayed depending on " -"the runtime state of the target process." +msgid "The execution of the injected script depends on the interpreter reaching a safe evaluation point. As a result, execution may be delayed depending on the runtime state of the target process." msgstr "" -#: ../../howto/remote_debugging.rst:105 -msgid "" -"Once injected, the script is executed by the interpreter within the target " -"process the next time a safe evaluation point is reached. This approach " -"enables remote execution capabilities without modifying the behavior or " -"structure of the running Python application." +msgid "Once injected, the script is executed by the interpreter within the target process the next time a safe evaluation point is reached. This approach enables remote execution capabilities without modifying the behavior or structure of the running Python application." msgstr "" -#: ../../howto/remote_debugging.rst:110 -msgid "" -"Subsequent sections provide a step-by-step description of the protocol, " -"including techniques for locating interpreter structures in memory, safely " -"accessing internal fields, and triggering code execution. Platform-specific " -"variations are noted where applicable, and example implementations are " -"included to clarify each operation." +msgid "Subsequent sections provide a step-by-step description of the protocol, including techniques for locating interpreter structures in memory, safely accessing internal fields, and triggering code execution. Platform-specific variations are noted where applicable, and example implementations are included to clarify each operation." msgstr "" -#: ../../howto/remote_debugging.rst:117 msgid "Locating the PyRuntime structure" msgstr "" -#: ../../howto/remote_debugging.rst:119 -msgid "" -"CPython places the ``PyRuntime`` structure in a dedicated binary section to " -"help external tools find it at runtime. The name and format of this section " -"vary by platform. For example, ``.PyRuntime`` is used on ELF systems, and " -"``__DATA,__PyRuntime`` is used on macOS. Tools can find the offset of this " -"structure by examining the binary on disk." +msgid "CPython places the ``PyRuntime`` structure in a dedicated binary section to help external tools find it at runtime. The name and format of this section vary by platform. For example, ``.PyRuntime`` is used on ELF systems, and ``__DATA,__PyRuntime`` is used on macOS. Tools can find the offset of this structure by examining the binary on disk." msgstr "" -#: ../../howto/remote_debugging.rst:125 -msgid "" -"The ``PyRuntime`` structure contains CPython’s global interpreter state and " -"provides access to other internal data, including the list of interpreters, " -"thread states, and debugger support fields." +msgid "The ``PyRuntime`` structure contains CPython’s global interpreter state and provides access to other internal data, including the list of interpreters, thread states, and debugger support fields." msgstr "" -#: ../../howto/remote_debugging.rst:129 -msgid "" -"To work with a remote Python process, a debugger must first find the memory " -"address of the ``PyRuntime`` structure in the target process. This address " -"can’t be hardcoded or calculated from a symbol name, because it depends on " -"where the operating system loaded the binary." +msgid "To work with a remote Python process, a debugger must first find the memory address of the ``PyRuntime`` structure in the target process. This address can’t be hardcoded or calculated from a symbol name, because it depends on where the operating system loaded the binary." msgstr "" -#: ../../howto/remote_debugging.rst:134 -msgid "" -"The method for finding ``PyRuntime`` depends on the platform, but the steps " -"are the same in general:" +msgid "The method for finding ``PyRuntime`` depends on the platform, but the steps are the same in general:" msgstr "" -#: ../../howto/remote_debugging.rst:137 -msgid "" -"Find the base address where the Python binary or shared library was loaded " -"in the target process." +msgid "Find the base address where the Python binary or shared library was loaded in the target process." msgstr "" -#: ../../howto/remote_debugging.rst:139 -msgid "" -"Use the on-disk binary to locate the offset of the ``.PyRuntime`` section." +msgid "Use the on-disk binary to locate the offset of the ``.PyRuntime`` section." msgstr "" -#: ../../howto/remote_debugging.rst:140 -msgid "" -"Add the section offset to the base address to compute the address in memory." +msgid "Add the section offset to the base address to compute the address in memory." msgstr "" -#: ../../howto/remote_debugging.rst:142 -msgid "" -"The sections below explain how to do this on each supported platform and " -"include example code." +msgid "The sections below explain how to do this on each supported platform and include example code." msgstr "" -#: ../../howto/remote_debugging.rst:146 msgid "Linux (ELF)" msgstr "" -#: ../../howto/remote_debugging.rst:147 msgid "To find the ``PyRuntime`` structure on Linux:" msgstr "" -#: ../../howto/remote_debugging.rst:149 -msgid "" -"Read the process’s memory map (for example, ``/proc//maps``) to find " -"the address where the Python executable or ``libpython`` was loaded." +msgid "Read the process’s memory map (for example, ``/proc//maps``) to find the address where the Python executable or ``libpython`` was loaded." msgstr "" -#: ../../howto/remote_debugging.rst:151 -msgid "" -"Parse the ELF section headers in the binary to get the offset of the " -"``.PyRuntime`` section." +msgid "Parse the ELF section headers in the binary to get the offset of the ``.PyRuntime`` section." msgstr "" -#: ../../howto/remote_debugging.rst:153 -msgid "" -"Add that offset to the base address from step 1 to get the memory address of " -"``PyRuntime``." +msgid "Add that offset to the base address from step 1 to get the memory address of ``PyRuntime``." msgstr "" -#: ../../howto/remote_debugging.rst:156 ../../howto/remote_debugging.rst:218 -#: ../../howto/remote_debugging.rst:288 ../../howto/remote_debugging.rst:557 msgid "The following is an example implementation::" msgstr "" -#: ../../howto/remote_debugging.rst:158 msgid "" "def find_py_runtime_linux(pid: int) -> int:\n" " # Step 1: Try to find the Python executable in memory\n" @@ -328,70 +197,30 @@ msgid "" " return base_address + section_offset" msgstr "" -#: ../../howto/remote_debugging.rst:179 -msgid "" -"On Linux systems, there are two main approaches to read memory from another " -"process. The first is through the ``/proc`` filesystem, specifically by " -"reading from ``/proc/[pid]/mem`` which provides direct access to the " -"process's memory. This requires appropriate permissions - either being the " -"same user as the target process or having root access. The second approach " -"is using the ``process_vm_readv()`` system call which provides a more " -"efficient way to copy memory between processes. While ptrace's " -"``PTRACE_PEEKTEXT`` operation can also be used to read memory, it is " -"significantly slower as it only reads one word at a time and requires " -"multiple context switches between the tracer and tracee processes." -msgstr "" - -#: ../../howto/remote_debugging.rst:190 -msgid "" -"For parsing ELF sections, the process involves reading and interpreting the " -"ELF file format structures from the binary file on disk. The ELF header " -"contains a pointer to the section header table. Each section header contains " -"metadata about a section including its name (stored in a separate string " -"table), offset, and size. To find a specific section like .PyRuntime, you " -"need to walk through these headers and match the section name. The section " -"header then provides the offset where that section exists in the file, which " -"can be used to calculate its runtime address when the binary is loaded into " -"memory." -msgstr "" - -#: ../../howto/remote_debugging.rst:199 -msgid "" -"You can read more about the ELF file format in the `ELF specification " -"`_." +msgid "On Linux systems, there are two main approaches to read memory from another process. The first is through the ``/proc`` filesystem, specifically by reading from ``/proc/[pid]/mem`` which provides direct access to the process's memory. This requires appropriate permissions - either being the same user as the target process or having root access. The second approach is using the ``process_vm_readv()`` system call which provides a more efficient way to copy memory between processes. While ptrace's ``PTRACE_PEEKTEXT`` operation can also be used to read memory, it is significantly slower as it only reads one word at a time and requires multiple context switches between the tracer and tracee processes." +msgstr "" + +msgid "For parsing ELF sections, the process involves reading and interpreting the ELF file format structures from the binary file on disk. The ELF header contains a pointer to the section header table. Each section header contains metadata about a section including its name (stored in a separate string table), offset, and size. To find a specific section like .PyRuntime, you need to walk through these headers and match the section name. The section header then provides the offset where that section exists in the file, which can be used to calculate its runtime address when the binary is loaded into memory." +msgstr "" + +msgid "You can read more about the ELF file format in the `ELF specification `_." msgstr "" -#: ../../howto/remote_debugging.rst:204 msgid "macOS (Mach-O)" msgstr "" -#: ../../howto/remote_debugging.rst:205 msgid "To find the ``PyRuntime`` structure on macOS:" msgstr "" -#: ../../howto/remote_debugging.rst:207 -msgid "" -"Call ``task_for_pid()`` to get the ``mach_port_t`` task port for the target " -"process. This handle is needed to read memory using APIs like " -"``mach_vm_read_overwrite`` and ``mach_vm_region``." +msgid "Call ``task_for_pid()`` to get the ``mach_port_t`` task port for the target process. This handle is needed to read memory using APIs like ``mach_vm_read_overwrite`` and ``mach_vm_region``." msgstr "" -#: ../../howto/remote_debugging.rst:210 -msgid "" -"Scan the memory regions to find the one containing the Python executable or " -"``libpython``." +msgid "Scan the memory regions to find the one containing the Python executable or ``libpython``." msgstr "" -#: ../../howto/remote_debugging.rst:212 -msgid "" -"Load the binary file from disk and parse the Mach-O headers to find the " -"section named ``PyRuntime`` in the ``__DATA`` segment. On macOS, symbol " -"names are automatically prefixed with an underscore, so the ``PyRuntime`` " -"symbol appears as ``_PyRuntime`` in the symbol table, but the section name " -"is not affected." +msgid "Load the binary file from disk and parse the Mach-O headers to find the section named ``PyRuntime`` in the ``__DATA`` segment. On macOS, symbol names are automatically prefixed with an underscore, so the ``PyRuntime`` symbol appears as ``_PyRuntime`` in the symbol table, but the section name is not affected." msgstr "" -#: ../../howto/remote_debugging.rst:220 msgid "" "def find_py_runtime_macos(pid: int) -> int:\n" " # Step 1: Get access to the process's memory\n" @@ -417,83 +246,36 @@ msgid "" " return base_address + section_offset" msgstr "" -#: ../../howto/remote_debugging.rst:243 -msgid "" -"On macOS, accessing another process's memory requires using Mach-O specific " -"APIs and file formats. The first step is obtaining a ``task_port`` handle " -"via ``task_for_pid()``, which provides access to the target process's memory " -"space. This handle enables memory operations through APIs like " -"``mach_vm_read_overwrite()``." +msgid "On macOS, accessing another process's memory requires using Mach-O specific APIs and file formats. The first step is obtaining a ``task_port`` handle via ``task_for_pid()``, which provides access to the target process's memory space. This handle enables memory operations through APIs like ``mach_vm_read_overwrite()``." msgstr "" -#: ../../howto/remote_debugging.rst:249 -msgid "" -"The process memory can be examined using ``mach_vm_region()`` to scan " -"through the virtual memory space, while ``proc_regionfilename()`` helps " -"identify which binary files are loaded at each memory region. When the " -"Python binary or library is found, its Mach-O headers need to be parsed to " -"locate the ``PyRuntime`` structure." +msgid "The process memory can be examined using ``mach_vm_region()`` to scan through the virtual memory space, while ``proc_regionfilename()`` helps identify which binary files are loaded at each memory region. When the Python binary or library is found, its Mach-O headers need to be parsed to locate the ``PyRuntime`` structure." msgstr "" -#: ../../howto/remote_debugging.rst:254 -msgid "" -"The Mach-O format organizes code and data into segments and sections. The " -"``PyRuntime`` structure lives in a section named ``__PyRuntime`` within the " -"``__DATA`` segment. The actual runtime address calculation involves finding " -"the ``__TEXT`` segment which serves as the binary's base address, then " -"locating the ``__DATA`` segment containing our target section. The final " -"address is computed by combining the base address with the appropriate " -"section offsets from the Mach-O headers." +msgid "The Mach-O format organizes code and data into segments and sections. The ``PyRuntime`` structure lives in a section named ``__PyRuntime`` within the ``__DATA`` segment. The actual runtime address calculation involves finding the ``__TEXT`` segment which serves as the binary's base address, then locating the ``__DATA`` segment containing our target section. The final address is computed by combining the base address with the appropriate section offsets from the Mach-O headers." msgstr "" -#: ../../howto/remote_debugging.rst:262 -msgid "" -"Note that accessing another process's memory on macOS typically requires " -"elevated privileges - either root access or special security entitlements " -"granted to the debugging process." +msgid "Note that accessing another process's memory on macOS typically requires elevated privileges - either root access or special security entitlements granted to the debugging process." msgstr "" -#: ../../howto/remote_debugging.rst:268 msgid "Windows (PE)" msgstr "" -#: ../../howto/remote_debugging.rst:269 msgid "To find the ``PyRuntime`` structure on Windows:" msgstr "" -#: ../../howto/remote_debugging.rst:271 -msgid "" -"Use the ToolHelp API to enumerate all modules loaded in the target process. " -"This is done using functions such as `CreateToolhelp32Snapshot `_, `Module32First `_, and " -"`Module32Next `_." +msgid "Use the ToolHelp API to enumerate all modules loaded in the target process. This is done using functions such as `CreateToolhelp32Snapshot `_, `Module32First `_, and `Module32Next `_." msgstr "" -#: ../../howto/remote_debugging.rst:278 -msgid "" -"Identify the module corresponding to :file:`python.exe` " -"or :file:`python{XY}.dll`, where ``X`` and ``Y`` are the major and minor " -"version numbers of the Python version, and record its base address." +msgid "Identify the module corresponding to :file:`python.exe` or :file:`python{XY}.dll`, where ``X`` and ``Y`` are the major and minor version numbers of the Python version, and record its base address." msgstr "" -#: ../../howto/remote_debugging.rst:281 -msgid "" -"Locate the ``PyRuntim`` section. Due to the PE format's 8-character limit on " -"section names (defined as ``IMAGE_SIZEOF_SHORT_NAME``), the original name " -"``PyRuntime`` is truncated. This section contains the ``PyRuntime`` " -"structure." +msgid "Locate the ``PyRuntim`` section. Due to the PE format's 8-character limit on section names (defined as ``IMAGE_SIZEOF_SHORT_NAME``), the original name ``PyRuntime`` is truncated. This section contains the ``PyRuntime`` structure." msgstr "" -#: ../../howto/remote_debugging.rst:285 -msgid "" -"Retrieve the section’s relative virtual address (RVA) and add it to the base " -"address of the module." +msgid "Retrieve the section’s relative virtual address (RVA) and add it to the base address of the module." msgstr "" -#: ../../howto/remote_debugging.rst:290 msgid "" "def find_py_runtime_windows(pid: int) -> int:\n" " # Step 1: Try to find the Python executable in memory\n" @@ -517,113 +299,54 @@ msgid "" " return base_address + section_rva" msgstr "" -#: ../../howto/remote_debugging.rst:312 -msgid "" -"On Windows, accessing another process's memory requires using the Windows " -"API functions like ``CreateToolhelp32Snapshot()`` and ``Module32First()/" -"Module32Next()`` to enumerate loaded modules. The ``OpenProcess()`` function " -"provides a handle to access the target process's memory space, enabling " -"memory operations through ``ReadProcessMemory()``." +msgid "On Windows, accessing another process's memory requires using the Windows API functions like ``CreateToolhelp32Snapshot()`` and ``Module32First()/Module32Next()`` to enumerate loaded modules. The ``OpenProcess()`` function provides a handle to access the target process's memory space, enabling memory operations through ``ReadProcessMemory()``." msgstr "" -#: ../../howto/remote_debugging.rst:318 -msgid "" -"The process memory can be examined by enumerating loaded modules to find the " -"Python binary or DLL. When found, its PE headers need to be parsed to locate " -"the ``PyRuntime`` structure." +msgid "The process memory can be examined by enumerating loaded modules to find the Python binary or DLL. When found, its PE headers need to be parsed to locate the ``PyRuntime`` structure." msgstr "" -#: ../../howto/remote_debugging.rst:322 -msgid "" -"The PE format organizes code and data into sections. The ``PyRuntime`` " -"structure lives in a section named \"PyRuntim\" (truncated from " -"\"PyRuntime\" due to PE's 8-character name limit). The actual runtime " -"address calculation involves finding the module's base address from the " -"module entry, then locating our target section in the PE headers. The final " -"address is computed by combining the base address with the section's virtual " -"address from the PE section headers." +msgid "The PE format organizes code and data into sections. The ``PyRuntime`` structure lives in a section named \"PyRuntim\" (truncated from \"PyRuntime\" due to PE's 8-character name limit). The actual runtime address calculation involves finding the module's base address from the module entry, then locating our target section in the PE headers. The final address is computed by combining the base address with the section's virtual address from the PE section headers." msgstr "" -#: ../../howto/remote_debugging.rst:329 -msgid "" -"Note that accessing another process's memory on Windows typically requires " -"appropriate privileges - either administrative access or the " -"``SeDebugPrivilege`` privilege granted to the debugging process." +msgid "Note that accessing another process's memory on Windows typically requires appropriate privileges - either administrative access or the ``SeDebugPrivilege`` privilege granted to the debugging process." msgstr "" -#: ../../howto/remote_debugging.rst:335 msgid "Reading _Py_DebugOffsets" msgstr "" -#: ../../howto/remote_debugging.rst:337 -msgid "" -"Once the address of the ``PyRuntime`` structure has been determined, the " -"next step is to read the ``_Py_DebugOffsets`` structure located at the " -"beginning of the ``PyRuntime`` block." +msgid "Once the address of the ``PyRuntime`` structure has been determined, the next step is to read the ``_Py_DebugOffsets`` structure located at the beginning of the ``PyRuntime`` block." msgstr "" -#: ../../howto/remote_debugging.rst:341 -msgid "" -"This structure provides version-specific field offsets that are needed to " -"safely read interpreter and thread state memory. These offsets vary between " -"CPython versions and must be checked before use to ensure they are " -"compatible." +msgid "This structure provides version-specific field offsets that are needed to safely read interpreter and thread state memory. These offsets vary between CPython versions and must be checked before use to ensure they are compatible." msgstr "" -#: ../../howto/remote_debugging.rst:345 msgid "To read and check the debug offsets, follow these steps:" msgstr "" -#: ../../howto/remote_debugging.rst:347 -msgid "" -"Read memory from the target process starting at the ``PyRuntime`` address, " -"covering the same number of bytes as the ``_Py_DebugOffsets`` structure. " -"This structure is located at the very start of the ``PyRuntime`` memory " -"block. Its layout is defined in CPython’s internal headers and stays the " -"same within a given minor version, but may change in major versions." +msgid "Read memory from the target process starting at the ``PyRuntime`` address, covering the same number of bytes as the ``_Py_DebugOffsets`` structure. This structure is located at the very start of the ``PyRuntime`` memory block. Its layout is defined in CPython’s internal headers and stays the same within a given minor version, but may change in major versions." msgstr "" -#: ../../howto/remote_debugging.rst:353 msgid "Check that the structure contains valid data:" msgstr "" -#: ../../howto/remote_debugging.rst:355 msgid "The ``cookie`` field must match the expected debug marker." msgstr "" -#: ../../howto/remote_debugging.rst:356 -msgid "" -"The ``version`` field must match the version of the Python interpreter used " -"by the debugger." +msgid "The ``version`` field must match the version of the Python interpreter used by the debugger." msgstr "" -#: ../../howto/remote_debugging.rst:358 -msgid "" -"If either the debugger or the target process is using a pre-release version " -"(for example, an alpha, beta, or release candidate), the versions must match " -"exactly." +msgid "If either the debugger or the target process is using a pre-release version (for example, an alpha, beta, or release candidate), the versions must match exactly." msgstr "" -#: ../../howto/remote_debugging.rst:361 -msgid "" -"The ``free_threaded`` field must have the same value in both the debugger " -"and the target process." +msgid "The ``free_threaded`` field must have the same value in both the debugger and the target process." msgstr "" -#: ../../howto/remote_debugging.rst:364 -msgid "" -"If the structure is valid, the offsets it contains can be used to locate " -"fields in memory. If any check fails, the debugger should stop the operation " -"to avoid reading memory in the wrong format." +msgid "If the structure is valid, the offsets it contains can be used to locate fields in memory. If any check fails, the debugger should stop the operation to avoid reading memory in the wrong format." msgstr "" -#: ../../howto/remote_debugging.rst:368 -msgid "" -"The following is an example implementation that reads and checks " -"``_Py_DebugOffsets``::" +msgid "The following is an example implementation that reads and checks ``_Py_DebugOffsets``::" msgstr "" -#: ../../howto/remote_debugging.rst:371 msgid "" "def read_debug_offsets(pid: int, py_runtime_addr: int) -> DebugOffsets:\n" " # Step 1: Read memory from the target process at the PyRuntime address\n" @@ -647,125 +370,57 @@ msgid "" " return debug_offsets" msgstr "" -#: ../../howto/remote_debugging.rst:396 msgid "**Process suspension recommended**" msgstr "" -#: ../../howto/remote_debugging.rst:398 -msgid "" -"To avoid race conditions and ensure memory consistency, it is strongly " -"recommended that the target process be suspended before performing any " -"operations that read or write internal interpreter state. The Python runtime " -"may concurrently mutate interpreter data structures—such as creating or " -"destroying threads—during normal execution. This can result in invalid " -"memory reads or writes." +msgid "To avoid race conditions and ensure memory consistency, it is strongly recommended that the target process be suspended before performing any operations that read or write internal interpreter state. The Python runtime may concurrently mutate interpreter data structures—such as creating or destroying threads—during normal execution. This can result in invalid memory reads or writes." msgstr "" -#: ../../howto/remote_debugging.rst:405 -msgid "" -"A debugger may suspend execution by attaching to the process with ``ptrace`` " -"or by sending a ``SIGSTOP`` signal. Execution should only be resumed after " -"debugger-side memory operations are complete." +msgid "A debugger may suspend execution by attaching to the process with ``ptrace`` or by sending a ``SIGSTOP`` signal. Execution should only be resumed after debugger-side memory operations are complete." msgstr "" -#: ../../howto/remote_debugging.rst:411 -msgid "" -"Some tools, such as profilers or sampling-based debuggers, may operate on a " -"running process without suspension. In such cases, tools must be explicitly " -"designed to handle partially updated or inconsistent memory. For most " -"debugger implementations, suspending the process remains the safest and most " -"robust approach." +msgid "Some tools, such as profilers or sampling-based debuggers, may operate on a running process without suspension. In such cases, tools must be explicitly designed to handle partially updated or inconsistent memory. For most debugger implementations, suspending the process remains the safest and most robust approach." msgstr "" -#: ../../howto/remote_debugging.rst:419 msgid "Locating the interpreter and thread state" msgstr "" -#: ../../howto/remote_debugging.rst:421 -msgid "" -"Before code can be injected and executed in a remote Python process, the " -"debugger must choose a thread in which to schedule execution. This is " -"necessary because the control fields used to perform remote code injection " -"are located in the ``_PyRemoteDebuggerSupport`` structure, which is embedded " -"in a ``PyThreadState`` object. These fields are modified by the debugger to " -"request execution of injected scripts." +msgid "Before code can be injected and executed in a remote Python process, the debugger must choose a thread in which to schedule execution. This is necessary because the control fields used to perform remote code injection are located in the ``_PyRemoteDebuggerSupport`` structure, which is embedded in a ``PyThreadState`` object. These fields are modified by the debugger to request execution of injected scripts." msgstr "" -#: ../../howto/remote_debugging.rst:428 -msgid "" -"The ``PyThreadState`` structure represents a thread running inside a Python " -"interpreter. It maintains the thread’s evaluation context and contains the " -"fields required for debugger coordination. Locating a valid " -"``PyThreadState`` is therefore a key prerequisite for triggering execution " -"remotely." +msgid "The ``PyThreadState`` structure represents a thread running inside a Python interpreter. It maintains the thread’s evaluation context and contains the fields required for debugger coordination. Locating a valid ``PyThreadState`` is therefore a key prerequisite for triggering execution remotely." msgstr "" -#: ../../howto/remote_debugging.rst:433 -msgid "" -"A thread is typically selected based on its role or ID. In most cases, the " -"main thread is used, but some tools may target a specific thread by its " -"native thread ID. Once the target thread is chosen, the debugger must locate " -"both the interpreter and the associated thread state structures in memory." +msgid "A thread is typically selected based on its role or ID. In most cases, the main thread is used, but some tools may target a specific thread by its native thread ID. Once the target thread is chosen, the debugger must locate both the interpreter and the associated thread state structures in memory." msgstr "" -#: ../../howto/remote_debugging.rst:438 msgid "The relevant internal structures are defined as follows:" msgstr "" -#: ../../howto/remote_debugging.rst:440 -msgid "" -"``PyInterpreterState`` represents an isolated Python interpreter instance. " -"Each interpreter maintains its own set of imported modules, built-in state, " -"and thread state list. Although most Python applications use a single " -"interpreter, CPython supports multiple interpreters in the same process." +msgid "``PyInterpreterState`` represents an isolated Python interpreter instance. Each interpreter maintains its own set of imported modules, built-in state, and thread state list. Although most Python applications use a single interpreter, CPython supports multiple interpreters in the same process." msgstr "" -#: ../../howto/remote_debugging.rst:445 -msgid "" -"``PyThreadState`` represents a thread running within an interpreter. It " -"contains execution state and the control fields used by the debugger." +msgid "``PyThreadState`` represents a thread running within an interpreter. It contains execution state and the control fields used by the debugger." msgstr "" -#: ../../howto/remote_debugging.rst:448 msgid "To locate a thread:" msgstr "" -#: ../../howto/remote_debugging.rst:450 -msgid "" -"Use the offset ``runtime_state.interpreters_head`` to obtain the address of " -"the first interpreter in the ``PyRuntime`` structure. This is the entry " -"point to the linked list of active interpreters." +msgid "Use the offset ``runtime_state.interpreters_head`` to obtain the address of the first interpreter in the ``PyRuntime`` structure. This is the entry point to the linked list of active interpreters." msgstr "" -#: ../../howto/remote_debugging.rst:454 -msgid "" -"Use the offset ``interpreter_state.threads_main`` to access the main thread " -"state associated with the selected interpreter. This is typically the most " -"reliable thread to target." +msgid "Use the offset ``interpreter_state.threads_main`` to access the main thread state associated with the selected interpreter. This is typically the most reliable thread to target." msgstr "" -#: ../../howto/remote_debugging.rst:458 -msgid "" -"Optionally, use the offset ``interpreter_state.threads_head`` to iterate " -"through the linked list of all thread states. Each ``PyThreadState`` " -"structure contains a ``native_thread_id`` field, which may be compared to a " -"target thread ID to find a specific thread." +msgid "Optionally, use the offset ``interpreter_state.threads_head`` to iterate through the linked list of all thread states. Each ``PyThreadState`` structure contains a ``native_thread_id`` field, which may be compared to a target thread ID to find a specific thread." msgstr "" -#: ../../howto/remote_debugging.rst:463 -msgid "" -"Once a valid ``PyThreadState`` has been found, its address can be used in " -"later steps of the protocol, such as writing debugger control fields and " -"scheduling execution." +msgid "Once a valid ``PyThreadState`` has been found, its address can be used in later steps of the protocol, such as writing debugger control fields and scheduling execution." msgstr "" -#: ../../howto/remote_debugging.rst:467 -msgid "" -"The following is an example implementation that locates the main thread " -"state::" +msgid "The following is an example implementation that locates the main thread state::" msgstr "" -#: ../../howto/remote_debugging.rst:469 msgid "" "def find_main_thread_state(\n" " pid: int, py_runtime_addr: int, debug_offsets: DebugOffsets,\n" @@ -789,13 +444,9 @@ msgid "" " return thread_state_addr" msgstr "" -#: ../../howto/remote_debugging.rst:490 -msgid "" -"The following example demonstrates how to locate a thread by its native " -"thread ID::" +msgid "The following example demonstrates how to locate a thread by its native thread ID::" msgstr "" -#: ../../howto/remote_debugging.rst:493 msgid "" "def find_thread_by_id(\n" " pid: int,\n" @@ -824,75 +475,39 @@ msgid "" " raise RuntimeError(\"Thread with the given ID was not found\")" msgstr "" -#: ../../howto/remote_debugging.rst:520 -msgid "" -"Once a valid thread state has been located, the debugger can proceed with " -"modifying its control fields and scheduling execution, as described in the " -"next section." +msgid "Once a valid thread state has been located, the debugger can proceed with modifying its control fields and scheduling execution, as described in the next section." msgstr "" -#: ../../howto/remote_debugging.rst:525 msgid "Writing control information" msgstr "" -#: ../../howto/remote_debugging.rst:527 -msgid "" -"Once a valid ``PyThreadState`` structure has been identified, the debugger " -"may modify control fields within it to schedule the execution of a specified " -"Python script. These control fields are checked periodically by the " -"interpreter, and when set correctly, they trigger the execution of remote " -"code at a safe point in the evaluation loop." +msgid "Once a valid ``PyThreadState`` structure has been identified, the debugger may modify control fields within it to schedule the execution of a specified Python script. These control fields are checked periodically by the interpreter, and when set correctly, they trigger the execution of remote code at a safe point in the evaluation loop." msgstr "" -#: ../../howto/remote_debugging.rst:533 -msgid "" -"Each ``PyThreadState`` contains a ``_PyRemoteDebuggerSupport`` structure " -"used for communication between the debugger and the interpreter. The " -"locations of its fields are defined by the ``_Py_DebugOffsets`` structure " -"and include the following:" +msgid "Each ``PyThreadState`` contains a ``_PyRemoteDebuggerSupport`` structure used for communication between the debugger and the interpreter. The locations of its fields are defined by the ``_Py_DebugOffsets`` structure and include the following:" msgstr "" -#: ../../howto/remote_debugging.rst:538 -msgid "" -"``debugger_script_path``: A fixed-size buffer that holds the full path to a " -"Python source file (``.py``). This file must be accessible and readable by " -"the target process when execution is triggered." +msgid "``debugger_script_path``: A fixed-size buffer that holds the full path to a Python source file (``.py``). This file must be accessible and readable by the target process when execution is triggered." msgstr "" -#: ../../howto/remote_debugging.rst:542 -msgid "" -"``debugger_pending_call``: An integer flag. Setting this to ``1`` tells the " -"interpreter that a script is ready to be executed." +msgid "``debugger_pending_call``: An integer flag. Setting this to ``1`` tells the interpreter that a script is ready to be executed." msgstr "" -#: ../../howto/remote_debugging.rst:545 -msgid "" -"``eval_breaker``: A field checked by the interpreter during execution. " -"Setting bit 5 (``_PY_EVAL_PLEASE_STOP_BIT``, value ``1U << 5``) in this " -"field causes the interpreter to pause and check for debugger activity." +msgid "``eval_breaker``: A field checked by the interpreter during execution. Setting bit 5 (``_PY_EVAL_PLEASE_STOP_BIT``, value ``1U << 5``) in this field causes the interpreter to pause and check for debugger activity." msgstr "" -#: ../../howto/remote_debugging.rst:549 -msgid "" -"To complete the injection, the debugger must perform the following steps:" +msgid "To complete the injection, the debugger must perform the following steps:" msgstr "" -#: ../../howto/remote_debugging.rst:551 msgid "Write the full script path into the ``debugger_script_path`` buffer." msgstr "" -#: ../../howto/remote_debugging.rst:552 msgid "Set ``debugger_pending_call`` to ``1``." msgstr "" -#: ../../howto/remote_debugging.rst:553 -msgid "" -"Read the current value of ``eval_breaker``, set bit 5 " -"(``_PY_EVAL_PLEASE_STOP_BIT``), and write the updated value back. This " -"signals the interpreter to check for debugger activity." +msgid "Read the current value of ``eval_breaker``, set bit 5 (``_PY_EVAL_PLEASE_STOP_BIT``), and write the updated value back. This signals the interpreter to check for debugger activity." msgstr "" -#: ../../howto/remote_debugging.rst:559 msgid "" "def inject_script(\n" " pid: int,\n" @@ -931,153 +546,74 @@ msgid "" " write_int(pid, eval_breaker_ptr, breaker)" msgstr "" -#: ../../howto/remote_debugging.rst:596 -msgid "" -"Once these fields are set, the debugger may resume the process (if it was " -"suspended). The interpreter will process the request at the next safe " -"evaluation point, load the script from disk, and execute it." +msgid "Once these fields are set, the debugger may resume the process (if it was suspended). The interpreter will process the request at the next safe evaluation point, load the script from disk, and execute it." msgstr "" -#: ../../howto/remote_debugging.rst:600 -msgid "" -"It is the responsibility of the debugger to ensure that the script file " -"remains present and accessible to the target process during execution." +msgid "It is the responsibility of the debugger to ensure that the script file remains present and accessible to the target process during execution." msgstr "" -#: ../../howto/remote_debugging.rst:605 -msgid "" -"Script execution is asynchronous. The script file cannot be deleted " -"immediately after injection. The debugger should wait until the injected " -"script has produced an observable effect before removing the file. This " -"effect depends on what the script is designed to do. For example, a debugger " -"might wait until the remote process connects back to a socket before " -"removing the script. Once such an effect is observed, it is safe to assume " -"the file is no longer needed." +msgid "Script execution is asynchronous. The script file cannot be deleted immediately after injection. The debugger should wait until the injected script has produced an observable effect before removing the file. This effect depends on what the script is designed to do. For example, a debugger might wait until the remote process connects back to a socket before removing the script. Once such an effect is observed, it is safe to assume the file is no longer needed." msgstr "" -#: ../../howto/remote_debugging.rst:614 msgid "Summary" msgstr "" -#: ../../howto/remote_debugging.rst:616 msgid "To inject and execute a Python script in a remote process:" msgstr "" -#: ../../howto/remote_debugging.rst:618 msgid "Locate the ``PyRuntime`` structure in the target process’s memory." msgstr "" -#: ../../howto/remote_debugging.rst:619 -msgid "" -"Read and validate the ``_Py_DebugOffsets`` structure at the beginning of " -"``PyRuntime``." +msgid "Read and validate the ``_Py_DebugOffsets`` structure at the beginning of ``PyRuntime``." msgstr "" -#: ../../howto/remote_debugging.rst:621 msgid "Use the offsets to locate a valid ``PyThreadState``." msgstr "" -#: ../../howto/remote_debugging.rst:622 msgid "Write the path to a Python script into ``debugger_script_path``." msgstr "" -#: ../../howto/remote_debugging.rst:623 msgid "Set the ``debugger_pending_call`` flag to ``1``." msgstr "" -#: ../../howto/remote_debugging.rst:624 msgid "Set ``_PY_EVAL_PLEASE_STOP_BIT`` in the ``eval_breaker`` field." msgstr "" -#: ../../howto/remote_debugging.rst:625 -msgid "" -"Resume the process (if suspended). The script will execute at the next safe " -"evaluation point." +msgid "Resume the process (if suspended). The script will execute at the next safe evaluation point." msgstr "" -#: ../../howto/remote_debugging.rst:631 msgid "Security and threat model" msgstr "" -#: ../../howto/remote_debugging.rst:633 -msgid "" -"The remote debugging protocol relies on the same operating system primitives " -"used by native debuggers such as GDB and LLDB. Attaching to a process " -"requires the **same privileges** that those debuggers require, for example " -"``ptrace`` / Yama LSM on Linux, ``task_for_pid`` on macOS, and " -"``SeDebugPrivilege`` on Windows. Python does not introduce any new " -"privilege escalation path; if an attacker already possesses the permissions " -"needed to attach to a process, they could equally use GDB to read memory or " -"inject code." +msgid "The remote debugging protocol relies on the same operating system primitives used by native debuggers such as GDB and LLDB. Attaching to a process requires the **same privileges** that those debuggers require, for example ``ptrace`` / Yama LSM on Linux, ``task_for_pid`` on macOS, and ``SeDebugPrivilege`` on Windows. Python does not introduce any new privilege escalation path; if an attacker already possesses the permissions needed to attach to a process, they could equally use GDB to read memory or inject code." msgstr "" -#: ../../howto/remote_debugging.rst:642 -msgid "" -"The following principles define what is, and is not, considered a security " -"vulnerability in this feature:" +msgid "The following principles define what is, and is not, considered a security vulnerability in this feature:" msgstr "" -#: ../../howto/remote_debugging.rst:645 msgid "Attaching requires OS-level privileges" msgstr "" -#: ../../howto/remote_debugging.rst:646 -msgid "" -"On every supported platform the operating system gates cross-process memory " -"access behind privilege checks (``CAP_SYS_PTRACE``, root, or administrator " -"rights). A report that demonstrates an issue only after these privileges " -"have already been obtained is **not** a vulnerability in CPython, since the " -"OS security boundary was already crossed." +msgid "On every supported platform the operating system gates cross-process memory access behind privilege checks (``CAP_SYS_PTRACE``, root, or administrator rights). A report that demonstrates an issue only after these privileges have already been obtained is **not** a vulnerability in CPython, since the OS security boundary was already crossed." msgstr "" -#: ../../howto/remote_debugging.rst:652 -msgid "" -"Crashes or memory errors when reading a compromised process are not " -"vulnerabilities" +msgid "Crashes or memory errors when reading a compromised process are not vulnerabilities" msgstr "" -#: ../../howto/remote_debugging.rst:653 -msgid "" -"A tool that reads internal interpreter state from a target process must " -"trust that memory to be well-formed. If the target process has been " -"corrupted or is controlled by an attacker, the debugger or profiler may " -"crash, produce garbage output, or behave unpredictably. This is the same " -"risk accepted by every ``ptrace``-based debugger. Bugs in this category " -"(buffer overflows, segmentation faults, or undefined behaviour triggered by " -"reading corrupted state) are **not** treated as security issues, though " -"fixes that improve robustness are welcome." +msgid "A tool that reads internal interpreter state from a target process must trust that memory to be well-formed. If the target process has been corrupted or is controlled by an attacker, the debugger or profiler may crash, produce garbage output, or behave unpredictably. This is the same risk accepted by every ``ptrace``-based debugger. Bugs in this category (buffer overflows, segmentation faults, or undefined behaviour triggered by reading corrupted state) are **not** treated as security issues, though fixes that improve robustness are welcome." msgstr "" -#: ../../howto/remote_debugging.rst:662 msgid "Vulnerabilities in the target process are not in scope" msgstr "" -#: ../../howto/remote_debugging.rst:663 -msgid "" -"If the Python process being debugged has already been compromised, the " -"attacker already controls execution in that process. Demonstrating further " -"impact from that starting point does not constitute a vulnerability in the " -"remote debugging protocol." +msgid "If the Python process being debugged has already been compromised, the attacker already controls execution in that process. Demonstrating further impact from that starting point does not constitute a vulnerability in the remote debugging protocol." msgstr "" -#: ../../howto/remote_debugging.rst:669 msgid "When to use ``PYTHON_DISABLE_REMOTE_DEBUG``" msgstr "" -#: ../../howto/remote_debugging.rst:671 -msgid "" -"The environment variable :envvar:`PYTHON_DISABLE_REMOTE_DEBUG` (and the " -"equivalent :option:`-X disable_remote_debug` flag) allows operators to " -"disable the in-process side of the protocol as a **defence-in-depth** " -"measure. This may be useful in hardened or sandboxed deployment " -"environments where no debugging or profiling of the process is expected and " -"reducing attack surface is a priority, even though the OS-level privilege " -"checks already prevent unprivileged access." +msgid "The environment variable :envvar:`PYTHON_DISABLE_REMOTE_DEBUG` (and the equivalent :option:`-X disable_remote_debug` flag) allows operators to disable the in-process side of the protocol as a **defence-in-depth** measure. This may be useful in hardened or sandboxed deployment environments where no debugging or profiling of the process is expected and reducing attack surface is a priority, even though the OS-level privilege checks already prevent unprivileged access." msgstr "" -#: ../../howto/remote_debugging.rst:679 -msgid "" -"Setting this variable does **not** affect other OS-level debugging " -"interfaces (``ptrace``, ``/proc``, ``task_for_pid``, etc.), which remain " -"available according to their own permission models." +msgid "Setting this variable does **not** affect other OS-level debugging interfaces (``ptrace``, ``/proc``, ``task_for_pid``, etc.), which remain available according to their own permission models." msgstr "" diff --git a/howto/sockets.po b/howto/sockets.po index 2374fa9e..627cad84 100644 --- a/howto/sockets.po +++ b/howto/sockets.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:53+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,90 +24,45 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../howto/sockets.rst:5 msgid "Socket Programming HOWTO" msgstr "" -#: ../../howto/sockets.rst:0 msgid "Author" msgstr "" -#: ../../howto/sockets.rst:7 msgid "Gordon McMillan" msgstr "" -#: ../../howto/sockets.rst:-1 msgid "Abstract" msgstr "" -#: ../../howto/sockets.rst:12 -msgid "" -"Sockets are used nearly everywhere, but are one of the most severely " -"misunderstood technologies around. This is a 10,000 foot overview of " -"sockets. It's not really a tutorial - you'll still have work to do in " -"getting things operational. It doesn't cover the fine points (and there are " -"a lot of them), but I hope it will give you enough background to begin using " -"them decently." +msgid "Sockets are used nearly everywhere, but are one of the most severely misunderstood technologies around. This is a 10,000 foot overview of sockets. It's not really a tutorial - you'll still have work to do in getting things operational. It doesn't cover the fine points (and there are a lot of them), but I hope it will give you enough background to begin using them decently." msgstr "" -#: ../../howto/sockets.rst:20 msgid "Sockets" msgstr "" -#: ../../howto/sockets.rst:22 -msgid "" -"I'm only going to talk about INET (i.e. IPv4) sockets, but they account for " -"at least 99% of the sockets in use. And I'll only talk about STREAM (i.e. " -"TCP) sockets - unless you really know what you're doing (in which case this " -"HOWTO isn't for you!), you'll get better behavior and performance from a " -"STREAM socket than anything else. I will try to clear up the mystery of what " -"a socket is, as well as some hints on how to work with blocking and non-" -"blocking sockets. But I'll start by talking about blocking sockets. You'll " -"need to know how they work before dealing with non-blocking sockets." +msgid "I'm only going to talk about INET (i.e. IPv4) sockets, but they account for at least 99% of the sockets in use. And I'll only talk about STREAM (i.e. TCP) sockets - unless you really know what you're doing (in which case this HOWTO isn't for you!), you'll get better behavior and performance from a STREAM socket than anything else. I will try to clear up the mystery of what a socket is, as well as some hints on how to work with blocking and non-blocking sockets. But I'll start by talking about blocking sockets. You'll need to know how they work before dealing with non-blocking sockets." msgstr "" -#: ../../howto/sockets.rst:31 -msgid "" -"Part of the trouble with understanding these things is that \"socket\" can " -"mean a number of subtly different things, depending on context. So first, " -"let's make a distinction between a \"client\" socket - an endpoint of a " -"conversation, and a \"server\" socket, which is more like a switchboard " -"operator. The client application (your browser, for example) uses \"client\" " -"sockets exclusively; the web server it's talking to uses both \"server\" " -"sockets and \"client\" sockets." +msgid "Part of the trouble with understanding these things is that \"socket\" can mean a number of subtly different things, depending on context. So first, let's make a distinction between a \"client\" socket - an endpoint of a conversation, and a \"server\" socket, which is more like a switchboard operator. The client application (your browser, for example) uses \"client\" sockets exclusively; the web server it's talking to uses both \"server\" sockets and \"client\" sockets." msgstr "" -#: ../../howto/sockets.rst:40 msgid "History" msgstr "" -#: ../../howto/sockets.rst:42 -msgid "" -"Of the various forms of :abbr:`IPC (Inter Process Communication)`, sockets " -"are by far the most popular. On any given platform, there are likely to be " -"other forms of IPC that are faster, but for cross-platform communication, " -"sockets are about the only game in town." +msgid "Of the various forms of :abbr:`IPC (Inter Process Communication)`, sockets are by far the most popular. On any given platform, there are likely to be other forms of IPC that are faster, but for cross-platform communication, sockets are about the only game in town." msgstr "" -#: ../../howto/sockets.rst:47 -msgid "" -"They were invented in Berkeley as part of the BSD flavor of Unix. They " -"spread like wildfire with the internet. With good reason --- the combination " -"of sockets with INET makes talking to arbitrary machines around the world " -"unbelievably easy (at least compared to other schemes)." +msgid "They were invented in Berkeley as part of the BSD flavor of Unix. They spread like wildfire with the internet. With good reason --- the combination of sockets with INET makes talking to arbitrary machines around the world unbelievably easy (at least compared to other schemes)." msgstr "" -#: ../../howto/sockets.rst:54 msgid "Creating a Socket" msgstr "" -#: ../../howto/sockets.rst:56 -msgid "" -"Roughly speaking, when you clicked on the link that brought you to this " -"page, your browser did something like the following::" +msgid "Roughly speaking, when you clicked on the link that brought you to this page, your browser did something like the following::" msgstr "" -#: ../../howto/sockets.rst:59 msgid "" "# create an INET, STREAMing socket\n" "s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)\n" @@ -115,21 +70,12 @@ msgid "" "s.connect((\"www.python.org\", 80))" msgstr "" -#: ../../howto/sockets.rst:64 -msgid "" -"When the ``connect`` completes, the socket ``s`` can be used to send in a " -"request for the text of the page. The same socket will read the reply, and " -"then be destroyed. That's right, destroyed. Client sockets are normally only " -"used for one exchange (or a small set of sequential exchanges)." +msgid "When the ``connect`` completes, the socket ``s`` can be used to send in a request for the text of the page. The same socket will read the reply, and then be destroyed. That's right, destroyed. Client sockets are normally only used for one exchange (or a small set of sequential exchanges)." msgstr "" -#: ../../howto/sockets.rst:70 -msgid "" -"What happens in the web server is a bit more complex. First, the web server " -"creates a \"server socket\"::" +msgid "What happens in the web server is a bit more complex. First, the web server creates a \"server socket\"::" msgstr "" -#: ../../howto/sockets.rst:73 msgid "" "# create an INET, STREAMing socket\n" "serversocket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)\n" @@ -139,38 +85,18 @@ msgid "" "serversocket.listen(5)" msgstr "" -#: ../../howto/sockets.rst:80 -msgid "" -"A couple things to notice: we used ``socket.gethostname()`` so that the " -"socket would be visible to the outside world. If we had used " -"``s.bind(('localhost', 80))`` or ``s.bind(('127.0.0.1', 80))`` we would " -"still have a \"server\" socket, but one that was only visible within the " -"same machine. ``s.bind(('', 80))`` specifies that the socket is reachable " -"by any address the machine happens to have." +msgid "A couple things to notice: we used ``socket.gethostname()`` so that the socket would be visible to the outside world. If we had used ``s.bind(('localhost', 80))`` or ``s.bind(('127.0.0.1', 80))`` we would still have a \"server\" socket, but one that was only visible within the same machine. ``s.bind(('', 80))`` specifies that the socket is reachable by any address the machine happens to have." msgstr "" -#: ../../howto/sockets.rst:87 -msgid "" -"A second thing to note: low number ports are usually reserved for \"well " -"known\" services (HTTP, SNMP etc). If you're playing around, use a nice high " -"number (4 digits)." +msgid "A second thing to note: low number ports are usually reserved for \"well known\" services (HTTP, SNMP etc). If you're playing around, use a nice high number (4 digits)." msgstr "" -#: ../../howto/sockets.rst:91 -msgid "" -"Finally, the argument to ``listen`` tells the socket library that we want it " -"to queue up as many as 5 connect requests (the normal max) before refusing " -"outside connections. If the rest of the code is written properly, that " -"should be plenty." +msgid "Finally, the argument to ``listen`` tells the socket library that we want it to queue up as many as 5 connect requests (the normal max) before refusing outside connections. If the rest of the code is written properly, that should be plenty." msgstr "" -#: ../../howto/sockets.rst:95 -msgid "" -"Now that we have a \"server\" socket, listening on port 80, we can enter the " -"mainloop of the web server::" +msgid "Now that we have a \"server\" socket, listening on port 80, we can enter the mainloop of the web server::" msgstr "" -#: ../../howto/sockets.rst:98 msgid "" "while True:\n" " # accept connections from outside\n" @@ -181,115 +107,42 @@ msgid "" " ct.start()" msgstr "" -#: ../../howto/sockets.rst:106 -msgid "" -"There's actually 3 general ways in which this loop could work - dispatching " -"a thread to handle ``clientsocket``, create a new process to handle " -"``clientsocket``, or restructure this app to use non-blocking sockets, and " -"multiplex between our \"server\" socket and any active ``clientsocket``\\ s " -"using ``select``. More about that later. The important thing to understand " -"now is this: this is *all* a \"server\" socket does. It doesn't send any " -"data. It doesn't receive any data. It just produces \"client\" sockets. Each " -"``clientsocket`` is created in response to some *other* \"client\" socket " -"doing a ``connect()`` to the host and port we're bound to. As soon as we've " -"created that ``clientsocket``, we go back to listening for more connections. " -"The two \"clients\" are free to chat it up - they are using some dynamically " -"allocated port which will be recycled when the conversation ends." -msgstr "" - -#: ../../howto/sockets.rst:121 +msgid "There's actually 3 general ways in which this loop could work - dispatching a thread to handle ``clientsocket``, create a new process to handle ``clientsocket``, or restructure this app to use non-blocking sockets, and multiplex between our \"server\" socket and any active ``clientsocket``\\ s using ``select``. More about that later. The important thing to understand now is this: this is *all* a \"server\" socket does. It doesn't send any data. It doesn't receive any data. It just produces \"client\" sockets. Each ``clientsocket`` is created in response to some *other* \"client\" socket doing a ``connect()`` to the host and port we're bound to. As soon as we've created that ``clientsocket``, we go back to listening for more connections. The two \"clients\" are free to chat it up - they are using some dynamically allocated port which will be recycled when the conversation ends." +msgstr "" + msgid "IPC" msgstr "" -#: ../../howto/sockets.rst:123 -msgid "" -"If you need fast IPC between two processes on one machine, you should look " -"into pipes or shared memory. If you do decide to use AF_INET sockets, bind " -"the \"server\" socket to ``'localhost'``. On most platforms, this will take " -"a shortcut around a couple of layers of network code and be quite a bit " -"faster." +msgid "If you need fast IPC between two processes on one machine, you should look into pipes or shared memory. If you do decide to use AF_INET sockets, bind the \"server\" socket to ``'localhost'``. On most platforms, this will take a shortcut around a couple of layers of network code and be quite a bit faster." msgstr "" -#: ../../howto/sockets.rst:129 -msgid "" -"The :mod:`multiprocessing` integrates cross-platform IPC into a higher-level " -"API." +msgid "The :mod:`multiprocessing` integrates cross-platform IPC into a higher-level API." msgstr "" -#: ../../howto/sockets.rst:134 msgid "Using a Socket" msgstr "" -#: ../../howto/sockets.rst:136 -msgid "" -"The first thing to note, is that the web browser's \"client\" socket and the " -"web server's \"client\" socket are identical beasts. That is, this is a " -"\"peer to peer\" conversation. Or to put it another way, *as the designer, " -"you will have to decide what the rules of etiquette are for a conversation*. " -"Normally, the ``connect``\\ ing socket starts the conversation, by sending " -"in a request, or perhaps a signon. But that's a design decision - it's not a " -"rule of sockets." +msgid "The first thing to note, is that the web browser's \"client\" socket and the web server's \"client\" socket are identical beasts. That is, this is a \"peer to peer\" conversation. Or to put it another way, *as the designer, you will have to decide what the rules of etiquette are for a conversation*. Normally, the ``connect``\\ ing socket starts the conversation, by sending in a request, or perhaps a signon. But that's a design decision - it's not a rule of sockets." msgstr "" -#: ../../howto/sockets.rst:143 -msgid "" -"Now there are two sets of verbs to use for communication. You can use " -"``send`` and ``recv``, or you can transform your client socket into a file-" -"like beast and use ``read`` and ``write``. The latter is the way Java " -"presents its sockets. I'm not going to talk about it here, except to warn " -"you that you need to use ``flush`` on sockets. These are buffered \"files\", " -"and a common mistake is to ``write`` something, and then ``read`` for a " -"reply. Without a ``flush`` in there, you may wait forever for the reply, " -"because the request may still be in your output buffer." +msgid "Now there are two sets of verbs to use for communication. You can use ``send`` and ``recv``, or you can transform your client socket into a file-like beast and use ``read`` and ``write``. The latter is the way Java presents its sockets. I'm not going to talk about it here, except to warn you that you need to use ``flush`` on sockets. These are buffered \"files\", and a common mistake is to ``write`` something, and then ``read`` for a reply. Without a ``flush`` in there, you may wait forever for the reply, because the request may still be in your output buffer." msgstr "" -#: ../../howto/sockets.rst:152 -msgid "" -"Now we come to the major stumbling block of sockets - ``send`` and ``recv`` " -"operate on the network buffers. They do not necessarily handle all the bytes " -"you hand them (or expect from them), because their major focus is handling " -"the network buffers. In general, they return when the associated network " -"buffers have been filled (``send``) or emptied (``recv``). They then tell " -"you how many bytes they handled. It is *your* responsibility to call them " -"again until your message has been completely dealt with." +msgid "Now we come to the major stumbling block of sockets - ``send`` and ``recv`` operate on the network buffers. They do not necessarily handle all the bytes you hand them (or expect from them), because their major focus is handling the network buffers. In general, they return when the associated network buffers have been filled (``send``) or emptied (``recv``). They then tell you how many bytes they handled. It is *your* responsibility to call them again until your message has been completely dealt with." msgstr "" -#: ../../howto/sockets.rst:160 -msgid "" -"When a ``recv`` returns 0 bytes, it means the other side has closed (or is " -"in the process of closing) the connection. You will not receive any more " -"data on this connection. Ever. You may be able to send data successfully; " -"I'll talk more about this later." +msgid "When a ``recv`` returns 0 bytes, it means the other side has closed (or is in the process of closing) the connection. You will not receive any more data on this connection. Ever. You may be able to send data successfully; I'll talk more about this later." msgstr "" -#: ../../howto/sockets.rst:165 -msgid "" -"A protocol like HTTP uses a socket for only one transfer. The client sends a " -"request, then reads a reply. That's it. The socket is discarded. This means " -"that a client can detect the end of the reply by receiving 0 bytes." +msgid "A protocol like HTTP uses a socket for only one transfer. The client sends a request, then reads a reply. That's it. The socket is discarded. This means that a client can detect the end of the reply by receiving 0 bytes." msgstr "" -#: ../../howto/sockets.rst:169 -msgid "" -"But if you plan to reuse your socket for further transfers, you need to " -"realize that *there is no* :abbr:`EOT (End of Transfer)` *on a socket.* I " -"repeat: if a socket ``send`` or ``recv`` returns after handling 0 bytes, the " -"connection has been broken. If the connection has *not* been broken, you " -"may wait on a ``recv`` forever, because the socket will *not* tell you that " -"there's nothing more to read (for now). Now if you think about that a bit, " -"you'll come to realize a fundamental truth of sockets: *messages must either " -"be fixed length* (yuck), *or be delimited* (shrug), *or indicate how long " -"they are* (much better), *or end by shutting down the connection*. The " -"choice is entirely yours, (but some ways are righter than others)." -msgstr "" - -#: ../../howto/sockets.rst:180 -msgid "" -"Assuming you don't want to end the connection, the simplest solution is a " -"fixed length message::" +msgid "But if you plan to reuse your socket for further transfers, you need to realize that *there is no* :abbr:`EOT (End of Transfer)` *on a socket.* I repeat: if a socket ``send`` or ``recv`` returns after handling 0 bytes, the connection has been broken. If the connection has *not* been broken, you may wait on a ``recv`` forever, because the socket will *not* tell you that there's nothing more to read (for now). Now if you think about that a bit, you'll come to realize a fundamental truth of sockets: *messages must either be fixed length* (yuck), *or be delimited* (shrug), *or indicate how long they are* (much better), *or end by shutting down the connection*. The choice is entirely yours, (but some ways are righter than others)." +msgstr "" + +msgid "Assuming you don't want to end the connection, the simplest solution is a fixed length message::" msgstr "" -#: ../../howto/sockets.rst:183 msgid "" "class MySocket:\n" " \"\"\"demonstration class only\n" @@ -326,188 +179,69 @@ msgid "" " return b''.join(chunks)" msgstr "" -#: ../../howto/sockets.rst:217 -msgid "" -"The sending code here is usable for almost any messaging scheme - in Python " -"you send strings, and you can use ``len()`` to determine its length (even if " -"it has embedded ``\\0`` characters). It's mostly the receiving code that " -"gets more complex. (And in C, it's not much worse, except you can't use " -"``strlen`` if the message has embedded ``\\0``\\ s.)" +msgid "The sending code here is usable for almost any messaging scheme - in Python you send strings, and you can use ``len()`` to determine its length (even if it has embedded ``\\0`` characters). It's mostly the receiving code that gets more complex. (And in C, it's not much worse, except you can't use ``strlen`` if the message has embedded ``\\0``\\ s.)" msgstr "" -#: ../../howto/sockets.rst:223 -msgid "" -"The easiest enhancement is to make the first character of the message an " -"indicator of message type, and have the type determine the length. Now you " -"have two ``recv``\\ s - the first to get (at least) that first character so " -"you can look up the length, and the second in a loop to get the rest. If you " -"decide to go the delimited route, you'll be receiving in some arbitrary " -"chunk size, (4096 or 8192 is frequently a good match for network buffer " -"sizes), and scanning what you've received for a delimiter." +msgid "The easiest enhancement is to make the first character of the message an indicator of message type, and have the type determine the length. Now you have two ``recv``\\ s - the first to get (at least) that first character so you can look up the length, and the second in a loop to get the rest. If you decide to go the delimited route, you'll be receiving in some arbitrary chunk size, (4096 or 8192 is frequently a good match for network buffer sizes), and scanning what you've received for a delimiter." msgstr "" -#: ../../howto/sockets.rst:231 -msgid "" -"One complication to be aware of: if your conversational protocol allows " -"multiple messages to be sent back to back (without some kind of reply), and " -"you pass ``recv`` an arbitrary chunk size, you may end up reading the start " -"of a following message. You'll need to put that aside and hold onto it, " -"until it's needed." +msgid "One complication to be aware of: if your conversational protocol allows multiple messages to be sent back to back (without some kind of reply), and you pass ``recv`` an arbitrary chunk size, you may end up reading the start of a following message. You'll need to put that aside and hold onto it, until it's needed." msgstr "" -#: ../../howto/sockets.rst:237 -msgid "" -"Prefixing the message with its length (say, as 5 numeric characters) gets " -"more complex, because (believe it or not), you may not get all 5 characters " -"in one ``recv``. In playing around, you'll get away with it; but in high " -"network loads, your code will very quickly break unless you use two ``recv`` " -"loops - the first to determine the length, the second to get the data part " -"of the message. Nasty. This is also when you'll discover that ``send`` does " -"not always manage to get rid of everything in one pass. And despite having " -"read this, you will eventually get bit by it!" +msgid "Prefixing the message with its length (say, as 5 numeric characters) gets more complex, because (believe it or not), you may not get all 5 characters in one ``recv``. In playing around, you'll get away with it; but in high network loads, your code will very quickly break unless you use two ``recv`` loops - the first to determine the length, the second to get the data part of the message. Nasty. This is also when you'll discover that ``send`` does not always manage to get rid of everything in one pass. And despite having read this, you will eventually get bit by it!" msgstr "" -#: ../../howto/sockets.rst:246 -msgid "" -"In the interests of space, building your character, (and preserving my " -"competitive position), these enhancements are left as an exercise for the " -"reader. Lets move on to cleaning up." +msgid "In the interests of space, building your character, (and preserving my competitive position), these enhancements are left as an exercise for the reader. Lets move on to cleaning up." msgstr "" -#: ../../howto/sockets.rst:252 msgid "Binary Data" msgstr "" -#: ../../howto/sockets.rst:254 -msgid "" -"It is perfectly possible to send binary data over a socket. The major " -"problem is that not all machines use the same formats for binary data. For " -"example, `network byte order `_ is big-endian, with the most significant byte " -"first, so a 16 bit integer with the value ``1`` would be the two hex bytes " -"``00 01``. However, most common processors (x86/AMD64, ARM, RISC-V), are " -"little-endian, with the least significant byte first - that same ``1`` would " -"be ``01 00``." +msgid "It is perfectly possible to send binary data over a socket. The major problem is that not all machines use the same formats for binary data. For example, `network byte order `_ is big-endian, with the most significant byte first, so a 16 bit integer with the value ``1`` would be the two hex bytes ``00 01``. However, most common processors (x86/AMD64, ARM, RISC-V), are little-endian, with the least significant byte first - that same ``1`` would be ``01 00``." msgstr "" -#: ../../howto/sockets.rst:262 -msgid "" -"Socket libraries have calls for converting 16 and 32 bit integers - ``ntohl, " -"htonl, ntohs, htons`` where \"n\" means *network* and \"h\" means *host*, " -"\"s\" means *short* and \"l\" means *long*. Where network order is host " -"order, these do nothing, but where the machine is byte-reversed, these swap " -"the bytes around appropriately." +msgid "Socket libraries have calls for converting 16 and 32 bit integers - ``ntohl, htonl, ntohs, htons`` where \"n\" means *network* and \"h\" means *host*, \"s\" means *short* and \"l\" means *long*. Where network order is host order, these do nothing, but where the machine is byte-reversed, these swap the bytes around appropriately." msgstr "" -#: ../../howto/sockets.rst:268 -msgid "" -"In these days of 64-bit machines, the ASCII representation of binary data is " -"frequently smaller than the binary representation. That's because a " -"surprising amount of the time, most integers have the value 0, or maybe 1. " -"The string ``\"0\"`` would be two bytes, while a full 64-bit integer would " -"be 8. Of course, this doesn't fit well with fixed-length messages. " -"Decisions, decisions." +msgid "In these days of 64-bit machines, the ASCII representation of binary data is frequently smaller than the binary representation. That's because a surprising amount of the time, most integers have the value 0, or maybe 1. The string ``\"0\"`` would be two bytes, while a full 64-bit integer would be 8. Of course, this doesn't fit well with fixed-length messages. Decisions, decisions." msgstr "" -#: ../../howto/sockets.rst:277 msgid "Disconnecting" msgstr "" -#: ../../howto/sockets.rst:279 -msgid "" -"Strictly speaking, you're supposed to use ``shutdown`` on a socket before " -"you ``close`` it. The ``shutdown`` is an advisory to the socket at the " -"other end. Depending on the argument you pass it, it can mean \"I'm not " -"going to send anymore, but I'll still listen\", or \"I'm not listening, good " -"riddance!\". Most socket libraries, however, are so used to programmers " -"neglecting to use this piece of etiquette that normally a ``close`` is the " -"same as ``shutdown(); close()``. So in most situations, an explicit " -"``shutdown`` is not needed." +msgid "Strictly speaking, you're supposed to use ``shutdown`` on a socket before you ``close`` it. The ``shutdown`` is an advisory to the socket at the other end. Depending on the argument you pass it, it can mean \"I'm not going to send anymore, but I'll still listen\", or \"I'm not listening, good riddance!\". Most socket libraries, however, are so used to programmers neglecting to use this piece of etiquette that normally a ``close`` is the same as ``shutdown(); close()``. So in most situations, an explicit ``shutdown`` is not needed." msgstr "" -#: ../../howto/sockets.rst:287 -msgid "" -"One way to use ``shutdown`` effectively is in an HTTP-like exchange. The " -"client sends a request and then does a ``shutdown(1)``. This tells the " -"server \"This client is done sending, but can still receive.\" The server " -"can detect \"EOF\" by a receive of 0 bytes. It can assume it has the " -"complete request. The server sends a reply. If the ``send`` completes " -"successfully then, indeed, the client was still receiving." +msgid "One way to use ``shutdown`` effectively is in an HTTP-like exchange. The client sends a request and then does a ``shutdown(1)``. This tells the server \"This client is done sending, but can still receive.\" The server can detect \"EOF\" by a receive of 0 bytes. It can assume it has the complete request. The server sends a reply. If the ``send`` completes successfully then, indeed, the client was still receiving." msgstr "" -#: ../../howto/sockets.rst:294 -msgid "" -"Python takes the automatic shutdown a step further, and says that when a " -"socket is garbage collected, it will automatically do a ``close`` if it's " -"needed. But relying on this is a very bad habit. If your socket just " -"disappears without doing a ``close``, the socket at the other end may hang " -"indefinitely, thinking you're just being slow. *Please* ``close`` your " -"sockets when you're done." +msgid "Python takes the automatic shutdown a step further, and says that when a socket is garbage collected, it will automatically do a ``close`` if it's needed. But relying on this is a very bad habit. If your socket just disappears without doing a ``close``, the socket at the other end may hang indefinitely, thinking you're just being slow. *Please* ``close`` your sockets when you're done." msgstr "" -#: ../../howto/sockets.rst:302 msgid "When Sockets Die" msgstr "" -#: ../../howto/sockets.rst:304 -msgid "" -"Probably the worst thing about using blocking sockets is what happens when " -"the other side comes down hard (without doing a ``close``). Your socket is " -"likely to hang. TCP is a reliable protocol, and it will wait a long, long " -"time before giving up on a connection. If you're using threads, the entire " -"thread is essentially dead. There's not much you can do about it. As long as " -"you aren't doing something dumb, like holding a lock while doing a blocking " -"read, the thread isn't really consuming much in the way of resources. Do " -"*not* try to kill the thread - part of the reason that threads are more " -"efficient than processes is that they avoid the overhead associated with the " -"automatic recycling of resources. In other words, if you do manage to kill " -"the thread, your whole process is likely to be screwed up." -msgstr "" - -#: ../../howto/sockets.rst:318 +msgid "Probably the worst thing about using blocking sockets is what happens when the other side comes down hard (without doing a ``close``). Your socket is likely to hang. TCP is a reliable protocol, and it will wait a long, long time before giving up on a connection. If you're using threads, the entire thread is essentially dead. There's not much you can do about it. As long as you aren't doing something dumb, like holding a lock while doing a blocking read, the thread isn't really consuming much in the way of resources. Do *not* try to kill the thread - part of the reason that threads are more efficient than processes is that they avoid the overhead associated with the automatic recycling of resources. In other words, if you do manage to kill the thread, your whole process is likely to be screwed up." +msgstr "" + msgid "Non-blocking Sockets" msgstr "" -#: ../../howto/sockets.rst:320 -msgid "" -"If you've understood the preceding, you already know most of what you need " -"to know about the mechanics of using sockets. You'll still use the same " -"calls, in much the same ways. It's just that, if you do it right, your app " -"will be almost inside-out." +msgid "If you've understood the preceding, you already know most of what you need to know about the mechanics of using sockets. You'll still use the same calls, in much the same ways. It's just that, if you do it right, your app will be almost inside-out." msgstr "" -#: ../../howto/sockets.rst:325 -msgid "" -"In Python, you use ``socket.setblocking(False)`` to make it non-blocking. In " -"C, it's more complex, (for one thing, you'll need to choose between the BSD " -"flavor ``O_NONBLOCK`` and the almost indistinguishable POSIX flavor " -"``O_NDELAY``, which is completely different from ``TCP_NODELAY``), but it's " -"the exact same idea. You do this after creating the socket, but before using " -"it. (Actually, if you're nuts, you can switch back and forth.)" +msgid "In Python, you use ``socket.setblocking(False)`` to make it non-blocking. In C, it's more complex, (for one thing, you'll need to choose between the BSD flavor ``O_NONBLOCK`` and the almost indistinguishable POSIX flavor ``O_NDELAY``, which is completely different from ``TCP_NODELAY``), but it's the exact same idea. You do this after creating the socket, but before using it. (Actually, if you're nuts, you can switch back and forth.)" msgstr "" -#: ../../howto/sockets.rst:332 -msgid "" -"The major mechanical difference is that ``send``, ``recv``, ``connect`` and " -"``accept`` can return without having done anything. You have (of course) a " -"number of choices. You can check return code and error codes and generally " -"drive yourself crazy. If you don't believe me, try it sometime. Your app " -"will grow large, buggy and suck CPU. So let's skip the brain-dead solutions " -"and do it right." +msgid "The major mechanical difference is that ``send``, ``recv``, ``connect`` and ``accept`` can return without having done anything. You have (of course) a number of choices. You can check return code and error codes and generally drive yourself crazy. If you don't believe me, try it sometime. Your app will grow large, buggy and suck CPU. So let's skip the brain-dead solutions and do it right." msgstr "" -#: ../../howto/sockets.rst:339 msgid "Use ``select``." msgstr "" -#: ../../howto/sockets.rst:341 -msgid "" -"In C, coding ``select`` is fairly complex. In Python, it's a piece of cake, " -"but it's close enough to the C version that if you understand ``select`` in " -"Python, you'll have little trouble with it in C::" +msgid "In C, coding ``select`` is fairly complex. In Python, it's a piece of cake, but it's close enough to the C version that if you understand ``select`` in Python, you'll have little trouble with it in C::" msgstr "" -#: ../../howto/sockets.rst:345 msgid "" "ready_to_read, ready_to_write, in_error = \\\n" " select.select(\n" @@ -517,57 +251,20 @@ msgid "" " timeout)" msgstr "" -#: ../../howto/sockets.rst:352 -msgid "" -"You pass ``select`` three lists: the first contains all sockets that you " -"might want to try reading; the second all the sockets you might want to try " -"writing to, and the last (normally left empty) those that you want to check " -"for errors. You should note that a socket can go into more than one list. " -"The ``select`` call is blocking, but you can give it a timeout. This is " -"generally a sensible thing to do - give it a nice long timeout (say a " -"minute) unless you have good reason to do otherwise." +msgid "You pass ``select`` three lists: the first contains all sockets that you might want to try reading; the second all the sockets you might want to try writing to, and the last (normally left empty) those that you want to check for errors. You should note that a socket can go into more than one list. The ``select`` call is blocking, but you can give it a timeout. This is generally a sensible thing to do - give it a nice long timeout (say a minute) unless you have good reason to do otherwise." msgstr "" -#: ../../howto/sockets.rst:360 -msgid "" -"In return, you will get three lists. They contain the sockets that are " -"actually readable, writable and in error. Each of these lists is a subset " -"(possibly empty) of the corresponding list you passed in." +msgid "In return, you will get three lists. They contain the sockets that are actually readable, writable and in error. Each of these lists is a subset (possibly empty) of the corresponding list you passed in." msgstr "" -#: ../../howto/sockets.rst:364 -msgid "" -"If a socket is in the output readable list, you can be as-close-to-certain-" -"as-we-ever-get-in-this-business that a ``recv`` on that socket will return " -"*something*. Same idea for the writable list. You'll be able to send " -"*something*. Maybe not all you want to, but *something* is better than " -"nothing. (Actually, any reasonably healthy socket will return as writable - " -"it just means outbound network buffer space is available.)" +msgid "If a socket is in the output readable list, you can be as-close-to-certain-as-we-ever-get-in-this-business that a ``recv`` on that socket will return *something*. Same idea for the writable list. You'll be able to send *something*. Maybe not all you want to, but *something* is better than nothing. (Actually, any reasonably healthy socket will return as writable - it just means outbound network buffer space is available.)" msgstr "" -#: ../../howto/sockets.rst:371 -msgid "" -"If you have a \"server\" socket, put it in the potential_readers list. If it " -"comes out in the readable list, your ``accept`` will (almost certainly) " -"work. If you have created a new socket to ``connect`` to someone else, put " -"it in the potential_writers list. If it shows up in the writable list, you " -"have a decent chance that it has connected." +msgid "If you have a \"server\" socket, put it in the potential_readers list. If it comes out in the readable list, your ``accept`` will (almost certainly) work. If you have created a new socket to ``connect`` to someone else, put it in the potential_writers list. If it shows up in the writable list, you have a decent chance that it has connected." msgstr "" -#: ../../howto/sockets.rst:377 -msgid "" -"Actually, ``select`` can be handy even with blocking sockets. It's one way " -"of determining whether you will block - the socket returns as readable when " -"there's something in the buffers. However, this still doesn't help with the " -"problem of determining whether the other end is done, or just busy with " -"something else." +msgid "Actually, ``select`` can be handy even with blocking sockets. It's one way of determining whether you will block - the socket returns as readable when there's something in the buffers. However, this still doesn't help with the problem of determining whether the other end is done, or just busy with something else." msgstr "" -#: ../../howto/sockets.rst:382 -msgid "" -"**Portability alert**: On Unix, ``select`` works both with the sockets and " -"files. Don't try this on Windows. On Windows, ``select`` works with sockets " -"only. Also note that in C, many of the more advanced socket options are done " -"differently on Windows. In fact, on Windows I usually use threads (which " -"work very, very well) with my sockets." +msgid "**Portability alert**: On Unix, ``select`` works both with the sockets and files. Don't try this on Windows. On Windows, ``select`` works with sockets only. Also note that in C, many of the more advanced socket options are done differently on Windows. In fact, on Windows I usually use threads (which work very, very well) with my sockets." msgstr "" diff --git a/howto/sorting.po b/howto/sorting.po index c486afdf..e2137d94 100644 --- a/howto/sorting.po +++ b/howto/sorting.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:53+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,56 +24,35 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../howto/sorting.rst:4 msgid "Sorting Techniques" msgstr "" -#: ../../howto/sorting.rst:0 msgid "Author" msgstr "" -#: ../../howto/sorting.rst:6 msgid "Andrew Dalke and Raymond Hettinger" msgstr "" -#: ../../howto/sorting.rst:9 -msgid "" -"Python lists have a built-in :meth:`list.sort` method that modifies the list " -"in-place. There is also a :func:`sorted` built-in function that builds a " -"new sorted list from an iterable." +msgid "Python lists have a built-in :meth:`list.sort` method that modifies the list in-place. There is also a :func:`sorted` built-in function that builds a new sorted list from an iterable." msgstr "" -#: ../../howto/sorting.rst:13 -msgid "" -"In this document, we explore the various techniques for sorting data using " -"Python." +msgid "In this document, we explore the various techniques for sorting data using Python." msgstr "" -#: ../../howto/sorting.rst:17 msgid "Sorting Basics" msgstr "" -#: ../../howto/sorting.rst:19 -msgid "" -"A simple ascending sort is very easy: just call the :func:`sorted` function. " -"It returns a new sorted list:" +msgid "A simple ascending sort is very easy: just call the :func:`sorted` function. It returns a new sorted list:" msgstr "" -#: ../../howto/sorting.rst:22 msgid "" ">>> sorted([5, 2, 3, 1, 4])\n" "[1, 2, 3, 4, 5]" msgstr "" -#: ../../howto/sorting.rst:27 -msgid "" -"You can also use the :meth:`list.sort` method. It modifies the list in-place " -"(and returns ``None`` to avoid confusion). Usually it's less convenient " -"than :func:`sorted` - but if you don't need the original list, it's slightly " -"more efficient." +msgid "You can also use the :meth:`list.sort` method. It modifies the list in-place (and returns ``None`` to avoid confusion). Usually it's less convenient than :func:`sorted` - but if you don't need the original list, it's slightly more efficient." msgstr "" -#: ../../howto/sorting.rst:32 msgid "" ">>> a = [5, 2, 3, 1, 4]\n" ">>> a.sort()\n" @@ -81,58 +60,34 @@ msgid "" "[1, 2, 3, 4, 5]" msgstr "" -#: ../../howto/sorting.rst:39 -msgid "" -"Another difference is that the :meth:`list.sort` method is only defined for " -"lists. In contrast, the :func:`sorted` function accepts any iterable." +msgid "Another difference is that the :meth:`list.sort` method is only defined for lists. In contrast, the :func:`sorted` function accepts any iterable." msgstr "" -#: ../../howto/sorting.rst:42 msgid "" ">>> sorted({1: 'D', 2: 'B', 3: 'B', 4: 'E', 5: 'A'})\n" "[1, 2, 3, 4, 5]" msgstr "" -#: ../../howto/sorting.rst:48 msgid "Key Functions" msgstr "" -#: ../../howto/sorting.rst:50 -msgid "" -"The :meth:`list.sort` method and the " -"functions :func:`sorted`, :func:`min`, :func:`max`, :func:`heapq.nsmallest`, " -"and :func:`heapq.nlargest` have a *key* parameter to specify a function (or " -"other callable) to be called on each list element prior to making " -"comparisons." +msgid "The :meth:`list.sort` method and the functions :func:`sorted`, :func:`min`, :func:`max`, :func:`heapq.nsmallest`, and :func:`heapq.nlargest` have a *key* parameter to specify a function (or other callable) to be called on each list element prior to making comparisons." msgstr "" -#: ../../howto/sorting.rst:56 -msgid "" -"For example, here's a case-insensitive string comparison " -"using :meth:`str.casefold`:" +msgid "For example, here's a case-insensitive string comparison using :meth:`str.casefold`:" msgstr "" -#: ../../howto/sorting.rst:59 msgid "" ">>> sorted(\"This is a test string from Andrew\".split(), key=str.casefold)\n" "['a', 'Andrew', 'from', 'is', 'string', 'test', 'This']" msgstr "" -#: ../../howto/sorting.rst:64 -msgid "" -"The value of the *key* parameter should be a function (or other callable) " -"that takes a single argument and returns a key to use for sorting purposes. " -"This technique is fast because the key function is called exactly once for " -"each input record." +msgid "The value of the *key* parameter should be a function (or other callable) that takes a single argument and returns a key to use for sorting purposes. This technique is fast because the key function is called exactly once for each input record." msgstr "" -#: ../../howto/sorting.rst:69 -msgid "" -"A common pattern is to sort complex objects using some of the object's " -"indices as keys. For example:" +msgid "A common pattern is to sort complex objects using some of the object's indices as keys. For example:" msgstr "" -#: ../../howto/sorting.rst:72 msgid "" ">>> student_tuples = [\n" "... ('john', 'A', 15),\n" @@ -143,12 +98,9 @@ msgid "" "[('dave', 'B', 10), ('jane', 'B', 12), ('john', 'A', 15)]" msgstr "" -#: ../../howto/sorting.rst:82 -msgid "" -"The same technique works for objects with named attributes. For example:" +msgid "The same technique works for objects with named attributes. For example:" msgstr "" -#: ../../howto/sorting.rst:84 msgid "" ">>> class Student:\n" "... def __init__(self, name, grade, age):\n" @@ -163,36 +115,22 @@ msgid "" "... Student('jane', 'B', 12),\n" "... Student('dave', 'B', 10),\n" "... ]\n" -">>> sorted(student_objects, key=lambda student: student.age) # sort by " -"age\n" +">>> sorted(student_objects, key=lambda student: student.age) # sort by age\n" "[('dave', 'B', 10), ('jane', 'B', 12), ('john', 'A', 15)]" msgstr "" -#: ../../howto/sorting.rst:102 -msgid "" -"Objects with named attributes can be made by a regular class as shown above, " -"or they can be instances of :class:`~dataclasses.dataclass` or " -"a :term:`named tuple`." +msgid "Objects with named attributes can be made by a regular class as shown above, or they can be instances of :class:`~dataclasses.dataclass` or a :term:`named tuple`." msgstr "" -#: ../../howto/sorting.rst:107 msgid "Operator Module Functions and Partial Function Evaluation" msgstr "" -#: ../../howto/sorting.rst:109 -msgid "" -"The :term:`key function` patterns shown above are very common, so Python " -"provides convenience functions to make accessor functions easier and faster. " -"The :mod:`operator` module " -"has :func:`~operator.itemgetter`, :func:`~operator.attrgetter`, and " -"a :func:`~operator.methodcaller` function." +msgid "The :term:`key function` patterns shown above are very common, so Python provides convenience functions to make accessor functions easier and faster. The :mod:`operator` module has :func:`~operator.itemgetter`, :func:`~operator.attrgetter`, and a :func:`~operator.methodcaller` function." msgstr "" -#: ../../howto/sorting.rst:114 msgid "Using those functions, the above examples become simpler and faster:" msgstr "" -#: ../../howto/sorting.rst:116 msgid "" ">>> from operator import itemgetter, attrgetter\n" "\n" @@ -203,13 +141,9 @@ msgid "" "[('dave', 'B', 10), ('jane', 'B', 12), ('john', 'A', 15)]" msgstr "" -#: ../../howto/sorting.rst:126 -msgid "" -"The operator module functions allow multiple levels of sorting. For example, " -"to sort by *grade* then by *age*:" +msgid "The operator module functions allow multiple levels of sorting. For example, to sort by *grade* then by *age*:" msgstr "" -#: ../../howto/sorting.rst:129 msgid "" ">>> sorted(student_tuples, key=itemgetter(1,2))\n" "[('john', 'A', 15), ('dave', 'B', 10), ('jane', 'B', 12)]\n" @@ -218,15 +152,9 @@ msgid "" "[('john', 'A', 15), ('dave', 'B', 10), ('jane', 'B', 12)]" msgstr "" -#: ../../howto/sorting.rst:137 -msgid "" -"The :mod:`functools` module provides another helpful tool for making key-" -"functions. The :func:`~functools.partial` function can reduce the `arity " -"`_ of a multi-argument function making " -"it suitable for use as a key-function." +msgid "The :mod:`functools` module provides another helpful tool for making key-functions. The :func:`~functools.partial` function can reduce the `arity `_ of a multi-argument function making it suitable for use as a key-function." msgstr "" -#: ../../howto/sorting.rst:142 msgid "" ">>> from functools import partial\n" ">>> from unicodedata import normalize\n" @@ -240,18 +168,12 @@ msgid "" "['Abe', 'Eloise', 'Nubia', 'Núñez', 'Zeke', 'Zoë', 'Åbjørn', 'Élana']" msgstr "" -#: ../../howto/sorting.rst:156 msgid "Ascending and Descending" msgstr "" -#: ../../howto/sorting.rst:158 -msgid "" -"Both :meth:`list.sort` and :func:`sorted` accept a *reverse* parameter with " -"a boolean value. This is used to flag descending sorts. For example, to get " -"the student data in reverse *age* order:" +msgid "Both :meth:`list.sort` and :func:`sorted` accept a *reverse* parameter with a boolean value. This is used to flag descending sorts. For example, to get the student data in reverse *age* order:" msgstr "" -#: ../../howto/sorting.rst:162 msgid "" ">>> sorted(student_tuples, key=itemgetter(2), reverse=True)\n" "[('john', 'A', 15), ('jane', 'B', 12), ('dave', 'B', 10)]\n" @@ -260,53 +182,33 @@ msgid "" "[('john', 'A', 15), ('jane', 'B', 12), ('dave', 'B', 10)]" msgstr "" -#: ../../howto/sorting.rst:171 msgid "Sort Stability and Complex Sorts" msgstr "" -#: ../../howto/sorting.rst:173 -msgid "" -"Sorts are guaranteed to be `stable `_\\. That means that when multiple records have " -"the same key, their original order is preserved." +msgid "Sorts are guaranteed to be `stable `_\\. That means that when multiple records have the same key, their original order is preserved." msgstr "" -#: ../../howto/sorting.rst:177 msgid "" ">>> data = [('red', 1), ('blue', 1), ('red', 2), ('blue', 2)]\n" ">>> sorted(data, key=itemgetter(0))\n" "[('blue', 1), ('blue', 2), ('red', 1), ('red', 2)]" msgstr "" -#: ../../howto/sorting.rst:183 -msgid "" -"Notice how the two records for *blue* retain their original order so that " -"``('blue', 1)`` is guaranteed to precede ``('blue', 2)``." +msgid "Notice how the two records for *blue* retain their original order so that ``('blue', 1)`` is guaranteed to precede ``('blue', 2)``." msgstr "" -#: ../../howto/sorting.rst:186 -msgid "" -"This wonderful property lets you build complex sorts in a series of sorting " -"steps. For example, to sort the student data by descending *grade* and then " -"ascending *age*, do the *age* sort first and then sort again using *grade*:" +msgid "This wonderful property lets you build complex sorts in a series of sorting steps. For example, to sort the student data by descending *grade* and then ascending *age*, do the *age* sort first and then sort again using *grade*:" msgstr "" -#: ../../howto/sorting.rst:190 msgid "" -">>> s = sorted(student_objects, key=attrgetter('age')) # sort on " -"secondary key\n" -">>> sorted(s, key=attrgetter('grade'), reverse=True) # now sort on " -"primary key, descending\n" +">>> s = sorted(student_objects, key=attrgetter('age')) # sort on secondary key\n" +">>> sorted(s, key=attrgetter('grade'), reverse=True) # now sort on primary key, descending\n" "[('dave', 'B', 10), ('jane', 'B', 12), ('john', 'A', 15)]" msgstr "" -#: ../../howto/sorting.rst:196 -msgid "" -"This can be abstracted out into a wrapper function that can take a list and " -"tuples of field and order to sort them on multiple passes." +msgid "This can be abstracted out into a wrapper function that can take a list and tuples of field and order to sort them on multiple passes." msgstr "" -#: ../../howto/sorting.rst:199 msgid "" ">>> def multisort(xs, specs):\n" "... for key, reverse in reversed(specs):\n" @@ -317,160 +219,91 @@ msgid "" "[('dave', 'B', 10), ('jane', 'B', 12), ('john', 'A', 15)]" msgstr "" -#: ../../howto/sorting.rst:209 -msgid "" -"The `Timsort `_ algorithm used in " -"Python does multiple sorts efficiently because it can take advantage of any " -"ordering already present in a dataset." +msgid "The `Timsort `_ algorithm used in Python does multiple sorts efficiently because it can take advantage of any ordering already present in a dataset." msgstr "" -#: ../../howto/sorting.rst:214 msgid "Decorate-Sort-Undecorate" msgstr "" -#: ../../howto/sorting.rst:216 msgid "This idiom is called Decorate-Sort-Undecorate after its three steps:" msgstr "" -#: ../../howto/sorting.rst:218 -msgid "" -"First, the initial list is decorated with new values that control the sort " -"order." +msgid "First, the initial list is decorated with new values that control the sort order." msgstr "" -#: ../../howto/sorting.rst:220 msgid "Second, the decorated list is sorted." msgstr "" -#: ../../howto/sorting.rst:222 -msgid "" -"Finally, the decorations are removed, creating a list that contains only the " -"initial values in the new order." +msgid "Finally, the decorations are removed, creating a list that contains only the initial values in the new order." msgstr "" -#: ../../howto/sorting.rst:225 -msgid "" -"For example, to sort the student data by *grade* using the DSU approach:" +msgid "For example, to sort the student data by *grade* using the DSU approach:" msgstr "" -#: ../../howto/sorting.rst:227 msgid "" -">>> decorated = [(student.grade, i, student) for i, student in " -"enumerate(student_objects)]\n" +">>> decorated = [(student.grade, i, student) for i, student in enumerate(student_objects)]\n" ">>> decorated.sort()\n" ">>> [student for grade, i, student in decorated] # undecorate\n" "[('john', 'A', 15), ('jane', 'B', 12), ('dave', 'B', 10)]" msgstr "" -#: ../../howto/sorting.rst:234 -msgid "" -"This idiom works because tuples are compared lexicographically; the first " -"items are compared; if they are the same then the second items are compared, " -"and so on." +msgid "This idiom works because tuples are compared lexicographically; the first items are compared; if they are the same then the second items are compared, and so on." msgstr "" -#: ../../howto/sorting.rst:238 -msgid "" -"It is not strictly necessary in all cases to include the index *i* in the " -"decorated list, but including it gives two benefits:" +msgid "It is not strictly necessary in all cases to include the index *i* in the decorated list, but including it gives two benefits:" msgstr "" -#: ../../howto/sorting.rst:241 -msgid "" -"The sort is stable -- if two items have the same key, their order will be " -"preserved in the sorted list." +msgid "The sort is stable -- if two items have the same key, their order will be preserved in the sorted list." msgstr "" -#: ../../howto/sorting.rst:244 -msgid "" -"The original items do not have to be comparable because the ordering of the " -"decorated tuples will be determined by at most the first two items. So for " -"example the original list could contain complex numbers which cannot be " -"sorted directly." +msgid "The original items do not have to be comparable because the ordering of the decorated tuples will be determined by at most the first two items. So for example the original list could contain complex numbers which cannot be sorted directly." msgstr "" -#: ../../howto/sorting.rst:249 -msgid "" -"Another name for this idiom is `Schwartzian transform `_\\, after Randal L. Schwartz, " -"who popularized it among Perl programmers." +msgid "Another name for this idiom is `Schwartzian transform `_\\, after Randal L. Schwartz, who popularized it among Perl programmers." msgstr "" -#: ../../howto/sorting.rst:253 -msgid "" -"Now that Python sorting provides key-functions, this technique is not often " -"needed." +msgid "Now that Python sorting provides key-functions, this technique is not often needed." msgstr "" -#: ../../howto/sorting.rst:256 msgid "Comparison Functions" msgstr "" -#: ../../howto/sorting.rst:258 -msgid "" -"Unlike key functions that return an absolute value for sorting, a comparison " -"function computes the relative ordering for two inputs." +msgid "Unlike key functions that return an absolute value for sorting, a comparison function computes the relative ordering for two inputs." msgstr "" -#: ../../howto/sorting.rst:261 -msgid "" -"For example, a `balance scale `_ compares two samples giving a " -"relative ordering: lighter, equal, or heavier. Likewise, a comparison " -"function such as ``cmp(a, b)`` will return a negative value for less-than, " -"zero if the inputs are equal, or a positive value for greater-than." +msgid "For example, a `balance scale `_ compares two samples giving a relative ordering: lighter, equal, or heavier. Likewise, a comparison function such as ``cmp(a, b)`` will return a negative value for less-than, zero if the inputs are equal, or a positive value for greater-than." msgstr "" -#: ../../howto/sorting.rst:268 -msgid "" -"It is common to encounter comparison functions when translating algorithms " -"from other languages. Also, some libraries provide comparison functions as " -"part of their API. For example, :func:`locale.strcoll` is a comparison " -"function." +msgid "It is common to encounter comparison functions when translating algorithms from other languages. Also, some libraries provide comparison functions as part of their API. For example, :func:`locale.strcoll` is a comparison function." msgstr "" -#: ../../howto/sorting.rst:272 -msgid "" -"To accommodate those situations, Python " -"provides :class:`functools.cmp_to_key` to wrap the comparison function to " -"make it usable as a key function::" +msgid "To accommodate those situations, Python provides :class:`functools.cmp_to_key` to wrap the comparison function to make it usable as a key function::" msgstr "" -#: ../../howto/sorting.rst:276 msgid "sorted(words, key=cmp_to_key(strcoll)) # locale-aware sort order" msgstr "" -#: ../../howto/sorting.rst:279 msgid "Strategies For Unorderable Types and Values" msgstr "" -#: ../../howto/sorting.rst:281 -msgid "" -"A number of type and value issues can arise when sorting. Here are some " -"strategies that can help:" +msgid "A number of type and value issues can arise when sorting. Here are some strategies that can help:" msgstr "" -#: ../../howto/sorting.rst:284 msgid "Convert non-comparable input types to strings prior to sorting:" msgstr "" -#: ../../howto/sorting.rst:286 msgid "" ">>> data = ['twelve', '11', 10]\n" ">>> sorted(map(str, data))\n" "['10', '11', 'twelve']" msgstr "" -#: ../../howto/sorting.rst:292 -msgid "" -"This is needed because most cross-type comparisons raise a :exc:`TypeError`." +msgid "This is needed because most cross-type comparisons raise a :exc:`TypeError`." msgstr "" -#: ../../howto/sorting.rst:295 msgid "Remove special values prior to sorting:" msgstr "" -#: ../../howto/sorting.rst:297 msgid "" ">>> from math import isnan\n" ">>> from itertools import filterfalse\n" @@ -479,125 +312,78 @@ msgid "" "[1.1, 2.2, 3.3]" msgstr "" -#: ../../howto/sorting.rst:305 -msgid "" -"This is needed because the `IEEE-754 standard `_ specifies that, \"Every NaN shall compare unordered with " -"everything, including itself.\"" +msgid "This is needed because the `IEEE-754 standard `_ specifies that, \"Every NaN shall compare unordered with everything, including itself.\"" msgstr "" -#: ../../howto/sorting.rst:309 msgid "Likewise, ``None`` can be stripped from datasets as well:" msgstr "" -#: ../../howto/sorting.rst:311 msgid "" ">>> data = [3.3, None, 1.1, 2.2]\n" ">>> sorted(x for x in data if x is not None)\n" "[1.1, 2.2, 3.3]" msgstr "" -#: ../../howto/sorting.rst:317 msgid "This is needed because ``None`` is not comparable to other types." msgstr "" -#: ../../howto/sorting.rst:319 msgid "Convert mapping types into sorted item lists before sorting:" msgstr "" -#: ../../howto/sorting.rst:321 msgid "" ">>> data = [{'a': 1}, {'b': 2}]\n" ">>> sorted(data, key=lambda d: sorted(d.items()))\n" "[{'a': 1}, {'b': 2}]" msgstr "" -#: ../../howto/sorting.rst:327 -msgid "" -"This is needed because dict-to-dict comparisons raise a :exc:`TypeError`." +msgid "This is needed because dict-to-dict comparisons raise a :exc:`TypeError`." msgstr "" -#: ../../howto/sorting.rst:330 msgid "Convert set types into sorted lists before sorting:" msgstr "" -#: ../../howto/sorting.rst:332 msgid "" ">>> data = [{'a', 'b', 'c'}, {'b', 'c', 'd'}]\n" ">>> sorted(map(sorted, data))\n" "[['a', 'b', 'c'], ['b', 'c', 'd']]" msgstr "" -#: ../../howto/sorting.rst:338 -msgid "" -"This is needed because the elements contained in set types do not have a " -"deterministic order. For example, ``list({'a', 'b'})`` may produce either " -"``['a', 'b']`` or ``['b', 'a']``." +msgid "This is needed because the elements contained in set types do not have a deterministic order. For example, ``list({'a', 'b'})`` may produce either ``['a', 'b']`` or ``['b', 'a']``." msgstr "" -#: ../../howto/sorting.rst:343 msgid "Odds and Ends" msgstr "" -#: ../../howto/sorting.rst:345 -msgid "" -"For locale aware sorting, use :func:`locale.strxfrm` for a key function " -"or :func:`locale.strcoll` for a comparison function. This is necessary " -"because \"alphabetical\" sort orderings can vary across cultures even if the " -"underlying alphabet is the same." +msgid "For locale aware sorting, use :func:`locale.strxfrm` for a key function or :func:`locale.strcoll` for a comparison function. This is necessary because \"alphabetical\" sort orderings can vary across cultures even if the underlying alphabet is the same." msgstr "" -#: ../../howto/sorting.rst:350 -msgid "" -"The *reverse* parameter still maintains sort stability (so that records with " -"equal keys retain the original order). Interestingly, that effect can be " -"simulated without the parameter by using the builtin :func:`reversed` " -"function twice:" +msgid "The *reverse* parameter still maintains sort stability (so that records with equal keys retain the original order). Interestingly, that effect can be simulated without the parameter by using the builtin :func:`reversed` function twice:" msgstr "" -#: ../../howto/sorting.rst:355 msgid "" ">>> data = [('red', 1), ('blue', 1), ('red', 2), ('blue', 2)]\n" ">>> standard_way = sorted(data, key=itemgetter(0), reverse=True)\n" -">>> double_reversed = list(reversed(sorted(reversed(data), " -"key=itemgetter(0))))\n" +">>> double_reversed = list(reversed(sorted(reversed(data), key=itemgetter(0))))\n" ">>> assert standard_way == double_reversed\n" ">>> standard_way\n" "[('red', 1), ('red', 2), ('blue', 1), ('blue', 2)]" msgstr "" -#: ../../howto/sorting.rst:364 -msgid "" -"The sort routines use ``<`` when making comparisons between two objects. So, " -"it is easy to add a standard sort order to a class by defining " -"an :meth:`~object.__lt__` method:" +msgid "The sort routines use ``<`` when making comparisons between two objects. So, it is easy to add a standard sort order to a class by defining an :meth:`~object.__lt__` method:" msgstr "" -#: ../../howto/sorting.rst:368 msgid "" ">>> Student.__lt__ = lambda self, other: self.age < other.age\n" ">>> sorted(student_objects)\n" "[('dave', 'B', 10), ('jane', 'B', 12), ('john', 'A', 15)]" msgstr "" -#: ../../howto/sorting.rst:374 -msgid "" -"However, note that ``<`` can fall back to using :meth:`~object.__gt__` " -"if :meth:`~object.__lt__` is not implemented (see :func:`object.__lt__` for " -"details on the mechanics). To avoid surprises, :pep:`8` recommends that all " -"six comparison methods be implemented. The :deco:`~functools.total_ordering` " -"decorator is provided to make that task easier." +msgid "However, note that ``<`` can fall back to using :meth:`~object.__gt__` if :meth:`~object.__lt__` is not implemented (see :func:`object.__lt__` for details on the mechanics). To avoid surprises, :pep:`8` recommends that all six comparison methods be implemented. The :deco:`~functools.total_ordering` decorator is provided to make that task easier." msgstr "" -#: ../../howto/sorting.rst:381 -msgid "" -"Key functions need not depend directly on the objects being sorted. A key " -"function can also access external resources. For instance, if the student " -"grades are stored in a dictionary, they can be used to sort a separate list " -"of student names:" +msgid "Key functions need not depend directly on the objects being sorted. A key function can also access external resources. For instance, if the student grades are stored in a dictionary, they can be used to sort a separate list of student names:" msgstr "" -#: ../../howto/sorting.rst:386 msgid "" ">>> students = ['dave', 'john', 'jane']\n" ">>> newgrades = {'john': 'F', 'jane':'A', 'dave': 'C'}\n" @@ -605,36 +391,17 @@ msgid "" "['jane', 'dave', 'john']" msgstr "" -#: ../../howto/sorting.rst:394 msgid "Partial Sorts" msgstr "" -#: ../../howto/sorting.rst:396 -msgid "" -"Some applications require only some of the data to be ordered. The standard " -"library provides several tools that do less work than a full sort:" +msgid "Some applications require only some of the data to be ordered. The standard library provides several tools that do less work than a full sort:" msgstr "" -#: ../../howto/sorting.rst:399 -msgid "" -":func:`min` and :func:`max` return the smallest and largest values, " -"respectively. These functions make a single pass over the input data and " -"require almost no auxiliary memory." +msgid ":func:`min` and :func:`max` return the smallest and largest values, respectively. These functions make a single pass over the input data and require almost no auxiliary memory." msgstr "" -#: ../../howto/sorting.rst:403 -msgid "" -":func:`heapq.nsmallest` and :func:`heapq.nlargest` return the *n* smallest " -"and largest values, respectively. These functions make a single pass over " -"the data keeping only *n* elements in memory at a time. For values of *n* " -"that are small relative to the number of inputs, these functions make far " -"fewer comparisons than a full sort." +msgid ":func:`heapq.nsmallest` and :func:`heapq.nlargest` return the *n* smallest and largest values, respectively. These functions make a single pass over the data keeping only *n* elements in memory at a time. For values of *n* that are small relative to the number of inputs, these functions make far fewer comparisons than a full sort." msgstr "" -#: ../../howto/sorting.rst:409 -msgid "" -":func:`heapq.heappush` and :func:`heapq.heappop` create and maintain a " -"partially sorted arrangement of data that keeps the smallest element at " -"position ``0``. These functions are suitable for implementing priority " -"queues which are commonly used for task scheduling." +msgid ":func:`heapq.heappush` and :func:`heapq.heappop` create and maintain a partially sorted arrangement of data that keeps the smallest element at position ``0``. These functions are suitable for implementing priority queues which are commonly used for task scheduling." msgstr "" diff --git a/howto/timerfd.po b/howto/timerfd.po index 61c782d4..4950f295 100644 --- a/howto/timerfd.po +++ b/howto/timerfd.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2024-05-11 01:08+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,34 +23,24 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../howto/timerfd.rst:5 msgid "timer file descriptor HOWTO" msgstr "" -#: ../../howto/timerfd.rst:0 msgid "Release" msgstr "" -#: ../../howto/timerfd.rst:7 msgid "1.13" msgstr "" -#: ../../howto/timerfd.rst:9 -msgid "" -"This HOWTO discusses Python's support for the linux timer file descriptor." +msgid "This HOWTO discusses Python's support for the linux timer file descriptor." msgstr "" -#: ../../howto/timerfd.rst:13 msgid "Examples" msgstr "" -#: ../../howto/timerfd.rst:15 -msgid "" -"The following example shows how to use a timer file descriptor to execute a " -"function twice a second:" +msgid "The following example shows how to use a timer file descriptor to execute a function twice a second:" msgstr "" -#: ../../howto/timerfd.rst:18 msgid "" "# Practical scripts should use really use a non-blocking timer,\n" "# we use a blocking timer here for simplicity.\n" @@ -73,28 +63,19 @@ msgid "" " os.close(fd)" msgstr "" -#: ../../howto/timerfd.rst:40 -msgid "" -"To avoid the precision loss caused by the :class:`float` type, timer file " -"descriptors allow specifying initial expiration and interval in integer " -"nanoseconds with ``_ns`` variants of the functions." +msgid "To avoid the precision loss caused by the :class:`float` type, timer file descriptors allow specifying initial expiration and interval in integer nanoseconds with ``_ns`` variants of the functions." msgstr "" -#: ../../howto/timerfd.rst:44 -msgid "" -"This example shows how :func:`~select.epoll` can be used with timer file " -"descriptors to wait until the file descriptor is ready for reading:" +msgid "This example shows how :func:`~select.epoll` can be used with timer file descriptors to wait until the file descriptor is ready for reading:" msgstr "" -#: ../../howto/timerfd.rst:47 msgid "" "import os, time, select, socket, sys\n" "\n" "# Create an epoll object\n" "ep = select.epoll()\n" "\n" -"# In this example, use loopback address to send \"stop\" command to the " -"server.\n" +"# In this example, use loopback address to send \"stop\" command to the server.\n" "#\n" "# $ telnet 127.0.0.1 1234\n" "# Trying 127.0.0.1...\n" @@ -133,29 +114,22 @@ msgid "" " # Wait for the timer to expire for 3 seconds.\n" " # epoll.poll() returns a list of (fd, event) pairs.\n" " # fd is a file descriptor.\n" -" # sock and conn[=returned value of socket.accept()] are socket " -"objects, not file descriptors.\n" -" # So use sock.fileno() and conn.fileno() to get the file " -"descriptors.\n" +" # sock and conn[=returned value of socket.accept()] are socket objects, not file descriptors.\n" +" # So use sock.fileno() and conn.fileno() to get the file descriptors.\n" " events = ep.poll(timeout)\n" "\n" -" # If more than one timer file descriptors are ready for reading at " -"once,\n" +" # If more than one timer file descriptors are ready for reading at once,\n" " # epoll.poll() returns a list of (fd, event) pairs.\n" " #\n" " # In this example settings,\n" -" # 1st timer fires every 0.25 seconds in 0.25 seconds. (0.25, 0.5, " -"0.75, 1.0, ...)\n" -" # 2nd timer every 0.5 seconds in 0.5 seconds. (0.5, 1.0, 1.5, " -"2.0, ...)\n" -" # 3rd timer every 0.75 seconds in 0.75 seconds. (0.75, 1.5, 2.25, " -"3.0, ...)\n" +" # 1st timer fires every 0.25 seconds in 0.25 seconds. (0.25, 0.5, 0.75, 1.0, ...)\n" +" # 2nd timer every 0.5 seconds in 0.5 seconds. (0.5, 1.0, 1.5, 2.0, ...)\n" +" # 3rd timer every 0.75 seconds in 0.75 seconds. (0.75, 1.5, 2.25, 3.0, ...)\n" " #\n" " # In 0.25 seconds, only 1st timer fires.\n" " # In 0.5 seconds, 1st timer and 2nd timer fires at once.\n" " # In 0.75 seconds, 1st timer and 3rd timer fires at once.\n" -" # In 1.5 seconds, 1st timer, 2nd timer and 3rd timer fires at " -"once.\n" +" # In 1.5 seconds, 1st timer, 2nd timer and 3rd timer fires at once.\n" " #\n" " # If a timer file descriptor is signaled more than once since\n" " # the last os.read() call, os.read() returns the number of signaled\n" @@ -175,8 +149,7 @@ msgid "" " print(f\"Reading data {fd}\")\n" " data = conn.recv(1024)\n" " if data:\n" -" # You should catch UnicodeDecodeError exception for " -"safety.\n" +" # You should catch UnicodeDecodeError exception for safety.\n" " cmd = data.decode()\n" " if cmd.startswith(\"stop\"):\n" " print(f\"Stopping server\")\n" @@ -191,10 +164,8 @@ msgid "" " conn = None\n" " elif fd in fds:\n" " print(f\"Reading timer {fd}\")\n" -" count = int.from_bytes(os.read(fd, 8), " -"byteorder=sys.byteorder)\n" -" print(f\"Timer {fds.index(fd) + 1} expired {count} " -"times\")\n" +" count = int.from_bytes(os.read(fd, 8), byteorder=sys.byteorder)\n" +" print(f\"Timer {fds.index(fd) + 1} expired {count} times\")\n" " else:\n" " print(f\"Unknown file descriptor {fd}\")\n" "finally:\n" @@ -204,18 +175,13 @@ msgid "" " ep.close()" msgstr "" -#: ../../howto/timerfd.rst:153 -msgid "" -"This example shows how :func:`~select.select` can be used with timer file " -"descriptors to wait until the file descriptor is ready for reading:" +msgid "This example shows how :func:`~select.select` can be used with timer file descriptors to wait until the file descriptor is ready for reading:" msgstr "" -#: ../../howto/timerfd.rst:156 msgid "" "import os, time, select, socket, sys\n" "\n" -"# In this example, use loopback address to send \"stop\" command to the " -"server.\n" +"# In this example, use loopback address to send \"stop\" command to the server.\n" "#\n" "# $ telnet 127.0.0.1 1234\n" "# Trying 127.0.0.1...\n" @@ -247,8 +213,7 @@ msgid "" " while is_active:\n" " # Wait for the timer to expire for 3 seconds.\n" " # select.select() returns a list of file descriptors or objects.\n" -" rfd, wfd, xfd = select.select(select_fds, select_fds, select_fds, " -"timeout)\n" +" rfd, wfd, xfd = select.select(select_fds, select_fds, select_fds, timeout)\n" " for fd in rfd:\n" " if fd == sock:\n" " # Check if there is a connection request.\n" @@ -262,8 +227,7 @@ msgid "" " print(f\"Reading data {fd}\")\n" " data = conn.recv(1024)\n" " if data:\n" -" # You should catch UnicodeDecodeError exception for " -"safety.\n" +" # You should catch UnicodeDecodeError exception for safety.\n" " cmd = data.decode()\n" " if cmd.startswith(\"stop\"):\n" " print(f\"Stopping server\")\n" @@ -278,8 +242,7 @@ msgid "" " conn = None\n" " elif fd in fds:\n" " print(f\"Reading timer {fd}\")\n" -" count = int.from_bytes(os.read(fd, 8), " -"byteorder=sys.byteorder)\n" +" count = int.from_bytes(os.read(fd, 8), byteorder=sys.byteorder)\n" " print(f\"Timer {fds.index(fd) + 1} expired {count} times\")\n" " else:\n" " print(f\"Unknown file descriptor {fd}\")\n" diff --git a/howto/unicode.po b/howto/unicode.po index acdb5bad..9acbbca1 100644 --- a/howto/unicode.po +++ b/howto/unicode.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:53+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,80 +24,39 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../howto/unicode.rst:5 msgid "Unicode HOWTO" msgstr "" -#: ../../howto/unicode.rst:0 msgid "Release" msgstr "" -#: ../../howto/unicode.rst:7 msgid "1.12" msgstr "" -#: ../../howto/unicode.rst:9 -msgid "" -"This HOWTO discusses Python's support for the Unicode specification for " -"representing textual data, and explains various problems that people " -"commonly encounter when trying to work with Unicode." +msgid "This HOWTO discusses Python's support for the Unicode specification for representing textual data, and explains various problems that people commonly encounter when trying to work with Unicode." msgstr "" -#: ../../howto/unicode.rst:15 msgid "Introduction to Unicode" msgstr "" -#: ../../howto/unicode.rst:18 msgid "Definitions" msgstr "" -#: ../../howto/unicode.rst:20 -msgid "" -"Today's programs need to be able to handle a wide variety of characters. " -"Applications are often internationalized to display messages and output in a " -"variety of user-selectable languages; the same program might need to output " -"an error message in English, French, Japanese, Hebrew, or Russian. Web " -"content can be written in any of these languages and can also include a " -"variety of emoji symbols. Python's string type uses the Unicode Standard for " -"representing characters, which lets Python programs work with all these " -"different possible characters." +msgid "Today's programs need to be able to handle a wide variety of characters. Applications are often internationalized to display messages and output in a variety of user-selectable languages; the same program might need to output an error message in English, French, Japanese, Hebrew, or Russian. Web content can be written in any of these languages and can also include a variety of emoji symbols. Python's string type uses the Unicode Standard for representing characters, which lets Python programs work with all these different possible characters." msgstr "" -#: ../../howto/unicode.rst:30 -msgid "" -"Unicode (https://www.unicode.org/) is a specification that aims to list " -"every character used by human languages and give each character its own " -"unique code. The Unicode specifications are continually revised and updated " -"to add new languages and symbols." +msgid "Unicode (https://www.unicode.org/) is a specification that aims to list every character used by human languages and give each character its own unique code. The Unicode specifications are continually revised and updated to add new languages and symbols." msgstr "" -#: ../../howto/unicode.rst:35 -msgid "" -"A **character** is the smallest possible component of a text. 'A', 'B', " -"'C', etc., are all different characters. So are 'È' and 'Í'. Characters " -"vary depending on the language or context you're talking about. For " -"example, there's a character for \"Roman Numeral One\", 'Ⅰ', that's separate " -"from the uppercase letter 'I'. They'll usually look the same, but these are " -"two different characters that have different meanings." +msgid "A **character** is the smallest possible component of a text. 'A', 'B', 'C', etc., are all different characters. So are 'È' and 'Í'. Characters vary depending on the language or context you're talking about. For example, there's a character for \"Roman Numeral One\", 'Ⅰ', that's separate from the uppercase letter 'I'. They'll usually look the same, but these are two different characters that have different meanings." msgstr "" -#: ../../howto/unicode.rst:42 -msgid "" -"The Unicode standard describes how characters are represented by **code " -"points**. A code point value is an integer in the range 0 to 0x10FFFF " -"(about 1.1 million values, the `actual number assigned `_ is less than that). In the " -"standard and in this document, a code point is written using the notation " -"``U+265E`` to mean the character with value ``0x265e`` (9,822 in decimal)." +msgid "The Unicode standard describes how characters are represented by **code points**. A code point value is an integer in the range 0 to 0x10FFFF (about 1.1 million values, the `actual number assigned `_ is less than that). In the standard and in this document, a code point is written using the notation ``U+265E`` to mean the character with value ``0x265e`` (9,822 in decimal)." msgstr "" -#: ../../howto/unicode.rst:50 -msgid "" -"The Unicode standard contains a lot of tables listing characters and their " -"corresponding code points:" +msgid "The Unicode standard contains a lot of tables listing characters and their corresponding code points:" msgstr "" -#: ../../howto/unicode.rst:53 msgid "" "0061 'a'; LATIN SMALL LETTER A\n" "0062 'b'; LATIN SMALL LETTER B\n" @@ -116,222 +75,105 @@ msgid "" "..." msgstr "" -#: ../../howto/unicode.rst:71 -msgid "" -"Strictly, these definitions imply that it's meaningless to say 'this is " -"character ``U+265E``'. ``U+265E`` is a code point, which represents some " -"particular character; in this case, it represents the character 'BLACK CHESS " -"KNIGHT', '♞'. In informal contexts, this distinction between code points " -"and characters will sometimes be forgotten." +msgid "Strictly, these definitions imply that it's meaningless to say 'this is character ``U+265E``'. ``U+265E`` is a code point, which represents some particular character; in this case, it represents the character 'BLACK CHESS KNIGHT', '♞'. In informal contexts, this distinction between code points and characters will sometimes be forgotten." msgstr "" -#: ../../howto/unicode.rst:78 -msgid "" -"A character is represented on a screen or on paper by a set of graphical " -"elements that's called a **glyph**. The glyph for an uppercase A, for " -"example, is two diagonal strokes and a horizontal stroke, though the exact " -"details will depend on the font being used. Most Python code doesn't need " -"to worry about glyphs; figuring out the correct glyph to display is " -"generally the job of a GUI toolkit or a terminal's font renderer." +msgid "A character is represented on a screen or on paper by a set of graphical elements that's called a **glyph**. The glyph for an uppercase A, for example, is two diagonal strokes and a horizontal stroke, though the exact details will depend on the font being used. Most Python code doesn't need to worry about glyphs; figuring out the correct glyph to display is generally the job of a GUI toolkit or a terminal's font renderer." msgstr "" -#: ../../howto/unicode.rst:87 msgid "Encodings" msgstr "" -#: ../../howto/unicode.rst:89 -msgid "" -"To summarize the previous section: a Unicode string is a sequence of code " -"points, which are numbers from 0 through ``0x10FFFF`` (1,114,111 decimal). " -"This sequence of code points needs to be represented in memory as a set of " -"**code units**, and **code units** are then mapped to 8-bit bytes. The " -"rules for translating a Unicode string into a sequence of bytes are called a " -"**character encoding**, or just an **encoding**." +msgid "To summarize the previous section: a Unicode string is a sequence of code points, which are numbers from 0 through ``0x10FFFF`` (1,114,111 decimal). This sequence of code points needs to be represented in memory as a set of **code units**, and **code units** are then mapped to 8-bit bytes. The rules for translating a Unicode string into a sequence of bytes are called a **character encoding**, or just an **encoding**." msgstr "" -#: ../../howto/unicode.rst:97 -msgid "" -"The first encoding you might think of is using 32-bit integers as the code " -"unit, and then using the CPU's representation of 32-bit integers. In this " -"representation, the string \"Python\" might look like this:" +msgid "The first encoding you might think of is using 32-bit integers as the code unit, and then using the CPU's representation of 32-bit integers. In this representation, the string \"Python\" might look like this:" msgstr "" -#: ../../howto/unicode.rst:101 msgid "" " P y t h o n\n" "0x50 00 00 00 79 00 00 00 74 00 00 00 68 00 00 00 6f 00 00 00 6e 00 00 00\n" " 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23" msgstr "" -#: ../../howto/unicode.rst:107 -msgid "" -"This representation is straightforward but using it presents a number of " -"problems." +msgid "This representation is straightforward but using it presents a number of problems." msgstr "" -#: ../../howto/unicode.rst:110 msgid "It's not portable; different processors order the bytes differently." msgstr "" -#: ../../howto/unicode.rst:112 -msgid "" -"It's very wasteful of space. In most texts, the majority of the code points " -"are less than 127, or less than 255, so a lot of space is occupied by " -"``0x00`` bytes. The above string takes 24 bytes compared to the 6 bytes " -"needed for an ASCII representation. Increased RAM usage doesn't matter too " -"much (desktop computers have gigabytes of RAM, and strings aren't usually " -"that large), but expanding our usage of disk and network bandwidth by a " -"factor of 4 is intolerable." +msgid "It's very wasteful of space. In most texts, the majority of the code points are less than 127, or less than 255, so a lot of space is occupied by ``0x00`` bytes. The above string takes 24 bytes compared to the 6 bytes needed for an ASCII representation. Increased RAM usage doesn't matter too much (desktop computers have gigabytes of RAM, and strings aren't usually that large), but expanding our usage of disk and network bandwidth by a factor of 4 is intolerable." msgstr "" -#: ../../howto/unicode.rst:120 -msgid "" -"It's not compatible with existing C functions such as ``strlen()``, so a new " -"family of wide string functions would need to be used." +msgid "It's not compatible with existing C functions such as ``strlen()``, so a new family of wide string functions would need to be used." msgstr "" -#: ../../howto/unicode.rst:123 -msgid "" -"Therefore this encoding isn't used very much, and people instead choose " -"other encodings that are more efficient and convenient, such as UTF-8." +msgid "Therefore this encoding isn't used very much, and people instead choose other encodings that are more efficient and convenient, such as UTF-8." msgstr "" -#: ../../howto/unicode.rst:126 -msgid "" -"UTF-8 is one of the most commonly used encodings, and Python often defaults " -"to using it. UTF stands for \"Unicode Transformation Format\", and the '8' " -"means that 8-bit values are used in the encoding. (There are also UTF-16 " -"and UTF-32 encodings, but they are less frequently used than UTF-8.) UTF-8 " -"uses the following rules:" +msgid "UTF-8 is one of the most commonly used encodings, and Python often defaults to using it. UTF stands for \"Unicode Transformation Format\", and the '8' means that 8-bit values are used in the encoding. (There are also UTF-16 and UTF-32 encodings, but they are less frequently used than UTF-8.) UTF-8 uses the following rules:" msgstr "" -#: ../../howto/unicode.rst:132 -msgid "" -"If the code point is < 128, it's represented by the corresponding byte value." +msgid "If the code point is < 128, it's represented by the corresponding byte value." msgstr "" -#: ../../howto/unicode.rst:133 -msgid "" -"If the code point is >= 128, it's turned into a sequence of two, three, or " -"four bytes, where each byte of the sequence is between 128 and 255." +msgid "If the code point is >= 128, it's turned into a sequence of two, three, or four bytes, where each byte of the sequence is between 128 and 255." msgstr "" -#: ../../howto/unicode.rst:136 msgid "UTF-8 has several convenient properties:" msgstr "" -#: ../../howto/unicode.rst:138 msgid "It can handle any Unicode code point." msgstr "" -#: ../../howto/unicode.rst:139 -msgid "" -"A Unicode string is turned into a sequence of bytes that contains embedded " -"zero bytes only where they represent the null character (U+0000). This means " -"that UTF-8 strings can be processed by C functions such as ``strcpy()`` and " -"sent through protocols that can't handle zero bytes for anything other than " -"end-of-string markers." +msgid "A Unicode string is turned into a sequence of bytes that contains embedded zero bytes only where they represent the null character (U+0000). This means that UTF-8 strings can be processed by C functions such as ``strcpy()`` and sent through protocols that can't handle zero bytes for anything other than end-of-string markers." msgstr "" -#: ../../howto/unicode.rst:144 msgid "A string of ASCII text is also valid UTF-8 text." msgstr "" -#: ../../howto/unicode.rst:145 -msgid "" -"UTF-8 is fairly compact; the majority of commonly used characters can be " -"represented with one or two bytes." +msgid "UTF-8 is fairly compact; the majority of commonly used characters can be represented with one or two bytes." msgstr "" -#: ../../howto/unicode.rst:147 -msgid "" -"If bytes are corrupted or lost, it's possible to determine the start of the " -"next UTF-8-encoded code point and resynchronize. It's also unlikely that " -"random 8-bit data will look like valid UTF-8." +msgid "If bytes are corrupted or lost, it's possible to determine the start of the next UTF-8-encoded code point and resynchronize. It's also unlikely that random 8-bit data will look like valid UTF-8." msgstr "" -#: ../../howto/unicode.rst:150 -msgid "" -"UTF-8 is a byte oriented encoding. The encoding specifies that each " -"character is represented by a specific sequence of one or more bytes. This " -"avoids the byte-ordering issues that can occur with integer and word " -"oriented encodings, like UTF-16 and UTF-32, where the sequence of bytes " -"varies depending on the hardware on which the string was encoded." +msgid "UTF-8 is a byte oriented encoding. The encoding specifies that each character is represented by a specific sequence of one or more bytes. This avoids the byte-ordering issues that can occur with integer and word oriented encodings, like UTF-16 and UTF-32, where the sequence of bytes varies depending on the hardware on which the string was encoded." msgstr "" -#: ../../howto/unicode.rst:158 ../../howto/unicode.rst:516 -#: ../../howto/unicode.rst:737 msgid "References" msgstr "" -#: ../../howto/unicode.rst:160 -msgid "" -"The `Unicode Consortium site `_ has character " -"charts, a glossary, and PDF versions of the Unicode specification. Be " -"prepared for some difficult reading. `A chronology `_ of the origin and development of Unicode is also available on " -"the site." +msgid "The `Unicode Consortium site `_ has character charts, a glossary, and PDF versions of the Unicode specification. Be prepared for some difficult reading. `A chronology `_ of the origin and development of Unicode is also available on the site." msgstr "" -#: ../../howto/unicode.rst:165 -msgid "" -"On the Computerphile Youtube channel, Tom Scott briefly `discusses the " -"history of Unicode and UTF-8 `_ " -"(9 minutes 36 seconds)." +msgid "On the Computerphile Youtube channel, Tom Scott briefly `discusses the history of Unicode and UTF-8 `_ (9 minutes 36 seconds)." msgstr "" -#: ../../howto/unicode.rst:169 -msgid "" -"To help understand the standard, Jukka Korpela has written `an introductory " -"guide `_ to reading the Unicode " -"character tables." +msgid "To help understand the standard, Jukka Korpela has written `an introductory guide `_ to reading the Unicode character tables." msgstr "" -#: ../../howto/unicode.rst:173 -msgid "" -"Another `good introductory article `_ was " -"written by Joel Spolsky. If this introduction didn't make things clear to " -"you, you should try reading this alternate article before continuing." +msgid "Another `good introductory article `_ was written by Joel Spolsky. If this introduction didn't make things clear to you, you should try reading this alternate article before continuing." msgstr "" -#: ../../howto/unicode.rst:178 -msgid "" -"Wikipedia entries are often helpful; see the entries for \"`character " -"encoding `_\" and `UTF-8 " -"`_, for example." +msgid "Wikipedia entries are often helpful; see the entries for \"`character encoding `_\" and `UTF-8 `_, for example." msgstr "" -#: ../../howto/unicode.rst:184 msgid "Python's Unicode Support" msgstr "" -#: ../../howto/unicode.rst:186 -msgid "" -"Now that you've learned the rudiments of Unicode, we can look at Python's " -"Unicode features." +msgid "Now that you've learned the rudiments of Unicode, we can look at Python's Unicode features." msgstr "" -#: ../../howto/unicode.rst:190 msgid "The String Type" msgstr "" -#: ../../howto/unicode.rst:192 -msgid "" -"Since Python 3.0, the language's :class:`str` type contains Unicode " -"characters, meaning any string created using ``\"unicode rocks!\"``, " -"``'unicode rocks!'``, or the triple-quoted string syntax is stored as " -"Unicode." +msgid "Since Python 3.0, the language's :class:`str` type contains Unicode characters, meaning any string created using ``\"unicode rocks!\"``, ``'unicode rocks!'``, or the triple-quoted string syntax is stored as Unicode." msgstr "" -#: ../../howto/unicode.rst:196 -msgid "" -"The default encoding for Python source code is UTF-8, so you can simply " -"include a Unicode character in a string literal::" +msgid "The default encoding for Python source code is UTF-8, so you can simply include a Unicode character in a string literal::" msgstr "" -#: ../../howto/unicode.rst:199 msgid "" "try:\n" " with open('/tmp/input.txt', 'r') as f:\n" @@ -341,27 +183,18 @@ msgid "" " print(\"Fichier non trouvé\")" msgstr "" -#: ../../howto/unicode.rst:206 -msgid "" -"Side note: Python 3 also supports using Unicode characters in identifiers::" +msgid "Side note: Python 3 also supports using Unicode characters in identifiers::" msgstr "" -#: ../../howto/unicode.rst:208 msgid "" "répertoire = \"/tmp/records.log\"\n" "with open(répertoire, \"w\") as f:\n" " f.write(\"test\\n\")" msgstr "" -#: ../../howto/unicode.rst:212 -msgid "" -"If you can't enter a particular character in your editor or want to keep the " -"source code ASCII-only for some reason, you can also use escape sequences in " -"string literals. (Depending on your system, you may see the actual capital-" -"delta glyph instead of a \\u escape.) ::" +msgid "If you can't enter a particular character in your editor or want to keep the source code ASCII-only for some reason, you can also use escape sequences in string literals. (Depending on your system, you may see the actual capital-delta glyph instead of a \\u escape.) ::" msgstr "" -#: ../../howto/unicode.rst:217 msgid "" ">>> \"\\N{GREEK CAPITAL LETTER DELTA}\" # Using the character name\n" "'\\u0394'\n" @@ -371,25 +204,12 @@ msgid "" "'\\u0394'" msgstr "" -#: ../../howto/unicode.rst:224 -msgid "" -"In addition, one can create a string using the :func:`~bytes.decode` method " -"of :class:`bytes`. This method takes an *encoding* argument, such as " -"``UTF-8``, and optionally an *errors* argument." +msgid "In addition, one can create a string using the :func:`~bytes.decode` method of :class:`bytes`. This method takes an *encoding* argument, such as ``UTF-8``, and optionally an *errors* argument." msgstr "" -#: ../../howto/unicode.rst:228 -msgid "" -"The *errors* argument specifies the response when the input string can't be " -"converted according to the encoding's rules. Legal values for this argument " -"are ``'strict'`` (raise a :exc:`UnicodeDecodeError` exception), " -"``'replace'`` (use ``U+FFFD``, ``REPLACEMENT CHARACTER``), ``'ignore'`` " -"(just leave the character out of the Unicode result), or " -"``'backslashreplace'`` (inserts a ``\\xNN`` escape sequence). The following " -"examples show the differences::" +msgid "The *errors* argument specifies the response when the input string can't be converted according to the encoding's rules. Legal values for this argument are ``'strict'`` (raise a :exc:`UnicodeDecodeError` exception), ``'replace'`` (use ``U+FFFD``, ``REPLACEMENT CHARACTER``), ``'ignore'`` (just leave the character out of the Unicode result), or ``'backslashreplace'`` (inserts a ``\\xNN`` escape sequence). The following examples show the differences::" msgstr "" -#: ../../howto/unicode.rst:236 msgid "" ">>> b'\\x80abc'.decode(\"utf-8\", \"strict\")\n" "Traceback (most recent call last):\n" @@ -404,25 +224,12 @@ msgid "" "'abc'" msgstr "" -#: ../../howto/unicode.rst:248 -msgid "" -"Encodings are specified as strings containing the encoding's name. Python " -"comes with roughly 100 different encodings; see the Python Library Reference " -"at :ref:`standard-encodings` for a list. Some encodings have multiple " -"names; for example, ``'latin-1'``, ``'iso_8859_1'`` and ``'8859``' are all " -"synonyms for the same encoding." +msgid "Encodings are specified as strings containing the encoding's name. Python comes with roughly 100 different encodings; see the Python Library Reference at :ref:`standard-encodings` for a list. Some encodings have multiple names; for example, ``'latin-1'``, ``'iso_8859_1'`` and ``'8859``' are all synonyms for the same encoding." msgstr "" -#: ../../howto/unicode.rst:254 -msgid "" -"One-character Unicode strings can also be created with the :func:`chr` built-" -"in function, which takes integers and returns a Unicode string of length 1 " -"that contains the corresponding code point. The reverse operation is the " -"built-in :func:`ord` function that takes a one-character Unicode string and " -"returns the code point value::" +msgid "One-character Unicode strings can also be created with the :func:`chr` built-in function, which takes integers and returns a Unicode string of length 1 that contains the corresponding code point. The reverse operation is the built-in :func:`ord` function that takes a one-character Unicode string and returns the code point value::" msgstr "" -#: ../../howto/unicode.rst:260 msgid "" ">>> chr(57344)\n" "'\\ue000'\n" @@ -430,33 +237,18 @@ msgid "" "57344" msgstr "" -#: ../../howto/unicode.rst:266 msgid "Converting to Bytes" msgstr "" -#: ../../howto/unicode.rst:268 -msgid "" -"The opposite method of :meth:`bytes.decode` is :meth:`str.encode`, which " -"returns a :class:`bytes` representation of the Unicode string, encoded in " -"the requested *encoding*." +msgid "The opposite method of :meth:`bytes.decode` is :meth:`str.encode`, which returns a :class:`bytes` representation of the Unicode string, encoded in the requested *encoding*." msgstr "" -#: ../../howto/unicode.rst:272 -msgid "" -"The *errors* parameter is the same as the parameter of " -"the :meth:`~bytes.decode` method but supports a few more possible handlers. " -"As well as ``'strict'``, ``'ignore'``, and ``'replace'`` (which in this case " -"inserts a question mark instead of the unencodable character), there is also " -"``'xmlcharrefreplace'`` (inserts an XML character reference), " -"``backslashreplace`` (inserts a ``\\uNNNN`` escape sequence) and " -"``namereplace`` (inserts a ``\\N{...}`` escape sequence)." +msgid "The *errors* parameter is the same as the parameter of the :meth:`~bytes.decode` method but supports a few more possible handlers. As well as ``'strict'``, ``'ignore'``, and ``'replace'`` (which in this case inserts a question mark instead of the unencodable character), there is also ``'xmlcharrefreplace'`` (inserts an XML character reference), ``backslashreplace`` (inserts a ``\\uNNNN`` escape sequence) and ``namereplace`` (inserts a ``\\N{...}`` escape sequence)." msgstr "" -#: ../../howto/unicode.rst:280 msgid "The following example shows the different results::" msgstr "" -#: ../../howto/unicode.rst:282 msgid "" ">>> u = chr(40960) + 'abcd' + chr(1972)\n" ">>> u.encode('utf-8')\n" @@ -478,29 +270,15 @@ msgid "" "b'\\\\N{YI SYLLABLE IT}abcd\\\\u07b4'" msgstr "" -#: ../../howto/unicode.rst:301 -msgid "" -"The low-level routines for registering and accessing the available encodings " -"are found in the :mod:`codecs` module. Implementing new encodings also " -"requires understanding the :mod:`codecs` module. However, the encoding and " -"decoding functions returned by this module are usually more low-level than " -"is comfortable, and writing new encodings is a specialized task, so the " -"module won't be covered in this HOWTO." +msgid "The low-level routines for registering and accessing the available encodings are found in the :mod:`codecs` module. Implementing new encodings also requires understanding the :mod:`codecs` module. However, the encoding and decoding functions returned by this module are usually more low-level than is comfortable, and writing new encodings is a specialized task, so the module won't be covered in this HOWTO." msgstr "" -#: ../../howto/unicode.rst:310 msgid "Unicode Literals in Python Source Code" msgstr "" -#: ../../howto/unicode.rst:312 -msgid "" -"In Python source code, specific Unicode code points can be written using the " -"``\\u`` escape sequence, which is followed by four hex digits giving the " -"code point. The ``\\U`` escape sequence is similar, but expects eight hex " -"digits, not four::" +msgid "In Python source code, specific Unicode code points can be written using the ``\\u`` escape sequence, which is followed by four hex digits giving the code point. The ``\\U`` escape sequence is similar, but expects eight hex digits, not four::" msgstr "" -#: ../../howto/unicode.rst:317 msgid "" ">>> s = \"a\\xac\\u1234\\u20ac\\U00008000\"\n" "... # ^^^^ two-digit hex escape\n" @@ -510,32 +288,15 @@ msgid "" "[97, 172, 4660, 8364, 32768]" msgstr "" -#: ../../howto/unicode.rst:324 -msgid "" -"Using escape sequences for code points greater than 127 is fine in small " -"doses, but becomes an annoyance if you're using many accented characters, as " -"you would in a program with messages in French or some other accent-using " -"language. You can also assemble strings using the :func:`chr` built-in " -"function, but this is even more tedious." +msgid "Using escape sequences for code points greater than 127 is fine in small doses, but becomes an annoyance if you're using many accented characters, as you would in a program with messages in French or some other accent-using language. You can also assemble strings using the :func:`chr` built-in function, but this is even more tedious." msgstr "" -#: ../../howto/unicode.rst:330 -msgid "" -"Ideally, you'd want to be able to write literals in your language's natural " -"encoding. You could then edit Python source code with your favorite editor " -"which would display the accented characters naturally, and have the right " -"characters used at runtime." +msgid "Ideally, you'd want to be able to write literals in your language's natural encoding. You could then edit Python source code with your favorite editor which would display the accented characters naturally, and have the right characters used at runtime." msgstr "" -#: ../../howto/unicode.rst:335 -msgid "" -"Python supports writing source code in UTF-8 by default, but you can use " -"almost any encoding if you declare the encoding being used. This is done by " -"including a special comment as either the first or second line of the source " -"file::" +msgid "Python supports writing source code in UTF-8 by default, but you can use almost any encoding if you declare the encoding being used. This is done by including a special comment as either the first or second line of the source file::" msgstr "" -#: ../../howto/unicode.rst:339 msgid "" "#!/usr/bin/env python\n" "# -*- coding: latin-1 -*-\n" @@ -544,42 +305,21 @@ msgid "" "print(ord(u[-1]))" msgstr "" -#: ../../howto/unicode.rst:345 -msgid "" -"The syntax is inspired by Emacs's notation for specifying variables local to " -"a file. Emacs supports many different variables, but Python only supports " -"'coding'. The ``-*-`` symbols indicate to Emacs that the comment is " -"special; they have no significance to Python but are a convention. Python " -"looks for ``coding: name`` or ``coding=name`` in the comment." +msgid "The syntax is inspired by Emacs's notation for specifying variables local to a file. Emacs supports many different variables, but Python only supports 'coding'. The ``-*-`` symbols indicate to Emacs that the comment is special; they have no significance to Python but are a convention. Python looks for ``coding: name`` or ``coding=name`` in the comment." msgstr "" -#: ../../howto/unicode.rst:351 -msgid "" -"If you don't include such a comment, the default encoding used will be UTF-8 " -"as already mentioned. See also :pep:`263` for more information." +msgid "If you don't include such a comment, the default encoding used will be UTF-8 as already mentioned. See also :pep:`263` for more information." msgstr "" -#: ../../howto/unicode.rst:358 msgid "Unicode Properties" msgstr "" -#: ../../howto/unicode.rst:360 -msgid "" -"The Unicode specification includes a database of information about code " -"points. For each defined code point, the information includes the " -"character's name, its category, the numeric value if applicable (for " -"characters representing numeric concepts such as the Roman numerals, " -"fractions such as one-third and four-fifths, etc.). There are also display-" -"related properties, such as how to use the code point in bidirectional text." +msgid "The Unicode specification includes a database of information about code points. For each defined code point, the information includes the character's name, its category, the numeric value if applicable (for characters representing numeric concepts such as the Roman numerals, fractions such as one-third and four-fifths, etc.). There are also display-related properties, such as how to use the code point in bidirectional text." msgstr "" -#: ../../howto/unicode.rst:368 -msgid "" -"The following program displays some information about several characters, " -"and prints the numeric value of one particular character::" +msgid "The following program displays some information about several characters, and prints the numeric value of one particular character::" msgstr "" -#: ../../howto/unicode.rst:371 msgid "" "import unicodedata\n" "\n" @@ -593,11 +333,9 @@ msgid "" "print(unicodedata.numeric(u[1]))" msgstr "" -#: ../../howto/unicode.rst:382 msgid "When run, this prints:" msgstr "" -#: ../../howto/unicode.rst:384 msgid "" "0 00e9 Ll LATIN SMALL LETTER E WITH ACUTE\n" "1 0bf2 No TAMIL NUMBER ONE THOUSAND\n" @@ -607,60 +345,27 @@ msgid "" "1000.0" msgstr "" -#: ../../howto/unicode.rst:393 -msgid "" -"The category codes are abbreviations describing the nature of the character. " -"These are grouped into categories such as \"Letter\", \"Number\", " -"\"Punctuation\", or \"Symbol\", which in turn are broken up into " -"subcategories. To take the codes from the above output, ``'Ll'`` means " -"'Letter, lowercase', ``'No'`` means \"Number, other\", ``'Mn'`` is \"Mark, " -"nonspacing\", and ``'So'`` is \"Symbol, other\". See `the General Category " -"Values section of the Unicode Character Database documentation `_ for a list of " -"category codes." -msgstr "" - -#: ../../howto/unicode.rst:404 +msgid "The category codes are abbreviations describing the nature of the character. These are grouped into categories such as \"Letter\", \"Number\", \"Punctuation\", or \"Symbol\", which in turn are broken up into subcategories. To take the codes from the above output, ``'Ll'`` means 'Letter, lowercase', ``'No'`` means \"Number, other\", ``'Mn'`` is \"Mark, nonspacing\", and ``'So'`` is \"Symbol, other\". See `the General Category Values section of the Unicode Character Database documentation `_ for a list of category codes." +msgstr "" + msgid "Comparing Strings" msgstr "" -#: ../../howto/unicode.rst:406 -msgid "" -"Unicode adds some complication to comparing strings, because the same set of " -"characters can be represented by different sequences of code points. For " -"example, a letter like 'ê' can be represented as a single code point U+00EA, " -"or as U+0065 U+0302, which is the code point for 'e' followed by a code " -"point for 'COMBINING CIRCUMFLEX ACCENT'. These will produce the same output " -"when printed, but one is a string of length 1 and the other is of length 2." +msgid "Unicode adds some complication to comparing strings, because the same set of characters can be represented by different sequences of code points. For example, a letter like 'ê' can be represented as a single code point U+00EA, or as U+0065 U+0302, which is the code point for 'e' followed by a code point for 'COMBINING CIRCUMFLEX ACCENT'. These will produce the same output when printed, but one is a string of length 1 and the other is of length 2." msgstr "" -#: ../../howto/unicode.rst:414 -msgid "" -"One tool for a case-insensitive comparison is the :meth:`~str.casefold` " -"string method that converts a string to a case-insensitive form following an " -"algorithm described by the Unicode Standard. This algorithm has special " -"handling for characters such as the German letter 'ß' (code point U+00DF), " -"which becomes the pair of lowercase letters 'ss'." +msgid "One tool for a case-insensitive comparison is the :meth:`~str.casefold` string method that converts a string to a case-insensitive form following an algorithm described by the Unicode Standard. This algorithm has special handling for characters such as the German letter 'ß' (code point U+00DF), which becomes the pair of lowercase letters 'ss'." msgstr "" -#: ../../howto/unicode.rst:423 msgid "" ">>> street = 'Gürzenichstraße'\n" ">>> street.casefold()\n" "'gürzenichstrasse'" msgstr "" -#: ../../howto/unicode.rst:427 -msgid "" -"A second tool is the :mod:`unicodedata` " -"module's :func:`~unicodedata.normalize` function that converts strings to " -"one of several normal forms, where letters followed by a combining character " -"are replaced with single characters. :func:`~unicodedata.normalize` can be " -"used to perform string comparisons that won't falsely report inequality if " -"two strings use combining characters differently:" +msgid "A second tool is the :mod:`unicodedata` module's :func:`~unicodedata.normalize` function that converts strings to one of several normal forms, where letters followed by a combining character are replaced with single characters. :func:`~unicodedata.normalize` can be used to perform string comparisons that won't falsely report inequality if two strings use combining characters differently:" msgstr "" -#: ../../howto/unicode.rst:436 msgid "" "import unicodedata\n" "\n" @@ -671,18 +376,15 @@ msgid "" " return NFD(s1) == NFD(s2)\n" "\n" "single_char = 'ê'\n" -"multiple_chars = '\\N{LATIN SMALL LETTER E}\\N{COMBINING CIRCUMFLEX " -"ACCENT}'\n" +"multiple_chars = '\\N{LATIN SMALL LETTER E}\\N{COMBINING CIRCUMFLEX ACCENT}'\n" "print('length of first string=', len(single_char))\n" "print('length of second string=', len(multiple_chars))\n" "print(compare_strs(single_char, multiple_chars))" msgstr "" -#: ../../howto/unicode.rst:450 msgid "When run, this outputs:" msgstr "" -#: ../../howto/unicode.rst:452 msgid "" "$ python compare-strs.py\n" "length of first string= 1\n" @@ -690,18 +392,12 @@ msgid "" "True" msgstr "" -#: ../../howto/unicode.rst:459 -msgid "" -"The first argument to the :func:`~unicodedata.normalize` function is a " -"string giving the desired normalization form, which can be one of 'NFC', " -"'NFKC', 'NFD', and 'NFKD'." +msgid "The first argument to the :func:`~unicodedata.normalize` function is a string giving the desired normalization form, which can be one of 'NFC', 'NFKC', 'NFD', and 'NFKD'." msgstr "" -#: ../../howto/unicode.rst:463 msgid "The Unicode Standard also specifies how to do caseless comparisons::" msgstr "" -#: ../../howto/unicode.rst:465 msgid "" "import unicodedata\n" "\n" @@ -713,41 +409,23 @@ msgid "" "\n" "# Example usage\n" "single_char = 'ê'\n" -"multiple_chars = '\\N{LATIN CAPITAL LETTER E}\\N{COMBINING CIRCUMFLEX " -"ACCENT}'\n" +"multiple_chars = '\\N{LATIN CAPITAL LETTER E}\\N{COMBINING CIRCUMFLEX ACCENT}'\n" "\n" "print(compare_caseless(single_char, multiple_chars))" msgstr "" -#: ../../howto/unicode.rst:479 -msgid "" -"This will print ``True``. (Why is :func:`!NFD` invoked twice? Because " -"there are a few characters that make :meth:`~str.casefold` return a non-" -"normalized string, so the result needs to be normalized again. See section " -"3.13 of the Unicode Standard for a discussion and an example.)" +msgid "This will print ``True``. (Why is :func:`!NFD` invoked twice? Because there are a few characters that make :meth:`~str.casefold` return a non-normalized string, so the result needs to be normalized again. See section 3.13 of the Unicode Standard for a discussion and an example.)" msgstr "" -#: ../../howto/unicode.rst:486 msgid "Unicode Regular Expressions" msgstr "" -#: ../../howto/unicode.rst:488 -msgid "" -"The regular expressions supported by the :mod:`re` module can be provided " -"either as bytes or strings. Some of the special character sequences such as " -"``\\d`` and ``\\w`` have different meanings depending on whether the pattern " -"is supplied as bytes or a string. For example, ``\\d`` will match the " -"characters ``[0-9]`` in bytes but in strings will match any character that's " -"in the ``'Nd'`` category." +msgid "The regular expressions supported by the :mod:`re` module can be provided either as bytes or strings. Some of the special character sequences such as ``\\d`` and ``\\w`` have different meanings depending on whether the pattern is supplied as bytes or a string. For example, ``\\d`` will match the characters ``[0-9]`` in bytes but in strings will match any character that's in the ``'Nd'`` category." msgstr "" -#: ../../howto/unicode.rst:495 -msgid "" -"The string in this example has the number 57 written in both Thai and Arabic " -"numerals::" +msgid "The string in this example has the number 57 written in both Thai and Arabic numerals::" msgstr "" -#: ../../howto/unicode.rst:498 msgid "" "import re\n" "p = re.compile(r'\\d+')\n" @@ -757,133 +435,63 @@ msgid "" "print(repr(m.group()))" msgstr "" -#: ../../howto/unicode.rst:505 -msgid "" -"When executed, ``\\d+`` will match the Thai numerals and print them out. If " -"you supply the :const:`re.ASCII` flag to :func:`~re.compile`, ``\\d+`` will " -"match the substring \"57\" instead." +msgid "When executed, ``\\d+`` will match the Thai numerals and print them out. If you supply the :const:`re.ASCII` flag to :func:`~re.compile`, ``\\d+`` will match the substring \"57\" instead." msgstr "" -#: ../../howto/unicode.rst:509 -msgid "" -"Similarly, ``\\w`` matches a wide variety of Unicode characters but only " -"``[a-zA-Z0-9_]`` in bytes or if :const:`re.ASCII` is supplied, and ``\\s`` " -"will match either Unicode whitespace characters or ``[ \\t\\n\\r\\f\\v]``." +msgid "Similarly, ``\\w`` matches a wide variety of Unicode characters but only ``[a-zA-Z0-9_]`` in bytes or if :const:`re.ASCII` is supplied, and ``\\s`` will match either Unicode whitespace characters or ``[ \\t\\n\\r\\f\\v]``." msgstr "" -#: ../../howto/unicode.rst:520 msgid "Some good alternative discussions of Python's Unicode support are:" msgstr "" -#: ../../howto/unicode.rst:522 -msgid "" -"`Processing Text Files in Python 3 `_, " -"by Nick Coghlan." +msgid "`Processing Text Files in Python 3 `_, by Nick Coghlan." msgstr "" -#: ../../howto/unicode.rst:523 -msgid "" -"`Pragmatic Unicode `_, a PyCon " -"2012 presentation by Ned Batchelder." +msgid "`Pragmatic Unicode `_, a PyCon 2012 presentation by Ned Batchelder." msgstr "" -#: ../../howto/unicode.rst:525 -msgid "" -"The :class:`str` type is described in the Python library reference " -"at :ref:`textseq`." +msgid "The :class:`str` type is described in the Python library reference at :ref:`textseq`." msgstr "" -#: ../../howto/unicode.rst:528 msgid "The documentation for the :mod:`unicodedata` module." msgstr "" -#: ../../howto/unicode.rst:530 msgid "The documentation for the :mod:`codecs` module." msgstr "" -#: ../../howto/unicode.rst:532 -msgid "" -"Marc-André Lemburg gave `a presentation titled \"Python and Unicode\" (PDF " -"slides) `_ at " -"EuroPython 2002. The slides are an excellent overview of the design of " -"Python 2's Unicode features (where the Unicode string type is called " -"``unicode`` and literals start with ``u``)." +msgid "Marc-André Lemburg gave `a presentation titled \"Python and Unicode\" (PDF slides) `_ at EuroPython 2002. The slides are an excellent overview of the design of Python 2's Unicode features (where the Unicode string type is called ``unicode`` and literals start with ``u``)." msgstr "" -#: ../../howto/unicode.rst:540 msgid "Reading and Writing Unicode Data" msgstr "" -#: ../../howto/unicode.rst:542 -msgid "" -"Once you've written some code that works with Unicode data, the next problem " -"is input/output. How do you get Unicode strings into your program, and how " -"do you convert Unicode into a form suitable for storage or transmission?" +msgid "Once you've written some code that works with Unicode data, the next problem is input/output. How do you get Unicode strings into your program, and how do you convert Unicode into a form suitable for storage or transmission?" msgstr "" -#: ../../howto/unicode.rst:546 -msgid "" -"It's possible that you may not need to do anything depending on your input " -"sources and output destinations; you should check whether the libraries used " -"in your application support Unicode natively. XML parsers often return " -"Unicode data, for example. Many relational databases also support Unicode-" -"valued columns and can return Unicode values from an SQL query." +msgid "It's possible that you may not need to do anything depending on your input sources and output destinations; you should check whether the libraries used in your application support Unicode natively. XML parsers often return Unicode data, for example. Many relational databases also support Unicode-valued columns and can return Unicode values from an SQL query." msgstr "" -#: ../../howto/unicode.rst:552 -msgid "" -"Unicode data is usually converted to a particular encoding before it gets " -"written to disk or sent over a socket. It's possible to do all the work " -"yourself: open a file, read an 8-bit bytes object from it, and convert the " -"bytes with ``bytes.decode(encoding)``. However, the manual approach is not " -"recommended." +msgid "Unicode data is usually converted to a particular encoding before it gets written to disk or sent over a socket. It's possible to do all the work yourself: open a file, read an 8-bit bytes object from it, and convert the bytes with ``bytes.decode(encoding)``. However, the manual approach is not recommended." msgstr "" -#: ../../howto/unicode.rst:557 -msgid "" -"One problem is the multi-byte nature of encodings; one Unicode character can " -"be represented by several bytes. If you want to read the file in arbitrary-" -"sized chunks (say, 1024 or 4096 bytes), you need to write error-handling " -"code to catch the case where only part of the bytes encoding a single " -"Unicode character are read at the end of a chunk. One solution would be to " -"read the entire file into memory and then perform the decoding, but that " -"prevents you from working with files that are extremely large; if you need " -"to read a 2 GiB file, you need 2 GiB of RAM. (More, really, since for at " -"least a moment you'd need to have both the encoded string and its Unicode " -"version in memory.)" -msgstr "" - -#: ../../howto/unicode.rst:567 -msgid "" -"The solution would be to use the low-level decoding interface to catch the " -"case of partial coding sequences. The work of implementing this has already " -"been done for you: the built-in :func:`open` function can return a file-like " -"object that assumes the file's contents are in a specified encoding and " -"accepts Unicode parameters for methods such as :meth:`~io.TextIOBase.read` " -"and :meth:`~io.TextIOBase.write`. This works through :func:`open`\\'s " -"*encoding* and *errors* parameters which are interpreted just like those " -"in :meth:`str.encode` and :meth:`bytes.decode`." +msgid "One problem is the multi-byte nature of encodings; one Unicode character can be represented by several bytes. If you want to read the file in arbitrary-sized chunks (say, 1024 or 4096 bytes), you need to write error-handling code to catch the case where only part of the bytes encoding a single Unicode character are read at the end of a chunk. One solution would be to read the entire file into memory and then perform the decoding, but that prevents you from working with files that are extremely large; if you need to read a 2 GiB file, you need 2 GiB of RAM. (More, really, since for at least a moment you'd need to have both the encoded string and its Unicode version in memory.)" +msgstr "" + +msgid "The solution would be to use the low-level decoding interface to catch the case of partial coding sequences. The work of implementing this has already been done for you: the built-in :func:`open` function can return a file-like object that assumes the file's contents are in a specified encoding and accepts Unicode parameters for methods such as :meth:`~io.TextIOBase.read` and :meth:`~io.TextIOBase.write`. This works through :func:`open`\\'s *encoding* and *errors* parameters which are interpreted just like those in :meth:`str.encode` and :meth:`bytes.decode`." msgstr "" -#: ../../howto/unicode.rst:576 msgid "Reading Unicode from a file is therefore simple::" msgstr "" -#: ../../howto/unicode.rst:578 msgid "" "with open('unicode.txt', encoding='utf-8') as f:\n" " for line in f:\n" " print(repr(line))" msgstr "" -#: ../../howto/unicode.rst:582 -msgid "" -"It's also possible to open files in update mode, allowing both reading and " -"writing::" +msgid "It's also possible to open files in update mode, allowing both reading and writing::" msgstr "" -#: ../../howto/unicode.rst:585 msgid "" "with open('test', encoding='utf-8', mode='w+') as f:\n" " f.write('\\u4500 blah blah blah\\n')\n" @@ -891,81 +499,33 @@ msgid "" " print(repr(f.readline()[:1]))" msgstr "" -#: ../../howto/unicode.rst:590 -msgid "" -"The Unicode character ``U+FEFF`` is used as a byte-order mark (BOM), and is " -"often written as the first character of a file in order to assist with " -"autodetection of the file's byte ordering. Some encodings, such as UTF-16, " -"expect a BOM to be present at the start of a file; when such an encoding is " -"used, the BOM will be automatically written as the first character and will " -"be silently dropped when the file is read. There are variants of these " -"encodings, such as 'utf-16-le' and 'utf-16-be' for little-endian and big-" -"endian encodings, that specify one particular byte ordering and don't skip " -"the BOM." -msgstr "" - -#: ../../howto/unicode.rst:599 -msgid "" -"In some areas, it is also convention to use a \"BOM\" at the start of UTF-8 " -"encoded files; the name is misleading since UTF-8 is not byte-order " -"dependent. The mark simply announces that the file is encoded in UTF-8. For " -"reading such files, use the 'utf-8-sig' codec to automatically skip the mark " -"if present." +msgid "The Unicode character ``U+FEFF`` is used as a byte-order mark (BOM), and is often written as the first character of a file in order to assist with autodetection of the file's byte ordering. Some encodings, such as UTF-16, expect a BOM to be present at the start of a file; when such an encoding is used, the BOM will be automatically written as the first character and will be silently dropped when the file is read. There are variants of these encodings, such as 'utf-16-le' and 'utf-16-be' for little-endian and big-endian encodings, that specify one particular byte ordering and don't skip the BOM." +msgstr "" + +msgid "In some areas, it is also convention to use a \"BOM\" at the start of UTF-8 encoded files; the name is misleading since UTF-8 is not byte-order dependent. The mark simply announces that the file is encoded in UTF-8. For reading such files, use the 'utf-8-sig' codec to automatically skip the mark if present." msgstr "" -#: ../../howto/unicode.rst:606 msgid "Unicode filenames" msgstr "" -#: ../../howto/unicode.rst:608 -msgid "" -"Most of the operating systems in common use today support filenames that " -"contain arbitrary Unicode characters. Usually this is implemented by " -"converting the Unicode string into some encoding that varies depending on " -"the system. Today Python is converging on using UTF-8: Python on MacOS has " -"used UTF-8 for several versions, and Python 3.6 switched to using UTF-8 on " -"Windows as well. On Unix systems, there will only be a :term:`filesystem " -"encoding `. if you've set the " -"``LANG`` or ``LC_CTYPE`` environment variables; if you haven't, the default " -"encoding is again UTF-8." -msgstr "" - -#: ../../howto/unicode.rst:618 -msgid "" -"The :func:`sys.getfilesystemencoding` function returns the encoding to use " -"on your current system, in case you want to do the encoding manually, but " -"there's not much reason to bother. When opening a file for reading or " -"writing, you can usually just provide the Unicode string as the filename, " -"and it will be automatically converted to the right encoding for you::" +msgid "Most of the operating systems in common use today support filenames that contain arbitrary Unicode characters. Usually this is implemented by converting the Unicode string into some encoding that varies depending on the system. Today Python is converging on using UTF-8: Python on MacOS has used UTF-8 for several versions, and Python 3.6 switched to using UTF-8 on Windows as well. On Unix systems, there will only be a :term:`filesystem encoding `. if you've set the ``LANG`` or ``LC_CTYPE`` environment variables; if you haven't, the default encoding is again UTF-8." +msgstr "" + +msgid "The :func:`sys.getfilesystemencoding` function returns the encoding to use on your current system, in case you want to do the encoding manually, but there's not much reason to bother. When opening a file for reading or writing, you can usually just provide the Unicode string as the filename, and it will be automatically converted to the right encoding for you::" msgstr "" -#: ../../howto/unicode.rst:624 msgid "" "filename = 'filename\\u4500abc'\n" "with open(filename, 'w') as f:\n" " f.write('blah\\n')" msgstr "" -#: ../../howto/unicode.rst:628 -msgid "" -"Functions in the :mod:`os` module such as :func:`os.stat` will also accept " -"Unicode filenames." +msgid "Functions in the :mod:`os` module such as :func:`os.stat` will also accept Unicode filenames." +msgstr "" + +msgid "The :func:`os.listdir` function returns filenames, which raises an issue: should it return the Unicode version of filenames, or should it return bytes containing the encoded versions? :func:`os.listdir` can do both, depending on whether you provided the directory path as bytes or a Unicode string. If you pass a Unicode string as the path, filenames will be decoded using the filesystem's encoding and a list of Unicode strings will be returned, while passing a byte path will return the filenames as bytes. For example, assuming the default :term:`filesystem encoding ` is UTF-8, running the following program::" msgstr "" -#: ../../howto/unicode.rst:631 -msgid "" -"The :func:`os.listdir` function returns filenames, which raises an issue: " -"should it return the Unicode version of filenames, or should it return bytes " -"containing the encoded versions? :func:`os.listdir` can do both, depending " -"on whether you provided the directory path as bytes or a Unicode string. If " -"you pass a Unicode string as the path, filenames will be decoded using the " -"filesystem's encoding and a list of Unicode strings will be returned, while " -"passing a byte path will return the filenames as bytes. For example, " -"assuming the default :term:`filesystem encoding ` is UTF-8, running the following program::" -msgstr "" - -#: ../../howto/unicode.rst:641 msgid "" "fn = 'filename\\u4500abc'\n" "f = open(fn, 'w')\n" @@ -976,90 +536,48 @@ msgid "" "print(os.listdir('.'))" msgstr "" -#: ../../howto/unicode.rst:649 msgid "will produce the following output:" msgstr "" -#: ../../howto/unicode.rst:651 msgid "" "$ python listdir-test.py\n" "[b'filename\\xe4\\x94\\x80abc', ...]\n" "['filename\\u4500abc', ...]" msgstr "" -#: ../../howto/unicode.rst:657 -msgid "" -"The first list contains UTF-8-encoded filenames, and the second list " -"contains the Unicode versions." +msgid "The first list contains UTF-8-encoded filenames, and the second list contains the Unicode versions." msgstr "" -#: ../../howto/unicode.rst:660 -msgid "" -"Note that on most occasions, you should can just stick with using Unicode " -"with these APIs. The bytes APIs should only be used on systems where " -"undecodable file names can be present; that's pretty much only Unix systems " -"now." +msgid "Note that on most occasions, you should can just stick with using Unicode with these APIs. The bytes APIs should only be used on systems where undecodable file names can be present; that's pretty much only Unix systems now." msgstr "" -#: ../../howto/unicode.rst:667 msgid "Tips for Writing Unicode-aware Programs" msgstr "" -#: ../../howto/unicode.rst:669 -msgid "" -"This section provides some suggestions on writing software that deals with " -"Unicode." +msgid "This section provides some suggestions on writing software that deals with Unicode." msgstr "" -#: ../../howto/unicode.rst:672 msgid "The most important tip is:" msgstr "" -#: ../../howto/unicode.rst:674 -msgid "" -"Software should only work with Unicode strings internally, decoding the " -"input data as soon as possible and encoding the output only at the end." +msgid "Software should only work with Unicode strings internally, decoding the input data as soon as possible and encoding the output only at the end." msgstr "" -#: ../../howto/unicode.rst:677 -msgid "" -"If you attempt to write processing functions that accept both Unicode and " -"byte strings, you will find your program vulnerable to bugs wherever you " -"combine the two different kinds of strings. There is no automatic encoding " -"or decoding: if you do e.g. ``str + bytes``, a :exc:`TypeError` will be " -"raised." +msgid "If you attempt to write processing functions that accept both Unicode and byte strings, you will find your program vulnerable to bugs wherever you combine the two different kinds of strings. There is no automatic encoding or decoding: if you do e.g. ``str + bytes``, a :exc:`TypeError` will be raised." msgstr "" -#: ../../howto/unicode.rst:682 -msgid "" -"When using data coming from a web browser or some other untrusted source, a " -"common technique is to check for illegal characters in a string before using " -"the string in a generated command line or storing it in a database. If " -"you're doing this, be careful to check the decoded string, not the encoded " -"bytes data; some encodings may have interesting properties, such as not " -"being bijective or not being fully ASCII-compatible. This is especially " -"true if the input data also specifies the encoding, since the attacker can " -"then choose a clever way to hide malicious text in the encoded bytestream." +msgid "When using data coming from a web browser or some other untrusted source, a common technique is to check for illegal characters in a string before using the string in a generated command line or storing it in a database. If you're doing this, be careful to check the decoded string, not the encoded bytes data; some encodings may have interesting properties, such as not being bijective or not being fully ASCII-compatible. This is especially true if the input data also specifies the encoding, since the attacker can then choose a clever way to hide malicious text in the encoded bytestream." msgstr "" -#: ../../howto/unicode.rst:693 msgid "Converting Between File Encodings" msgstr "" -#: ../../howto/unicode.rst:695 -msgid "" -"The :class:`~codecs.StreamRecoder` class can transparently convert between " -"encodings, taking a stream that returns data in encoding #1 and behaving " -"like a stream returning data in encoding #2." +msgid "The :class:`~codecs.StreamRecoder` class can transparently convert between encodings, taking a stream that returns data in encoding #1 and behaving like a stream returning data in encoding #2." msgstr "" -#: ../../howto/unicode.rst:699 -msgid "" -"For example, if you have an input file *f* that's in Latin-1, you can wrap " -"it with a :class:`~codecs.StreamRecoder` to return bytes encoded in UTF-8::" +msgid "For example, if you have an input file *f* that's in Latin-1, you can wrap it with a :class:`~codecs.StreamRecoder` to return bytes encoded in UTF-8::" msgstr "" -#: ../../howto/unicode.rst:703 msgid "" "new_f = codecs.StreamRecoder(f,\n" " # en/decoder: used by read() to encode its results and\n" @@ -1070,19 +588,12 @@ msgid "" " codecs.getreader('latin-1'), codecs.getwriter('latin-1') )" msgstr "" -#: ../../howto/unicode.rst:713 msgid "Files in an Unknown Encoding" msgstr "" -#: ../../howto/unicode.rst:715 -msgid "" -"What can you do if you need to make a change to a file, but don't know the " -"file's encoding? If you know the encoding is ASCII-compatible and only want " -"to examine or modify the ASCII parts, you can open the file with the " -"``surrogateescape`` error handler::" +msgid "What can you do if you need to make a change to a file, but don't know the file's encoding? If you know the encoding is ASCII-compatible and only want to examine or modify the ASCII parts, you can open the file with the ``surrogateescape`` error handler::" msgstr "" -#: ../../howto/unicode.rst:720 msgid "" "with open(fname, 'r', encoding=\"ascii\", errors=\"surrogateescape\") as f:\n" " data = f.read()\n" @@ -1094,52 +605,23 @@ msgid "" " f.write(data)" msgstr "" -#: ../../howto/unicode.rst:729 -msgid "" -"The ``surrogateescape`` error handler will decode any non-ASCII bytes as " -"code points in a special range running from U+DC80 to U+DCFF. These code " -"points will then turn back into the same bytes when the ``surrogateescape`` " -"error handler is used to encode the data and write it back out." +msgid "The ``surrogateescape`` error handler will decode any non-ASCII bytes as code points in a special range running from U+DC80 to U+DCFF. These code points will then turn back into the same bytes when the ``surrogateescape`` error handler is used to encode the data and write it back out." msgstr "" -#: ../../howto/unicode.rst:739 -msgid "" -"One section of `Mastering Python 3 Input/Output `_, a PyCon 2010 talk by David " -"Beazley, discusses text processing and binary data handling." +msgid "One section of `Mastering Python 3 Input/Output `_, a PyCon 2010 talk by David Beazley, discusses text processing and binary data handling." msgstr "" -#: ../../howto/unicode.rst:743 -msgid "" -"The `PDF slides for Marc-André Lemburg's presentation \"Writing Unicode-" -"aware Applications in Python\" `_ discuss questions of " -"character encodings as well as how to internationalize and localize an " -"application. These slides cover Python 2.x only." +msgid "The `PDF slides for Marc-André Lemburg's presentation \"Writing Unicode-aware Applications in Python\" `_ discuss questions of character encodings as well as how to internationalize and localize an application. These slides cover Python 2.x only." msgstr "" -#: ../../howto/unicode.rst:749 -msgid "" -"`The Guts of Unicode in Python `_ is a PyCon 2013 talk by Benjamin Peterson that " -"discusses the internal Unicode representation in Python 3.3." +msgid "`The Guts of Unicode in Python `_ is a PyCon 2013 talk by Benjamin Peterson that discusses the internal Unicode representation in Python 3.3." msgstr "" -#: ../../howto/unicode.rst:756 msgid "Acknowledgements" msgstr "" -#: ../../howto/unicode.rst:758 -msgid "" -"The initial draft of this document was written by Andrew Kuchling. It has " -"since been revised further by Alexander Belopolsky, Georg Brandl, Andrew " -"Kuchling, and Ezio Melotti." +msgid "The initial draft of this document was written by Andrew Kuchling. It has since been revised further by Alexander Belopolsky, Georg Brandl, Andrew Kuchling, and Ezio Melotti." msgstr "" -#: ../../howto/unicode.rst:762 -msgid "" -"Thanks to the following people who have noted errors or offered suggestions " -"on this article: Éric Araujo, Nicholas Bastin, Nick Coghlan, Marius " -"Gedminas, Kent Johnson, Ken Krugler, Marc-André Lemburg, Martin von Löwis, " -"Terry J. Reedy, Serhiy Storchaka, Eryk Sun, Chad Whitacre, Graham Wideman." +msgid "Thanks to the following people who have noted errors or offered suggestions on this article: Éric Araujo, Nicholas Bastin, Nick Coghlan, Marius Gedminas, Kent Johnson, Ken Krugler, Marc-André Lemburg, Martin von Löwis, Terry J. Reedy, Serhiy Storchaka, Eryk Sun, Chad Whitacre, Graham Wideman." msgstr "" diff --git a/howto/urllib2.po b/howto/urllib2.po index b5e31aad..60c30876 100644 --- a/howto/urllib2.po +++ b/howto/urllib2.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:53+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,92 +24,51 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../howto/urllib2.rst:5 msgid "HOWTO Fetch Internet Resources Using The urllib Package" msgstr "" -#: ../../howto/urllib2.rst:0 msgid "Author" msgstr "" -#: ../../howto/urllib2.rst:7 msgid "`Michael Foord `_" msgstr "" -#: ../../howto/urllib2.rst:11 msgid "Introduction" msgstr "" -#: ../../howto/urllib2.rst:15 -msgid "" -"You may also find useful the following article on fetching web resources " -"with Python:" +msgid "You may also find useful the following article on fetching web resources with Python:" msgstr "" -#: ../../howto/urllib2.rst:18 -msgid "" -"`Basic Authentication `__" +msgid "`Basic Authentication `__" msgstr "" -#: ../../howto/urllib2.rst:20 msgid "A tutorial on *Basic Authentication*, with examples in Python." msgstr "" -#: ../../howto/urllib2.rst:22 -msgid "" -"**urllib.request** is a Python module for fetching URLs (Uniform Resource " -"Locators). It offers a very simple interface, in the form of the *urlopen* " -"function. This is capable of fetching URLs using a variety of different " -"protocols. It also offers a slightly more complex interface for handling " -"common situations - like basic authentication, cookies, proxies and so on. " -"These are provided by objects called handlers and openers." +msgid "**urllib.request** is a Python module for fetching URLs (Uniform Resource Locators). It offers a very simple interface, in the form of the *urlopen* function. This is capable of fetching URLs using a variety of different protocols. It also offers a slightly more complex interface for handling common situations - like basic authentication, cookies, proxies and so on. These are provided by objects called handlers and openers." msgstr "" -#: ../../howto/urllib2.rst:29 -msgid "" -"urllib.request supports fetching URLs for many \"URL schemes\" (identified " -"by the string before the ``\":\"`` in URL - for example ``\"ftp\"`` is the " -"URL scheme of ``\"ftp://python.org/\"``) using their associated network " -"protocols (e.g. FTP, HTTP). This tutorial focuses on the most common case, " -"HTTP." +msgid "urllib.request supports fetching URLs for many \"URL schemes\" (identified by the string before the ``\":\"`` in URL - for example ``\"ftp\"`` is the URL scheme of ``\"ftp://python.org/\"``) using their associated network protocols (e.g. FTP, HTTP). This tutorial focuses on the most common case, HTTP." msgstr "" -#: ../../howto/urllib2.rst:34 -msgid "" -"For straightforward situations *urlopen* is very easy to use. But as soon as " -"you encounter errors or non-trivial cases when opening HTTP URLs, you will " -"need some understanding of the HyperText Transfer Protocol. The most " -"comprehensive and authoritative reference to HTTP is :rfc:`2616`. This is a " -"technical document and not intended to be easy to read. This HOWTO aims to " -"illustrate using *urllib*, with enough detail about HTTP to help you " -"through. It is not intended to replace the :mod:`urllib.request` docs, but " -"is supplementary to them." +msgid "For straightforward situations *urlopen* is very easy to use. But as soon as you encounter errors or non-trivial cases when opening HTTP URLs, you will need some understanding of the HyperText Transfer Protocol. The most comprehensive and authoritative reference to HTTP is :rfc:`2616`. This is a technical document and not intended to be easy to read. This HOWTO aims to illustrate using *urllib*, with enough detail about HTTP to help you through. It is not intended to replace the :mod:`urllib.request` docs, but is supplementary to them." msgstr "" -#: ../../howto/urllib2.rst:44 msgid "Fetching URLs" msgstr "" -#: ../../howto/urllib2.rst:46 msgid "The simplest way to use urllib.request is as follows::" msgstr "" -#: ../../howto/urllib2.rst:48 msgid "" "import urllib.request\n" "with urllib.request.urlopen('http://python.org/') as response:\n" " html = response.read()" msgstr "" -#: ../../howto/urllib2.rst:52 -msgid "" -"If you wish to retrieve a resource via URL and store it in a temporary " -"location, you can do so via the :func:`shutil.copyfileobj` " -"and :func:`tempfile.NamedTemporaryFile` functions::" +msgid "If you wish to retrieve a resource via URL and store it in a temporary location, you can do so via the :func:`shutil.copyfileobj` and :func:`tempfile.NamedTemporaryFile` functions::" msgstr "" -#: ../../howto/urllib2.rst:56 msgid "" "import shutil\n" "import tempfile\n" @@ -123,26 +82,12 @@ msgid "" " pass" msgstr "" -#: ../../howto/urllib2.rst:67 -msgid "" -"Many uses of urllib will be that simple (note that instead of an 'http:' URL " -"we could have used a URL starting with 'ftp:', 'file:', etc.). However, " -"it's the purpose of this tutorial to explain the more complicated cases, " -"concentrating on HTTP." +msgid "Many uses of urllib will be that simple (note that instead of an 'http:' URL we could have used a URL starting with 'ftp:', 'file:', etc.). However, it's the purpose of this tutorial to explain the more complicated cases, concentrating on HTTP." msgstr "" -#: ../../howto/urllib2.rst:72 -msgid "" -"HTTP is based on requests and responses - the client makes requests and " -"servers send responses. urllib.request mirrors this with a ``Request`` " -"object which represents the HTTP request you are making. In its simplest " -"form you create a Request object that specifies the URL you want to fetch. " -"Calling ``urlopen`` with this Request object returns a response object for " -"the URL requested. This response is a file-like object, which means you can " -"for example call ``.read()`` on the response::" +msgid "HTTP is based on requests and responses - the client makes requests and servers send responses. urllib.request mirrors this with a ``Request`` object which represents the HTTP request you are making. In its simplest form you create a Request object that specifies the URL you want to fetch. Calling ``urlopen`` with this Request object returns a response object for the URL requested. This response is a file-like object, which means you can for example call ``.read()`` on the response::" msgstr "" -#: ../../howto/urllib2.rst:80 msgid "" "import urllib.request\n" "\n" @@ -151,43 +96,21 @@ msgid "" " the_page = response.read()" msgstr "" -#: ../../howto/urllib2.rst:86 -msgid "" -"Note that urllib.request makes use of the same Request interface to handle " -"all URL schemes. For example, you can make an FTP request like so::" +msgid "Note that urllib.request makes use of the same Request interface to handle all URL schemes. For example, you can make an FTP request like so::" msgstr "" -#: ../../howto/urllib2.rst:89 msgid "req = urllib.request.Request('ftp://example.com/')" msgstr "" -#: ../../howto/urllib2.rst:91 -msgid "" -"In the case of HTTP, there are two extra things that Request objects allow " -"you to do: First, you can pass data to be sent to the server. Second, you " -"can pass extra information (\"metadata\") *about* the data or about the " -"request itself, to the server - this information is sent as HTTP " -"\"headers\". Let's look at each of these in turn." +msgid "In the case of HTTP, there are two extra things that Request objects allow you to do: First, you can pass data to be sent to the server. Second, you can pass extra information (\"metadata\") *about* the data or about the request itself, to the server - this information is sent as HTTP \"headers\". Let's look at each of these in turn." msgstr "" -#: ../../howto/urllib2.rst:98 msgid "Data" msgstr "" -#: ../../howto/urllib2.rst:100 -msgid "" -"Sometimes you want to send data to a URL (often the URL will refer to a CGI " -"(Common Gateway Interface) script or other web application). With HTTP, this " -"is often done using what's known as a **POST** request. This is often what " -"your browser does when you submit a HTML form that you filled in on the web. " -"Not all POSTs have to come from forms: you can use a POST to transmit " -"arbitrary data to your own application. In the common case of HTML forms, " -"the data needs to be encoded in a standard way, and then passed to the " -"Request object as the ``data`` argument. The encoding is done using a " -"function from the :mod:`urllib.parse` library. ::" -msgstr "" - -#: ../../howto/urllib2.rst:110 +msgid "Sometimes you want to send data to a URL (often the URL will refer to a CGI (Common Gateway Interface) script or other web application). With HTTP, this is often done using what's known as a **POST** request. This is often what your browser does when you submit a HTML form that you filled in on the web. Not all POSTs have to come from forms: you can use a POST to transmit arbitrary data to your own application. In the common case of HTML forms, the data needs to be encoded in a standard way, and then passed to the Request object as the ``data`` argument. The encoding is done using a function from the :mod:`urllib.parse` library. ::" +msgstr "" + msgid "" "import urllib.parse\n" "import urllib.request\n" @@ -204,31 +127,15 @@ msgid "" " the_page = response.read()" msgstr "" -#: ../../howto/urllib2.rst:124 -msgid "" -"Note that other encodings are sometimes required (e.g. for file upload from " -"HTML forms - see `HTML Specification, Form Submission `_ for more details)." +msgid "Note that other encodings are sometimes required (e.g. for file upload from HTML forms - see `HTML Specification, Form Submission `_ for more details)." +msgstr "" + +msgid "If you do not pass the ``data`` argument, urllib uses a **GET** request. One way in which GET and POST requests differ is that POST requests often have \"side-effects\": they change the state of the system in some way (for example by placing an order with the website for a hundredweight of tinned spam to be delivered to your door). Though the HTTP standard makes it clear that POSTs are intended to *always* cause side-effects, and GET requests *never* to cause side-effects, nothing prevents a GET request from having side-effects, nor a POST requests from having no side-effects. Data can also be passed in an HTTP GET request by encoding it in the URL itself." msgstr "" -#: ../../howto/urllib2.rst:129 -msgid "" -"If you do not pass the ``data`` argument, urllib uses a **GET** request. One " -"way in which GET and POST requests differ is that POST requests often have " -"\"side-effects\": they change the state of the system in some way (for " -"example by placing an order with the website for a hundredweight of tinned " -"spam to be delivered to your door). Though the HTTP standard makes it clear " -"that POSTs are intended to *always* cause side-effects, and GET requests " -"*never* to cause side-effects, nothing prevents a GET request from having " -"side-effects, nor a POST requests from having no side-effects. Data can also " -"be passed in an HTTP GET request by encoding it in the URL itself." -msgstr "" - -#: ../../howto/urllib2.rst:139 msgid "This is done as follows::" msgstr "" -#: ../../howto/urllib2.rst:141 msgid "" ">>> import urllib.request\n" ">>> import urllib.parse\n" @@ -244,36 +151,18 @@ msgid "" ">>> data = urllib.request.urlopen(full_url)" msgstr "" -#: ../../howto/urllib2.rst:154 -msgid "" -"Notice that the full URL is created by adding a ``?`` to the URL, followed " -"by the encoded values." +msgid "Notice that the full URL is created by adding a ``?`` to the URL, followed by the encoded values." msgstr "" -#: ../../howto/urllib2.rst:158 msgid "Headers" msgstr "" -#: ../../howto/urllib2.rst:160 -msgid "" -"We'll discuss here one particular HTTP header, to illustrate how to add " -"headers to your HTTP request." +msgid "We'll discuss here one particular HTTP header, to illustrate how to add headers to your HTTP request." +msgstr "" + +msgid "Some websites [#]_ dislike being browsed by programs, or send different versions to different browsers [#]_. By default urllib identifies itself as ``Python-urllib/x.y`` (where ``x`` and ``y`` are the major and minor version numbers of the Python release, e.g. ``Python-urllib/2.5``), which may confuse the site, or just plain not work. The way a browser identifies itself is through the ``User-Agent`` header [#]_. When you create a Request object you can pass a dictionary of headers in. The following example makes the same request as above, but identifies itself as a version of Internet Explorer [#]_. ::" msgstr "" -#: ../../howto/urllib2.rst:163 -msgid "" -"Some websites [#]_ dislike being browsed by programs, or send different " -"versions to different browsers [#]_. By default urllib identifies itself as " -"``Python-urllib/x.y`` (where ``x`` and ``y`` are the major and minor version " -"numbers of the Python release, e.g. ``Python-urllib/2.5``), which may " -"confuse the site, or just plain not work. The way a browser identifies " -"itself is through the ``User-Agent`` header [#]_. When you create a Request " -"object you can pass a dictionary of headers in. The following example makes " -"the same request as above, but identifies itself as a version of Internet " -"Explorer [#]_. ::" -msgstr "" - -#: ../../howto/urllib2.rst:174 msgid "" "import urllib.parse\n" "import urllib.request\n" @@ -292,51 +181,30 @@ msgid "" " the_page = response.read()" msgstr "" -#: ../../howto/urllib2.rst:190 -msgid "" -"The response also has two useful methods. See the section on `info and " -"geturl`_ which comes after we have a look at what happens when things go " -"wrong." +msgid "The response also has two useful methods. See the section on `info and geturl`_ which comes after we have a look at what happens when things go wrong." msgstr "" -#: ../../howto/urllib2.rst:195 msgid "Handling Exceptions" msgstr "" -#: ../../howto/urllib2.rst:197 -msgid "" -"*urlopen* raises :exc:`~urllib.error.URLError` when it cannot handle a " -"response (though as usual with Python APIs, built-in exceptions such " -"as :exc:`ValueError`, :exc:`TypeError` etc. may also be raised)." +msgid "*urlopen* raises :exc:`~urllib.error.URLError` when it cannot handle a response (though as usual with Python APIs, built-in exceptions such as :exc:`ValueError`, :exc:`TypeError` etc. may also be raised)." msgstr "" -#: ../../howto/urllib2.rst:201 -msgid "" -":exc:`~urllib.error.HTTPError` is the subclass " -"of :exc:`~urllib.error.URLError` raised in the specific case of HTTP URLs." +msgid ":exc:`~urllib.error.HTTPError` is the subclass of :exc:`~urllib.error.URLError` raised in the specific case of HTTP URLs." msgstr "" -#: ../../howto/urllib2.rst:204 msgid "The exception classes are exported from the :mod:`urllib.error` module." msgstr "" -#: ../../howto/urllib2.rst:207 msgid "URLError" msgstr "" -#: ../../howto/urllib2.rst:209 -msgid "" -"Often, URLError is raised because there is no network connection (no route " -"to the specified server), or the specified server doesn't exist. In this " -"case, the exception raised will have a 'reason' attribute, which is a tuple " -"containing an error code and a text error message." +msgid "Often, URLError is raised because there is no network connection (no route to the specified server), or the specified server doesn't exist. In this case, the exception raised will have a 'reason' attribute, which is a tuple containing an error code and a text error message." msgstr "" -#: ../../howto/urllib2.rst:214 msgid "e.g. ::" msgstr "" -#: ../../howto/urllib2.rst:216 msgid "" ">>> req = urllib.request.Request('http://www.pretend_server.org')\n" ">>> try: urllib.request.urlopen(req)\n" @@ -346,87 +214,52 @@ msgid "" "(4, 'getaddrinfo failed')" msgstr "" -#: ../../howto/urllib2.rst:225 msgid "HTTPError" msgstr "" -#: ../../howto/urllib2.rst:227 -msgid "" -"Every HTTP response from the server contains a numeric \"status code\". " -"Sometimes the status code indicates that the server is unable to fulfil the " -"request. The default handlers will handle some of these responses for you " -"(for example, if the response is a \"redirection\" that requests the client " -"fetch the document from a different URL, urllib will handle that for you). " -"For those it can't handle, urlopen will raise " -"an :exc:`~urllib.error.HTTPError`. Typical errors include '404' (page not " -"found), '403' (request forbidden), and '401' (authentication required)." +msgid "Every HTTP response from the server contains a numeric \"status code\". Sometimes the status code indicates that the server is unable to fulfil the request. The default handlers will handle some of these responses for you (for example, if the response is a \"redirection\" that requests the client fetch the document from a different URL, urllib will handle that for you). For those it can't handle, urlopen will raise an :exc:`~urllib.error.HTTPError`. Typical errors include '404' (page not found), '403' (request forbidden), and '401' (authentication required)." msgstr "" -#: ../../howto/urllib2.rst:235 -msgid "" -"See section 10 of :rfc:`2616` for a reference on all the HTTP error codes." +msgid "See section 10 of :rfc:`2616` for a reference on all the HTTP error codes." msgstr "" -#: ../../howto/urllib2.rst:237 -msgid "" -"The :exc:`~urllib.error.HTTPError` instance raised will have an integer " -"'code' attribute, which corresponds to the error sent by the server." +msgid "The :exc:`~urllib.error.HTTPError` instance raised will have an integer 'code' attribute, which corresponds to the error sent by the server." msgstr "" -#: ../../howto/urllib2.rst:241 msgid "Error Codes" msgstr "" -#: ../../howto/urllib2.rst:243 -msgid "" -"Because the default handlers handle redirects (codes in the 300 range), and " -"codes in the 100--299 range indicate success, you will usually only see " -"error codes in the 400--599 range." +msgid "Because the default handlers handle redirects (codes in the 300 range), and codes in the 100--299 range indicate success, you will usually only see error codes in the 400--599 range." msgstr "" -#: ../../howto/urllib2.rst:247 -msgid "" -":attr:`http.server.BaseHTTPRequestHandler.responses` is a useful dictionary " -"of response codes that shows all the response codes used by :rfc:`2616`. An " -"excerpt from the dictionary is shown below ::" +msgid ":attr:`http.server.BaseHTTPRequestHandler.responses` is a useful dictionary of response codes that shows all the response codes used by :rfc:`2616`. An excerpt from the dictionary is shown below ::" msgstr "" -#: ../../howto/urllib2.rst:251 msgid "" "responses = {\n" " ...\n" " : ('OK', 'Request fulfilled, document follows'),\n" " ...\n" " : ('Forbidden',\n" -" 'Request forbidden -- authorization will " -"'\n" +" 'Request forbidden -- authorization will '\n" " 'not help'),\n" " : ('Not Found',\n" " 'Nothing matches the given URI'),\n" " ...\n" " : (\"I'm a Teapot\",\n" -" 'Server refuses to brew coffee because " -"'\n" +" 'Server refuses to brew coffee because '\n" " 'it is a teapot'),\n" " ...\n" " : ('Service Unavailable',\n" -" 'The server cannot process the " -"'\n" +" 'The server cannot process the '\n" " 'request due to a high load'),\n" " ...\n" " }" msgstr "" -#: ../../howto/urllib2.rst:271 -msgid "" -"When an error is raised the server responds by returning an HTTP error code " -"*and* an error page. You can use the :exc:`~urllib.error.HTTPError` instance " -"as a response on the page returned. This means that as well as the code " -"attribute, it also has read, geturl, and info, methods as returned by the " -"``urllib.response`` module::" +msgid "When an error is raised the server responds by returning an HTTP error code *and* an error page. You can use the :exc:`~urllib.error.HTTPError` instance as a response on the page returned. This means that as well as the code attribute, it also has read, geturl, and info, methods as returned by the ``urllib.response`` module::" msgstr "" -#: ../../howto/urllib2.rst:276 msgid "" ">>> req = urllib.request.Request('http://www.python.org/fish.html')\n" ">>> try:\n" @@ -437,29 +270,21 @@ msgid "" "...\n" "404\n" "b'\\n\\n\\n\\n\\n\\nPage Not Found\\n\n" " ..." msgstr "" -#: ../../howto/urllib2.rst:291 msgid "Wrapping it Up" msgstr "" -#: ../../howto/urllib2.rst:293 -msgid "" -"So if you want to be prepared for :exc:`~urllib.error.HTTPError` " -"*or* :exc:`~urllib.error.URLError` there are two basic approaches. I prefer " -"the second approach." +msgid "So if you want to be prepared for :exc:`~urllib.error.HTTPError` *or* :exc:`~urllib.error.URLError` there are two basic approaches. I prefer the second approach." msgstr "" -#: ../../howto/urllib2.rst:297 msgid "Number 1" msgstr "" -#: ../../howto/urllib2.rst:302 msgid "" "from urllib.request import Request, urlopen\n" "from urllib.error import URLError, HTTPError\n" @@ -476,17 +301,12 @@ msgid "" " # everything is fine" msgstr "" -#: ../../howto/urllib2.rst:319 -msgid "" -"The ``except HTTPError`` *must* come first, otherwise ``except URLError`` " -"will *also* catch an :exc:`~urllib.error.HTTPError`." +msgid "The ``except HTTPError`` *must* come first, otherwise ``except URLError`` will *also* catch an :exc:`~urllib.error.HTTPError`." msgstr "" -#: ../../howto/urllib2.rst:323 msgid "Number 2" msgstr "" -#: ../../howto/urllib2.rst:327 msgid "" "from urllib.request import Request, urlopen\n" "from urllib.error import URLError\n" @@ -504,153 +324,69 @@ msgid "" " # everything is fine" msgstr "" -#: ../../howto/urllib2.rst:344 msgid "info and geturl" msgstr "" -#: ../../howto/urllib2.rst:346 -msgid "" -"The response returned by urlopen (or the :exc:`~urllib.error.HTTPError` " -"instance) has two useful methods :meth:`!info` and :meth:`!geturl` and is " -"defined in the module :mod:`urllib.response`." +msgid "The response returned by urlopen (or the :exc:`~urllib.error.HTTPError` instance) has two useful methods :meth:`!info` and :meth:`!geturl` and is defined in the module :mod:`urllib.response`." msgstr "" -#: ../../howto/urllib2.rst:350 -msgid "" -"**geturl** - this returns the real URL of the page fetched. This is useful " -"because ``urlopen`` (or the opener object used) may have followed a " -"redirect. The URL of the page fetched may not be the same as the URL " -"requested." +msgid "**geturl** - this returns the real URL of the page fetched. This is useful because ``urlopen`` (or the opener object used) may have followed a redirect. The URL of the page fetched may not be the same as the URL requested." msgstr "" -#: ../../howto/urllib2.rst:354 -msgid "" -"**info** - this returns a dictionary-like object that describes the page " -"fetched, particularly the headers sent by the server. It is currently " -"an :class:`http.client.HTTPMessage` instance." +msgid "**info** - this returns a dictionary-like object that describes the page fetched, particularly the headers sent by the server. It is currently an :class:`http.client.HTTPMessage` instance." msgstr "" -#: ../../howto/urllib2.rst:358 -msgid "" -"Typical headers include 'Content-length', 'Content-type', and so on. See the " -"`Quick Reference to HTTP Headers `_ for a " -"useful listing of HTTP headers with brief explanations of their meaning and " -"use." +msgid "Typical headers include 'Content-length', 'Content-type', and so on. See the `Quick Reference to HTTP Headers `_ for a useful listing of HTTP headers with brief explanations of their meaning and use." msgstr "" -#: ../../howto/urllib2.rst:365 msgid "Openers and Handlers" msgstr "" -#: ../../howto/urllib2.rst:367 -msgid "" -"When you fetch a URL you use an opener (an instance of the perhaps " -"confusingly named :class:`urllib.request.OpenerDirector`). Normally we have " -"been using the default opener - via ``urlopen`` - but you can create custom " -"openers. Openers use handlers. All the \"heavy lifting\" is done by the " -"handlers. Each handler knows how to open URLs for a particular URL scheme " -"(http, ftp, etc.), or how to handle an aspect of URL opening, for example " -"HTTP redirections or HTTP cookies." +msgid "When you fetch a URL you use an opener (an instance of the perhaps confusingly named :class:`urllib.request.OpenerDirector`). Normally we have been using the default opener - via ``urlopen`` - but you can create custom openers. Openers use handlers. All the \"heavy lifting\" is done by the handlers. Each handler knows how to open URLs for a particular URL scheme (http, ftp, etc.), or how to handle an aspect of URL opening, for example HTTP redirections or HTTP cookies." msgstr "" -#: ../../howto/urllib2.rst:375 -msgid "" -"You will want to create openers if you want to fetch URLs with specific " -"handlers installed, for example to get an opener that handles cookies, or to " -"get an opener that does not handle redirections." +msgid "You will want to create openers if you want to fetch URLs with specific handlers installed, for example to get an opener that handles cookies, or to get an opener that does not handle redirections." msgstr "" -#: ../../howto/urllib2.rst:379 -msgid "" -"To create an opener, instantiate an ``OpenerDirector``, and then call " -"``.add_handler(some_handler_instance)`` repeatedly." +msgid "To create an opener, instantiate an ``OpenerDirector``, and then call ``.add_handler(some_handler_instance)`` repeatedly." msgstr "" -#: ../../howto/urllib2.rst:382 -msgid "" -"Alternatively, you can use ``build_opener``, which is a convenience function " -"for creating opener objects with a single function call. ``build_opener`` " -"adds several handlers by default, but provides a quick way to add more and/" -"or override the default handlers." +msgid "Alternatively, you can use ``build_opener``, which is a convenience function for creating opener objects with a single function call. ``build_opener`` adds several handlers by default, but provides a quick way to add more and/or override the default handlers." msgstr "" -#: ../../howto/urllib2.rst:387 -msgid "" -"Other sorts of handlers you might want to can handle proxies, " -"authentication, and other common but slightly specialised situations." +msgid "Other sorts of handlers you might want to can handle proxies, authentication, and other common but slightly specialised situations." msgstr "" -#: ../../howto/urllib2.rst:390 -msgid "" -"``install_opener`` can be used to make an ``opener`` object the (global) " -"default opener. This means that calls to ``urlopen`` will use the opener you " -"have installed." +msgid "``install_opener`` can be used to make an ``opener`` object the (global) default opener. This means that calls to ``urlopen`` will use the opener you have installed." msgstr "" -#: ../../howto/urllib2.rst:394 -msgid "" -"Opener objects have an ``open`` method, which can be called directly to " -"fetch urls in the same way as the ``urlopen`` function: there's no need to " -"call ``install_opener``, except as a convenience." +msgid "Opener objects have an ``open`` method, which can be called directly to fetch urls in the same way as the ``urlopen`` function: there's no need to call ``install_opener``, except as a convenience." msgstr "" -#: ../../howto/urllib2.rst:400 msgid "Basic Authentication" msgstr "" -#: ../../howto/urllib2.rst:402 -msgid "" -"To illustrate creating and installing a handler we will use the " -"``HTTPBasicAuthHandler``. For a more detailed discussion of this subject -- " -"including an explanation of how Basic Authentication works - see the `Basic " -"Authentication Tutorial `__." +msgid "To illustrate creating and installing a handler we will use the ``HTTPBasicAuthHandler``. For a more detailed discussion of this subject -- including an explanation of how Basic Authentication works - see the `Basic Authentication Tutorial `__." msgstr "" -#: ../../howto/urllib2.rst:408 -msgid "" -"When authentication is required, the server sends a header (as well as the " -"401 error code) requesting authentication. This specifies the " -"authentication scheme and a 'realm'. The header looks like: ``WWW-" -"Authenticate: SCHEME realm=\"REALM\"``." +msgid "When authentication is required, the server sends a header (as well as the 401 error code) requesting authentication. This specifies the authentication scheme and a 'realm'. The header looks like: ``WWW-Authenticate: SCHEME realm=\"REALM\"``." msgstr "" -#: ../../howto/urllib2.rst:413 msgid "e.g." msgstr "" -#: ../../howto/urllib2.rst:415 msgid "WWW-Authenticate: Basic realm=\"cPanel Users\"" msgstr "" -#: ../../howto/urllib2.rst:420 -msgid "" -"The client should then retry the request with the appropriate name and " -"password for the realm included as a header in the request. This is 'basic " -"authentication'. In order to simplify this process we can create an instance " -"of ``HTTPBasicAuthHandler`` and an opener to use this handler." +msgid "The client should then retry the request with the appropriate name and password for the realm included as a header in the request. This is 'basic authentication'. In order to simplify this process we can create an instance of ``HTTPBasicAuthHandler`` and an opener to use this handler." msgstr "" -#: ../../howto/urllib2.rst:425 -msgid "" -"The ``HTTPBasicAuthHandler`` uses an object called a password manager to " -"handle the mapping of URLs and realms to passwords and usernames. If you " -"know what the realm is (from the authentication header sent by the server), " -"then you can use a ``HTTPPasswordMgr``. Frequently one doesn't care what the " -"realm is. In that case, it is convenient to use " -"``HTTPPasswordMgrWithDefaultRealm``. This allows you to specify a default " -"username and password for a URL. This will be supplied in the absence of you " -"providing an alternative combination for a specific realm. We indicate this " -"by providing ``None`` as the realm argument to the ``add_password`` method." -msgstr "" - -#: ../../howto/urllib2.rst:435 -msgid "" -"The top-level URL is the first URL that requires authentication. URLs " -"\"deeper\" than the URL you pass to .add_password() will also match. ::" +msgid "The ``HTTPBasicAuthHandler`` uses an object called a password manager to handle the mapping of URLs and realms to passwords and usernames. If you know what the realm is (from the authentication header sent by the server), then you can use a ``HTTPPasswordMgr``. Frequently one doesn't care what the realm is. In that case, it is convenient to use ``HTTPPasswordMgrWithDefaultRealm``. This allows you to specify a default username and password for a URL. This will be supplied in the absence of you providing an alternative combination for a specific realm. We indicate this by providing ``None`` as the realm argument to the ``add_password`` method." +msgstr "" + +msgid "The top-level URL is the first URL that requires authentication. URLs \"deeper\" than the URL you pass to .add_password() will also match. ::" msgstr "" -#: ../../howto/urllib2.rst:438 msgid "" "# create a password manager\n" "password_mgr = urllib.request.HTTPPasswordMgrWithDefaultRealm()\n" @@ -673,82 +409,39 @@ msgid "" "urllib.request.install_opener(opener)" msgstr "" -#: ../../howto/urllib2.rst:460 -msgid "" -"In the above example we only supplied our ``HTTPBasicAuthHandler`` to " -"``build_opener``. By default openers have the handlers for normal situations " -"-- ``ProxyHandler`` (if a proxy setting such as an :envvar:`!http_proxy` " -"environment variable is set), ``UnknownHandler``, ``HTTPHandler``, " -"``HTTPDefaultErrorHandler``, ``HTTPRedirectHandler``, ``FTPHandler``, " -"``FileHandler``, ``DataHandler``, ``HTTPErrorProcessor``." +msgid "In the above example we only supplied our ``HTTPBasicAuthHandler`` to ``build_opener``. By default openers have the handlers for normal situations -- ``ProxyHandler`` (if a proxy setting such as an :envvar:`!http_proxy` environment variable is set), ``UnknownHandler``, ``HTTPHandler``, ``HTTPDefaultErrorHandler``, ``HTTPRedirectHandler``, ``FTPHandler``, ``FileHandler``, ``DataHandler``, ``HTTPErrorProcessor``." msgstr "" -#: ../../howto/urllib2.rst:467 -msgid "" -"``top_level_url`` is in fact *either* a full URL (including the 'http:' " -"scheme component and the hostname and optionally the port number) e.g. " -"``\"http://example.com/\"`` *or* an \"authority\" (i.e. the hostname, " -"optionally including the port number) e.g. ``\"example.com\"`` or " -"``\"example.com:8080\"`` (the latter example includes a port number). The " -"authority, if present, must NOT contain the \"userinfo\" component - for " -"example ``\"joe:password@example.com\"`` is not correct." +msgid "``top_level_url`` is in fact *either* a full URL (including the 'http:' scheme component and the hostname and optionally the port number) e.g. ``\"http://example.com/\"`` *or* an \"authority\" (i.e. the hostname, optionally including the port number) e.g. ``\"example.com\"`` or ``\"example.com:8080\"`` (the latter example includes a port number). The authority, if present, must NOT contain the \"userinfo\" component - for example ``\"joe:password@example.com\"`` is not correct." msgstr "" -#: ../../howto/urllib2.rst:477 msgid "Proxies" msgstr "" -#: ../../howto/urllib2.rst:479 -msgid "" -"**urllib** will auto-detect your proxy settings and use those. This is " -"through the ``ProxyHandler``, which is part of the normal handler chain when " -"a proxy setting is detected. Normally that's a good thing, but there are " -"occasions when it may not be helpful [#]_. One way to do this is to setup " -"our own ``ProxyHandler``, with no proxies defined. This is done using " -"similar steps to setting up a `Basic Authentication`_ handler: ::" +msgid "**urllib** will auto-detect your proxy settings and use those. This is through the ``ProxyHandler``, which is part of the normal handler chain when a proxy setting is detected. Normally that's a good thing, but there are occasions when it may not be helpful [#]_. One way to do this is to setup our own ``ProxyHandler``, with no proxies defined. This is done using similar steps to setting up a `Basic Authentication`_ handler: ::" msgstr "" -#: ../../howto/urllib2.rst:486 msgid "" ">>> proxy_support = urllib.request.ProxyHandler({})\n" ">>> opener = urllib.request.build_opener(proxy_support)\n" ">>> urllib.request.install_opener(opener)" msgstr "" -#: ../../howto/urllib2.rst:492 -msgid "" -"Currently ``urllib.request`` *does not* support fetching of ``https`` " -"locations through a proxy. However, this can be enabled by extending " -"urllib.request as shown in the recipe [#]_." +msgid "Currently ``urllib.request`` *does not* support fetching of ``https`` locations through a proxy. However, this can be enabled by extending urllib.request as shown in the recipe [#]_." msgstr "" -#: ../../howto/urllib2.rst:498 -msgid "" -"``HTTP_PROXY`` will be ignored if a variable ``REQUEST_METHOD`` is set; see " -"the documentation on :func:`~urllib.request.getproxies`." +msgid "``HTTP_PROXY`` will be ignored if a variable ``REQUEST_METHOD`` is set; see the documentation on :func:`~urllib.request.getproxies`." msgstr "" -#: ../../howto/urllib2.rst:503 msgid "Sockets and Layers" msgstr "" -#: ../../howto/urllib2.rst:505 -msgid "" -"The Python support for fetching resources from the web is layered. urllib " -"uses the :mod:`http.client` library, which in turn uses the socket library." +msgid "The Python support for fetching resources from the web is layered. urllib uses the :mod:`http.client` library, which in turn uses the socket library." msgstr "" -#: ../../howto/urllib2.rst:508 -msgid "" -"As of Python 2.3 you can specify how long a socket should wait for a " -"response before timing out. This can be useful in applications which have to " -"fetch web pages. By default the socket module has *no timeout* and can hang. " -"Currently, the socket timeout is not exposed at the http.client or " -"urllib.request levels. However, you can set the default timeout globally for " -"all sockets using ::" +msgid "As of Python 2.3 you can specify how long a socket should wait for a response before timing out. This can be useful in applications which have to fetch web pages. By default the socket module has *no timeout* and can hang. Currently, the socket timeout is not exposed at the http.client or urllib.request levels. However, you can set the default timeout globally for all sockets using ::" msgstr "" -#: ../../howto/urllib2.rst:514 msgid "" "import socket\n" "import urllib.request\n" @@ -763,48 +456,26 @@ msgid "" "response = urllib.request.urlopen(req)" msgstr "" -#: ../../howto/urllib2.rst:531 msgid "Footnotes" msgstr "" -#: ../../howto/urllib2.rst:533 msgid "This document was reviewed and revised by John Lee." msgstr "" -#: ../../howto/urllib2.rst:535 msgid "Google for example." msgstr "" -#: ../../howto/urllib2.rst:536 -msgid "" -"Browser sniffing is a very bad practice for website design - building sites " -"using web standards is much more sensible. Unfortunately a lot of sites " -"still send different versions to different browsers." +msgid "Browser sniffing is a very bad practice for website design - building sites using web standards is much more sensible. Unfortunately a lot of sites still send different versions to different browsers." msgstr "" -#: ../../howto/urllib2.rst:539 -msgid "" -"The user agent for MSIE 6 is *'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT " -"5.1; SV1; .NET CLR 1.1.4322)'*" +msgid "The user agent for MSIE 6 is *'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)'*" msgstr "" -#: ../../howto/urllib2.rst:541 -msgid "" -"For details of more HTTP request headers, see `Quick Reference to HTTP " -"Headers`_." +msgid "For details of more HTTP request headers, see `Quick Reference to HTTP Headers`_." msgstr "" -#: ../../howto/urllib2.rst:543 -msgid "" -"In my case I have to use a proxy to access the internet at work. If you " -"attempt to fetch *localhost* URLs through this proxy it blocks them. IE is " -"set to use the proxy, which urllib picks up on. In order to test scripts " -"with a localhost server, I have to prevent urllib from using the proxy." +msgid "In my case I have to use a proxy to access the internet at work. If you attempt to fetch *localhost* URLs through this proxy it blocks them. IE is set to use the proxy, which urllib picks up on. In order to test scripts with a localhost server, I have to prevent urllib from using the proxy." msgstr "" -#: ../../howto/urllib2.rst:548 -msgid "" -"urllib opener for SSL proxy (CONNECT method): `ASPN Cookbook Recipe `_." +msgid "urllib opener for SSL proxy (CONNECT method): `ASPN Cookbook Recipe `_." msgstr "" diff --git a/improve-page-nojs.po b/improve-page-nojs.po index 1d7dbf5d..5ac90b7b 100644 --- a/improve-page-nojs.po +++ b/improve-page-nojs.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2026-07-25 12:59+0330\n" "Last-Translator: invincible627 , 2026\n" "Language-Team: none\n" @@ -21,50 +21,20 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../improve-page-nojs.rst:5 msgid "Improve a documentation page" msgstr "بهبود یک صفحه‌ی سند" -#: ../../improve-page-nojs.rst:13 -msgid "" -"We are always interested to hear ideas about improvements to the " -"documentation." +msgid "We are always interested to hear ideas about improvements to the documentation." msgstr "ما همیشه علاقه‌مند به شنیدن ایده‌ها درباره‌ی بهبود سند هستیم." -#: ../../improve-page-nojs.rst:17 -msgid "" -"If the bug or suggested improvement concerns the translation of this " -"documentation, open an issue or edit the page in `translation's repository " -"`_ instead." -msgstr "" -"اگر مشکل یا پیشنهاد بهبود مربوط به ترجمه‌ی این مستندات است، یک گزارش مشکل باز " -"کنید یا صفحه را در `مخزن ترجمه `_ ویرایش کنید." +msgid "If the bug or suggested improvement concerns the translation of this documentation, open an issue or edit the page in `translation's repository `_ instead." +msgstr "اگر مشکل یا پیشنهاد بهبود مربوط به ترجمه‌ی این مستندات است، یک گزارش مشکل باز کنید یا صفحه را در `مخزن ترجمه `_ ویرایش کنید." -#: ../../improve-page-nojs.rst:21 msgid "You have a few ways to ask questions or suggest changes:" msgstr "شما چند راه برای پرسیدن سؤال یا پیشنهاد تغییرات دارید." -#: ../../improve-page-nojs.rst:23 -msgid "" -"You can start a discussion about the page on the Python discussion forum. " -"This link will start a topic in the Documentation category: `New " -"Documentation topic `_." -msgstr "" -"می‌توانید یک بحث درباره‌ی صفحه را در انجمن گفتگوی پایتون شروع کنید. این لینک " -"یک موضوع از پیش‌تکمیل‌شده را شروع می‌کند: `سوال درباره‌ی صفحه \"PAGETITLE\" " -"`_." +msgid "You can start a discussion about the page on the Python discussion forum. This link will start a topic in the Documentation category: `New Documentation topic `_." +msgstr "می‌توانید یک بحث درباره‌ی صفحه را در انجمن گفتگوی پایتون شروع کنید. این لینک یک موضوع از پیش‌تکمیل‌شده را شروع می‌کند: `سوال درباره‌ی صفحه \"PAGETITLE\" `_." -#: ../../improve-page-nojs.rst:27 -msgid "" -"You can open an issue on the Python GitHub issue tracker. This link will " -"create a new issue with the \"docs\" label: `New docs issue `_." -msgstr "" -"می‌توانید یک issue در ردیاب issues GitHub پایتون باز کنید. این لینک یک issue " -"جدید از پیش‌تکمیل‌شده ایجاد خواهد کرد: `Docs: مشکل در صفحه \"PAGETITLE\" " -"`_." +msgid "You can open an issue on the Python GitHub issue tracker. This link will create a new issue with the \"docs\" label: `New docs issue `_." +msgstr "می‌توانید یک issue در ردیاب issues GitHub پایتون باز کنید. این لینک یک issue جدید از پیش‌تکمیل‌شده ایجاد خواهد کرد: `Docs: مشکل در صفحه \"PAGETITLE\" `_." diff --git a/improve-page.po b/improve-page.po index 0d930d07..371991af 100644 --- a/improve-page.po +++ b/improve-page.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2026-07-25 12:59+0330\n" "Last-Translator: invincible627 , 2026\n" "Language-Team: none\n" @@ -21,72 +21,26 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../improve-page.rst:5 msgid "Improve a documentation page" msgstr "بهبود یک صفحه‌ی سند" -#: ../../improve-page.rst:43 -msgid "" -"We are always interested to hear ideas about improvements to the " -"documentation." +msgid "We are always interested to hear ideas about improvements to the documentation." msgstr "ما همیشه مشتاق شنیدن ایده‌ها و پیشنهادهای شما برای بهبود مستندات هستیم." -#: ../../improve-page.rst:45 -msgid "" -"You were reading \"PAGETITLE\" at ``_. The source for that page is " -"on `GitHub `_." -msgstr "" -"شما در حال خواندن «PAGETITLE» در ``_ بودید. منبع آن صفحه در `GitHub " -"`_ است." +msgid "You were reading \"PAGETITLE\" at ``_. The source for that page is on `GitHub `_." +msgstr "شما در حال خواندن «PAGETITLE» در ``_ بودید. منبع آن صفحه در `GitHub `_ است." -#: ../../improve-page.rst:50 -msgid "" -"If the bug or suggested improvement concerns the translation of this " -"documentation, open an issue or edit the page in `translation's repository " -"`_ instead." -msgstr "" -"اگر مشکل یا پیشنهاد بهبود مربوط به ترجمه‌ی این مستندات است، یک گزارش مشکل باز " -"کنید یا صفحه را در `مخزن ترجمه `_ ویرایش کنید." +msgid "If the bug or suggested improvement concerns the translation of this documentation, open an issue or edit the page in `translation's repository `_ instead." +msgstr "اگر مشکل یا پیشنهاد بهبود مربوط به ترجمه‌ی این مستندات است، یک گزارش مشکل باز کنید یا صفحه را در `مخزن ترجمه `_ ویرایش کنید." -#: ../../improve-page.rst:54 msgid "You have a few ways to ask questions or suggest changes:" msgstr "شما چند راه برای پرسیدن سؤال یا پیشنهاد تغییرات دارید." -#: ../../improve-page.rst:56 -msgid "" -"You can start a discussion about the page on the Python discussion forum. " -"This link will start a pre-populated topic: `Question about page " -"\"PAGETITLE\" `_." -msgstr "" -"می‌توانید یک بحث درباره‌ی صفحه را در انجمن گفتگوی پایتون شروع کنید. این لینک " -"یک موضوع از پیش‌تکمیل‌شده را شروع می‌کند: `سوال درباره‌ی صفحه \"PAGETITLE\" " -"`_." +msgid "You can start a discussion about the page on the Python discussion forum. This link will start a pre-populated topic: `Question about page \"PAGETITLE\" `_." +msgstr "می‌توانید یک بحث درباره‌ی صفحه را در انجمن گفتگوی پایتون شروع کنید. این لینک یک موضوع از پیش‌تکمیل‌شده را شروع می‌کند: `سوال درباره‌ی صفحه \"PAGETITLE\" `_." -#: ../../improve-page.rst:60 -msgid "" -"You can open an issue on the Python GitHub issue tracker. This link will " -"create a new pre-populated issue: `Docs: problem with page \"PAGETITLE\" " -"`_." -msgstr "" -"می‌توانید یک issue در ردیاب issues GitHub پایتون باز کنید. این لینک یک issue " -"جدید از پیش‌تکمیل‌شده ایجاد خواهد کرد: `Docs: مشکل در صفحه \"PAGETITLE\" " -"`_." +msgid "You can open an issue on the Python GitHub issue tracker. This link will create a new pre-populated issue: `Docs: problem with page \"PAGETITLE\" `_." +msgstr "می‌توانید یک issue در ردیاب issues GitHub پایتون باز کنید. این لینک یک issue جدید از پیش‌تکمیل‌شده ایجاد خواهد کرد: `Docs: مشکل در صفحه \"PAGETITLE\" `_." -#: ../../improve-page.rst:64 -msgid "" -"You can `edit the page on GitHub `_ to open a pull request and begin the " -"contribution process." -msgstr "" -"می‌توانید صفحه را در `GitHub `_ ویرایش کنید تا یک درخواست ادغام (pull request) باز " -"کنید و فرآیند مشارکت را آغاز نمایید." +msgid "You can `edit the page on GitHub `_ to open a pull request and begin the contribution process." +msgstr "می‌توانید صفحه را در `GitHub `_ ویرایش کنید تا یک درخواست ادغام (pull request) باز کنید و فرآیند مشارکت را آغاز نمایید." diff --git a/installing/index.po b/installing/index.po index 6fbf876d..963a4d52 100644 --- a/installing/index.po +++ b/installing/index.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:54+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,316 +24,167 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../installing/index.rst:7 msgid "Installing Python modules" msgstr "" -#: ../../installing/index.rst:9 -msgid "" -"As a popular open source development project, Python has an active " -"supporting community of contributors and users that also make their software " -"available for other Python developers to use under open-source license terms." +msgid "As a popular open source development project, Python has an active supporting community of contributors and users that also make their software available for other Python developers to use under open-source license terms." msgstr "" -#: ../../installing/index.rst:13 -msgid "" -"This allows Python users to share and collaborate effectively, benefiting " -"from the solutions others have already created to common (and sometimes even " -"rare!) problems, as well as potentially contributing their own solutions to " -"the common pool." +msgid "This allows Python users to share and collaborate effectively, benefiting from the solutions others have already created to common (and sometimes even rare!) problems, as well as potentially contributing their own solutions to the common pool." msgstr "" -#: ../../installing/index.rst:18 -msgid "" -"This guide covers the installation part of the process. For a guide to " -"creating and sharing your own Python projects, refer to the `Python " -"packaging user guide`_." +msgid "This guide covers the installation part of the process. For a guide to creating and sharing your own Python projects, refer to the `Python packaging user guide`_." msgstr "" -#: ../../installing/index.rst:26 -msgid "" -"For corporate and other institutional users, be aware that many " -"organisations have their own policies around using and contributing to open " -"source software. Please take such policies into account when making use of " -"the distribution and installation tools provided with Python." +msgid "For corporate and other institutional users, be aware that many organisations have their own policies around using and contributing to open source software. Please take such policies into account when making use of the distribution and installation tools provided with Python." msgstr "" -#: ../../installing/index.rst:33 msgid "Key terms" msgstr "" -#: ../../installing/index.rst:35 -msgid "" -":program:`pip` is the preferred installer program. It is included by default " -"with the Python binary installers." +msgid ":program:`pip` is the preferred installer program. It is included by default with the Python binary installers." msgstr "" -#: ../../installing/index.rst:37 -msgid "" -"A *virtual environment* is a semi-isolated Python environment that allows " -"packages to be installed for use by a particular application, rather than " -"being installed system wide." +msgid "A *virtual environment* is a semi-isolated Python environment that allows packages to be installed for use by a particular application, rather than being installed system wide." msgstr "" -#: ../../installing/index.rst:40 -msgid "" -"``venv`` is the standard tool for creating virtual environments. It defaults " -"to installing :program:`pip` into all created virtual environments." +msgid "``venv`` is the standard tool for creating virtual environments. It defaults to installing :program:`pip` into all created virtual environments." msgstr "" -#: ../../installing/index.rst:42 -msgid "" -"``virtualenv`` is a third-party alternative (and predecessor) to ``venv``." +msgid "``virtualenv`` is a third-party alternative (and predecessor) to ``venv``." msgstr "" -#: ../../installing/index.rst:44 -msgid "" -"The `Python Package Index (PyPI) `__ is a public " -"repository of open source licensed packages made available for use by other " -"Python users." +msgid "The `Python Package Index (PyPI) `__ is a public repository of open source licensed packages made available for use by other Python users." msgstr "" -#: ../../installing/index.rst:47 -msgid "" -"The `Python Packaging Authority `__ is the group of " -"developers and documentation authors responsible for the maintenance and " -"evolution of the standard packaging tools and the associated metadata and " -"file format standards. They maintain a variety of tools, documentation, and " -"issue trackers on `GitHub `__." +msgid "The `Python Packaging Authority `__ is the group of developers and documentation authors responsible for the maintenance and evolution of the standard packaging tools and the associated metadata and file format standards. They maintain a variety of tools, documentation, and issue trackers on `GitHub `__." msgstr "" -#: ../../installing/index.rst:54 -msgid "" -"The use of ``venv`` is now recommended for creating virtual environments." +msgid "The use of ``venv`` is now recommended for creating virtual environments." msgstr "" -#: ../../installing/index.rst:59 -msgid "" -"`Python Packaging User Guide: Creating and using virtual environments " -"`__" +msgid "`Python Packaging User Guide: Creating and using virtual environments `__" msgstr "" -#: ../../installing/index.rst:64 msgid "Basic usage" msgstr "" -#: ../../installing/index.rst:66 -msgid "" -"The standard packaging tools are all designed to be used from the command " -"line." +msgid "The standard packaging tools are all designed to be used from the command line." msgstr "" -#: ../../installing/index.rst:69 -msgid "" -"The following command will install the latest version of a module and its " -"dependencies from PyPI::" +msgid "The following command will install the latest version of a module and its dependencies from PyPI::" msgstr "" -#: ../../installing/index.rst:72 msgid "python -m pip install SomePackage" msgstr "" -#: ../../installing/index.rst:76 -msgid "" -"For POSIX users (including macOS and Linux users), the examples in this " -"guide assume the use of a :term:`virtual environment`." +msgid "For POSIX users (including macOS and Linux users), the examples in this guide assume the use of a :term:`virtual environment`." msgstr "" -#: ../../installing/index.rst:79 -msgid "" -"For Windows users, the examples in this guide assume that the option to " -"adjust the system PATH environment variable was selected when installing " -"Python." +msgid "For Windows users, the examples in this guide assume that the option to adjust the system PATH environment variable was selected when installing Python." msgstr "" -#: ../../installing/index.rst:83 -msgid "" -"It's also possible to specify an exact or minimum version directly on the " -"command line. When using comparator operators such as ``>``, ``<`` or some " -"other special character which get interpreted by shell, the package name and " -"the version should be enclosed within double quotes::" +msgid "It's also possible to specify an exact or minimum version directly on the command line. When using comparator operators such as ``>``, ``<`` or some other special character which get interpreted by shell, the package name and the version should be enclosed within double quotes::" msgstr "" -#: ../../installing/index.rst:88 msgid "" "python -m pip install SomePackage==1.0.4 # specific version\n" "python -m pip install \"SomePackage>=1.0.4\" # minimum version" msgstr "" -#: ../../installing/index.rst:91 -msgid "" -"Normally, if a suitable module is already installed, attempting to install " -"it again will have no effect. Upgrading existing modules must be requested " -"explicitly::" +msgid "Normally, if a suitable module is already installed, attempting to install it again will have no effect. Upgrading existing modules must be requested explicitly::" msgstr "" -#: ../../installing/index.rst:95 msgid "python -m pip install --upgrade SomePackage" msgstr "" -#: ../../installing/index.rst:97 -msgid "" -"More information and resources regarding :program:`pip` and its capabilities " -"can be found in the `Python Packaging User Guide `__." +msgid "More information and resources regarding :program:`pip` and its capabilities can be found in the `Python Packaging User Guide `__." msgstr "" -#: ../../installing/index.rst:100 -msgid "" -"Creation of virtual environments is done through the :mod:`venv` module. " -"Installing packages into an active virtual environment uses the commands " -"shown above." +msgid "Creation of virtual environments is done through the :mod:`venv` module. Installing packages into an active virtual environment uses the commands shown above." msgstr "" -#: ../../installing/index.rst:106 -msgid "" -"`Python Packaging User Guide: Installing Python Distribution Packages " -"`__" +msgid "`Python Packaging User Guide: Installing Python Distribution Packages `__" msgstr "" -#: ../../installing/index.rst:111 msgid "How do I ...?" msgstr "" -#: ../../installing/index.rst:113 msgid "These are quick answers or links for some common tasks." msgstr "" -#: ../../installing/index.rst:118 msgid "... install packages just for the current user?" msgstr "" -#: ../../installing/index.rst:120 -msgid "" -"Passing the ``--user`` option to ``python -m pip install`` will install a " -"package just for the current user, rather than for all users of the system." +msgid "Passing the ``--user`` option to ``python -m pip install`` will install a package just for the current user, rather than for all users of the system." msgstr "" -#: ../../installing/index.rst:125 msgid "... install scientific Python packages?" msgstr "" -#: ../../installing/index.rst:127 -msgid "" -"A number of scientific Python packages have complex binary dependencies, and " -"aren't currently easy to install using :program:`pip` directly. It will " -"often be easier for users to install these packages by `other means `__ rather than attempting to install them " -"with :program:`pip`." +msgid "A number of scientific Python packages have complex binary dependencies, and aren't currently easy to install using :program:`pip` directly. It will often be easier for users to install these packages by `other means `__ rather than attempting to install them with :program:`pip`." msgstr "" -#: ../../installing/index.rst:135 -msgid "" -"`Python Packaging User Guide: Installing Scientific Packages `__" +msgid "`Python Packaging User Guide: Installing Scientific Packages `__" msgstr "" -#: ../../installing/index.rst:140 msgid "... work with multiple versions of Python installed in parallel?" msgstr "" -#: ../../installing/index.rst:142 -msgid "" -"On Linux, macOS, and other POSIX systems, use the versioned Python commands " -"in combination with the ``-m`` switch to run the appropriate copy " -"of :program:`pip`::" +msgid "On Linux, macOS, and other POSIX systems, use the versioned Python commands in combination with the ``-m`` switch to run the appropriate copy of :program:`pip`::" msgstr "" -#: ../../installing/index.rst:146 msgid "" "python3 -m pip install SomePackage # default Python 3\n" "python3.14 -m pip install SomePackage # specifically Python 3.14" msgstr "" -#: ../../installing/index.rst:149 msgid "Appropriately versioned :program:`pip` commands may also be available." msgstr "" -#: ../../installing/index.rst:151 -msgid "" -"On Windows, use the :program:`py` Python launcher in combination with the ``-" -"m`` switch::" +msgid "On Windows, use the :program:`py` Python launcher in combination with the ``-m`` switch::" msgstr "" -#: ../../installing/index.rst:154 msgid "" "py -3 -m pip install SomePackage # default Python 3\n" "py -3.14 -m pip install SomePackage # specifically Python 3.14" msgstr "" -#: ../../installing/index.rst:166 msgid "Common installation issues" msgstr "" -#: ../../installing/index.rst:169 msgid "Installing into the system Python on Linux" msgstr "" -#: ../../installing/index.rst:171 -msgid "" -"On Linux systems, a Python installation will typically be included as part " -"of the distribution. Installing into this Python installation requires root " -"access to the system, and may interfere with the operation of the system " -"package manager and other components of the system if a component is " -"unexpectedly upgraded using :program:`pip`." +msgid "On Linux systems, a Python installation will typically be included as part of the distribution. Installing into this Python installation requires root access to the system, and may interfere with the operation of the system package manager and other components of the system if a component is unexpectedly upgraded using :program:`pip`." msgstr "" -#: ../../installing/index.rst:177 -msgid "" -"On such systems, it is often better to use a virtual environment or a per-" -"user installation when installing packages with :program:`pip`." +msgid "On such systems, it is often better to use a virtual environment or a per-user installation when installing packages with :program:`pip`." msgstr "" -#: ../../installing/index.rst:182 msgid "Pip not installed" msgstr "" -#: ../../installing/index.rst:184 -msgid "" -"It is possible that :program:`pip` does not get installed by default. One " -"potential fix is::" +msgid "It is possible that :program:`pip` does not get installed by default. One potential fix is::" msgstr "" -#: ../../installing/index.rst:186 msgid "python -m ensurepip --default-pip" msgstr "" -#: ../../installing/index.rst:188 -msgid "" -"There are also additional resources for `installing pip `__." +msgid "There are also additional resources for `installing pip `__." msgstr "" -#: ../../installing/index.rst:193 msgid "Installing binary extensions" msgstr "" -#: ../../installing/index.rst:195 -msgid "" -"Python once relied heavily on source-based distribution, with end users " -"being expected to compile extension modules from source as part of the " -"installation process." +msgid "Python once relied heavily on source-based distribution, with end users being expected to compile extension modules from source as part of the installation process." msgstr "" -#: ../../installing/index.rst:199 -msgid "" -"With the introduction of the binary wheel format, and the ability to publish " -"wheels through PyPI, this problem is diminishing, as users are more " -"regularly able to install pre-built extensions rather than needing to build " -"them themselves." +msgid "With the introduction of the binary wheel format, and the ability to publish wheels through PyPI, this problem is diminishing, as users are more regularly able to install pre-built extensions rather than needing to build them themselves." msgstr "" -#: ../../installing/index.rst:204 -msgid "" -"Some of the solutions for installing `scientific software `__ that are not yet available as pre-built " -"wheel files may also help with obtaining other binary extensions without " -"needing to build them locally." +msgid "Some of the solutions for installing `scientific software `__ that are not yet available as pre-built wheel files may also help with obtaining other binary extensions without needing to build them locally." msgstr "" -#: ../../installing/index.rst:211 -msgid "" -"`Python Packaging User Guide: Binary Extensions `__" +msgid "`Python Packaging User Guide: Binary Extensions `__" msgstr "" diff --git a/library/__future__.po b/library/__future__.po index e74d46ed..a864a15a 100644 --- a/library/__future__.po +++ b/library/__future__.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:54+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,200 +24,114 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/__future__.rst:2 msgid ":mod:`!__future__` --- Future statement definitions" msgstr ":mod:`!__future__` --- تعاریف دستورات آینده" -#: ../../library/__future__.rst:7 msgid "**Source code:** :source:`Lib/__future__.py`" msgstr "**کد منبع:** :source:`Lib/__future__.py`" -#: ../../library/__future__.rst:11 -msgid "" -"Imports of the form ``from __future__ import feature`` are " -"called :ref:`future statements `. These are special-cased by the " -"Python compiler to allow the use of new Python features in modules " -"containing the future statement before the release in which the feature " -"becomes standard." -msgstr "" -"ایمپورت‌هایی به شکل ``from __future__ import feature``، :ref:`future " -"statements ` نامیده می‌شوند. این موارد توسط کامپایلر پایتون به‌صورت " -"ویژه درنظر گرفته می‌شوند تا امکان استفاده از ویژگیهای جدید پایتون را در " -"ماژول‌هایی که شامل دستور آینده هستند، قبل از نسخه‌ای که آن ویژگی به‌صورت " -"استاندارد درمی‌آید، فراهم کنند." +msgid "Imports of the form ``from __future__ import feature`` are called :ref:`future statements `. These are special-cased by the Python compiler to allow the use of new Python features in modules containing the future statement before the release in which the feature becomes standard." +msgstr "ایمپورت‌هایی به شکل ``from __future__ import feature``، :ref:`future statements ` نامیده می‌شوند. این موارد توسط کامپایلر پایتون به‌صورت ویژه درنظر گرفته می‌شوند تا امکان استفاده از ویژگیهای جدید پایتون را در ماژول‌هایی که شامل دستور آینده هستند، قبل از نسخه‌ای که آن ویژگی به‌صورت استاندارد درمی‌آید، فراهم کنند." -#: ../../library/__future__.rst:16 -msgid "" -"While these future statements are given additional special meaning by the " -"Python compiler, they are still executed like any other import statement and " -"the :mod:`!__future__` exists and is handled by the import system the same " -"way any other Python module would be. This design serves three purposes:" -msgstr "" -"اگرچه این دستورات آینده‌نگر به‌واسطه کامپایلر پایتون معنای ویژه‌ای پیدا می‌کنند، " -"اما همچنان مانند هر دستور ایمپورت دیگری اجرا می‌شوند. ماژول :mod:`!" -"__future__` وجود دارد و توسط سازوکار ایمپورت، دقیقاً مانند هر ماژول پایتون " -"دیگری مدیریت می‌شود. این طراحی سه هدف را دنبال می‌کند:" +msgid "While these future statements are given additional special meaning by the Python compiler, they are still executed like any other import statement and the :mod:`!__future__` exists and is handled by the import system the same way any other Python module would be. This design serves three purposes:" +msgstr "اگرچه این دستورات آینده‌نگر به‌واسطه کامپایلر پایتون معنای ویژه‌ای پیدا می‌کنند، اما همچنان مانند هر دستور ایمپورت دیگری اجرا می‌شوند. ماژول :mod:`!__future__` وجود دارد و توسط سازوکار ایمپورت، دقیقاً مانند هر ماژول پایتون دیگری مدیریت می‌شود. این طراحی سه هدف را دنبال می‌کند:" -#: ../../library/__future__.rst:21 -msgid "" -"To avoid confusing existing tools that analyze import statements and expect " -"to find the modules they're importing." -msgstr "" -"برای جلوگیری از سردرگمی ابزارهای موجود که دستورات ایمپورت را تحلیل می‌کنند و " -"انتظار دارند که ماژول‌های مورد نظر خود را پیدا کنند." +msgid "To avoid confusing existing tools that analyze import statements and expect to find the modules they're importing." +msgstr "برای جلوگیری از سردرگمی ابزارهای موجود که دستورات ایمپورت را تحلیل می‌کنند و انتظار دارند که ماژول‌های مورد نظر خود را پیدا کنند." -#: ../../library/__future__.rst:24 -msgid "" -"To document when incompatible changes were introduced, and when they will be " -"--- or were --- made mandatory. This is a form of executable documentation, " -"and can be inspected programmatically via importing :mod:`!__future__` and " -"examining its contents." -msgstr "" -"برای مستندسازی زمان معرفی تغییرات ناسازگار و زمانی که این تغییرات اجباری " -"خواهند شد --- یا شده‌اند، این نوعی مستندسازی قابل‌اجرا است، و می‌توان آن را " -"به‌صورت برنامه‌نویسی با ایمپورت کردن :mod:`!__future__` و بررسی محتویات آن " -"مشاهده کرد." +msgid "To document when incompatible changes were introduced, and when they will be --- or were --- made mandatory. This is a form of executable documentation, and can be inspected programmatically via importing :mod:`!__future__` and examining its contents." +msgstr "برای مستندسازی زمان معرفی تغییرات ناسازگار و زمانی که این تغییرات اجباری خواهند شد --- یا شده‌اند، این نوعی مستندسازی قابل‌اجرا است، و می‌توان آن را به‌صورت برنامه‌نویسی با ایمپورت کردن :mod:`!__future__` و بررسی محتویات آن مشاهده کرد." -#: ../../library/__future__.rst:29 -msgid "" -"To ensure that :ref:`future statements ` run under releases prior to " -"Python 2.1 at least yield runtime exceptions (the import of :mod:`!" -"__future__` will fail, because there was no module of that name prior to " -"2.1)." -msgstr "" -"برای اطمینان از اینکه :ref:`future statements ` در نسخه‌های پیش از " -"پایتون 2.1 حداقل استثناهای زمان اجرا ایجاد می‌کنند (ایمپورت کردن :mod:`!" -"__future__` با شکست مواجه خواهد شد، زیرا هیچ ماژولی با آن نام پیش از نسخه‌ی " -"۲.۱ وجود نداشته است)." +msgid "To ensure that :ref:`future statements ` run under releases prior to Python 2.1 at least yield runtime exceptions (the import of :mod:`!__future__` will fail, because there was no module of that name prior to 2.1)." +msgstr "برای اطمینان از اینکه :ref:`future statements ` در نسخه‌های پیش از پایتون 2.1 حداقل استثناهای زمان اجرا ایجاد می‌کنند (ایمپورت کردن :mod:`!__future__` با شکست مواجه خواهد شد، زیرا هیچ ماژولی با آن نام پیش از نسخه‌ی ۲.۱ وجود نداشته است)." -#: ../../library/__future__.rst:34 msgid "Module Contents" msgstr "محتویات ماژول" -#: ../../library/__future__.rst:36 -msgid "" -"No feature description will ever be deleted from :mod:`!__future__`. Since " -"its introduction in Python 2.1 the following features have found their way " -"into the language using this mechanism:" -msgstr "" -"هیچ توضیح ویژگی‌ای هرگز از :mod:`!__future__` حذف نخواهد شد. از زمان معرفی آن " -"در پایتون ۲.۱، ویژگی‌های زیر راه خود را به این زبان با استفاده از این مکانیزم " -"پیدا کرده‌اند:" +msgid "No feature description will ever be deleted from :mod:`!__future__`. Since its introduction in Python 2.1 the following features have found their way into the language using this mechanism:" +msgstr "هیچ توضیح ویژگی‌ای هرگز از :mod:`!__future__` حذف نخواهد شد. از زمان معرفی آن در پایتون ۲.۱، ویژگی‌های زیر راه خود را به این زبان با استفاده از این مکانیزم پیدا کرده‌اند:" -#: ../../library/__future__.rst:45 msgid "feature" msgstr "ویژگی" -#: ../../library/__future__.rst:46 msgid "optional in" msgstr "اختیاری در" -#: ../../library/__future__.rst:47 msgid "mandatory in" msgstr "اجباری در" -#: ../../library/__future__.rst:48 msgid "effect" msgstr "تأثیر" -#: ../../library/__future__.rst:50 msgid "2.1.0b1" msgstr "2.1.0b1" -#: ../../library/__future__.rst:51 msgid "2.2" msgstr "2.2" -#: ../../library/__future__.rst:52 msgid ":pep:`227`: *Statically Nested Scopes*" msgstr ":pep:`227`: *محدوده‌های تو در تو ایستا*" -#: ../../library/__future__.rst:54 msgid "2.2.0a1" msgstr "2.2.0a1" -#: ../../library/__future__.rst:55 msgid "2.3" msgstr "2.3" -#: ../../library/__future__.rst:56 msgid ":pep:`255`: *Simple Generators*" msgstr ":pep:`255`: *تولیدگرهای ساده*" -#: ../../library/__future__.rst:58 msgid "2.2.0a2" msgstr "2.2.0a2" -#: ../../library/__future__.rst:59 ../../library/__future__.rst:63 -#: ../../library/__future__.rst:71 ../../library/__future__.rst:75 msgid "3.0" msgstr "3.0" -#: ../../library/__future__.rst:60 msgid ":pep:`238`: *Changing the Division Operator*" msgstr ":pep:`238`: *تغییر عملگر تقسیم*" -#: ../../library/__future__.rst:62 ../../library/__future__.rst:66 msgid "2.5.0a1" msgstr "2.5.0a1" -#: ../../library/__future__.rst:64 msgid ":pep:`328`: *Imports: Multi-Line and Absolute/Relative*" msgstr ":pep:`328`: *ایمپورتها: چندخطی و مطلق/نسبی*" -#: ../../library/__future__.rst:67 msgid "2.6" msgstr "2.6" -#: ../../library/__future__.rst:68 msgid ":pep:`343`: *The “with” Statement*" msgstr ":pep:`343`: *دستور “with”*" -#: ../../library/__future__.rst:70 ../../library/__future__.rst:74 msgid "2.6.0a2" msgstr "2.6.0a2" -#: ../../library/__future__.rst:72 msgid ":pep:`3105`: *Make print a function*" msgstr ":pep:`3105`: *تبدیل print به یک تابع*" -#: ../../library/__future__.rst:76 msgid ":pep:`3112`: *Bytes literals in Python 3000*" msgstr ":pep:`3112`: *لیترال‌های بایت در پایتون ۳۰۰۰*" -#: ../../library/__future__.rst:78 msgid "3.5.0b1" msgstr "3.5.0b1" -#: ../../library/__future__.rst:79 msgid "3.7" msgstr "3.7" -#: ../../library/__future__.rst:80 msgid ":pep:`479`: *StopIteration handling inside generators*" msgstr ":pep:`479`: *مدیریت StopIteration درون تولیدگرها*" -#: ../../library/__future__.rst:82 msgid "3.7.0b1" msgstr "3.7.0b1" -#: ../../library/__future__.rst:83 msgid "Never [1]_" msgstr "هرگز [1]_" -#: ../../library/__future__.rst:84 -msgid "" -":pep:`563`: *Postponed evaluation of annotations*, :pep:`649`: *Deferred " -"evaluation of annotations using descriptors*" -msgstr "" -":pep:`563`: *ارزیابی به‌تعویق‌افتادهٔ annotationها*، :pep:`649`: *ارزیابی " -"به‌تعویق‌افتادهٔ annotationها با استفاده از توصیفگرها*" +msgid ":pep:`563`: *Postponed evaluation of annotations*, :pep:`649`: *Deferred evaluation of annotations using descriptors*" +msgstr ":pep:`563`: *ارزیابی به‌تعویق‌افتادهٔ annotationها*، :pep:`649`: *ارزیابی به‌تعویق‌افتادهٔ annotationها با استفاده از توصیفگرها*" -#: ../../library/__future__.rst:93 msgid "Each statement in :file:`__future__.py` is of the form::" msgstr "هر دستور در :file:`__future__.py` به شکل زیر است::" -#: ../../library/__future__.rst:95 msgid "" "FeatureName = _Feature(OptionalRelease, MandatoryRelease,\n" " CompilerFlag)" @@ -225,21 +139,14 @@ msgstr "" "FeatureName = _Feature(OptionalRelease, MandatoryRelease,\n" " CompilerFlag)" -#: ../../library/__future__.rst:98 -msgid "" -"where, normally, *OptionalRelease* is less than *MandatoryRelease*, and both " -"are 5-tuples of the same form as :data:`sys.version_info`::" -msgstr "" -"که در آن، به‌طور معمول، *OptionalRelease* کوچک‌تر از *MandatoryRelease* است، و " -"هر دو تاپل‌های ۵ عضوی به همان شکل :data:`sys.version_info` هستند::" +msgid "where, normally, *OptionalRelease* is less than *MandatoryRelease*, and both are 5-tuples of the same form as :data:`sys.version_info`::" +msgstr "که در آن، به‌طور معمول، *OptionalRelease* کوچک‌تر از *MandatoryRelease* است، و هر دو تاپل‌های ۵ عضوی به همان شکل :data:`sys.version_info` هستند::" -#: ../../library/__future__.rst:101 msgid "" "(PY_MAJOR_VERSION, # the 2 in 2.1.0a3; an int\n" " PY_MINOR_VERSION, # the 1; an int\n" " PY_MICRO_VERSION, # the 0; an int\n" -" PY_RELEASE_LEVEL, # \"alpha\", \"beta\", \"candidate\" or \"final\"; " -"string\n" +" PY_RELEASE_LEVEL, # \"alpha\", \"beta\", \"candidate\" or \"final\"; string\n" " PY_RELEASE_SERIAL # the 3; an int\n" ")" msgstr "" @@ -250,78 +157,32 @@ msgstr "" " PY_RELEASE_SERIAL # عدد 3؛ یک عدد صحیح\n" ")" -#: ../../library/__future__.rst:110 -msgid "" -"*OptionalRelease* records the first release in which the feature was " -"accepted." -msgstr "" -"*OptionalRelease* اولین نسخه‌ای را ثبت می‌کند که ویژگی در آن پذیرفته شده است." +msgid "*OptionalRelease* records the first release in which the feature was accepted." +msgstr "*OptionalRelease* اولین نسخه‌ای را ثبت می‌کند که ویژگی در آن پذیرفته شده است." -#: ../../library/__future__.rst:114 -msgid "" -"In the case of a *MandatoryRelease* that has not yet occurred, " -"*MandatoryRelease* predicts the release in which the feature will become " -"part of the language." -msgstr "" -"در مورد *MandatoryRelease* که هنوز رخ نداده است، *MandatoryRelease* نسخه‌ای " -"را پیش‌بینی می‌کند که ویژگی در آن بخشی از زبان خواهد شد." +msgid "In the case of a *MandatoryRelease* that has not yet occurred, *MandatoryRelease* predicts the release in which the feature will become part of the language." +msgstr "در مورد *MandatoryRelease* که هنوز رخ نداده است، *MandatoryRelease* نسخه‌ای را پیش‌بینی می‌کند که ویژگی در آن بخشی از زبان خواهد شد." -#: ../../library/__future__.rst:118 -msgid "" -"Else *MandatoryRelease* records when the feature became part of the " -"language; in releases at or after that, modules no longer need a future " -"statement to use the feature in question, but may continue to use such " -"imports." -msgstr "" -"در غیر این صورت، *MandatoryRelease* زمانی را ثبت می‌کند که ویژگی به بخشی از " -"زبان تبدیل شد؛ در نسخه‌های همان یا بعد از آن، ماژول‌ها دیگر برای استفاده از آن " -"ویژگی نیازی به دستور future ندارند، اما می‌توانند به استفاده از چنین " -"ایمپورت‌هایی ادامه دهند." +msgid "Else *MandatoryRelease* records when the feature became part of the language; in releases at or after that, modules no longer need a future statement to use the feature in question, but may continue to use such imports." +msgstr "در غیر این صورت، *MandatoryRelease* زمانی را ثبت می‌کند که ویژگی به بخشی از زبان تبدیل شد؛ در نسخه‌های همان یا بعد از آن، ماژول‌ها دیگر برای استفاده از آن ویژگی نیازی به دستور future ندارند، اما می‌توانند به استفاده از چنین ایمپورت‌هایی ادامه دهند." -#: ../../library/__future__.rst:122 -msgid "" -"*MandatoryRelease* may also be ``None``, meaning that a planned feature got " -"dropped or that it is not yet decided." -msgstr "" -"*MandatoryRelease* همچنین می‌تواند ``None`` باشد، به این معنی که یک ویژگی " -"برنامه‌ریزی‌شده حذف شده است یا اینکه هنوز تصمیمی درباره‌ی آن گرفته نشده است." +msgid "*MandatoryRelease* may also be ``None``, meaning that a planned feature got dropped or that it is not yet decided." +msgstr "*MandatoryRelease* همچنین می‌تواند ``None`` باشد، به این معنی که یک ویژگی برنامه‌ریزی‌شده حذف شده است یا اینکه هنوز تصمیمی درباره‌ی آن گرفته نشده است." -#: ../../library/__future__.rst:127 -msgid "" -"*CompilerFlag* is the (bitfield) flag that should be passed in the fourth " -"argument to the built-in function :func:`compile` to enable the feature in " -"dynamically compiled code. This flag is stored in " -"the :attr:`_Feature.compiler_flag` attribute on :class:`_Feature` instances." -msgstr "" -"*CompilerFlag* پرچم است که باید در آرگومان چهارم به تابع " -"داخلی :func:`compile` ارسال شود تا ویژگی را در کد کامپایل‌شده‌ی پویا فعال " -"کند. این پرچم در ویژگی :attr:`_Feature.compiler_flag` در " -"نمونه‌های :class:`_Feature` ذخیره می‌شود." +msgid "*CompilerFlag* is the (bitfield) flag that should be passed in the fourth argument to the built-in function :func:`compile` to enable the feature in dynamically compiled code. This flag is stored in the :attr:`_Feature.compiler_flag` attribute on :class:`_Feature` instances." +msgstr "*CompilerFlag* پرچم است که باید در آرگومان چهارم به تابع داخلی :func:`compile` ارسال شود تا ویژگی را در کد کامپایل‌شده‌ی پویا فعال کند. این پرچم در ویژگی :attr:`_Feature.compiler_flag` در نمونه‌های :class:`_Feature` ذخیره می‌شود." -#: ../../library/__future__.rst:133 -msgid "" -"``from __future__ import annotations`` was previously scheduled to become " -"mandatory in Python 3.10, but the change was delayed and ultimately " -"canceled. This feature will eventually be deprecated and removed. " -"See :pep:`649` and :pep:`749`." -msgstr "" -"``from __future__ import annotations`` قبلاً قرار بود در پایتون ۳.۱۰ اجباری " -"شود، اما این تغییر به تعویق افتاد و در نهایت لغو شد. این ویژگی در نهایت " -"منسوخ و حذف خواهد شد. برای اطلاعات بیشتر به :pep:`649` و :pep:`749` مراجعه " -"کنید." +msgid "``from __future__ import annotations`` was previously scheduled to become mandatory in Python 3.10, but the change was delayed and ultimately canceled. This feature will eventually be deprecated and removed. See :pep:`649` and :pep:`749`." +msgstr "``from __future__ import annotations`` قبلاً قرار بود در پایتون ۳.۱۰ اجباری شود، اما این تغییر به تعویق افتاد و در نهایت لغو شد. این ویژگی در نهایت منسوخ و حذف خواهد شد. برای اطلاعات بیشتر به :pep:`649` و :pep:`749` مراجعه کنید." -#: ../../library/__future__.rst:141 msgid ":ref:`future`" msgstr ":ref:`future`" -#: ../../library/__future__.rst:142 msgid "How the compiler treats future imports." msgstr "نحوه‌ی برخورد کامپایلر با ایمپورت‌های future" -#: ../../library/__future__.rst:144 msgid ":pep:`236` - Back to the __future__" msgstr ":pep:`236` - بازگشت به __future__" -#: ../../library/__future__.rst:145 msgid "The original proposal for the __future__ mechanism." msgstr "پیشنهاد اولیه برای مکانیزم __future__." diff --git a/library/__main__.po b/library/__main__.po index b8d1a500..2fc17b9d 100644 --- a/library/__main__.po +++ b/library/__main__.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:54+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -22,54 +22,27 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/__main__.rst:2 msgid ":mod:`!__main__` --- Top-level code environment" msgstr "" -#: ../../library/__main__.rst:10 -msgid "" -"In Python, the special name ``__main__`` is used for two important " -"constructs:" +msgid "In Python, the special name ``__main__`` is used for two important constructs:" msgstr "در پایتون، از نام ویژه‌ی ``__main__`` برای دو ساختار مهم استفاده می‌شود:" -#: ../../library/__main__.rst:12 -msgid "" -"the name of the top-level environment of the program, which can be checked " -"using the ``__name__ == '__main__'`` expression; and" -msgstr "" -"نام محیط سطح بالای برنامه، که می‌توان آن را با استفاده از عبارت ``__name__ == " -"'__main__'`` بررسی کرد؛ و" +msgid "the name of the top-level environment of the program, which can be checked using the ``__name__ == '__main__'`` expression; and" +msgstr "نام محیط سطح بالای برنامه، که می‌توان آن را با استفاده از عبارت ``__name__ == '__main__'`` بررسی کرد؛ و" -#: ../../library/__main__.rst:14 msgid "the ``__main__.py`` file in Python packages." msgstr "فایل ``__main__.py`` در بسته‌های پایتون." -#: ../../library/__main__.rst:16 -msgid "" -"Both of these mechanisms are related to Python modules; how users interact " -"with them and how they interact with each other. They are explained in " -"detail below. If you're new to Python modules, see the tutorial " -"section :ref:`tut-modules` for an introduction." -msgstr "" -"هر دوی این مکانیزم‌ها به ماژول‌های پایتون مربوط می‌شوند: نحوه‌ی تعامل کاربران با " -"آن‌ها و نحوه‌ی تعامل آن‌ها با یکدیگر. این موارد در زیر به‌تفصیل توضیح داده " -"شده‌اند. اگر با ماژول‌های پایتون تازه‌کار هستید، برای آشنایی به بخش " -"آموزش :ref:`tut-modules` مراجعه کنید." +msgid "Both of these mechanisms are related to Python modules; how users interact with them and how they interact with each other. They are explained in detail below. If you're new to Python modules, see the tutorial section :ref:`tut-modules` for an introduction." +msgstr "هر دوی این مکانیزم‌ها به ماژول‌های پایتون مربوط می‌شوند: نحوه‌ی تعامل کاربران با آن‌ها و نحوه‌ی تعامل آن‌ها با یکدیگر. این موارد در زیر به‌تفصیل توضیح داده شده‌اند. اگر با ماژول‌های پایتون تازه‌کار هستید، برای آشنایی به بخش آموزش :ref:`tut-modules` مراجعه کنید." -#: ../../library/__main__.rst:25 msgid "``__name__ == '__main__'``" msgstr "``__name__ == '__main__'``" -#: ../../library/__main__.rst:27 -msgid "" -"When a Python module or package is imported, ``__name__`` is set to the " -"module's name. Usually, this is the name of the Python file itself without " -"the ``.py`` extension::" -msgstr "" -"هنگامی که یک ماژول یا بستهٔ پایتون ایمپورت می‌شود، ``__name__`` به نام ماژول " -"تنظیم می‌شود. معمولاً این همان نام فایل پایتون است بدون پسوند ``.py``::" +msgid "When a Python module or package is imported, ``__name__`` is set to the module's name. Usually, this is the name of the Python file itself without the ``.py`` extension::" +msgstr "هنگامی که یک ماژول یا بستهٔ پایتون ایمپورت می‌شود، ``__name__`` به نام ماژول تنظیم می‌شود. معمولاً این همان نام فایل پایتون است بدون پسوند ``.py``::" -#: ../../library/__main__.rst:31 msgid "" ">>> import configparser\n" ">>> configparser.__name__\n" @@ -79,15 +52,9 @@ msgstr "" ">>> configparser.__name__\n" "'configparser'" -#: ../../library/__main__.rst:35 -msgid "" -"If the file is part of a package, ``__name__`` will also include the parent " -"package's path::" -msgstr "" -"اگر فایل بخشی از یک بسته باشد، ``__name__`` همچنین مسیر بستهٔ والد را شامل " -"خواهد شد::" +msgid "If the file is part of a package, ``__name__`` will also include the parent package's path::" +msgstr "اگر فایل بخشی از یک بسته باشد، ``__name__`` همچنین مسیر بستهٔ والد را شامل خواهد شد::" -#: ../../library/__main__.rst:38 msgid "" ">>> from concurrent.futures import process\n" ">>> process.__name__\n" @@ -97,68 +64,45 @@ msgstr "" ">>> process.__name__\n" "'concurrent.futures.process'" -#: ../../library/__main__.rst:42 -msgid "" -"However, if the module is executed in the top-level code environment, its " -"``__name__`` is set to the string ``'__main__'``." -msgstr "" -"با این حال، اگر ماژول در محیط کد سطح بالا اجرا شود، ``__name__`` آن به رشته‌ی " -"``'__main__'`` تنظیم می‌شود." +msgid "However, if the module is executed in the top-level code environment, its ``__name__`` is set to the string ``'__main__'``." +msgstr "با این حال، اگر ماژول در محیط کد سطح بالا اجرا شود، ``__name__`` آن به رشته‌ی ``'__main__'`` تنظیم می‌شود." -#: ../../library/__main__.rst:46 msgid "What is the \"top-level code environment\"?" msgstr "" -#: ../../library/__main__.rst:48 -msgid "" -"``__main__`` is the name of the environment where top-level code is run. " -"\"Top-level code\" is the first user-specified Python module that starts " -"running. It's \"top-level\" because it imports all other modules that the " -"program needs. Sometimes \"top-level code\" is called an *entry point* to " -"the application." +msgid "``__main__`` is the name of the environment where top-level code is run. \"Top-level code\" is the first user-specified Python module that starts running. It's \"top-level\" because it imports all other modules that the program needs. Sometimes \"top-level code\" is called an *entry point* to the application." msgstr "" -#: ../../library/__main__.rst:53 msgid "The top-level code environment can be:" msgstr "" -#: ../../library/__main__.rst:55 msgid "the scope of an interactive prompt::" msgstr "" -#: ../../library/__main__.rst:57 msgid "" ">>> __name__\n" "'__main__'" msgstr "" -#: ../../library/__main__.rst:60 msgid "the Python module passed to the Python interpreter as a file argument:" msgstr "" -#: ../../library/__main__.rst:62 msgid "" "$ python helloworld.py\n" "Hello, world!" msgstr "" -#: ../../library/__main__.rst:67 -msgid "" -"the Python module or package passed to the Python interpreter with " -"the :option:`-m` argument:" +msgid "the Python module or package passed to the Python interpreter with the :option:`-m` argument:" msgstr "" -#: ../../library/__main__.rst:70 msgid "" "$ python -m tarfile\n" "usage: tarfile.py [-h] [-v] (...)" msgstr "" -#: ../../library/__main__.rst:75 msgid "Python code read by the Python interpreter from standard input:" msgstr "" -#: ../../library/__main__.rst:77 msgid "" "$ echo \"import this\" | python\n" "The Zen of Python, by Tim Peters\n" @@ -168,12 +112,9 @@ msgid "" "..." msgstr "" -#: ../../library/__main__.rst:86 -msgid "" -"Python code passed to the Python interpreter with the :option:`-c` argument:" +msgid "Python code passed to the Python interpreter with the :option:`-c` argument:" msgstr "" -#: ../../library/__main__.rst:88 msgid "" "$ python -c \"import this\"\n" "The Zen of Python, by Tim Peters\n" @@ -183,60 +124,33 @@ msgid "" "..." msgstr "" -#: ../../library/__main__.rst:97 -msgid "" -"In each of these situations, the top-level module's ``__name__`` is set to " -"``'__main__'``." +msgid "In each of these situations, the top-level module's ``__name__`` is set to ``'__main__'``." msgstr "" -#: ../../library/__main__.rst:100 -msgid "" -"As a result, a module can discover whether or not it is running in the top-" -"level environment by checking its own ``__name__``, which allows a common " -"idiom for conditionally executing code when the module is not initialized " -"from an import statement::" +msgid "As a result, a module can discover whether or not it is running in the top-level environment by checking its own ``__name__``, which allows a common idiom for conditionally executing code when the module is not initialized from an import statement::" msgstr "" -#: ../../library/__main__.rst:105 msgid "" "if __name__ == '__main__':\n" " # Execute when the module is not initialized from an import statement.\n" " ..." msgstr "" -#: ../../library/__main__.rst:111 -msgid "" -"For a more detailed look at how ``__name__`` is set in all situations, see " -"the tutorial section :ref:`tut-modules`." +msgid "For a more detailed look at how ``__name__`` is set in all situations, see the tutorial section :ref:`tut-modules`." msgstr "" -#: ../../library/__main__.rst:116 ../../library/__main__.rst:239 msgid "Idiomatic Usage" msgstr "" -#: ../../library/__main__.rst:118 -msgid "" -"Some modules contain code that is intended for script use only, like parsing " -"command-line arguments or fetching data from standard input. If a module " -"like this was imported from a different module, for example to unit test it, " -"the script code would unintentionally execute as well." +msgid "Some modules contain code that is intended for script use only, like parsing command-line arguments or fetching data from standard input. If a module like this was imported from a different module, for example to unit test it, the script code would unintentionally execute as well." msgstr "" -#: ../../library/__main__.rst:123 -msgid "" -"This is where using the ``if __name__ == '__main__'`` code block comes in " -"handy. Code within this block won't run unless the module is executed in the " -"top-level environment." +msgid "This is where using the ``if __name__ == '__main__'`` code block comes in handy. Code within this block won't run unless the module is executed in the top-level environment." msgstr "" -#: ../../library/__main__.rst:127 -msgid "" -"Putting as few statements as possible in the block below ``if __name__ == " -"'__main__'`` can improve code clarity and correctness. Most often, a " -"function named ``main`` encapsulates the program's primary behavior::" +msgid "Putting as few statements as possible in the block below ``if __name__ == '__main__'`` can improve code clarity and correctness. Most often, a function named ``main`` encapsulates the program's primary behavior::" msgstr "" -#: ../../library/__main__.rst:131 msgid "" "# echo.py\n" "\n" @@ -259,86 +173,39 @@ msgid "" " sys.exit(main()) # next section explains the use of sys.exit" msgstr "" -#: ../../library/__main__.rst:151 -msgid "" -"Note that if the module didn't encapsulate code inside the ``main`` function " -"but instead put it directly within the ``if __name__ == '__main__'`` block, " -"the ``phrase`` variable would be global to the entire module. This is error-" -"prone as other functions within the module could be unintentionally using " -"the global variable instead of a local name. A ``main`` function solves " -"this problem." +msgid "Note that if the module didn't encapsulate code inside the ``main`` function but instead put it directly within the ``if __name__ == '__main__'`` block, the ``phrase`` variable would be global to the entire module. This is error-prone as other functions within the module could be unintentionally using the global variable instead of a local name. A ``main`` function solves this problem." msgstr "" -#: ../../library/__main__.rst:158 -msgid "" -"Using a ``main`` function has the added benefit of the ``echo`` function " -"itself being isolated and importable elsewhere. When ``echo.py`` is " -"imported, the ``echo`` and ``main`` functions will be defined, but neither " -"of them will be called, because ``__name__ != '__main__'``." +msgid "Using a ``main`` function has the added benefit of the ``echo`` function itself being isolated and importable elsewhere. When ``echo.py`` is imported, the ``echo`` and ``main`` functions will be defined, but neither of them will be called, because ``__name__ != '__main__'``." msgstr "" -#: ../../library/__main__.rst:165 msgid "Packaging Considerations" msgstr "" -#: ../../library/__main__.rst:167 -msgid "" -"``main`` functions are often used to create command-line tools by specifying " -"them as entry points for console scripts. When this is done, `pip `_ inserts the function call into a template script, where the " -"return value of ``main`` is passed into :func:`sys.exit`. For example::" +msgid "``main`` functions are often used to create command-line tools by specifying them as entry points for console scripts. When this is done, `pip `_ inserts the function call into a template script, where the return value of ``main`` is passed into :func:`sys.exit`. For example::" msgstr "" -#: ../../library/__main__.rst:173 msgid "sys.exit(main())" msgstr "" -#: ../../library/__main__.rst:175 -msgid "" -"Since the call to ``main`` is wrapped in :func:`sys.exit`, the expectation " -"is that your function will return some value acceptable as an input " -"to :func:`sys.exit`; typically, an integer or ``None`` (which is implicitly " -"returned if your function does not have a return statement)." +msgid "Since the call to ``main`` is wrapped in :func:`sys.exit`, the expectation is that your function will return some value acceptable as an input to :func:`sys.exit`; typically, an integer or ``None`` (which is implicitly returned if your function does not have a return statement)." msgstr "" -#: ../../library/__main__.rst:180 -msgid "" -"By proactively following this convention ourselves, our module will have the " -"same behavior when run directly (i.e. ``python echo.py``) as it will have if " -"we later package it as a console script entry-point in a pip-installable " -"package." +msgid "By proactively following this convention ourselves, our module will have the same behavior when run directly (i.e. ``python echo.py``) as it will have if we later package it as a console script entry-point in a pip-installable package." msgstr "" -#: ../../library/__main__.rst:185 -msgid "" -"In particular, be careful about returning strings from your ``main`` " -"function. :func:`sys.exit` will interpret a string argument as a failure " -"message, so your program will have an exit code of ``1``, indicating " -"failure, and the string will be written to :data:`sys.stderr`. The " -"``echo.py`` example from earlier exemplifies using the ``sys.exit(main())`` " -"convention." +msgid "In particular, be careful about returning strings from your ``main`` function. :func:`sys.exit` will interpret a string argument as a failure message, so your program will have an exit code of ``1``, indicating failure, and the string will be written to :data:`sys.stderr`. The ``echo.py`` example from earlier exemplifies using the ``sys.exit(main())`` convention." msgstr "" -#: ../../library/__main__.rst:193 -msgid "" -"`Python Packaging User Guide `_ contains a " -"collection of tutorials and references on how to distribute and install " -"Python packages with modern tools." +msgid "`Python Packaging User Guide `_ contains a collection of tutorials and references on how to distribute and install Python packages with modern tools." msgstr "" -#: ../../library/__main__.rst:199 msgid "``__main__.py`` in Python Packages" msgstr "" -#: ../../library/__main__.rst:201 -msgid "" -"If you are not familiar with Python packages, see section :ref:`tut-" -"packages` of the tutorial. Most commonly, the ``__main__.py`` file is used " -"to provide a command-line interface for a package. Consider the following " -"hypothetical package, \"bandclass\":" +msgid "If you are not familiar with Python packages, see section :ref:`tut-packages` of the tutorial. Most commonly, the ``__main__.py`` file is used to provide a command-line interface for a package. Consider the following hypothetical package, \"bandclass\":" msgstr "" -#: ../../library/__main__.rst:206 msgid "" "bandclass\n" " ├── __init__.py\n" @@ -346,25 +213,15 @@ msgid "" " └── student.py" msgstr "" -#: ../../library/__main__.rst:213 -msgid "" -"``__main__.py`` will be executed when the package itself is invoked directly " -"from the command line using the :option:`-m` flag. For example:" +msgid "``__main__.py`` will be executed when the package itself is invoked directly from the command line using the :option:`-m` flag. For example:" msgstr "" -#: ../../library/__main__.rst:216 msgid "$ python -m bandclass" msgstr "" -#: ../../library/__main__.rst:220 -msgid "" -"This command will cause ``__main__.py`` to run. How you utilize this " -"mechanism will depend on the nature of the package you are writing, but in " -"this hypothetical case, it might make sense to allow the teacher to search " -"for students::" +msgid "This command will cause ``__main__.py`` to run. How you utilize this mechanism will depend on the nature of the package you are writing, but in this hypothetical case, it might make sense to allow the teacher to search for students::" msgstr "" -#: ../../library/__main__.rst:225 msgid "" "# bandclass/__main__.py\n" "\n" @@ -375,81 +232,42 @@ msgid "" "print(f'Found student: {search_students(student_name)}')" msgstr "" -#: ../../library/__main__.rst:233 -msgid "" -"Note that ``from .student import search_students`` is an example of a " -"relative import. This import style can be used when referencing modules " -"within a package. For more details, see :ref:`intra-package-references` in " -"the :ref:`tut-modules` section of the tutorial." +msgid "Note that ``from .student import search_students`` is an example of a relative import. This import style can be used when referencing modules within a package. For more details, see :ref:`intra-package-references` in the :ref:`tut-modules` section of the tutorial." msgstr "" -#: ../../library/__main__.rst:241 -msgid "" -"The content of ``__main__.py`` typically isn't fenced with an ``if __name__ " -"== '__main__'`` block. Instead, those files are kept short and import " -"functions to execute from other modules. Those other modules can then be " -"easily unit-tested and are properly reusable." +msgid "The content of ``__main__.py`` typically isn't fenced with an ``if __name__ == '__main__'`` block. Instead, those files are kept short and import functions to execute from other modules. Those other modules can then be easily unit-tested and are properly reusable." msgstr "" -#: ../../library/__main__.rst:246 -msgid "" -"If used, an ``if __name__ == '__main__'`` block will still work as expected " -"for a ``__main__.py`` file within a package, because its ``__name__`` " -"attribute will include the package's path if imported::" +msgid "If used, an ``if __name__ == '__main__'`` block will still work as expected for a ``__main__.py`` file within a package, because its ``__name__`` attribute will include the package's path if imported::" msgstr "" -#: ../../library/__main__.rst:250 msgid "" ">>> import asyncio.__main__\n" ">>> asyncio.__main__.__name__\n" "'asyncio.__main__'" msgstr "" -#: ../../library/__main__.rst:254 -msgid "" -"This won't work for ``__main__.py`` files in the root directory of a " -"``.zip`` file though. Hence, for consistency, a minimal ``__main__.py`` " -"without a ``__name__`` check is preferred." +msgid "This won't work for ``__main__.py`` files in the root directory of a ``.zip`` file though. Hence, for consistency, a minimal ``__main__.py`` without a ``__name__`` check is preferred." msgstr "" -#: ../../library/__main__.rst:260 -msgid "" -"See :mod:`venv` for an example of a package with a minimal ``__main__.py`` " -"in the standard library. It doesn't contain a ``if __name__ == '__main__'`` " -"block. You can invoke it with ``python -m venv [directory]``." +msgid "See :mod:`venv` for an example of a package with a minimal ``__main__.py`` in the standard library. It doesn't contain a ``if __name__ == '__main__'`` block. You can invoke it with ``python -m venv [directory]``." msgstr "" -#: ../../library/__main__.rst:264 -msgid "" -"See :mod:`runpy` for more details on the :option:`-m` flag to the " -"interpreter executable." +msgid "See :mod:`runpy` for more details on the :option:`-m` flag to the interpreter executable." msgstr "" -#: ../../library/__main__.rst:267 -msgid "" -"See :mod:`zipapp` for how to run applications packaged as *.zip* files. In " -"this case Python looks for a ``__main__.py`` file in the root directory of " -"the archive." +msgid "See :mod:`zipapp` for how to run applications packaged as *.zip* files. In this case Python looks for a ``__main__.py`` file in the root directory of the archive." msgstr "" -#: ../../library/__main__.rst:274 msgid "``import __main__``" msgstr "" -#: ../../library/__main__.rst:276 -msgid "" -"Regardless of which module a Python program was started with, other modules " -"running within that same program can import the top-level environment's " -"scope (:term:`namespace`) by importing the ``__main__`` module. This " -"doesn't import a ``__main__.py`` file but rather whichever module that " -"received the special name ``'__main__'``." +msgid "Regardless of which module a Python program was started with, other modules running within that same program can import the top-level environment's scope (:term:`namespace`) by importing the ``__main__`` module. This doesn't import a ``__main__.py`` file but rather whichever module that received the special name ``'__main__'``." msgstr "" -#: ../../library/__main__.rst:282 msgid "Here is an example module that consumes the ``__main__`` namespace::" msgstr "" -#: ../../library/__main__.rst:284 msgid "" "# namely.py\n" "\n" @@ -465,11 +283,9 @@ msgid "" " print(__main__.my_name)" msgstr "" -#: ../../library/__main__.rst:297 msgid "Example usage of this module could be as follows::" msgstr "" -#: ../../library/__main__.rst:299 msgid "" "# start.py\n" "\n" @@ -489,57 +305,31 @@ msgid "" " sys.exit(main())" msgstr "" -#: ../../library/__main__.rst:316 msgid "Now, if we started our program, the result would look like this:" msgstr "" -#: ../../library/__main__.rst:318 msgid "" "$ python start.py\n" "Define the variable `my_name`!" msgstr "" -#: ../../library/__main__.rst:323 -msgid "" -"The exit code of the program would be 1, indicating an error. Uncommenting " -"the line with ``my_name = \"Dinsdale\"`` fixes the program and now it exits " -"with status code 0, indicating success:" +msgid "The exit code of the program would be 1, indicating an error. Uncommenting the line with ``my_name = \"Dinsdale\"`` fixes the program and now it exits with status code 0, indicating success:" msgstr "" -#: ../../library/__main__.rst:327 msgid "" "$ python start.py\n" "Dinsdale" msgstr "" -#: ../../library/__main__.rst:332 -msgid "" -"Note that importing ``__main__`` doesn't cause any issues with " -"unintentionally running top-level code meant for script use which is put in " -"the ``if __name__ == \"__main__\"`` block of the ``start`` module. Why does " -"this work?" +msgid "Note that importing ``__main__`` doesn't cause any issues with unintentionally running top-level code meant for script use which is put in the ``if __name__ == \"__main__\"`` block of the ``start`` module. Why does this work?" msgstr "" -#: ../../library/__main__.rst:336 -msgid "" -"Python inserts an empty ``__main__`` module in :data:`sys.modules` at " -"interpreter startup, and populates it by running top-level code. In our " -"example this is the ``start`` module which runs line by line and imports " -"``namely``. In turn, ``namely`` imports ``__main__`` (which is really " -"``start``). That's an import cycle! Fortunately, since the partially " -"populated ``__main__`` module is present in :data:`sys.modules`, Python " -"passes that to ``namely``. See :ref:`Special considerations for __main__ " -"` in the import system's reference for details on how " -"this works." -msgstr "" - -#: ../../library/__main__.rst:345 -msgid "" -"The Python REPL is another example of a \"top-level environment\", so " -"anything defined in the REPL becomes part of the ``__main__`` scope::" +msgid "Python inserts an empty ``__main__`` module in :data:`sys.modules` at interpreter startup, and populates it by running top-level code. In our example this is the ``start`` module which runs line by line and imports ``namely``. In turn, ``namely`` imports ``__main__`` (which is really ``start``). That's an import cycle! Fortunately, since the partially populated ``__main__`` module is present in :data:`sys.modules`, Python passes that to ``namely``. See :ref:`Special considerations for __main__ ` in the import system's reference for details on how this works." +msgstr "" + +msgid "The Python REPL is another example of a \"top-level environment\", so anything defined in the REPL becomes part of the ``__main__`` scope::" msgstr "" -#: ../../library/__main__.rst:348 msgid "" ">>> import namely\n" ">>> namely.did_user_define_their_name()\n" @@ -555,8 +345,5 @@ msgid "" "Jabberwocky" msgstr "" -#: ../../library/__main__.rst:361 -msgid "" -"The ``__main__`` scope is used in the implementation of :mod:`pdb` " -"and :mod:`rlcompleter`." +msgid "The ``__main__`` scope is used in the implementation of :mod:`pdb` and :mod:`rlcompleter`." msgstr "" diff --git a/library/_thread.po b/library/_thread.po index ee70e6ab..0305e290 100644 --- a/library/_thread.po +++ b/library/_thread.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:54+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -22,239 +22,120 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/_thread.rst:2 msgid ":mod:`!_thread` --- Low-level threading API" msgstr "" -#: ../../library/_thread.rst:15 -msgid "" -"This module provides low-level primitives for working with multiple threads " -"(also called :dfn:`light-weight processes` or :dfn:`tasks`) --- multiple " -"threads of control sharing their global data space. For synchronization, " -"simple locks (also called :dfn:`mutexes` or :dfn:`binary semaphores`) are " -"provided. The :mod:`threading` module provides an easier to use and higher-" -"level threading API built on top of this module." +msgid "This module provides low-level primitives for working with multiple threads (also called :dfn:`light-weight processes` or :dfn:`tasks`) --- multiple threads of control sharing their global data space. For synchronization, simple locks (also called :dfn:`mutexes` or :dfn:`binary semaphores`) are provided. The :mod:`threading` module provides an easier to use and higher-level threading API built on top of this module." msgstr "" -#: ../../library/_thread.rst:26 msgid "This module used to be optional, it is now always available." msgstr "" -#: ../../library/_thread.rst:29 msgid "This module defines the following constants and functions:" msgstr "" -#: ../../library/_thread.rst:33 msgid "Raised on thread-specific errors." msgstr "" -#: ../../library/_thread.rst:35 msgid "This is now a synonym of the built-in :exc:`RuntimeError`." msgstr "" -#: ../../library/_thread.rst:41 -msgid "" -"Start a new thread and return its identifier. The thread executes the " -"function *function* with the argument list *args* (which must be a tuple). " -"The optional *kwargs* argument specifies a dictionary of keyword arguments." +msgid "Start a new thread and return its identifier. The thread executes the function *function* with the argument list *args* (which must be a tuple). The optional *kwargs* argument specifies a dictionary of keyword arguments." msgstr "" -#: ../../library/_thread.rst:45 msgid "When the function returns, the thread silently exits." msgstr "" -#: ../../library/_thread.rst:47 -msgid "" -"When the function terminates with an unhandled " -"exception, :func:`sys.unraisablehook` is called to handle the exception. The " -"*object* attribute of the hook argument is *function*. By default, a stack " -"trace is printed and then the thread exits (but other threads continue to " -"run)." +msgid "When the function terminates with an unhandled exception, :func:`sys.unraisablehook` is called to handle the exception. The *object* attribute of the hook argument is *function*. By default, a stack trace is printed and then the thread exits (but other threads continue to run)." msgstr "" -#: ../../library/_thread.rst:52 -msgid "" -"When the function raises a :exc:`SystemExit` exception, it is silently " -"ignored." +msgid "When the function raises a :exc:`SystemExit` exception, it is silently ignored." msgstr "" -#: ../../library/_thread.rst:55 -msgid "" -"Raises an :ref:`auditing event ` ``_thread.start_new_thread`` with " -"arguments ``function``, ``args``, ``kwargs``." +msgid "Raises an :ref:`auditing event ` ``_thread.start_new_thread`` with arguments ``function``, ``args``, ``kwargs``." msgstr "" -#: ../../library/_thread.rst:57 msgid ":func:`sys.unraisablehook` is now used to handle unhandled exceptions." msgstr "" -#: ../../library/_thread.rst:63 -msgid "" -"Simulate the effect of a signal arriving in the main thread. A thread can " -"use this function to interrupt the main thread, though there is no guarantee " -"that the interruption will happen immediately." +msgid "Simulate the effect of a signal arriving in the main thread. A thread can use this function to interrupt the main thread, though there is no guarantee that the interruption will happen immediately." msgstr "" -#: ../../library/_thread.rst:67 -msgid "" -"If given, *signum* is the number of the signal to simulate. If *signum* is " -"not given, :const:`signal.SIGINT` is simulated." +msgid "If given, *signum* is the number of the signal to simulate. If *signum* is not given, :const:`signal.SIGINT` is simulated." msgstr "" -#: ../../library/_thread.rst:70 -msgid "" -"If the given signal isn't handled by Python (it was set " -"to :const:`signal.SIG_DFL` or :const:`signal.SIG_IGN`), this function does " -"nothing." +msgid "If the given signal isn't handled by Python (it was set to :const:`signal.SIG_DFL` or :const:`signal.SIG_IGN`), this function does nothing." msgstr "" -#: ../../library/_thread.rst:74 msgid "The *signum* argument is added to customize the signal number." msgstr "" -#: ../../library/_thread.rst:78 -msgid "" -"This does not emit the corresponding signal but schedules a call to the " -"associated handler (if it exists). If you want to truly emit the signal, " -"use :func:`signal.raise_signal`." +msgid "This does not emit the corresponding signal but schedules a call to the associated handler (if it exists). If you want to truly emit the signal, use :func:`signal.raise_signal`." msgstr "" -#: ../../library/_thread.rst:85 -msgid "" -"Raise the :exc:`SystemExit` exception. When not caught, this will cause the " -"thread to exit silently." +msgid "Raise the :exc:`SystemExit` exception. When not caught, this will cause the thread to exit silently." msgstr "" -#: ../../library/_thread.rst:99 -msgid "" -"Return a new lock object. Methods of locks are described below. The lock " -"is initially unlocked." +msgid "Return a new lock object. Methods of locks are described below. The lock is initially unlocked." msgstr "" -#: ../../library/_thread.rst:105 -msgid "" -"Return the 'thread identifier' of the current thread. This is a nonzero " -"integer. Its value has no direct meaning; it is intended as a magic cookie " -"to be used e.g. to index a dictionary of thread-specific data. Thread " -"identifiers may be recycled when a thread exits and another thread is " -"created." +msgid "Return the 'thread identifier' of the current thread. This is a nonzero integer. Its value has no direct meaning; it is intended as a magic cookie to be used e.g. to index a dictionary of thread-specific data. Thread identifiers may be recycled when a thread exits and another thread is created." msgstr "" -#: ../../library/_thread.rst:113 -msgid "" -"Return the native integral Thread ID of the current thread assigned by the " -"kernel. This is a non-negative integer. Its value may be used to uniquely " -"identify this particular thread system-wide (until the thread terminates, " -"after which the value may be recycled by the OS)." +msgid "Return the native integral Thread ID of the current thread assigned by the kernel. This is a non-negative integer. Its value may be used to uniquely identify this particular thread system-wide (until the thread terminates, after which the value may be recycled by the OS)." msgstr "" -#: ../../library/_thread.rst:118 ../../library/_thread.rst:143 msgid "Availability" msgstr "" -#: ../../library/_thread.rst:122 msgid "Added support for GNU/kFreeBSD." msgstr "" -#: ../../library/_thread.rst:128 -msgid "" -"Return the thread stack size used when creating new threads. The optional " -"*size* argument specifies the stack size to be used for subsequently created " -"threads, and must be 0 (use platform or configured default) or a positive " -"integer value of at least 32,768 (32 KiB). If *size* is not specified, 0 is " -"used. If changing the thread stack size is unsupported, " -"a :exc:`RuntimeError` is raised. If the specified stack size is invalid, " -"a :exc:`ValueError` is raised and the stack size is unmodified. 32 KiB is " -"currently the minimum supported stack size value to guarantee sufficient " -"stack space for the interpreter itself. Note that some platforms may have " -"particular restrictions on values for the stack size, such as requiring a " -"minimum stack size > 32 KiB or requiring allocation in multiples of the " -"system memory page size - platform documentation should be referred to for " -"more information (4 KiB pages are common; using multiples of 4096 for the " -"stack size is the suggested approach in the absence of more specific " -"information)." -msgstr "" - -#: ../../library/_thread.rst:145 +msgid "Return the thread stack size used when creating new threads. The optional *size* argument specifies the stack size to be used for subsequently created threads, and must be 0 (use platform or configured default) or a positive integer value of at least 32,768 (32 KiB). If *size* is not specified, 0 is used. If changing the thread stack size is unsupported, a :exc:`RuntimeError` is raised. If the specified stack size is invalid, a :exc:`ValueError` is raised and the stack size is unmodified. 32 KiB is currently the minimum supported stack size value to guarantee sufficient stack space for the interpreter itself. Note that some platforms may have particular restrictions on values for the stack size, such as requiring a minimum stack size > 32 KiB or requiring allocation in multiples of the system memory page size - platform documentation should be referred to for more information (4 KiB pages are common; using multiples of 4096 for the stack size is the suggested approach in the absence of more specific information)." +msgstr "" + msgid "Unix platforms with POSIX threads support." msgstr "" -#: ../../library/_thread.rst:150 -msgid "" -"The maximum value allowed for the *timeout* parameter of :meth:`Lock.acquire " -"`. Specifying a timeout greater than this value will " -"raise an :exc:`OverflowError`." +msgid "The maximum value allowed for the *timeout* parameter of :meth:`Lock.acquire `. Specifying a timeout greater than this value will raise an :exc:`OverflowError`." msgstr "" -#: ../../library/_thread.rst:166 msgid "This is the type of lock objects." msgstr "" -#: ../../library/_thread.rst:168 msgid "Lock objects have the following methods:" msgstr "" -#: ../../library/_thread.rst:172 -msgid "" -"Without any optional argument, this method acquires the lock " -"unconditionally, if necessary waiting until it is released by another thread " -"(only one thread at a time can acquire a lock --- that's their reason for " -"existence)." +msgid "Without any optional argument, this method acquires the lock unconditionally, if necessary waiting until it is released by another thread (only one thread at a time can acquire a lock --- that's their reason for existence)." msgstr "" -#: ../../library/_thread.rst:176 -msgid "" -"If the *blocking* argument is present, the action depends on its value: if " -"it is false, the lock is only acquired if it can be acquired immediately " -"without waiting, while if it is true, the lock is acquired unconditionally " -"as above." +msgid "If the *blocking* argument is present, the action depends on its value: if it is false, the lock is only acquired if it can be acquired immediately without waiting, while if it is true, the lock is acquired unconditionally as above." msgstr "" -#: ../../library/_thread.rst:181 -msgid "" -"If the floating-point *timeout* argument is present and positive, it " -"specifies the maximum wait time in seconds before returning. A negative " -"*timeout* argument specifies an unbounded wait. You cannot specify a " -"*timeout* if *blocking* is false." +msgid "If the floating-point *timeout* argument is present and positive, it specifies the maximum wait time in seconds before returning. A negative *timeout* argument specifies an unbounded wait. You cannot specify a *timeout* if *blocking* is false." msgstr "" -#: ../../library/_thread.rst:186 -msgid "" -"The return value is ``True`` if the lock is acquired successfully, ``False`` " -"if not." +msgid "The return value is ``True`` if the lock is acquired successfully, ``False`` if not." msgstr "" -#: ../../library/_thread.rst:189 msgid "The *timeout* parameter is new." msgstr "" -#: ../../library/_thread.rst:192 msgid "Lock acquires can now be interrupted by signals on POSIX." msgstr "" -#: ../../library/_thread.rst:195 msgid "Lock acquires can now be interrupted by signals on Windows." msgstr "" -#: ../../library/_thread.rst:200 -msgid "" -"Releases the lock. The lock must have been acquired earlier, but not " -"necessarily by the same thread." +msgid "Releases the lock. The lock must have been acquired earlier, but not necessarily by the same thread." msgstr "" -#: ../../library/_thread.rst:205 -msgid "" -"Return the status of the lock: ``True`` if it has been acquired by some " -"thread, ``False`` if not." +msgid "Return the status of the lock: ``True`` if it has been acquired by some thread, ``False`` if not." msgstr "" -#: ../../library/_thread.rst:208 -msgid "" -"In addition to these methods, lock objects can also be used via " -"the :keyword:`with` statement, e.g.::" +msgid "In addition to these methods, lock objects can also be used via the :keyword:`with` statement, e.g.::" msgstr "" -#: ../../library/_thread.rst:211 msgid "" "import _thread\n" "\n" @@ -264,62 +145,41 @@ msgid "" " print(\"a_lock is locked while this executes\")" msgstr "" -#: ../../library/_thread.rst:218 msgid "**Caveats:**" msgstr "" -#: ../../library/_thread.rst:222 -msgid "" -"Interrupts always go to the main thread (the :exc:`KeyboardInterrupt` " -"exception will be received by that thread.)" +msgid "Interrupts always go to the main thread (the :exc:`KeyboardInterrupt` exception will be received by that thread.)" msgstr "" -#: ../../library/_thread.rst:225 -msgid "" -"Calling :func:`sys.exit` or raising the :exc:`SystemExit` exception is " -"equivalent to calling :func:`_thread.exit`." +msgid "Calling :func:`sys.exit` or raising the :exc:`SystemExit` exception is equivalent to calling :func:`_thread.exit`." msgstr "" -#: ../../library/_thread.rst:228 -msgid "" -"When the main thread exits, it is system defined whether the other threads " -"survive. On most systems, they are killed without " -"executing :keyword:`try` ... :keyword:`finally` clauses or executing object " -"destructors." +msgid "When the main thread exits, it is system defined whether the other threads survive. On most systems, they are killed without executing :keyword:`try` ... :keyword:`finally` clauses or executing object destructors." msgstr "" -#: ../../library/_thread.rst:7 msgid "light-weight processes" msgstr "" -#: ../../library/_thread.rst:7 msgid "processes, light-weight" msgstr "" -#: ../../library/_thread.rst:7 msgid "binary semaphores" msgstr "" -#: ../../library/_thread.rst:7 msgid "semaphores, binary" msgstr "" -#: ../../library/_thread.rst:22 msgid "pthreads" msgstr "" -#: ../../library/_thread.rst:22 msgid "threads" msgstr "" -#: ../../library/_thread.rst:22 msgid "POSIX" msgstr "" -#: ../../library/_thread.rst:220 msgid "module" msgstr "" -#: ../../library/_thread.rst:220 msgid "signal" msgstr "" diff --git a/library/abc.po b/library/abc.po index 1b2ffb58..b61aa3d9 100644 --- a/library/abc.po +++ b/library/abc.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:54+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,46 +23,24 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/abc.rst:2 msgid ":mod:`!abc` --- Abstract Base Classes" msgstr "" -#: ../../library/abc.rst:11 msgid "**Source code:** :source:`Lib/abc.py`" msgstr "" -#: ../../library/abc.rst:15 -msgid "" -"This module provides the infrastructure for defining :term:`abstract base " -"classes ` (ABCs) in Python, as outlined in :pep:`3119`; " -"see the PEP for why this was added to Python. (See also :pep:`3141` and " -"the :mod:`numbers` module regarding a type hierarchy for numbers based on " -"ABCs.)" +msgid "This module provides the infrastructure for defining :term:`abstract base classes ` (ABCs) in Python, as outlined in :pep:`3119`; see the PEP for why this was added to Python. (See also :pep:`3141` and the :mod:`numbers` module regarding a type hierarchy for numbers based on ABCs.)" msgstr "" -#: ../../library/abc.rst:20 -msgid "" -"The :mod:`collections` module has some concrete classes that derive from " -"ABCs; these can, of course, be further derived. In addition, " -"the :mod:`collections.abc` submodule has some ABCs that can be used to test " -"whether a class or instance provides a particular interface, for example, if " -"it is :term:`hashable` or if it is a :term:`mapping`." +msgid "The :mod:`collections` module has some concrete classes that derive from ABCs; these can, of course, be further derived. In addition, the :mod:`collections.abc` submodule has some ABCs that can be used to test whether a class or instance provides a particular interface, for example, if it is :term:`hashable` or if it is a :term:`mapping`." msgstr "" -#: ../../library/abc.rst:27 -msgid "" -"This module provides the metaclass :class:`ABCMeta` for defining ABCs and a " -"helper class :class:`ABC` to alternatively define ABCs through inheritance:" +msgid "This module provides the metaclass :class:`ABCMeta` for defining ABCs and a helper class :class:`ABC` to alternatively define ABCs through inheritance:" msgstr "" -#: ../../library/abc.rst:32 -msgid "" -"A helper class that has :class:`ABCMeta` as its metaclass. With this class, " -"an abstract base class can be created by simply deriving from :class:`!ABC` " -"avoiding sometimes confusing metaclass usage, for example::" +msgid "A helper class that has :class:`ABCMeta` as its metaclass. With this class, an abstract base class can be created by simply deriving from :class:`!ABC` avoiding sometimes confusing metaclass usage, for example::" msgstr "" -#: ../../library/abc.rst:36 msgid "" "from abc import ABC\n" "\n" @@ -70,16 +48,9 @@ msgid "" " pass" msgstr "" -#: ../../library/abc.rst:41 -msgid "" -"Note that the type of :class:`!ABC` is still :class:`ABCMeta`, therefore " -"inheriting from :class:`!ABC` requires the usual precautions regarding " -"metaclass usage, as multiple inheritance may lead to metaclass conflicts. " -"One may also define an abstract base class by passing the metaclass keyword " -"and using :class:`!ABCMeta` directly, for example::" +msgid "Note that the type of :class:`!ABC` is still :class:`ABCMeta`, therefore inheriting from :class:`!ABC` requires the usual precautions regarding metaclass usage, as multiple inheritance may lead to metaclass conflicts. One may also define an abstract base class by passing the metaclass keyword and using :class:`!ABCMeta` directly, for example::" msgstr "" -#: ../../library/abc.rst:47 msgid "" "from abc import ABCMeta\n" "\n" @@ -87,34 +58,18 @@ msgid "" " pass" msgstr "" -#: ../../library/abc.rst:57 msgid "Metaclass for defining Abstract Base Classes (ABCs)." msgstr "" -#: ../../library/abc.rst:59 -msgid "" -"Use this metaclass to create an ABC. An ABC can be subclassed directly, and " -"then acts as a mix-in class. You can also register unrelated concrete " -"classes (even built-in classes) and unrelated ABCs as \"virtual subclasses\" " -"-- these and their descendants will be considered subclasses of the " -"registering ABC by the built-in :func:`issubclass` function, but the " -"registering ABC won't show up in their MRO (Method Resolution Order) nor " -"will method implementations defined by the registering ABC be callable (not " -"even via :func:`super`). [#]_" +msgid "Use this metaclass to create an ABC. An ABC can be subclassed directly, and then acts as a mix-in class. You can also register unrelated concrete classes (even built-in classes) and unrelated ABCs as \"virtual subclasses\" -- these and their descendants will be considered subclasses of the registering ABC by the built-in :func:`issubclass` function, but the registering ABC won't show up in their MRO (Method Resolution Order) nor will method implementations defined by the registering ABC be callable (not even via :func:`super`). [#]_" msgstr "" -#: ../../library/abc.rst:68 -msgid "" -"Classes created with a metaclass of :class:`!ABCMeta` have the following " -"method:" +msgid "Classes created with a metaclass of :class:`!ABCMeta` have the following method:" msgstr "" -#: ../../library/abc.rst:72 -msgid "" -"Register *subclass* as a \"virtual subclass\" of this ABC. For example::" +msgid "Register *subclass* as a \"virtual subclass\" of this ABC. For example::" msgstr "" -#: ../../library/abc.rst:75 msgid "" "from abc import ABC\n" "\n" @@ -127,48 +82,27 @@ msgid "" "assert isinstance((), MyABC)" msgstr "" -#: ../../library/abc.rst:85 msgid "Returns the registered subclass, to allow usage as a class decorator." msgstr "" -#: ../../library/abc.rst:88 -msgid "" -"To detect calls to :meth:`!register`, you can use " -"the :func:`get_cache_token` function." +msgid "To detect calls to :meth:`!register`, you can use the :func:`get_cache_token` function." msgstr "" -#: ../../library/abc.rst:92 msgid "You can also override this method in an abstract base class:" msgstr "" -#: ../../library/abc.rst:96 msgid "(Must be defined as a class method.)" msgstr "" -#: ../../library/abc.rst:98 -msgid "" -"Check whether *subclass* is considered a subclass of this ABC. This means " -"that you can customize the behavior of :func:`issubclass` further without " -"the need to call :meth:`register` on every class you want to consider a " -"subclass of the ABC. (This class method is called from " -"the :meth:`~type.__subclasscheck__` method of the ABC.)" +msgid "Check whether *subclass* is considered a subclass of this ABC. This means that you can customize the behavior of :func:`issubclass` further without the need to call :meth:`register` on every class you want to consider a subclass of the ABC. (This class method is called from the :meth:`~type.__subclasscheck__` method of the ABC.)" msgstr "" -#: ../../library/abc.rst:104 -msgid "" -"This method should return ``True``, ``False`` or :data:`NotImplemented`. If " -"it returns ``True``, the *subclass* is considered a subclass of this ABC. If " -"it returns ``False``, the *subclass* is not considered a subclass of this " -"ABC, even if it would normally be one. If it returns :data:`!" -"NotImplemented`, the subclass check is continued with the usual mechanism." +msgid "This method should return ``True``, ``False`` or :data:`NotImplemented`. If it returns ``True``, the *subclass* is considered a subclass of this ABC. If it returns ``False``, the *subclass* is not considered a subclass of this ABC, even if it would normally be one. If it returns :data:`!NotImplemented`, the subclass check is continued with the usual mechanism." msgstr "" -#: ../../library/abc.rst:114 -msgid "" -"For a demonstration of these concepts, look at this example ABC definition::" +msgid "For a demonstration of these concepts, look at this example ABC definition::" msgstr "" -#: ../../library/abc.rst:116 msgid "" "class Foo:\n" " def __getitem__(self, index):\n" @@ -198,69 +132,30 @@ msgid "" "MyIterable.register(Foo)" msgstr "" -#: ../../library/abc.rst:143 -msgid "" -"The ABC ``MyIterable`` defines the standard iterable " -"method, :meth:`~object.__iter__`, as an abstract method. The implementation " -"given here can still be called from subclasses. The :meth:`!get_iterator` " -"method is also part of the ``MyIterable`` abstract base class, but it does " -"not have to be overridden in non-abstract derived classes." +msgid "The ABC ``MyIterable`` defines the standard iterable method, :meth:`~object.__iter__`, as an abstract method. The implementation given here can still be called from subclasses. The :meth:`!get_iterator` method is also part of the ``MyIterable`` abstract base class, but it does not have to be overridden in non-abstract derived classes." msgstr "" -#: ../../library/abc.rst:149 -msgid "" -"The :meth:`__subclasshook__` class method defined here says that any class " -"that has an :meth:`~object.__iter__` method in its :attr:`~object.__dict__` " -"(or in that of one of its base classes, accessed via " -"the :attr:`~type.__mro__` list) is considered a ``MyIterable`` too." +msgid "The :meth:`__subclasshook__` class method defined here says that any class that has an :meth:`~object.__iter__` method in its :attr:`~object.__dict__` (or in that of one of its base classes, accessed via the :attr:`~type.__mro__` list) is considered a ``MyIterable`` too." msgstr "" -#: ../../library/abc.rst:154 -msgid "" -"Finally, the last line makes ``Foo`` a virtual subclass of ``MyIterable``, " -"even though it does not define an :meth:`~object.__iter__` method (it uses " -"the old-style iterable protocol, defined in terms of :meth:`~object.__len__` " -"and :meth:`~object.__getitem__`). Note that this will not make " -"``get_iterator`` available as a method of ``Foo``, so it is provided " -"separately." +msgid "Finally, the last line makes ``Foo`` a virtual subclass of ``MyIterable``, even though it does not define an :meth:`~object.__iter__` method (it uses the old-style iterable protocol, defined in terms of :meth:`~object.__len__` and :meth:`~object.__getitem__`). Note that this will not make ``get_iterator`` available as a method of ``Foo``, so it is provided separately." msgstr "" -#: ../../library/abc.rst:163 msgid "The :mod:`!abc` module also provides the following decorator:" msgstr "" -#: ../../library/abc.rst:167 msgid "A decorator indicating abstract methods." msgstr "" -#: ../../library/abc.rst:169 -msgid "" -"Using this decorator requires that the class's metaclass is :class:`ABCMeta` " -"or is derived from it. A class that has a metaclass derived from :class:`!" -"ABCMeta` cannot be instantiated unless all of its abstract methods and " -"properties are overridden. The abstract methods can be called using any of " -"the normal 'super' call mechanisms. :deco:`!abstractmethod` may be used to " -"declare abstract methods for properties and descriptors." +msgid "Using this decorator requires that the class's metaclass is :class:`ABCMeta` or is derived from it. A class that has a metaclass derived from :class:`!ABCMeta` cannot be instantiated unless all of its abstract methods and properties are overridden. The abstract methods can be called using any of the normal 'super' call mechanisms. :deco:`!abstractmethod` may be used to declare abstract methods for properties and descriptors." msgstr "" -#: ../../library/abc.rst:176 -msgid "" -"Dynamically adding abstract methods to a class, or attempting to modify the " -"abstraction status of a method or class once it is created, are only " -"supported using the :func:`update_abstractmethods` function. The :deco:`!" -"abstractmethod` only affects subclasses derived using regular inheritance; " -"\"virtual subclasses\" registered with the ABC's :meth:`~ABCMeta.register` " -"method are not affected." +msgid "Dynamically adding abstract methods to a class, or attempting to modify the abstraction status of a method or class once it is created, are only supported using the :func:`update_abstractmethods` function. The :deco:`!abstractmethod` only affects subclasses derived using regular inheritance; \"virtual subclasses\" registered with the ABC's :meth:`~ABCMeta.register` method are not affected." msgstr "" -#: ../../library/abc.rst:183 -msgid "" -"When :deco:`!abstractmethod` is applied in combination with other method " -"descriptors, it should be applied as the innermost decorator, as shown in " -"the following usage examples::" +msgid "When :deco:`!abstractmethod` is applied in combination with other method descriptors, it should be applied as the innermost decorator, as shown in the following usage examples::" msgstr "" -#: ../../library/abc.rst:187 msgid "" "class C(ABC):\n" " @abstractmethod\n" @@ -293,16 +188,9 @@ msgid "" " x = property(_get_x, _set_x)" msgstr "" -#: ../../library/abc.rst:217 -msgid "" -"In order to correctly interoperate with the abstract base class machinery, " -"the descriptor must identify itself as abstract using :attr:`!" -"__isabstractmethod__`. In general, this attribute should be ``True`` if any " -"of the methods used to compose the descriptor are abstract. For example, " -"Python's built-in :deco:`property` does the equivalent of::" +msgid "In order to correctly interoperate with the abstract base class machinery, the descriptor must identify itself as abstract using :attr:`!__isabstractmethod__`. In general, this attribute should be ``True`` if any of the methods used to compose the descriptor are abstract. For example, Python's built-in :deco:`property` does the equivalent of::" msgstr "" -#: ../../library/abc.rst:223 msgid "" "class Descriptor:\n" " ...\n" @@ -312,38 +200,21 @@ msgid "" " f in (self._fget, self._fset, self._fdel))" msgstr "" -#: ../../library/abc.rst:232 -msgid "" -"Unlike Java abstract methods, these abstract methods may have an " -"implementation. This implementation can be called via the :func:`super` " -"mechanism from the class that overrides it. This could be useful as an end-" -"point for a super-call in a framework that uses cooperative multiple-" -"inheritance." +msgid "Unlike Java abstract methods, these abstract methods may have an implementation. This implementation can be called via the :func:`super` mechanism from the class that overrides it. This could be useful as an end-point for a super-call in a framework that uses cooperative multiple-inheritance." msgstr "" -#: ../../library/abc.rst:239 msgid "The :mod:`!abc` module also supports the following legacy decorators:" msgstr "" -#: ../../library/abc.rst:244 -msgid "" -"It is now possible to use :deco:`classmethod` with :deco:`abstractmethod`, " -"making this decorator redundant." +msgid "It is now possible to use :deco:`classmethod` with :deco:`abstractmethod`, making this decorator redundant." msgstr "" -#: ../../library/abc.rst:248 -msgid "" -"A subclass of the built-in :class:`classmethod`, indicating an abstract " -"classmethod. Otherwise it is similar to :deco:`abstractmethod`." +msgid "A subclass of the built-in :class:`classmethod`, indicating an abstract classmethod. Otherwise it is similar to :deco:`abstractmethod`." msgstr "" -#: ../../library/abc.rst:251 -msgid "" -"This special case is deprecated, as the :deco:`classmethod` decorator is now " -"correctly identified as abstract when applied to an abstract method::" +msgid "This special case is deprecated, as the :deco:`classmethod` decorator is now correctly identified as abstract when applied to an abstract method::" msgstr "" -#: ../../library/abc.rst:255 msgid "" "class C(ABC):\n" " @classmethod\n" @@ -352,25 +223,15 @@ msgid "" " ..." msgstr "" -#: ../../library/abc.rst:265 -msgid "" -"It is now possible to use :deco:`staticmethod` with :deco:`abstractmethod`, " -"making this decorator redundant." +msgid "It is now possible to use :deco:`staticmethod` with :deco:`abstractmethod`, making this decorator redundant." msgstr "" -#: ../../library/abc.rst:269 -msgid "" -"A subclass of the built-in :class:`staticmethod`, indicating an abstract " -"staticmethod. Otherwise it is similar to :deco:`abstractmethod`." +msgid "A subclass of the built-in :class:`staticmethod`, indicating an abstract staticmethod. Otherwise it is similar to :deco:`abstractmethod`." msgstr "" -#: ../../library/abc.rst:272 -msgid "" -"This special case is deprecated, as the :deco:`staticmethod` decorator is " -"now correctly identified as abstract when applied to an abstract method::" +msgid "This special case is deprecated, as the :deco:`staticmethod` decorator is now correctly identified as abstract when applied to an abstract method::" msgstr "" -#: ../../library/abc.rst:276 msgid "" "class C(ABC):\n" " @staticmethod\n" @@ -379,27 +240,15 @@ msgid "" " ..." msgstr "" -#: ../../library/abc.rst:285 -msgid "" -"It is now possible to " -"use :deco:`property`, :deco:`property.getter`, :deco:`property.setter` " -"and :deco:`property.deleter` with :deco:`abstractmethod`, making this " -"decorator redundant." +msgid "It is now possible to use :deco:`property`, :deco:`property.getter`, :deco:`property.setter` and :deco:`property.deleter` with :deco:`abstractmethod`, making this decorator redundant." msgstr "" -#: ../../library/abc.rst:290 -msgid "" -"A subclass of the built-in :class:`property`, indicating an abstract " -"property." +msgid "A subclass of the built-in :class:`property`, indicating an abstract property." msgstr "" -#: ../../library/abc.rst:293 -msgid "" -"This special case is deprecated, as the :deco:`property` decorator is now " -"correctly identified as abstract when applied to an abstract method::" +msgid "This special case is deprecated, as the :deco:`property` decorator is now correctly identified as abstract when applied to an abstract method::" msgstr "" -#: ../../library/abc.rst:297 msgid "" "class C(ABC):\n" " @property\n" @@ -408,14 +257,9 @@ msgid "" " ..." msgstr "" -#: ../../library/abc.rst:303 -msgid "" -"The above example defines a read-only property; you can also define a read-" -"write abstract property by appropriately marking one or more of the " -"underlying methods as abstract::" +msgid "The above example defines a read-only property; you can also define a read-write abstract property by appropriately marking one or more of the underlying methods as abstract::" msgstr "" -#: ../../library/abc.rst:307 msgid "" "class C(ABC):\n" " @property\n" @@ -428,13 +272,9 @@ msgid "" " ..." msgstr "" -#: ../../library/abc.rst:317 -msgid "" -"If only some components are abstract, only those components need to be " -"updated to create a concrete property in a subclass::" +msgid "If only some components are abstract, only those components need to be updated to create a concrete property in a subclass::" msgstr "" -#: ../../library/abc.rst:320 msgid "" "class D(C):\n" " @C.x.setter\n" @@ -442,49 +282,29 @@ msgid "" " ..." msgstr "" -#: ../../library/abc.rst:326 msgid "The :mod:`!abc` module also provides the following functions:" msgstr "" -#: ../../library/abc.rst:330 msgid "Returns the current abstract base class cache token." msgstr "" -#: ../../library/abc.rst:332 -msgid "" -"The token is an opaque object (that supports equality testing) identifying " -"the current version of the abstract base class cache for virtual subclasses. " -"The token changes with every call to :meth:`ABCMeta.register` on any ABC." +msgid "The token is an opaque object (that supports equality testing) identifying the current version of the abstract base class cache for virtual subclasses. The token changes with every call to :meth:`ABCMeta.register` on any ABC." msgstr "" -#: ../../library/abc.rst:340 -msgid "" -"A function to recalculate an abstract class's abstraction status. This " -"function should be called if a class's abstract methods have been " -"implemented or changed after it was created. Usually, this function should " -"be called from within a class decorator." +msgid "A function to recalculate an abstract class's abstraction status. This function should be called if a class's abstract methods have been implemented or changed after it was created. Usually, this function should be called from within a class decorator." msgstr "" -#: ../../library/abc.rst:345 msgid "Returns *cls*, to allow usage as a class decorator." msgstr "" -#: ../../library/abc.rst:347 msgid "If *cls* is not an instance of :class:`ABCMeta`, does nothing." msgstr "" -#: ../../library/abc.rst:351 -msgid "" -"This function assumes that *cls*'s superclasses are already updated. It does " -"not update any subclasses." +msgid "This function assumes that *cls*'s superclasses are already updated. It does not update any subclasses." msgstr "" -#: ../../library/abc.rst:357 msgid "Footnotes" msgstr "" -#: ../../library/abc.rst:358 -msgid "" -"C++ programmers should note that Python's virtual base class concept is not " -"the same as C++'s." +msgid "C++ programmers should note that Python's virtual base class concept is not the same as C++'s." msgstr "" diff --git a/library/aifc.po b/library/aifc.po index d119e1f6..97b92e0a 100644 --- a/library/aifc.po +++ b/library/aifc.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2024-11-19 01:02+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,19 +21,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/aifc.rst:2 msgid ":mod:`!aifc` --- Read and write AIFF and AIFC files" msgstr "" -#: ../../library/aifc.rst:10 -msgid "" -"This module is no longer part of the Python standard library. It " -"was :ref:`removed in Python 3.13 ` after being " -"deprecated in Python 3.11. The removal was decided in :pep:`594`." +msgid "This module is no longer part of the Python standard library. It was :ref:`removed in Python 3.13 ` after being deprecated in Python 3.11. The removal was decided in :pep:`594`." msgstr "" -#: ../../library/aifc.rst:14 -msgid "" -"The last version of Python that provided the :mod:`!aifc` module was `Python " -"3.12 `_." +msgid "The last version of Python that provided the :mod:`!aifc` module was `Python 3.12 `_." msgstr "" diff --git a/library/allos.po b/library/allos.po index 94081a19..028c01b0 100644 --- a/library/allos.po +++ b/library/allos.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:54+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,15 +21,8 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/allos.rst:5 msgid "Generic Operating System Services" msgstr "" -#: ../../library/allos.rst:7 -msgid "" -"The modules described in this chapter provide interfaces to operating system " -"features that are available on (almost) all operating systems, such as files " -"and a clock. The interfaces are generally modeled after the Unix or C " -"interfaces, but they are available on most other systems as well. Here's an " -"overview:" +msgid "The modules described in this chapter provide interfaces to operating system features that are available on (almost) all operating systems, such as files and a clock. The interfaces are generally modeled after the Unix or C interfaces, but they are available on most other systems as well. Here's an overview:" msgstr "" diff --git a/library/annotationlib.po b/library/annotationlib.po index 57c6d6ea..a7da9754 100644 --- a/library/annotationlib.po +++ b/library/annotationlib.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2026-07-25 12:59+0330\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: none\n" @@ -19,136 +19,66 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../library/annotationlib.rst:2 msgid ":mod:`!annotationlib` --- Functionality for introspecting annotations" msgstr "" -#: ../../library/annotationlib.rst:9 msgid "**Source code:** :source:`Lib/annotationlib.py`" msgstr "" -#: ../../library/annotationlib.rst:18 -msgid "" -"The :mod:`!annotationlib` module provides tools for " -"introspecting :term:`annotations ` on modules, classes, and " -"functions." +msgid "The :mod:`!annotationlib` module provides tools for introspecting :term:`annotations ` on modules, classes, and functions." msgstr "" -#: ../../library/annotationlib.rst:21 -msgid "" -"Annotations are :ref:`lazily evaluated ` and often contain " -"forward references to objects that are not yet defined when the annotation " -"is created. This module provides a set of low-level tools that can be used " -"to retrieve annotations in a reliable way, even in the presence of forward " -"references and other edge cases." +msgid "Annotations are :ref:`lazily evaluated ` and often contain forward references to objects that are not yet defined when the annotation is created. This module provides a set of low-level tools that can be used to retrieve annotations in a reliable way, even in the presence of forward references and other edge cases." msgstr "" -#: ../../library/annotationlib.rst:26 -msgid "" -"This module supports retrieving annotations in three main formats " -"(see :class:`Format`), each of which works best for different use cases:" +msgid "This module supports retrieving annotations in three main formats (see :class:`Format`), each of which works best for different use cases:" msgstr "" -#: ../../library/annotationlib.rst:29 -msgid "" -":attr:`~Format.VALUE` evaluates the annotations and returns their value. " -"This is most straightforward to work with, but it may raise errors, for " -"example if the annotations contain references to undefined names." +msgid ":attr:`~Format.VALUE` evaluates the annotations and returns their value. This is most straightforward to work with, but it may raise errors, for example if the annotations contain references to undefined names." msgstr "" -#: ../../library/annotationlib.rst:32 -msgid "" -":attr:`~Format.FORWARDREF` returns :class:`ForwardRef` objects for " -"annotations that cannot be resolved, allowing you to inspect the annotations " -"without evaluating them. This is useful when you need to work with " -"annotations that may contain unresolved forward references." +msgid ":attr:`~Format.FORWARDREF` returns :class:`ForwardRef` objects for annotations that cannot be resolved, allowing you to inspect the annotations without evaluating them. This is useful when you need to work with annotations that may contain unresolved forward references." msgstr "" -#: ../../library/annotationlib.rst:36 -msgid "" -":attr:`~Format.STRING` returns the annotations as a string, similar to how " -"it would appear in the source file. This is useful for documentation " -"generators that want to display annotations in a readable way." +msgid ":attr:`~Format.STRING` returns the annotations as a string, similar to how it would appear in the source file. This is useful for documentation generators that want to display annotations in a readable way." msgstr "" -#: ../../library/annotationlib.rst:40 -msgid "" -"The :func:`get_annotations` function is the main entry point for retrieving " -"annotations. Given a function, class, or module, it returns an annotations " -"dictionary in the requested format. This module also provides functionality " -"for working directly with the :term:`annotate function` that is used to " -"evaluate annotations, such as :func:`get_annotate_from_class_namespace` " -"and :func:`call_annotate_function`, as well as " -"the :func:`call_evaluate_function` function for working with :term:`evaluate " -"functions `." +msgid "The :func:`get_annotations` function is the main entry point for retrieving annotations. Given a function, class, or module, it returns an annotations dictionary in the requested format. This module also provides functionality for working directly with the :term:`annotate function` that is used to evaluate annotations, such as :func:`get_annotate_from_class_namespace` and :func:`call_annotate_function`, as well as the :func:`call_evaluate_function` function for working with :term:`evaluate functions `." msgstr "" -#: ../../library/annotationlib.rst:51 -msgid "" -"Most functionality in this module can execute arbitrary code; see :ref:`the " -"security section ` for more information." +msgid "Most functionality in this module can execute arbitrary code; see :ref:`the security section ` for more information." msgstr "" -#: ../../library/annotationlib.rst:56 -msgid "" -":pep:`649` proposed the current model for how annotations work in Python." +msgid ":pep:`649` proposed the current model for how annotations work in Python." msgstr "" -#: ../../library/annotationlib.rst:58 -msgid "" -":pep:`749` expanded on various aspects of :pep:`649` and introduced " -"the :mod:`!annotationlib` module." +msgid ":pep:`749` expanded on various aspects of :pep:`649` and introduced the :mod:`!annotationlib` module." msgstr "" -#: ../../library/annotationlib.rst:61 -msgid "" -":ref:`annotations-howto` provides best practices for working with " -"annotations." +msgid ":ref:`annotations-howto` provides best practices for working with annotations." msgstr "" -#: ../../library/annotationlib.rst:64 -msgid "" -":pypi:`typing-extensions` provides a backport of :func:`get_annotations` " -"that works on earlier versions of Python." +msgid ":pypi:`typing-extensions` provides a backport of :func:`get_annotations` that works on earlier versions of Python." msgstr "" -#: ../../library/annotationlib.rst:68 msgid "Annotation semantics" msgstr "" -#: ../../library/annotationlib.rst:70 -msgid "" -"The way annotations are evaluated has changed over the history of Python 3, " -"and currently still depends on a :ref:`future import `. There have " -"been execution models for annotations:" +msgid "The way annotations are evaluated has changed over the history of Python 3, and currently still depends on a :ref:`future import `. There have been execution models for annotations:" msgstr "" -#: ../../library/annotationlib.rst:74 -msgid "" -"*Stock semantics* (default in Python 3.0 through 3.13; see :pep:`3107` " -"and :pep:`526`): Annotations are evaluated eagerly, as they are encountered " -"in the source code." +msgid "*Stock semantics* (default in Python 3.0 through 3.13; see :pep:`3107` and :pep:`526`): Annotations are evaluated eagerly, as they are encountered in the source code." msgstr "" -#: ../../library/annotationlib.rst:77 -msgid "" -"*Stringified annotations* (used with ``from __future__ import annotations`` " -"in Python 3.7 and newer; see :pep:`563`): Annotations are stored as strings " -"only." +msgid "*Stringified annotations* (used with ``from __future__ import annotations`` in Python 3.7 and newer; see :pep:`563`): Annotations are stored as strings only." msgstr "" -#: ../../library/annotationlib.rst:80 -msgid "" -"*Deferred evaluation* (default in Python 3.14 and newer; see :pep:`649` " -"and :pep:`749`): Annotations are evaluated lazily, only when they are " -"accessed." +msgid "*Deferred evaluation* (default in Python 3.14 and newer; see :pep:`649` and :pep:`749`): Annotations are evaluated lazily, only when they are accessed." msgstr "" -#: ../../library/annotationlib.rst:83 msgid "As an example, consider the following program::" msgstr "" -#: ../../library/annotationlib.rst:85 msgid "" "def func(a: Cls) -> None:\n" " print(a)\n" @@ -158,195 +88,78 @@ msgid "" "print(func.__annotations__)" msgstr "" -#: ../../library/annotationlib.rst:92 msgid "This will behave as follows:" msgstr "" -#: ../../library/annotationlib.rst:94 -msgid "" -"Under stock semantics (Python 3.13 and earlier), it will throw " -"a :exc:`NameError` at the line where ``func`` is defined, because ``Cls`` is " -"an undefined name at that point." +msgid "Under stock semantics (Python 3.13 and earlier), it will throw a :exc:`NameError` at the line where ``func`` is defined, because ``Cls`` is an undefined name at that point." msgstr "" -#: ../../library/annotationlib.rst:97 -msgid "" -"Under stringified annotations (if ``from __future__ import annotations`` is " -"used), it will print ``{'a': 'Cls', 'return': 'None'}``." +msgid "Under stringified annotations (if ``from __future__ import annotations`` is used), it will print ``{'a': 'Cls', 'return': 'None'}``." msgstr "" -#: ../../library/annotationlib.rst:99 -msgid "" -"Under deferred evaluation (Python 3.14 and later), it will print ``{'a': " -", 'return': None}``." +msgid "Under deferred evaluation (Python 3.14 and later), it will print ``{'a': , 'return': None}``." +msgstr "" + +msgid "Stock semantics were used when function annotations were first introduced in Python 3.0 (by :pep:`3107`) because this was the simplest, most obvious way to implement annotations. The same execution model was used when variable annotations were introduced in Python 3.6 (by :pep:`526`). However, stock semantics caused problems when using annotations as type hints, such as a need to refer to names that are not yet defined when the annotation is encountered. In addition, there were performance problems with executing annotations at module import time. Therefore, in Python 3.7, :pep:`563` introduced the ability to store annotations as strings using the ``from __future__ import annotations`` syntax. The plan at the time was to eventually make this behavior the default, but a problem appeared: stringified annotations are more difficult to process for those who introspect annotations at runtime. An alternative proposal, :pep:`649`, introduced the third execution model, deferred evaluation, and was implemented in Python 3.14. Stringified annotations are still used if ``from __future__ import annotations`` is present, but this behavior will eventually be removed." msgstr "" -#: ../../library/annotationlib.rst:102 -msgid "" -"Stock semantics were used when function annotations were first introduced in " -"Python 3.0 (by :pep:`3107`) because this was the simplest, most obvious way " -"to implement annotations. The same execution model was used when variable " -"annotations were introduced in Python 3.6 (by :pep:`526`). However, stock " -"semantics caused problems when using annotations as type hints, such as a " -"need to refer to names that are not yet defined when the annotation is " -"encountered. In addition, there were performance problems with executing " -"annotations at module import time. Therefore, in Python 3.7, :pep:`563` " -"introduced the ability to store annotations as strings using the ``from " -"__future__ import annotations`` syntax. The plan at the time was to " -"eventually make this behavior the default, but a problem appeared: " -"stringified annotations are more difficult to process for those who " -"introspect annotations at runtime. An alternative proposal, :pep:`649`, " -"introduced the third execution model, deferred evaluation, and was " -"implemented in Python 3.14. Stringified annotations are still used if ``from " -"__future__ import annotations`` is present, but this behavior will " -"eventually be removed." -msgstr "" - -#: ../../library/annotationlib.rst:121 msgid "Classes" msgstr "" -#: ../../library/annotationlib.rst:125 -msgid "" -"An :class:`~enum.IntEnum` describing the formats in which annotations can be " -"returned. Members of the enum, or their equivalent integer values, can be " -"passed to :func:`get_annotations` and other functions in this module, as " -"well as to :attr:`~object.__annotate__` functions." +msgid "An :class:`~enum.IntEnum` describing the formats in which annotations can be returned. Members of the enum, or their equivalent integer values, can be passed to :func:`get_annotations` and other functions in this module, as well as to :attr:`~object.__annotate__` functions." msgstr "" -#: ../../library/annotationlib.rst:133 msgid "Values are the result of evaluating the annotation expressions." msgstr "" -#: ../../library/annotationlib.rst:138 -msgid "" -"Special value used to signal that an annotate function is being evaluated in " -"a special environment with fake globals. When passed this value, annotate " -"functions should either return the same value as for " -"the :attr:`Format.VALUE` format, or raise :exc:`NotImplementedError` to " -"signal that they do not support execution in this environment. This format " -"is only used internally and should not be passed to the functions in this " -"module." +msgid "Special value used to signal that an annotate function is being evaluated in a special environment with fake globals. When passed this value, annotate functions should either return the same value as for the :attr:`Format.VALUE` format, or raise :exc:`NotImplementedError` to signal that they do not support execution in this environment. This format is only used internally and should not be passed to the functions in this module." msgstr "" -#: ../../library/annotationlib.rst:149 -msgid "" -"Values are real annotation values (as per :attr:`Format.VALUE` format) for " -"defined values, and :class:`ForwardRef` proxies for undefined values. Real " -"objects may contain references to :class:`ForwardRef` proxy objects." +msgid "Values are real annotation values (as per :attr:`Format.VALUE` format) for defined values, and :class:`ForwardRef` proxies for undefined values. Real objects may contain references to :class:`ForwardRef` proxy objects." msgstr "" -#: ../../library/annotationlib.rst:157 -msgid "" -"Values are the text string of the annotation as it appears in the source " -"code, up to modifications including, but not restricted to, whitespace " -"normalizations and constant values optimizations." +msgid "Values are the text string of the annotation as it appears in the source code, up to modifications including, but not restricted to, whitespace normalizations and constant values optimizations." msgstr "" -#: ../../library/annotationlib.rst:161 -msgid "" -"The exact values of these strings may change in future versions of Python." +msgid "The exact values of these strings may change in future versions of Python." msgstr "" -#: ../../library/annotationlib.rst:167 msgid "A proxy object for forward references in annotations." msgstr "" -#: ../../library/annotationlib.rst:169 -msgid "" -"Instances of this class are returned when the :attr:`~Format.FORWARDREF` " -"format is used and annotations contain a name that cannot be resolved. This " -"can happen when a forward reference is used in an annotation, such as when a " -"class is referenced before it is defined." +msgid "Instances of this class are returned when the :attr:`~Format.FORWARDREF` format is used and annotations contain a name that cannot be resolved. This can happen when a forward reference is used in an annotation, such as when a class is referenced before it is defined." msgstr "" -#: ../../library/annotationlib.rst:176 -msgid "" -"A string containing the code that was evaluated to produce " -"the :class:`~ForwardRef`. The string may not be exactly equivalent to the " -"original source." +msgid "A string containing the code that was evaluated to produce the :class:`~ForwardRef`. The string may not be exactly equivalent to the original source." msgstr "" -#: ../../library/annotationlib.rst:182 msgid "Evaluate the forward reference, returning its value." msgstr "" -#: ../../library/annotationlib.rst:184 -msgid "" -"If the *format* argument is :attr:`~Format.VALUE` (the default), this method " -"may throw an exception, such as :exc:`NameError`, if the forward reference " -"refers to a name that cannot be resolved. The arguments to this method can " -"be used to provide bindings for names that would otherwise be undefined. If " -"the *format* argument is :attr:`~Format.FORWARDREF`, the method will never " -"throw an exception, but may return a :class:`~ForwardRef` instance. For " -"example, if the forward reference object contains the code " -"``list[undefined]``, where ``undefined`` is a name that is not defined, " -"evaluating it with the :attr:`~Format.FORWARDREF` format will return " -"``list[ForwardRef('undefined')]``. If the *format* argument " -"is :attr:`~Format.STRING`, the method will " -"return :attr:`~ForwardRef.__forward_arg__`." -msgstr "" - -#: ../../library/annotationlib.rst:196 -msgid "" -"The *owner* parameter provides the preferred mechanism for passing scope " -"information to this method. The owner of a :class:`~ForwardRef` is the " -"object that contains the annotation from which the :class:`~ForwardRef` " -"derives, such as a module object, type object, or function object." +msgid "If the *format* argument is :attr:`~Format.VALUE` (the default), this method may throw an exception, such as :exc:`NameError`, if the forward reference refers to a name that cannot be resolved. The arguments to this method can be used to provide bindings for names that would otherwise be undefined. If the *format* argument is :attr:`~Format.FORWARDREF`, the method will never throw an exception, but may return a :class:`~ForwardRef` instance. For example, if the forward reference object contains the code ``list[undefined]``, where ``undefined`` is a name that is not defined, evaluating it with the :attr:`~Format.FORWARDREF` format will return ``list[ForwardRef('undefined')]``. If the *format* argument is :attr:`~Format.STRING`, the method will return :attr:`~ForwardRef.__forward_arg__`." msgstr "" -#: ../../library/annotationlib.rst:201 -msgid "" -"The *globals*, *locals*, and *type_params* parameters provide a more precise " -"mechanism for influencing the names that are available when " -"the :class:`~ForwardRef` is evaluated. *globals* and *locals* are passed " -"to :func:`eval`, representing the global and local namespaces in which the " -"name is evaluated. The *type_params* parameter is relevant for objects " -"created using the native syntax for :ref:`generic classes ` " -"and :ref:`functions `. It is a tuple of :ref:`type " -"parameters ` that are in scope while the forward reference is " -"being evaluated. For example, if evaluating a :class:`~ForwardRef` retrieved " -"from an annotation found in the class namespace of a generic class ``C``, " -"*type_params* should be set to ``C.__type_params__``." -msgstr "" - -#: ../../library/annotationlib.rst:212 -msgid "" -":class:`~ForwardRef` instances returned by :func:`get_annotations` retain " -"references to information about the scope they originated from, so calling " -"this method with no further arguments may be sufficient to evaluate such " -"objects. :class:`~ForwardRef` instances created by other means may not have " -"any information about their scope, so passing arguments to this method may " -"be necessary to evaluate them successfully." +msgid "The *owner* parameter provides the preferred mechanism for passing scope information to this method. The owner of a :class:`~ForwardRef` is the object that contains the annotation from which the :class:`~ForwardRef` derives, such as a module object, type object, or function object." msgstr "" -#: ../../library/annotationlib.rst:219 -msgid "" -"If no *owner*, *globals*, *locals*, or *type_params* are provided and " -"the :class:`~ForwardRef` does not contain information about its origin, " -"empty globals and locals dictionaries are used." +msgid "The *globals*, *locals*, and *type_params* parameters provide a more precise mechanism for influencing the names that are available when the :class:`~ForwardRef` is evaluated. *globals* and *locals* are passed to :func:`eval`, representing the global and local namespaces in which the name is evaluated. The *type_params* parameter is relevant for objects created using the native syntax for :ref:`generic classes ` and :ref:`functions `. It is a tuple of :ref:`type parameters ` that are in scope while the forward reference is being evaluated. For example, if evaluating a :class:`~ForwardRef` retrieved from an annotation found in the class namespace of a generic class ``C``, *type_params* should be set to ``C.__type_params__``." +msgstr "" + +msgid ":class:`~ForwardRef` instances returned by :func:`get_annotations` retain references to information about the scope they originated from, so calling this method with no further arguments may be sufficient to evaluate such objects. :class:`~ForwardRef` instances created by other means may not have any information about their scope, so passing arguments to this method may be necessary to evaluate them successfully." +msgstr "" + +msgid "If no *owner*, *globals*, *locals*, or *type_params* are provided and the :class:`~ForwardRef` does not contain information about its origin, empty globals and locals dictionaries are used." msgstr "" -#: ../../library/annotationlib.rst:227 msgid "Functions" msgstr "" -#: ../../library/annotationlib.rst:231 -msgid "" -"Convert an annotations dict containing runtime values to a dict containing " -"only strings. If the values are not already strings, they are converted " -"using :func:`type_repr`. This is meant as a helper for user-provided " -"annotate functions that support the :attr:`~Format.STRING` format but do not " -"have access to the code creating the annotations." +msgid "Convert an annotations dict containing runtime values to a dict containing only strings. If the values are not already strings, they are converted using :func:`type_repr`. This is meant as a helper for user-provided annotate functions that support the :attr:`~Format.STRING` format but do not have access to the code creating the annotations." msgstr "" -#: ../../library/annotationlib.rst:238 -msgid "" -"For example, this is used to implement the :attr:`~Format.STRING` " -"for :class:`typing.TypedDict` classes created through the functional syntax:" +msgid "For example, this is used to implement the :attr:`~Format.STRING` for :class:`typing.TypedDict` classes created through the functional syntax:" msgstr "" -#: ../../library/annotationlib.rst:241 msgid "" ">>> from typing import TypedDict\n" ">>> Movie = TypedDict(\"movie\", {\"name\": str, \"year\": int})\n" @@ -354,96 +167,48 @@ msgid "" "{'name': 'str', 'year': 'int'}" msgstr "" -#: ../../library/annotationlib.rst:252 -msgid "" -"Call the :term:`annotate function` *annotate* with the given *format*, a " -"member of the :class:`Format` enum, and return the annotations dictionary " -"produced by the function." +msgid "Call the :term:`annotate function` *annotate* with the given *format*, a member of the :class:`Format` enum, and return the annotations dictionary produced by the function." msgstr "" -#: ../../library/annotationlib.rst:256 -msgid "" -"This helper function is required because annotate functions generated by the " -"compiler for functions, classes, and modules only support " -"the :attr:`~Format.VALUE` format when called directly. To support other " -"formats, this function calls the annotate function in a special environment " -"that allows it to produce annotations in the other formats. This is a useful " -"building block when implementing functionality that needs to partially " -"evaluate annotations while a class is being constructed." +msgid "This helper function is required because annotate functions generated by the compiler for functions, classes, and modules only support the :attr:`~Format.VALUE` format when called directly. To support other formats, this function calls the annotate function in a special environment that allows it to produce annotations in the other formats. This is a useful building block when implementing functionality that needs to partially evaluate annotations while a class is being constructed." msgstr "" -#: ../../library/annotationlib.rst:265 -msgid "" -"*owner* is the object that owns the annotation function, usually a function, " -"class, or module. If provided, it is used in the :attr:`~Format.FORWARDREF` " -"format to produce a :class:`ForwardRef` object that carries more information." +msgid "*owner* is the object that owns the annotation function, usually a function, class, or module. If provided, it is used in the :attr:`~Format.FORWARDREF` format to produce a :class:`ForwardRef` object that carries more information." msgstr "" -#: ../../library/annotationlib.rst:272 -msgid "" -":PEP:`PEP 649 <649#the-stringizer-and-the-fake-globals-environment>` " -"contains an explanation of the implementation technique used by this " -"function." +msgid ":PEP:`PEP 649 <649#the-stringizer-and-the-fake-globals-environment>` contains an explanation of the implementation technique used by this function." msgstr "" -#: ../../library/annotationlib.rst:280 -msgid "" -"Call the :term:`evaluate function` *evaluate* with the given *format*, a " -"member of the :class:`Format` enum, and return the value produced by the " -"function. This is similar to :func:`call_annotate_function`, but the latter " -"always returns a dictionary mapping strings to annotations, while this " -"function returns a single value." +msgid "Call the :term:`evaluate function` *evaluate* with the given *format*, a member of the :class:`Format` enum, and return the value produced by the function. This is similar to :func:`call_annotate_function`, but the latter always returns a dictionary mapping strings to annotations, while this function returns a single value." msgstr "" -#: ../../library/annotationlib.rst:286 -msgid "" -"This is intended for use with the evaluate functions generated for lazily " -"evaluated elements related to type aliases and type parameters:" +msgid "This is intended for use with the evaluate functions generated for lazily evaluated elements related to type aliases and type parameters:" msgstr "" -#: ../../library/annotationlib.rst:289 msgid ":meth:`typing.TypeAliasType.evaluate_value`, the value of type aliases" msgstr "" -#: ../../library/annotationlib.rst:290 msgid ":meth:`typing.TypeVar.evaluate_bound`, the bound of type variables" msgstr "" -#: ../../library/annotationlib.rst:291 -msgid "" -":meth:`typing.TypeVar.evaluate_constraints`, the constraints of type " -"variables" +msgid ":meth:`typing.TypeVar.evaluate_constraints`, the constraints of type variables" msgstr "" -#: ../../library/annotationlib.rst:293 -msgid "" -":meth:`typing.TypeVar.evaluate_default`, the default value of type variables" +msgid ":meth:`typing.TypeVar.evaluate_default`, the default value of type variables" msgstr "" -#: ../../library/annotationlib.rst:295 -msgid "" -":meth:`typing.ParamSpec.evaluate_default`, the default value of parameter " -"specifications" +msgid ":meth:`typing.ParamSpec.evaluate_default`, the default value of parameter specifications" msgstr "" -#: ../../library/annotationlib.rst:297 -msgid "" -":meth:`typing.TypeVarTuple.evaluate_default`, the default value of type " -"variable tuples" +msgid ":meth:`typing.TypeVarTuple.evaluate_default`, the default value of type variable tuples" msgstr "" -#: ../../library/annotationlib.rst:300 -msgid "" -"*owner* is the object that owns the evaluate function, such as the type " -"alias or type variable object." +msgid "*owner* is the object that owns the evaluate function, such as the type alias or type variable object." msgstr "" -#: ../../library/annotationlib.rst:303 -msgid "" -"*format* can be used to control the format in which the value is returned:" +msgid "*format* can be used to control the format in which the value is returned:" msgstr "" -#: ../../library/annotationlib.rst:305 msgid "" ">>> type Alias = undefined\n" ">>> call_evaluate_function(Alias.evaluate_value, Format.VALUE)\n" @@ -456,171 +221,75 @@ msgid "" "'undefined'" msgstr "" -#: ../../library/annotationlib.rst:321 -msgid "" -"Retrieve the :term:`annotate function` from a class namespace dictionary " -"*namespace*. Return :const:`!None` if the namespace does not contain an " -"annotate function. This is primarily useful before the class has been fully " -"created (e.g., in a metaclass); after the class exists, the annotate " -"function can be retrieved with ``cls.__annotate__``. See :ref:`below " -"` for an example using this function in a metaclass." +msgid "Retrieve the :term:`annotate function` from a class namespace dictionary *namespace*. Return :const:`!None` if the namespace does not contain an annotate function. This is primarily useful before the class has been fully created (e.g., in a metaclass); after the class exists, the annotate function can be retrieved with ``cls.__annotate__``. See :ref:`below ` for an example using this function in a metaclass." msgstr "" -#: ../../library/annotationlib.rst:331 msgid "Compute the annotations dict for an object." msgstr "" -#: ../../library/annotationlib.rst:333 -msgid "" -"*obj* may be a callable, class, module, or other object " -"with :attr:`~object.__annotate__` or :attr:`~object.__annotations__` " -"attributes. Passing any other object raises :exc:`TypeError`." +msgid "*obj* may be a callable, class, module, or other object with :attr:`~object.__annotate__` or :attr:`~object.__annotations__` attributes. Passing any other object raises :exc:`TypeError`." msgstr "" -#: ../../library/annotationlib.rst:337 -msgid "" -"The *format* parameter controls the format in which annotations are " -"returned, and must be a member of the :class:`Format` enum or its integer " -"equivalent. The different formats work as follows:" +msgid "The *format* parameter controls the format in which annotations are returned, and must be a member of the :class:`Format` enum or its integer equivalent. The different formats work as follows:" msgstr "" -#: ../../library/annotationlib.rst:341 -msgid "" -"VALUE: :attr:`!object.__annotations__` is tried first; if that does not " -"exist, the :attr:`!object.__annotate__` function is called if it exists." +msgid "VALUE: :attr:`!object.__annotations__` is tried first; if that does not exist, the :attr:`!object.__annotate__` function is called if it exists." msgstr "" -#: ../../library/annotationlib.rst:344 -msgid "" -"FORWARDREF: If :attr:`!object.__annotations__` exists and can be evaluated " -"successfully, it is used; otherwise, the :attr:`!object.__annotate__` " -"function is called. If it does not exist either, :attr:`!" -"object.__annotations__` is tried again and any error from accessing it is re-" -"raised." +msgid "FORWARDREF: If :attr:`!object.__annotations__` exists and can be evaluated successfully, it is used; otherwise, the :attr:`!object.__annotate__` function is called. If it does not exist either, :attr:`!object.__annotations__` is tried again and any error from accessing it is re-raised." msgstr "" -#: ../../library/annotationlib.rst:349 -msgid "" -"When calling :attr:`!object.__annotate__` it is first called " -"with :attr:`~Format.FORWARDREF`. If this is not implemented, it will then " -"check if :attr:`~Format.VALUE_WITH_FAKE_GLOBALS` is supported and use that " -"in the fake globals environment. If neither of these formats are supported, " -"it will fall back to using :attr:`~Format.VALUE`. If :attr:`~Format.VALUE` " -"fails, the error from this call will be raised." +msgid "When calling :attr:`!object.__annotate__` it is first called with :attr:`~Format.FORWARDREF`. If this is not implemented, it will then check if :attr:`~Format.VALUE_WITH_FAKE_GLOBALS` is supported and use that in the fake globals environment. If neither of these formats are supported, it will fall back to using :attr:`~Format.VALUE`. If :attr:`~Format.VALUE` fails, the error from this call will be raised." msgstr "" -#: ../../library/annotationlib.rst:355 -msgid "" -"STRING: If :attr:`!object.__annotate__` exists, it is called first; " -"otherwise, :attr:`!object.__annotations__` is used and stringified " -"using :func:`annotations_to_string`." +msgid "STRING: If :attr:`!object.__annotate__` exists, it is called first; otherwise, :attr:`!object.__annotations__` is used and stringified using :func:`annotations_to_string`." msgstr "" -#: ../../library/annotationlib.rst:359 -msgid "" -"When calling :attr:`!object.__annotate__` it is first called " -"with :attr:`~Format.STRING`. If this is not implemented, it will then check " -"if :attr:`~Format.VALUE_WITH_FAKE_GLOBALS` is supported and use that in the " -"fake globals environment. If neither of these formats are supported, it will " -"fall back to using :attr:`~Format.VALUE` with the result converted " -"using :func:`annotations_to_string`. If :attr:`~Format.VALUE` fails, the " -"error from this call will be raised." +msgid "When calling :attr:`!object.__annotate__` it is first called with :attr:`~Format.STRING`. If this is not implemented, it will then check if :attr:`~Format.VALUE_WITH_FAKE_GLOBALS` is supported and use that in the fake globals environment. If neither of these formats are supported, it will fall back to using :attr:`~Format.VALUE` with the result converted using :func:`annotations_to_string`. If :attr:`~Format.VALUE` fails, the error from this call will be raised." msgstr "" -#: ../../library/annotationlib.rst:366 -msgid "" -"Returns a dict. :func:`!get_annotations` returns a new dict every time it's " -"called; calling it twice on the same object will return two different but " -"equivalent dicts." +msgid "Returns a dict. :func:`!get_annotations` returns a new dict every time it's called; calling it twice on the same object will return two different but equivalent dicts." msgstr "" -#: ../../library/annotationlib.rst:370 msgid "This function handles several details for you:" msgstr "" -#: ../../library/annotationlib.rst:372 -msgid "" -"If *eval_str* is true, values of type :class:`!str` will be un-stringized " -"using :func:`eval`. This is intended for use with stringized annotations " -"(``from __future__ import annotations``). It is an error to set *eval_str* " -"to true with formats other than :attr:`Format.VALUE`." +msgid "If *eval_str* is true, values of type :class:`!str` will be un-stringized using :func:`eval`. This is intended for use with stringized annotations (``from __future__ import annotations``). It is an error to set *eval_str* to true with formats other than :attr:`Format.VALUE`." msgstr "" -#: ../../library/annotationlib.rst:377 -msgid "" -"If *obj* doesn't have an annotations dict, returns an empty dict. (Functions " -"and methods always have an annotations dict; classes, modules, and other " -"types of callables may not.)" +msgid "If *obj* doesn't have an annotations dict, returns an empty dict. (Functions and methods always have an annotations dict; classes, modules, and other types of callables may not.)" msgstr "" -#: ../../library/annotationlib.rst:381 -msgid "" -"Ignores inherited annotations on classes, as well as annotations on " -"metaclasses. If a class doesn't have its own annotations dict, returns an " -"empty dict." +msgid "Ignores inherited annotations on classes, as well as annotations on metaclasses. If a class doesn't have its own annotations dict, returns an empty dict." msgstr "" -#: ../../library/annotationlib.rst:384 -msgid "" -"All accesses to object members and dict values are done using ``getattr()`` " -"and ``dict.get()`` for safety." +msgid "All accesses to object members and dict values are done using ``getattr()`` and ``dict.get()`` for safety." msgstr "" -#: ../../library/annotationlib.rst:387 -msgid "" -"*eval_str* controls whether or not values of type :class:`!str` are replaced " -"with the result of calling :func:`eval` on those values:" +msgid "*eval_str* controls whether or not values of type :class:`!str` are replaced with the result of calling :func:`eval` on those values:" msgstr "" -#: ../../library/annotationlib.rst:390 -msgid "" -"If eval_str is true, :func:`eval` is called on values of type :class:`!str`. " -"(Note that :func:`!get_annotations` doesn't catch exceptions; " -"if :func:`eval` raises an exception, it will unwind the stack past " -"the :func:`!get_annotations` call.)" +msgid "If eval_str is true, :func:`eval` is called on values of type :class:`!str`. (Note that :func:`!get_annotations` doesn't catch exceptions; if :func:`eval` raises an exception, it will unwind the stack past the :func:`!get_annotations` call.)" msgstr "" -#: ../../library/annotationlib.rst:394 -msgid "" -"If *eval_str* is false (the default), values of type :class:`!str` are " -"unchanged." +msgid "If *eval_str* is false (the default), values of type :class:`!str` are unchanged." msgstr "" -#: ../../library/annotationlib.rst:397 -msgid "" -"*globals* and *locals* are passed in to :func:`eval`; see the documentation " -"for :func:`eval` for more information. If *globals* or *locals* is :const:`!" -"None`, this function may replace that value with a context-specific default, " -"contingent on ``type(obj)``:" +msgid "*globals* and *locals* are passed in to :func:`eval`; see the documentation for :func:`eval` for more information. If *globals* or *locals* is :const:`!None`, this function may replace that value with a context-specific default, contingent on ``type(obj)``:" msgstr "" -#: ../../library/annotationlib.rst:402 msgid "If *obj* is a module, *globals* defaults to ``obj.__dict__``." msgstr "" -#: ../../library/annotationlib.rst:403 -msgid "" -"If *obj* is a class, *globals* defaults to " -"``sys.modules[obj.__module__].__dict__`` and *locals* defaults to the *obj* " -"class namespace." +msgid "If *obj* is a class, *globals* defaults to ``sys.modules[obj.__module__].__dict__`` and *locals* defaults to the *obj* class namespace." msgstr "" -#: ../../library/annotationlib.rst:406 -msgid "" -"If *obj* is a callable, *globals* defaults to :attr:`obj.__globals__ " -"`, although if *obj* is a wrapped function " -"(using :func:`functools.update_wrapper`) or a :class:`functools.partial` " -"object, it is unwrapped until a non-wrapped function is found." +msgid "If *obj* is a callable, *globals* defaults to :attr:`obj.__globals__ `, although if *obj* is a wrapped function (using :func:`functools.update_wrapper`) or a :class:`functools.partial` object, it is unwrapped until a non-wrapped function is found." msgstr "" -#: ../../library/annotationlib.rst:412 -msgid "" -"Calling :func:`!get_annotations` is best practice for accessing the " -"annotations dict of any object. See :ref:`annotations-howto` for more " -"information on annotations best practices." +msgid "Calling :func:`!get_annotations` is best practice for accessing the annotations dict of any object. See :ref:`annotations-howto` for more information on annotations best practices." msgstr "" -#: ../../library/annotationlib.rst:416 msgid "" ">>> def f(a: int, b: str) -> float:\n" "... pass\n" @@ -628,59 +297,27 @@ msgid "" "{'a': , 'b': , 'return': }" msgstr "" -#: ../../library/annotationlib.rst:427 -msgid "" -"Convert an arbitrary Python value to a format suitable for use by " -"the :attr:`~Format.STRING` format. This calls :func:`repr` for most objects, " -"but has special handling for some objects, such as type objects." +msgid "Convert an arbitrary Python value to a format suitable for use by the :attr:`~Format.STRING` format. This calls :func:`repr` for most objects, but has special handling for some objects, such as type objects." msgstr "" -#: ../../library/annotationlib.rst:431 -msgid "" -"This is meant as a helper for user-provided annotate functions that support " -"the :attr:`~Format.STRING` format but do not have access to the code " -"creating the annotations. It can also be used to provide a user-friendly " -"string representation for other objects that contain values that are " -"commonly encountered in annotations." +msgid "This is meant as a helper for user-provided annotate functions that support the :attr:`~Format.STRING` format but do not have access to the code creating the annotations. It can also be used to provide a user-friendly string representation for other objects that contain values that are commonly encountered in annotations." msgstr "" -#: ../../library/annotationlib.rst:441 msgid "Recipes" msgstr "" -#: ../../library/annotationlib.rst:446 msgid "Using annotations in a metaclass" msgstr "" -#: ../../library/annotationlib.rst:448 -msgid "" -"A :ref:`metaclass ` may want to inspect or even modify the " -"annotations in a class body during class creation. Doing so requires " -"retrieving annotations from the class namespace dictionary. For classes " -"created with ``from __future__ import annotations``, the annotations will be " -"in the ``__annotations__`` key of the dictionary. For other classes with " -"annotations, :func:`get_annotate_from_class_namespace` can be used to get " -"the annotate function, and :func:`call_annotate_function` can be used to " -"call it and retrieve the annotations. Using the :attr:`~Format.FORWARDREF` " -"format will usually be best, because this allows the annotations to refer to " -"names that cannot yet be resolved when the class is created." -msgstr "" - -#: ../../library/annotationlib.rst:459 -msgid "" -"To modify the annotations, it is best to create a wrapper annotate function " -"that calls the original annotate function, makes any necessary adjustments, " -"and returns the result." +msgid "A :ref:`metaclass ` may want to inspect or even modify the annotations in a class body during class creation. Doing so requires retrieving annotations from the class namespace dictionary. For classes created with ``from __future__ import annotations``, the annotations will be in the ``__annotations__`` key of the dictionary. For other classes with annotations, :func:`get_annotate_from_class_namespace` can be used to get the annotate function, and :func:`call_annotate_function` can be used to call it and retrieve the annotations. Using the :attr:`~Format.FORWARDREF` format will usually be best, because this allows the annotations to refer to names that cannot yet be resolved when the class is created." msgstr "" -#: ../../library/annotationlib.rst:463 -msgid "" -"Below is an example of a metaclass that filters out " -"all :class:`typing.ClassVar` annotations from the class and puts them in a " -"separate attribute:" +msgid "To modify the annotations, it is best to create a wrapper annotate function that calls the original annotate function, makes any necessary adjustments, and returns the result." +msgstr "" + +msgid "Below is an example of a metaclass that filters out all :class:`typing.ClassVar` annotations from the class and puts them in a separate attribute:" msgstr "" -#: ../../library/annotationlib.rst:466 msgid "" "import annotationlib\n" "import typing\n" @@ -712,10 +349,8 @@ msgid "" " classvars = {key: annotations[key] for key in classvar_keys}\n" "\n" " def wrapped_annotate(format):\n" -" annos = annotationlib.call_annotate_function(annotate, format, " -"owner=typ)\n" -" return {key: value for key, value in annos.items() if key not in " -"classvar_keys}\n" +" annos = annotationlib.call_annotate_function(annotate, format, owner=typ)\n" +" return {key: value for key, value in annos.items() if key not in classvar_keys}\n" "\n" " else: # no annotations\n" " classvars = {}\n" @@ -723,80 +358,42 @@ msgid "" " typ = super().__new__(mcls, name, bases, ns)\n" "\n" " if wrapped_annotate is not None:\n" -" # Wrap the original __annotate__ with a wrapper that removes " -"ClassVars\n" +" # Wrap the original __annotate__ with a wrapper that removes ClassVars\n" " typ.__annotate__ = wrapped_annotate\n" -" typ.classvars = classvars # Store the ClassVars in a separate " -"attribute\n" +" typ.classvars = classvars # Store the ClassVars in a separate attribute\n" " return typ" msgstr "" -#: ../../library/annotationlib.rst:514 msgid "Creating a custom callable annotate function" msgstr "" -#: ../../library/annotationlib.rst:516 -msgid "" -"Custom :term:`annotate functions ` may be literal " -"functions like those automatically generated for functions, classes, and " -"modules. Or, they may wish to utilise the encapsulation provided by classes, " -"in which case any :term:`callable` can be used as an :term:`annotate " -"function`." +msgid "Custom :term:`annotate functions ` may be literal functions like those automatically generated for functions, classes, and modules. Or, they may wish to utilise the encapsulation provided by classes, in which case any :term:`callable` can be used as an :term:`annotate function`." msgstr "" -#: ../../library/annotationlib.rst:521 -msgid "" -"To provide the :attr:`~Format.VALUE`, :attr:`~Format.STRING`, " -"or :attr:`~Format.FORWARDREF` formats directly, an :term:`annotate function` " -"must provide the following attribute:" +msgid "To provide the :attr:`~Format.VALUE`, :attr:`~Format.STRING`, or :attr:`~Format.FORWARDREF` formats directly, an :term:`annotate function` must provide the following attribute:" msgstr "" -#: ../../library/annotationlib.rst:525 -msgid "" -"A callable ``__call__`` with signature ``__call__(format, /) -> dict``, that " -"does not raise a :exc:`NotImplementedError` when called with a supported " -"format." +msgid "A callable ``__call__`` with signature ``__call__(format, /) -> dict``, that does not raise a :exc:`NotImplementedError` when called with a supported format." msgstr "" -#: ../../library/annotationlib.rst:528 -msgid "" -"To provide the :attr:`~Format.VALUE_WITH_FAKE_GLOBALS` format, which is used " -"to automatically generate :attr:`~Format.STRING` " -"or :attr:`~Format.FORWARDREF` if they are not supported " -"directly, :term:`annotate functions ` must provide the " -"following attributes:" +msgid "To provide the :attr:`~Format.VALUE_WITH_FAKE_GLOBALS` format, which is used to automatically generate :attr:`~Format.STRING` or :attr:`~Format.FORWARDREF` if they are not supported directly, :term:`annotate functions ` must provide the following attributes:" msgstr "" -#: ../../library/annotationlib.rst:533 -msgid "" -"A callable ``__call__`` with signature ``__call__(format, /) -> dict``, that " -"does not raise a :exc:`NotImplementedError` when called " -"with :attr:`~Format.VALUE_WITH_FAKE_GLOBALS`." +msgid "A callable ``__call__`` with signature ``__call__(format, /) -> dict``, that does not raise a :exc:`NotImplementedError` when called with :attr:`~Format.VALUE_WITH_FAKE_GLOBALS`." msgstr "" -#: ../../library/annotationlib.rst:536 -msgid "" -"A :ref:`code object ` ``__code__`` containing the compiled " -"code for the annotate function." +msgid "A :ref:`code object ` ``__code__`` containing the compiled code for the annotate function." msgstr "" -#: ../../library/annotationlib.rst:538 -msgid "" -"Optional: A tuple of the function's positional defaults ``__kwdefaults__``, " -"if the function represented by ``__code__`` uses any positional defaults." +msgid "Optional: A tuple of the function's positional defaults ``__kwdefaults__``, if the function represented by ``__code__`` uses any positional defaults." msgstr "" -#: ../../library/annotationlib.rst:540 -msgid "" -"Optional: A dict of the function's keyword defaults ``__defaults__``, if the " -"function represented by ``__code__`` uses any keyword defaults." +msgid "Optional: A dict of the function's keyword defaults ``__defaults__``, if the function represented by ``__code__`` uses any keyword defaults." msgstr "" -#: ../../library/annotationlib.rst:542 msgid "Optional: All other :ref:`function attributes `." msgstr "" -#: ../../library/annotationlib.rst:544 msgid "" "class Annotate:\n" " called_formats = []\n" @@ -821,22 +418,18 @@ msgid "" " __closure__ = None" msgstr "" -#: ../../library/annotationlib.rst:568 msgid "This can then be called with:" msgstr "" -#: ../../library/annotationlib.rst:570 msgid "" ">>> from annotationlib import call_annotate_function, Format\n" ">>> call_annotate_function(Annotate(), format=Format.STRING)\n" "{'x': 'MyType'}" msgstr "" -#: ../../library/annotationlib.rst:576 msgid "Or used as the annotate function for an object:" msgstr "" -#: ../../library/annotationlib.rst:578 msgid "" ">>> from annotationlib import get_annotations, Format\n" ">>> class C:\n" @@ -846,236 +439,149 @@ msgid "" "{'x': 'MyType'}" msgstr "" -#: ../../library/annotationlib.rst:589 msgid "Limitations of the ``STRING`` format" msgstr "" -#: ../../library/annotationlib.rst:591 -msgid "" -"The :attr:`~Format.STRING` format is meant to approximate the source code of " -"the annotation, but the implementation strategy used means that it is not " -"always possible to recover the exact source code." +msgid "The :attr:`~Format.STRING` format is meant to approximate the source code of the annotation, but the implementation strategy used means that it is not always possible to recover the exact source code." msgstr "" -#: ../../library/annotationlib.rst:595 -msgid "" -"First, the stringifier of course cannot recover any information that is not " -"present in the compiled code, including comments, whitespace, " -"parenthesization, and operations that get simplified by the compiler." +msgid "First, the stringifier of course cannot recover any information that is not present in the compiled code, including comments, whitespace, parenthesization, and operations that get simplified by the compiler." msgstr "" -#: ../../library/annotationlib.rst:599 -msgid "" -"Second, the stringifier can intercept almost all operations that involve " -"names looked up in some scope, but it cannot intercept operations that " -"operate fully on constants. As a corollary, this also means it is not safe " -"to request the ``STRING`` format on untrusted code: Python is powerful " -"enough that it is possible to achieve arbitrary code execution even with no " -"access to any globals or builtins. For example:" +msgid "Second, the stringifier can intercept almost all operations that involve names looked up in some scope, but it cannot intercept operations that operate fully on constants. As a corollary, this also means it is not safe to request the ``STRING`` format on untrusted code: Python is powerful enough that it is possible to achieve arbitrary code execution even with no access to any globals or builtins. For example:" msgstr "" -#: ../../library/annotationlib.rst:605 msgid "" -">>> def f(x: (1).__class__.__base__.__subclasses__()" -"[-1].__init__.__builtins__[\"print\"](\"Hello world\")): pass\n" +">>> def f(x: (1).__class__.__base__.__subclasses__()[-1].__init__.__builtins__[\"print\"](\"Hello world\")): pass\n" "...\n" ">>> annotationlib.get_annotations(f, format=annotationlib.Format.STRING)\n" "Hello world\n" "{'x': 'None'}" msgstr "" -#: ../../library/annotationlib.rst:614 -msgid "" -"This particular example works as of the time of writing, but it relies on " -"implementation details and is not guaranteed to work in the future." +msgid "This particular example works as of the time of writing, but it relies on implementation details and is not guaranteed to work in the future." msgstr "" -#: ../../library/annotationlib.rst:617 -msgid "" -"Among the different kinds of expressions that exist in Python, as " -"represented by the :mod:`ast` module, some expressions are supported, " -"meaning that the ``STRING`` format can generally recover the original source " -"code; others are unsupported, meaning that they may result in incorrect " -"output or an error." +msgid "Among the different kinds of expressions that exist in Python, as represented by the :mod:`ast` module, some expressions are supported, meaning that the ``STRING`` format can generally recover the original source code; others are unsupported, meaning that they may result in incorrect output or an error." msgstr "" -#: ../../library/annotationlib.rst:622 msgid "The following are supported (sometimes with caveats):" msgstr "" -#: ../../library/annotationlib.rst:624 msgid ":class:`ast.BinOp`" msgstr "" -#: ../../library/annotationlib.rst:625 msgid ":class:`ast.UnaryOp`" msgstr "" -#: ../../library/annotationlib.rst:627 -msgid "" -":class:`ast.Invert` (``~``), :class:`ast.UAdd` (``+``), " -"and :class:`ast.USub` (``-``) are supported" +msgid ":class:`ast.Invert` (``~``), :class:`ast.UAdd` (``+``), and :class:`ast.USub` (``-``) are supported" msgstr "" -#: ../../library/annotationlib.rst:628 msgid ":class:`ast.Not` (``not``) is not supported" msgstr "" -#: ../../library/annotationlib.rst:630 msgid ":class:`ast.Dict` (except when using ``**`` unpacking)" msgstr "" -#: ../../library/annotationlib.rst:631 msgid ":class:`ast.Set`" msgstr "" -#: ../../library/annotationlib.rst:632 msgid ":class:`ast.Compare`" msgstr "" -#: ../../library/annotationlib.rst:634 msgid ":class:`ast.Eq` and :class:`ast.NotEq` are supported" msgstr "" -#: ../../library/annotationlib.rst:635 -msgid "" -":class:`ast.Lt`, :class:`ast.LtE`, :class:`ast.Gt`, and :class:`ast.GtE` are " -"supported, but the operand may be flipped" +msgid ":class:`ast.Lt`, :class:`ast.LtE`, :class:`ast.Gt`, and :class:`ast.GtE` are supported, but the operand may be flipped" msgstr "" -#: ../../library/annotationlib.rst:636 -msgid "" -":class:`ast.Is`, :class:`ast.IsNot`, :class:`ast.In`, and :class:`ast.NotIn` " -"are not supported" +msgid ":class:`ast.Is`, :class:`ast.IsNot`, :class:`ast.In`, and :class:`ast.NotIn` are not supported" msgstr "" -#: ../../library/annotationlib.rst:638 msgid ":class:`ast.Call` (except when using ``**`` unpacking)" msgstr "" -#: ../../library/annotationlib.rst:639 -msgid "" -":class:`ast.Constant` (though not the exact representation of the constant; " -"for example, escape sequences in strings are lost; hexadecimal numbers are " -"converted to decimal)" +msgid ":class:`ast.Constant` (though not the exact representation of the constant; for example, escape sequences in strings are lost; hexadecimal numbers are converted to decimal)" msgstr "" -#: ../../library/annotationlib.rst:641 msgid ":class:`ast.Attribute` (assuming the value is not a constant)" msgstr "" -#: ../../library/annotationlib.rst:642 msgid ":class:`ast.Subscript` (assuming the value is not a constant)" msgstr "" -#: ../../library/annotationlib.rst:643 msgid ":class:`ast.Starred` (``*`` unpacking)" msgstr "" -#: ../../library/annotationlib.rst:644 msgid ":class:`ast.Name`" msgstr "" -#: ../../library/annotationlib.rst:645 msgid ":class:`ast.List`" msgstr "" -#: ../../library/annotationlib.rst:646 msgid ":class:`ast.Tuple`" msgstr "" -#: ../../library/annotationlib.rst:647 msgid ":class:`ast.Slice`" msgstr "" -#: ../../library/annotationlib.rst:649 -msgid "" -"The following are unsupported, but throw an informative error when " -"encountered by the stringifier:" +msgid "The following are unsupported, but throw an informative error when encountered by the stringifier:" msgstr "" -#: ../../library/annotationlib.rst:652 -msgid "" -":class:`ast.FormattedValue` (f-strings; error is not detected if conversion " -"specifiers like ``!r`` are used)" +msgid ":class:`ast.FormattedValue` (f-strings; error is not detected if conversion specifiers like ``!r`` are used)" msgstr "" -#: ../../library/annotationlib.rst:654 msgid ":class:`ast.JoinedStr` (f-strings)" msgstr "" -#: ../../library/annotationlib.rst:656 msgid "The following are unsupported and result in incorrect output:" msgstr "" -#: ../../library/annotationlib.rst:658 msgid ":class:`ast.BoolOp` (``and`` and ``or``)" msgstr "" -#: ../../library/annotationlib.rst:659 msgid ":class:`ast.IfExp`" msgstr "" -#: ../../library/annotationlib.rst:660 msgid ":class:`ast.Lambda`" msgstr "" -#: ../../library/annotationlib.rst:661 msgid ":class:`ast.ListComp`" msgstr "" -#: ../../library/annotationlib.rst:662 msgid ":class:`ast.SetComp`" msgstr "" -#: ../../library/annotationlib.rst:663 msgid ":class:`ast.DictComp`" msgstr "" -#: ../../library/annotationlib.rst:664 msgid ":class:`ast.GeneratorExp`" msgstr "" -#: ../../library/annotationlib.rst:666 -msgid "" -"The following are disallowed in annotation scopes and therefore not relevant:" +msgid "The following are disallowed in annotation scopes and therefore not relevant:" msgstr "" -#: ../../library/annotationlib.rst:668 msgid ":class:`ast.NamedExpr` (``:=``)" msgstr "" -#: ../../library/annotationlib.rst:669 msgid ":class:`ast.Await`" msgstr "" -#: ../../library/annotationlib.rst:670 msgid ":class:`ast.Yield`" msgstr "" -#: ../../library/annotationlib.rst:671 msgid ":class:`ast.YieldFrom`" msgstr "" -#: ../../library/annotationlib.rst:675 msgid "Limitations of the ``FORWARDREF`` format" msgstr "" -#: ../../library/annotationlib.rst:677 -msgid "" -"The :attr:`~Format.FORWARDREF` format aims to produce real values as much as " -"possible, with anything that cannot be resolved replaced " -"with :class:`ForwardRef` objects. It is affected by broadly the same " -"Limitations as the :attr:`~Format.STRING` format: annotations that perform " -"operations on literals or that use unsupported expression types may raise " -"exceptions when evaluated using the :attr:`~Format.FORWARDREF` format." +msgid "The :attr:`~Format.FORWARDREF` format aims to produce real values as much as possible, with anything that cannot be resolved replaced with :class:`ForwardRef` objects. It is affected by broadly the same Limitations as the :attr:`~Format.STRING` format: annotations that perform operations on literals or that use unsupported expression types may raise exceptions when evaluated using the :attr:`~Format.FORWARDREF` format." msgstr "" -#: ../../library/annotationlib.rst:684 msgid "Below are a few examples of the behavior with unsupported expressions:" msgstr "" -#: ../../library/annotationlib.rst:686 msgid "" ">>> from annotationlib import get_annotations, Format\n" ">>> def zerodiv(x: 1 / 0): ...\n" @@ -1092,30 +598,11 @@ msgid "" "{'x': '1'}" msgstr "" -#: ../../library/annotationlib.rst:705 msgid "Security implications of introspecting annotations" msgstr "" -#: ../../library/annotationlib.rst:707 -msgid "" -"Much of the functionality in this module involves executing code related to " -"annotations, which can then do arbitrary things. For " -"example, :func:`get_annotations` may call an arbitrary :term:`annotate " -"function`, and :meth:`ForwardRef.evaluate` may call :func:`eval` on an " -"arbitrary string. Code contained in an annotation might make arbitrary " -"system calls, enter an infinite loop, or perform any other operation. This " -"is also true for any access of the :attr:`~object.__annotations__` " -"attribute, and for various functions in the :mod:`typing` module that work " -"with annotations, such as :func:`typing.get_type_hints`." -msgstr "" - -#: ../../library/annotationlib.rst:716 -msgid "" -"Any security issue arising from this also applies immediately after " -"importing code that may contain untrusted annotations: importing code can " -"always cause arbitrary operations to be performed. However, it is unsafe to " -"accept strings or other input from an untrusted source and pass them to any " -"of the APIs for introspecting annotations, for example by editing an " -"``__annotations__`` dictionary or directly creating a :class:`ForwardRef` " -"object." +msgid "Much of the functionality in this module involves executing code related to annotations, which can then do arbitrary things. For example, :func:`get_annotations` may call an arbitrary :term:`annotate function`, and :meth:`ForwardRef.evaluate` may call :func:`eval` on an arbitrary string. Code contained in an annotation might make arbitrary system calls, enter an infinite loop, or perform any other operation. This is also true for any access of the :attr:`~object.__annotations__` attribute, and for various functions in the :mod:`typing` module that work with annotations, such as :func:`typing.get_type_hints`." +msgstr "" + +msgid "Any security issue arising from this also applies immediately after importing code that may contain untrusted annotations: importing code can always cause arbitrary operations to be performed. However, it is unsafe to accept strings or other input from an untrusted source and pass them to any of the APIs for introspecting annotations, for example by editing an ``__annotations__`` dictionary or directly creating a :class:`ForwardRef` object." msgstr "" diff --git a/library/archiving.po b/library/archiving.po index e5270de9..ec057bba 100644 --- a/library/archiving.po +++ b/library/archiving.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:54+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,14 +21,8 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/archiving.rst:5 msgid "Data Compression and Archiving" msgstr "" -#: ../../library/archiving.rst:7 -msgid "" -"The modules described in this chapter support data compression with the " -"zlib, gzip, bzip2, lzma, and zstd algorithms, and the creation of ZIP- and " -"tar-format archives. See also :ref:`archiving-operations` provided by " -"the :mod:`shutil` module." +msgid "The modules described in this chapter support data compression with the zlib, gzip, bzip2, lzma, and zstd algorithms, and the creation of ZIP- and tar-format archives. See also :ref:`archiving-operations` provided by the :mod:`shutil` module." msgstr "" diff --git a/library/argparse.po b/library/argparse.po index 5cba42c7..269d7ed6 100644 --- a/library/argparse.po +++ b/library/argparse.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:54+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,59 +24,27 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/argparse.rst:2 -msgid "" -":mod:`!argparse` --- Parser for command-line options, arguments and " -"subcommands" +msgid ":mod:`!argparse` --- Parser for command-line options, arguments and subcommands" msgstr "" -#: ../../library/argparse.rst:12 msgid "**Source code:** :source:`Lib/argparse.py`" msgstr "" -#: ../../library/argparse.rst:16 -msgid "" -"While :mod:`!argparse` is the default recommended standard library module " -"for implementing basic command line applications, authors with more exacting " -"requirements for exactly how their command line applications behave may find " -"it doesn't provide the necessary level of control. Refer to :ref:`choosing-" -"an-argument-parser` for alternatives to consider when ``argparse`` doesn't " -"support behaviors that the application requires (such as entirely disabling " -"support for interspersed options and positional arguments, or accepting " -"option parameter values that start with ``-`` even when they correspond to " -"another defined option)." +msgid "While :mod:`!argparse` is the default recommended standard library module for implementing basic command line applications, authors with more exacting requirements for exactly how their command line applications behave may find it doesn't provide the necessary level of control. Refer to :ref:`choosing-an-argument-parser` for alternatives to consider when ``argparse`` doesn't support behaviors that the application requires (such as entirely disabling support for interspersed options and positional arguments, or accepting option parameter values that start with ``-`` even when they correspond to another defined option)." msgstr "" -#: ../../library/argparse.rst:-1 msgid "Tutorial" msgstr "" -#: ../../library/argparse.rst:30 -msgid "" -"This page contains the API reference information. For a more gentle " -"introduction to Python command-line parsing, have a look at " -"the :ref:`argparse tutorial `." +msgid "This page contains the API reference information. For a more gentle introduction to Python command-line parsing, have a look at the :ref:`argparse tutorial `." msgstr "" -#: ../../library/argparse.rst:34 -msgid "" -"The :mod:`!argparse` module makes it easy to write user-friendly command-" -"line interfaces. The program defines what arguments it requires, and :mod:`!" -"argparse` will figure out how to parse those out of :data:`sys.argv`. " -"The :mod:`!argparse` module also automatically generates help and usage " -"messages. The module will also issue errors when users give the program " -"invalid arguments." +msgid "The :mod:`!argparse` module makes it easy to write user-friendly command-line interfaces. The program defines what arguments it requires, and :mod:`!argparse` will figure out how to parse those out of :data:`sys.argv`. The :mod:`!argparse` module also automatically generates help and usage messages. The module will also issue errors when users give the program invalid arguments." msgstr "" -#: ../../library/argparse.rst:40 -msgid "" -"The :mod:`!argparse` module's support for command-line interfaces is built " -"around an instance of :class:`argparse.ArgumentParser`. It is a container " -"for argument specifications and has options that apply to the parser as " -"whole::" +msgid "The :mod:`!argparse` module's support for command-line interfaces is built around an instance of :class:`argparse.ArgumentParser`. It is a container for argument specifications and has options that apply to the parser as whole::" msgstr "" -#: ../../library/argparse.rst:44 msgid "" "parser = argparse.ArgumentParser(\n" " prog='ProgramName',\n" @@ -84,14 +52,9 @@ msgid "" " epilog='Text at the bottom of help')" msgstr "" -#: ../../library/argparse.rst:49 -msgid "" -"The :meth:`ArgumentParser.add_argument` method attaches individual argument " -"specifications to the parser. It supports positional arguments, options " -"that accept values, and on/off flags::" +msgid "The :meth:`ArgumentParser.add_argument` method attaches individual argument specifications to the parser. It supports positional arguments, options that accept values, and on/off flags::" msgstr "" -#: ../../library/argparse.rst:53 msgid "" "parser.add_argument('filename') # positional argument\n" "parser.add_argument('-c', '--count') # option that takes a value\n" @@ -99,177 +62,101 @@ msgid "" " action='store_true') # on/off flag" msgstr "" -#: ../../library/argparse.rst:58 -msgid "" -"The :meth:`ArgumentParser.parse_args` method runs the parser and places the " -"extracted data in a :class:`argparse.Namespace` object::" +msgid "The :meth:`ArgumentParser.parse_args` method runs the parser and places the extracted data in a :class:`argparse.Namespace` object::" msgstr "" -#: ../../library/argparse.rst:61 msgid "" "args = parser.parse_args()\n" "print(args.filename, args.count, args.verbose)" msgstr "" -#: ../../library/argparse.rst:65 -msgid "" -"If you're looking for a guide about how to upgrade :mod:`optparse` code " -"to :mod:`!argparse`, see :ref:`Upgrading Optparse Code `." +msgid "If you're looking for a guide about how to upgrade :mod:`optparse` code to :mod:`!argparse`, see :ref:`Upgrading Optparse Code `." msgstr "" -#: ../../library/argparse.rst:69 msgid "ArgumentParser objects" msgstr "" -#: ../../library/argparse.rst:79 -msgid "" -"Create a new :class:`ArgumentParser` object. All parameters should be passed " -"as keyword arguments. Each parameter has its own more detailed description " -"below, but in short they are:" +msgid "Create a new :class:`ArgumentParser` object. All parameters should be passed as keyword arguments. Each parameter has its own more detailed description below, but in short they are:" msgstr "" -#: ../../library/argparse.rst:83 -msgid "" -"prog_ - The name of the program (default: generated from the ``__main__`` " -"module attributes and ``sys.argv[0]``)" +msgid "prog_ - The name of the program (default: generated from the ``__main__`` module attributes and ``sys.argv[0]``)" msgstr "" -#: ../../library/argparse.rst:86 -msgid "" -"usage_ - The string describing the program usage (default: generated from " -"arguments added to parser)" +msgid "usage_ - The string describing the program usage (default: generated from arguments added to parser)" msgstr "" -#: ../../library/argparse.rst:89 -msgid "" -"description_ - Text to display before the argument help (by default, no text)" +msgid "description_ - Text to display before the argument help (by default, no text)" msgstr "" -#: ../../library/argparse.rst:92 msgid "epilog_ - Text to display after the argument help (by default, no text)" msgstr "" -#: ../../library/argparse.rst:94 -msgid "" -"parents_ - A list of :class:`ArgumentParser` objects whose arguments should " -"also be included" +msgid "parents_ - A list of :class:`ArgumentParser` objects whose arguments should also be included" msgstr "" -#: ../../library/argparse.rst:97 msgid "formatter_class_ - A class for customizing the help output" msgstr "" -#: ../../library/argparse.rst:99 -msgid "" -"prefix_chars_ - The set of characters that prefix optional arguments " -"(default: '-')" +msgid "prefix_chars_ - The set of characters that prefix optional arguments (default: '-')" msgstr "" -#: ../../library/argparse.rst:102 -msgid "" -"fromfile_prefix_chars_ - The set of characters that prefix files from which " -"additional arguments should be read (default: ``None``)" +msgid "fromfile_prefix_chars_ - The set of characters that prefix files from which additional arguments should be read (default: ``None``)" msgstr "" -#: ../../library/argparse.rst:105 -msgid "" -"argument_default_ - The global default value for arguments (default: " -"``None``)" +msgid "argument_default_ - The global default value for arguments (default: ``None``)" msgstr "" -#: ../../library/argparse.rst:108 -msgid "" -"conflict_handler_ - The strategy for resolving conflicting optionals " -"(usually unnecessary)" +msgid "conflict_handler_ - The strategy for resolving conflicting optionals (usually unnecessary)" msgstr "" -#: ../../library/argparse.rst:111 -msgid "" -"add_help_ - Add a ``-h/--help`` option to the parser (default: ``True``)" +msgid "add_help_ - Add a ``-h/--help`` option to the parser (default: ``True``)" msgstr "" -#: ../../library/argparse.rst:113 -msgid "" -"allow_abbrev_ - Allows long options to be abbreviated if the abbreviation is " -"unambiguous (default: ``True``)" +msgid "allow_abbrev_ - Allows long options to be abbreviated if the abbreviation is unambiguous (default: ``True``)" msgstr "" -#: ../../library/argparse.rst:116 -msgid "" -"exit_on_error_ - Determines whether or not :class:`!ArgumentParser` exits " -"with error info when an error occurs. (default: ``True``)" +msgid "exit_on_error_ - Determines whether or not :class:`!ArgumentParser` exits with error info when an error occurs. (default: ``True``)" msgstr "" -#: ../../library/argparse.rst:119 -msgid "" -"suggest_on_error_ - Enables suggestions for mistyped argument choices and " -"subparser names (default: ``False``)" +msgid "suggest_on_error_ - Enables suggestions for mistyped argument choices and subparser names (default: ``False``)" msgstr "" -#: ../../library/argparse.rst:122 msgid "color_ - Allow color output (default: ``True``)" msgstr "" -#: ../../library/argparse.rst:124 msgid "*allow_abbrev* parameter was added." msgstr "" -#: ../../library/argparse.rst:127 -msgid "" -"In previous versions, *allow_abbrev* also disabled grouping of short flags " -"such as ``-vv`` to mean ``-v -v``." +msgid "In previous versions, *allow_abbrev* also disabled grouping of short flags such as ``-vv`` to mean ``-v -v``." msgstr "" -#: ../../library/argparse.rst:131 msgid "*exit_on_error* parameter was added." msgstr "" -#: ../../library/argparse.rst:134 msgid "*suggest_on_error* and *color* parameters were added." msgstr "" -#: ../../library/argparse.rst:137 ../../library/argparse.rst:695 msgid "The following sections describe how each of these are used." msgstr "" -#: ../../library/argparse.rst:143 msgid "prog" msgstr "" -#: ../../library/argparse.rst:146 -msgid "" -"By default, :class:`ArgumentParser` calculates the name of the program to " -"display in help messages depending on the way the Python interpreter was run:" +msgid "By default, :class:`ArgumentParser` calculates the name of the program to display in help messages depending on the way the Python interpreter was run:" msgstr "" -#: ../../library/argparse.rst:149 -msgid "" -"The :func:`base name ` of ``sys.argv[0]`` if a file was " -"passed as argument." +msgid "The :func:`base name ` of ``sys.argv[0]`` if a file was passed as argument." msgstr "" -#: ../../library/argparse.rst:151 -msgid "" -"The Python interpreter name followed by ``sys.argv[0]`` if a directory or a " -"zipfile was passed as argument." +msgid "The Python interpreter name followed by ``sys.argv[0]`` if a directory or a zipfile was passed as argument." msgstr "" -#: ../../library/argparse.rst:153 -msgid "" -"The Python interpreter name followed by ``-m`` followed by the module or " -"package name if the :option:`-m` option was used." +msgid "The Python interpreter name followed by ``-m`` followed by the module or package name if the :option:`-m` option was used." msgstr "" -#: ../../library/argparse.rst:156 -msgid "" -"This default is almost always desirable because it will make the help " -"messages match the string that was used to invoke the program on the command " -"line. However, to change this default behavior, another value can be " -"supplied using the ``prog=`` argument to :class:`ArgumentParser`::" +msgid "This default is almost always desirable because it will make the help messages match the string that was used to invoke the program on the command line. However, to change this default behavior, another value can be supplied using the ``prog=`` argument to :class:`ArgumentParser`::" msgstr "" -#: ../../library/argparse.rst:161 msgid "" ">>> parser = argparse.ArgumentParser(prog='myprogram')\n" ">>> parser.print_help()\n" @@ -279,14 +166,9 @@ msgid "" " -h, --help show this help message and exit" msgstr "" -#: ../../library/argparse.rst:168 -msgid "" -"Note that the program name, whether determined from ``sys.argv[0]``, from " -"the ``__main__`` module attributes or from the ``prog=`` argument, is " -"available to help messages using the ``%(prog)s`` format specifier." +msgid "Note that the program name, whether determined from ``sys.argv[0]``, from the ``__main__`` module attributes or from the ``prog=`` argument, is available to help messages using the ``%(prog)s`` format specifier." msgstr "" -#: ../../library/argparse.rst:175 msgid "" ">>> parser = argparse.ArgumentParser(prog='myprogram')\n" ">>> parser.add_argument('--foo', help='foo of the %(prog)s program')\n" @@ -298,27 +180,17 @@ msgid "" " --foo FOO foo of the myprogram program" msgstr "" -#: ../../library/argparse.rst:184 -msgid "" -"The default ``prog`` value now reflects how ``__main__`` was actually " -"executed, rather than always being ``os.path.basename(sys.argv[0])``." +msgid "The default ``prog`` value now reflects how ``__main__`` was actually executed, rather than always being ``os.path.basename(sys.argv[0])``." msgstr "" -#: ../../library/argparse.rst:189 msgid "usage" msgstr "" -#: ../../library/argparse.rst:191 -msgid "" -"By default, :class:`ArgumentParser` calculates the usage message from the " -"arguments it contains. The default message can be overridden with the " -"``usage=`` keyword argument::" +msgid "By default, :class:`ArgumentParser` calculates the usage message from the arguments it contains. The default message can be overridden with the ``usage=`` keyword argument::" msgstr "" -#: ../../library/argparse.rst:195 msgid "" -">>> parser = argparse.ArgumentParser(prog='PROG', usage='%(prog)s " -"[options]')\n" +">>> parser = argparse.ArgumentParser(prog='PROG', usage='%(prog)s [options]')\n" ">>> parser.add_argument('--foo', nargs='?', help='foo help')\n" ">>> parser.add_argument('bar', nargs='+', help='bar help')\n" ">>> parser.print_help()\n" @@ -332,52 +204,27 @@ msgid "" " --foo [FOO] foo help" msgstr "" -#: ../../library/argparse.rst:208 -msgid "" -"The ``%(prog)s`` format specifier is available to fill in the program name " -"in your usage messages." +msgid "The ``%(prog)s`` format specifier is available to fill in the program name in your usage messages." msgstr "" -#: ../../library/argparse.rst:211 -msgid "" -"When a custom usage message is specified for the main parser, you may also " -"want to consider passing the ``prog`` argument " -"to :meth:`~ArgumentParser.add_subparsers` or the ``prog`` and the ``usage`` " -"arguments to :meth:`~_SubParsersAction.add_parser`, to ensure consistent " -"command prefixes and usage information across subparsers." +msgid "When a custom usage message is specified for the main parser, you may also want to consider passing the ``prog`` argument to :meth:`~ArgumentParser.add_subparsers` or the ``prog`` and the ``usage`` arguments to :meth:`~_SubParsersAction.add_parser`, to ensure consistent command prefixes and usage information across subparsers." msgstr "" -#: ../../library/argparse.rst:221 msgid "description" msgstr "" -#: ../../library/argparse.rst:223 -msgid "" -"Most calls to the :class:`ArgumentParser` constructor will use the " -"``description=`` keyword argument. This argument gives a brief description " -"of what the program does and how it works. In help messages, the " -"description is displayed between the command-line usage string and the help " -"messages for the various arguments." +msgid "Most calls to the :class:`ArgumentParser` constructor will use the ``description=`` keyword argument. This argument gives a brief description of what the program does and how it works. In help messages, the description is displayed between the command-line usage string and the help messages for the various arguments." msgstr "" -#: ../../library/argparse.rst:229 -msgid "" -"By default, the description will be line-wrapped so that it fits within the " -"given space. To change this behavior, see the formatter_class_ argument." +msgid "By default, the description will be line-wrapped so that it fits within the given space. To change this behavior, see the formatter_class_ argument." msgstr "" -#: ../../library/argparse.rst:234 msgid "epilog" msgstr "" -#: ../../library/argparse.rst:236 -msgid "" -"Some programs like to display additional description of the program after " -"the description of the arguments. Such text can be specified using the " -"``epilog=`` argument to :class:`ArgumentParser`::" +msgid "Some programs like to display additional description of the program after the description of the arguments. Such text can be specified using the ``epilog=`` argument to :class:`ArgumentParser`::" msgstr "" -#: ../../library/argparse.rst:240 msgid "" ">>> parser = argparse.ArgumentParser(\n" "... description='A foo that bars',\n" @@ -393,29 +240,15 @@ msgid "" "And that's how you'd foo a bar" msgstr "" -#: ../../library/argparse.rst:253 -msgid "" -"As with the description_ argument, the ``epilog=`` text is by default line-" -"wrapped, but this behavior can be adjusted with the formatter_class_ " -"argument to :class:`ArgumentParser`." +msgid "As with the description_ argument, the ``epilog=`` text is by default line-wrapped, but this behavior can be adjusted with the formatter_class_ argument to :class:`ArgumentParser`." msgstr "" -#: ../../library/argparse.rst:259 msgid "parents" msgstr "" -#: ../../library/argparse.rst:261 -msgid "" -"Sometimes, several parsers share a common set of arguments. Rather than " -"repeating the definitions of these arguments, a single parser with all the " -"shared arguments and passed to ``parents=`` argument " -"to :class:`ArgumentParser` can be used. The ``parents=`` argument takes a " -"list of :class:`ArgumentParser` objects, collects all the positional and " -"optional actions from them, and adds these actions to " -"the :class:`ArgumentParser` object being constructed::" +msgid "Sometimes, several parsers share a common set of arguments. Rather than repeating the definitions of these arguments, a single parser with all the shared arguments and passed to ``parents=`` argument to :class:`ArgumentParser` can be used. The ``parents=`` argument takes a list of :class:`ArgumentParser` objects, collects all the positional and optional actions from them, and adds these actions to the :class:`ArgumentParser` object being constructed::" msgstr "" -#: ../../library/argparse.rst:268 msgid "" ">>> parent_parser = argparse.ArgumentParser(add_help=False)\n" ">>> parent_parser.add_argument('--parent', type=int)\n" @@ -431,40 +264,21 @@ msgid "" "Namespace(bar='YYY', parent=None)" msgstr "" -#: ../../library/argparse.rst:281 -msgid "" -"Note that most parent parsers will specify ``add_help=False``. Otherwise, " -"the :class:`ArgumentParser` will see two ``-h/--help`` options (one in the " -"parent and one in the child) and raise an error." +msgid "Note that most parent parsers will specify ``add_help=False``. Otherwise, the :class:`ArgumentParser` will see two ``-h/--help`` options (one in the parent and one in the child) and raise an error." msgstr "" -#: ../../library/argparse.rst:286 -msgid "" -"You must fully initialize the parsers before passing them via ``parents=``. " -"If you change the parent parsers after the child parser, those changes will " -"not be reflected in the child." +msgid "You must fully initialize the parsers before passing them via ``parents=``. If you change the parent parsers after the child parser, those changes will not be reflected in the child." msgstr "" -#: ../../library/argparse.rst:294 msgid "formatter_class" msgstr "" -#: ../../library/argparse.rst:296 -msgid "" -":class:`ArgumentParser` objects allow the help formatting to be customized " -"by specifying an alternate formatting class. Currently, there are four such " -"classes:" +msgid ":class:`ArgumentParser` objects allow the help formatting to be customized by specifying an alternate formatting class. Currently, there are four such classes:" msgstr "" -#: ../../library/argparse.rst:305 -msgid "" -":class:`RawDescriptionHelpFormatter` and :class:`RawTextHelpFormatter` give " -"more control over how textual descriptions are displayed. By " -"default, :class:`ArgumentParser` objects line-wrap the description_ and " -"epilog_ texts in command-line help messages::" +msgid ":class:`RawDescriptionHelpFormatter` and :class:`RawTextHelpFormatter` give more control over how textual descriptions are displayed. By default, :class:`ArgumentParser` objects line-wrap the description_ and epilog_ texts in command-line help messages::" msgstr "" -#: ../../library/argparse.rst:310 msgid "" ">>> parser = argparse.ArgumentParser(\n" "... prog='PROG',\n" @@ -483,19 +297,13 @@ msgid "" "options:\n" " -h, --help show this help message and exit\n" "\n" -"likewise for this epilog whose whitespace will be cleaned up and whose " -"words\n" +"likewise for this epilog whose whitespace will be cleaned up and whose words\n" "will be wrapped across a couple lines" msgstr "" -#: ../../library/argparse.rst:330 -msgid "" -"Passing :class:`RawDescriptionHelpFormatter` as ``formatter_class=`` " -"indicates that description_ and epilog_ are already correctly formatted and " -"should not be line-wrapped::" +msgid "Passing :class:`RawDescriptionHelpFormatter` as ``formatter_class=`` indicates that description_ and epilog_ are already correctly formatted and should not be line-wrapped::" msgstr "" -#: ../../library/argparse.rst:334 msgid "" ">>> parser = argparse.ArgumentParser(\n" "... prog='PROG',\n" @@ -520,21 +328,12 @@ msgid "" " -h, --help show this help message and exit" msgstr "" -#: ../../library/argparse.rst:356 -msgid "" -":class:`RawTextHelpFormatter` maintains whitespace for all sorts of help " -"text, including argument descriptions. However, multiple newlines are " -"replaced with one. If you wish to preserve multiple blank lines, add spaces " -"between the newlines." +msgid ":class:`RawTextHelpFormatter` maintains whitespace for all sorts of help text, including argument descriptions. However, multiple newlines are replaced with one. If you wish to preserve multiple blank lines, add spaces between the newlines." msgstr "" -#: ../../library/argparse.rst:361 -msgid "" -":class:`ArgumentDefaultsHelpFormatter` automatically adds information about " -"default values to each of the argument help messages::" +msgid ":class:`ArgumentDefaultsHelpFormatter` automatically adds information about default values to each of the argument help messages::" msgstr "" -#: ../../library/argparse.rst:364 msgid "" ">>> parser = argparse.ArgumentParser(\n" "... prog='PROG',\n" @@ -552,14 +351,9 @@ msgid "" " --foo FOO FOO! (default: 42)" msgstr "" -#: ../../library/argparse.rst:379 -msgid "" -":class:`MetavarTypeHelpFormatter` uses the name of the type_ argument for " -"each argument as the display name for its values (rather than using the " -"dest_ as the regular formatter does)::" +msgid ":class:`MetavarTypeHelpFormatter` uses the name of the type_ argument for each argument as the display name for its values (rather than using the dest_ as the regular formatter does)::" msgstr "" -#: ../../library/argparse.rst:383 msgid "" ">>> parser = argparse.ArgumentParser(\n" "... prog='PROG',\n" @@ -577,19 +371,12 @@ msgid "" " --foo int" msgstr "" -#: ../../library/argparse.rst:400 msgid "prefix_chars" msgstr "" -#: ../../library/argparse.rst:402 -msgid "" -"Most command-line options will use ``-`` as the prefix, e.g. ``-f/--foo``. " -"Parsers that need to support different or additional prefix characters, e.g. " -"for options like ``+f`` or ``/foo``, may specify them using the " -"``prefix_chars=`` argument to the :class:`ArgumentParser` constructor::" +msgid "Most command-line options will use ``-`` as the prefix, e.g. ``-f/--foo``. Parsers that need to support different or additional prefix characters, e.g. for options like ``+f`` or ``/foo``, may specify them using the ``prefix_chars=`` argument to the :class:`ArgumentParser` constructor::" msgstr "" -#: ../../library/argparse.rst:408 msgid "" ">>> parser = argparse.ArgumentParser(prog='PROG', prefix_chars='-+')\n" ">>> parser.add_argument('+f')\n" @@ -598,28 +385,15 @@ msgid "" "Namespace(bar='Y', f='X')" msgstr "" -#: ../../library/argparse.rst:414 -msgid "" -"The ``prefix_chars=`` argument defaults to ``'-'``. Supplying a set of " -"characters that does not include ``-`` will cause ``-f/--foo`` options to be " -"disallowed." +msgid "The ``prefix_chars=`` argument defaults to ``'-'``. Supplying a set of characters that does not include ``-`` will cause ``-f/--foo`` options to be disallowed." msgstr "" -#: ../../library/argparse.rst:420 msgid "fromfile_prefix_chars" msgstr "" -#: ../../library/argparse.rst:422 -msgid "" -"Sometimes, when dealing with a particularly long argument list, it may make " -"sense to keep the list of arguments in a file rather than typing it out at " -"the command line. If the ``fromfile_prefix_chars=`` argument is given to " -"the :class:`ArgumentParser` constructor, then arguments that start with any " -"of the specified characters will be treated as files, and will be replaced " -"by the arguments they contain. For example::" +msgid "Sometimes, when dealing with a particularly long argument list, it may make sense to keep the list of arguments in a file rather than typing it out at the command line. If the ``fromfile_prefix_chars=`` argument is given to the :class:`ArgumentParser` constructor, then arguments that start with any of the specified characters will be treated as files, and will be replaced by the arguments they contain. For example::" msgstr "" -#: ../../library/argparse.rst:429 msgid "" ">>> with open('args.txt', 'w', encoding=sys.getfilesystemencoding()) as fp:\n" "... fp.write('-f\\nbar')\n" @@ -630,61 +404,27 @@ msgid "" "Namespace(f='bar')" msgstr "" -#: ../../library/argparse.rst:437 -msgid "" -"Arguments read from a file must be one per line by default (but see " -"also :meth:`~ArgumentParser.convert_arg_line_to_args`) and are treated as if " -"they were in the same place as the original file referencing argument on the " -"command line. So in the example above, the expression ``['-f', 'foo', " -"'@args.txt']`` is considered equivalent to the expression ``['-f', 'foo', '-" -"f', 'bar']``." +msgid "Arguments read from a file must be one per line by default (but see also :meth:`~ArgumentParser.convert_arg_line_to_args`) and are treated as if they were in the same place as the original file referencing argument on the command line. So in the example above, the expression ``['-f', 'foo', '@args.txt']`` is considered equivalent to the expression ``['-f', 'foo', '-f', 'bar']``." msgstr "" -#: ../../library/argparse.rst:445 -msgid "" -"Each line is treated as a single argument, so an empty line is read as an " -"empty string (``''``)." +msgid "Each line is treated as a single argument, so an empty line is read as an empty string (``''``)." msgstr "" -#: ../../library/argparse.rst:448 -msgid "" -":class:`ArgumentParser` uses :term:`filesystem encoding and error handler` " -"to read the file containing arguments." +msgid ":class:`ArgumentParser` uses :term:`filesystem encoding and error handler` to read the file containing arguments." msgstr "" -#: ../../library/argparse.rst:451 -msgid "" -"The ``fromfile_prefix_chars=`` argument defaults to ``None``, meaning that " -"arguments will never be treated as file references." +msgid "The ``fromfile_prefix_chars=`` argument defaults to ``None``, meaning that arguments will never be treated as file references." msgstr "" -#: ../../library/argparse.rst:454 -msgid "" -":class:`ArgumentParser` changed encoding and errors to read arguments files " -"from default (e.g. :func:`locale.getpreferredencoding(False) " -"` and ``\"strict\"``) to the :term:`filesystem " -"encoding and error handler`. Arguments file should be encoded in UTF-8 " -"instead of ANSI Codepage on Windows." +msgid ":class:`ArgumentParser` changed encoding and errors to read arguments files from default (e.g. :func:`locale.getpreferredencoding(False) ` and ``\"strict\"``) to the :term:`filesystem encoding and error handler`. Arguments file should be encoded in UTF-8 instead of ANSI Codepage on Windows." msgstr "" -#: ../../library/argparse.rst:462 msgid "argument_default" msgstr "" -#: ../../library/argparse.rst:464 -msgid "" -"Generally, argument defaults are specified either by passing a default " -"to :meth:`~ArgumentParser.add_argument` or by calling " -"the :meth:`~ArgumentParser.set_defaults` methods with a specific set of name-" -"value pairs. Sometimes however, it may be useful to specify a single parser-" -"wide default for arguments. This can be accomplished by passing the " -"``argument_default=`` keyword argument to :class:`ArgumentParser`. For " -"example, to globally suppress attribute creation " -"on :meth:`~ArgumentParser.parse_args` calls, we supply " -"``argument_default=SUPPRESS``::" +msgid "Generally, argument defaults are specified either by passing a default to :meth:`~ArgumentParser.add_argument` or by calling the :meth:`~ArgumentParser.set_defaults` methods with a specific set of name-value pairs. Sometimes however, it may be useful to specify a single parser-wide default for arguments. This can be accomplished by passing the ``argument_default=`` keyword argument to :class:`ArgumentParser`. For example, to globally suppress attribute creation on :meth:`~ArgumentParser.parse_args` calls, we supply ``argument_default=SUPPRESS``::" msgstr "" -#: ../../library/argparse.rst:473 msgid "" ">>> parser = argparse.ArgumentParser(argument_default=argparse.SUPPRESS)\n" ">>> parser.add_argument('--foo')\n" @@ -695,22 +435,15 @@ msgid "" "Namespace()" msgstr "" -#: ../../library/argparse.rst:484 msgid "allow_abbrev" msgstr "" -#: ../../library/argparse.rst:486 -msgid "" -"Normally, when you pass an argument list to " -"the :meth:`~ArgumentParser.parse_args` method of an :class:`ArgumentParser`, " -"it :ref:`recognizes abbreviations ` of long options." +msgid "Normally, when you pass an argument list to the :meth:`~ArgumentParser.parse_args` method of an :class:`ArgumentParser`, it :ref:`recognizes abbreviations ` of long options." msgstr "" -#: ../../library/argparse.rst:490 msgid "This feature can be disabled by setting ``allow_abbrev`` to ``False``::" msgstr "" -#: ../../library/argparse.rst:492 msgid "" ">>> parser = argparse.ArgumentParser(prog='PROG', allow_abbrev=False)\n" ">>> parser.add_argument('--foobar', action='store_true')\n" @@ -720,19 +453,12 @@ msgid "" "PROG: error: unrecognized arguments: --foon" msgstr "" -#: ../../library/argparse.rst:503 msgid "conflict_handler" msgstr "" -#: ../../library/argparse.rst:505 -msgid "" -":class:`ArgumentParser` objects do not allow two actions with the same " -"option string. By default, :class:`ArgumentParser` objects raise an " -"exception if an attempt is made to create an argument with an option string " -"that is already in use::" +msgid ":class:`ArgumentParser` objects do not allow two actions with the same option string. By default, :class:`ArgumentParser` objects raise an exception if an attempt is made to create an argument with an option string that is already in use::" msgstr "" -#: ../../library/argparse.rst:510 msgid "" ">>> parser = argparse.ArgumentParser(prog='PROG')\n" ">>> parser.add_argument('-f', '--foo', help='old foo help')\n" @@ -742,18 +468,11 @@ msgid "" "ArgumentError: argument --foo: conflicting option string(s): --foo" msgstr "" -#: ../../library/argparse.rst:517 -msgid "" -"Sometimes (e.g. when using parents_) it may be useful to simply override any " -"older arguments with the same option string. To get this behavior, the " -"value ``'resolve'`` can be supplied to the ``conflict_handler=`` argument " -"of :class:`ArgumentParser`::" +msgid "Sometimes (e.g. when using parents_) it may be useful to simply override any older arguments with the same option string. To get this behavior, the value ``'resolve'`` can be supplied to the ``conflict_handler=`` argument of :class:`ArgumentParser`::" msgstr "" -#: ../../library/argparse.rst:522 msgid "" -">>> parser = argparse.ArgumentParser(prog='PROG', " -"conflict_handler='resolve')\n" +">>> parser = argparse.ArgumentParser(prog='PROG', conflict_handler='resolve')\n" ">>> parser.add_argument('-f', '--foo', help='old foo help')\n" ">>> parser.add_argument('--foo', help='new foo help')\n" ">>> parser.print_help()\n" @@ -765,33 +484,18 @@ msgid "" " --foo FOO new foo help" msgstr "" -#: ../../library/argparse.rst:533 -msgid "" -"Note that :class:`ArgumentParser` objects only remove an action if all of " -"its option strings are overridden. So, in the example above, the old ``-f/--" -"foo`` action is retained as the ``-f`` action, because only the ``--foo`` " -"option string was overridden." +msgid "Note that :class:`ArgumentParser` objects only remove an action if all of its option strings are overridden. So, in the example above, the old ``-f/--foo`` action is retained as the ``-f`` action, because only the ``--foo`` option string was overridden." msgstr "" -#: ../../library/argparse.rst:540 msgid "add_help" msgstr "" -#: ../../library/argparse.rst:542 -msgid "" -"By default, :class:`ArgumentParser` objects add an option which simply " -"displays the parser's help message. If ``-h`` or ``--help`` is supplied at " -"the command line, the :class:`!ArgumentParser` help will be printed." +msgid "By default, :class:`ArgumentParser` objects add an option which simply displays the parser's help message. If ``-h`` or ``--help`` is supplied at the command line, the :class:`!ArgumentParser` help will be printed." msgstr "" -#: ../../library/argparse.rst:546 -msgid "" -"Occasionally, it may be useful to disable the addition of this help option. " -"This can be achieved by passing ``False`` as the ``add_help=`` argument " -"to :class:`ArgumentParser`::" +msgid "Occasionally, it may be useful to disable the addition of this help option. This can be achieved by passing ``False`` as the ``add_help=`` argument to :class:`ArgumentParser`::" msgstr "" -#: ../../library/argparse.rst:550 msgid "" ">>> parser = argparse.ArgumentParser(prog='PROG', add_help=False)\n" ">>> parser.add_argument('--foo', help='foo help')\n" @@ -802,15 +506,9 @@ msgid "" " --foo FOO foo help" msgstr "" -#: ../../library/argparse.rst:558 -msgid "" -"The help option is typically ``-h/--help``. The exception to this is if the " -"``prefix_chars=`` is specified and does not include ``-``, in which case ``-" -"h`` and ``--help`` are not valid options. In this case, the first character " -"in ``prefix_chars`` is used to prefix the help options::" +msgid "The help option is typically ``-h/--help``. The exception to this is if the ``prefix_chars=`` is specified and does not include ``-``, in which case ``-h`` and ``--help`` are not valid options. In this case, the first character in ``prefix_chars`` is used to prefix the help options::" msgstr "" -#: ../../library/argparse.rst:564 msgid "" ">>> parser = argparse.ArgumentParser(prog='PROG', prefix_chars='+/')\n" ">>> parser.print_help()\n" @@ -820,31 +518,19 @@ msgid "" " +h, ++help show this help message and exit" msgstr "" -#: ../../library/argparse.rst:573 msgid "exit_on_error" msgstr "" -#: ../../library/argparse.rst:575 -msgid "" -"Normally, when you pass an invalid argument list to " -"the :meth:`~ArgumentParser.parse_args` method of an :class:`ArgumentParser`, " -"it will print a *message* to :data:`sys.stderr` and exit with a status code " -"of 2." +msgid "Normally, when you pass an invalid argument list to the :meth:`~ArgumentParser.parse_args` method of an :class:`ArgumentParser`, it will print a *message* to :data:`sys.stderr` and exit with a status code of 2." msgstr "" -#: ../../library/argparse.rst:579 -msgid "" -"If the user would like to catch errors manually, the feature can be enabled " -"by setting ``exit_on_error`` to ``False``::" +msgid "If the user would like to catch errors manually, the feature can be enabled by setting ``exit_on_error`` to ``False``::" msgstr "" -#: ../../library/argparse.rst:582 msgid "" ">>> parser = argparse.ArgumentParser(exit_on_error=False)\n" ">>> parser.add_argument('--integers', type=int)\n" -"_StoreAction(option_strings=['--integers'], dest='integers', nargs=None, " -"const=None, default=None, type=, choices=None, help=None, " -"metavar=None)\n" +"_StoreAction(option_strings=['--integers'], dest='integers', nargs=None, const=None, default=None, type=, choices=None, help=None, metavar=None)\n" ">>> try:\n" "... parser.parse_args('--integers a'.split())\n" "... except argparse.ArgumentError:\n" @@ -853,64 +539,37 @@ msgid "" "Catching an argumentError" msgstr "" -#: ../../library/argparse.rst:595 msgid "suggest_on_error" msgstr "" -#: ../../library/argparse.rst:597 -msgid "" -"By default, when a user passes an invalid argument choice or subparser " -"name, :class:`ArgumentParser` will exit with error info and list the " -"permissible argument choices (if specified) or subparser names as part of " -"the error message." +msgid "By default, when a user passes an invalid argument choice or subparser name, :class:`ArgumentParser` will exit with error info and list the permissible argument choices (if specified) or subparser names as part of the error message." msgstr "" -#: ../../library/argparse.rst:601 -msgid "" -"If the user would like to enable suggestions for mistyped argument choices " -"and subparser names, the feature can be enabled by setting " -"``suggest_on_error`` to ``True``. Note that this only applies for arguments " -"when the choices specified are strings::" +msgid "If the user would like to enable suggestions for mistyped argument choices and subparser names, the feature can be enabled by setting ``suggest_on_error`` to ``True``. Note that this only applies for arguments when the choices specified are strings::" msgstr "" -#: ../../library/argparse.rst:606 msgid "" ">>> parser = argparse.ArgumentParser(suggest_on_error=True)\n" ">>> parser.add_argument('--action', choices=['debug', 'dryrun'])\n" ">>> parser.parse_args(['--action', 'debugg'])\n" "usage: tester.py [-h] [--action {debug,dryrun}]\n" -"tester.py: error: argument --action: invalid choice: 'debugg', maybe you " -"meant 'debug'? (choose from debug, dryrun)" +"tester.py: error: argument --action: invalid choice: 'debugg', maybe you meant 'debug'? (choose from debug, dryrun)" msgstr "" -#: ../../library/argparse.rst:612 -msgid "" -"If you're writing code that needs to be compatible with older Python " -"versions and want to opportunistically use ``suggest_on_error`` when it's " -"available, you can set it as an attribute after initializing the parser " -"instead of using the keyword argument::" +msgid "If you're writing code that needs to be compatible with older Python versions and want to opportunistically use ``suggest_on_error`` when it's available, you can set it as an attribute after initializing the parser instead of using the keyword argument::" msgstr "" -#: ../../library/argparse.rst:617 msgid "" ">>> parser = argparse.ArgumentParser(description='Process some integers.')\n" ">>> parser.suggest_on_error = True" msgstr "" -#: ../../library/argparse.rst:624 msgid "color" msgstr "" -#: ../../library/argparse.rst:626 -msgid "" -"By default, the help message is printed in color using `ANSI escape " -"sequences `__. If you want " -"plain text help messages, you can disable this :ref:`in your local " -"environment `, or in the argument parser itself " -"by setting ``color`` to ``False``::" +msgid "By default, the help message is printed in color using `ANSI escape sequences `__. If you want plain text help messages, you can disable this :ref:`in your local environment `, or in the argument parser itself by setting ``color`` to ``False``::" msgstr "" -#: ../../library/argparse.rst:632 msgid "" ">>> parser = argparse.ArgumentParser(description='Process some integers.',\n" "... color=False)\n" @@ -920,132 +579,78 @@ msgid "" ">>> parser.parse_args(['--help'])" msgstr "" -#: ../../library/argparse.rst:639 -msgid "" -"Note that when ``color=True``, colored output depends on both environment " -"variables and terminal capabilities. However, if ``color=False``, colored " -"output is always disabled, even if environment variables like " -"``FORCE_COLOR`` are set." +msgid "Note that when ``color=True``, colored output depends on both environment variables and terminal capabilities. However, if ``color=False``, colored output is always disabled, even if environment variables like ``FORCE_COLOR`` are set." msgstr "" -#: ../../library/argparse.rst:646 -msgid "" -"Error messages will include color codes when redirecting stderr to a file. " -"To avoid this, set the |NO_COLOR|_ or :envvar:`PYTHON_COLORS` environment " -"variable (for example, ``NO_COLOR=1 python script.py 2> errors.txt``)." +msgid "Error messages will include color codes when redirecting stderr to a file. To avoid this, set the |NO_COLOR|_ or :envvar:`PYTHON_COLORS` environment variable (for example, ``NO_COLOR=1 python script.py 2> errors.txt``)." msgstr "" -#: ../../library/argparse.rst:655 msgid "The add_argument() method" msgstr "" -#: ../../library/argparse.rst:661 -msgid "" -"Define how a single command-line argument should be parsed. Each parameter " -"has its own more detailed description below, but in short they are:" +msgid "Define how a single command-line argument should be parsed. Each parameter has its own more detailed description below, but in short they are:" msgstr "" -#: ../../library/argparse.rst:664 -msgid "" -"`name or flags`_ - Either a name or a list of option strings, e.g. ``'foo'`` " -"or ``'-f', '--foo'``." +msgid "`name or flags`_ - Either a name or a list of option strings, e.g. ``'foo'`` or ``'-f', '--foo'``." msgstr "" -#: ../../library/argparse.rst:667 -msgid "" -"action_ - The basic type of action to be taken when this argument is " -"encountered at the command line." +msgid "action_ - The basic type of action to be taken when this argument is encountered at the command line." msgstr "" -#: ../../library/argparse.rst:670 msgid "nargs_ - The number of command-line arguments that should be consumed." msgstr "" -#: ../../library/argparse.rst:672 -msgid "" -"const_ - A constant value required by some action_ and nargs_ selections." +msgid "const_ - A constant value required by some action_ and nargs_ selections." msgstr "" -#: ../../library/argparse.rst:674 -msgid "" -"default_ - The value produced if the argument is absent from the command " -"line and if it is absent from the namespace object." +msgid "default_ - The value produced if the argument is absent from the command line and if it is absent from the namespace object." msgstr "" -#: ../../library/argparse.rst:677 -msgid "" -"type_ - The type to which the command-line argument should be converted." +msgid "type_ - The type to which the command-line argument should be converted." msgstr "" -#: ../../library/argparse.rst:679 msgid "choices_ - A sequence of the allowable values for the argument." msgstr "" -#: ../../library/argparse.rst:681 -msgid "" -"required_ - Whether or not the command-line option may be omitted (optionals " -"only)." +msgid "required_ - Whether or not the command-line option may be omitted (optionals only)." msgstr "" -#: ../../library/argparse.rst:684 msgid "help_ - A brief description of what the argument does." msgstr "" -#: ../../library/argparse.rst:686 msgid "metavar_ - A name for the argument in usage messages." msgstr "" -#: ../../library/argparse.rst:688 -msgid "" -"dest_ - The name of the attribute to be added to the object returned " -"by :meth:`parse_args`." +msgid "dest_ - The name of the attribute to be added to the object returned by :meth:`parse_args`." msgstr "" -#: ../../library/argparse.rst:691 msgid "deprecated_ - Whether or not use of the argument is deprecated." msgstr "" -#: ../../library/argparse.rst:693 msgid "The method returns an :class:`Action` object representing the argument." msgstr "" -#: ../../library/argparse.rst:701 msgid "name or flags" msgstr "" -#: ../../library/argparse.rst:703 -msgid "" -"The :meth:`~ArgumentParser.add_argument` method must know whether an " -"optional argument, like ``-f`` or ``--foo``, or a positional argument, like " -"a list of filenames, is expected. The first arguments passed " -"to :meth:`~ArgumentParser.add_argument` must therefore be either a series of " -"flags, or a simple argument name." +msgid "The :meth:`~ArgumentParser.add_argument` method must know whether an optional argument, like ``-f`` or ``--foo``, or a positional argument, like a list of filenames, is expected. The first arguments passed to :meth:`~ArgumentParser.add_argument` must therefore be either a series of flags, or a simple argument name." msgstr "" -#: ../../library/argparse.rst:709 msgid "For example, an optional argument could be created like::" msgstr "" -#: ../../library/argparse.rst:711 msgid ">>> parser.add_argument('-f', '--foo')" msgstr "" -#: ../../library/argparse.rst:713 msgid "while a positional argument could be created like::" msgstr "" -#: ../../library/argparse.rst:715 msgid ">>> parser.add_argument('bar')" msgstr "" -#: ../../library/argparse.rst:717 -msgid "" -"When :meth:`~ArgumentParser.parse_args` is called, optional arguments will " -"be identified by the ``-`` prefix, and the remaining arguments will be " -"assumed to be positional::" +msgid "When :meth:`~ArgumentParser.parse_args` is called, optional arguments will be identified by the ``-`` prefix, and the remaining arguments will be assumed to be positional::" msgstr "" -#: ../../library/argparse.rst:721 msgid "" ">>> parser = argparse.ArgumentParser(prog='PROG')\n" ">>> parser.add_argument('-f', '--foo')\n" @@ -1059,17 +664,9 @@ msgid "" "PROG: error: the following arguments are required: bar" msgstr "" -#: ../../library/argparse.rst:732 -msgid "" -"By default, :mod:`!argparse` automatically handles the internal naming and " -"display names of arguments, simplifying the process without requiring " -"additional configuration. As such, you do not need to specify the dest_ and " -"metavar_ parameters. For optional arguments, the dest_ parameter defaults to " -"the argument name, with underscores ``_`` replacing hyphens ``-``. The " -"metavar_ parameter defaults to the upper-cased name. For example::" +msgid "By default, :mod:`!argparse` automatically handles the internal naming and display names of arguments, simplifying the process without requiring additional configuration. As such, you do not need to specify the dest_ and metavar_ parameters. For optional arguments, the dest_ parameter defaults to the argument name, with underscores ``_`` replacing hyphens ``-``. The metavar_ parameter defaults to the upper-cased name. For example::" msgstr "" -#: ../../library/argparse.rst:740 msgid "" ">>> parser = argparse.ArgumentParser(prog='PROG')\n" ">>> parser.add_argument('--foo-bar')\n" @@ -1083,35 +680,18 @@ msgid "" " --foo-bar FOO-BAR" msgstr "" -#: ../../library/argparse.rst:755 msgid "action" msgstr "" -#: ../../library/argparse.rst:757 -msgid "" -":class:`ArgumentParser` objects associate command-line arguments with " -"actions. These actions can do just about anything with the command-line " -"arguments associated with them, though most actions simply add an attribute " -"to the object returned by :meth:`~ArgumentParser.parse_args`. The " -"``action`` keyword argument specifies how the command-line arguments should " -"be handled. The supplied actions are:" +msgid ":class:`ArgumentParser` objects associate command-line arguments with actions. These actions can do just about anything with the command-line arguments associated with them, though most actions simply add an attribute to the object returned by :meth:`~ArgumentParser.parse_args`. The ``action`` keyword argument specifies how the command-line arguments should be handled. The supplied actions are:" msgstr "" -#: ../../library/argparse.rst:763 -msgid "" -"``'store'`` - This just stores the argument's value. This is the default " -"action." +msgid "``'store'`` - This just stores the argument's value. This is the default action." msgstr "" -#: ../../library/argparse.rst:766 -msgid "" -"``'store_const'`` - This stores the value specified by the const_ keyword " -"argument; note that the const_ keyword argument defaults to ``None``. The " -"``'store_const'`` action is most commonly used with optional arguments that " -"specify some sort of flag. For example::" +msgid "``'store_const'`` - This stores the value specified by the const_ keyword argument; note that the const_ keyword argument defaults to ``None``. The ``'store_const'`` action is most commonly used with optional arguments that specify some sort of flag. For example::" msgstr "" -#: ../../library/argparse.rst:771 msgid "" ">>> parser = argparse.ArgumentParser()\n" ">>> parser.add_argument('--foo', action='store_const', const=42)\n" @@ -1119,14 +699,9 @@ msgid "" "Namespace(foo=42)" msgstr "" -#: ../../library/argparse.rst:776 -msgid "" -"``'store_true'`` and ``'store_false'`` - These are special cases of " -"``'store_const'`` that respectively store the values ``True`` and ``False`` " -"with default values of ``False`` and ``True``::" +msgid "``'store_true'`` and ``'store_false'`` - These are special cases of ``'store_const'`` that respectively store the values ``True`` and ``False`` with default values of ``False`` and ``True``::" msgstr "" -#: ../../library/argparse.rst:781 msgid "" ">>> parser = argparse.ArgumentParser()\n" ">>> parser.add_argument('--foo', action='store_true')\n" @@ -1136,16 +711,9 @@ msgid "" "Namespace(foo=True, bar=False, baz=True)" msgstr "" -#: ../../library/argparse.rst:788 -msgid "" -"``'append'`` - This appends each argument value to a list. It is useful for " -"allowing an option to be specified multiple times. If the default value is a " -"non-empty list, the parsed value will start with the default list's elements " -"and any values from the command line will be appended after those default " -"values. Example usage::" +msgid "``'append'`` - This appends each argument value to a list. It is useful for allowing an option to be specified multiple times. If the default value is a non-empty list, the parsed value will start with the default list's elements and any values from the command line will be appended after those default values. Example usage::" msgstr "" -#: ../../library/argparse.rst:794 msgid "" ">>> parser = argparse.ArgumentParser()\n" ">>> parser.add_argument('--foo', action='append', default=['0'])\n" @@ -1153,51 +721,30 @@ msgid "" "Namespace(foo=['0', '1', '2'])" msgstr "" -#: ../../library/argparse.rst:799 -msgid "" -"``'append_const'`` - This appends the value specified by the const_ keyword " -"argument to a list; note that the const_ keyword argument defaults to " -"``None``. The ``'append_const'`` action is typically useful when multiple " -"arguments need to store constants to the same list. For example::" +msgid "``'append_const'`` - This appends the value specified by the const_ keyword argument to a list; note that the const_ keyword argument defaults to ``None``. The ``'append_const'`` action is typically useful when multiple arguments need to store constants to the same list. For example::" msgstr "" -#: ../../library/argparse.rst:805 msgid "" ">>> parser = argparse.ArgumentParser()\n" -">>> parser.add_argument('--str', dest='types', action='append_const', " -"const=str)\n" -">>> parser.add_argument('--int', dest='types', action='append_const', " -"const=int)\n" +">>> parser.add_argument('--str', dest='types', action='append_const', const=str)\n" +">>> parser.add_argument('--int', dest='types', action='append_const', const=int)\n" ">>> parser.parse_args('--str --int'.split())\n" "Namespace(types=[, ])" msgstr "" -#: ../../library/argparse.rst:811 -msgid "" -"``'extend'`` - This appends each item from a multi-value argument to a list. " -"The ``'extend'`` action is typically used with the nargs_ keyword argument " -"value ``'+'`` or ``'*'``. Note that when nargs_ is ``None`` (the default) or " -"``'?'``, each character of the argument string will be appended to the list. " -"Example usage::" +msgid "``'extend'`` - This appends each item from a multi-value argument to a list. The ``'extend'`` action is typically used with the nargs_ keyword argument value ``'+'`` or ``'*'``. Note that when nargs_ is ``None`` (the default) or ``'?'``, each character of the argument string will be appended to the list. Example usage::" msgstr "" -#: ../../library/argparse.rst:819 msgid "" ">>> parser = argparse.ArgumentParser()\n" -">>> parser.add_argument(\"--foo\", action=\"extend\", nargs=\"+\", " -"type=str)\n" -">>> parser.parse_args([\"--foo\", \"f1\", \"--foo\", \"f2\", \"f3\", " -"\"f4\"])\n" +">>> parser.add_argument(\"--foo\", action=\"extend\", nargs=\"+\", type=str)\n" +">>> parser.parse_args([\"--foo\", \"f1\", \"--foo\", \"f2\", \"f3\", \"f4\"])\n" "Namespace(foo=['f1', 'f2', 'f3', 'f4'])" msgstr "" -#: ../../library/argparse.rst:826 -msgid "" -"``'count'`` - This counts the number of times an argument occurs. For " -"example, this is useful for increasing verbosity levels::" +msgid "``'count'`` - This counts the number of times an argument occurs. For example, this is useful for increasing verbosity levels::" msgstr "" -#: ../../library/argparse.rst:829 msgid "" ">>> parser = argparse.ArgumentParser()\n" ">>> parser.add_argument('--verbose', '-v', action='count', default=0)\n" @@ -1205,58 +752,32 @@ msgid "" "Namespace(verbose=3)" msgstr "" -#: ../../library/argparse.rst:834 msgid "Note, the *default* will be ``None`` unless explicitly set to *0*." msgstr "" -#: ../../library/argparse.rst:836 -msgid "" -"``'help'`` - This prints a complete help message for all the options in the " -"current parser and then exits. By default a help action is automatically " -"added to the parser. See :class:`ArgumentParser` for details of how the " -"output is created." +msgid "``'help'`` - This prints a complete help message for all the options in the current parser and then exits. By default a help action is automatically added to the parser. See :class:`ArgumentParser` for details of how the output is created." msgstr "" -#: ../../library/argparse.rst:841 -msgid "" -"``'version'`` - This expects a ``version=`` keyword argument in " -"the :meth:`~ArgumentParser.add_argument` call, and prints version " -"information and exits when invoked::" +msgid "``'version'`` - This expects a ``version=`` keyword argument in the :meth:`~ArgumentParser.add_argument` call, and prints version information and exits when invoked::" msgstr "" -#: ../../library/argparse.rst:845 msgid "" ">>> import argparse\n" ">>> parser = argparse.ArgumentParser(prog='PROG')\n" -">>> parser.add_argument('--version', action='version', version='%(prog)s " -"2.0')\n" +">>> parser.add_argument('--version', action='version', version='%(prog)s 2.0')\n" ">>> parser.parse_args(['--version'])\n" "PROG 2.0" msgstr "" -#: ../../library/argparse.rst:851 -msgid "" -"You may also specify an arbitrary action by passing an :class:`Action` " -"subclass (e.g. :class:`BooleanOptionalAction`) or other object that " -"implements the same interface. Only actions that consume command-line " -"arguments (e.g. ``'store'``, ``'append'``, ``'extend'``, or custom actions " -"with non-zero ``nargs``) can be used with positional arguments." +msgid "You may also specify an arbitrary action by passing an :class:`Action` subclass (e.g. :class:`BooleanOptionalAction`) or other object that implements the same interface. Only actions that consume command-line arguments (e.g. ``'store'``, ``'append'``, ``'extend'``, or custom actions with non-zero ``nargs``) can be used with positional arguments." msgstr "" -#: ../../library/argparse.rst:857 -msgid "" -"The recommended way to create a custom action is to extend :class:`Action`, " -"overriding the :meth:`!__call__` method and optionally the :meth:`!__init__` " -"and :meth:`!format_usage` methods. You can also register custom actions " -"using the :meth:`~ArgumentParser.register` method and reference them by " -"their registered name." +msgid "The recommended way to create a custom action is to extend :class:`Action`, overriding the :meth:`!__call__` method and optionally the :meth:`!__init__` and :meth:`!format_usage` methods. You can also register custom actions using the :meth:`~ArgumentParser.register` method and reference them by their registered name." msgstr "" -#: ../../library/argparse.rst:862 msgid "An example of a custom action::" msgstr "" -#: ../../library/argparse.rst:864 msgid "" ">>> class FooAction(argparse.Action):\n" "... def __init__(self, option_strings, dest, nargs=None, **kwargs):\n" @@ -1277,30 +798,18 @@ msgid "" "Namespace(bar='1', foo='2')" msgstr "" -#: ../../library/argparse.rst:882 msgid "For more details, see :class:`Action`." msgstr "" -#: ../../library/argparse.rst:888 msgid "nargs" msgstr "" -#: ../../library/argparse.rst:890 -msgid "" -":class:`ArgumentParser` objects usually associate a single command-line " -"argument with a single action to be taken. The ``nargs`` keyword argument " -"associates a different number of command-line arguments with a single " -"action. See also :ref:`specifying-ambiguous-arguments`. The supported values " -"are:" +msgid ":class:`ArgumentParser` objects usually associate a single command-line argument with a single action to be taken. The ``nargs`` keyword argument associates a different number of command-line arguments with a single action. See also :ref:`specifying-ambiguous-arguments`. The supported values are:" msgstr "" -#: ../../library/argparse.rst:895 -msgid "" -"``N`` (an integer). ``N`` arguments from the command line will be gathered " -"together into a list. For example::" +msgid "``N`` (an integer). ``N`` arguments from the command line will be gathered together into a list. For example::" msgstr "" -#: ../../library/argparse.rst:898 msgid "" ">>> parser = argparse.ArgumentParser()\n" ">>> parser.add_argument('--foo', nargs=2)\n" @@ -1309,23 +818,12 @@ msgid "" "Namespace(bar=['c'], foo=['a', 'b'])" msgstr "" -#: ../../library/argparse.rst:904 -msgid "" -"Note that ``nargs=1`` produces a list of one item. This is different from " -"the default, in which the item is produced by itself." +msgid "Note that ``nargs=1`` produces a list of one item. This is different from the default, in which the item is produced by itself." msgstr "" -#: ../../library/argparse.rst:909 -msgid "" -"``'?'``. One argument will be consumed from the command line if possible, " -"and produced as a single item. If no command-line argument is present, the " -"value from default_ will be produced. Note that for optional arguments, " -"there is an additional case - the option string is present but not followed " -"by a command-line argument. In this case the value from const_ will be " -"produced. Some examples to illustrate this::" +msgid "``'?'``. One argument will be consumed from the command line if possible, and produced as a single item. If no command-line argument is present, the value from default_ will be produced. Note that for optional arguments, there is an additional case - the option string is present but not followed by a command-line argument. In this case the value from const_ will be produced. Some examples to illustrate this::" msgstr "" -#: ../../library/argparse.rst:916 msgid "" ">>> parser = argparse.ArgumentParser()\n" ">>> parser.add_argument('--foo', nargs='?', const='c', default='d')\n" @@ -1338,13 +836,9 @@ msgid "" "Namespace(bar='d', foo='d')" msgstr "" -#: ../../library/argparse.rst:926 -msgid "" -"One of the more common uses of ``nargs='?'`` is to allow optional input and " -"output files::" +msgid "One of the more common uses of ``nargs='?'`` is to allow optional input and output files::" msgstr "" -#: ../../library/argparse.rst:929 msgid "" ">>> parser = argparse.ArgumentParser()\n" ">>> parser.add_argument('infile', nargs='?')\n" @@ -1357,15 +851,9 @@ msgid "" "Namespace(infile=None, outfile=None)" msgstr "" -#: ../../library/argparse.rst:941 -msgid "" -"``'*'``. All command-line arguments present are gathered into a list. Note " -"that it generally doesn't make much sense to have more than one positional " -"argument with ``nargs='*'``, but multiple optional arguments with " -"``nargs='*'`` is possible. For example::" +msgid "``'*'``. All command-line arguments present are gathered into a list. Note that it generally doesn't make much sense to have more than one positional argument with ``nargs='*'``, but multiple optional arguments with ``nargs='*'`` is possible. For example::" msgstr "" -#: ../../library/argparse.rst:946 msgid "" ">>> parser = argparse.ArgumentParser()\n" ">>> parser.add_argument('--foo', nargs='*')\n" @@ -1375,14 +863,9 @@ msgid "" "Namespace(bar=['1', '2'], baz=['a', 'b'], foo=['x', 'y'])" msgstr "" -#: ../../library/argparse.rst:955 -msgid "" -"``'+'``. Just like ``'*'``, all command-line arguments present are gathered " -"into a list. Additionally, an error message will be generated if there " -"wasn't at least one command-line argument present. For example::" +msgid "``'+'``. Just like ``'*'``, all command-line arguments present are gathered into a list. Additionally, an error message will be generated if there wasn't at least one command-line argument present. For example::" msgstr "" -#: ../../library/argparse.rst:959 msgid "" ">>> parser = argparse.ArgumentParser(prog='PROG')\n" ">>> parser.add_argument('foo', nargs='+')\n" @@ -1393,69 +876,30 @@ msgid "" "PROG: error: the following arguments are required: foo" msgstr "" -#: ../../library/argparse.rst:967 -msgid "" -"If the ``nargs`` keyword argument is not provided, the number of arguments " -"consumed is determined by the action_. Generally this means a single " -"command-line argument will be consumed and a single item (not a list) will " -"be produced. Actions that do not consume command-line arguments (e.g. " -"``'store_const'``) set ``nargs=0``." +msgid "If the ``nargs`` keyword argument is not provided, the number of arguments consumed is determined by the action_. Generally this means a single command-line argument will be consumed and a single item (not a list) will be produced. Actions that do not consume command-line arguments (e.g. ``'store_const'``) set ``nargs=0``." msgstr "" -#: ../../library/argparse.rst:977 msgid "const" msgstr "" -#: ../../library/argparse.rst:979 -msgid "" -"The ``const`` argument of :meth:`~ArgumentParser.add_argument` is used to " -"hold constant values that are not read from the command line but are " -"required for the various :class:`ArgumentParser` actions. The two most " -"common uses of it are:" +msgid "The ``const`` argument of :meth:`~ArgumentParser.add_argument` is used to hold constant values that are not read from the command line but are required for the various :class:`ArgumentParser` actions. The two most common uses of it are:" msgstr "" -#: ../../library/argparse.rst:983 -msgid "" -"When :meth:`~ArgumentParser.add_argument` is called with " -"``action='store_const'`` or ``action='append_const'``. These actions add " -"the ``const`` value to one of the attributes of the object returned " -"by :meth:`~ArgumentParser.parse_args`. See the action_ description for " -"examples. If ``const`` is not provided " -"to :meth:`~ArgumentParser.add_argument`, it will receive a default value of " -"``None``." +msgid "When :meth:`~ArgumentParser.add_argument` is called with ``action='store_const'`` or ``action='append_const'``. These actions add the ``const`` value to one of the attributes of the object returned by :meth:`~ArgumentParser.parse_args`. See the action_ description for examples. If ``const`` is not provided to :meth:`~ArgumentParser.add_argument`, it will receive a default value of ``None``." msgstr "" -#: ../../library/argparse.rst:991 -msgid "" -"When :meth:`~ArgumentParser.add_argument` is called with option strings " -"(like ``-f`` or ``--foo``) and ``nargs='?'``. This creates an optional " -"argument that can be followed by zero or one command-line arguments. When " -"parsing the command line, if the option string is encountered with no " -"command-line argument following it, the value from ``const`` will be used. " -"See the nargs_ description for examples." +msgid "When :meth:`~ArgumentParser.add_argument` is called with option strings (like ``-f`` or ``--foo``) and ``nargs='?'``. This creates an optional argument that can be followed by zero or one command-line arguments. When parsing the command line, if the option string is encountered with no command-line argument following it, the value from ``const`` will be used. See the nargs_ description for examples." msgstr "" -#: ../../library/argparse.rst:998 -msgid "" -"``const=None`` by default, including when ``action='append_const'`` or " -"``action='store_const'``." +msgid "``const=None`` by default, including when ``action='append_const'`` or ``action='store_const'``." msgstr "" -#: ../../library/argparse.rst:1005 msgid "default" msgstr "" -#: ../../library/argparse.rst:1007 -msgid "" -"All optional arguments and some positional arguments may be omitted at the " -"command line. The ``default`` keyword argument " -"of :meth:`~ArgumentParser.add_argument`, whose value defaults to ``None``, " -"specifies what value should be used if the command-line argument is not " -"present. For optional arguments, the ``default`` value is used when the " -"option string was not present at the command line::" +msgid "All optional arguments and some positional arguments may be omitted at the command line. The ``default`` keyword argument of :meth:`~ArgumentParser.add_argument`, whose value defaults to ``None``, specifies what value should be used if the command-line argument is not present. For optional arguments, the ``default`` value is used when the option string was not present at the command line::" msgstr "" -#: ../../library/argparse.rst:1014 msgid "" ">>> parser = argparse.ArgumentParser()\n" ">>> parser.add_argument('--foo', default=42)\n" @@ -1465,13 +909,9 @@ msgid "" "Namespace(foo=42)" msgstr "" -#: ../../library/argparse.rst:1021 -msgid "" -"If the target namespace already has an attribute set, the action *default* " -"will not overwrite it::" +msgid "If the target namespace already has an attribute set, the action *default* will not overwrite it::" msgstr "" -#: ../../library/argparse.rst:1024 msgid "" ">>> parser = argparse.ArgumentParser()\n" ">>> parser.add_argument('--foo', default=42)\n" @@ -1479,16 +919,9 @@ msgid "" "Namespace(foo=101)" msgstr "" -#: ../../library/argparse.rst:1029 -msgid "" -"If the ``default`` value is a string, the parser parses the value as if it " -"were a command-line argument. In particular, the parser applies any type_ " -"conversion argument, if provided, before setting the attribute on " -"the :class:`Namespace` return value. Otherwise, the parser uses the value " -"as is::" +msgid "If the ``default`` value is a string, the parser parses the value as if it were a command-line argument. In particular, the parser applies any type_ conversion argument, if provided, before setting the attribute on the :class:`Namespace` return value. Otherwise, the parser uses the value as is::" msgstr "" -#: ../../library/argparse.rst:1034 msgid "" ">>> parser = argparse.ArgumentParser()\n" ">>> parser.add_argument('--length', default='10', type=int)\n" @@ -1497,13 +930,9 @@ msgid "" "Namespace(length=10, width=10.5)" msgstr "" -#: ../../library/argparse.rst:1040 -msgid "" -"For positional arguments with nargs_ equal to ``?`` or ``*``, the " -"``default`` value is used when no command-line argument was present::" +msgid "For positional arguments with nargs_ equal to ``?`` or ``*``, the ``default`` value is used when no command-line argument was present::" msgstr "" -#: ../../library/argparse.rst:1043 msgid "" ">>> parser = argparse.ArgumentParser()\n" ">>> parser.add_argument('foo', nargs='?', default=42)\n" @@ -1513,27 +942,15 @@ msgid "" "Namespace(foo=42)" msgstr "" -#: ../../library/argparse.rst:1050 -msgid "" -"Because ``nargs='*'`` gathers any supplied values into a list, an absent " -"positional argument yields an empty list (``[]``). Only a non-``None`` " -"*default* overrides this (so ``default=None`` still gives ``[]``)." +msgid "Because ``nargs='*'`` gathers any supplied values into a list, an absent positional argument yields an empty list (``[]``). Only a non-``None`` *default* overrides this (so ``default=None`` still gives ``[]``)." msgstr "" -#: ../../library/argparse.rst:1054 -msgid "" -"For required_ arguments, the ``default`` value is ignored. For example, this " -"applies to positional arguments with nargs_ values other than ``?`` or " -"``*``, or optional arguments marked as ``required=True``." +msgid "For required_ arguments, the ``default`` value is ignored. For example, this applies to positional arguments with nargs_ values other than ``?`` or ``*``, or optional arguments marked as ``required=True``." msgstr "" -#: ../../library/argparse.rst:1058 -msgid "" -"Providing ``default=argparse.SUPPRESS`` causes no attribute to be added if " -"the command-line argument was not present::" +msgid "Providing ``default=argparse.SUPPRESS`` causes no attribute to be added if the command-line argument was not present::" msgstr "" -#: ../../library/argparse.rst:1061 msgid "" ">>> parser = argparse.ArgumentParser()\n" ">>> parser.add_argument('--foo', default=argparse.SUPPRESS)\n" @@ -1543,39 +960,21 @@ msgid "" "Namespace(foo='1')" msgstr "" -#: ../../library/argparse.rst:1072 msgid "type" msgstr "" -#: ../../library/argparse.rst:1074 -msgid "" -"By default, the parser reads command-line arguments in as simple strings. " -"However, quite often the command-line string should instead be interpreted " -"as another type, such as a :class:`float` or :class:`int`. The ``type`` " -"keyword for :meth:`~ArgumentParser.add_argument` allows any necessary type-" -"checking and type conversions to be performed." +msgid "By default, the parser reads command-line arguments in as simple strings. However, quite often the command-line string should instead be interpreted as another type, such as a :class:`float` or :class:`int`. The ``type`` keyword for :meth:`~ArgumentParser.add_argument` allows any necessary type-checking and type conversions to be performed." msgstr "" -#: ../../library/argparse.rst:1080 -msgid "" -"If the type_ keyword is used with the default_ keyword, the type converter " -"is only applied if the default is a string." +msgid "If the type_ keyword is used with the default_ keyword, the type converter is only applied if the default is a string." msgstr "" -#: ../../library/argparse.rst:1083 -msgid "" -"The argument to ``type`` can be a callable that accepts a single string or " -"the name of a registered type (see :meth:`~ArgumentParser.register`) If the " -"function raises :exc:`ArgumentTypeError`, :exc:`TypeError`, " -"or :exc:`ValueError`, the exception is caught and a nicely formatted error " -"message is displayed. Other exception types are not handled." +msgid "The argument to ``type`` can be a callable that accepts a single string or the name of a registered type (see :meth:`~ArgumentParser.register`) If the function raises :exc:`ArgumentTypeError`, :exc:`TypeError`, or :exc:`ValueError`, the exception is caught and a nicely formatted error message is displayed. Other exception types are not handled." msgstr "" -#: ../../library/argparse.rst:1089 msgid "Common built-in types and functions can be used as type converters:" msgstr "" -#: ../../library/argparse.rst:1091 msgid "" "import argparse\n" "import pathlib\n" @@ -1588,11 +987,9 @@ msgid "" "parser.add_argument('datapath', type=pathlib.Path)" msgstr "" -#: ../../library/argparse.rst:1103 msgid "User defined functions can be used as well:" msgstr "" -#: ../../library/argparse.rst:1105 msgid "" ">>> def hyphenated(string):\n" "... return '-'.join([word[:4] for word in string.casefold().split()])\n" @@ -1603,14 +1000,9 @@ msgid "" "Namespace(short_title='\"the-tale-of-two-citi')" msgstr "" -#: ../../library/argparse.rst:1115 -msgid "" -"The :func:`bool` function is not recommended as a type converter. All it " -"does is convert empty strings to ``False`` and non-empty strings to " -"``True``. This is usually not what is desired::" +msgid "The :func:`bool` function is not recommended as a type converter. All it does is convert empty strings to ``False`` and non-empty strings to ``True``. This is usually not what is desired::" msgstr "" -#: ../../library/argparse.rst:1119 msgid "" ">>> parser = argparse.ArgumentParser()\n" ">>> _ = parser.add_argument('--verbose', type=bool)\n" @@ -1618,58 +1010,27 @@ msgid "" "Namespace(verbose=True)" msgstr "" -#: ../../library/argparse.rst:1124 -msgid "" -"See :class:`BooleanOptionalAction` or ``action='store_true'`` for common " -"alternatives." +msgid "See :class:`BooleanOptionalAction` or ``action='store_true'`` for common alternatives." msgstr "" -#: ../../library/argparse.rst:1127 -msgid "" -"In general, the ``type`` keyword is a convenience that should only be used " -"for simple conversions that can only raise one of the three supported " -"exceptions. Anything with more interesting error-handling or resource " -"management should be done downstream after the arguments are parsed." +msgid "In general, the ``type`` keyword is a convenience that should only be used for simple conversions that can only raise one of the three supported exceptions. Anything with more interesting error-handling or resource management should be done downstream after the arguments are parsed." msgstr "" -#: ../../library/argparse.rst:1132 -msgid "" -"For example, JSON or YAML conversions have complex error cases that require " -"better reporting than can be given by the ``type`` keyword. " -"A :exc:`~json.JSONDecodeError` would not be well formatted and " -"a :exc:`FileNotFoundError` exception would not be handled at all." +msgid "For example, JSON or YAML conversions have complex error cases that require better reporting than can be given by the ``type`` keyword. A :exc:`~json.JSONDecodeError` would not be well formatted and a :exc:`FileNotFoundError` exception would not be handled at all." msgstr "" -#: ../../library/argparse.rst:1137 -msgid "" -"Even :class:`~argparse.FileType` has its limitations for use with the " -"``type`` keyword. If one argument uses :class:`~argparse.FileType` and then " -"a subsequent argument fails, an error is reported but the file is not " -"automatically closed. In this case, it would be better to wait until after " -"the parser has run and then use the :keyword:`with`-statement to manage the " -"files." +msgid "Even :class:`~argparse.FileType` has its limitations for use with the ``type`` keyword. If one argument uses :class:`~argparse.FileType` and then a subsequent argument fails, an error is reported but the file is not automatically closed. In this case, it would be better to wait until after the parser has run and then use the :keyword:`with`-statement to manage the files." msgstr "" -#: ../../library/argparse.rst:1144 -msgid "" -"For type checkers that simply check against a fixed set of values, consider " -"using the choices_ keyword instead." +msgid "For type checkers that simply check against a fixed set of values, consider using the choices_ keyword instead." msgstr "" -#: ../../library/argparse.rst:1151 msgid "choices" msgstr "" -#: ../../library/argparse.rst:1153 -msgid "" -"Some command-line arguments should be selected from a restricted set of " -"values. These can be handled by passing a sequence object as the *choices* " -"keyword argument to :meth:`~ArgumentParser.add_argument`. When the command " -"line is parsed, argument values will be checked, and an error message will " -"be displayed if the argument was not one of the acceptable values::" +msgid "Some command-line arguments should be selected from a restricted set of values. These can be handled by passing a sequence object as the *choices* keyword argument to :meth:`~ArgumentParser.add_argument`. When the command line is parsed, argument values will be checked, and an error message will be displayed if the argument was not one of the acceptable values::" msgstr "" -#: ../../library/argparse.rst:1159 msgid "" ">>> parser = argparse.ArgumentParser(prog='game.py')\n" ">>> parser.add_argument('move', choices=['rock', 'paper', 'scissors'])\n" @@ -1681,53 +1042,27 @@ msgid "" "'paper', 'scissors')" msgstr "" -#: ../../library/argparse.rst:1168 -msgid "" -"Any sequence can be passed as the *choices* value, so :class:`list` " -"objects, :class:`tuple` objects, and custom sequences are all supported." +msgid "Any sequence can be passed as the *choices* value, so :class:`list` objects, :class:`tuple` objects, and custom sequences are all supported." msgstr "" -#: ../../library/argparse.rst:1171 -msgid "" -"Use of :class:`enum.Enum` is not recommended because it is difficult to " -"control its appearance in usage, help, and error messages." +msgid "Use of :class:`enum.Enum` is not recommended because it is difficult to control its appearance in usage, help, and error messages." msgstr "" -#: ../../library/argparse.rst:1174 -msgid "" -"Note that *choices* are checked after any type_ conversions have been " -"performed, so objects in *choices* should match the type_ specified. This " -"can make *choices* appear unfamiliar in usage, help, or error messages." +msgid "Note that *choices* are checked after any type_ conversions have been performed, so objects in *choices* should match the type_ specified. This can make *choices* appear unfamiliar in usage, help, or error messages." msgstr "" -#: ../../library/argparse.rst:1179 -msgid "" -"To keep *choices* user-friendly, consider a custom type wrapper that " -"converts and formats values, or omit type_ and handle conversion in your " -"application code." +msgid "To keep *choices* user-friendly, consider a custom type wrapper that converts and formats values, or omit type_ and handle conversion in your application code." msgstr "" -#: ../../library/argparse.rst:1183 -msgid "" -"Formatted choices override the default *metavar* which is normally derived " -"from *dest*. This is usually what you want because the user never sees the " -"*dest* parameter. If this display isn't desirable (perhaps because there " -"are many choices), just specify an explicit metavar_." +msgid "Formatted choices override the default *metavar* which is normally derived from *dest*. This is usually what you want because the user never sees the *dest* parameter. If this display isn't desirable (perhaps because there are many choices), just specify an explicit metavar_." msgstr "" -#: ../../library/argparse.rst:1192 msgid "required" msgstr "" -#: ../../library/argparse.rst:1194 -msgid "" -"In general, the :mod:`!argparse` module assumes that flags like ``-f`` and " -"``--bar`` indicate *optional* arguments, which can always be omitted at the " -"command line. To make an option *required*, ``True`` can be specified for " -"the ``required=`` keyword argument to :meth:`~ArgumentParser.add_argument`::" +msgid "In general, the :mod:`!argparse` module assumes that flags like ``-f`` and ``--bar`` indicate *optional* arguments, which can always be omitted at the command line. To make an option *required*, ``True`` can be specified for the ``required=`` keyword argument to :meth:`~ArgumentParser.add_argument`::" msgstr "" -#: ../../library/argparse.rst:1199 msgid "" ">>> parser = argparse.ArgumentParser()\n" ">>> parser.add_argument('--foo', required=True)\n" @@ -1738,41 +1073,21 @@ msgid "" ": error: the following arguments are required: --foo" msgstr "" -#: ../../library/argparse.rst:1207 -msgid "" -"As the example shows, if an option is marked as " -"``required``, :meth:`~ArgumentParser.parse_args` will report an error if " -"that option is not present at the command line." +msgid "As the example shows, if an option is marked as ``required``, :meth:`~ArgumentParser.parse_args` will report an error if that option is not present at the command line." msgstr "" -#: ../../library/argparse.rst:1213 -msgid "" -"Required options are generally considered bad form because users expect " -"*options* to be *optional*, and thus they should be avoided when possible." +msgid "Required options are generally considered bad form because users expect *options* to be *optional*, and thus they should be avoided when possible." msgstr "" -#: ../../library/argparse.rst:1220 msgid "help" msgstr "" -#: ../../library/argparse.rst:1222 -msgid "" -"The ``help`` value is a string containing a brief description of the " -"argument. When a user requests help (usually by using ``-h`` or ``--help`` " -"at the command line), these ``help`` descriptions will be displayed with " -"each argument." +msgid "The ``help`` value is a string containing a brief description of the argument. When a user requests help (usually by using ``-h`` or ``--help`` at the command line), these ``help`` descriptions will be displayed with each argument." msgstr "" -#: ../../library/argparse.rst:1227 -msgid "" -"The ``help`` strings can include various format specifiers to avoid " -"repetition of things like the program name or the argument default_. The " -"available specifiers include the program name, ``%(prog)s`` and most keyword " -"arguments to :meth:`~ArgumentParser.add_argument`, e.g. ``%(default)s``, ``%" -"(type)s``, etc.::" +msgid "The ``help`` strings can include various format specifiers to avoid repetition of things like the program name or the argument default_. The available specifiers include the program name, ``%(prog)s`` and most keyword arguments to :meth:`~ArgumentParser.add_argument`, e.g. ``%(default)s``, ``%(type)s``, etc.::" msgstr "" -#: ../../library/argparse.rst:1232 msgid "" ">>> parser = argparse.ArgumentParser(prog='frobble')\n" ">>> parser.add_argument('bar', nargs='?', type=int, default=42,\n" @@ -1787,19 +1102,12 @@ msgid "" " -h, --help show this help message and exit" msgstr "" -#: ../../library/argparse.rst:1244 -msgid "" -"As the help string supports %-formatting, if you want a literal ``%`` to " -"appear in the help string, you must escape it as ``%%``." +msgid "As the help string supports %-formatting, if you want a literal ``%`` to appear in the help string, you must escape it as ``%%``." msgstr "" -#: ../../library/argparse.rst:1247 -msgid "" -":mod:`!argparse` supports silencing the help entry for certain options, by " -"setting the ``help`` value to ``argparse.SUPPRESS``::" +msgid ":mod:`!argparse` supports silencing the help entry for certain options, by setting the ``help`` value to ``argparse.SUPPRESS``::" msgstr "" -#: ../../library/argparse.rst:1250 msgid "" ">>> parser = argparse.ArgumentParser(prog='frobble')\n" ">>> parser.add_argument('--foo', help=argparse.SUPPRESS)\n" @@ -1810,23 +1118,12 @@ msgid "" " -h, --help show this help message and exit" msgstr "" -#: ../../library/argparse.rst:1262 msgid "metavar" msgstr "" -#: ../../library/argparse.rst:1264 -msgid "" -"When :class:`ArgumentParser` generates help messages, it needs some way to " -"refer to each expected argument. By default, :class:`!ArgumentParser` " -"objects use the dest_ value as the \"name\" of each object. By default, for " -"positional argument actions, the dest_ value is used directly, and for " -"optional argument actions, the dest_ value is uppercased. So, a single " -"positional argument with ``dest='bar'`` will be referred to as ``bar``. A " -"single optional argument ``--foo`` that should be followed by a single " -"command-line argument will be referred to as ``FOO``. An example::" +msgid "When :class:`ArgumentParser` generates help messages, it needs some way to refer to each expected argument. By default, :class:`!ArgumentParser` objects use the dest_ value as the \"name\" of each object. By default, for positional argument actions, the dest_ value is used directly, and for optional argument actions, the dest_ value is uppercased. So, a single positional argument with ``dest='bar'`` will be referred to as ``bar``. A single optional argument ``--foo`` that should be followed by a single command-line argument will be referred to as ``FOO``. An example::" msgstr "" -#: ../../library/argparse.rst:1273 msgid "" ">>> parser = argparse.ArgumentParser()\n" ">>> parser.add_argument('--foo')\n" @@ -1844,11 +1141,9 @@ msgid "" " --foo FOO" msgstr "" -#: ../../library/argparse.rst:1288 msgid "An alternative name can be specified with ``metavar``::" msgstr "" -#: ../../library/argparse.rst:1290 msgid "" ">>> parser = argparse.ArgumentParser()\n" ">>> parser.add_argument('--foo', metavar='YYY')\n" @@ -1866,21 +1161,12 @@ msgid "" " --foo YYY" msgstr "" -#: ../../library/argparse.rst:1305 -msgid "" -"Note that ``metavar`` only changes the *displayed* name - the name of the " -"attribute on the :meth:`~ArgumentParser.parse_args` object is still " -"determined by the dest_ value." +msgid "Note that ``metavar`` only changes the *displayed* name - the name of the attribute on the :meth:`~ArgumentParser.parse_args` object is still determined by the dest_ value." msgstr "" -#: ../../library/argparse.rst:1309 -msgid "" -"Different values of ``nargs`` may cause the metavar to be used multiple " -"times. Providing a tuple to ``metavar`` specifies a different display for " -"each of the arguments::" +msgid "Different values of ``nargs`` may cause the metavar to be used multiple times. Providing a tuple to ``metavar`` specifies a different display for each of the arguments::" msgstr "" -#: ../../library/argparse.rst:1313 msgid "" ">>> parser = argparse.ArgumentParser(prog='PROG')\n" ">>> parser.add_argument('-x', nargs=2)\n" @@ -1894,21 +1180,12 @@ msgid "" " --foo bar baz" msgstr "" -#: ../../library/argparse.rst:1328 msgid "dest" msgstr "" -#: ../../library/argparse.rst:1330 -msgid "" -"Most :class:`ArgumentParser` actions add some value as an attribute of the " -"object returned by :meth:`~ArgumentParser.parse_args`. The name of this " -"attribute is determined by the ``dest`` keyword argument " -"of :meth:`~ArgumentParser.add_argument`. For positional argument actions, " -"``dest`` is normally supplied as the first argument " -"to :meth:`~ArgumentParser.add_argument`::" +msgid "Most :class:`ArgumentParser` actions add some value as an attribute of the object returned by :meth:`~ArgumentParser.parse_args`. The name of this attribute is determined by the ``dest`` keyword argument of :meth:`~ArgumentParser.add_argument`. For positional argument actions, ``dest`` is normally supplied as the first argument to :meth:`~ArgumentParser.add_argument`::" msgstr "" -#: ../../library/argparse.rst:1337 msgid "" ">>> parser = argparse.ArgumentParser()\n" ">>> parser.add_argument('bar')\n" @@ -1916,19 +1193,9 @@ msgid "" "Namespace(bar='XXX')" msgstr "" -#: ../../library/argparse.rst:1342 -msgid "" -"For optional argument actions, the value of ``dest`` is normally inferred " -"from the option strings. :class:`ArgumentParser` generates the value of " -"``dest`` by taking the first long option string and stripping away the " -"initial ``--`` string. If no long option strings were supplied, ``dest`` " -"will be derived from the first short option string by stripping the initial " -"``-`` character. Any internal ``-`` characters will be converted to ``_`` " -"characters to make sure the string is a valid attribute name. The examples " -"below illustrate this behavior::" +msgid "For optional argument actions, the value of ``dest`` is normally inferred from the option strings. :class:`ArgumentParser` generates the value of ``dest`` by taking the first long option string and stripping away the initial ``--`` string. If no long option strings were supplied, ``dest`` will be derived from the first short option string by stripping the initial ``-`` character. Any internal ``-`` characters will be converted to ``_`` characters to make sure the string is a valid attribute name. The examples below illustrate this behavior::" msgstr "" -#: ../../library/argparse.rst:1351 msgid "" ">>> parser = argparse.ArgumentParser()\n" ">>> parser.add_argument('-f', '--foo-bar', '--foo')\n" @@ -1939,11 +1206,9 @@ msgid "" "Namespace(foo_bar='1', x='2')" msgstr "" -#: ../../library/argparse.rst:1359 msgid "``dest`` allows a custom attribute name to be provided::" msgstr "" -#: ../../library/argparse.rst:1361 msgid "" ">>> parser = argparse.ArgumentParser()\n" ">>> parser.add_argument('--foo', dest='bar')\n" @@ -1951,31 +1216,15 @@ msgid "" "Namespace(bar='XXX')" msgstr "" -#: ../../library/argparse.rst:1366 -msgid "" -"Multiple arguments may share the same ``dest``. By default, the value from " -"the last such argument given on the command line wins. Use " -"``action='append'`` to collect values from all of them into a list instead. " -"For conflicting *option strings* rather than ``dest`` names, see " -"conflict_handler_." +msgid "Multiple arguments may share the same ``dest``. By default, the value from the last such argument given on the command line wins. Use ``action='append'`` to collect values from all of them into a list instead. For conflicting *option strings* rather than ``dest`` names, see conflict_handler_." msgstr "" -#: ../../library/argparse.rst:1374 msgid "deprecated" msgstr "" -#: ../../library/argparse.rst:1376 -msgid "" -"During a project's lifetime, some arguments may need to be removed from the " -"command line. Before removing them, you should inform your users that the " -"arguments are deprecated and will be removed. The ``deprecated`` keyword " -"argument of :meth:`~ArgumentParser.add_argument`, which defaults to " -"``False``, specifies if the argument is deprecated and will be removed in " -"the future. For arguments, if ``deprecated`` is ``True``, then a warning " -"will be printed to :data:`sys.stderr` when the argument is used::" +msgid "During a project's lifetime, some arguments may need to be removed from the command line. Before removing them, you should inform your users that the arguments are deprecated and will be removed. The ``deprecated`` keyword argument of :meth:`~ArgumentParser.add_argument`, which defaults to ``False``, specifies if the argument is deprecated and will be removed in the future. For arguments, if ``deprecated`` is ``True``, then a warning will be printed to :data:`sys.stderr` when the argument is used::" msgstr "" -#: ../../library/argparse.rst:1386 msgid "" ">>> import argparse\n" ">>> parser = argparse.ArgumentParser(prog='snake.py')\n" @@ -1987,92 +1236,42 @@ msgid "" "Namespace(legs=4)" msgstr "" -#: ../../library/argparse.rst:1399 msgid "Action classes" msgstr "" -#: ../../library/argparse.rst:1401 -msgid "" -":class:`!Action` classes implement the Action API, a callable which returns " -"a callable which processes arguments from the command-line. Any object which " -"follows this API may be passed as the ``action`` parameter " -"to :meth:`~ArgumentParser.add_argument`." +msgid ":class:`!Action` classes implement the Action API, a callable which returns a callable which processes arguments from the command-line. Any object which follows this API may be passed as the ``action`` parameter to :meth:`~ArgumentParser.add_argument`." msgstr "" -#: ../../library/argparse.rst:1410 -msgid "" -":class:`!Action` objects are used by an :class:`ArgumentParser` to represent " -"the information needed to parse a single argument from one or more strings " -"from the command line. The :class:`!Action` class must accept the two " -"positional arguments plus any keyword arguments passed " -"to :meth:`ArgumentParser.add_argument` except for the ``action`` itself." +msgid ":class:`!Action` objects are used by an :class:`ArgumentParser` to represent the information needed to parse a single argument from one or more strings from the command line. The :class:`!Action` class must accept the two positional arguments plus any keyword arguments passed to :meth:`ArgumentParser.add_argument` except for the ``action`` itself." msgstr "" -#: ../../library/argparse.rst:1416 -msgid "" -"Instances of :class:`!Action` (or return value of any callable to the " -"``action`` parameter) should have attributes :attr:`!dest`, :attr:`!" -"option_strings`, :attr:`!default`, :attr:`!type`, :attr:`!required`, :attr:`!" -"help`, etc. defined. The easiest way to ensure these attributes are defined " -"is to call :meth:`!Action.__init__`." +msgid "Instances of :class:`!Action` (or return value of any callable to the ``action`` parameter) should have attributes :attr:`!dest`, :attr:`!option_strings`, :attr:`!default`, :attr:`!type`, :attr:`!required`, :attr:`!help`, etc. defined. The easiest way to ensure these attributes are defined is to call :meth:`!Action.__init__`." msgstr "" -#: ../../library/argparse.rst:1424 -msgid "" -":class:`!Action` instances should be callable, so subclasses must override " -"the :meth:`!__call__` method, which should accept four parameters:" +msgid ":class:`!Action` instances should be callable, so subclasses must override the :meth:`!__call__` method, which should accept four parameters:" msgstr "" -#: ../../library/argparse.rst:1427 -msgid "" -"*parser* - The :class:`ArgumentParser` object which contains this action." +msgid "*parser* - The :class:`ArgumentParser` object which contains this action." msgstr "" -#: ../../library/argparse.rst:1429 -msgid "" -"*namespace* - The :class:`Namespace` object that will be returned " -"by :meth:`~ArgumentParser.parse_args`. Most actions add an attribute to " -"this object using :func:`setattr`." +msgid "*namespace* - The :class:`Namespace` object that will be returned by :meth:`~ArgumentParser.parse_args`. Most actions add an attribute to this object using :func:`setattr`." msgstr "" -#: ../../library/argparse.rst:1433 -msgid "" -"*values* - The associated command-line arguments, with any type conversions " -"applied. Type conversions are specified with the type_ keyword argument " -"to :meth:`~ArgumentParser.add_argument`." +msgid "*values* - The associated command-line arguments, with any type conversions applied. Type conversions are specified with the type_ keyword argument to :meth:`~ArgumentParser.add_argument`." msgstr "" -#: ../../library/argparse.rst:1437 -msgid "" -"*option_string* - The option string that was used to invoke this action. The " -"``option_string`` argument is optional, and will be absent if the action is " -"associated with a positional argument." +msgid "*option_string* - The option string that was used to invoke this action. The ``option_string`` argument is optional, and will be absent if the action is associated with a positional argument." msgstr "" -#: ../../library/argparse.rst:1441 -msgid "" -"The :meth:`!__call__` method may perform arbitrary actions, but will " -"typically set attributes on the ``namespace`` based on ``dest`` and " -"``values``." +msgid "The :meth:`!__call__` method may perform arbitrary actions, but will typically set attributes on the ``namespace`` based on ``dest`` and ``values``." msgstr "" -#: ../../library/argparse.rst:1446 -msgid "" -":class:`!Action` subclasses can define a :meth:`!format_usage` method that " -"takes no argument and return a string which will be used when printing the " -"usage of the program. If such method is not provided, a sensible default " -"will be used." +msgid ":class:`!Action` subclasses can define a :meth:`!format_usage` method that takes no argument and return a string which will be used when printing the usage of the program. If such method is not provided, a sensible default will be used." msgstr "" -#: ../../library/argparse.rst:1452 -msgid "" -"A subclass of :class:`Action` for handling boolean flags with positive and " -"negative options. Adding a single argument such as ``--foo`` automatically " -"creates both ``--foo`` and ``--no-foo`` options, storing ``True`` and " -"``False`` respectively::" +msgid "A subclass of :class:`Action` for handling boolean flags with positive and negative options. Adding a single argument such as ``--foo`` automatically creates both ``--foo`` and ``--no-foo`` options, storing ``True`` and ``False`` respectively::" msgstr "" -#: ../../library/argparse.rst:1457 msgid "" ">>> import argparse\n" ">>> parser = argparse.ArgumentParser()\n" @@ -2081,47 +1280,27 @@ msgid "" "Namespace(foo=False)" msgstr "" -#: ../../library/argparse.rst:1467 msgid "The parse_args() method" msgstr "" -#: ../../library/argparse.rst:1471 -msgid "" -"Convert argument strings to objects and assign them as attributes of the " -"namespace. Return the populated namespace." +msgid "Convert argument strings to objects and assign them as attributes of the namespace. Return the populated namespace." msgstr "" -#: ../../library/argparse.rst:1474 -msgid "" -"Previous calls to :meth:`add_argument` determine exactly what objects are " -"created and how they are assigned. See the documentation for :meth:`!" -"add_argument` for details." +msgid "Previous calls to :meth:`add_argument` determine exactly what objects are created and how they are assigned. See the documentation for :meth:`!add_argument` for details." msgstr "" -#: ../../library/argparse.rst:1478 -msgid "" -"args_ - List of strings to parse. The default is taken " -"from :data:`sys.argv`." +msgid "args_ - List of strings to parse. The default is taken from :data:`sys.argv`." msgstr "" -#: ../../library/argparse.rst:1481 -msgid "" -"namespace_ - An object to take the attributes. The default is a new " -"empty :class:`Namespace` object." +msgid "namespace_ - An object to take the attributes. The default is a new empty :class:`Namespace` object." msgstr "" -#: ../../library/argparse.rst:1486 msgid "Option value syntax" msgstr "" -#: ../../library/argparse.rst:1488 -msgid "" -"The :meth:`~ArgumentParser.parse_args` method supports several ways of " -"specifying the value of an option (if it takes one). In the simplest case, " -"the option and its value are passed as two separate arguments::" +msgid "The :meth:`~ArgumentParser.parse_args` method supports several ways of specifying the value of an option (if it takes one). In the simplest case, the option and its value are passed as two separate arguments::" msgstr "" -#: ../../library/argparse.rst:1492 msgid "" ">>> parser = argparse.ArgumentParser(prog='PROG')\n" ">>> parser.add_argument('-x')\n" @@ -2132,38 +1311,25 @@ msgid "" "Namespace(foo='FOO', x=None)" msgstr "" -#: ../../library/argparse.rst:1500 -msgid "" -"For long options (options with names longer than a single character), the " -"option and value can also be passed as a single command-line argument, using " -"``=`` to separate them::" +msgid "For long options (options with names longer than a single character), the option and value can also be passed as a single command-line argument, using ``=`` to separate them::" msgstr "" -#: ../../library/argparse.rst:1504 msgid "" ">>> parser.parse_args(['--foo=FOO'])\n" "Namespace(foo='FOO', x=None)" msgstr "" -#: ../../library/argparse.rst:1507 -msgid "" -"For short options (options only one character long), the option and its " -"value can be concatenated::" +msgid "For short options (options only one character long), the option and its value can be concatenated::" msgstr "" -#: ../../library/argparse.rst:1510 msgid "" ">>> parser.parse_args(['-xX'])\n" "Namespace(foo=None, x='X')" msgstr "" -#: ../../library/argparse.rst:1513 -msgid "" -"Several short options can be joined together, using only a single ``-`` " -"prefix, as long as only the last option (or none of them) requires a value::" +msgid "Several short options can be joined together, using only a single ``-`` prefix, as long as only the last option (or none of them) requires a value::" msgstr "" -#: ../../library/argparse.rst:1516 msgid "" ">>> parser = argparse.ArgumentParser(prog='PROG')\n" ">>> parser.add_argument('-x', action='store_true')\n" @@ -2173,19 +1339,12 @@ msgid "" "Namespace(x=True, y=True, z='Z')" msgstr "" -#: ../../library/argparse.rst:1525 msgid "Invalid arguments" msgstr "" -#: ../../library/argparse.rst:1527 -msgid "" -"While parsing the command line, :meth:`~ArgumentParser.parse_args` checks " -"for a variety of errors, including ambiguous options, invalid types, invalid " -"options, wrong number of positional arguments, etc. When it encounters such " -"an error, it exits and prints the error along with a usage message::" +msgid "While parsing the command line, :meth:`~ArgumentParser.parse_args` checks for a variety of errors, including ambiguous options, invalid types, invalid options, wrong number of positional arguments, etc. When it encounters such an error, it exits and prints the error along with a usage message::" msgstr "" -#: ../../library/argparse.rst:1532 msgid "" ">>> parser = argparse.ArgumentParser(prog='PROG')\n" ">>> parser.add_argument('--foo', type=int)\n" @@ -2207,23 +1366,12 @@ msgid "" "PROG: error: extra arguments found: badger" msgstr "" -#: ../../library/argparse.rst:1553 msgid "Arguments containing ``-``" msgstr "" -#: ../../library/argparse.rst:1555 -msgid "" -"The :meth:`~ArgumentParser.parse_args` method attempts to give errors " -"whenever the user has clearly made a mistake, but some situations are " -"inherently ambiguous. For example, the command-line argument ``-1`` could " -"either be an attempt to specify an option or an attempt to provide a " -"positional argument. The :meth:`~ArgumentParser.parse_args` method is " -"cautious here: positional arguments may only begin with ``-`` if they look " -"like negative numbers and there are no options in the parser that look like " -"negative numbers::" +msgid "The :meth:`~ArgumentParser.parse_args` method attempts to give errors whenever the user has clearly made a mistake, but some situations are inherently ambiguous. For example, the command-line argument ``-1`` could either be an attempt to specify an option or an attempt to provide a positional argument. The :meth:`~ArgumentParser.parse_args` method is cautious here: positional arguments may only begin with ``-`` if they look like negative numbers and there are no options in the parser that look like negative numbers::" msgstr "" -#: ../../library/argparse.rst:1563 msgid "" ">>> parser = argparse.ArgumentParser(prog='PROG')\n" ">>> parser.add_argument('-x')\n" @@ -2256,38 +1404,23 @@ msgid "" "PROG: error: argument -1: expected one argument" msgstr "" -#: ../../library/argparse.rst:1593 -msgid "" -"If you have positional arguments that must begin with ``-`` and don't look " -"like negative numbers, you can insert the pseudo-argument ``'--'`` which " -"tells :meth:`~ArgumentParser.parse_args` that everything after that is a " -"positional argument::" +msgid "If you have positional arguments that must begin with ``-`` and don't look like negative numbers, you can insert the pseudo-argument ``'--'`` which tells :meth:`~ArgumentParser.parse_args` that everything after that is a positional argument::" msgstr "" -#: ../../library/argparse.rst:1598 msgid "" ">>> parser.parse_args(['--', '-f'])\n" "Namespace(foo='-f', one=None)" msgstr "" -#: ../../library/argparse.rst:1601 -msgid "" -"See also :ref:`the argparse howto on ambiguous arguments ` for more details." +msgid "See also :ref:`the argparse howto on ambiguous arguments ` for more details." msgstr "" -#: ../../library/argparse.rst:1607 msgid "Argument abbreviations (prefix matching)" msgstr "" -#: ../../library/argparse.rst:1609 -msgid "" -"The :meth:`~ArgumentParser.parse_args` method :ref:`by default " -"` allows long options to be abbreviated to a prefix, if the " -"abbreviation is unambiguous (the prefix matches a unique option)::" +msgid "The :meth:`~ArgumentParser.parse_args` method :ref:`by default ` allows long options to be abbreviated to a prefix, if the abbreviation is unambiguous (the prefix matches a unique option)::" msgstr "" -#: ../../library/argparse.rst:1613 msgid "" ">>> parser = argparse.ArgumentParser(prog='PROG')\n" ">>> parser.add_argument('-bacon')\n" @@ -2301,25 +1434,15 @@ msgid "" "PROG: error: ambiguous option: -ba could match -badger, -bacon" msgstr "" -#: ../../library/argparse.rst:1624 -msgid "" -"An error is produced for arguments that could produce more than one options. " -"This feature can be disabled by setting :ref:`allow_abbrev` to ``False``." +msgid "An error is produced for arguments that could produce more than one options. This feature can be disabled by setting :ref:`allow_abbrev` to ``False``." msgstr "" -#: ../../library/argparse.rst:1630 msgid "Beyond ``sys.argv``" msgstr "" -#: ../../library/argparse.rst:1632 -msgid "" -"Sometimes it may be useful to have an :class:`ArgumentParser` parse " -"arguments other than those of :data:`sys.argv`. This can be accomplished by " -"passing a list of strings to :meth:`~ArgumentParser.parse_args`. This is " -"useful for testing at the interactive prompt::" +msgid "Sometimes it may be useful to have an :class:`ArgumentParser` parse arguments other than those of :data:`sys.argv`. This can be accomplished by passing a list of strings to :meth:`~ArgumentParser.parse_args`. This is useful for testing at the interactive prompt::" msgstr "" -#: ../../library/argparse.rst:1637 msgid "" ">>> parser = argparse.ArgumentParser()\n" ">>> parser.add_argument(\n" @@ -2334,24 +1457,15 @@ msgid "" "Namespace(accumulate=, integers=[1, 2, 3, 4])" msgstr "" -#: ../../library/argparse.rst:1652 msgid "The Namespace object" msgstr "" -#: ../../library/argparse.rst:1656 -msgid "" -"Simple class used by default by :meth:`~ArgumentParser.parse_args` to create " -"an object holding attributes and return it." +msgid "Simple class used by default by :meth:`~ArgumentParser.parse_args` to create an object holding attributes and return it." msgstr "" -#: ../../library/argparse.rst:1659 -msgid "" -"This class is deliberately simple, just an :class:`object` subclass with a " -"readable string representation. If you prefer to have dict-like view of the " -"attributes, you can use the standard Python idiom, :func:`vars`::" +msgid "This class is deliberately simple, just an :class:`object` subclass with a readable string representation. If you prefer to have dict-like view of the attributes, you can use the standard Python idiom, :func:`vars`::" msgstr "" -#: ../../library/argparse.rst:1663 msgid "" ">>> parser = argparse.ArgumentParser()\n" ">>> parser.add_argument('--foo')\n" @@ -2360,14 +1474,9 @@ msgid "" "{'foo': 'BAR'}" msgstr "" -#: ../../library/argparse.rst:1669 -msgid "" -"It may also be useful to have an :class:`ArgumentParser` assign attributes " -"to an already existing object, rather than a new :class:`Namespace` object. " -"This can be achieved by specifying the ``namespace=`` keyword argument::" +msgid "It may also be useful to have an :class:`ArgumentParser` assign attributes to an already existing object, rather than a new :class:`Namespace` object. This can be achieved by specifying the ``namespace=`` keyword argument::" msgstr "" -#: ../../library/argparse.rst:1673 msgid "" ">>> class C:\n" "... pass\n" @@ -2380,93 +1489,48 @@ msgid "" "'BAR'" msgstr "" -#: ../../library/argparse.rst:1685 msgid "Other utilities" msgstr "" -#: ../../library/argparse.rst:1688 msgid "Subcommands" msgstr "" -#: ../../library/argparse.rst:1695 -msgid "" -"Many programs split up their functionality into a number of subcommands, for " -"example, the ``svn`` program can invoke subcommands like ``svn checkout``, " -"``svn update``, and ``svn commit``. Splitting up functionality this way can " -"be a particularly good idea when a program performs several different " -"functions which require different kinds of command-line " -"arguments. :class:`ArgumentParser` supports the creation of such subcommands " -"with the :meth:`!add_subparsers` method. The :meth:`!add_subparsers` method " -"is normally called with no arguments and returns a special action object. " -"This object has a single method, :meth:`~_SubParsersAction.add_parser`, " -"which takes a command name and any :class:`!ArgumentParser` constructor " -"arguments, and returns an :class:`!ArgumentParser` object that can be " -"modified as usual." +msgid "Many programs split up their functionality into a number of subcommands, for example, the ``svn`` program can invoke subcommands like ``svn checkout``, ``svn update``, and ``svn commit``. Splitting up functionality this way can be a particularly good idea when a program performs several different functions which require different kinds of command-line arguments. :class:`ArgumentParser` supports the creation of such subcommands with the :meth:`!add_subparsers` method. The :meth:`!add_subparsers` method is normally called with no arguments and returns a special action object. This object has a single method, :meth:`~_SubParsersAction.add_parser`, which takes a command name and any :class:`!ArgumentParser` constructor arguments, and returns an :class:`!ArgumentParser` object that can be modified as usual." msgstr "" -#: ../../library/argparse.rst:1707 msgid "Description of parameters:" msgstr "" -#: ../../library/argparse.rst:1709 -msgid "" -"*title* - title for the sub-parser group in help output; by default " -"\"subcommands\" if description is provided, otherwise uses title for " -"positional arguments" +msgid "*title* - title for the sub-parser group in help output; by default \"subcommands\" if description is provided, otherwise uses title for positional arguments" msgstr "" -#: ../../library/argparse.rst:1713 -msgid "" -"*description* - description for the sub-parser group in help output, by " -"default ``None``" +msgid "*description* - description for the sub-parser group in help output, by default ``None``" msgstr "" -#: ../../library/argparse.rst:1716 -msgid "" -"*prog* - usage information that will be displayed with subcommand help, by " -"default the name of the program and any positional arguments before the " -"subparser argument" +msgid "*prog* - usage information that will be displayed with subcommand help, by default the name of the program and any positional arguments before the subparser argument" msgstr "" -#: ../../library/argparse.rst:1720 -msgid "" -"*parser_class* - class which will be used to create sub-parser instances, by " -"default the class of the current parser (e.g. :class:`ArgumentParser`)" +msgid "*parser_class* - class which will be used to create sub-parser instances, by default the class of the current parser (e.g. :class:`ArgumentParser`)" msgstr "" -#: ../../library/argparse.rst:1723 -msgid "" -"action_ - the basic type of action to be taken when this argument is " -"encountered at the command line" +msgid "action_ - the basic type of action to be taken when this argument is encountered at the command line" msgstr "" -#: ../../library/argparse.rst:1726 -msgid "" -"dest_ - name of the attribute under which subcommand name will be stored; by " -"default ``None`` and no value is stored" +msgid "dest_ - name of the attribute under which subcommand name will be stored; by default ``None`` and no value is stored" msgstr "" -#: ../../library/argparse.rst:1729 -msgid "" -"required_ - Whether or not a subcommand must be provided, by default " -"``False`` (added in 3.7)" +msgid "required_ - Whether or not a subcommand must be provided, by default ``False`` (added in 3.7)" msgstr "" -#: ../../library/argparse.rst:1732 msgid "help_ - help for sub-parser group in help output, by default ``None``" msgstr "" -#: ../../library/argparse.rst:1734 -msgid "" -"metavar_ - string presenting available subcommands in help; by default it is " -"``None`` and presents subcommands in form {cmd1, cmd2, ..}" +msgid "metavar_ - string presenting available subcommands in help; by default it is ``None`` and presents subcommands in form {cmd1, cmd2, ..}" msgstr "" -#: ../../library/argparse.rst:1737 msgid "Some example usage::" msgstr "" -#: ../../library/argparse.rst:1739 msgid "" ">>> # create the top-level parser\n" ">>> parser = argparse.ArgumentParser(prog='PROG')\n" @@ -2479,8 +1543,7 @@ msgid "" ">>>\n" ">>> # create the parser for the \"b\" command\n" ">>> parser_b = subparsers.add_parser('b', help='b help')\n" -">>> parser_b.add_argument('--baz', choices=('X', 'Y', 'Z'), help='baz " -"help')\n" +">>> parser_b.add_argument('--baz', choices=('X', 'Y', 'Z'), help='baz help')\n" ">>>\n" ">>> # parse some argument lists\n" ">>> parser.parse_args(['a', '12'])\n" @@ -2489,34 +1552,15 @@ msgid "" "Namespace(baz='Z', foo=True)" msgstr "" -#: ../../library/argparse.rst:1758 -msgid "" -"Note that the object returned by :meth:`parse_args` will only contain " -"attributes for the main parser and the subparser that was selected by the " -"command line (and not any other subparsers). So in the example above, when " -"the ``a`` command is specified, only the ``foo`` and ``bar`` attributes are " -"present, and when the ``b`` command is specified, only the ``foo`` and " -"``baz`` attributes are present." +msgid "Note that the object returned by :meth:`parse_args` will only contain attributes for the main parser and the subparser that was selected by the command line (and not any other subparsers). So in the example above, when the ``a`` command is specified, only the ``foo`` and ``bar`` attributes are present, and when the ``b`` command is specified, only the ``foo`` and ``baz`` attributes are present." msgstr "" -#: ../../library/argparse.rst:1765 -msgid "" -"If a subparser defines an argument with the same ``dest`` as the parent " -"parser, the two share a single namespace attribute, so the parent's value " -"won't be retained. Users should give them distinct ``dest`` values to keep " -"both." +msgid "If a subparser defines an argument with the same ``dest`` as the parent parser, the two share a single namespace attribute, so the parent's value won't be retained. Users should give them distinct ``dest`` values to keep both." msgstr "" -#: ../../library/argparse.rst:1770 -msgid "" -"Similarly, when a help message is requested from a subparser, only the help " -"for that particular parser will be printed. The help message will not " -"include parent parser or sibling parser messages. (A help message for each " -"subparser command, however, can be given by supplying the ``help=`` argument " -"to :meth:`~_SubParsersAction.add_parser` as above.)" +msgid "Similarly, when a help message is requested from a subparser, only the help for that particular parser will be printed. The help message will not include parent parser or sibling parser messages. (A help message for each subparser command, however, can be given by supplying the ``help=`` argument to :meth:`~_SubParsersAction.add_parser` as above.)" msgstr "" -#: ../../library/argparse.rst:1778 msgid "" ">>> parser.parse_args(['--help'])\n" "usage: PROG [-h] [--foo] {a,b} ...\n" @@ -2547,14 +1591,9 @@ msgid "" " --baz {X,Y,Z} baz help" msgstr "" -#: ../../library/argparse.rst:1806 -msgid "" -"The :meth:`add_subparsers` method also supports ``title`` and " -"``description`` keyword arguments. When either is present, the subparser's " -"commands will appear in their own group in the help output. For example::" +msgid "The :meth:`add_subparsers` method also supports ``title`` and ``description`` keyword arguments. When either is present, the subparser's commands will appear in their own group in the help output. For example::" msgstr "" -#: ../../library/argparse.rst:1810 msgid "" ">>> parser = argparse.ArgumentParser()\n" ">>> subparsers = parser.add_subparsers(title='subcommands',\n" @@ -2574,15 +1613,9 @@ msgid "" " {foo,bar} additional help" msgstr "" -#: ../../library/argparse.rst:1827 -msgid "" -"Furthermore, :meth:`~_SubParsersAction.add_parser` supports an additional " -"*aliases* argument, which allows multiple strings to refer to the same " -"subparser. This example, like ``svn``, aliases ``co`` as a shorthand for " -"``checkout``::" +msgid "Furthermore, :meth:`~_SubParsersAction.add_parser` supports an additional *aliases* argument, which allows multiple strings to refer to the same subparser. This example, like ``svn``, aliases ``co`` as a shorthand for ``checkout``::" msgstr "" -#: ../../library/argparse.rst:1832 msgid "" ">>> parser = argparse.ArgumentParser()\n" ">>> subparsers = parser.add_subparsers()\n" @@ -2592,21 +1625,12 @@ msgid "" "Namespace(foo='bar')" msgstr "" -#: ../../library/argparse.rst:1839 -msgid "" -":meth:`~_SubParsersAction.add_parser` supports also an additional " -"*deprecated* argument, which allows to deprecate the subparser." +msgid ":meth:`~_SubParsersAction.add_parser` supports also an additional *deprecated* argument, which allows to deprecate the subparser." msgstr "" -#: ../../library/argparse.rst:1853 -msgid "" -"One particularly effective way of handling subcommands is to combine the use " -"of the :meth:`add_subparsers` method with calls to :meth:`set_defaults` so " -"that each subparser knows which Python function it should execute. For " -"example::" +msgid "One particularly effective way of handling subcommands is to combine the use of the :meth:`add_subparsers` method with calls to :meth:`set_defaults` so that each subparser knows which Python function it should execute. For example::" msgstr "" -#: ../../library/argparse.rst:1858 msgid "" ">>> # subcommand functions\n" ">>> def foo(args):\n" @@ -2641,17 +1665,9 @@ msgid "" "((XYZYX))" msgstr "" -#: ../../library/argparse.rst:1890 -msgid "" -"This way, you can let :meth:`parse_args` do the job of calling the " -"appropriate function after argument parsing is complete. Associating " -"functions with actions like this is typically the easiest way to handle the " -"different actions for each of your subparsers. However, if it is necessary " -"to check the name of the subparser that was invoked, the ``dest`` keyword " -"argument to the :meth:`add_subparsers` call will work::" +msgid "This way, you can let :meth:`parse_args` do the job of calling the appropriate function after argument parsing is complete. Associating functions with actions like this is typically the easiest way to handle the different actions for each of your subparsers. However, if it is necessary to check the name of the subparser that was invoked, the ``dest`` keyword argument to the :meth:`add_subparsers` call will work::" msgstr "" -#: ../../library/argparse.rst:1897 msgid "" ">>> parser = argparse.ArgumentParser()\n" ">>> subparsers = parser.add_subparsers(dest='subparser_name')\n" @@ -2663,48 +1679,29 @@ msgid "" "Namespace(subparser_name='2', y='frobble')" msgstr "" -#: ../../library/argparse.rst:1906 msgid "New *required* keyword-only parameter." msgstr "" -#: ../../library/argparse.rst:1909 -msgid "" -"Subparser's *prog* is no longer affected by a custom usage message in the " -"main parser." +msgid "Subparser's *prog* is no longer affected by a custom usage message in the main parser." msgstr "" -#: ../../library/argparse.rst:1915 msgid "FileType objects" msgstr "" -#: ../../library/argparse.rst:1919 -msgid "" -"The :class:`FileType` factory creates objects that can be passed to the type " -"argument of :meth:`ArgumentParser.add_argument`. Arguments that " -"have :class:`FileType` objects as their type will open command-line " -"arguments as files with the requested modes, buffer sizes, encodings and " -"error handling (see the :func:`open` function for more details)::" +msgid "The :class:`FileType` factory creates objects that can be passed to the type argument of :meth:`ArgumentParser.add_argument`. Arguments that have :class:`FileType` objects as their type will open command-line arguments as files with the requested modes, buffer sizes, encodings and error handling (see the :func:`open` function for more details)::" msgstr "" -#: ../../library/argparse.rst:1925 msgid "" ">>> parser = argparse.ArgumentParser()\n" ">>> parser.add_argument('--raw', type=argparse.FileType('wb', 0))\n" -">>> parser.add_argument('out', type=argparse.FileType('w', " -"encoding='UTF-8'))\n" +">>> parser.add_argument('out', type=argparse.FileType('w', encoding='UTF-8'))\n" ">>> parser.parse_args(['--raw', 'raw.dat', 'file.txt'])\n" -"Namespace(out=<_io.TextIOWrapper name='file.txt' mode='w' encoding='UTF-8'>, " -"raw=<_io.FileIO name='raw.dat' mode='wb'>)" +"Namespace(out=<_io.TextIOWrapper name='file.txt' mode='w' encoding='UTF-8'>, raw=<_io.FileIO name='raw.dat' mode='wb'>)" msgstr "" -#: ../../library/argparse.rst:1931 -msgid "" -"FileType objects understand the pseudo-argument ``'-'`` and automatically " -"convert this into :data:`sys.stdin` for readable :class:`FileType` objects " -"and :data:`sys.stdout` for writable :class:`FileType` objects::" +msgid "FileType objects understand the pseudo-argument ``'-'`` and automatically convert this into :data:`sys.stdin` for readable :class:`FileType` objects and :data:`sys.stdout` for writable :class:`FileType` objects::" msgstr "" -#: ../../library/argparse.rst:1935 msgid "" ">>> parser = argparse.ArgumentParser()\n" ">>> parser.add_argument('infile', type=argparse.FileType('r'))\n" @@ -2712,33 +1709,18 @@ msgid "" "Namespace(infile=<_io.TextIOWrapper name='' encoding='UTF-8'>)" msgstr "" -#: ../../library/argparse.rst:1942 -msgid "" -"If one argument uses *FileType* and then a subsequent argument fails, an " -"error is reported but the file is not automatically closed. This can also " -"clobber the output files. In this case, it would be better to wait until " -"after the parser has run and then use the :keyword:`with`-statement to " -"manage the files." +msgid "If one argument uses *FileType* and then a subsequent argument fails, an error is reported but the file is not automatically closed. This can also clobber the output files. In this case, it would be better to wait until after the parser has run and then use the :keyword:`with`-statement to manage the files." msgstr "" -#: ../../library/argparse.rst:1948 msgid "Added the *encoding* and *errors* parameters." msgstr "" -#: ../../library/argparse.rst:1955 msgid "Argument groups" msgstr "" -#: ../../library/argparse.rst:1960 -msgid "" -"By default, :class:`ArgumentParser` groups command-line arguments into " -"\"positional arguments\" and \"options\" when displaying help messages. When " -"there is a better conceptual grouping of arguments than this default one, " -"appropriate groups can be created using the :meth:`!add_argument_group` " -"method::" +msgid "By default, :class:`ArgumentParser` groups command-line arguments into \"positional arguments\" and \"options\" when displaying help messages. When there is a better conceptual grouping of arguments than this default one, appropriate groups can be created using the :meth:`!add_argument_group` method::" msgstr "" -#: ../../library/argparse.rst:1966 msgid "" ">>> parser = argparse.ArgumentParser(prog='PROG', add_help=False)\n" ">>> group = parser.add_argument_group('group')\n" @@ -2752,18 +1734,9 @@ msgid "" " --foo FOO foo help" msgstr "" -#: ../../library/argparse.rst:1977 -msgid "" -"The :meth:`add_argument_group` method returns an argument group object which " -"has an :meth:`~ArgumentParser.add_argument` method just like a " -"regular :class:`ArgumentParser`. When an argument is added to the group, " -"the parser treats it just like a normal argument, but displays the argument " -"in a separate group for help messages. The :meth:`!add_argument_group` " -"method accepts *title* and *description* arguments which can be used to " -"customize this display::" +msgid "The :meth:`add_argument_group` method returns an argument group object which has an :meth:`~ArgumentParser.add_argument` method just like a regular :class:`ArgumentParser`. When an argument is added to the group, the parser treats it just like a normal argument, but displays the argument in a separate group for help messages. The :meth:`!add_argument_group` method accepts *title* and *description* arguments which can be used to customize this display::" msgstr "" -#: ../../library/argparse.rst:1985 msgid "" ">>> parser = argparse.ArgumentParser(prog='PROG', add_help=False)\n" ">>> group1 = parser.add_argument_group('group1', 'group1 description')\n" @@ -2784,50 +1757,27 @@ msgid "" " --bar BAR bar help" msgstr "" -#: ../../library/argparse.rst:2003 -msgid "" -"The optional, keyword-only parameters argument_default_ and " -"conflict_handler_ allow for finer-grained control of the behavior of the " -"argument group. These parameters have the same meaning as in " -"the :class:`ArgumentParser` constructor, but apply specifically to the " -"argument group rather than the entire parser." +msgid "The optional, keyword-only parameters argument_default_ and conflict_handler_ allow for finer-grained control of the behavior of the argument group. These parameters have the same meaning as in the :class:`ArgumentParser` constructor, but apply specifically to the argument group rather than the entire parser." msgstr "" -#: ../../library/argparse.rst:2008 -msgid "" -"Note that any arguments not in your user-defined groups will end up back in " -"the usual \"positional arguments\" and \"optional arguments\" sections." +msgid "Note that any arguments not in your user-defined groups will end up back in the usual \"positional arguments\" and \"optional arguments\" sections." msgstr "" -#: ../../library/argparse.rst:2011 -msgid "" -"Within each argument group, arguments are displayed in help output in the " -"order in which they are added." +msgid "Within each argument group, arguments are displayed in help output in the order in which they are added." msgstr "" -#: ../../library/argparse.rst:2014 -msgid "" -"Calling :meth:`add_argument_group` on an argument group now raises an " -"exception. This nesting was never supported, often failed to work correctly, " -"and was unintentionally exposed through inheritance." +msgid "Calling :meth:`add_argument_group` on an argument group now raises an exception. This nesting was never supported, often failed to work correctly, and was unintentionally exposed through inheritance." msgstr "" -#: ../../library/argparse.rst:2019 msgid "Passing prefix_chars_ to :meth:`add_argument_group` is now deprecated." msgstr "" -#: ../../library/argparse.rst:2025 msgid "Mutual exclusion" msgstr "" -#: ../../library/argparse.rst:2029 -msgid "" -"Create a mutually exclusive group. :mod:`!argparse` will make sure that only " -"one of the arguments in the mutually exclusive group was present on the " -"command line::" +msgid "Create a mutually exclusive group. :mod:`!argparse` will make sure that only one of the arguments in the mutually exclusive group was present on the command line::" msgstr "" -#: ../../library/argparse.rst:2033 msgid "" ">>> parser = argparse.ArgumentParser(prog='PROG')\n" ">>> group = parser.add_mutually_exclusive_group()\n" @@ -2842,14 +1792,9 @@ msgid "" "PROG: error: argument --bar: not allowed with argument --foo" msgstr "" -#: ../../library/argparse.rst:2045 -msgid "" -"The :meth:`add_mutually_exclusive_group` method also accepts a *required* " -"argument, to indicate that at least one of the mutually exclusive arguments " -"is required::" +msgid "The :meth:`add_mutually_exclusive_group` method also accepts a *required* argument, to indicate that at least one of the mutually exclusive arguments is required::" msgstr "" -#: ../../library/argparse.rst:2049 msgid "" ">>> parser = argparse.ArgumentParser(prog='PROG')\n" ">>> group = parser.add_mutually_exclusive_group(required=True)\n" @@ -2860,16 +1805,9 @@ msgid "" "PROG: error: one of the arguments --foo --bar is required" msgstr "" -#: ../../library/argparse.rst:2057 -msgid "" -"Note that currently mutually exclusive argument groups do not support the " -"*title* and *description* arguments " -"of :meth:`~ArgumentParser.add_argument_group`. However, a mutually exclusive " -"group can be added to an argument group that has a title and description. " -"For example::" +msgid "Note that currently mutually exclusive argument groups do not support the *title* and *description* arguments of :meth:`~ArgumentParser.add_argument_group`. However, a mutually exclusive group can be added to an argument group that has a title and description. For example::" msgstr "" -#: ../../library/argparse.rst:2063 msgid "" ">>> parser = argparse.ArgumentParser(prog='PROG')\n" ">>> group = parser.add_argument_group('Group title', 'Group description')\n" @@ -2889,28 +1827,15 @@ msgid "" " --bar BAR bar help" msgstr "" -#: ../../library/argparse.rst:2080 -msgid "" -"Calling :meth:`add_argument_group` or :meth:`add_mutually_exclusive_group` " -"on a mutually exclusive group now raises an exception. This nesting was " -"never supported, often failed to work correctly, and was unintentionally " -"exposed through inheritance." +msgid "Calling :meth:`add_argument_group` or :meth:`add_mutually_exclusive_group` on a mutually exclusive group now raises an exception. This nesting was never supported, often failed to work correctly, and was unintentionally exposed through inheritance." msgstr "" -#: ../../library/argparse.rst:2088 msgid "Parser defaults" msgstr "" -#: ../../library/argparse.rst:2092 -msgid "" -"Most of the time, the attributes of the object returned " -"by :meth:`parse_args` will be fully determined by inspecting the command-" -"line arguments and the argument actions. :meth:`set_defaults` allows some " -"additional attributes that are determined without any inspection of the " -"command line to be added::" +msgid "Most of the time, the attributes of the object returned by :meth:`parse_args` will be fully determined by inspecting the command-line arguments and the argument actions. :meth:`set_defaults` allows some additional attributes that are determined without any inspection of the command line to be added::" msgstr "" -#: ../../library/argparse.rst:2098 msgid "" ">>> parser = argparse.ArgumentParser()\n" ">>> parser.add_argument('foo', type=int)\n" @@ -2919,15 +1844,9 @@ msgid "" "Namespace(bar=42, baz='badger', foo=736)" msgstr "" -#: ../../library/argparse.rst:2104 -msgid "" -"Note that defaults can be set at both the parser level " -"using :meth:`set_defaults` and at the argument level " -"using :meth:`add_argument`. If both are called for the same argument, the " -"last default set for an argument is used::" +msgid "Note that defaults can be set at both the parser level using :meth:`set_defaults` and at the argument level using :meth:`add_argument`. If both are called for the same argument, the last default set for an argument is used::" msgstr "" -#: ../../library/argparse.rst:2108 msgid "" ">>> parser = argparse.ArgumentParser()\n" ">>> parser.add_argument('--foo', default='bar')\n" @@ -2936,21 +1855,12 @@ msgid "" "Namespace(foo='spam')" msgstr "" -#: ../../library/argparse.rst:2114 -msgid "" -"Parser-level defaults can be particularly useful when working with multiple " -"parsers. See the :meth:`~ArgumentParser.add_subparsers` method for an " -"example of this type." +msgid "Parser-level defaults can be particularly useful when working with multiple parsers. See the :meth:`~ArgumentParser.add_subparsers` method for an example of this type." msgstr "" -#: ../../library/argparse.rst:2120 -msgid "" -"Get the default value for a namespace attribute, as set by " -"either :meth:`~ArgumentParser.add_argument` or " -"by :meth:`~ArgumentParser.set_defaults`::" +msgid "Get the default value for a namespace attribute, as set by either :meth:`~ArgumentParser.add_argument` or by :meth:`~ArgumentParser.set_defaults`::" msgstr "" -#: ../../library/argparse.rst:2124 msgid "" ">>> parser = argparse.ArgumentParser()\n" ">>> parser.add_argument('--foo', default='badger')\n" @@ -2958,70 +1868,36 @@ msgid "" "'badger'" msgstr "" -#: ../../library/argparse.rst:2131 msgid "Printing help" msgstr "" -#: ../../library/argparse.rst:2133 -msgid "" -"In most typical applications, :meth:`~ArgumentParser.parse_args` will take " -"care of formatting and printing any usage or error messages. However, " -"several formatting methods are available:" +msgid "In most typical applications, :meth:`~ArgumentParser.parse_args` will take care of formatting and printing any usage or error messages. However, several formatting methods are available:" msgstr "" -#: ../../library/argparse.rst:2139 -msgid "" -"Print a brief description of how the :class:`ArgumentParser` should be " -"invoked on the command line. If *file* is ``None``, :data:`sys.stdout` is " -"assumed." +msgid "Print a brief description of how the :class:`ArgumentParser` should be invoked on the command line. If *file* is ``None``, :data:`sys.stdout` is assumed." msgstr "" -#: ../../library/argparse.rst:2145 -msgid "" -"Print a help message, including the program usage and information about the " -"arguments registered with the :class:`ArgumentParser`. If *file* is " -"``None``, :data:`sys.stdout` is assumed." +msgid "Print a help message, including the program usage and information about the arguments registered with the :class:`ArgumentParser`. If *file* is ``None``, :data:`sys.stdout` is assumed." msgstr "" -#: ../../library/argparse.rst:2149 -msgid "" -"There are also variants of these methods that simply return a string instead " -"of printing it:" +msgid "There are also variants of these methods that simply return a string instead of printing it:" msgstr "" -#: ../../library/argparse.rst:2154 -msgid "" -"Return a string containing a brief description of how " -"the :class:`ArgumentParser` should be invoked on the command line." +msgid "Return a string containing a brief description of how the :class:`ArgumentParser` should be invoked on the command line." msgstr "" -#: ../../library/argparse.rst:2159 -msgid "" -"Return a string containing a help message, including the program usage and " -"information about the arguments registered with the :class:`ArgumentParser`." +msgid "Return a string containing a help message, including the program usage and information about the arguments registered with the :class:`ArgumentParser`." msgstr "" -#: ../../library/argparse.rst:2164 msgid "Partial parsing" msgstr "" -#: ../../library/argparse.rst:2168 -msgid "" -"Sometimes a script only needs to handle a specific set of command-line " -"arguments, leaving any unrecognized arguments for another script or program. " -"In these cases, the :meth:`~ArgumentParser.parse_known_args` method can be " -"useful." +msgid "Sometimes a script only needs to handle a specific set of command-line arguments, leaving any unrecognized arguments for another script or program. In these cases, the :meth:`~ArgumentParser.parse_known_args` method can be useful." msgstr "" -#: ../../library/argparse.rst:2173 -msgid "" -"This method works similarly to :meth:`~ArgumentParser.parse_args`, but it " -"does not raise an error for extra, unrecognized arguments. Instead, it " -"parses the known arguments and returns a two item tuple that contains the " -"populated namespace and the list of any unrecognized arguments." +msgid "This method works similarly to :meth:`~ArgumentParser.parse_args`, but it does not raise an error for extra, unrecognized arguments. Instead, it parses the known arguments and returns a two item tuple that contains the populated namespace and the list of any unrecognized arguments." msgstr "" -#: ../../library/argparse.rst:2180 msgid "" ">>> parser = argparse.ArgumentParser()\n" ">>> parser.add_argument('--foo', action='store_true')\n" @@ -3030,64 +1906,36 @@ msgid "" "(Namespace(bar='BAR', foo=True), ['--badger', 'spam'])" msgstr "" -#: ../../library/argparse.rst:2187 -msgid "" -":ref:`Prefix matching ` rules apply " -"to :meth:`~ArgumentParser.parse_known_args`. The parser may consume an " -"option even if it's just a prefix of one of its known options, instead of " -"leaving it in the remaining arguments list." +msgid ":ref:`Prefix matching ` rules apply to :meth:`~ArgumentParser.parse_known_args`. The parser may consume an option even if it's just a prefix of one of its known options, instead of leaving it in the remaining arguments list." msgstr "" -#: ../../library/argparse.rst:2194 msgid "Customizing file parsing" msgstr "" -#: ../../library/argparse.rst:2198 -msgid "" -"Arguments that are read from a file (see the *fromfile_prefix_chars* keyword " -"argument to the :class:`ArgumentParser` constructor) are read one argument " -"per line. :meth:`convert_arg_line_to_args` can be overridden for fancier " -"reading." +msgid "Arguments that are read from a file (see the *fromfile_prefix_chars* keyword argument to the :class:`ArgumentParser` constructor) are read one argument per line. :meth:`convert_arg_line_to_args` can be overridden for fancier reading." msgstr "" -#: ../../library/argparse.rst:2203 -msgid "" -"This method takes a single argument *arg_line* which is a string read from " -"the argument file. It returns a list of arguments parsed from this string. " -"The method is called once per line read from the argument file, in order." +msgid "This method takes a single argument *arg_line* which is a string read from the argument file. It returns a list of arguments parsed from this string. The method is called once per line read from the argument file, in order." msgstr "" -#: ../../library/argparse.rst:2207 -msgid "" -"A useful override of this method is one that treats each space-separated " -"word as an argument. The following example demonstrates how to do this::" +msgid "A useful override of this method is one that treats each space-separated word as an argument. The following example demonstrates how to do this::" msgstr "" -#: ../../library/argparse.rst:2210 msgid "" "class MyArgumentParser(argparse.ArgumentParser):\n" " def convert_arg_line_to_args(self, arg_line):\n" " return arg_line.split()" msgstr "" -#: ../../library/argparse.rst:2214 -msgid "" -"Note that with this override an argument can no longer contain spaces, since " -"each space-separated word becomes a separate argument." +msgid "Note that with this override an argument can no longer contain spaces, since each space-separated word becomes a separate argument." msgstr "" -#: ../../library/argparse.rst:2219 msgid "Exiting methods" msgstr "" -#: ../../library/argparse.rst:2223 -msgid "" -"This method terminates the program, exiting with the specified *status* and, " -"if given, it prints a *message* to :data:`sys.stderr` before that. The user " -"can override this method to handle these steps differently::" +msgid "This method terminates the program, exiting with the specified *status* and, if given, it prints a *message* to :data:`sys.stderr` before that. The user can override this method to handle these steps differently::" msgstr "" -#: ../../library/argparse.rst:2227 msgid "" "class ErrorCatchingArgumentParser(argparse.ArgumentParser):\n" " def exit(self, status=0, message=None):\n" @@ -3096,42 +1944,21 @@ msgid "" " exit(status)" msgstr "" -#: ../../library/argparse.rst:2235 -msgid "" -"This method prints a usage message, including the *message*, " -"to :data:`sys.stderr` and terminates the program with a status code of 2." +msgid "This method prints a usage message, including the *message*, to :data:`sys.stderr` and terminates the program with a status code of 2." msgstr "" -#: ../../library/argparse.rst:2240 msgid "Intermixed parsing" msgstr "" -#: ../../library/argparse.rst:2245 -msgid "" -"A number of Unix commands allow the user to intermix optional arguments with " -"positional arguments. The :meth:`~ArgumentParser.parse_intermixed_args` " -"and :meth:`~ArgumentParser.parse_known_intermixed_args` methods support this " -"parsing style." +msgid "A number of Unix commands allow the user to intermix optional arguments with positional arguments. The :meth:`~ArgumentParser.parse_intermixed_args` and :meth:`~ArgumentParser.parse_known_intermixed_args` methods support this parsing style." msgstr "" -#: ../../library/argparse.rst:2250 -msgid "" -"These parsers do not support all the :mod:`!argparse` features, and will " -"raise exceptions if unsupported features are used. In particular, " -"subparsers, and mutually exclusive groups that include both optionals and " -"positionals are not supported." +msgid "These parsers do not support all the :mod:`!argparse` features, and will raise exceptions if unsupported features are used. In particular, subparsers, and mutually exclusive groups that include both optionals and positionals are not supported." msgstr "" -#: ../../library/argparse.rst:2255 -msgid "" -"The following example shows the difference " -"between :meth:`~ArgumentParser.parse_known_args` " -"and :meth:`~ArgumentParser.parse_intermixed_args`: the former returns " -"``['2', '3']`` as unparsed arguments, while the latter collects all the " -"positionals into ``rest``. ::" +msgid "The following example shows the difference between :meth:`~ArgumentParser.parse_known_args` and :meth:`~ArgumentParser.parse_intermixed_args`: the former returns ``['2', '3']`` as unparsed arguments, while the latter collects all the positionals into ``rest``. ::" msgstr "" -#: ../../library/argparse.rst:2261 msgid "" ">>> parser = argparse.ArgumentParser()\n" ">>> parser.add_argument('--foo')\n" @@ -3143,48 +1970,27 @@ msgid "" "Namespace(cmd='doit', foo='bar', rest=[1, 2, 3])" msgstr "" -#: ../../library/argparse.rst:2270 -msgid "" -":meth:`~ArgumentParser.parse_known_intermixed_args` returns a two item tuple " -"containing the populated namespace and the list of remaining argument " -"strings. :meth:`~ArgumentParser.parse_intermixed_args` raises an error if " -"there are any remaining unparsed argument strings." +msgid ":meth:`~ArgumentParser.parse_known_intermixed_args` returns a two item tuple containing the populated namespace and the list of remaining argument strings. :meth:`~ArgumentParser.parse_intermixed_args` raises an error if there are any remaining unparsed argument strings." msgstr "" -#: ../../library/argparse.rst:2279 msgid "Registering custom types or actions" msgstr "" -#: ../../library/argparse.rst:2283 -msgid "" -"Sometimes it's desirable to use a custom string in error messages to provide " -"more user-friendly output. In these cases, :meth:`!register` can be used to " -"register custom actions or types with a parser and allow you to reference " -"the type by their registered name instead of their callable name." +msgid "Sometimes it's desirable to use a custom string in error messages to provide more user-friendly output. In these cases, :meth:`!register` can be used to register custom actions or types with a parser and allow you to reference the type by their registered name instead of their callable name." msgstr "" -#: ../../library/argparse.rst:2288 -msgid "" -"The :meth:`!register` method accepts three arguments - a *registry_name*, " -"specifying the internal registry where the object will be stored (e.g., " -"``action``, ``type``), *value*, which is the key under which the object will " -"be registered, and object, the callable to be registered." +msgid "The :meth:`!register` method accepts three arguments - a *registry_name*, specifying the internal registry where the object will be stored (e.g., ``action``, ``type``), *value*, which is the key under which the object will be registered, and object, the callable to be registered." msgstr "" -#: ../../library/argparse.rst:2293 -msgid "" -"The following example shows how to register a custom type with a parser::" +msgid "The following example shows how to register a custom type with a parser::" msgstr "" -#: ../../library/argparse.rst:2295 msgid "" ">>> import argparse\n" ">>> parser = argparse.ArgumentParser()\n" ">>> parser.register('type', 'hexadecimal integer', lambda s: int(s, 16))\n" ">>> parser.add_argument('--foo', type='hexadecimal integer')\n" -"_StoreAction(option_strings=['--foo'], dest='foo', nargs=None, const=None, " -"default=None, type='hexadecimal integer', choices=None, required=False, " -"help=None, metavar=None, deprecated=False)\n" +"_StoreAction(option_strings=['--foo'], dest='foo', nargs=None, const=None, default=None, type='hexadecimal integer', choices=None, required=False, help=None, metavar=None, deprecated=False)\n" ">>> parser.parse_args(['--foo', '0xFA'])\n" "Namespace(foo=250)\n" ">>> parser.parse_args(['--foo', '1.2'])\n" @@ -3192,42 +1998,29 @@ msgid "" "PROG: error: argument --foo: invalid 'hexadecimal integer' value: '1.2'" msgstr "" -#: ../../library/argparse.rst:2307 msgid "Exceptions" msgstr "" -#: ../../library/argparse.rst:2311 msgid "An error from creating or using an argument (optional or positional)." msgstr "" -#: ../../library/argparse.rst:2313 -msgid "" -"The string value of this exception is the message, augmented with " -"information about the argument that caused it." +msgid "The string value of this exception is the message, augmented with information about the argument that caused it." msgstr "" -#: ../../library/argparse.rst:2318 -msgid "" -"Raised when something goes wrong converting a command line string to a type." +msgid "Raised when something goes wrong converting a command line string to a type." msgstr "" -#: ../../library/argparse.rst:2322 msgid "Guides and Tutorials" msgstr "" -#: ../../library/argparse.rst:907 msgid "? (question mark)" msgstr "" -#: ../../library/argparse.rst:907 ../../library/argparse.rst:939 -#: ../../library/argparse.rst:953 msgid "in argparse module" msgstr "" -#: ../../library/argparse.rst:939 msgid "* (asterisk)" msgstr "" -#: ../../library/argparse.rst:953 msgid "+ (plus)" msgstr "" diff --git a/library/array.po b/library/array.po index 3ac0a08c..e1136324 100644 --- a/library/array.po +++ b/library/array.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:54+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -25,442 +25,255 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/array.rst:2 msgid ":mod:`!array` --- Efficient arrays of numeric values" msgstr "" -#: ../../library/array.rst:11 -msgid "" -"This module defines an object type which can compactly represent an array of " -"basic values: characters, integers, floating-point numbers. Arrays are " -"mutable :term:`sequence` types and behave very much like lists, except that " -"the type of objects stored in them is constrained. The type is specified at " -"object creation time by using a :dfn:`type code`, which is a single " -"character. The following type codes are defined:" +msgid "This module defines an object type which can compactly represent an array of basic values: characters, integers, floating-point numbers. Arrays are mutable :term:`sequence` types and behave very much like lists, except that the type of objects stored in them is constrained. The type is specified at object creation time by using a :dfn:`type code`, which is a single character. The following type codes are defined:" msgstr "" -#: ../../library/array.rst:19 msgid "Type code" msgstr "" -#: ../../library/array.rst:19 msgid "C Type" msgstr "" -#: ../../library/array.rst:19 msgid "Python Type" msgstr "" -#: ../../library/array.rst:19 msgid "Minimum size in bytes" msgstr "" -#: ../../library/array.rst:19 msgid "Notes" msgstr "" -#: ../../library/array.rst:21 msgid "``'b'``" msgstr "" -#: ../../library/array.rst:21 msgid "signed char" msgstr "" -#: ../../library/array.rst:21 ../../library/array.rst:23 -#: ../../library/array.rst:29 ../../library/array.rst:31 -#: ../../library/array.rst:33 ../../library/array.rst:35 -#: ../../library/array.rst:37 ../../library/array.rst:39 -#: ../../library/array.rst:41 ../../library/array.rst:43 msgid "int" msgstr "" -#: ../../library/array.rst:21 ../../library/array.rst:23 msgid "1" msgstr "" -#: ../../library/array.rst:23 msgid "``'B'``" msgstr "" -#: ../../library/array.rst:23 msgid "unsigned char" msgstr "" -#: ../../library/array.rst:25 msgid "``'u'``" msgstr "" -#: ../../library/array.rst:25 msgid "wchar_t" msgstr "" -#: ../../library/array.rst:25 ../../library/array.rst:27 msgid "Unicode character" msgstr "" -#: ../../library/array.rst:25 ../../library/array.rst:29 -#: ../../library/array.rst:31 ../../library/array.rst:33 -#: ../../library/array.rst:35 msgid "2" msgstr "" -#: ../../library/array.rst:25 msgid "\\(1)" msgstr "" -#: ../../library/array.rst:27 msgid "``'w'``" msgstr "" -#: ../../library/array.rst:27 msgid "Py_UCS4" msgstr "" -#: ../../library/array.rst:27 ../../library/array.rst:37 -#: ../../library/array.rst:39 ../../library/array.rst:45 msgid "4" msgstr "" -#: ../../library/array.rst:27 msgid "\\(2)" msgstr "" -#: ../../library/array.rst:29 msgid "``'h'``" msgstr "" -#: ../../library/array.rst:29 msgid "signed short" msgstr "" -#: ../../library/array.rst:31 msgid "``'H'``" msgstr "" -#: ../../library/array.rst:31 msgid "unsigned short" msgstr "" -#: ../../library/array.rst:33 msgid "``'i'``" msgstr "" -#: ../../library/array.rst:33 msgid "signed int" msgstr "" -#: ../../library/array.rst:35 msgid "``'I'``" msgstr "" -#: ../../library/array.rst:35 msgid "unsigned int" msgstr "" -#: ../../library/array.rst:37 msgid "``'l'``" msgstr "" -#: ../../library/array.rst:37 msgid "signed long" msgstr "" -#: ../../library/array.rst:39 msgid "``'L'``" msgstr "" -#: ../../library/array.rst:39 msgid "unsigned long" msgstr "" -#: ../../library/array.rst:41 msgid "``'q'``" msgstr "" -#: ../../library/array.rst:41 msgid "signed long long" msgstr "" -#: ../../library/array.rst:41 ../../library/array.rst:43 -#: ../../library/array.rst:47 msgid "8" msgstr "" -#: ../../library/array.rst:43 msgid "``'Q'``" msgstr "" -#: ../../library/array.rst:43 msgid "unsigned long long" msgstr "" -#: ../../library/array.rst:45 msgid "``'f'``" msgstr "" -#: ../../library/array.rst:45 ../../library/array.rst:47 msgid "float" msgstr "" -#: ../../library/array.rst:47 msgid "``'d'``" msgstr "" -#: ../../library/array.rst:47 msgid "double" msgstr "" -#: ../../library/array.rst:50 msgid "Notes:" msgstr "" -#: ../../library/array.rst:53 msgid "It can be 16 bits or 32 bits depending on the platform." msgstr "" -#: ../../library/array.rst:55 -msgid "" -"``array('u')`` now uses :c:type:`wchar_t` as C type instead of deprecated " -"``Py_UNICODE``. This change doesn't affect its behavior because " -"``Py_UNICODE`` is alias of :c:type:`wchar_t` since Python 3.3." +msgid "``array('u')`` now uses :c:type:`wchar_t` as C type instead of deprecated ``Py_UNICODE``. This change doesn't affect its behavior because ``Py_UNICODE`` is alias of :c:type:`wchar_t` since Python 3.3." msgstr "" -#: ../../library/array.rst:60 msgid "Please migrate to ``'w'`` typecode." msgstr "" -#: ../../library/array.rst:68 -msgid "" -"The :ref:`ctypes ` and :ref:`struct ` modules, as well as third-party modules like `numpy `__, use similar -- but " -"slightly different -- type codes." +msgid "The :ref:`ctypes ` and :ref:`struct ` modules, as well as third-party modules like `numpy `__, use similar -- but slightly different -- type codes." msgstr "" -#: ../../library/array.rst:74 -msgid "" -"The actual representation of values is determined by the machine " -"architecture (strictly speaking, by the C implementation). The actual size " -"can be accessed through the :attr:`array.itemsize` attribute." +msgid "The actual representation of values is determined by the machine architecture (strictly speaking, by the C implementation). The actual size can be accessed through the :attr:`array.itemsize` attribute." msgstr "" -#: ../../library/array.rst:78 msgid "The module defines the following item:" msgstr "" -#: ../../library/array.rst:83 msgid "A string with all available type codes." msgstr "" -#: ../../library/array.rst:86 msgid "The module defines the following type:" msgstr "" -#: ../../library/array.rst:91 -msgid "" -"A new array whose items are restricted by *typecode*, and initialized from " -"the optional *initializer* value, which must be a :class:`bytes` " -"or :class:`bytearray` object, a Unicode string, or iterable over elements of " -"the appropriate type." +msgid "A new array whose items are restricted by *typecode*, and initialized from the optional *initializer* value, which must be a :class:`bytes` or :class:`bytearray` object, a Unicode string, or iterable over elements of the appropriate type." msgstr "" -#: ../../library/array.rst:96 -msgid "" -"If given a :class:`bytes` or :class:`bytearray` object, the initializer is " -"passed to the new array's :meth:`frombytes` method; if given a Unicode " -"string, the initializer is passed to the :meth:`fromunicode` method; " -"otherwise, the initializer's iterator is passed to the :meth:`extend` method " -"to add initial items to the array." +msgid "If given a :class:`bytes` or :class:`bytearray` object, the initializer is passed to the new array's :meth:`frombytes` method; if given a Unicode string, the initializer is passed to the :meth:`fromunicode` method; otherwise, the initializer's iterator is passed to the :meth:`extend` method to add initial items to the array." msgstr "" -#: ../../library/array.rst:103 -msgid "" -"Array objects support the ordinary :ref:`mutable ` :term:`sequence` operations of indexing, slicing, concatenation, " -"and multiplication. When using slice assignment, the assigned value must be " -"an array object with the same type code; in all other " -"cases, :exc:`TypeError` is raised. Array objects also implement the buffer " -"interface, and may be used wherever :term:`bytes-like objects ` are supported." +msgid "Array objects support the ordinary :ref:`mutable ` :term:`sequence` operations of indexing, slicing, concatenation, and multiplication. When using slice assignment, the assigned value must be an array object with the same type code; in all other cases, :exc:`TypeError` is raised. Array objects also implement the buffer interface, and may be used wherever :term:`bytes-like objects ` are supported." msgstr "" -#: ../../library/array.rst:109 msgid "Arrays are :ref:`generic ` over the type of their contents." msgstr "" -#: ../../library/array.rst:111 -msgid "" -"Raises an :ref:`auditing event ` ``array.__new__`` with arguments " -"``typecode``, ``initializer``." +msgid "Raises an :ref:`auditing event ` ``array.__new__`` with arguments ``typecode``, ``initializer``." msgstr "" -#: ../../library/array.rst:116 msgid "The typecode character used to create the array." msgstr "" -#: ../../library/array.rst:121 msgid "The length in bytes of one array item in the internal representation." msgstr "" -#: ../../library/array.rst:126 msgid "Append a new item with the specified value to the end of the array." msgstr "" -#: ../../library/array.rst:131 -msgid "" -"Return a tuple ``(address, length)`` giving the current memory address and " -"the length in elements of the buffer used to hold array's contents. The " -"size of the memory buffer in bytes can be computed as ``array.buffer_info()" -"[1] * array.itemsize``. This is occasionally useful when working with low-" -"level (and inherently unsafe) I/O interfaces that require memory addresses, " -"such as certain :c:func:`!ioctl` operations. The returned numbers are valid " -"as long as the array exists and no length-changing operations are applied to " -"it." +msgid "Return a tuple ``(address, length)`` giving the current memory address and the length in elements of the buffer used to hold array's contents. The size of the memory buffer in bytes can be computed as ``array.buffer_info()[1] * array.itemsize``. This is occasionally useful when working with low-level (and inherently unsafe) I/O interfaces that require memory addresses, such as certain :c:func:`!ioctl` operations. The returned numbers are valid as long as the array exists and no length-changing operations are applied to it." msgstr "" -#: ../../library/array.rst:141 -msgid "" -"When using array objects from code written in C or C++ (the only way to " -"effectively make use of this information), it makes more sense to use the " -"buffer interface supported by array objects. This method is maintained for " -"backward compatibility and should be avoided in new code. The buffer " -"interface is documented in :ref:`bufferobjects`." +msgid "When using array objects from code written in C or C++ (the only way to effectively make use of this information), it makes more sense to use the buffer interface supported by array objects. This method is maintained for backward compatibility and should be avoided in new code. The buffer interface is documented in :ref:`bufferobjects`." msgstr "" -#: ../../library/array.rst:150 -msgid "" -"\"Byteswap\" all items of the array. This is only supported for values " -"which are 1, 2, 4, or 8 bytes in size; for other types of " -"values, :exc:`RuntimeError` is raised. It is useful when reading data from " -"a file written on a machine with a different byte order." +msgid "\"Byteswap\" all items of the array. This is only supported for values which are 1, 2, 4, or 8 bytes in size; for other types of values, :exc:`RuntimeError` is raised. It is useful when reading data from a file written on a machine with a different byte order." msgstr "" -#: ../../library/array.rst:158 msgid "Return the number of occurrences of *value* in the array." msgstr "" -#: ../../library/array.rst:163 -msgid "" -"Append items from *iterable* to the end of the array. If *iterable* is " -"another array, it must have *exactly* the same type code; if " -"not, :exc:`TypeError` will be raised. If *iterable* is not an array, it " -"must be iterable and its elements must be the right type to be appended to " -"the array." +msgid "Append items from *iterable* to the end of the array. If *iterable* is another array, it must have *exactly* the same type code; if not, :exc:`TypeError` will be raised. If *iterable* is not an array, it must be iterable and its elements must be the right type to be appended to the array." msgstr "" -#: ../../library/array.rst:171 -msgid "" -"Appends items from the :term:`bytes-like object`, interpreting its content " -"as an array of machine values (as if it had been read from a file using " -"the :meth:`fromfile` method)." +msgid "Appends items from the :term:`bytes-like object`, interpreting its content as an array of machine values (as if it had been read from a file using the :meth:`fromfile` method)." msgstr "" -#: ../../library/array.rst:175 msgid ":meth:`!fromstring` is renamed to :meth:`frombytes` for clarity." msgstr "" -#: ../../library/array.rst:181 -msgid "" -"Read *n* items (as machine values) from the :term:`file object` *f* and " -"append them to the end of the array. If less than *n* items are " -"available, :exc:`EOFError` is raised, but the items that were available are " -"still inserted into the array." +msgid "Read *n* items (as machine values) from the :term:`file object` *f* and append them to the end of the array. If less than *n* items are available, :exc:`EOFError` is raised, but the items that were available are still inserted into the array." msgstr "" -#: ../../library/array.rst:189 -msgid "" -"Append items from the list. This is equivalent to ``for x in list: " -"a.append(x)`` except that if there is a type error, the array is unchanged." +msgid "Append items from the list. This is equivalent to ``for x in list: a.append(x)`` except that if there is a type error, the array is unchanged." msgstr "" -#: ../../library/array.rst:195 -msgid "" -"Extends this array with data from the given Unicode string. The array must " -"have type code ``'u'`` or ``'w'``; otherwise a :exc:`ValueError` is raised. " -"Use ``array.frombytes(unicodestring.encode(enc))`` to append Unicode data to " -"an array of some other type." +msgid "Extends this array with data from the given Unicode string. The array must have type code ``'u'`` or ``'w'``; otherwise a :exc:`ValueError` is raised. Use ``array.frombytes(unicodestring.encode(enc))`` to append Unicode data to an array of some other type." msgstr "" -#: ../../library/array.rst:203 -msgid "" -"Return the smallest *i* such that *i* is the index of the first occurrence " -"of *value* in the array. The optional arguments *start* and *stop* can be " -"specified to search for *value* within a subsection of the array. " -"Raise :exc:`ValueError` if *value* is not found." +msgid "Return the smallest *i* such that *i* is the index of the first occurrence of *value* in the array. The optional arguments *start* and *stop* can be specified to search for *value* within a subsection of the array. Raise :exc:`ValueError` if *value* is not found." msgstr "" -#: ../../library/array.rst:208 msgid "Added optional *start* and *stop* parameters." msgstr "" -#: ../../library/array.rst:214 -msgid "" -"Insert a new item *value* in the array before position *index*. Negative " -"values are treated as being relative to the end of the array." +msgid "Insert a new item *value* in the array before position *index*. Negative values are treated as being relative to the end of the array." msgstr "" -#: ../../library/array.rst:220 -msgid "" -"Removes the item with the index *i* from the array and returns it. The " -"optional argument defaults to ``-1``, so that by default the last item is " -"removed and returned." +msgid "Removes the item with the index *i* from the array and returns it. The optional argument defaults to ``-1``, so that by default the last item is removed and returned." msgstr "" -#: ../../library/array.rst:227 msgid "Remove the first occurrence of *value* from the array." msgstr "" -#: ../../library/array.rst:232 msgid "Remove all elements from the array." msgstr "" -#: ../../library/array.rst:239 msgid "Reverse the order of the items in the array." msgstr "" -#: ../../library/array.rst:244 -msgid "" -"Convert the array to an array of machine values and return the bytes " -"representation (the same sequence of bytes that would be written to a file " -"by the :meth:`tofile` method.)" +msgid "Convert the array to an array of machine values and return the bytes representation (the same sequence of bytes that would be written to a file by the :meth:`tofile` method.)" msgstr "" -#: ../../library/array.rst:248 msgid ":meth:`!tostring` is renamed to :meth:`tobytes` for clarity." msgstr "" -#: ../../library/array.rst:254 msgid "Write all items (as machine values) to the :term:`file object` *f*." msgstr "" -#: ../../library/array.rst:259 msgid "Convert the array to an ordinary list with the same items." msgstr "" -#: ../../library/array.rst:264 -msgid "" -"Convert the array to a Unicode string. The array must have a type ``'u'`` " -"or ``'w'``; otherwise a :exc:`ValueError` is raised. Use " -"``array.tobytes().decode(enc)`` to obtain a Unicode string from an array of " -"some other type." +msgid "Convert the array to a Unicode string. The array must have a type ``'u'`` or ``'w'``; otherwise a :exc:`ValueError` is raised. Use ``array.tobytes().decode(enc)`` to obtain a Unicode string from an array of some other type." +msgstr "" + +msgid "The string representation of array objects has the form ``array(typecode, initializer)``. The *initializer* is omitted if the array is empty, otherwise it is a Unicode string if the *typecode* is ``'u'`` or ``'w'``, otherwise it is a list of numbers. The string representation is guaranteed to be able to be converted back to an array with the same type and value using :func:`eval`, so long as the :class:`~array.array` class has been imported using ``from array import array``. Variables ``inf`` and ``nan`` must also be defined if it contains corresponding floating-point values. Examples::" msgstr "" -#: ../../library/array.rst:269 -msgid "" -"The string representation of array objects has the form ``array(typecode, " -"initializer)``. The *initializer* is omitted if the array is empty, " -"otherwise it is a Unicode string if the *typecode* is ``'u'`` or ``'w'``, " -"otherwise it is a list of numbers. The string representation is guaranteed " -"to be able to be converted back to an array with the same type and value " -"using :func:`eval`, so long as the :class:`~array.array` class has been " -"imported using ``from array import array``. Variables ``inf`` and ``nan`` " -"must also be defined if it contains corresponding floating-point values. " -"Examples::" -msgstr "" - -#: ../../library/array.rst:281 msgid "" "array('l')\n" "array('w', 'hello \\u2641')\n" @@ -468,22 +281,17 @@ msgid "" "array('d', [1.0, 2.0, 3.14, -inf, nan])" msgstr "" -#: ../../library/array.rst:289 msgid "Module :mod:`struct`" msgstr "" -#: ../../library/array.rst:290 msgid "Packing and unpacking of heterogeneous binary data." msgstr "" -#: ../../library/array.rst:292 msgid "`NumPy `_" msgstr "" -#: ../../library/array.rst:293 msgid "The NumPy package defines another array type." msgstr "" -#: ../../library/array.rst:7 msgid "arrays" msgstr "" diff --git a/library/ast.po b/library/ast.po index ebf612fa..18a1657c 100644 --- a/library/ast.po +++ b/library/ast.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 07:47+0330\n" "PO-Revision-Date: 2021-06-28 00:54+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,41 +23,24 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/ast.rst:2 msgid ":mod:`!ast` --- Abstract syntax trees" msgstr "" -#: ../../library/ast.rst:14 msgid "**Source code:** :source:`Lib/ast.py`" msgstr "" -#: ../../library/ast.rst:18 -msgid "" -"The :mod:`!ast` module helps Python applications to process trees of the " -"Python abstract syntax grammar. The abstract syntax itself might change " -"with each Python release; this module helps to find out programmatically " -"what the current grammar looks like." +msgid "The :mod:`!ast` module helps Python applications to process trees of the Python abstract syntax grammar. The abstract syntax itself might change with each Python release; this module helps to find out programmatically what the current grammar looks like." msgstr "" -#: ../../library/ast.rst:23 -msgid "" -"An abstract syntax tree can be generated by " -"passing :data:`ast.PyCF_ONLY_AST` as a flag to the :func:`compile` built-in " -"function, or using the :func:`parse` helper provided in this module. The " -"result will be a tree of objects whose classes all inherit " -"from :class:`ast.AST`. An abstract syntax tree can be compiled into a " -"Python code object using the built-in :func:`compile` function." +msgid "An abstract syntax tree can be generated by passing :data:`ast.PyCF_ONLY_AST` as a flag to the :func:`compile` built-in function, or using the :func:`parse` helper provided in this module. The result will be a tree of objects whose classes all inherit from :class:`ast.AST`. An abstract syntax tree can be compiled into a Python code object using the built-in :func:`compile` function." msgstr "" -#: ../../library/ast.rst:33 msgid "Abstract grammar" msgstr "" -#: ../../library/ast.rst:35 msgid "The abstract grammar is currently defined as follows:" msgstr "" -#: ../../library/ast.rst:37 msgid "" "-- ASDL's 4 builtin types are:\n" "-- identifier, int, string, constant\n" @@ -73,8 +56,7 @@ msgid "" " stmt* body, expr* decorator_list, expr? returns,\n" " string? type_comment, type_param* type_params)\n" " | AsyncFunctionDef(identifier name, arguments args,\n" -" stmt* body, expr* decorator_list, expr? " -"returns,\n" +" stmt* body, expr* decorator_list, expr? returns,\n" " string? type_comment, type_param* type_params)\n" "\n" " | ClassDef(identifier name,\n" @@ -90,14 +72,11 @@ msgid "" " | TypeAlias(expr name, type_param* type_params, expr value)\n" " | AugAssign(expr target, operator op, expr value)\n" " -- 'simple' indicates that we annotate simple name without parens\n" -" | AnnAssign(expr target, expr annotation, expr? value, int " -"simple)\n" +" | AnnAssign(expr target, expr annotation, expr? value, int simple)\n" "\n" " -- use 'orelse' because else is a keyword in target languages\n" -" | For(expr target, expr iter, stmt* body, stmt* orelse, string? " -"type_comment)\n" -" | AsyncFor(expr target, expr iter, stmt* body, stmt* orelse, " -"string? type_comment)\n" +" | For(expr target, expr iter, stmt* body, stmt* orelse, string? type_comment)\n" +" | AsyncFor(expr target, expr iter, stmt* body, stmt* orelse, string? type_comment)\n" " | While(expr test, stmt* body, stmt* orelse)\n" " | If(expr test, stmt* body, stmt* orelse)\n" " | With(withitem* items, stmt* body, string? type_comment)\n" @@ -106,10 +85,8 @@ msgid "" " | Match(expr subject, match_case* cases)\n" "\n" " | Raise(expr? exc, expr? cause)\n" -" | Try(stmt* body, excepthandler* handlers, stmt* orelse, stmt* " -"finalbody)\n" -" | TryStar(stmt* body, excepthandler* handlers, stmt* orelse, stmt* " -"finalbody)\n" +" | Try(stmt* body, excepthandler* handlers, stmt* orelse, stmt* finalbody)\n" +" | TryStar(stmt* body, excepthandler* handlers, stmt* orelse, stmt* finalbody)\n" " | Assert(expr test, expr? msg)\n" "\n" " | Import(alias* names)\n" @@ -120,10 +97,8 @@ msgid "" " | Expr(expr value)\n" " | Pass | Break | Continue\n" "\n" -" -- col_offset is the byte offset in the utf8 string the parser " -"uses\n" -" attributes (int lineno, int col_offset, int? end_lineno, int? " -"end_col_offset)\n" +" -- col_offset is the byte offset in the utf8 string the parser uses\n" +" attributes (int lineno, int col_offset, int? end_lineno, int? end_col_offset)\n" "\n" " -- BoolOp() can use left & right?\n" " expr = BoolOp(boolop op, expr* values)\n" @@ -147,8 +122,7 @@ msgid "" " | Compare(expr left, cmpop* ops, expr* comparators)\n" " | Call(expr func, expr* args, keyword* keywords)\n" " | FormattedValue(expr value, int conversion, expr? format_spec)\n" -" | Interpolation(expr value, constant str, int conversion, expr? " -"format_spec)\n" +" | Interpolation(expr value, constant str, int conversion, expr? format_spec)\n" " | JoinedStr(expr* values)\n" " | TemplateStr(expr* values)\n" " | Constant(constant value, string? kind)\n" @@ -164,10 +138,8 @@ msgid "" " -- can appear only in Subscript\n" " | Slice(expr? lower, expr? upper, expr? step)\n" "\n" -" -- col_offset is the byte offset in the utf8 string the parser " -"uses\n" -" attributes (int lineno, int col_offset, int? end_lineno, int? " -"end_col_offset)\n" +" -- col_offset is the byte offset in the utf8 string the parser uses\n" +" attributes (int lineno, int col_offset, int? end_lineno, int? end_col_offset)\n" "\n" " expr_context = Load | Store | Del\n" "\n" @@ -183,25 +155,21 @@ msgid "" " comprehension = (expr target, expr iter, expr* ifs, int is_async)\n" "\n" " excepthandler = ExceptHandler(expr? type, identifier? name, stmt* body)\n" -" attributes (int lineno, int col_offset, int? end_lineno, " -"int? end_col_offset)\n" +" attributes (int lineno, int col_offset, int? end_lineno, int? end_col_offset)\n" "\n" " arguments = (arg* posonlyargs, arg* args, arg? vararg, arg* kwonlyargs,\n" " expr?* kw_defaults, arg? kwarg, expr* defaults)\n" "\n" " arg = (identifier arg, expr? annotation, string? type_comment)\n" -" attributes (int lineno, int col_offset, int? end_lineno, int? " -"end_col_offset)\n" +" attributes (int lineno, int col_offset, int? end_lineno, int? end_col_offset)\n" "\n" " -- keyword arguments supplied to call (NULL identifier for **kwargs)\n" " keyword = (identifier? arg, expr value)\n" -" attributes (int lineno, int col_offset, int? end_lineno, int? " -"end_col_offset)\n" +" attributes (int lineno, int col_offset, int? end_lineno, int? end_col_offset)\n" "\n" " -- import name with optional 'as' alias.\n" " alias = (identifier name, identifier? asname)\n" -" attributes (int lineno, int col_offset, int? end_lineno, int? " -"end_col_offset)\n" +" attributes (int lineno, int col_offset, int? end_lineno, int? end_col_offset)\n" "\n" " withitem = (expr context_expr, expr? optional_vars)\n" "\n" @@ -211,225 +179,113 @@ msgid "" " | MatchSingleton(constant value)\n" " | MatchSequence(pattern* patterns)\n" " | MatchMapping(expr* keys, pattern* patterns, identifier? rest)\n" -" | MatchClass(expr cls, pattern* patterns, identifier* kwd_attrs, " -"pattern* kwd_patterns)\n" +" | MatchClass(expr cls, pattern* patterns, identifier* kwd_attrs, pattern* kwd_patterns)\n" "\n" " | MatchStar(identifier? name)\n" -" -- The optional \"rest\" MatchMapping parameter handles " -"capturing extra mapping keys\n" +" -- The optional \"rest\" MatchMapping parameter handles capturing extra mapping keys\n" "\n" " | MatchAs(pattern? pattern, identifier? name)\n" " | MatchOr(pattern* patterns)\n" "\n" -" attributes (int lineno, int col_offset, int end_lineno, int " -"end_col_offset)\n" +" attributes (int lineno, int col_offset, int end_lineno, int end_col_offset)\n" "\n" " type_ignore = TypeIgnore(int lineno, string tag)\n" "\n" " type_param = TypeVar(identifier name, expr? bound, expr? default_value)\n" " | ParamSpec(identifier name, expr? default_value)\n" " | TypeVarTuple(identifier name, expr? default_value)\n" -" attributes (int lineno, int col_offset, int end_lineno, int " -"end_col_offset)\n" +" attributes (int lineno, int col_offset, int end_lineno, int end_col_offset)\n" "}\n" msgstr "" -#: ../../library/ast.rst:42 msgid "Node classes" msgstr "" -#: ../../library/ast.rst:46 -msgid "" -"This is the base of all AST node classes. The actual node classes are " -"derived from the :file:`Parser/Python.asdl` file, which is " -"reproduced :ref:`above `. They are defined in the :mod:`!" -"_ast` C module and re-exported in :mod:`!ast`." +msgid "This is the base of all AST node classes. The actual node classes are derived from the :file:`Parser/Python.asdl` file, which is reproduced :ref:`above `. They are defined in the :mod:`!_ast` C module and re-exported in :mod:`!ast`." msgstr "" -#: ../../library/ast.rst:51 -msgid "" -"There is one class defined for each left-hand side symbol in the abstract " -"grammar (for example, :class:`ast.stmt` or :class:`ast.expr`). In addition, " -"there is one class defined for each constructor on the right-hand side; " -"these classes inherit from the classes for the left-hand side trees. For " -"example, :class:`ast.BinOp` inherits from :class:`ast.expr`. For production " -"rules with alternatives (aka \"sums\"), the left-hand side class is " -"abstract: only instances of specific constructor nodes are ever created." +msgid "There is one class defined for each left-hand side symbol in the abstract grammar (for example, :class:`ast.stmt` or :class:`ast.expr`). In addition, there is one class defined for each constructor on the right-hand side; these classes inherit from the classes for the left-hand side trees. For example, :class:`ast.BinOp` inherits from :class:`ast.expr`. For production rules with alternatives (aka \"sums\"), the left-hand side class is abstract: only instances of specific constructor nodes are ever created." msgstr "" -#: ../../library/ast.rst:64 -msgid "" -"Each concrete class has an attribute :attr:`!_fields` which gives the names " -"of all child nodes." +msgid "Each concrete class has an attribute :attr:`!_fields` which gives the names of all child nodes." msgstr "" -#: ../../library/ast.rst:67 -msgid "" -"Each instance of a concrete class has one attribute for each child node, of " -"the type as defined in the grammar. For example, :class:`ast.BinOp` " -"instances have an attribute :attr:`left` of type :class:`ast.expr`." +msgid "Each instance of a concrete class has one attribute for each child node, of the type as defined in the grammar. For example, :class:`ast.BinOp` instances have an attribute :attr:`left` of type :class:`ast.expr`." msgstr "" -#: ../../library/ast.rst:71 -msgid "" -"If these attributes are marked as optional in the grammar (using a question " -"mark), the value might be ``None``. If the attributes can have zero-or-more " -"values (marked with an asterisk), the values are represented as Python " -"lists. All possible attributes must be present and have valid values when " -"compiling an AST with :func:`compile`." +msgid "If these attributes are marked as optional in the grammar (using a question mark), the value might be ``None``. If the attributes can have zero-or-more values (marked with an asterisk), the values are represented as Python lists. All possible attributes must be present and have valid values when compiling an AST with :func:`compile`." msgstr "" -#: ../../library/ast.rst:79 -msgid "" -"The :attr:`!_field_types` attribute on each concrete class is a dictionary " -"mapping field names (as also listed in :attr:`_fields`) to their types." +msgid "The :attr:`!_field_types` attribute on each concrete class is a dictionary mapping field names (as also listed in :attr:`_fields`) to their types." msgstr "" -#: ../../library/ast.rst:82 msgid "" ">>> ast.TypeVar._field_types\n" -"{'name': , 'bound': ast.expr | None, 'default_value': ast.expr " -"| None}" +"{'name': , 'bound': ast.expr | None, 'default_value': ast.expr | None}" msgstr "" -#: ../../library/ast.rst:94 -msgid "" -"Instances of :class:`ast.expr` and :class:`ast.stmt` subclasses " -"have :attr:`lineno`, :attr:`col_offset`, :attr:`end_lineno`, " -"and :attr:`end_col_offset` attributes. The :attr:`lineno` " -"and :attr:`end_lineno` are the first and last line numbers of source text " -"span (1-indexed so the first line is line 1) and the :attr:`col_offset` " -"and :attr:`end_col_offset` are the corresponding UTF-8 byte offsets of the " -"first and last tokens that generated the node. The UTF-8 offset is recorded " -"because the parser uses UTF-8 internally." +msgid "Instances of :class:`ast.expr` and :class:`ast.stmt` subclasses have :attr:`lineno`, :attr:`col_offset`, :attr:`end_lineno`, and :attr:`end_col_offset` attributes. The :attr:`lineno` and :attr:`end_lineno` are the first and last line numbers of source text span (1-indexed so the first line is line 1) and the :attr:`col_offset` and :attr:`end_col_offset` are the corresponding UTF-8 byte offsets of the first and last tokens that generated the node. The UTF-8 offset is recorded because the parser uses UTF-8 internally." msgstr "" -#: ../../library/ast.rst:103 -msgid "" -"Note that the end positions are not required by the compiler and are " -"therefore optional. The end offset is *after* the last symbol, for example " -"one can get the source segment of a one-line expression node using " -"``source_line[node.col_offset : node.end_col_offset]``." +msgid "Note that the end positions are not required by the compiler and are therefore optional. The end offset is *after* the last symbol, for example one can get the source segment of a one-line expression node using ``source_line[node.col_offset : node.end_col_offset]``." msgstr "" -#: ../../library/ast.rst:108 -msgid "" -"The constructor of a class :class:`ast.T` parses its arguments as follows:" +msgid "The constructor of a class :class:`ast.T` parses its arguments as follows:" msgstr "" -#: ../../library/ast.rst:110 -msgid "" -"If there are positional arguments, there must be as many as there are items " -"in :attr:`T._fields`; they will be assigned as attributes of these names." +msgid "If there are positional arguments, there must be as many as there are items in :attr:`T._fields`; they will be assigned as attributes of these names." msgstr "" -#: ../../library/ast.rst:112 -msgid "" -"If there are keyword arguments, they will set the attributes of the same " -"names to the given values." +msgid "If there are keyword arguments, they will set the attributes of the same names to the given values." msgstr "" -#: ../../library/ast.rst:115 -msgid "" -"For example, to create and populate an :class:`ast.UnaryOp` node, you could " -"use ::" +msgid "For example, to create and populate an :class:`ast.UnaryOp` node, you could use ::" msgstr "" -#: ../../library/ast.rst:118 msgid "" "node = ast.UnaryOp(ast.USub(), ast.Constant(5, lineno=0, col_offset=0),\n" " lineno=0, col_offset=0)" msgstr "" -#: ../../library/ast.rst:121 -msgid "" -"If a field that is optional in the grammar is omitted from the constructor, " -"it defaults to ``None``. If a list field is omitted, it defaults to the " -"empty list. If a field of type :class:`!ast.expr_context` is omitted, it " -"defaults to :class:`Load() `. If any other field is omitted, " -"a :exc:`DeprecationWarning` is raised and the AST node will not have this " -"field. In Python 3.15, this condition will raise an error." +msgid "If a field that is optional in the grammar is omitted from the constructor, it defaults to ``None``. If a list field is omitted, it defaults to the empty list. If a field of type :class:`!ast.expr_context` is omitted, it defaults to :class:`Load() `. If any other field is omitted, a :exc:`DeprecationWarning` is raised and the AST node will not have this field. In Python 3.15, this condition will raise an error." msgstr "" -#: ../../library/ast.rst:130 msgid "Class :class:`ast.Constant` is now used for all constants." msgstr "" -#: ../../library/ast.rst:134 -msgid "" -"Simple indices are represented by their value, extended slices are " -"represented as tuples." +msgid "Simple indices are represented by their value, extended slices are represented as tuples." msgstr "" -#: ../../library/ast.rst:139 -msgid "" -"AST node constructors were changed to provide sensible defaults for omitted " -"fields: optional fields now default to ``None``, list fields default to an " -"empty list, and fields of type :class:`!ast.expr_context` default " -"to :class:`Load() `. Previously, omitted attributes would not " -"exist on constructed nodes (accessing them raised :exc:`AttributeError`)." +msgid "AST node constructors were changed to provide sensible defaults for omitted fields: optional fields now default to ``None``, list fields default to an empty list, and fields of type :class:`!ast.expr_context` default to :class:`Load() `. Previously, omitted attributes would not exist on constructed nodes (accessing them raised :exc:`AttributeError`)." msgstr "" -#: ../../library/ast.rst:147 -msgid "" -"The :meth:`~object.__repr__` output of :class:`~ast.AST` nodes includes the " -"values of the node fields." +msgid "The :meth:`~object.__repr__` output of :class:`~ast.AST` nodes includes the values of the node fields." msgstr "" -#: ../../library/ast.rst:152 -msgid "" -"Previous versions of Python provided the AST classes :class:`!" -"ast.Num`, :class:`!ast.Str`, :class:`!ast.Bytes`, :class:`!ast.NameConstant` " -"and :class:`!ast.Ellipsis`, which were deprecated in Python 3.8. These " -"classes were removed in Python 3.14, and their functionality has been " -"replaced with :class:`ast.Constant`." +msgid "Previous versions of Python provided the AST classes :class:`!ast.Num`, :class:`!ast.Str`, :class:`!ast.Bytes`, :class:`!ast.NameConstant` and :class:`!ast.Ellipsis`, which were deprecated in Python 3.8. These classes were removed in Python 3.14, and their functionality has been replaced with :class:`ast.Constant`." msgstr "" -#: ../../library/ast.rst:160 -msgid "" -"Old classes :class:`!ast.Index` and :class:`!ast.ExtSlice` are still " -"available, but they will be removed in future Python releases. In the " -"meantime, instantiating them will return an instance of a different class." +msgid "Old classes :class:`!ast.Index` and :class:`!ast.ExtSlice` are still available, but they will be removed in future Python releases. In the meantime, instantiating them will return an instance of a different class." msgstr "" -#: ../../library/ast.rst:167 -msgid "" -"Previous versions of Python allowed the creation of AST nodes that were " -"missing required fields. Similarly, AST node constructors allowed arbitrary " -"keyword arguments that were set as attributes of the AST node, even if they " -"did not match any of the fields of the AST node. This behavior is deprecated " -"and will be removed in Python 3.15." +msgid "Previous versions of Python allowed the creation of AST nodes that were missing required fields. Similarly, AST node constructors allowed arbitrary keyword arguments that were set as attributes of the AST node, even if they did not match any of the fields of the AST node. This behavior is deprecated and will be removed in Python 3.15." msgstr "" -#: ../../library/ast.rst:174 -msgid "" -"The descriptions of the specific node classes displayed here were initially " -"adapted from the fantastic `Green Tree Snakes `__ project and all its " -"contributors." +msgid "The descriptions of the specific node classes displayed here were initially adapted from the fantastic `Green Tree Snakes `__ project and all its contributors." msgstr "" -#: ../../library/ast.rst:183 msgid "Root nodes" msgstr "" -#: ../../library/ast.rst:187 -msgid "" -"A Python module, as with :ref:`file input `. Node type generated " -"by :func:`ast.parse` in the default ``\"exec\"`` *mode*." +msgid "A Python module, as with :ref:`file input `. Node type generated by :func:`ast.parse` in the default ``\"exec\"`` *mode*." msgstr "" -#: ../../library/ast.rst:190 msgid "``body`` is a :class:`list` of the module's :ref:`ast-statements`." msgstr "" -#: ../../library/ast.rst:192 -msgid "" -"``type_ignores`` is a :class:`list` of the module's type ignore comments; " -"see :func:`ast.parse` for more details." +msgid "``type_ignores`` is a :class:`list` of the module's type ignore comments; see :func:`ast.parse` for more details." msgstr "" -#: ../../library/ast.rst:195 msgid "" ">>> print(ast.dump(ast.parse('x = 1'), indent=4))\n" "Module(\n" @@ -440,36 +296,24 @@ msgid "" " value=Constant(value=1))])" msgstr "" -#: ../../library/ast.rst:208 -msgid "" -"A single Python :ref:`expression input `. Node type " -"generated by :func:`ast.parse` when *mode* is ``\"eval\"``." +msgid "A single Python :ref:`expression input `. Node type generated by :func:`ast.parse` when *mode* is ``\"eval\"``." msgstr "" -#: ../../library/ast.rst:211 -msgid "" -"``body`` is a single node, one of the :ref:`expression types `." +msgid "``body`` is a single node, one of the :ref:`expression types `." msgstr "" -#: ../../library/ast.rst:214 msgid "" ">>> print(ast.dump(ast.parse('123', mode='eval'), indent=4))\n" "Expression(\n" " body=Constant(value=123))" msgstr "" -#: ../../library/ast.rst:223 -msgid "" -"A single :ref:`interactive input `, like in :ref:`tut-interac`. " -"Node type generated by :func:`ast.parse` when *mode* is ``\"single\"``." +msgid "A single :ref:`interactive input `, like in :ref:`tut-interac`. Node type generated by :func:`ast.parse` when *mode* is ``\"single\"``." msgstr "" -#: ../../library/ast.rst:226 msgid "``body`` is a :class:`list` of :ref:`statement nodes `." msgstr "" -#: ../../library/ast.rst:228 msgid "" ">>> print(ast.dump(ast.parse('x = 1; y = 2', mode='single'), indent=4))\n" "Interactive(\n" @@ -484,37 +328,26 @@ msgid "" " value=Constant(value=2))])" msgstr "" -#: ../../library/ast.rst:245 -msgid "" -"A representation of an old-style type comments for functions, as Python " -"versions prior to 3.5 didn't support :pep:`484` annotations. Node type " -"generated by :func:`ast.parse` when *mode* is ``\"func_type\"``." +msgid "A representation of an old-style type comments for functions, as Python versions prior to 3.5 didn't support :pep:`484` annotations. Node type generated by :func:`ast.parse` when *mode* is ``\"func_type\"``." msgstr "" -#: ../../library/ast.rst:249 msgid "Such type comments would look like this::" msgstr "" -#: ../../library/ast.rst:251 msgid "" "def sum_two_number(a, b):\n" " # type: (int, int) -> int\n" " return a + b" msgstr "" -#: ../../library/ast.rst:255 -msgid "" -"``argtypes`` is a :class:`list` of :ref:`expression nodes `." +msgid "``argtypes`` is a :class:`list` of :ref:`expression nodes `." msgstr "" -#: ../../library/ast.rst:257 msgid "``returns`` is a single :ref:`expression node `." msgstr "" -#: ../../library/ast.rst:259 msgid "" -">>> print(ast.dump(ast.parse('(int, str) -> List[int]', mode='func_type'), " -"indent=4))\n" +">>> print(ast.dump(ast.parse('(int, str) -> List[int]', mode='func_type'), indent=4))\n" "FunctionType(\n" " argtypes=[\n" " Name(id='int', ctx=Load()),\n" @@ -525,27 +358,15 @@ msgid "" " ctx=Load()))" msgstr "" -#: ../../library/ast.rst:275 msgid "Literals" msgstr "" -#: ../../library/ast.rst:279 -msgid "" -"A constant value. The ``value`` attribute of the ``Constant`` literal " -"contains the Python object it represents. The values represented can be " -"instances " -"of :class:`str`, :class:`bytes`, :class:`int`, :class:`float`, :class:`complex`, " -"and :class:`bool`, and the constants :data:`None` and :data:`Ellipsis`." +msgid "A constant value. The ``value`` attribute of the ``Constant`` literal contains the Python object it represents. The values represented can be instances of :class:`str`, :class:`bytes`, :class:`int`, :class:`float`, :class:`complex`, and :class:`bool`, and the constants :data:`None` and :data:`Ellipsis`." msgstr "" -#: ../../library/ast.rst:284 -msgid "" -"The ``kind`` attribute is an optional string. For string literals with a " -"``u`` prefix, ``kind`` is set to ``'u'``. For all other constants, ``kind`` " -"is ``None``." +msgid "The ``kind`` attribute is an optional string. For string literals with a ``u`` prefix, ``kind`` is set to ``'u'``. For all other constants, ``kind`` is ``None``." msgstr "" -#: ../../library/ast.rst:288 msgid "" ">>> print(ast.dump(ast.parse('123', mode='eval'), indent=4))\n" "Expression(\n" @@ -555,56 +376,35 @@ msgid "" " body=Constant(value='hello', kind='u'))" msgstr "" -#: ../../library/ast.rst:300 -msgid "" -"Node representing a single formatting field in an f-string. If the string " -"contains a single formatting field and nothing else the node can be isolated " -"otherwise it appears in :class:`JoinedStr`." +msgid "Node representing a single formatting field in an f-string. If the string contains a single formatting field and nothing else the node can be isolated otherwise it appears in :class:`JoinedStr`." msgstr "" -#: ../../library/ast.rst:304 -msgid "" -"``value`` is any expression node (such as a literal, a variable, or a " -"function call)." +msgid "``value`` is any expression node (such as a literal, a variable, or a function call)." msgstr "" -#: ../../library/ast.rst:306 ../../library/ast.rst:388 msgid "``conversion`` is an integer:" msgstr "" -#: ../../library/ast.rst:308 msgid "-1: no formatting" msgstr "" -#: ../../library/ast.rst:309 msgid "97 (``ord('a')``): ``!a`` :func:`ASCII ` formatting" msgstr "" -#: ../../library/ast.rst:310 msgid "114 (``ord('r')``): ``!r`` :func:`repr` formatting" msgstr "" -#: ../../library/ast.rst:311 msgid "115 (``ord('s')``): ``!s`` :func:`string ` formatting" msgstr "" -#: ../../library/ast.rst:313 -msgid "" -"``format_spec`` is a :class:`JoinedStr` node representing the formatting of " -"the value, or ``None`` if no format was specified. Both ``conversion`` and " -"``format_spec`` can be set at the same time." +msgid "``format_spec`` is a :class:`JoinedStr` node representing the formatting of the value, or ``None`` if no format was specified. Both ``conversion`` and ``format_spec`` can be set at the same time." msgstr "" -#: ../../library/ast.rst:320 -msgid "" -"An f-string, comprising a series of :class:`FormattedValue` " -"and :class:`Constant` nodes." +msgid "An f-string, comprising a series of :class:`FormattedValue` and :class:`Constant` nodes." msgstr "" -#: ../../library/ast.rst:323 msgid "" -">>> print(ast.dump(ast.parse('f\"sin({a}) is {sin(a):.3}\"', mode='eval'), " -"indent=4))\n" +">>> print(ast.dump(ast.parse('f\"sin({a}) is {sin(a):.3}\"', mode='eval'), indent=4))\n" "Expression(\n" " body=JoinedStr(\n" " values=[\n" @@ -624,14 +424,9 @@ msgid "" " Constant(value='.3')]))]))" msgstr "" -#: ../../library/ast.rst:349 -msgid "" -"Node representing a template string literal, comprising a series " -"of :class:`Interpolation` and :class:`Constant` nodes. These nodes may be " -"any order, and do not need to be interleaved." +msgid "Node representing a template string literal, comprising a series of :class:`Interpolation` and :class:`Constant` nodes. These nodes may be any order, and do not need to be interleaved." msgstr "" -#: ../../library/ast.rst:353 msgid "" ">>> expr = ast.parse('t\"{name} finished {place:ordinal}\"', mode='eval')\n" ">>> print(ast.dump(expr, indent=4))\n" @@ -652,65 +447,39 @@ msgid "" " Constant(value='ordinal')]))]))" msgstr "" -#: ../../library/ast.rst:377 -msgid "" -"Node representing a single interpolation field in a template string literal." +msgid "Node representing a single interpolation field in a template string literal." msgstr "" -#: ../../library/ast.rst:379 -msgid "" -"``value`` is any expression node (such as a literal, a variable, or a " -"function call). This has the same meaning as ``FormattedValue.value``." +msgid "``value`` is any expression node (such as a literal, a variable, or a function call). This has the same meaning as ``FormattedValue.value``." msgstr "" -#: ../../library/ast.rst:382 -msgid "" -"``str`` is a constant containing the text of the interpolation expression." +msgid "``str`` is a constant containing the text of the interpolation expression." msgstr "" -#: ../../library/ast.rst:384 -msgid "" -"If ``str`` is set to ``None``, then ``value`` is used to generate code when " -"calling :func:`ast.unparse`. This no longer guarantees that the generated " -"code is identical to the original and is intended for code generation." +msgid "If ``str`` is set to ``None``, then ``value`` is used to generate code when calling :func:`ast.unparse`. This no longer guarantees that the generated code is identical to the original and is intended for code generation." msgstr "" -#: ../../library/ast.rst:390 msgid "-1: no conversion" msgstr "" -#: ../../library/ast.rst:391 msgid "97 (``ord('a')``): ``!a`` :func:`ASCII ` conversion" msgstr "" -#: ../../library/ast.rst:392 msgid "114 (``ord('r')``): ``!r`` :func:`repr` conversion" msgstr "" -#: ../../library/ast.rst:393 msgid "115 (``ord('s')``): ``!s`` :func:`string ` conversion" msgstr "" -#: ../../library/ast.rst:395 msgid "This has the same meaning as ``FormattedValue.conversion``." msgstr "" -#: ../../library/ast.rst:396 -msgid "" -"``format_spec`` is a :class:`JoinedStr` node representing the formatting of " -"the value, or ``None`` if no format was specified. Both ``conversion`` and " -"``format_spec`` can be set at the same time. This has the same meaning as " -"``FormattedValue.format_spec``." +msgid "``format_spec`` is a :class:`JoinedStr` node representing the formatting of the value, or ``None`` if no format was specified. Both ``conversion`` and ``format_spec`` can be set at the same time. This has the same meaning as ``FormattedValue.format_spec``." msgstr "" -#: ../../library/ast.rst:405 -msgid "" -"A list or tuple. ``elts`` holds a list of nodes representing the elements. " -"``ctx`` is :class:`Store` if the container is an assignment target (i.e. " -"``(x,y)=something``), and :class:`Load` otherwise." +msgid "A list or tuple. ``elts`` holds a list of nodes representing the elements. ``ctx`` is :class:`Store` if the container is an assignment target (i.e. ``(x,y)=something``), and :class:`Load` otherwise." msgstr "" -#: ../../library/ast.rst:409 msgid "" ">>> print(ast.dump(ast.parse('[1, 2, 3]', mode='eval'), indent=4))\n" "Expression(\n" @@ -730,11 +499,9 @@ msgid "" " ctx=Load()))" msgstr "" -#: ../../library/ast.rst:431 msgid "A set. ``elts`` holds a list of nodes representing the set's elements." msgstr "" -#: ../../library/ast.rst:433 msgid "" ">>> print(ast.dump(ast.parse('{1, 2, 3}', mode='eval'), indent=4))\n" "Expression(\n" @@ -745,21 +512,12 @@ msgid "" " Constant(value=3)]))" msgstr "" -#: ../../library/ast.rst:446 -msgid "" -"A dictionary. ``keys`` and ``values`` hold lists of nodes representing the " -"keys and the values respectively, in matching order (what would be returned " -"when calling :code:`dictionary.keys()` and :code:`dictionary.values()`)." +msgid "A dictionary. ``keys`` and ``values`` hold lists of nodes representing the keys and the values respectively, in matching order (what would be returned when calling :code:`dictionary.keys()` and :code:`dictionary.values()`)." msgstr "" -#: ../../library/ast.rst:450 -msgid "" -"When doing dictionary unpacking using dictionary literals the expression to " -"be expanded goes in the ``values`` list, with a ``None`` at the " -"corresponding position in ``keys``." +msgid "When doing dictionary unpacking using dictionary literals the expression to be expanded goes in the ``values`` list, with a ``None`` at the corresponding position in ``keys``." msgstr "" -#: ../../library/ast.rst:454 msgid "" ">>> print(ast.dump(ast.parse('{\"a\":1, **d}', mode='eval'), indent=4))\n" "Expression(\n" @@ -772,24 +530,15 @@ msgid "" " Name(id='d', ctx=Load())]))" msgstr "" -#: ../../library/ast.rst:468 msgid "Variables" msgstr "" -#: ../../library/ast.rst:472 -msgid "" -"A variable name. ``id`` holds the name as a string, and ``ctx`` is one of " -"the following types." +msgid "A variable name. ``id`` holds the name as a string, and ``ctx`` is one of the following types." msgstr "" -#: ../../library/ast.rst:480 -msgid "" -"Variable references can be used to load the value of a variable, to assign a " -"new value to it, or to delete it. Variable references are given a context to " -"distinguish these cases." +msgid "Variable references can be used to load the value of a variable, to assign a new value to it, or to delete it. Variable references are given a context to distinguish these cases." msgstr "" -#: ../../library/ast.rst:484 msgid "" ">>> print(ast.dump(ast.parse('a'), indent=4))\n" "Module(\n" @@ -813,14 +562,9 @@ msgid "" " Name(id='a', ctx=Del())])])" msgstr "" -#: ../../library/ast.rst:510 -msgid "" -"A ``*var`` variable reference. ``value`` holds the variable, typically " -"a :class:`Name` node. This type must be used when building a :class:`Call` " -"node with ``*args``." +msgid "A ``*var`` variable reference. ``value`` holds the variable, typically a :class:`Name` node. This type must be used when building a :class:`Call` node with ``*args``." msgstr "" -#: ../../library/ast.rst:514 msgid "" ">>> print(ast.dump(ast.parse('a, *b = it'), indent=4))\n" "Module(\n" @@ -837,20 +581,12 @@ msgid "" " value=Name(id='it', ctx=Load()))])" msgstr "" -#: ../../library/ast.rst:534 msgid "Expressions" msgstr "" -#: ../../library/ast.rst:538 -msgid "" -"When an expression, such as a function call, appears as a statement by " -"itself with its return value not used or stored, it is wrapped in this " -"container. ``value`` holds one of the other nodes in this section, " -"a :class:`Constant`, a :class:`Name`, a :class:`Lambda`, a :class:`Yield` " -"or :class:`YieldFrom` node." +msgid "When an expression, such as a function call, appears as a statement by itself with its return value not used or stored, it is wrapped in this container. ``value`` holds one of the other nodes in this section, a :class:`Constant`, a :class:`Name`, a :class:`Lambda`, a :class:`Yield` or :class:`YieldFrom` node." msgstr "" -#: ../../library/ast.rst:543 msgid "" ">>> print(ast.dump(ast.parse('-a'), indent=4))\n" "Module(\n" @@ -861,19 +597,12 @@ msgid "" " operand=Name(id='a', ctx=Load())))])" msgstr "" -#: ../../library/ast.rst:556 -msgid "" -"A unary operation. ``op`` is the operator, and ``operand`` any expression " -"node." +msgid "A unary operation. ``op`` is the operator, and ``operand`` any expression node." msgstr "" -#: ../../library/ast.rst:565 -msgid "" -"Unary operator tokens. :class:`Not` is the ``not`` keyword, :class:`Invert` " -"is the ``~`` operator." +msgid "Unary operator tokens. :class:`Not` is the ``not`` keyword, :class:`Invert` is the ``~`` operator." msgstr "" -#: ../../library/ast.rst:568 msgid "" ">>> print(ast.dump(ast.parse('not x', mode='eval'), indent=4))\n" "Expression(\n" @@ -882,13 +611,9 @@ msgid "" " operand=Name(id='x', ctx=Load())))" msgstr "" -#: ../../library/ast.rst:579 -msgid "" -"A binary operation (like addition or division). ``op`` is the operator, and " -"``left`` and ``right`` are any expression nodes." +msgid "A binary operation (like addition or division). ``op`` is the operator, and ``left`` and ``right`` are any expression nodes." msgstr "" -#: ../../library/ast.rst:582 msgid "" ">>> print(ast.dump(ast.parse('x + y', mode='eval'), indent=4))\n" "Expression(\n" @@ -898,23 +623,15 @@ msgid "" " right=Name(id='y', ctx=Load())))" msgstr "" -#: ../../library/ast.rst:606 msgid "Binary operator tokens." msgstr "" -#: ../../library/ast.rst:611 -msgid "" -"A boolean operation, 'or' or 'and'. ``op`` is :class:`Or` or :class:`And`. " -"``values`` are the values involved. Consecutive operations with the same " -"operator, such as ``a or b or c``, are collapsed into one node with several " -"values." +msgid "A boolean operation, 'or' or 'and'. ``op`` is :class:`Or` or :class:`And`. ``values`` are the values involved. Consecutive operations with the same operator, such as ``a or b or c``, are collapsed into one node with several values." msgstr "" -#: ../../library/ast.rst:616 msgid "This doesn't include ``not``, which is a :class:`UnaryOp`." msgstr "" -#: ../../library/ast.rst:618 msgid "" ">>> print(ast.dump(ast.parse('x or y', mode='eval'), indent=4))\n" "Expression(\n" @@ -925,18 +642,12 @@ msgid "" " Name(id='y', ctx=Load())]))" msgstr "" -#: ../../library/ast.rst:632 msgid "Boolean operator tokens." msgstr "" -#: ../../library/ast.rst:637 -msgid "" -"A comparison of two or more values. ``left`` is the first value in the " -"comparison, ``ops`` the list of operators, and ``comparators`` the list of " -"values after the first element in the comparison." +msgid "A comparison of two or more values. ``left`` is the first value in the comparison, ``ops`` the list of operators, and ``comparators`` the list of values after the first element in the comparison." msgstr "" -#: ../../library/ast.rst:641 msgid "" ">>> print(ast.dump(ast.parse('1 <= a < 10', mode='eval'), indent=4))\n" "Expression(\n" @@ -950,36 +661,23 @@ msgid "" " Constant(value=10)]))" msgstr "" -#: ../../library/ast.rst:666 msgid "Comparison operator tokens." msgstr "" -#: ../../library/ast.rst:671 -msgid "" -"A function call. ``func`` is the function, which will often be " -"a :class:`Name` or :class:`Attribute` object. Of the arguments:" +msgid "A function call. ``func`` is the function, which will often be a :class:`Name` or :class:`Attribute` object. Of the arguments:" msgstr "" -#: ../../library/ast.rst:674 msgid "``args`` holds a list of the arguments passed by position." msgstr "" -#: ../../library/ast.rst:675 -msgid "" -"``keywords`` holds a list of :class:`.keyword` objects representing " -"arguments passed by keyword." +msgid "``keywords`` holds a list of :class:`.keyword` objects representing arguments passed by keyword." msgstr "" -#: ../../library/ast.rst:678 -msgid "" -"The ``args`` and ``keywords`` arguments are optional and default to empty " -"lists." +msgid "The ``args`` and ``keywords`` arguments are optional and default to empty lists." msgstr "" -#: ../../library/ast.rst:680 msgid "" -">>> print(ast.dump(ast.parse('func(a, b=c, *d, **e)', mode='eval'), " -"indent=4))\n" +">>> print(ast.dump(ast.parse('func(a, b=c, *d, **e)', mode='eval'), indent=4))\n" "Expression(\n" " body=Call(\n" " func=Name(id='func', ctx=Load()),\n" @@ -996,19 +694,12 @@ msgid "" " value=Name(id='e', ctx=Load()))]))" msgstr "" -#: ../../library/ast.rst:701 -msgid "" -"A keyword argument to a function call or class definition. ``arg`` is a raw " -"string of the parameter name, ``value`` is a node to pass in." +msgid "A keyword argument to a function call or class definition. ``arg`` is a raw string of the parameter name, ``value`` is a node to pass in." msgstr "" -#: ../../library/ast.rst:707 -msgid "" -"An expression such as ``a if b else c``. Each field holds a single node, so " -"in the following example, all three are :class:`Name` nodes." +msgid "An expression such as ``a if b else c``. Each field holds a single node, so in the following example, all three are :class:`Name` nodes." msgstr "" -#: ../../library/ast.rst:710 msgid "" ">>> print(ast.dump(ast.parse('a if b else c', mode='eval'), indent=4))\n" "Expression(\n" @@ -1018,15 +709,9 @@ msgid "" " orelse=Name(id='c', ctx=Load())))" msgstr "" -#: ../../library/ast.rst:722 -msgid "" -"Attribute access, e.g. ``d.keys``. ``value`` is a node, typically " -"a :class:`Name`. ``attr`` is a bare string giving the name of the attribute, " -"and ``ctx`` is :class:`Load`, :class:`Store` or :class:`Del` according to " -"how the attribute is acted on." +msgid "Attribute access, e.g. ``d.keys``. ``value`` is a node, typically a :class:`Name`. ``attr`` is a bare string giving the name of the attribute, and ``ctx`` is :class:`Load`, :class:`Store` or :class:`Del` according to how the attribute is acted on." msgstr "" -#: ../../library/ast.rst:727 msgid "" ">>> print(ast.dump(ast.parse('snake.colour', mode='eval'), indent=4))\n" "Expression(\n" @@ -1036,15 +721,9 @@ msgid "" " ctx=Load()))" msgstr "" -#: ../../library/ast.rst:739 -msgid "" -"A named expression. This AST node is produced by the assignment expressions " -"operator (also known as the walrus operator). As opposed to " -"the :class:`Assign` node in which the first argument can be multiple nodes, " -"in this case both ``target`` and ``value`` must be single nodes." +msgid "A named expression. This AST node is produced by the assignment expressions operator (also known as the walrus operator). As opposed to the :class:`Assign` node in which the first argument can be multiple nodes, in this case both ``target`` and ``value`` must be single nodes." msgstr "" -#: ../../library/ast.rst:744 msgid "" ">>> print(ast.dump(ast.parse('(x := 4)', mode='eval'), indent=4))\n" "Expression(\n" @@ -1053,20 +732,12 @@ msgid "" " value=Constant(value=4)))" msgstr "" -#: ../../library/ast.rst:755 msgid "Subscripting" msgstr "" -#: ../../library/ast.rst:759 -msgid "" -"A subscript, such as ``l[1]``. ``value`` is the subscripted object (usually " -"sequence or mapping). ``slice`` is an index, slice or key. It can be " -"a :class:`Tuple` and contain a :class:`Slice`. ``ctx`` " -"is :class:`Load`, :class:`Store` or :class:`Del` according to the action " -"performed with the subscript." +msgid "A subscript, such as ``l[1]``. ``value`` is the subscripted object (usually sequence or mapping). ``slice`` is an index, slice or key. It can be a :class:`Tuple` and contain a :class:`Slice`. ``ctx`` is :class:`Load`, :class:`Store` or :class:`Del` according to the action performed with the subscript." msgstr "" -#: ../../library/ast.rst:765 msgid "" ">>> print(ast.dump(ast.parse('l[1:2, 3]', mode='eval'), indent=4))\n" "Expression(\n" @@ -1082,14 +753,9 @@ msgid "" " ctx=Load()))" msgstr "" -#: ../../library/ast.rst:783 -msgid "" -"Regular slicing (on the form ``lower:upper`` or ``lower:upper:step``). Can " -"occur only inside the *slice* field of :class:`Subscript`, either directly " -"or as an element of :class:`Tuple`." +msgid "Regular slicing (on the form ``lower:upper`` or ``lower:upper:step``). Can occur only inside the *slice* field of :class:`Subscript`, either directly or as an element of :class:`Tuple`." msgstr "" -#: ../../library/ast.rst:787 msgid "" ">>> print(ast.dump(ast.parse('l[1:2]', mode='eval'), indent=4))\n" "Expression(\n" @@ -1101,22 +767,15 @@ msgid "" " ctx=Load()))" msgstr "" -#: ../../library/ast.rst:800 msgid "Comprehensions" msgstr "" -#: ../../library/ast.rst:807 -msgid "" -"List and set comprehensions, generator expressions, and dictionary " -"comprehensions. ``elt`` (or ``key`` and ``value``) is a single node " -"representing the part that will be evaluated for each item." +msgid "List and set comprehensions, generator expressions, and dictionary comprehensions. ``elt`` (or ``key`` and ``value``) is a single node representing the part that will be evaluated for each item." msgstr "" -#: ../../library/ast.rst:811 msgid "``generators`` is a list of :class:`comprehension` nodes." msgstr "" -#: ../../library/ast.rst:813 msgid "" ">>> print(ast.dump(\n" "... ast.parse('[x for x in numbers]', mode='eval'),\n" @@ -1160,24 +819,14 @@ msgid "" " is_async=0)]))" msgstr "" -#: ../../library/ast.rst:859 -msgid "" -"One ``for`` clause in a comprehension. ``target`` is the reference to use " -"for each element - typically a :class:`Name` or :class:`Tuple` node. " -"``iter`` is the object to iterate over. ``ifs`` is a list of test " -"expressions: each ``for`` clause can have multiple ``ifs``." +msgid "One ``for`` clause in a comprehension. ``target`` is the reference to use for each element - typically a :class:`Name` or :class:`Tuple` node. ``iter`` is the object to iterate over. ``ifs`` is a list of test expressions: each ``for`` clause can have multiple ``ifs``." msgstr "" -#: ../../library/ast.rst:864 -msgid "" -"``is_async`` indicates a comprehension is asynchronous (using an ``async " -"for`` instead of ``for``). The value is an integer (0 or 1)." +msgid "``is_async`` indicates a comprehension is asynchronous (using an ``async for`` instead of ``for``). The value is an integer (0 or 1)." msgstr "" -#: ../../library/ast.rst:867 msgid "" -">>> print(ast.dump(ast.parse('[ord(c) for line in file for c in line]', " -"mode='eval'),\n" +">>> print(ast.dump(ast.parse('[ord(c) for line in file for c in line]', mode='eval'),\n" "... indent=4)) # Multiple comprehensions in one.\n" "Expression(\n" " body=ListComp(\n" @@ -1195,8 +844,7 @@ msgid "" " iter=Name(id='line', ctx=Load()),\n" " is_async=0)]))\n" "\n" -">>> print(ast.dump(ast.parse('(n**2 for n in it if n>5 if n<10)', " -"mode='eval'),\n" +">>> print(ast.dump(ast.parse('(n**2 for n in it if n>5 if n<10)', mode='eval'),\n" "... indent=4)) # generator comprehension\n" "Expression(\n" " body=GeneratorExp(\n" @@ -1235,30 +883,18 @@ msgid "" " is_async=1)]))" msgstr "" -#: ../../library/ast.rst:929 msgid "Statements" msgstr "" -#: ../../library/ast.rst:933 -msgid "" -"An assignment. ``targets`` is a list of nodes, and ``value`` is a single " -"node." +msgid "An assignment. ``targets`` is a list of nodes, and ``value`` is a single node." msgstr "" -#: ../../library/ast.rst:935 -msgid "" -"Multiple nodes in ``targets`` represents assigning the same value to each. " -"Unpacking is represented by putting a :class:`Tuple` or :class:`List` within " -"``targets``." +msgid "Multiple nodes in ``targets`` represents assigning the same value to each. Unpacking is represented by putting a :class:`Tuple` or :class:`List` within ``targets``." msgstr "" -#: ../../library/ast.rst:941 ../../library/ast.rst:1236 -#: ../../library/ast.rst:1430 ../../library/ast.rst:1996 -msgid "" -"``type_comment`` is an optional string with the type annotation as a comment." +msgid "``type_comment`` is an optional string with the type annotation as a comment." msgstr "" -#: ../../library/ast.rst:943 msgid "" ">>> print(ast.dump(ast.parse('a = b = 1'), indent=4)) # Multiple assignment\n" "Module(\n" @@ -1282,24 +918,12 @@ msgid "" " value=Name(id='c', ctx=Load()))])" msgstr "" -#: ../../library/ast.rst:969 -msgid "" -"An assignment with a type annotation. ``target`` is a single node and can be " -"a :class:`Name`, an :class:`Attribute` or a :class:`Subscript`. " -"``annotation`` is the annotation, such as a :class:`Constant` " -"or :class:`Name` node. ``value`` is a single optional node." +msgid "An assignment with a type annotation. ``target`` is a single node and can be a :class:`Name`, an :class:`Attribute` or a :class:`Subscript`. ``annotation`` is the annotation, such as a :class:`Constant` or :class:`Name` node. ``value`` is a single optional node." msgstr "" -#: ../../library/ast.rst:974 -msgid "" -"``simple`` is always either 0 (indicating a \"complex\" target) or 1 " -"(indicating a \"simple\" target). A \"simple\" target consists solely of " -"a :class:`Name` node that does not appear between parentheses; all other " -"targets are considered complex. Only simple targets appear in " -"the :attr:`~object.__annotations__` dictionary of modules and classes." +msgid "``simple`` is always either 0 (indicating a \"complex\" target) or 1 (indicating a \"simple\" target). A \"simple\" target consists solely of a :class:`Name` node that does not appear between parentheses; all other targets are considered complex. Only simple targets appear in the :attr:`~object.__annotations__` dictionary of modules and classes." msgstr "" -#: ../../library/ast.rst:980 msgid "" ">>> print(ast.dump(ast.parse('c: int'), indent=4))\n" "Module(\n" @@ -1309,8 +933,7 @@ msgid "" " annotation=Name(id='int', ctx=Load()),\n" " simple=1)])\n" "\n" -">>> print(ast.dump(ast.parse('(a): int = 1'), indent=4)) # Annotation with " -"parenthesis\n" +">>> print(ast.dump(ast.parse('(a): int = 1'), indent=4)) # Annotation with parenthesis\n" "Module(\n" " body=[\n" " AnnAssign(\n" @@ -1330,8 +953,7 @@ msgid "" " annotation=Name(id='int', ctx=Load()),\n" " simple=0)])\n" "\n" -">>> print(ast.dump(ast.parse('a[1]: int'), indent=4)) # Subscript " -"annotation\n" +">>> print(ast.dump(ast.parse('a[1]: int'), indent=4)) # Subscript annotation\n" "Module(\n" " body=[\n" " AnnAssign(\n" @@ -1343,21 +965,12 @@ msgid "" " simple=0)])" msgstr "" -#: ../../library/ast.rst:1024 -msgid "" -"Augmented assignment, such as ``a += 1``. In the following example, " -"``target`` is a :class:`Name` node for ``x`` (with the :class:`Store` " -"context), ``op`` is :class:`Add`, and ``value`` is a :class:`Constant` with " -"value for 1." +msgid "Augmented assignment, such as ``a += 1``. In the following example, ``target`` is a :class:`Name` node for ``x`` (with the :class:`Store` context), ``op`` is :class:`Add`, and ``value`` is a :class:`Constant` with value for 1." msgstr "" -#: ../../library/ast.rst:1029 -msgid "" -"The ``target`` attribute cannot be of class :class:`Tuple` or :class:`List`, " -"unlike the targets of :class:`Assign`." +msgid "The ``target`` attribute cannot be of class :class:`Tuple` or :class:`List`, unlike the targets of :class:`Assign`." msgstr "" -#: ../../library/ast.rst:1032 msgid "" ">>> print(ast.dump(ast.parse('x += 2'), indent=4))\n" "Module(\n" @@ -1368,14 +981,9 @@ msgid "" " value=Constant(value=2))])" msgstr "" -#: ../../library/ast.rst:1045 -msgid "" -"A ``raise`` statement. ``exc`` is the exception object to be raised, " -"normally a :class:`Call` or :class:`Name`, or ``None`` for a standalone " -"``raise``. ``cause`` is the optional part for ``y`` in ``raise x from y``." +msgid "A ``raise`` statement. ``exc`` is the exception object to be raised, normally a :class:`Call` or :class:`Name`, or ``None`` for a standalone ``raise``. ``cause`` is the optional part for ``y`` in ``raise x from y``." msgstr "" -#: ../../library/ast.rst:1049 msgid "" ">>> print(ast.dump(ast.parse('raise x from y'), indent=4))\n" "Module(\n" @@ -1385,13 +993,9 @@ msgid "" " cause=Name(id='y', ctx=Load()))])" msgstr "" -#: ../../library/ast.rst:1061 -msgid "" -"An assertion. ``test`` holds the condition, such as a :class:`Compare` node. " -"``msg`` holds the failure message." +msgid "An assertion. ``test`` holds the condition, such as a :class:`Compare` node. ``msg`` holds the failure message." msgstr "" -#: ../../library/ast.rst:1064 msgid "" ">>> print(ast.dump(ast.parse('assert x,y'), indent=4))\n" "Module(\n" @@ -1401,13 +1005,9 @@ msgid "" " msg=Name(id='y', ctx=Load()))])" msgstr "" -#: ../../library/ast.rst:1076 -msgid "" -"Represents a ``del`` statement. ``targets`` is a list of nodes, such " -"as :class:`Name`, :class:`Attribute` or :class:`Subscript` nodes." +msgid "Represents a ``del`` statement. ``targets`` is a list of nodes, such as :class:`Name`, :class:`Attribute` or :class:`Subscript` nodes." msgstr "" -#: ../../library/ast.rst:1079 msgid "" ">>> print(ast.dump(ast.parse('del x,y,z'), indent=4))\n" "Module(\n" @@ -1419,11 +1019,9 @@ msgid "" " Name(id='z', ctx=Del())])])" msgstr "" -#: ../../library/ast.rst:1093 msgid "A ``pass`` statement." msgstr "" -#: ../../library/ast.rst:1095 msgid "" ">>> print(ast.dump(ast.parse('pass'), indent=4))\n" "Module(\n" @@ -1431,15 +1029,9 @@ msgid "" " Pass()])" msgstr "" -#: ../../library/ast.rst:1105 -msgid "" -"A :ref:`type alias ` created through the :keyword:`type` " -"statement. ``name`` is the name of the alias, ``type_params`` is a list " -"of :ref:`type parameters `, and ``value`` is the value of " -"the type alias." +msgid "A :ref:`type alias ` created through the :keyword:`type` statement. ``name`` is the name of the alias, ``type_params`` is a list of :ref:`type parameters `, and ``value`` is the value of the type alias." msgstr "" -#: ../../library/ast.rst:1110 msgid "" ">>> print(ast.dump(ast.parse('type Alias = int'), indent=4))\n" "Module(\n" @@ -1449,21 +1041,15 @@ msgid "" " value=Name(id='int', ctx=Load()))])" msgstr "" -#: ../../library/ast.rst:1121 -msgid "" -"Other statements which are only applicable inside functions or loops are " -"described in other sections." +msgid "Other statements which are only applicable inside functions or loops are described in other sections." msgstr "" -#: ../../library/ast.rst:1125 msgid "Imports" msgstr "" -#: ../../library/ast.rst:1129 msgid "An import statement. ``names`` is a list of :class:`alias` nodes." msgstr "" -#: ../../library/ast.rst:1131 msgid "" ">>> print(ast.dump(ast.parse('import x,y,z'), indent=4))\n" "Module(\n" @@ -1475,15 +1061,9 @@ msgid "" " alias(name='z')])])" msgstr "" -#: ../../library/ast.rst:1145 -msgid "" -"Represents ``from x import y``. ``module`` is a raw string of the 'from' " -"name, without any leading dots, or ``None`` for statements such as ``from . " -"import foo``. ``level`` is an integer holding the level of the relative " -"import (0 means absolute import)." +msgid "Represents ``from x import y``. ``module`` is a raw string of the 'from' name, without any leading dots, or ``None`` for statements such as ``from . import foo``. ``level`` is an integer holding the level of the relative import (0 means absolute import)." msgstr "" -#: ../../library/ast.rst:1150 msgid "" ">>> print(ast.dump(ast.parse('from y import x,y,z'), indent=4))\n" "Module(\n" @@ -1497,13 +1077,9 @@ msgid "" " level=0)])" msgstr "" -#: ../../library/ast.rst:1166 -msgid "" -"Both parameters are raw strings of the names. ``asname`` can be ``None`` if " -"the regular name is to be used." +msgid "Both parameters are raw strings of the names. ``asname`` can be ``None`` if the regular name is to be used." msgstr "" -#: ../../library/ast.rst:1169 msgid "" ">>> print(ast.dump(ast.parse('from ..foo.bar import a as b, c'), indent=4))\n" "Module(\n" @@ -1516,30 +1092,18 @@ msgid "" " level=2)])" msgstr "" -#: ../../library/ast.rst:1182 msgid "Control flow" msgstr "" -#: ../../library/ast.rst:1185 -msgid "" -"Optional clauses such as ``else`` are stored as an empty list if they're not " -"present." +msgid "Optional clauses such as ``else`` are stored as an empty list if they're not present." msgstr "" -#: ../../library/ast.rst:1190 -msgid "" -"An ``if`` statement. ``test`` holds a single node, such as " -"a :class:`Compare` node. ``body`` and ``orelse`` each hold a list of nodes." +msgid "An ``if`` statement. ``test`` holds a single node, such as a :class:`Compare` node. ``body`` and ``orelse`` each hold a list of nodes." msgstr "" -#: ../../library/ast.rst:1193 -msgid "" -"``elif`` clauses don't have a special representation in the AST, but rather " -"appear as extra :class:`If` nodes within the ``orelse`` section of the " -"previous one." +msgid "``elif`` clauses don't have a special representation in the AST, but rather appear as extra :class:`If` nodes within the ``orelse`` section of the previous one." msgstr "" -#: ../../library/ast.rst:1197 msgid "" ">>> print(ast.dump(ast.parse(\"\"\"\n" "... if x:\n" @@ -1567,17 +1131,9 @@ msgid "" " value=Constant(value=Ellipsis))])])])" msgstr "" -#: ../../library/ast.rst:1227 -msgid "" -"A ``for`` loop. ``target`` holds the variable(s) the loop assigns to, as a " -"single :class:`Name`, :class:`Tuple`, :class:`List`, :class:`Attribute` " -"or :class:`Subscript` node. ``iter`` holds the item to be looped over, again " -"as a single node. ``body`` and ``orelse`` contain lists of nodes to execute. " -"Those in ``orelse`` are executed if the loop finishes normally, rather than " -"via a ``break`` statement." +msgid "A ``for`` loop. ``target`` holds the variable(s) the loop assigns to, as a single :class:`Name`, :class:`Tuple`, :class:`List`, :class:`Attribute` or :class:`Subscript` node. ``iter`` holds the item to be looped over, again as a single node. ``body`` and ``orelse`` contain lists of nodes to execute. Those in ``orelse`` are executed if the loop finishes normally, rather than via a ``break`` statement." msgstr "" -#: ../../library/ast.rst:1238 msgid "" ">>> print(ast.dump(ast.parse(\"\"\"\n" "... for x in y:\n" @@ -1598,13 +1154,9 @@ msgid "" " value=Constant(value=Ellipsis))])])" msgstr "" -#: ../../library/ast.rst:1261 -msgid "" -"A ``while`` loop. ``test`` holds the condition, such as a :class:`Compare` " -"node." +msgid "A ``while`` loop. ``test`` holds the condition, such as a :class:`Compare` node." msgstr "" -#: ../../library/ast.rst:1264 msgid "" ">>> print(ast.dump(ast.parse(\"\"\"\n" "... while x:\n" @@ -1624,11 +1176,9 @@ msgid "" " value=Constant(value=Ellipsis))])])" msgstr "" -#: ../../library/ast.rst:1287 msgid "The ``break`` and ``continue`` statements." msgstr "" -#: ../../library/ast.rst:1289 msgid "" ">>> print(ast.dump(ast.parse(\"\"\"\\\n" "... for a in b:\n" @@ -1657,13 +1207,9 @@ msgid "" " Continue()])])])" msgstr "" -#: ../../library/ast.rst:1320 -msgid "" -"``try`` blocks. All attributes are list of nodes to execute, except for " -"``handlers``, which is a list of :class:`ExceptHandler` nodes." +msgid "``try`` blocks. All attributes are list of nodes to execute, except for ``handlers``, which is a list of :class:`ExceptHandler` nodes." msgstr "" -#: ../../library/ast.rst:1323 msgid "" ">>> print(ast.dump(ast.parse(\"\"\"\n" "... try:\n" @@ -1703,14 +1249,9 @@ msgid "" " value=Constant(value=Ellipsis))])])" msgstr "" -#: ../../library/ast.rst:1365 -msgid "" -"``try`` blocks which are followed by ``except*`` clauses. The attributes are " -"the same as for :class:`Try` but the :class:`ExceptHandler` nodes in " -"``handlers`` are interpreted as ``except*`` blocks rather than ``except``." +msgid "``try`` blocks which are followed by ``except*`` clauses. The attributes are the same as for :class:`Try` but the :class:`ExceptHandler` nodes in ``handlers`` are interpreted as ``except*`` blocks rather than ``except``." msgstr "" -#: ../../library/ast.rst:1369 msgid "" ">>> print(ast.dump(ast.parse(\"\"\"\n" "... try:\n" @@ -1732,15 +1273,9 @@ msgid "" " value=Constant(value=Ellipsis))])])])" msgstr "" -#: ../../library/ast.rst:1394 -msgid "" -"A single ``except`` clause. ``type`` is the exception type it will match, " -"typically a :class:`Name` node (or ``None`` for a catch-all ``except:`` " -"clause). ``name`` is a raw string for the name to hold the exception, or " -"``None`` if the clause doesn't have ``as foo``. ``body`` is a list of nodes." +msgid "A single ``except`` clause. ``type`` is the exception type it will match, typically a :class:`Name` node (or ``None`` for a catch-all ``except:`` clause). ``name`` is a raw string for the name to hold the exception, or ``None`` if the clause doesn't have ``as foo``. ``body`` is a list of nodes." msgstr "" -#: ../../library/ast.rst:1399 msgid "" ">>> print(ast.dump(ast.parse(\"\"\"\\\n" "... try:\n" @@ -1764,22 +1299,12 @@ msgid "" " Pass()])])])" msgstr "" -#: ../../library/ast.rst:1425 -msgid "" -"A ``with`` block. ``items`` is a list of :class:`withitem` nodes " -"representing the context managers, and ``body`` is the indented block inside " -"the context." +msgid "A ``with`` block. ``items`` is a list of :class:`withitem` nodes representing the context managers, and ``body`` is the indented block inside the context." msgstr "" -#: ../../library/ast.rst:1435 -msgid "" -"A single context manager in a ``with`` block. ``context_expr`` is the " -"context manager, often a :class:`Call` node. ``optional_vars`` is " -"a :class:`Name`, :class:`Tuple` or :class:`List` for the ``as foo`` part, or " -"``None`` if that isn't used." +msgid "A single context manager in a ``with`` block. ``context_expr`` is the context manager, often a :class:`Call` node. ``optional_vars`` is a :class:`Name`, :class:`Tuple` or :class:`List` for the ``as foo`` part, or ``None`` if that isn't used." msgstr "" -#: ../../library/ast.rst:1440 msgid "" ">>> print(ast.dump(ast.parse(\"\"\"\\\n" "... with a as b, c as d:\n" @@ -1804,38 +1329,21 @@ msgid "" " Name(id='d', ctx=Load())]))])])" msgstr "" -#: ../../library/ast.rst:1466 msgid "Pattern matching" msgstr "" -#: ../../library/ast.rst:1471 -msgid "" -"A ``match`` statement. ``subject`` holds the subject of the match (the " -"object that is being matched against the cases) and ``cases`` contains an " -"iterable of :class:`match_case` nodes with the different cases." +msgid "A ``match`` statement. ``subject`` holds the subject of the match (the object that is being matched against the cases) and ``cases`` contains an iterable of :class:`match_case` nodes with the different cases." msgstr "" -#: ../../library/ast.rst:1479 -msgid "" -"A single case pattern in a ``match`` statement. ``pattern`` contains the " -"match pattern that the subject will be matched against. Note that " -"the :class:`AST` nodes produced for patterns differ from those produced for " -"expressions, even when they share the same syntax." +msgid "A single case pattern in a ``match`` statement. ``pattern`` contains the match pattern that the subject will be matched against. Note that the :class:`AST` nodes produced for patterns differ from those produced for expressions, even when they share the same syntax." msgstr "" -#: ../../library/ast.rst:1484 -msgid "" -"The ``guard`` attribute contains an expression that will be evaluated if the " -"pattern matches the subject." +msgid "The ``guard`` attribute contains an expression that will be evaluated if the pattern matches the subject." msgstr "" -#: ../../library/ast.rst:1487 -msgid "" -"``body`` contains a list of nodes to execute if the pattern matches and the " -"result of evaluating the guard expression is true." +msgid "``body`` contains a list of nodes to execute if the pattern matches and the result of evaluating the guard expression is true." msgstr "" -#: ../../library/ast.rst:1490 msgid "" ">>> print(ast.dump(ast.parse(\"\"\"\n" "... match x:\n" @@ -1870,15 +1378,9 @@ msgid "" " value=Constant(value=Ellipsis))])])])" msgstr "" -#: ../../library/ast.rst:1528 -msgid "" -"A match literal or value pattern that compares by equality. ``value`` is an " -"expression node. Permitted value nodes are restricted as described in the " -"match statement documentation. This pattern succeeds if the match subject is " -"equal to the evaluated value." +msgid "A match literal or value pattern that compares by equality. ``value`` is an expression node. Permitted value nodes are restricted as described in the match statement documentation. This pattern succeeds if the match subject is equal to the evaluated value." msgstr "" -#: ../../library/ast.rst:1533 msgid "" ">>> print(ast.dump(ast.parse(\"\"\"\n" "... match x:\n" @@ -1898,14 +1400,9 @@ msgid "" " value=Constant(value=Ellipsis))])])])" msgstr "" -#: ../../library/ast.rst:1556 -msgid "" -"A match literal pattern that compares by identity. ``value`` is the " -"singleton to be compared against: ``None``, ``True``, or ``False``. This " -"pattern succeeds if the match subject is the given constant." +msgid "A match literal pattern that compares by identity. ``value`` is the singleton to be compared against: ``None``, ``True``, or ``False``. This pattern succeeds if the match subject is the given constant." msgstr "" -#: ../../library/ast.rst:1560 msgid "" ">>> print(ast.dump(ast.parse(\"\"\"\n" "... match x:\n" @@ -1924,15 +1421,9 @@ msgid "" " value=Constant(value=Ellipsis))])])])" msgstr "" -#: ../../library/ast.rst:1582 -msgid "" -"A match sequence pattern. ``patterns`` contains the patterns to be matched " -"against the subject elements if the subject is a sequence. Matches a " -"variable length sequence if one of the subpatterns is a ``MatchStar`` node, " -"otherwise matches a fixed length sequence." +msgid "A match sequence pattern. ``patterns`` contains the patterns to be matched against the subject elements if the subject is a sequence. Matches a variable length sequence if one of the subpatterns is a ``MatchStar`` node, otherwise matches a fixed length sequence." msgstr "" -#: ../../library/ast.rst:1587 msgid "" ">>> print(ast.dump(ast.parse(\"\"\"\n" "... match x:\n" @@ -1956,15 +1447,9 @@ msgid "" " value=Constant(value=Ellipsis))])])])" msgstr "" -#: ../../library/ast.rst:1614 -msgid "" -"Matches the rest of the sequence in a variable length match sequence " -"pattern. If ``name`` is not ``None``, a list containing the remaining " -"sequence elements is bound to that name if the overall sequence pattern is " -"successful." +msgid "Matches the rest of the sequence in a variable length match sequence pattern. If ``name`` is not ``None``, a list containing the remaining sequence elements is bound to that name if the overall sequence pattern is successful." msgstr "" -#: ../../library/ast.rst:1618 msgid "" ">>> print(ast.dump(ast.parse(\"\"\"\n" "... match x:\n" @@ -1998,25 +1483,12 @@ msgid "" " value=Constant(value=Ellipsis))])])])" msgstr "" -#: ../../library/ast.rst:1655 -msgid "" -"A match mapping pattern. ``keys`` is a sequence of expression nodes. " -"``patterns`` is a corresponding sequence of pattern nodes. ``rest`` is an " -"optional name that can be specified to capture the remaining mapping " -"elements. Permitted key expressions are restricted as described in the match " -"statement documentation." +msgid "A match mapping pattern. ``keys`` is a sequence of expression nodes. ``patterns`` is a corresponding sequence of pattern nodes. ``rest`` is an optional name that can be specified to capture the remaining mapping elements. Permitted key expressions are restricted as described in the match statement documentation." msgstr "" -#: ../../library/ast.rst:1661 -msgid "" -"This pattern succeeds if the subject is a mapping, all evaluated key " -"expressions are present in the mapping, and the value corresponding to each " -"key matches the corresponding subpattern. If ``rest`` is not ``None``, a " -"dict containing the remaining mapping elements is bound to that name if the " -"overall mapping pattern is successful." +msgid "This pattern succeeds if the subject is a mapping, all evaluated key expressions are present in the mapping, and the value corresponding to each key matches the corresponding subpattern. If ``rest`` is not ``None``, a dict containing the remaining mapping elements is bound to that name if the overall mapping pattern is successful." msgstr "" -#: ../../library/ast.rst:1667 msgid "" ">>> print(ast.dump(ast.parse(\"\"\"\n" "... match x:\n" @@ -2048,32 +1520,15 @@ msgid "" " value=Constant(value=Ellipsis))])])])" msgstr "" -#: ../../library/ast.rst:1702 -msgid "" -"A match class pattern. ``cls`` is an expression giving the nominal class to " -"be matched. ``patterns`` is a sequence of pattern nodes to be matched " -"against the class defined sequence of pattern matching attributes. " -"``kwd_attrs`` is a sequence of additional attributes to be matched " -"(specified as keyword arguments in the class pattern), ``kwd_patterns`` are " -"the corresponding patterns (specified as keyword values in the class " -"pattern)." +msgid "A match class pattern. ``cls`` is an expression giving the nominal class to be matched. ``patterns`` is a sequence of pattern nodes to be matched against the class defined sequence of pattern matching attributes. ``kwd_attrs`` is a sequence of additional attributes to be matched (specified as keyword arguments in the class pattern), ``kwd_patterns`` are the corresponding patterns (specified as keyword values in the class pattern)." msgstr "" -#: ../../library/ast.rst:1709 -msgid "" -"This pattern succeeds if the subject is an instance of the nominated class, " -"all positional patterns match the corresponding class-defined attributes, " -"and any specified keyword attributes match their corresponding pattern." +msgid "This pattern succeeds if the subject is an instance of the nominated class, all positional patterns match the corresponding class-defined attributes, and any specified keyword attributes match their corresponding pattern." msgstr "" -#: ../../library/ast.rst:1713 -msgid "" -"Note: classes may define a property that returns self in order to match a " -"pattern node against the instance being matched. Several builtin types are " -"also matched that way, as described in the match statement documentation." +msgid "Note: classes may define a property that returns self in order to match a pattern node against the instance being matched. Several builtin types are also matched that way, as described in the match statement documentation." msgstr "" -#: ../../library/ast.rst:1717 msgid "" ">>> print(ast.dump(ast.parse(\"\"\"\n" "... match x:\n" @@ -2117,22 +1572,12 @@ msgid "" " value=Constant(value=Ellipsis))])])])" msgstr "" -#: ../../library/ast.rst:1764 -msgid "" -"A match \"as-pattern\", capture pattern or wildcard pattern. ``pattern`` " -"contains the match pattern that the subject will be matched against. If the " -"pattern is ``None``, the node represents a capture pattern (i.e a bare name) " -"and will always succeed." +msgid "A match \"as-pattern\", capture pattern or wildcard pattern. ``pattern`` contains the match pattern that the subject will be matched against. If the pattern is ``None``, the node represents a capture pattern (i.e a bare name) and will always succeed." msgstr "" -#: ../../library/ast.rst:1769 -msgid "" -"The ``name`` attribute contains the name that will be bound if the pattern " -"is successful. If ``name`` is ``None``, ``pattern`` must also be ``None`` " -"and the node represents the wildcard pattern." +msgid "The ``name`` attribute contains the name that will be bound if the pattern is successful. If ``name`` is ``None``, ``pattern`` must also be ``None`` and the node represents the wildcard pattern." msgstr "" -#: ../../library/ast.rst:1773 msgid "" ">>> print(ast.dump(ast.parse(\"\"\"\n" "... match x:\n" @@ -2162,16 +1607,9 @@ msgid "" " value=Constant(value=Ellipsis))])])])" msgstr "" -#: ../../library/ast.rst:1806 -msgid "" -"A match \"or-pattern\". An or-pattern matches each of its subpatterns in " -"turn to the subject, until one succeeds. The or-pattern is then deemed to " -"succeed. If none of the subpatterns succeed the or-pattern fails. The " -"``patterns`` attribute contains a list of match pattern nodes that will be " -"matched against the subject." +msgid "A match \"or-pattern\". An or-pattern matches each of its subpatterns in turn to the subject, until one succeeds. The or-pattern is then deemed to succeed. If none of the subpatterns succeed the or-pattern fails. The ``patterns`` attribute contains a list of match pattern nodes that will be matched against the subject." msgstr "" -#: ../../library/ast.rst:1812 msgid "" ">>> print(ast.dump(ast.parse(\"\"\"\n" "... match x:\n" @@ -2195,20 +1633,14 @@ msgid "" " value=Constant(value=Ellipsis))])])])" msgstr "" -#: ../../library/ast.rst:1839 msgid "Type annotations" msgstr "" -#: ../../library/ast.rst:1843 -msgid "" -"A ``# type: ignore`` comment located at *lineno*. *tag* is the optional tag " -"specified by the form ``# type: ignore ``." +msgid "A ``# type: ignore`` comment located at *lineno*. *tag* is the optional tag specified by the form ``# type: ignore ``." msgstr "" -#: ../../library/ast.rst:1846 msgid "" -">>> print(ast.dump(ast.parse('x = 1 # type: ignore', type_comments=True), " -"indent=4))\n" +">>> print(ast.dump(ast.parse('x = 1 # type: ignore', type_comments=True), indent=4))\n" "Module(\n" " body=[\n" " Assign(\n" @@ -2217,8 +1649,7 @@ msgid "" " value=Constant(value=1))],\n" " type_ignores=[\n" " TypeIgnore(lineno=1, tag='')])\n" -">>> print(ast.dump(ast.parse('x: bool = 1 # type: ignore[assignment]', " -"type_comments=True), indent=4))\n" +">>> print(ast.dump(ast.parse('x: bool = 1 # type: ignore[assignment]', type_comments=True), indent=4))\n" "Module(\n" " body=[\n" " AnnAssign(\n" @@ -2230,36 +1661,20 @@ msgid "" " TypeIgnore(lineno=1, tag='[assignment]')])" msgstr "" -#: ../../library/ast.rst:1869 -msgid "" -":class:`!TypeIgnore` nodes are not generated when the *type_comments* " -"parameter is set to ``False`` (default). See :func:`ast.parse` for more " -"details." +msgid ":class:`!TypeIgnore` nodes are not generated when the *type_comments* parameter is set to ``False`` (default). See :func:`ast.parse` for more details." msgstr "" -#: ../../library/ast.rst:1877 msgid "Type parameters" msgstr "" -#: ../../library/ast.rst:1879 -msgid "" -":ref:`Type parameters ` can exist on classes, functions, and " -"type aliases." +msgid ":ref:`Type parameters ` can exist on classes, functions, and type aliases." msgstr "" -#: ../../library/ast.rst:1884 -msgid "" -"A :class:`typing.TypeVar`. ``name`` is the name of the type variable. " -"``bound`` is the bound or constraints, if any. If ``bound`` is " -"a :class:`Tuple`, it represents constraints; otherwise it represents the " -"bound. ``default_value`` is the default value; if the :class:`!TypeVar` has " -"no default, this attribute will be set to ``None``." +msgid "A :class:`typing.TypeVar`. ``name`` is the name of the type variable. ``bound`` is the bound or constraints, if any. If ``bound`` is a :class:`Tuple`, it represents constraints; otherwise it represents the bound. ``default_value`` is the default value; if the :class:`!TypeVar` has no default, this attribute will be set to ``None``." msgstr "" -#: ../../library/ast.rst:1890 msgid "" -">>> print(ast.dump(ast.parse(\"type Alias[T: int = bool] = list[T]\"), " -"indent=4))\n" +">>> print(ast.dump(ast.parse(\"type Alias[T: int = bool] = list[T]\"), indent=4))\n" "Module(\n" " body=[\n" " TypeAlias(\n" @@ -2275,22 +1690,14 @@ msgid "" " ctx=Load()))])" msgstr "" -#: ../../library/ast.rst:1909 ../../library/ast.rst:1944 -#: ../../library/ast.rst:1976 msgid "Added the *default_value* parameter." msgstr "" -#: ../../library/ast.rst:1914 -msgid "" -"A :class:`typing.ParamSpec`. ``name`` is the name of the parameter " -"specification. ``default_value`` is the default value; if the :class:`!" -"ParamSpec` has no default, this attribute will be set to ``None``." +msgid "A :class:`typing.ParamSpec`. ``name`` is the name of the parameter specification. ``default_value`` is the default value; if the :class:`!ParamSpec` has no default, this attribute will be set to ``None``." msgstr "" -#: ../../library/ast.rst:1918 msgid "" -">>> print(ast.dump(ast.parse(\"type Alias[**P = [int, str]] = Callable[P, " -"int]\"), indent=4))\n" +">>> print(ast.dump(ast.parse(\"type Alias[**P = [int, str]] = Callable[P, int]\"), indent=4))\n" "Module(\n" " body=[\n" " TypeAlias(\n" @@ -2313,17 +1720,11 @@ msgid "" " ctx=Load()))])" msgstr "" -#: ../../library/ast.rst:1949 -msgid "" -"A :class:`typing.TypeVarTuple`. ``name`` is the name of the type variable " -"tuple. ``default_value`` is the default value; if the :class:`!TypeVarTuple` " -"has no default, this attribute will be set to ``None``." +msgid "A :class:`typing.TypeVarTuple`. ``name`` is the name of the type variable tuple. ``default_value`` is the default value; if the :class:`!TypeVarTuple` has no default, this attribute will be set to ``None``." msgstr "" -#: ../../library/ast.rst:1953 msgid "" -">>> print(ast.dump(ast.parse(\"type Alias[*Ts = ()] = tuple[*Ts]\"), " -"indent=4))\n" +">>> print(ast.dump(ast.parse(\"type Alias[*Ts = ()] = tuple[*Ts]\"), indent=4))\n" "Module(\n" " body=[\n" " TypeAlias(\n" @@ -2343,52 +1744,36 @@ msgid "" " ctx=Load()))])" msgstr "" -#: ../../library/ast.rst:1980 msgid "Function and class definitions" msgstr "" -#: ../../library/ast.rst:1984 msgid "A function definition." msgstr "" -#: ../../library/ast.rst:1986 msgid "``name`` is a raw string of the function name." msgstr "" -#: ../../library/ast.rst:1987 msgid "``args`` is an :class:`arguments` node." msgstr "" -#: ../../library/ast.rst:1988 msgid "``body`` is the list of nodes inside the function." msgstr "" -#: ../../library/ast.rst:1989 -msgid "" -"``decorator_list`` is the list of decorators to be applied, stored outermost " -"first (i.e. the first in the list will be applied last)." +msgid "``decorator_list`` is the list of decorators to be applied, stored outermost first (i.e. the first in the list will be applied last)." msgstr "" -#: ../../library/ast.rst:1991 msgid "``returns`` is the return annotation." msgstr "" -#: ../../library/ast.rst:1992 ../../library/ast.rst:2155 msgid "``type_params`` is a list of :ref:`type parameters `." msgstr "" -#: ../../library/ast.rst:1998 ../../library/ast.rst:2182 -#: ../../library/ast.rst:2193 msgid "Added ``type_params``." msgstr "" -#: ../../library/ast.rst:2004 -msgid "" -"``lambda`` is a minimal function definition that can be used inside an " -"expression. Unlike :class:`FunctionDef`, ``body`` holds a single node." +msgid "``lambda`` is a minimal function definition that can be used inside an expression. Unlike :class:`FunctionDef`, ``body`` holds a single node." msgstr "" -#: ../../library/ast.rst:2007 msgid "" ">>> print(ast.dump(ast.parse('lambda x,y: ...'), indent=4))\n" "Module(\n" @@ -2402,52 +1787,32 @@ msgid "" " body=Constant(value=Ellipsis)))])" msgstr "" -#: ../../library/ast.rst:2023 msgid "The arguments for a function." msgstr "" -#: ../../library/ast.rst:2025 -msgid "" -"``posonlyargs``, ``args`` and ``kwonlyargs`` are lists of :class:`arg` nodes." +msgid "``posonlyargs``, ``args`` and ``kwonlyargs`` are lists of :class:`arg` nodes." msgstr "" -#: ../../library/ast.rst:2026 -msgid "" -"``vararg`` and ``kwarg`` are single :class:`arg` nodes, referring to the " -"``*args, **kwargs`` parameters." +msgid "``vararg`` and ``kwarg`` are single :class:`arg` nodes, referring to the ``*args, **kwargs`` parameters." msgstr "" -#: ../../library/ast.rst:2028 -msgid "" -"``kw_defaults`` is a list of default values for keyword-only arguments. If " -"one is ``None``, the corresponding argument is required." +msgid "``kw_defaults`` is a list of default values for keyword-only arguments. If one is ``None``, the corresponding argument is required." msgstr "" -#: ../../library/ast.rst:2030 -msgid "" -"``defaults`` is a list of default values for arguments that can be passed " -"positionally. If there are fewer defaults, they correspond to the last n " -"arguments." +msgid "``defaults`` is a list of default values for arguments that can be passed positionally. If there are fewer defaults, they correspond to the last n arguments." msgstr "" -#: ../../library/ast.rst:2037 -msgid "" -"A single argument in a list. ``arg`` is a raw string of the argument name; " -"``annotation`` is its annotation, such as a :class:`Name` node." +msgid "A single argument in a list. ``arg`` is a raw string of the argument name; ``annotation`` is its annotation, such as a :class:`Name` node." msgstr "" -#: ../../library/ast.rst:2042 -msgid "" -"``type_comment`` is an optional string with the type annotation as a comment" +msgid "``type_comment`` is an optional string with the type annotation as a comment" msgstr "" -#: ../../library/ast.rst:2044 msgid "" ">>> print(ast.dump(ast.parse(\"\"\"\\\n" "... @decorator1\n" "... @decorator2\n" -"... def f(a: 'annotation', b=1, c=2, *d, e, f=3, **g) -> 'return " -"annotation':\n" +"... def f(a: 'annotation', b=1, c=2, *d, e, f=3, **g) -> 'return annotation':\n" "... pass\n" "... \"\"\"), indent=4))\n" "Module(\n" @@ -2480,11 +1845,9 @@ msgid "" " returns=Constant(value='return annotation'))])" msgstr "" -#: ../../library/ast.rst:2084 msgid "A ``return`` statement." msgstr "" -#: ../../library/ast.rst:2086 msgid "" ">>> print(ast.dump(ast.parse('return 4'), indent=4))\n" "Module(\n" @@ -2493,14 +1856,9 @@ msgid "" " value=Constant(value=4))])" msgstr "" -#: ../../library/ast.rst:2098 -msgid "" -"A ``yield`` or ``yield from`` expression. Because these are expressions, " -"they must be wrapped in an :class:`Expr` node if the value sent back is not " -"used." +msgid "A ``yield`` or ``yield from`` expression. Because these are expressions, they must be wrapped in an :class:`Expr` node if the value sent back is not used." msgstr "" -#: ../../library/ast.rst:2101 msgid "" ">>> print(ast.dump(ast.parse('yield x'), indent=4))\n" "Module(\n" @@ -2517,12 +1875,9 @@ msgid "" " value=Name(id='x', ctx=Load())))])" msgstr "" -#: ../../library/ast.rst:2121 -msgid "" -"``global`` and ``nonlocal`` statements. ``names`` is a list of raw strings." +msgid "``global`` and ``nonlocal`` statements. ``names`` is a list of raw strings." msgstr "" -#: ../../library/ast.rst:2123 msgid "" ">>> print(ast.dump(ast.parse('global x,y,z'), indent=4))\n" "Module(\n" @@ -2543,36 +1898,24 @@ msgid "" " 'z'])])" msgstr "" -#: ../../library/ast.rst:2146 msgid "A class definition." msgstr "" -#: ../../library/ast.rst:2148 msgid "``name`` is a raw string for the class name" msgstr "" -#: ../../library/ast.rst:2149 msgid "``bases`` is a list of nodes for explicitly specified base classes." msgstr "" -#: ../../library/ast.rst:2150 -msgid "" -"``keywords`` is a list of :class:`.keyword` nodes, principally for " -"'metaclass'. Other keywords will be passed to the metaclass, as " -"per :pep:`3115`." +msgid "``keywords`` is a list of :class:`.keyword` nodes, principally for 'metaclass'. Other keywords will be passed to the metaclass, as per :pep:`3115`." msgstr "" -#: ../../library/ast.rst:2152 -msgid "" -"``body`` is a list of nodes representing the code within the class " -"definition." +msgid "``body`` is a list of nodes representing the code within the class definition." msgstr "" -#: ../../library/ast.rst:2154 msgid "``decorator_list`` is a list of nodes, as in :class:`FunctionDef`." msgstr "" -#: ../../library/ast.rst:2157 msgid "" ">>> print(ast.dump(ast.parse(\"\"\"\\\n" "... @decorator1\n" @@ -2598,23 +1941,15 @@ msgid "" " Name(id='decorator2', ctx=Load())])])" msgstr "" -#: ../../library/ast.rst:2186 msgid "Async and await" msgstr "" -#: ../../library/ast.rst:2190 -msgid "" -"An ``async def`` function definition. Has the same fields " -"as :class:`FunctionDef`." +msgid "An ``async def`` function definition. Has the same fields as :class:`FunctionDef`." msgstr "" -#: ../../library/ast.rst:2199 -msgid "" -"An ``await`` expression. ``value`` is what it waits for. Only valid in the " -"body of an :class:`AsyncFunctionDef`." +msgid "An ``await`` expression. ``value`` is what it waits for. Only valid in the body of an :class:`AsyncFunctionDef`." msgstr "" -#: ../../library/ast.rst:2202 msgid "" ">>> print(ast.dump(ast.parse(\"\"\"\\\n" "... async def f():\n" @@ -2632,323 +1967,144 @@ msgid "" " func=Name(id='other_func', ctx=Load()))))])])" msgstr "" -#: ../../library/ast.rst:2223 -msgid "" -"``async for`` loops and ``async with`` context managers. They have the same " -"fields as :class:`For` and :class:`With`, respectively. Only valid in the " -"body of an :class:`AsyncFunctionDef`." +msgid "``async for`` loops and ``async with`` context managers. They have the same fields as :class:`For` and :class:`With`, respectively. Only valid in the body of an :class:`AsyncFunctionDef`." msgstr "" -#: ../../library/ast.rst:2228 -msgid "" -"When a string is parsed by :func:`ast.parse`, operator nodes (subclasses " -"of :class:`ast.operator`, :class:`ast.unaryop`, :class:`ast.cmpop`, :class:`ast.boolop` " -"and :class:`ast.expr_context`) on the returned tree will be singletons. " -"Changes to one will be reflected in all other occurrences of the same value " -"(for example, :class:`ast.Add`)." +msgid "When a string is parsed by :func:`ast.parse`, operator nodes (subclasses of :class:`ast.operator`, :class:`ast.unaryop`, :class:`ast.cmpop`, :class:`ast.boolop` and :class:`ast.expr_context`) on the returned tree will be singletons. Changes to one will be reflected in all other occurrences of the same value (for example, :class:`ast.Add`)." msgstr "" -#: ../../library/ast.rst:2236 msgid ":mod:`!ast` helpers" msgstr "" -#: ../../library/ast.rst:2238 -msgid "" -"Apart from the node classes, the :mod:`!ast` module defines these utility " -"functions and classes for traversing abstract syntax trees:" +msgid "Apart from the node classes, the :mod:`!ast` module defines these utility functions and classes for traversing abstract syntax trees:" msgstr "" -#: ../../library/ast.rst:2243 -msgid "" -"Parse the source into an AST node. Equivalent to ``compile(source, " -"filename, mode, flags=FLAGS_VALUE, optimize=optimize)``, where " -"``FLAGS_VALUE`` is ``ast.PyCF_ONLY_AST`` if ``optimize <= 0`` and " -"``ast.PyCF_OPTIMIZED_AST`` otherwise." +msgid "Parse the source into an AST node. Equivalent to ``compile(source, filename, mode, flags=FLAGS_VALUE, optimize=optimize)``, where ``FLAGS_VALUE`` is ``ast.PyCF_ONLY_AST`` if ``optimize <= 0`` and ``ast.PyCF_OPTIMIZED_AST`` otherwise." msgstr "" -#: ../../library/ast.rst:2248 -msgid "" -"If ``type_comments=True`` is given, the parser is modified to check and " -"return type comments as specified by :pep:`484` and :pep:`526`. This is " -"equivalent to adding :data:`ast.PyCF_TYPE_COMMENTS` to the flags passed " -"to :func:`compile`. This will report syntax errors for misplaced type " -"comments. Without this flag, type comments will be ignored, and the " -"``type_comment`` field on selected AST nodes will always be ``None``. In " -"addition, the locations of ``# type: ignore`` comments will be returned as " -"the ``type_ignores`` attribute of :class:`Module` (otherwise it is always an " -"empty list)." +msgid "If ``type_comments=True`` is given, the parser is modified to check and return type comments as specified by :pep:`484` and :pep:`526`. This is equivalent to adding :data:`ast.PyCF_TYPE_COMMENTS` to the flags passed to :func:`compile`. This will report syntax errors for misplaced type comments. Without this flag, type comments will be ignored, and the ``type_comment`` field on selected AST nodes will always be ``None``. In addition, the locations of ``# type: ignore`` comments will be returned as the ``type_ignores`` attribute of :class:`Module` (otherwise it is always an empty list)." msgstr "" -#: ../../library/ast.rst:2258 -msgid "" -"In addition, if ``mode`` is ``'func_type'``, the input syntax is modified to " -"correspond to :pep:`484` \"signature type comments\", e.g. ``(str, int) -> " -"List[str]``." +msgid "In addition, if ``mode`` is ``'func_type'``, the input syntax is modified to correspond to :pep:`484` \"signature type comments\", e.g. ``(str, int) -> List[str]``." msgstr "" -#: ../../library/ast.rst:2262 -msgid "" -"Setting ``feature_version`` to a tuple ``(major, minor)`` will result in a " -"\"best-effort\" attempt to parse using that Python version's grammar. For " -"example, setting ``feature_version=(3, 9)`` will attempt to disallow parsing " -"of :keyword:`match` statements. Currently ``major`` must equal to ``3``. The " -"lowest supported version is ``(3, 7)`` (and this may increase in future " -"Python versions); the highest is ``sys.version_info[0:2]``. \"Best-effort\" " -"attempt means there is no guarantee that the parse (or success of the parse) " -"is the same as when run on the Python version corresponding to " -"``feature_version``." +msgid "Setting ``feature_version`` to a tuple ``(major, minor)`` will result in a \"best-effort\" attempt to parse using that Python version's grammar. For example, setting ``feature_version=(3, 9)`` will attempt to disallow parsing of :keyword:`match` statements. Currently ``major`` must equal to ``3``. The lowest supported version is ``(3, 7)`` (and this may increase in future Python versions); the highest is ``sys.version_info[0:2]``. \"Best-effort\" attempt means there is no guarantee that the parse (or success of the parse) is the same as when run on the Python version corresponding to ``feature_version``." msgstr "" -#: ../../library/ast.rst:2272 -msgid "" -"If source contains a null character (``\\0``), :exc:`ValueError` is raised." +msgid "If source contains a null character (``\\0``), :exc:`ValueError` is raised." msgstr "" -#: ../../library/ast.rst:2275 -msgid "" -"Note that successfully parsing source code into an AST object doesn't " -"guarantee that the source code provided is valid Python code that can be " -"executed as the compilation step can raise further :exc:`SyntaxError` " -"exceptions. For instance, the source ``return 42`` generates a valid AST " -"node for a return statement, but it cannot be compiled alone (it needs to be " -"inside a function node)." +msgid "Note that successfully parsing source code into an AST object doesn't guarantee that the source code provided is valid Python code that can be executed as the compilation step can raise further :exc:`SyntaxError` exceptions. For instance, the source ``return 42`` generates a valid AST node for a return statement, but it cannot be compiled alone (it needs to be inside a function node)." msgstr "" -#: ../../library/ast.rst:2282 -msgid "" -"In particular, :func:`ast.parse` won't do any scoping checks, which the " -"compilation step does." +msgid "In particular, :func:`ast.parse` won't do any scoping checks, which the compilation step does." msgstr "" -#: ../../library/ast.rst:2286 -msgid "" -"It is possible to crash the Python interpreter with a sufficiently large/" -"complex string due to stack depth limitations in Python's AST compiler." +msgid "It is possible to crash the Python interpreter with a sufficiently large/complex string due to stack depth limitations in Python's AST compiler." msgstr "" -#: ../../library/ast.rst:2290 msgid "Added ``type_comments``, ``mode='func_type'`` and ``feature_version``." msgstr "" -#: ../../library/ast.rst:2293 -msgid "" -"The minimum supported version for ``feature_version`` is now ``(3, 7)``. The " -"``optimize`` argument was added." +msgid "The minimum supported version for ``feature_version`` is now ``(3, 7)``. The ``optimize`` argument was added." msgstr "" -#: ../../library/ast.rst:2300 -msgid "" -"Unparse an :class:`ast.AST` object and generate a string with code that " -"would produce an equivalent :class:`ast.AST` object if parsed back " -"with :func:`ast.parse`." +msgid "Unparse an :class:`ast.AST` object and generate a string with code that would produce an equivalent :class:`ast.AST` object if parsed back with :func:`ast.parse`." msgstr "" -#: ../../library/ast.rst:2305 -msgid "" -"The produced code string will not necessarily be equal to the original code " -"that generated the :class:`ast.AST` object (without any compiler " -"optimizations, such as constant tuples/frozensets)." +msgid "The produced code string will not necessarily be equal to the original code that generated the :class:`ast.AST` object (without any compiler optimizations, such as constant tuples/frozensets)." msgstr "" -#: ../../library/ast.rst:2310 -msgid "" -"Trying to unparse a highly complex expression would result " -"with :exc:`RecursionError`." +msgid "Trying to unparse a highly complex expression would result with :exc:`RecursionError`." msgstr "" -#: ../../library/ast.rst:2318 -msgid "" -"Evaluate an expression node or a string containing only a Python literal or " -"container display. The string or node provided may only consist of the " -"following Python literal structures: strings, bytes, numbers, tuples, lists, " -"dicts, sets, booleans, ``None`` and ``Ellipsis``." +msgid "Evaluate an expression node or a string containing only a Python literal or container display. The string or node provided may only consist of the following Python literal structures: strings, bytes, numbers, tuples, lists, dicts, sets, booleans, ``None`` and ``Ellipsis``." msgstr "" -#: ../../library/ast.rst:2323 -msgid "" -"This can be used for evaluating strings containing Python values without the " -"need to parse the values oneself. It is not capable of evaluating " -"arbitrarily complex expressions, for example involving operators or indexing." +msgid "This can be used for evaluating strings containing Python values without the need to parse the values oneself. It is not capable of evaluating arbitrarily complex expressions, for example involving operators or indexing." msgstr "" -#: ../../library/ast.rst:2328 -msgid "" -"This function had been documented as \"safe\" in the past without defining " -"what that meant. That was misleading. This is specifically designed not to " -"execute Python code, unlike the more general :func:`eval`. There is no " -"namespace, no name lookups, or ability to call out. But it is not free from " -"attack: A relatively small input can lead to memory exhaustion or to C stack " -"exhaustion, crashing the process. There is also the possibility for " -"excessive CPU consumption denial of service on some inputs. Calling it on " -"untrusted data is thus not recommended." +msgid "This function had been documented as \"safe\" in the past without defining what that meant. That was misleading. This is specifically designed not to execute Python code, unlike the more general :func:`eval`. There is no namespace, no name lookups, or ability to call out. But it is not free from attack: A relatively small input can lead to memory exhaustion or to C stack exhaustion, crashing the process. There is also the possibility for excessive CPU consumption denial of service on some inputs. Calling it on untrusted data is thus not recommended." msgstr "" -#: ../../library/ast.rst:2338 -msgid "" -"It is possible to crash the Python interpreter due to stack depth " -"limitations in Python's AST compiler." +msgid "It is possible to crash the Python interpreter due to stack depth limitations in Python's AST compiler." msgstr "" -#: ../../library/ast.rst:2341 -msgid "" -"It can " -"raise :exc:`ValueError`, :exc:`TypeError`, :exc:`SyntaxError`, :exc:`MemoryError` " -"and :exc:`RecursionError` depending on the malformed input." +msgid "It can raise :exc:`ValueError`, :exc:`TypeError`, :exc:`SyntaxError`, :exc:`MemoryError` and :exc:`RecursionError` depending on the malformed input." msgstr "" -#: ../../library/ast.rst:2345 msgid "Now allows bytes and set literals." msgstr "" -#: ../../library/ast.rst:2348 msgid "Now supports creating empty sets with ``'set()'``." msgstr "" -#: ../../library/ast.rst:2351 msgid "For string inputs, leading spaces and tabs are now stripped." msgstr "" -#: ../../library/ast.rst:2357 -msgid "" -"Return the docstring of the given *node* (which must be " -"a :class:`FunctionDef`, :class:`AsyncFunctionDef`, :class:`ClassDef`, " -"or :class:`Module` node), or ``None`` if it has no docstring. If *clean* is " -"true, clean up the docstring's indentation with :func:`inspect.cleandoc`." +msgid "Return the docstring of the given *node* (which must be a :class:`FunctionDef`, :class:`AsyncFunctionDef`, :class:`ClassDef`, or :class:`Module` node), or ``None`` if it has no docstring. If *clean* is true, clean up the docstring's indentation with :func:`inspect.cleandoc`." msgstr "" -#: ../../library/ast.rst:2363 msgid ":class:`AsyncFunctionDef` is now supported." msgstr "" -#: ../../library/ast.rst:2369 -msgid "" -"Get source code segment of the *source* that generated *node*. If some " -"location information " -"(:attr:`~ast.AST.lineno`, :attr:`~ast.AST.end_lineno`, :attr:`~ast.AST.col_offset`, " -"or :attr:`~ast.AST.end_col_offset`) is missing, return ``None``." +msgid "Get source code segment of the *source* that generated *node*. If some location information (:attr:`~ast.AST.lineno`, :attr:`~ast.AST.end_lineno`, :attr:`~ast.AST.col_offset`, or :attr:`~ast.AST.end_col_offset`) is missing, return ``None``." msgstr "" -#: ../../library/ast.rst:2373 -msgid "" -"If *padded* is ``True``, the first line of a multi-line statement will be " -"padded with spaces to match its original position." +msgid "If *padded* is ``True``, the first line of a multi-line statement will be padded with spaces to match its original position." msgstr "" -#: ../../library/ast.rst:2381 -msgid "" -"When you compile a node tree with :func:`compile`, the compiler " -"expects :attr:`~ast.AST.lineno` and :attr:`~ast.AST.col_offset` attributes " -"for every node that supports them. This is rather tedious to fill in for " -"generated nodes, so this helper adds these attributes recursively where not " -"already set, by setting them to the values of the parent node. It works " -"recursively starting at *node*." +msgid "When you compile a node tree with :func:`compile`, the compiler expects :attr:`~ast.AST.lineno` and :attr:`~ast.AST.col_offset` attributes for every node that supports them. This is rather tedious to fill in for generated nodes, so this helper adds these attributes recursively where not already set, by setting them to the values of the parent node. It works recursively starting at *node*." msgstr "" -#: ../../library/ast.rst:2390 -msgid "" -"Increment the line number and end line number of each node in the tree " -"starting at *node* by *n*. This is useful to \"move code\" to a different " -"location in a file." +msgid "Increment the line number and end line number of each node in the tree starting at *node* by *n*. This is useful to \"move code\" to a different location in a file." msgstr "" -#: ../../library/ast.rst:2397 -msgid "" -"Copy source location " -"(:attr:`~ast.AST.lineno`, :attr:`~ast.AST.col_offset`, :attr:`~ast.AST.end_lineno`, " -"and :attr:`~ast.AST.end_col_offset`) from *old_node* to *new_node* if " -"possible, and return *new_node*." +msgid "Copy source location (:attr:`~ast.AST.lineno`, :attr:`~ast.AST.col_offset`, :attr:`~ast.AST.end_lineno`, and :attr:`~ast.AST.end_col_offset`) from *old_node* to *new_node* if possible, and return *new_node*." msgstr "" -#: ../../library/ast.rst:2404 -msgid "" -"Yield a tuple of ``(fieldname, value)`` for each field in ``node._fields`` " -"that is present on *node*." +msgid "Yield a tuple of ``(fieldname, value)`` for each field in ``node._fields`` that is present on *node*." msgstr "" -#: ../../library/ast.rst:2410 -msgid "" -"Yield all direct child nodes of *node*, that is, all fields that are nodes " -"and all items of fields that are lists of nodes." +msgid "Yield all direct child nodes of *node*, that is, all fields that are nodes and all items of fields that are lists of nodes." msgstr "" -#: ../../library/ast.rst:2416 -msgid "" -"Recursively yield all descendant nodes in the tree starting at *node* " -"(including *node* itself), in no specified order. This is useful if you " -"only want to modify nodes in place and don't care about the context." +msgid "Recursively yield all descendant nodes in the tree starting at *node* (including *node* itself), in no specified order. This is useful if you only want to modify nodes in place and don't care about the context." msgstr "" -#: ../../library/ast.rst:2423 -msgid "" -"A node visitor base class that walks the abstract syntax tree and calls a " -"visitor function for every node found. This function may return a value " -"which is forwarded by the :meth:`visit` method." +msgid "A node visitor base class that walks the abstract syntax tree and calls a visitor function for every node found. This function may return a value which is forwarded by the :meth:`visit` method." msgstr "" -#: ../../library/ast.rst:2427 -msgid "" -"This class is meant to be subclassed, with the subclass adding visitor " -"methods." +msgid "This class is meant to be subclassed, with the subclass adding visitor methods." msgstr "" -#: ../../library/ast.rst:2432 -msgid "" -"Visit a node. The default implementation calls the method " -"called :samp:`self.visit_{classname}` where *classname* is the name of the " -"node class, or :meth:`generic_visit` if that method doesn't exist." +msgid "Visit a node. The default implementation calls the method called :samp:`self.visit_{classname}` where *classname* is the name of the node class, or :meth:`generic_visit` if that method doesn't exist." msgstr "" -#: ../../library/ast.rst:2438 msgid "This visitor calls :meth:`visit` on all children of the node." msgstr "" -#: ../../library/ast.rst:2440 -msgid "" -"Note that child nodes of nodes that have a custom visitor method won't be " -"visited unless the visitor calls :meth:`generic_visit` or visits them itself." +msgid "Note that child nodes of nodes that have a custom visitor method won't be visited unless the visitor calls :meth:`generic_visit` or visits them itself." msgstr "" -#: ../../library/ast.rst:2446 msgid "Handles all constant nodes." msgstr "" -#: ../../library/ast.rst:2448 -msgid "" -"Don't use the :class:`NodeVisitor` if you want to apply changes to nodes " -"during traversal. For this a special visitor exists " -"(:class:`NodeTransformer`) that allows modifications." +msgid "Don't use the :class:`NodeVisitor` if you want to apply changes to nodes during traversal. For this a special visitor exists (:class:`NodeTransformer`) that allows modifications." msgstr "" -#: ../../library/ast.rst:2454 -msgid "" -"Methods :meth:`!visit_Num`, :meth:`!visit_Str`, :meth:`!" -"visit_Bytes`, :meth:`!visit_NameConstant` and :meth:`!visit_Ellipsis` will " -"not be called in Python 3.14+. Add the :meth:`visit_Constant` method " -"instead to handle all constant nodes." +msgid "Methods :meth:`!visit_Num`, :meth:`!visit_Str`, :meth:`!visit_Bytes`, :meth:`!visit_NameConstant` and :meth:`!visit_Ellipsis` will not be called in Python 3.14+. Add the :meth:`visit_Constant` method instead to handle all constant nodes." msgstr "" -#: ../../library/ast.rst:2462 -msgid "" -"A :class:`NodeVisitor` subclass that walks the abstract syntax tree and " -"allows modification of nodes." +msgid "A :class:`NodeVisitor` subclass that walks the abstract syntax tree and allows modification of nodes." msgstr "" -#: ../../library/ast.rst:2465 -msgid "" -"The :class:`NodeTransformer` will walk the AST and use the return value of " -"the visitor methods to replace or remove the old node. If the return value " -"of the visitor method is ``None``, the node will be removed from its " -"location, otherwise it is replaced with the return value. The return value " -"may be the original node in which case no replacement takes place." +msgid "The :class:`NodeTransformer` will walk the AST and use the return value of the visitor methods to replace or remove the old node. If the return value of the visitor method is ``None``, the node will be removed from its location, otherwise it is replaced with the return value. The return value may be the original node in which case no replacement takes place." msgstr "" -#: ../../library/ast.rst:2471 -msgid "" -"Here is an example transformer that rewrites all occurrences of name lookups " -"(``foo``) to ``data['foo']``::" +msgid "Here is an example transformer that rewrites all occurrences of name lookups (``foo``) to ``data['foo']``::" msgstr "" -#: ../../library/ast.rst:2474 msgid "" "class RewriteName(NodeTransformer):\n" "\n" @@ -2960,78 +2116,41 @@ msgid "" " )" msgstr "" -#: ../../library/ast.rst:2483 -msgid "" -"Keep in mind that if the node you're operating on has child nodes you must " -"either transform the child nodes yourself or call " -"the :meth:`~ast.NodeVisitor.generic_visit` method for the node first." +msgid "Keep in mind that if the node you're operating on has child nodes you must either transform the child nodes yourself or call the :meth:`~ast.NodeVisitor.generic_visit` method for the node first." msgstr "" -#: ../../library/ast.rst:2487 -msgid "" -"For nodes that were part of a collection of statements (that applies to all " -"statement nodes), the visitor may also return a list of nodes rather than " -"just a single node." +msgid "For nodes that were part of a collection of statements (that applies to all statement nodes), the visitor may also return a list of nodes rather than just a single node." msgstr "" -#: ../../library/ast.rst:2491 -msgid "" -"If :class:`NodeTransformer` introduces new nodes (that weren't part of " -"original tree) without giving them location information (such " -"as :attr:`~ast.AST.lineno`), :func:`fix_missing_locations` should be called " -"with the new sub-tree to recalculate the location information::" +msgid "If :class:`NodeTransformer` introduces new nodes (that weren't part of original tree) without giving them location information (such as :attr:`~ast.AST.lineno`), :func:`fix_missing_locations` should be called with the new sub-tree to recalculate the location information::" msgstr "" -#: ../../library/ast.rst:2496 msgid "" "tree = ast.parse('foo', mode='eval')\n" "new_tree = fix_missing_locations(RewriteName().visit(tree))" msgstr "" -#: ../../library/ast.rst:2499 msgid "Usually you use the transformer like this::" msgstr "" -#: ../../library/ast.rst:2501 msgid "node = YourTransformer().visit(node)" msgstr "" -#: ../../library/ast.rst:2506 -msgid "" -"Return a formatted dump of the tree in *node*. This is mainly useful for " -"debugging purposes. If *annotate_fields* is true (by default), the returned " -"string will show the names and the values for fields. If *annotate_fields* " -"is false, the result string will be more compact by omitting unambiguous " -"field names. Attributes such as line numbers and column offsets are not " -"dumped by default. If this is wanted, *include_attributes* can be set to " -"true." +msgid "Return a formatted dump of the tree in *node*. This is mainly useful for debugging purposes. If *annotate_fields* is true (by default), the returned string will show the names and the values for fields. If *annotate_fields* is false, the result string will be more compact by omitting unambiguous field names. Attributes such as line numbers and column offsets are not dumped by default. If this is wanted, *include_attributes* can be set to true." msgstr "" -#: ../../library/ast.rst:2514 -msgid "" -"If *indent* is a non-negative integer or string, then the tree will be " -"pretty-printed with that indent level. An indent level of 0, negative, or " -"``\"\"`` will only insert newlines. ``None`` (the default) selects the " -"single line representation. Using a positive integer indent indents that " -"many spaces per level. If *indent* is a string (such as ``\"\\t\"``), that " -"string is used to indent each level." +msgid "If *indent* is a non-negative integer or string, then the tree will be pretty-printed with that indent level. An indent level of 0, negative, or ``\"\"`` will only insert newlines. ``None`` (the default) selects the single line representation. Using a positive integer indent indents that many spaces per level. If *indent* is a string (such as ``\"\\t\"``), that string is used to indent each level." msgstr "" -#: ../../library/ast.rst:2521 -msgid "" -"If *show_empty* is false (the default), optional empty lists will be omitted " -"from the output. Optional ``None`` values are always omitted." +msgid "If *show_empty* is false (the default), optional empty lists will be omitted from the output. Optional ``None`` values are always omitted." msgstr "" -#: ../../library/ast.rst:2525 msgid "Added the *indent* option." msgstr "" -#: ../../library/ast.rst:2528 msgid "Added the *show_empty* option." msgstr "" -#: ../../library/ast.rst:2531 msgid "" ">>> print(ast.dump(ast.parse(\"\"\"\\\n" "... async def f():\n" @@ -3059,159 +2178,89 @@ msgid "" " type_ignores=[])" msgstr "" -#: ../../library/ast.rst:2561 msgid "Recursively compares two ASTs." msgstr "" -#: ../../library/ast.rst:2563 -msgid "" -"*compare_attributes* affects whether AST attributes are considered in the " -"comparison. If *compare_attributes* is ``False`` (default), then attributes " -"are ignored. Otherwise they must all be equal. This option is useful to " -"check whether the ASTs are structurally equal but differ in whitespace or " -"similar details. Attributes include line numbers and column offsets." +msgid "*compare_attributes* affects whether AST attributes are considered in the comparison. If *compare_attributes* is ``False`` (default), then attributes are ignored. Otherwise they must all be equal. This option is useful to check whether the ASTs are structurally equal but differ in whitespace or similar details. Attributes include line numbers and column offsets." msgstr "" -#: ../../library/ast.rst:2576 msgid "Compiler flags" msgstr "" -#: ../../library/ast.rst:2578 -msgid "" -"The following flags may be passed to :func:`compile` in order to change " -"effects on the compilation of a program:" +msgid "The following flags may be passed to :func:`compile` in order to change effects on the compilation of a program:" msgstr "" -#: ../../library/ast.rst:2583 -msgid "" -"Enables support for top-level ``await``, ``async for``, ``async with`` and " -"async comprehensions." +msgid "Enables support for top-level ``await``, ``async for``, ``async with`` and async comprehensions." msgstr "" -#: ../../library/ast.rst:2590 -msgid "" -"Generates and returns an abstract syntax tree instead of returning a " -"compiled code object." +msgid "Generates and returns an abstract syntax tree instead of returning a compiled code object." msgstr "" -#: ../../library/ast.rst:2595 -msgid "" -"The returned AST is optimized according to the *optimize* argument " -"in :func:`compile` or :func:`ast.parse`." +msgid "The returned AST is optimized according to the *optimize* argument in :func:`compile` or :func:`ast.parse`." msgstr "" -#: ../../library/ast.rst:2602 -msgid "" -"Enables support for :pep:`484` and :pep:`526` style type comments (``# type: " -"``, ``# type: ignore ``)." +msgid "Enables support for :pep:`484` and :pep:`526` style type comments (``# type: ``, ``# type: ignore ``)." msgstr "" -#: ../../library/ast.rst:2611 msgid "Command-line usage" msgstr "" -#: ../../library/ast.rst:2615 -msgid "" -"The :mod:`!ast` module can be executed as a script from the command line. It " -"is as simple as:" +msgid "The :mod:`!ast` module can be executed as a script from the command line. It is as simple as:" msgstr "" -#: ../../library/ast.rst:2618 msgid "python -m ast [-m ] [-a] [infile]" msgstr "" -#: ../../library/ast.rst:2622 msgid "The following options are accepted:" msgstr "" -#: ../../library/ast.rst:2628 msgid "Show the help message and exit." msgstr "" -#: ../../library/ast.rst:2633 -msgid "" -"Specify what kind of code must be compiled, like the *mode* argument " -"in :func:`parse`." +msgid "Specify what kind of code must be compiled, like the *mode* argument in :func:`parse`." msgstr "" -#: ../../library/ast.rst:2638 msgid "Don't parse type comments." msgstr "" -#: ../../library/ast.rst:2642 msgid "Include attributes such as line numbers and column offsets." msgstr "" -#: ../../library/ast.rst:2647 msgid "Indentation of nodes in AST (number of spaces)." msgstr "" -#: ../../library/ast.rst:2651 -msgid "" -"Python version in the format 3.x (for example, 3.10). Defaults to the " -"current version of the interpreter." +msgid "Python version in the format 3.x (for example, 3.10). Defaults to the current version of the interpreter." msgstr "" -#: ../../library/ast.rst:2659 msgid "Optimization level for parser. Defaults to no optimization." msgstr "" -#: ../../library/ast.rst:2665 -msgid "" -"Show empty lists and fields that are ``None``. Defaults to not showing empty " -"objects." +msgid "Show empty lists and fields that are ``None``. Defaults to not showing empty objects." msgstr "" -#: ../../library/ast.rst:2671 -msgid "" -"If :file:`infile` is specified its contents are parsed to AST and dumped to " -"stdout. Otherwise, the content is read from stdin." +msgid "If :file:`infile` is specified its contents are parsed to AST and dumped to stdout. Otherwise, the content is read from stdin." msgstr "" -#: ../../library/ast.rst:2677 -msgid "" -"`Green Tree Snakes `_, an external " -"documentation resource, has good details on working with Python ASTs." +msgid "`Green Tree Snakes `_, an external documentation resource, has good details on working with Python ASTs." msgstr "" -#: ../../library/ast.rst:2680 -msgid "" -"`ASTTokens `_ " -"annotates Python ASTs with the positions of tokens and text in the source " -"code that generated them. This is helpful for tools that make source code " -"transformations." +msgid "`ASTTokens `_ annotates Python ASTs with the positions of tokens and text in the source code that generated them. This is helpful for tools that make source code transformations." msgstr "" -#: ../../library/ast.rst:2685 -msgid "" -"`leoAst.py `_ unifies the token-based and parse-tree-based views of python programs " -"by inserting two-way links between tokens and ast nodes." +msgid "`leoAst.py `_ unifies the token-based and parse-tree-based views of python programs by inserting two-way links between tokens and ast nodes." msgstr "" -#: ../../library/ast.rst:2690 -msgid "" -"`LibCST `_ parses code as a Concrete Syntax " -"Tree that looks like an ast tree and keeps all formatting details. It's " -"useful for building automated refactoring (codemod) applications and linters." +msgid "`LibCST `_ parses code as a Concrete Syntax Tree that looks like an ast tree and keeps all formatting details. It's useful for building automated refactoring (codemod) applications and linters." msgstr "" -#: ../../library/ast.rst:2695 -msgid "" -"`Parso `_ is a Python parser that supports " -"error recovery and round-trip parsing for different Python versions (in " -"multiple Python versions). Parso is also able to list multiple syntax errors " -"in your Python file." +msgid "`Parso `_ is a Python parser that supports error recovery and round-trip parsing for different Python versions (in multiple Python versions). Parso is also able to list multiple syntax errors in your Python file." msgstr "" -#: ../../library/ast.rst:59 msgid "? (question mark)" msgstr "" -#: ../../library/ast.rst:59 ../../library/ast.rst:60 msgid "in AST grammar" msgstr "" -#: ../../library/ast.rst:60 msgid "* (asterisk)" msgstr "" diff --git a/library/asynchat.po b/library/asynchat.po index e5c34be3..2529f8de 100644 --- a/library/asynchat.po +++ b/library/asynchat.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2024-11-19 01:02+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,23 +21,14 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/asynchat.rst:2 msgid ":mod:`!asynchat` --- Asynchronous socket command/response handler" msgstr "" -#: ../../library/asynchat.rst:10 -msgid "" -"This module is no longer part of the Python standard library. It " -"was :ref:`removed in Python 3.12 ` after being " -"deprecated in Python 3.6. The removal was decided in :pep:`594`." +msgid "This module is no longer part of the Python standard library. It was :ref:`removed in Python 3.12 ` after being deprecated in Python 3.6. The removal was decided in :pep:`594`." msgstr "" -#: ../../library/asynchat.rst:14 msgid "Applications should use the :mod:`asyncio` module instead." msgstr "" -#: ../../library/asynchat.rst:16 -msgid "" -"The last version of Python that provided the :mod:`!asynchat` module was " -"`Python 3.11 `_." +msgid "The last version of Python that provided the :mod:`!asynchat` module was `Python 3.11 `_." msgstr "" diff --git a/library/asyncio-api-index.po b/library/asyncio-api-index.po index 1abba069..9b2228e2 100644 --- a/library/asyncio-api-index.po +++ b/library/asyncio-api-index.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:54+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,425 +24,302 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/asyncio-api-index.rst:6 msgid "High-level API Index" msgstr "" -#: ../../library/asyncio-api-index.rst:8 msgid "This page lists all high-level async/await enabled asyncio APIs." msgstr "" -#: ../../library/asyncio-api-index.rst:12 msgid "Tasks" msgstr "" -#: ../../library/asyncio-api-index.rst:14 -msgid "" -"Utilities to run asyncio programs, create Tasks, and await on multiple " -"things with timeouts." +msgid "Utilities to run asyncio programs, create Tasks, and await on multiple things with timeouts." msgstr "" -#: ../../library/asyncio-api-index.rst:21 msgid ":func:`run`" msgstr "" -#: ../../library/asyncio-api-index.rst:22 msgid "Create event loop, run a coroutine, close the loop." msgstr "" -#: ../../library/asyncio-api-index.rst:24 msgid ":class:`Runner`" msgstr "" -#: ../../library/asyncio-api-index.rst:25 msgid "A context manager that simplifies multiple async function calls." msgstr "" -#: ../../library/asyncio-api-index.rst:27 msgid ":class:`Task`" msgstr "" -#: ../../library/asyncio-api-index.rst:28 msgid "Task object." msgstr "" -#: ../../library/asyncio-api-index.rst:30 msgid ":class:`TaskGroup`" msgstr "" -#: ../../library/asyncio-api-index.rst:31 -msgid "" -"A context manager that holds a group of tasks. Provides a convenient and " -"reliable way to wait for all tasks in the group to finish." +msgid "A context manager that holds a group of tasks. Provides a convenient and reliable way to wait for all tasks in the group to finish." msgstr "" -#: ../../library/asyncio-api-index.rst:35 msgid ":func:`create_task`" msgstr "" -#: ../../library/asyncio-api-index.rst:36 msgid "Start an asyncio Task, then returns it." msgstr "" -#: ../../library/asyncio-api-index.rst:38 msgid ":func:`current_task`" msgstr "" -#: ../../library/asyncio-api-index.rst:39 msgid "Return the current Task." msgstr "" -#: ../../library/asyncio-api-index.rst:41 msgid ":func:`all_tasks`" msgstr "" -#: ../../library/asyncio-api-index.rst:42 msgid "Return all tasks that are not yet finished for an event loop." msgstr "" -#: ../../library/asyncio-api-index.rst:44 msgid "``await`` :func:`sleep`" msgstr "" -#: ../../library/asyncio-api-index.rst:45 msgid "Sleep for a number of seconds." msgstr "" -#: ../../library/asyncio-api-index.rst:47 msgid "``await`` :func:`gather`" msgstr "" -#: ../../library/asyncio-api-index.rst:48 msgid "Schedule and wait for things concurrently." msgstr "" -#: ../../library/asyncio-api-index.rst:50 msgid "``await`` :func:`wait_for`" msgstr "" -#: ../../library/asyncio-api-index.rst:51 msgid "Run with a timeout." msgstr "" -#: ../../library/asyncio-api-index.rst:53 msgid "``await`` :func:`shield`" msgstr "" -#: ../../library/asyncio-api-index.rst:54 msgid "Shield from cancellation." msgstr "" -#: ../../library/asyncio-api-index.rst:56 msgid "``await`` :func:`wait`" msgstr "" -#: ../../library/asyncio-api-index.rst:57 msgid "Monitor for completion." msgstr "" -#: ../../library/asyncio-api-index.rst:59 msgid ":func:`timeout`" msgstr "" -#: ../../library/asyncio-api-index.rst:60 msgid "Run with a timeout. Useful in cases when ``wait_for`` is not suitable." msgstr "" -#: ../../library/asyncio-api-index.rst:62 msgid ":func:`to_thread`" msgstr "" -#: ../../library/asyncio-api-index.rst:63 msgid "Asynchronously run a function in a separate OS thread." msgstr "" -#: ../../library/asyncio-api-index.rst:65 msgid ":func:`run_coroutine_threadsafe`" msgstr "" -#: ../../library/asyncio-api-index.rst:66 msgid "Schedule a coroutine from another OS thread." msgstr "" -#: ../../library/asyncio-api-index.rst:68 msgid "``for in`` :func:`as_completed`" msgstr "" -#: ../../library/asyncio-api-index.rst:69 msgid "Monitor for completion with a ``for`` loop." msgstr "" -#: ../../library/asyncio-api-index.rst:73 -#: ../../library/asyncio-api-index.rst:109 -#: ../../library/asyncio-api-index.rst:133 -#: ../../library/asyncio-api-index.rst:169 -#: ../../library/asyncio-api-index.rst:205 -#: ../../library/asyncio-api-index.rst:230 msgid "Examples" msgstr "" -#: ../../library/asyncio-api-index.rst:74 -msgid "" -":ref:`Using asyncio.gather() to run things in parallel " -"`." +msgid ":ref:`Using asyncio.gather() to run things in parallel `." msgstr "" -#: ../../library/asyncio-api-index.rst:77 -msgid "" -":ref:`Using asyncio.wait_for() to enforce a timeout " -"`." +msgid ":ref:`Using asyncio.wait_for() to enforce a timeout `." msgstr "" -#: ../../library/asyncio-api-index.rst:80 msgid ":ref:`Cancellation `." msgstr "" -#: ../../library/asyncio-api-index.rst:82 msgid ":ref:`Using asyncio.sleep() `." msgstr "" -#: ../../library/asyncio-api-index.rst:84 msgid "See also the main :ref:`Tasks documentation page `." msgstr "" -#: ../../library/asyncio-api-index.rst:88 msgid "Queues" msgstr "" -#: ../../library/asyncio-api-index.rst:90 -msgid "" -"Queues should be used to distribute work amongst multiple asyncio Tasks, " -"implement connection pools, and pub/sub patterns." +msgid "Queues should be used to distribute work amongst multiple asyncio Tasks, implement connection pools, and pub/sub patterns." msgstr "" -#: ../../library/asyncio-api-index.rst:98 msgid ":class:`Queue`" msgstr "" -#: ../../library/asyncio-api-index.rst:99 msgid "A FIFO queue." msgstr "" -#: ../../library/asyncio-api-index.rst:101 msgid ":class:`PriorityQueue`" msgstr "" -#: ../../library/asyncio-api-index.rst:102 msgid "A priority queue." msgstr "" -#: ../../library/asyncio-api-index.rst:104 msgid ":class:`LifoQueue`" msgstr "" -#: ../../library/asyncio-api-index.rst:105 msgid "A LIFO queue." msgstr "" -#: ../../library/asyncio-api-index.rst:110 -msgid "" -":ref:`Using asyncio.Queue to distribute workload between several Tasks " -"`." +msgid ":ref:`Using asyncio.Queue to distribute workload between several Tasks `." msgstr "" -#: ../../library/asyncio-api-index.rst:113 msgid "See also the :ref:`Queues documentation page `." msgstr "" -#: ../../library/asyncio-api-index.rst:117 msgid "Subprocesses" msgstr "" -#: ../../library/asyncio-api-index.rst:119 msgid "Utilities to spawn subprocesses and run shell commands." msgstr "" -#: ../../library/asyncio-api-index.rst:125 msgid "``await`` :func:`create_subprocess_exec`" msgstr "" -#: ../../library/asyncio-api-index.rst:126 msgid "Create a subprocess." msgstr "" -#: ../../library/asyncio-api-index.rst:128 msgid "``await`` :func:`create_subprocess_shell`" msgstr "" -#: ../../library/asyncio-api-index.rst:129 msgid "Run a shell command." msgstr "" -#: ../../library/asyncio-api-index.rst:134 msgid ":ref:`Executing a shell command `." msgstr "" -#: ../../library/asyncio-api-index.rst:136 msgid "See also the :ref:`subprocess APIs ` documentation." msgstr "" -#: ../../library/asyncio-api-index.rst:141 msgid "Streams" msgstr "" -#: ../../library/asyncio-api-index.rst:143 msgid "High-level APIs to work with network IO." msgstr "" -#: ../../library/asyncio-api-index.rst:149 msgid "``await`` :func:`open_connection`" msgstr "" -#: ../../library/asyncio-api-index.rst:150 msgid "Establish a TCP connection." msgstr "" -#: ../../library/asyncio-api-index.rst:152 msgid "``await`` :func:`open_unix_connection`" msgstr "" -#: ../../library/asyncio-api-index.rst:153 msgid "Establish a Unix socket connection." msgstr "" -#: ../../library/asyncio-api-index.rst:155 msgid "``await`` :func:`start_server`" msgstr "" -#: ../../library/asyncio-api-index.rst:156 msgid "Start a TCP server." msgstr "" -#: ../../library/asyncio-api-index.rst:158 msgid "``await`` :func:`start_unix_server`" msgstr "" -#: ../../library/asyncio-api-index.rst:159 msgid "Start a Unix socket server." msgstr "" -#: ../../library/asyncio-api-index.rst:161 msgid ":class:`StreamReader`" msgstr "" -#: ../../library/asyncio-api-index.rst:162 msgid "High-level async/await object to receive network data." msgstr "" -#: ../../library/asyncio-api-index.rst:164 msgid ":class:`StreamWriter`" msgstr "" -#: ../../library/asyncio-api-index.rst:165 msgid "High-level async/await object to send network data." msgstr "" -#: ../../library/asyncio-api-index.rst:170 msgid ":ref:`Example TCP client `." msgstr "" -#: ../../library/asyncio-api-index.rst:172 msgid "See also the :ref:`streams APIs ` documentation." msgstr "" -#: ../../library/asyncio-api-index.rst:177 msgid "Synchronization" msgstr "" -#: ../../library/asyncio-api-index.rst:179 msgid "Threading-like synchronization primitives that can be used in Tasks." msgstr "" -#: ../../library/asyncio-api-index.rst:185 msgid ":class:`Lock`" msgstr "" -#: ../../library/asyncio-api-index.rst:186 msgid "A mutex lock." msgstr "" -#: ../../library/asyncio-api-index.rst:188 msgid ":class:`Event`" msgstr "" -#: ../../library/asyncio-api-index.rst:189 msgid "An event object." msgstr "" -#: ../../library/asyncio-api-index.rst:191 msgid ":class:`Condition`" msgstr "" -#: ../../library/asyncio-api-index.rst:192 msgid "A condition object." msgstr "" -#: ../../library/asyncio-api-index.rst:194 msgid ":class:`Semaphore`" msgstr "" -#: ../../library/asyncio-api-index.rst:195 msgid "A semaphore." msgstr "" -#: ../../library/asyncio-api-index.rst:197 msgid ":class:`BoundedSemaphore`" msgstr "" -#: ../../library/asyncio-api-index.rst:198 msgid "A bounded semaphore." msgstr "" -#: ../../library/asyncio-api-index.rst:200 msgid ":class:`Barrier`" msgstr "" -#: ../../library/asyncio-api-index.rst:201 msgid "A barrier object." msgstr "" -#: ../../library/asyncio-api-index.rst:206 msgid ":ref:`Using asyncio.Event `." msgstr "" -#: ../../library/asyncio-api-index.rst:208 msgid ":ref:`Using asyncio.Barrier `." msgstr "" -#: ../../library/asyncio-api-index.rst:210 -msgid "" -"See also the documentation of asyncio :ref:`synchronization primitives " -"`." +msgid "See also the documentation of asyncio :ref:`synchronization primitives `." msgstr "" -#: ../../library/asyncio-api-index.rst:215 msgid "Exceptions" msgstr "" -#: ../../library/asyncio-api-index.rst:222 msgid ":exc:`asyncio.CancelledError`" msgstr "" -#: ../../library/asyncio-api-index.rst:223 msgid "Raised when a Task is cancelled. See also :meth:`Task.cancel`." msgstr "" -#: ../../library/asyncio-api-index.rst:225 msgid ":exc:`asyncio.BrokenBarrierError`" msgstr "" -#: ../../library/asyncio-api-index.rst:226 msgid "Raised when a Barrier is broken. See also :meth:`Barrier.wait`." msgstr "" -#: ../../library/asyncio-api-index.rst:231 -msgid "" -":ref:`Handling CancelledError to run code on cancellation request " -"`." +msgid ":ref:`Handling CancelledError to run code on cancellation request `." msgstr "" -#: ../../library/asyncio-api-index.rst:234 -msgid "" -"See also the full list of :ref:`asyncio-specific exceptions `." +msgid "See also the full list of :ref:`asyncio-specific exceptions `." msgstr "" diff --git a/library/asyncio-dev.po b/library/asyncio-dev.po index b27f75c2..a39633e7 100644 --- a/library/asyncio-dev.po +++ b/library/asyncio-dev.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:54+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,140 +23,81 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/asyncio-dev.rst:7 msgid "Developing with asyncio" msgstr "" -#: ../../library/asyncio-dev.rst:9 -msgid "" -"Asynchronous programming is different from classic \"sequential\" " -"programming." +msgid "Asynchronous programming is different from classic \"sequential\" programming." msgstr "" -#: ../../library/asyncio-dev.rst:12 -msgid "" -"This page lists common mistakes and traps and explains how to avoid them." +msgid "This page lists common mistakes and traps and explains how to avoid them." msgstr "" -#: ../../library/asyncio-dev.rst:19 msgid "Debug Mode" msgstr "" -#: ../../library/asyncio-dev.rst:21 -msgid "" -"By default asyncio runs in production mode. In order to ease the " -"development asyncio has a *debug mode*." +msgid "By default asyncio runs in production mode. In order to ease the development asyncio has a *debug mode*." msgstr "" -#: ../../library/asyncio-dev.rst:24 msgid "There are several ways to enable asyncio debug mode:" msgstr "" -#: ../../library/asyncio-dev.rst:26 msgid "Setting the :envvar:`PYTHONASYNCIODEBUG` environment variable to ``1``." msgstr "" -#: ../../library/asyncio-dev.rst:28 msgid "Using the :ref:`Python Development Mode `." msgstr "" -#: ../../library/asyncio-dev.rst:30 msgid "Passing ``debug=True`` to :func:`asyncio.run`." msgstr "" -#: ../../library/asyncio-dev.rst:32 msgid "Calling :meth:`loop.set_debug`." msgstr "" -#: ../../library/asyncio-dev.rst:34 msgid "In addition to enabling the debug mode, consider also:" msgstr "" -#: ../../library/asyncio-dev.rst:36 -msgid "" -"setting the log level of the :ref:`asyncio logger ` " -"to :py:const:`logging.DEBUG`, for example the following snippet of code can " -"be run at startup of the application::" +msgid "setting the log level of the :ref:`asyncio logger ` to :py:const:`logging.DEBUG`, for example the following snippet of code can be run at startup of the application::" msgstr "" -#: ../../library/asyncio-dev.rst:40 msgid "logging.basicConfig(level=logging.DEBUG)" msgstr "" -#: ../../library/asyncio-dev.rst:42 -msgid "" -"configuring the :mod:`warnings` module to display :exc:`ResourceWarning` " -"warnings. One way of doing that is by using the :option:`-W` ``default`` " -"command line option." +msgid "configuring the :mod:`warnings` module to display :exc:`ResourceWarning` warnings. One way of doing that is by using the :option:`-W` ``default`` command line option." msgstr "" -#: ../../library/asyncio-dev.rst:47 msgid "When the debug mode is enabled:" msgstr "" -#: ../../library/asyncio-dev.rst:49 -msgid "" -"Many non-threadsafe asyncio APIs (such as :meth:`loop.call_soon` " -"and :meth:`loop.call_at` methods) raise an exception if they are called from " -"a wrong thread." +msgid "Many non-threadsafe asyncio APIs (such as :meth:`loop.call_soon` and :meth:`loop.call_at` methods) raise an exception if they are called from a wrong thread." msgstr "" -#: ../../library/asyncio-dev.rst:53 -msgid "" -"The execution time of the I/O selector is logged if it takes too long to " -"perform an I/O operation." +msgid "The execution time of the I/O selector is logged if it takes too long to perform an I/O operation." msgstr "" -#: ../../library/asyncio-dev.rst:56 -msgid "" -"Callbacks taking longer than 100 milliseconds are logged. " -"The :attr:`loop.slow_callback_duration` attribute can be used to set the " -"minimum execution duration in seconds that is considered \"slow\"." +msgid "Callbacks taking longer than 100 milliseconds are logged. The :attr:`loop.slow_callback_duration` attribute can be used to set the minimum execution duration in seconds that is considered \"slow\"." msgstr "" -#: ../../library/asyncio-dev.rst:64 msgid "Concurrency and Multithreading" msgstr "" -#: ../../library/asyncio-dev.rst:66 -msgid "" -"An event loop runs in a thread (typically the main thread) and executes all " -"callbacks and Tasks in its thread. While a Task is running in the event " -"loop, no other Tasks can run in the same thread. When a Task executes an " -"``await`` expression, the running Task gets suspended, and the event loop " -"executes the next Task." +msgid "An event loop runs in a thread (typically the main thread) and executes all callbacks and Tasks in its thread. While a Task is running in the event loop, no other Tasks can run in the same thread. When a Task executes an ``await`` expression, the running Task gets suspended, and the event loop executes the next Task." msgstr "" -#: ../../library/asyncio-dev.rst:72 -msgid "" -"To schedule a :term:`callback` from another OS thread, " -"the :meth:`loop.call_soon_threadsafe` method should be used. Example::" +msgid "To schedule a :term:`callback` from another OS thread, the :meth:`loop.call_soon_threadsafe` method should be used. Example::" msgstr "" -#: ../../library/asyncio-dev.rst:75 msgid "loop.call_soon_threadsafe(callback, *args)" msgstr "" -#: ../../library/asyncio-dev.rst:77 -msgid "" -"Almost all asyncio objects are not thread safe, which is typically not a " -"problem unless there is code that works with them from outside of a Task or " -"a callback. If there's a need for such code to call a low-level asyncio " -"API, the :meth:`loop.call_soon_threadsafe` method should be used, e.g.::" +msgid "Almost all asyncio objects are not thread safe, which is typically not a problem unless there is code that works with them from outside of a Task or a callback. If there's a need for such code to call a low-level asyncio API, the :meth:`loop.call_soon_threadsafe` method should be used, e.g.::" msgstr "" -#: ../../library/asyncio-dev.rst:83 msgid "loop.call_soon_threadsafe(fut.cancel)" msgstr "" -#: ../../library/asyncio-dev.rst:85 -msgid "" -"To schedule a coroutine object from a different OS thread, " -"the :func:`run_coroutine_threadsafe` function should be used. It returns " -"a :class:`concurrent.futures.Future` to access the result::" +msgid "To schedule a coroutine object from a different OS thread, the :func:`run_coroutine_threadsafe` function should be used. It returns a :class:`concurrent.futures.Future` to access the result::" msgstr "" -#: ../../library/asyncio-dev.rst:89 msgid "" "async def coro_func():\n" " return await asyncio.sleep(1, 42)\n" @@ -168,90 +109,45 @@ msgid "" "result = future.result()" msgstr "" -#: ../../library/asyncio-dev.rst:98 msgid "To handle signals the event loop must be run in the main thread." msgstr "" -#: ../../library/asyncio-dev.rst:101 -msgid "" -"The :meth:`loop.run_in_executor` method can be used with " -"a :class:`concurrent.futures.ThreadPoolExecutor` " -"or :class:`~concurrent.futures.InterpreterPoolExecutor` to execute blocking " -"code in a different OS thread without blocking the OS thread that the event " -"loop runs in." +msgid "The :meth:`loop.run_in_executor` method can be used with a :class:`concurrent.futures.ThreadPoolExecutor` or :class:`~concurrent.futures.InterpreterPoolExecutor` to execute blocking code in a different OS thread without blocking the OS thread that the event loop runs in." +msgstr "" + +msgid "There is currently no way to schedule coroutines or callbacks directly from a different process (such as one started with :mod:`multiprocessing`). The :ref:`asyncio-event-loop-methods` section lists APIs that can read from pipes and watch file descriptors without blocking the event loop. In addition, asyncio's :ref:`Subprocess ` APIs provide a way to start a process and communicate with it from the event loop. Lastly, the aforementioned :meth:`loop.run_in_executor` method can also be used with a :class:`concurrent.futures.ProcessPoolExecutor` to execute code in a different process." msgstr "" -#: ../../library/asyncio-dev.rst:107 -msgid "" -"There is currently no way to schedule coroutines or callbacks directly from " -"a different process (such as one started with :mod:`multiprocessing`). " -"The :ref:`asyncio-event-loop-methods` section lists APIs that can read from " -"pipes and watch file descriptors without blocking the event loop. In " -"addition, asyncio's :ref:`Subprocess ` APIs provide a " -"way to start a process and communicate with it from the event loop. Lastly, " -"the aforementioned :meth:`loop.run_in_executor` method can also be used with " -"a :class:`concurrent.futures.ProcessPoolExecutor` to execute code in a " -"different process." -msgstr "" - -#: ../../library/asyncio-dev.rst:121 msgid "Running Blocking Code" msgstr "" -#: ../../library/asyncio-dev.rst:123 -msgid "" -"Blocking (CPU-bound) code should not be called directly. For example, if a " -"function performs a CPU-intensive calculation for 1 second, all concurrent " -"asyncio Tasks and IO operations would be delayed by 1 second." +msgid "Blocking (CPU-bound) code should not be called directly. For example, if a function performs a CPU-intensive calculation for 1 second, all concurrent asyncio Tasks and IO operations would be delayed by 1 second." msgstr "" -#: ../../library/asyncio-dev.rst:128 -msgid "" -"An executor can be used to run a task in a different thread, including in a " -"different interpreter, or even in a different process to avoid blocking the " -"OS thread with the event loop. See the :meth:`loop.run_in_executor` method " -"for more details." +msgid "An executor can be used to run a task in a different thread, including in a different interpreter, or even in a different process to avoid blocking the OS thread with the event loop. See the :meth:`loop.run_in_executor` method for more details." msgstr "" -#: ../../library/asyncio-dev.rst:138 msgid "Logging" msgstr "" -#: ../../library/asyncio-dev.rst:140 -msgid "" -"asyncio uses the :mod:`logging` module and all logging is performed via the " -"``\"asyncio\"`` logger." +msgid "asyncio uses the :mod:`logging` module and all logging is performed via the ``\"asyncio\"`` logger." msgstr "" -#: ../../library/asyncio-dev.rst:143 -msgid "" -"The default log level is :py:const:`logging.INFO`, which can be easily " -"adjusted::" +msgid "The default log level is :py:const:`logging.INFO`, which can be easily adjusted::" msgstr "" -#: ../../library/asyncio-dev.rst:146 msgid "logging.getLogger(\"asyncio\").setLevel(logging.WARNING)" msgstr "" -#: ../../library/asyncio-dev.rst:149 -msgid "" -"Network logging can block the event loop. It is recommended to use a " -"separate thread for handling logs or use non-blocking IO. For example, " -"see :ref:`blocking-handlers`." +msgid "Network logging can block the event loop. It is recommended to use a separate thread for handling logs or use non-blocking IO. For example, see :ref:`blocking-handlers`." msgstr "" -#: ../../library/asyncio-dev.rst:157 msgid "Detect never-awaited coroutines" msgstr "" -#: ../../library/asyncio-dev.rst:159 -msgid "" -"When a coroutine function is called, but not awaited (e.g. ``coro()`` " -"instead of ``await coro()``) or the coroutine is not scheduled " -"with :meth:`asyncio.create_task`, asyncio will emit a :exc:`RuntimeWarning`::" +msgid "When a coroutine function is called, but not awaited (e.g. ``coro()`` instead of ``await coro()``) or the coroutine is not scheduled with :meth:`asyncio.create_task`, asyncio will emit a :exc:`RuntimeWarning`::" msgstr "" -#: ../../library/asyncio-dev.rst:164 msgid "" "import asyncio\n" "\n" @@ -264,22 +160,17 @@ msgid "" "asyncio.run(main())" msgstr "" -#: ../../library/asyncio-dev.rst:174 ../../library/asyncio-dev.rst:219 -#: ../../library/asyncio-dev.rst:393 ../../library/asyncio-dev.rst:450 msgid "Output::" msgstr "" -#: ../../library/asyncio-dev.rst:176 msgid "" "test.py:7: RuntimeWarning: coroutine 'test' was never awaited\n" " test()" msgstr "" -#: ../../library/asyncio-dev.rst:179 ../../library/asyncio-dev.rst:235 msgid "Output in debug mode::" msgstr "" -#: ../../library/asyncio-dev.rst:181 msgid "" "test.py:7: RuntimeWarning: coroutine 'test' was never awaited\n" "Coroutine created at (most recent call last)\n" @@ -293,35 +184,23 @@ msgid "" " test()" msgstr "" -#: ../../library/asyncio-dev.rst:192 -msgid "" -"The usual fix is to either await the coroutine or call " -"the :meth:`asyncio.create_task` function::" +msgid "The usual fix is to either await the coroutine or call the :meth:`asyncio.create_task` function::" msgstr "" -#: ../../library/asyncio-dev.rst:195 msgid "" "async def main():\n" " await test()" msgstr "" -#: ../../library/asyncio-dev.rst:200 msgid "Detect never-retrieved exceptions" msgstr "" -#: ../../library/asyncio-dev.rst:202 -msgid "" -"If a :meth:`Future.set_exception` is called but the Future object is never " -"awaited on, the exception would never be propagated to the user code. In " -"this case, asyncio would emit a log message when the Future object is " -"garbage collected." +msgid "If a :meth:`Future.set_exception` is called but the Future object is never awaited on, the exception would never be propagated to the user code. In this case, asyncio would emit a log message when the Future object is garbage collected." msgstr "" -#: ../../library/asyncio-dev.rst:207 msgid "Example of an unhandled exception::" msgstr "" -#: ../../library/asyncio-dev.rst:209 msgid "" "import asyncio\n" "\n" @@ -334,7 +213,6 @@ msgid "" "asyncio.run(main())" msgstr "" -#: ../../library/asyncio-dev.rst:221 msgid "" "Task exception was never retrieved\n" "future: \n" @@ -346,17 +224,12 @@ msgid "" "Exception: not consumed" msgstr "" -#: ../../library/asyncio-dev.rst:230 -msgid "" -":ref:`Enable the debug mode ` to get the traceback where " -"the task was created::" +msgid ":ref:`Enable the debug mode ` to get the traceback where the task was created::" msgstr "" -#: ../../library/asyncio-dev.rst:233 msgid "asyncio.run(main(), debug=True)" msgstr "" -#: ../../library/asyncio-dev.rst:237 msgid "" "Task exception was never retrieved\n" "future: \n" @@ -374,39 +247,21 @@ msgid "" "Exception: not consumed" msgstr "" -#: ../../library/asyncio-dev.rst:254 msgid "Asynchronous generators best practices" msgstr "" -#: ../../library/asyncio-dev.rst:256 -msgid "" -"Writing correct and efficient asyncio code requires awareness of certain " -"pitfalls. This section outlines essential best practices that can save you " -"hours of debugging." +msgid "Writing correct and efficient asyncio code requires awareness of certain pitfalls. This section outlines essential best practices that can save you hours of debugging." msgstr "" -#: ../../library/asyncio-dev.rst:261 msgid "Close asynchronous generators explicitly" msgstr "" -#: ../../library/asyncio-dev.rst:263 -msgid "" -"It is recommended to manually close the :term:`asynchronous generator " -"`. If a generator exits early - for " -"example, due to an exception raised in the body of an ``async for`` loop - " -"its asynchronous cleanup code may run in an unexpected context. This can " -"occur after the tasks it depends on have completed, or during the event loop " -"shutdown when the async-generator's garbage collection hook is called." +msgid "It is recommended to manually close the :term:`asynchronous generator `. If a generator exits early - for example, due to an exception raised in the body of an ``async for`` loop - its asynchronous cleanup code may run in an unexpected context. This can occur after the tasks it depends on have completed, or during the event loop shutdown when the async-generator's garbage collection hook is called." msgstr "" -#: ../../library/asyncio-dev.rst:271 -msgid "" -"To avoid this, explicitly close the generator by calling " -"its :meth:`~agen.aclose` method, or use the :func:`contextlib.aclosing` " -"context manager::" +msgid "To avoid this, explicitly close the generator by calling its :meth:`~agen.aclose` method, or use the :func:`contextlib.aclosing` context manager::" msgstr "" -#: ../../library/asyncio-dev.rst:275 msgid "" "import asyncio\n" "import contextlib\n" @@ -423,14 +278,9 @@ msgid "" "asyncio.run(func())" msgstr "" -#: ../../library/asyncio-dev.rst:289 -msgid "" -"As noted above, the cleanup code for these asynchronous generators is " -"deferred. The following example demonstrates that the finalization of an " -"asynchronous generator can occur in an unexpected order::" +msgid "As noted above, the cleanup code for these asynchronous generators is deferred. The following example demonstrates that the finalization of an asynchronous generator can occur in an unexpected order::" msgstr "" -#: ../../library/asyncio-dev.rst:293 msgid "" "import asyncio\n" "work_done = False\n" @@ -459,15 +309,12 @@ msgid "" "asyncio.run(main())" msgstr "" -#: ../../library/asyncio-dev.rst:319 msgid "For this example, we get the following output::" msgstr "" -#: ../../library/asyncio-dev.rst:321 msgid "" "unhandled exception during asyncio.run() shutdown\n" -"task: ()> exception=AssertionError()>\n" +"task: ()> exception=AssertionError()>\n" "Traceback (most recent call last):\n" " File \"example.py\", line 6, in cursor\n" " yield 1\n" @@ -482,19 +329,12 @@ msgid "" "AssertionError" msgstr "" -#: ../../library/asyncio-dev.rst:336 -msgid "" -"The ``cursor()`` asynchronous generator was finalized before the ``rows`` " -"generator - an unexpected behavior." +msgid "The ``cursor()`` asynchronous generator was finalized before the ``rows`` generator - an unexpected behavior." msgstr "" -#: ../../library/asyncio-dev.rst:339 -msgid "" -"The example can be fixed by explicitly closing the ``cursor`` and ``rows`` " -"async-generators::" +msgid "The example can be fixed by explicitly closing the ``cursor`` and ``rows`` async-generators::" msgstr "" -#: ../../library/asyncio-dev.rst:342 msgid "" "async def main():\n" " async with contextlib.aclosing(cursor()) as cursor_gen:\n" @@ -505,52 +345,27 @@ msgid "" " break" msgstr "" -#: ../../library/asyncio-dev.rst:352 msgid "Create asynchronous generators only when the event loop is running" msgstr "" -#: ../../library/asyncio-dev.rst:354 -msgid "" -"It is recommended to create :term:`asynchronous generators ` only after the event loop has been created." +msgid "It is recommended to create :term:`asynchronous generators ` only after the event loop has been created." msgstr "" -#: ../../library/asyncio-dev.rst:358 -msgid "" -"To ensure that asynchronous generators close reliably, the event loop uses " -"the :func:`sys.set_asyncgen_hooks` function to register callback functions. " -"These callbacks update the list of running asynchronous generators to keep " -"it in a consistent state." +msgid "To ensure that asynchronous generators close reliably, the event loop uses the :func:`sys.set_asyncgen_hooks` function to register callback functions. These callbacks update the list of running asynchronous generators to keep it in a consistent state." msgstr "" -#: ../../library/asyncio-dev.rst:363 -msgid "" -"When the :meth:`loop.shutdown_asyncgens() ` " -"function is called, the running generators are stopped gracefully and the " -"list is cleared." +msgid "When the :meth:`loop.shutdown_asyncgens() ` function is called, the running generators are stopped gracefully and the list is cleared." msgstr "" -#: ../../library/asyncio-dev.rst:367 -msgid "" -"The asynchronous generator invokes the corresponding system hook during its " -"first iteration. At the same time, the generator records that the hook has " -"been called and does not call it again." +msgid "The asynchronous generator invokes the corresponding system hook during its first iteration. At the same time, the generator records that the hook has been called and does not call it again." msgstr "" -#: ../../library/asyncio-dev.rst:371 -msgid "" -"Therefore, if iteration begins before the event loop is created, the event " -"loop will not be able to add the generator to its list of active generators " -"because the hooks are set after the generator attempts to call them. " -"Consequently, the event loop will not be able to terminate the generator if " -"necessary." +msgid "Therefore, if iteration begins before the event loop is created, the event loop will not be able to add the generator to its list of active generators because the hooks are set after the generator attempts to call them. Consequently, the event loop will not be able to terminate the generator if necessary." msgstr "" -#: ../../library/asyncio-dev.rst:377 msgid "Consider the following example::" msgstr "" -#: ../../library/asyncio-dev.rst:379 msgid "" "import asyncio\n" "\n" @@ -567,11 +382,9 @@ msgid "" " del agen" msgstr "" -#: ../../library/asyncio-dev.rst:395 msgid "" "10\n" -"Exception ignored while closing generator :\n" +"Exception ignored while closing generator :\n" "Traceback (most recent call last):\n" " File \"example.py\", line 13, in \n" " del agen\n" @@ -579,11 +392,9 @@ msgid "" "RuntimeError: async generator ignored GeneratorExit" msgstr "" -#: ../../library/asyncio-dev.rst:403 msgid "This example can be fixed as follows::" msgstr "" -#: ../../library/asyncio-dev.rst:405 msgid "" "import asyncio\n" "\n" @@ -601,23 +412,15 @@ msgid "" "asyncio.run(main())" msgstr "" -#: ../../library/asyncio-dev.rst:422 msgid "Avoid concurrent iteration and closure of the same generator" msgstr "" -#: ../../library/asyncio-dev.rst:424 -msgid "" -"Async generators may be reentered while " -"another :meth:`~agen.__anext__` / :meth:`~agen.athrow` / :meth:`~agen.aclose` " -"call is in progress. This may lead to an inconsistent state of the async " -"generator and can cause errors." +msgid "Async generators may be reentered while another :meth:`~agen.__anext__` / :meth:`~agen.athrow` / :meth:`~agen.aclose` call is in progress. This may lead to an inconsistent state of the async generator and can cause errors." msgstr "" -#: ../../library/asyncio-dev.rst:429 msgid "Let's consider the following example::" msgstr "" -#: ../../library/asyncio-dev.rst:431 msgid "" "import asyncio\n" "\n" @@ -639,7 +442,6 @@ msgid "" "asyncio.run(amain())" msgstr "" -#: ../../library/asyncio-dev.rst:452 msgid "" "received A\n" "Traceback (most recent call last):\n" @@ -660,8 +462,5 @@ msgid "" "RuntimeError: anext(): asynchronous generator is already running" msgstr "" -#: ../../library/asyncio-dev.rst:471 -msgid "" -"Therefore, it is recommended to avoid using asynchronous generators in " -"parallel tasks or across multiple event loops." +msgid "Therefore, it is recommended to avoid using asynchronous generators in parallel tasks or across multiple event loops." msgstr "" diff --git a/library/asyncio-eventloop.po b/library/asyncio-eventloop.po index 7617067d..2f497b72 100644 --- a/library/asyncio-eventloop.po +++ b/library/asyncio-eventloop.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:54+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,255 +24,144 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/asyncio-eventloop.rst:8 msgid "Event loop" msgstr "" -#: ../../library/asyncio-eventloop.rst:10 -msgid "" -"**Source code:** :source:`Lib/asyncio/events.py`, :source:`Lib/asyncio/" -"base_events.py`" +msgid "**Source code:** :source:`Lib/asyncio/events.py`, :source:`Lib/asyncio/base_events.py`" msgstr "" -#: ../../library/asyncio-eventloop.rst:16 msgid "Preface" msgstr "" -#: ../../library/asyncio-eventloop.rst:17 -msgid "" -"The event loop is the core of every asyncio application. Event loops run " -"asynchronous tasks and callbacks, perform network IO operations, and run " -"subprocesses." +msgid "The event loop is the core of every asyncio application. Event loops run asynchronous tasks and callbacks, perform network IO operations, and run subprocesses." msgstr "" -#: ../../library/asyncio-eventloop.rst:21 -msgid "" -"Application developers should typically use the high-level asyncio " -"functions, such as :func:`asyncio.run`, and should rarely need to reference " -"the loop object or call its methods. This section is intended mostly for " -"authors of lower-level code, libraries, and frameworks, who need finer " -"control over the event loop behavior." +msgid "Application developers should typically use the high-level asyncio functions, such as :func:`asyncio.run`, and should rarely need to reference the loop object or call its methods. This section is intended mostly for authors of lower-level code, libraries, and frameworks, who need finer control over the event loop behavior." msgstr "" -#: ../../library/asyncio-eventloop.rst:28 msgid "Obtaining the Event Loop" msgstr "" -#: ../../library/asyncio-eventloop.rst:29 -msgid "" -"The following low-level functions can be used to get, set, or create an " -"event loop:" +msgid "The following low-level functions can be used to get, set, or create an event loop:" msgstr "" -#: ../../library/asyncio-eventloop.rst:34 msgid "Return the running event loop in the current OS thread." msgstr "" -#: ../../library/asyncio-eventloop.rst:36 msgid "Raise a :exc:`RuntimeError` if there is no running event loop." msgstr "" -#: ../../library/asyncio-eventloop.rst:38 msgid "This function can only be called from a coroutine or a callback." msgstr "" -#: ../../library/asyncio-eventloop.rst:44 msgid "Get the current event loop." msgstr "" -#: ../../library/asyncio-eventloop.rst:46 -msgid "" -"When called from a coroutine or a callback (e.g. scheduled with call_soon or " -"similar API), this function will always return the running event loop." +msgid "When called from a coroutine or a callback (e.g. scheduled with call_soon or similar API), this function will always return the running event loop." msgstr "" -#: ../../library/asyncio-eventloop.rst:50 -msgid "" -"If there is no running event loop set, the function will return the result " -"of the ``get_event_loop_policy().get_event_loop()`` call." +msgid "If there is no running event loop set, the function will return the result of the ``get_event_loop_policy().get_event_loop()`` call." msgstr "" -#: ../../library/asyncio-eventloop.rst:53 -msgid "" -"Because this function has rather complex behavior (especially when custom " -"event loop policies are in use), using the :func:`get_running_loop` function " -"is preferred to :func:`get_event_loop` in coroutines and callbacks." +msgid "Because this function has rather complex behavior (especially when custom event loop policies are in use), using the :func:`get_running_loop` function is preferred to :func:`get_event_loop` in coroutines and callbacks." msgstr "" -#: ../../library/asyncio-eventloop.rst:58 -msgid "" -"As noted above, consider using the higher-level :func:`asyncio.run` " -"function, instead of using these lower level functions to manually create " -"and close an event loop." +msgid "As noted above, consider using the higher-level :func:`asyncio.run` function, instead of using these lower level functions to manually create and close an event loop." msgstr "" -#: ../../library/asyncio-eventloop.rst:62 msgid "Raises a :exc:`RuntimeError` if there is no current event loop." msgstr "" -#: ../../library/asyncio-eventloop.rst:67 -msgid "" -"The :mod:`!asyncio` policy system is deprecated and will be removed in " -"Python 3.16; from there on, this function will return the current running " -"event loop if present else it will return the loop set " -"by :func:`set_event_loop`." +msgid "The :mod:`!asyncio` policy system is deprecated and will be removed in Python 3.16; from there on, this function will return the current running event loop if present else it will return the loop set by :func:`set_event_loop`." msgstr "" -#: ../../library/asyncio-eventloop.rst:74 msgid "Set *loop* as the current event loop for the current OS thread." msgstr "" -#: ../../library/asyncio-eventloop.rst:78 msgid "Create and return a new event loop object." msgstr "" -#: ../../library/asyncio-eventloop.rst:80 -msgid "" -"Note that the behaviour of :func:`get_event_loop`, :func:`set_event_loop`, " -"and :func:`new_event_loop` functions can be altered by :ref:`setting a " -"custom event loop policy `." +msgid "Note that the behaviour of :func:`get_event_loop`, :func:`set_event_loop`, and :func:`new_event_loop` functions can be altered by :ref:`setting a custom event loop policy `." msgstr "" -#: ../../library/asyncio-eventloop.rst:86 msgid "Contents" msgstr "" -#: ../../library/asyncio-eventloop.rst:87 msgid "This documentation page contains the following sections:" msgstr "" -#: ../../library/asyncio-eventloop.rst:89 -msgid "" -"The `Event Loop Methods`_ section is the reference documentation of the " -"event loop APIs;" +msgid "The `Event Loop Methods`_ section is the reference documentation of the event loop APIs;" msgstr "" -#: ../../library/asyncio-eventloop.rst:92 -msgid "" -"The `Callback Handles`_ section documents the :class:`Handle` " -"and :class:`TimerHandle` instances which are returned from scheduling " -"methods such as :meth:`loop.call_soon` and :meth:`loop.call_later`;" +msgid "The `Callback Handles`_ section documents the :class:`Handle` and :class:`TimerHandle` instances which are returned from scheduling methods such as :meth:`loop.call_soon` and :meth:`loop.call_later`;" msgstr "" -#: ../../library/asyncio-eventloop.rst:96 -msgid "" -"The `Server Objects`_ section documents types returned from event loop " -"methods like :meth:`loop.create_server`;" +msgid "The `Server Objects`_ section documents types returned from event loop methods like :meth:`loop.create_server`;" msgstr "" -#: ../../library/asyncio-eventloop.rst:99 -msgid "" -"The `Event Loop Implementations`_ section documents " -"the :class:`SelectorEventLoop` and :class:`ProactorEventLoop` classes;" +msgid "The `Event Loop Implementations`_ section documents the :class:`SelectorEventLoop` and :class:`ProactorEventLoop` classes;" msgstr "" -#: ../../library/asyncio-eventloop.rst:102 -msgid "" -"The `Examples`_ section showcases how to work with some event loop APIs." +msgid "The `Examples`_ section showcases how to work with some event loop APIs." msgstr "" -#: ../../library/asyncio-eventloop.rst:109 msgid "Event loop methods" msgstr "" -#: ../../library/asyncio-eventloop.rst:111 msgid "Event loops have **low-level** APIs for the following:" msgstr "" -#: ../../library/asyncio-eventloop.rst:119 msgid "Running and stopping the loop" msgstr "" -#: ../../library/asyncio-eventloop.rst:123 msgid "Run until the *future* (an instance of :class:`Future`) has completed." msgstr "" -#: ../../library/asyncio-eventloop.rst:126 -msgid "" -"If the argument is a :ref:`coroutine object ` it is implicitly " -"scheduled to run as a :class:`asyncio.Task`." +msgid "If the argument is a :ref:`coroutine object ` it is implicitly scheduled to run as a :class:`asyncio.Task`." msgstr "" -#: ../../library/asyncio-eventloop.rst:129 msgid "Return the Future's result or raise its exception." msgstr "" -#: ../../library/asyncio-eventloop.rst:133 msgid "Run the event loop until :meth:`stop` is called." msgstr "" -#: ../../library/asyncio-eventloop.rst:135 -msgid "" -"If :meth:`stop` is called before :meth:`run_forever` is called, the loop " -"will poll the I/O selector once with a timeout of zero, run all callbacks " -"scheduled in response to I/O events (and those that were already scheduled), " -"and then exit." +msgid "If :meth:`stop` is called before :meth:`run_forever` is called, the loop will poll the I/O selector once with a timeout of zero, run all callbacks scheduled in response to I/O events (and those that were already scheduled), and then exit." msgstr "" -#: ../../library/asyncio-eventloop.rst:140 -msgid "" -"If :meth:`stop` is called while :meth:`run_forever` is running, the loop " -"will run the current batch of callbacks and then exit. Note that new " -"callbacks scheduled by callbacks will not run in this case; instead, they " -"will run the next time :meth:`run_forever` or :meth:`run_until_complete` is " -"called." +msgid "If :meth:`stop` is called while :meth:`run_forever` is running, the loop will run the current batch of callbacks and then exit. Note that new callbacks scheduled by callbacks will not run in this case; instead, they will run the next time :meth:`run_forever` or :meth:`run_until_complete` is called." msgstr "" -#: ../../library/asyncio-eventloop.rst:148 msgid "Stop the event loop." msgstr "" -#: ../../library/asyncio-eventloop.rst:152 msgid "Return ``True`` if the event loop is currently running." msgstr "" -#: ../../library/asyncio-eventloop.rst:156 msgid "Return ``True`` if the event loop was closed." msgstr "" -#: ../../library/asyncio-eventloop.rst:160 msgid "Close the event loop." msgstr "" -#: ../../library/asyncio-eventloop.rst:162 -msgid "" -"The loop must not be running when this function is called. Any pending " -"callbacks will be discarded." +msgid "The loop must not be running when this function is called. Any pending callbacks will be discarded." msgstr "" -#: ../../library/asyncio-eventloop.rst:165 -msgid "" -"This method clears all queues and shuts down the executor, but does not wait " -"for the executor to finish." +msgid "This method clears all queues and shuts down the executor, but does not wait for the executor to finish." msgstr "" -#: ../../library/asyncio-eventloop.rst:168 -msgid "" -"This method is idempotent and irreversible. No other methods should be " -"called after the event loop is closed." +msgid "This method is idempotent and irreversible. No other methods should be called after the event loop is closed." msgstr "" -#: ../../library/asyncio-eventloop.rst:174 -msgid "" -"Schedule all currently open :term:`asynchronous generator` objects to close " -"with an :meth:`~agen.aclose` call. After calling this method, the event " -"loop will issue a warning if a new asynchronous generator is iterated. This " -"should be used to reliably finalize all scheduled asynchronous generators." +msgid "Schedule all currently open :term:`asynchronous generator` objects to close with an :meth:`~agen.aclose` call. After calling this method, the event loop will issue a warning if a new asynchronous generator is iterated. This should be used to reliably finalize all scheduled asynchronous generators." msgstr "" -#: ../../library/asyncio-eventloop.rst:180 -msgid "" -"Note that there is no need to call this function when :func:`asyncio.run` is " -"used." +msgid "Note that there is no need to call this function when :func:`asyncio.run` is used." msgstr "" -#: ../../library/asyncio-eventloop.rst:183 -#: ../../library/asyncio-eventloop.rst:1397 -#: ../../library/asyncio-eventloop.rst:1859 msgid "Example::" msgstr "" -#: ../../library/asyncio-eventloop.rst:185 msgid "" "try:\n" " loop.run_forever()\n" @@ -281,1474 +170,726 @@ msgid "" " loop.close()" msgstr "" -#: ../../library/asyncio-eventloop.rst:196 -msgid "" -"Schedule the closure of the default executor and wait for it to join all of " -"the threads in the :class:`~concurrent.futures.ThreadPoolExecutor`. Once " -"this method has been called, using the default executor " -"with :meth:`loop.run_in_executor` will raise a :exc:`RuntimeError`." +msgid "Schedule the closure of the default executor and wait for it to join all of the threads in the :class:`~concurrent.futures.ThreadPoolExecutor`. Once this method has been called, using the default executor with :meth:`loop.run_in_executor` will raise a :exc:`RuntimeError`." msgstr "" -#: ../../library/asyncio-eventloop.rst:202 -msgid "" -"The *timeout* parameter specifies the amount of time (in :class:`float` " -"seconds) the executor will be given to finish joining. With the default, " -"``None``, the executor is allowed an unlimited amount of time." +msgid "The *timeout* parameter specifies the amount of time (in :class:`float` seconds) the executor will be given to finish joining. With the default, ``None``, the executor is allowed an unlimited amount of time." msgstr "" -#: ../../library/asyncio-eventloop.rst:207 -msgid "" -"If the *timeout* is reached, a :exc:`RuntimeWarning` is emitted and the " -"default executor is terminated without waiting for its threads to finish " -"joining." +msgid "If the *timeout* is reached, a :exc:`RuntimeWarning` is emitted and the default executor is terminated without waiting for its threads to finish joining." msgstr "" -#: ../../library/asyncio-eventloop.rst:213 -msgid "" -"Do not call this method when using :func:`asyncio.run`, as the latter " -"handles default executor shutdown automatically." +msgid "Do not call this method when using :func:`asyncio.run`, as the latter handles default executor shutdown automatically." msgstr "" -#: ../../library/asyncio-eventloop.rst:218 msgid "Added the *timeout* parameter." msgstr "" -#: ../../library/asyncio-eventloop.rst:222 msgid "Scheduling callbacks" msgstr "" -#: ../../library/asyncio-eventloop.rst:226 -msgid "" -"Schedule the *callback* :term:`callback` to be called with *args* arguments " -"at the next iteration of the event loop." +msgid "Schedule the *callback* :term:`callback` to be called with *args* arguments at the next iteration of the event loop." msgstr "" -#: ../../library/asyncio-eventloop.rst:229 -msgid "" -"Return an instance of :class:`asyncio.Handle`, which can be used later to " -"cancel the callback." +msgid "Return an instance of :class:`asyncio.Handle`, which can be used later to cancel the callback." msgstr "" -#: ../../library/asyncio-eventloop.rst:232 -msgid "" -"Callbacks are called in the order in which they are registered. Each " -"callback will be called exactly once." +msgid "Callbacks are called in the order in which they are registered. Each callback will be called exactly once." msgstr "" -#: ../../library/asyncio-eventloop.rst:235 -msgid "" -"The optional keyword-only *context* argument specifies a " -"custom :class:`contextvars.Context` for the *callback* to run in. Callbacks " -"use the current context when no *context* is provided." +msgid "The optional keyword-only *context* argument specifies a custom :class:`contextvars.Context` for the *callback* to run in. Callbacks use the current context when no *context* is provided." msgstr "" -#: ../../library/asyncio-eventloop.rst:239 msgid "Unlike :meth:`call_soon_threadsafe`, this method is not thread-safe." msgstr "" -#: ../../library/asyncio-eventloop.rst:243 -msgid "" -"A thread-safe variant of :meth:`call_soon`. When scheduling callbacks from " -"another thread, this function *must* be used, since :meth:`call_soon` is not " -"thread-safe." +msgid "A thread-safe variant of :meth:`call_soon`. When scheduling callbacks from another thread, this function *must* be used, since :meth:`call_soon` is not thread-safe." msgstr "" -#: ../../library/asyncio-eventloop.rst:247 -msgid "" -"This function is safe to be called from a reentrant context or signal " -"handler, however, it is not safe or fruitful to use the returned handle in " -"such contexts." +msgid "This function is safe to be called from a reentrant context or signal handler, however, it is not safe or fruitful to use the returned handle in such contexts." msgstr "" -#: ../../library/asyncio-eventloop.rst:250 -msgid "" -"Raises :exc:`RuntimeError` if called on a loop that's been closed. This can " -"happen on a secondary thread when the main application is shutting down." +msgid "Raises :exc:`RuntimeError` if called on a loop that's been closed. This can happen on a secondary thread when the main application is shutting down." msgstr "" -#: ../../library/asyncio-eventloop.rst:254 -msgid "" -"See the :ref:`concurrency and multithreading ` " -"section of the documentation." +msgid "See the :ref:`concurrency and multithreading ` section of the documentation." msgstr "" -#: ../../library/asyncio-eventloop.rst:257 -#: ../../library/asyncio-eventloop.rst:314 -#: ../../library/asyncio-eventloop.rst:340 -msgid "" -"The *context* keyword-only parameter was added. See :pep:`567` for more " -"details." +msgid "The *context* keyword-only parameter was added. See :pep:`567` for more details." msgstr "" -#: ../../library/asyncio-eventloop.rst:265 -msgid "" -"Most :mod:`asyncio` scheduling functions don't allow passing keyword " -"arguments. To do that, use :func:`functools.partial`::" +msgid "Most :mod:`asyncio` scheduling functions don't allow passing keyword arguments. To do that, use :func:`functools.partial`::" msgstr "" -#: ../../library/asyncio-eventloop.rst:268 msgid "" "# will schedule \"print(\"Hello\", flush=True)\"\n" "loop.call_soon(\n" " functools.partial(print, \"Hello\", flush=True))" msgstr "" -#: ../../library/asyncio-eventloop.rst:272 -msgid "" -"Using partial objects is usually more convenient than using lambdas, as " -"asyncio can render partial objects better in debug and error messages." +msgid "Using partial objects is usually more convenient than using lambdas, as asyncio can render partial objects better in debug and error messages." msgstr "" -#: ../../library/asyncio-eventloop.rst:280 msgid "Scheduling delayed callbacks" msgstr "" -#: ../../library/asyncio-eventloop.rst:282 -msgid "" -"Event loop provides mechanisms to schedule callback functions to be called " -"at some point in the future. Event loop uses monotonic clocks to track time." +msgid "Event loop provides mechanisms to schedule callback functions to be called at some point in the future. Event loop uses monotonic clocks to track time." msgstr "" -#: ../../library/asyncio-eventloop.rst:289 -msgid "" -"Schedule *callback* to be called after the given *delay* number of seconds " -"(can be either an int or a float)." +msgid "Schedule *callback* to be called after the given *delay* number of seconds (can be either an int or a float)." msgstr "" -#: ../../library/asyncio-eventloop.rst:292 -#: ../../library/asyncio-eventloop.rst:331 -msgid "" -"An instance of :class:`asyncio.TimerHandle` is returned which can be used to " -"cancel the callback." +msgid "An instance of :class:`asyncio.TimerHandle` is returned which can be used to cancel the callback." msgstr "" -#: ../../library/asyncio-eventloop.rst:295 -msgid "" -"*callback* will be called exactly once. If two callbacks are scheduled for " -"exactly the same time, the order in which they are called is undefined." +msgid "*callback* will be called exactly once. If two callbacks are scheduled for exactly the same time, the order in which they are called is undefined." msgstr "" -#: ../../library/asyncio-eventloop.rst:299 -msgid "" -"The optional positional *args* will be passed to the callback when it is " -"called. Use :func:`functools.partial` :ref:`to pass keyword arguments " -"` to *callback*." +msgid "The optional positional *args* will be passed to the callback when it is called. Use :func:`functools.partial` :ref:`to pass keyword arguments ` to *callback*." msgstr "" -#: ../../library/asyncio-eventloop.rst:304 -msgid "" -"An optional keyword-only *context* argument allows specifying a " -"custom :class:`contextvars.Context` for the *callback* to run in. The " -"current context is used when no *context* is provided." +msgid "An optional keyword-only *context* argument allows specifying a custom :class:`contextvars.Context` for the *callback* to run in. The current context is used when no *context* is provided." msgstr "" -#: ../../library/asyncio-eventloop.rst:310 -msgid "" -"For performance, callbacks scheduled with :meth:`loop.call_later` may run up " -"to one clock-resolution early (see " -"``time.get_clock_info('monotonic').resolution``)." +msgid "For performance, callbacks scheduled with :meth:`loop.call_later` may run up to one clock-resolution early (see ``time.get_clock_info('monotonic').resolution``)." msgstr "" -#: ../../library/asyncio-eventloop.rst:318 -msgid "" -"In Python 3.7 and earlier with the default event loop implementation, the " -"*delay* could not exceed one day. This has been fixed in Python 3.8." +msgid "In Python 3.7 and earlier with the default event loop implementation, the *delay* could not exceed one day. This has been fixed in Python 3.8." msgstr "" -#: ../../library/asyncio-eventloop.rst:325 -msgid "" -"Schedule *callback* to be called at the given absolute timestamp *when* (an " -"int or a float), using the same time reference as :meth:`loop.time`." +msgid "Schedule *callback* to be called at the given absolute timestamp *when* (an int or a float), using the same time reference as :meth:`loop.time`." msgstr "" -#: ../../library/asyncio-eventloop.rst:329 msgid "This method's behavior is the same as :meth:`call_later`." msgstr "" -#: ../../library/asyncio-eventloop.rst:336 -msgid "" -"For performance, callbacks scheduled with :meth:`loop.call_at` may run up to " -"one clock-resolution early (see " -"``time.get_clock_info('monotonic').resolution``)." +msgid "For performance, callbacks scheduled with :meth:`loop.call_at` may run up to one clock-resolution early (see ``time.get_clock_info('monotonic').resolution``)." msgstr "" -#: ../../library/asyncio-eventloop.rst:344 -msgid "" -"In Python 3.7 and earlier with the default event loop implementation, the " -"difference between *when* and the current time could not exceed one day. " -"This has been fixed in Python 3.8." +msgid "In Python 3.7 and earlier with the default event loop implementation, the difference between *when* and the current time could not exceed one day. This has been fixed in Python 3.8." msgstr "" -#: ../../library/asyncio-eventloop.rst:351 -msgid "" -"Return the current time, as a :class:`float` value, according to the event " -"loop's internal monotonic clock." +msgid "Return the current time, as a :class:`float` value, according to the event loop's internal monotonic clock." msgstr "" -#: ../../library/asyncio-eventloop.rst:355 -msgid "" -"In Python 3.7 and earlier timeouts (relative *delay* or absolute *when*) " -"should not exceed one day. This has been fixed in Python 3.8." +msgid "In Python 3.7 and earlier timeouts (relative *delay* or absolute *when*) should not exceed one day. This has been fixed in Python 3.8." msgstr "" -#: ../../library/asyncio-eventloop.rst:361 msgid "The :func:`asyncio.sleep` function." msgstr "" -#: ../../library/asyncio-eventloop.rst:365 msgid "Creating futures and tasks" msgstr "" -#: ../../library/asyncio-eventloop.rst:369 msgid "Create an :class:`asyncio.Future` object attached to the event loop." msgstr "" -#: ../../library/asyncio-eventloop.rst:371 -msgid "" -"This is the preferred way to create Futures in asyncio. This lets third-" -"party event loops provide alternative implementations of the Future object " -"(with better performance or instrumentation)." +msgid "This is the preferred way to create Futures in asyncio. This lets third-party event loops provide alternative implementations of the Future object (with better performance or instrumentation)." msgstr "" -#: ../../library/asyncio-eventloop.rst:379 -msgid "" -"Schedule the execution of :ref:`coroutine ` *coro*. Return " -"a :class:`Task` object." +msgid "Schedule the execution of :ref:`coroutine ` *coro*. Return a :class:`Task` object." msgstr "" -#: ../../library/asyncio-eventloop.rst:382 -msgid "" -"Third-party event loops can use their own subclass of :class:`Task` for " -"interoperability. In this case, the result type is a subclass " -"of :class:`Task`." +msgid "Third-party event loops can use their own subclass of :class:`Task` for interoperability. In this case, the result type is a subclass of :class:`Task`." msgstr "" -#: ../../library/asyncio-eventloop.rst:386 -msgid "" -"The full function signature is largely the same as that of the :class:`Task` " -"constructor (or factory) - all of the keyword arguments to this function are " -"passed through to that interface." +msgid "The full function signature is largely the same as that of the :class:`Task` constructor (or factory) - all of the keyword arguments to this function are passed through to that interface." msgstr "" -#: ../../library/asyncio-eventloop.rst:390 -msgid "" -"If the *name* argument is provided and not ``None``, it is set as the name " -"of the task using :meth:`Task.set_name`." +msgid "If the *name* argument is provided and not ``None``, it is set as the name of the task using :meth:`Task.set_name`." msgstr "" -#: ../../library/asyncio-eventloop.rst:393 -msgid "" -"An optional keyword-only *context* argument allows specifying a " -"custom :class:`contextvars.Context` for the *coro* to run in. The current " -"context copy is created when no *context* is provided." +msgid "An optional keyword-only *context* argument allows specifying a custom :class:`contextvars.Context` for the *coro* to run in. The current context copy is created when no *context* is provided." msgstr "" -#: ../../library/asyncio-eventloop.rst:397 -msgid "" -"An optional keyword-only *eager_start* argument allows specifying if the " -"task should execute eagerly during the call to create_task, or be scheduled " -"later. If *eager_start* is not passed the mode set " -"by :meth:`loop.set_task_factory` will be used." +msgid "An optional keyword-only *eager_start* argument allows specifying if the task should execute eagerly during the call to create_task, or be scheduled later. If *eager_start* is not passed the mode set by :meth:`loop.set_task_factory` will be used." msgstr "" -#: ../../library/asyncio-eventloop.rst:402 msgid "Added the *name* parameter." msgstr "" -#: ../../library/asyncio-eventloop.rst:405 msgid "Added the *context* parameter." msgstr "" -#: ../../library/asyncio-eventloop.rst:408 -msgid "" -"Added ``kwargs`` which passes on arbitrary extra parameters, including " -"``name`` and ``context``." +msgid "Added ``kwargs`` which passes on arbitrary extra parameters, including ``name`` and ``context``." msgstr "" -#: ../../library/asyncio-eventloop.rst:411 -msgid "" -"Rolled back the change that passes on *name* and *context* (if it is None), " -"while still passing on other arbitrary keyword arguments (to avoid breaking " -"backwards compatibility with 3.13.3)." +msgid "Rolled back the change that passes on *name* and *context* (if it is None), while still passing on other arbitrary keyword arguments (to avoid breaking backwards compatibility with 3.13.3)." msgstr "" -#: ../../library/asyncio-eventloop.rst:415 -msgid "" -"All *kwargs* are now passed on. The *eager_start* parameter works with eager " -"task factories." +msgid "All *kwargs* are now passed on. The *eager_start* parameter works with eager task factories." msgstr "" -#: ../../library/asyncio-eventloop.rst:420 msgid "Set a task factory that will be used by :meth:`loop.create_task`." msgstr "" -#: ../../library/asyncio-eventloop.rst:423 -msgid "" -"If *factory* is ``None`` the default task factory will be set. Otherwise, " -"*factory* must be a *callable* with the signature matching ``(loop, coro, " -"**kwargs)``, where *loop* is a reference to the active event loop, and " -"*coro* is a coroutine object. The callable must pass on all *kwargs*, and " -"return a :class:`asyncio.Task`-compatible object." +msgid "If *factory* is ``None`` the default task factory will be set. Otherwise, *factory* must be a *callable* with the signature matching ``(loop, coro, **kwargs)``, where *loop* is a reference to the active event loop, and *coro* is a coroutine object. The callable must pass on all *kwargs*, and return a :class:`asyncio.Task`-compatible object." msgstr "" -#: ../../library/asyncio-eventloop.rst:429 msgid "Required that all *kwargs* are passed on to :class:`asyncio.Task`." msgstr "" -#: ../../library/asyncio-eventloop.rst:432 -msgid "" -"*name* is no longer passed to task factories. *context* is no longer passed " -"to task factories if it is ``None``." +msgid "*name* is no longer passed to task factories. *context* is no longer passed to task factories if it is ``None``." msgstr "" -#: ../../library/asyncio-eventloop.rst:436 -msgid "" -"*name* and *context* are now unconditionally passed on to task factories " -"again." +msgid "*name* and *context* are now unconditionally passed on to task factories again." msgstr "" -#: ../../library/asyncio-eventloop.rst:441 msgid "Return a task factory or ``None`` if the default one is in use." msgstr "" -#: ../../library/asyncio-eventloop.rst:445 msgid "Opening network connections" msgstr "" -#: ../../library/asyncio-eventloop.rst:457 -msgid "" -"Open a streaming transport connection to a given address specified by *host* " -"and *port*." +msgid "Open a streaming transport connection to a given address specified by *host* and *port*." msgstr "" -#: ../../library/asyncio-eventloop.rst:460 -msgid "" -"The socket family can be either :py:const:`~socket.AF_INET` " -"or :py:const:`~socket.AF_INET6` depending on *host* (or the *family* " -"argument, if provided)." +msgid "The socket family can be either :py:const:`~socket.AF_INET` or :py:const:`~socket.AF_INET6` depending on *host* (or the *family* argument, if provided)." msgstr "" -#: ../../library/asyncio-eventloop.rst:464 msgid "The socket type will be :py:const:`~socket.SOCK_STREAM`." msgstr "" -#: ../../library/asyncio-eventloop.rst:466 -#: ../../library/asyncio-eventloop.rst:1274 -#: ../../library/asyncio-eventloop.rst:1293 -msgid "" -"*protocol_factory* must be a callable returning an :ref:`asyncio protocol " -"` implementation." +msgid "*protocol_factory* must be a callable returning an :ref:`asyncio protocol ` implementation." msgstr "" -#: ../../library/asyncio-eventloop.rst:469 -msgid "" -"This method will try to establish the connection in the background. When " -"successful, it returns a ``(transport, protocol)`` pair." +msgid "This method will try to establish the connection in the background. When successful, it returns a ``(transport, protocol)`` pair." msgstr "" -#: ../../library/asyncio-eventloop.rst:472 msgid "The chronological synopsis of the underlying operation is as follows:" msgstr "" -#: ../../library/asyncio-eventloop.rst:474 -msgid "" -"The connection is established and a :ref:`transport ` is " -"created for it." +msgid "The connection is established and a :ref:`transport ` is created for it." msgstr "" -#: ../../library/asyncio-eventloop.rst:477 -msgid "" -"*protocol_factory* is called without arguments and is expected to return " -"a :ref:`protocol ` instance." +msgid "*protocol_factory* is called without arguments and is expected to return a :ref:`protocol ` instance." msgstr "" -#: ../../library/asyncio-eventloop.rst:480 -msgid "" -"The protocol instance is coupled with the transport by calling " -"its :meth:`~BaseProtocol.connection_made` method." +msgid "The protocol instance is coupled with the transport by calling its :meth:`~BaseProtocol.connection_made` method." msgstr "" -#: ../../library/asyncio-eventloop.rst:483 msgid "A ``(transport, protocol)`` tuple is returned on success." msgstr "" -#: ../../library/asyncio-eventloop.rst:485 -msgid "" -"The created transport is an implementation-dependent bidirectional stream." +msgid "The created transport is an implementation-dependent bidirectional stream." msgstr "" -#: ../../library/asyncio-eventloop.rst:488 -#: ../../library/asyncio-eventloop.rst:621 msgid "Other arguments:" msgstr "" -#: ../../library/asyncio-eventloop.rst:490 -msgid "" -"*ssl*: if given and not false, a SSL/TLS transport is created (by default a " -"plain TCP transport is created). If *ssl* is a :class:`ssl.SSLContext` " -"object, this context is used to create the transport; if *ssl* " -"is :const:`True`, a default context returned " -"from :func:`ssl.create_default_context` is used." +msgid "*ssl*: if given and not false, a SSL/TLS transport is created (by default a plain TCP transport is created). If *ssl* is a :class:`ssl.SSLContext` object, this context is used to create the transport; if *ssl* is :const:`True`, a default context returned from :func:`ssl.create_default_context` is used." msgstr "" -#: ../../library/asyncio-eventloop.rst:496 msgid ":ref:`SSL/TLS security considerations `" msgstr "" -#: ../../library/asyncio-eventloop.rst:498 -msgid "" -"*server_hostname* sets or overrides the hostname that the target server's " -"certificate will be matched against. Should only be passed if *ssl* is not " -"``None``. By default the value of the *host* argument is used. If *host* " -"is empty, there is no default and you must pass a value for " -"*server_hostname*. If *server_hostname* is an empty string, hostname " -"matching is disabled (which is a serious security risk, allowing for " -"potential man-in-the-middle attacks)." +msgid "*server_hostname* sets or overrides the hostname that the target server's certificate will be matched against. Should only be passed if *ssl* is not ``None``. By default the value of the *host* argument is used. If *host* is empty, there is no default and you must pass a value for *server_hostname*. If *server_hostname* is an empty string, hostname matching is disabled (which is a serious security risk, allowing for potential man-in-the-middle attacks)." msgstr "" -#: ../../library/asyncio-eventloop.rst:506 -msgid "" -"*family*, *proto*, *flags* are the optional address family, protocol and " -"flags to be passed through to getaddrinfo() for *host* resolution. If given, " -"these should all be integers from the corresponding :mod:`socket` module " -"constants." +msgid "*family*, *proto*, *flags* are the optional address family, protocol and flags to be passed through to getaddrinfo() for *host* resolution. If given, these should all be integers from the corresponding :mod:`socket` module constants." msgstr "" -#: ../../library/asyncio-eventloop.rst:511 -msgid "" -"*happy_eyeballs_delay*, if given, enables Happy Eyeballs for this " -"connection. It should be a floating-point number representing the amount of " -"time in seconds to wait for a connection attempt to complete, before " -"starting the next attempt in parallel. This is the \"Connection Attempt " -"Delay\" as defined in :rfc:`8305`. A sensible default value recommended by " -"the RFC is ``0.25`` (250 milliseconds)." +msgid "*happy_eyeballs_delay*, if given, enables Happy Eyeballs for this connection. It should be a floating-point number representing the amount of time in seconds to wait for a connection attempt to complete, before starting the next attempt in parallel. This is the \"Connection Attempt Delay\" as defined in :rfc:`8305`. A sensible default value recommended by the RFC is ``0.25`` (250 milliseconds)." msgstr "" -#: ../../library/asyncio-eventloop.rst:519 -msgid "" -"*interleave* controls address reordering when a host name resolves to " -"multiple IP addresses. If ``0`` or unspecified, no reordering is done, and " -"addresses are tried in the order returned by :meth:`getaddrinfo`. If a " -"positive integer is specified, the addresses are interleaved by address " -"family, and the given integer is interpreted as \"First Address Family " -"Count\" as defined in :rfc:`8305`. The default is ``0`` if " -"*happy_eyeballs_delay* is not specified, and ``1`` if it is." +msgid "*interleave* controls address reordering when a host name resolves to multiple IP addresses. If ``0`` or unspecified, no reordering is done, and addresses are tried in the order returned by :meth:`getaddrinfo`. If a positive integer is specified, the addresses are interleaved by address family, and the given integer is interpreted as \"First Address Family Count\" as defined in :rfc:`8305`. The default is ``0`` if *happy_eyeballs_delay* is not specified, and ``1`` if it is." msgstr "" -#: ../../library/asyncio-eventloop.rst:528 -msgid "" -"*sock*, if given, should be an existing, already " -"connected :class:`socket.socket` object to be used by the transport. If " -"*sock* is given, none of *host*, *port*, *family*, *proto*, *flags*, " -"*happy_eyeballs_delay*, *interleave* and *local_addr* should be specified." +msgid "*sock*, if given, should be an existing, already connected :class:`socket.socket` object to be used by the transport. If *sock* is given, none of *host*, *port*, *family*, *proto*, *flags*, *happy_eyeballs_delay*, *interleave* and *local_addr* should be specified." msgstr "" -#: ../../library/asyncio-eventloop.rst:536 -#: ../../library/asyncio-eventloop.rst:658 -#: ../../library/asyncio-eventloop.rst:906 -msgid "" -"The *sock* argument transfers ownership of the socket to the transport " -"created. To close the socket, call the " -"transport's :meth:`~asyncio.BaseTransport.close` method." +msgid "The *sock* argument transfers ownership of the socket to the transport created. To close the socket, call the transport's :meth:`~asyncio.BaseTransport.close` method." msgstr "" -#: ../../library/asyncio-eventloop.rst:540 -msgid "" -"*local_addr*, if given, is a ``(local_host, local_port)`` tuple used to bind " -"the socket locally. The *local_host* and *local_port* are looked up using " -"``getaddrinfo()``, similarly to *host* and *port*." +msgid "*local_addr*, if given, is a ``(local_host, local_port)`` tuple used to bind the socket locally. The *local_host* and *local_port* are looked up using ``getaddrinfo()``, similarly to *host* and *port*." msgstr "" -#: ../../library/asyncio-eventloop.rst:544 -#: ../../library/asyncio-eventloop.rst:1002 -msgid "" -"*ssl_handshake_timeout* is (for a TLS connection) the time in seconds to " -"wait for the TLS handshake to complete before aborting the connection. " -"``60.0`` seconds if ``None`` (default)." +msgid "*ssl_handshake_timeout* is (for a TLS connection) the time in seconds to wait for the TLS handshake to complete before aborting the connection. ``60.0`` seconds if ``None`` (default)." msgstr "" -#: ../../library/asyncio-eventloop.rst:548 -#: ../../library/asyncio-eventloop.rst:813 -#: ../../library/asyncio-eventloop.rst:917 -#: ../../library/asyncio-eventloop.rst:1006 -msgid "" -"*ssl_shutdown_timeout* is the time in seconds to wait for the SSL shutdown " -"to complete before aborting the connection. ``30.0`` seconds if ``None`` " -"(default)." +msgid "*ssl_shutdown_timeout* is the time in seconds to wait for the SSL shutdown to complete before aborting the connection. ``30.0`` seconds if ``None`` (default)." msgstr "" -#: ../../library/asyncio-eventloop.rst:552 -msgid "" -"*all_errors* determines what exceptions are raised when a connection cannot " -"be created. By default, only a single ``Exception`` is raised: the first " -"exception if there is only one or all errors have same message, or a single " -"``OSError`` with the error messages combined. When ``all_errors`` is " -"``True``, an ``ExceptionGroup`` will be raised containing all exceptions " -"(even if there is only one)." +msgid "*all_errors* determines what exceptions are raised when a connection cannot be created. By default, only a single ``Exception`` is raised: the first exception if there is only one or all errors have same message, or a single ``OSError`` with the error messages combined. When ``all_errors`` is ``True``, an ``ExceptionGroup`` will be raised containing all exceptions (even if there is only one)." msgstr "" -#: ../../library/asyncio-eventloop.rst:562 -#: ../../library/asyncio-eventloop.rst:825 msgid "Added support for SSL/TLS in :class:`ProactorEventLoop`." msgstr "" -#: ../../library/asyncio-eventloop.rst:566 -msgid "" -"The socket option :ref:`socket.TCP_NODELAY ` is set " -"by default for all TCP connections." +msgid "The socket option :ref:`socket.TCP_NODELAY ` is set by default for all TCP connections." msgstr "" -#: ../../library/asyncio-eventloop.rst:571 -#: ../../library/asyncio-eventloop.rst:927 msgid "Added the *ssl_handshake_timeout* parameter." msgstr "" -#: ../../library/asyncio-eventloop.rst:575 msgid "Added the *happy_eyeballs_delay* and *interleave* parameters." msgstr "" -#: ../../library/asyncio-eventloop.rst:577 -msgid "" -"Happy Eyeballs Algorithm: Success with Dual-Stack Hosts. When a server's " -"IPv4 path and protocol are working, but the server's IPv6 path and protocol " -"are not working, a dual-stack client application experiences significant " -"connection delay compared to an IPv4-only client. This is undesirable " -"because it causes the dual-stack client to have a worse user experience. " -"This document specifies requirements for algorithms that reduce this user-" -"visible delay and provides an algorithm." +msgid "Happy Eyeballs Algorithm: Success with Dual-Stack Hosts. When a server's IPv4 path and protocol are working, but the server's IPv6 path and protocol are not working, a dual-stack client application experiences significant connection delay compared to an IPv4-only client. This is undesirable because it causes the dual-stack client to have a worse user experience. This document specifies requirements for algorithms that reduce this user-visible delay and provides an algorithm." msgstr "" -#: ../../library/asyncio-eventloop.rst:586 msgid "For more information: https://datatracker.ietf.org/doc/html/rfc6555" msgstr "" -#: ../../library/asyncio-eventloop.rst:590 -#: ../../library/asyncio-eventloop.rst:722 -#: ../../library/asyncio-eventloop.rst:839 -#: ../../library/asyncio-eventloop.rst:879 -#: ../../library/asyncio-eventloop.rst:931 -#: ../../library/asyncio-eventloop.rst:1014 msgid "Added the *ssl_shutdown_timeout* parameter." msgstr "" -#: ../../library/asyncio-eventloop.rst:592 msgid "*all_errors* was added." msgstr "" -#: ../../library/asyncio-eventloop.rst:597 -msgid "" -"The :func:`open_connection` function is a high-level alternative API. It " -"returns a pair of (:class:`StreamReader`, :class:`StreamWriter`) that can be " -"used directly in async/await code." +msgid "The :func:`open_connection` function is a high-level alternative API. It returns a pair of (:class:`StreamReader`, :class:`StreamWriter`) that can be used directly in async/await code." msgstr "" -#: ../../library/asyncio-eventloop.rst:608 msgid "Create a datagram connection." msgstr "" -#: ../../library/asyncio-eventloop.rst:610 -msgid "" -"The socket family can be " -"either :py:const:`~socket.AF_INET`, :py:const:`~socket.AF_INET6`, " -"or :py:const:`~socket.AF_UNIX`, depending on *host* (or the *family* " -"argument, if provided)." +msgid "The socket family can be either :py:const:`~socket.AF_INET`, :py:const:`~socket.AF_INET6`, or :py:const:`~socket.AF_UNIX`, depending on *host* (or the *family* argument, if provided)." msgstr "" -#: ../../library/asyncio-eventloop.rst:614 msgid "The socket type will be :py:const:`~socket.SOCK_DGRAM`." msgstr "" -#: ../../library/asyncio-eventloop.rst:616 -#: ../../library/asyncio-eventloop.rst:749 -#: ../../library/asyncio-eventloop.rst:898 -msgid "" -"*protocol_factory* must be a callable returning a :ref:`protocol ` implementation." +msgid "*protocol_factory* must be a callable returning a :ref:`protocol ` implementation." msgstr "" -#: ../../library/asyncio-eventloop.rst:619 -#: ../../library/asyncio-eventloop.rst:704 msgid "A tuple of ``(transport, protocol)`` is returned on success." msgstr "" -#: ../../library/asyncio-eventloop.rst:623 -msgid "" -"*local_addr*, if given, is a ``(local_host, local_port)`` tuple used to bind " -"the socket locally. The *local_host* and *local_port* are looked up " -"using :meth:`getaddrinfo`." +msgid "*local_addr*, if given, is a ``(local_host, local_port)`` tuple used to bind the socket locally. The *local_host* and *local_port* are looked up using :meth:`getaddrinfo`." msgstr "" -#: ../../library/asyncio-eventloop.rst:629 -msgid "" -"On Windows, when using the proactor event loop with ``local_addr=None``, " -"an :exc:`OSError` with :attr:`!errno.WSAEINVAL` will be raised when running " -"it." +msgid "On Windows, when using the proactor event loop with ``local_addr=None``, an :exc:`OSError` with :attr:`!errno.WSAEINVAL` will be raised when running it." msgstr "" -#: ../../library/asyncio-eventloop.rst:633 -msgid "" -"*remote_addr*, if given, is a ``(remote_host, remote_port)`` tuple used to " -"connect the socket to a remote address. The *remote_host* and *remote_port* " -"are looked up using :meth:`getaddrinfo`." +msgid "*remote_addr*, if given, is a ``(remote_host, remote_port)`` tuple used to connect the socket to a remote address. The *remote_host* and *remote_port* are looked up using :meth:`getaddrinfo`." msgstr "" -#: ../../library/asyncio-eventloop.rst:637 -msgid "" -"*family*, *proto*, *flags* are the optional address family, protocol and " -"flags to be passed through to :meth:`getaddrinfo` for *host* resolution. If " -"given, these should all be integers from the corresponding :mod:`socket` " -"module constants." +msgid "*family*, *proto*, *flags* are the optional address family, protocol and flags to be passed through to :meth:`getaddrinfo` for *host* resolution. If given, these should all be integers from the corresponding :mod:`socket` module constants." msgstr "" -#: ../../library/asyncio-eventloop.rst:642 -msgid "" -"*reuse_port* tells the kernel to allow this endpoint to be bound to the same " -"port as other existing endpoints are bound to, so long as they all set this " -"flag when being created. This option is not supported on Windows and some " -"Unixes. If the :ref:`socket.SO_REUSEPORT ` constant " -"is not defined then this capability is unsupported." +msgid "*reuse_port* tells the kernel to allow this endpoint to be bound to the same port as other existing endpoints are bound to, so long as they all set this flag when being created. This option is not supported on Windows and some Unixes. If the :ref:`socket.SO_REUSEPORT ` constant is not defined then this capability is unsupported." msgstr "" -#: ../../library/asyncio-eventloop.rst:648 -msgid "" -"*allow_broadcast* tells the kernel to allow this endpoint to send messages " -"to the broadcast address." +msgid "*allow_broadcast* tells the kernel to allow this endpoint to send messages to the broadcast address." msgstr "" -#: ../../library/asyncio-eventloop.rst:651 -msgid "" -"*sock* can optionally be specified in order to use a preexisting, already " -"connected, :class:`socket.socket` object to be used by the transport. If " -"specified, *local_addr* and *remote_addr* should be omitted (must " -"be :const:`None`)." +msgid "*sock* can optionally be specified in order to use a preexisting, already connected, :class:`socket.socket` object to be used by the transport. If specified, *local_addr* and *remote_addr* should be omitted (must be :const:`None`)." msgstr "" -#: ../../library/asyncio-eventloop.rst:662 -msgid "" -"See :ref:`UDP echo client protocol ` " -"and :ref:`UDP echo server protocol ` " -"examples." +msgid "See :ref:`UDP echo client protocol ` and :ref:`UDP echo server protocol ` examples." msgstr "" -#: ../../library/asyncio-eventloop.rst:665 -msgid "" -"The *family*, *proto*, *flags*, *reuse_address*, *reuse_port*, " -"*allow_broadcast*, and *sock* parameters were added." +msgid "The *family*, *proto*, *flags*, *reuse_address*, *reuse_port*, *allow_broadcast*, and *sock* parameters were added." msgstr "" -#: ../../library/asyncio-eventloop.rst:669 msgid "Added support for Windows." msgstr "" -#: ../../library/asyncio-eventloop.rst:672 -msgid "" -"The *reuse_address* parameter is no longer supported, as " -"using :ref:`socket.SO_REUSEADDR ` poses a significant " -"security concern for UDP. Explicitly passing ``reuse_address=True`` will " -"raise an exception." +msgid "The *reuse_address* parameter is no longer supported, as using :ref:`socket.SO_REUSEADDR ` poses a significant security concern for UDP. Explicitly passing ``reuse_address=True`` will raise an exception." msgstr "" -#: ../../library/asyncio-eventloop.rst:678 -msgid "" -"When multiple processes with differing UIDs assign sockets to an identical " -"UDP socket address with ``SO_REUSEADDR``, incoming packets can become " -"randomly distributed among the sockets." +msgid "When multiple processes with differing UIDs assign sockets to an identical UDP socket address with ``SO_REUSEADDR``, incoming packets can become randomly distributed among the sockets." msgstr "" -#: ../../library/asyncio-eventloop.rst:682 -msgid "" -"For supported platforms, *reuse_port* can be used as a replacement for " -"similar functionality. With *reuse_port*, :ref:`socket.SO_REUSEPORT ` is used instead, which specifically prevents processes with " -"differing UIDs from assigning sockets to the same socket address." +msgid "For supported platforms, *reuse_port* can be used as a replacement for similar functionality. With *reuse_port*, :ref:`socket.SO_REUSEPORT ` is used instead, which specifically prevents processes with differing UIDs from assigning sockets to the same socket address." msgstr "" -#: ../../library/asyncio-eventloop.rst:689 -msgid "" -"The *reuse_address* parameter, disabled since Python 3.8.1, 3.7.6 and " -"3.6.10, has been entirely removed." +msgid "The *reuse_address* parameter, disabled since Python 3.8.1, 3.7.6 and 3.6.10, has been entirely removed." msgstr "" -#: ../../library/asyncio-eventloop.rst:699 msgid "Create a Unix connection." msgstr "" -#: ../../library/asyncio-eventloop.rst:701 -msgid "" -"The socket family will be :py:const:`~socket.AF_UNIX`; socket type will " -"be :py:const:`~socket.SOCK_STREAM`." +msgid "The socket family will be :py:const:`~socket.AF_UNIX`; socket type will be :py:const:`~socket.SOCK_STREAM`." msgstr "" -#: ../../library/asyncio-eventloop.rst:706 -msgid "" -"*path* is the name of a Unix domain socket and is required, unless a *sock* " -"parameter is specified. Abstract Unix " -"sockets, :class:`str`, :class:`bytes`, and :class:`~pathlib.Path` paths are " -"supported." +msgid "*path* is the name of a Unix domain socket and is required, unless a *sock* parameter is specified. Abstract Unix sockets, :class:`str`, :class:`bytes`, and :class:`~pathlib.Path` paths are supported." msgstr "" -#: ../../library/asyncio-eventloop.rst:711 -msgid "" -"See the documentation of the :meth:`loop.create_connection` method for " -"information about arguments to this method." +msgid "See the documentation of the :meth:`loop.create_connection` method for information about arguments to this method." msgstr "" -#: ../../library/asyncio-eventloop.rst:714 -#: ../../library/asyncio-eventloop.rst:870 -#: ../../library/asyncio-eventloop.rst:1376 -#: ../../library/asyncio-eventloop.rst:1935 -#: ../../library/asyncio-eventloop.rst:1942 msgid "Availability" msgstr "" -#: ../../library/asyncio-eventloop.rst:716 -msgid "" -"Added the *ssl_handshake_timeout* parameter. The *path* parameter can now be " -"a :term:`path-like object`." +msgid "Added the *ssl_handshake_timeout* parameter. The *path* parameter can now be a :term:`path-like object`." msgstr "" -#: ../../library/asyncio-eventloop.rst:726 msgid "Creating network servers" msgstr "" -#: ../../library/asyncio-eventloop.rst:742 -msgid "" -"Create a TCP server (socket type :const:`~socket.SOCK_STREAM`) listening on " -"*port* of the *host* address." +msgid "Create a TCP server (socket type :const:`~socket.SOCK_STREAM`) listening on *port* of the *host* address." msgstr "" -#: ../../library/asyncio-eventloop.rst:745 msgid "Returns a :class:`Server` object." msgstr "" -#: ../../library/asyncio-eventloop.rst:747 msgid "Arguments:" msgstr "" -#: ../../library/asyncio-eventloop.rst:752 -msgid "" -"The *host* parameter can be set to several types which determine where the " -"server would be listening:" +msgid "The *host* parameter can be set to several types which determine where the server would be listening:" msgstr "" -#: ../../library/asyncio-eventloop.rst:755 -msgid "" -"If *host* is a string, the TCP server is bound to a single network interface " -"specified by *host*." +msgid "If *host* is a string, the TCP server is bound to a single network interface specified by *host*." msgstr "" -#: ../../library/asyncio-eventloop.rst:758 -msgid "" -"If *host* is a sequence of strings, the TCP server is bound to all network " -"interfaces specified by the sequence." +msgid "If *host* is a sequence of strings, the TCP server is bound to all network interfaces specified by the sequence." msgstr "" -#: ../../library/asyncio-eventloop.rst:761 -msgid "" -"If *host* is an empty string or ``None``, all interfaces are assumed and a " -"list of multiple sockets will be returned (most likely one for IPv4 and " -"another one for IPv6)." +msgid "If *host* is an empty string or ``None``, all interfaces are assumed and a list of multiple sockets will be returned (most likely one for IPv4 and another one for IPv6)." msgstr "" -#: ../../library/asyncio-eventloop.rst:765 -msgid "" -"The *port* parameter can be set to specify which port the server should " -"listen on. If ``0`` or ``None`` (the default), a random unused port will be " -"selected (note that if *host* resolves to multiple network interfaces, a " -"different random port will be selected for each interface)." +msgid "The *port* parameter can be set to specify which port the server should listen on. If ``0`` or ``None`` (the default), a random unused port will be selected (note that if *host* resolves to multiple network interfaces, a different random port will be selected for each interface)." msgstr "" -#: ../../library/asyncio-eventloop.rst:770 -msgid "" -"*family* can be set to either :const:`socket.AF_INET` " -"or :const:`~socket.AF_INET6` to force the socket to use IPv4 or IPv6. If not " -"set, the *family* will be determined from host name (defaults " -"to :const:`~socket.AF_UNSPEC`)." +msgid "*family* can be set to either :const:`socket.AF_INET` or :const:`~socket.AF_INET6` to force the socket to use IPv4 or IPv6. If not set, the *family* will be determined from host name (defaults to :const:`~socket.AF_UNSPEC`)." msgstr "" -#: ../../library/asyncio-eventloop.rst:775 msgid "*flags* is a bitmask for :meth:`getaddrinfo`." msgstr "" -#: ../../library/asyncio-eventloop.rst:777 -msgid "" -"*sock* can optionally be specified in order to use a preexisting socket " -"object. If specified, *host* and *port* must not be specified." +msgid "*sock* can optionally be specified in order to use a preexisting socket object. If specified, *host* and *port* must not be specified." msgstr "" -#: ../../library/asyncio-eventloop.rst:782 -msgid "" -"The *sock* argument transfers ownership of the socket to the server created. " -"To close the socket, call the server's :meth:`~asyncio.Server.close` method." +msgid "The *sock* argument transfers ownership of the socket to the server created. To close the socket, call the server's :meth:`~asyncio.Server.close` method." msgstr "" -#: ../../library/asyncio-eventloop.rst:786 -msgid "" -"*backlog* is the maximum number of queued connections passed " -"to :meth:`~socket.socket.listen` (defaults to 100)." +msgid "*backlog* is the maximum number of queued connections passed to :meth:`~socket.socket.listen` (defaults to 100)." msgstr "" -#: ../../library/asyncio-eventloop.rst:789 -msgid "" -"*ssl* can be set to an :class:`~ssl.SSLContext` instance to enable TLS over " -"the accepted connections." +msgid "*ssl* can be set to an :class:`~ssl.SSLContext` instance to enable TLS over the accepted connections." msgstr "" -#: ../../library/asyncio-eventloop.rst:792 -msgid "" -"*reuse_address* tells the kernel to reuse a local socket in ``TIME_WAIT`` " -"state, without waiting for its natural timeout to expire. If not specified " -"will automatically be set to ``True`` on Unix." +msgid "*reuse_address* tells the kernel to reuse a local socket in ``TIME_WAIT`` state, without waiting for its natural timeout to expire. If not specified will automatically be set to ``True`` on Unix." msgstr "" -#: ../../library/asyncio-eventloop.rst:797 -msgid "" -"*reuse_port* tells the kernel to allow this endpoint to be bound to the same " -"port as other existing endpoints are bound to, so long as they all set this " -"flag when being created. This option is not supported on Windows." +msgid "*reuse_port* tells the kernel to allow this endpoint to be bound to the same port as other existing endpoints are bound to, so long as they all set this flag when being created. This option is not supported on Windows." msgstr "" -#: ../../library/asyncio-eventloop.rst:802 -msgid "" -"*keep_alive* set to ``True`` keeps connections active by enabling the " -"periodic transmission of messages." +msgid "*keep_alive* set to ``True`` keeps connections active by enabling the periodic transmission of messages." msgstr "" -#: ../../library/asyncio-eventloop.rst:807 msgid "Added the *keep_alive* parameter." msgstr "" -#: ../../library/asyncio-eventloop.rst:809 -msgid "" -"*ssl_handshake_timeout* is (for a TLS server) the time in seconds to wait " -"for the TLS handshake to complete before aborting the connection. ``60.0`` " -"seconds if ``None`` (default)." +msgid "*ssl_handshake_timeout* is (for a TLS server) the time in seconds to wait for the TLS handshake to complete before aborting the connection. ``60.0`` seconds if ``None`` (default)." msgstr "" -#: ../../library/asyncio-eventloop.rst:817 -msgid "" -"*start_serving* set to ``True`` (the default) causes the created server to " -"start accepting connections immediately. When set to ``False``, the user " -"should await on :meth:`Server.start_serving` or :meth:`Server.serve_forever` " -"to make the server to start accepting connections." +msgid "*start_serving* set to ``True`` (the default) causes the created server to start accepting connections immediately. When set to ``False``, the user should await on :meth:`Server.start_serving` or :meth:`Server.serve_forever` to make the server to start accepting connections." msgstr "" -#: ../../library/asyncio-eventloop.rst:829 msgid "The *host* parameter can be a sequence of strings." msgstr "" -#: ../../library/asyncio-eventloop.rst:833 -msgid "" -"Added *ssl_handshake_timeout* and *start_serving* parameters. The socket " -"option :ref:`socket.TCP_NODELAY ` is set by default " -"for all TCP connections." +msgid "Added *ssl_handshake_timeout* and *start_serving* parameters. The socket option :ref:`socket.TCP_NODELAY ` is set by default for all TCP connections." msgstr "" -#: ../../library/asyncio-eventloop.rst:843 -msgid "" -"The :func:`start_server` function is a higher-level alternative API that " -"returns a pair of :class:`StreamReader` and :class:`StreamWriter` that can " -"be used in an async/await code." +msgid "The :func:`start_server` function is a higher-level alternative API that returns a pair of :class:`StreamReader` and :class:`StreamWriter` that can be used in an async/await code." msgstr "" -#: ../../library/asyncio-eventloop.rst:855 -msgid "" -"Similar to :meth:`loop.create_server` but works with " -"the :py:const:`~socket.AF_UNIX` socket family." +msgid "Similar to :meth:`loop.create_server` but works with the :py:const:`~socket.AF_UNIX` socket family." msgstr "" -#: ../../library/asyncio-eventloop.rst:858 -msgid "" -"*path* is the name of a Unix domain socket, and is required, unless a *sock* " -"argument is provided. Abstract Unix sockets, :class:`str`, :class:`bytes`, " -"and :class:`~pathlib.Path` paths are supported." +msgid "*path* is the name of a Unix domain socket, and is required, unless a *sock* argument is provided. Abstract Unix sockets, :class:`str`, :class:`bytes`, and :class:`~pathlib.Path` paths are supported." msgstr "" -#: ../../library/asyncio-eventloop.rst:863 -msgid "" -"If *cleanup_socket* is true then the Unix socket will automatically be " -"removed from the filesystem when the server is closed, unless the socket has " -"been replaced after the server has been created." +msgid "If *cleanup_socket* is true then the Unix socket will automatically be removed from the filesystem when the server is closed, unless the socket has been replaced after the server has been created." msgstr "" -#: ../../library/asyncio-eventloop.rst:867 -msgid "" -"See the documentation of the :meth:`loop.create_server` method for " -"information about arguments to this method." +msgid "See the documentation of the :meth:`loop.create_server` method for information about arguments to this method." msgstr "" -#: ../../library/asyncio-eventloop.rst:874 -msgid "" -"Added the *ssl_handshake_timeout* and *start_serving* parameters. The *path* " -"parameter can now be a :class:`~pathlib.Path` object." +msgid "Added the *ssl_handshake_timeout* and *start_serving* parameters. The *path* parameter can now be a :class:`~pathlib.Path` object." msgstr "" -#: ../../library/asyncio-eventloop.rst:883 msgid "Added the *cleanup_socket* parameter." msgstr "" -#: ../../library/asyncio-eventloop.rst:891 msgid "Wrap an already accepted connection into a transport/protocol pair." msgstr "" -#: ../../library/asyncio-eventloop.rst:893 -msgid "" -"This method can be used by servers that accept connections outside of " -"asyncio but that use asyncio to handle them." +msgid "This method can be used by servers that accept connections outside of asyncio but that use asyncio to handle them." msgstr "" -#: ../../library/asyncio-eventloop.rst:896 -#: ../../library/asyncio-eventloop.rst:988 msgid "Parameters:" msgstr "" -#: ../../library/asyncio-eventloop.rst:901 -msgid "" -"*sock* is a preexisting socket object returned from :meth:`socket.accept " -"`." +msgid "*sock* is a preexisting socket object returned from :meth:`socket.accept `." msgstr "" -#: ../../library/asyncio-eventloop.rst:910 -msgid "" -"*ssl* can be set to an :class:`~ssl.SSLContext` to enable SSL over the " -"accepted connections." +msgid "*ssl* can be set to an :class:`~ssl.SSLContext` to enable SSL over the accepted connections." msgstr "" -#: ../../library/asyncio-eventloop.rst:913 -msgid "" -"*ssl_handshake_timeout* is (for an SSL connection) the time in seconds to " -"wait for the SSL handshake to complete before aborting the connection. " -"``60.0`` seconds if ``None`` (default)." +msgid "*ssl_handshake_timeout* is (for an SSL connection) the time in seconds to wait for the SSL handshake to complete before aborting the connection. ``60.0`` seconds if ``None`` (default)." msgstr "" -#: ../../library/asyncio-eventloop.rst:921 msgid "Returns a ``(transport, protocol)`` pair." msgstr "" -#: ../../library/asyncio-eventloop.rst:935 msgid "Transferring files" msgstr "" -#: ../../library/asyncio-eventloop.rst:941 -msgid "" -"Send a *file* over a *transport*. Return the total number of bytes sent." +msgid "Send a *file* over a *transport*. Return the total number of bytes sent." msgstr "" -#: ../../library/asyncio-eventloop.rst:944 msgid "The method uses high-performance :meth:`os.sendfile` if available." msgstr "" -#: ../../library/asyncio-eventloop.rst:946 msgid "*file* must be a regular file object opened in binary mode." msgstr "" -#: ../../library/asyncio-eventloop.rst:948 -#: ../../library/asyncio-eventloop.rst:1218 -msgid "" -"*offset* tells from where to start reading the file. If specified, *count* " -"is the total number of bytes to transmit as opposed to sending the file " -"until EOF is reached. File position is always updated, even when this method " -"raises an error, and :meth:`file.tell() ` can be used to " -"obtain the actual number of bytes sent." +msgid "*offset* tells from where to start reading the file. If specified, *count* is the total number of bytes to transmit as opposed to sending the file until EOF is reached. File position is always updated, even when this method raises an error, and :meth:`file.tell() ` can be used to obtain the actual number of bytes sent." msgstr "" -#: ../../library/asyncio-eventloop.rst:955 -msgid "" -"*fallback* set to ``True`` makes asyncio to manually read and send the file " -"when the platform does not support the sendfile system call (e.g. Windows or " -"SSL socket on Unix)." +msgid "*fallback* set to ``True`` makes asyncio to manually read and send the file when the platform does not support the sendfile system call (e.g. Windows or SSL socket on Unix)." msgstr "" -#: ../../library/asyncio-eventloop.rst:959 -msgid "" -"Raise :exc:`SendfileNotAvailableError` if the system does not support the " -"*sendfile* syscall and *fallback* is ``False``." +msgid "Raise :exc:`SendfileNotAvailableError` if the system does not support the *sendfile* syscall and *fallback* is ``False``." msgstr "" -#: ../../library/asyncio-eventloop.rst:966 msgid "TLS upgrade" msgstr "" -#: ../../library/asyncio-eventloop.rst:974 msgid "Upgrade an existing transport-based connection to TLS." msgstr "" -#: ../../library/asyncio-eventloop.rst:976 -msgid "" -"Create a TLS coder/decoder instance and insert it between the *transport* " -"and the *protocol*. The coder/decoder implements both *transport*-facing " -"protocol and *protocol*-facing transport." +msgid "Create a TLS coder/decoder instance and insert it between the *transport* and the *protocol*. The coder/decoder implements both *transport*-facing protocol and *protocol*-facing transport." msgstr "" -#: ../../library/asyncio-eventloop.rst:980 -msgid "" -"Return the created two-interface instance. After *await*, the *protocol* " -"must stop using the original *transport* and communicate with the returned " -"object only because the coder caches *protocol*-side data and sporadically " -"exchanges extra TLS session packets with *transport*." +msgid "Return the created two-interface instance. After *await*, the *protocol* must stop using the original *transport* and communicate with the returned object only because the coder caches *protocol*-side data and sporadically exchanges extra TLS session packets with *transport*." msgstr "" -#: ../../library/asyncio-eventloop.rst:985 -msgid "" -"In some situations (e.g. when the passed transport is already closing) this " -"may return ``None``." +msgid "In some situations (e.g. when the passed transport is already closing) this may return ``None``." msgstr "" -#: ../../library/asyncio-eventloop.rst:990 -msgid "" -"*transport* and *protocol* instances that methods " -"like :meth:`~loop.create_server` and :meth:`~loop.create_connection` return." +msgid "*transport* and *protocol* instances that methods like :meth:`~loop.create_server` and :meth:`~loop.create_connection` return." msgstr "" -#: ../../library/asyncio-eventloop.rst:994 msgid "*sslcontext*: a configured instance of :class:`~ssl.SSLContext`." msgstr "" -#: ../../library/asyncio-eventloop.rst:996 -msgid "" -"*server_side* pass ``True`` when a server-side connection is being upgraded " -"(like the one created by :meth:`~loop.create_server`)." +msgid "*server_side* pass ``True`` when a server-side connection is being upgraded (like the one created by :meth:`~loop.create_server`)." msgstr "" -#: ../../library/asyncio-eventloop.rst:999 -msgid "" -"*server_hostname*: sets or overrides the host name that the target server's " -"certificate will be matched against." +msgid "*server_hostname*: sets or overrides the host name that the target server's certificate will be matched against." msgstr "" -#: ../../library/asyncio-eventloop.rst:1019 msgid "Watching file descriptors" msgstr "" -#: ../../library/asyncio-eventloop.rst:1023 -msgid "" -"Start monitoring the *fd* file descriptor for read availability and invoke " -"*callback* with the specified arguments once *fd* is available for reading." +msgid "Start monitoring the *fd* file descriptor for read availability and invoke *callback* with the specified arguments once *fd* is available for reading." msgstr "" -#: ../../library/asyncio-eventloop.rst:1027 -#: ../../library/asyncio-eventloop.rst:1041 -msgid "" -"Any preexisting callback registered for *fd* is cancelled and replaced by " -"*callback*." +msgid "Any preexisting callback registered for *fd* is cancelled and replaced by *callback*." msgstr "" -#: ../../library/asyncio-eventloop.rst:1032 -msgid "" -"Stop monitoring the *fd* file descriptor for read availability. Returns " -"``True`` if *fd* was previously being monitored for reads." +msgid "Stop monitoring the *fd* file descriptor for read availability. Returns ``True`` if *fd* was previously being monitored for reads." msgstr "" -#: ../../library/asyncio-eventloop.rst:1037 -msgid "" -"Start monitoring the *fd* file descriptor for write availability and invoke " -"*callback* with the specified arguments *args* once *fd* is available for " -"writing." +msgid "Start monitoring the *fd* file descriptor for write availability and invoke *callback* with the specified arguments *args* once *fd* is available for writing." msgstr "" -#: ../../library/asyncio-eventloop.rst:1044 -#: ../../library/asyncio-eventloop.rst:1363 -msgid "" -"Use :func:`functools.partial` :ref:`to pass keyword arguments ` to *callback*." +msgid "Use :func:`functools.partial` :ref:`to pass keyword arguments ` to *callback*." msgstr "" -#: ../../library/asyncio-eventloop.rst:1049 -msgid "" -"Stop monitoring the *fd* file descriptor for write availability. Returns " -"``True`` if *fd* was previously being monitored for writes." +msgid "Stop monitoring the *fd* file descriptor for write availability. Returns ``True`` if *fd* was previously being monitored for writes." msgstr "" -#: ../../library/asyncio-eventloop.rst:1052 -msgid "" -"See also :ref:`Platform Support ` section for some " -"limitations of these methods." +msgid "See also :ref:`Platform Support ` section for some limitations of these methods." msgstr "" -#: ../../library/asyncio-eventloop.rst:1057 msgid "Working with socket objects directly" msgstr "" -#: ../../library/asyncio-eventloop.rst:1059 -msgid "" -"In general, protocol implementations that use transport-based APIs such " -"as :meth:`loop.create_connection` and :meth:`loop.create_server` are faster " -"than implementations that work with sockets directly. However, there are " -"some use cases when performance is not critical, and working " -"with :class:`~socket.socket` objects directly is more convenient." +msgid "In general, protocol implementations that use transport-based APIs such as :meth:`loop.create_connection` and :meth:`loop.create_server` are faster than implementations that work with sockets directly. However, there are some use cases when performance is not critical, and working with :class:`~socket.socket` objects directly is more convenient." msgstr "" -#: ../../library/asyncio-eventloop.rst:1069 -msgid "" -"Receive up to *nbytes* from *sock*. Asynchronous version " -"of :meth:`socket.recv() `." +msgid "Receive up to *nbytes* from *sock*. Asynchronous version of :meth:`socket.recv() `." msgstr "" -#: ../../library/asyncio-eventloop.rst:1072 msgid "Return the received data as a bytes object." msgstr "" -#: ../../library/asyncio-eventloop.rst:1074 -#: ../../library/asyncio-eventloop.rst:1089 -#: ../../library/asyncio-eventloop.rst:1101 -#: ../../library/asyncio-eventloop.rst:1114 -#: ../../library/asyncio-eventloop.rst:1130 -#: ../../library/asyncio-eventloop.rst:1146 -#: ../../library/asyncio-eventloop.rst:1157 -#: ../../library/asyncio-eventloop.rst:1193 -#: ../../library/asyncio-eventloop.rst:1232 msgid "*sock* must be a non-blocking socket." msgstr "" -#: ../../library/asyncio-eventloop.rst:1076 -msgid "" -"Even though this method was always documented as a coroutine method, " -"releases before Python 3.7 returned a :class:`Future`. Since Python 3.7 this " -"is an ``async def`` method." +msgid "Even though this method was always documented as a coroutine method, releases before Python 3.7 returned a :class:`Future`. Since Python 3.7 this is an ``async def`` method." msgstr "" -#: ../../library/asyncio-eventloop.rst:1084 -msgid "" -"Receive data from *sock* into the *buf* buffer. Modeled after the " -"blocking :meth:`socket.recv_into() ` method." +msgid "Receive data from *sock* into the *buf* buffer. Modeled after the blocking :meth:`socket.recv_into() ` method." msgstr "" -#: ../../library/asyncio-eventloop.rst:1087 msgid "Return the number of bytes written to the buffer." msgstr "" -#: ../../library/asyncio-eventloop.rst:1096 -msgid "" -"Receive a datagram of up to *bufsize* from *sock*. Asynchronous version " -"of :meth:`socket.recvfrom() `." +msgid "Receive a datagram of up to *bufsize* from *sock*. Asynchronous version of :meth:`socket.recvfrom() `." msgstr "" -#: ../../library/asyncio-eventloop.rst:1099 msgid "Return a tuple of (received data, remote address)." msgstr "" -#: ../../library/asyncio-eventloop.rst:1108 -msgid "" -"Receive a datagram of up to *nbytes* from *sock* into *buf*. Asynchronous " -"version of :meth:`socket.recvfrom_into() `." +msgid "Receive a datagram of up to *nbytes* from *sock* into *buf*. Asynchronous version of :meth:`socket.recvfrom_into() `." msgstr "" -#: ../../library/asyncio-eventloop.rst:1112 msgid "Return a tuple of (number of bytes received, remote address)." msgstr "" -#: ../../library/asyncio-eventloop.rst:1121 -msgid "" -"Send *data* to the *sock* socket. Asynchronous version " -"of :meth:`socket.sendall() `." +msgid "Send *data* to the *sock* socket. Asynchronous version of :meth:`socket.sendall() `." msgstr "" -#: ../../library/asyncio-eventloop.rst:1124 -msgid "" -"This method continues to send to the socket until either all data in *data* " -"has been sent or an error occurs. ``None`` is returned on success. On " -"error, an exception is raised. Additionally, there is no way to determine " -"how much data, if any, was successfully processed by the receiving end of " -"the connection." +msgid "This method continues to send to the socket until either all data in *data* has been sent or an error occurs. ``None`` is returned on success. On error, an exception is raised. Additionally, there is no way to determine how much data, if any, was successfully processed by the receiving end of the connection." msgstr "" -#: ../../library/asyncio-eventloop.rst:1132 -#: ../../library/asyncio-eventloop.rst:1195 -msgid "" -"Even though the method was always documented as a coroutine method, before " -"Python 3.7 it returned a :class:`Future`. Since Python 3.7, this is an " -"``async def`` method." +msgid "Even though the method was always documented as a coroutine method, before Python 3.7 it returned a :class:`Future`. Since Python 3.7, this is an ``async def`` method." msgstr "" -#: ../../library/asyncio-eventloop.rst:1140 -msgid "" -"Send a datagram from *sock* to *address*. Asynchronous version " -"of :meth:`socket.sendto() `." +msgid "Send a datagram from *sock* to *address*. Asynchronous version of :meth:`socket.sendto() `." msgstr "" -#: ../../library/asyncio-eventloop.rst:1144 msgid "Return the number of bytes sent." msgstr "" -#: ../../library/asyncio-eventloop.rst:1153 msgid "Connect *sock* to a remote socket at *address*." msgstr "" -#: ../../library/asyncio-eventloop.rst:1155 -msgid "" -"Asynchronous version of :meth:`socket.connect() `." +msgid "Asynchronous version of :meth:`socket.connect() `." msgstr "" -#: ../../library/asyncio-eventloop.rst:1159 -msgid "" -"With :class:`SelectorEventLoop`, *address* does not need to be resolved: " -"for :const:`~socket.AF_INET` and :const:`~socket.AF_INET6` sockets, " -"``sock_connect`` first checks whether *address* is already resolved by " -"calling :func:`socket.inet_pton`, and uses :meth:`loop.getaddrinfo` to " -"resolve it if it is not." +msgid "With :class:`SelectorEventLoop`, *address* does not need to be resolved: for :const:`~socket.AF_INET` and :const:`~socket.AF_INET6` sockets, ``sock_connect`` first checks whether *address* is already resolved by calling :func:`socket.inet_pton`, and uses :meth:`loop.getaddrinfo` to resolve it if it is not." msgstr "" -#: ../../library/asyncio-eventloop.rst:1165 -msgid "" -":class:`ProactorEventLoop`, the default event loop on Windows, does not " -"resolve *address*. The host must already be a numeric IP address; passing a " -"host name raises :exc:`OSError`. Resolve the address " -"with :meth:`loop.getaddrinfo` first, or use :meth:`loop.create_connection`, " -"which resolves the address on every platform." +msgid ":class:`ProactorEventLoop`, the default event loop on Windows, does not resolve *address*. The host must already be a numeric IP address; passing a host name raises :exc:`OSError`. Resolve the address with :meth:`loop.getaddrinfo` first, or use :meth:`loop.create_connection`, which resolves the address on every platform." msgstr "" -#: ../../library/asyncio-eventloop.rst:1171 -msgid "" -"With :class:`SelectorEventLoop`, ``address`` no longer needs to be resolved." +msgid "With :class:`SelectorEventLoop`, ``address`` no longer needs to be resolved." msgstr "" -#: ../../library/asyncio-eventloop.rst:1177 -msgid "" -":meth:`loop.create_connection` and :func:`asyncio.open_connection() " -"`." +msgid ":meth:`loop.create_connection` and :func:`asyncio.open_connection() `." msgstr "" -#: ../../library/asyncio-eventloop.rst:1184 -msgid "" -"Accept a connection. Modeled after the blocking :meth:`socket.accept() " -"` method." +msgid "Accept a connection. Modeled after the blocking :meth:`socket.accept() ` method." msgstr "" -#: ../../library/asyncio-eventloop.rst:1187 -msgid "" -"The socket must be bound to an address and listening for connections. The " -"return value is a pair ``(conn, address)`` where *conn* is a *new* socket " -"object usable to send and receive data on the connection, and *address* is " -"the address bound to the socket on the other end of the connection." +msgid "The socket must be bound to an address and listening for connections. The return value is a pair ``(conn, address)`` where *conn* is a *new* socket object usable to send and receive data on the connection, and *address* is the address bound to the socket on the other end of the connection." msgstr "" -#: ../../library/asyncio-eventloop.rst:1202 msgid ":meth:`loop.create_server` and :func:`start_server`." msgstr "" -#: ../../library/asyncio-eventloop.rst:1208 -msgid "" -"Send a file using high-performance :mod:`os.sendfile` if possible. Return " -"the total number of bytes sent." +msgid "Send a file using high-performance :mod:`os.sendfile` if possible. Return the total number of bytes sent." msgstr "" -#: ../../library/asyncio-eventloop.rst:1211 -msgid "" -"Asynchronous version of :meth:`socket.sendfile() `." +msgid "Asynchronous version of :meth:`socket.sendfile() `." msgstr "" -#: ../../library/asyncio-eventloop.rst:1213 -msgid "" -"*sock* must be a non-" -"blocking :const:`socket.SOCK_STREAM` :class:`~socket.socket`." +msgid "*sock* must be a non-blocking :const:`socket.SOCK_STREAM` :class:`~socket.socket`." msgstr "" -#: ../../library/asyncio-eventloop.rst:1216 msgid "*file* must be a regular file object open in binary mode." msgstr "" -#: ../../library/asyncio-eventloop.rst:1225 -msgid "" -"*fallback*, when set to ``True``, makes asyncio manually read and send the " -"file when the platform does not support the sendfile syscall (e.g. Windows " -"or SSL socket on Unix)." +msgid "*fallback*, when set to ``True``, makes asyncio manually read and send the file when the platform does not support the sendfile syscall (e.g. Windows or SSL socket on Unix)." msgstr "" -#: ../../library/asyncio-eventloop.rst:1229 -msgid "" -"Raise :exc:`SendfileNotAvailableError` if the system does not support " -"*sendfile* syscall and *fallback* is ``False``." +msgid "Raise :exc:`SendfileNotAvailableError` if the system does not support *sendfile* syscall and *fallback* is ``False``." msgstr "" -#: ../../library/asyncio-eventloop.rst:1238 msgid "DNS" msgstr "" -#: ../../library/asyncio-eventloop.rst:1244 msgid "Asynchronous version of :meth:`socket.getaddrinfo`." msgstr "" -#: ../../library/asyncio-eventloop.rst:1249 msgid "Asynchronous version of :meth:`socket.getnameinfo`." msgstr "" -#: ../../library/asyncio-eventloop.rst:1252 -msgid "" -"Both *getaddrinfo* and *getnameinfo* internally utilize their synchronous " -"versions through the loop's default thread pool executor. When this executor " -"is saturated, these methods may experience delays, which higher-level " -"networking libraries may report as increased timeouts. To mitigate this, " -"consider using a custom executor for other user tasks, or setting a default " -"executor with a larger number of workers." +msgid "Both *getaddrinfo* and *getnameinfo* internally utilize their synchronous versions through the loop's default thread pool executor. When this executor is saturated, these methods may experience delays, which higher-level networking libraries may report as increased timeouts. To mitigate this, consider using a custom executor for other user tasks, or setting a default executor with a larger number of workers." msgstr "" -#: ../../library/asyncio-eventloop.rst:1259 -msgid "" -"Both *getaddrinfo* and *getnameinfo* methods were always documented to " -"return a coroutine, but prior to Python 3.7 they were, in fact, " -"returning :class:`asyncio.Future` objects. Starting with Python 3.7 both " -"methods are coroutines." +msgid "Both *getaddrinfo* and *getnameinfo* methods were always documented to return a coroutine, but prior to Python 3.7 they were, in fact, returning :class:`asyncio.Future` objects. Starting with Python 3.7 both methods are coroutines." msgstr "" -#: ../../library/asyncio-eventloop.rst:1267 msgid "Working with pipes" msgstr "" -#: ../../library/asyncio-eventloop.rst:1272 msgid "Register the read end of *pipe* in the event loop." msgstr "" -#: ../../library/asyncio-eventloop.rst:1277 -#: ../../library/asyncio-eventloop.rst:1296 -msgid "" -"*pipe* is a :term:`file-like object `. See :ref:`Supported " -"pipe objects ` for the objects supported as *pipe*." +msgid "*pipe* is a :term:`file-like object `. See :ref:`Supported pipe objects ` for the objects supported as *pipe*." msgstr "" -#: ../../library/asyncio-eventloop.rst:1281 -msgid "" -"Return pair ``(transport, protocol)``, where *transport* supports " -"the :class:`ReadTransport` interface and *protocol* is an object " -"instantiated by the *protocol_factory*." +msgid "Return pair ``(transport, protocol)``, where *transport* supports the :class:`ReadTransport` interface and *protocol* is an object instantiated by the *protocol_factory*." msgstr "" -#: ../../library/asyncio-eventloop.rst:1285 -#: ../../library/asyncio-eventloop.rst:1304 -msgid "" -"With :class:`SelectorEventLoop` event loop, the *pipe* is set to non-" -"blocking mode." +msgid "With :class:`SelectorEventLoop` event loop, the *pipe* is set to non-blocking mode." msgstr "" -#: ../../library/asyncio-eventloop.rst:1291 msgid "Register the write end of *pipe* in the event loop." msgstr "" -#: ../../library/asyncio-eventloop.rst:1300 -msgid "" -"Return pair ``(transport, protocol)``, where *transport* " -"supports :class:`WriteTransport` interface and *protocol* is an object " -"instantiated by the *protocol_factory*." +msgid "Return pair ``(transport, protocol)``, where *transport* supports :class:`WriteTransport` interface and *protocol* is an object instantiated by the *protocol_factory*." msgstr "" -#: ../../library/asyncio-eventloop.rst:1310 msgid "Supported pipe objects" msgstr "" -#: ../../library/asyncio-eventloop.rst:1311 -msgid "" -"These methods only work with objects the operating system can poll for " -"readiness or perform overlapped I/O on. Regular files on disk are **not** " -"supported on any platform. There is no asynchronous file I/O in asyncio; " -"use :meth:`loop.run_in_executor` to read and write regular files without " -"blocking the event loop." +msgid "These methods only work with objects the operating system can poll for readiness or perform overlapped I/O on. Regular files on disk are **not** supported on any platform. There is no asynchronous file I/O in asyncio; use :meth:`loop.run_in_executor` to read and write regular files without blocking the event loop." msgstr "" -#: ../../library/asyncio-eventloop.rst:1317 -msgid "" -"On Unix, with :class:`SelectorEventLoop`, *pipe* must wrap one of the " -"following:" +msgid "On Unix, with :class:`SelectorEventLoop`, *pipe* must wrap one of the following:" msgstr "" -#: ../../library/asyncio-eventloop.rst:1320 -msgid "" -"a pipe, such as an end of an :func:`os.pipe` pair or a FIFO created " -"with :func:`os.mkfifo`;" +msgid "a pipe, such as an end of an :func:`os.pipe` pair or a FIFO created with :func:`os.mkfifo`;" msgstr "" -#: ../../library/asyncio-eventloop.rst:1322 msgid "a socket;" msgstr "" -#: ../../library/asyncio-eventloop.rst:1323 msgid "a character device, such as a terminal." msgstr "" -#: ../../library/asyncio-eventloop.rst:1325 -msgid "" -"On Windows, where only :class:`ProactorEventLoop` implements these methods, " -"*pipe* must wrap a handle opened for overlapped I/O (that is, created with " -"the ``FILE_FLAG_OVERLAPPED`` flag), since the handle has to be associated " -"with an I/O completion port. Handles that were not opened for overlapped I/" -"O are rejected. In particular, the standard streams " -"(:data:`sys.stdin`, :data:`sys.stdout` and :data:`sys.stderr`), console " -"handles, and the pipes created by :func:`os.pipe` are **not** opened for " -"overlapped I/O and therefore cannot be used with these methods." +msgid "On Windows, where only :class:`ProactorEventLoop` implements these methods, *pipe* must wrap a handle opened for overlapped I/O (that is, created with the ``FILE_FLAG_OVERLAPPED`` flag), since the handle has to be associated with an I/O completion port. Handles that were not opened for overlapped I/O are rejected. In particular, the standard streams (:data:`sys.stdin`, :data:`sys.stdout` and :data:`sys.stderr`), console handles, and the pipes created by :func:`os.pipe` are **not** opened for overlapped I/O and therefore cannot be used with these methods." msgstr "" -#: ../../library/asyncio-eventloop.rst:1336 -msgid "" -":class:`SelectorEventLoop` does not support the above methods on Windows. " -"Use :class:`ProactorEventLoop` instead for Windows." +msgid ":class:`SelectorEventLoop` does not support the above methods on Windows. Use :class:`ProactorEventLoop` instead for Windows." msgstr "" -#: ../../library/asyncio-eventloop.rst:1341 -msgid "" -"The :meth:`loop.subprocess_exec` and :meth:`loop.subprocess_shell` methods." +msgid "The :meth:`loop.subprocess_exec` and :meth:`loop.subprocess_shell` methods." msgstr "" -#: ../../library/asyncio-eventloop.rst:1346 msgid "Unix signals" msgstr "" -#: ../../library/asyncio-eventloop.rst:1352 -msgid "" -"Set *callback* as the handler for the *signum* signal, passing *args* as " -"positional arguments." +msgid "Set *callback* as the handler for the *signum* signal, passing *args* as positional arguments." msgstr "" -#: ../../library/asyncio-eventloop.rst:1355 -msgid "" -"The callback will be invoked by *loop*, along with other queued callbacks " -"and runnable coroutines of that event loop. Unlike signal handlers " -"registered using :func:`signal.signal`, a callback registered with this " -"function is allowed to interact with the event loop." +msgid "The callback will be invoked by *loop*, along with other queued callbacks and runnable coroutines of that event loop. Unlike signal handlers registered using :func:`signal.signal`, a callback registered with this function is allowed to interact with the event loop." msgstr "" -#: ../../library/asyncio-eventloop.rst:1360 -msgid "" -"Raise :exc:`ValueError` if the signal number is invalid or uncatchable. " -"Raise :exc:`RuntimeError` if there is a problem setting up the handler." +msgid "Raise :exc:`ValueError` if the signal number is invalid or uncatchable. Raise :exc:`RuntimeError` if there is a problem setting up the handler." msgstr "" -#: ../../library/asyncio-eventloop.rst:1366 -msgid "" -"Like :func:`signal.signal`, this function must be invoked in the main thread." +msgid "Like :func:`signal.signal`, this function must be invoked in the main thread." msgstr "" -#: ../../library/asyncio-eventloop.rst:1371 msgid "Remove the handler for the *sig* signal." msgstr "" -#: ../../library/asyncio-eventloop.rst:1373 -msgid "" -"Return ``True`` if the signal handler was removed, or ``False`` if no " -"handler was set for the given signal." +msgid "Return ``True`` if the signal handler was removed, or ``False`` if no handler was set for the given signal." msgstr "" -#: ../../library/asyncio-eventloop.rst:1380 msgid "The :mod:`signal` module." msgstr "" -#: ../../library/asyncio-eventloop.rst:1384 msgid "Executing code in thread or process pools" msgstr "" -#: ../../library/asyncio-eventloop.rst:1388 -msgid "" -"Arrange for *func* to be called in the specified executor passing *args* as " -"positional arguments." +msgid "Arrange for *func* to be called in the specified executor passing *args* as positional arguments." msgstr "" -#: ../../library/asyncio-eventloop.rst:1391 -msgid "" -"The *executor* argument should be an :class:`concurrent.futures.Executor` " -"instance. The default executor is used if *executor* is ``None``. The " -"default executor can be set by :meth:`loop.set_default_executor`, otherwise, " -"a :class:`concurrent.futures.ThreadPoolExecutor` will be lazy-initialized " -"and used by :func:`run_in_executor` if needed." +msgid "The *executor* argument should be an :class:`concurrent.futures.Executor` instance. The default executor is used if *executor* is ``None``. The default executor can be set by :meth:`loop.set_default_executor`, otherwise, a :class:`concurrent.futures.ThreadPoolExecutor` will be lazy-initialized and used by :func:`run_in_executor` if needed." msgstr "" -#: ../../library/asyncio-eventloop.rst:1399 msgid "" "import asyncio\n" "import concurrent.futures\n" @@ -1797,476 +938,258 @@ msgid "" " asyncio.run(main())" msgstr "" -#: ../../library/asyncio-eventloop.rst:1445 -msgid "" -"Note that the entry point guard (``if __name__ == '__main__'``) is required " -"for option 3 due to the peculiarities of :mod:`multiprocessing`, which is " -"used by :class:`~concurrent.futures.ProcessPoolExecutor`. See :ref:`Safe " -"importing of main module `." +msgid "Note that the entry point guard (``if __name__ == '__main__'``) is required for option 3 due to the peculiarities of :mod:`multiprocessing`, which is used by :class:`~concurrent.futures.ProcessPoolExecutor`. See :ref:`Safe importing of main module `." msgstr "" -#: ../../library/asyncio-eventloop.rst:1450 msgid "This method returns a :class:`asyncio.Future` object." msgstr "" -#: ../../library/asyncio-eventloop.rst:1452 -msgid "" -"Use :func:`functools.partial` :ref:`to pass keyword arguments ` to *func*." +msgid "Use :func:`functools.partial` :ref:`to pass keyword arguments ` to *func*." msgstr "" -#: ../../library/asyncio-eventloop.rst:1455 -msgid "" -":meth:`loop.run_in_executor` no longer configures the ``max_workers`` of the " -"thread pool executor it creates, instead leaving it up to the thread pool " -"executor (:class:`~concurrent.futures.ThreadPoolExecutor`) to set the " -"default." +msgid ":meth:`loop.run_in_executor` no longer configures the ``max_workers`` of the thread pool executor it creates, instead leaving it up to the thread pool executor (:class:`~concurrent.futures.ThreadPoolExecutor`) to set the default." msgstr "" -#: ../../library/asyncio-eventloop.rst:1464 -msgid "" -"Set *executor* as the default executor used by :meth:`run_in_executor`. " -"*executor* must be an instance " -"of :class:`~concurrent.futures.ThreadPoolExecutor`, which " -"includes :class:`~concurrent.futures.InterpreterPoolExecutor`." +msgid "Set *executor* as the default executor used by :meth:`run_in_executor`. *executor* must be an instance of :class:`~concurrent.futures.ThreadPoolExecutor`, which includes :class:`~concurrent.futures.InterpreterPoolExecutor`." msgstr "" -#: ../../library/asyncio-eventloop.rst:1469 -msgid "" -"*executor* must be an instance " -"of :class:`~concurrent.futures.ThreadPoolExecutor`." +msgid "*executor* must be an instance of :class:`~concurrent.futures.ThreadPoolExecutor`." msgstr "" -#: ../../library/asyncio-eventloop.rst:1475 msgid "Error handling API" msgstr "" -#: ../../library/asyncio-eventloop.rst:1477 msgid "Allows customizing how exceptions are handled in the event loop." msgstr "" -#: ../../library/asyncio-eventloop.rst:1481 msgid "Set *handler* as the new event loop exception handler." msgstr "" -#: ../../library/asyncio-eventloop.rst:1483 -msgid "" -"If *handler* is ``None``, the default exception handler will be set. " -"Otherwise, *handler* must be a callable with the signature matching ``(loop, " -"context)``, where ``loop`` is a reference to the active event loop, and " -"``context`` is a ``dict`` object containing the details of the exception " -"(see :meth:`call_exception_handler` documentation for details about context)." +msgid "If *handler* is ``None``, the default exception handler will be set. Otherwise, *handler* must be a callable with the signature matching ``(loop, context)``, where ``loop`` is a reference to the active event loop, and ``context`` is a ``dict`` object containing the details of the exception (see :meth:`call_exception_handler` documentation for details about context)." msgstr "" -#: ../../library/asyncio-eventloop.rst:1491 -msgid "" -"If the handler is called on behalf of a :class:`~asyncio.Task` " -"or :class:`~asyncio.Handle`, it is run in the :class:`contextvars.Context` " -"of that task or callback handle." +msgid "If the handler is called on behalf of a :class:`~asyncio.Task` or :class:`~asyncio.Handle`, it is run in the :class:`contextvars.Context` of that task or callback handle." msgstr "" -#: ../../library/asyncio-eventloop.rst:1497 -msgid "" -"The handler may be called in the :class:`~contextvars.Context` of the task " -"or handle where the exception originated." +msgid "The handler may be called in the :class:`~contextvars.Context` of the task or handle where the exception originated." msgstr "" -#: ../../library/asyncio-eventloop.rst:1502 -msgid "" -"Return the current exception handler, or ``None`` if no custom exception " -"handler was set." +msgid "Return the current exception handler, or ``None`` if no custom exception handler was set." msgstr "" -#: ../../library/asyncio-eventloop.rst:1509 msgid "Default exception handler." msgstr "" -#: ../../library/asyncio-eventloop.rst:1511 -msgid "" -"This is called when an exception occurs and no exception handler is set. " -"This can be called by a custom exception handler that wants to defer to the " -"default handler behavior." +msgid "This is called when an exception occurs and no exception handler is set. This can be called by a custom exception handler that wants to defer to the default handler behavior." msgstr "" -#: ../../library/asyncio-eventloop.rst:1515 -msgid "" -"*context* parameter has the same meaning as " -"in :meth:`call_exception_handler`." +msgid "*context* parameter has the same meaning as in :meth:`call_exception_handler`." msgstr "" -#: ../../library/asyncio-eventloop.rst:1520 msgid "Call the current event loop exception handler." msgstr "" -#: ../../library/asyncio-eventloop.rst:1522 -msgid "" -"*context* is a ``dict`` object containing the following keys (new keys may " -"be introduced in future Python versions):" +msgid "*context* is a ``dict`` object containing the following keys (new keys may be introduced in future Python versions):" msgstr "" -#: ../../library/asyncio-eventloop.rst:1525 msgid "'message': Error message;" msgstr "" -#: ../../library/asyncio-eventloop.rst:1526 msgid "'exception' (optional): Exception object;" msgstr "" -#: ../../library/asyncio-eventloop.rst:1527 msgid "'future' (optional): :class:`asyncio.Future` instance;" msgstr "" -#: ../../library/asyncio-eventloop.rst:1528 msgid "'task' (optional): :class:`asyncio.Task` instance;" msgstr "" -#: ../../library/asyncio-eventloop.rst:1529 msgid "'handle' (optional): :class:`asyncio.Handle` instance;" msgstr "" -#: ../../library/asyncio-eventloop.rst:1530 msgid "'protocol' (optional): :ref:`Protocol ` instance;" msgstr "" -#: ../../library/asyncio-eventloop.rst:1531 msgid "'transport' (optional): :ref:`Transport ` instance;" msgstr "" -#: ../../library/asyncio-eventloop.rst:1532 msgid "'socket' (optional): :class:`socket.socket` instance;" msgstr "" -#: ../../library/asyncio-eventloop.rst:1533 msgid "'source_traceback' (optional): Traceback of the source;" msgstr "" -#: ../../library/asyncio-eventloop.rst:1534 msgid "'handle_traceback' (optional): Traceback of the handle;" msgstr "" -#: ../../library/asyncio-eventloop.rst:1535 msgid "'asyncgen' (optional): Asynchronous generator that caused" msgstr "" -#: ../../library/asyncio-eventloop.rst:1536 msgid "the exception." msgstr "" -#: ../../library/asyncio-eventloop.rst:1540 -msgid "" -"This method should not be overloaded in subclassed event loops. For custom " -"exception handling, use the :meth:`set_exception_handler` method." +msgid "This method should not be overloaded in subclassed event loops. For custom exception handling, use the :meth:`set_exception_handler` method." msgstr "" -#: ../../library/asyncio-eventloop.rst:1545 msgid "Enabling debug mode" msgstr "" -#: ../../library/asyncio-eventloop.rst:1549 msgid "Get the debug mode (:class:`bool`) of the event loop." msgstr "" -#: ../../library/asyncio-eventloop.rst:1551 -msgid "" -"The default value is ``True`` if the environment " -"variable :envvar:`PYTHONASYNCIODEBUG` is set to a non-empty string, " -"``False`` otherwise." +msgid "The default value is ``True`` if the environment variable :envvar:`PYTHONASYNCIODEBUG` is set to a non-empty string, ``False`` otherwise." msgstr "" -#: ../../library/asyncio-eventloop.rst:1557 msgid "Set the debug mode of the event loop." msgstr "" -#: ../../library/asyncio-eventloop.rst:1561 -msgid "" -"The new :ref:`Python Development Mode ` can now also be used to " -"enable the debug mode." +msgid "The new :ref:`Python Development Mode ` can now also be used to enable the debug mode." msgstr "" -#: ../../library/asyncio-eventloop.rst:1566 -msgid "" -"This attribute can be used to set the minimum execution duration in seconds " -"that is considered \"slow\". When debug mode is enabled, \"slow\" callbacks " -"are logged." +msgid "This attribute can be used to set the minimum execution duration in seconds that is considered \"slow\". When debug mode is enabled, \"slow\" callbacks are logged." msgstr "" -#: ../../library/asyncio-eventloop.rst:1570 msgid "Default value is 100 milliseconds." msgstr "" -#: ../../library/asyncio-eventloop.rst:1574 msgid "The :ref:`debug mode of asyncio `." msgstr "" -#: ../../library/asyncio-eventloop.rst:1578 msgid "Running subprocesses" msgstr "" -#: ../../library/asyncio-eventloop.rst:1580 -msgid "" -"Methods described in this subsections are low-level. In regular async/await " -"code consider using the high-level :func:`asyncio.create_subprocess_shell` " -"and :func:`asyncio.create_subprocess_exec` convenience functions instead." +msgid "Methods described in this subsections are low-level. In regular async/await code consider using the high-level :func:`asyncio.create_subprocess_shell` and :func:`asyncio.create_subprocess_exec` convenience functions instead." msgstr "" -#: ../../library/asyncio-eventloop.rst:1587 -msgid "" -"On Windows, the default event loop :class:`ProactorEventLoop` supports " -"subprocesses, whereas :class:`SelectorEventLoop` does not. " -"See :ref:`Subprocess Support on Windows ` for " -"details." +msgid "On Windows, the default event loop :class:`ProactorEventLoop` supports subprocesses, whereas :class:`SelectorEventLoop` does not. See :ref:`Subprocess Support on Windows ` for details." msgstr "" -#: ../../library/asyncio-eventloop.rst:1599 -msgid "" -"Create a subprocess from one or more string arguments specified by *args*." +msgid "Create a subprocess from one or more string arguments specified by *args*." msgstr "" -#: ../../library/asyncio-eventloop.rst:1602 msgid "*args* must be a list of strings represented by:" msgstr "" -#: ../../library/asyncio-eventloop.rst:1604 msgid ":class:`str`;" msgstr "" -#: ../../library/asyncio-eventloop.rst:1605 -msgid "" -"or :class:`bytes`, encoded to the :ref:`filesystem encoding `." +msgid "or :class:`bytes`, encoded to the :ref:`filesystem encoding `." msgstr "" -#: ../../library/asyncio-eventloop.rst:1608 -msgid "" -"The first string specifies the program executable, and the remaining strings " -"specify the arguments. Together, string arguments form the ``argv`` of the " -"program." +msgid "The first string specifies the program executable, and the remaining strings specify the arguments. Together, string arguments form the ``argv`` of the program." msgstr "" -#: ../../library/asyncio-eventloop.rst:1612 -msgid "" -"This is similar to the standard library :class:`subprocess.Popen` class " -"called with ``shell=False`` and the list of strings passed as the first " -"argument; however, where :class:`~subprocess.Popen` takes a single argument " -"which is list of strings, *subprocess_exec* takes multiple string arguments." +msgid "This is similar to the standard library :class:`subprocess.Popen` class called with ``shell=False`` and the list of strings passed as the first argument; however, where :class:`~subprocess.Popen` takes a single argument which is list of strings, *subprocess_exec* takes multiple string arguments." msgstr "" -#: ../../library/asyncio-eventloop.rst:1618 -msgid "" -"The *protocol_factory* must be a callable returning a subclass of " -"the :class:`asyncio.SubprocessProtocol` class." +msgid "The *protocol_factory* must be a callable returning a subclass of the :class:`asyncio.SubprocessProtocol` class." msgstr "" -#: ../../library/asyncio-eventloop.rst:1621 msgid "Other parameters:" msgstr "" -#: ../../library/asyncio-eventloop.rst:1623 msgid "*stdin* can be any of these:" msgstr "" -#: ../../library/asyncio-eventloop.rst:1625 -#: ../../library/asyncio-eventloop.rst:1636 -#: ../../library/asyncio-eventloop.rst:1646 msgid "a file-like object" msgstr "" -#: ../../library/asyncio-eventloop.rst:1626 -msgid "" -"an existing file descriptor (a positive integer), for example those created " -"with :meth:`os.pipe`" +msgid "an existing file descriptor (a positive integer), for example those created with :meth:`os.pipe`" msgstr "" -#: ../../library/asyncio-eventloop.rst:1627 -#: ../../library/asyncio-eventloop.rst:1637 -#: ../../library/asyncio-eventloop.rst:1647 -msgid "" -"the :const:`subprocess.PIPE` constant (default) which will create a new pipe " -"and connect it," +msgid "the :const:`subprocess.PIPE` constant (default) which will create a new pipe and connect it," msgstr "" -#: ../../library/asyncio-eventloop.rst:1629 -#: ../../library/asyncio-eventloop.rst:1639 -#: ../../library/asyncio-eventloop.rst:1649 -msgid "" -"the value ``None`` which will make the subprocess inherit the file " -"descriptor from this process" +msgid "the value ``None`` which will make the subprocess inherit the file descriptor from this process" msgstr "" -#: ../../library/asyncio-eventloop.rst:1631 -#: ../../library/asyncio-eventloop.rst:1641 -#: ../../library/asyncio-eventloop.rst:1651 -msgid "" -"the :const:`subprocess.DEVNULL` constant which indicates that the " -"special :data:`os.devnull` file will be used" +msgid "the :const:`subprocess.DEVNULL` constant which indicates that the special :data:`os.devnull` file will be used" msgstr "" -#: ../../library/asyncio-eventloop.rst:1634 msgid "*stdout* can be any of these:" msgstr "" -#: ../../library/asyncio-eventloop.rst:1644 msgid "*stderr* can be any of these:" msgstr "" -#: ../../library/asyncio-eventloop.rst:1653 -msgid "" -"the :const:`subprocess.STDOUT` constant which will connect the standard " -"error stream to the process' standard output stream" +msgid "the :const:`subprocess.STDOUT` constant which will connect the standard error stream to the process' standard output stream" msgstr "" -#: ../../library/asyncio-eventloop.rst:1656 -msgid "" -"All other keyword arguments are passed to :class:`subprocess.Popen` without " -"interpretation, except for *bufsize*, *universal_newlines*, *shell*, *text*, " -"*encoding* and *errors*, which should not be specified at all." +msgid "All other keyword arguments are passed to :class:`subprocess.Popen` without interpretation, except for *bufsize*, *universal_newlines*, *shell*, *text*, *encoding* and *errors*, which should not be specified at all." msgstr "" -#: ../../library/asyncio-eventloop.rst:1661 -msgid "" -"The ``asyncio`` subprocess API does not support decoding the streams as " -"text. :func:`bytes.decode` can be used to convert the bytes returned from " -"the stream to text." +msgid "The ``asyncio`` subprocess API does not support decoding the streams as text. :func:`bytes.decode` can be used to convert the bytes returned from the stream to text." msgstr "" -#: ../../library/asyncio-eventloop.rst:1665 -msgid "" -"If a file-like object passed as *stdin*, *stdout* or *stderr* represents a " -"pipe, then the other side of this pipe should be registered " -"with :meth:`~loop.connect_write_pipe` or :meth:`~loop.connect_read_pipe` for " -"use with the event loop." +msgid "If a file-like object passed as *stdin*, *stdout* or *stderr* represents a pipe, then the other side of this pipe should be registered with :meth:`~loop.connect_write_pipe` or :meth:`~loop.connect_read_pipe` for use with the event loop." msgstr "" -#: ../../library/asyncio-eventloop.rst:1670 -msgid "" -"See the constructor of the :class:`subprocess.Popen` class for documentation " -"on other arguments." +msgid "See the constructor of the :class:`subprocess.Popen` class for documentation on other arguments." msgstr "" -#: ../../library/asyncio-eventloop.rst:1673 -msgid "" -"Returns a pair of ``(transport, protocol)``, where *transport* conforms to " -"the :class:`asyncio.SubprocessTransport` base class and *protocol* is an " -"object instantiated by the *protocol_factory*." +msgid "Returns a pair of ``(transport, protocol)``, where *transport* conforms to the :class:`asyncio.SubprocessTransport` base class and *protocol* is an object instantiated by the *protocol_factory*." msgstr "" -#: ../../library/asyncio-eventloop.rst:1677 -#: ../../library/asyncio-eventloop.rst:1703 -msgid "" -"If the transport is closed or is garbage collected, the child process is " -"killed if it is still running." +msgid "If the transport is closed or is garbage collected, the child process is killed if it is still running." msgstr "" -#: ../../library/asyncio-eventloop.rst:1685 -msgid "" -"Create a subprocess from *cmd*, which can be a :class:`str` or " -"a :class:`bytes` string encoded to the :ref:`filesystem encoding `, using the platform's \"shell\" syntax." +msgid "Create a subprocess from *cmd*, which can be a :class:`str` or a :class:`bytes` string encoded to the :ref:`filesystem encoding `, using the platform's \"shell\" syntax." msgstr "" -#: ../../library/asyncio-eventloop.rst:1690 -msgid "" -"This is similar to the standard library :class:`subprocess.Popen` class " -"called with ``shell=True``." +msgid "This is similar to the standard library :class:`subprocess.Popen` class called with ``shell=True``." msgstr "" -#: ../../library/asyncio-eventloop.rst:1693 -msgid "" -"The *protocol_factory* must be a callable returning a subclass of " -"the :class:`SubprocessProtocol` class." +msgid "The *protocol_factory* must be a callable returning a subclass of the :class:`SubprocessProtocol` class." msgstr "" -#: ../../library/asyncio-eventloop.rst:1696 -msgid "" -"See :meth:`~loop.subprocess_exec` for more details about the remaining " -"arguments." +msgid "See :meth:`~loop.subprocess_exec` for more details about the remaining arguments." msgstr "" -#: ../../library/asyncio-eventloop.rst:1699 -msgid "" -"Returns a pair of ``(transport, protocol)``, where *transport* conforms to " -"the :class:`SubprocessTransport` base class and *protocol* is an object " -"instantiated by the *protocol_factory*." +msgid "Returns a pair of ``(transport, protocol)``, where *transport* conforms to the :class:`SubprocessTransport` base class and *protocol* is an object instantiated by the *protocol_factory*." msgstr "" -#: ../../library/asyncio-eventloop.rst:1707 -msgid "" -"It is the application's responsibility to ensure that all whitespace and " -"special characters are quoted appropriately to avoid `shell injection " -"`_ " -"vulnerabilities. The :func:`shlex.quote` function can be used to properly " -"escape whitespace and special characters in strings that are going to be " -"used to construct shell commands." +msgid "It is the application's responsibility to ensure that all whitespace and special characters are quoted appropriately to avoid `shell injection `_ vulnerabilities. The :func:`shlex.quote` function can be used to properly escape whitespace and special characters in strings that are going to be used to construct shell commands." msgstr "" -#: ../../library/asyncio-eventloop.rst:1716 msgid "Callback handles" msgstr "" -#: ../../library/asyncio-eventloop.rst:1720 -msgid "" -"A callback wrapper object returned " -"by :meth:`loop.call_soon`, :meth:`loop.call_soon_threadsafe`." +msgid "A callback wrapper object returned by :meth:`loop.call_soon`, :meth:`loop.call_soon_threadsafe`." msgstr "" -#: ../../library/asyncio-eventloop.rst:1725 -msgid "" -"Return the :class:`contextvars.Context` object associated with the handle." +msgid "Return the :class:`contextvars.Context` object associated with the handle." msgstr "" -#: ../../library/asyncio-eventloop.rst:1732 -msgid "" -"Cancel the callback. If the callback has already been canceled or executed, " -"this method has no effect." +msgid "Cancel the callback. If the callback has already been canceled or executed, this method has no effect." msgstr "" -#: ../../library/asyncio-eventloop.rst:1737 msgid "Return ``True`` if the callback was cancelled." msgstr "" -#: ../../library/asyncio-eventloop.rst:1743 -msgid "" -"A callback wrapper object returned by :meth:`loop.call_later`, " -"and :meth:`loop.call_at`." +msgid "A callback wrapper object returned by :meth:`loop.call_later`, and :meth:`loop.call_at`." msgstr "" -#: ../../library/asyncio-eventloop.rst:1746 msgid "This class is a subclass of :class:`Handle`." msgstr "" -#: ../../library/asyncio-eventloop.rst:1750 msgid "Return a scheduled callback time as :class:`float` seconds." msgstr "" -#: ../../library/asyncio-eventloop.rst:1752 -msgid "" -"The time is an absolute timestamp, using the same time reference " -"as :meth:`loop.time`." +msgid "The time is an absolute timestamp, using the same time reference as :meth:`loop.time`." msgstr "" -#: ../../library/asyncio-eventloop.rst:1759 msgid "Server objects" msgstr "" -#: ../../library/asyncio-eventloop.rst:1761 -msgid "" -"Server objects are created " -"by :meth:`loop.create_server`, :meth:`loop.create_unix_server`, :func:`start_server`, " -"and :func:`start_unix_server` functions." +msgid "Server objects are created by :meth:`loop.create_server`, :meth:`loop.create_unix_server`, :func:`start_server`, and :func:`start_unix_server` functions." msgstr "" -#: ../../library/asyncio-eventloop.rst:1765 msgid "Do not instantiate the :class:`Server` class directly." msgstr "" -#: ../../library/asyncio-eventloop.rst:1769 -msgid "" -"*Server* objects are asynchronous context managers. When used in an ``async " -"with`` statement, it's guaranteed that the Server object is closed and not " -"accepting new connections when the ``async with`` statement is completed::" +msgid "*Server* objects are asynchronous context managers. When used in an ``async with`` statement, it's guaranteed that the Server object is closed and not accepting new connections when the ``async with`` statement is completed::" msgstr "" -#: ../../library/asyncio-eventloop.rst:1774 msgid "" "srv = await loop.create_server(...)\n" "\n" @@ -2276,102 +1199,57 @@ msgid "" "# At this point, srv is closed and no longer accepts new connections." msgstr "" -#: ../../library/asyncio-eventloop.rst:1782 msgid "Server object is an asynchronous context manager since Python 3.7." msgstr "" -#: ../../library/asyncio-eventloop.rst:1785 -msgid "" -"This class was exposed publicly as ``asyncio.Server`` in Python 3.9.11, " -"3.10.3 and 3.11." +msgid "This class was exposed publicly as ``asyncio.Server`` in Python 3.9.11, 3.10.3 and 3.11." msgstr "" -#: ../../library/asyncio-eventloop.rst:1790 -msgid "" -"Stop serving: close listening sockets and set the :attr:`sockets` attribute " -"to ``None``." +msgid "Stop serving: close listening sockets and set the :attr:`sockets` attribute to ``None``." msgstr "" -#: ../../library/asyncio-eventloop.rst:1793 -msgid "" -"The sockets that represent existing incoming client connections are left " -"open." +msgid "The sockets that represent existing incoming client connections are left open." msgstr "" -#: ../../library/asyncio-eventloop.rst:1796 -msgid "" -"The server is closed asynchronously; use the :meth:`wait_closed` coroutine " -"to wait until the server is closed (and no more connections are active)." +msgid "The server is closed asynchronously; use the :meth:`wait_closed` coroutine to wait until the server is closed (and no more connections are active)." msgstr "" -#: ../../library/asyncio-eventloop.rst:1802 msgid "Close all existing incoming client connections." msgstr "" -#: ../../library/asyncio-eventloop.rst:1804 -msgid "" -"Calls :meth:`~asyncio.BaseTransport.close` on all associated transports." +msgid "Calls :meth:`~asyncio.BaseTransport.close` on all associated transports." msgstr "" -#: ../../library/asyncio-eventloop.rst:1807 -msgid "" -":meth:`close` should be called before :meth:`close_clients` when closing the " -"server to avoid races with new clients connecting." +msgid ":meth:`close` should be called before :meth:`close_clients` when closing the server to avoid races with new clients connecting." msgstr "" -#: ../../library/asyncio-eventloop.rst:1814 -msgid "" -"Close all existing incoming client connections immediately, without waiting " -"for pending operations to complete." +msgid "Close all existing incoming client connections immediately, without waiting for pending operations to complete." msgstr "" -#: ../../library/asyncio-eventloop.rst:1817 -msgid "" -"Calls :meth:`~asyncio.WriteTransport.abort` on all associated transports." +msgid "Calls :meth:`~asyncio.WriteTransport.abort` on all associated transports." msgstr "" -#: ../../library/asyncio-eventloop.rst:1820 -msgid "" -":meth:`close` should be called before :meth:`abort_clients` when closing the " -"server to avoid races with new clients connecting." +msgid ":meth:`close` should be called before :meth:`abort_clients` when closing the server to avoid races with new clients connecting." msgstr "" -#: ../../library/asyncio-eventloop.rst:1827 msgid "Return the event loop associated with the server object." msgstr "" -#: ../../library/asyncio-eventloop.rst:1834 msgid "Start accepting connections." msgstr "" -#: ../../library/asyncio-eventloop.rst:1836 -msgid "" -"This method is idempotent, so it can be called when the server is already " -"serving." +msgid "This method is idempotent, so it can be called when the server is already serving." msgstr "" -#: ../../library/asyncio-eventloop.rst:1839 -msgid "" -"The *start_serving* keyword-only parameter to :meth:`loop.create_server` " -"and :meth:`asyncio.start_server` allows creating a Server object that is not " -"accepting connections initially. In this case ``Server.start_serving()``, " -"or :meth:`Server.serve_forever` can be used to make the Server start " -"accepting connections." +msgid "The *start_serving* keyword-only parameter to :meth:`loop.create_server` and :meth:`asyncio.start_server` allows creating a Server object that is not accepting connections initially. In this case ``Server.start_serving()``, or :meth:`Server.serve_forever` can be used to make the Server start accepting connections." msgstr "" -#: ../../library/asyncio-eventloop.rst:1851 -msgid "" -"Start accepting connections until the coroutine is cancelled. Cancellation " -"of ``serve_forever`` task causes the server to be closed." +msgid "Start accepting connections until the coroutine is cancelled. Cancellation of ``serve_forever`` task causes the server to be closed." msgstr "" -#: ../../library/asyncio-eventloop.rst:1855 -msgid "" -"This method can be called if the server is already accepting connections. " -"Only one ``serve_forever`` task can exist per one *Server* object." +msgid "This method can be called if the server is already accepting connections. Only one ``serve_forever`` task can exist per one *Server* object." msgstr "" -#: ../../library/asyncio-eventloop.rst:1861 msgid "" "async def client_connected(reader, writer):\n" " # Communicate with the client with\n" @@ -2386,63 +1264,36 @@ msgid "" "asyncio.run(main('127.0.0.1', 0))" msgstr "" -#: ../../library/asyncio-eventloop.rst:1877 msgid "Return ``True`` if the server is accepting new connections." msgstr "" -#: ../../library/asyncio-eventloop.rst:1884 -msgid "" -"Wait until the :meth:`close` method completes and all active connections " -"have finished." +msgid "Wait until the :meth:`close` method completes and all active connections have finished." msgstr "" -#: ../../library/asyncio-eventloop.rst:1887 -msgid "" -"``wait_closed()`` now waits until the server is closed and all active " -"connections have finished. Previously, it returned immediately if the " -"server was already closed, even if connections were still active." +msgid "``wait_closed()`` now waits until the server is closed and all active connections have finished. Previously, it returned immediately if the server was already closed, even if connections were still active." msgstr "" -#: ../../library/asyncio-eventloop.rst:1895 -msgid "" -"List of socket-like objects, ``asyncio.trsock.TransportSocket``, which the " -"server is listening on." +msgid "List of socket-like objects, ``asyncio.trsock.TransportSocket``, which the server is listening on." msgstr "" -#: ../../library/asyncio-eventloop.rst:1898 -msgid "" -"Prior to Python 3.7 ``Server.sockets`` used to return an internal list of " -"server sockets directly. In 3.7 a copy of that list is returned." +msgid "Prior to Python 3.7 ``Server.sockets`` used to return an internal list of server sockets directly. In 3.7 a copy of that list is returned." msgstr "" -#: ../../library/asyncio-eventloop.rst:1908 msgid "Event loop implementations" msgstr "" -#: ../../library/asyncio-eventloop.rst:1910 -msgid "" -"asyncio ships with two different event loop " -"implementations: :class:`SelectorEventLoop` and :class:`ProactorEventLoop`." +msgid "asyncio ships with two different event loop implementations: :class:`SelectorEventLoop` and :class:`ProactorEventLoop`." msgstr "" -#: ../../library/asyncio-eventloop.rst:1913 msgid "By default asyncio is configured to use :class:`EventLoop`." msgstr "" -#: ../../library/asyncio-eventloop.rst:1918 -msgid "" -"A subclass of :class:`AbstractEventLoop` based on the :mod:`selectors` " -"module." +msgid "A subclass of :class:`AbstractEventLoop` based on the :mod:`selectors` module." msgstr "" -#: ../../library/asyncio-eventloop.rst:1921 -msgid "" -"Uses the most efficient *selector* available for the given platform. It is " -"also possible to manually configure the exact selector implementation to be " -"used::" +msgid "Uses the most efficient *selector* available for the given platform. It is also possible to manually configure the exact selector implementation to be used::" msgstr "" -#: ../../library/asyncio-eventloop.rst:1925 msgid "" "import asyncio\n" "import selectors\n" @@ -2450,69 +1301,40 @@ msgid "" "async def main():\n" " ...\n" "\n" -"loop_factory = lambda: " -"asyncio.SelectorEventLoop(selectors.SelectSelector())\n" +"loop_factory = lambda: asyncio.SelectorEventLoop(selectors.SelectSelector())\n" "asyncio.run(main(), loop_factory=loop_factory)" msgstr "" -#: ../../library/asyncio-eventloop.rst:1940 -msgid "" -"A subclass of :class:`AbstractEventLoop` for Windows that uses \"I/O " -"Completion Ports\" (IOCP)." +msgid "A subclass of :class:`AbstractEventLoop` for Windows that uses \"I/O Completion Ports\" (IOCP)." msgstr "" -#: ../../library/asyncio-eventloop.rst:1946 -msgid "" -"`MSDN documentation on I/O Completion Ports `_." +msgid "`MSDN documentation on I/O Completion Ports `_." msgstr "" -#: ../../library/asyncio-eventloop.rst:1951 -msgid "" -"An alias to the most efficient available subclass " -"of :class:`AbstractEventLoop` for the given platform." +msgid "An alias to the most efficient available subclass of :class:`AbstractEventLoop` for the given platform." msgstr "" -#: ../../library/asyncio-eventloop.rst:1954 -msgid "" -"It is an alias to :class:`SelectorEventLoop` on Unix " -"and :class:`ProactorEventLoop` on Windows." +msgid "It is an alias to :class:`SelectorEventLoop` on Unix and :class:`ProactorEventLoop` on Windows." msgstr "" -#: ../../library/asyncio-eventloop.rst:1960 msgid "Abstract base class for asyncio-compliant event loops." msgstr "" -#: ../../library/asyncio-eventloop.rst:1962 -msgid "" -"The :ref:`asyncio-event-loop-methods` section lists all methods that an " -"alternative implementation of ``AbstractEventLoop`` should have defined." +msgid "The :ref:`asyncio-event-loop-methods` section lists all methods that an alternative implementation of ``AbstractEventLoop`` should have defined." msgstr "" -#: ../../library/asyncio-eventloop.rst:1968 msgid "Examples" msgstr "" -#: ../../library/asyncio-eventloop.rst:1970 -msgid "" -"Note that all examples in this section **purposefully** show how to use the " -"low-level event loop APIs, such as :meth:`loop.run_forever` " -"and :meth:`loop.call_soon`. Modern asyncio applications rarely need to be " -"written this way; consider using the high-level functions " -"like :func:`asyncio.run`." +msgid "Note that all examples in this section **purposefully** show how to use the low-level event loop APIs, such as :meth:`loop.run_forever` and :meth:`loop.call_soon`. Modern asyncio applications rarely need to be written this way; consider using the high-level functions like :func:`asyncio.run`." msgstr "" -#: ../../library/asyncio-eventloop.rst:1980 msgid "Hello World with call_soon()" msgstr "" -#: ../../library/asyncio-eventloop.rst:1982 -msgid "" -"An example using the :meth:`loop.call_soon` method to schedule a callback. " -"The callback displays ``\"Hello World\"`` and then stops the event loop::" +msgid "An example using the :meth:`loop.call_soon` method to schedule a callback. The callback displays ``\"Hello World\"`` and then stops the event loop::" msgstr "" -#: ../../library/asyncio-eventloop.rst:1986 msgid "" "import asyncio\n" "\n" @@ -2533,24 +1355,15 @@ msgid "" " loop.close()" msgstr "" -#: ../../library/asyncio-eventloop.rst:2006 -msgid "" -"A similar :ref:`Hello World ` example created with a coroutine " -"and the :func:`run` function." +msgid "A similar :ref:`Hello World ` example created with a coroutine and the :func:`run` function." msgstr "" -#: ../../library/asyncio-eventloop.rst:2013 msgid "Display the current date with call_later()" msgstr "" -#: ../../library/asyncio-eventloop.rst:2015 -msgid "" -"An example of a callback displaying the current date every second. The " -"callback uses the :meth:`loop.call_later` method to reschedule itself after " -"5 seconds, and then stops the event loop::" +msgid "An example of a callback displaying the current date every second. The callback uses the :meth:`loop.call_later` method to reschedule itself after 5 seconds, and then stops the event loop::" msgstr "" -#: ../../library/asyncio-eventloop.rst:2019 msgid "" "import asyncio\n" "import datetime as dt\n" @@ -2575,23 +1388,15 @@ msgid "" " loop.close()" msgstr "" -#: ../../library/asyncio-eventloop.rst:2043 -msgid "" -"A similar :ref:`current date ` example created with a " -"coroutine and the :func:`run` function." +msgid "A similar :ref:`current date ` example created with a coroutine and the :func:`run` function." msgstr "" -#: ../../library/asyncio-eventloop.rst:2050 msgid "Watch a file descriptor for read events" msgstr "" -#: ../../library/asyncio-eventloop.rst:2052 -msgid "" -"Wait until a file descriptor received some data using " -"the :meth:`loop.add_reader` method and then close the event loop::" +msgid "Wait until a file descriptor received some data using the :meth:`loop.add_reader` method and then close the event loop::" msgstr "" -#: ../../library/asyncio-eventloop.rst:2055 msgid "" "import asyncio\n" "from socket import socketpair\n" @@ -2627,34 +1432,21 @@ msgid "" " loop.close()" msgstr "" -#: ../../library/asyncio-eventloop.rst:2090 -msgid "" -"A similar :ref:`example ` using " -"transports, protocols, and the :meth:`loop.create_connection` method." +msgid "A similar :ref:`example ` using transports, protocols, and the :meth:`loop.create_connection` method." msgstr "" -#: ../../library/asyncio-eventloop.rst:2094 -msgid "" -"Another similar :ref:`example ` " -"using the high-level :func:`asyncio.open_connection` function and streams." +msgid "Another similar :ref:`example ` using the high-level :func:`asyncio.open_connection` function and streams." msgstr "" -#: ../../library/asyncio-eventloop.rst:2102 msgid "Set signal handlers for SIGINT and SIGTERM" msgstr "" -#: ../../library/asyncio-eventloop.rst:2104 msgid "(This ``signal`` example only works on Unix.)" msgstr "" -#: ../../library/asyncio-eventloop.rst:2106 -msgid "" -"Register handlers for signals :const:`~signal.SIGINT` " -"and :const:`~signal.SIGTERM` using the :meth:`loop.add_signal_handler` " -"method::" +msgid "Register handlers for signals :const:`~signal.SIGINT` and :const:`~signal.SIGTERM` using the :meth:`loop.add_signal_handler` method::" msgstr "" -#: ../../library/asyncio-eventloop.rst:2109 msgid "" "import asyncio\n" "import functools\n" diff --git a/library/asyncio-exceptions.po b/library/asyncio-exceptions.po index d7d73c85..2d8393f2 100644 --- a/library/asyncio-exceptions.po +++ b/library/asyncio-exceptions.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:54+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,87 +23,59 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/asyncio-exceptions.rst:8 msgid "Exceptions" msgstr "" -#: ../../library/asyncio-exceptions.rst:10 msgid "**Source code:** :source:`Lib/asyncio/exceptions.py`" msgstr "" -#: ../../library/asyncio-exceptions.rst:16 -msgid "" -"A deprecated alias of :exc:`TimeoutError`, raised when the operation has " -"exceeded the given deadline." +msgid "A deprecated alias of :exc:`TimeoutError`, raised when the operation has exceeded the given deadline." msgstr "" -#: ../../library/asyncio-exceptions.rst:21 msgid "This class was made an alias of :exc:`TimeoutError`." msgstr "" -#: ../../library/asyncio-exceptions.rst:26 msgid "The operation has been cancelled." msgstr "" -#: ../../library/asyncio-exceptions.rst:28 -msgid "" -"This exception can be caught to perform custom operations when asyncio Tasks " -"are cancelled. In almost all situations the exception must be re-raised." +msgid "This exception can be caught to perform custom operations when asyncio Tasks are cancelled. In almost all situations the exception must be re-raised." msgstr "" -#: ../../library/asyncio-exceptions.rst:34 -msgid "" -":exc:`CancelledError` is now a subclass of :class:`BaseException` rather " -"than :class:`Exception`." +msgid ":exc:`CancelledError` is now a subclass of :class:`BaseException` rather than :class:`Exception`." msgstr "" -#: ../../library/asyncio-exceptions.rst:39 msgid "Invalid internal state of :class:`Task` or :class:`Future`." msgstr "" -#: ../../library/asyncio-exceptions.rst:41 -msgid "" -"Can be raised in situations like setting a result value for a *Future* " -"object that already has a result value set." +msgid "Can be raised in situations like setting a result value for a *Future* object that already has a result value set." msgstr "" -#: ../../library/asyncio-exceptions.rst:47 -msgid "" -"The \"sendfile\" syscall is not available for the given socket or file type." +msgid "The \"sendfile\" syscall is not available for the given socket or file type." msgstr "" -#: ../../library/asyncio-exceptions.rst:50 msgid "A subclass of :exc:`RuntimeError`." msgstr "" -#: ../../library/asyncio-exceptions.rst:55 msgid "The requested read operation did not complete fully." msgstr "" -#: ../../library/asyncio-exceptions.rst:57 msgid "Raised by the :ref:`asyncio stream APIs`." msgstr "" -#: ../../library/asyncio-exceptions.rst:59 msgid "This exception is a subclass of :exc:`EOFError`." msgstr "" -#: ../../library/asyncio-exceptions.rst:63 msgid "The total number (:class:`int`) of expected bytes." msgstr "" -#: ../../library/asyncio-exceptions.rst:67 msgid "A string of :class:`bytes` read before the end of stream was reached." msgstr "" -#: ../../library/asyncio-exceptions.rst:72 msgid "Reached the buffer size limit while looking for a separator." msgstr "" -#: ../../library/asyncio-exceptions.rst:74 msgid "Raised by the :ref:`asyncio stream APIs `." msgstr "" -#: ../../library/asyncio-exceptions.rst:78 msgid "The total number of to be consumed bytes." msgstr "" diff --git a/library/asyncio-extending.po b/library/asyncio-extending.po index 8f327987..e4ae3a66 100644 --- a/library/asyncio-extending.po +++ b/library/asyncio-extending.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2022-11-05 19:48+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,140 +21,83 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/asyncio-extending.rst:6 msgid "Extending" msgstr "" -#: ../../library/asyncio-extending.rst:8 -msgid "" -"The main direction for :mod:`asyncio` extending is writing custom *event " -"loop* classes. Asyncio has helpers that could be used to simplify this task." +msgid "The main direction for :mod:`asyncio` extending is writing custom *event loop* classes. Asyncio has helpers that could be used to simplify this task." msgstr "" -#: ../../library/asyncio-extending.rst:13 -msgid "" -"Third-parties should reuse existing asyncio code with caution, a new Python " -"version is free to break backward compatibility in *internal* part of API." +msgid "Third-parties should reuse existing asyncio code with caution, a new Python version is free to break backward compatibility in *internal* part of API." msgstr "" -#: ../../library/asyncio-extending.rst:19 msgid "Writing a Custom Event Loop" msgstr "" -#: ../../library/asyncio-extending.rst:21 -msgid "" -":class:`asyncio.AbstractEventLoop` declares very many methods. Implementing " -"all them from scratch is a tedious job." +msgid ":class:`asyncio.AbstractEventLoop` declares very many methods. Implementing all them from scratch is a tedious job." msgstr "" -#: ../../library/asyncio-extending.rst:24 -msgid "" -"A loop can get many common methods implementation for free by inheriting " -"from :class:`asyncio.BaseEventLoop`." +msgid "A loop can get many common methods implementation for free by inheriting from :class:`asyncio.BaseEventLoop`." msgstr "" -#: ../../library/asyncio-extending.rst:27 -msgid "" -"In turn, the successor should implement a bunch of *private* methods " -"declared but not implemented in :class:`asyncio.BaseEventLoop`." +msgid "In turn, the successor should implement a bunch of *private* methods declared but not implemented in :class:`asyncio.BaseEventLoop`." msgstr "" -#: ../../library/asyncio-extending.rst:30 -msgid "" -"For example, ``loop.create_connection()`` checks arguments, resolves DNS " -"addresses, and calls ``loop._make_socket_transport()`` that should be " -"implemented by inherited class. The ``_make_socket_transport()`` method is " -"not documented and is considered as an *internal* API." +msgid "For example, ``loop.create_connection()`` checks arguments, resolves DNS addresses, and calls ``loop._make_socket_transport()`` that should be implemented by inherited class. The ``_make_socket_transport()`` method is not documented and is considered as an *internal* API." msgstr "" -#: ../../library/asyncio-extending.rst:38 msgid "Future and Task private constructors" msgstr "" -#: ../../library/asyncio-extending.rst:40 -msgid "" -":class:`asyncio.Future` and :class:`asyncio.Task` should be never created " -"directly, please use corresponding :meth:`loop.create_future` " -"and :meth:`loop.create_task`, or :func:`asyncio.create_task` factories " -"instead." +msgid ":class:`asyncio.Future` and :class:`asyncio.Task` should be never created directly, please use corresponding :meth:`loop.create_future` and :meth:`loop.create_task`, or :func:`asyncio.create_task` factories instead." msgstr "" -#: ../../library/asyncio-extending.rst:44 -msgid "" -"However, third-party *event loops* may *reuse* built-in future and task " -"implementations for the sake of getting a complex and highly optimized code " -"for free." +msgid "However, third-party *event loops* may *reuse* built-in future and task implementations for the sake of getting a complex and highly optimized code for free." msgstr "" -#: ../../library/asyncio-extending.rst:47 msgid "For this purpose the following, *private* constructors are listed:" msgstr "" -#: ../../library/asyncio-extending.rst:51 msgid "Create a built-in future instance." msgstr "" -#: ../../library/asyncio-extending.rst:53 msgid "*loop* is an optional event loop instance." msgstr "" -#: ../../library/asyncio-extending.rst:57 msgid "Create a built-in task instance." msgstr "" -#: ../../library/asyncio-extending.rst:59 -msgid "" -"*loop* is an optional event loop instance. The rest of arguments are " -"described in :meth:`loop.create_task` description." +msgid "*loop* is an optional event loop instance. The rest of arguments are described in :meth:`loop.create_task` description." msgstr "" -#: ../../library/asyncio-extending.rst:64 msgid "*context* argument is added." msgstr "" -#: ../../library/asyncio-extending.rst:69 msgid "Task lifetime support" msgstr "" -#: ../../library/asyncio-extending.rst:71 -msgid "" -"A third party task implementation should call the following functions to " -"keep a task visible by :func:`asyncio.all_tasks` " -"and :func:`asyncio.current_task`:" +msgid "A third party task implementation should call the following functions to keep a task visible by :func:`asyncio.all_tasks` and :func:`asyncio.current_task`:" msgstr "" -#: ../../library/asyncio-extending.rst:76 msgid "Register a new *task* as managed by *asyncio*." msgstr "" -#: ../../library/asyncio-extending.rst:78 msgid "Call the function from a task constructor." msgstr "" -#: ../../library/asyncio-extending.rst:82 msgid "Unregister a *task* from *asyncio* internal structures." msgstr "" -#: ../../library/asyncio-extending.rst:84 msgid "The function should be called when a task is about to finish." msgstr "" -#: ../../library/asyncio-extending.rst:88 msgid "Switch the current task to the *task* argument." msgstr "" -#: ../../library/asyncio-extending.rst:90 -msgid "" -"Call the function just before executing a portion of embedded *coroutine* " -"(:meth:`coroutine.send` or :meth:`coroutine.throw`)." +msgid "Call the function just before executing a portion of embedded *coroutine* (:meth:`coroutine.send` or :meth:`coroutine.throw`)." msgstr "" -#: ../../library/asyncio-extending.rst:95 msgid "Switch the current task back from *task* to ``None``." msgstr "" -#: ../../library/asyncio-extending.rst:97 -msgid "" -"Call the function just after :meth:`coroutine.send` " -"or :meth:`coroutine.throw` execution." +msgid "Call the function just after :meth:`coroutine.send` or :meth:`coroutine.throw` execution." msgstr "" diff --git a/library/asyncio-future.po b/library/asyncio-future.po index 93618bbc..6f8ced63 100644 --- a/library/asyncio-future.po +++ b/library/asyncio-future.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:55+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,317 +23,185 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/asyncio-future.rst:8 msgid "Futures" msgstr "" -#: ../../library/asyncio-future.rst:10 -msgid "" -"**Source code:** :source:`Lib/asyncio/futures.py`, :source:`Lib/asyncio/" -"base_futures.py`" +msgid "**Source code:** :source:`Lib/asyncio/futures.py`, :source:`Lib/asyncio/base_futures.py`" msgstr "" -#: ../../library/asyncio-future.rst:15 -msgid "" -"*Future* objects are used to bridge **low-level callback-based code** with " -"high-level async/await code." +msgid "*Future* objects are used to bridge **low-level callback-based code** with high-level async/await code." msgstr "" -#: ../../library/asyncio-future.rst:20 msgid "Future Functions" msgstr "" -#: ../../library/asyncio-future.rst:24 msgid "Return ``True`` if *obj* is either of:" msgstr "" -#: ../../library/asyncio-future.rst:26 msgid "an instance of :class:`asyncio.Future`," msgstr "" -#: ../../library/asyncio-future.rst:27 msgid "an instance of :class:`asyncio.Task`," msgstr "" -#: ../../library/asyncio-future.rst:28 msgid "a Future-like object with a ``_asyncio_future_blocking`` attribute." msgstr "" -#: ../../library/asyncio-future.rst:36 msgid "Return:" msgstr "" -#: ../../library/asyncio-future.rst:38 -msgid "" -"*obj* argument as is, if *obj* is a :class:`Future`, a :class:`Task`, or a " -"Future-like object (:func:`isfuture` is used for the test.)" +msgid "*obj* argument as is, if *obj* is a :class:`Future`, a :class:`Task`, or a Future-like object (:func:`isfuture` is used for the test.)" msgstr "" -#: ../../library/asyncio-future.rst:42 -msgid "" -"a :class:`Task` object wrapping *obj*, if *obj* is a coroutine " -"(:func:`iscoroutine` is used for the test); in this case the coroutine will " -"be scheduled by ``ensure_future()``." +msgid "a :class:`Task` object wrapping *obj*, if *obj* is a coroutine (:func:`iscoroutine` is used for the test); in this case the coroutine will be scheduled by ``ensure_future()``." msgstr "" -#: ../../library/asyncio-future.rst:47 -msgid "" -"a :class:`Task` object that would await on *obj*, if *obj* is an awaitable " -"(:func:`inspect.isawaitable` is used for the test.)" +msgid "a :class:`Task` object that would await on *obj*, if *obj* is an awaitable (:func:`inspect.isawaitable` is used for the test.)" msgstr "" -#: ../../library/asyncio-future.rst:50 msgid "If *obj* is neither of the above a :exc:`TypeError` is raised." msgstr "" -#: ../../library/asyncio-future.rst:54 -msgid "" -"Save a reference to the result of this function, to avoid a task " -"disappearing mid-execution." +msgid "Save a reference to the result of this function, to avoid a task disappearing mid-execution." msgstr "" -#: ../../library/asyncio-future.rst:57 -msgid "" -"See also the :func:`create_task` function which is the preferred way for " -"creating new tasks or use :class:`asyncio.TaskGroup` which keeps reference " -"to the task internally." +msgid "See also the :func:`create_task` function which is the preferred way for creating new tasks or use :class:`asyncio.TaskGroup` which keeps reference to the task internally." msgstr "" -#: ../../library/asyncio-future.rst:61 msgid "The function accepts any :term:`awaitable` object." msgstr "" -#: ../../library/asyncio-future.rst:64 -msgid "" -"Deprecation warning is emitted if *obj* is not a Future-like object and " -"*loop* is not specified and there is no running event loop." +msgid "Deprecation warning is emitted if *obj* is not a Future-like object and *loop* is not specified and there is no running event loop." msgstr "" -#: ../../library/asyncio-future.rst:71 -msgid "" -"Wrap a :class:`concurrent.futures.Future` object in " -"a :class:`asyncio.Future` object." +msgid "Wrap a :class:`concurrent.futures.Future` object in a :class:`asyncio.Future` object." msgstr "" -#: ../../library/asyncio-future.rst:74 -msgid "" -"Deprecation warning is emitted if *future* is not a Future-like object and " -"*loop* is not specified and there is no running event loop." +msgid "Deprecation warning is emitted if *future* is not a Future-like object and *loop* is not specified and there is no running event loop." msgstr "" -#: ../../library/asyncio-future.rst:81 msgid "Future Object" msgstr "" -#: ../../library/asyncio-future.rst:85 -msgid "" -"A Future represents an eventual result of an asynchronous operation. Not " -"thread-safe." +msgid "A Future represents an eventual result of an asynchronous operation. Not thread-safe." msgstr "" -#: ../../library/asyncio-future.rst:88 -msgid "" -"Future is an :term:`awaitable` object. Coroutines can await on Future " -"objects until they either have a result or an exception set, or until they " -"are cancelled. A Future can be awaited multiple times and the result is same." +msgid "Future is an :term:`awaitable` object. Coroutines can await on Future objects until they either have a result or an exception set, or until they are cancelled. A Future can be awaited multiple times and the result is same." msgstr "" -#: ../../library/asyncio-future.rst:93 -msgid "" -"Typically Futures are used to enable low-level callback-based code (e.g. in " -"protocols implemented using asyncio :ref:`transports `) to interoperate with high-level async/await code." +msgid "Typically Futures are used to enable low-level callback-based code (e.g. in protocols implemented using asyncio :ref:`transports `) to interoperate with high-level async/await code." msgstr "" -#: ../../library/asyncio-future.rst:98 -msgid "" -"The rule of thumb is to never expose Future objects in user-facing APIs, and " -"the recommended way to create a Future object is to " -"call :meth:`loop.create_future`. This way alternative event loop " -"implementations can inject their own optimized implementations of a Future " -"object." +msgid "The rule of thumb is to never expose Future objects in user-facing APIs, and the recommended way to create a Future object is to call :meth:`loop.create_future`. This way alternative event loop implementations can inject their own optimized implementations of a Future object." msgstr "" -#: ../../library/asyncio-future.rst:104 msgid "Futures are :ref:`generic ` over the type of their results." msgstr "" -#: ../../library/asyncio-future.rst:106 msgid "Added support for the :mod:`contextvars` module." msgstr "" -#: ../../library/asyncio-future.rst:109 -msgid "" -"Deprecation warning is emitted if *loop* is not specified and there is no " -"running event loop." +msgid "Deprecation warning is emitted if *loop* is not specified and there is no running event loop." msgstr "" -#: ../../library/asyncio-future.rst:115 msgid "Return the result of the Future." msgstr "" -#: ../../library/asyncio-future.rst:117 -msgid "" -"If the Future is *done* and has a result set by the :meth:`set_result` " -"method, the result value is returned." +msgid "If the Future is *done* and has a result set by the :meth:`set_result` method, the result value is returned." msgstr "" -#: ../../library/asyncio-future.rst:120 -msgid "" -"If the Future is *done* and has an exception set by " -"the :meth:`set_exception` method, this method raises the exception." +msgid "If the Future is *done* and has an exception set by the :meth:`set_exception` method, this method raises the exception." msgstr "" -#: ../../library/asyncio-future.rst:123 ../../library/asyncio-future.rst:215 -msgid "" -"If the Future has been *cancelled*, this method raises " -"a :exc:`CancelledError` exception." +msgid "If the Future has been *cancelled*, this method raises a :exc:`CancelledError` exception." msgstr "" -#: ../../library/asyncio-future.rst:126 -msgid "" -"If the Future's result isn't yet available, this method raises " -"an :exc:`InvalidStateError` exception." +msgid "If the Future's result isn't yet available, this method raises an :exc:`InvalidStateError` exception." msgstr "" -#: ../../library/asyncio-future.rst:131 msgid "Mark the Future as *done* and set its result." msgstr "" -#: ../../library/asyncio-future.rst:133 ../../library/asyncio-future.rst:140 -msgid "" -"Raises an :exc:`InvalidStateError` error if the Future is already *done*." +msgid "Raises an :exc:`InvalidStateError` error if the Future is already *done*." msgstr "" -#: ../../library/asyncio-future.rst:138 msgid "Mark the Future as *done* and set an exception." msgstr "" -#: ../../library/asyncio-future.rst:145 msgid "Return ``True`` if the Future is *done*." msgstr "" -#: ../../library/asyncio-future.rst:147 -msgid "" -"A Future is *done* if it was *cancelled* or if it has a result or an " -"exception set with :meth:`set_result` or :meth:`set_exception` calls." +msgid "A Future is *done* if it was *cancelled* or if it has a result or an exception set with :meth:`set_result` or :meth:`set_exception` calls." msgstr "" -#: ../../library/asyncio-future.rst:153 msgid "Return ``True`` if the Future was *cancelled*." msgstr "" -#: ../../library/asyncio-future.rst:155 -msgid "" -"The method is usually used to check if a Future is not *cancelled* before " -"setting a result or an exception for it::" +msgid "The method is usually used to check if a Future is not *cancelled* before setting a result or an exception for it::" msgstr "" -#: ../../library/asyncio-future.rst:158 msgid "" "if not fut.cancelled():\n" " fut.set_result(42)" msgstr "" -#: ../../library/asyncio-future.rst:163 msgid "Add a callback to be run when the Future is *done*." msgstr "" -#: ../../library/asyncio-future.rst:165 msgid "The *callback* is called with the Future object as its only argument." msgstr "" -#: ../../library/asyncio-future.rst:168 -msgid "" -"If the Future is already *done* when this method is called, the callback is " -"scheduled with :meth:`loop.call_soon`." +msgid "If the Future is already *done* when this method is called, the callback is scheduled with :meth:`loop.call_soon`." msgstr "" -#: ../../library/asyncio-future.rst:171 -msgid "" -"An optional keyword-only *context* argument allows specifying a " -"custom :class:`contextvars.Context` for the *callback* to run in. The " -"current context is used when no *context* is provided." +msgid "An optional keyword-only *context* argument allows specifying a custom :class:`contextvars.Context` for the *callback* to run in. The current context is used when no *context* is provided." msgstr "" -#: ../../library/asyncio-future.rst:175 -msgid "" -":func:`functools.partial` can be used to pass parameters to the callback, " -"e.g.::" +msgid ":func:`functools.partial` can be used to pass parameters to the callback, e.g.::" msgstr "" -#: ../../library/asyncio-future.rst:178 msgid "" "# Call 'print(\"Future:\", fut)' when \"fut\" is done.\n" "fut.add_done_callback(\n" " functools.partial(print, \"Future:\"))" msgstr "" -#: ../../library/asyncio-future.rst:182 -msgid "" -"The *context* keyword-only parameter was added. See :pep:`567` for more " -"details." +msgid "The *context* keyword-only parameter was added. See :pep:`567` for more details." msgstr "" -#: ../../library/asyncio-future.rst:188 msgid "Remove *callback* from the callbacks list." msgstr "" -#: ../../library/asyncio-future.rst:190 -msgid "" -"Returns the number of callbacks removed, which is typically 1, unless a " -"callback was added more than once." +msgid "Returns the number of callbacks removed, which is typically 1, unless a callback was added more than once." msgstr "" -#: ../../library/asyncio-future.rst:195 msgid "Cancel the Future and schedule callbacks." msgstr "" -#: ../../library/asyncio-future.rst:197 -msgid "" -"If the Future is already *done* or *cancelled*, return ``False``. Otherwise, " -"change the Future's state to *cancelled*, schedule the callbacks, and return " -"``True``." +msgid "If the Future is already *done* or *cancelled*, return ``False``. Otherwise, change the Future's state to *cancelled*, schedule the callbacks, and return ``True``." msgstr "" -#: ../../library/asyncio-future.rst:201 -msgid "" -"The optional string argument *msg* is passed as the argument to " -"the :exc:`CancelledError` exception raised when a cancelled Future is " -"awaited." +msgid "The optional string argument *msg* is passed as the argument to the :exc:`CancelledError` exception raised when a cancelled Future is awaited." msgstr "" -#: ../../library/asyncio-future.rst:205 msgid "Added the *msg* parameter." msgstr "" -#: ../../library/asyncio-future.rst:210 msgid "Return the exception that was set on this Future." msgstr "" -#: ../../library/asyncio-future.rst:212 -msgid "" -"The exception (or ``None`` if no exception was set) is returned only if the " -"Future is *done*." +msgid "The exception (or ``None`` if no exception was set) is returned only if the Future is *done*." msgstr "" -#: ../../library/asyncio-future.rst:218 -msgid "" -"If the Future isn't *done* yet, this method raises " -"an :exc:`InvalidStateError` exception." +msgid "If the Future isn't *done* yet, this method raises an :exc:`InvalidStateError` exception." msgstr "" -#: ../../library/asyncio-future.rst:223 msgid "Return the event loop the Future object is bound to." msgstr "" -#: ../../library/asyncio-future.rst:230 -msgid "" -"This example creates a Future object, creates and schedules an asynchronous " -"Task to set result for the Future, and waits until the Future has a result::" +msgid "This example creates a Future object, creates and schedules an asynchronous Task to set result for the Future, and waits until the Future has a result::" msgstr "" -#: ../../library/asyncio-future.rst:234 msgid "" "async def set_after(fut, delay, value):\n" " # Sleep for *delay* seconds.\n" @@ -364,44 +232,23 @@ msgid "" "asyncio.run(main())" msgstr "" -#: ../../library/asyncio-future.rst:265 -msgid "" -"The Future object was designed to mimic :class:`concurrent.futures.Future`. " -"Key differences include:" +msgid "The Future object was designed to mimic :class:`concurrent.futures.Future`. Key differences include:" msgstr "" -#: ../../library/asyncio-future.rst:268 -msgid "" -"unlike asyncio Futures, :class:`concurrent.futures.Future` instances cannot " -"be awaited." +msgid "unlike asyncio Futures, :class:`concurrent.futures.Future` instances cannot be awaited." msgstr "" -#: ../../library/asyncio-future.rst:271 -msgid "" -":meth:`asyncio.Future.result` and :meth:`asyncio.Future.exception` do not " -"accept the *timeout* argument." +msgid ":meth:`asyncio.Future.result` and :meth:`asyncio.Future.exception` do not accept the *timeout* argument." msgstr "" -#: ../../library/asyncio-future.rst:274 -msgid "" -":meth:`asyncio.Future.result` and :meth:`asyncio.Future.exception` raise " -"an :exc:`InvalidStateError` exception when the Future is not *done*." +msgid ":meth:`asyncio.Future.result` and :meth:`asyncio.Future.exception` raise an :exc:`InvalidStateError` exception when the Future is not *done*." msgstr "" -#: ../../library/asyncio-future.rst:278 -msgid "" -"Callbacks registered with :meth:`asyncio.Future.add_done_callback` are not " -"called immediately. They are scheduled with :meth:`loop.call_soon` instead." +msgid "Callbacks registered with :meth:`asyncio.Future.add_done_callback` are not called immediately. They are scheduled with :meth:`loop.call_soon` instead." msgstr "" -#: ../../library/asyncio-future.rst:282 -msgid "" -"asyncio Future is not compatible with the :func:`concurrent.futures.wait` " -"and :func:`concurrent.futures.as_completed` functions." +msgid "asyncio Future is not compatible with the :func:`concurrent.futures.wait` and :func:`concurrent.futures.as_completed` functions." msgstr "" -#: ../../library/asyncio-future.rst:286 -msgid "" -":meth:`asyncio.Future.cancel` accepts an optional ``msg`` argument, " -"but :meth:`concurrent.futures.Future.cancel` does not." +msgid ":meth:`asyncio.Future.cancel` accepts an optional ``msg`` argument, but :meth:`concurrent.futures.Future.cancel` does not." msgstr "" diff --git a/library/asyncio-graph.po b/library/asyncio-graph.po index d869e4bd..34c054ae 100644 --- a/library/asyncio-graph.po +++ b/library/asyncio-graph.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2026-07-25 12:59+0330\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: none\n" @@ -19,82 +19,45 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../library/asyncio-graph.rst:8 msgid "Call graph introspection" msgstr "" -#: ../../library/asyncio-graph.rst:10 msgid "**Source code:** :source:`Lib/asyncio/graph.py`" msgstr "" -#: ../../library/asyncio-graph.rst:14 -msgid "" -"asyncio has powerful runtime call graph introspection utilities to trace the " -"entire call graph of a running *coroutine* or *task*, or a suspended " -"*future*. These utilities and the underlying machinery can be used from " -"within a Python program or by external profilers and debuggers." +msgid "asyncio has powerful runtime call graph introspection utilities to trace the entire call graph of a running *coroutine* or *task*, or a suspended *future*. These utilities and the underlying machinery can be used from within a Python program or by external profilers and debuggers." msgstr "" -#: ../../library/asyncio-graph.rst:22 msgid ":ref:`asyncio-introspection-tools`" msgstr "" -#: ../../library/asyncio-graph.rst:23 -msgid "" -"Command-line tools for inspecting tasks in another running Python process." +msgid "Command-line tools for inspecting tasks in another running Python process." msgstr "" -#: ../../library/asyncio-graph.rst:31 -msgid "" -"Print the async call graph for the current task or the " -"provided :class:`Task` or :class:`Future`." +msgid "Print the async call graph for the current task or the provided :class:`Task` or :class:`Future`." msgstr "" -#: ../../library/asyncio-graph.rst:34 -msgid "" -"This function prints entries starting from the top frame and going down " -"towards the invocation point." +msgid "This function prints entries starting from the top frame and going down towards the invocation point." msgstr "" -#: ../../library/asyncio-graph.rst:37 -msgid "" -"The function receives an optional *future* argument. If not passed, the " -"current running task will be used." +msgid "The function receives an optional *future* argument. If not passed, the current running task will be used." msgstr "" -#: ../../library/asyncio-graph.rst:40 ../../library/asyncio-graph.rst:99 -msgid "" -"If the function is called on *the current task*, the optional keyword-only " -"*depth* argument can be used to skip the specified number of frames from top " -"of the stack." +msgid "If the function is called on *the current task*, the optional keyword-only *depth* argument can be used to skip the specified number of frames from top of the stack." msgstr "" -#: ../../library/asyncio-graph.rst:44 -msgid "" -"If the optional keyword-only *limit* argument is provided, each call stack " -"in the resulting graph is truncated to include at most ``abs(limit)`` " -"entries. If *limit* is positive, the entries left are the closest to the " -"invocation point. If *limit* is negative, the topmost entries are left. If " -"*limit* is omitted or ``None``, all entries are present. If *limit* is " -"``0``, the call stack is not printed at all, only \"awaited by\" information " -"is printed." +msgid "If the optional keyword-only *limit* argument is provided, each call stack in the resulting graph is truncated to include at most ``abs(limit)`` entries. If *limit* is positive, the entries left are the closest to the invocation point. If *limit* is negative, the topmost entries are left. If *limit* is omitted or ``None``, all entries are present. If *limit* is ``0``, the call stack is not printed at all, only \"awaited by\" information is printed." msgstr "" -#: ../../library/asyncio-graph.rst:52 -msgid "" -"If *file* is omitted or ``None``, the function will print " -"to :data:`sys.stdout`." +msgid "If *file* is omitted or ``None``, the function will print to :data:`sys.stdout`." msgstr "" -#: ../../library/asyncio-graph.rst:55 msgid "**Example:**" msgstr "" -#: ../../library/asyncio-graph.rst:57 msgid "The following Python code:" msgstr "" -#: ../../library/asyncio-graph.rst:59 msgid "" "import asyncio\n" "\n" @@ -108,11 +71,9 @@ msgid "" "asyncio.run(main())" msgstr "" -#: ../../library/asyncio-graph.rst:72 msgid "will print::" msgstr "" -#: ../../library/asyncio-graph.rst:74 msgid "" "* Task(name='test', id=0x1039f0fe0)\n" "+ Call stack:\n" @@ -124,90 +85,50 @@ msgid "" " | File 't2.py', line 7, in async main()" msgstr "" -#: ../../library/asyncio-graph.rst:85 -msgid "" -"Like :func:`print_call_graph`, but returns a string. If *future* is ``None`` " -"and there's no current task, the function returns an empty string." +msgid "Like :func:`print_call_graph`, but returns a string. If *future* is ``None`` and there's no current task, the function returns an empty string." msgstr "" -#: ../../library/asyncio-graph.rst:92 -msgid "" -"Capture the async call graph for the current task or the " -"provided :class:`Task` or :class:`Future`." +msgid "Capture the async call graph for the current task or the provided :class:`Task` or :class:`Future`." msgstr "" -#: ../../library/asyncio-graph.rst:95 -msgid "" -"The function receives an optional *future* argument. If not passed, the " -"current running task will be used. If there's no current task, the function " -"returns ``None``." +msgid "The function receives an optional *future* argument. If not passed, the current running task will be used. If there's no current task, the function returns ``None``." msgstr "" -#: ../../library/asyncio-graph.rst:103 msgid "Returns a ``FutureCallGraph`` data class object:" msgstr "" -#: ../../library/asyncio-graph.rst:105 msgid "``FutureCallGraph(future, call_stack, awaited_by)``" msgstr "" -#: ../../library/asyncio-graph.rst:107 -msgid "" -"Where *future* is a reference to a :class:`Future` or a :class:`Task` (or " -"their subclasses.)" +msgid "Where *future* is a reference to a :class:`Future` or a :class:`Task` (or their subclasses.)" msgstr "" -#: ../../library/asyncio-graph.rst:110 msgid "``call_stack`` is a tuple of ``FrameCallGraphEntry`` objects." msgstr "" -#: ../../library/asyncio-graph.rst:112 msgid "``awaited_by`` is a tuple of ``FutureCallGraph`` objects." msgstr "" -#: ../../library/asyncio-graph.rst:114 msgid "``FrameCallGraphEntry(frame)``" msgstr "" -#: ../../library/asyncio-graph.rst:116 -msgid "" -"Where *frame* is a frame object of a regular Python function in the call " -"stack." +msgid "Where *frame* is a frame object of a regular Python function in the call stack." msgstr "" -#: ../../library/asyncio-graph.rst:121 msgid "Low level utility functions" msgstr "" -#: ../../library/asyncio-graph.rst:123 -msgid "" -"To introspect an async call graph asyncio requires cooperation from control " -"flow structures, such as :func:`shield` or :class:`TaskGroup`. Any time an " -"intermediate :class:`Future` object with low-level APIs " -"like :meth:`Future.add_done_callback() ` " -"is involved, the following two functions should be used to inform asyncio " -"about how exactly such intermediate future objects are connected with the " -"tasks they wrap or control." +msgid "To introspect an async call graph asyncio requires cooperation from control flow structures, such as :func:`shield` or :class:`TaskGroup`. Any time an intermediate :class:`Future` object with low-level APIs like :meth:`Future.add_done_callback() ` is involved, the following two functions should be used to inform asyncio about how exactly such intermediate future objects are connected with the tasks they wrap or control." msgstr "" -#: ../../library/asyncio-graph.rst:134 msgid "Record that *future* is awaited on by *waiter*." msgstr "" -#: ../../library/asyncio-graph.rst:136 ../../library/asyncio-graph.rst:149 -msgid "" -"Both *future* and *waiter* must be instances of :class:`Future` " -"or :class:`Task` or their subclasses, otherwise the call would have no " -"effect." +msgid "Both *future* and *waiter* must be instances of :class:`Future` or :class:`Task` or their subclasses, otherwise the call would have no effect." msgstr "" -#: ../../library/asyncio-graph.rst:140 -msgid "" -"A call to ``future_add_to_awaited_by()`` must be followed by an eventual " -"call to the :func:`future_discard_from_awaited_by` function with the same " -"arguments." +msgid "A call to ``future_add_to_awaited_by()`` must be followed by an eventual call to the :func:`future_discard_from_awaited_by` function with the same arguments." msgstr "" -#: ../../library/asyncio-graph.rst:147 msgid "Record that *future* is no longer awaited on by *waiter*." msgstr "" diff --git a/library/asyncio-llapi-index.po b/library/asyncio-llapi-index.po index ff10a1fb..adf3042f 100644 --- a/library/asyncio-llapi-index.po +++ b/library/asyncio-llapi-index.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:55+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,1004 +24,716 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/asyncio-llapi-index.rst:6 msgid "Low-level API Index" msgstr "" -#: ../../library/asyncio-llapi-index.rst:8 msgid "This page lists all low-level asyncio APIs." msgstr "" -#: ../../library/asyncio-llapi-index.rst:12 msgid "Obtaining the Event Loop" msgstr "" -#: ../../library/asyncio-llapi-index.rst:18 msgid ":func:`asyncio.get_running_loop`" msgstr "" -#: ../../library/asyncio-llapi-index.rst:19 msgid "The **preferred** function to get the running event loop." msgstr "" -#: ../../library/asyncio-llapi-index.rst:21 msgid ":func:`asyncio.get_event_loop`" msgstr "" -#: ../../library/asyncio-llapi-index.rst:22 msgid "Get an event loop instance (running or current via the current policy)." msgstr "" -#: ../../library/asyncio-llapi-index.rst:24 msgid ":func:`asyncio.set_event_loop`" msgstr "" -#: ../../library/asyncio-llapi-index.rst:25 msgid "Set the event loop as current via the current policy." msgstr "" -#: ../../library/asyncio-llapi-index.rst:27 msgid ":func:`asyncio.new_event_loop`" msgstr "" -#: ../../library/asyncio-llapi-index.rst:28 msgid "Create a new event loop." msgstr "" -#: ../../library/asyncio-llapi-index.rst:32 -#: ../../library/asyncio-llapi-index.rst:269 msgid "Examples" msgstr "" -#: ../../library/asyncio-llapi-index.rst:33 msgid ":ref:`Using asyncio.get_running_loop() `." msgstr "" -#: ../../library/asyncio-llapi-index.rst:37 msgid "Event Loop Methods" msgstr "" -#: ../../library/asyncio-llapi-index.rst:39 -msgid "" -"See also the main documentation section about the :ref:`asyncio-event-loop-" -"methods`." +msgid "See also the main documentation section about the :ref:`asyncio-event-loop-methods`." msgstr "" -#: ../../library/asyncio-llapi-index.rst:42 msgid "Lifecycle" msgstr "" -#: ../../library/asyncio-llapi-index.rst:47 msgid ":meth:`loop.run_until_complete`" msgstr "" -#: ../../library/asyncio-llapi-index.rst:48 msgid "Run a Future/Task/awaitable until complete." msgstr "" -#: ../../library/asyncio-llapi-index.rst:50 msgid ":meth:`loop.run_forever`" msgstr "" -#: ../../library/asyncio-llapi-index.rst:51 msgid "Run the event loop forever." msgstr "" -#: ../../library/asyncio-llapi-index.rst:53 msgid ":meth:`loop.stop`" msgstr "" -#: ../../library/asyncio-llapi-index.rst:54 msgid "Stop the event loop." msgstr "" -#: ../../library/asyncio-llapi-index.rst:56 msgid ":meth:`loop.close`" msgstr "" -#: ../../library/asyncio-llapi-index.rst:57 msgid "Close the event loop." msgstr "" -#: ../../library/asyncio-llapi-index.rst:59 msgid ":meth:`loop.is_running`" msgstr "" -#: ../../library/asyncio-llapi-index.rst:60 msgid "Return ``True`` if the event loop is running." msgstr "" -#: ../../library/asyncio-llapi-index.rst:62 msgid ":meth:`loop.is_closed`" msgstr "" -#: ../../library/asyncio-llapi-index.rst:63 msgid "Return ``True`` if the event loop is closed." msgstr "" -#: ../../library/asyncio-llapi-index.rst:65 msgid "``await`` :meth:`loop.shutdown_asyncgens`" msgstr "" -#: ../../library/asyncio-llapi-index.rst:66 msgid "Close asynchronous generators." msgstr "" -#: ../../library/asyncio-llapi-index.rst:69 msgid "Debugging" msgstr "" -#: ../../library/asyncio-llapi-index.rst:74 msgid ":meth:`loop.set_debug`" msgstr "" -#: ../../library/asyncio-llapi-index.rst:75 msgid "Enable or disable the debug mode." msgstr "" -#: ../../library/asyncio-llapi-index.rst:77 msgid ":meth:`loop.get_debug`" msgstr "" -#: ../../library/asyncio-llapi-index.rst:78 msgid "Get the current debug mode." msgstr "" -#: ../../library/asyncio-llapi-index.rst:81 msgid "Scheduling Callbacks" msgstr "" -#: ../../library/asyncio-llapi-index.rst:86 msgid ":meth:`loop.call_soon`" msgstr "" -#: ../../library/asyncio-llapi-index.rst:87 msgid "Invoke a callback soon." msgstr "" -#: ../../library/asyncio-llapi-index.rst:89 msgid ":meth:`loop.call_soon_threadsafe`" msgstr "" -#: ../../library/asyncio-llapi-index.rst:90 msgid "A thread-safe variant of :meth:`loop.call_soon`." msgstr "" -#: ../../library/asyncio-llapi-index.rst:92 msgid ":meth:`loop.call_later`" msgstr "" -#: ../../library/asyncio-llapi-index.rst:93 msgid "Invoke a callback *after* the given time." msgstr "" -#: ../../library/asyncio-llapi-index.rst:95 msgid ":meth:`loop.call_at`" msgstr "" -#: ../../library/asyncio-llapi-index.rst:96 msgid "Invoke a callback *at* the given time." msgstr "" -#: ../../library/asyncio-llapi-index.rst:99 msgid "Thread/Interpreter/Process Pool" msgstr "" -#: ../../library/asyncio-llapi-index.rst:104 msgid "``await`` :meth:`loop.run_in_executor`" msgstr "" -#: ../../library/asyncio-llapi-index.rst:105 -msgid "" -"Run a CPU-bound or other blocking function in a :mod:`concurrent.futures` " -"executor." +msgid "Run a CPU-bound or other blocking function in a :mod:`concurrent.futures` executor." msgstr "" -#: ../../library/asyncio-llapi-index.rst:108 msgid ":meth:`loop.set_default_executor`" msgstr "" -#: ../../library/asyncio-llapi-index.rst:109 msgid "Set the default executor for :meth:`loop.run_in_executor`." msgstr "" -#: ../../library/asyncio-llapi-index.rst:112 msgid "Tasks and Futures" msgstr "" -#: ../../library/asyncio-llapi-index.rst:117 msgid ":meth:`loop.create_future`" msgstr "" -#: ../../library/asyncio-llapi-index.rst:118 msgid "Create a :class:`Future` object." msgstr "" -#: ../../library/asyncio-llapi-index.rst:120 msgid ":meth:`loop.create_task`" msgstr "" -#: ../../library/asyncio-llapi-index.rst:121 msgid "Schedule coroutine as a :class:`Task`." msgstr "" -#: ../../library/asyncio-llapi-index.rst:123 msgid ":meth:`loop.set_task_factory`" msgstr "" -#: ../../library/asyncio-llapi-index.rst:124 -msgid "" -"Set a factory used by :meth:`loop.create_task` to create :class:`Tasks " -"`." +msgid "Set a factory used by :meth:`loop.create_task` to create :class:`Tasks `." msgstr "" -#: ../../library/asyncio-llapi-index.rst:127 msgid ":meth:`loop.get_task_factory`" msgstr "" -#: ../../library/asyncio-llapi-index.rst:128 -msgid "" -"Get the factory :meth:`loop.create_task` uses to create :class:`Tasks " -"`." +msgid "Get the factory :meth:`loop.create_task` uses to create :class:`Tasks `." msgstr "" -#: ../../library/asyncio-llapi-index.rst:132 msgid "DNS" msgstr "" -#: ../../library/asyncio-llapi-index.rst:137 msgid "``await`` :meth:`loop.getaddrinfo`" msgstr "" -#: ../../library/asyncio-llapi-index.rst:138 msgid "Asynchronous version of :meth:`socket.getaddrinfo`." msgstr "" -#: ../../library/asyncio-llapi-index.rst:140 msgid "``await`` :meth:`loop.getnameinfo`" msgstr "" -#: ../../library/asyncio-llapi-index.rst:141 msgid "Asynchronous version of :meth:`socket.getnameinfo`." msgstr "" -#: ../../library/asyncio-llapi-index.rst:144 msgid "Networking and IPC" msgstr "" -#: ../../library/asyncio-llapi-index.rst:149 msgid "``await`` :meth:`loop.create_connection`" msgstr "" -#: ../../library/asyncio-llapi-index.rst:150 msgid "Open a TCP connection." msgstr "" -#: ../../library/asyncio-llapi-index.rst:152 msgid "``await`` :meth:`loop.create_server`" msgstr "" -#: ../../library/asyncio-llapi-index.rst:153 msgid "Create a TCP server." msgstr "" -#: ../../library/asyncio-llapi-index.rst:155 msgid "``await`` :meth:`loop.create_unix_connection`" msgstr "" -#: ../../library/asyncio-llapi-index.rst:156 msgid "Open a Unix socket connection." msgstr "" -#: ../../library/asyncio-llapi-index.rst:158 msgid "``await`` :meth:`loop.create_unix_server`" msgstr "" -#: ../../library/asyncio-llapi-index.rst:159 msgid "Create a Unix socket server." msgstr "" -#: ../../library/asyncio-llapi-index.rst:161 msgid "``await`` :meth:`loop.connect_accepted_socket`" msgstr "" -#: ../../library/asyncio-llapi-index.rst:162 msgid "Wrap a :class:`~socket.socket` into a ``(transport, protocol)`` pair." msgstr "" -#: ../../library/asyncio-llapi-index.rst:165 msgid "``await`` :meth:`loop.create_datagram_endpoint`" msgstr "" -#: ../../library/asyncio-llapi-index.rst:166 msgid "Open a datagram (UDP) connection." msgstr "" -#: ../../library/asyncio-llapi-index.rst:168 msgid "``await`` :meth:`loop.sendfile`" msgstr "" -#: ../../library/asyncio-llapi-index.rst:169 msgid "Send a file over a transport." msgstr "" -#: ../../library/asyncio-llapi-index.rst:171 msgid "``await`` :meth:`loop.start_tls`" msgstr "" -#: ../../library/asyncio-llapi-index.rst:172 msgid "Upgrade an existing connection to TLS." msgstr "" -#: ../../library/asyncio-llapi-index.rst:174 msgid "``await`` :meth:`loop.connect_read_pipe`" msgstr "" -#: ../../library/asyncio-llapi-index.rst:175 msgid "Wrap a read end of a pipe into a ``(transport, protocol)`` pair." msgstr "" -#: ../../library/asyncio-llapi-index.rst:177 msgid "``await`` :meth:`loop.connect_write_pipe`" msgstr "" -#: ../../library/asyncio-llapi-index.rst:178 msgid "Wrap a write end of a pipe into a ``(transport, protocol)`` pair." msgstr "" -#: ../../library/asyncio-llapi-index.rst:181 msgid "Sockets" msgstr "" -#: ../../library/asyncio-llapi-index.rst:186 msgid "``await`` :meth:`loop.sock_recv`" msgstr "" -#: ../../library/asyncio-llapi-index.rst:187 msgid "Receive data from the :class:`~socket.socket`." msgstr "" -#: ../../library/asyncio-llapi-index.rst:189 msgid "``await`` :meth:`loop.sock_recv_into`" msgstr "" -#: ../../library/asyncio-llapi-index.rst:190 msgid "Receive data from the :class:`~socket.socket` into a buffer." msgstr "" -#: ../../library/asyncio-llapi-index.rst:192 msgid "``await`` :meth:`loop.sock_recvfrom`" msgstr "" -#: ../../library/asyncio-llapi-index.rst:193 msgid "Receive a datagram from the :class:`~socket.socket`." msgstr "" -#: ../../library/asyncio-llapi-index.rst:195 msgid "``await`` :meth:`loop.sock_recvfrom_into`" msgstr "" -#: ../../library/asyncio-llapi-index.rst:196 msgid "Receive a datagram from the :class:`~socket.socket` into a buffer." msgstr "" -#: ../../library/asyncio-llapi-index.rst:198 msgid "``await`` :meth:`loop.sock_sendall`" msgstr "" -#: ../../library/asyncio-llapi-index.rst:199 msgid "Send data to the :class:`~socket.socket`." msgstr "" -#: ../../library/asyncio-llapi-index.rst:201 msgid "``await`` :meth:`loop.sock_sendto`" msgstr "" -#: ../../library/asyncio-llapi-index.rst:202 msgid "Send a datagram via the :class:`~socket.socket` to the given address." msgstr "" -#: ../../library/asyncio-llapi-index.rst:204 msgid "``await`` :meth:`loop.sock_connect`" msgstr "" -#: ../../library/asyncio-llapi-index.rst:205 msgid "Connect the :class:`~socket.socket`." msgstr "" -#: ../../library/asyncio-llapi-index.rst:207 msgid "``await`` :meth:`loop.sock_accept`" msgstr "" -#: ../../library/asyncio-llapi-index.rst:208 msgid "Accept a :class:`~socket.socket` connection." msgstr "" -#: ../../library/asyncio-llapi-index.rst:210 msgid "``await`` :meth:`loop.sock_sendfile`" msgstr "" -#: ../../library/asyncio-llapi-index.rst:211 msgid "Send a file over the :class:`~socket.socket`." msgstr "" -#: ../../library/asyncio-llapi-index.rst:213 msgid ":meth:`loop.add_reader`" msgstr "" -#: ../../library/asyncio-llapi-index.rst:214 msgid "Start watching a file descriptor for read availability." msgstr "" -#: ../../library/asyncio-llapi-index.rst:216 msgid ":meth:`loop.remove_reader`" msgstr "" -#: ../../library/asyncio-llapi-index.rst:217 msgid "Stop watching a file descriptor for read availability." msgstr "" -#: ../../library/asyncio-llapi-index.rst:219 msgid ":meth:`loop.add_writer`" msgstr "" -#: ../../library/asyncio-llapi-index.rst:220 msgid "Start watching a file descriptor for write availability." msgstr "" -#: ../../library/asyncio-llapi-index.rst:222 msgid ":meth:`loop.remove_writer`" msgstr "" -#: ../../library/asyncio-llapi-index.rst:223 msgid "Stop watching a file descriptor for write availability." msgstr "" -#: ../../library/asyncio-llapi-index.rst:226 msgid "Unix Signals" msgstr "" -#: ../../library/asyncio-llapi-index.rst:231 msgid ":meth:`loop.add_signal_handler`" msgstr "" -#: ../../library/asyncio-llapi-index.rst:232 msgid "Add a handler for a :mod:`signal`." msgstr "" -#: ../../library/asyncio-llapi-index.rst:234 msgid ":meth:`loop.remove_signal_handler`" msgstr "" -#: ../../library/asyncio-llapi-index.rst:235 msgid "Remove a handler for a :mod:`signal`." msgstr "" -#: ../../library/asyncio-llapi-index.rst:238 msgid "Subprocesses" msgstr "" -#: ../../library/asyncio-llapi-index.rst:243 msgid ":meth:`loop.subprocess_exec`" msgstr "" -#: ../../library/asyncio-llapi-index.rst:244 msgid "Spawn a subprocess." msgstr "" -#: ../../library/asyncio-llapi-index.rst:246 msgid ":meth:`loop.subprocess_shell`" msgstr "" -#: ../../library/asyncio-llapi-index.rst:247 msgid "Spawn a subprocess from a shell command." msgstr "" -#: ../../library/asyncio-llapi-index.rst:250 msgid "Error Handling" msgstr "" -#: ../../library/asyncio-llapi-index.rst:255 msgid ":meth:`loop.call_exception_handler`" msgstr "" -#: ../../library/asyncio-llapi-index.rst:256 msgid "Call the exception handler." msgstr "" -#: ../../library/asyncio-llapi-index.rst:258 msgid ":meth:`loop.set_exception_handler`" msgstr "" -#: ../../library/asyncio-llapi-index.rst:259 msgid "Set a new exception handler." msgstr "" -#: ../../library/asyncio-llapi-index.rst:261 msgid ":meth:`loop.get_exception_handler`" msgstr "" -#: ../../library/asyncio-llapi-index.rst:262 msgid "Get the current exception handler." msgstr "" -#: ../../library/asyncio-llapi-index.rst:264 msgid ":meth:`loop.default_exception_handler`" msgstr "" -#: ../../library/asyncio-llapi-index.rst:265 msgid "The default exception handler implementation." msgstr "" -#: ../../library/asyncio-llapi-index.rst:270 -msgid "" -":ref:`Using asyncio.new_event_loop() and loop.run_forever() " -"`." +msgid ":ref:`Using asyncio.new_event_loop() and loop.run_forever() `." msgstr "" -#: ../../library/asyncio-llapi-index.rst:273 msgid ":ref:`Using loop.call_later() `." msgstr "" -#: ../../library/asyncio-llapi-index.rst:275 -msgid "" -"Using ``loop.create_connection()`` to implement :ref:`an echo-client " -"`." +msgid "Using ``loop.create_connection()`` to implement :ref:`an echo-client `." msgstr "" -#: ../../library/asyncio-llapi-index.rst:278 -msgid "" -"Using ``loop.create_connection()`` to :ref:`connect a socket " -"`." +msgid "Using ``loop.create_connection()`` to :ref:`connect a socket `." msgstr "" -#: ../../library/asyncio-llapi-index.rst:281 -msgid "" -":ref:`Using add_reader() to watch an FD for read events " -"`." +msgid ":ref:`Using add_reader() to watch an FD for read events `." msgstr "" -#: ../../library/asyncio-llapi-index.rst:284 msgid ":ref:`Using loop.add_signal_handler() `." msgstr "" -#: ../../library/asyncio-llapi-index.rst:286 msgid ":ref:`Using loop.subprocess_exec() `." msgstr "" -#: ../../library/asyncio-llapi-index.rst:290 msgid "Transports" msgstr "" -#: ../../library/asyncio-llapi-index.rst:292 msgid "All transports implement the following methods:" msgstr "" -#: ../../library/asyncio-llapi-index.rst:298 msgid ":meth:`transport.close() `" msgstr "" -#: ../../library/asyncio-llapi-index.rst:299 msgid "Close the transport." msgstr "" -#: ../../library/asyncio-llapi-index.rst:301 msgid ":meth:`transport.is_closing() `" msgstr "" -#: ../../library/asyncio-llapi-index.rst:302 msgid "Return ``True`` if the transport is closing or is closed." msgstr "" -#: ../../library/asyncio-llapi-index.rst:304 msgid ":meth:`transport.get_extra_info() `" msgstr "" -#: ../../library/asyncio-llapi-index.rst:305 msgid "Request for information about the transport." msgstr "" -#: ../../library/asyncio-llapi-index.rst:307 msgid ":meth:`transport.set_protocol() `" msgstr "" -#: ../../library/asyncio-llapi-index.rst:308 msgid "Set a new protocol." msgstr "" -#: ../../library/asyncio-llapi-index.rst:310 msgid ":meth:`transport.get_protocol() `" msgstr "" -#: ../../library/asyncio-llapi-index.rst:311 msgid "Return the current protocol." msgstr "" -#: ../../library/asyncio-llapi-index.rst:314 -msgid "" -"Transports that can receive data (TCP and Unix connections, pipes, etc). " -"Returned from methods " -"like :meth:`loop.create_connection`, :meth:`loop.create_unix_connection`, :meth:`loop.connect_read_pipe`, " -"etc:" +msgid "Transports that can receive data (TCP and Unix connections, pipes, etc). Returned from methods like :meth:`loop.create_connection`, :meth:`loop.create_unix_connection`, :meth:`loop.connect_read_pipe`, etc:" msgstr "" -#: ../../library/asyncio-llapi-index.rst:319 msgid "Read Transports" msgstr "" -#: ../../library/asyncio-llapi-index.rst:324 msgid ":meth:`transport.is_reading() `" msgstr "" -#: ../../library/asyncio-llapi-index.rst:325 msgid "Return ``True`` if the transport is receiving." msgstr "" -#: ../../library/asyncio-llapi-index.rst:327 msgid ":meth:`transport.pause_reading() `" msgstr "" -#: ../../library/asyncio-llapi-index.rst:328 msgid "Pause receiving." msgstr "" -#: ../../library/asyncio-llapi-index.rst:330 msgid ":meth:`transport.resume_reading() `" msgstr "" -#: ../../library/asyncio-llapi-index.rst:331 msgid "Resume receiving." msgstr "" -#: ../../library/asyncio-llapi-index.rst:334 -msgid "" -"Transports that can Send data (TCP and Unix connections, pipes, etc). " -"Returned from methods " -"like :meth:`loop.create_connection`, :meth:`loop.create_unix_connection`, :meth:`loop.connect_write_pipe`, " -"etc:" +msgid "Transports that can Send data (TCP and Unix connections, pipes, etc). Returned from methods like :meth:`loop.create_connection`, :meth:`loop.create_unix_connection`, :meth:`loop.connect_write_pipe`, etc:" msgstr "" -#: ../../library/asyncio-llapi-index.rst:339 msgid "Write Transports" msgstr "" -#: ../../library/asyncio-llapi-index.rst:344 msgid ":meth:`transport.write() `" msgstr "" -#: ../../library/asyncio-llapi-index.rst:345 msgid "Write data to the transport." msgstr "" -#: ../../library/asyncio-llapi-index.rst:347 msgid ":meth:`transport.writelines() `" msgstr "" -#: ../../library/asyncio-llapi-index.rst:348 msgid "Write buffers to the transport." msgstr "" -#: ../../library/asyncio-llapi-index.rst:350 msgid ":meth:`transport.can_write_eof() `" msgstr "" -#: ../../library/asyncio-llapi-index.rst:351 msgid "Return :const:`True` if the transport supports sending EOF." msgstr "" -#: ../../library/asyncio-llapi-index.rst:353 msgid ":meth:`transport.write_eof() `" msgstr "" -#: ../../library/asyncio-llapi-index.rst:354 msgid "Close and send EOF after flushing buffered data." msgstr "" -#: ../../library/asyncio-llapi-index.rst:356 msgid ":meth:`transport.abort() `" msgstr "" -#: ../../library/asyncio-llapi-index.rst:357 -#: ../../library/asyncio-llapi-index.rst:383 msgid "Close the transport immediately." msgstr "" -#: ../../library/asyncio-llapi-index.rst:359 -msgid "" -":meth:`transport.get_write_buffer_size() " -"`" +msgid ":meth:`transport.get_write_buffer_size() `" msgstr "" -#: ../../library/asyncio-llapi-index.rst:361 msgid "Return the current size of the output buffer." msgstr "" -#: ../../library/asyncio-llapi-index.rst:363 -msgid "" -":meth:`transport.get_write_buffer_limits() " -"`" +msgid ":meth:`transport.get_write_buffer_limits() `" msgstr "" -#: ../../library/asyncio-llapi-index.rst:365 msgid "Return high and low water marks for write flow control." msgstr "" -#: ../../library/asyncio-llapi-index.rst:367 -msgid "" -":meth:`transport.set_write_buffer_limits() " -"`" +msgid ":meth:`transport.set_write_buffer_limits() `" msgstr "" -#: ../../library/asyncio-llapi-index.rst:369 msgid "Set new high and low water marks for write flow control." msgstr "" -#: ../../library/asyncio-llapi-index.rst:372 msgid "Transports returned by :meth:`loop.create_datagram_endpoint`:" msgstr "" -#: ../../library/asyncio-llapi-index.rst:374 msgid "Datagram Transports" msgstr "" -#: ../../library/asyncio-llapi-index.rst:379 msgid ":meth:`transport.sendto() `" msgstr "" -#: ../../library/asyncio-llapi-index.rst:380 msgid "Send data to the remote peer." msgstr "" -#: ../../library/asyncio-llapi-index.rst:382 msgid ":meth:`transport.abort() `" msgstr "" -#: ../../library/asyncio-llapi-index.rst:386 -msgid "" -"Low-level transport abstraction over subprocesses. Returned " -"by :meth:`loop.subprocess_exec` and :meth:`loop.subprocess_shell`:" +msgid "Low-level transport abstraction over subprocesses. Returned by :meth:`loop.subprocess_exec` and :meth:`loop.subprocess_shell`:" msgstr "" -#: ../../library/asyncio-llapi-index.rst:390 msgid "Subprocess Transports" msgstr "" -#: ../../library/asyncio-llapi-index.rst:395 msgid ":meth:`transport.get_pid() `" msgstr "" -#: ../../library/asyncio-llapi-index.rst:396 msgid "Return the subprocess process id." msgstr "" -#: ../../library/asyncio-llapi-index.rst:398 -msgid "" -":meth:`transport.get_pipe_transport() " -"`" +msgid ":meth:`transport.get_pipe_transport() `" msgstr "" -#: ../../library/asyncio-llapi-index.rst:400 -msgid "" -"Return the transport for the requested communication pipe (*stdin*, " -"*stdout*, or *stderr*)." +msgid "Return the transport for the requested communication pipe (*stdin*, *stdout*, or *stderr*)." msgstr "" -#: ../../library/asyncio-llapi-index.rst:403 msgid ":meth:`transport.get_returncode() `" msgstr "" -#: ../../library/asyncio-llapi-index.rst:404 msgid "Return the subprocess return code." msgstr "" -#: ../../library/asyncio-llapi-index.rst:406 msgid ":meth:`transport.kill() `" msgstr "" -#: ../../library/asyncio-llapi-index.rst:407 msgid "Kill the subprocess." msgstr "" -#: ../../library/asyncio-llapi-index.rst:409 msgid ":meth:`transport.send_signal() `" msgstr "" -#: ../../library/asyncio-llapi-index.rst:410 msgid "Send a signal to the subprocess." msgstr "" -#: ../../library/asyncio-llapi-index.rst:412 msgid ":meth:`transport.terminate() `" msgstr "" -#: ../../library/asyncio-llapi-index.rst:413 msgid "Stop the subprocess." msgstr "" -#: ../../library/asyncio-llapi-index.rst:415 msgid ":meth:`transport.close() `" msgstr "" -#: ../../library/asyncio-llapi-index.rst:416 msgid "Kill the subprocess and close all pipes." msgstr "" -#: ../../library/asyncio-llapi-index.rst:420 msgid "Protocols" msgstr "" -#: ../../library/asyncio-llapi-index.rst:422 msgid "Protocol classes can implement the following **callback methods**:" msgstr "" -#: ../../library/asyncio-llapi-index.rst:428 msgid "``callback`` :meth:`connection_made() `" msgstr "" -#: ../../library/asyncio-llapi-index.rst:429 msgid "Called when a connection is made." msgstr "" -#: ../../library/asyncio-llapi-index.rst:431 msgid "``callback`` :meth:`connection_lost() `" msgstr "" -#: ../../library/asyncio-llapi-index.rst:432 msgid "Called when the connection is lost or closed." msgstr "" -#: ../../library/asyncio-llapi-index.rst:434 msgid "``callback`` :meth:`pause_writing() `" msgstr "" -#: ../../library/asyncio-llapi-index.rst:435 msgid "Called when the transport's buffer goes over the high water mark." msgstr "" -#: ../../library/asyncio-llapi-index.rst:437 msgid "``callback`` :meth:`resume_writing() `" msgstr "" -#: ../../library/asyncio-llapi-index.rst:438 msgid "Called when the transport's buffer drains below the low water mark." msgstr "" -#: ../../library/asyncio-llapi-index.rst:441 msgid "Streaming Protocols (TCP, Unix Sockets, Pipes)" msgstr "" -#: ../../library/asyncio-llapi-index.rst:446 msgid "``callback`` :meth:`data_received() `" msgstr "" -#: ../../library/asyncio-llapi-index.rst:447 msgid "Called when some data is received." msgstr "" -#: ../../library/asyncio-llapi-index.rst:449 msgid "``callback`` :meth:`eof_received() `" msgstr "" -#: ../../library/asyncio-llapi-index.rst:450 -#: ../../library/asyncio-llapi-index.rst:465 msgid "Called when an EOF is received." msgstr "" -#: ../../library/asyncio-llapi-index.rst:453 msgid "Buffered Streaming Protocols" msgstr "" -#: ../../library/asyncio-llapi-index.rst:458 msgid "``callback`` :meth:`get_buffer() `" msgstr "" -#: ../../library/asyncio-llapi-index.rst:459 msgid "Called to allocate a new receive buffer." msgstr "" -#: ../../library/asyncio-llapi-index.rst:461 msgid "``callback`` :meth:`buffer_updated() `" msgstr "" -#: ../../library/asyncio-llapi-index.rst:462 msgid "Called when the buffer was updated with the received data." msgstr "" -#: ../../library/asyncio-llapi-index.rst:464 msgid "``callback`` :meth:`eof_received() `" msgstr "" -#: ../../library/asyncio-llapi-index.rst:468 msgid "Datagram Protocols" msgstr "" -#: ../../library/asyncio-llapi-index.rst:473 -msgid "" -"``callback`` :meth:`datagram_received() `" +msgid "``callback`` :meth:`datagram_received() `" msgstr "" -#: ../../library/asyncio-llapi-index.rst:475 msgid "Called when a datagram is received." msgstr "" -#: ../../library/asyncio-llapi-index.rst:477 msgid "``callback`` :meth:`error_received() `" msgstr "" -#: ../../library/asyncio-llapi-index.rst:478 -msgid "" -"Called when a previous send or receive operation raises an :class:`OSError`." +msgid "Called when a previous send or receive operation raises an :class:`OSError`." msgstr "" -#: ../../library/asyncio-llapi-index.rst:482 msgid "Subprocess Protocols" msgstr "" -#: ../../library/asyncio-llapi-index.rst:487 msgid "``callback`` :meth:`~SubprocessProtocol.pipe_data_received`" msgstr "" -#: ../../library/asyncio-llapi-index.rst:488 -msgid "" -"Called when the child process writes data into its *stdout* or *stderr* pipe." +msgid "Called when the child process writes data into its *stdout* or *stderr* pipe." msgstr "" -#: ../../library/asyncio-llapi-index.rst:491 msgid "``callback`` :meth:`~SubprocessProtocol.pipe_connection_lost`" msgstr "" -#: ../../library/asyncio-llapi-index.rst:492 -msgid "" -"Called when one of the pipes communicating with the child process is closed." +msgid "Called when one of the pipes communicating with the child process is closed." msgstr "" -#: ../../library/asyncio-llapi-index.rst:495 -msgid "" -"``callback`` :meth:`process_exited() `" +msgid "``callback`` :meth:`process_exited() `" msgstr "" -#: ../../library/asyncio-llapi-index.rst:497 -msgid "" -"Called when the child process has exited. It can be called " -"before :meth:`~SubprocessProtocol.pipe_data_received` " -"and :meth:`~SubprocessProtocol.pipe_connection_lost` methods." +msgid "Called when the child process has exited. It can be called before :meth:`~SubprocessProtocol.pipe_data_received` and :meth:`~SubprocessProtocol.pipe_connection_lost` methods." msgstr "" -#: ../../library/asyncio-llapi-index.rst:503 msgid "Event Loop Policies" msgstr "" -#: ../../library/asyncio-llapi-index.rst:505 -msgid "" -"Policies is a low-level mechanism to alter the behavior of functions " -"like :func:`asyncio.get_event_loop`. See also the main :ref:`policies " -"section ` for more details." +msgid "Policies is a low-level mechanism to alter the behavior of functions like :func:`asyncio.get_event_loop`. See also the main :ref:`policies section ` for more details." msgstr "" -#: ../../library/asyncio-llapi-index.rst:511 msgid "Accessing Policies" msgstr "" -#: ../../library/asyncio-llapi-index.rst:516 msgid ":meth:`asyncio.get_event_loop_policy`" msgstr "" -#: ../../library/asyncio-llapi-index.rst:517 msgid "Return the current process-wide policy." msgstr "" -#: ../../library/asyncio-llapi-index.rst:519 msgid ":meth:`asyncio.set_event_loop_policy`" msgstr "" -#: ../../library/asyncio-llapi-index.rst:520 msgid "Set a new process-wide policy." msgstr "" -#: ../../library/asyncio-llapi-index.rst:522 msgid ":class:`AbstractEventLoopPolicy`" msgstr "" -#: ../../library/asyncio-llapi-index.rst:523 msgid "Base class for policy objects." msgstr "" diff --git a/library/asyncio-platforms.po b/library/asyncio-platforms.po index 5d3d8eec..0bae4bf5 100644 --- a/library/asyncio-platforms.po +++ b/library/asyncio-platforms.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:55+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,151 +23,84 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/asyncio-platforms.rst:9 msgid "Platform Support" msgstr "" -#: ../../library/asyncio-platforms.rst:11 -msgid "" -"The :mod:`asyncio` module is designed to be portable, but some platforms " -"have subtle differences and limitations due to the platforms' underlying " -"architecture and capabilities." +msgid "The :mod:`asyncio` module is designed to be portable, but some platforms have subtle differences and limitations due to the platforms' underlying architecture and capabilities." msgstr "" -#: ../../library/asyncio-platforms.rst:17 msgid "All Platforms" msgstr "" -#: ../../library/asyncio-platforms.rst:19 -msgid "" -":meth:`loop.add_reader` and :meth:`loop.add_writer` cannot be used to " -"monitor file I/O." +msgid ":meth:`loop.add_reader` and :meth:`loop.add_writer` cannot be used to monitor file I/O." msgstr "" -#: ../../library/asyncio-platforms.rst:22 -msgid "" -":meth:`loop.connect_read_pipe` and :meth:`loop.connect_write_pipe` cannot be " -"used with regular files. See :ref:`Supported pipe objects ` for the objects that are accepted on each platform." +msgid ":meth:`loop.connect_read_pipe` and :meth:`loop.connect_write_pipe` cannot be used with regular files. See :ref:`Supported pipe objects ` for the objects that are accepted on each platform." msgstr "" -#: ../../library/asyncio-platforms.rst:29 msgid "Windows" msgstr "" -#: ../../library/asyncio-platforms.rst:31 -msgid "" -"**Source code:** :source:`Lib/asyncio/proactor_events.py`, :source:`Lib/" -"asyncio/windows_events.py`, :source:`Lib/asyncio/windows_utils.py`" +msgid "**Source code:** :source:`Lib/asyncio/proactor_events.py`, :source:`Lib/asyncio/windows_events.py`, :source:`Lib/asyncio/windows_utils.py`" msgstr "" -#: ../../library/asyncio-platforms.rst:39 msgid "On Windows, :class:`ProactorEventLoop` is now the default event loop." msgstr "" -#: ../../library/asyncio-platforms.rst:41 msgid "All event loops on Windows do not support the following methods:" msgstr "" -#: ../../library/asyncio-platforms.rst:43 -msgid "" -":meth:`loop.create_unix_connection` and :meth:`loop.create_unix_server` are " -"not supported. The :const:`socket.AF_UNIX` socket family is specific to Unix." +msgid ":meth:`loop.create_unix_connection` and :meth:`loop.create_unix_server` are not supported. The :const:`socket.AF_UNIX` socket family is specific to Unix." msgstr "" -#: ../../library/asyncio-platforms.rst:47 -msgid "" -":meth:`loop.add_signal_handler` and :meth:`loop.remove_signal_handler` are " -"not supported." +msgid ":meth:`loop.add_signal_handler` and :meth:`loop.remove_signal_handler` are not supported." msgstr "" -#: ../../library/asyncio-platforms.rst:50 msgid ":class:`SelectorEventLoop` has the following limitations:" msgstr "" -#: ../../library/asyncio-platforms.rst:52 -msgid "" -":class:`~selectors.SelectSelector` is used to wait on socket events: it " -"supports sockets and is limited to 512 sockets." +msgid ":class:`~selectors.SelectSelector` is used to wait on socket events: it supports sockets and is limited to 512 sockets." msgstr "" -#: ../../library/asyncio-platforms.rst:55 -msgid "" -":meth:`loop.add_reader` and :meth:`loop.add_writer` only accept socket " -"handles (e.g. pipe file descriptors are not supported)." +msgid ":meth:`loop.add_reader` and :meth:`loop.add_writer` only accept socket handles (e.g. pipe file descriptors are not supported)." msgstr "" -#: ../../library/asyncio-platforms.rst:58 -msgid "" -"Pipes are not supported, so the :meth:`loop.connect_read_pipe` " -"and :meth:`loop.connect_write_pipe` methods are not implemented." +msgid "Pipes are not supported, so the :meth:`loop.connect_read_pipe` and :meth:`loop.connect_write_pipe` methods are not implemented." msgstr "" -#: ../../library/asyncio-platforms.rst:61 -msgid "" -":ref:`Subprocesses ` are not supported, " -"i.e. :meth:`loop.subprocess_exec` and :meth:`loop.subprocess_shell` methods " -"are not implemented." +msgid ":ref:`Subprocesses ` are not supported, i.e. :meth:`loop.subprocess_exec` and :meth:`loop.subprocess_shell` methods are not implemented." msgstr "" -#: ../../library/asyncio-platforms.rst:65 msgid ":class:`ProactorEventLoop` has the following limitations:" msgstr "" -#: ../../library/asyncio-platforms.rst:67 -msgid "" -"The :meth:`loop.add_reader` and :meth:`loop.add_writer` methods are not " -"supported." +msgid "The :meth:`loop.add_reader` and :meth:`loop.add_writer` methods are not supported." msgstr "" -#: ../../library/asyncio-platforms.rst:70 -msgid "" -":meth:`loop.connect_read_pipe` and :meth:`loop.connect_write_pipe` only " -"accept a handle opened for overlapped I/O. See :ref:`Supported pipe objects " -"` for which objects are supported." +msgid ":meth:`loop.connect_read_pipe` and :meth:`loop.connect_write_pipe` only accept a handle opened for overlapped I/O. See :ref:`Supported pipe objects ` for which objects are supported." msgstr "" -#: ../../library/asyncio-platforms.rst:74 -msgid "" -"The resolution of the monotonic clock on Windows is usually around 15.6 " -"milliseconds. The best resolution is 0.5 milliseconds. The resolution " -"depends on the hardware (availability of `HPET `_) and on the Windows configuration." +msgid "The resolution of the monotonic clock on Windows is usually around 15.6 milliseconds. The best resolution is 0.5 milliseconds. The resolution depends on the hardware (availability of `HPET `_) and on the Windows configuration." msgstr "" -#: ../../library/asyncio-platforms.rst:84 msgid "Subprocess Support on Windows" msgstr "" -#: ../../library/asyncio-platforms.rst:86 -msgid "" -"On Windows, the default event loop :class:`ProactorEventLoop` supports " -"subprocesses, whereas :class:`SelectorEventLoop` does not." +msgid "On Windows, the default event loop :class:`ProactorEventLoop` supports subprocesses, whereas :class:`SelectorEventLoop` does not." msgstr "" -#: ../../library/asyncio-platforms.rst:91 msgid "macOS" msgstr "" -#: ../../library/asyncio-platforms.rst:93 msgid "Modern macOS versions are fully supported." msgstr "" -#: ../../library/asyncio-platforms.rst:96 msgid "macOS <= 10.8" msgstr "" -#: ../../library/asyncio-platforms.rst:97 -msgid "" -"On macOS 10.6, 10.7 and 10.8, the default event loop " -"uses :class:`selectors.KqueueSelector`, which does not support character " -"devices on these versions. The :class:`SelectorEventLoop` can be manually " -"configured to use :class:`~selectors.SelectSelector` " -"or :class:`~selectors.PollSelector` to support character devices on these " -"older versions of macOS. Example::" +msgid "On macOS 10.6, 10.7 and 10.8, the default event loop uses :class:`selectors.KqueueSelector`, which does not support character devices on these versions. The :class:`SelectorEventLoop` can be manually configured to use :class:`~selectors.SelectSelector` or :class:`~selectors.PollSelector` to support character devices on these older versions of macOS. Example::" msgstr "" -#: ../../library/asyncio-platforms.rst:104 msgid "" "import asyncio\n" "import selectors\n" diff --git a/library/asyncio-policy.po b/library/asyncio-policy.po index 5a7b88cd..cf72e212 100644 --- a/library/asyncio-policy.po +++ b/library/asyncio-policy.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:55+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,194 +23,111 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/asyncio-policy.rst:8 msgid "Policies" msgstr "" -#: ../../library/asyncio-policy.rst:12 -msgid "" -"Policies are deprecated and will be removed in Python 3.16. Users are " -"encouraged to use the :func:`asyncio.run` function or " -"the :class:`asyncio.Runner` with *loop_factory* to use the desired loop " -"implementation." +msgid "Policies are deprecated and will be removed in Python 3.16. Users are encouraged to use the :func:`asyncio.run` function or the :class:`asyncio.Runner` with *loop_factory* to use the desired loop implementation." msgstr "" -#: ../../library/asyncio-policy.rst:18 -msgid "" -"An event loop policy is a global object used to get and set the " -"current :ref:`event loop `, as well as create new event " -"loops. The default policy can be :ref:`replaced ` " -"with :ref:`built-in alternatives ` to use different " -"event loop implementations, or substituted by a :ref:`custom policy ` that can override these behaviors." +msgid "An event loop policy is a global object used to get and set the current :ref:`event loop `, as well as create new event loops. The default policy can be :ref:`replaced ` with :ref:`built-in alternatives ` to use different event loop implementations, or substituted by a :ref:`custom policy ` that can override these behaviors." msgstr "" -#: ../../library/asyncio-policy.rst:27 -msgid "" -"The :ref:`policy object ` gets and sets a separate " -"event loop per *context*. This is per-thread by default, though custom " -"policies could define *context* differently." +msgid "The :ref:`policy object ` gets and sets a separate event loop per *context*. This is per-thread by default, though custom policies could define *context* differently." msgstr "" -#: ../../library/asyncio-policy.rst:32 -msgid "" -"Custom event loop policies can control the behavior " -"of :func:`get_event_loop`, :func:`set_event_loop`, " -"and :func:`new_event_loop`." +msgid "Custom event loop policies can control the behavior of :func:`get_event_loop`, :func:`set_event_loop`, and :func:`new_event_loop`." msgstr "" -#: ../../library/asyncio-policy.rst:35 -msgid "" -"Policy objects should implement the APIs defined in " -"the :class:`AbstractEventLoopPolicy` abstract base class." +msgid "Policy objects should implement the APIs defined in the :class:`AbstractEventLoopPolicy` abstract base class." msgstr "" -#: ../../library/asyncio-policy.rst:42 msgid "Getting and Setting the Policy" msgstr "" -#: ../../library/asyncio-policy.rst:44 -msgid "" -"The following functions can be used to get and set the policy for the " -"current process:" +msgid "The following functions can be used to get and set the policy for the current process:" msgstr "" -#: ../../library/asyncio-policy.rst:49 msgid "Return the current process-wide policy." msgstr "" -#: ../../library/asyncio-policy.rst:51 -msgid "" -"The :func:`get_event_loop_policy` function is deprecated and will be removed " -"in Python 3.16." +msgid "The :func:`get_event_loop_policy` function is deprecated and will be removed in Python 3.16." msgstr "" -#: ../../library/asyncio-policy.rst:57 msgid "Set the current process-wide policy to *policy*." msgstr "" -#: ../../library/asyncio-policy.rst:59 msgid "If *policy* is set to ``None``, the default policy is restored." msgstr "" -#: ../../library/asyncio-policy.rst:61 -msgid "" -"The :func:`set_event_loop_policy` function is deprecated and will be removed " -"in Python 3.16." +msgid "The :func:`set_event_loop_policy` function is deprecated and will be removed in Python 3.16." msgstr "" -#: ../../library/asyncio-policy.rst:69 msgid "Policy Objects" msgstr "" -#: ../../library/asyncio-policy.rst:71 msgid "The abstract event loop policy base class is defined as follows:" msgstr "" -#: ../../library/asyncio-policy.rst:75 msgid "An abstract base class for asyncio policies." msgstr "" -#: ../../library/asyncio-policy.rst:79 msgid "Get the event loop for the current context." msgstr "" -#: ../../library/asyncio-policy.rst:81 -msgid "" -"Return an event loop object implementing the :class:`AbstractEventLoop` " -"interface." +msgid "Return an event loop object implementing the :class:`AbstractEventLoop` interface." msgstr "" -#: ../../library/asyncio-policy.rst:84 ../../library/asyncio-policy.rst:96 msgid "This method should never return ``None``." msgstr "" -#: ../../library/asyncio-policy.rst:90 msgid "Set the event loop for the current context to *loop*." msgstr "" -#: ../../library/asyncio-policy.rst:94 msgid "Create and return a new event loop object." msgstr "" -#: ../../library/asyncio-policy.rst:98 -msgid "" -"The :class:`AbstractEventLoopPolicy` class is deprecated and will be removed " -"in Python 3.16." +msgid "The :class:`AbstractEventLoopPolicy` class is deprecated and will be removed in Python 3.16." msgstr "" -#: ../../library/asyncio-policy.rst:105 msgid "asyncio ships with the following built-in policies:" msgstr "" -#: ../../library/asyncio-policy.rst:110 -msgid "" -"The default asyncio policy. Uses :class:`SelectorEventLoop` on Unix " -"and :class:`ProactorEventLoop` on Windows." +msgid "The default asyncio policy. Uses :class:`SelectorEventLoop` on Unix and :class:`ProactorEventLoop` on Windows." msgstr "" -#: ../../library/asyncio-policy.rst:113 -msgid "" -"There is no need to install the default policy manually. asyncio is " -"configured to use the default policy automatically." +msgid "There is no need to install the default policy manually. asyncio is configured to use the default policy automatically." msgstr "" -#: ../../library/asyncio-policy.rst:118 msgid "On Windows, :class:`ProactorEventLoop` is now used by default." msgstr "" -#: ../../library/asyncio-policy.rst:120 -msgid "" -"The :meth:`get_event_loop` method of the default asyncio policy now raises " -"a :exc:`RuntimeError` if there is no set event loop." +msgid "The :meth:`get_event_loop` method of the default asyncio policy now raises a :exc:`RuntimeError` if there is no set event loop." msgstr "" -#: ../../library/asyncio-policy.rst:124 -msgid "" -"The :class:`DefaultEventLoopPolicy` class is deprecated and will be removed " -"in Python 3.16." +msgid "The :class:`DefaultEventLoopPolicy` class is deprecated and will be removed in Python 3.16." msgstr "" -#: ../../library/asyncio-policy.rst:131 -msgid "" -"An alternative event loop policy that uses the :class:`SelectorEventLoop` " -"event loop implementation." +msgid "An alternative event loop policy that uses the :class:`SelectorEventLoop` event loop implementation." msgstr "" -#: ../../library/asyncio-policy.rst:134 ../../library/asyncio-policy.rst:146 msgid "Availability" msgstr "" -#: ../../library/asyncio-policy.rst:136 -msgid "" -"The :class:`WindowsSelectorEventLoopPolicy` class is deprecated and will be " -"removed in Python 3.16." +msgid "The :class:`WindowsSelectorEventLoopPolicy` class is deprecated and will be removed in Python 3.16." msgstr "" -#: ../../library/asyncio-policy.rst:143 -msgid "" -"An alternative event loop policy that uses the :class:`ProactorEventLoop` " -"event loop implementation." +msgid "An alternative event loop policy that uses the :class:`ProactorEventLoop` event loop implementation." msgstr "" -#: ../../library/asyncio-policy.rst:148 -msgid "" -"The :class:`WindowsProactorEventLoopPolicy` class is deprecated and will be " -"removed in Python 3.16." +msgid "The :class:`WindowsProactorEventLoopPolicy` class is deprecated and will be removed in Python 3.16." msgstr "" -#: ../../library/asyncio-policy.rst:156 msgid "Custom Policies" msgstr "" -#: ../../library/asyncio-policy.rst:158 -msgid "" -"To implement a new event loop policy, it is recommended to " -"subclass :class:`DefaultEventLoopPolicy` and override the methods for which " -"custom behavior is wanted, e.g.::" +msgid "To implement a new event loop policy, it is recommended to subclass :class:`DefaultEventLoopPolicy` and override the methods for which custom behavior is wanted, e.g.::" msgstr "" -#: ../../library/asyncio-policy.rst:162 msgid "" "class MyEventLoopPolicy(asyncio.DefaultEventLoopPolicy):\n" "\n" diff --git a/library/asyncio-protocol.po b/library/asyncio-protocol.po index e55ba788..4d7b9fb6 100644 --- a/library/asyncio-protocol.po +++ b/library/asyncio-protocol.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:55+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,787 +24,429 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/asyncio-protocol.rst:9 msgid "Transports and Protocols" msgstr "" -#: ../../library/asyncio-protocol.rst:12 msgid "Preface" msgstr "" -#: ../../library/asyncio-protocol.rst:13 -msgid "" -"Transports and Protocols are used by the **low-level** event loop APIs such " -"as :meth:`loop.create_connection`. They use callback-based programming " -"style and enable high-performance implementations of network or IPC " -"protocols (e.g. HTTP)." +msgid "Transports and Protocols are used by the **low-level** event loop APIs such as :meth:`loop.create_connection`. They use callback-based programming style and enable high-performance implementations of network or IPC protocols (e.g. HTTP)." msgstr "" -#: ../../library/asyncio-protocol.rst:18 -msgid "" -"Essentially, transports and protocols should only be used in libraries and " -"frameworks and never in high-level asyncio applications." +msgid "Essentially, transports and protocols should only be used in libraries and frameworks and never in high-level asyncio applications." msgstr "" -#: ../../library/asyncio-protocol.rst:22 msgid "This documentation page covers both `Transports`_ and `Protocols`_." msgstr "" -#: ../../library/asyncio-protocol.rst:25 msgid "Introduction" msgstr "" -#: ../../library/asyncio-protocol.rst:26 -msgid "" -"At the highest level, the transport is concerned with *how* bytes are " -"transmitted, while the protocol determines *which* bytes to transmit (and to " -"some extent when)." +msgid "At the highest level, the transport is concerned with *how* bytes are transmitted, while the protocol determines *which* bytes to transmit (and to some extent when)." msgstr "" -#: ../../library/asyncio-protocol.rst:30 -msgid "" -"A different way of saying the same thing: a transport is an abstraction for " -"a socket (or similar I/O endpoint) while a protocol is an abstraction for an " -"application, from the transport's point of view." +msgid "A different way of saying the same thing: a transport is an abstraction for a socket (or similar I/O endpoint) while a protocol is an abstraction for an application, from the transport's point of view." msgstr "" -#: ../../library/asyncio-protocol.rst:35 -msgid "" -"Yet another view is the transport and protocol interfaces together define an " -"abstract interface for using network I/O and interprocess I/O." +msgid "Yet another view is the transport and protocol interfaces together define an abstract interface for using network I/O and interprocess I/O." msgstr "" -#: ../../library/asyncio-protocol.rst:39 -msgid "" -"There is always a 1:1 relationship between transport and protocol objects: " -"the protocol calls transport methods to send data, while the transport calls " -"protocol methods to pass it data that has been received." +msgid "There is always a 1:1 relationship between transport and protocol objects: the protocol calls transport methods to send data, while the transport calls protocol methods to pass it data that has been received." msgstr "" -#: ../../library/asyncio-protocol.rst:44 -msgid "" -"Most of connection oriented event loop methods (such " -"as :meth:`loop.create_connection`) usually accept a *protocol_factory* " -"argument used to create a *Protocol* object for an accepted connection, " -"represented by a *Transport* object. Such methods usually return a tuple of " -"``(transport, protocol)``." +msgid "Most of connection oriented event loop methods (such as :meth:`loop.create_connection`) usually accept a *protocol_factory* argument used to create a *Protocol* object for an accepted connection, represented by a *Transport* object. Such methods usually return a tuple of ``(transport, protocol)``." msgstr "" -#: ../../library/asyncio-protocol.rst:51 msgid "Contents" msgstr "" -#: ../../library/asyncio-protocol.rst:52 msgid "This documentation page contains the following sections:" msgstr "" -#: ../../library/asyncio-protocol.rst:54 -msgid "" -"The `Transports`_ section documents " -"asyncio :class:`BaseTransport`, :class:`ReadTransport`, :class:`WriteTransport`, :class:`Transport`, :class:`DatagramTransport`, " -"and :class:`SubprocessTransport` classes." +msgid "The `Transports`_ section documents asyncio :class:`BaseTransport`, :class:`ReadTransport`, :class:`WriteTransport`, :class:`Transport`, :class:`DatagramTransport`, and :class:`SubprocessTransport` classes." msgstr "" -#: ../../library/asyncio-protocol.rst:59 -msgid "" -"The `Protocols`_ section documents " -"asyncio :class:`BaseProtocol`, :class:`Protocol`, :class:`BufferedProtocol`, :class:`DatagramProtocol`, " -"and :class:`SubprocessProtocol` classes." +msgid "The `Protocols`_ section documents asyncio :class:`BaseProtocol`, :class:`Protocol`, :class:`BufferedProtocol`, :class:`DatagramProtocol`, and :class:`SubprocessProtocol` classes." msgstr "" -#: ../../library/asyncio-protocol.rst:63 -msgid "" -"The `Examples`_ section showcases how to work with transports, protocols, " -"and low-level event loop APIs." +msgid "The `Examples`_ section showcases how to work with transports, protocols, and low-level event loop APIs." msgstr "" -#: ../../library/asyncio-protocol.rst:70 msgid "Transports" msgstr "" -#: ../../library/asyncio-protocol.rst:72 msgid "**Source code:** :source:`Lib/asyncio/transports.py`" msgstr "" -#: ../../library/asyncio-protocol.rst:76 -msgid "" -"Transports are classes provided by :mod:`asyncio` in order to abstract " -"various kinds of communication channels." +msgid "Transports are classes provided by :mod:`asyncio` in order to abstract various kinds of communication channels." msgstr "" -#: ../../library/asyncio-protocol.rst:79 -msgid "" -"Transport objects are always instantiated by an :ref:`asyncio event loop " -"`." +msgid "Transport objects are always instantiated by an :ref:`asyncio event loop `." msgstr "" -#: ../../library/asyncio-protocol.rst:82 -msgid "" -"asyncio implements transports for TCP, UDP, SSL, and subprocess pipes. The " -"methods available on a transport depend on the transport's kind." +msgid "asyncio implements transports for TCP, UDP, SSL, and subprocess pipes. The methods available on a transport depend on the transport's kind." msgstr "" -#: ../../library/asyncio-protocol.rst:85 -msgid "" -"The transport classes are :ref:`not thread safe `." +msgid "The transport classes are :ref:`not thread safe `." msgstr "" -#: ../../library/asyncio-protocol.rst:89 msgid "Transports Hierarchy" msgstr "" -#: ../../library/asyncio-protocol.rst:93 -msgid "" -"Base class for all transports. Contains methods that all asyncio transports " -"share." +msgid "Base class for all transports. Contains methods that all asyncio transports share." msgstr "" -#: ../../library/asyncio-protocol.rst:98 msgid "A base transport for write-only connections." msgstr "" -#: ../../library/asyncio-protocol.rst:100 -msgid "" -"Instances of the *WriteTransport* class are returned from " -"the :meth:`loop.connect_write_pipe` event loop method and are also used by " -"subprocess-related methods like :meth:`loop.subprocess_exec`." +msgid "Instances of the *WriteTransport* class are returned from the :meth:`loop.connect_write_pipe` event loop method and are also used by subprocess-related methods like :meth:`loop.subprocess_exec`." msgstr "" -#: ../../library/asyncio-protocol.rst:107 msgid "A base transport for read-only connections." msgstr "" -#: ../../library/asyncio-protocol.rst:109 -msgid "" -"Instances of the *ReadTransport* class are returned from " -"the :meth:`loop.connect_read_pipe` event loop method and are also used by " -"subprocess-related methods like :meth:`loop.subprocess_exec`." +msgid "Instances of the *ReadTransport* class are returned from the :meth:`loop.connect_read_pipe` event loop method and are also used by subprocess-related methods like :meth:`loop.subprocess_exec`." msgstr "" -#: ../../library/asyncio-protocol.rst:116 -msgid "" -"Interface representing a bidirectional transport, such as a TCP connection." +msgid "Interface representing a bidirectional transport, such as a TCP connection." msgstr "" -#: ../../library/asyncio-protocol.rst:119 -msgid "" -"The user does not instantiate a transport directly; they call a utility " -"function, passing it a protocol factory and other information necessary to " -"create the transport and protocol." +msgid "The user does not instantiate a transport directly; they call a utility function, passing it a protocol factory and other information necessary to create the transport and protocol." msgstr "" -#: ../../library/asyncio-protocol.rst:123 -msgid "" -"Instances of the *Transport* class are returned from or used by event loop " -"methods " -"like :meth:`loop.create_connection`, :meth:`loop.create_unix_connection`, :meth:`loop.create_server`, :meth:`loop.sendfile`, " -"etc." +msgid "Instances of the *Transport* class are returned from or used by event loop methods like :meth:`loop.create_connection`, :meth:`loop.create_unix_connection`, :meth:`loop.create_server`, :meth:`loop.sendfile`, etc." msgstr "" -#: ../../library/asyncio-protocol.rst:131 msgid "A transport for datagram (UDP) connections." msgstr "" -#: ../../library/asyncio-protocol.rst:133 -msgid "" -"Instances of the *DatagramTransport* class are returned from " -"the :meth:`loop.create_datagram_endpoint` event loop method." +msgid "Instances of the *DatagramTransport* class are returned from the :meth:`loop.create_datagram_endpoint` event loop method." msgstr "" -#: ../../library/asyncio-protocol.rst:139 -msgid "" -"An abstraction to represent a connection between a parent and its child OS " -"process." +msgid "An abstraction to represent a connection between a parent and its child OS process." msgstr "" -#: ../../library/asyncio-protocol.rst:142 -msgid "" -"Instances of the *SubprocessTransport* class are returned from event loop " -"methods :meth:`loop.subprocess_shell` and :meth:`loop.subprocess_exec`." +msgid "Instances of the *SubprocessTransport* class are returned from event loop methods :meth:`loop.subprocess_shell` and :meth:`loop.subprocess_exec`." msgstr "" -#: ../../library/asyncio-protocol.rst:148 msgid "Base Transport" msgstr "" -#: ../../library/asyncio-protocol.rst:152 msgid "Close the transport." msgstr "" -#: ../../library/asyncio-protocol.rst:154 -msgid "" -"If the transport has a buffer for outgoing data, buffered data will be " -"flushed asynchronously. No more data will be received. After all buffered " -"data is flushed, the protocol's :meth:`protocol.connection_lost() " -"` method will be called with :const:`None` as " -"its argument. The transport should not be used once it is closed." +msgid "If the transport has a buffer for outgoing data, buffered data will be flushed asynchronously. No more data will be received. After all buffered data is flushed, the protocol's :meth:`protocol.connection_lost() ` method will be called with :const:`None` as its argument. The transport should not be used once it is closed." msgstr "" -#: ../../library/asyncio-protocol.rst:164 msgid "Return ``True`` if the transport is closing or is closed." msgstr "" -#: ../../library/asyncio-protocol.rst:168 msgid "Return information about the transport or underlying resources it uses." msgstr "" -#: ../../library/asyncio-protocol.rst:171 -msgid "" -"*name* is a string representing the piece of transport-specific information " -"to get." +msgid "*name* is a string representing the piece of transport-specific information to get." msgstr "" -#: ../../library/asyncio-protocol.rst:174 -msgid "" -"*default* is the value to return if the information is not available, or if " -"the transport does not support querying it with the given third-party event " -"loop implementation or on the current platform." +msgid "*default* is the value to return if the information is not available, or if the transport does not support querying it with the given third-party event loop implementation or on the current platform." msgstr "" -#: ../../library/asyncio-protocol.rst:179 -msgid "" -"For example, the following code attempts to get the underlying socket object " -"of the transport::" +msgid "For example, the following code attempts to get the underlying socket object of the transport::" msgstr "" -#: ../../library/asyncio-protocol.rst:182 msgid "" "sock = transport.get_extra_info('socket')\n" "if sock is not None:\n" " print(sock.getsockopt(...))" msgstr "" -#: ../../library/asyncio-protocol.rst:186 msgid "Categories of information that can be queried on some transports:" msgstr "" -#: ../../library/asyncio-protocol.rst:188 msgid "socket:" msgstr "" -#: ../../library/asyncio-protocol.rst:190 -msgid "" -"``'peername'``: the remote address to which the socket is connected, result " -"of :meth:`socket.socket.getpeername` (``None`` on error)" +msgid "``'peername'``: the remote address to which the socket is connected, result of :meth:`socket.socket.getpeername` (``None`` on error)" msgstr "" -#: ../../library/asyncio-protocol.rst:194 msgid "``'socket'``: :class:`socket.socket` instance" msgstr "" -#: ../../library/asyncio-protocol.rst:196 -msgid "" -"``'sockname'``: the socket's own address, result " -"of :meth:`socket.socket.getsockname`" +msgid "``'sockname'``: the socket's own address, result of :meth:`socket.socket.getsockname`" msgstr "" -#: ../../library/asyncio-protocol.rst:199 msgid "SSL socket:" msgstr "" -#: ../../library/asyncio-protocol.rst:201 -msgid "" -"``'compression'``: the compression algorithm being used as a string, or " -"``None`` if the connection isn't compressed; result " -"of :meth:`ssl.SSLSocket.compression`" +msgid "``'compression'``: the compression algorithm being used as a string, or ``None`` if the connection isn't compressed; result of :meth:`ssl.SSLSocket.compression`" msgstr "" -#: ../../library/asyncio-protocol.rst:205 -msgid "" -"``'cipher'``: a three-value tuple containing the name of the cipher being " -"used, the version of the SSL protocol that defines its use, and the number " -"of secret bits being used; result of :meth:`ssl.SSLSocket.cipher`" +msgid "``'cipher'``: a three-value tuple containing the name of the cipher being used, the version of the SSL protocol that defines its use, and the number of secret bits being used; result of :meth:`ssl.SSLSocket.cipher`" msgstr "" -#: ../../library/asyncio-protocol.rst:210 -msgid "" -"``'peercert'``: peer certificate; result of :meth:`ssl.SSLSocket.getpeercert`" +msgid "``'peercert'``: peer certificate; result of :meth:`ssl.SSLSocket.getpeercert`" msgstr "" -#: ../../library/asyncio-protocol.rst:213 msgid "``'sslcontext'``: :class:`ssl.SSLContext` instance" msgstr "" -#: ../../library/asyncio-protocol.rst:215 -msgid "" -"``'ssl_object'``: :class:`ssl.SSLObject` or :class:`ssl.SSLSocket` instance" +msgid "``'ssl_object'``: :class:`ssl.SSLObject` or :class:`ssl.SSLSocket` instance" msgstr "" -#: ../../library/asyncio-protocol.rst:218 msgid "pipe:" msgstr "" -#: ../../library/asyncio-protocol.rst:220 msgid "``'pipe'``: pipe object" msgstr "" -#: ../../library/asyncio-protocol.rst:222 msgid "subprocess:" msgstr "" -#: ../../library/asyncio-protocol.rst:224 msgid "``'subprocess'``: :class:`subprocess.Popen` instance" msgstr "" -#: ../../library/asyncio-protocol.rst:228 msgid "Set a new protocol." msgstr "" -#: ../../library/asyncio-protocol.rst:230 -msgid "" -"Switching protocol should only be done when both protocols are documented to " -"support the switch." +msgid "Switching protocol should only be done when both protocols are documented to support the switch." msgstr "" -#: ../../library/asyncio-protocol.rst:235 msgid "Return the current protocol." msgstr "" -#: ../../library/asyncio-protocol.rst:239 msgid "Read-only Transports" msgstr "" -#: ../../library/asyncio-protocol.rst:243 msgid "Return ``True`` if the transport is receiving new data." msgstr "" -#: ../../library/asyncio-protocol.rst:249 -msgid "" -"Pause the receiving end of the transport. No data will be passed to the " -"protocol's :meth:`protocol.data_received() ` method " -"until :meth:`resume_reading` is called." +msgid "Pause the receiving end of the transport. No data will be passed to the protocol's :meth:`protocol.data_received() ` method until :meth:`resume_reading` is called." msgstr "" -#: ../../library/asyncio-protocol.rst:253 -msgid "" -"The method is idempotent, i.e. it can be called when the transport is " -"already paused or closed." +msgid "The method is idempotent, i.e. it can be called when the transport is already paused or closed." msgstr "" -#: ../../library/asyncio-protocol.rst:259 -msgid "" -"Resume the receiving end. The protocol's :meth:`protocol.data_received() " -"` method will be called once again if some data is " -"available for reading." +msgid "Resume the receiving end. The protocol's :meth:`protocol.data_received() ` method will be called once again if some data is available for reading." msgstr "" -#: ../../library/asyncio-protocol.rst:263 -msgid "" -"The method is idempotent, i.e. it can be called when the transport is " -"already reading." +msgid "The method is idempotent, i.e. it can be called when the transport is already reading." msgstr "" -#: ../../library/asyncio-protocol.rst:269 msgid "Write-only Transports" msgstr "" -#: ../../library/asyncio-protocol.rst:273 -msgid "" -"Close the transport immediately, without waiting for pending operations to " -"complete. Buffered data will be lost. No more data will be received. The " -"protocol's :meth:`protocol.connection_lost() ` " -"method will eventually be called with :const:`None` as its argument." +msgid "Close the transport immediately, without waiting for pending operations to complete. Buffered data will be lost. No more data will be received. The protocol's :meth:`protocol.connection_lost() ` method will eventually be called with :const:`None` as its argument." msgstr "" -#: ../../library/asyncio-protocol.rst:281 -msgid "" -"Return :const:`True` if the transport " -"supports :meth:`~WriteTransport.write_eof`, :const:`False` if not." +msgid "Return :const:`True` if the transport supports :meth:`~WriteTransport.write_eof`, :const:`False` if not." msgstr "" -#: ../../library/asyncio-protocol.rst:286 msgid "Return the current size of the output buffer used by the transport." msgstr "" -#: ../../library/asyncio-protocol.rst:290 -msgid "" -"Get the *high* and *low* watermarks for write flow control. Return a tuple " -"``(low, high)`` where *low* and *high* are positive number of bytes." +msgid "Get the *high* and *low* watermarks for write flow control. Return a tuple ``(low, high)`` where *low* and *high* are positive number of bytes." msgstr "" -#: ../../library/asyncio-protocol.rst:294 msgid "Use :meth:`set_write_buffer_limits` to set the limits." msgstr "" -#: ../../library/asyncio-protocol.rst:300 msgid "Set the *high* and *low* watermarks for write flow control." msgstr "" -#: ../../library/asyncio-protocol.rst:302 -msgid "" -"These two values (measured in number of bytes) control when the " -"protocol's :meth:`protocol.pause_writing() ` " -"and :meth:`protocol.resume_writing() ` methods " -"are called. If specified, the low watermark must be less than or equal to " -"the high watermark. Neither *high* nor *low* can be negative." +msgid "These two values (measured in number of bytes) control when the protocol's :meth:`protocol.pause_writing() ` and :meth:`protocol.resume_writing() ` methods are called. If specified, the low watermark must be less than or equal to the high watermark. Neither *high* nor *low* can be negative." msgstr "" -#: ../../library/asyncio-protocol.rst:310 -msgid "" -":meth:`~BaseProtocol.pause_writing` is called when the buffer size becomes " -"greater than or equal to the *high* value. If writing has been " -"paused, :meth:`~BaseProtocol.resume_writing` is called when the buffer size " -"becomes less than or equal to the *low* value." +msgid ":meth:`~BaseProtocol.pause_writing` is called when the buffer size becomes greater than or equal to the *high* value. If writing has been paused, :meth:`~BaseProtocol.resume_writing` is called when the buffer size becomes less than or equal to the *low* value." msgstr "" -#: ../../library/asyncio-protocol.rst:315 -msgid "" -"The defaults are implementation-specific. If only the high watermark is " -"given, the low watermark defaults to an implementation-specific value less " -"than or equal to the high watermark. Setting *high* to zero forces *low* to " -"zero as well, and causes :meth:`~BaseProtocol.pause_writing` to be called " -"whenever the buffer becomes non-empty. Setting *low* to zero " -"causes :meth:`~BaseProtocol.resume_writing` to be called only once the " -"buffer is empty. Use of zero for either limit is generally sub-optimal as it " -"reduces opportunities for doing I/O and computation concurrently." +msgid "The defaults are implementation-specific. If only the high watermark is given, the low watermark defaults to an implementation-specific value less than or equal to the high watermark. Setting *high* to zero forces *low* to zero as well, and causes :meth:`~BaseProtocol.pause_writing` to be called whenever the buffer becomes non-empty. Setting *low* to zero causes :meth:`~BaseProtocol.resume_writing` to be called only once the buffer is empty. Use of zero for either limit is generally sub-optimal as it reduces opportunities for doing I/O and computation concurrently." msgstr "" -#: ../../library/asyncio-protocol.rst:326 msgid "Use :meth:`~WriteTransport.get_write_buffer_limits` to get the limits." msgstr "" -#: ../../library/asyncio-protocol.rst:331 msgid "Write some *data* bytes to the transport." msgstr "" -#: ../../library/asyncio-protocol.rst:333 -#: ../../library/asyncio-protocol.rst:362 -msgid "" -"This method does not block; it buffers the data and arranges for it to be " -"sent out asynchronously." +msgid "This method does not block; it buffers the data and arranges for it to be sent out asynchronously." msgstr "" -#: ../../library/asyncio-protocol.rst:338 -msgid "" -"Write a list (or any iterable) of data bytes to the transport. This is " -"functionally equivalent to calling :meth:`write` on each element yielded by " -"the iterable, but may be implemented more efficiently." +msgid "Write a list (or any iterable) of data bytes to the transport. This is functionally equivalent to calling :meth:`write` on each element yielded by the iterable, but may be implemented more efficiently." msgstr "" -#: ../../library/asyncio-protocol.rst:345 -msgid "" -"Close the write end of the transport after flushing all buffered data. Data " -"may still be received." +msgid "Close the write end of the transport after flushing all buffered data. Data may still be received." msgstr "" -#: ../../library/asyncio-protocol.rst:348 -msgid "" -"This method can raise :exc:`NotImplementedError` if the transport (e.g. SSL) " -"doesn't support half-closed connections." +msgid "This method can raise :exc:`NotImplementedError` if the transport (e.g. SSL) doesn't support half-closed connections." msgstr "" -#: ../../library/asyncio-protocol.rst:353 msgid "Datagram Transports" msgstr "" -#: ../../library/asyncio-protocol.rst:357 -msgid "" -"Send the *data* bytes to the remote peer given by *addr* (a transport-" -"dependent target address). If *addr* is :const:`None`, the data is sent to " -"the target address given on transport creation." +msgid "Send the *data* bytes to the remote peer given by *addr* (a transport-dependent target address). If *addr* is :const:`None`, the data is sent to the target address given on transport creation." msgstr "" -#: ../../library/asyncio-protocol.rst:365 -msgid "" -"This method can be called with an empty bytes object to send a zero-length " -"datagram. The buffer size calculation used for flow control is also updated " -"to account for the datagram header." +msgid "This method can be called with an empty bytes object to send a zero-length datagram. The buffer size calculation used for flow control is also updated to account for the datagram header." msgstr "" -#: ../../library/asyncio-protocol.rst:372 -msgid "" -"Close the transport immediately, without waiting for pending operations to " -"complete. Buffered data will be lost. No more data will be received. The " -"protocol's :meth:`protocol.connection_lost() ` " -"method will eventually be called with :const:`None` as its argument." +msgid "Close the transport immediately, without waiting for pending operations to complete. Buffered data will be lost. No more data will be received. The protocol's :meth:`protocol.connection_lost() ` method will eventually be called with :const:`None` as its argument." msgstr "" -#: ../../library/asyncio-protocol.rst:382 msgid "Subprocess Transports" msgstr "" -#: ../../library/asyncio-protocol.rst:386 msgid "Return the subprocess process id as an integer." msgstr "" -#: ../../library/asyncio-protocol.rst:390 -msgid "" -"Return the transport for the communication pipe corresponding to the integer " -"file descriptor *fd*:" +msgid "Return the transport for the communication pipe corresponding to the integer file descriptor *fd*:" msgstr "" -#: ../../library/asyncio-protocol.rst:393 -msgid "" -"``0``: writable streaming transport of the standard input (*stdin*), " -"or :const:`None` if the subprocess was not created with ``stdin=PIPE``" +msgid "``0``: writable streaming transport of the standard input (*stdin*), or :const:`None` if the subprocess was not created with ``stdin=PIPE``" msgstr "" -#: ../../library/asyncio-protocol.rst:395 -msgid "" -"``1``: readable streaming transport of the standard output (*stdout*), " -"or :const:`None` if the subprocess was not created with ``stdout=PIPE``" +msgid "``1``: readable streaming transport of the standard output (*stdout*), or :const:`None` if the subprocess was not created with ``stdout=PIPE``" msgstr "" -#: ../../library/asyncio-protocol.rst:397 -msgid "" -"``2``: readable streaming transport of the standard error (*stderr*), " -"or :const:`None` if the subprocess was not created with ``stderr=PIPE``" +msgid "``2``: readable streaming transport of the standard error (*stderr*), or :const:`None` if the subprocess was not created with ``stderr=PIPE``" msgstr "" -#: ../../library/asyncio-protocol.rst:399 msgid "other *fd*: :const:`None`" msgstr "" -#: ../../library/asyncio-protocol.rst:403 -msgid "" -"Return the subprocess return code as an integer or :const:`None` if it " -"hasn't returned, which is similar to the :attr:`subprocess.Popen.returncode` " -"attribute." +msgid "Return the subprocess return code as an integer or :const:`None` if it hasn't returned, which is similar to the :attr:`subprocess.Popen.returncode` attribute." msgstr "" -#: ../../library/asyncio-protocol.rst:409 msgid "Kill the subprocess." msgstr "" -#: ../../library/asyncio-protocol.rst:411 -msgid "" -"On POSIX systems, the function sends SIGKILL to the subprocess. On Windows, " -"this method is an alias for :meth:`terminate`." +msgid "On POSIX systems, the function sends SIGKILL to the subprocess. On Windows, this method is an alias for :meth:`terminate`." msgstr "" -#: ../../library/asyncio-protocol.rst:414 msgid "See also :meth:`subprocess.Popen.kill`." msgstr "" -#: ../../library/asyncio-protocol.rst:418 -msgid "" -"Send the *signal* number to the subprocess, as " -"in :meth:`subprocess.Popen.send_signal`." +msgid "Send the *signal* number to the subprocess, as in :meth:`subprocess.Popen.send_signal`." msgstr "" -#: ../../library/asyncio-protocol.rst:423 msgid "Stop the subprocess." msgstr "" -#: ../../library/asyncio-protocol.rst:425 -msgid "" -"On POSIX systems, this method sends :py:const:`~signal.SIGTERM` to the " -"subprocess. On Windows, the Windows API function :c:func:`!TerminateProcess` " -"is called to stop the subprocess." +msgid "On POSIX systems, this method sends :py:const:`~signal.SIGTERM` to the subprocess. On Windows, the Windows API function :c:func:`!TerminateProcess` is called to stop the subprocess." msgstr "" -#: ../../library/asyncio-protocol.rst:429 msgid "See also :meth:`subprocess.Popen.terminate`." msgstr "" -#: ../../library/asyncio-protocol.rst:433 msgid "Kill the subprocess by calling the :meth:`kill` method." msgstr "" -#: ../../library/asyncio-protocol.rst:435 -msgid "" -"If the subprocess hasn't returned yet, and close transports of *stdin*, " -"*stdout*, and *stderr* pipes." +msgid "If the subprocess hasn't returned yet, and close transports of *stdin*, *stdout*, and *stderr* pipes." msgstr "" -#: ../../library/asyncio-protocol.rst:442 msgid "Protocols" msgstr "" -#: ../../library/asyncio-protocol.rst:444 msgid "**Source code:** :source:`Lib/asyncio/protocols.py`" msgstr "" -#: ../../library/asyncio-protocol.rst:448 -msgid "" -"asyncio provides a set of abstract base classes that should be used to " -"implement network protocols. Those classes are meant to be used together " -"with :ref:`transports `." +msgid "asyncio provides a set of abstract base classes that should be used to implement network protocols. Those classes are meant to be used together with :ref:`transports `." msgstr "" -#: ../../library/asyncio-protocol.rst:452 -msgid "" -"Subclasses of abstract base protocol classes may implement some or all " -"methods. All these methods are callbacks: they are called by transports on " -"certain events, for example when some data is received. A base protocol " -"method should be called by the corresponding transport." +msgid "Subclasses of abstract base protocol classes may implement some or all methods. All these methods are callbacks: they are called by transports on certain events, for example when some data is received. A base protocol method should be called by the corresponding transport." msgstr "" -#: ../../library/asyncio-protocol.rst:459 msgid "Base Protocols" msgstr "" -#: ../../library/asyncio-protocol.rst:463 msgid "Base protocol with methods that all protocols share." msgstr "" -#: ../../library/asyncio-protocol.rst:467 -msgid "" -"The base class for implementing streaming protocols (TCP, Unix sockets, etc)." +msgid "The base class for implementing streaming protocols (TCP, Unix sockets, etc)." msgstr "" -#: ../../library/asyncio-protocol.rst:472 -msgid "" -"A base class for implementing streaming protocols with manual control of the " -"receive buffer." +msgid "A base class for implementing streaming protocols with manual control of the receive buffer." msgstr "" -#: ../../library/asyncio-protocol.rst:477 msgid "The base class for implementing datagram (UDP) protocols." msgstr "" -#: ../../library/asyncio-protocol.rst:481 -msgid "" -"The base class for implementing protocols communicating with child processes " -"(unidirectional pipes)." +msgid "The base class for implementing protocols communicating with child processes (unidirectional pipes)." msgstr "" -#: ../../library/asyncio-protocol.rst:486 msgid "Base Protocol" msgstr "" -#: ../../library/asyncio-protocol.rst:488 msgid "All asyncio protocols can implement Base Protocol callbacks." msgstr "" -#: ../../library/asyncio-protocol.rst:491 msgid "Connection Callbacks" msgstr "" -#: ../../library/asyncio-protocol.rst:492 -msgid "" -"Connection callbacks are called on all protocols, exactly once per a " -"successful connection. All other protocol callbacks can only be called " -"between those two methods." +msgid "Connection callbacks are called on all protocols, exactly once per a successful connection. All other protocol callbacks can only be called between those two methods." msgstr "" -#: ../../library/asyncio-protocol.rst:498 msgid "Called when a connection is made." msgstr "" -#: ../../library/asyncio-protocol.rst:500 -msgid "" -"The *transport* argument is the transport representing the connection. The " -"protocol is responsible for storing the reference to its transport." +msgid "The *transport* argument is the transport representing the connection. The protocol is responsible for storing the reference to its transport." msgstr "" -#: ../../library/asyncio-protocol.rst:506 msgid "Called when the connection is lost or closed." msgstr "" -#: ../../library/asyncio-protocol.rst:508 -msgid "" -"The argument is either an exception object or :const:`None`. The latter " -"means a regular EOF is received, or the connection was aborted or closed by " -"this side of the connection." +msgid "The argument is either an exception object or :const:`None`. The latter means a regular EOF is received, or the connection was aborted or closed by this side of the connection." msgstr "" -#: ../../library/asyncio-protocol.rst:514 msgid "Flow Control Callbacks" msgstr "" -#: ../../library/asyncio-protocol.rst:515 -msgid "" -"Flow control callbacks can be called by transports to pause or resume " -"writing performed by the protocol." +msgid "Flow control callbacks can be called by transports to pause or resume writing performed by the protocol." msgstr "" -#: ../../library/asyncio-protocol.rst:518 -msgid "" -"See the documentation of the :meth:`~WriteTransport.set_write_buffer_limits` " -"method for more details." +msgid "See the documentation of the :meth:`~WriteTransport.set_write_buffer_limits` method for more details." msgstr "" -#: ../../library/asyncio-protocol.rst:523 msgid "Called when the transport's buffer goes over the high watermark." msgstr "" -#: ../../library/asyncio-protocol.rst:527 msgid "Called when the transport's buffer drains below the low watermark." msgstr "" -#: ../../library/asyncio-protocol.rst:529 -msgid "" -"If the buffer size equals the high " -"watermark, :meth:`~BaseProtocol.pause_writing` is not called: the buffer " -"size must go strictly over." +msgid "If the buffer size equals the high watermark, :meth:`~BaseProtocol.pause_writing` is not called: the buffer size must go strictly over." msgstr "" -#: ../../library/asyncio-protocol.rst:533 -msgid "" -"Conversely, :meth:`~BaseProtocol.resume_writing` is called when the buffer " -"size is equal or lower than the low watermark. These end conditions are " -"important to ensure that things go as expected when either mark is zero." +msgid "Conversely, :meth:`~BaseProtocol.resume_writing` is called when the buffer size is equal or lower than the low watermark. These end conditions are important to ensure that things go as expected when either mark is zero." msgstr "" -#: ../../library/asyncio-protocol.rst:540 msgid "Streaming Protocols" msgstr "" -#: ../../library/asyncio-protocol.rst:542 -msgid "" -"Event methods, such " -"as :meth:`loop.create_server`, :meth:`loop.create_unix_server`, :meth:`loop.create_connection`, :meth:`loop.create_unix_connection`, :meth:`loop.connect_accepted_socket`, :meth:`loop.connect_read_pipe`, " -"and :meth:`loop.connect_write_pipe` accept factories that return streaming " -"protocols." +msgid "Event methods, such as :meth:`loop.create_server`, :meth:`loop.create_unix_server`, :meth:`loop.create_connection`, :meth:`loop.create_unix_connection`, :meth:`loop.connect_accepted_socket`, :meth:`loop.connect_read_pipe`, and :meth:`loop.connect_write_pipe` accept factories that return streaming protocols." msgstr "" -#: ../../library/asyncio-protocol.rst:550 -msgid "" -"Called when some data is received. *data* is a non-empty bytes object " -"containing the incoming data." +msgid "Called when some data is received. *data* is a non-empty bytes object containing the incoming data." msgstr "" -#: ../../library/asyncio-protocol.rst:553 -msgid "" -"Whether the data is buffered, chunked or reassembled depends on the " -"transport. In general, you shouldn't rely on specific semantics and instead " -"make your parsing generic and flexible. However, data is always received in " -"the correct order." +msgid "Whether the data is buffered, chunked or reassembled depends on the transport. In general, you shouldn't rely on specific semantics and instead make your parsing generic and flexible. However, data is always received in the correct order." msgstr "" -#: ../../library/asyncio-protocol.rst:558 -msgid "" -"The method can be called an arbitrary number of times while a connection is " -"open." +msgid "The method can be called an arbitrary number of times while a connection is open." msgstr "" -#: ../../library/asyncio-protocol.rst:561 -msgid "" -"However, :meth:`protocol.eof_received() ` is called " -"at most once. Once ``eof_received()`` is called, ``data_received()`` is not " -"called anymore." +msgid "However, :meth:`protocol.eof_received() ` is called at most once. Once ``eof_received()`` is called, ``data_received()`` is not called anymore." msgstr "" -#: ../../library/asyncio-protocol.rst:567 -msgid "" -"Called when the other end signals it won't send any more data (for example " -"by calling :meth:`transport.write_eof() `, if the " -"other end also uses asyncio)." +msgid "Called when the other end signals it won't send any more data (for example by calling :meth:`transport.write_eof() `, if the other end also uses asyncio)." msgstr "" -#: ../../library/asyncio-protocol.rst:572 -msgid "" -"This method may return a false value (including ``None``), in which case the " -"transport will close itself. Conversely, if this method returns a true " -"value, the protocol used determines whether to close the transport. Since " -"the default implementation returns ``None``, it implicitly closes the " -"connection." +msgid "This method may return a false value (including ``None``), in which case the transport will close itself. Conversely, if this method returns a true value, the protocol used determines whether to close the transport. Since the default implementation returns ``None``, it implicitly closes the connection." msgstr "" -#: ../../library/asyncio-protocol.rst:578 -msgid "" -"Some transports, including SSL, don't support half-closed connections, in " -"which case returning true from this method will result in the connection " -"being closed." +msgid "Some transports, including SSL, don't support half-closed connections, in which case returning true from this method will result in the connection being closed." msgstr "" -#: ../../library/asyncio-protocol.rst:583 -#: ../../library/asyncio-protocol.rst:641 msgid "State machine:" msgstr "" -#: ../../library/asyncio-protocol.rst:585 msgid "" "start -> connection_made\n" " [-> data_received]*\n" @@ -812,73 +454,39 @@ msgid "" "-> connection_lost -> end" msgstr "" -#: ../../library/asyncio-protocol.rst:594 msgid "Buffered Streaming Protocols" msgstr "" -#: ../../library/asyncio-protocol.rst:598 -msgid "" -"Buffered Protocols can be used with any event loop method that supports " -"`Streaming Protocols`_." +msgid "Buffered Protocols can be used with any event loop method that supports `Streaming Protocols`_." msgstr "" -#: ../../library/asyncio-protocol.rst:601 -msgid "" -"``BufferedProtocol`` implementations allow explicit manual allocation and " -"control of the receive buffer. Event loops can then use the buffer provided " -"by the protocol to avoid unnecessary data copies. This can result in " -"noticeable performance improvement for protocols that receive big amounts of " -"data. Sophisticated protocol implementations can significantly reduce the " -"number of buffer allocations." +msgid "``BufferedProtocol`` implementations allow explicit manual allocation and control of the receive buffer. Event loops can then use the buffer provided by the protocol to avoid unnecessary data copies. This can result in noticeable performance improvement for protocols that receive big amounts of data. Sophisticated protocol implementations can significantly reduce the number of buffer allocations." msgstr "" -#: ../../library/asyncio-protocol.rst:608 -msgid "" -"The following callbacks are called on :class:`BufferedProtocol` instances:" +msgid "The following callbacks are called on :class:`BufferedProtocol` instances:" msgstr "" -#: ../../library/asyncio-protocol.rst:613 msgid "Called to allocate a new receive buffer." msgstr "" -#: ../../library/asyncio-protocol.rst:615 -msgid "" -"*sizehint* is the recommended minimum size for the returned buffer. It is " -"acceptable to return smaller or larger buffers than what *sizehint* " -"suggests. When set to -1, the buffer size can be arbitrary. It is an error " -"to return a buffer with a zero size." +msgid "*sizehint* is the recommended minimum size for the returned buffer. It is acceptable to return smaller or larger buffers than what *sizehint* suggests. When set to -1, the buffer size can be arbitrary. It is an error to return a buffer with a zero size." msgstr "" -#: ../../library/asyncio-protocol.rst:620 -msgid "" -"``get_buffer()`` must return an object implementing the :ref:`buffer " -"protocol `." +msgid "``get_buffer()`` must return an object implementing the :ref:`buffer protocol `." msgstr "" -#: ../../library/asyncio-protocol.rst:625 msgid "Called when the buffer was updated with the received data." msgstr "" -#: ../../library/asyncio-protocol.rst:627 msgid "*nbytes* is the total number of bytes that were written to the buffer." msgstr "" -#: ../../library/asyncio-protocol.rst:631 -msgid "" -"See the documentation of the :meth:`protocol.eof_received() " -"` method." +msgid "See the documentation of the :meth:`protocol.eof_received() ` method." msgstr "" -#: ../../library/asyncio-protocol.rst:635 -msgid "" -":meth:`~BufferedProtocol.get_buffer` can be called an arbitrary number of " -"times during a connection. However, :meth:`protocol.eof_received() " -"` is called at most once and, if " -"called, :meth:`~BufferedProtocol.get_buffer` " -"and :meth:`~BufferedProtocol.buffer_updated` won't be called after it." +msgid ":meth:`~BufferedProtocol.get_buffer` can be called an arbitrary number of times during a connection. However, :meth:`protocol.eof_received() ` is called at most once and, if called, :meth:`~BufferedProtocol.get_buffer` and :meth:`~BufferedProtocol.buffer_updated` won't be called after it." msgstr "" -#: ../../library/asyncio-protocol.rst:643 msgid "" "start -> connection_made\n" " [-> get_buffer\n" @@ -888,109 +496,63 @@ msgid "" "-> connection_lost -> end" msgstr "" -#: ../../library/asyncio-protocol.rst:654 msgid "Datagram Protocols" msgstr "" -#: ../../library/asyncio-protocol.rst:656 -msgid "" -"Datagram Protocol instances should be constructed by protocol factories " -"passed to the :meth:`loop.create_datagram_endpoint` method." +msgid "Datagram Protocol instances should be constructed by protocol factories passed to the :meth:`loop.create_datagram_endpoint` method." msgstr "" -#: ../../library/asyncio-protocol.rst:661 -msgid "" -"Called when a datagram is received. *data* is a bytes object containing the " -"incoming data. *addr* is the address of the peer sending the data; the " -"exact format depends on the transport." +msgid "Called when a datagram is received. *data* is a bytes object containing the incoming data. *addr* is the address of the peer sending the data; the exact format depends on the transport." msgstr "" -#: ../../library/asyncio-protocol.rst:667 -msgid "" -"Called when a previous send or receive operation raises " -"an :class:`OSError`. *exc* is the :class:`OSError` instance." +msgid "Called when a previous send or receive operation raises an :class:`OSError`. *exc* is the :class:`OSError` instance." msgstr "" -#: ../../library/asyncio-protocol.rst:670 -msgid "" -"This method is called in rare conditions, when the transport (e.g. UDP) " -"detects that a datagram could not be delivered to its recipient. In many " -"conditions though, undeliverable datagrams will be silently dropped." +msgid "This method is called in rare conditions, when the transport (e.g. UDP) detects that a datagram could not be delivered to its recipient. In many conditions though, undeliverable datagrams will be silently dropped." msgstr "" -#: ../../library/asyncio-protocol.rst:677 -msgid "" -"On BSD systems (macOS, FreeBSD, etc.) flow control is not supported for " -"datagram protocols, because there is no reliable way to detect send failures " -"caused by writing too many packets." +msgid "On BSD systems (macOS, FreeBSD, etc.) flow control is not supported for datagram protocols, because there is no reliable way to detect send failures caused by writing too many packets." msgstr "" -#: ../../library/asyncio-protocol.rst:681 -msgid "" -"The socket always appears 'ready' and excess packets are dropped. " -"An :class:`OSError` with ``errno`` set to :const:`errno.ENOBUFS` may or may " -"not be raised; if it is raised, it will be reported " -"to :meth:`DatagramProtocol.error_received` but otherwise ignored." +msgid "The socket always appears 'ready' and excess packets are dropped. An :class:`OSError` with ``errno`` set to :const:`errno.ENOBUFS` may or may not be raised; if it is raised, it will be reported to :meth:`DatagramProtocol.error_received` but otherwise ignored." msgstr "" -#: ../../library/asyncio-protocol.rst:690 msgid "Subprocess Protocols" msgstr "" -#: ../../library/asyncio-protocol.rst:692 -msgid "" -"Subprocess Protocol instances should be constructed by protocol factories " -"passed to the :meth:`loop.subprocess_exec` and :meth:`loop.subprocess_shell` " -"methods." +msgid "Subprocess Protocol instances should be constructed by protocol factories passed to the :meth:`loop.subprocess_exec` and :meth:`loop.subprocess_shell` methods." msgstr "" -#: ../../library/asyncio-protocol.rst:698 -msgid "" -"Called when the child process writes data into its stdout or stderr pipe." +msgid "Called when the child process writes data into its stdout or stderr pipe." msgstr "" -#: ../../library/asyncio-protocol.rst:701 msgid "*fd* is the integer file descriptor of the pipe." msgstr "" -#: ../../library/asyncio-protocol.rst:703 msgid "*data* is a non-empty bytes object containing the received data." msgstr "" -#: ../../library/asyncio-protocol.rst:707 -msgid "" -"Called when one of the pipes communicating with the child process is closed." +msgid "Called when one of the pipes communicating with the child process is closed." msgstr "" -#: ../../library/asyncio-protocol.rst:710 msgid "*fd* is the integer file descriptor that was closed." msgstr "" -#: ../../library/asyncio-protocol.rst:714 msgid "Called when the child process has exited." msgstr "" -#: ../../library/asyncio-protocol.rst:716 -msgid "" -"It can be called before :meth:`~SubprocessProtocol.pipe_data_received` " -"and :meth:`~SubprocessProtocol.pipe_connection_lost` methods." +msgid "It can be called before :meth:`~SubprocessProtocol.pipe_data_received` and :meth:`~SubprocessProtocol.pipe_connection_lost` methods." msgstr "" -#: ../../library/asyncio-protocol.rst:721 msgid "Examples" msgstr "" -#: ../../library/asyncio-protocol.rst:726 msgid "TCP Echo Server" msgstr "" -#: ../../library/asyncio-protocol.rst:728 -msgid "" -"Create a TCP echo server using the :meth:`loop.create_server` method, send " -"back received data, and close the connection::" +msgid "Create a TCP echo server using the :meth:`loop.create_server` method, send back received data, and close the connection::" msgstr "" -#: ../../library/asyncio-protocol.rst:731 msgid "" "import asyncio\n" "\n" @@ -1028,23 +590,15 @@ msgid "" "asyncio.run(main())" msgstr "" -#: ../../library/asyncio-protocol.rst:769 -msgid "" -"The :ref:`TCP echo server using streams ` " -"example uses the high-level :func:`asyncio.start_server` function." +msgid "The :ref:`TCP echo server using streams ` example uses the high-level :func:`asyncio.start_server` function." msgstr "" -#: ../../library/asyncio-protocol.rst:775 msgid "TCP Echo Client" msgstr "" -#: ../../library/asyncio-protocol.rst:777 -msgid "" -"A TCP echo client using the :meth:`loop.create_connection` method, sends " -"data, and waits until the connection is closed::" +msgid "A TCP echo client using the :meth:`loop.create_connection` method, sends data, and waits until the connection is closed::" msgstr "" -#: ../../library/asyncio-protocol.rst:780 msgid "" "import asyncio\n" "\n" @@ -1089,23 +643,15 @@ msgid "" "asyncio.run(main())" msgstr "" -#: ../../library/asyncio-protocol.rst:825 -msgid "" -"The :ref:`TCP echo client using streams ` " -"example uses the high-level :func:`asyncio.open_connection` function." +msgid "The :ref:`TCP echo client using streams ` example uses the high-level :func:`asyncio.open_connection` function." msgstr "" -#: ../../library/asyncio-protocol.rst:832 msgid "UDP Echo Server" msgstr "" -#: ../../library/asyncio-protocol.rst:834 -msgid "" -"A UDP echo server, using the :meth:`loop.create_datagram_endpoint` method, " -"sends back received data::" +msgid "A UDP echo server, using the :meth:`loop.create_datagram_endpoint` method, sends back received data::" msgstr "" -#: ../../library/asyncio-protocol.rst:837 msgid "" "import asyncio\n" "\n" @@ -1143,17 +689,12 @@ msgid "" "asyncio.run(main())" msgstr "" -#: ../../library/asyncio-protocol.rst:876 msgid "UDP Echo Client" msgstr "" -#: ../../library/asyncio-protocol.rst:878 -msgid "" -"A UDP echo client, using the :meth:`loop.create_datagram_endpoint` method, " -"sends data and closes the transport when it receives the answer::" +msgid "A UDP echo client, using the :meth:`loop.create_datagram_endpoint` method, sends data and closes the transport when it receives the answer::" msgstr "" -#: ../../library/asyncio-protocol.rst:881 msgid "" "import asyncio\n" "\n" @@ -1204,17 +745,12 @@ msgid "" "asyncio.run(main())" msgstr "" -#: ../../library/asyncio-protocol.rst:933 msgid "Connecting Existing Sockets" msgstr "" -#: ../../library/asyncio-protocol.rst:935 -msgid "" -"Wait until a socket receives data using the :meth:`loop.create_connection` " -"method with a protocol::" +msgid "Wait until a socket receives data using the :meth:`loop.create_connection` method with a protocol::" msgstr "" -#: ../../library/asyncio-protocol.rst:938 msgid "" "import asyncio\n" "import socket\n" @@ -1266,35 +802,21 @@ msgid "" "asyncio.run(main())" msgstr "" -#: ../../library/asyncio-protocol.rst:989 -msgid "" -"The :ref:`watch a file descriptor for read events " -"` example uses the low-" -"level :meth:`loop.add_reader` method to register an FD." +msgid "The :ref:`watch a file descriptor for read events ` example uses the low-level :meth:`loop.add_reader` method to register an FD." msgstr "" -#: ../../library/asyncio-protocol.rst:993 -msgid "" -"The :ref:`register an open socket to wait for data using streams " -"` example uses high-level streams " -"created by the :func:`open_connection` function in a coroutine." +msgid "The :ref:`register an open socket to wait for data using streams ` example uses high-level streams created by the :func:`open_connection` function in a coroutine." msgstr "" -#: ../../library/asyncio-protocol.rst:1000 msgid "loop.subprocess_exec() and SubprocessProtocol" msgstr "" -#: ../../library/asyncio-protocol.rst:1002 -msgid "" -"An example of a subprocess protocol used to get the output of a subprocess " -"and to wait for the subprocess exit." +msgid "An example of a subprocess protocol used to get the output of a subprocess and to wait for the subprocess exit." msgstr "" -#: ../../library/asyncio-protocol.rst:1005 msgid "The subprocess is created by the :meth:`loop.subprocess_exec` method::" msgstr "" -#: ../../library/asyncio-protocol.rst:1007 msgid "" "import asyncio\n" "import sys\n" @@ -1355,8 +877,5 @@ msgid "" "print(f\"Current date: {date}\")" msgstr "" -#: ../../library/asyncio-protocol.rst:1065 -msgid "" -"See also the :ref:`same example ` " -"written using high-level APIs." +msgid "See also the :ref:`same example ` written using high-level APIs." msgstr "" diff --git a/library/asyncio-queue.po b/library/asyncio-queue.po index efede98a..c8d4fbea 100644 --- a/library/asyncio-queue.po +++ b/library/asyncio-queue.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:55+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,263 +24,150 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/asyncio-queue.rst:7 msgid "Queues" msgstr "" -#: ../../library/asyncio-queue.rst:9 msgid "**Source code:** :source:`Lib/asyncio/queues.py`" msgstr "" -#: ../../library/asyncio-queue.rst:13 -msgid "" -"asyncio queues are designed to be similar to classes of the :mod:`queue` " -"module. Although asyncio queues are not thread-safe, they are designed to " -"be used specifically in async/await code." +msgid "asyncio queues are designed to be similar to classes of the :mod:`queue` module. Although asyncio queues are not thread-safe, they are designed to be used specifically in async/await code." msgstr "" -#: ../../library/asyncio-queue.rst:17 -msgid "" -"Note that methods of asyncio queues don't have a *timeout* parameter; " -"use :func:`asyncio.wait_for` function to do queue operations with a timeout." +msgid "Note that methods of asyncio queues don't have a *timeout* parameter; use :func:`asyncio.wait_for` function to do queue operations with a timeout." msgstr "" -#: ../../library/asyncio-queue.rst:21 msgid "See also the `Examples`_ section below." msgstr "" -#: ../../library/asyncio-queue.rst:24 msgid "Queue" msgstr "" -#: ../../library/asyncio-queue.rst:28 msgid "A first in, first out (FIFO) queue." msgstr "" -#: ../../library/asyncio-queue.rst:30 -msgid "" -"If *maxsize* is less than or equal to zero, the queue size is infinite. If " -"it is an integer greater than ``0``, then ``await put()`` blocks when the " -"queue reaches *maxsize* until an item is removed by :meth:`get`." +msgid "If *maxsize* is less than or equal to zero, the queue size is infinite. If it is an integer greater than ``0``, then ``await put()`` blocks when the queue reaches *maxsize* until an item is removed by :meth:`get`." msgstr "" -#: ../../library/asyncio-queue.rst:35 -msgid "" -"Unlike the standard library threading :mod:`queue`, the size of the queue is " -"always known and can be returned by calling the :meth:`qsize` method." +msgid "Unlike the standard library threading :mod:`queue`, the size of the queue is always known and can be returned by calling the :meth:`qsize` method." msgstr "" -#: ../../library/asyncio-queue.rst:39 msgid "Removed the *loop* parameter." msgstr "" -#: ../../library/asyncio-queue.rst:43 msgid "This class is :ref:`not thread safe `." msgstr "" -#: ../../library/asyncio-queue.rst:47 msgid "Number of items allowed in the queue." msgstr "" -#: ../../library/asyncio-queue.rst:51 msgid "Return ``True`` if the queue is empty, ``False`` otherwise." msgstr "" -#: ../../library/asyncio-queue.rst:55 msgid "Return ``True`` if there are :attr:`maxsize` items in the queue." msgstr "" -#: ../../library/asyncio-queue.rst:57 -msgid "" -"If the queue was initialized with ``maxsize=0`` (the default), " -"then :meth:`full` never returns ``True``." +msgid "If the queue was initialized with ``maxsize=0`` (the default), then :meth:`full` never returns ``True``." msgstr "" -#: ../../library/asyncio-queue.rst:63 -msgid "" -"Remove and return an item from the queue. If queue is empty, wait until an " -"item is available." +msgid "Remove and return an item from the queue. If queue is empty, wait until an item is available." msgstr "" -#: ../../library/asyncio-queue.rst:66 -msgid "" -"Raises :exc:`QueueShutDown` if the queue has been shut down and is empty, or " -"if the queue has been shut down immediately." +msgid "Raises :exc:`QueueShutDown` if the queue has been shut down and is empty, or if the queue has been shut down immediately." msgstr "" -#: ../../library/asyncio-queue.rst:71 -msgid "" -"Return an item if one is immediately available, else raise :exc:`QueueEmpty`." +msgid "Return an item if one is immediately available, else raise :exc:`QueueEmpty`." msgstr "" -#: ../../library/asyncio-queue.rst:74 -msgid "" -"Raises :exc:`QueueShutDown` if the queue has been shut down and is empty." +msgid "Raises :exc:`QueueShutDown` if the queue has been shut down and is empty." msgstr "" -#: ../../library/asyncio-queue.rst:79 msgid "Block until all items in the queue have been received and processed." msgstr "" -#: ../../library/asyncio-queue.rst:81 -msgid "" -"The count of unfinished tasks goes up whenever an item is added to the " -"queue. The count goes down whenever a consumer coroutine " -"calls :meth:`task_done` to indicate that the item was retrieved and all work " -"on it is complete. When the count of unfinished tasks drops to " -"zero, :meth:`join` unblocks." +msgid "The count of unfinished tasks goes up whenever an item is added to the queue. The count goes down whenever a consumer coroutine calls :meth:`task_done` to indicate that the item was retrieved and all work on it is complete. When the count of unfinished tasks drops to zero, :meth:`join` unblocks." msgstr "" -#: ../../library/asyncio-queue.rst:90 -msgid "" -"Put an item into the queue. If the queue is full, wait until a free slot is " -"available before adding the item." +msgid "Put an item into the queue. If the queue is full, wait until a free slot is available before adding the item." msgstr "" -#: ../../library/asyncio-queue.rst:93 ../../library/asyncio-queue.rst:101 msgid "Raises :exc:`QueueShutDown` if the queue has been shut down." msgstr "" -#: ../../library/asyncio-queue.rst:97 msgid "Put an item into the queue without blocking." msgstr "" -#: ../../library/asyncio-queue.rst:99 msgid "If no free slot is immediately available, raise :exc:`QueueFull`." msgstr "" -#: ../../library/asyncio-queue.rst:105 msgid "Return the number of items in the queue." msgstr "" -#: ../../library/asyncio-queue.rst:109 msgid "Put a :class:`Queue` instance into a shutdown mode." msgstr "" -#: ../../library/asyncio-queue.rst:111 -msgid "" -"The queue can no longer grow. Future calls to :meth:`~Queue.put` " -"raise :exc:`QueueShutDown`. Currently blocked callers of :meth:`~Queue.put` " -"will be unblocked and will raise :exc:`QueueShutDown` in the formerly " -"awaiting task." +msgid "The queue can no longer grow. Future calls to :meth:`~Queue.put` raise :exc:`QueueShutDown`. Currently blocked callers of :meth:`~Queue.put` will be unblocked and will raise :exc:`QueueShutDown` in the formerly awaiting task." msgstr "" -#: ../../library/asyncio-queue.rst:116 -msgid "" -"If *immediate* is false (the default), the queue can be wound down normally " -"with :meth:`~Queue.get` calls to extract tasks that have already been loaded." +msgid "If *immediate* is false (the default), the queue can be wound down normally with :meth:`~Queue.get` calls to extract tasks that have already been loaded." msgstr "" -#: ../../library/asyncio-queue.rst:120 -msgid "" -"And if :meth:`~Queue.task_done` is called for each remaining task, a " -"pending :meth:`~Queue.join` will be unblocked normally." +msgid "And if :meth:`~Queue.task_done` is called for each remaining task, a pending :meth:`~Queue.join` will be unblocked normally." msgstr "" -#: ../../library/asyncio-queue.rst:123 -msgid "" -"Once the queue is empty, future calls to :meth:`~Queue.get` will " -"raise :exc:`QueueShutDown`." +msgid "Once the queue is empty, future calls to :meth:`~Queue.get` will raise :exc:`QueueShutDown`." msgstr "" -#: ../../library/asyncio-queue.rst:126 -msgid "" -"If *immediate* is true, the queue is terminated immediately. The queue is " -"drained to be completely empty and the count of unfinished tasks is reduced " -"by the number of tasks drained. If unfinished tasks is zero, callers " -"of :meth:`~Queue.join` are unblocked. Also, blocked callers " -"of :meth:`~Queue.get` are unblocked and will raise :exc:`QueueShutDown` " -"because the queue is empty." +msgid "If *immediate* is true, the queue is terminated immediately. The queue is drained to be completely empty and the count of unfinished tasks is reduced by the number of tasks drained. If unfinished tasks is zero, callers of :meth:`~Queue.join` are unblocked. Also, blocked callers of :meth:`~Queue.get` are unblocked and will raise :exc:`QueueShutDown` because the queue is empty." msgstr "" -#: ../../library/asyncio-queue.rst:134 -msgid "" -"Use caution when using :meth:`~Queue.join` with *immediate* set to true. " -"This unblocks the join even when no work has been done on the tasks, " -"violating the usual invariant for joining a queue." +msgid "Use caution when using :meth:`~Queue.join` with *immediate* set to true. This unblocks the join even when no work has been done on the tasks, violating the usual invariant for joining a queue." msgstr "" -#: ../../library/asyncio-queue.rst:142 msgid "Indicate that a formerly enqueued work item is complete." msgstr "" -#: ../../library/asyncio-queue.rst:144 -msgid "" -"Used by queue consumers. For each :meth:`~Queue.get` used to fetch a work " -"item, a subsequent call to :meth:`task_done` tells the queue that the " -"processing on the work item is complete." +msgid "Used by queue consumers. For each :meth:`~Queue.get` used to fetch a work item, a subsequent call to :meth:`task_done` tells the queue that the processing on the work item is complete." msgstr "" -#: ../../library/asyncio-queue.rst:148 -msgid "" -"If a :meth:`join` is currently blocking, it will resume when all items have " -"been processed (meaning that a :meth:`task_done` call was received for every " -"item that had been :meth:`~Queue.put` into the queue)." +msgid "If a :meth:`join` is currently blocking, it will resume when all items have been processed (meaning that a :meth:`task_done` call was received for every item that had been :meth:`~Queue.put` into the queue)." msgstr "" -#: ../../library/asyncio-queue.rst:153 -msgid "" -"Raises :exc:`ValueError` if called more times than there were items placed " -"in the queue." +msgid "Raises :exc:`ValueError` if called more times than there were items placed in the queue." msgstr "" -#: ../../library/asyncio-queue.rst:158 msgid "Priority Queue" msgstr "" -#: ../../library/asyncio-queue.rst:162 -msgid "" -"A variant of :class:`Queue`; retrieves entries in priority order (lowest " -"first)." +msgid "A variant of :class:`Queue`; retrieves entries in priority order (lowest first)." msgstr "" -#: ../../library/asyncio-queue.rst:165 msgid "Entries are typically tuples of the form ``(priority_number, data)``." msgstr "" -#: ../../library/asyncio-queue.rst:170 msgid "LIFO Queue" msgstr "" -#: ../../library/asyncio-queue.rst:174 -msgid "" -"A variant of :class:`Queue` that retrieves most recently added entries first " -"(last in, first out)." +msgid "A variant of :class:`Queue` that retrieves most recently added entries first (last in, first out)." msgstr "" -#: ../../library/asyncio-queue.rst:179 msgid "Exceptions" msgstr "" -#: ../../library/asyncio-queue.rst:183 -msgid "" -"This exception is raised when the :meth:`~Queue.get_nowait` method is called " -"on an empty queue." +msgid "This exception is raised when the :meth:`~Queue.get_nowait` method is called on an empty queue." msgstr "" -#: ../../library/asyncio-queue.rst:189 -msgid "" -"Exception raised when the :meth:`~Queue.put_nowait` method is called on a " -"queue that has reached its *maxsize*." +msgid "Exception raised when the :meth:`~Queue.put_nowait` method is called on a queue that has reached its *maxsize*." msgstr "" -#: ../../library/asyncio-queue.rst:195 -msgid "" -"Exception raised " -"when :meth:`~Queue.put`, :meth:`~Queue.put_nowait`, :meth:`~Queue.get` " -"or :meth:`~Queue.get_nowait` is called on a queue which has been shut down." +msgid "Exception raised when :meth:`~Queue.put`, :meth:`~Queue.put_nowait`, :meth:`~Queue.get` or :meth:`~Queue.get_nowait` is called on a queue which has been shut down." msgstr "" -#: ../../library/asyncio-queue.rst:203 msgid "Examples" msgstr "" -#: ../../library/asyncio-queue.rst:207 -msgid "" -"Queues can be used to distribute workload between several concurrent tasks::" +msgid "Queues can be used to distribute workload between several concurrent tasks::" msgstr "" -#: ../../library/asyncio-queue.rst:210 msgid "" "import asyncio\n" "import random\n" diff --git a/library/asyncio-runner.po b/library/asyncio-runner.po index 2cc29ec7..3df32645 100644 --- a/library/asyncio-runner.po +++ b/library/asyncio-runner.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2022-11-05 19:48+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,79 +23,45 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/asyncio-runner.rst:6 msgid "Runners" msgstr "" -#: ../../library/asyncio-runner.rst:8 msgid "**Source code:** :source:`Lib/asyncio/runners.py`" msgstr "" -#: ../../library/asyncio-runner.rst:11 -msgid "" -"This section outlines high-level asyncio primitives to run asyncio code." +msgid "This section outlines high-level asyncio primitives to run asyncio code." msgstr "" -#: ../../library/asyncio-runner.rst:13 -msgid "" -"They are built on top of an :ref:`event loop ` with the " -"aim to simplify async code usage for common wide-spread scenarios." +msgid "They are built on top of an :ref:`event loop ` with the aim to simplify async code usage for common wide-spread scenarios." msgstr "" -#: ../../library/asyncio-runner.rst:23 msgid "Running an asyncio Program" msgstr "" -#: ../../library/asyncio-runner.rst:27 msgid "Execute *coro* in an asyncio event loop and return the result." msgstr "" -#: ../../library/asyncio-runner.rst:29 ../../library/asyncio-runner.rst:121 msgid "The argument can be any awaitable object." msgstr "" -#: ../../library/asyncio-runner.rst:31 -msgid "" -"This function runs the awaitable, taking care of managing the asyncio event " -"loop, *finalizing asynchronous generators*, and closing the executor." +msgid "This function runs the awaitable, taking care of managing the asyncio event loop, *finalizing asynchronous generators*, and closing the executor." msgstr "" -#: ../../library/asyncio-runner.rst:35 ../../library/asyncio-runner.rst:131 -msgid "" -"This function cannot be called when another asyncio event loop is running in " -"the same thread." +msgid "This function cannot be called when another asyncio event loop is running in the same thread." msgstr "" -#: ../../library/asyncio-runner.rst:38 ../../library/asyncio-runner.rst:97 -msgid "" -"If *debug* is ``True``, the event loop will be run in debug mode. ``False`` " -"disables debug mode explicitly. ``None`` is used to respect the " -"global :ref:`asyncio-debug-mode` settings." +msgid "If *debug* is ``True``, the event loop will be run in debug mode. ``False`` disables debug mode explicitly. ``None`` is used to respect the global :ref:`asyncio-debug-mode` settings." msgstr "" -#: ../../library/asyncio-runner.rst:42 -msgid "" -"If *loop_factory* is not ``None``, it is used to create a new event loop; " -"otherwise :func:`asyncio.new_event_loop` is used. The loop is closed at the " -"end. This function should be used as a main entry point for asyncio " -"programs, and should ideally only be called once. It is recommended to use " -"*loop_factory* to configure the event loop instead of policies. " -"Passing :class:`asyncio.EventLoop` allows running asyncio without the policy " -"system." +msgid "If *loop_factory* is not ``None``, it is used to create a new event loop; otherwise :func:`asyncio.new_event_loop` is used. The loop is closed at the end. This function should be used as a main entry point for asyncio programs, and should ideally only be called once. It is recommended to use *loop_factory* to configure the event loop instead of policies. Passing :class:`asyncio.EventLoop` allows running asyncio without the policy system." msgstr "" -#: ../../library/asyncio-runner.rst:50 -msgid "" -"The executor is given a timeout duration of 5 minutes to shutdown. If the " -"executor hasn't finished within that duration, a warning is emitted and the " -"executor is closed." +msgid "The executor is given a timeout duration of 5 minutes to shutdown. If the executor hasn't finished within that duration, a warning is emitted and the executor is closed." msgstr "" -#: ../../library/asyncio-runner.rst:54 msgid "Example::" msgstr "" -#: ../../library/asyncio-runner.rst:56 msgid "" "async def main():\n" " await asyncio.sleep(1)\n" @@ -104,61 +70,36 @@ msgid "" "asyncio.run(main())" msgstr "" -#: ../../library/asyncio-runner.rst:64 msgid "Updated to use :meth:`loop.shutdown_default_executor`." msgstr "" -#: ../../library/asyncio-runner.rst:69 -msgid "" -"*debug* is ``None`` by default to respect the global debug mode settings." +msgid "*debug* is ``None`` by default to respect the global debug mode settings." msgstr "" -#: ../../library/asyncio-runner.rst:73 msgid "Added *loop_factory* parameter." msgstr "" -#: ../../library/asyncio-runner.rst:77 ../../library/asyncio-runner.rst:136 msgid "*coro* can be any awaitable object." msgstr "" -#: ../../library/asyncio-runner.rst:81 -msgid "" -"The :mod:`!asyncio` policy system is deprecated and will be removed in " -"Python 3.16; from there on, an explicit *loop_factory* is needed to " -"configure the event loop." +msgid "The :mod:`!asyncio` policy system is deprecated and will be removed in Python 3.16; from there on, an explicit *loop_factory* is needed to configure the event loop." msgstr "" -#: ../../library/asyncio-runner.rst:87 msgid "Runner context manager" msgstr "" -#: ../../library/asyncio-runner.rst:91 -msgid "" -"A context manager that simplifies *multiple* async function calls in the " -"same context." +msgid "A context manager that simplifies *multiple* async function calls in the same context." msgstr "" -#: ../../library/asyncio-runner.rst:94 -msgid "" -"Sometimes several top-level async functions should be called in the " -"same :ref:`event loop ` and :class:`contextvars.Context`." +msgid "Sometimes several top-level async functions should be called in the same :ref:`event loop ` and :class:`contextvars.Context`." msgstr "" -#: ../../library/asyncio-runner.rst:101 -msgid "" -"*loop_factory* could be used for overriding the loop creation. It is the " -"responsibility of the *loop_factory* to set the created loop as the current " -"one. By default :func:`asyncio.new_event_loop` is used and set as current " -"event loop with :func:`asyncio.set_event_loop` if *loop_factory* is ``None``." +msgid "*loop_factory* could be used for overriding the loop creation. It is the responsibility of the *loop_factory* to set the created loop as the current one. By default :func:`asyncio.new_event_loop` is used and set as current event loop with :func:`asyncio.set_event_loop` if *loop_factory* is ``None``." msgstr "" -#: ../../library/asyncio-runner.rst:106 -msgid "" -"Basically, :func:`asyncio.run` example can be rewritten with the runner " -"usage::" +msgid "Basically, :func:`asyncio.run` example can be rewritten with the runner usage::" msgstr "" -#: ../../library/asyncio-runner.rst:108 msgid "" "async def main():\n" " await asyncio.sleep(1)\n" @@ -168,96 +109,50 @@ msgid "" " runner.run(main())" msgstr "" -#: ../../library/asyncio-runner.rst:119 msgid "Execute *coro* in the embedded event loop." msgstr "" -#: ../../library/asyncio-runner.rst:123 msgid "If the argument is a coroutine, it is wrapped in a Task." msgstr "" -#: ../../library/asyncio-runner.rst:125 -msgid "" -"An optional keyword-only *context* argument allows specifying a " -"custom :class:`contextvars.Context` for the code to run in. The runner's " -"default context is used if context is ``None``." +msgid "An optional keyword-only *context* argument allows specifying a custom :class:`contextvars.Context` for the code to run in. The runner's default context is used if context is ``None``." msgstr "" -#: ../../library/asyncio-runner.rst:129 msgid "Returns the awaitable's result or raises an exception." msgstr "" -#: ../../library/asyncio-runner.rst:140 msgid "Close the runner." msgstr "" -#: ../../library/asyncio-runner.rst:142 -msgid "" -"Finalize asynchronous generators, shutdown default executor, close the event " -"loop and release embedded :class:`contextvars.Context`." +msgid "Finalize asynchronous generators, shutdown default executor, close the event loop and release embedded :class:`contextvars.Context`." msgstr "" -#: ../../library/asyncio-runner.rst:147 msgid "Return the event loop associated with the runner instance." msgstr "" -#: ../../library/asyncio-runner.rst:151 -msgid "" -":class:`Runner` uses the lazy initialization strategy, its constructor " -"doesn't initialize underlying low-level structures." +msgid ":class:`Runner` uses the lazy initialization strategy, its constructor doesn't initialize underlying low-level structures." msgstr "" -#: ../../library/asyncio-runner.rst:154 -msgid "" -"Embedded *loop* and *context* are created at the :keyword:`with` body " -"entering or the first call of :meth:`run` or :meth:`get_loop`." +msgid "Embedded *loop* and *context* are created at the :keyword:`with` body entering or the first call of :meth:`run` or :meth:`get_loop`." msgstr "" -#: ../../library/asyncio-runner.rst:159 msgid "Handling Keyboard Interruption" msgstr "" -#: ../../library/asyncio-runner.rst:163 -msgid "" -"When :const:`signal.SIGINT` is raised by :kbd:`Ctrl-" -"C`, :exc:`KeyboardInterrupt` exception is raised in the main thread by " -"default. However this doesn't work with :mod:`asyncio` because it can " -"interrupt asyncio internals and can hang the program from exiting." +msgid "When :const:`signal.SIGINT` is raised by :kbd:`Ctrl-C`, :exc:`KeyboardInterrupt` exception is raised in the main thread by default. However this doesn't work with :mod:`asyncio` because it can interrupt asyncio internals and can hang the program from exiting." msgstr "" -#: ../../library/asyncio-runner.rst:168 -msgid "" -"To mitigate this issue, :mod:`asyncio` handles :const:`signal.SIGINT` as " -"follows:" +msgid "To mitigate this issue, :mod:`asyncio` handles :const:`signal.SIGINT` as follows:" msgstr "" -#: ../../library/asyncio-runner.rst:170 -msgid "" -":meth:`asyncio.Runner.run` installs a custom :const:`signal.SIGINT` handler " -"before any user code is executed and removes it when exiting from the " -"function." +msgid ":meth:`asyncio.Runner.run` installs a custom :const:`signal.SIGINT` handler before any user code is executed and removes it when exiting from the function." msgstr "" -#: ../../library/asyncio-runner.rst:172 -msgid "" -"The :class:`~asyncio.Runner` creates the main task for the passed coroutine " -"for its execution." +msgid "The :class:`~asyncio.Runner` creates the main task for the passed coroutine for its execution." msgstr "" -#: ../../library/asyncio-runner.rst:174 -msgid "" -"When :const:`signal.SIGINT` is raised by :kbd:`Ctrl-C`, the custom signal " -"handler cancels the main task by calling :meth:`asyncio.Task.cancel` which " -"raises :exc:`asyncio.CancelledError` inside the main task. This causes the " -"Python stack to unwind, ``try/except`` and ``try/finally`` blocks can be " -"used for resource cleanup. After the main task is " -"cancelled, :meth:`asyncio.Runner.run` raises :exc:`KeyboardInterrupt`." +msgid "When :const:`signal.SIGINT` is raised by :kbd:`Ctrl-C`, the custom signal handler cancels the main task by calling :meth:`asyncio.Task.cancel` which raises :exc:`asyncio.CancelledError` inside the main task. This causes the Python stack to unwind, ``try/except`` and ``try/finally`` blocks can be used for resource cleanup. After the main task is cancelled, :meth:`asyncio.Runner.run` raises :exc:`KeyboardInterrupt`." msgstr "" -#: ../../library/asyncio-runner.rst:180 -msgid "" -"A user could write a tight loop which cannot be interrupted " -"by :meth:`asyncio.Task.cancel`, in which case the second " -"following :kbd:`Ctrl-C` immediately raises the :exc:`KeyboardInterrupt` " -"without cancelling the main task." +msgid "A user could write a tight loop which cannot be interrupted by :meth:`asyncio.Task.cancel`, in which case the second following :kbd:`Ctrl-C` immediately raises the :exc:`KeyboardInterrupt` without cancelling the main task." msgstr "" diff --git a/library/asyncio-stream.po b/library/asyncio-stream.po index 351da451..7940931e 100644 --- a/library/asyncio-stream.po +++ b/library/asyncio-stream.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:55+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,26 +24,18 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/asyncio-stream.rst:7 msgid "Streams" msgstr "" -#: ../../library/asyncio-stream.rst:9 msgid "**Source code:** :source:`Lib/asyncio/streams.py`" msgstr "" -#: ../../library/asyncio-stream.rst:13 -msgid "" -"Streams are high-level async/await-ready primitives to work with network " -"connections. Streams allow sending and receiving data without using " -"callbacks or low-level protocols and transports." +msgid "Streams are high-level async/await-ready primitives to work with network connections. Streams allow sending and receiving data without using callbacks or low-level protocols and transports." msgstr "" -#: ../../library/asyncio-stream.rst:19 msgid "Here is an example of a TCP echo client written using asyncio streams::" msgstr "" -#: ../../library/asyncio-stream.rst:22 ../../library/asyncio-stream.rst:451 msgid "" "import asyncio\n" "\n" @@ -65,469 +57,272 @@ msgid "" "asyncio.run(tcp_echo_client('Hello World!'))" msgstr "" -#: ../../library/asyncio-stream.rst:42 msgid "See also the `Examples`_ section below." msgstr "" -#: ../../library/asyncio-stream.rst:46 msgid "Stream Functions" msgstr "" -#: ../../library/asyncio-stream.rst:47 -msgid "" -"The following top-level asyncio functions can be used to create and work " -"with streams:" +msgid "The following top-level asyncio functions can be used to create and work with streams:" msgstr "" -#: ../../library/asyncio-stream.rst:59 -msgid "" -"Establish a network connection and return a pair of ``(reader, writer)`` " -"objects." +msgid "Establish a network connection and return a pair of ``(reader, writer)`` objects." msgstr "" -#: ../../library/asyncio-stream.rst:62 -msgid "" -"The returned *reader* and *writer* objects are instances " -"of :class:`StreamReader` and :class:`StreamWriter` classes." +msgid "The returned *reader* and *writer* objects are instances of :class:`StreamReader` and :class:`StreamWriter` classes." msgstr "" -#: ../../library/asyncio-stream.rst:65 ../../library/asyncio-stream.rst:112 -msgid "" -"*limit* determines the buffer size limit used by the " -"returned :class:`StreamReader` instance. By default the *limit* is set to " -"64 KiB." +msgid "*limit* determines the buffer size limit used by the returned :class:`StreamReader` instance. By default the *limit* is set to 64 KiB." msgstr "" -#: ../../library/asyncio-stream.rst:69 -msgid "" -"The rest of the arguments are passed directly " -"to :meth:`loop.create_connection`." +msgid "The rest of the arguments are passed directly to :meth:`loop.create_connection`." msgstr "" -#: ../../library/asyncio-stream.rst:74 ../../library/asyncio-stream.rst:154 -msgid "" -"The *sock* argument transfers ownership of the socket to " -"the :class:`StreamWriter` created. To close the socket, call " -"its :meth:`~asyncio.StreamWriter.close` method." +msgid "The *sock* argument transfers ownership of the socket to the :class:`StreamWriter` created. To close the socket, call its :meth:`~asyncio.StreamWriter.close` method." msgstr "" -#: ../../library/asyncio-stream.rst:78 msgid "Added the *ssl_handshake_timeout* parameter." msgstr "" -#: ../../library/asyncio-stream.rst:81 msgid "Added the *happy_eyeballs_delay* and *interleave* parameters." msgstr "" -#: ../../library/asyncio-stream.rst:84 ../../library/asyncio-stream.rst:128 -#: ../../library/asyncio-stream.rst:164 ../../library/asyncio-stream.rst:199 msgid "Removed the *loop* parameter." msgstr "" -#: ../../library/asyncio-stream.rst:87 ../../library/asyncio-stream.rst:131 -#: ../../library/asyncio-stream.rst:167 ../../library/asyncio-stream.rst:202 -#: ../../library/asyncio-stream.rst:418 msgid "Added the *ssl_shutdown_timeout* parameter." msgstr "" -#: ../../library/asyncio-stream.rst:101 msgid "Start a socket server." msgstr "" -#: ../../library/asyncio-stream.rst:103 -msgid "" -"The *client_connected_cb* callback is called whenever a new client " -"connection is established. It receives a ``(reader, writer)`` pair as two " -"arguments, instances of the :class:`StreamReader` and :class:`StreamWriter` " -"classes." +msgid "The *client_connected_cb* callback is called whenever a new client connection is established. It receives a ``(reader, writer)`` pair as two arguments, instances of the :class:`StreamReader` and :class:`StreamWriter` classes." msgstr "" -#: ../../library/asyncio-stream.rst:108 -msgid "" -"*client_connected_cb* can be a plain callable or a :ref:`coroutine function " -"`; if it is a coroutine function, it will be automatically " -"scheduled as a :class:`Task`." +msgid "*client_connected_cb* can be a plain callable or a :ref:`coroutine function `; if it is a coroutine function, it will be automatically scheduled as a :class:`Task`." msgstr "" -#: ../../library/asyncio-stream.rst:116 -msgid "" -"The rest of the arguments are passed directly to :meth:`loop.create_server`." +msgid "The rest of the arguments are passed directly to :meth:`loop.create_server`." msgstr "" -#: ../../library/asyncio-stream.rst:121 ../../library/asyncio-stream.rst:189 -msgid "" -"The *sock* argument transfers ownership of the socket to the server created. " -"To close the socket, call the server's :meth:`~asyncio.Server.close` method." +msgid "The *sock* argument transfers ownership of the socket to the server created. To close the socket, call the server's :meth:`~asyncio.Server.close` method." msgstr "" -#: ../../library/asyncio-stream.rst:125 msgid "Added the *ssl_handshake_timeout* and *start_serving* parameters." msgstr "" -#: ../../library/asyncio-stream.rst:134 msgid "Added the *keep_alive* parameter." msgstr "" -#: ../../library/asyncio-stream.rst:139 msgid "Unix Sockets" msgstr "" -#: ../../library/asyncio-stream.rst:145 -msgid "" -"Establish a Unix socket connection and return a pair of ``(reader, writer)``." +msgid "Establish a Unix socket connection and return a pair of ``(reader, writer)``." msgstr "" -#: ../../library/asyncio-stream.rst:148 msgid "Similar to :func:`open_connection` but operates on Unix sockets." msgstr "" -#: ../../library/asyncio-stream.rst:150 msgid "See also the documentation of :meth:`loop.create_unix_connection`." msgstr "" -#: ../../library/asyncio-stream.rst:158 ../../library/asyncio-stream.rst:193 msgid "Availability" msgstr "" -#: ../../library/asyncio-stream.rst:160 -msgid "" -"Added the *ssl_handshake_timeout* parameter. The *path* parameter can now be " -"a :term:`path-like object`" +msgid "Added the *ssl_handshake_timeout* parameter. The *path* parameter can now be a :term:`path-like object`" msgstr "" -#: ../../library/asyncio-stream.rst:177 msgid "Start a Unix socket server." msgstr "" -#: ../../library/asyncio-stream.rst:179 msgid "Similar to :func:`start_server` but works with Unix sockets." msgstr "" -#: ../../library/asyncio-stream.rst:181 -msgid "" -"If *cleanup_socket* is true then the Unix socket will automatically be " -"removed from the filesystem when the server is closed, unless the socket has " -"been replaced after the server has been created." +msgid "If *cleanup_socket* is true then the Unix socket will automatically be removed from the filesystem when the server is closed, unless the socket has been replaced after the server has been created." msgstr "" -#: ../../library/asyncio-stream.rst:185 msgid "See also the documentation of :meth:`loop.create_unix_server`." msgstr "" -#: ../../library/asyncio-stream.rst:195 -msgid "" -"Added the *ssl_handshake_timeout* and *start_serving* parameters. The *path* " -"parameter can now be a :term:`path-like object`." +msgid "Added the *ssl_handshake_timeout* and *start_serving* parameters. The *path* parameter can now be a :term:`path-like object`." msgstr "" -#: ../../library/asyncio-stream.rst:205 msgid "Added the *cleanup_socket* parameter." msgstr "" -#: ../../library/asyncio-stream.rst:210 msgid "StreamReader" msgstr "" -#: ../../library/asyncio-stream.rst:214 -msgid "" -"Represents a reader object that provides APIs to read data from the IO " -"stream. As an :term:`asynchronous iterable`, the object supports " -"the :keyword:`async for` statement." +msgid "Represents a reader object that provides APIs to read data from the IO stream. As an :term:`asynchronous iterable`, the object supports the :keyword:`async for` statement." msgstr "" -#: ../../library/asyncio-stream.rst:218 -msgid "" -"It is not recommended to instantiate *StreamReader* objects directly; " -"use :func:`open_connection` and :func:`start_server` instead." +msgid "It is not recommended to instantiate *StreamReader* objects directly; use :func:`open_connection` and :func:`start_server` instead." msgstr "" -#: ../../library/asyncio-stream.rst:224 msgid "Acknowledge the EOF." msgstr "" -#: ../../library/asyncio-stream.rst:229 msgid "Read up to *n* bytes from the stream." msgstr "" -#: ../../library/asyncio-stream.rst:231 -msgid "" -"If *n* is not provided or set to ``-1``, read until EOF, then return all " -"read :class:`bytes`. If EOF was received and the internal buffer is empty, " -"return an empty ``bytes`` object." +msgid "If *n* is not provided or set to ``-1``, read until EOF, then return all read :class:`bytes`. If EOF was received and the internal buffer is empty, return an empty ``bytes`` object." msgstr "" -#: ../../library/asyncio-stream.rst:236 msgid "If *n* is ``0``, return an empty ``bytes`` object immediately." msgstr "" -#: ../../library/asyncio-stream.rst:238 -msgid "" -"If *n* is positive, return at most *n* available ``bytes`` as soon as at " -"least 1 byte is available in the internal buffer. If EOF is received before " -"any byte is read, return an empty ``bytes`` object." +msgid "If *n* is positive, return at most *n* available ``bytes`` as soon as at least 1 byte is available in the internal buffer. If EOF is received before any byte is read, return an empty ``bytes`` object." msgstr "" -#: ../../library/asyncio-stream.rst:246 -msgid "" -"Read one line, where \"line\" is a sequence of bytes ending with ``\\n``." +msgid "Read one line, where \"line\" is a sequence of bytes ending with ``\\n``." msgstr "" -#: ../../library/asyncio-stream.rst:249 -msgid "" -"If EOF is received and ``\\n`` was not found, the method returns partially " -"read data." +msgid "If EOF is received and ``\\n`` was not found, the method returns partially read data." msgstr "" -#: ../../library/asyncio-stream.rst:252 -msgid "" -"If EOF is received and the internal buffer is empty, return an empty " -"``bytes`` object." +msgid "If EOF is received and the internal buffer is empty, return an empty ``bytes`` object." msgstr "" -#: ../../library/asyncio-stream.rst:258 msgid "Read exactly *n* bytes." msgstr "" -#: ../../library/asyncio-stream.rst:260 -msgid "" -"Raise an :exc:`IncompleteReadError` if EOF is reached before *n* can be " -"read. Use the :attr:`IncompleteReadError.partial` attribute to get the " -"partially read data." +msgid "Raise an :exc:`IncompleteReadError` if EOF is reached before *n* can be read. Use the :attr:`IncompleteReadError.partial` attribute to get the partially read data." msgstr "" -#: ../../library/asyncio-stream.rst:267 msgid "Read data from the stream until *separator* is found." msgstr "" -#: ../../library/asyncio-stream.rst:269 -msgid "" -"On success, the data and separator will be removed from the internal buffer " -"(consumed). Returned data will include the separator at the end." +msgid "On success, the data and separator will be removed from the internal buffer (consumed). Returned data will include the separator at the end." msgstr "" -#: ../../library/asyncio-stream.rst:273 -msgid "" -"If the amount of data read exceeds the configured stream limit, " -"a :exc:`LimitOverrunError` exception is raised, and the data is left in the " -"internal buffer and can be read again." +msgid "If the amount of data read exceeds the configured stream limit, a :exc:`LimitOverrunError` exception is raised, and the data is left in the internal buffer and can be read again." msgstr "" -#: ../../library/asyncio-stream.rst:277 -msgid "" -"If EOF is reached before the complete separator is found, " -"an :exc:`IncompleteReadError` exception is raised, and the internal buffer " -"is reset. The :attr:`IncompleteReadError.partial` attribute may contain a " -"portion of the separator." +msgid "If EOF is reached before the complete separator is found, an :exc:`IncompleteReadError` exception is raised, and the internal buffer is reset. The :attr:`IncompleteReadError.partial` attribute may contain a portion of the separator." msgstr "" -#: ../../library/asyncio-stream.rst:282 -msgid "" -"The *separator* may also be a tuple of separators. In this case the return " -"value will be the shortest possible that has any separator as the suffix. " -"For the purposes of :exc:`LimitOverrunError`, the shortest possible " -"separator is considered to be the one that matched." +msgid "The *separator* may also be a tuple of separators. In this case the return value will be the shortest possible that has any separator as the suffix. For the purposes of :exc:`LimitOverrunError`, the shortest possible separator is considered to be the one that matched." msgstr "" -#: ../../library/asyncio-stream.rst:292 msgid "The *separator* parameter may now be a :class:`tuple` of separators." msgstr "" -#: ../../library/asyncio-stream.rst:297 msgid "Return ``True`` if the buffer is empty and :meth:`feed_eof` was called." msgstr "" -#: ../../library/asyncio-stream.rst:302 msgid "StreamWriter" msgstr "" -#: ../../library/asyncio-stream.rst:306 -msgid "" -"Represents a writer object that provides APIs to write data to the IO stream." +msgid "Represents a writer object that provides APIs to write data to the IO stream." msgstr "" -#: ../../library/asyncio-stream.rst:309 -msgid "" -"It is not recommended to instantiate *StreamWriter* objects directly; " -"use :func:`open_connection` and :func:`start_server` instead." +msgid "It is not recommended to instantiate *StreamWriter* objects directly; use :func:`open_connection` and :func:`start_server` instead." msgstr "" -#: ../../library/asyncio-stream.rst:315 -msgid "" -"The method attempts to write the *data* to the underlying socket " -"immediately. If that fails, the data is queued in an internal write buffer " -"until it can be sent." +msgid "The method attempts to write the *data* to the underlying socket immediately. If that fails, the data is queued in an internal write buffer until it can be sent." msgstr "" -#: ../../library/asyncio-stream.rst:319 -msgid "" -"The *data* buffer should be a bytes, bytearray, or C-contiguous one-" -"dimensional memoryview object." +msgid "The *data* buffer should be a bytes, bytearray, or C-contiguous one-dimensional memoryview object." msgstr "" -#: ../../library/asyncio-stream.rst:322 ../../library/asyncio-stream.rst:335 msgid "The method should be used along with the ``drain()`` method::" msgstr "" -#: ../../library/asyncio-stream.rst:324 msgid "" "stream.write(data)\n" "await stream.drain()" msgstr "" -#: ../../library/asyncio-stream.rst:330 -msgid "" -"The method writes a list (or any iterable) of bytes to the underlying socket " -"immediately. If that fails, the data is queued in an internal write buffer " -"until it can be sent." +msgid "The method writes a list (or any iterable) of bytes to the underlying socket immediately. If that fails, the data is queued in an internal write buffer until it can be sent." msgstr "" -#: ../../library/asyncio-stream.rst:337 msgid "" "stream.writelines(lines)\n" "await stream.drain()" msgstr "" -#: ../../library/asyncio-stream.rst:342 msgid "The method closes the stream and the underlying socket." msgstr "" -#: ../../library/asyncio-stream.rst:344 -msgid "" -"The method should be used, though not mandatory, along with the " -"``wait_closed()`` method::" +msgid "The method should be used, though not mandatory, along with the ``wait_closed()`` method::" msgstr "" -#: ../../library/asyncio-stream.rst:347 msgid "" "stream.close()\n" "await stream.wait_closed()" msgstr "" -#: ../../library/asyncio-stream.rst:352 -msgid "" -"Return ``True`` if the underlying transport supports the :meth:`write_eof` " -"method, ``False`` otherwise." +msgid "Return ``True`` if the underlying transport supports the :meth:`write_eof` method, ``False`` otherwise." msgstr "" -#: ../../library/asyncio-stream.rst:357 -msgid "" -"Close the write end of the stream after the buffered write data is flushed." +msgid "Close the write end of the stream after the buffered write data is flushed." msgstr "" -#: ../../library/asyncio-stream.rst:362 msgid "Return the underlying asyncio transport." msgstr "" -#: ../../library/asyncio-stream.rst:366 -msgid "" -"Access optional transport information; " -"see :meth:`BaseTransport.get_extra_info` for details." +msgid "Access optional transport information; see :meth:`BaseTransport.get_extra_info` for details." msgstr "" -#: ../../library/asyncio-stream.rst:372 msgid "Wait until it is appropriate to resume writing to the stream. Example::" msgstr "" -#: ../../library/asyncio-stream.rst:375 msgid "" "writer.write(data)\n" "await writer.drain()" msgstr "" -#: ../../library/asyncio-stream.rst:378 -msgid "" -"This is a flow control method that interacts with the underlying IO write " -"buffer. When the size of the buffer reaches the high watermark, *drain()* " -"blocks until the size of the buffer is drained down to the low watermark and " -"writing can be resumed. When there is nothing to wait for, " -"the :meth:`drain` returns immediately." +msgid "This is a flow control method that interacts with the underlying IO write buffer. When the size of the buffer reaches the high watermark, *drain()* blocks until the size of the buffer is drained down to the low watermark and writing can be resumed. When there is nothing to wait for, the :meth:`drain` returns immediately." msgstr "" -#: ../../library/asyncio-stream.rst:387 -msgid "" -"When the write buffer is below the high watermark, :meth:`drain` returns " -"immediately without yielding to the event loop. As a result, code which " -"repeatedly calls ``write()`` followed by ``await drain()`` may prevent other " -"tasks from running. To prevent blocking behavior, yield to the event loop " -"explicitly with ``await asyncio.sleep(0)`` (see :func:`asyncio.sleep`)." +msgid "When the write buffer is below the high watermark, :meth:`drain` returns immediately without yielding to the event loop. As a result, code which repeatedly calls ``write()`` followed by ``await drain()`` may prevent other tasks from running. To prevent blocking behavior, yield to the event loop explicitly with ``await asyncio.sleep(0)`` (see :func:`asyncio.sleep`)." msgstr "" -#: ../../library/asyncio-stream.rst:399 msgid "Upgrade an existing stream-based connection to TLS." msgstr "" -#: ../../library/asyncio-stream.rst:401 msgid "Parameters:" msgstr "" -#: ../../library/asyncio-stream.rst:403 msgid "*sslcontext*: a configured instance of :class:`~ssl.SSLContext`." msgstr "" -#: ../../library/asyncio-stream.rst:405 -msgid "" -"*server_hostname*: sets or overrides the host name that the target server's " -"certificate will be matched against." +msgid "*server_hostname*: sets or overrides the host name that the target server's certificate will be matched against." msgstr "" -#: ../../library/asyncio-stream.rst:408 -msgid "" -"*ssl_handshake_timeout* is the time in seconds to wait for the TLS handshake " -"to complete before aborting the connection. ``60.0`` seconds if ``None`` " -"(default)." +msgid "*ssl_handshake_timeout* is the time in seconds to wait for the TLS handshake to complete before aborting the connection. ``60.0`` seconds if ``None`` (default)." msgstr "" -#: ../../library/asyncio-stream.rst:412 -msgid "" -"*ssl_shutdown_timeout* is the time in seconds to wait for the SSL shutdown " -"to complete before aborting the connection. ``30.0`` seconds if ``None`` " -"(default)." +msgid "*ssl_shutdown_timeout* is the time in seconds to wait for the SSL shutdown to complete before aborting the connection. ``30.0`` seconds if ``None`` (default)." msgstr "" -#: ../../library/asyncio-stream.rst:424 -msgid "" -"Return ``True`` if the stream is closed or in the process of being closed." +msgid "Return ``True`` if the stream is closed or in the process of being closed." msgstr "" -#: ../../library/asyncio-stream.rst:432 msgid "Wait until the stream is closed." msgstr "" -#: ../../library/asyncio-stream.rst:434 -msgid "" -"Should be called after :meth:`close` to wait until the underlying connection " -"is closed, ensuring that all data has been flushed before e.g. exiting the " -"program." +msgid "Should be called after :meth:`close` to wait until the underlying connection is closed, ensuring that all data has been flushed before e.g. exiting the program." msgstr "" -#: ../../library/asyncio-stream.rst:442 msgid "Examples" msgstr "" -#: ../../library/asyncio-stream.rst:447 msgid "TCP echo client using streams" msgstr "" -#: ../../library/asyncio-stream.rst:449 msgid "TCP echo client using the :func:`asyncio.open_connection` function::" msgstr "" -#: ../../library/asyncio-stream.rst:473 -msgid "" -"The :ref:`TCP echo client protocol " -"` example uses the low-" -"level :meth:`loop.create_connection` method." +msgid "The :ref:`TCP echo client protocol ` example uses the low-level :meth:`loop.create_connection` method." msgstr "" -#: ../../library/asyncio-stream.rst:480 msgid "TCP echo server using streams" msgstr "" -#: ../../library/asyncio-stream.rst:482 msgid "TCP echo server using the :func:`asyncio.start_server` function::" msgstr "" -#: ../../library/asyncio-stream.rst:484 msgid "" "import asyncio\n" "\n" @@ -559,23 +354,15 @@ msgid "" "asyncio.run(main())" msgstr "" -#: ../../library/asyncio-stream.rst:516 -msgid "" -"The :ref:`TCP echo server protocol " -"` example uses " -"the :meth:`loop.create_server` method." +msgid "The :ref:`TCP echo server protocol ` example uses the :meth:`loop.create_server` method." msgstr "" -#: ../../library/asyncio-stream.rst:521 msgid "Get HTTP headers" msgstr "" -#: ../../library/asyncio-stream.rst:523 -msgid "" -"Simple example querying HTTP headers of the URL passed on the command line::" +msgid "Simple example querying HTTP headers of the URL passed on the command line::" msgstr "" -#: ../../library/asyncio-stream.rst:525 msgid "" "import asyncio\n" "import urllib.parse\n" @@ -614,33 +401,24 @@ msgid "" "asyncio.run(print_http_headers(url))" msgstr "" -#: ../../library/asyncio-stream.rst:562 msgid "Usage::" msgstr "" -#: ../../library/asyncio-stream.rst:564 msgid "python example.py http://example.com/path/page.html" msgstr "" -#: ../../library/asyncio-stream.rst:566 msgid "or with HTTPS::" msgstr "" -#: ../../library/asyncio-stream.rst:568 msgid "python example.py https://example.com/path/page.html" msgstr "" -#: ../../library/asyncio-stream.rst:574 msgid "Register an open socket to wait for data using streams" msgstr "" -#: ../../library/asyncio-stream.rst:576 -msgid "" -"Coroutine waiting until a socket receives data using " -"the :func:`open_connection` function::" +msgid "Coroutine waiting until a socket receives data using the :func:`open_connection` function::" msgstr "" -#: ../../library/asyncio-stream.rst:579 msgid "" "import asyncio\n" "import socket\n" @@ -673,16 +451,8 @@ msgid "" "asyncio.run(wait_for_data())" msgstr "" -#: ../../library/asyncio-stream.rst:611 -msgid "" -"The :ref:`register an open socket to wait for data using a protocol " -"` example uses a low-level protocol and " -"the :meth:`loop.create_connection` method." +msgid "The :ref:`register an open socket to wait for data using a protocol ` example uses a low-level protocol and the :meth:`loop.create_connection` method." msgstr "" -#: ../../library/asyncio-stream.rst:615 -msgid "" -"The :ref:`watch a file descriptor for read events " -"` example uses the low-" -"level :meth:`loop.add_reader` method to watch a file descriptor." +msgid "The :ref:`watch a file descriptor for read events ` example uses the low-level :meth:`loop.add_reader` method to watch a file descriptor." msgstr "" diff --git a/library/asyncio-subprocess.po b/library/asyncio-subprocess.po index 2c9d863f..9bac6e1d 100644 --- a/library/asyncio-subprocess.po +++ b/library/asyncio-subprocess.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:55+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -25,29 +25,18 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/asyncio-subprocess.rst:7 msgid "Subprocesses" msgstr "" -#: ../../library/asyncio-subprocess.rst:9 -msgid "" -"**Source code:** :source:`Lib/asyncio/subprocess.py`, :source:`Lib/asyncio/" -"base_subprocess.py`" +msgid "**Source code:** :source:`Lib/asyncio/subprocess.py`, :source:`Lib/asyncio/base_subprocess.py`" msgstr "" -#: ../../library/asyncio-subprocess.rst:14 -msgid "" -"This section describes high-level async/await asyncio APIs to create and " -"manage subprocesses." +msgid "This section describes high-level async/await asyncio APIs to create and manage subprocesses." msgstr "" -#: ../../library/asyncio-subprocess.rst:19 -msgid "" -"Here's an example of how asyncio can run a shell command and obtain its " -"result::" +msgid "Here's an example of how asyncio can run a shell command and obtain its result::" msgstr "" -#: ../../library/asyncio-subprocess.rst:22 msgid "" "import asyncio\n" "\n" @@ -68,26 +57,18 @@ msgid "" "asyncio.run(run('ls /zzz'))" msgstr "" -#: ../../library/asyncio-subprocess.rst:40 msgid "will print::" msgstr "" -#: ../../library/asyncio-subprocess.rst:42 msgid "" "['ls /zzz' exited with 1]\n" "[stderr]\n" "ls: /zzz: No such file or directory" msgstr "" -#: ../../library/asyncio-subprocess.rst:46 -msgid "" -"Because all asyncio subprocess functions are asynchronous and asyncio " -"provides many tools to work with such functions, it is easy to execute and " -"monitor multiple subprocesses in parallel. It is indeed trivial to modify " -"the above example to run several commands simultaneously::" +msgid "Because all asyncio subprocess functions are asynchronous and asyncio provides many tools to work with such functions, it is easy to execute and monitor multiple subprocesses in parallel. It is indeed trivial to modify the above example to run several commands simultaneously::" msgstr "" -#: ../../library/asyncio-subprocess.rst:51 msgid "" "async def main():\n" " await asyncio.gather(\n" @@ -97,396 +78,213 @@ msgid "" "asyncio.run(main())" msgstr "" -#: ../../library/asyncio-subprocess.rst:58 msgid "See also the `Examples`_ subsection." msgstr "" -#: ../../library/asyncio-subprocess.rst:62 msgid "Creating Subprocesses" msgstr "" -#: ../../library/asyncio-subprocess.rst:68 msgid "Create a subprocess." msgstr "" -#: ../../library/asyncio-subprocess.rst:70 -#: ../../library/asyncio-subprocess.rst:92 -msgid "" -"The *limit* argument sets the buffer limit for :class:`StreamReader` " -"wrappers for :attr:`~asyncio.subprocess.Process.stdout` " -"and :attr:`~asyncio.subprocess.Process.stderr` (if :const:`subprocess.PIPE` " -"is passed to *stdout* and *stderr* arguments)." +msgid "The *limit* argument sets the buffer limit for :class:`StreamReader` wrappers for :attr:`~asyncio.subprocess.Process.stdout` and :attr:`~asyncio.subprocess.Process.stderr` (if :const:`subprocess.PIPE` is passed to *stdout* and *stderr* arguments)." msgstr "" -#: ../../library/asyncio-subprocess.rst:74 -#: ../../library/asyncio-subprocess.rst:96 msgid "Return a :class:`~asyncio.subprocess.Process` instance." msgstr "" -#: ../../library/asyncio-subprocess.rst:76 -msgid "" -"See the documentation of :meth:`loop.subprocess_exec` for other parameters." +msgid "See the documentation of :meth:`loop.subprocess_exec` for other parameters." msgstr "" -#: ../../library/asyncio-subprocess.rst:79 -#: ../../library/asyncio-subprocess.rst:101 -msgid "" -"If the process object is garbage collected while the process is still " -"running, the child process will be killed." +msgid "If the process object is garbage collected while the process is still running, the child process will be killed." msgstr "" -#: ../../library/asyncio-subprocess.rst:82 -#: ../../library/asyncio-subprocess.rst:113 msgid "Removed the *loop* parameter." msgstr "" -#: ../../library/asyncio-subprocess.rst:90 msgid "Run the *cmd* shell command." msgstr "" -#: ../../library/asyncio-subprocess.rst:98 -msgid "" -"See the documentation of :meth:`loop.subprocess_shell` for other parameters." +msgid "See the documentation of :meth:`loop.subprocess_shell` for other parameters." msgstr "" -#: ../../library/asyncio-subprocess.rst:106 -msgid "" -"It is the application's responsibility to ensure that all whitespace and " -"special characters are quoted appropriately to avoid `shell injection " -"`_ " -"vulnerabilities. The :func:`shlex.quote` function can be used to properly " -"escape whitespace and special shell characters in strings that are going to " -"be used to construct shell commands." +msgid "It is the application's responsibility to ensure that all whitespace and special characters are quoted appropriately to avoid `shell injection `_ vulnerabilities. The :func:`shlex.quote` function can be used to properly escape whitespace and special shell characters in strings that are going to be used to construct shell commands." msgstr "" -#: ../../library/asyncio-subprocess.rst:118 -msgid "" -"Subprocesses are available for Windows if a :class:`ProactorEventLoop` is " -"used. See :ref:`Subprocess Support on Windows ` " -"for details." +msgid "Subprocesses are available for Windows if a :class:`ProactorEventLoop` is used. See :ref:`Subprocess Support on Windows ` for details." msgstr "" -#: ../../library/asyncio-subprocess.rst:124 -msgid "" -"asyncio also has the following *low-level* APIs to work with " -"subprocesses: :meth:`loop.subprocess_exec`, :meth:`loop.subprocess_shell`, :meth:`loop.connect_read_pipe`, :meth:`loop.connect_write_pipe`, " -"as well as the :ref:`Subprocess Transports ` " -"and :ref:`Subprocess Protocols `." +msgid "asyncio also has the following *low-level* APIs to work with subprocesses: :meth:`loop.subprocess_exec`, :meth:`loop.subprocess_shell`, :meth:`loop.connect_read_pipe`, :meth:`loop.connect_write_pipe`, as well as the :ref:`Subprocess Transports ` and :ref:`Subprocess Protocols `." msgstr "" -#: ../../library/asyncio-subprocess.rst:132 msgid "Constants" msgstr "" -#: ../../library/asyncio-subprocess.rst:137 msgid "Can be passed to the *stdin*, *stdout* or *stderr* parameters." msgstr "" -#: ../../library/asyncio-subprocess.rst:139 -msgid "" -"If *PIPE* is passed to *stdin* argument, the :attr:`Process.stdin " -"` attribute will point to " -"a :class:`~asyncio.StreamWriter` instance." +msgid "If *PIPE* is passed to *stdin* argument, the :attr:`Process.stdin ` attribute will point to a :class:`~asyncio.StreamWriter` instance." msgstr "" -#: ../../library/asyncio-subprocess.rst:143 -msgid "" -"If *PIPE* is passed to *stdout* or *stderr* arguments, " -"the :attr:`Process.stdout ` " -"and :attr:`Process.stderr ` attributes " -"will point to :class:`~asyncio.StreamReader` instances." +msgid "If *PIPE* is passed to *stdout* or *stderr* arguments, the :attr:`Process.stdout ` and :attr:`Process.stderr ` attributes will point to :class:`~asyncio.StreamReader` instances." msgstr "" -#: ../../library/asyncio-subprocess.rst:151 -msgid "" -"Special value that can be used as the *stderr* argument and indicates that " -"standard error should be redirected into standard output." +msgid "Special value that can be used as the *stderr* argument and indicates that standard error should be redirected into standard output." msgstr "" -#: ../../library/asyncio-subprocess.rst:157 -msgid "" -"Special value that can be used as the *stdin*, *stdout* or *stderr* argument " -"to process creation functions. It indicates that the special " -"file :data:`os.devnull` will be used for the corresponding subprocess stream." +msgid "Special value that can be used as the *stdin*, *stdout* or *stderr* argument to process creation functions. It indicates that the special file :data:`os.devnull` will be used for the corresponding subprocess stream." msgstr "" -#: ../../library/asyncio-subprocess.rst:163 msgid "Interacting with Subprocesses" msgstr "" -#: ../../library/asyncio-subprocess.rst:165 -msgid "" -"Both :func:`create_subprocess_exec` and :func:`create_subprocess_shell` " -"functions return instances of the *Process* class. *Process* is a high-" -"level wrapper that allows communicating with subprocesses and watching for " -"their completion." +msgid "Both :func:`create_subprocess_exec` and :func:`create_subprocess_shell` functions return instances of the *Process* class. *Process* is a high-level wrapper that allows communicating with subprocesses and watching for their completion." msgstr "" -#: ../../library/asyncio-subprocess.rst:173 -msgid "" -"An object that wraps OS processes created by " -"the :func:`~asyncio.create_subprocess_exec` " -"and :func:`~asyncio.create_subprocess_shell` functions." +msgid "An object that wraps OS processes created by the :func:`~asyncio.create_subprocess_exec` and :func:`~asyncio.create_subprocess_shell` functions." msgstr "" -#: ../../library/asyncio-subprocess.rst:177 -msgid "" -"This class is designed to have a similar API to " -"the :class:`subprocess.Popen` class, but there are some notable differences:" +msgid "This class is designed to have a similar API to the :class:`subprocess.Popen` class, but there are some notable differences:" msgstr "" -#: ../../library/asyncio-subprocess.rst:181 -msgid "" -"unlike Popen, Process instances do not have an equivalent to " -"the :meth:`~subprocess.Popen.poll` method;" +msgid "unlike Popen, Process instances do not have an equivalent to the :meth:`~subprocess.Popen.poll` method;" msgstr "" -#: ../../library/asyncio-subprocess.rst:184 -msgid "" -"the :meth:`~asyncio.subprocess.Process.communicate` " -"and :meth:`~asyncio.subprocess.Process.wait` methods don't have a *timeout* " -"parameter: use the :func:`~asyncio.wait_for` function;" +msgid "the :meth:`~asyncio.subprocess.Process.communicate` and :meth:`~asyncio.subprocess.Process.wait` methods don't have a *timeout* parameter: use the :func:`~asyncio.wait_for` function;" msgstr "" -#: ../../library/asyncio-subprocess.rst:188 -msgid "" -"the :meth:`Process.wait() ` method is " -"asynchronous, whereas :meth:`subprocess.Popen.wait` method is implemented as " -"a blocking busy loop;" +msgid "the :meth:`Process.wait() ` method is asynchronous, whereas :meth:`subprocess.Popen.wait` method is implemented as a blocking busy loop;" msgstr "" -#: ../../library/asyncio-subprocess.rst:192 msgid "the *universal_newlines* parameter is not supported." msgstr "" -#: ../../library/asyncio-subprocess.rst:194 msgid "This class is :ref:`not thread safe `." msgstr "" -#: ../../library/asyncio-subprocess.rst:196 -msgid "" -"See also the :ref:`Subprocess and Threads ` " -"section." +msgid "See also the :ref:`Subprocess and Threads ` section." msgstr "" -#: ../../library/asyncio-subprocess.rst:202 msgid "Wait for the child process to terminate." msgstr "" -#: ../../library/asyncio-subprocess.rst:204 msgid "Set and return the :attr:`returncode` attribute." msgstr "" -#: ../../library/asyncio-subprocess.rst:208 -msgid "" -"This method can deadlock when using ``stdout=PIPE`` or ``stderr=PIPE`` and " -"the child process generates so much output that it blocks waiting for the OS " -"pipe buffer to accept more data. Use the :meth:`communicate` method when " -"using pipes to avoid this condition." +msgid "This method can deadlock when using ``stdout=PIPE`` or ``stderr=PIPE`` and the child process generates so much output that it blocks waiting for the OS pipe buffer to accept more data. Use the :meth:`communicate` method when using pipes to avoid this condition." msgstr "" -#: ../../library/asyncio-subprocess.rst:217 msgid "Interact with process:" msgstr "" -#: ../../library/asyncio-subprocess.rst:219 msgid "send data to *stdin* (if *input* is not ``None``);" msgstr "" -#: ../../library/asyncio-subprocess.rst:220 msgid "closes *stdin*;" msgstr "" -#: ../../library/asyncio-subprocess.rst:221 msgid "read data from *stdout* and *stderr*, until EOF is reached;" msgstr "" -#: ../../library/asyncio-subprocess.rst:222 msgid "wait for process to terminate." msgstr "" -#: ../../library/asyncio-subprocess.rst:224 -msgid "" -"The optional *input* argument is the data (:class:`bytes` object) that will " -"be sent to the child process." +msgid "The optional *input* argument is the data (:class:`bytes` object) that will be sent to the child process." msgstr "" -#: ../../library/asyncio-subprocess.rst:227 msgid "Return a tuple ``(stdout_data, stderr_data)``." msgstr "" -#: ../../library/asyncio-subprocess.rst:229 -msgid "" -"If either :exc:`BrokenPipeError` or :exc:`ConnectionResetError` exception is " -"raised when writing *input* into *stdin*, the exception is ignored. This " -"condition occurs when the process exits before all data are written into " -"*stdin*." +msgid "If either :exc:`BrokenPipeError` or :exc:`ConnectionResetError` exception is raised when writing *input* into *stdin*, the exception is ignored. This condition occurs when the process exits before all data are written into *stdin*." msgstr "" -#: ../../library/asyncio-subprocess.rst:234 -msgid "" -"If it is desired to send data to the process' *stdin*, the process needs to " -"be created with ``stdin=PIPE``. Similarly, to get anything other than " -"``None`` in the result tuple, the process has to be created with " -"``stdout=PIPE`` and/or ``stderr=PIPE`` arguments." +msgid "If it is desired to send data to the process' *stdin*, the process needs to be created with ``stdin=PIPE``. Similarly, to get anything other than ``None`` in the result tuple, the process has to be created with ``stdout=PIPE`` and/or ``stderr=PIPE`` arguments." msgstr "" -#: ../../library/asyncio-subprocess.rst:240 -msgid "" -"Note, that the data read is buffered in memory, so do not use this method if " -"the data size is large or unlimited." +msgid "Note, that the data read is buffered in memory, so do not use this method if the data size is large or unlimited." msgstr "" -#: ../../library/asyncio-subprocess.rst:245 msgid "*stdin* gets closed when ``input=None`` too." msgstr "" -#: ../../library/asyncio-subprocess.rst:249 msgid "Sends the signal *signal* to the child process." msgstr "" -#: ../../library/asyncio-subprocess.rst:253 -msgid "" -"On Windows, :py:const:`~signal.SIGTERM` is an alias for :meth:`terminate`. " -"``CTRL_C_EVENT`` and ``CTRL_BREAK_EVENT`` can be sent to processes started " -"with a *creationflags* parameter which includes ``CREATE_NEW_PROCESS_GROUP``." +msgid "On Windows, :py:const:`~signal.SIGTERM` is an alias for :meth:`terminate`. ``CTRL_C_EVENT`` and ``CTRL_BREAK_EVENT`` can be sent to processes started with a *creationflags* parameter which includes ``CREATE_NEW_PROCESS_GROUP``." msgstr "" -#: ../../library/asyncio-subprocess.rst:260 msgid "Stop the child process." msgstr "" -#: ../../library/asyncio-subprocess.rst:262 -msgid "" -"On POSIX systems this method sends :py:const:`~signal.SIGTERM` to the child " -"process." +msgid "On POSIX systems this method sends :py:const:`~signal.SIGTERM` to the child process." msgstr "" -#: ../../library/asyncio-subprocess.rst:265 -msgid "" -"On Windows the Win32 API function :c:func:`!TerminateProcess` is called to " -"stop the child process." +msgid "On Windows the Win32 API function :c:func:`!TerminateProcess` is called to stop the child process." msgstr "" -#: ../../library/asyncio-subprocess.rst:270 msgid "Kill the child process." msgstr "" -#: ../../library/asyncio-subprocess.rst:272 -msgid "" -"On POSIX systems this method sends :py:data:`~signal.SIGKILL` to the child " -"process." +msgid "On POSIX systems this method sends :py:data:`~signal.SIGKILL` to the child process." msgstr "" -#: ../../library/asyncio-subprocess.rst:275 msgid "On Windows this method is an alias for :meth:`terminate`." msgstr "" -#: ../../library/asyncio-subprocess.rst:279 -msgid "" -"Standard input stream (:class:`~asyncio.StreamWriter`) or ``None`` if the " -"process was created with ``stdin=None``." +msgid "Standard input stream (:class:`~asyncio.StreamWriter`) or ``None`` if the process was created with ``stdin=None``." msgstr "" -#: ../../library/asyncio-subprocess.rst:284 -msgid "" -"Standard output stream (:class:`~asyncio.StreamReader`) or ``None`` if the " -"process was created with ``stdout=None``." +msgid "Standard output stream (:class:`~asyncio.StreamReader`) or ``None`` if the process was created with ``stdout=None``." msgstr "" -#: ../../library/asyncio-subprocess.rst:289 -msgid "" -"Standard error stream (:class:`~asyncio.StreamReader`) or ``None`` if the " -"process was created with ``stderr=None``." +msgid "Standard error stream (:class:`~asyncio.StreamReader`) or ``None`` if the process was created with ``stderr=None``." msgstr "" -#: ../../library/asyncio-subprocess.rst:294 -msgid "" -"Use the :meth:`communicate` method rather than :attr:`process.stdin.write() " -"`, :attr:`await process.stdout.read() ` or :attr:`await " -"process.stderr.read() `. This avoids deadlocks due to streams " -"pausing reading or writing and blocking the child process." +msgid "Use the :meth:`communicate` method rather than :attr:`process.stdin.write() `, :attr:`await process.stdout.read() ` or :attr:`await process.stderr.read() `. This avoids deadlocks due to streams pausing reading or writing and blocking the child process." msgstr "" -#: ../../library/asyncio-subprocess.rst:303 msgid "Process identification number (PID)." msgstr "" -#: ../../library/asyncio-subprocess.rst:305 -msgid "" -"Note that for processes created by " -"the :func:`~asyncio.create_subprocess_shell` function, this attribute is the " -"PID of the spawned shell." +msgid "Note that for processes created by the :func:`~asyncio.create_subprocess_shell` function, this attribute is the PID of the spawned shell." msgstr "" -#: ../../library/asyncio-subprocess.rst:310 msgid "Return code of the process when it exits." msgstr "" -#: ../../library/asyncio-subprocess.rst:312 msgid "A ``None`` value indicates that the process has not terminated yet." msgstr "" -#: ../../library/asyncio-subprocess.rst:314 -msgid "" -"For processes created with :func:`~asyncio.create_subprocess_exec`, a " -"negative value ``-N`` indicates that the child was terminated by signal " -"``N`` (POSIX only)." +msgid "For processes created with :func:`~asyncio.create_subprocess_exec`, a negative value ``-N`` indicates that the child was terminated by signal ``N`` (POSIX only)." msgstr "" -#: ../../library/asyncio-subprocess.rst:318 -msgid "" -"For processes created with :func:`~asyncio.create_subprocess_shell`, the " -"return code reflects the exit status of the shell itself (e.g. ``/bin/sh``), " -"which may map signals to codes such as ``128+N``. See the documentation of " -"the shell (for example, the Bash manual's Exit Status) for details." +msgid "For processes created with :func:`~asyncio.create_subprocess_shell`, the return code reflects the exit status of the shell itself (e.g. ``/bin/sh``), which may map signals to codes such as ``128+N``. See the documentation of the shell (for example, the Bash manual's Exit Status) for details." msgstr "" -#: ../../library/asyncio-subprocess.rst:329 msgid "Subprocess and Threads" msgstr "" -#: ../../library/asyncio-subprocess.rst:331 -msgid "" -"Standard asyncio event loop supports running subprocesses from different " -"threads by default." +msgid "Standard asyncio event loop supports running subprocesses from different threads by default." msgstr "" -#: ../../library/asyncio-subprocess.rst:334 -msgid "" -"On Windows subprocesses are provided by :class:`ProactorEventLoop` only " -"(default), :class:`SelectorEventLoop` has no subprocess support." +msgid "On Windows subprocesses are provided by :class:`ProactorEventLoop` only (default), :class:`SelectorEventLoop` has no subprocess support." msgstr "" -#: ../../library/asyncio-subprocess.rst:337 -msgid "" -"Note that alternative event loop implementations might have own limitations; " -"please refer to their documentation." +msgid "Note that alternative event loop implementations might have own limitations; please refer to their documentation." msgstr "" -#: ../../library/asyncio-subprocess.rst:342 -msgid "" -"The :ref:`Concurrency and multithreading in asyncio ` section." +msgid "The :ref:`Concurrency and multithreading in asyncio ` section." msgstr "" -#: ../../library/asyncio-subprocess.rst:347 msgid "Examples" msgstr "" -#: ../../library/asyncio-subprocess.rst:349 -msgid "" -"An example using the :class:`~asyncio.subprocess.Process` class to control a " -"subprocess and the :class:`StreamReader` class to read from its standard " -"output." +msgid "An example using the :class:`~asyncio.subprocess.Process` class to control a subprocess and the :class:`StreamReader` class to read from its standard output." msgstr "" -#: ../../library/asyncio-subprocess.rst:355 -msgid "" -"The subprocess is created by the :func:`create_subprocess_exec` function::" +msgid "The subprocess is created by the :func:`create_subprocess_exec` function::" msgstr "" -#: ../../library/asyncio-subprocess.rst:358 msgid "" "import asyncio\n" "import sys\n" @@ -512,8 +310,5 @@ msgid "" "print(f\"Current date: {date}\")" msgstr "" -#: ../../library/asyncio-subprocess.rst:382 -msgid "" -"See also the :ref:`same example ` written " -"using low-level APIs." +msgid "See also the :ref:`same example ` written using low-level APIs." msgstr "" diff --git a/library/asyncio-sync.po b/library/asyncio-sync.po index 3b8a5f4d..c67300a5 100644 --- a/library/asyncio-sync.po +++ b/library/asyncio-sync.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:55+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,80 +23,54 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/asyncio-sync.rst:7 msgid "Synchronization Primitives" msgstr "" -#: ../../library/asyncio-sync.rst:9 msgid "**Source code:** :source:`Lib/asyncio/locks.py`" msgstr "" -#: ../../library/asyncio-sync.rst:13 -msgid "" -"asyncio synchronization primitives are designed to be similar to those of " -"the :mod:`threading` module with two important caveats:" +msgid "asyncio synchronization primitives are designed to be similar to those of the :mod:`threading` module with two important caveats:" msgstr "" -#: ../../library/asyncio-sync.rst:16 -msgid "" -"asyncio primitives are not thread-safe, therefore they should not be used " -"for OS thread synchronization (use :mod:`threading` for that);" +msgid "asyncio primitives are not thread-safe, therefore they should not be used for OS thread synchronization (use :mod:`threading` for that);" msgstr "" -#: ../../library/asyncio-sync.rst:20 -msgid "" -"methods of these synchronization primitives do not accept the *timeout* " -"argument; use the :func:`asyncio.wait_for` function to perform operations " -"with timeouts." +msgid "methods of these synchronization primitives do not accept the *timeout* argument; use the :func:`asyncio.wait_for` function to perform operations with timeouts." msgstr "" -#: ../../library/asyncio-sync.rst:24 msgid "asyncio has the following basic synchronization primitives:" msgstr "" -#: ../../library/asyncio-sync.rst:26 msgid ":class:`Lock`" msgstr "" -#: ../../library/asyncio-sync.rst:27 msgid ":class:`Event`" msgstr "" -#: ../../library/asyncio-sync.rst:28 msgid ":class:`Condition`" msgstr "" -#: ../../library/asyncio-sync.rst:29 msgid ":class:`Semaphore`" msgstr "" -#: ../../library/asyncio-sync.rst:30 msgid ":class:`BoundedSemaphore`" msgstr "" -#: ../../library/asyncio-sync.rst:31 msgid ":class:`Barrier`" msgstr "" -#: ../../library/asyncio-sync.rst:38 msgid "Lock" msgstr "" -#: ../../library/asyncio-sync.rst:42 msgid "Implements a mutex lock for asyncio tasks. Not thread-safe." msgstr "" -#: ../../library/asyncio-sync.rst:44 -msgid "" -"An asyncio lock can be used to guarantee exclusive access to a shared " -"resource." +msgid "An asyncio lock can be used to guarantee exclusive access to a shared resource." msgstr "" -#: ../../library/asyncio-sync.rst:47 msgid "The preferred way to use a Lock is an :keyword:`async with` statement::" msgstr "" -#: ../../library/asyncio-sync.rst:50 msgid "" "lock = asyncio.Lock()\n" "\n" @@ -105,12 +79,9 @@ msgid "" " # access shared state" msgstr "" -#: ../../library/asyncio-sync.rst:56 ../../library/asyncio-sync.rst:201 -#: ../../library/asyncio-sync.rst:309 msgid "which is equivalent to::" msgstr "" -#: ../../library/asyncio-sync.rst:58 msgid "" "lock = asyncio.Lock()\n" "\n" @@ -122,77 +93,48 @@ msgid "" " lock.release()" msgstr "" -#: ../../library/asyncio-sync.rst:67 ../../library/asyncio-sync.rst:113 -#: ../../library/asyncio-sync.rst:189 ../../library/asyncio-sync.rst:297 -#: ../../library/asyncio-sync.rst:353 msgid "Removed the *loop* parameter." msgstr "" -#: ../../library/asyncio-sync.rst:73 msgid "Acquire the lock." msgstr "" -#: ../../library/asyncio-sync.rst:75 -msgid "" -"This method waits until the lock is *unlocked*, sets it to *locked* and " -"returns ``True``." +msgid "This method waits until the lock is *unlocked*, sets it to *locked* and returns ``True``." msgstr "" -#: ../../library/asyncio-sync.rst:78 -msgid "" -"When more than one coroutine is blocked in :meth:`acquire` waiting for the " -"lock to be unlocked, only one coroutine eventually proceeds." +msgid "When more than one coroutine is blocked in :meth:`acquire` waiting for the lock to be unlocked, only one coroutine eventually proceeds." msgstr "" -#: ../../library/asyncio-sync.rst:82 -msgid "" -"Acquiring a lock is *fair*: the coroutine that proceeds will be the first " -"coroutine that started waiting on the lock." +msgid "Acquiring a lock is *fair*: the coroutine that proceeds will be the first coroutine that started waiting on the lock." msgstr "" -#: ../../library/asyncio-sync.rst:87 msgid "Release the lock." msgstr "" -#: ../../library/asyncio-sync.rst:89 msgid "When the lock is *locked*, reset it to *unlocked* and return." msgstr "" -#: ../../library/asyncio-sync.rst:91 msgid "If the lock is *unlocked*, a :exc:`RuntimeError` is raised." msgstr "" -#: ../../library/asyncio-sync.rst:95 msgid "Return ``True`` if the lock is *locked*." msgstr "" -#: ../../library/asyncio-sync.rst:99 msgid "Event" msgstr "" -#: ../../library/asyncio-sync.rst:103 msgid "An event object. Not thread-safe." msgstr "" -#: ../../library/asyncio-sync.rst:105 -msgid "" -"An asyncio event can be used to notify multiple asyncio tasks that some " -"event has happened." +msgid "An asyncio event can be used to notify multiple asyncio tasks that some event has happened." msgstr "" -#: ../../library/asyncio-sync.rst:108 -msgid "" -"An Event object manages an internal flag that can be set to *true* with " -"the :meth:`~Event.set` method and reset to *false* with the :meth:`clear` " -"method. The :meth:`~Event.wait` method blocks until the flag is set to " -"*true*. The flag is set to *false* initially." +msgid "An Event object manages an internal flag that can be set to *true* with the :meth:`~Event.set` method and reset to *false* with the :meth:`clear` method. The :meth:`~Event.wait` method blocks until the flag is set to *true*. The flag is set to *false* initially." msgstr "" -#: ../../library/asyncio-sync.rst:118 ../../library/asyncio-sync.rst:377 msgid "Example::" msgstr "" -#: ../../library/asyncio-sync.rst:120 msgid "" "async def waiter(event):\n" " print('waiting for it ...')\n" @@ -216,73 +158,45 @@ msgid "" "asyncio.run(main())" msgstr "" -#: ../../library/asyncio-sync.rst:144 msgid "Wait until the event is set." msgstr "" -#: ../../library/asyncio-sync.rst:146 -msgid "" -"If the event is set, return ``True`` immediately. Otherwise block until " -"another task calls :meth:`~Event.set`." +msgid "If the event is set, return ``True`` immediately. Otherwise block until another task calls :meth:`~Event.set`." msgstr "" -#: ../../library/asyncio-sync.rst:151 msgid "Set the event." msgstr "" -#: ../../library/asyncio-sync.rst:153 msgid "All tasks waiting for event to be set will be immediately awakened." msgstr "" -#: ../../library/asyncio-sync.rst:158 msgid "Clear (unset) the event." msgstr "" -#: ../../library/asyncio-sync.rst:160 -msgid "" -"Subsequent tasks awaiting on :meth:`~Event.wait` will now block until " -"the :meth:`~Event.set` method is called again." +msgid "Subsequent tasks awaiting on :meth:`~Event.wait` will now block until the :meth:`~Event.set` method is called again." msgstr "" -#: ../../library/asyncio-sync.rst:165 msgid "Return ``True`` if the event is set." msgstr "" -#: ../../library/asyncio-sync.rst:169 msgid "Condition" msgstr "" -#: ../../library/asyncio-sync.rst:173 msgid "A Condition object. Not thread-safe." msgstr "" -#: ../../library/asyncio-sync.rst:175 -msgid "" -"An asyncio condition primitive can be used by a task to wait for some event " -"to happen and then get exclusive access to a shared resource." +msgid "An asyncio condition primitive can be used by a task to wait for some event to happen and then get exclusive access to a shared resource." msgstr "" -#: ../../library/asyncio-sync.rst:179 -msgid "" -"In essence, a Condition object combines the functionality of " -"an :class:`Event` and a :class:`Lock`. It is possible to have multiple " -"Condition objects share one Lock, which allows coordinating exclusive access " -"to a shared resource between different tasks interested in particular states " -"of that shared resource." +msgid "In essence, a Condition object combines the functionality of an :class:`Event` and a :class:`Lock`. It is possible to have multiple Condition objects share one Lock, which allows coordinating exclusive access to a shared resource between different tasks interested in particular states of that shared resource." msgstr "" -#: ../../library/asyncio-sync.rst:185 -msgid "" -"The optional *lock* argument must be a :class:`Lock` object or ``None``. In " -"the latter case a new Lock object is created automatically." +msgid "The optional *lock* argument must be a :class:`Lock` object or ``None``. In the latter case a new Lock object is created automatically." msgstr "" -#: ../../library/asyncio-sync.rst:192 -msgid "" -"The preferred way to use a Condition is an :keyword:`async with` statement::" +msgid "The preferred way to use a Condition is an :keyword:`async with` statement::" msgstr "" -#: ../../library/asyncio-sync.rst:195 msgid "" "cond = asyncio.Condition()\n" "\n" @@ -291,7 +205,6 @@ msgid "" " await cond.wait()" msgstr "" -#: ../../library/asyncio-sync.rst:203 msgid "" "cond = asyncio.Condition()\n" "\n" @@ -303,114 +216,66 @@ msgid "" " cond.release()" msgstr "" -#: ../../library/asyncio-sync.rst:215 msgid "Acquire the underlying lock." msgstr "" -#: ../../library/asyncio-sync.rst:217 -msgid "" -"This method waits until the underlying lock is *unlocked*, sets it to " -"*locked* and returns ``True``." +msgid "This method waits until the underlying lock is *unlocked*, sets it to *locked* and returns ``True``." msgstr "" -#: ../../library/asyncio-sync.rst:222 -msgid "" -"Wake up *n* tasks (1 by default) waiting on this condition. If fewer than " -"*n* tasks are waiting they are all awakened." +msgid "Wake up *n* tasks (1 by default) waiting on this condition. If fewer than *n* tasks are waiting they are all awakened." msgstr "" -#: ../../library/asyncio-sync.rst:225 ../../library/asyncio-sync.rst:240 -msgid "" -"The lock must be acquired before this method is called and released shortly " -"after. If called with an *unlocked* lock a :exc:`RuntimeError` error is " -"raised." +msgid "The lock must be acquired before this method is called and released shortly after. If called with an *unlocked* lock a :exc:`RuntimeError` error is raised." msgstr "" -#: ../../library/asyncio-sync.rst:231 msgid "Return ``True`` if the underlying lock is acquired." msgstr "" -#: ../../library/asyncio-sync.rst:235 msgid "Wake up all tasks waiting on this condition." msgstr "" -#: ../../library/asyncio-sync.rst:237 msgid "This method acts like :meth:`notify`, but wakes up all waiting tasks." msgstr "" -#: ../../library/asyncio-sync.rst:246 msgid "Release the underlying lock." msgstr "" -#: ../../library/asyncio-sync.rst:248 msgid "When invoked on an unlocked lock, a :exc:`RuntimeError` is raised." msgstr "" -#: ../../library/asyncio-sync.rst:254 msgid "Wait until notified." msgstr "" -#: ../../library/asyncio-sync.rst:256 -msgid "" -"If the calling task has not acquired the lock when this method is called, " -"a :exc:`RuntimeError` is raised." +msgid "If the calling task has not acquired the lock when this method is called, a :exc:`RuntimeError` is raised." msgstr "" -#: ../../library/asyncio-sync.rst:259 -msgid "" -"This method releases the underlying lock, and then blocks until it is " -"awakened by a :meth:`notify` or :meth:`notify_all` call. Once awakened, the " -"Condition re-acquires its lock and this method returns ``True``." +msgid "This method releases the underlying lock, and then blocks until it is awakened by a :meth:`notify` or :meth:`notify_all` call. Once awakened, the Condition re-acquires its lock and this method returns ``True``." msgstr "" -#: ../../library/asyncio-sync.rst:264 -msgid "" -"Note that a task *may* return from this call spuriously, which is why the " -"caller should always re-check the state and be prepared " -"to :meth:`~Condition.wait` again. For this reason, you may prefer to " -"use :meth:`~Condition.wait_for` instead." +msgid "Note that a task *may* return from this call spuriously, which is why the caller should always re-check the state and be prepared to :meth:`~Condition.wait` again. For this reason, you may prefer to use :meth:`~Condition.wait_for` instead." msgstr "" -#: ../../library/asyncio-sync.rst:272 msgid "Wait until a predicate becomes *true*." msgstr "" -#: ../../library/asyncio-sync.rst:274 -msgid "" -"The predicate must be a callable which result will be interpreted as a " -"boolean value. The method will repeatedly :meth:`~Condition.wait` until the " -"predicate evaluates to *true*. The final value is the return value." +msgid "The predicate must be a callable which result will be interpreted as a boolean value. The method will repeatedly :meth:`~Condition.wait` until the predicate evaluates to *true*. The final value is the return value." msgstr "" -#: ../../library/asyncio-sync.rst:281 msgid "Semaphore" msgstr "" -#: ../../library/asyncio-sync.rst:285 msgid "A Semaphore object. Not thread-safe." msgstr "" -#: ../../library/asyncio-sync.rst:287 -msgid "" -"A semaphore manages an internal counter which is decremented by " -"each :meth:`acquire` call and incremented by each :meth:`release` call. The " -"counter can never go below zero; when :meth:`acquire` finds that it is zero, " -"it blocks, waiting until some task calls :meth:`release`." +msgid "A semaphore manages an internal counter which is decremented by each :meth:`acquire` call and incremented by each :meth:`release` call. The counter can never go below zero; when :meth:`acquire` finds that it is zero, it blocks, waiting until some task calls :meth:`release`." msgstr "" -#: ../../library/asyncio-sync.rst:293 -msgid "" -"The optional *value* argument gives the initial value for the internal " -"counter (``1`` by default). If the given value is less than ``0`` " -"a :exc:`ValueError` is raised." +msgid "The optional *value* argument gives the initial value for the internal counter (``1`` by default). If the given value is less than ``0`` a :exc:`ValueError` is raised." msgstr "" -#: ../../library/asyncio-sync.rst:300 -msgid "" -"The preferred way to use a Semaphore is an :keyword:`async with` statement::" +msgid "The preferred way to use a Semaphore is an :keyword:`async with` statement::" msgstr "" -#: ../../library/asyncio-sync.rst:303 msgid "" "sem = asyncio.Semaphore(10)\n" "\n" @@ -419,7 +284,6 @@ msgid "" " # work with shared resource" msgstr "" -#: ../../library/asyncio-sync.rst:311 msgid "" "sem = asyncio.Semaphore(10)\n" "\n" @@ -431,76 +295,45 @@ msgid "" " sem.release()" msgstr "" -#: ../../library/asyncio-sync.rst:323 msgid "Acquire a semaphore." msgstr "" -#: ../../library/asyncio-sync.rst:325 -msgid "" -"If the internal counter is greater than zero, decrement it by one and return " -"``True`` immediately. If it is zero, wait until a :meth:`release` is called " -"and return ``True``." +msgid "If the internal counter is greater than zero, decrement it by one and return ``True`` immediately. If it is zero, wait until a :meth:`release` is called and return ``True``." msgstr "" -#: ../../library/asyncio-sync.rst:331 msgid "Returns ``True`` if semaphore can not be acquired immediately." msgstr "" -#: ../../library/asyncio-sync.rst:335 -msgid "" -"Release a semaphore, incrementing the internal counter by one. Can wake up a " -"task waiting to acquire the semaphore." +msgid "Release a semaphore, incrementing the internal counter by one. Can wake up a task waiting to acquire the semaphore." msgstr "" -#: ../../library/asyncio-sync.rst:338 -msgid "" -"Unlike :class:`BoundedSemaphore`, :class:`Semaphore` allows making more " -"``release()`` calls than ``acquire()`` calls." +msgid "Unlike :class:`BoundedSemaphore`, :class:`Semaphore` allows making more ``release()`` calls than ``acquire()`` calls." msgstr "" -#: ../../library/asyncio-sync.rst:343 msgid "BoundedSemaphore" msgstr "" -#: ../../library/asyncio-sync.rst:347 msgid "A bounded semaphore object. Not thread-safe." msgstr "" -#: ../../library/asyncio-sync.rst:349 -msgid "" -"Bounded Semaphore is a version of :class:`Semaphore` that raises " -"a :exc:`ValueError` in :meth:`~Semaphore.release` if it increases the " -"internal counter above the initial *value*." +msgid "Bounded Semaphore is a version of :class:`Semaphore` that raises a :exc:`ValueError` in :meth:`~Semaphore.release` if it increases the internal counter above the initial *value*." msgstr "" -#: ../../library/asyncio-sync.rst:358 msgid "Barrier" msgstr "" -#: ../../library/asyncio-sync.rst:362 msgid "A barrier object. Not thread-safe." msgstr "" -#: ../../library/asyncio-sync.rst:364 -msgid "" -"A barrier is a simple synchronization primitive that allows to block until " -"*parties* number of tasks are waiting on it. Tasks can wait on " -"the :meth:`~Barrier.wait` method and would be blocked until the specified " -"number of tasks end up waiting on :meth:`~Barrier.wait`. At that point all " -"of the waiting tasks would unblock simultaneously." +msgid "A barrier is a simple synchronization primitive that allows to block until *parties* number of tasks are waiting on it. Tasks can wait on the :meth:`~Barrier.wait` method and would be blocked until the specified number of tasks end up waiting on :meth:`~Barrier.wait`. At that point all of the waiting tasks would unblock simultaneously." msgstr "" -#: ../../library/asyncio-sync.rst:370 -msgid "" -":keyword:`async with` can be used as an alternative to awaiting " -"on :meth:`~Barrier.wait`." +msgid ":keyword:`async with` can be used as an alternative to awaiting on :meth:`~Barrier.wait`." msgstr "" -#: ../../library/asyncio-sync.rst:373 msgid "The barrier can be reused any number of times." msgstr "" -#: ../../library/asyncio-sync.rst:379 msgid "" "async def example_barrier():\n" " # barrier with 3 parties\n" @@ -524,11 +357,9 @@ msgid "" "asyncio.run(example_barrier())" msgstr "" -#: ../../library/asyncio-sync.rst:400 msgid "Result of this example is::" msgstr "" -#: ../../library/asyncio-sync.rst:402 msgid "" "\n" "\n" @@ -536,27 +367,15 @@ msgid "" "" msgstr "" -#: ../../library/asyncio-sync.rst:412 -msgid "" -"Pass the barrier. When all the tasks party to the barrier have called this " -"function, they are all unblocked simultaneously." +msgid "Pass the barrier. When all the tasks party to the barrier have called this function, they are all unblocked simultaneously." msgstr "" -#: ../../library/asyncio-sync.rst:415 -msgid "" -"When a waiting or blocked task in the barrier is cancelled, this task exits " -"the barrier which stays in the same state. If the state of the barrier is " -"\"filling\", the number of waiting task decreases by 1." +msgid "When a waiting or blocked task in the barrier is cancelled, this task exits the barrier which stays in the same state. If the state of the barrier is \"filling\", the number of waiting task decreases by 1." msgstr "" -#: ../../library/asyncio-sync.rst:420 -msgid "" -"The return value is an integer in the range of 0 to ``parties-1``, different " -"for each task. This can be used to select a task to do some special " -"housekeeping, e.g.::" +msgid "The return value is an integer in the range of 0 to ``parties-1``, different for each task. This can be used to select a task to do some special housekeeping, e.g.::" msgstr "" -#: ../../library/asyncio-sync.rst:424 msgid "" "...\n" "async with barrier as position:\n" @@ -565,54 +384,29 @@ msgid "" " print('End of *draining phase*')" msgstr "" -#: ../../library/asyncio-sync.rst:430 -msgid "" -"This method may raise a :class:`BrokenBarrierError` exception if the barrier " -"is broken or reset while a task is waiting. It could raise " -"a :exc:`CancelledError` if a task is cancelled." +msgid "This method may raise a :class:`BrokenBarrierError` exception if the barrier is broken or reset while a task is waiting. It could raise a :exc:`CancelledError` if a task is cancelled." msgstr "" -#: ../../library/asyncio-sync.rst:437 -msgid "" -"Return the barrier to the default, empty state. Any tasks waiting on it " -"will receive the :class:`BrokenBarrierError` exception." +msgid "Return the barrier to the default, empty state. Any tasks waiting on it will receive the :class:`BrokenBarrierError` exception." msgstr "" -#: ../../library/asyncio-sync.rst:440 -msgid "" -"If a barrier is broken it may be better to just leave it and create a new " -"one." +msgid "If a barrier is broken it may be better to just leave it and create a new one." msgstr "" -#: ../../library/asyncio-sync.rst:445 -msgid "" -"Put the barrier into a broken state. This causes any active or future calls " -"to :meth:`~Barrier.wait` to fail with the :class:`BrokenBarrierError`. Use " -"this for example if one of the tasks needs to abort, to avoid infinite " -"waiting tasks." +msgid "Put the barrier into a broken state. This causes any active or future calls to :meth:`~Barrier.wait` to fail with the :class:`BrokenBarrierError`. Use this for example if one of the tasks needs to abort, to avoid infinite waiting tasks." msgstr "" -#: ../../library/asyncio-sync.rst:452 msgid "The number of tasks required to pass the barrier." msgstr "" -#: ../../library/asyncio-sync.rst:456 msgid "The number of tasks currently waiting in the barrier while filling." msgstr "" -#: ../../library/asyncio-sync.rst:460 msgid "A boolean that is ``True`` if the barrier is in the broken state." msgstr "" -#: ../../library/asyncio-sync.rst:465 -msgid "" -"This exception, a subclass of :exc:`RuntimeError`, is raised when " -"the :class:`Barrier` object is reset or broken." +msgid "This exception, a subclass of :exc:`RuntimeError`, is raised when the :class:`Barrier` object is reset or broken." msgstr "" -#: ../../library/asyncio-sync.rst:473 -msgid "" -"Acquiring a lock using ``await lock`` or ``yield from lock`` and/" -"or :keyword:`with` statement (``with await lock``, ``with (yield from " -"lock)``) was removed. Use ``async with lock`` instead." +msgid "Acquiring a lock using ``await lock`` or ``yield from lock`` and/or :keyword:`with` statement (``with await lock``, ``with (yield from lock)``) was removed. Use ``async with lock`` instead." msgstr "" diff --git a/library/asyncio-task.po b/library/asyncio-task.po index 3613726f..a495ee55 100644 --- a/library/asyncio-task.po +++ b/library/asyncio-task.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:55+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,32 +23,21 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/asyncio-task.rst:6 msgid "Coroutines and tasks" msgstr "" -#: ../../library/asyncio-task.rst:8 -msgid "" -"This section outlines high-level asyncio APIs to work with coroutines and " -"Tasks." +msgid "This section outlines high-level asyncio APIs to work with coroutines and Tasks." msgstr "" -#: ../../library/asyncio-task.rst:19 ../../library/asyncio-task.rst:148 msgid "Coroutines" msgstr "" -#: ../../library/asyncio-task.rst:21 msgid "**Source code:** :source:`Lib/asyncio/coroutines.py`" msgstr "" -#: ../../library/asyncio-task.rst:25 -msgid "" -":term:`Coroutines ` declared with the async/await syntax is the " -"preferred way of writing asyncio applications. For example, the following " -"snippet of code prints \"hello\", waits 1 second, and then prints \"world\"::" +msgid ":term:`Coroutines ` declared with the async/await syntax is the preferred way of writing asyncio applications. For example, the following snippet of code prints \"hello\", waits 1 second, and then prints \"world\"::" msgstr "" -#: ../../library/asyncio-task.rst:30 msgid "" ">>> import asyncio\n" "\n" @@ -62,35 +51,23 @@ msgid "" "world" msgstr "" -#: ../../library/asyncio-task.rst:41 -msgid "" -"Note that simply calling a coroutine will not schedule it to be executed::" +msgid "Note that simply calling a coroutine will not schedule it to be executed::" msgstr "" -#: ../../library/asyncio-task.rst:44 msgid "" ">>> main()\n" "" msgstr "" -#: ../../library/asyncio-task.rst:47 msgid "To actually run a coroutine, asyncio provides the following mechanisms:" msgstr "" -#: ../../library/asyncio-task.rst:49 -msgid "" -"The :func:`asyncio.run` function to run the top-level entry point \"main()\" " -"function (see the above example.)" +msgid "The :func:`asyncio.run` function to run the top-level entry point \"main()\" function (see the above example.)" msgstr "" -#: ../../library/asyncio-task.rst:52 -msgid "" -"Awaiting on a coroutine. The following snippet of code will print \"hello\" " -"after waiting for 1 second, and then print \"world\" after waiting for " -"*another* 2 seconds::" +msgid "Awaiting on a coroutine. The following snippet of code will print \"hello\" after waiting for 1 second, and then print \"world\" after waiting for *another* 2 seconds::" msgstr "" -#: ../../library/asyncio-task.rst:56 msgid "" "import asyncio\n" "import time\n" @@ -110,11 +87,9 @@ msgid "" "asyncio.run(main())" msgstr "" -#: ../../library/asyncio-task.rst:73 msgid "Expected output::" msgstr "" -#: ../../library/asyncio-task.rst:75 msgid "" "started at 17:13:52\n" "hello\n" @@ -122,19 +97,12 @@ msgid "" "finished at 17:13:55" msgstr "" -#: ../../library/asyncio-task.rst:80 -msgid "" -"The :func:`asyncio.create_task` function to run coroutines concurrently as " -"asyncio :class:`Tasks `." +msgid "The :func:`asyncio.create_task` function to run coroutines concurrently as asyncio :class:`Tasks `." msgstr "" -#: ../../library/asyncio-task.rst:83 -msgid "" -"Let's modify the above example and run two ``say_after`` coroutines " -"*concurrently*::" +msgid "Let's modify the above example and run two ``say_after`` coroutines *concurrently*::" msgstr "" -#: ../../library/asyncio-task.rst:86 msgid "" "async def main():\n" " task1 = asyncio.create_task(\n" @@ -153,13 +121,9 @@ msgid "" " print(f\"finished at {time.strftime('%X')}\")" msgstr "" -#: ../../library/asyncio-task.rst:102 -msgid "" -"Note that expected output now shows that the snippet runs 1 second faster " -"than before::" +msgid "Note that expected output now shows that the snippet runs 1 second faster than before::" msgstr "" -#: ../../library/asyncio-task.rst:105 msgid "" "started at 17:14:32\n" "hello\n" @@ -167,13 +131,9 @@ msgid "" "finished at 17:14:34" msgstr "" -#: ../../library/asyncio-task.rst:110 -msgid "" -"The :class:`asyncio.TaskGroup` class provides a more modern alternative " -"to :func:`create_task`. Using this API, the last example becomes::" +msgid "The :class:`asyncio.TaskGroup` class provides a more modern alternative to :func:`create_task`. Using this API, the last example becomes::" msgstr "" -#: ../../library/asyncio-task.rst:114 msgid "" "async def main():\n" " async with asyncio.TaskGroup() as tg:\n" @@ -190,38 +150,24 @@ msgid "" " print(f\"finished at {time.strftime('%X')}\")" msgstr "" -#: ../../library/asyncio-task.rst:128 msgid "The timing and output should be the same as for the previous version." msgstr "" -#: ../../library/asyncio-task.rst:130 msgid ":class:`asyncio.TaskGroup`." msgstr "" -#: ../../library/asyncio-task.rst:137 msgid "Awaitables" msgstr "" -#: ../../library/asyncio-task.rst:139 -msgid "" -"We say that an object is an **awaitable** object if it can be used in " -"an :keyword:`await` expression. Many asyncio APIs are designed to accept " -"awaitables." +msgid "We say that an object is an **awaitable** object if it can be used in an :keyword:`await` expression. Many asyncio APIs are designed to accept awaitables." msgstr "" -#: ../../library/asyncio-task.rst:143 -msgid "" -"There are three main types of *awaitable* objects: **coroutines**, " -"**Tasks**, and **Futures**." +msgid "There are three main types of *awaitable* objects: **coroutines**, **Tasks**, and **Futures**." msgstr "" -#: ../../library/asyncio-task.rst:149 -msgid "" -"Python coroutines are *awaitables* and therefore can be awaited from other " -"coroutines::" +msgid "Python coroutines are *awaitables* and therefore can be awaited from other coroutines::" msgstr "" -#: ../../library/asyncio-task.rst:152 msgid "" "import asyncio\n" "\n" @@ -240,37 +186,24 @@ msgid "" "asyncio.run(main())" msgstr "" -#: ../../library/asyncio-task.rst:170 -msgid "" -"In this documentation the term \"coroutine\" can be used for two closely " -"related concepts:" +msgid "In this documentation the term \"coroutine\" can be used for two closely related concepts:" msgstr "" -#: ../../library/asyncio-task.rst:173 msgid "a *coroutine function*: an :keyword:`async def` function;" msgstr "" -#: ../../library/asyncio-task.rst:175 -msgid "" -"a *coroutine object*: an object returned by calling a *coroutine function*." +msgid "a *coroutine object*: an object returned by calling a *coroutine function*." msgstr "" -#: ../../library/asyncio-task.rst:180 msgid "Tasks" msgstr "" -#: ../../library/asyncio-task.rst:181 msgid "*Tasks* are used to schedule coroutines *concurrently*." msgstr "" -#: ../../library/asyncio-task.rst:183 -msgid "" -"When a coroutine is wrapped into a *Task* with functions " -"like :func:`asyncio.create_task` the coroutine is automatically scheduled to " -"run soon::" +msgid "When a coroutine is wrapped into a *Task* with functions like :func:`asyncio.create_task` the coroutine is automatically scheduled to run soon::" msgstr "" -#: ../../library/asyncio-task.rst:187 msgid "" "import asyncio\n" "\n" @@ -289,41 +222,24 @@ msgid "" "asyncio.run(main())" msgstr "" -#: ../../library/asyncio-task.rst:205 msgid "Futures" msgstr "" -#: ../../library/asyncio-task.rst:206 -msgid "" -"A :class:`Future` is a special **low-level** awaitable object that " -"represents an **eventual result** of an asynchronous operation." +msgid "A :class:`Future` is a special **low-level** awaitable object that represents an **eventual result** of an asynchronous operation." msgstr "" -#: ../../library/asyncio-task.rst:209 -msgid "" -"When a Future object is *awaited* it means that the coroutine will wait " -"until the Future is resolved in some other place." +msgid "When a Future object is *awaited* it means that the coroutine will wait until the Future is resolved in some other place." msgstr "" -#: ../../library/asyncio-task.rst:212 -msgid "" -"Future objects in asyncio are needed to allow callback-based code to be used " -"with async/await." +msgid "Future objects in asyncio are needed to allow callback-based code to be used with async/await." msgstr "" -#: ../../library/asyncio-task.rst:215 -msgid "" -"Normally **there is no need** to create Future objects at the application " -"level code." +msgid "Normally **there is no need** to create Future objects at the application level code." msgstr "" -#: ../../library/asyncio-task.rst:218 -msgid "" -"Future objects, sometimes exposed by libraries and some asyncio APIs, can be " -"awaited::" +msgid "Future objects, sometimes exposed by libraries and some asyncio APIs, can be awaited::" msgstr "" -#: ../../library/asyncio-task.rst:221 msgid "" "async def main():\n" " await function_that_returns_a_future_object()\n" @@ -335,72 +251,36 @@ msgid "" " )" msgstr "" -#: ../../library/asyncio-task.rst:230 -msgid "" -"A good example of a low-level function that returns a Future object " -"is :meth:`loop.run_in_executor`." +msgid "A good example of a low-level function that returns a Future object is :meth:`loop.run_in_executor`." msgstr "" -#: ../../library/asyncio-task.rst:235 msgid "Creating tasks" msgstr "" -#: ../../library/asyncio-task.rst:237 msgid "**Source code:** :source:`Lib/asyncio/tasks.py`" msgstr "" -#: ../../library/asyncio-task.rst:243 -msgid "" -"Wrap the *coro* :ref:`coroutine ` into a :class:`Task` and " -"schedule its execution. Return the Task object." +msgid "Wrap the *coro* :ref:`coroutine ` into a :class:`Task` and schedule its execution. Return the Task object." msgstr "" -#: ../../library/asyncio-task.rst:246 -msgid "" -"The full function signature is largely the same as that of the :class:`Task` " -"constructor (or factory) - all of the keyword arguments to this function are " -"passed through to that interface." +msgid "The full function signature is largely the same as that of the :class:`Task` constructor (or factory) - all of the keyword arguments to this function are passed through to that interface." msgstr "" -#: ../../library/asyncio-task.rst:250 -msgid "" -"An optional keyword-only *context* argument allows specifying a " -"custom :class:`contextvars.Context` for the *coro* to run in. The current " -"context copy is created when no *context* is provided." +msgid "An optional keyword-only *context* argument allows specifying a custom :class:`contextvars.Context` for the *coro* to run in. The current context copy is created when no *context* is provided." msgstr "" -#: ../../library/asyncio-task.rst:254 -msgid "" -"An optional keyword-only *eager_start* argument allows specifying if the " -"task should execute eagerly during the call to create_task, or be scheduled " -"later. If *eager_start* is not passed the mode set " -"by :meth:`loop.set_task_factory` will be used." +msgid "An optional keyword-only *eager_start* argument allows specifying if the task should execute eagerly during the call to create_task, or be scheduled later. If *eager_start* is not passed the mode set by :meth:`loop.set_task_factory` will be used." msgstr "" -#: ../../library/asyncio-task.rst:259 -msgid "" -"The task is executed in the loop returned " -"by :func:`get_running_loop`, :exc:`RuntimeError` is raised if there is no " -"running loop in current thread." +msgid "The task is executed in the loop returned by :func:`get_running_loop`, :exc:`RuntimeError` is raised if there is no running loop in current thread." msgstr "" -#: ../../library/asyncio-task.rst:265 -msgid "" -":meth:`asyncio.TaskGroup.create_task` is a new alternative leveraging " -"structural concurrency; it allows for waiting for a group of related tasks " -"with strong safety guarantees." +msgid ":meth:`asyncio.TaskGroup.create_task` is a new alternative leveraging structural concurrency; it allows for waiting for a group of related tasks with strong safety guarantees." msgstr "" -#: ../../library/asyncio-task.rst:271 -msgid "" -"Save a reference to the result of this function, to avoid a task " -"disappearing mid-execution. The event loop only keeps weak references to " -"tasks. A task that isn't referenced elsewhere may get garbage collected at " -"any time, even before it's done. For reliable \"fire-and-forget\" background " -"tasks, gather them in a collection::" +msgid "Save a reference to the result of this function, to avoid a task disappearing mid-execution. The event loop only keeps weak references to tasks. A task that isn't referenced elsewhere may get garbage collected at any time, even before it's done. For reliable \"fire-and-forget\" background tasks, gather them in a collection::" msgstr "" -#: ../../library/asyncio-task.rst:278 msgid "" "background_tasks = set()\n" "\n" @@ -416,194 +296,89 @@ msgid "" " task.add_done_callback(background_tasks.discard)" msgstr "" -#: ../../library/asyncio-task.rst:293 ../../library/asyncio-task.rst:1264 msgid "Added the *name* parameter." msgstr "" -#: ../../library/asyncio-task.rst:296 ../../library/asyncio-task.rst:1271 msgid "Added the *context* parameter." msgstr "" -#: ../../library/asyncio-task.rst:299 msgid "Added the *eager_start* parameter by passing on all *kwargs*." msgstr "" -#: ../../library/asyncio-task.rst:304 msgid "Task cancellation" msgstr "" -#: ../../library/asyncio-task.rst:306 -msgid "" -"Tasks can easily and safely be cancelled. When a task is " -"cancelled, :exc:`asyncio.CancelledError` will be raised in the task at the " -"next opportunity." +msgid "Tasks can easily and safely be cancelled. When a task is cancelled, :exc:`asyncio.CancelledError` will be raised in the task at the next opportunity." msgstr "" -#: ../../library/asyncio-task.rst:310 -msgid "" -"It is recommended that coroutines use ``try/finally`` blocks to robustly " -"perform clean-up logic. In case :exc:`asyncio.CancelledError` is explicitly " -"caught, it should generally be propagated when clean-up is " -"complete. :exc:`asyncio.CancelledError` directly " -"subclasses :exc:`BaseException` so most code will not need to be aware of it." +msgid "It is recommended that coroutines use ``try/finally`` blocks to robustly perform clean-up logic. In case :exc:`asyncio.CancelledError` is explicitly caught, it should generally be propagated when clean-up is complete. :exc:`asyncio.CancelledError` directly subclasses :exc:`BaseException` so most code will not need to be aware of it." msgstr "" -#: ../../library/asyncio-task.rst:316 -msgid "" -"The asyncio components that enable structured concurrency, " -"like :class:`asyncio.TaskGroup` and :func:`asyncio.timeout`, are implemented " -"using cancellation internally and might misbehave if a coroutine " -"swallows :exc:`asyncio.CancelledError`. Similarly, user code should not " -"generally call :meth:`uncancel `. However, in cases " -"when suppressing :exc:`asyncio.CancelledError` is truly desired, it is " -"necessary to also call ``uncancel()`` to completely remove the cancellation " -"state." +msgid "The asyncio components that enable structured concurrency, like :class:`asyncio.TaskGroup` and :func:`asyncio.timeout`, are implemented using cancellation internally and might misbehave if a coroutine swallows :exc:`asyncio.CancelledError`. Similarly, user code should not generally call :meth:`uncancel `. However, in cases when suppressing :exc:`asyncio.CancelledError` is truly desired, it is necessary to also call ``uncancel()`` to completely remove the cancellation state." msgstr "" -#: ../../library/asyncio-task.rst:328 msgid "Task groups" msgstr "" -#: ../../library/asyncio-task.rst:330 -msgid "" -"Task groups combine a task creation API with a convenient and reliable way " -"to wait for all tasks in the group to finish." +msgid "Task groups combine a task creation API with a convenient and reliable way to wait for all tasks in the group to finish." msgstr "" -#: ../../library/asyncio-task.rst:335 -msgid "" -"An :ref:`asynchronous context manager ` holding a " -"group of tasks. Tasks can be added to the group using :meth:`create_task`. " -"All tasks are awaited when the context manager exits." +msgid "An :ref:`asynchronous context manager ` holding a group of tasks. Tasks can be added to the group using :meth:`create_task`. All tasks are awaited when the context manager exits." msgstr "" -#: ../../library/asyncio-task.rst:344 -msgid "" -"Create a task in this task group. The signature matches that " -"of :func:`asyncio.create_task`. If the task group is inactive (e.g. not yet " -"entered, already finished, or in the process of shutting down), we will " -"close the given ``coro``." +msgid "Create a task in this task group. The signature matches that of :func:`asyncio.create_task`. If the task group is inactive (e.g. not yet entered, already finished, or in the process of shutting down), we will close the given ``coro``." msgstr "" -#: ../../library/asyncio-task.rst:352 msgid "Close the given coroutine if the task group is not active." msgstr "" -#: ../../library/asyncio-task.rst:356 msgid "Passes on all *kwargs* to :meth:`loop.create_task`" msgstr "" -#: ../../library/asyncio-task.rst:358 ../../library/asyncio-task.rst:564 -#: ../../library/asyncio-task.rst:737 ../../library/asyncio-task.rst:798 -#: ../../library/asyncio-task.rst:824 ../../library/asyncio-task.rst:865 msgid "Example::" msgstr "" -#: ../../library/asyncio-task.rst:360 msgid "" "async def main():\n" " async with asyncio.TaskGroup() as tg:\n" " task1 = tg.create_task(some_coro(...))\n" " task2 = tg.create_task(another_coro(...))\n" -" print(f\"Both tasks have completed now: {task1.result()}, " -"{task2.result()}\")" +" print(f\"Both tasks have completed now: {task1.result()}, {task2.result()}\")" msgstr "" -#: ../../library/asyncio-task.rst:366 -msgid "" -"The ``async with`` statement will wait for all tasks in the group to finish. " -"While waiting, new tasks may still be added to the group (for example, by " -"passing ``tg`` into one of the coroutines and calling ``tg.create_task()`` " -"in that coroutine). Once the last task has finished and the ``async with`` " -"block is exited, no new tasks may be added to the group." +msgid "The ``async with`` statement will wait for all tasks in the group to finish. While waiting, new tasks may still be added to the group (for example, by passing ``tg`` into one of the coroutines and calling ``tg.create_task()`` in that coroutine). Once the last task has finished and the ``async with`` block is exited, no new tasks may be added to the group." msgstr "" -#: ../../library/asyncio-task.rst:373 -msgid "" -"The first time any of the tasks belonging to the group fails with an " -"exception other than :exc:`asyncio.CancelledError`, the remaining tasks in " -"the group are cancelled. No further tasks can then be added to the group. At " -"this point, if the body of the ``async with`` statement is still active " -"(i.e., :meth:`~object.__aexit__` hasn't been called yet), the task directly " -"containing the ``async with`` statement is also cancelled. The " -"resulting :exc:`asyncio.CancelledError` will interrupt an ``await``, but it " -"will not bubble out of the containing ``async with`` statement." +msgid "The first time any of the tasks belonging to the group fails with an exception other than :exc:`asyncio.CancelledError`, the remaining tasks in the group are cancelled. No further tasks can then be added to the group. At this point, if the body of the ``async with`` statement is still active (i.e., :meth:`~object.__aexit__` hasn't been called yet), the task directly containing the ``async with`` statement is also cancelled. The resulting :exc:`asyncio.CancelledError` will interrupt an ``await``, but it will not bubble out of the containing ``async with`` statement." msgstr "" -#: ../../library/asyncio-task.rst:383 -msgid "" -"Once all tasks have finished, if any tasks have failed with an exception " -"other than :exc:`asyncio.CancelledError`, those exceptions are combined in " -"an :exc:`ExceptionGroup` or :exc:`BaseExceptionGroup` (as appropriate; see " -"their documentation) which is then raised." +msgid "Once all tasks have finished, if any tasks have failed with an exception other than :exc:`asyncio.CancelledError`, those exceptions are combined in an :exc:`ExceptionGroup` or :exc:`BaseExceptionGroup` (as appropriate; see their documentation) which is then raised." msgstr "" -#: ../../library/asyncio-task.rst:390 -msgid "" -"Two base exceptions are treated specially: If any task fails " -"with :exc:`KeyboardInterrupt` or :exc:`SystemExit`, the task group still " -"cancels the remaining tasks and waits for them, but then the " -"initial :exc:`KeyboardInterrupt` or :exc:`SystemExit` is re-raised instead " -"of :exc:`ExceptionGroup` or :exc:`BaseExceptionGroup`." +msgid "Two base exceptions are treated specially: If any task fails with :exc:`KeyboardInterrupt` or :exc:`SystemExit`, the task group still cancels the remaining tasks and waits for them, but then the initial :exc:`KeyboardInterrupt` or :exc:`SystemExit` is re-raised instead of :exc:`ExceptionGroup` or :exc:`BaseExceptionGroup`." msgstr "" -#: ../../library/asyncio-task.rst:396 -msgid "" -"If the body of the ``async with`` statement exits with an exception " -"(so :meth:`~object.__aexit__` is called with an exception set), this is " -"treated the same as if one of the tasks failed: the remaining tasks are " -"cancelled and then waited for, and non-cancellation exceptions are grouped " -"into an exception group and raised. The exception passed " -"into :meth:`~object.__aexit__`, unless it is :exc:`asyncio.CancelledError`, " -"is also included in the exception group. The same special case is made " -"for :exc:`KeyboardInterrupt` and :exc:`SystemExit` as in the previous " -"paragraph." -msgstr "" - -#: ../../library/asyncio-task.rst:408 -msgid "" -"Task groups are careful not to mix up the internal cancellation used to " -"\"wake up\" their :meth:`~object.__aexit__` with cancellation requests for " -"the task in which they are running made by other parties. In particular, " -"when one task group is syntactically nested in another, and both experience " -"an exception in one of their child tasks simultaneously, the inner task " -"group will process its exceptions, and then the outer task group will " -"receive another cancellation and process its own exceptions." +msgid "If the body of the ``async with`` statement exits with an exception (so :meth:`~object.__aexit__` is called with an exception set), this is treated the same as if one of the tasks failed: the remaining tasks are cancelled and then waited for, and non-cancellation exceptions are grouped into an exception group and raised. The exception passed into :meth:`~object.__aexit__`, unless it is :exc:`asyncio.CancelledError`, is also included in the exception group. The same special case is made for :exc:`KeyboardInterrupt` and :exc:`SystemExit` as in the previous paragraph." msgstr "" -#: ../../library/asyncio-task.rst:416 -msgid "" -"In the case where a task group is cancelled externally and also must raise " -"an :exc:`ExceptionGroup`, it will call the parent " -"task's :meth:`~asyncio.Task.cancel` method. This ensures that " -"a :exc:`asyncio.CancelledError` will be raised at the next :keyword:`await`, " -"so the cancellation is not lost." +msgid "Task groups are careful not to mix up the internal cancellation used to \"wake up\" their :meth:`~object.__aexit__` with cancellation requests for the task in which they are running made by other parties. In particular, when one task group is syntactically nested in another, and both experience an exception in one of their child tasks simultaneously, the inner task group will process its exceptions, and then the outer task group will receive another cancellation and process its own exceptions." msgstr "" -#: ../../library/asyncio-task.rst:422 -msgid "" -"Task groups preserve the cancellation count reported " -"by :meth:`asyncio.Task.cancelling`." +msgid "In the case where a task group is cancelled externally and also must raise an :exc:`ExceptionGroup`, it will call the parent task's :meth:`~asyncio.Task.cancel` method. This ensures that a :exc:`asyncio.CancelledError` will be raised at the next :keyword:`await`, so the cancellation is not lost." msgstr "" -#: ../../library/asyncio-task.rst:427 -msgid "" -"Improved handling of simultaneous internal and external cancellations and " -"correct preservation of cancellation counts." +msgid "Task groups preserve the cancellation count reported by :meth:`asyncio.Task.cancelling`." +msgstr "" + +msgid "Improved handling of simultaneous internal and external cancellations and correct preservation of cancellation counts." msgstr "" -#: ../../library/asyncio-task.rst:431 msgid "Terminating a task group" msgstr "" -#: ../../library/asyncio-task.rst:433 -msgid "" -"While terminating a task group is not natively supported by the standard " -"library, termination can be achieved by adding an exception-raising task to " -"the task group and ignoring the raised exception:" +msgid "While terminating a task group is not natively supported by the standard library, termination can be achieved by adding an exception-raising task to the task group and ignoring the raised exception:" msgstr "" -#: ../../library/asyncio-task.rst:437 msgid "" "import asyncio\n" "from asyncio import TaskGroup\n" @@ -636,49 +411,33 @@ msgid "" "asyncio.run(main())" msgstr "" -#: ../../library/asyncio-task.rst:469 msgid "Expected output:" msgstr "" -#: ../../library/asyncio-task.rst:471 msgid "" "Task 1: start\n" "Task 2: start\n" "Task 1: done" msgstr "" -#: ../../library/asyncio-task.rst:478 msgid "Sleeping" msgstr "" -#: ../../library/asyncio-task.rst:483 msgid "Block for *delay* seconds." msgstr "" -#: ../../library/asyncio-task.rst:485 -msgid "" -"If *result* is provided, it is returned to the caller when the coroutine " -"completes." +msgid "If *result* is provided, it is returned to the caller when the coroutine completes." msgstr "" -#: ../../library/asyncio-task.rst:488 -msgid "" -"``sleep()`` always suspends the current task, allowing other tasks to run." +msgid "``sleep()`` always suspends the current task, allowing other tasks to run." msgstr "" -#: ../../library/asyncio-task.rst:491 -msgid "" -"Setting the delay to 0 provides an optimized path to allow other tasks to " -"run. This can be used by long-running functions to avoid blocking the event " -"loop for the full duration of the function call." +msgid "Setting the delay to 0 provides an optimized path to allow other tasks to run. This can be used by long-running functions to avoid blocking the event loop for the full duration of the function call." msgstr "" -#: ../../library/asyncio-task.rst:497 -msgid "" -"Example of coroutine displaying the current date every second for 5 seconds::" +msgid "Example of coroutine displaying the current date every second for 5 seconds::" msgstr "" -#: ../../library/asyncio-task.rst:500 msgid "" "import asyncio\n" "import datetime as dt\n" @@ -695,86 +454,46 @@ msgid "" "asyncio.run(display_date())" msgstr "" -#: ../../library/asyncio-task.rst:515 ../../library/asyncio-task.rst:613 -#: ../../library/asyncio-task.rst:712 ../../library/asyncio-task.rst:890 -#: ../../library/asyncio-task.rst:948 ../../library/asyncio-task.rst:1009 msgid "Removed the *loop* parameter." msgstr "" -#: ../../library/asyncio-task.rst:518 msgid "Raises :exc:`ValueError` if *delay* is :data:`~math.nan`." msgstr "" -#: ../../library/asyncio-task.rst:523 msgid "Running tasks concurrently" msgstr "" -#: ../../library/asyncio-task.rst:527 -msgid "" -"Run :ref:`awaitable objects ` in the *aws* sequence " -"*concurrently*." +msgid "Run :ref:`awaitable objects ` in the *aws* sequence *concurrently*." msgstr "" -#: ../../library/asyncio-task.rst:530 -msgid "" -"If any awaitable in *aws* is a coroutine, it is automatically scheduled as a " -"Task." +msgid "If any awaitable in *aws* is a coroutine, it is automatically scheduled as a Task." msgstr "" -#: ../../library/asyncio-task.rst:533 -msgid "" -"If all awaitables are completed successfully, the result is an aggregate " -"list of returned values. The order of result values corresponds to the " -"order of awaitables in *aws*." +msgid "If all awaitables are completed successfully, the result is an aggregate list of returned values. The order of result values corresponds to the order of awaitables in *aws*." msgstr "" -#: ../../library/asyncio-task.rst:537 -msgid "" -"If *return_exceptions* is ``False`` (default), the first raised exception is " -"immediately propagated to the task that awaits on ``gather()``. Other " -"awaitables in the *aws* sequence **won't be cancelled** and will continue to " -"run." +msgid "If *return_exceptions* is ``False`` (default), the first raised exception is immediately propagated to the task that awaits on ``gather()``. Other awaitables in the *aws* sequence **won't be cancelled** and will continue to run." msgstr "" -#: ../../library/asyncio-task.rst:542 -msgid "" -"If *return_exceptions* is ``True``, exceptions are treated the same as " -"successful results, and aggregated in the result list." +msgid "If *return_exceptions* is ``True``, exceptions are treated the same as successful results, and aggregated in the result list." msgstr "" -#: ../../library/asyncio-task.rst:545 -msgid "" -"If ``gather()`` is *cancelled*, all submitted awaitables (that have not " -"completed yet) are also *cancelled*." +msgid "If ``gather()`` is *cancelled*, all submitted awaitables (that have not completed yet) are also *cancelled*." msgstr "" -#: ../../library/asyncio-task.rst:548 -msgid "" -"If any Task or Future from the *aws* sequence is *cancelled*, it is treated " -"as if it raised :exc:`CancelledError` -- the ``gather()`` call is **not** " -"cancelled in this case. This is to prevent the cancellation of one " -"submitted Task/Future to cause other Tasks/Futures to be cancelled." +msgid "If any Task or Future from the *aws* sequence is *cancelled*, it is treated as if it raised :exc:`CancelledError` -- the ``gather()`` call is **not** cancelled in this case. This is to prevent the cancellation of one submitted Task/Future to cause other Tasks/Futures to be cancelled." msgstr "" -#: ../../library/asyncio-task.rst:555 -msgid "" -"A new alternative to create and run tasks concurrently and wait for their " -"completion is :class:`asyncio.TaskGroup`. *TaskGroup* provides stronger " -"safety guarantees than *gather* for scheduling a nesting of subtasks: if a " -"task (or a subtask, a task scheduled by a task) raises an exception, " -"*TaskGroup* will, while *gather* will not, cancel the remaining scheduled " -"tasks." +msgid "A new alternative to create and run tasks concurrently and wait for their completion is :class:`asyncio.TaskGroup`. *TaskGroup* provides stronger safety guarantees than *gather* for scheduling a nesting of subtasks: if a task (or a subtask, a task scheduled by a task) raises an exception, *TaskGroup* will, while *gather* will not, cancel the remaining scheduled tasks." msgstr "" -#: ../../library/asyncio-task.rst:566 msgid "" "import asyncio\n" "\n" "async def factorial(name, number):\n" " f = 1\n" " for i in range(2, number + 1):\n" -" print(f\"Task {name}: Compute factorial({number}), currently i={i}..." -"\")\n" +" print(f\"Task {name}: Compute factorial({number}), currently i={i}...\")\n" " await asyncio.sleep(1)\n" " f *= i\n" " print(f\"Task {name}: factorial({number}) = {f}\")\n" @@ -805,137 +524,71 @@ msgid "" "# [2, 6, 24]" msgstr "" -#: ../../library/asyncio-task.rst:602 -msgid "" -"If *return_exceptions* is false, cancelling gather() after it has been " -"marked done won't cancel any submitted awaitables. For instance, gather can " -"be marked done after propagating an exception to the caller, therefore, " -"calling ``gather.cancel()`` after catching an exception (raised by one of " -"the awaitables) from gather won't cancel any other awaitables." +msgid "If *return_exceptions* is false, cancelling gather() after it has been marked done won't cancel any submitted awaitables. For instance, gather can be marked done after propagating an exception to the caller, therefore, calling ``gather.cancel()`` after catching an exception (raised by one of the awaitables) from gather won't cancel any other awaitables." msgstr "" -#: ../../library/asyncio-task.rst:609 -msgid "" -"If the *gather* itself is cancelled, the cancellation is propagated " -"regardless of *return_exceptions*." +msgid "If the *gather* itself is cancelled, the cancellation is propagated regardless of *return_exceptions*." msgstr "" -#: ../../library/asyncio-task.rst:616 -msgid "" -"Deprecation warning is emitted if no positional arguments are provided or " -"not all positional arguments are Future-like objects and there is no running " -"event loop." +msgid "Deprecation warning is emitted if no positional arguments are provided or not all positional arguments are Future-like objects and there is no running event loop." msgstr "" -#: ../../library/asyncio-task.rst:625 msgid "Eager task factory" msgstr "" -#: ../../library/asyncio-task.rst:629 msgid "A task factory for eager task execution." msgstr "" -#: ../../library/asyncio-task.rst:631 -msgid "" -"When using this factory " -"(via :meth:`loop.set_task_factory(asyncio.eager_task_factory) " -"`), coroutines begin execution synchronously " -"during :class:`Task` construction. Tasks are only scheduled on the event " -"loop if they block. This can be a performance improvement as the overhead of " -"loop scheduling is avoided for coroutines that complete synchronously." +msgid "When using this factory (via :meth:`loop.set_task_factory(asyncio.eager_task_factory) `), coroutines begin execution synchronously during :class:`Task` construction. Tasks are only scheduled on the event loop if they block. This can be a performance improvement as the overhead of loop scheduling is avoided for coroutines that complete synchronously." msgstr "" -#: ../../library/asyncio-task.rst:637 -msgid "" -"A common example where this is beneficial is coroutines which employ caching " -"or memoization to avoid actual I/O when possible." +msgid "A common example where this is beneficial is coroutines which employ caching or memoization to avoid actual I/O when possible." msgstr "" -#: ../../library/asyncio-task.rst:642 -msgid "" -"Immediate execution of the coroutine is a semantic change. If the coroutine " -"returns or raises, the task is never scheduled to the event loop. If the " -"coroutine execution blocks, the task is scheduled to the event loop. This " -"change may introduce behavior changes to existing applications. For example, " -"the application's task execution order is likely to change." +msgid "Immediate execution of the coroutine is a semantic change. If the coroutine returns or raises, the task is never scheduled to the event loop. If the coroutine execution blocks, the task is scheduled to the event loop. This change may introduce behavior changes to existing applications. For example, the application's task execution order is likely to change." msgstr "" -#: ../../library/asyncio-task.rst:653 -msgid "" -"Create an eager task factory, similar to :func:`eager_task_factory`, using " -"the provided *custom_task_constructor* when creating a new task instead of " -"the default :class:`Task`." +msgid "Create an eager task factory, similar to :func:`eager_task_factory`, using the provided *custom_task_constructor* when creating a new task instead of the default :class:`Task`." msgstr "" -#: ../../library/asyncio-task.rst:657 -msgid "" -"*custom_task_constructor* must be a *callable* with the signature matching " -"the signature of :class:`Task.__init__ `. The callable must return " -"a :class:`asyncio.Task`-compatible object." +msgid "*custom_task_constructor* must be a *callable* with the signature matching the signature of :class:`Task.__init__ `. The callable must return a :class:`asyncio.Task`-compatible object." msgstr "" -#: ../../library/asyncio-task.rst:661 -msgid "" -"This function returns a *callable* intended to be used as a task factory of " -"an event loop via :meth:`loop.set_task_factory(factory) " -"`)." +msgid "This function returns a *callable* intended to be used as a task factory of an event loop via :meth:`loop.set_task_factory(factory) `)." msgstr "" -#: ../../library/asyncio-task.rst:668 msgid "Shielding from cancellation" msgstr "" -#: ../../library/asyncio-task.rst:672 -msgid "" -"Protect an :ref:`awaitable object ` from " -"being :meth:`cancelled `." +msgid "Protect an :ref:`awaitable object ` from being :meth:`cancelled `." msgstr "" -#: ../../library/asyncio-task.rst:675 ../../library/asyncio-task.rst:845 msgid "If *aw* is a coroutine it is automatically scheduled as a Task." msgstr "" -#: ../../library/asyncio-task.rst:677 msgid "The statement::" msgstr "" -#: ../../library/asyncio-task.rst:679 msgid "" "task = asyncio.create_task(something())\n" "res = await shield(task)" msgstr "" -#: ../../library/asyncio-task.rst:682 msgid "is equivalent to::" msgstr "" -#: ../../library/asyncio-task.rst:684 msgid "res = await something()" msgstr "" -#: ../../library/asyncio-task.rst:686 -msgid "" -"*except* that if the coroutine containing it is cancelled, the Task running " -"in ``something()`` is not cancelled. From the point of view of " -"``something()``, the cancellation did not happen. Although its caller is " -"still cancelled, so the \"await\" expression still raises " -"a :exc:`CancelledError`." +msgid "*except* that if the coroutine containing it is cancelled, the Task running in ``something()`` is not cancelled. From the point of view of ``something()``, the cancellation did not happen. Although its caller is still cancelled, so the \"await\" expression still raises a :exc:`CancelledError`." msgstr "" -#: ../../library/asyncio-task.rst:692 -msgid "" -"If ``something()`` is cancelled by other means (i.e. from within itself) " -"that would also cancel ``shield()``." +msgid "If ``something()`` is cancelled by other means (i.e. from within itself) that would also cancel ``shield()``." msgstr "" -#: ../../library/asyncio-task.rst:695 -msgid "" -"If it is desired to completely ignore cancellation (not recommended) the " -"``shield()`` function should be combined with a try/except clause, as " -"follows::" +msgid "If it is desired to completely ignore cancellation (not recommended) the ``shield()`` function should be combined with a try/except clause, as follows::" msgstr "" -#: ../../library/asyncio-task.rst:699 msgid "" "task = asyncio.create_task(something())\n" "try:\n" @@ -944,70 +597,39 @@ msgid "" " res = None" msgstr "" -#: ../../library/asyncio-task.rst:707 -msgid "" -"Save a reference to tasks passed to this function, to avoid a task " -"disappearing mid-execution. The event loop only keeps weak references to " -"tasks. A task that isn't referenced elsewhere may get garbage collected at " -"any time, even before it's done." +msgid "Save a reference to tasks passed to this function, to avoid a task disappearing mid-execution. The event loop only keeps weak references to tasks. A task that isn't referenced elsewhere may get garbage collected at any time, even before it's done." msgstr "" -#: ../../library/asyncio-task.rst:715 -msgid "" -"Deprecation warning is emitted if *aw* is not Future-like object and there " -"is no running event loop." +msgid "Deprecation warning is emitted if *aw* is not Future-like object and there is no running event loop." msgstr "" -#: ../../library/asyncio-task.rst:721 msgid "Timeouts" msgstr "" -#: ../../library/asyncio-task.rst:725 -msgid "" -"Return an :ref:`asynchronous context manager ` that " -"can be used to limit the amount of time spent waiting on something." +msgid "Return an :ref:`asynchronous context manager ` that can be used to limit the amount of time spent waiting on something." msgstr "" -#: ../../library/asyncio-task.rst:729 -msgid "" -"*delay* can either be ``None``, or a float/int number of seconds to wait. If " -"*delay* is ``None``, no time limit will be applied; this can be useful if " -"the delay is unknown when the context manager is created." +msgid "*delay* can either be ``None``, or a float/int number of seconds to wait. If *delay* is ``None``, no time limit will be applied; this can be useful if the delay is unknown when the context manager is created." msgstr "" -#: ../../library/asyncio-task.rst:734 -msgid "" -"In either case, the context manager can be rescheduled after creation " -"using :meth:`Timeout.reschedule`." +msgid "In either case, the context manager can be rescheduled after creation using :meth:`Timeout.reschedule`." msgstr "" -#: ../../library/asyncio-task.rst:739 msgid "" "async def main():\n" " async with asyncio.timeout(10):\n" " await long_running_task()" msgstr "" -#: ../../library/asyncio-task.rst:743 -msgid "" -"If ``long_running_task`` takes more than 10 seconds to complete, the context " -"manager will cancel the current task and handle the " -"resulting :exc:`asyncio.CancelledError` internally, transforming it into " -"a :exc:`TimeoutError` which can be caught and handled." +msgid "If ``long_running_task`` takes more than 10 seconds to complete, the context manager will cancel the current task and handle the resulting :exc:`asyncio.CancelledError` internally, transforming it into a :exc:`TimeoutError` which can be caught and handled." msgstr "" -#: ../../library/asyncio-task.rst:750 -msgid "" -"The :func:`asyncio.timeout` context manager is what transforms " -"the :exc:`asyncio.CancelledError` into a :exc:`TimeoutError`, which means " -"the :exc:`TimeoutError` can only be caught *outside* of the context manager." +msgid "The :func:`asyncio.timeout` context manager is what transforms the :exc:`asyncio.CancelledError` into a :exc:`TimeoutError`, which means the :exc:`TimeoutError` can only be caught *outside* of the context manager." msgstr "" -#: ../../library/asyncio-task.rst:755 msgid "Example of catching :exc:`TimeoutError`::" msgstr "" -#: ../../library/asyncio-task.rst:757 msgid "" "async def main():\n" " try:\n" @@ -1019,54 +641,33 @@ msgid "" " print(\"This statement will run regardless.\")" msgstr "" -#: ../../library/asyncio-task.rst:766 -msgid "" -"The context manager produced by :func:`asyncio.timeout` can be rescheduled " -"to a different deadline and inspected." +msgid "The context manager produced by :func:`asyncio.timeout` can be rescheduled to a different deadline and inspected." msgstr "" -#: ../../library/asyncio-task.rst:771 -msgid "" -"An :ref:`asynchronous context manager ` for " -"cancelling overdue coroutines." +msgid "An :ref:`asynchronous context manager ` for cancelling overdue coroutines." msgstr "" -#: ../../library/asyncio-task.rst:774 -msgid "" -"Prefer using :func:`asyncio.timeout` or :func:`asyncio.timeout_at` rather " -"than instantiating :class:`!Timeout` directly." +msgid "Prefer using :func:`asyncio.timeout` or :func:`asyncio.timeout_at` rather than instantiating :class:`!Timeout` directly." msgstr "" -#: ../../library/asyncio-task.rst:777 -msgid "" -"``when`` should be an absolute time at which the context should time out, as " -"measured by the event loop's clock:" +msgid "``when`` should be an absolute time at which the context should time out, as measured by the event loop's clock:" msgstr "" -#: ../../library/asyncio-task.rst:780 msgid "If ``when`` is ``None``, the timeout will never trigger." msgstr "" -#: ../../library/asyncio-task.rst:781 -msgid "" -"If ``when < loop.time()``, the timeout will trigger on the next iteration of " -"the event loop." +msgid "If ``when < loop.time()``, the timeout will trigger on the next iteration of the event loop." msgstr "" -#: ../../library/asyncio-task.rst:786 -msgid "" -"Return the current deadline, or ``None`` if the current deadline is not set." +msgid "Return the current deadline, or ``None`` if the current deadline is not set." msgstr "" -#: ../../library/asyncio-task.rst:791 msgid "Reschedule the timeout." msgstr "" -#: ../../library/asyncio-task.rst:795 msgid "Return whether the context manager has exceeded its deadline (expired)." msgstr "" -#: ../../library/asyncio-task.rst:800 msgid "" "async def main():\n" " try:\n" @@ -1084,17 +685,12 @@ msgid "" " print(\"Looks like we haven't finished on time.\")" msgstr "" -#: ../../library/asyncio-task.rst:815 msgid "Timeout context managers can be safely nested." msgstr "" -#: ../../library/asyncio-task.rst:821 -msgid "" -"Similar to :func:`asyncio.timeout`, except *when* is the absolute time to " -"stop waiting, or ``None``." +msgid "Similar to :func:`asyncio.timeout`, except *when* is the absolute time to stop waiting, or ``None``." msgstr "" -#: ../../library/asyncio-task.rst:826 msgid "" "async def main():\n" " loop = get_running_loop()\n" @@ -1108,41 +704,24 @@ msgid "" " print(\"This statement will run regardless.\")" msgstr "" -#: ../../library/asyncio-task.rst:842 -msgid "" -"Wait for the *aw* :ref:`awaitable ` to complete with a " -"timeout." +msgid "Wait for the *aw* :ref:`awaitable ` to complete with a timeout." msgstr "" -#: ../../library/asyncio-task.rst:847 -msgid "" -"*timeout* can either be ``None`` or a float or int number of seconds to wait " -"for. If *timeout* is ``None``, block until the future completes." +msgid "*timeout* can either be ``None`` or a float or int number of seconds to wait for. If *timeout* is ``None``, block until the future completes." msgstr "" -#: ../../library/asyncio-task.rst:851 -msgid "" -"If a timeout occurs, it cancels the task and raises :exc:`TimeoutError`." +msgid "If a timeout occurs, it cancels the task and raises :exc:`TimeoutError`." msgstr "" -#: ../../library/asyncio-task.rst:854 -msgid "" -"To avoid the task :meth:`cancellation `, wrap it " -"in :func:`shield`." +msgid "To avoid the task :meth:`cancellation `, wrap it in :func:`shield`." msgstr "" -#: ../../library/asyncio-task.rst:857 -msgid "" -"The function will wait until the future is actually cancelled, so the total " -"wait time may exceed the *timeout*. If an exception happens during " -"cancellation, it is propagated." +msgid "The function will wait until the future is actually cancelled, so the total wait time may exceed the *timeout*. If an exception happens during cancellation, it is propagated." msgstr "" -#: ../../library/asyncio-task.rst:861 msgid "If the wait is cancelled, the future *aw* is also cancelled." msgstr "" -#: ../../library/asyncio-task.rst:867 msgid "" "async def eternity():\n" " # Sleep for one hour\n" @@ -1163,122 +742,72 @@ msgid "" "# timeout!" msgstr "" -#: ../../library/asyncio-task.rst:885 -msgid "" -"When *aw* is cancelled due to a timeout, ``wait_for`` waits for *aw* to be " -"cancelled. Previously, it raised :exc:`TimeoutError` immediately." +msgid "When *aw* is cancelled due to a timeout, ``wait_for`` waits for *aw* to be cancelled. Previously, it raised :exc:`TimeoutError` immediately." msgstr "" -#: ../../library/asyncio-task.rst:893 msgid "Raises :exc:`TimeoutError` instead of :exc:`asyncio.TimeoutError`." msgstr "" -#: ../../library/asyncio-task.rst:898 msgid "Waiting primitives" msgstr "" -#: ../../library/asyncio-task.rst:903 -msgid "" -"Run :class:`~asyncio.Future` and :class:`~asyncio.Task` instances in the " -"*aws* iterable concurrently and block until the condition specified by " -"*return_when*." +msgid "Run :class:`~asyncio.Future` and :class:`~asyncio.Task` instances in the *aws* iterable concurrently and block until the condition specified by *return_when*." msgstr "" -#: ../../library/asyncio-task.rst:907 msgid "The *aws* iterable must not be empty." msgstr "" -#: ../../library/asyncio-task.rst:909 msgid "Returns two sets of Tasks/Futures: ``(done, pending)``." msgstr "" -#: ../../library/asyncio-task.rst:911 msgid "Usage::" msgstr "" -#: ../../library/asyncio-task.rst:913 msgid "done, pending = await asyncio.wait(aws)" msgstr "" -#: ../../library/asyncio-task.rst:915 -msgid "" -"*timeout* (a float or int), if specified, can be used to control the maximum " -"number of seconds to wait before returning." +msgid "*timeout* (a float or int), if specified, can be used to control the maximum number of seconds to wait before returning." msgstr "" -#: ../../library/asyncio-task.rst:918 -msgid "" -"Note that this function does not raise :exc:`TimeoutError`. Futures or Tasks " -"that aren't done when the timeout occurs are simply returned in the second " -"set." +msgid "Note that this function does not raise :exc:`TimeoutError`. Futures or Tasks that aren't done when the timeout occurs are simply returned in the second set." msgstr "" -#: ../../library/asyncio-task.rst:922 -msgid "" -"*return_when* indicates when this function should return. It must be one of " -"the following constants:" +msgid "*return_when* indicates when this function should return. It must be one of the following constants:" msgstr "" -#: ../../library/asyncio-task.rst:928 msgid "Constant" msgstr "" -#: ../../library/asyncio-task.rst:929 msgid "Description" msgstr "" -#: ../../library/asyncio-task.rst:932 msgid "The function will return when any future finishes or is cancelled." msgstr "" -#: ../../library/asyncio-task.rst:935 -msgid "" -"The function will return when any future finishes by raising an exception. " -"If no future raises an exception then it is equivalent " -"to :const:`ALL_COMPLETED`." +msgid "The function will return when any future finishes by raising an exception. If no future raises an exception then it is equivalent to :const:`ALL_COMPLETED`." msgstr "" -#: ../../library/asyncio-task.rst:940 msgid "The function will return when all futures finish or are cancelled." msgstr "" -#: ../../library/asyncio-task.rst:942 -msgid "" -"Unlike :func:`~asyncio.wait_for`, ``wait()`` does not cancel the futures " -"when a timeout occurs." +msgid "Unlike :func:`~asyncio.wait_for`, ``wait()`` does not cancel the futures when a timeout occurs." msgstr "" -#: ../../library/asyncio-task.rst:945 -msgid "" -"If ``wait()`` is cancelled, the futures in *aws* are not cancelled and " -"continue to run." +msgid "If ``wait()`` is cancelled, the futures in *aws* are not cancelled and continue to run." msgstr "" -#: ../../library/asyncio-task.rst:951 msgid "Passing coroutine objects to ``wait()`` directly is forbidden." msgstr "" -#: ../../library/asyncio-task.rst:954 ../../library/asyncio-task.rst:1016 msgid "Added support for generators yielding tasks." msgstr "" -#: ../../library/asyncio-task.rst:960 -msgid "" -"Run :ref:`awaitable objects ` in the *aws* iterable " -"concurrently. The returned object can be iterated to obtain the results of " -"the awaitables as they finish." +msgid "Run :ref:`awaitable objects ` in the *aws* iterable concurrently. The returned object can be iterated to obtain the results of the awaitables as they finish." msgstr "" -#: ../../library/asyncio-task.rst:964 -msgid "" -"The object returned by ``as_completed()`` can be iterated as " -"an :term:`asynchronous iterator` or a plain :term:`iterator`. When " -"asynchronous iteration is used, the originally-supplied awaitables are " -"yielded if they are tasks or futures. This makes it easy to correlate " -"previously-scheduled tasks with their results. Example::" +msgid "The object returned by ``as_completed()`` can be iterated as an :term:`asynchronous iterator` or a plain :term:`iterator`. When asynchronous iteration is used, the originally-supplied awaitables are yielded if they are tasks or futures. This makes it easy to correlate previously-scheduled tasks with their results. Example::" msgstr "" -#: ../../library/asyncio-task.rst:970 msgid "" "ipv4_connect = create_task(open_connection(\"127.0.0.1\", 80))\n" "ipv6_connect = create_task(open_connection(\"::1\", 80))\n" @@ -1295,20 +824,12 @@ msgid "" " print(\"IPv4 connection established.\")" msgstr "" -#: ../../library/asyncio-task.rst:984 -msgid "" -"During asynchronous iteration, implicitly-created tasks will be yielded for " -"supplied awaitables that aren't tasks or futures." +msgid "During asynchronous iteration, implicitly-created tasks will be yielded for supplied awaitables that aren't tasks or futures." msgstr "" -#: ../../library/asyncio-task.rst:987 -msgid "" -"When used as a plain iterator, each iteration yields a new coroutine that " -"returns the result or raises the exception of the next completed awaitable. " -"This pattern is compatible with Python versions older than 3.13::" +msgid "When used as a plain iterator, each iteration yields a new coroutine that returns the result or raises the exception of the next completed awaitable. This pattern is compatible with Python versions older than 3.13::" msgstr "" -#: ../../library/asyncio-task.rst:991 msgid "" "ipv4_connect = create_task(open_connection(\"127.0.0.1\", 80))\n" "ipv6_connect = create_task(open_connection(\"::1\", 80))\n" @@ -1321,61 +842,33 @@ msgid "" " reader, writer = await next_connect" msgstr "" -#: ../../library/asyncio-task.rst:1001 -msgid "" -"A :exc:`TimeoutError` is raised if the timeout occurs before all awaitables " -"are done. This is raised by the ``async for`` loop during asynchronous " -"iteration or by the coroutines yielded during plain iteration." +msgid "A :exc:`TimeoutError` is raised if the timeout occurs before all awaitables are done. This is raised by the ``async for`` loop during asynchronous iteration or by the coroutines yielded during plain iteration." msgstr "" -#: ../../library/asyncio-task.rst:1005 -msgid "" -"``as_completed()`` does not cancel the tasks running the supplied " -"awaitables: if a timeout occurs or the iteration is cancelled, the remaining " -"tasks continue to run." +msgid "``as_completed()`` does not cancel the tasks running the supplied awaitables: if a timeout occurs or the iteration is cancelled, the remaining tasks continue to run." msgstr "" -#: ../../library/asyncio-task.rst:1012 -msgid "" -"Deprecation warning is emitted if not all awaitable objects in the *aws* " -"iterable are Future-like objects and there is no running event loop." +msgid "Deprecation warning is emitted if not all awaitable objects in the *aws* iterable are Future-like objects and there is no running event loop." msgstr "" -#: ../../library/asyncio-task.rst:1019 -msgid "" -"The result can now be used as either an :term:`asynchronous iterator` or as " -"a plain :term:`iterator` (previously it was only a plain iterator)." +msgid "The result can now be used as either an :term:`asynchronous iterator` or as a plain :term:`iterator` (previously it was only a plain iterator)." msgstr "" -#: ../../library/asyncio-task.rst:1025 msgid "Running in threads" msgstr "" -#: ../../library/asyncio-task.rst:1030 msgid "Asynchronously run function *func* in a separate thread." msgstr "" -#: ../../library/asyncio-task.rst:1032 -msgid "" -"Any \\*args and \\*\\*kwargs supplied for this function are directly passed " -"to *func*. Also, the current :class:`contextvars.Context` is propagated, " -"allowing context variables from the event loop thread to be accessed in the " -"separate thread." +msgid "Any \\*args and \\*\\*kwargs supplied for this function are directly passed to *func*. Also, the current :class:`contextvars.Context` is propagated, allowing context variables from the event loop thread to be accessed in the separate thread." msgstr "" -#: ../../library/asyncio-task.rst:1037 -msgid "" -"Return a coroutine that can be awaited to get the eventual result of *func*." +msgid "Return a coroutine that can be awaited to get the eventual result of *func*." msgstr "" -#: ../../library/asyncio-task.rst:1039 -msgid "" -"This coroutine function is primarily intended to be used for executing IO-" -"bound functions/methods that would otherwise block the event loop if they " -"were run in the main thread. For example::" +msgid "This coroutine function is primarily intended to be used for executing IO-bound functions/methods that would otherwise block the event loop if they were run in the main thread. For example::" msgstr "" -#: ../../library/asyncio-task.rst:1043 msgid "" "def blocking_io():\n" " print(f\"start blocking_io at {time.strftime('%X')}\")\n" @@ -1404,48 +897,28 @@ msgid "" "# finished main at 19:50:54" msgstr "" -#: ../../library/asyncio-task.rst:1069 -msgid "" -"Directly calling ``blocking_io()`` in any coroutine would block the event " -"loop for its duration, resulting in an additional 1 second of run time. " -"Instead, by using ``asyncio.to_thread()``, we can run it in a separate " -"thread without blocking the event loop." +msgid "Directly calling ``blocking_io()`` in any coroutine would block the event loop for its duration, resulting in an additional 1 second of run time. Instead, by using ``asyncio.to_thread()``, we can run it in a separate thread without blocking the event loop." msgstr "" -#: ../../library/asyncio-task.rst:1076 -msgid "" -"Due to the :term:`GIL`, ``asyncio.to_thread()`` can typically only be used " -"to make IO-bound functions non-blocking. However, for extension modules that " -"release the GIL or alternative Python implementations that don't have one, " -"``asyncio.to_thread()`` can also be used for CPU-bound functions." +msgid "Due to the :term:`GIL`, ``asyncio.to_thread()`` can typically only be used to make IO-bound functions non-blocking. However, for extension modules that release the GIL or alternative Python implementations that don't have one, ``asyncio.to_thread()`` can also be used for CPU-bound functions." msgstr "" -#: ../../library/asyncio-task.rst:1085 msgid "Scheduling from other threads" msgstr "" -#: ../../library/asyncio-task.rst:1089 msgid "Submit a coroutine to the given event loop. Thread-safe." msgstr "" -#: ../../library/asyncio-task.rst:1091 -msgid "" -"Return a :class:`concurrent.futures.Future` to wait for the result from " -"another OS thread." +msgid "Return a :class:`concurrent.futures.Future` to wait for the result from another OS thread." msgstr "" -#: ../../library/asyncio-task.rst:1094 -msgid "" -"This function is meant to be called from a different OS thread than the one " -"where the event loop is running. Example::" +msgid "This function is meant to be called from a different OS thread than the one where the event loop is running. Example::" msgstr "" -#: ../../library/asyncio-task.rst:1097 msgid "" "def in_thread(loop: asyncio.AbstractEventLoop) -> None:\n" " # Run some blocking IO\n" -" pathlib.Path(\"example.txt\").write_text(\"hello world\", " -"encoding=\"utf8\")\n" +" pathlib.Path(\"example.txt\").write_text(\"hello world\", encoding=\"utf8\")\n" "\n" " # Create a coroutine\n" " coro = asyncio.sleep(1, result=3)\n" @@ -1464,11 +937,9 @@ msgid "" " await asyncio.to_thread(in_thread, loop)" msgstr "" -#: ../../library/asyncio-task.rst:1117 msgid "It's also possible to run the other way around. Example::" msgstr "" -#: ../../library/asyncio-task.rst:1119 msgid "" "@contextlib.contextmanager\n" "def loop_in_thread() -> Generator[asyncio.AbstractEventLoop]:\n" @@ -1481,8 +952,7 @@ msgid "" "\n" " with concurrent.futures.ThreadPoolExecutor(1) as tpe:\n" " complete_fut = tpe.submit(asyncio.run, main())\n" -" for fut in concurrent.futures.as_completed((loop_fut, " -"complete_fut)):\n" +" for fut in concurrent.futures.as_completed((loop_fut, complete_fut)):\n" " if fut is loop_fut:\n" " loop = loop_fut.result()\n" " try:\n" @@ -1504,13 +974,9 @@ msgid "" " assert future.result(timeout=2) == 3" msgstr "" -#: ../../library/asyncio-task.rst:1151 -msgid "" -"If an exception is raised in the coroutine, the returned Future will be " -"notified. It can also be used to cancel the task in the event loop::" +msgid "If an exception is raised in the coroutine, the returned Future will be notified. It can also be used to cancel the task in the event loop::" msgstr "" -#: ../../library/asyncio-task.rst:1155 msgid "" "try:\n" " result = future.result(timeout)\n" @@ -1523,346 +989,189 @@ msgid "" " print(f'The coroutine returned: {result!r}')" msgstr "" -#: ../../library/asyncio-task.rst:1165 -msgid "" -"See the :ref:`concurrency and multithreading ` " -"section of the documentation." +msgid "See the :ref:`concurrency and multithreading ` section of the documentation." msgstr "" -#: ../../library/asyncio-task.rst:1168 -msgid "" -"Unlike other asyncio functions this function requires the *loop* argument to " -"be passed explicitly." +msgid "Unlike other asyncio functions this function requires the *loop* argument to be passed explicitly." msgstr "" -#: ../../library/asyncio-task.rst:1175 msgid "Introspection" msgstr "" -#: ../../library/asyncio-task.rst:1180 -msgid "" -"Return the currently running :class:`Task` instance, or ``None`` if no task " -"is running." +msgid "Return the currently running :class:`Task` instance, or ``None`` if no task is running." msgstr "" -#: ../../library/asyncio-task.rst:1183 -msgid "" -"If *loop* is ``None`` :func:`get_running_loop` is used to get the current " -"loop." +msgid "If *loop* is ``None`` :func:`get_running_loop` is used to get the current loop." msgstr "" -#: ../../library/asyncio-task.rst:1191 msgid "Return a set of not yet finished :class:`Task` objects run by the loop." msgstr "" -#: ../../library/asyncio-task.rst:1194 -msgid "" -"If *loop* is ``None``, :func:`get_running_loop` is used for getting current " -"loop." +msgid "If *loop* is ``None``, :func:`get_running_loop` is used for getting current loop." msgstr "" -#: ../../library/asyncio-task.rst:1202 msgid "Return ``True`` if *obj* is a coroutine object." msgstr "" -#: ../../library/asyncio-task.rst:1209 msgid "Task object" msgstr "" -#: ../../library/asyncio-task.rst:1213 -msgid "" -"A :class:`Future-like ` object that runs a Python :ref:`coroutine " -"`. Not thread-safe." +msgid "A :class:`Future-like ` object that runs a Python :ref:`coroutine `. Not thread-safe." msgstr "" -#: ../../library/asyncio-task.rst:1216 -msgid "" -"Tasks are used to run coroutines in event loops. If a coroutine awaits on a " -"Future, the Task suspends the execution of the coroutine and waits for the " -"completion of the Future. When the Future is *done*, the execution of the " -"wrapped coroutine resumes." +msgid "Tasks are used to run coroutines in event loops. If a coroutine awaits on a Future, the Task suspends the execution of the coroutine and waits for the completion of the Future. When the Future is *done*, the execution of the wrapped coroutine resumes." msgstr "" -#: ../../library/asyncio-task.rst:1222 -msgid "" -"Event loops use cooperative scheduling: an event loop runs one Task at a " -"time. While a Task awaits for the completion of a Future, the event loop " -"runs other Tasks, callbacks, or performs IO operations." +msgid "Event loops use cooperative scheduling: an event loop runs one Task at a time. While a Task awaits for the completion of a Future, the event loop runs other Tasks, callbacks, or performs IO operations." msgstr "" -#: ../../library/asyncio-task.rst:1227 -msgid "" -"Use the high-level :func:`asyncio.create_task` function to create Tasks, or " -"the low-level :meth:`loop.create_task` or :func:`ensure_future` functions. " -"Manual instantiation of Tasks is discouraged." +msgid "Use the high-level :func:`asyncio.create_task` function to create Tasks, or the low-level :meth:`loop.create_task` or :func:`ensure_future` functions. Manual instantiation of Tasks is discouraged." msgstr "" -#: ../../library/asyncio-task.rst:1232 -msgid "" -"To cancel a running Task use the :meth:`cancel` method. Calling it will " -"cause the Task to throw a :exc:`CancelledError` exception into the wrapped " -"coroutine. If a coroutine is awaiting on a Future object during " -"cancellation, the Future object will be cancelled." +msgid "To cancel a running Task use the :meth:`cancel` method. Calling it will cause the Task to throw a :exc:`CancelledError` exception into the wrapped coroutine. If a coroutine is awaiting on a Future object during cancellation, the Future object will be cancelled." msgstr "" -#: ../../library/asyncio-task.rst:1237 -msgid "" -":meth:`cancelled` can be used to check if the Task was cancelled. The method " -"returns ``True`` if the wrapped coroutine did not suppress " -"the :exc:`CancelledError` exception and was actually cancelled." +msgid ":meth:`cancelled` can be used to check if the Task was cancelled. The method returns ``True`` if the wrapped coroutine did not suppress the :exc:`CancelledError` exception and was actually cancelled." msgstr "" -#: ../../library/asyncio-task.rst:1242 -msgid "" -":class:`asyncio.Task` inherits from :class:`Future` all of its APIs " -"except :meth:`Future.set_result` and :meth:`Future.set_exception`." +msgid ":class:`asyncio.Task` inherits from :class:`Future` all of its APIs except :meth:`Future.set_result` and :meth:`Future.set_exception`." msgstr "" -#: ../../library/asyncio-task.rst:1246 -msgid "" -"An optional keyword-only *context* argument allows specifying a " -"custom :class:`contextvars.Context` for the *coro* to run in. If no " -"*context* is provided, the Task copies the current context and later runs " -"its coroutine in the copied context." +msgid "An optional keyword-only *context* argument allows specifying a custom :class:`contextvars.Context` for the *coro* to run in. If no *context* is provided, the Task copies the current context and later runs its coroutine in the copied context." msgstr "" -#: ../../library/asyncio-task.rst:1251 -msgid "" -"An optional keyword-only *eager_start* argument allows eagerly starting the " -"execution of the :class:`asyncio.Task` at task creation time. If set to " -"``True`` and the event loop is running, the task will start executing the " -"coroutine immediately, until the first time the coroutine blocks. If the " -"coroutine returns or raises without blocking, the task will be finished " -"eagerly and will skip scheduling to the event loop." +msgid "An optional keyword-only *eager_start* argument allows eagerly starting the execution of the :class:`asyncio.Task` at task creation time. If set to ``True`` and the event loop is running, the task will start executing the coroutine immediately, until the first time the coroutine blocks. If the coroutine returns or raises without blocking, the task will be finished eagerly and will skip scheduling to the event loop." msgstr "" -#: ../../library/asyncio-task.rst:1258 -msgid "" -"Tasks are :ref:`generic ` over the return type of their wrapped " -"coroutines." +msgid "Tasks are :ref:`generic ` over the return type of their wrapped coroutines." msgstr "" -#: ../../library/asyncio-task.rst:1261 msgid "Added support for the :mod:`contextvars` module." msgstr "" -#: ../../library/asyncio-task.rst:1267 -msgid "" -"Deprecation warning is emitted if *loop* is not specified and there is no " -"running event loop." +msgid "Deprecation warning is emitted if *loop* is not specified and there is no running event loop." msgstr "" -#: ../../library/asyncio-task.rst:1274 msgid "Added the *eager_start* parameter." msgstr "" -#: ../../library/asyncio-task.rst:1279 msgid "Return ``True`` if the Task is *done*." msgstr "" -#: ../../library/asyncio-task.rst:1281 -msgid "" -"A Task is *done* when the wrapped coroutine either returned a value, raised " -"an exception, or the Task was cancelled." +msgid "A Task is *done* when the wrapped coroutine either returned a value, raised an exception, or the Task was cancelled." msgstr "" -#: ../../library/asyncio-task.rst:1286 msgid "Return the result of the Task." msgstr "" -#: ../../library/asyncio-task.rst:1288 -msgid "" -"If the Task is *done*, the result of the wrapped coroutine is returned (or " -"if the coroutine raised an exception, that exception is re-raised.)" +msgid "If the Task is *done*, the result of the wrapped coroutine is returned (or if the coroutine raised an exception, that exception is re-raised.)" msgstr "" -#: ../../library/asyncio-task.rst:1292 ../../library/asyncio-task.rst:1306 -msgid "" -"If the Task has been *cancelled*, this method raises a :exc:`CancelledError` " -"exception." +msgid "If the Task has been *cancelled*, this method raises a :exc:`CancelledError` exception." msgstr "" -#: ../../library/asyncio-task.rst:1295 -msgid "" -"If the Task's result isn't yet available, this method raises " -"an :exc:`InvalidStateError` exception." +msgid "If the Task's result isn't yet available, this method raises an :exc:`InvalidStateError` exception." msgstr "" -#: ../../library/asyncio-task.rst:1300 msgid "Return the exception of the Task." msgstr "" -#: ../../library/asyncio-task.rst:1302 -msgid "" -"If the wrapped coroutine raised an exception that exception is returned. If " -"the wrapped coroutine returned normally this method returns ``None``." +msgid "If the wrapped coroutine raised an exception that exception is returned. If the wrapped coroutine returned normally this method returns ``None``." msgstr "" -#: ../../library/asyncio-task.rst:1309 -msgid "" -"If the Task isn't *done* yet, this method raises an :exc:`InvalidStateError` " -"exception." +msgid "If the Task isn't *done* yet, this method raises an :exc:`InvalidStateError` exception." msgstr "" -#: ../../library/asyncio-task.rst:1314 msgid "Add a callback to be run when the Task is *done*." msgstr "" -#: ../../library/asyncio-task.rst:1316 ../../library/asyncio-task.rst:1325 msgid "This method should only be used in low-level callback-based code." msgstr "" -#: ../../library/asyncio-task.rst:1318 -msgid "" -"See the documentation of :meth:`Future.add_done_callback` for more details." +msgid "See the documentation of :meth:`Future.add_done_callback` for more details." msgstr "" -#: ../../library/asyncio-task.rst:1323 msgid "Remove *callback* from the callbacks list." msgstr "" -#: ../../library/asyncio-task.rst:1327 -msgid "" -"See the documentation of :meth:`Future.remove_done_callback` for more " -"details." +msgid "See the documentation of :meth:`Future.remove_done_callback` for more details." msgstr "" -#: ../../library/asyncio-task.rst:1332 msgid "Return the list of stack frames for this Task." msgstr "" -#: ../../library/asyncio-task.rst:1334 -msgid "" -"If the wrapped coroutine is not done, this returns the stack where it is " -"suspended. If the coroutine has completed successfully or was cancelled, " -"this returns an empty list. If the coroutine was terminated by an exception, " -"this returns the list of traceback frames." +msgid "If the wrapped coroutine is not done, this returns the stack where it is suspended. If the coroutine has completed successfully or was cancelled, this returns an empty list. If the coroutine was terminated by an exception, this returns the list of traceback frames." msgstr "" -#: ../../library/asyncio-task.rst:1340 msgid "The frames are always ordered from oldest to newest." msgstr "" -#: ../../library/asyncio-task.rst:1342 msgid "Only one stack frame is returned for a suspended coroutine." msgstr "" -#: ../../library/asyncio-task.rst:1344 -msgid "" -"The optional *limit* argument sets the maximum number of frames to return; " -"by default all available frames are returned. The ordering of the returned " -"list differs depending on whether a stack or a traceback is returned: the " -"newest frames of a stack are returned, but the oldest frames of a traceback " -"are returned. (This matches the behavior of the traceback module.)" +msgid "The optional *limit* argument sets the maximum number of frames to return; by default all available frames are returned. The ordering of the returned list differs depending on whether a stack or a traceback is returned: the newest frames of a stack are returned, but the oldest frames of a traceback are returned. (This matches the behavior of the traceback module.)" msgstr "" -#: ../../library/asyncio-task.rst:1353 msgid "Print the stack or traceback for this Task." msgstr "" -#: ../../library/asyncio-task.rst:1355 -msgid "" -"This produces output similar to that of the traceback module for the frames " -"retrieved by :meth:`get_stack`." +msgid "This produces output similar to that of the traceback module for the frames retrieved by :meth:`get_stack`." msgstr "" -#: ../../library/asyncio-task.rst:1358 msgid "The *limit* argument is passed to :meth:`get_stack` directly." msgstr "" -#: ../../library/asyncio-task.rst:1360 -msgid "" -"The *file* argument is an I/O stream to which the output is written; by " -"default output is written to :data:`sys.stdout`." +msgid "The *file* argument is an I/O stream to which the output is written; by default output is written to :data:`sys.stdout`." msgstr "" -#: ../../library/asyncio-task.rst:1365 msgid "Return the coroutine object wrapped by the :class:`Task`." msgstr "" -#: ../../library/asyncio-task.rst:1369 -msgid "" -"This will return ``None`` for Tasks which have already completed eagerly. " -"See the :ref:`Eager Task Factory `." +msgid "This will return ``None`` for Tasks which have already completed eagerly. See the :ref:`Eager Task Factory `." msgstr "" -#: ../../library/asyncio-task.rst:1376 msgid "Newly added eager task execution means result may be ``None``." msgstr "" -#: ../../library/asyncio-task.rst:1380 -msgid "" -"Return the :class:`contextvars.Context` object associated with the task." +msgid "Return the :class:`contextvars.Context` object associated with the task." msgstr "" -#: ../../library/asyncio-task.rst:1387 msgid "Return the name of the Task." msgstr "" -#: ../../library/asyncio-task.rst:1389 -msgid "" -"If no name has been explicitly assigned to the Task, the default asyncio " -"Task implementation generates a default name during instantiation." +msgid "If no name has been explicitly assigned to the Task, the default asyncio Task implementation generates a default name during instantiation." msgstr "" -#: ../../library/asyncio-task.rst:1397 msgid "Set the name of the Task." msgstr "" -#: ../../library/asyncio-task.rst:1399 -msgid "" -"The *value* argument can be any object, which is then converted to a string." +msgid "The *value* argument can be any object, which is then converted to a string." msgstr "" -#: ../../library/asyncio-task.rst:1402 -msgid "" -"In the default Task implementation, the name will be visible in " -"the :func:`repr` output of a task object." +msgid "In the default Task implementation, the name will be visible in the :func:`repr` output of a task object." msgstr "" -#: ../../library/asyncio-task.rst:1409 msgid "Request the Task to be cancelled." msgstr "" -#: ../../library/asyncio-task.rst:1411 -msgid "" -"If the Task is already *done* or *cancelled*, return ``False``, otherwise, " -"return ``True``." +msgid "If the Task is already *done* or *cancelled*, return ``False``, otherwise, return ``True``." msgstr "" -#: ../../library/asyncio-task.rst:1414 -msgid "" -"The method arranges for a :exc:`CancelledError` exception to be thrown into " -"the wrapped coroutine on the next cycle of the event loop." +msgid "The method arranges for a :exc:`CancelledError` exception to be thrown into the wrapped coroutine on the next cycle of the event loop." msgstr "" -#: ../../library/asyncio-task.rst:1417 -msgid "" -"The coroutine then has a chance to clean up or even deny the request by " -"suppressing the exception with a :keyword:`try` ... ... ``except " -"CancelledError`` ... :keyword:`finally` block. Therefore, " -"unlike :meth:`Future.cancel`, :meth:`Task.cancel` does not guarantee that " -"the Task will be cancelled, although suppressing cancellation completely is " -"not common and is actively discouraged. Should the coroutine nevertheless " -"decide to suppress the cancellation, it needs to call :meth:`Task.uncancel` " -"in addition to catching the exception." +msgid "The coroutine then has a chance to clean up or even deny the request by suppressing the exception with a :keyword:`try` ... ... ``except CancelledError`` ... :keyword:`finally` block. Therefore, unlike :meth:`Future.cancel`, :meth:`Task.cancel` does not guarantee that the Task will be cancelled, although suppressing cancellation completely is not common and is actively discouraged. Should the coroutine nevertheless decide to suppress the cancellation, it needs to call :meth:`Task.uncancel` in addition to catching the exception." msgstr "" -#: ../../library/asyncio-task.rst:1427 msgid "Added the *msg* parameter." msgstr "" -#: ../../library/asyncio-task.rst:1430 msgid "The ``msg`` parameter is propagated from cancelled task to its awaiter." msgstr "" -#: ../../library/asyncio-task.rst:1435 -msgid "" -"The following example illustrates how coroutines can intercept the " -"cancellation request::" +msgid "The following example illustrates how coroutines can intercept the cancellation request::" msgstr "" -#: ../../library/asyncio-task.rst:1438 msgid "" "async def cancel_me():\n" " print('cancel_me(): before sleep')\n" @@ -1899,41 +1208,24 @@ msgid "" "# main(): cancel_me is cancelled now" msgstr "" -#: ../../library/asyncio-task.rst:1474 msgid "Return ``True`` if the Task is *cancelled*." msgstr "" -#: ../../library/asyncio-task.rst:1476 -msgid "" -"The Task is *cancelled* when the cancellation was requested " -"with :meth:`cancel` and the wrapped coroutine propagated " -"the :exc:`CancelledError` exception thrown into it." +msgid "The Task is *cancelled* when the cancellation was requested with :meth:`cancel` and the wrapped coroutine propagated the :exc:`CancelledError` exception thrown into it." msgstr "" -#: ../../library/asyncio-task.rst:1482 msgid "Decrement the count of cancellation requests to this Task." msgstr "" -#: ../../library/asyncio-task.rst:1484 msgid "Returns the remaining number of cancellation requests." msgstr "" -#: ../../library/asyncio-task.rst:1486 -msgid "" -"Note that once execution of a cancelled task completed, further calls " -"to :meth:`uncancel` are ineffective." +msgid "Note that once execution of a cancelled task completed, further calls to :meth:`uncancel` are ineffective." msgstr "" -#: ../../library/asyncio-task.rst:1491 -msgid "" -"This method is used by asyncio's internals and isn't expected to be used by " -"end-user code. In particular, if a Task gets successfully uncancelled, this " -"allows for elements of structured concurrency like :ref:`taskgroups` " -"and :func:`asyncio.timeout` to continue running, isolating cancellation to " -"the respective structured block. For example::" +msgid "This method is used by asyncio's internals and isn't expected to be used by end-user code. In particular, if a Task gets successfully uncancelled, this allows for elements of structured concurrency like :ref:`taskgroups` and :func:`asyncio.timeout` to continue running, isolating cancellation to the respective structured block. For example::" msgstr "" -#: ../../library/asyncio-task.rst:1498 msgid "" "async def make_request_with_timeout():\n" " try:\n" @@ -1947,52 +1239,23 @@ msgid "" " await unrelated_code()" msgstr "" -#: ../../library/asyncio-task.rst:1509 -msgid "" -"While the block with ``make_request()`` and ``make_another_request()`` might " -"get cancelled due to the timeout, ``unrelated_code()`` should continue " -"running even in case of the timeout. This is implemented " -"with :meth:`uncancel`. :class:`TaskGroup` context managers " -"use :func:`uncancel` in a similar fashion." +msgid "While the block with ``make_request()`` and ``make_another_request()`` might get cancelled due to the timeout, ``unrelated_code()`` should continue running even in case of the timeout. This is implemented with :meth:`uncancel`. :class:`TaskGroup` context managers use :func:`uncancel` in a similar fashion." msgstr "" -#: ../../library/asyncio-task.rst:1515 -msgid "" -"If end-user code is, for some reason, suppressing cancellation by " -"catching :exc:`CancelledError`, it needs to call this method to remove the " -"cancellation state." +msgid "If end-user code is, for some reason, suppressing cancellation by catching :exc:`CancelledError`, it needs to call this method to remove the cancellation state." msgstr "" -#: ../../library/asyncio-task.rst:1519 -msgid "" -"When this method decrements the cancellation count to zero, the method " -"checks if a previous :meth:`cancel` call had arranged " -"for :exc:`CancelledError` to be thrown into the task. If it hasn't been " -"thrown yet, that arrangement will be rescinded (by resetting the internal " -"``_must_cancel`` flag)." +msgid "When this method decrements the cancellation count to zero, the method checks if a previous :meth:`cancel` call had arranged for :exc:`CancelledError` to be thrown into the task. If it hasn't been thrown yet, that arrangement will be rescinded (by resetting the internal ``_must_cancel`` flag)." msgstr "" -#: ../../library/asyncio-task.rst:1525 msgid "Changed to rescind pending cancellation requests upon reaching zero." msgstr "" -#: ../../library/asyncio-task.rst:1530 -msgid "" -"Return the number of pending cancellation requests to this Task, i.e., the " -"number of calls to :meth:`cancel` less the number of :meth:`uncancel` calls." +msgid "Return the number of pending cancellation requests to this Task, i.e., the number of calls to :meth:`cancel` less the number of :meth:`uncancel` calls." msgstr "" -#: ../../library/asyncio-task.rst:1534 -msgid "" -"Note that if this number is greater than zero but the Task is still " -"executing, :meth:`cancelled` will still return ``False``. This is because " -"this number can be lowered by calling :meth:`uncancel`, which can lead to " -"the task not being cancelled after all if the cancellation requests go down " -"to zero." +msgid "Note that if this number is greater than zero but the Task is still executing, :meth:`cancelled` will still return ``False``. This is because this number can be lowered by calling :meth:`uncancel`, which can lead to the task not being cancelled after all if the cancellation requests go down to zero." msgstr "" -#: ../../library/asyncio-task.rst:1540 -msgid "" -"This method is used by asyncio's internals and isn't expected to be used by " -"end-user code. See :meth:`uncancel` for more details." +msgid "This method is used by asyncio's internals and isn't expected to be used by end-user code. See :meth:`uncancel` for more details." msgstr "" diff --git a/library/asyncio-threading.po b/library/asyncio-threading.po index fa1ccdda..989c77de 100644 --- a/library/asyncio-threading.po +++ b/library/asyncio-threading.po @@ -10,124 +10,60 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2026-08-25 20:39+0330\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" -#: ../../library/asyncio-threading.rst:6 msgid "asyncio and free-threaded Python" msgstr "" -#: ../../library/asyncio-threading.rst:8 -msgid "" -"asyncio uses an event loop as a scheduler to enable highly efficient " -"concurrency by switching between tasks to allow non-blocking I/O operations. " -"This results in better performance for I/O-bound use cases. It also allows " -"off-loading CPU-bound work to a thread or process pool, but that is still " -"limited by the :term:`global interpreter lock` in CPython." +msgid "asyncio uses an event loop as a scheduler to enable highly efficient concurrency by switching between tasks to allow non-blocking I/O operations. This results in better performance for I/O-bound use cases. It also allows off-loading CPU-bound work to a thread or process pool, but that is still limited by the :term:`global interpreter lock` in CPython." msgstr "" -#: ../../library/asyncio-threading.rst:15 -msgid "" -"However, in :ref:`free-threaded Python `, the " -"GIL is disabled and Python can run true multi-threaded code. This means that " -"asyncio can now take advantage of multiple CPU cores without the limitations " -"imposed by the GIL." +msgid "However, in :ref:`free-threaded Python `, the GIL is disabled and Python can run true multi-threaded code. This means that asyncio can now take advantage of multiple CPU cores without the limitations imposed by the GIL." msgstr "" -#: ../../library/asyncio-threading.rst:20 -msgid "" -"Since Python 3.14, asyncio has first-class support for free-threaded Python, " -"and the implementation of asyncio is safe to use in a multi-threaded " -"environment." +msgid "Since Python 3.14, asyncio has first-class support for free-threaded Python, and the implementation of asyncio is safe to use in a multi-threaded environment." msgstr "" -#: ../../library/asyncio-threading.rst:24 -msgid "" -"A single event loop on one core can handle many connections concurrently, " -"but the Python code that runs to handle each one still executes serially. " -"Once requests involve a non-trivial amount of per-request computation, that " -"handling becomes the bottleneck, and a single core can no longer keep up. " -"Combining asyncio with threads is most useful here: by running an event loop " -"per thread, the handling of different requests can run in parallel across " -"multiple CPU cores. It is also useful when you need to run blocking or CPU-" -"bound code from an asyncio application." +msgid "A single event loop on one core can handle many connections concurrently, but the Python code that runs to handle each one still executes serially. Once requests involve a non-trivial amount of per-request computation, that handling becomes the bottleneck, and a single core can no longer keep up. Combining asyncio with threads is most useful here: by running an event loop per thread, the handling of different requests can run in parallel across multiple CPU cores. It is also useful when you need to run blocking or CPU-bound code from an asyncio application." msgstr "" -#: ../../library/asyncio-threading.rst:37 -msgid "" -"`Scaling asyncio on Free-Threaded Python `__, a blog post by Kumar Aditya " -"which explains the internal changes that make asyncio safe and efficient " -"under free-threaded Python, together with benchmarks of the resulting " -"improvements." +msgid "`Scaling asyncio on Free-Threaded Python `__, a blog post by Kumar Aditya which explains the internal changes that make asyncio safe and efficient under free-threaded Python, together with benchmarks of the resulting improvements." msgstr "" -#: ../../library/asyncio-threading.rst:45 msgid "Thread safety considerations" msgstr "" -#: ../../library/asyncio-threading.rst:47 -msgid "" -"While asyncio is designed to be thread-safe in a free-threaded Python " -"environment, there are still some considerations to keep in mind when using " -"asyncio with threads:" +msgid "While asyncio is designed to be thread-safe in a free-threaded Python environment, there are still some considerations to keep in mind when using asyncio with threads:" msgstr "" -#: ../../library/asyncio-threading.rst:51 -msgid "" -"**Event loop**: Each thread should have its own event loop which should not " -"be shared across threads. This ensures that the event loop can manage its " -"own tasks and callbacks without interference from other threads." +msgid "**Event loop**: Each thread should have its own event loop which should not be shared across threads. This ensures that the event loop can manage its own tasks and callbacks without interference from other threads." msgstr "" -#: ../../library/asyncio-threading.rst:56 -msgid "" -"**Task management**: Tasks and futures created in one thread should not be " -"awaited or manipulated from another thread." +msgid "**Task management**: Tasks and futures created in one thread should not be awaited or manipulated from another thread." msgstr "" -#: ../../library/asyncio-threading.rst:59 -msgid "" -"**Thread-safe APIs**: When interacting with asyncio from multiple threads, " -"it's important to use thread-safe APIs provided by asyncio, such " -"as :func:`asyncio.run_coroutine_threadsafe` for submitting coroutines to an " -"event loop from another thread. If you need to call a callback from a " -"different thread, you can use :meth:`loop.call_soon_threadsafe` to schedule " -"it safely." +msgid "**Thread-safe APIs**: When interacting with asyncio from multiple threads, it's important to use thread-safe APIs provided by asyncio, such as :func:`asyncio.run_coroutine_threadsafe` for submitting coroutines to an event loop from another thread. If you need to call a callback from a different thread, you can use :meth:`loop.call_soon_threadsafe` to schedule it safely." msgstr "" -#: ../../library/asyncio-threading.rst:66 -msgid "" -"**Synchronization**: The synchronization primitives provided by asyncio " -"(like :class:`asyncio.Lock` and :class:`asyncio.Event`) are not designed to " -"be used across threads. If you need to synchronize between threads, you " -"should use the synchronization primitives from the :mod:`threading` module " -"instead." +msgid "**Synchronization**: The synchronization primitives provided by asyncio (like :class:`asyncio.Lock` and :class:`asyncio.Event`) are not designed to be used across threads. If you need to synchronize between threads, you should use the synchronization primitives from the :mod:`threading` module instead." msgstr "" -#: ../../library/asyncio-threading.rst:74 msgid "Using asyncio with threads" msgstr "" -#: ../../library/asyncio-threading.rst:76 -msgid "" -"asyncio supports running one event loop per thread, which allows you to take " -"advantage of multiple CPU cores in a free-threaded Python environment. Each " -"thread can run its own event loop, and tasks can be scheduled on those loops " -"independently." +msgid "asyncio supports running one event loop per thread, which allows you to take advantage of multiple CPU cores in a free-threaded Python environment. Each thread can run its own event loop, and tasks can be scheduled on those loops independently." msgstr "" -#: ../../library/asyncio-threading.rst:81 msgid "Here's an example of how to use asyncio with threads::" msgstr "" -#: ../../library/asyncio-threading.rst:83 msgid "" "import asyncio\n" "import threading\n" @@ -150,27 +86,15 @@ msgid "" " t.join()" msgstr "" -#: ../../library/asyncio-threading.rst:103 -msgid "" -"In this example, each thread creates its own event loop " -"with :func:`asyncio.run` and runs a coroutine on it. The threads execute " -"concurrently, and in a free-threaded build they can run on separate CPU " -"cores in parallel." +msgid "In this example, each thread creates its own event loop with :func:`asyncio.run` and runs a coroutine on it. The threads execute concurrently, and in a free-threaded build they can run on separate CPU cores in parallel." msgstr "" -#: ../../library/asyncio-threading.rst:110 msgid "Producer/consumer across threads" msgstr "" -#: ../../library/asyncio-threading.rst:112 -msgid "" -"When a regular (non-asyncio) thread needs to hand work to an asyncio event " -"loop running in another thread, use a thread-safe primitive such " -"as :class:`queue.Queue` rather than :class:`asyncio.Queue`, which is only " -"safe within a single event loop.::" +msgid "When a regular (non-asyncio) thread needs to hand work to an asyncio event loop running in another thread, use a thread-safe primitive such as :class:`queue.Queue` rather than :class:`asyncio.Queue`, which is only safe within a single event loop.::" msgstr "" -#: ../../library/asyncio-threading.rst:117 msgid "" "import asyncio\n" "import queue\n" @@ -203,12 +127,5 @@ msgid "" "consumer_thread.join()" msgstr "" -#: ../../library/asyncio-threading.rst:147 -msgid "" -"The producer runs on the main thread while the consumer runs inside an event " -"loop on its own thread, yet they communicate safely through ``queue.Queue``. " -"When the queue is empty the consumer sleeps briefly and tries again. When " -"the producer is done it calls :meth:`~queue.Queue.shutdown`, which causes " -"subsequent :meth:`~queue.Queue.get_nowait` calls to " -"raise :exc:`queue.ShutDown` so the consumer can exit cleanly." +msgid "The producer runs on the main thread while the consumer runs inside an event loop on its own thread, yet they communicate safely through ``queue.Queue``. When the queue is empty the consumer sleeps briefly and tries again. When the producer is done it calls :meth:`~queue.Queue.shutdown`, which causes subsequent :meth:`~queue.Queue.get_nowait` calls to raise :exc:`queue.ShutDown` so the consumer can exit cleanly." msgstr "" diff --git a/library/asyncio-tools.po b/library/asyncio-tools.po index 312f8fe8..8ab36720 100644 --- a/library/asyncio-tools.po +++ b/library/asyncio-tools.po @@ -10,70 +10,47 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2026-08-25 20:39+0330\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" -#: ../../library/asyncio-tools.rst:7 msgid "Command-line introspection tools" msgstr "" -#: ../../library/asyncio-tools.rst:9 msgid "**Source code:** :source:`Lib/asyncio/tools.py`" msgstr "" -#: ../../library/asyncio-tools.rst:13 -msgid "" -"The :mod:`!asyncio` module can be invoked as a script via ``python -m " -"asyncio`` to inspect the task graph of another running Python process " -"without modifying it or restarting it. The :mod:`!asyncio.tools` submodule " -"implements this interface." +msgid "The :mod:`!asyncio` module can be invoked as a script via ``python -m asyncio`` to inspect the task graph of another running Python process without modifying it or restarting it. The :mod:`!asyncio.tools` submodule implements this interface." msgstr "" -#: ../../library/asyncio-tools.rst:18 msgid "The following commands inspect the process identified by ``PID``:" msgstr "" -#: ../../library/asyncio-tools.rst:20 msgid "" "$ python -m asyncio pstree PID\n" "$ python -m asyncio ps PID" msgstr "" -#: ../../library/asyncio-tools.rst:25 -msgid "" -"The commands read the target process state without executing any code in it. " -"They are only available on supported platforms and may require permission to " -"inspect another process. See the :ref:`permission requirements ` for details." +msgid "The commands read the target process state without executing any code in it. They are only available on supported platforms and may require permission to inspect another process. See the :ref:`permission requirements ` for details." msgstr "" -#: ../../library/asyncio-tools.rst:31 msgid ":ref:`asyncio-graph`" msgstr "" -#: ../../library/asyncio-tools.rst:32 -msgid "" -"Programmatic APIs for inspecting the async call graph of a task or future in " -"the current process." +msgid "Programmatic APIs for inspecting the async call graph of a task or future in the current process." msgstr "" -#: ../../library/asyncio-tools.rst:35 -msgid "" -"The command examples below use this program, which creates a task hierarchy " -"suitable for inspection and prints its process ID:" +msgid "The command examples below use this program, which creates a task hierarchy suitable for inspection and prints its process ID:" msgstr "" -#: ../../library/asyncio-tools.rst:38 msgid "example.py" msgstr "" -#: ../../library/asyncio-tools.rst:38 msgid "" "import asyncio\n" "import os\n" @@ -102,37 +79,23 @@ msgid "" "asyncio.run(main())" msgstr "" -#: ../../library/asyncio-tools.rst:67 msgid "Run the program in one terminal and leave it running:" msgstr "" -#: ../../library/asyncio-tools.rst:69 msgid "" "$ python example.py\n" "PID: 12345" msgstr "" -#: ../../library/asyncio-tools.rst:74 -msgid "" -"Then pass the printed process ID to the commands from another terminal. " -"Thread IDs, task IDs, file paths, and line numbers vary between runs and " -"source layouts." +msgid "Then pass the printed process ID to the commands from another terminal. Thread IDs, task IDs, file paths, and line numbers vary between runs and source layouts." msgstr "" -#: ../../library/asyncio-tools.rst:81 msgid "Command-line options" msgstr "" -#: ../../library/asyncio-tools.rst:85 -msgid "" -"Display task and coroutine relationships as a tree. Each task is shown with " -"its full coroutine stack, nested under the task (if any) that is awaiting " -"it. This subcommand is useful for quickly identifying which branch of a " -"task hierarchy is blocked and where in its coroutine stack execution has " -"paused:" +msgid "Display task and coroutine relationships as a tree. Each task is shown with its full coroutine stack, nested under the task (if any) that is awaiting it. This subcommand is useful for quickly identifying which branch of a task hierarchy is blocked and where in its coroutine stack execution has paused:" msgstr "" -#: ../../library/asyncio-tools.rst:91 msgid "" "$ python -m asyncio pstree 12345\n" "└── (T) Task-1\n" @@ -141,10 +104,8 @@ msgid "" " └── TaskGroup._aexit Lib/asyncio/taskgroups.py:124\n" " ├── (T) Sundowning\n" " │ └── album example.py:7\n" -" │ └── TaskGroup.__aexit__ Lib/asyncio/" -"taskgroups.py:75\n" -" │ └── TaskGroup._aexit Lib/asyncio/" -"taskgroups.py:124\n" +" │ └── TaskGroup.__aexit__ Lib/asyncio/taskgroups.py:75\n" +" │ └── TaskGroup._aexit Lib/asyncio/taskgroups.py:124\n" " │ ├── (T) TNDNBTG\n" " │ │ └── play example.py:4\n" " │ │ └── sleep Lib/asyncio/tasks.py:702\n" @@ -153,10 +114,8 @@ msgid "" " │ └── sleep Lib/asyncio/tasks.py:702\n" " └── (T) TMBTE\n" " └── album example.py:7\n" -" └── TaskGroup.__aexit__ Lib/asyncio/" -"taskgroups.py:75\n" -" └── TaskGroup._aexit Lib/asyncio/" -"taskgroups.py:124\n" +" └── TaskGroup.__aexit__ Lib/asyncio/taskgroups.py:75\n" +" └── TaskGroup._aexit Lib/asyncio/taskgroups.py:124\n" " ├── (T) DYWTYLM\n" " │ └── play example.py:4\n" " │ └── sleep Lib/asyncio/tasks.py:702\n" @@ -165,14 +124,9 @@ msgid "" " └── sleep Lib/asyncio/tasks.py:702" msgstr "" -#: ../../library/asyncio-tools.rst:119 -msgid "" -"If the await graph contains a cycle, ``pstree`` reports an error instead of " -"printing a tree. A cycle in the await graph is unusual and typically " -"indicates a programming error:" +msgid "If the await graph contains a cycle, ``pstree`` reports an error instead of printing a tree. A cycle in the await graph is unusual and typically indicates a programming error:" msgstr "" -#: ../../library/asyncio-tools.rst:123 msgid "" "$ python -m asyncio pstree 12345\n" "ERROR: await-graph contains cycles - cannot print a tree!\n" @@ -180,46 +134,21 @@ msgid "" "cycle: Task-2 → Task-3 → Task-2" msgstr "" -#: ../../library/asyncio-tools.rst:132 -msgid "" -"Display a flat table of all pending tasks in the process *PID*. Each row " -"shows the event-loop thread ID, task ID and name, coroutine stack, and the " -"awaiting task's stack, name, and ID, if any." +msgid "Display a flat table of all pending tasks in the process *PID*. Each row shows the event-loop thread ID, task ID and name, coroutine stack, and the awaiting task's stack, name, and ID, if any." msgstr "" -#: ../../library/asyncio-tools.rst:136 -msgid "" -"This subcommand prints all tasks regardless of whether the await graph " -"contains cycles:" +msgid "This subcommand prints all tasks regardless of whether the await graph contains cycles:" msgstr "" -#: ../../library/asyncio-tools.rst:139 msgid "" "$ python -m asyncio ps 12345\n" -"tid task id task name coroutine " -"stack awaiter " -"chain awaiter name awaiter id\n" +"tid task id task name coroutine stack awaiter chain awaiter name awaiter id\n" "------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------\n" -"18445801 0x10a456060 Task-1 TaskGroup._aexit -> " -"TaskGroup.__aexit__ -> " -"main " -"0x0\n" -"18445801 0x10a439f60 Sundowning TaskGroup._aexit -> " -"TaskGroup.__aexit__ -> album TaskGroup._aexit -> TaskGroup.__aexit__ -> " -"main Task-1 0x10a456060\n" -"18445801 0x10a439d70 TMBTE TaskGroup._aexit -> " -"TaskGroup.__aexit__ -> album TaskGroup._aexit -> TaskGroup.__aexit__ -> " -"main Task-1 0x10a456060\n" -"18445801 0x10a2a3a80 TNDNBTG sleep -> " -"play TaskGroup._aexit -> " -"TaskGroup.__aexit__ -> album Sundowning 0x10a439f60\n" -"18445801 0x10a2a38a0 Levitate sleep -> " -"play TaskGroup._aexit -> " -"TaskGroup.__aexit__ -> album Sundowning 0x10a439f60\n" -"18445801 0x10a2d7150 DYWTYLM sleep -> " -"play TaskGroup._aexit -> " -"TaskGroup.__aexit__ -> album TMBTE 0x10a439d70\n" -"18445801 0x10a6bdaa0 Aqua Regia sleep -> " -"play TaskGroup._aexit -> " -"TaskGroup.__aexit__ -> album TMBTE 0x10a439d70" +"18445801 0x10a456060 Task-1 TaskGroup._aexit -> TaskGroup.__aexit__ -> main 0x0\n" +"18445801 0x10a439f60 Sundowning TaskGroup._aexit -> TaskGroup.__aexit__ -> album TaskGroup._aexit -> TaskGroup.__aexit__ -> main Task-1 0x10a456060\n" +"18445801 0x10a439d70 TMBTE TaskGroup._aexit -> TaskGroup.__aexit__ -> album TaskGroup._aexit -> TaskGroup.__aexit__ -> main Task-1 0x10a456060\n" +"18445801 0x10a2a3a80 TNDNBTG sleep -> play TaskGroup._aexit -> TaskGroup.__aexit__ -> album Sundowning 0x10a439f60\n" +"18445801 0x10a2a38a0 Levitate sleep -> play TaskGroup._aexit -> TaskGroup.__aexit__ -> album Sundowning 0x10a439f60\n" +"18445801 0x10a2d7150 DYWTYLM sleep -> play TaskGroup._aexit -> TaskGroup.__aexit__ -> album TMBTE 0x10a439d70\n" +"18445801 0x10a6bdaa0 Aqua Regia sleep -> play TaskGroup._aexit -> TaskGroup.__aexit__ -> album TMBTE 0x10a439d70" msgstr "" diff --git a/library/asyncio.po b/library/asyncio.po index 1079b78a..f94e45de 100644 --- a/library/asyncio.po +++ b/library/asyncio.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:55+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,31 +23,24 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/asyncio.rst:107 msgid "High-level APIs" msgstr "" -#: ../../library/asyncio.rst:119 msgid "Introspection APIs" msgstr "" -#: ../../library/asyncio.rst:126 msgid "Low-level APIs" msgstr "" -#: ../../library/asyncio.rst:137 msgid "Guides and Tutorials" msgstr "" -#: ../../library/asyncio.rst:2 msgid ":mod:`!asyncio` --- Asynchronous I/O" msgstr "" -#: ../../library/asyncio.rst:-1 msgid "Hello World!" msgstr "" -#: ../../library/asyncio.rst:13 msgid "" "import asyncio\n" "\n" @@ -59,159 +52,96 @@ msgid "" "asyncio.run(main())" msgstr "" -#: ../../library/asyncio.rst:22 -msgid "" -"asyncio is a library to write **concurrent** code using the **async/await** " -"syntax." +msgid "asyncio is a library to write **concurrent** code using the **async/await** syntax." msgstr "" -#: ../../library/asyncio.rst:25 -msgid "" -"asyncio is used as a foundation for multiple Python asynchronous frameworks " -"that provide high-performance network and web-servers, database connection " -"libraries, distributed task queues, etc." +msgid "asyncio is used as a foundation for multiple Python asynchronous frameworks that provide high-performance network and web-servers, database connection libraries, distributed task queues, etc." msgstr "" -#: ../../library/asyncio.rst:29 -msgid "" -"asyncio is often a perfect fit for IO-bound and high-level **structured** " -"network code." +msgid "asyncio is often a perfect fit for IO-bound and high-level **structured** network code." msgstr "" -#: ../../library/asyncio.rst:34 msgid ":ref:`a-conceptual-overview-of-asyncio`" msgstr "" -#: ../../library/asyncio.rst:35 msgid "Explanation of the fundamentals of asyncio." msgstr "" -#: ../../library/asyncio.rst:37 msgid "asyncio provides a set of **high-level** APIs to:" msgstr "" -#: ../../library/asyncio.rst:39 -msgid "" -":ref:`run Python coroutines ` concurrently and have full control " -"over their execution;" +msgid ":ref:`run Python coroutines ` concurrently and have full control over their execution;" msgstr "" -#: ../../library/asyncio.rst:42 msgid "perform :ref:`network IO and IPC `;" msgstr "" -#: ../../library/asyncio.rst:44 msgid "control :ref:`subprocesses `;" msgstr "" -#: ../../library/asyncio.rst:46 msgid "distribute tasks via :ref:`queues `;" msgstr "" -#: ../../library/asyncio.rst:48 msgid ":ref:`synchronize ` concurrent code;" msgstr "" -#: ../../library/asyncio.rst:50 msgid "For **introspection**, asyncio provides APIs and tools for:" msgstr "" -#: ../../library/asyncio.rst:52 -msgid "" -"inspecting the :ref:`async call graph ` of tasks and futures;" +msgid "inspecting the :ref:`async call graph ` of tasks and futures;" msgstr "" -#: ../../library/asyncio.rst:54 -msgid "" -"inspecting tasks in another running Python process with :ref:`command-line " -"tools `;" +msgid "inspecting tasks in another running Python process with :ref:`command-line tools `;" msgstr "" -#: ../../library/asyncio.rst:57 -msgid "" -"Additionally, there are **low-level** APIs for *library and framework " -"developers* to:" +msgid "Additionally, there are **low-level** APIs for *library and framework developers* to:" msgstr "" -#: ../../library/asyncio.rst:60 -msgid "" -"create and manage :ref:`event loops `, which provide " -"asynchronous APIs for :ref:`networking `, " -"running :ref:`subprocesses `, handling :ref:`OS " -"signals `, etc;" +msgid "create and manage :ref:`event loops `, which provide asynchronous APIs for :ref:`networking `, running :ref:`subprocesses `, handling :ref:`OS signals `, etc;" msgstr "" -#: ../../library/asyncio.rst:65 -msgid "" -"implement efficient protocols using :ref:`transports `;" +msgid "implement efficient protocols using :ref:`transports `;" msgstr "" -#: ../../library/asyncio.rst:68 -msgid "" -":ref:`bridge ` callback-based libraries and code with async/" -"await syntax." +msgid ":ref:`bridge ` callback-based libraries and code with async/await syntax." msgstr "" -#: ../../includes/wasm-notavail.rst:3 msgid "Availability" msgstr "" -#: ../../includes/wasm-notavail.rst:5 -msgid "" -"This module does not work or is not available on WebAssembly. See :ref:`wasm-" -"availability` for more information." +msgid "This module does not work or is not available on WebAssembly. See :ref:`wasm-availability` for more information." msgstr "" -#: ../../library/asyncio.rst:76 msgid "asyncio REPL" msgstr "" -#: ../../library/asyncio.rst:77 -msgid "" -"You can experiment with an ``asyncio`` concurrent context in " -"the :term:`REPL`:" +msgid "You can experiment with an ``asyncio`` concurrent context in the :term:`REPL`:" msgstr "" -#: ../../library/asyncio.rst:79 msgid "" "$ python -m asyncio\n" "asyncio REPL ...\n" "Use \"await\" directly instead of \"asyncio.run()\".\n" -"Type \"help\", \"copyright\", \"credits\" or \"license\" for more " -"information.\n" +"Type \"help\", \"copyright\", \"credits\" or \"license\" for more information.\n" ">>> import asyncio\n" ">>> await asyncio.sleep(10, result='hello')\n" "'hello'" msgstr "" -#: ../../library/asyncio.rst:89 -msgid "" -"This REPL provides limited compatibility with :envvar:`PYTHON_BASIC_REPL`. " -"It is recommended that the default REPL is used for full functionality and " -"the latest features." +msgid "This REPL provides limited compatibility with :envvar:`PYTHON_BASIC_REPL`. It is recommended that the default REPL is used for full functionality and the latest features." msgstr "" -#: ../../library/asyncio.rst:93 -msgid "" -"Raises an :ref:`auditing event ` ``cpython.run_stdin`` with no " -"arguments." +msgid "Raises an :ref:`auditing event ` ``cpython.run_stdin`` with no arguments." msgstr "" -#: ../../library/asyncio.rst:95 msgid "(also 3.11.10, 3.10.15, 3.9.20, and 3.8.20) Emits audit events." msgstr "" -#: ../../library/asyncio.rst:98 -msgid "" -"Uses PyREPL if possible, in which case :envvar:`PYTHONSTARTUP` is also " -"executed. Emits audit events." +msgid "Uses PyREPL if possible, in which case :envvar:`PYTHONSTARTUP` is also executed. Emits audit events." msgstr "" -#: ../../library/asyncio.rst:106 msgid "Reference" msgstr "" -#: ../../library/asyncio.rst:147 msgid "The source code for asyncio can be found in :source:`Lib/asyncio/`." msgstr "" diff --git a/library/asyncore.po b/library/asyncore.po index 3f02e30c..e873e9cb 100644 --- a/library/asyncore.po +++ b/library/asyncore.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2024-11-19 01:02+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,23 +21,14 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/asyncore.rst:2 msgid ":mod:`!asyncore` --- Asynchronous socket handler" msgstr "" -#: ../../library/asyncore.rst:10 -msgid "" -"This module is no longer part of the Python standard library. It " -"was :ref:`removed in Python 3.12 ` after being " -"deprecated in Python 3.6. The removal was decided in :pep:`594`." +msgid "This module is no longer part of the Python standard library. It was :ref:`removed in Python 3.12 ` after being deprecated in Python 3.6. The removal was decided in :pep:`594`." msgstr "" -#: ../../library/asyncore.rst:14 msgid "Applications should use the :mod:`asyncio` module instead." msgstr "" -#: ../../library/asyncore.rst:16 -msgid "" -"The last version of Python that provided the :mod:`!asyncore` module was " -"`Python 3.11 `_." +msgid "The last version of Python that provided the :mod:`!asyncore` module was `Python 3.11 `_." msgstr "" diff --git a/library/atexit.po b/library/atexit.po index 70162ecd..8eb1a6a1 100644 --- a/library/atexit.po +++ b/library/atexit.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:55+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,118 +21,54 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/atexit.rst:2 msgid ":mod:`!atexit` --- Exit handlers" msgstr "" -#: ../../library/atexit.rst:12 -msgid "" -"The :mod:`!atexit` module defines functions to register and unregister " -"cleanup functions. Functions thus registered are automatically executed " -"upon normal interpreter termination. :mod:`!atexit` runs these functions in " -"the *reverse* order in which they were registered; if you register ``A``, " -"``B``, and ``C``, at interpreter termination time they will be run in the " -"order ``C``, ``B``, ``A``." +msgid "The :mod:`!atexit` module defines functions to register and unregister cleanup functions. Functions thus registered are automatically executed upon normal interpreter termination. :mod:`!atexit` runs these functions in the *reverse* order in which they were registered; if you register ``A``, ``B``, and ``C``, at interpreter termination time they will be run in the order ``C``, ``B``, ``A``." msgstr "" -#: ../../library/atexit.rst:19 -msgid "" -"**Note:** The functions registered via this module are not called when the " -"program is killed by a signal not handled by Python, when a Python fatal " -"internal error is detected, or when :func:`os._exit` is called." +msgid "**Note:** The functions registered via this module are not called when the program is killed by a signal not handled by Python, when a Python fatal internal error is detected, or when :func:`os._exit` is called." msgstr "" -#: ../../library/atexit.rst:23 -msgid "" -"**Note:** The effect of registering or unregistering functions from within a " -"cleanup function is undefined." +msgid "**Note:** The effect of registering or unregistering functions from within a cleanup function is undefined." msgstr "" -#: ../../library/atexit.rst:26 -msgid "" -"When used with C-API subinterpreters, registered functions are local to the " -"interpreter they were registered in." +msgid "When used with C-API subinterpreters, registered functions are local to the interpreter they were registered in." msgstr "" -#: ../../library/atexit.rst:32 -msgid "" -"Register *func* as a function to be executed at termination. Any optional " -"arguments that are to be passed to *func* must be passed as arguments " -"to :func:`register`. It is possible to register the same function and " -"arguments more than once." +msgid "Register *func* as a function to be executed at termination. Any optional arguments that are to be passed to *func* must be passed as arguments to :func:`register`. It is possible to register the same function and arguments more than once." msgstr "" -#: ../../library/atexit.rst:37 -msgid "" -"At normal program termination (for instance, if :func:`sys.exit` is called " -"or the main module's execution completes), all functions registered are " -"called in last in, first out order. The assumption is that lower level " -"modules will normally be imported before higher level modules and thus must " -"be cleaned up later." +msgid "At normal program termination (for instance, if :func:`sys.exit` is called or the main module's execution completes), all functions registered are called in last in, first out order. The assumption is that lower level modules will normally be imported before higher level modules and thus must be cleaned up later." msgstr "" -#: ../../library/atexit.rst:43 -msgid "" -"If an exception is raised during execution of the exit handlers, a traceback " -"is printed (unless :exc:`SystemExit` is raised) and the exception " -"information is saved. After all exit handlers have had a chance to run, the " -"last exception to be raised is re-raised." +msgid "If an exception is raised during execution of the exit handlers, a traceback is printed (unless :exc:`SystemExit` is raised) and the exception information is saved. After all exit handlers have had a chance to run, the last exception to be raised is re-raised." msgstr "" -#: ../../library/atexit.rst:48 -msgid "" -"This function returns *func*, which makes it possible to use it as a " -"decorator." +msgid "This function returns *func*, which makes it possible to use it as a decorator." msgstr "" -#: ../../library/atexit.rst:52 -msgid "" -"Starting new threads or calling :func:`os.fork` from a registered function " -"can lead to race condition between the main Python runtime thread freeing " -"thread states while internal :mod:`threading` routines or the new process " -"try to use that state. This can lead to crashes rather than clean shutdown." +msgid "Starting new threads or calling :func:`os.fork` from a registered function can lead to race condition between the main Python runtime thread freeing thread states while internal :mod:`threading` routines or the new process try to use that state. This can lead to crashes rather than clean shutdown." msgstr "" -#: ../../library/atexit.rst:58 -msgid "" -"Attempts to start a new thread or :func:`os.fork` a new process in a " -"registered function now leads to :exc:`RuntimeError`." +msgid "Attempts to start a new thread or :func:`os.fork` a new process in a registered function now leads to :exc:`RuntimeError`." msgstr "" -#: ../../library/atexit.rst:64 -msgid "" -"Remove *func* from the list of functions to be run at interpreter " -"shutdown. :func:`unregister` silently does nothing if *func* was not " -"previously registered. If *func* has been registered more than once, every " -"occurrence of that function in the :mod:`!atexit` call stack will be " -"removed. Equality comparisons (``==``) are used internally during " -"unregistration, so function references do not need to have matching " -"identities." +msgid "Remove *func* from the list of functions to be run at interpreter shutdown. :func:`unregister` silently does nothing if *func* was not previously registered. If *func* has been registered more than once, every occurrence of that function in the :mod:`!atexit` call stack will be removed. Equality comparisons (``==``) are used internally during unregistration, so function references do not need to have matching identities." msgstr "" -#: ../../library/atexit.rst:74 msgid "Module :mod:`readline`" msgstr "" -#: ../../library/atexit.rst:75 -msgid "" -"Useful example of :mod:`!atexit` to read and write :mod:`readline` history " -"files." +msgid "Useful example of :mod:`!atexit` to read and write :mod:`readline` history files." msgstr "" -#: ../../library/atexit.rst:82 msgid ":mod:`!atexit` Example" msgstr "" -#: ../../library/atexit.rst:84 -msgid "" -"The following simple example demonstrates how a module can initialize a " -"counter from a file when it is imported and save the counter's updated value " -"automatically when the program terminates without relying on the application " -"making an explicit call into this module at termination. ::" +msgid "The following simple example demonstrates how a module can initialize a counter from a file when it is imported and save the counter's updated value automatically when the program terminates without relying on the application making an explicit call into this module at termination. ::" msgstr "" -#: ../../library/atexit.rst:89 msgid "" "try:\n" " with open('counterfile') as infile:\n" @@ -153,13 +89,9 @@ msgid "" "atexit.register(savecounter)" msgstr "" -#: ../../library/atexit.rst:107 -msgid "" -"Positional and keyword arguments may also be passed to :func:`register` to " -"be passed along to the registered function when it is called::" +msgid "Positional and keyword arguments may also be passed to :func:`register` to be passed along to the registered function when it is called::" msgstr "" -#: ../../library/atexit.rst:110 msgid "" "def goodbye(name, adjective):\n" " print('Goodbye %s, it was %s to meet you.' % (name, adjective))\n" @@ -171,11 +103,9 @@ msgid "" "atexit.register(goodbye, adjective='nice', name='Donny')" msgstr "" -#: ../../library/atexit.rst:119 msgid "Usage as a :term:`decorator`::" msgstr "" -#: ../../library/atexit.rst:121 msgid "" "import atexit\n" "\n" @@ -184,6 +114,5 @@ msgid "" " print('You are now leaving the Python sector.')" msgstr "" -#: ../../library/atexit.rst:127 msgid "This only works with functions that can be called without arguments." msgstr "" diff --git a/library/audioop.po b/library/audioop.po index 367e5bad..67ad1a34 100644 --- a/library/audioop.po +++ b/library/audioop.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2024-11-19 01:02+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,19 +21,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/audioop.rst:2 msgid ":mod:`!audioop` --- Manipulate raw audio data" msgstr "" -#: ../../library/audioop.rst:10 -msgid "" -"This module is no longer part of the Python standard library. It " -"was :ref:`removed in Python 3.13 ` after being " -"deprecated in Python 3.11. The removal was decided in :pep:`594`." +msgid "This module is no longer part of the Python standard library. It was :ref:`removed in Python 3.13 ` after being deprecated in Python 3.11. The removal was decided in :pep:`594`." msgstr "" -#: ../../library/audioop.rst:14 -msgid "" -"The last version of Python that provided the :mod:`!audioop` module was " -"`Python 3.12 `_." +msgid "The last version of Python that provided the :mod:`!audioop` module was `Python 3.12 `_." msgstr "" diff --git a/library/audit_events.po b/library/audit_events.po index 09897103..7bd05d39 100644 --- a/library/audit_events.po +++ b/library/audit_events.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:55+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,118 +23,80 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/audit_events.rst:6 msgid "Audit events table" msgstr "" -#: ../../library/audit_events.rst:8 -msgid "" -"This table contains all events raised by :func:`sys.audit` " -"or :c:func:`PySys_Audit` calls throughout the CPython runtime and the " -"standard library. These calls were added in 3.8 or later (see :pep:`578`)." +msgid "This table contains all events raised by :func:`sys.audit` or :c:func:`PySys_Audit` calls throughout the CPython runtime and the standard library. These calls were added in 3.8 or later (see :pep:`578`)." msgstr "" -#: ../../library/audit_events.rst:12 -msgid "" -"See :func:`sys.addaudithook` and :c:func:`PySys_AddAuditHook` for " -"information on handling these events." +msgid "See :func:`sys.addaudithook` and :c:func:`PySys_AddAuditHook` for information on handling these events." msgstr "" -#: ../../library/audit_events.rst:17 -msgid "" -"This table is generated from the CPython documentation, and may not " -"represent events raised by other implementations. See your runtime specific " -"documentation for actual events raised." +msgid "This table is generated from the CPython documentation, and may not represent events raised by other implementations. See your runtime specific documentation for actual events raised." msgstr "" -#: ../../library/audit_events.rst:23 -msgid "" -"The following events are raised internally and do not correspond to any " -"public API of CPython:" +msgid "The following events are raised internally and do not correspond to any public API of CPython:" msgstr "" -#: ../../library/audit_events.rst:27 msgid "Audit event" msgstr "" -#: ../../library/audit_events.rst:27 msgid "Arguments" msgstr "" -#: ../../library/audit_events.rst:29 msgid "_winapi.CreateFile" msgstr "" -#: ../../library/audit_events.rst:29 -msgid "" -"``file_name``, ``desired_access``, ``share_mode``, ``creation_disposition``, " -"``flags_and_attributes``" +msgid "``file_name``, ``desired_access``, ``share_mode``, ``creation_disposition``, ``flags_and_attributes``" msgstr "" -#: ../../library/audit_events.rst:33 msgid "_winapi.CreateJunction" msgstr "" -#: ../../library/audit_events.rst:33 msgid "``src_path``, ``dst_path``" msgstr "" -#: ../../library/audit_events.rst:35 msgid "_winapi.CreateNamedPipe" msgstr "" -#: ../../library/audit_events.rst:35 msgid "``name``, ``open_mode``, ``pipe_mode``" msgstr "" -#: ../../library/audit_events.rst:37 msgid "_winapi.CreatePipe" msgstr "" -#: ../../library/audit_events.rst:39 msgid "_winapi.CreateProcess" msgstr "" -#: ../../library/audit_events.rst:39 msgid "``application_name``, ``command_line``, ``current_directory``" msgstr "" -#: ../../library/audit_events.rst:42 msgid "_winapi.OpenProcess" msgstr "" -#: ../../library/audit_events.rst:42 msgid "``process_id``, ``desired_access``" msgstr "" -#: ../../library/audit_events.rst:44 msgid "_winapi.TerminateProcess" msgstr "" -#: ../../library/audit_events.rst:44 msgid "``handle``, ``exit_code``" msgstr "" -#: ../../library/audit_events.rst:46 msgid "_posixsubprocess.fork_exec" msgstr "" -#: ../../library/audit_events.rst:46 msgid "``exec_list``, ``args``, ``env``" msgstr "" -#: ../../library/audit_events.rst:48 msgid "ctypes.PyObj_FromPtr" msgstr "" -#: ../../library/audit_events.rst:48 msgid "``obj``" msgstr "" -#: ../../library/audit_events.rst:51 msgid "The ``_posixsubprocess.fork_exec`` internal audit event." msgstr "" -#: ../../library/audit_events.rst:3 msgid "audit events" msgstr "" diff --git a/library/base64.po b/library/base64.po index 6ad06a2a..9742a6c4 100644 --- a/library/base64.po +++ b/library/base64.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:55+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,491 +23,236 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/base64.rst:2 msgid ":mod:`!base64` --- Base16, Base32, Base64, Base85 Data Encodings" msgstr "" -#: ../../library/base64.rst:8 msgid "**Source code:** :source:`Lib/base64.py`" msgstr "" -#: ../../library/base64.rst:16 -msgid "" -"This module provides functions for encoding binary data to printable ASCII " -"characters and decoding such encodings back to binary data. This includes " -"the :ref:`encodings specified in ` :rfc:`4648` (Base64, " -"Base32 and Base16), the :ref:`Base85 encoding ` specified in " -"`PDF 2.0 `_, and non-standard " -"variants of Base85 used elsewhere." +msgid "This module provides functions for encoding binary data to printable ASCII characters and decoding such encodings back to binary data. This includes the :ref:`encodings specified in ` :rfc:`4648` (Base64, Base32 and Base16), the :ref:`Base85 encoding ` specified in `PDF 2.0 `_, and non-standard variants of Base85 used elsewhere." msgstr "" -#: ../../library/base64.rst:24 -msgid "" -"There are two interfaces provided by this module. The modern interface " -"supports encoding :term:`bytes-like objects ` to " -"ASCII :class:`bytes`, and decoding :term:`bytes-like objects ` or strings containing ASCII to :class:`bytes`. Both base-64 " -"alphabets defined in :rfc:`4648` (normal, and URL- and filesystem-safe) are " -"supported." +msgid "There are two interfaces provided by this module. The modern interface supports encoding :term:`bytes-like objects ` to ASCII :class:`bytes`, and decoding :term:`bytes-like objects ` or strings containing ASCII to :class:`bytes`. Both base-64 alphabets defined in :rfc:`4648` (normal, and URL- and filesystem-safe) are supported." msgstr "" -#: ../../library/base64.rst:30 -msgid "" -"The :ref:`legacy interface ` does not support decoding from " -"strings, but it does provide functions for encoding and decoding to and " -"from :term:`file objects `. It only supports the Base64 " -"standard alphabet, and it adds newlines every 76 characters as " -"per :rfc:`2045`. Note that if you are looking for :rfc:`2045` support you " -"probably want to be looking at the :mod:`email` package instead." +msgid "The :ref:`legacy interface ` does not support decoding from strings, but it does provide functions for encoding and decoding to and from :term:`file objects `. It only supports the Base64 standard alphabet, and it adds newlines every 76 characters as per :rfc:`2045`. Note that if you are looking for :rfc:`2045` support you probably want to be looking at the :mod:`email` package instead." msgstr "" -#: ../../library/base64.rst:38 -msgid "" -"ASCII-only Unicode strings are now accepted by the decoding functions of the " -"modern interface." +msgid "ASCII-only Unicode strings are now accepted by the decoding functions of the modern interface." msgstr "" -#: ../../library/base64.rst:42 -msgid "" -"Any :term:`bytes-like objects ` are now accepted by all " -"encoding and decoding functions in this module. Ascii85/Base85 support " -"added." +msgid "Any :term:`bytes-like objects ` are now accepted by all encoding and decoding functions in this module. Ascii85/Base85 support added." msgstr "" -#: ../../library/base64.rst:50 msgid "RFC 4648 Encodings" msgstr "" -#: ../../library/base64.rst:52 -msgid "" -"The :rfc:`4648` encodings are suitable for encoding binary data so that it " -"can be safely sent by email, used as parts of URLs, or included as part of " -"an HTTP POST request." +msgid "The :rfc:`4648` encodings are suitable for encoding binary data so that it can be safely sent by email, used as parts of URLs, or included as part of an HTTP POST request." msgstr "" -#: ../../library/base64.rst:58 -msgid "" -"Encode the :term:`bytes-like object` *s* using Base64 and return the " -"encoded :class:`bytes`." +msgid "Encode the :term:`bytes-like object` *s* using Base64 and return the encoded :class:`bytes`." msgstr "" -#: ../../library/base64.rst:61 -msgid "" -"Optional *altchars* must be a :term:`bytes-like object` of length 2 which " -"specifies an alternative alphabet for the ``+`` and ``/`` characters. This " -"allows an application to e.g. generate URL or filesystem safe Base64 " -"strings. The default is ``None``, for which the standard Base64 alphabet is " -"used." +msgid "Optional *altchars* must be a :term:`bytes-like object` of length 2 which specifies an alternative alphabet for the ``+`` and ``/`` characters. This allows an application to e.g. generate URL or filesystem safe Base64 strings. The default is ``None``, for which the standard Base64 alphabet is used." msgstr "" -#: ../../library/base64.rst:66 -msgid "" -"May assert or raise a :exc:`ValueError` if the length of *altchars* is not " -"2. Raises a :exc:`TypeError` if *altchars* is not a :term:`bytes-like " -"object`." +msgid "May assert or raise a :exc:`ValueError` if the length of *altchars* is not 2. Raises a :exc:`TypeError` if *altchars* is not a :term:`bytes-like object`." msgstr "" -#: ../../library/base64.rst:72 -msgid "" -"Decode the Base64 encoded :term:`bytes-like object` or ASCII string *s* and " -"return the decoded :class:`bytes`." +msgid "Decode the Base64 encoded :term:`bytes-like object` or ASCII string *s* and return the decoded :class:`bytes`." msgstr "" -#: ../../library/base64.rst:75 -msgid "" -"Optional *altchars* must be a :term:`bytes-like object` or ASCII string of " -"length 2 which specifies the alternative alphabet used instead of the ``+`` " -"and ``/`` characters." +msgid "Optional *altchars* must be a :term:`bytes-like object` or ASCII string of length 2 which specifies the alternative alphabet used instead of the ``+`` and ``/`` characters." msgstr "" -#: ../../library/base64.rst:79 -msgid "" -"A :exc:`binascii.Error` exception is raised if *s* is incorrectly padded." +msgid "A :exc:`binascii.Error` exception is raised if *s* is incorrectly padded." msgstr "" -#: ../../library/base64.rst:82 -msgid "" -"If *validate* is ``False`` (the default), characters that are neither in the " -"normal base-64 alphabet nor the alternative alphabet are discarded prior to " -"the padding check. If *validate* is ``True``, these non-alphabet characters " -"in the input result in a :exc:`binascii.Error`." +msgid "If *validate* is ``False`` (the default), characters that are neither in the normal base-64 alphabet nor the alternative alphabet are discarded prior to the padding check. If *validate* is ``True``, these non-alphabet characters in the input result in a :exc:`binascii.Error`." msgstr "" -#: ../../library/base64.rst:88 -msgid "" -"For more information about the strict base64 check, " -"see :func:`binascii.a2b_base64`" +msgid "For more information about the strict base64 check, see :func:`binascii.a2b_base64`" msgstr "" -#: ../../library/base64.rst:90 -msgid "" -"May assert or raise a :exc:`ValueError` if the length of *altchars* is not 2." +msgid "May assert or raise a :exc:`ValueError` if the length of *altchars* is not 2." msgstr "" -#: ../../library/base64.rst:94 -msgid "" -"Encode :term:`bytes-like object` *s* using the standard Base64 alphabet and " -"return the encoded :class:`bytes`." +msgid "Encode :term:`bytes-like object` *s* using the standard Base64 alphabet and return the encoded :class:`bytes`." msgstr "" -#: ../../library/base64.rst:100 -msgid "" -"Decode :term:`bytes-like object` or ASCII string *s* using the standard " -"Base64 alphabet and return the decoded :class:`bytes`." +msgid "Decode :term:`bytes-like object` or ASCII string *s* using the standard Base64 alphabet and return the decoded :class:`bytes`." msgstr "" -#: ../../library/base64.rst:106 -msgid "" -"Encode :term:`bytes-like object` *s* using the URL- and filesystem-safe " -"alphabet, which substitutes ``-`` instead of ``+`` and ``_`` instead of ``/" -"`` in the standard Base64 alphabet, and return the encoded :class:`bytes`. " -"The result can still contain ``=``." +msgid "Encode :term:`bytes-like object` *s* using the URL- and filesystem-safe alphabet, which substitutes ``-`` instead of ``+`` and ``_`` instead of ``/`` in the standard Base64 alphabet, and return the encoded :class:`bytes`. The result can still contain ``=``." msgstr "" -#: ../../library/base64.rst:115 -msgid "" -"Decode :term:`bytes-like object` or ASCII string *s* using the URL- and " -"filesystem-safe alphabet, which substitutes ``-`` instead of ``+`` and ``_`` " -"instead of ``/`` in the standard Base64 alphabet, and return the " -"decoded :class:`bytes`." +msgid "Decode :term:`bytes-like object` or ASCII string *s* using the URL- and filesystem-safe alphabet, which substitutes ``-`` instead of ``+`` and ``_`` instead of ``/`` in the standard Base64 alphabet, and return the decoded :class:`bytes`." msgstr "" -#: ../../library/base64.rst:124 -msgid "" -"Encode the :term:`bytes-like object` *s* using Base32 and return the " -"encoded :class:`bytes`." +msgid "Encode the :term:`bytes-like object` *s* using Base32 and return the encoded :class:`bytes`." msgstr "" -#: ../../library/base64.rst:130 -msgid "" -"Decode the Base32 encoded :term:`bytes-like object` or ASCII string *s* and " -"return the decoded :class:`bytes`." +msgid "Decode the Base32 encoded :term:`bytes-like object` or ASCII string *s* and return the decoded :class:`bytes`." msgstr "" -#: ../../library/base64.rst:133 ../../library/base64.rst:181 -msgid "" -"Optional *casefold* is a flag specifying whether a lowercase alphabet is " -"acceptable as input. For security purposes, the default is ``False``." +msgid "Optional *casefold* is a flag specifying whether a lowercase alphabet is acceptable as input. For security purposes, the default is ``False``." msgstr "" -#: ../../library/base64.rst:137 -msgid "" -":rfc:`4648` allows for optional mapping of the digit 0 (zero) to the letter " -"O (oh), and for optional mapping of the digit 1 (one) to either the letter I " -"(eye) or letter L (el). The optional argument *map01* when not ``None``, " -"specifies which letter the digit 1 should be mapped to (when *map01* is not " -"``None``, the digit 0 is always mapped to the letter O). For security " -"purposes the default is ``None``, so that 0 and 1 are not allowed in the " -"input." +msgid ":rfc:`4648` allows for optional mapping of the digit 0 (zero) to the letter O (oh), and for optional mapping of the digit 1 (one) to either the letter I (eye) or letter L (el). The optional argument *map01* when not ``None``, specifies which letter the digit 1 should be mapped to (when *map01* is not ``None``, the digit 0 is always mapped to the letter O). For security purposes the default is ``None``, so that 0 and 1 are not allowed in the input." msgstr "" -#: ../../library/base64.rst:144 ../../library/base64.rst:185 -msgid "" -"A :exc:`binascii.Error` is raised if *s* is incorrectly padded or if there " -"are non-alphabet characters present in the input." +msgid "A :exc:`binascii.Error` is raised if *s* is incorrectly padded or if there are non-alphabet characters present in the input." msgstr "" -#: ../../library/base64.rst:151 -msgid "" -"Similar to :func:`b32encode` but uses the Extended Hex Alphabet, as defined " -"in :rfc:`4648`." +msgid "Similar to :func:`b32encode` but uses the Extended Hex Alphabet, as defined in :rfc:`4648`." msgstr "" -#: ../../library/base64.rst:159 -msgid "" -"Similar to :func:`b32decode` but uses the Extended Hex Alphabet, as defined " -"in :rfc:`4648`." +msgid "Similar to :func:`b32decode` but uses the Extended Hex Alphabet, as defined in :rfc:`4648`." msgstr "" -#: ../../library/base64.rst:162 -msgid "" -"This version does not allow the digit 0 (zero) to the letter O (oh) and " -"digit 1 (one) to either the letter I (eye) or letter L (el) mappings, all " -"these characters are included in the Extended Hex Alphabet and are not " -"interchangeable." +msgid "This version does not allow the digit 0 (zero) to the letter O (oh) and digit 1 (one) to either the letter I (eye) or letter L (el) mappings, all these characters are included in the Extended Hex Alphabet and are not interchangeable." msgstr "" -#: ../../library/base64.rst:172 -msgid "" -"Encode the :term:`bytes-like object` *s* using Base16 and return the " -"encoded :class:`bytes`." +msgid "Encode the :term:`bytes-like object` *s* using Base16 and return the encoded :class:`bytes`." msgstr "" -#: ../../library/base64.rst:178 -msgid "" -"Decode the Base16 encoded :term:`bytes-like object` or ASCII string *s* and " -"return the decoded :class:`bytes`." +msgid "Decode the Base16 encoded :term:`bytes-like object` or ASCII string *s* and return the decoded :class:`bytes`." msgstr "" -#: ../../library/base64.rst:192 msgid "Base85 Encodings" msgstr "" -#: ../../library/base64.rst:194 -msgid "" -"Base85 encoding is a family of algorithms which represent four bytes using " -"five ASCII characters. Originally implemented in the Unix ``btoa(1)`` " -"utility, a version of it was later adopted by Adobe in the PostScript " -"language and is standardized in PDF 2.0 (ISO 32000-2). This version, in both " -"its ``btoa`` and PDF variants, is implemented by :func:`a85encode`." +msgid "Base85 encoding is a family of algorithms which represent four bytes using five ASCII characters. Originally implemented in the Unix ``btoa(1)`` utility, a version of it was later adopted by Adobe in the PostScript language and is standardized in PDF 2.0 (ISO 32000-2). This version, in both its ``btoa`` and PDF variants, is implemented by :func:`a85encode`." msgstr "" -#: ../../library/base64.rst:201 -msgid "" -"A separate version, using a different output character set, was defined as " -"an April Fool's joke in :rfc:`1924` but is now used by Git and other " -"software. This version is implemented by :func:`b85encode`." +msgid "A separate version, using a different output character set, was defined as an April Fool's joke in :rfc:`1924` but is now used by Git and other software. This version is implemented by :func:`b85encode`." msgstr "" -#: ../../library/base64.rst:205 -msgid "" -"Finally, a third version, using yet another output character set designed " -"for safe inclusion in programming language strings, is defined by ZeroMQ and " -"implemented here by :func:`z85encode`." +msgid "Finally, a third version, using yet another output character set designed for safe inclusion in programming language strings, is defined by ZeroMQ and implemented here by :func:`z85encode`." msgstr "" -#: ../../library/base64.rst:209 -msgid "" -"The functions present in this module differ in how they handle the following:" +msgid "The functions present in this module differ in how they handle the following:" msgstr "" -#: ../../library/base64.rst:211 msgid "Whether to include and expect enclosing ``<~`` and ``~>`` markers." msgstr "" -#: ../../library/base64.rst:212 msgid "Whether to fold the input into multiple lines." msgstr "" -#: ../../library/base64.rst:213 msgid "The set of ASCII characters used for encoding." msgstr "" -#: ../../library/base64.rst:214 msgid "Compact encodings of sequences of spaces and null bytes." msgstr "" -#: ../../library/base64.rst:215 msgid "The encoding of zero-padding bytes applied to the input." msgstr "" -#: ../../library/base64.rst:217 -msgid "" -"Refer to the documentation of the individual functions for more information." +msgid "Refer to the documentation of the individual functions for more information." msgstr "" -#: ../../library/base64.rst:221 -msgid "" -"Encode the :term:`bytes-like object` *b* using Ascii85 and return the " -"encoded :class:`bytes`." +msgid "Encode the :term:`bytes-like object` *b* using Ascii85 and return the encoded :class:`bytes`." msgstr "" -#: ../../library/base64.rst:224 -msgid "" -"*foldspaces* is an optional flag that uses the special short sequence 'y' " -"instead of 4 consecutive spaces (ASCII 0x20) as supported by 'btoa'. This " -"feature is not supported by the standard encoding used in PDF." +msgid "*foldspaces* is an optional flag that uses the special short sequence 'y' instead of 4 consecutive spaces (ASCII 0x20) as supported by 'btoa'. This feature is not supported by the standard encoding used in PDF." msgstr "" -#: ../../library/base64.rst:228 -msgid "" -"*wrapcol* controls whether the output should have newline (``b'\\n'``) " -"characters added to it. If this is non-zero, each output line will be at " -"most this many characters long, excluding the trailing newline." +msgid "*wrapcol* controls whether the output should have newline (``b'\\n'``) characters added to it. If this is non-zero, each output line will be at most this many characters long, excluding the trailing newline." msgstr "" -#: ../../library/base64.rst:232 -msgid "" -"*pad* controls whether zero-padding applied to the end of the input is fully " -"retained in the output encoding, as done by ``btoa``, producing an exact " -"multiple of 5 bytes of output. This is not part of the standard encoding " -"used in PDF, as it does not preserve the length of the data." +msgid "*pad* controls whether zero-padding applied to the end of the input is fully retained in the output encoding, as done by ``btoa``, producing an exact multiple of 5 bytes of output. This is not part of the standard encoding used in PDF, as it does not preserve the length of the data." msgstr "" -#: ../../library/base64.rst:238 -msgid "" -"*adobe* controls whether the encoded byte sequence is framed with ``<~`` and " -"``~>``, as in a PostScript base-85 string literal. Note that while " -"ASCII85Decode streams in PDF documents *must* be terminated with ``~>``, " -"they *must not* use a leading ``<~``." +msgid "*adobe* controls whether the encoded byte sequence is framed with ``<~`` and ``~>``, as in a PostScript base-85 string literal. Note that while ASCII85Decode streams in PDF documents *must* be terminated with ``~>``, they *must not* use a leading ``<~``." msgstr "" -#: ../../library/base64.rst:248 -msgid "" -"Decode the Ascii85 encoded :term:`bytes-like object` or ASCII string *b* and " -"return the decoded :class:`bytes`." +msgid "Decode the Ascii85 encoded :term:`bytes-like object` or ASCII string *b* and return the decoded :class:`bytes`." msgstr "" -#: ../../library/base64.rst:251 -msgid "" -"*foldspaces* is a flag that specifies whether the 'y' short sequence should " -"be accepted as shorthand for 4 consecutive spaces (ASCII 0x20). This feature " -"is not supported by the standard Ascii85 encoding used in PDF and PostScript." +msgid "*foldspaces* is a flag that specifies whether the 'y' short sequence should be accepted as shorthand for 4 consecutive spaces (ASCII 0x20). This feature is not supported by the standard Ascii85 encoding used in PDF and PostScript." msgstr "" -#: ../../library/base64.rst:256 -msgid "" -"*adobe* controls whether the ``<~`` and ``~>`` markers are present. While " -"the leading ``<~`` is not required, the input must end with ``~>``, or " -"a :exc:`ValueError` is raised." +msgid "*adobe* controls whether the ``<~`` and ``~>`` markers are present. While the leading ``<~`` is not required, the input must end with ``~>``, or a :exc:`ValueError` is raised." msgstr "" -#: ../../library/base64.rst:260 -msgid "" -"*ignorechars* should be a byte string containing characters to ignore from " -"the input. This should only contain whitespace characters, and by default " -"contains all whitespace characters in ASCII." +msgid "*ignorechars* should be a byte string containing characters to ignore from the input. This should only contain whitespace characters, and by default contains all whitespace characters in ASCII." msgstr "" -#: ../../library/base64.rst:269 -msgid "" -"Encode the :term:`bytes-like object` *b* using base85 (as used in e.g. git-" -"style binary diffs) and return the encoded :class:`bytes`." +msgid "Encode the :term:`bytes-like object` *b* using base85 (as used in e.g. git-style binary diffs) and return the encoded :class:`bytes`." msgstr "" -#: ../../library/base64.rst:272 -msgid "" -"The input is padded with ``b'\\0'`` so its length is a multiple of 4 bytes " -"before encoding. If *pad* is true, all the resulting characters are " -"retained in the output, which will always be a multiple of 5 bytes, and thus " -"the length of the data may not be preserved on decoding." +msgid "The input is padded with ``b'\\0'`` so its length is a multiple of 4 bytes before encoding. If *pad* is true, all the resulting characters are retained in the output, which will always be a multiple of 5 bytes, and thus the length of the data may not be preserved on decoding." msgstr "" -#: ../../library/base64.rst:283 -msgid "" -"Decode the base85-encoded :term:`bytes-like object` or ASCII string *b* and " -"return the decoded :class:`bytes`." +msgid "Decode the base85-encoded :term:`bytes-like object` or ASCII string *b* and return the decoded :class:`bytes`." msgstr "" -#: ../../library/base64.rst:291 -msgid "" -"Encode the :term:`bytes-like object` *s* using Z85 (as used in ZeroMQ) and " -"return the encoded :class:`bytes`." +msgid "Encode the :term:`bytes-like object` *s* using Z85 (as used in ZeroMQ) and return the encoded :class:`bytes`." msgstr "" -#: ../../library/base64.rst:294 -msgid "" -"The `ZeroMQ specification `_ requires the " -"length of Z85-encoded data to be a multiple of 5 bytes. To produce compliant " -"data frames, you must pad the input data to this function to a multiple of 4 " -"bytes." +msgid "The `ZeroMQ specification `_ requires the length of Z85-encoded data to be a multiple of 5 bytes. To produce compliant data frames, you must pad the input data to this function to a multiple of 4 bytes." msgstr "" -#: ../../library/base64.rst:304 -msgid "" -"Decode the Z85-encoded :term:`bytes-like object` or ASCII string *s* and " -"return the decoded :class:`bytes`." +msgid "Decode the Z85-encoded :term:`bytes-like object` or ASCII string *s* and return the decoded :class:`bytes`." msgstr "" -#: ../../library/base64.rst:313 msgid "Legacy Interface" msgstr "" -#: ../../library/base64.rst:317 -msgid "" -"Decode the contents of the binary *input* file and write the resulting " -"binary data to the *output* file. *input* and *output* must be :term:`file " -"objects `. *input* will be read until ``input.readline()`` " -"returns an empty bytes object." +msgid "Decode the contents of the binary *input* file and write the resulting binary data to the *output* file. *input* and *output* must be :term:`file objects `. *input* will be read until ``input.readline()`` returns an empty bytes object." msgstr "" -#: ../../library/base64.rst:325 -msgid "" -"Decode the :term:`bytes-like object` *s*, which must contain one or more " -"lines of base64 encoded data, and return the decoded :class:`bytes`." +msgid "Decode the :term:`bytes-like object` *s*, which must contain one or more lines of base64 encoded data, and return the decoded :class:`bytes`." msgstr "" -#: ../../library/base64.rst:333 -msgid "" -"Encode the contents of the binary *input* file and write the resulting " -"base64 encoded data to the *output* file. *input* and *output* must " -"be :term:`file objects `. *input* will be read until " -"``input.read()`` returns an empty bytes object. :func:`encode` inserts a " -"newline character (``b'\\n'``) after every 76 bytes of the output, as well " -"as ensuring that the output always ends with a newline, as per :rfc:`2045` " -"(MIME)." +msgid "Encode the contents of the binary *input* file and write the resulting base64 encoded data to the *output* file. *input* and *output* must be :term:`file objects `. *input* will be read until ``input.read()`` returns an empty bytes object. :func:`encode` inserts a newline character (``b'\\n'``) after every 76 bytes of the output, as well as ensuring that the output always ends with a newline, as per :rfc:`2045` (MIME)." msgstr "" -#: ../../library/base64.rst:343 -msgid "" -"Encode the :term:`bytes-like object` *s*, which can contain arbitrary binary " -"data, and return :class:`bytes` containing the base64-encoded data, with " -"newlines (``b'\\n'``) inserted after every 76 bytes of output, and ensuring " -"that there is a trailing newline, as per :rfc:`2045` (MIME)." +msgid "Encode the :term:`bytes-like object` *s*, which can contain arbitrary binary data, and return :class:`bytes` containing the base64-encoded data, with newlines (``b'\\n'``) inserted after every 76 bytes of output, and ensuring that there is a trailing newline, as per :rfc:`2045` (MIME)." msgstr "" -#: ../../library/base64.rst:351 msgid "An example usage of the module:" msgstr "" -#: ../../library/base64.rst:364 msgid "Security Considerations" msgstr "" -#: ../../library/base64.rst:366 -msgid "" -"A new security considerations section was added to :rfc:`4648` (section 12); " -"it's recommended to review the security section for any code deployed to " -"production." +msgid "A new security considerations section was added to :rfc:`4648` (section 12); it's recommended to review the security section for any code deployed to production." msgstr "" -#: ../../library/base64.rst:371 msgid "Module :mod:`binascii`" msgstr "" -#: ../../library/base64.rst:372 -msgid "" -"Support module containing ASCII-to-binary and binary-to-ASCII conversions." +msgid "Support module containing ASCII-to-binary and binary-to-ASCII conversions." msgstr "" -#: ../../library/base64.rst:374 -msgid "" -":rfc:`1521` - MIME (Multipurpose Internet Mail Extensions) Part One: " -"Mechanisms for Specifying and Describing the Format of Internet Message " -"Bodies" +msgid ":rfc:`1521` - MIME (Multipurpose Internet Mail Extensions) Part One: Mechanisms for Specifying and Describing the Format of Internet Message Bodies" msgstr "" -#: ../../library/base64.rst:375 -msgid "" -"Section 5.2, \"Base64 Content-Transfer-Encoding,\" provides the definition " -"of the base64 encoding." +msgid "Section 5.2, \"Base64 Content-Transfer-Encoding,\" provides the definition of the base64 encoding." msgstr "" -#: ../../library/base64.rst:378 -msgid "" -"`ISO 32000-2 Portable document format - Part 2: PDF 2.0 `_" +msgid "`ISO 32000-2 Portable document format - Part 2: PDF 2.0 `_" msgstr "" -#: ../../library/base64.rst:379 -msgid "" -"Section 7.4.3, \"ASCII85Decode Filter,\" provides the definition of the " -"Ascii85 encoding used in PDF and PostScript, including the output character " -"set and the details of data length preservation using zero-padding and " -"partial output groups." +msgid "Section 7.4.3, \"ASCII85Decode Filter,\" provides the definition of the Ascii85 encoding used in PDF and PostScript, including the output character set and the details of data length preservation using zero-padding and partial output groups." msgstr "" -#: ../../library/base64.rst:384 msgid "`ZeroMQ RFC 32/Z85 `_" msgstr "" -#: ../../library/base64.rst:385 -msgid "" -"The \"Formal Specification\" section provides the character set used in Z85." +msgid "The \"Formal Specification\" section provides the character set used in Z85." msgstr "" -#: ../../library/base64.rst:10 msgid "base64" msgstr "" -#: ../../library/base64.rst:10 msgid "encoding" msgstr "" -#: ../../library/base64.rst:10 msgid "MIME" msgstr "" -#: ../../library/base64.rst:10 msgid "base64 encoding" msgstr "" diff --git a/library/bdb.po b/library/bdb.po index 69fa6d44..45f173c4 100644 --- a/library/bdb.po +++ b/library/bdb.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:55+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,651 +23,359 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/bdb.rst:2 msgid ":mod:`!bdb` --- Debugger framework" msgstr "" -#: ../../library/bdb.rst:7 msgid "**Source code:** :source:`Lib/bdb.py`" msgstr "" -#: ../../library/bdb.rst:11 -msgid "" -"The :mod:`!bdb` module handles basic debugger functions, like setting " -"breakpoints or managing execution via the debugger." +msgid "The :mod:`!bdb` module handles basic debugger functions, like setting breakpoints or managing execution via the debugger." msgstr "" -#: ../../library/bdb.rst:14 msgid "The following exception is defined:" msgstr "" -#: ../../library/bdb.rst:18 msgid "Exception raised by the :class:`Bdb` class for quitting the debugger." msgstr "" -#: ../../library/bdb.rst:21 msgid "The :mod:`!bdb` module also defines two classes:" msgstr "" -#: ../../library/bdb.rst:25 -msgid "" -"This class implements temporary breakpoints, ignore counts, disabling and " -"(re-)enabling, and conditionals." +msgid "This class implements temporary breakpoints, ignore counts, disabling and (re-)enabling, and conditionals." msgstr "" -#: ../../library/bdb.rst:28 -msgid "" -"Breakpoints are indexed by number through a list called :attr:`bpbynumber` " -"and by ``(file, line)`` pairs through :attr:`bplist`. The former points to " -"a single instance of class :class:`Breakpoint`. The latter points to a list " -"of such instances since there may be more than one breakpoint per line." +msgid "Breakpoints are indexed by number through a list called :attr:`bpbynumber` and by ``(file, line)`` pairs through :attr:`bplist`. The former points to a single instance of class :class:`Breakpoint`. The latter points to a list of such instances since there may be more than one breakpoint per line." msgstr "" -#: ../../library/bdb.rst:33 -msgid "" -"When creating a breakpoint, its associated :attr:`file name ` should " -"be in canonical form. If a :attr:`funcname` is defined, a " -"breakpoint :attr:`hit ` will be counted when the first line of that " -"function is executed. A :attr:`conditional ` breakpoint always counts " -"a :attr:`hit `." +msgid "When creating a breakpoint, its associated :attr:`file name ` should be in canonical form. If a :attr:`funcname` is defined, a breakpoint :attr:`hit ` will be counted when the first line of that function is executed. A :attr:`conditional ` breakpoint always counts a :attr:`hit `." msgstr "" -#: ../../library/bdb.rst:39 msgid ":class:`Breakpoint` instances have the following methods:" msgstr "" -#: ../../library/bdb.rst:43 -msgid "" -"Delete the breakpoint from the list associated to a file/line. If it is the " -"last breakpoint in that position, it also deletes the entry for the file/" -"line." +msgid "Delete the breakpoint from the list associated to a file/line. If it is the last breakpoint in that position, it also deletes the entry for the file/line." msgstr "" -#: ../../library/bdb.rst:50 msgid "Mark the breakpoint as enabled." msgstr "" -#: ../../library/bdb.rst:55 msgid "Mark the breakpoint as disabled." msgstr "" -#: ../../library/bdb.rst:60 -msgid "" -"Return a string with all the information about the breakpoint, nicely " -"formatted:" +msgid "Return a string with all the information about the breakpoint, nicely formatted:" msgstr "" -#: ../../library/bdb.rst:63 msgid "Breakpoint number." msgstr "" -#: ../../library/bdb.rst:64 msgid "Temporary status (del or keep)." msgstr "" -#: ../../library/bdb.rst:65 msgid "File/line position." msgstr "" -#: ../../library/bdb.rst:66 msgid "Break condition." msgstr "" -#: ../../library/bdb.rst:67 msgid "Number of times to ignore." msgstr "" -#: ../../library/bdb.rst:68 msgid "Number of times hit." msgstr "" -#: ../../library/bdb.rst:74 -msgid "" -"Print the output of :meth:`bpformat` to the file *out*, or if it is " -"``None``, to standard output." +msgid "Print the output of :meth:`bpformat` to the file *out*, or if it is ``None``, to standard output." msgstr "" -#: ../../library/bdb.rst:77 msgid ":class:`Breakpoint` instances have the following attributes:" msgstr "" -#: ../../library/bdb.rst:81 msgid "File name of the :class:`Breakpoint`." msgstr "" -#: ../../library/bdb.rst:85 msgid "Line number of the :class:`Breakpoint` within :attr:`file`." msgstr "" -#: ../../library/bdb.rst:89 msgid "``True`` if a :class:`Breakpoint` at (file, line) is temporary." msgstr "" -#: ../../library/bdb.rst:93 msgid "Condition for evaluating a :class:`Breakpoint` at (file, line)." msgstr "" -#: ../../library/bdb.rst:97 -msgid "" -"Function name that defines whether a :class:`Breakpoint` is hit upon " -"entering the function." +msgid "Function name that defines whether a :class:`Breakpoint` is hit upon entering the function." msgstr "" -#: ../../library/bdb.rst:102 msgid "``True`` if :class:`Breakpoint` is enabled." msgstr "" -#: ../../library/bdb.rst:106 msgid "Numeric index for a single instance of a :class:`Breakpoint`." msgstr "" -#: ../../library/bdb.rst:110 -msgid "" -"Dictionary of :class:`Breakpoint` instances indexed by " -"(:attr:`file`, :attr:`line`) tuples." +msgid "Dictionary of :class:`Breakpoint` instances indexed by (:attr:`file`, :attr:`line`) tuples." msgstr "" -#: ../../library/bdb.rst:115 msgid "Number of times to ignore a :class:`Breakpoint`." msgstr "" -#: ../../library/bdb.rst:119 msgid "Count of the number of times a :class:`Breakpoint` has been hit." msgstr "" -#: ../../library/bdb.rst:123 msgid "The :class:`Bdb` class acts as a generic Python debugger base class." msgstr "" -#: ../../library/bdb.rst:125 -msgid "" -"This class takes care of the details of the trace facility; a derived class " -"should implement user interaction. The standard debugger class " -"(:class:`pdb.Pdb`) is an example." +msgid "This class takes care of the details of the trace facility; a derived class should implement user interaction. The standard debugger class (:class:`pdb.Pdb`) is an example." msgstr "" -#: ../../library/bdb.rst:129 -msgid "" -"The *skip* argument, if given, must be an iterable of glob-style module name " -"patterns. The debugger will not step into frames that originate in a module " -"that matches one of these patterns. Whether a frame is considered to " -"originate in a certain module is determined by the ``__name__`` in the frame " -"globals." +msgid "The *skip* argument, if given, must be an iterable of glob-style module name patterns. The debugger will not step into frames that originate in a module that matches one of these patterns. Whether a frame is considered to originate in a certain module is determined by the ``__name__`` in the frame globals." msgstr "" -#: ../../library/bdb.rst:135 -msgid "" -"The *backend* argument specifies the backend to use for :class:`Bdb`. It can " -"be either ``'settrace'`` or ``'monitoring'``. ``'settrace'`` " -"uses :func:`sys.settrace` which has the best backward compatibility. The " -"``'monitoring'`` backend uses the new :mod:`sys.monitoring` that was " -"introduced in Python 3.12, which can be much more efficient because it can " -"disable unused events. We are trying to keep the exact interfaces for both " -"backends, but there are some differences. The debugger developers are " -"encouraged to use the ``'monitoring'`` backend to achieve better performance." +msgid "The *backend* argument specifies the backend to use for :class:`Bdb`. It can be either ``'settrace'`` or ``'monitoring'``. ``'settrace'`` uses :func:`sys.settrace` which has the best backward compatibility. The ``'monitoring'`` backend uses the new :mod:`sys.monitoring` that was introduced in Python 3.12, which can be much more efficient because it can disable unused events. We are trying to keep the exact interfaces for both backends, but there are some differences. The debugger developers are encouraged to use the ``'monitoring'`` backend to achieve better performance." msgstr "" -#: ../../library/bdb.rst:145 msgid "Added the *skip* parameter." msgstr "" -#: ../../library/bdb.rst:148 msgid "Added the *backend* parameter." msgstr "" -#: ../../library/bdb.rst:151 -msgid "" -"The following methods of :class:`Bdb` normally don't need to be overridden." +msgid "The following methods of :class:`Bdb` normally don't need to be overridden." msgstr "" -#: ../../library/bdb.rst:155 msgid "Return canonical form of *filename*." msgstr "" -#: ../../library/bdb.rst:157 -msgid "" -"For real file names, the canonical form is an operating-system-" -"dependent, :func:`case-normalized ` :func:`absolute path " -"`. A *filename* with angle brackets, such as " -"``\"\"`` generated in interactive mode, is returned unchanged." +msgid "For real file names, the canonical form is an operating-system-dependent, :func:`case-normalized ` :func:`absolute path `. A *filename* with angle brackets, such as ``\"\"`` generated in interactive mode, is returned unchanged." msgstr "" -#: ../../library/bdb.rst:164 -msgid "" -"Start tracing. For ``'settrace'`` backend, this method is equivalent to " -"``sys.settrace(self.trace_dispatch)``" +msgid "Start tracing. For ``'settrace'`` backend, this method is equivalent to ``sys.settrace(self.trace_dispatch)``" msgstr "" -#: ../../library/bdb.rst:171 -msgid "" -"Stop tracing. For ``'settrace'`` backend, this method is equivalent to " -"``sys.settrace(None)``" +msgid "Stop tracing. For ``'settrace'`` backend, this method is equivalent to ``sys.settrace(None)``" msgstr "" -#: ../../library/bdb.rst:178 -msgid "" -"Set the :attr:`!botframe`, :attr:`!stopframe`, :attr:`!returnframe` " -"and :attr:`quitting ` attributes with values ready to start " -"debugging." +msgid "Set the :attr:`!botframe`, :attr:`!stopframe`, :attr:`!returnframe` and :attr:`quitting ` attributes with values ready to start debugging." msgstr "" -#: ../../library/bdb.rst:183 -msgid "" -"This function is installed as the trace function of debugged frames. Its " -"return value is the new trace function (in most cases, that is, itself)." +msgid "This function is installed as the trace function of debugged frames. Its return value is the new trace function (in most cases, that is, itself)." msgstr "" -#: ../../library/bdb.rst:186 -msgid "" -"The default implementation decides how to dispatch a frame, depending on the " -"type of event (passed as a string) that is about to be executed. *event* can " -"be one of the following:" +msgid "The default implementation decides how to dispatch a frame, depending on the type of event (passed as a string) that is about to be executed. *event* can be one of the following:" msgstr "" -#: ../../library/bdb.rst:190 msgid "``\"line\"``: A new line of code is going to be executed." msgstr "" -#: ../../library/bdb.rst:191 -msgid "" -"``\"call\"``: A function is about to be called, or another code block " -"entered." +msgid "``\"call\"``: A function is about to be called, or another code block entered." msgstr "" -#: ../../library/bdb.rst:193 msgid "``\"return\"``: A function or other code block is about to return." msgstr "" -#: ../../library/bdb.rst:194 msgid "``\"exception\"``: An exception has occurred." msgstr "" -#: ../../library/bdb.rst:195 msgid "``\"c_call\"``: A C function is about to be called." msgstr "" -#: ../../library/bdb.rst:196 msgid "``\"c_return\"``: A C function has returned." msgstr "" -#: ../../library/bdb.rst:197 msgid "``\"c_exception\"``: A C function has raised an exception." msgstr "" -#: ../../library/bdb.rst:199 -msgid "" -"For the Python events, specialized functions (see below) are called. For " -"the C events, no action is taken." +msgid "For the Python events, specialized functions (see below) are called. For the C events, no action is taken." msgstr "" -#: ../../library/bdb.rst:202 msgid "The *arg* parameter depends on the previous event." msgstr "" -#: ../../library/bdb.rst:204 -msgid "" -"See the documentation for :func:`sys.settrace` for more information on the " -"trace function. For more information on code and frame objects, refer " -"to :ref:`types`." +msgid "See the documentation for :func:`sys.settrace` for more information on the trace function. For more information on code and frame objects, refer to :ref:`types`." msgstr "" -#: ../../library/bdb.rst:210 -msgid "" -"If the debugger should stop on the current line, invoke " -"the :meth:`user_line` method (which should be overridden in subclasses). " -"Raise a :exc:`BdbQuit` exception if the :attr:`quitting ` " -"flag is set (which can be set from :meth:`user_line`). Return a reference " -"to the :meth:`trace_dispatch` method for further tracing in that scope." +msgid "If the debugger should stop on the current line, invoke the :meth:`user_line` method (which should be overridden in subclasses). Raise a :exc:`BdbQuit` exception if the :attr:`quitting ` flag is set (which can be set from :meth:`user_line`). Return a reference to the :meth:`trace_dispatch` method for further tracing in that scope." msgstr "" -#: ../../library/bdb.rst:218 -msgid "" -"If the debugger should stop on this function call, invoke " -"the :meth:`user_call` method (which should be overridden in subclasses). " -"Raise a :exc:`BdbQuit` exception if the :attr:`quitting ` " -"flag is set (which can be set from :meth:`user_call`). Return a reference " -"to the :meth:`trace_dispatch` method for further tracing in that scope." +msgid "If the debugger should stop on this function call, invoke the :meth:`user_call` method (which should be overridden in subclasses). Raise a :exc:`BdbQuit` exception if the :attr:`quitting ` flag is set (which can be set from :meth:`user_call`). Return a reference to the :meth:`trace_dispatch` method for further tracing in that scope." msgstr "" -#: ../../library/bdb.rst:226 -msgid "" -"If the debugger should stop on this function return, invoke " -"the :meth:`user_return` method (which should be overridden in subclasses). " -"Raise a :exc:`BdbQuit` exception if the :attr:`quitting ` " -"flag is set (which can be set from :meth:`user_return`). Return a reference " -"to the :meth:`trace_dispatch` method for further tracing in that scope." +msgid "If the debugger should stop on this function return, invoke the :meth:`user_return` method (which should be overridden in subclasses). Raise a :exc:`BdbQuit` exception if the :attr:`quitting ` flag is set (which can be set from :meth:`user_return`). Return a reference to the :meth:`trace_dispatch` method for further tracing in that scope." msgstr "" -#: ../../library/bdb.rst:234 -msgid "" -"If the debugger should stop at this exception, invokes " -"the :meth:`user_exception` method (which should be overridden in " -"subclasses). Raise a :exc:`BdbQuit` exception if the :attr:`quitting " -"` flag is set (which can be set from :meth:`user_exception`). " -"Return a reference to the :meth:`trace_dispatch` method for further tracing " -"in that scope." +msgid "If the debugger should stop at this exception, invokes the :meth:`user_exception` method (which should be overridden in subclasses). Raise a :exc:`BdbQuit` exception if the :attr:`quitting ` flag is set (which can be set from :meth:`user_exception`). Return a reference to the :meth:`trace_dispatch` method for further tracing in that scope." msgstr "" -#: ../../library/bdb.rst:240 -msgid "" -"Normally derived classes don't override the following methods, but they may " -"if they want to redefine the definition of stopping and breakpoints." +msgid "Normally derived classes don't override the following methods, but they may if they want to redefine the definition of stopping and breakpoints." msgstr "" -#: ../../library/bdb.rst:245 msgid "Return ``True`` if *module_name* matches any skip pattern." msgstr "" -#: ../../library/bdb.rst:249 msgid "Return ``True`` if *frame* is below the starting frame in the stack." msgstr "" -#: ../../library/bdb.rst:253 msgid "Return ``True`` if there is an effective breakpoint for this line." msgstr "" -#: ../../library/bdb.rst:255 -msgid "" -"Check whether a line or function breakpoint exists and is in effect. Delete " -"temporary breakpoints based on information from :func:`effective`." +msgid "Check whether a line or function breakpoint exists and is in effect. Delete temporary breakpoints based on information from :func:`effective`." msgstr "" -#: ../../library/bdb.rst:260 msgid "Return ``True`` if any breakpoint exists for *frame*'s filename." msgstr "" -#: ../../library/bdb.rst:262 -msgid "" -"Derived classes should override these methods to gain control over debugger " -"operation." +msgid "Derived classes should override these methods to gain control over debugger operation." msgstr "" -#: ../../library/bdb.rst:267 -msgid "" -"Called from :meth:`dispatch_call` if a break might stop inside the called " -"function." +msgid "Called from :meth:`dispatch_call` if a break might stop inside the called function." msgstr "" -#: ../../library/bdb.rst:270 -msgid "" -"*argument_list* is not used anymore and will always be ``None``. The " -"argument is kept for backwards compatibility." +msgid "*argument_list* is not used anymore and will always be ``None``. The argument is kept for backwards compatibility." msgstr "" -#: ../../library/bdb.rst:275 -msgid "" -"Called from :meth:`dispatch_line` when either :meth:`stop_here` " -"or :meth:`break_here` returns ``True``." +msgid "Called from :meth:`dispatch_line` when either :meth:`stop_here` or :meth:`break_here` returns ``True``." msgstr "" -#: ../../library/bdb.rst:280 -msgid "" -"Called from :meth:`dispatch_return` when :meth:`stop_here` returns ``True``." +msgid "Called from :meth:`dispatch_return` when :meth:`stop_here` returns ``True``." msgstr "" -#: ../../library/bdb.rst:284 -msgid "" -"Called from :meth:`dispatch_exception` when :meth:`stop_here` returns " -"``True``." +msgid "Called from :meth:`dispatch_exception` when :meth:`stop_here` returns ``True``." msgstr "" -#: ../../library/bdb.rst:289 msgid "Handle how a breakpoint must be removed when it is a temporary one." msgstr "" -#: ../../library/bdb.rst:291 msgid "This method must be implemented by derived classes." msgstr "" -#: ../../library/bdb.rst:294 -msgid "" -"Derived classes and clients can call the following methods to affect the " -"stepping state." +msgid "Derived classes and clients can call the following methods to affect the stepping state." msgstr "" -#: ../../library/bdb.rst:299 msgid "Stop after one line of code." msgstr "" -#: ../../library/bdb.rst:303 msgid "Stop on the next line in or below the given frame." msgstr "" -#: ../../library/bdb.rst:307 msgid "Stop when returning from the given frame." msgstr "" -#: ../../library/bdb.rst:311 -msgid "" -"Stop when the line with the *lineno* greater than the current one is reached " -"or when returning from current frame." +msgid "Stop when the line with the *lineno* greater than the current one is reached or when returning from current frame." msgstr "" -#: ../../library/bdb.rst:316 -msgid "" -"Start debugging from *frame*. If *frame* is not specified, debugging starts " -"from caller's frame." +msgid "Start debugging from *frame*. If *frame* is not specified, debugging starts from caller's frame." msgstr "" -#: ../../library/bdb.rst:319 -msgid "" -":func:`set_trace` will enter the debugger immediately, rather than on the " -"next line of code to be executed." +msgid ":func:`set_trace` will enter the debugger immediately, rather than on the next line of code to be executed." msgstr "" -#: ../../library/bdb.rst:325 -msgid "" -"Stop only at breakpoints or when finished. If there are no breakpoints, set " -"the system trace function to ``None``." +msgid "Stop only at breakpoints or when finished. If there are no breakpoints, set the system trace function to ``None``." msgstr "" -#: ../../library/bdb.rst:332 -msgid "" -"Set the :attr:`!quitting` attribute to ``True``. This raises :exc:`BdbQuit` " -"in the next call to one of the :meth:`!dispatch_\\*` methods." +msgid "Set the :attr:`!quitting` attribute to ``True``. This raises :exc:`BdbQuit` in the next call to one of the :meth:`!dispatch_\\*` methods." msgstr "" -#: ../../library/bdb.rst:336 -msgid "" -"Derived classes and clients can call the following methods to manipulate " -"breakpoints. These methods return a string containing an error message if " -"something went wrong, or ``None`` if all is well." +msgid "Derived classes and clients can call the following methods to manipulate breakpoints. These methods return a string containing an error message if something went wrong, or ``None`` if all is well." msgstr "" -#: ../../library/bdb.rst:342 -msgid "" -"Set a new breakpoint. If the *lineno* line doesn't exist for the *filename* " -"passed as argument, return an error message. The *filename* should be in " -"canonical form, as described in the :meth:`canonic` method." +msgid "Set a new breakpoint. If the *lineno* line doesn't exist for the *filename* passed as argument, return an error message. The *filename* should be in canonical form, as described in the :meth:`canonic` method." msgstr "" -#: ../../library/bdb.rst:348 -msgid "" -"Delete the breakpoints in *filename* and *lineno*. If none were set, return " -"an error message." +msgid "Delete the breakpoints in *filename* and *lineno*. If none were set, return an error message." msgstr "" -#: ../../library/bdb.rst:353 -msgid "" -"Delete the breakpoint which has the index *arg* in " -"the :attr:`Breakpoint.bpbynumber`. If *arg* is not numeric or out of range, " -"return an error message." +msgid "Delete the breakpoint which has the index *arg* in the :attr:`Breakpoint.bpbynumber`. If *arg* is not numeric or out of range, return an error message." msgstr "" -#: ../../library/bdb.rst:359 -msgid "" -"Delete all breakpoints in *filename*. If none were set, return an error " -"message." +msgid "Delete all breakpoints in *filename*. If none were set, return an error message." msgstr "" -#: ../../library/bdb.rst:364 -msgid "" -"Delete all existing breakpoints. If none were set, return an error message." +msgid "Delete all existing breakpoints. If none were set, return an error message." msgstr "" -#: ../../library/bdb.rst:369 -msgid "" -"Return a breakpoint specified by the given number. If *arg* is a string, it " -"will be converted to a number. If *arg* is a non-numeric string, if the " -"given breakpoint never existed or has been deleted, a :exc:`ValueError` is " -"raised." +msgid "Return a breakpoint specified by the given number. If *arg* is a string, it will be converted to a number. If *arg* is a non-numeric string, if the given breakpoint never existed or has been deleted, a :exc:`ValueError` is raised." msgstr "" -#: ../../library/bdb.rst:378 msgid "Return ``True`` if there is a breakpoint for *lineno* in *filename*." msgstr "" -#: ../../library/bdb.rst:382 -msgid "" -"Return all breakpoints for *lineno* in *filename*, or an empty list if none " -"are set." +msgid "Return all breakpoints for *lineno* in *filename*, or an empty list if none are set." msgstr "" -#: ../../library/bdb.rst:387 msgid "Return all breakpoints in *filename*, or an empty list if none are set." msgstr "" -#: ../../library/bdb.rst:391 msgid "Return all breakpoints that are set." msgstr "" -#: ../../library/bdb.rst:394 -msgid "" -"Derived classes and clients can call the following methods to disable and " -"restart events to achieve better performance. These methods only work when " -"using the ``'monitoring'`` backend." +msgid "Derived classes and clients can call the following methods to disable and restart events to achieve better performance. These methods only work when using the ``'monitoring'`` backend." msgstr "" -#: ../../library/bdb.rst:400 -msgid "" -"Disable the current event until the next time :func:`restart_events` is " -"called. This is helpful when the debugger is not interested in the current " -"line." +msgid "Disable the current event until the next time :func:`restart_events` is called. This is helpful when the debugger is not interested in the current line." msgstr "" -#: ../../library/bdb.rst:408 -msgid "" -"Restart all the disabled events. This function is automatically called in " -"``dispatch_*`` methods after ``user_*`` methods are called. If the " -"``dispatch_*`` methods are not overridden, the disabled events will be " -"restarted after each user interaction." +msgid "Restart all the disabled events. This function is automatically called in ``dispatch_*`` methods after ``user_*`` methods are called. If the ``dispatch_*`` methods are not overridden, the disabled events will be restarted after each user interaction." msgstr "" -#: ../../library/bdb.rst:416 -msgid "" -"Derived classes and clients can call the following methods to get a data " -"structure representing a stack trace." +msgid "Derived classes and clients can call the following methods to get a data structure representing a stack trace." msgstr "" -#: ../../library/bdb.rst:421 msgid "Return a list of (frame, lineno) tuples in a stack trace, and a size." msgstr "" -#: ../../library/bdb.rst:423 -msgid "" -"The most recently called frame is last in the list. The size is the number " -"of frames below the frame where the debugger was invoked." +msgid "The most recently called frame is last in the list. The size is the number of frames below the frame where the debugger was invoked." msgstr "" -#: ../../library/bdb.rst:428 -msgid "" -"Return a string with information about a stack entry, which is a ``(frame, " -"lineno)`` tuple. The return string contains:" +msgid "Return a string with information about a stack entry, which is a ``(frame, lineno)`` tuple. The return string contains:" msgstr "" -#: ../../library/bdb.rst:431 msgid "The canonical filename which contains the frame." msgstr "" -#: ../../library/bdb.rst:432 msgid "The function name or ``\"\"``." msgstr "" -#: ../../library/bdb.rst:433 msgid "The input arguments." msgstr "" -#: ../../library/bdb.rst:434 msgid "The return value." msgstr "" -#: ../../library/bdb.rst:435 msgid "The line of code (if it exists)." msgstr "" -#: ../../library/bdb.rst:438 -msgid "" -"The following two methods can be called by clients to use a debugger to " -"debug a :term:`statement`, given as a string." +msgid "The following two methods can be called by clients to use a debugger to debug a :term:`statement`, given as a string." msgstr "" -#: ../../library/bdb.rst:443 -msgid "" -"Debug a statement executed via the :func:`exec` function. *globals* " -"defaults to :attr:`!__main__.__dict__`, *locals* defaults to *globals*." +msgid "Debug a statement executed via the :func:`exec` function. *globals* defaults to :attr:`!__main__.__dict__`, *locals* defaults to *globals*." msgstr "" -#: ../../library/bdb.rst:448 -msgid "" -"Debug an expression executed via the :func:`eval` function. *globals* and " -"*locals* have the same meaning as in :meth:`run`." +msgid "Debug an expression executed via the :func:`eval` function. *globals* and *locals* have the same meaning as in :meth:`run`." msgstr "" -#: ../../library/bdb.rst:453 msgid "For backwards compatibility. Calls the :meth:`run` method." msgstr "" -#: ../../library/bdb.rst:457 msgid "Debug a single function call, and return its result." msgstr "" -#: ../../library/bdb.rst:460 msgid "Finally, the module defines the following functions:" msgstr "" -#: ../../library/bdb.rst:464 -msgid "" -"Return ``True`` if we should break here, depending on the way " -"the :class:`Breakpoint` *b* was set." +msgid "Return ``True`` if we should break here, depending on the way the :class:`Breakpoint` *b* was set." msgstr "" -#: ../../library/bdb.rst:467 -msgid "" -"If it was set via line number, it checks if :attr:`b.line " -"` is the same as the one in *frame*. If the breakpoint " -"was set via :attr:`function name `, we have to " -"check we are in the right *frame* (the right function) and if we are on its " -"first executable line." +msgid "If it was set via line number, it checks if :attr:`b.line ` is the same as the one in *frame*. If the breakpoint was set via :attr:`function name `, we have to check we are in the right *frame* (the right function) and if we are on its first executable line." msgstr "" -#: ../../library/bdb.rst:476 -msgid "" -"Return ``(active breakpoint, delete temporary flag)`` or ``(None, None)`` as " -"the breakpoint to act upon." +msgid "Return ``(active breakpoint, delete temporary flag)`` or ``(None, None)`` as the breakpoint to act upon." +msgstr "" + +msgid "The *active breakpoint* is the first entry in :attr:`bplist ` for the (:attr:`file `, :attr:`line `) (which must exist) that is :attr:`enabled `, for which :func:`checkfuncname` is true, and that has neither a false :attr:`condition ` nor positive :attr:`ignore ` count. The *flag*, meaning that a temporary breakpoint should be deleted, is ``False`` only when the :attr:`cond ` cannot be evaluated (in which case, :attr:`ignore ` count is ignored)." msgstr "" -#: ../../library/bdb.rst:479 -msgid "" -"The *active breakpoint* is the first entry in :attr:`bplist " -"` for the (:attr:`file " -"`, :attr:`line `) (which must " -"exist) that is :attr:`enabled `, for " -"which :func:`checkfuncname` is true, and that has neither a " -"false :attr:`condition ` nor positive :attr:`ignore " -"` count. The *flag*, meaning that a temporary " -"breakpoint should be deleted, is ``False`` only when the :attr:`cond " -"` cannot be evaluated (in which case, :attr:`ignore " -"` count is ignored)." -msgstr "" - -#: ../../library/bdb.rst:490 msgid "If no such entry exists, then ``(None, None)`` is returned." msgstr "" -#: ../../library/bdb.rst:495 msgid "Start debugging with a :class:`Bdb` instance from caller's frame." msgstr "" -#: ../../library/bdb.rst:330 msgid "quitting (bdb.Bdb attribute)" msgstr "" diff --git a/library/binary.po b/library/binary.po index 5a70f875..f69f2b61 100644 --- a/library/binary.po +++ b/library/binary.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:56+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,27 +21,14 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/binary.rst:5 msgid "Binary Data Services" msgstr "" -#: ../../library/binary.rst:7 -msgid "" -"The modules described in this chapter provide some basic services operations " -"for manipulation of binary data. Other operations on binary data, " -"specifically in relation to file formats and network protocols, are " -"described in the relevant sections." +msgid "The modules described in this chapter provide some basic services operations for manipulation of binary data. Other operations on binary data, specifically in relation to file formats and network protocols, are described in the relevant sections." msgstr "" -#: ../../library/binary.rst:12 -msgid "" -"Some libraries described under :ref:`textservices` also work with either " -"ASCII-compatible binary formats (for example, :mod:`re`) or all binary data " -"(for example, :mod:`difflib`)." +msgid "Some libraries described under :ref:`textservices` also work with either ASCII-compatible binary formats (for example, :mod:`re`) or all binary data (for example, :mod:`difflib`)." msgstr "" -#: ../../library/binary.rst:16 -msgid "" -"In addition, see the documentation for Python's built-in binary data types " -"in :ref:`binaryseq`." +msgid "In addition, see the documentation for Python's built-in binary data types in :ref:`binaryseq`." msgstr "" diff --git a/library/binascii.po b/library/binascii.po index cd9dc266..1e9a2d1c 100644 --- a/library/binascii.po +++ b/library/binascii.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:56+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,141 +23,72 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/binascii.rst:2 msgid ":mod:`!binascii` --- Convert between binary and ASCII" msgstr "" -#: ../../library/binascii.rst:13 -msgid "" -"The :mod:`!binascii` module contains a number of methods to convert between " -"binary and various ASCII-encoded binary representations. Normally, you will " -"not use these functions directly but use wrapper modules like :mod:`base64` " -"instead. The :mod:`!binascii` module contains low-level functions written in " -"C for greater speed that are used by the higher-level modules." +msgid "The :mod:`!binascii` module contains a number of methods to convert between binary and various ASCII-encoded binary representations. Normally, you will not use these functions directly but use wrapper modules like :mod:`base64` instead. The :mod:`!binascii` module contains low-level functions written in C for greater speed that are used by the higher-level modules." msgstr "" -#: ../../library/binascii.rst:22 -msgid "" -"``a2b_*`` functions accept Unicode strings containing only ASCII characters. " -"Other functions only accept :term:`bytes-like objects ` " -"(such as :class:`bytes`, :class:`bytearray` and other objects that support " -"the buffer protocol)." +msgid "``a2b_*`` functions accept Unicode strings containing only ASCII characters. Other functions only accept :term:`bytes-like objects ` (such as :class:`bytes`, :class:`bytearray` and other objects that support the buffer protocol)." msgstr "" -#: ../../library/binascii.rst:27 msgid "ASCII-only unicode strings are now accepted by the ``a2b_*`` functions." msgstr "" -#: ../../library/binascii.rst:31 msgid "The :mod:`!binascii` module defines the following functions:" msgstr "" -#: ../../library/binascii.rst:36 -msgid "" -"Convert a single line of uuencoded data back to binary and return the binary " -"data. Lines normally contain 45 (binary) bytes, except for the last line. " -"Line data may be followed by whitespace." +msgid "Convert a single line of uuencoded data back to binary and return the binary data. Lines normally contain 45 (binary) bytes, except for the last line. Line data may be followed by whitespace." msgstr "" -#: ../../library/binascii.rst:43 -msgid "" -"Convert binary data to a line of ASCII characters, the return value is the " -"converted line, including a newline char. The length of *data* should be at " -"most 45. If *backtick* is true, zeros are represented by ``'`'`` instead of " -"spaces." +msgid "Convert binary data to a line of ASCII characters, the return value is the converted line, including a newline char. The length of *data* should be at most 45. If *backtick* is true, zeros are represented by ``'`'`` instead of spaces." msgstr "" -#: ../../library/binascii.rst:47 msgid "Added the *backtick* parameter." msgstr "" -#: ../../library/binascii.rst:53 -msgid "" -"Convert a block of base64 data back to binary and return the binary data. " -"More than one line may be passed at a time." +msgid "Convert a block of base64 data back to binary and return the binary data. More than one line may be passed at a time." msgstr "" -#: ../../library/binascii.rst:56 -msgid "" -"If *strict_mode* is true, only valid base64 data will be converted. Invalid " -"base64 data will raise :exc:`binascii.Error`." +msgid "If *strict_mode* is true, only valid base64 data will be converted. Invalid base64 data will raise :exc:`binascii.Error`." msgstr "" -#: ../../library/binascii.rst:59 msgid "Valid base64:" msgstr "" -#: ../../library/binascii.rst:61 msgid "Conforms to :rfc:`3548`." msgstr "" -#: ../../library/binascii.rst:62 msgid "Contains only characters from the base64 alphabet." msgstr "" -#: ../../library/binascii.rst:63 -msgid "" -"Contains no excess data after padding (including excess padding, newlines, " -"etc.)." +msgid "Contains no excess data after padding (including excess padding, newlines, etc.)." msgstr "" -#: ../../library/binascii.rst:64 msgid "Does not start with a padding." msgstr "" -#: ../../library/binascii.rst:66 msgid "Added the *strict_mode* parameter." msgstr "" -#: ../../library/binascii.rst:72 -msgid "" -"Convert binary data to a line of ASCII characters in base64 coding. The " -"return value is the converted line, including a newline char if *newline* is " -"true. The output of this function conforms to :rfc:`3548`." +msgid "Convert binary data to a line of ASCII characters in base64 coding. The return value is the converted line, including a newline char if *newline* is true. The output of this function conforms to :rfc:`3548`." msgstr "" -#: ../../library/binascii.rst:76 msgid "Added the *newline* parameter." msgstr "" -#: ../../library/binascii.rst:82 -msgid "" -"Convert a block of quoted-printable data back to binary and return the " -"binary data. More than one line may be passed at a time. If the optional " -"argument *header* is present and true, underscores will be decoded as spaces." +msgid "Convert a block of quoted-printable data back to binary and return the binary data. More than one line may be passed at a time. If the optional argument *header* is present and true, underscores will be decoded as spaces." msgstr "" -#: ../../library/binascii.rst:89 -msgid "" -"Convert binary data to a line(s) of ASCII characters in quoted-printable " -"encoding. The return value is the converted line(s). If the optional " -"argument *quotetabs* is present and true, all tabs and spaces will be " -"encoded. If the optional argument *istext* is present and true, newlines " -"are not encoded but trailing whitespace will be encoded. If the optional " -"argument *header* is present and true, spaces will be encoded as underscores " -"per :rfc:`1522`. If the optional argument *header* is present and false, " -"newline characters will be encoded as well; otherwise linefeed conversion " -"might corrupt the binary data stream." -msgstr "" - -#: ../../library/binascii.rst:102 -msgid "" -"Compute a 16-bit CRC value of *data*, starting with *value* as the initial " -"CRC, and return the result. This uses the CRC-CCITT polynomial *x*:sup:`16` " -"+ *x*:sup:`12` + *x*:sup:`5` + 1, often represented as 0x1021. This CRC is " -"used in the binhex4 format." +msgid "Convert binary data to a line(s) of ASCII characters in quoted-printable encoding. The return value is the converted line(s). If the optional argument *quotetabs* is present and true, all tabs and spaces will be encoded. If the optional argument *istext* is present and true, newlines are not encoded but trailing whitespace will be encoded. If the optional argument *header* is present and true, spaces will be encoded as underscores per :rfc:`1522`. If the optional argument *header* is present and false, newline characters will be encoded as well; otherwise linefeed conversion might corrupt the binary data stream." msgstr "" -#: ../../library/binascii.rst:110 -msgid "" -"Compute CRC-32, the unsigned 32-bit checksum of *data*, starting with an " -"initial CRC of *value*. The default initial CRC is zero. The algorithm is " -"consistent with the ZIP file checksum. Since the algorithm is designed for " -"use as a checksum algorithm, it is not suitable for use as a general hash " -"algorithm. Use as follows::" +msgid "Compute a 16-bit CRC value of *data*, starting with *value* as the initial CRC, and return the result. This uses the CRC-CCITT polynomial *x*:sup:`16` + *x*:sup:`12` + *x*:sup:`5` + 1, often represented as 0x1021. This CRC is used in the binhex4 format." +msgstr "" + +msgid "Compute CRC-32, the unsigned 32-bit checksum of *data*, starting with an initial CRC of *value*. The default initial CRC is zero. The algorithm is consistent with the ZIP file checksum. Since the algorithm is designed for use as a checksum algorithm, it is not suitable for use as a general hash algorithm. Use as follows::" msgstr "" -#: ../../library/binascii.rst:116 msgid "" "print(binascii.crc32(b\"hello world\"))\n" "# Or, in two pieces:\n" @@ -166,80 +97,47 @@ msgid "" "print('crc32 = {:#010x}'.format(crc))" msgstr "" -#: ../../library/binascii.rst:122 msgid "The result is always unsigned." msgstr "" -#: ../../library/binascii.rst:128 -msgid "" -"Return the hexadecimal representation of the binary *data*. Every byte of " -"*data* is converted into the corresponding 2-digit hex representation. The " -"returned bytes object is therefore twice as long as the length of *data*." +msgid "Return the hexadecimal representation of the binary *data*. Every byte of *data* is converted into the corresponding 2-digit hex representation. The returned bytes object is therefore twice as long as the length of *data*." msgstr "" -#: ../../library/binascii.rst:132 -msgid "" -"Similar functionality (but returning a text string) is also conveniently " -"accessible using the :meth:`bytes.hex` method." +msgid "Similar functionality (but returning a text string) is also conveniently accessible using the :meth:`bytes.hex` method." msgstr "" -#: ../../library/binascii.rst:135 -msgid "" -"If *sep* is specified, it must be a single character str or bytes object. It " -"will be inserted in the output after every *bytes_per_sep* input bytes. " -"Separator placement is counted from the right end of the output by default, " -"if you wish to count from the left, supply a negative *bytes_per_sep* value." +msgid "If *sep* is specified, it must be a single character str or bytes object. It will be inserted in the output after every *bytes_per_sep* input bytes. Separator placement is counted from the right end of the output by default, if you wish to count from the left, supply a negative *bytes_per_sep* value." msgstr "" -#: ../../library/binascii.rst:150 msgid "The *sep* and *bytes_per_sep* parameters were added." msgstr "" -#: ../../library/binascii.rst:156 -msgid "" -"Return the binary data represented by the hexadecimal string *hexstr*. This " -"function is the inverse of :func:`b2a_hex`. *hexstr* must contain an even " -"number of hexadecimal digits (which can be upper or lower case), otherwise " -"an :exc:`Error` exception is raised." +msgid "Return the binary data represented by the hexadecimal string *hexstr*. This function is the inverse of :func:`b2a_hex`. *hexstr* must contain an even number of hexadecimal digits (which can be upper or lower case), otherwise an :exc:`Error` exception is raised." msgstr "" -#: ../../library/binascii.rst:161 -msgid "" -"Similar functionality (but more liberal towards whitespace) is also " -"accessible using the :meth:`bytes.fromhex` class method." +msgid "Similar functionality (but more liberal towards whitespace) is also accessible using the :meth:`bytes.fromhex` class method." msgstr "" -#: ../../library/binascii.rst:166 msgid "Exception raised on errors. These are usually programming errors." msgstr "" -#: ../../library/binascii.rst:171 -msgid "" -"Exception raised on incomplete data. These are usually not programming " -"errors, but may be handled by reading a little more data and trying again." +msgid "Exception raised on incomplete data. These are usually not programming errors, but may be handled by reading a little more data and trying again." msgstr "" -#: ../../library/binascii.rst:177 msgid "Module :mod:`base64`" msgstr "" -#: ../../library/binascii.rst:178 -msgid "" -"Support for RFC compliant base64-style encoding in base 16, 32, 64, and 85." +msgid "Support for RFC compliant base64-style encoding in base 16, 32, 64, and 85." msgstr "" -#: ../../library/binascii.rst:181 msgid "Module :mod:`quopri`" msgstr "" -#: ../../library/binascii.rst:182 msgid "Support for quoted-printable encoding used in MIME email messages." msgstr "" -#: ../../library/binascii.rst:8 msgid "module" msgstr "" -#: ../../library/binascii.rst:8 msgid "base64" msgstr "" diff --git a/library/bisect.po b/library/bisect.po index ea79b2f2..7c3b2eba 100644 --- a/library/bisect.po +++ b/library/bisect.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:56+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,196 +24,90 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/bisect.rst:2 msgid ":mod:`!bisect` --- Array bisection algorithm" msgstr "" -#: ../../library/bisect.rst:10 msgid "**Source code:** :source:`Lib/bisect.py`" msgstr "" -#: ../../library/bisect.rst:14 -msgid "" -"This module provides support for maintaining a list in sorted order without " -"having to sort the list after each insertion. For long lists of items with " -"expensive comparison operations, this can be an improvement over linear " -"searches or frequent resorting." +msgid "This module provides support for maintaining a list in sorted order without having to sort the list after each insertion. For long lists of items with expensive comparison operations, this can be an improvement over linear searches or frequent resorting." msgstr "" -#: ../../library/bisect.rst:19 -msgid "" -"The module is called :mod:`!bisect` because it uses a basic bisection " -"algorithm to do its work. Unlike other bisection tools that search for a " -"specific value, the functions in this module are designed to locate an " -"insertion point. Accordingly, the functions never call " -"an :meth:`~object.__eq__` method to determine whether a value has been " -"found. Instead, the functions only call the :meth:`~object.__lt__` method " -"and will return an insertion point between values in an array." +msgid "The module is called :mod:`!bisect` because it uses a basic bisection algorithm to do its work. Unlike other bisection tools that search for a specific value, the functions in this module are designed to locate an insertion point. Accordingly, the functions never call an :meth:`~object.__eq__` method to determine whether a value has been found. Instead, the functions only call the :meth:`~object.__lt__` method and will return an insertion point between values in an array." msgstr "" -#: ../../library/bisect.rst:29 -msgid "" -"The functions in this module are not thread-safe. If multiple threads " -"concurrently use :mod:`!bisect` functions on the same sequence, this may " -"result in undefined behaviour. Likewise, if the provided sequence is mutated " -"by a different thread while a :mod:`!bisect` function is operating on it, " -"the result is undefined. For example, using :py:func:`~bisect.insort_left` " -"on the same list from multiple threads may result in the list becoming " -"unsorted." +msgid "The functions in this module are not thread-safe. If multiple threads concurrently use :mod:`!bisect` functions on the same sequence, this may result in undefined behaviour. Likewise, if the provided sequence is mutated by a different thread while a :mod:`!bisect` function is operating on it, the result is undefined. For example, using :py:func:`~bisect.insort_left` on the same list from multiple threads may result in the list becoming unsorted." msgstr "" -#: ../../library/bisect.rst:39 msgid "The following functions are provided:" msgstr "" -#: ../../library/bisect.rst:44 -msgid "" -"Locate the insertion point for *x* in *a* to maintain sorted order. The " -"parameters *lo* and *hi* may be used to specify a subset of the list which " -"should be considered; by default the entire list is used. If *x* is already " -"present in *a*, the insertion point will be before (to the left of) any " -"existing entries. The return value is suitable for use as the first " -"parameter to ``list.insert()`` assuming that *a* is already sorted." +msgid "Locate the insertion point for *x* in *a* to maintain sorted order. The parameters *lo* and *hi* may be used to specify a subset of the list which should be considered; by default the entire list is used. If *x* is already present in *a*, the insertion point will be before (to the left of) any existing entries. The return value is suitable for use as the first parameter to ``list.insert()`` assuming that *a* is already sorted." msgstr "" -#: ../../library/bisect.rst:51 -msgid "" -"The returned insertion point *ip* partitions the array *a* into two slices " -"such that ``all(elem < x for elem in a[lo : ip])`` is true for the left " -"slice and ``all(elem >= x for elem in a[ip : hi])`` is true for the right " -"slice." +msgid "The returned insertion point *ip* partitions the array *a* into two slices such that ``all(elem < x for elem in a[lo : ip])`` is true for the left slice and ``all(elem >= x for elem in a[ip : hi])`` is true for the right slice." msgstr "" -#: ../../library/bisect.rst:56 -msgid "" -"*key* specifies a :term:`key function` of one argument that is used to " -"extract a comparison key from each element in the array. To support " -"searching complex records, the key function is not applied to the *x* value." +msgid "*key* specifies a :term:`key function` of one argument that is used to extract a comparison key from each element in the array. To support searching complex records, the key function is not applied to the *x* value." msgstr "" -#: ../../library/bisect.rst:60 -msgid "" -"If *key* is ``None``, the elements are compared directly and no key function " -"is called." +msgid "If *key* is ``None``, the elements are compared directly and no key function is called." msgstr "" -#: ../../library/bisect.rst:63 ../../library/bisect.rst:77 -#: ../../library/bisect.rst:95 ../../library/bisect.rst:115 msgid "Added the *key* parameter." msgstr "" -#: ../../library/bisect.rst:70 -msgid "" -"Similar to :py:func:`~bisect.bisect_left`, but returns an insertion point " -"which comes after (to the right of) any existing entries of *x* in *a*." +msgid "Similar to :py:func:`~bisect.bisect_left`, but returns an insertion point which comes after (to the right of) any existing entries of *x* in *a*." msgstr "" -#: ../../library/bisect.rst:73 -msgid "" -"The returned insertion point *ip* partitions the array *a* into two slices " -"such that ``all(elem <= x for elem in a[lo : ip])`` is true for the left " -"slice and ``all(elem > x for elem in a[ip : hi])`` is true for the right " -"slice." +msgid "The returned insertion point *ip* partitions the array *a* into two slices such that ``all(elem <= x for elem in a[lo : ip])`` is true for the left slice and ``all(elem > x for elem in a[ip : hi])`` is true for the right slice." msgstr "" -#: ../../library/bisect.rst:83 msgid "Insert *x* in *a* in sorted order." msgstr "" -#: ../../library/bisect.rst:85 -msgid "" -"This function first runs :py:func:`~bisect.bisect_left` to locate an " -"insertion point. Next, it runs the :meth:`~sequence.insert` method on *a* to " -"insert *x* at the appropriate position to maintain sort order." +msgid "This function first runs :py:func:`~bisect.bisect_left` to locate an insertion point. Next, it runs the :meth:`~sequence.insert` method on *a* to insert *x* at the appropriate position to maintain sort order." msgstr "" -#: ../../library/bisect.rst:89 ../../library/bisect.rst:109 -msgid "" -"To support inserting records in a table, the *key* function (if any) is " -"applied to *x* for the search step but not for the insertion step." +msgid "To support inserting records in a table, the *key* function (if any) is applied to *x* for the search step but not for the insertion step." msgstr "" -#: ../../library/bisect.rst:92 ../../library/bisect.rst:112 -msgid "" -"Keep in mind that the *O*\\ (log *n*) search is dominated by the slow *O*\\ " -"(*n*) insertion step." +msgid "Keep in mind that the *O*\\ (log *n*) search is dominated by the slow *O*\\ (*n*) insertion step." msgstr "" -#: ../../library/bisect.rst:102 -msgid "" -"Similar to :py:func:`~bisect.insort_left`, but inserting *x* in *a* after " -"any existing entries of *x*." +msgid "Similar to :py:func:`~bisect.insort_left`, but inserting *x* in *a* after any existing entries of *x*." msgstr "" -#: ../../library/bisect.rst:105 -msgid "" -"This function first runs :py:func:`~bisect.bisect_right` to locate an " -"insertion point. Next, it runs the :meth:`~sequence.insert` method on *a* to " -"insert *x* at the appropriate position to maintain sort order." +msgid "This function first runs :py:func:`~bisect.bisect_right` to locate an insertion point. Next, it runs the :meth:`~sequence.insert` method on *a* to insert *x* at the appropriate position to maintain sort order." msgstr "" -#: ../../library/bisect.rst:120 msgid "Performance Notes" msgstr "" -#: ../../library/bisect.rst:122 -msgid "" -"When writing time sensitive code using *bisect()* and *insort()*, keep these " -"thoughts in mind:" +msgid "When writing time sensitive code using *bisect()* and *insort()*, keep these thoughts in mind:" msgstr "" -#: ../../library/bisect.rst:125 -msgid "" -"Bisection is effective for searching ranges of values. For locating specific " -"values, dictionaries are more performant." +msgid "Bisection is effective for searching ranges of values. For locating specific values, dictionaries are more performant." msgstr "" -#: ../../library/bisect.rst:128 -msgid "" -"The *insort()* functions are *O*\\ (*n*) because the logarithmic search step " -"is dominated by the linear time insertion step." +msgid "The *insort()* functions are *O*\\ (*n*) because the logarithmic search step is dominated by the linear time insertion step." msgstr "" -#: ../../library/bisect.rst:131 -msgid "" -"The search functions are stateless and discard key function results after " -"they are used. Consequently, if the search functions are used in a loop, " -"the key function may be called again and again on the same array elements. " -"If the key function isn't fast, consider wrapping it " -"with :py:deco:`functools.cache` to avoid duplicate computations. " -"Alternatively, consider searching an array of precomputed keys to locate the " -"insertion point (as shown in the examples section below)." +msgid "The search functions are stateless and discard key function results after they are used. Consequently, if the search functions are used in a loop, the key function may be called again and again on the same array elements. If the key function isn't fast, consider wrapping it with :py:deco:`functools.cache` to avoid duplicate computations. Alternatively, consider searching an array of precomputed keys to locate the insertion point (as shown in the examples section below)." msgstr "" -#: ../../library/bisect.rst:141 -msgid "" -"`Sorted Collections `_ is a " -"high performance module that uses *bisect* to managed sorted collections of " -"data." +msgid "`Sorted Collections `_ is a high performance module that uses *bisect* to managed sorted collections of data." msgstr "" -#: ../../library/bisect.rst:145 -msgid "" -"The `SortedCollection recipe `_ uses bisect to build a full-featured collection class " -"with straight-forward search methods and support for a key-function. The " -"keys are precomputed to save unnecessary calls to the key function during " -"searches." +msgid "The `SortedCollection recipe `_ uses bisect to build a full-featured collection class with straight-forward search methods and support for a key-function. The keys are precomputed to save unnecessary calls to the key function during searches." msgstr "" -#: ../../library/bisect.rst:153 msgid "Searching Sorted Lists" msgstr "" -#: ../../library/bisect.rst:155 -msgid "" -"The above `bisect functions`_ are useful for finding insertion points but " -"can be tricky or awkward to use for common searching tasks. The following " -"five functions show how to transform them into the standard lookups for " -"sorted lists::" +msgid "The above `bisect functions`_ are useful for finding insertion points but can be tricky or awkward to use for common searching tasks. The following five functions show how to transform them into the standard lookups for sorted lists::" msgstr "" -#: ../../library/bisect.rst:160 msgid "" "def index(a, x):\n" " 'Locate the leftmost value exactly equal to x'\n" @@ -251,19 +145,12 @@ msgid "" " raise ValueError" msgstr "" -#: ../../library/bisect.rst:197 msgid "Examples" msgstr "" -#: ../../library/bisect.rst:201 -msgid "" -"The :py:func:`~bisect.bisect` function can be useful for numeric table " -"lookups. This example uses :py:func:`~bisect.bisect` to look up a letter " -"grade for an exam score (say) based on a set of ordered numeric breakpoints: " -"90 and up is an 'A', 80 to 89 is a 'B', and so on::" +msgid "The :py:func:`~bisect.bisect` function can be useful for numeric table lookups. This example uses :py:func:`~bisect.bisect` to look up a letter grade for an exam score (say) based on a set of ordered numeric breakpoints: 90 and up is an 'A', 80 to 89 is a 'B', and so on::" msgstr "" -#: ../../library/bisect.rst:206 msgid "" ">>> def grade(score):\n" "... i = bisect([60, 70, 80, 90], score)\n" @@ -273,14 +160,9 @@ msgid "" "['F', 'A', 'C', 'C', 'B', 'A', 'A']" msgstr "" -#: ../../library/bisect.rst:213 -msgid "" -"The :py:func:`~bisect.bisect` and :py:func:`~bisect.insort` functions also " -"work with lists of tuples. The *key* argument can serve to extract the " -"field used for ordering records in a table::" +msgid "The :py:func:`~bisect.bisect` and :py:func:`~bisect.insort` functions also work with lists of tuples. The *key* argument can serve to extract the field used for ordering records in a table::" msgstr "" -#: ../../library/bisect.rst:217 msgid "" ">>> from collections import namedtuple\n" ">>> from operator import attrgetter\n" @@ -313,13 +195,9 @@ msgid "" " Movie(name='Titanic', released=1997, director='Cameron')]" msgstr "" -#: ../../library/bisect.rst:247 -msgid "" -"If the key function is expensive, it is possible to avoid repeated function " -"calls by searching a list of precomputed keys to find the index of a record::" +msgid "If the key function is expensive, it is possible to avoid repeated function calls by searching a list of precomputed keys to find the index of a record::" msgstr "" -#: ../../library/bisect.rst:250 msgid "" ">>> data = [('red', 5), ('blue', 1), ('yellow', 8), ('black', 0)]\n" ">>> data.sort(key=lambda r: r[1]) # Or use operator.itemgetter(1).\n" diff --git a/library/builtins.po b/library/builtins.po index a7543c20..ee922318 100644 --- a/library/builtins.po +++ b/library/builtins.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:56+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,27 +21,15 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/builtins.rst:2 msgid ":mod:`!builtins` --- Built-in objects" msgstr "" -#: ../../library/builtins.rst:9 -msgid "" -"This module provides direct access to all 'built-in' identifiers of Python; " -"for example, ``builtins.open`` is the full name for the built-in " -"function :func:`open`." +msgid "This module provides direct access to all 'built-in' identifiers of Python; for example, ``builtins.open`` is the full name for the built-in function :func:`open`." msgstr "" -#: ../../library/builtins.rst:12 -msgid "" -"This module is not normally accessed explicitly by most applications, but " -"can be useful in modules that provide objects with the same name as a built-" -"in value, but in which the built-in of that name is also needed. For " -"example, in a module that wants to implement an :func:`open` function that " -"wraps the built-in :func:`open`, this module can be used directly::" +msgid "This module is not normally accessed explicitly by most applications, but can be useful in modules that provide objects with the same name as a built-in value, but in which the built-in of that name is also needed. For example, in a module that wants to implement an :func:`open` function that wraps the built-in :func:`open`, this module can be used directly::" msgstr "" -#: ../../library/builtins.rst:18 msgid "" "import builtins\n" "\n" @@ -61,27 +49,17 @@ msgid "" " # ..." msgstr "" -#: ../../library/builtins.rst:35 -msgid "" -"As an implementation detail, most modules have the name ``__builtins__`` " -"made available as part of their globals. The value of ``__builtins__`` is " -"normally either this module or the value of this " -"module's :attr:`~object.__dict__` attribute. Since this is an implementation " -"detail, it may not be used by alternate implementations of Python." +msgid "As an implementation detail, most modules have the name ``__builtins__`` made available as part of their globals. The value of ``__builtins__`` is normally either this module or the value of this module's :attr:`~object.__dict__` attribute. Since this is an implementation detail, it may not be used by alternate implementations of Python." msgstr "" -#: ../../library/builtins.rst:43 msgid ":ref:`built-in-consts`" msgstr "" -#: ../../library/builtins.rst:44 msgid ":ref:`bltin-exceptions`" msgstr "" -#: ../../library/builtins.rst:45 msgid ":ref:`built-in-funcs`" msgstr "" -#: ../../library/builtins.rst:46 msgid ":ref:`bltin-types`" msgstr "" diff --git a/library/bz2.po b/library/bz2.po index 052bf38f..8126ee6e 100644 --- a/library/bz2.po +++ b/library/bz2.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:56+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,417 +23,227 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/bz2.rst:2 msgid ":mod:`!bz2` --- Support for :program:`bzip2` compression" msgstr "" -#: ../../library/bz2.rst:12 msgid "**Source code:** :source:`Lib/bz2.py`" msgstr "" -#: ../../library/bz2.rst:16 -msgid "" -"This module provides a comprehensive interface for compressing and " -"decompressing data using the bzip2 compression algorithm." +msgid "This module provides a comprehensive interface for compressing and decompressing data using the bzip2 compression algorithm." msgstr "" -#: ../../library/bz2.rst:19 msgid "The :mod:`!bz2` module contains:" msgstr "" -#: ../../library/bz2.rst:21 -msgid "" -"The :func:`.open` function and :class:`BZ2File` class for reading and " -"writing compressed files." +msgid "The :func:`.open` function and :class:`BZ2File` class for reading and writing compressed files." msgstr "" -#: ../../library/bz2.rst:23 -msgid "" -"The :class:`BZ2Compressor` and :class:`BZ2Decompressor` classes for " -"incremental (de)compression." +msgid "The :class:`BZ2Compressor` and :class:`BZ2Decompressor` classes for incremental (de)compression." msgstr "" -#: ../../library/bz2.rst:25 -msgid "" -"The :func:`compress` and :func:`decompress` functions for one-shot " -"(de)compression." +msgid "The :func:`compress` and :func:`decompress` functions for one-shot (de)compression." msgstr "" -#: ../../includes/optional-module.rst:1 -msgid "" -"This is an :term:`optional module`. If it is missing from your copy of " -"CPython, look for documentation from your distributor (that is, whoever " -"provided Python to you). If you are the distributor, see :ref:`optional-" -"module-requirements`." +msgid "This is an :term:`optional module`. If it is missing from your copy of CPython, look for documentation from your distributor (that is, whoever provided Python to you). If you are the distributor, see :ref:`optional-module-requirements`." msgstr "" -#: ../../library/bz2.rst:32 msgid "(De)compression of files" msgstr "" -#: ../../library/bz2.rst:36 -msgid "" -"Open a bzip2-compressed file in binary or text mode, returning a :term:`file " -"object`." +msgid "Open a bzip2-compressed file in binary or text mode, returning a :term:`file object`." msgstr "" -#: ../../library/bz2.rst:39 -msgid "" -"As with the constructor for :class:`BZ2File`, the *filename* argument can be " -"an actual filename (a :class:`str` or :class:`bytes` object), or an existing " -"file object to read from or write to." +msgid "As with the constructor for :class:`BZ2File`, the *filename* argument can be an actual filename (a :class:`str` or :class:`bytes` object), or an existing file object to read from or write to." msgstr "" -#: ../../library/bz2.rst:43 -msgid "" -"The *mode* argument can be any of ``'r'``, ``'rb'``, ``'w'``, ``'wb'``, " -"``'x'``, ``'xb'``, ``'a'`` or ``'ab'`` for binary mode, or ``'rt'``, " -"``'wt'``, ``'xt'``, or ``'at'`` for text mode. The default is ``'rb'``." +msgid "The *mode* argument can be any of ``'r'``, ``'rb'``, ``'w'``, ``'wb'``, ``'x'``, ``'xb'``, ``'a'`` or ``'ab'`` for binary mode, or ``'rt'``, ``'wt'``, ``'xt'``, or ``'at'`` for text mode. The default is ``'rb'``." msgstr "" -#: ../../library/bz2.rst:47 -msgid "" -"The *compresslevel* argument is an integer from 1 to 9, as for " -"the :class:`BZ2File` constructor." +msgid "The *compresslevel* argument is an integer from 1 to 9, as for the :class:`BZ2File` constructor." msgstr "" -#: ../../library/bz2.rst:50 -msgid "" -"For binary mode, this function is equivalent to the :class:`BZ2File` " -"constructor: ``BZ2File(filename, mode, compresslevel=compresslevel)``. In " -"this case, the *encoding*, *errors* and *newline* arguments must not be " -"provided." +msgid "For binary mode, this function is equivalent to the :class:`BZ2File` constructor: ``BZ2File(filename, mode, compresslevel=compresslevel)``. In this case, the *encoding*, *errors* and *newline* arguments must not be provided." msgstr "" -#: ../../library/bz2.rst:55 -msgid "" -"For text mode, a :class:`BZ2File` object is created, and wrapped in " -"an :class:`io.TextIOWrapper` instance with the specified encoding, error " -"handling behavior, and line ending(s)." +msgid "For text mode, a :class:`BZ2File` object is created, and wrapped in an :class:`io.TextIOWrapper` instance with the specified encoding, error handling behavior, and line ending(s)." msgstr "" -#: ../../library/bz2.rst:61 ../../library/bz2.rst:177 msgid "The ``'x'`` (exclusive creation) mode was added." msgstr "" -#: ../../library/bz2.rst:64 ../../library/bz2.rst:184 msgid "Accepts a :term:`path-like object`." msgstr "" -#: ../../library/bz2.rst:70 msgid "Open a bzip2-compressed file in binary mode." msgstr "" -#: ../../library/bz2.rst:72 -msgid "" -"If *filename* is a :class:`str` or :class:`bytes` object, open the named " -"file directly. Otherwise, *filename* should be a :term:`file object`, which " -"will be used to read or write the compressed data." +msgid "If *filename* is a :class:`str` or :class:`bytes` object, open the named file directly. Otherwise, *filename* should be a :term:`file object`, which will be used to read or write the compressed data." msgstr "" -#: ../../library/bz2.rst:76 -msgid "" -"The *mode* argument can be either ``'r'`` for reading (default), ``'w'`` for " -"overwriting, ``'x'`` for exclusive creation, or ``'a'`` for appending. These " -"can equivalently be given as ``'rb'``, ``'wb'``, ``'xb'`` and ``'ab'`` " -"respectively." +msgid "The *mode* argument can be either ``'r'`` for reading (default), ``'w'`` for overwriting, ``'x'`` for exclusive creation, or ``'a'`` for appending. These can equivalently be given as ``'rb'``, ``'wb'``, ``'xb'`` and ``'ab'`` respectively." msgstr "" -#: ../../library/bz2.rst:81 -msgid "" -"If *filename* is a file object (rather than an actual file name), a mode of " -"``'w'`` does not truncate the file, and is instead equivalent to ``'a'``." +msgid "If *filename* is a file object (rather than an actual file name), a mode of ``'w'`` does not truncate the file, and is instead equivalent to ``'a'``." msgstr "" -#: ../../library/bz2.rst:84 -msgid "" -"If *mode* is ``'w'`` or ``'a'``, *compresslevel* can be an integer between " -"``1`` and ``9`` specifying the level of compression: ``1`` produces the " -"least compression, and ``9`` (default) produces the most compression." +msgid "If *mode* is ``'w'`` or ``'a'``, *compresslevel* can be an integer between ``1`` and ``9`` specifying the level of compression: ``1`` produces the least compression, and ``9`` (default) produces the most compression." msgstr "" -#: ../../library/bz2.rst:88 -msgid "" -"If *mode* is ``'r'``, the input file may be the concatenation of multiple " -"compressed streams." +msgid "If *mode* is ``'r'``, the input file may be the concatenation of multiple compressed streams." msgstr "" -#: ../../library/bz2.rst:91 -msgid "" -":class:`BZ2File` provides all of the members specified by " -"the :class:`io.BufferedIOBase`, except for :meth:`~io.BufferedIOBase.detach` " -"and :meth:`~io.IOBase.truncate`. Iteration and the :keyword:`with` statement " -"are supported." +msgid ":class:`BZ2File` provides all of the members specified by the :class:`io.BufferedIOBase`, except for :meth:`~io.BufferedIOBase.detach` and :meth:`~io.IOBase.truncate`. Iteration and the :keyword:`with` statement are supported." msgstr "" -#: ../../library/bz2.rst:96 msgid ":class:`BZ2File` also provides the following methods and attributes:" msgstr "" -#: ../../library/bz2.rst:100 -msgid "" -"Return buffered data without advancing the file position. At least one byte " -"of data will be returned (unless at EOF). The exact number of bytes returned " -"is unspecified." +msgid "Return buffered data without advancing the file position. At least one byte of data will be returned (unless at EOF). The exact number of bytes returned is unspecified." msgstr "" -#: ../../library/bz2.rst:104 -msgid "" -"While calling :meth:`peek` does not change the file position of " -"the :class:`BZ2File`, it may change the position of the underlying file " -"object (e.g. if the :class:`BZ2File` was constructed by passing a file " -"object for *filename*)." +msgid "While calling :meth:`peek` does not change the file position of the :class:`BZ2File`, it may change the position of the underlying file object (e.g. if the :class:`BZ2File` was constructed by passing a file object for *filename*)." msgstr "" -#: ../../library/bz2.rst:113 msgid "Return the file descriptor for the underlying file." msgstr "" -#: ../../library/bz2.rst:119 msgid "Return whether the file was opened for reading." msgstr "" -#: ../../library/bz2.rst:125 msgid "Return whether the file supports seeking." msgstr "" -#: ../../library/bz2.rst:131 msgid "Return whether the file was opened for writing." msgstr "" -#: ../../library/bz2.rst:137 -msgid "" -"Read up to *size* uncompressed bytes, while trying to avoid making multiple " -"reads from the underlying stream. Reads up to a buffer's worth of data if " -"size is negative." +msgid "Read up to *size* uncompressed bytes, while trying to avoid making multiple reads from the underlying stream. Reads up to a buffer's worth of data if size is negative." msgstr "" -#: ../../library/bz2.rst:141 msgid "Returns ``b''`` if the file is at EOF." msgstr "" -#: ../../library/bz2.rst:147 msgid "Read bytes into *b*." msgstr "" -#: ../../library/bz2.rst:149 msgid "Returns the number of bytes read (0 for EOF)." msgstr "" -#: ../../library/bz2.rst:155 msgid "``'rb'`` for reading and ``'wb'`` for writing." msgstr "" -#: ../../library/bz2.rst:161 -msgid "" -"The bzip2 file name. Equivalent to the :attr:`~io.FileIO.name` attribute of " -"the underlying :term:`file object`." +msgid "The bzip2 file name. Equivalent to the :attr:`~io.FileIO.name` attribute of the underlying :term:`file object`." msgstr "" -#: ../../library/bz2.rst:167 msgid "Support for the :keyword:`with` statement was added." msgstr "" -#: ../../library/bz2.rst:170 -msgid "" -"Support was added for *filename* being a :term:`file object` instead of an " -"actual filename." +msgid "Support was added for *filename* being a :term:`file object` instead of an actual filename." msgstr "" -#: ../../library/bz2.rst:174 -msgid "" -"The ``'a'`` (append) mode was added, along with support for reading multi-" -"stream files." +msgid "The ``'a'`` (append) mode was added, along with support for reading multi-stream files." msgstr "" -#: ../../library/bz2.rst:180 -msgid "" -"The :meth:`~io.BufferedIOBase.read` method now accepts an argument of " -"``None``." +msgid "The :meth:`~io.BufferedIOBase.read` method now accepts an argument of ``None``." msgstr "" -#: ../../library/bz2.rst:187 -msgid "" -"The *buffering* parameter has been removed. It was ignored and deprecated " -"since Python 3.0. Pass an open file object to control how the file is opened." +msgid "The *buffering* parameter has been removed. It was ignored and deprecated since Python 3.0. Pass an open file object to control how the file is opened." msgstr "" -#: ../../library/bz2.rst:192 msgid "The *compresslevel* parameter became keyword-only." msgstr "" -#: ../../library/bz2.rst:194 -msgid "" -"This class is thread unsafe in the face of multiple simultaneous readers or " -"writers, just like its equivalent classes in :mod:`gzip` and :mod:`lzma` " -"have always been." +msgid "This class is thread unsafe in the face of multiple simultaneous readers or writers, just like its equivalent classes in :mod:`gzip` and :mod:`lzma` have always been." msgstr "" -#: ../../library/bz2.rst:201 msgid "Incremental (de)compression" msgstr "" -#: ../../library/bz2.rst:205 -msgid "" -"Create a new compressor object. This object may be used to compress data " -"incrementally. For one-shot compression, use the :func:`compress` function " -"instead." +msgid "Create a new compressor object. This object may be used to compress data incrementally. For one-shot compression, use the :func:`compress` function instead." msgstr "" -#: ../../library/bz2.rst:209 ../../library/bz2.rst:297 -msgid "" -"*compresslevel*, if given, must be an integer between ``1`` and ``9``. The " -"default is ``9``." +msgid "*compresslevel*, if given, must be an integer between ``1`` and ``9``. The default is ``9``." msgstr "" -#: ../../library/bz2.rst:214 -msgid "" -"Provide data to the compressor object. Returns a chunk of compressed data if " -"possible, or an empty byte string otherwise." +msgid "Provide data to the compressor object. Returns a chunk of compressed data if possible, or an empty byte string otherwise." msgstr "" -#: ../../library/bz2.rst:217 -msgid "" -"When you have finished providing data to the compressor, call " -"the :meth:`flush` method to finish the compression process." +msgid "When you have finished providing data to the compressor, call the :meth:`flush` method to finish the compression process." msgstr "" -#: ../../library/bz2.rst:223 -msgid "" -"Finish the compression process. Returns the compressed data left in internal " -"buffers." +msgid "Finish the compression process. Returns the compressed data left in internal buffers." msgstr "" -#: ../../library/bz2.rst:226 -msgid "" -"The compressor object may not be used after this method has been called." +msgid "The compressor object may not be used after this method has been called." msgstr "" -#: ../../library/bz2.rst:231 -msgid "" -"Create a new decompressor object. This object may be used to decompress data " -"incrementally. For one-shot compression, use the :func:`decompress` function " -"instead." +msgid "Create a new decompressor object. This object may be used to decompress data incrementally. For one-shot compression, use the :func:`decompress` function instead." msgstr "" -#: ../../library/bz2.rst:236 -msgid "" -"This class does not transparently handle inputs containing multiple " -"compressed streams, unlike :func:`decompress` and :class:`BZ2File`. If you " -"need to decompress a multi-stream input with :class:`BZ2Decompressor`, you " -"must use a new decompressor for each stream." +msgid "This class does not transparently handle inputs containing multiple compressed streams, unlike :func:`decompress` and :class:`BZ2File`. If you need to decompress a multi-stream input with :class:`BZ2Decompressor`, you must use a new decompressor for each stream." msgstr "" -#: ../../library/bz2.rst:243 -msgid "" -"Decompress *data* (a :term:`bytes-like object`), returning uncompressed data " -"as bytes. Some of *data* may be buffered internally, for use in later calls " -"to :meth:`decompress`. The returned data should be concatenated with the " -"output of any previous calls to :meth:`decompress`." +msgid "Decompress *data* (a :term:`bytes-like object`), returning uncompressed data as bytes. Some of *data* may be buffered internally, for use in later calls to :meth:`decompress`. The returned data should be concatenated with the output of any previous calls to :meth:`decompress`." msgstr "" -#: ../../library/bz2.rst:249 -msgid "" -"If *max_length* is nonnegative, returns at most *max_length* bytes of " -"decompressed data. If this limit is reached and further output can be " -"produced, the :attr:`~.needs_input` attribute will be set to ``False``. In " -"this case, the next call to :meth:`~.decompress` may provide *data* as " -"``b''`` to obtain more of the output." +msgid "If *max_length* is nonnegative, returns at most *max_length* bytes of decompressed data. If this limit is reached and further output can be produced, the :attr:`~.needs_input` attribute will be set to ``False``. In this case, the next call to :meth:`~.decompress` may provide *data* as ``b''`` to obtain more of the output." msgstr "" -#: ../../library/bz2.rst:256 -msgid "" -"If all of the input data was decompressed and returned (either because this " -"was less than *max_length* bytes, or because *max_length* was negative), " -"the :attr:`~.needs_input` attribute will be set to ``True``." +msgid "If all of the input data was decompressed and returned (either because this was less than *max_length* bytes, or because *max_length* was negative), the :attr:`~.needs_input` attribute will be set to ``True``." msgstr "" -#: ../../library/bz2.rst:261 -msgid "" -"Attempting to decompress data after the end of stream is reached raises " -"an :exc:`EOFError`. Any data found after the end of the stream is ignored " -"and saved in the :attr:`~.unused_data` attribute." +msgid "Attempting to decompress data after the end of stream is reached raises an :exc:`EOFError`. Any data found after the end of the stream is ignored and saved in the :attr:`~.unused_data` attribute." msgstr "" -#: ../../library/bz2.rst:265 msgid "Added the *max_length* parameter." msgstr "" -#: ../../library/bz2.rst:270 msgid "``True`` if the end-of-stream marker has been reached." msgstr "" -#: ../../library/bz2.rst:277 msgid "Data found after the end of the compressed stream." msgstr "" -#: ../../library/bz2.rst:279 -msgid "" -"If this attribute is accessed before the end of the stream has been reached, " -"its value will be ``b''``." +msgid "If this attribute is accessed before the end of the stream has been reached, its value will be ``b''``." msgstr "" -#: ../../library/bz2.rst:284 -msgid "" -"``False`` if the :meth:`.decompress` method can provide more decompressed " -"data before requiring new uncompressed input." +msgid "``False`` if the :meth:`.decompress` method can provide more decompressed data before requiring new uncompressed input." msgstr "" -#: ../../library/bz2.rst:291 msgid "One-shot (de)compression" msgstr "" -#: ../../library/bz2.rst:295 msgid "Compress *data*, a :term:`bytes-like object `." msgstr "" -#: ../../library/bz2.rst:300 msgid "For incremental compression, use a :class:`BZ2Compressor` instead." msgstr "" -#: ../../library/bz2.rst:305 msgid "Decompress *data*, a :term:`bytes-like object `." msgstr "" -#: ../../library/bz2.rst:307 -msgid "" -"If *data* is the concatenation of multiple compressed streams, decompress " -"all of the streams." +msgid "If *data* is the concatenation of multiple compressed streams, decompress all of the streams." msgstr "" -#: ../../library/bz2.rst:310 msgid "For incremental decompression, use a :class:`BZ2Decompressor` instead." msgstr "" -#: ../../library/bz2.rst:312 msgid "Support for multi-stream inputs was added." msgstr "" -#: ../../library/bz2.rst:318 msgid "Examples of usage" msgstr "" -#: ../../library/bz2.rst:320 msgid "Below are some examples of typical usage of the :mod:`!bz2` module." msgstr "" -#: ../../library/bz2.rst:322 -msgid "" -"Using :func:`compress` and :func:`decompress` to demonstrate round-trip " -"compression:" +msgid "Using :func:`compress` and :func:`decompress` to demonstrate round-trip compression:" msgstr "" -#: ../../library/bz2.rst:340 msgid "Using :class:`BZ2Compressor` for incremental compression:" msgstr "" -#: ../../library/bz2.rst:358 -msgid "" -"The example above uses a very \"nonrandom\" stream of data (a stream of " -"``b\"z\"`` chunks). Random data tends to compress poorly, while ordered, " -"repetitive data usually yields a high compression ratio." +msgid "The example above uses a very \"nonrandom\" stream of data (a stream of ``b\"z\"`` chunks). Random data tends to compress poorly, while ordered, repetitive data usually yields a high compression ratio." msgstr "" -#: ../../library/bz2.rst:362 msgid "Writing and reading a bzip2-compressed file in binary mode:" msgstr "" diff --git a/library/calendar.po b/library/calendar.po index 3648b234..92b02504 100644 --- a/library/calendar.po +++ b/library/calendar.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:56+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,357 +23,177 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/calendar.rst:2 msgid ":mod:`!calendar` --- General calendar-related functions" msgstr "" -#: ../../library/calendar.rst:10 msgid "**Source code:** :source:`Lib/calendar.py`" msgstr "" -#: ../../library/calendar.rst:14 -msgid "" -"This module allows you to output calendars like the Unix :program:`cal` " -"program, and provides additional useful functions related to the calendar. " -"By default, these calendars have Monday as the first day of the week, and " -"Sunday as the last (the European convention). Use :func:`setfirstweekday` to " -"set the first day of the week to Sunday (6) or to any other weekday. " -"Parameters that specify dates are given as integers. For related " -"functionality, see also the :mod:`datetime` and :mod:`time` modules." +msgid "This module allows you to output calendars like the Unix :program:`cal` program, and provides additional useful functions related to the calendar. By default, these calendars have Monday as the first day of the week, and Sunday as the last (the European convention). Use :func:`setfirstweekday` to set the first day of the week to Sunday (6) or to any other weekday. Parameters that specify dates are given as integers. For related functionality, see also the :mod:`datetime` and :mod:`time` modules." msgstr "" -#: ../../library/calendar.rst:22 -msgid "" -"The functions and classes defined in this module use an idealized calendar, " -"the current Gregorian calendar extended indefinitely in both directions. " -"This matches the definition of the \"proleptic Gregorian\" calendar in " -"Dershowitz and Reingold's book \"Calendrical Calculations\", where it's the " -"base calendar for all computations. Zero and negative years are interpreted " -"as prescribed by the ISO 8601 standard. Year 0 is 1 BC, year -1 is 2 BC, " -"and so on." +msgid "The functions and classes defined in this module use an idealized calendar, the current Gregorian calendar extended indefinitely in both directions. This matches the definition of the \"proleptic Gregorian\" calendar in Dershowitz and Reingold's book \"Calendrical Calculations\", where it's the base calendar for all computations. Zero and negative years are interpreted as prescribed by the ISO 8601 standard. Year 0 is 1 BC, year -1 is 2 BC, and so on." msgstr "" -#: ../../library/calendar.rst:33 -msgid "" -"Creates a :class:`Calendar` object. *firstweekday* is an integer specifying " -"the first day of the week. :const:`MONDAY` is ``0`` (the " -"default), :const:`SUNDAY` is ``6``." +msgid "Creates a :class:`Calendar` object. *firstweekday* is an integer specifying the first day of the week. :const:`MONDAY` is ``0`` (the default), :const:`SUNDAY` is ``6``." msgstr "" -#: ../../library/calendar.rst:36 -msgid "" -"A :class:`Calendar` object provides several methods that can be used for " -"preparing the calendar data for formatting. This class doesn't do any " -"formatting itself. This is the job of subclasses." +msgid "A :class:`Calendar` object provides several methods that can be used for preparing the calendar data for formatting. This class doesn't do any formatting itself. This is the job of subclasses." msgstr "" -#: ../../library/calendar.rst:41 msgid ":class:`Calendar` instances have the following methods and attributes:" msgstr "" -#: ../../library/calendar.rst:45 msgid "The first weekday as an integer (0--6)." msgstr "" -#: ../../library/calendar.rst:47 -msgid "" -"This property can also be set and read " -"using :meth:`~Calendar.setfirstweekday` " -"and :meth:`~Calendar.getfirstweekday` respectively." +msgid "This property can also be set and read using :meth:`~Calendar.setfirstweekday` and :meth:`~Calendar.getfirstweekday` respectively." msgstr "" -#: ../../library/calendar.rst:53 msgid "Return an :class:`int` for the current first weekday (0--6)." msgstr "" -#: ../../library/calendar.rst:55 msgid "Identical to reading the :attr:`~Calendar.firstweekday` property." msgstr "" -#: ../../library/calendar.rst:59 -msgid "" -"Set the first weekday to *firstweekday*, passed as an :class:`int` (0--6)." +msgid "Set the first weekday to *firstweekday*, passed as an :class:`int` (0--6)." msgstr "" -#: ../../library/calendar.rst:61 msgid "Identical to setting the :attr:`~Calendar.firstweekday` property." msgstr "" -#: ../../library/calendar.rst:65 -msgid "" -"Return an iterator for the weekday numbers that will be used for one week. " -"The first value from the iterator will be the same as the value of " -"the :attr:`~Calendar.firstweekday` property." +msgid "Return an iterator for the weekday numbers that will be used for one week. The first value from the iterator will be the same as the value of the :attr:`~Calendar.firstweekday` property." msgstr "" -#: ../../library/calendar.rst:72 -msgid "" -"Return an iterator for the month *month* (1--12) in the year *year*. This " -"iterator will return all days (as :class:`datetime.date` objects) for the " -"month and all days before the start of the month or after the end of the " -"month that are required to get a complete week." +msgid "Return an iterator for the month *month* (1--12) in the year *year*. This iterator will return all days (as :class:`datetime.date` objects) for the month and all days before the start of the month or after the end of the month that are required to get a complete week." msgstr "" -#: ../../library/calendar.rst:80 -msgid "" -"Return an iterator for the month *month* in the year *year* similar " -"to :meth:`itermonthdates`, but not restricted by the :class:`datetime.date` " -"range. Days returned will simply be day of the month numbers. For the days " -"outside of the specified month, the day number is ``0``." +msgid "Return an iterator for the month *month* in the year *year* similar to :meth:`itermonthdates`, but not restricted by the :class:`datetime.date` range. Days returned will simply be day of the month numbers. For the days outside of the specified month, the day number is ``0``." msgstr "" -#: ../../library/calendar.rst:88 -msgid "" -"Return an iterator for the month *month* in the year *year* similar " -"to :meth:`itermonthdates`, but not restricted by the :class:`datetime.date` " -"range. Days returned will be tuples consisting of a day of the month number " -"and a weekday number." +msgid "Return an iterator for the month *month* in the year *year* similar to :meth:`itermonthdates`, but not restricted by the :class:`datetime.date` range. Days returned will be tuples consisting of a day of the month number and a weekday number." msgstr "" -#: ../../library/calendar.rst:96 -msgid "" -"Return an iterator for the month *month* in the year *year* similar " -"to :meth:`itermonthdates`, but not restricted by the :class:`datetime.date` " -"range. Days returned will be tuples consisting of a year, a month and a day " -"of the month numbers." +msgid "Return an iterator for the month *month* in the year *year* similar to :meth:`itermonthdates`, but not restricted by the :class:`datetime.date` range. Days returned will be tuples consisting of a year, a month and a day of the month numbers." msgstr "" -#: ../../library/calendar.rst:106 -msgid "" -"Return an iterator for the month *month* in the year *year* similar " -"to :meth:`itermonthdates`, but not restricted by the :class:`datetime.date` " -"range. Days returned will be tuples consisting of a year, a month, a day of " -"the month, and a day of the week numbers." +msgid "Return an iterator for the month *month* in the year *year* similar to :meth:`itermonthdates`, but not restricted by the :class:`datetime.date` range. Days returned will be tuples consisting of a year, a month, a day of the month, and a day of the week numbers." msgstr "" -#: ../../library/calendar.rst:116 -msgid "" -"Return a list of the weeks in the month *month* of the *year* as full " -"weeks. Weeks are lists of seven :class:`datetime.date` objects." +msgid "Return a list of the weeks in the month *month* of the *year* as full weeks. Weeks are lists of seven :class:`datetime.date` objects." msgstr "" -#: ../../library/calendar.rst:122 -msgid "" -"Return a list of the weeks in the month *month* of the *year* as full " -"weeks. Weeks are lists of seven tuples of day numbers and weekday numbers." +msgid "Return a list of the weeks in the month *month* of the *year* as full weeks. Weeks are lists of seven tuples of day numbers and weekday numbers." msgstr "" -#: ../../library/calendar.rst:129 -msgid "" -"Return a list of the weeks in the month *month* of the *year* as full " -"weeks. Weeks are lists of seven day numbers." +msgid "Return a list of the weeks in the month *month* of the *year* as full weeks. Weeks are lists of seven day numbers." msgstr "" -#: ../../library/calendar.rst:135 -msgid "" -"Return the data for the specified year ready for formatting. The return " -"value is a list of month rows. Each month row contains up to *width* months " -"(defaulting to 3). Each month contains between 4 and 6 weeks and each week " -"contains 1--7 days. Days are :class:`datetime.date` objects." +msgid "Return the data for the specified year ready for formatting. The return value is a list of month rows. Each month row contains up to *width* months (defaulting to 3). Each month contains between 4 and 6 weeks and each week contains 1--7 days. Days are :class:`datetime.date` objects." msgstr "" -#: ../../library/calendar.rst:143 -msgid "" -"Return the data for the specified year ready for formatting (similar " -"to :meth:`yeardatescalendar`). Entries in the week lists are tuples of day " -"numbers and weekday numbers. Day numbers outside this month are zero." +msgid "Return the data for the specified year ready for formatting (similar to :meth:`yeardatescalendar`). Entries in the week lists are tuples of day numbers and weekday numbers. Day numbers outside this month are zero." msgstr "" -#: ../../library/calendar.rst:150 -msgid "" -"Return the data for the specified year ready for formatting (similar " -"to :meth:`yeardatescalendar`). Entries in the week lists are day numbers. " -"Day numbers outside this month are zero." +msgid "Return the data for the specified year ready for formatting (similar to :meth:`yeardatescalendar`). Entries in the week lists are day numbers. Day numbers outside this month are zero." msgstr "" -#: ../../library/calendar.rst:157 msgid "This class can be used to generate plain text calendars." msgstr "" -#: ../../library/calendar.rst:159 msgid ":class:`TextCalendar` instances have the following methods:" msgstr "" -#: ../../library/calendar.rst:164 -msgid "" -"Return a string representing a single day formatted with the given *width*. " -"If *theday* is ``0``, return a string of spaces of the specified width, " -"representing an empty day. The *weekday* parameter is unused." +msgid "Return a string representing a single day formatted with the given *width*. If *theday* is ``0``, return a string of spaces of the specified width, representing an empty day. The *weekday* parameter is unused." msgstr "" -#: ../../library/calendar.rst:171 -msgid "" -"Return a single week in a string with no newline. If *w* is provided, it " -"specifies the width of the date columns, which are centered. Depends on the " -"first weekday as specified in the constructor or set by " -"the :meth:`setfirstweekday` method." +msgid "Return a single week in a string with no newline. If *w* is provided, it specifies the width of the date columns, which are centered. Depends on the first weekday as specified in the constructor or set by the :meth:`setfirstweekday` method." msgstr "" -#: ../../library/calendar.rst:179 -msgid "" -"Return a string representing the name of a single weekday formatted to the " -"specified *width*. The *weekday* parameter is an integer representing the " -"day of the week, where ``0`` is Monday and ``6`` is Sunday." +msgid "Return a string representing the name of a single weekday formatted to the specified *width*. The *weekday* parameter is an integer representing the day of the week, where ``0`` is Monday and ``6`` is Sunday." msgstr "" -#: ../../library/calendar.rst:186 -msgid "" -"Return a string containing the header row of weekday names, formatted with " -"the given *width* for each column. The names depend on the locale settings " -"and are padded to the specified width." +msgid "Return a string containing the header row of weekday names, formatted with the given *width* for each column. The names depend on the locale settings and are padded to the specified width." msgstr "" -#: ../../library/calendar.rst:193 -msgid "" -"Return a month's calendar in a multi-line string. If *w* is provided, it " -"specifies the width of the date columns, which are centered. If *l* is " -"given, it specifies the number of lines that each week will use. Depends on " -"the first weekday as specified in the constructor or set by " -"the :meth:`setfirstweekday` method." +msgid "Return a month's calendar in a multi-line string. If *w* is provided, it specifies the width of the date columns, which are centered. If *l* is given, it specifies the number of lines that each week will use. Depends on the first weekday as specified in the constructor or set by the :meth:`setfirstweekday` method." msgstr "" -#: ../../library/calendar.rst:202 -msgid "" -"Return a string representing the month's name centered within the specified " -"*width*. If *withyear* is ``True``, include the year in the output. The " -"*theyear* and *themonth* parameters specify the year and month for the name " -"to be formatted respectively." +msgid "Return a string representing the month's name centered within the specified *width*. If *withyear* is ``True``, include the year in the output. The *theyear* and *themonth* parameters specify the year and month for the name to be formatted respectively." msgstr "" -#: ../../library/calendar.rst:210 msgid "Print a month's calendar as returned by :meth:`formatmonth`." msgstr "" -#: ../../library/calendar.rst:215 -msgid "" -"Return a *m*-column calendar for an entire year as a multi-line string. " -"Optional parameters *w*, *l*, and *c* are for date column width, lines per " -"week, and number of spaces between month columns, respectively. Depends on " -"the first weekday as specified in the constructor or set by " -"the :meth:`setfirstweekday` method. The earliest year for which a calendar " -"can be generated is platform-dependent." +msgid "Return a *m*-column calendar for an entire year as a multi-line string. Optional parameters *w*, *l*, and *c* are for date column width, lines per week, and number of spaces between month columns, respectively. Depends on the first weekday as specified in the constructor or set by the :meth:`setfirstweekday` method. The earliest year for which a calendar can be generated is platform-dependent." msgstr "" -#: ../../library/calendar.rst:225 -msgid "" -"Print the calendar for an entire year as returned by :meth:`formatyear`." +msgid "Print the calendar for an entire year as returned by :meth:`formatyear`." msgstr "" -#: ../../library/calendar.rst:230 msgid "This class can be used to generate HTML calendars." msgstr "" -#: ../../library/calendar.rst:233 msgid ":class:`!HTMLCalendar` instances have the following methods:" msgstr "" -#: ../../library/calendar.rst:237 -msgid "" -"Return a month's calendar as an HTML table. If *withyear* is true the year " -"will be included in the header, otherwise just the month name will be used." +msgid "Return a month's calendar as an HTML table. If *withyear* is true the year will be included in the header, otherwise just the month name will be used." msgstr "" -#: ../../library/calendar.rst:244 -msgid "" -"Return a year's calendar as an HTML table. *width* (defaulting to 3) " -"specifies the number of months per row." +msgid "Return a year's calendar as an HTML table. *width* (defaulting to 3) specifies the number of months per row." msgstr "" -#: ../../library/calendar.rst:250 -msgid "" -"Return a year's calendar as a complete HTML page. *width* (defaulting to 3) " -"specifies the number of months per row. *css* is the name for the cascading " -"style sheet to be used. :const:`None` can be passed if no style sheet should " -"be used. *encoding* specifies the encoding to be used for the output " -"(defaulting to the system default encoding)." +msgid "Return a year's calendar as a complete HTML page. *width* (defaulting to 3) specifies the number of months per row. *css* is the name for the cascading style sheet to be used. :const:`None` can be passed if no style sheet should be used. *encoding* specifies the encoding to be used for the output (defaulting to the system default encoding)." msgstr "" -#: ../../library/calendar.rst:259 -msgid "" -"Return a month name as an HTML table row. If *withyear* is true the year " -"will be included in the row, otherwise just the month name will be used." +msgid "Return a month name as an HTML table row. If *withyear* is true the year will be included in the row, otherwise just the month name will be used." msgstr "" -#: ../../library/calendar.rst:264 -msgid "" -":class:`!HTMLCalendar` has the following attributes you can override to " -"customize the CSS classes used by the calendar:" +msgid ":class:`!HTMLCalendar` has the following attributes you can override to customize the CSS classes used by the calendar:" msgstr "" -#: ../../library/calendar.rst:269 -msgid "" -"A list of CSS classes used for each weekday. The default class list is::" +msgid "A list of CSS classes used for each weekday. The default class list is::" msgstr "" -#: ../../library/calendar.rst:271 -msgid "" -"cssclasses = [\"mon\", \"tue\", \"wed\", \"thu\", \"fri\", \"sat\", \"sun\"]" +msgid "cssclasses = [\"mon\", \"tue\", \"wed\", \"thu\", \"fri\", \"sat\", \"sun\"]" msgstr "" -#: ../../library/calendar.rst:273 msgid "more styles can be added for each day::" msgstr "" -#: ../../library/calendar.rst:275 -msgid "" -"cssclasses = [\"mon text-bold\", \"tue\", \"wed\", \"thu\", \"fri\", " -"\"sat\", \"sun red\"]" +msgid "cssclasses = [\"mon text-bold\", \"tue\", \"wed\", \"thu\", \"fri\", \"sat\", \"sun red\"]" msgstr "" -#: ../../library/calendar.rst:277 msgid "Note that the length of this list must be seven items." msgstr "" -#: ../../library/calendar.rst:282 msgid "The CSS class for a weekday occurring in the previous or coming month." msgstr "" -#: ../../library/calendar.rst:289 -msgid "" -"A list of CSS classes used for weekday names in the header row. The default " -"is the same as :attr:`cssclasses`." +msgid "A list of CSS classes used for weekday names in the header row. The default is the same as :attr:`cssclasses`." msgstr "" -#: ../../library/calendar.rst:297 -msgid "" -"The month's head CSS class (used by :meth:`formatmonthname`). The default " -"value is ``\"month\"``." +msgid "The month's head CSS class (used by :meth:`formatmonthname`). The default value is ``\"month\"``." msgstr "" -#: ../../library/calendar.rst:305 -msgid "" -"The CSS class for the whole month's table (used by :meth:`formatmonth`). The " -"default value is ``\"month\"``." +msgid "The CSS class for the whole month's table (used by :meth:`formatmonth`). The default value is ``\"month\"``." msgstr "" -#: ../../library/calendar.rst:313 -msgid "" -"The CSS class for the whole year's table of tables (used " -"by :meth:`formatyear`). The default value is ``\"year\"``." +msgid "The CSS class for the whole year's table of tables (used by :meth:`formatyear`). The default value is ``\"year\"``." msgstr "" -#: ../../library/calendar.rst:321 -msgid "" -"The CSS class for the table head for the whole year (used " -"by :meth:`formatyear`). The default value is ``\"year\"``." +msgid "The CSS class for the table head for the whole year (used by :meth:`formatyear`). The default value is ``\"year\"``." msgstr "" -#: ../../library/calendar.rst:327 -msgid "" -"Note that although the naming for the above described class attributes is " -"singular (e.g. ``cssclass_month`` ``cssclass_noday``), one can replace the " -"single CSS class with a space separated list of CSS classes, for example::" +msgid "Note that although the naming for the above described class attributes is singular (e.g. ``cssclass_month`` ``cssclass_noday``), one can replace the single CSS class with a space separated list of CSS classes, for example::" msgstr "" -#: ../../library/calendar.rst:331 msgid "\"text-bold text-red\"" msgstr "" -#: ../../library/calendar.rst:333 msgid "Here is an example how :class:`!HTMLCalendar` can be customized::" msgstr "" -#: ../../library/calendar.rst:335 msgid "" "class CustomHTMLCal(calendar.HTMLCalendar):\n" " cssclasses = [style + \" text-nowrap\" for style in\n" @@ -383,244 +203,137 @@ msgid "" " cssclass_year = \"text-italic lead\"" msgstr "" -#: ../../library/calendar.rst:345 -msgid "" -"This subclass of :class:`TextCalendar` can be passed a locale name in the " -"constructor and will return month and weekday names in the specified locale." +msgid "This subclass of :class:`TextCalendar` can be passed a locale name in the constructor and will return month and weekday names in the specified locale." msgstr "" -#: ../../library/calendar.rst:351 -msgid "" -"This subclass of :class:`HTMLCalendar` can be passed a locale name in the " -"constructor and will return month and weekday names in the specified locale." +msgid "This subclass of :class:`HTMLCalendar` can be passed a locale name in the constructor and will return month and weekday names in the specified locale." msgstr "" -#: ../../library/calendar.rst:357 -msgid "" -"The constructor, :meth:`!formatweekday` and :meth:`!formatmonthname` methods " -"of these two classes temporarily change the ``LC_TIME`` locale to the given " -"*locale*. Because the current locale is a process-wide setting, they are not " -"thread-safe." +msgid "The constructor, :meth:`!formatweekday` and :meth:`!formatmonthname` methods of these two classes temporarily change the ``LC_TIME`` locale to the given *locale*. Because the current locale is a process-wide setting, they are not thread-safe." msgstr "" -#: ../../library/calendar.rst:363 msgid "For simple text calendars this module provides the following functions." msgstr "" -#: ../../library/calendar.rst:367 -msgid "" -"Sets the weekday (``0`` is Monday, ``6`` is Sunday) to start each week. The " -"values :const:`MONDAY`, :const:`TUESDAY`, :const:`WEDNESDAY`, :const:`THURSDAY`, :const:`FRIDAY`, :const:`SATURDAY`, " -"and :const:`SUNDAY` are provided for convenience. For example, to set the " -"first weekday to Sunday::" +msgid "Sets the weekday (``0`` is Monday, ``6`` is Sunday) to start each week. The values :const:`MONDAY`, :const:`TUESDAY`, :const:`WEDNESDAY`, :const:`THURSDAY`, :const:`FRIDAY`, :const:`SATURDAY`, and :const:`SUNDAY` are provided for convenience. For example, to set the first weekday to Sunday::" msgstr "" -#: ../../library/calendar.rst:372 msgid "" "import calendar\n" "calendar.setfirstweekday(calendar.SUNDAY)" msgstr "" -#: ../../library/calendar.rst:378 msgid "Returns the current setting for the weekday to start each week." msgstr "" -#: ../../library/calendar.rst:383 -msgid "" -"Returns :const:`True` if *year* is a leap year, otherwise :const:`False`." +msgid "Returns :const:`True` if *year* is a leap year, otherwise :const:`False`." msgstr "" -#: ../../library/calendar.rst:388 -msgid "" -"Returns the number of leap years in the range from *y1* to *y2* (exclusive), " -"where *y1* and *y2* are years." +msgid "Returns the number of leap years in the range from *y1* to *y2* (exclusive), where *y1* and *y2* are years." msgstr "" -#: ../../library/calendar.rst:391 msgid "This function works for ranges spanning a century change." msgstr "" -#: ../../library/calendar.rst:396 -msgid "" -"Returns the day of the week (``0`` is Monday) for *year* (``1970``--...), " -"*month* (``1``--``12``), *day* (``1``--``31``)." +msgid "Returns the day of the week (``0`` is Monday) for *year* (``1970``--...), *month* (``1``--``12``), *day* (``1``--``31``)." msgstr "" -#: ../../library/calendar.rst:402 -msgid "" -"Return a header containing abbreviated weekday names. *width* specifies the " -"width in characters for one weekday." +msgid "Return a header containing abbreviated weekday names. *width* specifies the width in characters for one weekday." msgstr "" -#: ../../library/calendar.rst:408 -msgid "" -"Returns weekday of first day of the month and number of days in month, for " -"the specified *year* and *month*." +msgid "Returns weekday of first day of the month and number of days in month, for the specified *year* and *month*." msgstr "" -#: ../../library/calendar.rst:414 -msgid "" -"Returns a matrix representing a month's calendar. Each row represents a " -"week; days outside of the month are represented by zeros. Each week begins " -"with Monday unless set by :func:`setfirstweekday`." +msgid "Returns a matrix representing a month's calendar. Each row represents a week; days outside of the month are represented by zeros. Each week begins with Monday unless set by :func:`setfirstweekday`." msgstr "" -#: ../../library/calendar.rst:421 msgid "Prints a month's calendar as returned by :func:`month`." msgstr "" -#: ../../library/calendar.rst:426 -msgid "" -"Returns a month's calendar in a multi-line string using " -"the :meth:`~TextCalendar.formatmonth` of the :class:`TextCalendar` class." +msgid "Returns a month's calendar in a multi-line string using the :meth:`~TextCalendar.formatmonth` of the :class:`TextCalendar` class." msgstr "" -#: ../../library/calendar.rst:432 -msgid "" -"Prints the calendar for an entire year as returned by :func:`calendar`." +msgid "Prints the calendar for an entire year as returned by :func:`calendar`." msgstr "" -#: ../../library/calendar.rst:437 -msgid "" -"Returns a 3-column calendar for an entire year as a multi-line string using " -"the :meth:`~TextCalendar.formatyear` of the :class:`TextCalendar` class." +msgid "Returns a 3-column calendar for an entire year as a multi-line string using the :meth:`~TextCalendar.formatyear` of the :class:`TextCalendar` class." msgstr "" -#: ../../library/calendar.rst:443 -msgid "" -"An unrelated but handy function that takes a time tuple such as returned by " -"the :func:`~time.gmtime` function in the :mod:`time` module, and returns the " -"corresponding Unix timestamp value, assuming an epoch of 1970, and the POSIX " -"encoding. In fact, :func:`time.gmtime` and :func:`timegm` are each other's " -"inverse." +msgid "An unrelated but handy function that takes a time tuple such as returned by the :func:`~time.gmtime` function in the :mod:`time` module, and returns the corresponding Unix timestamp value, assuming an epoch of 1970, and the POSIX encoding. In fact, :func:`time.gmtime` and :func:`timegm` are each other's inverse." msgstr "" -#: ../../library/calendar.rst:450 msgid "The :mod:`!calendar` module exports the following data attributes:" msgstr "" -#: ../../library/calendar.rst:454 -msgid "" -"A sequence that represents the days of the week in the current locale, where " -"Monday is day number 0." +msgid "A sequence that represents the days of the week in the current locale, where Monday is day number 0." msgstr "" -#: ../../library/calendar.rst:464 -msgid "" -"A sequence that represents the abbreviated days of the week in the current " -"locale, where Mon is day number 0." +msgid "A sequence that represents the abbreviated days of the week in the current locale, where Mon is day number 0." msgstr "" -#: ../../library/calendar.rst:479 -msgid "" -"Aliases for the days of the week, where ``MONDAY`` is ``0`` and ``SUNDAY`` " -"is ``6``." +msgid "Aliases for the days of the week, where ``MONDAY`` is ``0`` and ``SUNDAY`` is ``6``." msgstr "" -#: ../../library/calendar.rst:487 -msgid "" -"Enumeration defining days of the week as integer constants. The members of " -"this enumeration are exported to the module scope as :data:`MONDAY` " -"through :data:`SUNDAY`." +msgid "Enumeration defining days of the week as integer constants. The members of this enumeration are exported to the module scope as :data:`MONDAY` through :data:`SUNDAY`." msgstr "" -#: ../../library/calendar.rst:496 -msgid "" -"A sequence that represents the months of the year in the current locale. " -"This follows normal convention of January being month number 1, so it has a " -"length of 13 and ``month_name[0]`` is the empty string." +msgid "A sequence that represents the months of the year in the current locale. This follows normal convention of January being month number 1, so it has a length of 13 and ``month_name[0]`` is the empty string." msgstr "" -#: ../../library/calendar.rst:507 -msgid "" -"A sequence that represents the abbreviated months of the year in the current " -"locale. This follows normal convention of January being month number 1, so " -"it has a length of 13 and ``month_abbr[0]`` is the empty string." +msgid "A sequence that represents the abbreviated months of the year in the current locale. This follows normal convention of January being month number 1, so it has a length of 13 and ``month_abbr[0]`` is the empty string." msgstr "" -#: ../../library/calendar.rst:528 -msgid "" -"Aliases for the months of the year, where ``JANUARY`` is ``1`` and " -"``DECEMBER`` is ``12``." +msgid "Aliases for the months of the year, where ``JANUARY`` is ``1`` and ``DECEMBER`` is ``12``." msgstr "" -#: ../../library/calendar.rst:536 -msgid "" -"Enumeration defining months of the year as integer constants. The members of " -"this enumeration are exported to the module scope as :data:`JANUARY` " -"through :data:`DECEMBER`." +msgid "Enumeration defining months of the year as integer constants. The members of this enumeration are exported to the module scope as :data:`JANUARY` through :data:`DECEMBER`." msgstr "" -#: ../../library/calendar.rst:543 msgid "The :mod:`!calendar` module defines the following exceptions:" msgstr "" -#: ../../library/calendar.rst:547 -msgid "" -"A subclass of :exc:`ValueError` and :exc:`IndexError`, raised when the given " -"month number is outside of the range 1-12 (inclusive)." +msgid "A subclass of :exc:`ValueError` and :exc:`IndexError`, raised when the given month number is outside of the range 1-12 (inclusive)." msgstr "" -#: ../../library/calendar.rst:550 -msgid "" -":exc:`IllegalMonthError` is now also a subclass of :exc:`ValueError`. New " -"code should avoid catching :exc:`IndexError`." +msgid ":exc:`IllegalMonthError` is now also a subclass of :exc:`ValueError`. New code should avoid catching :exc:`IndexError`." msgstr "" -#: ../../library/calendar.rst:557 msgid "The invalid month number." msgstr "" -#: ../../library/calendar.rst:562 -msgid "" -"A subclass of :exc:`ValueError`, raised when the given weekday number is " -"outside of the range 0-6 (inclusive)." +msgid "A subclass of :exc:`ValueError`, raised when the given weekday number is outside of the range 0-6 (inclusive)." msgstr "" -#: ../../library/calendar.rst:567 msgid "The invalid weekday number." msgstr "" -#: ../../library/calendar.rst:572 msgid "Module :mod:`datetime`" msgstr "" -#: ../../library/calendar.rst:573 -msgid "" -"Object-oriented interface to dates and times with similar functionality to " -"the :mod:`time` module." +msgid "Object-oriented interface to dates and times with similar functionality to the :mod:`time` module." msgstr "" -#: ../../library/calendar.rst:576 msgid "Module :mod:`time`" msgstr "" -#: ../../library/calendar.rst:577 msgid "Low-level time related functions." msgstr "" -#: ../../library/calendar.rst:583 msgid "Command-line usage" msgstr "" -#: ../../library/calendar.rst:587 -msgid "" -"The :mod:`!calendar` module can be executed as a script from the command " -"line to interactively print a calendar." +msgid "The :mod:`!calendar` module can be executed as a script from the command line to interactively print a calendar." msgstr "" -#: ../../library/calendar.rst:590 msgid "" "python -m calendar [-h] [-L LOCALE] [-e ENCODING] [-t {text,html}]\n" " [-w WIDTH] [-l LINES] [-s SPACING] [-m MONTHS] [-c CSS]\n" " [-f FIRST_WEEKDAY] [year] [month]" msgstr "" -#: ../../library/calendar.rst:597 msgid "For example, to print a calendar for the year 2000:" msgstr "" -#: ../../library/calendar.rst:599 msgid "" "$ python -m calendar 2000\n" " 2000\n" @@ -661,83 +374,50 @@ msgid "" "30 31" msgstr "" -#: ../../library/calendar.rst:640 msgid "The following options are accepted:" msgstr "" -#: ../../library/calendar.rst:647 msgid "Show the help message and exit." msgstr "" -#: ../../library/calendar.rst:652 msgid "The locale to use for month and weekday names. Defaults to English." msgstr "" -#: ../../library/calendar.rst:658 -msgid "" -"The encoding to use for output. :option:`--encoding` is required " -"if :option:`--locale` is set." +msgid "The encoding to use for output. :option:`--encoding` is required if :option:`--locale` is set." msgstr "" -#: ../../library/calendar.rst:664 msgid "Print the calendar to the terminal as text, or as an HTML document." msgstr "" -#: ../../library/calendar.rst:670 -msgid "" -"The weekday to start each week. Must be a number between 0 (Monday) and 6 " -"(Sunday). Defaults to 0." +msgid "The weekday to start each week. Must be a number between 0 (Monday) and 6 (Sunday). Defaults to 0." msgstr "" -#: ../../library/calendar.rst:678 msgid "The year to print the calendar for. Defaults to the current year." msgstr "" -#: ../../library/calendar.rst:684 -msgid "" -"The month of the specified :option:`year` to print the calendar for. Must be " -"a number between 1 and 12, and may only be used in text mode. Defaults to " -"printing a calendar for the full year." +msgid "The month of the specified :option:`year` to print the calendar for. Must be a number between 1 and 12, and may only be used in text mode. Defaults to printing a calendar for the full year." msgstr "" -#: ../../library/calendar.rst:690 msgid "*Text-mode options:*" msgstr "" -#: ../../library/calendar.rst:694 -msgid "" -"The width of the date column in terminal columns. The date is printed " -"centred in the column. Any value lower than 2 is ignored. Defaults to 2." +msgid "The width of the date column in terminal columns. The date is printed centred in the column. Any value lower than 2 is ignored. Defaults to 2." msgstr "" -#: ../../library/calendar.rst:702 -msgid "" -"The number of lines for each week in terminal rows. The date is printed top-" -"aligned. Any value lower than 1 is ignored. Defaults to 1." +msgid "The number of lines for each week in terminal rows. The date is printed top-aligned. Any value lower than 1 is ignored. Defaults to 1." msgstr "" -#: ../../library/calendar.rst:710 -msgid "" -"The space between months in columns. Any value lower than 2 is ignored. " -"Defaults to 6." +msgid "The space between months in columns. Any value lower than 2 is ignored. Defaults to 6." msgstr "" -#: ../../library/calendar.rst:717 msgid "The number of months printed per row. Defaults to 3." msgstr "" -#: ../../library/calendar.rst:720 -msgid "" -"By default, today's date is highlighted in color and can be :ref:`controlled " -"using environment variables `." +msgid "By default, today's date is highlighted in color and can be :ref:`controlled using environment variables `." msgstr "" -#: ../../library/calendar.rst:724 msgid "*HTML-mode options:*" msgstr "" -#: ../../library/calendar.rst:728 -msgid "" -"The path of a CSS stylesheet to use for the calendar. This must either be " -"relative to the generated HTML, or an absolute HTTP or ``file:///`` URL." +msgid "The path of a CSS stylesheet to use for the calendar. This must either be relative to the generated HTML, or an absolute HTTP or ``file:///`` URL." msgstr "" diff --git a/library/cgi.po b/library/cgi.po index 03c87025..a19826a1 100644 --- a/library/cgi.po +++ b/library/cgi.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2024-11-19 01:02+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,26 +21,14 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/cgi.rst:2 msgid ":mod:`!cgi` --- Common Gateway Interface support" msgstr "" -#: ../../library/cgi.rst:10 -msgid "" -"This module is no longer part of the Python standard library. It " -"was :ref:`removed in Python 3.13 ` after being " -"deprecated in Python 3.11. The removal was decided in :pep:`594`." +msgid "This module is no longer part of the Python standard library. It was :ref:`removed in Python 3.13 ` after being deprecated in Python 3.11. The removal was decided in :pep:`594`." msgstr "" -#: ../../library/cgi.rst:14 -msgid "" -"A fork of the module on PyPI can be used instead: :pypi:`legacy-cgi`. This " -"is a copy of the cgi module, no longer maintained or supported by the core " -"Python team." +msgid "A fork of the module on PyPI can be used instead: :pypi:`legacy-cgi`. This is a copy of the cgi module, no longer maintained or supported by the core Python team." msgstr "" -#: ../../library/cgi.rst:18 -msgid "" -"The last version of Python that provided the :mod:`!cgi` module was `Python " -"3.12 `_." +msgid "The last version of Python that provided the :mod:`!cgi` module was `Python 3.12 `_." msgstr "" diff --git a/library/cgitb.po b/library/cgitb.po index 5ca88a00..8577e776 100644 --- a/library/cgitb.po +++ b/library/cgitb.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2024-11-19 01:02+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,26 +21,14 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/cgitb.rst:2 msgid ":mod:`!cgitb` --- Traceback manager for CGI scripts" msgstr "" -#: ../../library/cgitb.rst:10 -msgid "" -"This module is no longer part of the Python standard library. It " -"was :ref:`removed in Python 3.13 ` after being " -"deprecated in Python 3.11. The removal was decided in :pep:`594`." +msgid "This module is no longer part of the Python standard library. It was :ref:`removed in Python 3.13 ` after being deprecated in Python 3.11. The removal was decided in :pep:`594`." msgstr "" -#: ../../library/cgitb.rst:14 -msgid "" -"A fork of the module on PyPI can now be used instead: :pypi:`legacy-cgi`. " -"This is a copy of the cgi module, no longer maintained or supported by the " -"core Python team." +msgid "A fork of the module on PyPI can now be used instead: :pypi:`legacy-cgi`. This is a copy of the cgi module, no longer maintained or supported by the core Python team." msgstr "" -#: ../../library/cgitb.rst:18 -msgid "" -"The last version of Python that provided the :mod:`!cgitb` module was " -"`Python 3.12 `_." +msgid "The last version of Python that provided the :mod:`!cgitb` module was `Python 3.12 `_." msgstr "" diff --git a/library/chunk.po b/library/chunk.po index 12f1c5c2..96097253 100644 --- a/library/chunk.po +++ b/library/chunk.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2024-11-19 01:02+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,19 +21,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/chunk.rst:2 msgid ":mod:`!chunk` --- Read IFF chunked data" msgstr "" -#: ../../library/chunk.rst:10 -msgid "" -"This module is no longer part of the Python standard library. It " -"was :ref:`removed in Python 3.13 ` after being " -"deprecated in Python 3.11. The removal was decided in :pep:`594`." +msgid "This module is no longer part of the Python standard library. It was :ref:`removed in Python 3.13 ` after being deprecated in Python 3.11. The removal was decided in :pep:`594`." msgstr "" -#: ../../library/chunk.rst:14 -msgid "" -"The last version of Python that provided the :mod:`!chunk` module was " -"`Python 3.12 `_." +msgid "The last version of Python that provided the :mod:`!chunk` module was `Python 3.12 `_." msgstr "" diff --git a/library/cmath.po b/library/cmath.po index 0d8dadff..791e9805 100644 --- a/library/cmath.po +++ b/library/cmath.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:56+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,359 +24,244 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/cmath.rst:2 msgid ":mod:`!cmath` --- Mathematical functions for complex numbers" msgstr "" -#: ../../library/cmath.rst:9 -msgid "" -"This module provides access to mathematical functions for complex numbers. " -"The functions in this module accept integers, floating-point numbers or " -"complex numbers as arguments. They will also accept any Python object that " -"has either a :meth:`~object.__complex__` or a :meth:`~object.__float__` " -"method: these methods are used to convert the object to a complex or " -"floating-point number, respectively, and the function is then applied to the " -"result of the conversion." +msgid "This module provides access to mathematical functions for complex numbers. The functions in this module accept integers, floating-point numbers or complex numbers as arguments. They will also accept any Python object that has either a :meth:`~object.__complex__` or a :meth:`~object.__float__` method: these methods are used to convert the object to a complex or floating-point number, respectively, and the function is then applied to the result of the conversion." msgstr "" -#: ../../library/cmath.rst:18 -msgid "" -"For functions involving branch cuts, we have the problem of deciding how to " -"define those functions on the cut itself. Following Kahan's \"Branch cuts " -"for complex elementary functions\" paper, as well as Annex G of C99 and " -"later C standards, we use the sign of zero to distinguish one side of the " -"branch cut from the other: for a branch cut along (a portion of) the real " -"axis we look at the sign of the imaginary part, while for a branch cut along " -"the imaginary axis we look at the sign of the real part." +msgid "For functions involving branch cuts, we have the problem of deciding how to define those functions on the cut itself. Following Kahan's \"Branch cuts for complex elementary functions\" paper, as well as Annex G of C99 and later C standards, we use the sign of zero to distinguish one side of the branch cut from the other: for a branch cut along (a portion of) the real axis we look at the sign of the imaginary part, while for a branch cut along the imaginary axis we look at the sign of the real part." msgstr "" -#: ../../library/cmath.rst:26 -msgid "" -"For example, the :func:`cmath.sqrt` function has a branch cut along the " -"negative real axis. An argument of ``-2-0j`` is treated as though it lies " -"*below* the branch cut, and so gives a result on the negative imaginary " -"axis::" +msgid "For example, the :func:`cmath.sqrt` function has a branch cut along the negative real axis. An argument of ``-2-0j`` is treated as though it lies *below* the branch cut, and so gives a result on the negative imaginary axis::" msgstr "" -#: ../../library/cmath.rst:31 msgid "" ">>> cmath.sqrt(-2-0j)\n" "-1.4142135623730951j" msgstr "" -#: ../../library/cmath.rst:34 -msgid "" -"But an argument of ``-2+0j`` is treated as though it lies above the branch " -"cut::" +msgid "But an argument of ``-2+0j`` is treated as though it lies above the branch cut::" msgstr "" -#: ../../library/cmath.rst:37 msgid "" ">>> cmath.sqrt(-2+0j)\n" "1.4142135623730951j" msgstr "" -#: ../../library/cmath.rst:42 msgid "**Conversions to and from polar coordinates**" msgstr "" -#: ../../library/cmath.rst:44 msgid ":func:`phase(z) `" msgstr "" -#: ../../library/cmath.rst:44 msgid "Return the phase of *z*" msgstr "" -#: ../../library/cmath.rst:45 msgid ":func:`polar(z) `" msgstr "" -#: ../../library/cmath.rst:45 msgid "Return the representation of *z* in polar coordinates" msgstr "" -#: ../../library/cmath.rst:46 msgid ":func:`rect(r, phi) `" msgstr "" -#: ../../library/cmath.rst:46 msgid "Return the complex number *z* with polar coordinates *r* and *phi*" msgstr "" -#: ../../library/cmath.rst:48 msgid "**Power and logarithmic functions**" msgstr "" -#: ../../library/cmath.rst:50 msgid ":func:`exp(z) `" msgstr "" -#: ../../library/cmath.rst:50 msgid "Return *e* raised to the power *z*" msgstr "" -#: ../../library/cmath.rst:51 msgid ":func:`log(z[, base]) `" msgstr "" -#: ../../library/cmath.rst:51 msgid "Return the logarithm of *z* to the given *base* (*e* by default)" msgstr "" -#: ../../library/cmath.rst:52 msgid ":func:`log10(z) `" msgstr "" -#: ../../library/cmath.rst:52 msgid "Return the base-10 logarithm of *z*" msgstr "" -#: ../../library/cmath.rst:53 msgid ":func:`sqrt(z) `" msgstr "" -#: ../../library/cmath.rst:53 msgid "Return the square root of *z*" msgstr "" -#: ../../library/cmath.rst:55 msgid "**Trigonometric functions**" msgstr "" -#: ../../library/cmath.rst:57 msgid ":func:`acos(z) `" msgstr "" -#: ../../library/cmath.rst:57 msgid "Return the arc cosine of *z*" msgstr "" -#: ../../library/cmath.rst:58 msgid ":func:`asin(z) `" msgstr "" -#: ../../library/cmath.rst:58 msgid "Return the arc sine of *z*" msgstr "" -#: ../../library/cmath.rst:59 msgid ":func:`atan(z) `" msgstr "" -#: ../../library/cmath.rst:59 msgid "Return the arc tangent of *z*" msgstr "" -#: ../../library/cmath.rst:60 msgid ":func:`cos(z) `" msgstr "" -#: ../../library/cmath.rst:60 msgid "Return the cosine of *z*" msgstr "" -#: ../../library/cmath.rst:61 msgid ":func:`sin(z) `" msgstr "" -#: ../../library/cmath.rst:61 msgid "Return the sine of *z*" msgstr "" -#: ../../library/cmath.rst:62 msgid ":func:`tan(z) `" msgstr "" -#: ../../library/cmath.rst:62 msgid "Return the tangent of *z*" msgstr "" -#: ../../library/cmath.rst:64 msgid "**Hyperbolic functions**" msgstr "" -#: ../../library/cmath.rst:66 msgid ":func:`acosh(z) `" msgstr "" -#: ../../library/cmath.rst:66 msgid "Return the inverse hyperbolic cosine of *z*" msgstr "" -#: ../../library/cmath.rst:67 msgid ":func:`asinh(z) `" msgstr "" -#: ../../library/cmath.rst:67 msgid "Return the inverse hyperbolic sine of *z*" msgstr "" -#: ../../library/cmath.rst:68 msgid ":func:`atanh(z) `" msgstr "" -#: ../../library/cmath.rst:68 msgid "Return the inverse hyperbolic tangent of *z*" msgstr "" -#: ../../library/cmath.rst:69 msgid ":func:`cosh(z) `" msgstr "" -#: ../../library/cmath.rst:69 msgid "Return the hyperbolic cosine of *z*" msgstr "" -#: ../../library/cmath.rst:70 msgid ":func:`sinh(z) `" msgstr "" -#: ../../library/cmath.rst:70 msgid "Return the hyperbolic sine of *z*" msgstr "" -#: ../../library/cmath.rst:71 msgid ":func:`tanh(z) `" msgstr "" -#: ../../library/cmath.rst:71 msgid "Return the hyperbolic tangent of *z*" msgstr "" -#: ../../library/cmath.rst:73 msgid "**Classification functions**" msgstr "" -#: ../../library/cmath.rst:75 msgid ":func:`isfinite(z) `" msgstr "" -#: ../../library/cmath.rst:75 msgid "Check if all components of *z* are finite" msgstr "" -#: ../../library/cmath.rst:76 msgid ":func:`isinf(z) `" msgstr "" -#: ../../library/cmath.rst:76 msgid "Check if any component of *z* is infinite" msgstr "" -#: ../../library/cmath.rst:77 msgid ":func:`isnan(z) `" msgstr "" -#: ../../library/cmath.rst:77 msgid "Check if any component of *z* is a NaN" msgstr "" -#: ../../library/cmath.rst:78 msgid ":func:`isclose(a, b, *, rel_tol, abs_tol) `" msgstr "" -#: ../../library/cmath.rst:78 msgid "Check if the values *a* and *b* are close to each other" msgstr "" -#: ../../library/cmath.rst:80 msgid "**Constants**" msgstr "" -#: ../../library/cmath.rst:82 msgid ":data:`pi`" msgstr "" -#: ../../library/cmath.rst:82 msgid "*π* = 3.141592..." msgstr "" -#: ../../library/cmath.rst:83 msgid ":data:`e`" msgstr "" -#: ../../library/cmath.rst:83 msgid "*e* = 2.718281..." msgstr "" -#: ../../library/cmath.rst:84 msgid ":data:`tau`" msgstr "" -#: ../../library/cmath.rst:84 msgid "*τ* = 2\\ *π* = 6.283185..." msgstr "" -#: ../../library/cmath.rst:85 msgid ":data:`inf`" msgstr "" -#: ../../library/cmath.rst:85 msgid "Positive infinity" msgstr "" -#: ../../library/cmath.rst:86 msgid ":data:`infj`" msgstr "" -#: ../../library/cmath.rst:86 msgid "Pure imaginary infinity" msgstr "" -#: ../../library/cmath.rst:87 msgid ":data:`nan`" msgstr "" -#: ../../library/cmath.rst:87 msgid "\"Not a number\" (NaN)" msgstr "" -#: ../../library/cmath.rst:88 msgid ":data:`nanj`" msgstr "" -#: ../../library/cmath.rst:88 msgid "Pure imaginary NaN" msgstr "" -#: ../../library/cmath.rst:93 msgid "Conversions to and from polar coordinates" msgstr "" -#: ../../library/cmath.rst:95 -msgid "" -"A Python complex number ``z`` is stored internally using *rectangular* or " -"*Cartesian* coordinates. It is completely determined by its *real part* " -"``z.real`` and its *imaginary part* ``z.imag``." +msgid "A Python complex number ``z`` is stored internally using *rectangular* or *Cartesian* coordinates. It is completely determined by its *real part* ``z.real`` and its *imaginary part* ``z.imag``." msgstr "" -#: ../../library/cmath.rst:99 -msgid "" -"*Polar coordinates* give an alternative way to represent a complex number. " -"In polar coordinates, a complex number *z* is defined by the modulus *r* and " -"the phase angle *phi*. The modulus *r* is the distance from *z* to the " -"origin, while the phase *phi* is the counterclockwise angle, measured in " -"radians, from the positive x-axis to the line segment that joins the origin " -"to *z*." +msgid "*Polar coordinates* give an alternative way to represent a complex number. In polar coordinates, a complex number *z* is defined by the modulus *r* and the phase angle *phi*. The modulus *r* is the distance from *z* to the origin, while the phase *phi* is the counterclockwise angle, measured in radians, from the positive x-axis to the line segment that joins the origin to *z*." msgstr "" -#: ../../library/cmath.rst:106 -msgid "" -"The following functions can be used to convert from the native rectangular " -"coordinates to polar coordinates and back." +msgid "The following functions can be used to convert from the native rectangular coordinates to polar coordinates and back." msgstr "" -#: ../../library/cmath.rst:111 -msgid "" -"Return the phase of *z* (also known as the *argument* of *z*), as a float. " -"``phase(z)`` is equivalent to ``math.atan2(z.imag, z.real)``. The result " -"lies in the range [-\\ *π*, *π*], and the branch cut for this operation lies " -"along the negative real axis. The sign of the result is the same as the " -"sign of ``z.imag``, even when ``z.imag`` is zero::" +msgid "Return the phase of *z* (also known as the *argument* of *z*), as a float. ``phase(z)`` is equivalent to ``math.atan2(z.imag, z.real)``. The result lies in the range [-\\ *π*, *π*], and the branch cut for this operation lies along the negative real axis. The sign of the result is the same as the sign of ``z.imag``, even when ``z.imag`` is zero::" msgstr "" -#: ../../library/cmath.rst:117 msgid "" ">>> phase(-1+0j)\n" "3.141592653589793\n" @@ -384,263 +269,137 @@ msgid "" "-3.141592653589793" msgstr "" -#: ../../library/cmath.rst:125 -msgid "" -"The modulus (absolute value) of a complex number *z* can be computed using " -"the built-in :func:`abs` function. There is no separate :mod:`!cmath` " -"module function for this operation." +msgid "The modulus (absolute value) of a complex number *z* can be computed using the built-in :func:`abs` function. There is no separate :mod:`!cmath` module function for this operation." msgstr "" -#: ../../library/cmath.rst:132 -msgid "" -"Return the representation of *z* in polar coordinates. Returns a pair ``(r, " -"phi)`` where *r* is the modulus of *z* and *phi* is the phase of *z*. " -"``polar(z)`` is equivalent to ``(abs(z), phase(z))``." +msgid "Return the representation of *z* in polar coordinates. Returns a pair ``(r, phi)`` where *r* is the modulus of *z* and *phi* is the phase of *z*. ``polar(z)`` is equivalent to ``(abs(z), phase(z))``." msgstr "" -#: ../../library/cmath.rst:140 -msgid "" -"Return the complex number *z* with polar coordinates *r* and *phi*. " -"Equivalent to ``complex(r * math.cos(phi), r * math.sin(phi))``." +msgid "Return the complex number *z* with polar coordinates *r* and *phi*. Equivalent to ``complex(r * math.cos(phi), r * math.sin(phi))``." msgstr "" -#: ../../library/cmath.rst:145 msgid "Power and logarithmic functions" msgstr "" -#: ../../library/cmath.rst:149 -msgid "" -"Return *e* raised to the power *z*, where *e* is the base of natural " -"logarithms." +msgid "Return *e* raised to the power *z*, where *e* is the base of natural logarithms." msgstr "" -#: ../../library/cmath.rst:155 -msgid "" -"Return the logarithm of *z* to the given *base*. If the *base* is not " -"specified, returns the natural logarithm of *z*. There is one branch cut, " -"from 0 along the negative real axis to -∞." +msgid "Return the logarithm of *z* to the given *base*. If the *base* is not specified, returns the natural logarithm of *z*. There is one branch cut, from 0 along the negative real axis to -∞." msgstr "" -#: ../../library/cmath.rst:162 -msgid "" -"Return the base-10 logarithm of *z*. This has the same branch cut " -"as :func:`log`." +msgid "Return the base-10 logarithm of *z*. This has the same branch cut as :func:`log`." msgstr "" -#: ../../library/cmath.rst:168 -msgid "" -"Return the square root of *z*. This has the same branch cut as :func:`log`." +msgid "Return the square root of *z*. This has the same branch cut as :func:`log`." msgstr "" -#: ../../library/cmath.rst:172 msgid "Trigonometric functions" msgstr "" -#: ../../library/cmath.rst:176 -msgid "" -"Return the arc cosine of *z*. There are two branch cuts: One extends right " -"from 1 along the real axis to ∞. The other extends left from -1 along the " -"real axis to -∞." +msgid "Return the arc cosine of *z*. There are two branch cuts: One extends right from 1 along the real axis to ∞. The other extends left from -1 along the real axis to -∞." msgstr "" -#: ../../library/cmath.rst:183 -msgid "" -"Return the arc sine of *z*. This has the same branch cuts as :func:`acos`." +msgid "Return the arc sine of *z*. This has the same branch cuts as :func:`acos`." msgstr "" -#: ../../library/cmath.rst:188 -msgid "" -"Return the arc tangent of *z*. There are two branch cuts: One extends from " -"``1j`` along the imaginary axis to ``∞j``. The other extends from ``-1j`` " -"along the imaginary axis to ``-∞j``." +msgid "Return the arc tangent of *z*. There are two branch cuts: One extends from ``1j`` along the imaginary axis to ``∞j``. The other extends from ``-1j`` along the imaginary axis to ``-∞j``." msgstr "" -#: ../../library/cmath.rst:195 msgid "Return the cosine of *z*." msgstr "" -#: ../../library/cmath.rst:200 msgid "Return the sine of *z*." msgstr "" -#: ../../library/cmath.rst:205 msgid "Return the tangent of *z*." msgstr "" -#: ../../library/cmath.rst:209 msgid "Hyperbolic functions" msgstr "" -#: ../../library/cmath.rst:213 -msgid "" -"Return the inverse hyperbolic cosine of *z*. There is one branch cut, " -"extending left from 1 along the real axis to -∞." +msgid "Return the inverse hyperbolic cosine of *z*. There is one branch cut, extending left from 1 along the real axis to -∞." msgstr "" -#: ../../library/cmath.rst:219 -msgid "" -"Return the inverse hyperbolic sine of *z*. There are two branch cuts: One " -"extends from ``1j`` along the imaginary axis to ``∞j``. The other extends " -"from ``-1j`` along the imaginary axis to ``-∞j``." +msgid "Return the inverse hyperbolic sine of *z*. There are two branch cuts: One extends from ``1j`` along the imaginary axis to ``∞j``. The other extends from ``-1j`` along the imaginary axis to ``-∞j``." msgstr "" -#: ../../library/cmath.rst:226 -msgid "" -"Return the inverse hyperbolic tangent of *z*. There are two branch cuts: One " -"extends from ``1`` along the real axis to ``∞``. The other extends from " -"``-1`` along the real axis to ``-∞``." +msgid "Return the inverse hyperbolic tangent of *z*. There are two branch cuts: One extends from ``1`` along the real axis to ``∞``. The other extends from ``-1`` along the real axis to ``-∞``." msgstr "" -#: ../../library/cmath.rst:233 msgid "Return the hyperbolic cosine of *z*." msgstr "" -#: ../../library/cmath.rst:238 msgid "Return the hyperbolic sine of *z*." msgstr "" -#: ../../library/cmath.rst:243 msgid "Return the hyperbolic tangent of *z*." msgstr "" -#: ../../library/cmath.rst:247 msgid "Classification functions" msgstr "" -#: ../../library/cmath.rst:251 -msgid "" -"Return ``True`` if both the real and imaginary parts of *z* are finite, and " -"``False`` otherwise." +msgid "Return ``True`` if both the real and imaginary parts of *z* are finite, and ``False`` otherwise." msgstr "" -#: ../../library/cmath.rst:259 -msgid "" -"Return ``True`` if either the real or the imaginary part of *z* is an " -"infinity, and ``False`` otherwise." +msgid "Return ``True`` if either the real or the imaginary part of *z* is an infinity, and ``False`` otherwise." msgstr "" -#: ../../library/cmath.rst:265 -msgid "" -"Return ``True`` if either the real or the imaginary part of *z* is a NaN, " -"and ``False`` otherwise." +msgid "Return ``True`` if either the real or the imaginary part of *z* is a NaN, and ``False`` otherwise." msgstr "" -#: ../../library/cmath.rst:271 -msgid "" -"Return ``True`` if the values *a* and *b* are close to each other and " -"``False`` otherwise." +msgid "Return ``True`` if the values *a* and *b* are close to each other and ``False`` otherwise." msgstr "" -#: ../../library/cmath.rst:274 -msgid "" -"Whether or not two values are considered close is determined according to " -"given absolute and relative tolerances. If no errors occur, the result will " -"be: ``abs(a-b) <= max(rel_tol * max(abs(a), abs(b)), abs_tol)``." +msgid "Whether or not two values are considered close is determined according to given absolute and relative tolerances. If no errors occur, the result will be: ``abs(a-b) <= max(rel_tol * max(abs(a), abs(b)), abs_tol)``." msgstr "" -#: ../../library/cmath.rst:278 -msgid "" -"*rel_tol* is the relative tolerance -- it is the maximum allowed difference " -"between *a* and *b*, relative to the larger absolute value of *a* or *b*. " -"For example, to set a tolerance of 5%, pass ``rel_tol=0.05``. The default " -"tolerance is ``1e-09``, which assures that the two values are the same " -"within about 9 decimal digits. *rel_tol* must be nonnegative and less than " -"``1.0``." +msgid "*rel_tol* is the relative tolerance -- it is the maximum allowed difference between *a* and *b*, relative to the larger absolute value of *a* or *b*. For example, to set a tolerance of 5%, pass ``rel_tol=0.05``. The default tolerance is ``1e-09``, which assures that the two values are the same within about 9 decimal digits. *rel_tol* must be nonnegative and less than ``1.0``." msgstr "" -#: ../../library/cmath.rst:285 -msgid "" -"*abs_tol* is the absolute tolerance; it defaults to ``0.0`` and it must be " -"nonnegative. When comparing ``x`` to ``0.0``, ``isclose(x, 0)`` is computed " -"as ``abs(x) <= rel_tol * abs(x)``, which is ``False`` for any ``x`` and " -"rel_tol less than ``1.0``. So add an appropriate positive abs_tol argument " -"to the call." +msgid "*abs_tol* is the absolute tolerance; it defaults to ``0.0`` and it must be nonnegative. When comparing ``x`` to ``0.0``, ``isclose(x, 0)`` is computed as ``abs(x) <= rel_tol * abs(x)``, which is ``False`` for any ``x`` and rel_tol less than ``1.0``. So add an appropriate positive abs_tol argument to the call." msgstr "" -#: ../../library/cmath.rst:291 -msgid "" -"The IEEE 754 special values of ``NaN``, ``inf``, and ``-inf`` will be " -"handled according to IEEE rules. Specifically, ``NaN`` is not considered " -"close to any other value, including ``NaN``. ``inf`` and ``-inf`` are only " -"considered close to themselves." +msgid "The IEEE 754 special values of ``NaN``, ``inf``, and ``-inf`` will be handled according to IEEE rules. Specifically, ``NaN`` is not considered close to any other value, including ``NaN``. ``inf`` and ``-inf`` are only considered close to themselves." msgstr "" -#: ../../library/cmath.rst:300 msgid ":pep:`485` -- A function for testing approximate equality" msgstr "" -#: ../../library/cmath.rst:304 msgid "Constants" msgstr "" -#: ../../library/cmath.rst:308 msgid "The mathematical constant *π*, as a float." msgstr "" -#: ../../library/cmath.rst:313 msgid "The mathematical constant *e*, as a float." msgstr "" -#: ../../library/cmath.rst:318 msgid "The mathematical constant *τ*, as a float." msgstr "" -#: ../../library/cmath.rst:325 msgid "Floating-point positive infinity. Equivalent to ``float('inf')``." msgstr "" -#: ../../library/cmath.rst:332 -msgid "" -"Complex number with zero real part and positive infinity imaginary part. " -"Equivalent to ``complex(0.0, float('inf'))``." +msgid "Complex number with zero real part and positive infinity imaginary part. Equivalent to ``complex(0.0, float('inf'))``." msgstr "" -#: ../../library/cmath.rst:340 -msgid "" -"A floating-point \"not a number\" (NaN) value. Equivalent to " -"``float('nan')``. See also :data:`math.nan`." +msgid "A floating-point \"not a number\" (NaN) value. Equivalent to ``float('nan')``. See also :data:`math.nan`." msgstr "" -#: ../../library/cmath.rst:348 -msgid "" -"Complex number with zero real part and NaN imaginary part. Equivalent to " -"``complex(0.0, float('nan'))``." +msgid "Complex number with zero real part and NaN imaginary part. Equivalent to ``complex(0.0, float('nan'))``." msgstr "" -#: ../../library/cmath.rst:356 -msgid "" -"Note that the selection of functions is similar, but not identical, to that " -"in module :mod:`math`. The reason for having two modules is that some users " -"aren't interested in complex numbers, and perhaps don't even know what they " -"are. They would rather have ``math.sqrt(-1)`` raise an exception than " -"return a complex number. Also note that the functions defined in :mod:`!" -"cmath` always return a complex number, even if the answer can be expressed " -"as a real number (in which case the complex number has an imaginary part of " -"zero)." +msgid "Note that the selection of functions is similar, but not identical, to that in module :mod:`math`. The reason for having two modules is that some users aren't interested in complex numbers, and perhaps don't even know what they are. They would rather have ``math.sqrt(-1)`` raise an exception than return a complex number. Also note that the functions defined in :mod:`!cmath` always return a complex number, even if the answer can be expressed as a real number (in which case the complex number has an imaginary part of zero)." msgstr "" -#: ../../library/cmath.rst:364 -msgid "" -"A note on branch cuts: They are curves along which the given function fails " -"to be continuous. They are a necessary feature of many complex functions. " -"It is assumed that if you need to compute with complex functions, you will " -"understand about branch cuts. Consult almost any (not too elementary) book " -"on complex variables for enlightenment. For information of the proper " -"choice of branch cuts for numerical purposes, a good reference should be the " -"following:" +msgid "A note on branch cuts: They are curves along which the given function fails to be continuous. They are a necessary feature of many complex functions. It is assumed that if you need to compute with complex functions, you will understand about branch cuts. Consult almost any (not too elementary) book on complex variables for enlightenment. For information of the proper choice of branch cuts for numerical purposes, a good reference should be the following:" msgstr "" -#: ../../library/cmath.rst:374 -msgid "" -"Kahan, W: Branch cuts for complex elementary functions; or, Much ado about " -"nothing's sign bit. In Iserles, A., and Powell, M. (eds.), The state of the " -"art in numerical analysis. Clarendon Press (1987) pp165--211." +msgid "Kahan, W: Branch cuts for complex elementary functions; or, Much ado about nothing's sign bit. In Iserles, A., and Powell, M. (eds.), The state of the art in numerical analysis. Clarendon Press (1987) pp165--211." msgstr "" -#: ../../library/cmath.rst:354 msgid "module" msgstr "" -#: ../../library/cmath.rst:354 msgid "math" msgstr "" diff --git a/library/cmd.po b/library/cmd.po index 88beb110..3b29002f 100644 --- a/library/cmd.po +++ b/library/cmd.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:56+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,317 +21,144 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/cmd.rst:2 msgid ":mod:`!cmd` --- Support for line-oriented command interpreters" msgstr "" -#: ../../library/cmd.rst:9 msgid "**Source code:** :source:`Lib/cmd.py`" msgstr "" -#: ../../library/cmd.rst:13 -msgid "" -"The :class:`Cmd` class provides a simple framework for writing line-oriented " -"command interpreters. These are often useful for test harnesses, " -"administrative tools, and prototypes that will later be wrapped in a more " -"sophisticated interface." +msgid "The :class:`Cmd` class provides a simple framework for writing line-oriented command interpreters. These are often useful for test harnesses, administrative tools, and prototypes that will later be wrapped in a more sophisticated interface." msgstr "" -#: ../../library/cmd.rst:20 -msgid "" -"A :class:`Cmd` instance or subclass instance is a line-oriented interpreter " -"framework. There is no good reason to instantiate :class:`Cmd` itself; " -"rather, it's useful as a superclass of an interpreter class you define " -"yourself in order to inherit :class:`Cmd`'s methods and encapsulate action " -"methods." +msgid "A :class:`Cmd` instance or subclass instance is a line-oriented interpreter framework. There is no good reason to instantiate :class:`Cmd` itself; rather, it's useful as a superclass of an interpreter class you define yourself in order to inherit :class:`Cmd`'s methods and encapsulate action methods." msgstr "" -#: ../../library/cmd.rst:25 -msgid "" -"The optional argument *completekey* is the :mod:`readline` name of a " -"completion key; it defaults to :kbd:`Tab`. If *completekey* is " -"not :const:`None` and :mod:`readline` is available, command completion is " -"done automatically." +msgid "The optional argument *completekey* is the :mod:`readline` name of a completion key; it defaults to :kbd:`Tab`. If *completekey* is not :const:`None` and :mod:`readline` is available, command completion is done automatically." msgstr "" -#: ../../library/cmd.rst:29 -msgid "" -"The default, ``'tab'``, is treated specially, so that it refers to " -"the :kbd:`Tab` key on every :data:`readline.backend`. Specifically, " -"if :data:`readline.backend` is ``editline``, ``Cmd`` will use ``'^I'`` " -"instead of ``'tab'``. Note that other values are not treated this way, and " -"might only work with a specific backend." +msgid "The default, ``'tab'``, is treated specially, so that it refers to the :kbd:`Tab` key on every :data:`readline.backend`. Specifically, if :data:`readline.backend` is ``editline``, ``Cmd`` will use ``'^I'`` instead of ``'tab'``. Note that other values are not treated this way, and might only work with a specific backend." msgstr "" -#: ../../library/cmd.rst:36 -msgid "" -"The optional arguments *stdin* and *stdout* specify the input and output " -"file objects that the Cmd instance or subclass instance will use for input " -"and output. If not specified, they will default to :data:`sys.stdin` " -"and :data:`sys.stdout`." +msgid "The optional arguments *stdin* and *stdout* specify the input and output file objects that the Cmd instance or subclass instance will use for input and output. If not specified, they will default to :data:`sys.stdin` and :data:`sys.stdout`." msgstr "" -#: ../../library/cmd.rst:41 -msgid "" -"If you want a given *stdin* to be used, make sure to set the " -"instance's :attr:`use_rawinput` attribute to ``False``, otherwise *stdin* " -"will be ignored." +msgid "If you want a given *stdin* to be used, make sure to set the instance's :attr:`use_rawinput` attribute to ``False``, otherwise *stdin* will be ignored." msgstr "" -#: ../../library/cmd.rst:45 msgid "``completekey='tab'`` is replaced by ``'^I'`` for ``editline``." msgstr "" -#: ../../library/cmd.rst:52 msgid "Cmd Objects" msgstr "" -#: ../../library/cmd.rst:54 msgid "A :class:`Cmd` instance has the following methods:" msgstr "" -#: ../../library/cmd.rst:59 -msgid "" -"Repeatedly issue a prompt, accept input, parse an initial prefix off the " -"received input, and dispatch to action methods, passing them the remainder " -"of the line as argument." +msgid "Repeatedly issue a prompt, accept input, parse an initial prefix off the received input, and dispatch to action methods, passing them the remainder of the line as argument." msgstr "" -#: ../../library/cmd.rst:63 -msgid "" -"The optional argument is a banner or intro string to be issued before the " -"first prompt (this overrides the :attr:`intro` class attribute)." +msgid "The optional argument is a banner or intro string to be issued before the first prompt (this overrides the :attr:`intro` class attribute)." msgstr "" -#: ../../library/cmd.rst:66 -msgid "" -"If the :mod:`readline` module is loaded, input will automatically " -"inherit :program:`bash`\\ -like history-list editing (e.g. :kbd:`Control-P` " -"scrolls back to the last command, :kbd:`Control-N` forward to the next " -"one, :kbd:`Control-F` moves the cursor to the right non-" -"destructively, :kbd:`Control-B` moves the cursor to the left non-" -"destructively, etc.)." +msgid "If the :mod:`readline` module is loaded, input will automatically inherit :program:`bash`\\ -like history-list editing (e.g. :kbd:`Control-P` scrolls back to the last command, :kbd:`Control-N` forward to the next one, :kbd:`Control-F` moves the cursor to the right non-destructively, :kbd:`Control-B` moves the cursor to the left non-destructively, etc.)." msgstr "" -#: ../../library/cmd.rst:72 msgid "An end-of-file on input is passed back as the string ``'EOF'``." msgstr "" -#: ../../library/cmd.rst:78 -msgid "" -"An interpreter instance will recognize a command name ``foo`` if and only if " -"it has a method :meth:`!do_foo`. As a special case, a line beginning with " -"the character ``'?'`` is dispatched to the method :meth:`do_help`. As " -"another special case, a line beginning with the character ``'!'`` is " -"dispatched to the method :meth:`!do_shell` (if such a method is defined)." +msgid "An interpreter instance will recognize a command name ``foo`` if and only if it has a method :meth:`!do_foo`. As a special case, a line beginning with the character ``'?'`` is dispatched to the method :meth:`do_help`. As another special case, a line beginning with the character ``'!'`` is dispatched to the method :meth:`!do_shell` (if such a method is defined)." msgstr "" -#: ../../library/cmd.rst:84 -msgid "" -"This method will return when the :meth:`postcmd` method returns a true " -"value. The *stop* argument to :meth:`postcmd` is the return value from the " -"command's corresponding :meth:`!do_\\*` method." +msgid "This method will return when the :meth:`postcmd` method returns a true value. The *stop* argument to :meth:`postcmd` is the return value from the command's corresponding :meth:`!do_\\*` method." msgstr "" -#: ../../library/cmd.rst:88 -msgid "" -"If completion is enabled, completing commands will be done automatically, " -"and completing of commands args is done by calling :meth:`!complete_foo` " -"with arguments *text*, *line*, *begidx*, and *endidx*. *text* is the string " -"prefix we are attempting to match: all returned matches must begin with it. " -"*line* is the current input line with leading whitespace removed, *begidx* " -"and *endidx* are the beginning and ending indexes of the prefix text, which " -"could be used to provide different completion depending upon which position " -"the argument is in." +msgid "If completion is enabled, completing commands will be done automatically, and completing of commands args is done by calling :meth:`!complete_foo` with arguments *text*, *line*, *begidx*, and *endidx*. *text* is the string prefix we are attempting to match: all returned matches must begin with it. *line* is the current input line with leading whitespace removed, *begidx* and *endidx* are the beginning and ending indexes of the prefix text, which could be used to provide different completion depending upon which position the argument is in." msgstr "" -#: ../../library/cmd.rst:99 -msgid "" -"All subclasses of :class:`Cmd` inherit a predefined :meth:`!do_help`. This " -"method, called with an argument ``'bar'``, invokes the corresponding " -"method :meth:`!help_bar`, and if that is not present, prints the docstring " -"of :meth:`!do_bar`, if available. With no argument, :meth:`!do_help` lists " -"all available help topics (that is, all commands with corresponding :meth:`!" -"help_\\*` methods or commands that have docstrings), and also lists any " -"undocumented commands." +msgid "All subclasses of :class:`Cmd` inherit a predefined :meth:`!do_help`. This method, called with an argument ``'bar'``, invokes the corresponding method :meth:`!help_bar`, and if that is not present, prints the docstring of :meth:`!do_bar`, if available. With no argument, :meth:`!do_help` lists all available help topics (that is, all commands with corresponding :meth:`!help_\\*` methods or commands that have docstrings), and also lists any undocumented commands." msgstr "" -#: ../../library/cmd.rst:110 -msgid "" -"Interpret the argument as though it had been typed in response to the " -"prompt. This may be overridden, but should not normally need to be; see " -"the :meth:`precmd` and :meth:`postcmd` methods for useful execution hooks. " -"The return value is a flag indicating whether interpretation of commands by " -"the interpreter should stop. If there is a :meth:`!do_\\*` method for the " -"command *str*, the return value of that method is returned, otherwise the " -"return value from the :meth:`default` method is returned." +msgid "Interpret the argument as though it had been typed in response to the prompt. This may be overridden, but should not normally need to be; see the :meth:`precmd` and :meth:`postcmd` methods for useful execution hooks. The return value is a flag indicating whether interpretation of commands by the interpreter should stop. If there is a :meth:`!do_\\*` method for the command *str*, the return value of that method is returned, otherwise the return value from the :meth:`default` method is returned." msgstr "" -#: ../../library/cmd.rst:121 -msgid "" -"Method called when an empty line is entered in response to the prompt. If " -"this method is not overridden, it repeats the last nonempty command entered." +msgid "Method called when an empty line is entered in response to the prompt. If this method is not overridden, it repeats the last nonempty command entered." msgstr "" -#: ../../library/cmd.rst:127 -msgid "" -"Method called on an input line when the command prefix is not recognized. If " -"this method is not overridden, it prints an error message and returns." +msgid "Method called on an input line when the command prefix is not recognized. If this method is not overridden, it prints an error message and returns." msgstr "" -#: ../../library/cmd.rst:133 -msgid "" -"Method called to complete an input line when no command-specific :meth:`!" -"complete_\\*` method is available. By default, it returns an empty list." +msgid "Method called to complete an input line when no command-specific :meth:`!complete_\\*` method is available. By default, it returns an empty list." msgstr "" -#: ../../library/cmd.rst:139 -msgid "" -"Method called to display a list of strings as a compact set of columns. Each " -"column is only as wide as necessary. Columns are separated by two spaces for " -"readability." +msgid "Method called to display a list of strings as a compact set of columns. Each column is only as wide as necessary. Columns are separated by two spaces for readability." msgstr "" -#: ../../library/cmd.rst:146 -msgid "" -"Hook method executed just before the command line *line* is interpreted, but " -"after the input prompt is generated and issued. This method is a stub " -"in :class:`Cmd`; it exists to be overridden by subclasses. The return value " -"is used as the command which will be executed by the :meth:`onecmd` method; " -"the :meth:`precmd` implementation may re-write the command or simply return " -"*line* unchanged." +msgid "Hook method executed just before the command line *line* is interpreted, but after the input prompt is generated and issued. This method is a stub in :class:`Cmd`; it exists to be overridden by subclasses. The return value is used as the command which will be executed by the :meth:`onecmd` method; the :meth:`precmd` implementation may re-write the command or simply return *line* unchanged." msgstr "" -#: ../../library/cmd.rst:156 -msgid "" -"Hook method executed just after a command dispatch is finished. This method " -"is a stub in :class:`Cmd`; it exists to be overridden by subclasses. *line* " -"is the command line which was executed, and *stop* is a flag which indicates " -"whether execution will be terminated after the call to :meth:`postcmd`; this " -"will be the return value of the :meth:`onecmd` method. The return value of " -"this method will be used as the new value for the internal flag which " -"corresponds to *stop*; returning false will cause interpretation to continue." +msgid "Hook method executed just after a command dispatch is finished. This method is a stub in :class:`Cmd`; it exists to be overridden by subclasses. *line* is the command line which was executed, and *stop* is a flag which indicates whether execution will be terminated after the call to :meth:`postcmd`; this will be the return value of the :meth:`onecmd` method. The return value of this method will be used as the new value for the internal flag which corresponds to *stop*; returning false will cause interpretation to continue." msgstr "" -#: ../../library/cmd.rst:167 -msgid "" -"Hook method executed once when :meth:`cmdloop` is called. This method is a " -"stub in :class:`Cmd`; it exists to be overridden by subclasses." +msgid "Hook method executed once when :meth:`cmdloop` is called. This method is a stub in :class:`Cmd`; it exists to be overridden by subclasses." msgstr "" -#: ../../library/cmd.rst:173 -msgid "" -"Hook method executed once when :meth:`cmdloop` is about to return. This " -"method is a stub in :class:`Cmd`; it exists to be overridden by subclasses." +msgid "Hook method executed once when :meth:`cmdloop` is about to return. This method is a stub in :class:`Cmd`; it exists to be overridden by subclasses." msgstr "" -#: ../../library/cmd.rst:177 -msgid "" -"Instances of :class:`Cmd` subclasses have some public instance variables:" +msgid "Instances of :class:`Cmd` subclasses have some public instance variables:" msgstr "" -#: ../../library/cmd.rst:181 msgid "The prompt issued to solicit input." msgstr "" -#: ../../library/cmd.rst:186 msgid "The string of characters accepted for the command prefix." msgstr "" -#: ../../library/cmd.rst:191 msgid "The last nonempty command prefix seen." msgstr "" -#: ../../library/cmd.rst:196 -msgid "" -"A list of queued input lines. The cmdqueue list is checked " -"in :meth:`cmdloop` when new input is needed; if it is nonempty, its elements " -"will be processed in order, as if entered at the prompt." +msgid "A list of queued input lines. The cmdqueue list is checked in :meth:`cmdloop` when new input is needed; if it is nonempty, its elements will be processed in order, as if entered at the prompt." msgstr "" -#: ../../library/cmd.rst:203 -msgid "" -"A string to issue as an intro or banner. May be overridden by giving " -"the :meth:`cmdloop` method an argument." +msgid "A string to issue as an intro or banner. May be overridden by giving the :meth:`cmdloop` method an argument." msgstr "" -#: ../../library/cmd.rst:209 -msgid "" -"The header to issue if the help output has a section for documented commands." +msgid "The header to issue if the help output has a section for documented commands." msgstr "" -#: ../../library/cmd.rst:214 -msgid "" -"The header to issue if the help output has a section for miscellaneous help " -"topics (that is, there are :meth:`!help_\\*` methods without " -"corresponding :meth:`!do_\\*` methods)." +msgid "The header to issue if the help output has a section for miscellaneous help topics (that is, there are :meth:`!help_\\*` methods without corresponding :meth:`!do_\\*` methods)." msgstr "" -#: ../../library/cmd.rst:221 -msgid "" -"The header to issue if the help output has a section for undocumented " -"commands (that is, there are :meth:`!do_\\*` methods without " -"corresponding :meth:`!help_\\*` methods)." +msgid "The header to issue if the help output has a section for undocumented commands (that is, there are :meth:`!do_\\*` methods without corresponding :meth:`!help_\\*` methods)." msgstr "" -#: ../../library/cmd.rst:228 -msgid "" -"The character used to draw separator lines under the help-message headers. " -"If empty, no ruler line is drawn. It defaults to ``'='``." +msgid "The character used to draw separator lines under the help-message headers. If empty, no ruler line is drawn. It defaults to ``'='``." msgstr "" -#: ../../library/cmd.rst:234 -msgid "" -"A flag, defaulting to true. If true, :meth:`cmdloop` uses :func:`input` to " -"display a prompt and read the next command; if " -"false, :data:`sys.stdout.write() ` " -"and :data:`sys.stdin.readline() ` are used. (This means that by " -"importing :mod:`readline`, on systems that support it, the interpreter will " -"automatically support :program:`Emacs`\\ -like line editing and command-" -"history keystrokes.)" +msgid "A flag, defaulting to true. If true, :meth:`cmdloop` uses :func:`input` to display a prompt and read the next command; if false, :data:`sys.stdout.write() ` and :data:`sys.stdin.readline() ` are used. (This means that by importing :mod:`readline`, on systems that support it, the interpreter will automatically support :program:`Emacs`\\ -like line editing and command-history keystrokes.)" msgstr "" -#: ../../library/cmd.rst:244 msgid "Cmd Example" msgstr "" -#: ../../library/cmd.rst:248 -msgid "" -"The :mod:`!cmd` module is mainly useful for building custom shells that let " -"a user work with a program interactively." +msgid "The :mod:`!cmd` module is mainly useful for building custom shells that let a user work with a program interactively." msgstr "" -#: ../../library/cmd.rst:251 -msgid "" -"This section presents a simple example of how to build a shell around a few " -"of the commands in the :mod:`turtle` module." +msgid "This section presents a simple example of how to build a shell around a few of the commands in the :mod:`turtle` module." msgstr "" -#: ../../library/cmd.rst:254 -msgid "" -"Basic turtle commands such as :meth:`~turtle.forward` are added to " -"a :class:`Cmd` subclass with method named :meth:`!do_forward`. The argument " -"is converted to a number and dispatched to the turtle module. The docstring " -"is used in the help utility provided by the shell." +msgid "Basic turtle commands such as :meth:`~turtle.forward` are added to a :class:`Cmd` subclass with method named :meth:`!do_forward`. The argument is converted to a number and dispatched to the turtle module. The docstring is used in the help utility provided by the shell." msgstr "" -#: ../../library/cmd.rst:259 -msgid "" -"The example also includes a basic record and playback facility implemented " -"with the :meth:`~Cmd.precmd` method which is responsible for converting the " -"input to lowercase and writing the commands to a file. The :meth:`!" -"do_playback` method reads the file and adds the recorded commands to " -"the :attr:`~Cmd.cmdqueue` for immediate playback::" +msgid "The example also includes a basic record and playback facility implemented with the :meth:`~Cmd.precmd` method which is responsible for converting the input to lowercase and writing the commands to a file. The :meth:`!do_playback` method reads the file and adds the recorded commands to the :attr:`~Cmd.cmdqueue` for immediate playback::" msgstr "" -#: ../../library/cmd.rst:265 msgid "" "import cmd, sys\n" "from turtle import *\n" "\n" "class TurtleShell(cmd.Cmd):\n" -" intro = 'Welcome to the turtle shell. Type help or ? to list commands." -"\\n'\n" +" intro = 'Welcome to the turtle shell. Type help or ? to list commands.\\n'\n" " prompt = '(turtle) '\n" " file = None\n" "\n" @@ -346,15 +173,13 @@ msgid "" " 'Turn turtle left by given number of degrees: LEFT 90'\n" " left(*parse(arg))\n" " def do_goto(self, arg):\n" -" 'Move turtle to an absolute position with changing orientation. " -"GOTO 100 200'\n" +" 'Move turtle to an absolute position with changing orientation. GOTO 100 200'\n" " goto(*parse(arg))\n" " def do_home(self, arg):\n" " 'Return turtle to the home position: HOME'\n" " home()\n" " def do_circle(self, arg):\n" -" 'Draw circle with given radius an options extent and steps: CIRCLE " -"50'\n" +" 'Draw circle with given radius an options extent and steps: CIRCLE 50'\n" " circle(*parse(arg))\n" " def do_position(self, arg):\n" " 'Print the current turtle position: POSITION'\n" @@ -404,14 +229,9 @@ msgid "" " TurtleShell().cmdloop()" msgstr "" -#: ../../library/cmd.rst:340 -msgid "" -"Here is a sample session with the turtle shell showing the help functions, " -"using blank lines to repeat commands, and the simple record and playback " -"facility:" +msgid "Here is a sample session with the turtle shell showing the help functions, using blank lines to repeat commands, and the simple record and playback facility:" msgstr "" -#: ../../library/cmd.rst:343 msgid "" "Welcome to the turtle shell. Type help or ? to list commands.\n" "\n" @@ -472,14 +292,11 @@ msgid "" "Thank you for using Turtle" msgstr "" -#: ../../library/cmd.rst:74 msgid "? (question mark)" msgstr "" -#: ../../library/cmd.rst:74 msgid "in a command interpreter" msgstr "" -#: ../../library/cmd.rst:74 msgid "! (exclamation)" msgstr "" diff --git a/library/cmdline.po b/library/cmdline.po index a077f8c5..7ec7b3c3 100644 --- a/library/cmdline.po +++ b/library/cmdline.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2023-10-13 14:16+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,214 +21,161 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/cmdline.rst:5 msgid "Modules command-line interface (CLI)" msgstr "" -#: ../../library/cmdline.rst:7 msgid "The following modules have a command-line interface." msgstr "" -#: ../../library/cmdline.rst:9 msgid ":ref:`ast `" msgstr "" -#: ../../library/cmdline.rst:10 msgid ":ref:`asyncio `" msgstr "" -#: ../../library/cmdline.rst:11 msgid ":mod:`base64`" msgstr "" -#: ../../library/cmdline.rst:12 msgid ":ref:`calendar `" msgstr "" -#: ../../library/cmdline.rst:13 msgid ":mod:`code`" msgstr "" -#: ../../library/cmdline.rst:14 msgid ":ref:`compileall `" msgstr "" -#: ../../library/cmdline.rst:15 msgid ":mod:`cProfile`: see :ref:`profile `" msgstr "" -#: ../../library/cmdline.rst:16 msgid ":ref:`dis `" msgstr "" -#: ../../library/cmdline.rst:17 msgid ":ref:`doctest `" msgstr "" -#: ../../library/cmdline.rst:18 msgid ":mod:`!encodings.rot_13`" msgstr "" -#: ../../library/cmdline.rst:19 msgid ":ref:`ensurepip `" msgstr "" -#: ../../library/cmdline.rst:20 msgid ":mod:`filecmp`" msgstr "" -#: ../../library/cmdline.rst:21 msgid ":mod:`fileinput`" msgstr "" -#: ../../library/cmdline.rst:22 msgid ":mod:`ftplib`" msgstr "" -#: ../../library/cmdline.rst:23 msgid ":ref:`gzip `" msgstr "" -#: ../../library/cmdline.rst:24 msgid ":ref:`http.server `" msgstr "" -#: ../../library/cmdline.rst:25 msgid ":ref:`idlelib `" msgstr "" -#: ../../library/cmdline.rst:26 msgid ":ref:`inspect `" msgstr "" -#: ../../library/cmdline.rst:27 msgid ":ref:`json `" msgstr "" -#: ../../library/cmdline.rst:28 msgid ":ref:`mimetypes `" msgstr "" -#: ../../library/cmdline.rst:29 msgid ":ref:`pdb `" msgstr "" -#: ../../library/cmdline.rst:30 msgid ":ref:`pickle `" msgstr "" -#: ../../library/cmdline.rst:31 msgid ":ref:`pickletools `" msgstr "" -#: ../../library/cmdline.rst:32 msgid ":ref:`platform `" msgstr "" -#: ../../library/cmdline.rst:33 msgid ":mod:`poplib`" msgstr "" -#: ../../library/cmdline.rst:34 msgid ":ref:`profile `" msgstr "" -#: ../../library/cmdline.rst:35 msgid ":mod:`pstats`" msgstr "" -#: ../../library/cmdline.rst:36 msgid ":ref:`py_compile `" msgstr "" -#: ../../library/cmdline.rst:37 msgid ":mod:`pyclbr`" msgstr "" -#: ../../library/cmdline.rst:38 msgid ":mod:`pydoc`" msgstr "" -#: ../../library/cmdline.rst:39 msgid ":mod:`quopri`" msgstr "" -#: ../../library/cmdline.rst:40 msgid ":ref:`random `" msgstr "" -#: ../../library/cmdline.rst:41 msgid ":mod:`runpy`" msgstr "" -#: ../../library/cmdline.rst:42 msgid ":ref:`site `" msgstr "" -#: ../../library/cmdline.rst:43 msgid ":ref:`sqlite3 `" msgstr "" -#: ../../library/cmdline.rst:44 msgid ":ref:`symtable `" msgstr "" -#: ../../library/cmdline.rst:45 msgid ":ref:`sysconfig `" msgstr "" -#: ../../library/cmdline.rst:46 msgid ":mod:`tabnanny`" msgstr "" -#: ../../library/cmdline.rst:47 msgid ":ref:`tarfile `" msgstr "" -#: ../../library/cmdline.rst:48 msgid ":mod:`!this`" msgstr "" -#: ../../library/cmdline.rst:49 msgid ":ref:`timeit `" msgstr "" -#: ../../library/cmdline.rst:50 msgid ":ref:`tokenize `" msgstr "" -#: ../../library/cmdline.rst:51 msgid ":ref:`trace `" msgstr "" -#: ../../library/cmdline.rst:52 msgid ":mod:`turtledemo`" msgstr "" -#: ../../library/cmdline.rst:53 msgid ":ref:`unittest `" msgstr "" -#: ../../library/cmdline.rst:54 msgid ":ref:`uuid `" msgstr "" -#: ../../library/cmdline.rst:55 msgid ":ref:`venv `" msgstr "" -#: ../../library/cmdline.rst:56 msgid ":ref:`webbrowser `" msgstr "" -#: ../../library/cmdline.rst:57 msgid ":ref:`zipapp `" msgstr "" -#: ../../library/cmdline.rst:58 msgid ":ref:`zipfile `" msgstr "" -#: ../../library/cmdline.rst:60 msgid "See also the :ref:`Python command-line interface `." msgstr "" diff --git a/library/cmdlinelibs.po b/library/cmdlinelibs.po index 7c19b1e8..43d54d0e 100644 --- a/library/cmdlinelibs.po +++ b/library/cmdlinelibs.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2024-12-27 14:18+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,16 +21,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/cmdlinelibs.rst:5 msgid "Command-line interface libraries" msgstr "" -#: ../../library/cmdlinelibs.rst:7 -msgid "" -"The modules described in this chapter assist with implementing command line " -"and terminal interfaces for applications." +msgid "The modules described in this chapter assist with implementing command line and terminal interfaces for applications." msgstr "" -#: ../../library/cmdlinelibs.rst:10 msgid "Here's an overview:" msgstr "" diff --git a/library/code.po b/library/code.po index 7fa06ae3..26301b10 100644 --- a/library/code.po +++ b/library/code.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:56+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,235 +21,101 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/code.rst:2 msgid ":mod:`!code` --- Interpreter base classes" msgstr "" -#: ../../library/code.rst:7 msgid "**Source code:** :source:`Lib/code.py`" msgstr "" -#: ../../library/code.rst:11 -msgid "" -"The ``code`` module provides facilities to implement read-eval-print loops " -"in Python. Two classes and convenience functions are included which can be " -"used to build applications which provide an interactive interpreter prompt." +msgid "The ``code`` module provides facilities to implement read-eval-print loops in Python. Two classes and convenience functions are included which can be used to build applications which provide an interactive interpreter prompt." msgstr "" -#: ../../library/code.rst:18 -msgid "" -"This class deals with parsing and interpreter state (the user's namespace); " -"it does not deal with input buffering or prompting or input file naming (the " -"filename is always passed in explicitly). The optional *locals* argument " -"specifies a mapping to use as the namespace in which code will be executed; " -"it defaults to a newly created dictionary with key ``'__name__'`` set to " -"``'__console__'`` and key ``'__doc__'`` set to ``None``." +msgid "This class deals with parsing and interpreter state (the user's namespace); it does not deal with input buffering or prompting or input file naming (the filename is always passed in explicitly). The optional *locals* argument specifies a mapping to use as the namespace in which code will be executed; it defaults to a newly created dictionary with key ``'__name__'`` set to ``'__console__'`` and key ``'__doc__'`` set to ``None``." msgstr "" -#: ../../library/code.rst:25 -msgid "" -"Note that functions and classes objects created under an :class:`!" -"InteractiveInterpreter` instance will belong to the namespace specified by " -"*locals*. They are only pickleable if *locals* is the namespace of an " -"existing module." +msgid "Note that functions and classes objects created under an :class:`!InteractiveInterpreter` instance will belong to the namespace specified by *locals*. They are only pickleable if *locals* is the namespace of an existing module." msgstr "" -#: ../../library/code.rst:34 -msgid "" -"Closely emulate the behavior of the interactive Python interpreter. This " -"class builds on :class:`InteractiveInterpreter` and adds prompting using the " -"familiar ``sys.ps1`` and ``sys.ps2``, and input buffering. If *local_exit* " -"is true, ``exit()`` and ``quit()`` in the console will not " -"raise :exc:`SystemExit`, but instead return to the calling code." +msgid "Closely emulate the behavior of the interactive Python interpreter. This class builds on :class:`InteractiveInterpreter` and adds prompting using the familiar ``sys.ps1`` and ``sys.ps2``, and input buffering. If *local_exit* is true, ``exit()`` and ``quit()`` in the console will not raise :exc:`SystemExit`, but instead return to the calling code." msgstr "" -#: ../../library/code.rst:40 ../../library/code.rst:58 msgid "Added *local_exit* parameter." msgstr "" -#: ../../library/code.rst:45 -msgid "" -"Convenience function to run a read-eval-print loop. This creates a new " -"instance of :class:`InteractiveConsole` and sets *readfunc* to be used as " -"the :meth:`InteractiveConsole.raw_input` method, if provided. If *local* is " -"provided, it is passed to the :class:`InteractiveConsole` constructor for " -"use as the default namespace for the interpreter loop. If *local_exit* is " -"provided, it is passed to the :class:`InteractiveConsole` constructor. " -"The :meth:`~InteractiveConsole.interact` method of the instance is then run " -"with *banner* and *exitmsg* passed as the banner and exit message to use, if " -"provided. The console object is discarded after use." -msgstr "" - -#: ../../library/code.rst:55 +msgid "Convenience function to run a read-eval-print loop. This creates a new instance of :class:`InteractiveConsole` and sets *readfunc* to be used as the :meth:`InteractiveConsole.raw_input` method, if provided. If *local* is provided, it is passed to the :class:`InteractiveConsole` constructor for use as the default namespace for the interpreter loop. If *local_exit* is provided, it is passed to the :class:`InteractiveConsole` constructor. The :meth:`~InteractiveConsole.interact` method of the instance is then run with *banner* and *exitmsg* passed as the banner and exit message to use, if provided. The console object is discarded after use." +msgstr "" + msgid "Added *exitmsg* parameter." msgstr "" -#: ../../library/code.rst:63 -msgid "" -"This function is useful for programs that want to emulate Python's " -"interpreter main loop (a.k.a. the read-eval-print loop). The tricky part is " -"to determine when the user has entered an incomplete command that can be " -"completed by entering more text (as opposed to a complete command or a " -"syntax error). This function *almost* always makes the same decision as the " -"real interpreter main loop." +msgid "This function is useful for programs that want to emulate Python's interpreter main loop (a.k.a. the read-eval-print loop). The tricky part is to determine when the user has entered an incomplete command that can be completed by entering more text (as opposed to a complete command or a syntax error). This function *almost* always makes the same decision as the real interpreter main loop." msgstr "" -#: ../../library/code.rst:70 -msgid "" -"*source* is the source string; *filename* is the optional filename from " -"which source was read, defaulting to ``''``; and *symbol* is the " -"optional grammar start symbol, which should be ``'single'`` (the default), " -"``'eval'`` or ``'exec'``." +msgid "*source* is the source string; *filename* is the optional filename from which source was read, defaulting to ``''``; and *symbol* is the optional grammar start symbol, which should be ``'single'`` (the default), ``'eval'`` or ``'exec'``." msgstr "" -#: ../../library/code.rst:75 -msgid "" -"Returns a code object (the same as ``compile(source, filename, symbol)``) if " -"the command is complete and valid; ``None`` if the command is incomplete; " -"raises :exc:`SyntaxError` if the command is complete and contains a syntax " -"error, or raises :exc:`OverflowError` or :exc:`ValueError` if the command " -"contains an invalid literal." +msgid "Returns a code object (the same as ``compile(source, filename, symbol)``) if the command is complete and valid; ``None`` if the command is incomplete; raises :exc:`SyntaxError` if the command is complete and contains a syntax error, or raises :exc:`OverflowError` or :exc:`ValueError` if the command contains an invalid literal." msgstr "" -#: ../../library/code.rst:85 msgid "Interactive Interpreter Objects" msgstr "" -#: ../../library/code.rst:90 -msgid "" -"Compile and run some source in the interpreter. Arguments are the same as " -"for :func:`compile_command`; the default for *filename* is ``''``, " -"and for *symbol* is ``'single'``. One of several things can happen:" +msgid "Compile and run some source in the interpreter. Arguments are the same as for :func:`compile_command`; the default for *filename* is ``''``, and for *symbol* is ``'single'``. One of several things can happen:" msgstr "" -#: ../../library/code.rst:94 -msgid "" -"The input is incorrect; :func:`compile_command` raised an exception " -"(:exc:`SyntaxError` or :exc:`OverflowError`). A syntax traceback will be " -"printed by calling the :meth:`showsyntaxerror` method. :meth:`runsource` " -"returns ``False``." +msgid "The input is incorrect; :func:`compile_command` raised an exception (:exc:`SyntaxError` or :exc:`OverflowError`). A syntax traceback will be printed by calling the :meth:`showsyntaxerror` method. :meth:`runsource` returns ``False``." msgstr "" -#: ../../library/code.rst:99 -msgid "" -"The input is incomplete, and more input is required; :func:`compile_command` " -"returned ``None``. :meth:`runsource` returns ``True``." +msgid "The input is incomplete, and more input is required; :func:`compile_command` returned ``None``. :meth:`runsource` returns ``True``." msgstr "" -#: ../../library/code.rst:102 -msgid "" -"The input is complete; :func:`compile_command` returned a code object. The " -"code is executed by calling the :meth:`runcode` (which also handles run-time " -"exceptions, except for :exc:`SystemExit`). :meth:`runsource` returns " -"``False``." +msgid "The input is complete; :func:`compile_command` returned a code object. The code is executed by calling the :meth:`runcode` (which also handles run-time exceptions, except for :exc:`SystemExit`). :meth:`runsource` returns ``False``." msgstr "" -#: ../../library/code.rst:106 -msgid "" -"The return value can be used to decide whether to use ``sys.ps1`` or " -"``sys.ps2`` to prompt the next line." +msgid "The return value can be used to decide whether to use ``sys.ps1`` or ``sys.ps2`` to prompt the next line." msgstr "" -#: ../../library/code.rst:112 -msgid "" -"Execute a code object. When an exception occurs, :meth:`showtraceback` is " -"called to display a traceback. All exceptions are caught " -"except :exc:`SystemExit`, which is allowed to propagate." +msgid "Execute a code object. When an exception occurs, :meth:`showtraceback` is called to display a traceback. All exceptions are caught except :exc:`SystemExit`, which is allowed to propagate." msgstr "" -#: ../../library/code.rst:116 -msgid "" -"A note about :exc:`KeyboardInterrupt`: this exception may occur elsewhere in " -"this code, and may not always be caught. The caller should be prepared to " -"deal with it." +msgid "A note about :exc:`KeyboardInterrupt`: this exception may occur elsewhere in this code, and may not always be caught. The caller should be prepared to deal with it." msgstr "" -#: ../../library/code.rst:123 -msgid "" -"Display the syntax error that just occurred. This does not display a stack " -"trace because there isn't one for syntax errors. If *filename* is given, it " -"is stuffed into the exception instead of the default filename provided by " -"Python's parser, because it always uses ``''`` when reading from a " -"string. The output is written by the :meth:`write` method." +msgid "Display the syntax error that just occurred. This does not display a stack trace because there isn't one for syntax errors. If *filename* is given, it is stuffed into the exception instead of the default filename provided by Python's parser, because it always uses ``''`` when reading from a string. The output is written by the :meth:`write` method." msgstr "" -#: ../../library/code.rst:132 -msgid "" -"Display the exception that just occurred. We remove the first stack item " -"because it is within the interpreter object implementation. The output is " -"written by the :meth:`write` method." +msgid "Display the exception that just occurred. We remove the first stack item because it is within the interpreter object implementation. The output is written by the :meth:`write` method." msgstr "" -#: ../../library/code.rst:136 -msgid "" -"The full chained traceback is displayed instead of just the primary " -"traceback." +msgid "The full chained traceback is displayed instead of just the primary traceback." msgstr "" -#: ../../library/code.rst:142 -msgid "" -"Write a string to the standard error stream (``sys.stderr``). Derived " -"classes should override this to provide the appropriate output handling as " -"needed." +msgid "Write a string to the standard error stream (``sys.stderr``). Derived classes should override this to provide the appropriate output handling as needed." msgstr "" -#: ../../library/code.rst:149 msgid "Interactive Console Objects" msgstr "" -#: ../../library/code.rst:151 -msgid "" -"The :class:`InteractiveConsole` class is a subclass " -"of :class:`InteractiveInterpreter`, and so offers all the methods of the " -"interpreter objects as well as the following additions." +msgid "The :class:`InteractiveConsole` class is a subclass of :class:`InteractiveInterpreter`, and so offers all the methods of the interpreter objects as well as the following additions." msgstr "" -#: ../../library/code.rst:158 -msgid "" -"Closely emulate the interactive Python console. The optional *banner* " -"argument specify the banner to print before the first interaction; by " -"default it prints a banner similar to the one printed by the standard Python " -"interpreter, followed by the class name of the console object in parentheses " -"(so as not to confuse this with the real interpreter -- since it's so " -"close!)." +msgid "Closely emulate the interactive Python console. The optional *banner* argument specify the banner to print before the first interaction; by default it prints a banner similar to the one printed by the standard Python interpreter, followed by the class name of the console object in parentheses (so as not to confuse this with the real interpreter -- since it's so close!)." msgstr "" -#: ../../library/code.rst:164 -msgid "" -"The optional *exitmsg* argument specifies an exit message printed when " -"exiting. Pass the empty string to suppress the exit message. If *exitmsg* is " -"not given or ``None``, a default message is printed." +msgid "The optional *exitmsg* argument specifies an exit message printed when exiting. Pass the empty string to suppress the exit message. If *exitmsg* is not given or ``None``, a default message is printed." msgstr "" -#: ../../library/code.rst:168 msgid "To suppress printing any banner, pass an empty string." msgstr "" -#: ../../library/code.rst:171 msgid "Print an exit message when exiting." msgstr "" -#: ../../library/code.rst:177 -msgid "" -"Push a line of source text to the interpreter. The line should not have a " -"trailing newline; it may have internal newlines. The line is appended to a " -"buffer and the interpreter's :meth:`~InteractiveInterpreter.runsource` " -"method is called with the concatenated contents of the buffer as source. If " -"this indicates that the command was executed or invalid, the buffer is " -"reset; otherwise, the command is incomplete, and the buffer is left as it " -"was after the line was appended. The return value is ``True`` if more input " -"is required, ``False`` if the line was dealt with in some way (this is the " -"same as :meth:`!runsource`)." -msgstr "" - -#: ../../library/code.rst:189 +msgid "Push a line of source text to the interpreter. The line should not have a trailing newline; it may have internal newlines. The line is appended to a buffer and the interpreter's :meth:`~InteractiveInterpreter.runsource` method is called with the concatenated contents of the buffer as source. If this indicates that the command was executed or invalid, the buffer is reset; otherwise, the command is incomplete, and the buffer is left as it was after the line was appended. The return value is ``True`` if more input is required, ``False`` if the line was dealt with in some way (this is the same as :meth:`!runsource`)." +msgstr "" + msgid "Remove any unhandled source text from the input buffer." msgstr "" -#: ../../library/code.rst:194 -msgid "" -"Write a prompt and read a line. The returned line does not include the " -"trailing newline. When the user enters the EOF key " -"sequence, :exc:`EOFError` is raised. The base implementation reads from " -"``sys.stdin``; a subclass may replace this with a different implementation." +msgid "Write a prompt and read a line. The returned line does not include the trailing newline. When the user enters the EOF key sequence, :exc:`EOFError` is raised. The base implementation reads from ``sys.stdin``; a subclass may replace this with a different implementation." msgstr "" diff --git a/library/codecs.po b/library/codecs.po index 84c19372..8a2183b2 100644 --- a/library/codecs.po +++ b/library/codecs.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:56+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,2929 +23,1699 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/codecs.rst:2 msgid ":mod:`!codecs` --- Codec registry and base classes" msgstr "" -#: ../../library/codecs.rst:11 msgid "**Source code:** :source:`Lib/codecs.py`" msgstr "" -#: ../../library/codecs.rst:23 -msgid "" -"This module defines base classes for standard Python codecs (encoders and " -"decoders) and provides access to the internal Python codec registry, which " -"manages the codec and error handling lookup process. Most standard codecs " -"are :term:`text encodings `, which encode text to bytes (and " -"decode bytes to text), but there are also codecs provided that encode text " -"to text, and bytes to bytes. Custom codecs may encode and decode between " -"arbitrary types, but some module features are restricted to be used " -"specifically with :term:`text encodings ` or with codecs that " -"encode to :class:`bytes`." -msgstr "" - -#: ../../library/codecs.rst:33 -msgid "" -"The module defines the following functions for encoding and decoding with " -"any codec:" +msgid "This module defines base classes for standard Python codecs (encoders and decoders) and provides access to the internal Python codec registry, which manages the codec and error handling lookup process. Most standard codecs are :term:`text encodings `, which encode text to bytes (and decode bytes to text), but there are also codecs provided that encode text to text, and bytes to bytes. Custom codecs may encode and decode between arbitrary types, but some module features are restricted to be used specifically with :term:`text encodings ` or with codecs that encode to :class:`bytes`." +msgstr "" + +msgid "The module defines the following functions for encoding and decoding with any codec:" msgstr "" -#: ../../library/codecs.rst:38 msgid "Encodes *obj* using the codec registered for *encoding*." msgstr "" -#: ../../library/codecs.rst:40 -msgid "" -"*Errors* may be given to set the desired error handling scheme. The default " -"error handler is ``'strict'`` meaning that encoding errors " -"raise :exc:`ValueError` (or a more codec specific subclass, such " -"as :exc:`UnicodeEncodeError`). Refer to :ref:`codec-base-classes` for more " -"information on codec error handling." +msgid "*Errors* may be given to set the desired error handling scheme. The default error handler is ``'strict'`` meaning that encoding errors raise :exc:`ValueError` (or a more codec specific subclass, such as :exc:`UnicodeEncodeError`). Refer to :ref:`codec-base-classes` for more information on codec error handling." msgstr "" -#: ../../library/codecs.rst:48 msgid "Decodes *obj* using the codec registered for *encoding*." msgstr "" -#: ../../library/codecs.rst:50 -msgid "" -"*Errors* may be given to set the desired error handling scheme. The default " -"error handler is ``'strict'`` meaning that decoding errors " -"raise :exc:`ValueError` (or a more codec specific subclass, such " -"as :exc:`UnicodeDecodeError`). Refer to :ref:`codec-base-classes` for more " -"information on codec error handling." +msgid "*Errors* may be given to set the desired error handling scheme. The default error handler is ``'strict'`` meaning that decoding errors raise :exc:`ValueError` (or a more codec specific subclass, such as :exc:`UnicodeDecodeError`). Refer to :ref:`codec-base-classes` for more information on codec error handling." msgstr "" -#: ../../library/codecs.rst:58 -msgid "" -"Return a mapping suitable for encoding with a custom single-byte encoding. " -"Given a :class:`str` *string* of up to 256 characters representing a " -"decoding table, returns either a compact internal mapping object " -"``EncodingMap`` or a :class:`dictionary ` mapping character ordinals " -"to byte values. Raises a :exc:`TypeError` on invalid input." +msgid "Return a mapping suitable for encoding with a custom single-byte encoding. Given a :class:`str` *string* of up to 256 characters representing a decoding table, returns either a compact internal mapping object ``EncodingMap`` or a :class:`dictionary ` mapping character ordinals to byte values. Raises a :exc:`TypeError` on invalid input." msgstr "" -#: ../../library/codecs.rst:64 msgid "The full details for each codec can also be looked up directly:" msgstr "" -#: ../../library/codecs.rst:68 -msgid "" -"Looks up the codec info in the Python codec registry and returns " -"a :class:`CodecInfo` object as defined below." +msgid "Looks up the codec info in the Python codec registry and returns a :class:`CodecInfo` object as defined below." msgstr "" -#: ../../library/codecs.rst:71 -msgid "" -"Encodings are first looked up in the registry's cache. If not found, the " -"list of registered search functions is scanned. If no :class:`CodecInfo` " -"object is found, a :exc:`LookupError` is raised. Otherwise, " -"the :class:`CodecInfo` object is stored in the cache and returned to the " -"caller." +msgid "Encodings are first looked up in the registry's cache. If not found, the list of registered search functions is scanned. If no :class:`CodecInfo` object is found, a :exc:`LookupError` is raised. Otherwise, the :class:`CodecInfo` object is stored in the cache and returned to the caller." msgstr "" -#: ../../library/codecs.rst:78 -msgid "" -"Codec details when looking up the codec registry. The constructor arguments " -"are stored in attributes of the same name:" +msgid "Codec details when looking up the codec registry. The constructor arguments are stored in attributes of the same name:" msgstr "" -#: ../../library/codecs.rst:84 msgid "The name of the encoding." msgstr "" -#: ../../library/codecs.rst:90 -msgid "" -"The stateless encoding and decoding functions. These must be functions or " -"methods which have the same interface as the :meth:`~Codec.encode` " -"and :meth:`~Codec.decode` methods of Codec instances (see :ref:`Codec " -"Interface `). The functions or methods are expected to work " -"in a stateless mode." +msgid "The stateless encoding and decoding functions. These must be functions or methods which have the same interface as the :meth:`~Codec.encode` and :meth:`~Codec.decode` methods of Codec instances (see :ref:`Codec Interface `). The functions or methods are expected to work in a stateless mode." msgstr "" -#: ../../library/codecs.rst:100 -msgid "" -"Incremental encoder and decoder classes or factory functions. These have to " -"provide the interface defined by the base " -"classes :class:`IncrementalEncoder` and :class:`IncrementalDecoder`, " -"respectively. Incremental codecs can maintain state." +msgid "Incremental encoder and decoder classes or factory functions. These have to provide the interface defined by the base classes :class:`IncrementalEncoder` and :class:`IncrementalDecoder`, respectively. Incremental codecs can maintain state." msgstr "" -#: ../../library/codecs.rst:109 -msgid "" -"Stream writer and reader classes or factory functions. These have to provide " -"the interface defined by the base classes :class:`StreamWriter` " -"and :class:`StreamReader`, respectively. Stream codecs can maintain state." +msgid "Stream writer and reader classes or factory functions. These have to provide the interface defined by the base classes :class:`StreamWriter` and :class:`StreamReader`, respectively. Stream codecs can maintain state." msgstr "" -#: ../../library/codecs.rst:114 -msgid "" -"To simplify access to the various codec components, the module provides " -"these additional functions which use :func:`lookup` for the codec lookup:" +msgid "To simplify access to the various codec components, the module provides these additional functions which use :func:`lookup` for the codec lookup:" msgstr "" -#: ../../library/codecs.rst:119 -msgid "" -"Look up the codec for the given encoding and return its encoder function." +msgid "Look up the codec for the given encoding and return its encoder function." msgstr "" -#: ../../library/codecs.rst:121 ../../library/codecs.rst:128 -#: ../../library/codecs.rst:154 ../../library/codecs.rst:162 msgid "Raises a :exc:`LookupError` in case the encoding cannot be found." msgstr "" -#: ../../library/codecs.rst:126 -msgid "" -"Look up the codec for the given encoding and return its decoder function." +msgid "Look up the codec for the given encoding and return its decoder function." msgstr "" -#: ../../library/codecs.rst:133 -msgid "" -"Look up the codec for the given encoding and return its incremental encoder " -"class or factory function." +msgid "Look up the codec for the given encoding and return its incremental encoder class or factory function." msgstr "" -#: ../../library/codecs.rst:136 -msgid "" -"Raises a :exc:`LookupError` in case the encoding cannot be found or the " -"codec doesn't support an incremental encoder." +msgid "Raises a :exc:`LookupError` in case the encoding cannot be found or the codec doesn't support an incremental encoder." msgstr "" -#: ../../library/codecs.rst:142 -msgid "" -"Look up the codec for the given encoding and return its incremental decoder " -"class or factory function." +msgid "Look up the codec for the given encoding and return its incremental decoder class or factory function." msgstr "" -#: ../../library/codecs.rst:145 -msgid "" -"Raises a :exc:`LookupError` in case the encoding cannot be found or the " -"codec doesn't support an incremental decoder." +msgid "Raises a :exc:`LookupError` in case the encoding cannot be found or the codec doesn't support an incremental decoder." msgstr "" -#: ../../library/codecs.rst:151 -msgid "" -"Look up the codec for the given encoding and return " -"its :class:`StreamReader` class or factory function." +msgid "Look up the codec for the given encoding and return its :class:`StreamReader` class or factory function." msgstr "" -#: ../../library/codecs.rst:159 -msgid "" -"Look up the codec for the given encoding and return " -"its :class:`StreamWriter` class or factory function." +msgid "Look up the codec for the given encoding and return its :class:`StreamWriter` class or factory function." msgstr "" -#: ../../library/codecs.rst:164 -msgid "" -"Custom codecs are made available by registering a suitable codec search " -"function:" +msgid "Custom codecs are made available by registering a suitable codec search function:" msgstr "" -#: ../../library/codecs.rst:169 -msgid "" -"Register a codec search function. Search functions are expected to take one " -"argument, being the encoding name in all lower case letters with hyphens and " -"spaces converted to underscores, and return a :class:`CodecInfo` object. In " -"case a search function cannot find a given encoding, it should return " -"``None``." +msgid "Register a codec search function. Search functions are expected to take one argument, being the encoding name in all lower case letters with hyphens and spaces converted to underscores, and return a :class:`CodecInfo` object. In case a search function cannot find a given encoding, it should return ``None``." msgstr "" -#: ../../library/codecs.rst:175 msgid "Hyphens and spaces are converted to underscore." msgstr "" -#: ../../library/codecs.rst:181 -msgid "" -"Unregister a codec search function and clear the registry's cache. If the " -"search function is not registered, do nothing." +msgid "Unregister a codec search function and clear the registry's cache. If the search function is not registered, do nothing." msgstr "" -#: ../../library/codecs.rst:187 -msgid "" -"While the builtin :func:`open` and the associated :mod:`io` module are the " -"recommended approach for working with encoded text files, this module " -"provides additional utility functions and classes that allow the use of a " -"wider range of codecs when working with binary files:" +msgid "While the builtin :func:`open` and the associated :mod:`io` module are the recommended approach for working with encoded text files, this module provides additional utility functions and classes that allow the use of a wider range of codecs when working with binary files:" msgstr "" -#: ../../library/codecs.rst:194 -msgid "" -"Open an encoded file using the given *mode* and return an instance " -"of :class:`StreamReaderWriter`, providing transparent encoding/decoding. The " -"default file mode is ``'r'``, meaning to open the file in read mode." +msgid "Open an encoded file using the given *mode* and return an instance of :class:`StreamReaderWriter`, providing transparent encoding/decoding. The default file mode is ``'r'``, meaning to open the file in read mode." msgstr "" -#: ../../library/codecs.rst:200 -msgid "" -"If *encoding* is not ``None``, then the underlying encoded files are always " -"opened in binary mode. No automatic conversion of ``'\\n'`` is done on " -"reading and writing. The *mode* argument may be any binary mode acceptable " -"to the built-in :func:`open` function; the ``'b'`` is automatically added." +msgid "If *encoding* is not ``None``, then the underlying encoded files are always opened in binary mode. No automatic conversion of ``'\\n'`` is done on reading and writing. The *mode* argument may be any binary mode acceptable to the built-in :func:`open` function; the ``'b'`` is automatically added." msgstr "" -#: ../../library/codecs.rst:206 -msgid "" -"*encoding* specifies the encoding which is to be used for the file. Any " -"encoding that encodes to and decodes from bytes is allowed, and the data " -"types supported by the file methods depend on the codec used." +msgid "*encoding* specifies the encoding which is to be used for the file. Any encoding that encodes to and decodes from bytes is allowed, and the data types supported by the file methods depend on the codec used." msgstr "" -#: ../../library/codecs.rst:210 -msgid "" -"*errors* may be given to define the error handling. It defaults to " -"``'strict'`` which causes a :exc:`ValueError` to be raised in case an " -"encoding error occurs." +msgid "*errors* may be given to define the error handling. It defaults to ``'strict'`` which causes a :exc:`ValueError` to be raised in case an encoding error occurs." msgstr "" -#: ../../library/codecs.rst:213 -msgid "" -"*buffering* has the same meaning as for the built-in :func:`open` function. " -"It defaults to -1 which means that the default buffer size will be used." +msgid "*buffering* has the same meaning as for the built-in :func:`open` function. It defaults to -1 which means that the default buffer size will be used." msgstr "" -#: ../../library/codecs.rst:216 msgid "The ``'U'`` mode has been removed." msgstr "" -#: ../../library/codecs.rst:221 msgid ":func:`codecs.open` has been superseded by :func:`open`." msgstr "" -#: ../../library/codecs.rst:226 -msgid "" -"Return a :class:`StreamRecoder` instance, a wrapped version of *file* which " -"provides transparent transcoding. The original file is closed when the " -"wrapped version is closed." +msgid "Return a :class:`StreamRecoder` instance, a wrapped version of *file* which provides transparent transcoding. The original file is closed when the wrapped version is closed." msgstr "" -#: ../../library/codecs.rst:230 -msgid "" -"Data written to the wrapped file is decoded according to the given " -"*data_encoding* and then written to the original file as bytes using " -"*file_encoding*. Bytes read from the original file are decoded according to " -"*file_encoding*, and the result is encoded using *data_encoding*." +msgid "Data written to the wrapped file is decoded according to the given *data_encoding* and then written to the original file as bytes using *file_encoding*. Bytes read from the original file are decoded according to *file_encoding*, and the result is encoded using *data_encoding*." msgstr "" -#: ../../library/codecs.rst:236 msgid "If *file_encoding* is not given, it defaults to *data_encoding*." msgstr "" -#: ../../library/codecs.rst:238 -msgid "" -"*errors* may be given to define the error handling. It defaults to " -"``'strict'``, which causes :exc:`ValueError` to be raised in case an " -"encoding error occurs." +msgid "*errors* may be given to define the error handling. It defaults to ``'strict'``, which causes :exc:`ValueError` to be raised in case an encoding error occurs." msgstr "" -#: ../../library/codecs.rst:245 -msgid "" -"Uses an incremental encoder to iteratively encode the input provided by " -"*iterator*. *iterator* must yield :class:`str` objects. This function is " -"a :term:`generator`. The *errors* argument (as well as any other keyword " -"argument) is passed through to the incremental encoder." +msgid "Uses an incremental encoder to iteratively encode the input provided by *iterator*. *iterator* must yield :class:`str` objects. This function is a :term:`generator`. The *errors* argument (as well as any other keyword argument) is passed through to the incremental encoder." msgstr "" -#: ../../library/codecs.rst:250 -msgid "" -"This function requires that the codec accept text :class:`str` objects to " -"encode. Therefore it does not support bytes-to-bytes encoders such as " -"``base64_codec``." +msgid "This function requires that the codec accept text :class:`str` objects to encode. Therefore it does not support bytes-to-bytes encoders such as ``base64_codec``." msgstr "" -#: ../../library/codecs.rst:257 -msgid "" -"Uses an incremental decoder to iteratively decode the input provided by " -"*iterator*. *iterator* must yield :class:`bytes` objects. This function is " -"a :term:`generator`. The *errors* argument (as well as any other keyword " -"argument) is passed through to the incremental decoder." +msgid "Uses an incremental decoder to iteratively decode the input provided by *iterator*. *iterator* must yield :class:`bytes` objects. This function is a :term:`generator`. The *errors* argument (as well as any other keyword argument) is passed through to the incremental decoder." msgstr "" -#: ../../library/codecs.rst:262 -msgid "" -"This function requires that the codec accept :class:`bytes` objects to " -"decode. Therefore it does not support text-to-text encoders such as " -"``rot_13``, although ``rot_13`` may be used equivalently " -"with :func:`iterencode`." +msgid "This function requires that the codec accept :class:`bytes` objects to decode. Therefore it does not support text-to-text encoders such as ``rot_13``, although ``rot_13`` may be used equivalently with :func:`iterencode`." msgstr "" -#: ../../library/codecs.rst:270 -msgid "" -"Return a :class:`tuple` containing the raw bytes of *buffer*, a :ref:`buffer-" -"compatible object ` or :class:`str` (encoded to UTF-8 before " -"processing), and their length in bytes." +msgid "Return a :class:`tuple` containing the raw bytes of *buffer*, a :ref:`buffer-compatible object ` or :class:`str` (encoded to UTF-8 before processing), and their length in bytes." msgstr "" -#: ../../library/codecs.rst:274 msgid "The *errors* argument is ignored." msgstr "" -#: ../../library/codecs.rst:276 msgid "" ">>> codecs.readbuffer_encode(b\"Zito\")\n" "(b'Zito', 4)" msgstr "" -#: ../../library/codecs.rst:282 -msgid "" -"The module also provides the following constants which are useful for " -"reading and writing to platform dependent files:" +msgid "The module also provides the following constants which are useful for reading and writing to platform dependent files:" msgstr "" -#: ../../library/codecs.rst:297 -msgid "" -"These constants define various byte sequences, being Unicode byte order " -"marks (BOMs) for several encodings. They are used in UTF-16 and UTF-32 data " -"streams to indicate the byte order used, and in UTF-8 as a Unicode " -"signature. :const:`BOM_UTF16` is either :const:`BOM_UTF16_BE` " -"or :const:`BOM_UTF16_LE` depending on the platform's native byte " -"order, :const:`BOM` is an alias for :const:`BOM_UTF16`, :const:`BOM_LE` " -"for :const:`BOM_UTF16_LE` and :const:`BOM_BE` for :const:`BOM_UTF16_BE`. The " -"others represent the BOM in UTF-8 and UTF-32 encodings." +msgid "These constants define various byte sequences, being Unicode byte order marks (BOMs) for several encodings. They are used in UTF-16 and UTF-32 data streams to indicate the byte order used, and in UTF-8 as a Unicode signature. :const:`BOM_UTF16` is either :const:`BOM_UTF16_BE` or :const:`BOM_UTF16_LE` depending on the platform's native byte order, :const:`BOM` is an alias for :const:`BOM_UTF16`, :const:`BOM_LE` for :const:`BOM_UTF16_LE` and :const:`BOM_BE` for :const:`BOM_UTF16_BE`. The others represent the BOM in UTF-8 and UTF-32 encodings." msgstr "" -#: ../../library/codecs.rst:311 msgid "Codec Base Classes" msgstr "" -#: ../../library/codecs.rst:313 -msgid "" -"The :mod:`!codecs` module defines a set of base classes which define the " -"interfaces for working with codec objects, and can also be used as the basis " -"for custom codec implementations." +msgid "The :mod:`!codecs` module defines a set of base classes which define the interfaces for working with codec objects, and can also be used as the basis for custom codec implementations." msgstr "" -#: ../../library/codecs.rst:317 -msgid "" -"Each codec has to define four interfaces to make it usable as codec in " -"Python: stateless encoder, stateless decoder, stream reader and stream " -"writer. The stream reader and writers typically reuse the stateless encoder/" -"decoder to implement the file protocols. Codec authors also need to define " -"how the codec will handle encoding and decoding errors." +msgid "Each codec has to define four interfaces to make it usable as codec in Python: stateless encoder, stateless decoder, stream reader and stream writer. The stream reader and writers typically reuse the stateless encoder/decoder to implement the file protocols. Codec authors also need to define how the codec will handle encoding and decoding errors." msgstr "" -#: ../../library/codecs.rst:328 msgid "Error Handlers" msgstr "" -#: ../../library/codecs.rst:330 -msgid "" -"To simplify and standardize error handling, codecs may implement different " -"error handling schemes by accepting the *errors* string argument:" +msgid "To simplify and standardize error handling, codecs may implement different error handling schemes by accepting the *errors* string argument:" msgstr "" -#: ../../library/codecs.rst:350 -msgid "" -"The following error handlers can be used with all Python :ref:`standard-" -"encodings` codecs:" +msgid "The following error handlers can be used with all Python :ref:`standard-encodings` codecs:" msgstr "" -#: ../../library/codecs.rst:356 ../../library/codecs.rst:399 -#: ../../library/codecs.rst:419 msgid "Value" msgstr "" -#: ../../library/codecs.rst:356 ../../library/codecs.rst:399 -#: ../../library/codecs.rst:419 ../../library/codecs.rst:1376 -#: ../../library/codecs.rst:1456 ../../library/codecs.rst:1541 msgid "Meaning" msgstr "" -#: ../../library/codecs.rst:358 msgid "``'strict'``" msgstr "" -#: ../../library/codecs.rst:358 -msgid "" -"Raise :exc:`UnicodeError` (or a subclass), this is the default. Implemented " -"in :func:`strict_errors`." +msgid "Raise :exc:`UnicodeError` (or a subclass), this is the default. Implemented in :func:`strict_errors`." msgstr "" -#: ../../library/codecs.rst:362 msgid "``'ignore'``" msgstr "" -#: ../../library/codecs.rst:362 -msgid "" -"Ignore the malformed data and continue without further notice. Implemented " -"in :func:`ignore_errors`." +msgid "Ignore the malformed data and continue without further notice. Implemented in :func:`ignore_errors`." msgstr "" -#: ../../library/codecs.rst:366 msgid "``'replace'``" msgstr "" -#: ../../library/codecs.rst:366 -msgid "" -"Replace with a replacement marker. On encoding, use ``?`` (ASCII character). " -"On decoding, use ``�`` (U+FFFD, the official REPLACEMENT CHARACTER). " -"Implemented in :func:`replace_errors`." +msgid "Replace with a replacement marker. On encoding, use ``?`` (ASCII character). On decoding, use ``�`` (U+FFFD, the official REPLACEMENT CHARACTER). Implemented in :func:`replace_errors`." msgstr "" -#: ../../library/codecs.rst:372 msgid "``'backslashreplace'``" msgstr "" -#: ../../library/codecs.rst:372 -msgid "" -"Replace with backslashed escape sequences. On encoding, use hexadecimal form " -"of Unicode code point with formats :samp:`\\\\x{hh}` :samp:`\\\\u{xxxx}" -"` :samp:`\\\\U{xxxxxxxx}`. On decoding, use hexadecimal form of byte value " -"with format :samp:`\\\\x{hh}`. Implemented " -"in :func:`backslashreplace_errors`." +msgid "Replace with backslashed escape sequences. On encoding, use hexadecimal form of Unicode code point with formats :samp:`\\\\x{hh}` :samp:`\\\\u{xxxx}` :samp:`\\\\U{xxxxxxxx}`. On decoding, use hexadecimal form of byte value with format :samp:`\\\\x{hh}`. Implemented in :func:`backslashreplace_errors`." msgstr "" -#: ../../library/codecs.rst:381 msgid "``'surrogateescape'``" msgstr "" -#: ../../library/codecs.rst:381 -msgid "" -"On decoding, replace byte with individual surrogate code ranging from " -"``U+DC80`` to ``U+DCFF``. This code will then be turned back into the same " -"byte when the ``'surrogateescape'`` error handler is used when encoding the " -"data. (See :pep:`383` for more.)" +msgid "On decoding, replace byte with individual surrogate code ranging from ``U+DC80`` to ``U+DCFF``. This code will then be turned back into the same byte when the ``'surrogateescape'`` error handler is used when encoding the data. (See :pep:`383` for more.)" msgstr "" -#: ../../library/codecs.rst:395 -msgid "" -"The following error handlers are only applicable to encoding " -"(within :term:`text encodings `):" +msgid "The following error handlers are only applicable to encoding (within :term:`text encodings `):" msgstr "" -#: ../../library/codecs.rst:401 msgid "``'xmlcharrefreplace'``" msgstr "" -#: ../../library/codecs.rst:401 -msgid "" -"Replace with XML/HTML numeric character reference, which is a decimal form " -"of Unicode code point with format :samp:`&#{num};`. Implemented " -"in :func:`xmlcharrefreplace_errors`." +msgid "Replace with XML/HTML numeric character reference, which is a decimal form of Unicode code point with format :samp:`&#{num};`. Implemented in :func:`xmlcharrefreplace_errors`." msgstr "" -#: ../../library/codecs.rst:407 msgid "``'namereplace'``" msgstr "" -#: ../../library/codecs.rst:407 -msgid "" -"Replace with ``\\N{...}`` escape sequences, what appears in the braces is " -"the Name property from Unicode Character Database. Implemented " -"in :func:`namereplace_errors`." +msgid "Replace with ``\\N{...}`` escape sequences, what appears in the braces is the Name property from Unicode Character Database. Implemented in :func:`namereplace_errors`." msgstr "" -#: ../../library/codecs.rst:416 -msgid "" -"In addition, the following error handler is specific to the given codecs:" +msgid "In addition, the following error handler is specific to the given codecs:" msgstr "" -#: ../../library/codecs.rst:13 ../../library/codecs.rst:419 msgid "Codecs" msgstr "" -#: ../../library/codecs.rst:421 msgid "``'surrogatepass'``" msgstr "" -#: ../../library/codecs.rst:421 msgid "utf-8, utf-16, utf-32, utf-16-be, utf-16-le, utf-32-be, utf-32-le" msgstr "" -#: ../../library/codecs.rst:421 -msgid "" -"Allow encoding and decoding surrogate code point (``U+D800`` - ``U+DFFF``) " -"as normal code point. Otherwise these codecs treat the presence of surrogate " -"code point in :class:`str` as an error." +msgid "Allow encoding and decoding surrogate code point (``U+D800`` - ``U+DFFF``) as normal code point. Otherwise these codecs treat the presence of surrogate code point in :class:`str` as an error." msgstr "" -#: ../../library/codecs.rst:428 msgid "The ``'surrogateescape'`` and ``'surrogatepass'`` error handlers." msgstr "" -#: ../../library/codecs.rst:431 -msgid "" -"The ``'surrogatepass'`` error handler now works with utf-16\\* and utf-32\\* " -"codecs." +msgid "The ``'surrogatepass'`` error handler now works with utf-16\\* and utf-32\\* codecs." msgstr "" -#: ../../library/codecs.rst:435 msgid "The ``'namereplace'`` error handler." msgstr "" -#: ../../library/codecs.rst:438 -msgid "" -"The ``'backslashreplace'`` error handler now works with decoding and " -"translating." +msgid "The ``'backslashreplace'`` error handler now works with decoding and translating." msgstr "" -#: ../../library/codecs.rst:442 -msgid "" -"The set of allowed values can be extended by registering a new named error " -"handler:" +msgid "The set of allowed values can be extended by registering a new named error handler:" msgstr "" -#: ../../library/codecs.rst:447 -msgid "" -"Register the error handling function *error_handler* under the name *name*. " -"The *error_handler* argument will be called during encoding and decoding in " -"case of an error, when *name* is specified as the errors parameter." +msgid "Register the error handling function *error_handler* under the name *name*. The *error_handler* argument will be called during encoding and decoding in case of an error, when *name* is specified as the errors parameter." msgstr "" -#: ../../library/codecs.rst:451 -msgid "" -"For encoding, *error_handler* will be called with " -"a :exc:`UnicodeEncodeError` instance, which contains information about the " -"location of the error. The error handler must either raise this or a " -"different exception, or return a tuple with a replacement for the " -"unencodable part of the input and a position where encoding should continue. " -"The replacement may be either :class:`str` or :class:`bytes`. If the " -"replacement is bytes, the encoder will simply copy them into the output " -"buffer. If the replacement is a string, the encoder will encode the " -"replacement. Encoding continues on original input at the specified position. " -"Negative position values will be treated as being relative to the end of the " -"input string. If the resulting position is out of bound an :exc:`IndexError` " -"will be raised." -msgstr "" - -#: ../../library/codecs.rst:463 -msgid "" -"Decoding and translating works similarly, except :exc:`UnicodeDecodeError` " -"or :exc:`UnicodeTranslateError` will be passed to the handler and that the " -"replacement from the error handler will be put into the output directly." +msgid "For encoding, *error_handler* will be called with a :exc:`UnicodeEncodeError` instance, which contains information about the location of the error. The error handler must either raise this or a different exception, or return a tuple with a replacement for the unencodable part of the input and a position where encoding should continue. The replacement may be either :class:`str` or :class:`bytes`. If the replacement is bytes, the encoder will simply copy them into the output buffer. If the replacement is a string, the encoder will encode the replacement. Encoding continues on original input at the specified position. Negative position values will be treated as being relative to the end of the input string. If the resulting position is out of bound an :exc:`IndexError` will be raised." msgstr "" -#: ../../library/codecs.rst:468 -msgid "" -"Previously registered error handlers (including the standard error handlers) " -"can be looked up by name:" +msgid "Decoding and translating works similarly, except :exc:`UnicodeDecodeError` or :exc:`UnicodeTranslateError` will be passed to the handler and that the replacement from the error handler will be put into the output directly." +msgstr "" + +msgid "Previously registered error handlers (including the standard error handlers) can be looked up by name:" msgstr "" -#: ../../library/codecs.rst:473 msgid "Return the error handler previously registered under the name *name*." msgstr "" -#: ../../library/codecs.rst:475 msgid "Raises a :exc:`LookupError` in case the handler cannot be found." msgstr "" -#: ../../library/codecs.rst:477 -msgid "" -"The following standard error handlers are also made available as module " -"level functions:" +msgid "The following standard error handlers are also made available as module level functions:" msgstr "" -#: ../../library/codecs.rst:482 msgid "Implements the ``'strict'`` error handling." msgstr "" -#: ../../library/codecs.rst:484 msgid "Each encoding or decoding error raises a :exc:`UnicodeError`." msgstr "" -#: ../../library/codecs.rst:489 msgid "Implements the ``'ignore'`` error handling." msgstr "" -#: ../../library/codecs.rst:491 -msgid "" -"Malformed data is ignored; encoding or decoding is continued without further " -"notice." +msgid "Malformed data is ignored; encoding or decoding is continued without further notice." msgstr "" -#: ../../library/codecs.rst:497 msgid "Implements the ``'replace'`` error handling." msgstr "" -#: ../../library/codecs.rst:499 -msgid "" -"Substitutes ``?`` (ASCII character) for encoding errors or ``�`` (U+FFFD, " -"the official REPLACEMENT CHARACTER) for decoding errors." +msgid "Substitutes ``?`` (ASCII character) for encoding errors or ``�`` (U+FFFD, the official REPLACEMENT CHARACTER) for decoding errors." msgstr "" -#: ../../library/codecs.rst:505 msgid "Implements the ``'backslashreplace'`` error handling." msgstr "" -#: ../../library/codecs.rst:507 -msgid "" -"Malformed data is replaced by a backslashed escape sequence. On encoding, " -"use the hexadecimal form of Unicode code point with formats :samp:`\\\\x{hh}" -"` :samp:`\\\\u{xxxx}` :samp:`\\\\U{xxxxxxxx}`. On decoding, use the " -"hexadecimal form of byte value with format :samp:`\\\\x{hh}`." +msgid "Malformed data is replaced by a backslashed escape sequence. On encoding, use the hexadecimal form of Unicode code point with formats :samp:`\\\\x{hh}` :samp:`\\\\u{xxxx}` :samp:`\\\\U{xxxxxxxx}`. On decoding, use the hexadecimal form of byte value with format :samp:`\\\\x{hh}`." msgstr "" -#: ../../library/codecs.rst:513 msgid "Works with decoding and translating." msgstr "" -#: ../../library/codecs.rst:519 -msgid "" -"Implements the ``'xmlcharrefreplace'`` error handling (for encoding " -"within :term:`text encoding` only)." +msgid "Implements the ``'xmlcharrefreplace'`` error handling (for encoding within :term:`text encoding` only)." msgstr "" -#: ../../library/codecs.rst:522 -msgid "" -"The unencodable character is replaced by an appropriate XML/HTML numeric " -"character reference, which is a decimal form of Unicode code point with " -"format :samp:`&#{num};` ." +msgid "The unencodable character is replaced by an appropriate XML/HTML numeric character reference, which is a decimal form of Unicode code point with format :samp:`&#{num};` ." msgstr "" -#: ../../library/codecs.rst:529 -msgid "" -"Implements the ``'namereplace'`` error handling (for encoding " -"within :term:`text encoding` only)." +msgid "Implements the ``'namereplace'`` error handling (for encoding within :term:`text encoding` only)." msgstr "" -#: ../../library/codecs.rst:532 -msgid "" -"The unencodable character is replaced by a ``\\N{...}`` escape sequence. The " -"set of characters that appear in the braces is the Name property from " -"Unicode Character Database. For example, the German lowercase letter ``'ß'`` " -"will be converted to byte sequence ``\\N{LATIN SMALL LETTER SHARP S}`` ." +msgid "The unencodable character is replaced by a ``\\N{...}`` escape sequence. The set of characters that appear in the braces is the Name property from Unicode Character Database. For example, the German lowercase letter ``'ß'`` will be converted to byte sequence ``\\N{LATIN SMALL LETTER SHARP S}`` ." msgstr "" -#: ../../library/codecs.rst:543 msgid "Stateless Encoding and Decoding" msgstr "" -#: ../../library/codecs.rst:545 -msgid "" -"The base :class:`Codec` class defines these methods which also define the " -"function interfaces of the stateless encoder and decoder:" +msgid "The base :class:`Codec` class defines these methods which also define the function interfaces of the stateless encoder and decoder:" msgstr "" -#: ../../library/codecs.rst:553 -msgid "" -"Encodes the object *input* and returns a tuple (output object, length " -"consumed). For instance, :term:`text encoding` converts a string object to a " -"bytes object using a particular character set encoding (e.g., ``cp1252`` or " -"``iso-8859-1``)." +msgid "Encodes the object *input* and returns a tuple (output object, length consumed). For instance, :term:`text encoding` converts a string object to a bytes object using a particular character set encoding (e.g., ``cp1252`` or ``iso-8859-1``)." msgstr "" -#: ../../library/codecs.rst:558 ../../library/codecs.rst:580 -msgid "" -"The *errors* argument defines the error handling to apply. It defaults to " -"``'strict'`` handling." +msgid "The *errors* argument defines the error handling to apply. It defaults to ``'strict'`` handling." msgstr "" -#: ../../library/codecs.rst:561 -msgid "" -"The method may not store state in the :class:`Codec` instance. " -"Use :class:`StreamWriter` for codecs which have to keep state in order to " -"make encoding efficient." +msgid "The method may not store state in the :class:`Codec` instance. Use :class:`StreamWriter` for codecs which have to keep state in order to make encoding efficient." msgstr "" -#: ../../library/codecs.rst:565 -msgid "" -"The encoder must be able to handle zero length input and return an empty " -"object of the output object type in this situation." +msgid "The encoder must be able to handle zero length input and return an empty object of the output object type in this situation." msgstr "" -#: ../../library/codecs.rst:571 -msgid "" -"Decodes the object *input* and returns a tuple (output object, length " -"consumed). For instance, for a :term:`text encoding`, decoding converts a " -"bytes object encoded using a particular character set encoding to a string " -"object." +msgid "Decodes the object *input* and returns a tuple (output object, length consumed). For instance, for a :term:`text encoding`, decoding converts a bytes object encoded using a particular character set encoding to a string object." msgstr "" -#: ../../library/codecs.rst:576 -msgid "" -"For text encodings and bytes-to-bytes codecs, *input* must be a bytes object " -"or one which provides the read-only buffer interface -- for example, buffer " -"objects and memory mapped files." +msgid "For text encodings and bytes-to-bytes codecs, *input* must be a bytes object or one which provides the read-only buffer interface -- for example, buffer objects and memory mapped files." msgstr "" -#: ../../library/codecs.rst:583 -msgid "" -"The method may not store state in the :class:`Codec` instance. " -"Use :class:`StreamReader` for codecs which have to keep state in order to " -"make decoding efficient." +msgid "The method may not store state in the :class:`Codec` instance. Use :class:`StreamReader` for codecs which have to keep state in order to make decoding efficient." msgstr "" -#: ../../library/codecs.rst:587 -msgid "" -"The decoder must be able to handle zero length input and return an empty " -"object of the output object type in this situation." +msgid "The decoder must be able to handle zero length input and return an empty object of the output object type in this situation." msgstr "" -#: ../../library/codecs.rst:592 msgid "Incremental Encoding and Decoding" msgstr "" -#: ../../library/codecs.rst:594 -msgid "" -"The :class:`IncrementalEncoder` and :class:`IncrementalDecoder` classes " -"provide the basic interface for incremental encoding and decoding. Encoding/" -"decoding the input isn't done with one call to the stateless encoder/decoder " -"function, but with multiple calls to " -"the :meth:`~IncrementalEncoder.encode`/:meth:`~IncrementalDecoder.decode` " -"method of the incremental encoder/decoder. The incremental encoder/decoder " -"keeps track of the encoding/decoding process during method calls." +msgid "The :class:`IncrementalEncoder` and :class:`IncrementalDecoder` classes provide the basic interface for incremental encoding and decoding. Encoding/decoding the input isn't done with one call to the stateless encoder/decoder function, but with multiple calls to the :meth:`~IncrementalEncoder.encode`/:meth:`~IncrementalDecoder.decode` method of the incremental encoder/decoder. The incremental encoder/decoder keeps track of the encoding/decoding process during method calls." msgstr "" -#: ../../library/codecs.rst:602 -msgid "" -"The joined output of calls to " -"the :meth:`~IncrementalEncoder.encode`/:meth:`~IncrementalDecoder.decode` " -"method is the same as if all the single inputs were joined into one, and " -"this input was encoded/decoded with the stateless encoder/decoder." +msgid "The joined output of calls to the :meth:`~IncrementalEncoder.encode`/:meth:`~IncrementalDecoder.decode` method is the same as if all the single inputs were joined into one, and this input was encoded/decoded with the stateless encoder/decoder." msgstr "" -#: ../../library/codecs.rst:611 msgid "IncrementalEncoder Objects" msgstr "" -#: ../../library/codecs.rst:613 -msgid "" -"The :class:`IncrementalEncoder` class is used for encoding an input in " -"multiple steps. It defines the following methods which every incremental " -"encoder must define in order to be compatible with the Python codec registry." +msgid "The :class:`IncrementalEncoder` class is used for encoding an input in multiple steps. It defines the following methods which every incremental encoder must define in order to be compatible with the Python codec registry." msgstr "" -#: ../../library/codecs.rst:620 msgid "Constructor for an :class:`IncrementalEncoder` instance." msgstr "" -#: ../../library/codecs.rst:622 -msgid "" -"All incremental encoders must provide this constructor interface. They are " -"free to add additional keyword arguments, but only the ones defined here are " -"used by the Python codec registry." +msgid "All incremental encoders must provide this constructor interface. They are free to add additional keyword arguments, but only the ones defined here are used by the Python codec registry." msgstr "" -#: ../../library/codecs.rst:626 -msgid "" -"The :class:`IncrementalEncoder` may implement different error handling " -"schemes by providing the *errors* keyword argument. See :ref:`error-" -"handlers` for possible values." +msgid "The :class:`IncrementalEncoder` may implement different error handling schemes by providing the *errors* keyword argument. See :ref:`error-handlers` for possible values." msgstr "" -#: ../../library/codecs.rst:630 -msgid "" -"The *errors* argument will be assigned to an attribute of the same name. " -"Assigning to this attribute makes it possible to switch between different " -"error handling strategies during the lifetime of " -"the :class:`IncrementalEncoder` object." +msgid "The *errors* argument will be assigned to an attribute of the same name. Assigning to this attribute makes it possible to switch between different error handling strategies during the lifetime of the :class:`IncrementalEncoder` object." msgstr "" -#: ../../library/codecs.rst:638 -msgid "" -"Encodes *object* (taking the current state of the encoder into account) and " -"returns the resulting encoded object. If this is the last call " -"to :meth:`encode` *final* must be true (the default is false)." +msgid "Encodes *object* (taking the current state of the encoder into account) and returns the resulting encoded object. If this is the last call to :meth:`encode` *final* must be true (the default is false)." msgstr "" -#: ../../library/codecs.rst:645 -msgid "" -"Reset the encoder to the initial state. The output is discarded: call " -"``.encode(object, final=True)``, passing an empty byte or text string if " -"necessary, to reset the encoder and to get the output." +msgid "Reset the encoder to the initial state. The output is discarded: call ``.encode(object, final=True)``, passing an empty byte or text string if necessary, to reset the encoder and to get the output." msgstr "" -#: ../../library/codecs.rst:652 -msgid "" -"Return the current state of the encoder which must be an integer. The " -"implementation should make sure that ``0`` is the most common state. (States " -"that are more complicated than integers can be converted into an integer by " -"marshaling/pickling the state and encoding the bytes of the resulting string " -"into an integer.)" +msgid "Return the current state of the encoder which must be an integer. The implementation should make sure that ``0`` is the most common state. (States that are more complicated than integers can be converted into an integer by marshaling/pickling the state and encoding the bytes of the resulting string into an integer.)" msgstr "" -#: ../../library/codecs.rst:661 -msgid "" -"Set the state of the encoder to *state*. *state* must be an encoder state " -"returned by :meth:`getstate`." +msgid "Set the state of the encoder to *state*. *state* must be an encoder state returned by :meth:`getstate`." msgstr "" -#: ../../library/codecs.rst:668 msgid "IncrementalDecoder Objects" msgstr "" -#: ../../library/codecs.rst:670 -msgid "" -"The :class:`IncrementalDecoder` class is used for decoding an input in " -"multiple steps. It defines the following methods which every incremental " -"decoder must define in order to be compatible with the Python codec registry." +msgid "The :class:`IncrementalDecoder` class is used for decoding an input in multiple steps. It defines the following methods which every incremental decoder must define in order to be compatible with the Python codec registry." msgstr "" -#: ../../library/codecs.rst:677 msgid "Constructor for an :class:`IncrementalDecoder` instance." msgstr "" -#: ../../library/codecs.rst:679 -msgid "" -"All incremental decoders must provide this constructor interface. They are " -"free to add additional keyword arguments, but only the ones defined here are " -"used by the Python codec registry." +msgid "All incremental decoders must provide this constructor interface. They are free to add additional keyword arguments, but only the ones defined here are used by the Python codec registry." msgstr "" -#: ../../library/codecs.rst:683 -msgid "" -"The :class:`IncrementalDecoder` may implement different error handling " -"schemes by providing the *errors* keyword argument. See :ref:`error-" -"handlers` for possible values." +msgid "The :class:`IncrementalDecoder` may implement different error handling schemes by providing the *errors* keyword argument. See :ref:`error-handlers` for possible values." msgstr "" -#: ../../library/codecs.rst:687 -msgid "" -"The *errors* argument will be assigned to an attribute of the same name. " -"Assigning to this attribute makes it possible to switch between different " -"error handling strategies during the lifetime of " -"the :class:`IncrementalDecoder` object." +msgid "The *errors* argument will be assigned to an attribute of the same name. Assigning to this attribute makes it possible to switch between different error handling strategies during the lifetime of the :class:`IncrementalDecoder` object." msgstr "" -#: ../../library/codecs.rst:695 -msgid "" -"Decodes *object* (taking the current state of the decoder into account) and " -"returns the resulting decoded object. If this is the last call " -"to :meth:`decode` *final* must be true (the default is false). If *final* is " -"true the decoder must decode the input completely and must flush all " -"buffers. If this isn't possible (e.g. because of incomplete byte sequences " -"at the end of the input) it must initiate error handling just like in the " -"stateless case (which might raise an exception)." +msgid "Decodes *object* (taking the current state of the decoder into account) and returns the resulting decoded object. If this is the last call to :meth:`decode` *final* must be true (the default is false). If *final* is true the decoder must decode the input completely and must flush all buffers. If this isn't possible (e.g. because of incomplete byte sequences at the end of the input) it must initiate error handling just like in the stateless case (which might raise an exception)." msgstr "" -#: ../../library/codecs.rst:706 msgid "Reset the decoder to the initial state." msgstr "" -#: ../../library/codecs.rst:711 -msgid "" -"Return the current state of the decoder. This must be a tuple with two " -"items, the first must be the buffer containing the still undecoded input. " -"The second must be an integer and can be additional state info. (The " -"implementation should make sure that ``0`` is the most common additional " -"state info.) If this additional state info is ``0`` it must be possible to " -"set the decoder to the state which has no input buffered and ``0`` as the " -"additional state info, so that feeding the previously buffered input to the " -"decoder returns it to the previous state without producing any output. " -"(Additional state info that is more complicated than integers can be " -"converted into an integer by marshaling/pickling the info and encoding the " -"bytes of the resulting string into an integer.)" -msgstr "" - -#: ../../library/codecs.rst:726 -msgid "" -"Set the state of the decoder to *state*. *state* must be a decoder state " -"returned by :meth:`getstate`." +msgid "Return the current state of the decoder. This must be a tuple with two items, the first must be the buffer containing the still undecoded input. The second must be an integer and can be additional state info. (The implementation should make sure that ``0`` is the most common additional state info.) If this additional state info is ``0`` it must be possible to set the decoder to the state which has no input buffered and ``0`` as the additional state info, so that feeding the previously buffered input to the decoder returns it to the previous state without producing any output. (Additional state info that is more complicated than integers can be converted into an integer by marshaling/pickling the info and encoding the bytes of the resulting string into an integer.)" +msgstr "" + +msgid "Set the state of the decoder to *state*. *state* must be a decoder state returned by :meth:`getstate`." msgstr "" -#: ../../library/codecs.rst:731 msgid "Stream Encoding and Decoding" msgstr "" -#: ../../library/codecs.rst:734 -msgid "" -"The :class:`StreamWriter` and :class:`StreamReader` classes provide generic " -"working interfaces which can be used to implement new encoding submodules " -"very easily. See :mod:`!encodings.utf_8` for an example of how this is done." +msgid "The :class:`StreamWriter` and :class:`StreamReader` classes provide generic working interfaces which can be used to implement new encoding submodules very easily. See :mod:`!encodings.utf_8` for an example of how this is done." msgstr "" -#: ../../library/codecs.rst:742 msgid "StreamWriter Objects" msgstr "" -#: ../../library/codecs.rst:744 -msgid "" -"The :class:`StreamWriter` class is a subclass of :class:`Codec` and defines " -"the following methods which every stream writer must define in order to be " -"compatible with the Python codec registry." +msgid "The :class:`StreamWriter` class is a subclass of :class:`Codec` and defines the following methods which every stream writer must define in order to be compatible with the Python codec registry." msgstr "" -#: ../../library/codecs.rst:751 msgid "Constructor for a :class:`StreamWriter` instance." msgstr "" -#: ../../library/codecs.rst:753 -msgid "" -"All stream writers must provide this constructor interface. They are free to " -"add additional keyword arguments, but only the ones defined here are used by " -"the Python codec registry." +msgid "All stream writers must provide this constructor interface. They are free to add additional keyword arguments, but only the ones defined here are used by the Python codec registry." msgstr "" -#: ../../library/codecs.rst:757 -msgid "" -"The *stream* argument must be a file-like object open for writing text or " -"binary data, as appropriate for the specific codec." +msgid "The *stream* argument must be a file-like object open for writing text or binary data, as appropriate for the specific codec." msgstr "" -#: ../../library/codecs.rst:760 -msgid "" -"The :class:`StreamWriter` may implement different error handling schemes by " -"providing the *errors* keyword argument. See :ref:`error-handlers` for the " -"standard error handlers the underlying stream codec may support." +msgid "The :class:`StreamWriter` may implement different error handling schemes by providing the *errors* keyword argument. See :ref:`error-handlers` for the standard error handlers the underlying stream codec may support." msgstr "" -#: ../../library/codecs.rst:764 -msgid "" -"The *errors* argument will be assigned to an attribute of the same name. " -"Assigning to this attribute makes it possible to switch between different " -"error handling strategies during the lifetime of the :class:`StreamWriter` " -"object." +msgid "The *errors* argument will be assigned to an attribute of the same name. Assigning to this attribute makes it possible to switch between different error handling strategies during the lifetime of the :class:`StreamWriter` object." msgstr "" -#: ../../library/codecs.rst:770 msgid "Writes the object's contents encoded to the stream." msgstr "" -#: ../../library/codecs.rst:775 -msgid "" -"Writes the concatenated iterable of strings to the stream (possibly by " -"reusing the :meth:`write` method). Infinite or very large iterables are not " -"supported. The standard bytes-to-bytes codecs do not support this method." +msgid "Writes the concatenated iterable of strings to the stream (possibly by reusing the :meth:`write` method). Infinite or very large iterables are not supported. The standard bytes-to-bytes codecs do not support this method." msgstr "" -#: ../../library/codecs.rst:783 ../../library/codecs.rst:878 msgid "Resets the codec buffers used for keeping internal state." msgstr "" -#: ../../library/codecs.rst:785 -msgid "" -"Calling this method should ensure that the data on the output is put into a " -"clean state that allows appending of new fresh data without having to rescan " -"the whole stream to recover state." +msgid "Calling this method should ensure that the data on the output is put into a clean state that allows appending of new fresh data without having to rescan the whole stream to recover state." msgstr "" -#: ../../library/codecs.rst:790 -msgid "" -"In addition to the above methods, the :class:`StreamWriter` must also " -"inherit all other methods and attributes from the underlying stream." +msgid "In addition to the above methods, the :class:`StreamWriter` must also inherit all other methods and attributes from the underlying stream." msgstr "" -#: ../../library/codecs.rst:797 msgid "StreamReader Objects" msgstr "" -#: ../../library/codecs.rst:799 -msgid "" -"The :class:`StreamReader` class is a subclass of :class:`Codec` and defines " -"the following methods which every stream reader must define in order to be " -"compatible with the Python codec registry." +msgid "The :class:`StreamReader` class is a subclass of :class:`Codec` and defines the following methods which every stream reader must define in order to be compatible with the Python codec registry." msgstr "" -#: ../../library/codecs.rst:806 msgid "Constructor for a :class:`StreamReader` instance." msgstr "" -#: ../../library/codecs.rst:808 -msgid "" -"All stream readers must provide this constructor interface. They are free to " -"add additional keyword arguments, but only the ones defined here are used by " -"the Python codec registry." +msgid "All stream readers must provide this constructor interface. They are free to add additional keyword arguments, but only the ones defined here are used by the Python codec registry." msgstr "" -#: ../../library/codecs.rst:812 -msgid "" -"The *stream* argument must be a file-like object open for reading text or " -"binary data, as appropriate for the specific codec." +msgid "The *stream* argument must be a file-like object open for reading text or binary data, as appropriate for the specific codec." msgstr "" -#: ../../library/codecs.rst:815 -msgid "" -"The :class:`StreamReader` may implement different error handling schemes by " -"providing the *errors* keyword argument. See :ref:`error-handlers` for the " -"standard error handlers the underlying stream codec may support." +msgid "The :class:`StreamReader` may implement different error handling schemes by providing the *errors* keyword argument. See :ref:`error-handlers` for the standard error handlers the underlying stream codec may support." msgstr "" -#: ../../library/codecs.rst:819 -msgid "" -"The *errors* argument will be assigned to an attribute of the same name. " -"Assigning to this attribute makes it possible to switch between different " -"error handling strategies during the lifetime of the :class:`StreamReader` " -"object." +msgid "The *errors* argument will be assigned to an attribute of the same name. Assigning to this attribute makes it possible to switch between different error handling strategies during the lifetime of the :class:`StreamReader` object." msgstr "" -#: ../../library/codecs.rst:823 -msgid "" -"The set of allowed values for the *errors* argument can be extended " -"with :func:`register_error`." +msgid "The set of allowed values for the *errors* argument can be extended with :func:`register_error`." msgstr "" -#: ../../library/codecs.rst:829 msgid "Decodes data from the stream and returns the resulting object." msgstr "" -#: ../../library/codecs.rst:831 -msgid "" -"The *chars* argument indicates the number of decoded code points or bytes to " -"return. The :func:`read` method will never return more data than requested, " -"but it might return less, if there is not enough available." +msgid "The *chars* argument indicates the number of decoded code points or bytes to return. The :func:`read` method will never return more data than requested, but it might return less, if there is not enough available." msgstr "" -#: ../../library/codecs.rst:836 -msgid "" -"The *size* argument indicates the approximate maximum number of encoded " -"bytes or code points to read for decoding. The decoder can modify this " -"setting as appropriate. The default value -1 indicates to read and decode as " -"much as possible. This parameter is intended to prevent having to decode " -"huge files in one step." +msgid "The *size* argument indicates the approximate maximum number of encoded bytes or code points to read for decoding. The decoder can modify this setting as appropriate. The default value -1 indicates to read and decode as much as possible. This parameter is intended to prevent having to decode huge files in one step." msgstr "" -#: ../../library/codecs.rst:843 -msgid "" -"The *firstline* flag indicates that it would be sufficient to only return " -"the first line, if there are decoding errors on later lines." +msgid "The *firstline* flag indicates that it would be sufficient to only return the first line, if there are decoding errors on later lines." msgstr "" -#: ../../library/codecs.rst:847 -msgid "" -"The method should use a greedy read strategy meaning that it should read as " -"much data as is allowed within the definition of the encoding and the given " -"size, e.g. if optional encoding endings or state markers are available on " -"the stream, these should be read too." +msgid "The method should use a greedy read strategy meaning that it should read as much data as is allowed within the definition of the encoding and the given size, e.g. if optional encoding endings or state markers are available on the stream, these should be read too." msgstr "" -#: ../../library/codecs.rst:855 msgid "Read one line from the input stream and return the decoded data." msgstr "" -#: ../../library/codecs.rst:857 -msgid "" -"*size*, if given, is passed as size argument to the stream's :meth:`read` " -"method." +msgid "*size*, if given, is passed as size argument to the stream's :meth:`read` method." msgstr "" -#: ../../library/codecs.rst:860 -msgid "" -"If *keepends* is false line-endings will be stripped from the lines returned." +msgid "If *keepends* is false line-endings will be stripped from the lines returned." msgstr "" -#: ../../library/codecs.rst:866 -msgid "" -"Read all lines available on the input stream and return them as a list of " -"lines." +msgid "Read all lines available on the input stream and return them as a list of lines." msgstr "" -#: ../../library/codecs.rst:869 -msgid "" -"Line-endings are implemented using the codec's :meth:`decode` method and are " -"included in the list entries if *keepends* is true." +msgid "Line-endings are implemented using the codec's :meth:`decode` method and are included in the list entries if *keepends* is true." msgstr "" -#: ../../library/codecs.rst:872 -msgid "" -"*sizehint*, if given, is passed as the *size* argument to the " -"stream's :meth:`read` method." +msgid "*sizehint*, if given, is passed as the *size* argument to the stream's :meth:`read` method." msgstr "" -#: ../../library/codecs.rst:880 -msgid "" -"Note that no stream repositioning should take place. This method is " -"primarily intended to be able to recover from decoding errors." +msgid "Note that no stream repositioning should take place. This method is primarily intended to be able to recover from decoding errors." msgstr "" -#: ../../library/codecs.rst:884 -msgid "" -"In addition to the above methods, the :class:`StreamReader` must also " -"inherit all other methods and attributes from the underlying stream." +msgid "In addition to the above methods, the :class:`StreamReader` must also inherit all other methods and attributes from the underlying stream." msgstr "" -#: ../../library/codecs.rst:890 msgid "StreamReaderWriter Objects" msgstr "" -#: ../../library/codecs.rst:892 -msgid "" -"The :class:`StreamReaderWriter` is a convenience class that allows wrapping " -"streams which work in both read and write modes." +msgid "The :class:`StreamReaderWriter` is a convenience class that allows wrapping streams which work in both read and write modes." msgstr "" -#: ../../library/codecs.rst:895 ../../library/codecs.rst:919 -msgid "" -"The design is such that one can use the factory functions returned by " -"the :func:`lookup` function to construct the instance." +msgid "The design is such that one can use the factory functions returned by the :func:`lookup` function to construct the instance." msgstr "" -#: ../../library/codecs.rst:901 -msgid "" -"Creates a :class:`StreamReaderWriter` instance. *stream* must be a file-like " -"object. *Reader* and *Writer* must be factory functions or classes providing " -"the :class:`StreamReader` and :class:`StreamWriter` interface resp. Error " -"handling is done in the same way as defined for the stream readers and " -"writers." +msgid "Creates a :class:`StreamReaderWriter` instance. *stream* must be a file-like object. *Reader* and *Writer* must be factory functions or classes providing the :class:`StreamReader` and :class:`StreamWriter` interface resp. Error handling is done in the same way as defined for the stream readers and writers." msgstr "" -#: ../../library/codecs.rst:906 -msgid "" -":class:`StreamReaderWriter` instances define the combined interfaces " -"of :class:`StreamReader` and :class:`StreamWriter` classes. They inherit all " -"other methods and attributes from the underlying stream." +msgid ":class:`StreamReaderWriter` instances define the combined interfaces of :class:`StreamReader` and :class:`StreamWriter` classes. They inherit all other methods and attributes from the underlying stream." msgstr "" -#: ../../library/codecs.rst:914 msgid "StreamRecoder Objects" msgstr "" -#: ../../library/codecs.rst:916 -msgid "" -"The :class:`StreamRecoder` translates data from one encoding to another, " -"which is sometimes useful when dealing with different encoding environments." +msgid "The :class:`StreamRecoder` translates data from one encoding to another, which is sometimes useful when dealing with different encoding environments." msgstr "" -#: ../../library/codecs.rst:925 -msgid "" -"Creates a :class:`StreamRecoder` instance which implements a two-way " -"conversion: *encode* and *decode* work on the frontend — the data visible to " -"code calling :meth:`~StreamReader.read` and :meth:`~StreamWriter.write`, " -"while *Reader* and *Writer* work on the backend — the data in *stream*." +msgid "Creates a :class:`StreamRecoder` instance which implements a two-way conversion: *encode* and *decode* work on the frontend — the data visible to code calling :meth:`~StreamReader.read` and :meth:`~StreamWriter.write`, while *Reader* and *Writer* work on the backend — the data in *stream*." msgstr "" -#: ../../library/codecs.rst:931 -msgid "" -"You can use these objects to do transparent transcodings, e.g., from Latin-1 " -"to UTF-8 and back." +msgid "You can use these objects to do transparent transcodings, e.g., from Latin-1 to UTF-8 and back." msgstr "" -#: ../../library/codecs.rst:934 msgid "The *stream* argument must be a file-like object." msgstr "" -#: ../../library/codecs.rst:936 -msgid "" -"The *encode* and *decode* arguments must adhere to the :class:`Codec` " -"interface. *Reader* and *Writer* must be factory functions or classes " -"providing objects of the :class:`StreamReader` and :class:`StreamWriter` " -"interface respectively." +msgid "The *encode* and *decode* arguments must adhere to the :class:`Codec` interface. *Reader* and *Writer* must be factory functions or classes providing objects of the :class:`StreamReader` and :class:`StreamWriter` interface respectively." msgstr "" -#: ../../library/codecs.rst:941 -msgid "" -"Error handling is done in the same way as defined for the stream readers and " -"writers." +msgid "Error handling is done in the same way as defined for the stream readers and writers." msgstr "" -#: ../../library/codecs.rst:945 -msgid "" -":class:`StreamRecoder` instances define the combined interfaces " -"of :class:`StreamReader` and :class:`StreamWriter` classes. They inherit all " -"other methods and attributes from the underlying stream." +msgid ":class:`StreamRecoder` instances define the combined interfaces of :class:`StreamReader` and :class:`StreamWriter` classes. They inherit all other methods and attributes from the underlying stream." msgstr "" -#: ../../library/codecs.rst:953 msgid "Encodings and Unicode" msgstr "" -#: ../../library/codecs.rst:955 -msgid "" -"Strings are stored internally as sequences of code points in range " -"``U+0000``--``U+10FFFF``. (See :pep:`393` for more details about the " -"implementation.) Once a string object is used outside of CPU and memory, " -"endianness and how these arrays are stored as bytes become an issue. As with " -"other codecs, serialising a string into a sequence of bytes is known as " -"*encoding*, and recreating the string from the sequence of bytes is known as " -"*decoding*. There are a variety of different text serialisation codecs, " -"which are collectivity referred to as :term:`text encodings `." +msgid "Strings are stored internally as sequences of code points in range ``U+0000``--``U+10FFFF``. (See :pep:`393` for more details about the implementation.) Once a string object is used outside of CPU and memory, endianness and how these arrays are stored as bytes become an issue. As with other codecs, serialising a string into a sequence of bytes is known as *encoding*, and recreating the string from the sequence of bytes is known as *decoding*. There are a variety of different text serialisation codecs, which are collectivity referred to as :term:`text encodings `." msgstr "" -#: ../../library/codecs.rst:965 -msgid "" -"The simplest text encoding (called ``'latin-1'`` or ``'iso-8859-1'``) maps " -"the code points 0--255 to the bytes ``0x0``--``0xff``, which means that a " -"string object that contains code points above ``U+00FF`` can't be encoded " -"with this codec. Doing so will raise a :exc:`UnicodeEncodeError` that looks " -"like the following (although the details of the error message may differ): " -"``UnicodeEncodeError: 'latin-1' codec can't encode character '\\u1234' in " -"position 3: ordinal not in range(256)``." +msgid "The simplest text encoding (called ``'latin-1'`` or ``'iso-8859-1'``) maps the code points 0--255 to the bytes ``0x0``--``0xff``, which means that a string object that contains code points above ``U+00FF`` can't be encoded with this codec. Doing so will raise a :exc:`UnicodeEncodeError` that looks like the following (although the details of the error message may differ): ``UnicodeEncodeError: 'latin-1' codec can't encode character '\\u1234' in position 3: ordinal not in range(256)``." msgstr "" -#: ../../library/codecs.rst:973 -msgid "" -"There's another group of encodings (the so called charmap encodings) that " -"choose a different subset of all Unicode code points and how these code " -"points are mapped to the bytes ``0x0``--``0xff``. To see how this is done " -"simply open e.g. :file:`encodings/cp1252.py` (which is an encoding that is " -"used primarily on Windows). There's a string constant with 256 characters " -"that shows you which character is mapped to which byte value." +msgid "There's another group of encodings (the so called charmap encodings) that choose a different subset of all Unicode code points and how these code points are mapped to the bytes ``0x0``--``0xff``. To see how this is done simply open e.g. :file:`encodings/cp1252.py` (which is an encoding that is used primarily on Windows). There's a string constant with 256 characters that shows you which character is mapped to which byte value." msgstr "" -#: ../../library/codecs.rst:980 -msgid "" -"All of these encodings can only encode 256 of the 1114112 code points " -"defined in Unicode. A simple and straightforward way that can store each " -"Unicode code point, is to store each code point as four consecutive bytes. " -"There are two possibilities: store the bytes in big endian or in little " -"endian order. These two encodings are called ``UTF-32-BE`` and ``UTF-32-LE`` " -"respectively. Their disadvantage is that if, for example, you use ``UTF-32-" -"BE`` on a little endian machine you will always have to swap bytes on " -"encoding and decoding. Python's ``UTF-16`` and ``UTF-32`` codecs avoid this " -"problem by using the platform's native byte order when no BOM is present. " -"Python follows prevailing platform practice, so native-endian data round-" -"trips without redundant byte swapping, even though the Unicode Standard " -"defaults to big-endian when the byte order is unspecified. When these bytes " -"are read by a CPU with a different endianness, the bytes have to be swapped. " -"To be able to detect the endianness of a ``UTF-16`` or ``UTF-32`` byte " -"sequence, a BOM (\"Byte Order Mark\") is used. This is the Unicode character " -"``U+FEFF``. This character can be prepended to every ``UTF-16`` or " -"``UTF-32`` byte sequence. The byte swapped version of this character " -"(``0xFFFE``) is an illegal character that may not appear in a Unicode text. " -"When the first character of a ``UTF-16`` or ``UTF-32`` byte sequence is " -"``U+FFFE``, the bytes have to be swapped on decoding." -msgstr "" - -#: ../../library/codecs.rst:1001 -msgid "" -"Unfortunately the character ``U+FEFF`` had a second purpose as a ``ZERO " -"WIDTH NO-BREAK SPACE``: a character that has no width and doesn't allow a " -"word to be split. It can e.g. be used to give hints to a ligature algorithm. " -"With Unicode 4.0 using ``U+FEFF`` as a ``ZERO WIDTH NO-BREAK SPACE`` has " -"been deprecated (with ``U+2060`` (``WORD JOINER``) assuming this role). " -"Nevertheless Unicode software still must be able to handle ``U+FEFF`` in " -"both roles: as a BOM it's a device to determine the storage layout of the " -"encoded bytes, and vanishes once the byte sequence has been decoded into a " -"string; as a ``ZERO WIDTH NO-BREAK SPACE`` it's a normal character that will " -"be decoded like any other." -msgstr "" - -#: ../../library/codecs.rst:1011 -msgid "" -"There's another encoding that is able to encode the full range of Unicode " -"characters: UTF-8. UTF-8 is an 8-bit encoding, which means there are no " -"issues with byte order in UTF-8. Each byte in a UTF-8 byte sequence consists " -"of two parts: marker bits (the most significant bits) and payload bits. The " -"marker bits are a sequence of zero to four ``1`` bits followed by a ``0`` " -"bit. Unicode characters are encoded like this (with x being payload bits, " -"which when concatenated give the Unicode character):" +msgid "All of these encodings can only encode 256 of the 1114112 code points defined in Unicode. A simple and straightforward way that can store each Unicode code point, is to store each code point as four consecutive bytes. There are two possibilities: store the bytes in big endian or in little endian order. These two encodings are called ``UTF-32-BE`` and ``UTF-32-LE`` respectively. Their disadvantage is that if, for example, you use ``UTF-32-BE`` on a little endian machine you will always have to swap bytes on encoding and decoding. Python's ``UTF-16`` and ``UTF-32`` codecs avoid this problem by using the platform's native byte order when no BOM is present. Python follows prevailing platform practice, so native-endian data round-trips without redundant byte swapping, even though the Unicode Standard defaults to big-endian when the byte order is unspecified. When these bytes are read by a CPU with a different endianness, the bytes have to be swapped. To be able to detect the endianness of a ``UTF-16`` or ``UTF-32`` byte sequence, a BOM (\"Byte Order Mark\") is used. This is the Unicode character ``U+FEFF``. This character can be prepended to every ``UTF-16`` or ``UTF-32`` byte sequence. The byte swapped version of this character (``0xFFFE``) is an illegal character that may not appear in a Unicode text. When the first character of a ``UTF-16`` or ``UTF-32`` byte sequence is ``U+FFFE``, the bytes have to be swapped on decoding." +msgstr "" + +msgid "Unfortunately the character ``U+FEFF`` had a second purpose as a ``ZERO WIDTH NO-BREAK SPACE``: a character that has no width and doesn't allow a word to be split. It can e.g. be used to give hints to a ligature algorithm. With Unicode 4.0 using ``U+FEFF`` as a ``ZERO WIDTH NO-BREAK SPACE`` has been deprecated (with ``U+2060`` (``WORD JOINER``) assuming this role). Nevertheless Unicode software still must be able to handle ``U+FEFF`` in both roles: as a BOM it's a device to determine the storage layout of the encoded bytes, and vanishes once the byte sequence has been decoded into a string; as a ``ZERO WIDTH NO-BREAK SPACE`` it's a normal character that will be decoded like any other." +msgstr "" + +msgid "There's another encoding that is able to encode the full range of Unicode characters: UTF-8. UTF-8 is an 8-bit encoding, which means there are no issues with byte order in UTF-8. Each byte in a UTF-8 byte sequence consists of two parts: marker bits (the most significant bits) and payload bits. The marker bits are a sequence of zero to four ``1`` bits followed by a ``0`` bit. Unicode characters are encoded like this (with x being payload bits, which when concatenated give the Unicode character):" msgstr "" -#: ../../library/codecs.rst:1020 msgid "Range" msgstr "" -#: ../../library/codecs.rst:1020 msgid "Encoding" msgstr "" -#: ../../library/codecs.rst:1022 msgid "``U-00000000`` ... ``U-0000007F``" msgstr "" -#: ../../library/codecs.rst:1022 msgid "0xxxxxxx" msgstr "" -#: ../../library/codecs.rst:1024 msgid "``U-00000080`` ... ``U-000007FF``" msgstr "" -#: ../../library/codecs.rst:1024 msgid "110xxxxx 10xxxxxx" msgstr "" -#: ../../library/codecs.rst:1026 msgid "``U-00000800`` ... ``U-0000FFFF``" msgstr "" -#: ../../library/codecs.rst:1026 msgid "1110xxxx 10xxxxxx 10xxxxxx" msgstr "" -#: ../../library/codecs.rst:1028 msgid "``U-00010000`` ... ``U-0010FFFF``" msgstr "" -#: ../../library/codecs.rst:1028 msgid "11110xxx 10xxxxxx 10xxxxxx 10xxxxxx" msgstr "" -#: ../../library/codecs.rst:1031 -msgid "" -"The least significant bit of the Unicode character is the rightmost x bit." +msgid "The least significant bit of the Unicode character is the rightmost x bit." msgstr "" -#: ../../library/codecs.rst:1033 -msgid "" -"As UTF-8 is an 8-bit encoding no BOM is required and any ``U+FEFF`` " -"character in the decoded string (even if it's the first character) is " -"treated as a ``ZERO WIDTH NO-BREAK SPACE``." +msgid "As UTF-8 is an 8-bit encoding no BOM is required and any ``U+FEFF`` character in the decoded string (even if it's the first character) is treated as a ``ZERO WIDTH NO-BREAK SPACE``." +msgstr "" + +msgid "Without external information it's impossible to reliably determine which encoding was used for encoding a string. Each charmap encoding can decode any random byte sequence. However that's not possible with UTF-8, as UTF-8 byte sequences have a structure that doesn't allow arbitrary byte sequences. To increase the reliability with which a UTF-8 encoding can be detected, Microsoft invented a variant of UTF-8 (that Python calls ``\"utf-8-sig\"``) for its Notepad program: Before any of the Unicode characters is written to the file, a UTF-8 encoded BOM (which looks like this as a byte sequence: ``0xef``, ``0xbb``, ``0xbf``) is written. As it's rather improbable that any charmap encoded file starts with these byte values (which would e.g. map to" msgstr "" -#: ../../library/codecs.rst:1037 -msgid "" -"Without external information it's impossible to reliably determine which " -"encoding was used for encoding a string. Each charmap encoding can decode " -"any random byte sequence. However that's not possible with UTF-8, as UTF-8 " -"byte sequences have a structure that doesn't allow arbitrary byte sequences. " -"To increase the reliability with which a UTF-8 encoding can be detected, " -"Microsoft invented a variant of UTF-8 (that Python calls ``\"utf-8-sig\"``) " -"for its Notepad program: Before any of the Unicode characters is written to " -"the file, a UTF-8 encoded BOM (which looks like this as a byte sequence: " -"``0xef``, ``0xbb``, ``0xbf``) is written. As it's rather improbable that any " -"charmap encoded file starts with these byte values (which would e.g. map to" -msgstr "" - -#: ../../library/codecs.rst:0 msgid "LATIN SMALL LETTER I WITH DIAERESIS" msgstr "" -#: ../../library/codecs.rst:0 msgid "RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK" msgstr "" -#: ../../library/codecs.rst:0 msgid "INVERTED QUESTION MARK" msgstr "" -#: ../../library/codecs.rst:1053 -msgid "" -"in iso-8859-1), this increases the probability that a ``utf-8-sig`` encoding " -"can be correctly guessed from the byte sequence. So here the BOM is not used " -"to be able to determine the byte order used for generating the byte " -"sequence, but as a signature that helps in guessing the encoding. On " -"encoding the utf-8-sig codec will write ``0xef``, ``0xbb``, ``0xbf`` as the " -"first three bytes to the file. On decoding ``utf-8-sig`` will skip those " -"three bytes if they appear as the first three bytes in the file. In UTF-8, " -"the use of the BOM is discouraged and should generally be avoided." +msgid "in iso-8859-1), this increases the probability that a ``utf-8-sig`` encoding can be correctly guessed from the byte sequence. So here the BOM is not used to be able to determine the byte order used for generating the byte sequence, but as a signature that helps in guessing the encoding. On encoding the utf-8-sig codec will write ``0xef``, ``0xbb``, ``0xbf`` as the first three bytes to the file. On decoding ``utf-8-sig`` will skip those three bytes if they appear as the first three bytes in the file. In UTF-8, the use of the BOM is discouraged and should generally be avoided." msgstr "" -#: ../../library/codecs.rst:1066 msgid "Standard Encodings" msgstr "" -#: ../../library/codecs.rst:1068 -msgid "" -"Python comes with a number of codecs built-in, either implemented as C " -"functions or with dictionaries as mapping tables. The following table lists " -"the codecs by name, together with a few common aliases, and the languages " -"for which the encoding is likely used. Neither the list of aliases nor the " -"list of languages is meant to be exhaustive. Notice that spelling " -"alternatives that only differ in case or use a hyphen instead of an " -"underscore are also valid aliases because they are equivalent when " -"normalized by :func:`~encodings.normalize_encoding`. For example, " -"``'utf-8'`` is a valid alias for the ``'utf_8'`` codec." -msgstr "" - -#: ../../library/codecs.rst:1080 -msgid "" -"The below table lists the most common aliases, for a complete list refer to " -"the source :source:`aliases.py ` file." +msgid "Python comes with a number of codecs built-in, either implemented as C functions or with dictionaries as mapping tables. The following table lists the codecs by name, together with a few common aliases, and the languages for which the encoding is likely used. Neither the list of aliases nor the list of languages is meant to be exhaustive. Notice that spelling alternatives that only differ in case or use a hyphen instead of an underscore are also valid aliases because they are equivalent when normalized by :func:`~encodings.normalize_encoding`. For example, ``'utf-8'`` is a valid alias for the ``'utf_8'`` codec." msgstr "" -#: ../../library/codecs.rst:1083 -msgid "" -"On Windows, ``cpXXX`` codecs are available for all code pages. But only " -"codecs listed in the following table are guarantead to exist on other " -"platforms." +msgid "The below table lists the most common aliases, for a complete list refer to the source :source:`aliases.py ` file." msgstr "" -#: ../../library/codecs.rst:1089 -msgid "" -"Some common encodings can bypass the codecs lookup machinery to improve " -"performance. These optimization opportunities are only recognized by CPython " -"for a limited set of (case insensitive) aliases: utf-8, utf8, latin-1, " -"latin1, iso-8859-1, iso8859-1, mbcs (Windows only), ascii, us-ascii, utf-16, " -"utf16, utf-32, utf32, and the same using underscores instead of dashes. " -"Using alternative aliases for these encodings may result in slower execution." +msgid "On Windows, ``cpXXX`` codecs are available for all code pages. But only codecs listed in the following table are guarantead to exist on other platforms." +msgstr "" + +msgid "Some common encodings can bypass the codecs lookup machinery to improve performance. These optimization opportunities are only recognized by CPython for a limited set of (case insensitive) aliases: utf-8, utf8, latin-1, latin1, iso-8859-1, iso8859-1, mbcs (Windows only), ascii, us-ascii, utf-16, utf16, utf-32, utf32, and the same using underscores instead of dashes. Using alternative aliases for these encodings may result in slower execution." msgstr "" -#: ../../library/codecs.rst:1097 msgid "Optimization opportunity recognized for us-ascii." msgstr "" -#: ../../library/codecs.rst:1100 -msgid "" -"Many of the character sets support the same languages. They vary in " -"individual characters (e.g. whether the EURO SIGN is supported or not), and " -"in the assignment of characters to code positions. For the European " -"languages in particular, the following variants typically exist:" +msgid "Many of the character sets support the same languages. They vary in individual characters (e.g. whether the EURO SIGN is supported or not), and in the assignment of characters to code positions. For the European languages in particular, the following variants typically exist:" msgstr "" -#: ../../library/codecs.rst:1105 msgid "an ISO 8859 codeset" msgstr "" -#: ../../library/codecs.rst:1107 -msgid "" -"a Microsoft Windows code page, which is typically derived from an 8859 " -"codeset, but replaces control characters with additional graphic characters" +msgid "a Microsoft Windows code page, which is typically derived from an 8859 codeset, but replaces control characters with additional graphic characters" msgstr "" -#: ../../library/codecs.rst:1110 msgid "an IBM EBCDIC code page" msgstr "" -#: ../../library/codecs.rst:1112 msgid "an IBM PC code page, which is ASCII compatible" msgstr "" -#: ../../library/codecs.rst:1117 ../../library/codecs.rst:1376 -#: ../../library/codecs.rst:1456 ../../library/codecs.rst:1541 msgid "Codec" msgstr "" -#: ../../library/codecs.rst:1117 ../../library/codecs.rst:1376 -#: ../../library/codecs.rst:1456 ../../library/codecs.rst:1541 msgid "Aliases" msgstr "" -#: ../../library/codecs.rst:1117 msgid "Languages" msgstr "" -#: ../../library/codecs.rst:1119 msgid "ascii" msgstr "" -#: ../../library/codecs.rst:1119 msgid "646, us-ascii" msgstr "" -#: ../../library/codecs.rst:1119 ../../library/codecs.rst:1125 -#: ../../library/codecs.rst:1133 msgid "English" msgstr "" -#: ../../library/codecs.rst:1121 msgid "big5" msgstr "" -#: ../../library/codecs.rst:1121 msgid "big5-tw, csbig5" msgstr "" -#: ../../library/codecs.rst:1121 ../../library/codecs.rst:1123 -#: ../../library/codecs.rst:1182 msgid "Traditional Chinese" msgstr "" -#: ../../library/codecs.rst:1123 msgid "big5hkscs" msgstr "" -#: ../../library/codecs.rst:1123 msgid "big5-hkscs, hkscs" msgstr "" -#: ../../library/codecs.rst:1125 msgid "cp037" msgstr "" -#: ../../library/codecs.rst:1125 msgid "IBM037, IBM039" msgstr "" -#: ../../library/codecs.rst:1127 msgid "cp273" msgstr "" -#: ../../library/codecs.rst:1127 msgid "273, IBM273, csIBM273" msgstr "" -#: ../../library/codecs.rst:1127 msgid "German" msgstr "" -#: ../../library/codecs.rst:1131 msgid "cp424" msgstr "" -#: ../../library/codecs.rst:1131 msgid "EBCDIC-CP-HE, IBM424" msgstr "" -#: ../../library/codecs.rst:1131 ../../library/codecs.rst:1151 -#: ../../library/codecs.rst:1161 ../../library/codecs.rst:1205 -#: ../../library/codecs.rst:1268 msgid "Hebrew" msgstr "" -#: ../../library/codecs.rst:1133 msgid "cp437" msgstr "" -#: ../../library/codecs.rst:1133 msgid "437, IBM437" msgstr "" -#: ../../library/codecs.rst:1135 msgid "cp500" msgstr "" -#: ../../library/codecs.rst:1135 msgid "EBCDIC-CP-BE, EBCDIC-CP-CH, IBM500" msgstr "" -#: ../../library/codecs.rst:1135 ../../library/codecs.rst:1144 -#: ../../library/codecs.rst:1155 ../../library/codecs.rst:1192 -#: ../../library/codecs.rst:1199 ../../library/codecs.rst:1252 -#: ../../library/codecs.rst:1280 ../../library/codecs.rst:1308 msgid "Western Europe" msgstr "" -#: ../../library/codecs.rst:1138 msgid "cp720" msgstr "" -#: ../../library/codecs.rst:1138 ../../library/codecs.rst:1165 -#: ../../library/codecs.rst:1207 ../../library/codecs.rst:1264 msgid "Arabic" msgstr "" -#: ../../library/codecs.rst:1140 msgid "cp737" msgstr "" -#: ../../library/codecs.rst:1140 ../../library/codecs.rst:1171 -#: ../../library/codecs.rst:1175 ../../library/codecs.rst:1201 -#: ../../library/codecs.rst:1266 ../../library/codecs.rst:1301 msgid "Greek" msgstr "" -#: ../../library/codecs.rst:1142 msgid "cp775" msgstr "" -#: ../../library/codecs.rst:1142 msgid "IBM775" msgstr "" -#: ../../library/codecs.rst:1142 ../../library/codecs.rst:1209 -#: ../../library/codecs.rst:1276 msgid "Baltic languages" msgstr "" -#: ../../library/codecs.rst:1144 msgid "cp850" msgstr "" -#: ../../library/codecs.rst:1144 msgid "850, IBM850" msgstr "" -#: ../../library/codecs.rst:1146 msgid "cp852" msgstr "" -#: ../../library/codecs.rst:1146 msgid "852, IBM852" msgstr "" -#: ../../library/codecs.rst:1146 ../../library/codecs.rst:1194 -#: ../../library/codecs.rst:1255 ../../library/codecs.rst:1305 msgid "Central and Eastern Europe" msgstr "" -#: ../../library/codecs.rst:1148 msgid "cp855" msgstr "" -#: ../../library/codecs.rst:1148 msgid "855, IBM855" msgstr "" -#: ../../library/codecs.rst:1148 ../../library/codecs.rst:1196 -#: ../../library/codecs.rst:1261 ../../library/codecs.rst:1298 msgid "Belarusian, Bulgarian, Macedonian, Russian, Serbian" msgstr "" -#: ../../library/codecs.rst:1151 msgid "cp856" msgstr "" -#: ../../library/codecs.rst:1153 msgid "cp857" msgstr "" -#: ../../library/codecs.rst:1153 msgid "857, IBM857" msgstr "" -#: ../../library/codecs.rst:1153 ../../library/codecs.rst:1186 -#: ../../library/codecs.rst:1203 ../../library/codecs.rst:1270 -#: ../../library/codecs.rst:1310 msgid "Turkish" msgstr "" -#: ../../library/codecs.rst:1155 msgid "cp858" msgstr "" -#: ../../library/codecs.rst:1155 msgid "858, IBM00858" msgstr "" -#: ../../library/codecs.rst:1157 msgid "cp860" msgstr "" -#: ../../library/codecs.rst:1157 msgid "860, IBM860" msgstr "" -#: ../../library/codecs.rst:1157 msgid "Portuguese" msgstr "" -#: ../../library/codecs.rst:1159 msgid "cp861" msgstr "" -#: ../../library/codecs.rst:1159 msgid "861, CP-IS, IBM861" msgstr "" -#: ../../library/codecs.rst:1159 ../../library/codecs.rst:1303 msgid "Icelandic" msgstr "" -#: ../../library/codecs.rst:1161 msgid "cp862" msgstr "" -#: ../../library/codecs.rst:1161 msgid "862, IBM862" msgstr "" -#: ../../library/codecs.rst:1163 msgid "cp863" msgstr "" -#: ../../library/codecs.rst:1163 msgid "863, IBM863" msgstr "" -#: ../../library/codecs.rst:1163 msgid "Canadian" msgstr "" -#: ../../library/codecs.rst:1165 msgid "cp864" msgstr "" -#: ../../library/codecs.rst:1165 msgid "IBM864" msgstr "" -#: ../../library/codecs.rst:1167 msgid "cp865" msgstr "" -#: ../../library/codecs.rst:1167 msgid "865, IBM865" msgstr "" -#: ../../library/codecs.rst:1167 msgid "Danish, Norwegian" msgstr "" -#: ../../library/codecs.rst:1169 msgid "cp866" msgstr "" -#: ../../library/codecs.rst:1169 msgid "866, IBM866" msgstr "" -#: ../../library/codecs.rst:1169 ../../library/codecs.rst:1286 msgid "Russian" msgstr "" -#: ../../library/codecs.rst:1171 msgid "cp869" msgstr "" -#: ../../library/codecs.rst:1171 msgid "869, CP-GR, IBM869" msgstr "" -#: ../../library/codecs.rst:1173 msgid "cp874" msgstr "" -#: ../../library/codecs.rst:1173 msgid "Thai" msgstr "" -#: ../../library/codecs.rst:1175 msgid "cp875" msgstr "" -#: ../../library/codecs.rst:1177 msgid "cp932" msgstr "" -#: ../../library/codecs.rst:1177 msgid "932, ms932, mskanji, ms-kanji, windows-31j" msgstr "" -#: ../../library/codecs.rst:1177 ../../library/codecs.rst:1213 -#: ../../library/codecs.rst:1215 ../../library/codecs.rst:1217 -#: ../../library/codecs.rst:1234 ../../library/codecs.rst:1237 -#: ../../library/codecs.rst:1242 ../../library/codecs.rst:1245 -#: ../../library/codecs.rst:1247 ../../library/codecs.rst:1315 -#: ../../library/codecs.rst:1318 ../../library/codecs.rst:1321 msgid "Japanese" msgstr "" -#: ../../library/codecs.rst:1180 msgid "cp949" msgstr "" -#: ../../library/codecs.rst:1180 msgid "949, ms949, uhc" msgstr "" -#: ../../library/codecs.rst:1180 ../../library/codecs.rst:1219 -#: ../../library/codecs.rst:1249 ../../library/codecs.rst:1284 msgid "Korean" msgstr "" -#: ../../library/codecs.rst:1182 msgid "cp950" msgstr "" -#: ../../library/codecs.rst:1182 msgid "950, ms950" msgstr "" -#: ../../library/codecs.rst:1184 msgid "cp1006" msgstr "" -#: ../../library/codecs.rst:1184 msgid "Urdu" msgstr "" -#: ../../library/codecs.rst:1186 msgid "cp1026" msgstr "" -#: ../../library/codecs.rst:1186 msgid "ibm1026" msgstr "" -#: ../../library/codecs.rst:1188 msgid "cp1125" msgstr "" -#: ../../library/codecs.rst:1188 msgid "1125, ibm1125, cp866u, ruscii" msgstr "" -#: ../../library/codecs.rst:1188 ../../library/codecs.rst:1292 msgid "Ukrainian" msgstr "" -#: ../../library/codecs.rst:1192 msgid "cp1140" msgstr "" -#: ../../library/codecs.rst:1192 msgid "IBM01140" msgstr "" -#: ../../library/codecs.rst:1194 msgid "cp1250" msgstr "" -#: ../../library/codecs.rst:1194 msgid "windows-1250" msgstr "" -#: ../../library/codecs.rst:1196 msgid "cp1251" msgstr "" -#: ../../library/codecs.rst:1196 msgid "windows-1251" msgstr "" -#: ../../library/codecs.rst:1199 msgid "cp1252" msgstr "" -#: ../../library/codecs.rst:1199 msgid "windows-1252" msgstr "" -#: ../../library/codecs.rst:1201 msgid "cp1253" msgstr "" -#: ../../library/codecs.rst:1201 msgid "windows-1253" msgstr "" -#: ../../library/codecs.rst:1203 msgid "cp1254" msgstr "" -#: ../../library/codecs.rst:1203 msgid "windows-1254" msgstr "" -#: ../../library/codecs.rst:1205 msgid "cp1255" msgstr "" -#: ../../library/codecs.rst:1205 msgid "windows-1255" msgstr "" -#: ../../library/codecs.rst:1207 msgid "cp1256" msgstr "" -#: ../../library/codecs.rst:1207 msgid "windows-1256" msgstr "" -#: ../../library/codecs.rst:1209 msgid "cp1257" msgstr "" -#: ../../library/codecs.rst:1209 msgid "windows-1257" msgstr "" -#: ../../library/codecs.rst:1211 msgid "cp1258" msgstr "" -#: ../../library/codecs.rst:1211 msgid "windows-1258" msgstr "" -#: ../../library/codecs.rst:1211 msgid "Vietnamese" msgstr "" -#: ../../library/codecs.rst:1213 msgid "euc_jp" msgstr "" -#: ../../library/codecs.rst:1213 msgid "eucjp, ujis, u-jis" msgstr "" -#: ../../library/codecs.rst:1215 msgid "euc_jis_2004" msgstr "" -#: ../../library/codecs.rst:1215 msgid "jisx0213, eucjis2004" msgstr "" -#: ../../library/codecs.rst:1217 msgid "euc_jisx0213" msgstr "" -#: ../../library/codecs.rst:1217 msgid "eucjisx0213" msgstr "" -#: ../../library/codecs.rst:1219 msgid "euc_kr" msgstr "" -#: ../../library/codecs.rst:1219 msgid "euckr, korean, ksc5601, ks_c-5601, ks_c-5601-1987, ksx1001, ks_x-1001" msgstr "" -#: ../../library/codecs.rst:1223 msgid "gb2312" msgstr "" -#: ../../library/codecs.rst:1223 -msgid "" -"chinese, csiso58gb231280, euc-cn, euccn, eucgb2312-cn, gb2312-1980, " -"gb2312-80, iso-ir-58" +msgid "chinese, csiso58gb231280, euc-cn, euccn, eucgb2312-cn, gb2312-1980, gb2312-80, iso-ir-58" msgstr "" -#: ../../library/codecs.rst:1223 ../../library/codecs.rst:1232 msgid "Simplified Chinese" msgstr "" -#: ../../library/codecs.rst:1228 msgid "gbk" msgstr "" -#: ../../library/codecs.rst:1228 msgid "936, cp936, ms936" msgstr "" -#: ../../library/codecs.rst:1228 ../../library/codecs.rst:1230 msgid "Unified Chinese" msgstr "" -#: ../../library/codecs.rst:1230 msgid "gb18030" msgstr "" -#: ../../library/codecs.rst:1230 msgid "gb18030-2000" msgstr "" -#: ../../library/codecs.rst:1232 msgid "hz" msgstr "" -#: ../../library/codecs.rst:1232 msgid "hzgb, hz-gb, hz-gb-2312" msgstr "" -#: ../../library/codecs.rst:1234 msgid "iso2022_jp" msgstr "" -#: ../../library/codecs.rst:1234 msgid "csiso2022jp, iso2022jp, iso-2022-jp" msgstr "" -#: ../../library/codecs.rst:1237 msgid "iso2022_jp_1" msgstr "" -#: ../../library/codecs.rst:1237 msgid "iso2022jp-1, iso-2022-jp-1" msgstr "" -#: ../../library/codecs.rst:1239 msgid "iso2022_jp_2" msgstr "" -#: ../../library/codecs.rst:1239 msgid "iso2022jp-2, iso-2022-jp-2" msgstr "" -#: ../../library/codecs.rst:1239 msgid "Japanese, Korean, Simplified Chinese, Western Europe, Greek" msgstr "" -#: ../../library/codecs.rst:1242 msgid "iso2022_jp_2004" msgstr "" -#: ../../library/codecs.rst:1242 msgid "iso2022jp-2004, iso-2022-jp-2004" msgstr "" -#: ../../library/codecs.rst:1245 msgid "iso2022_jp_3" msgstr "" -#: ../../library/codecs.rst:1245 msgid "iso2022jp-3, iso-2022-jp-3" msgstr "" -#: ../../library/codecs.rst:1247 msgid "iso2022_jp_ext" msgstr "" -#: ../../library/codecs.rst:1247 msgid "iso2022jp-ext, iso-2022-jp-ext" msgstr "" -#: ../../library/codecs.rst:1249 msgid "iso2022_kr" msgstr "" -#: ../../library/codecs.rst:1249 msgid "csiso2022kr, iso2022kr, iso-2022-kr" msgstr "" -#: ../../library/codecs.rst:1252 msgid "latin_1" msgstr "" -#: ../../library/codecs.rst:1252 msgid "iso-8859-1, iso8859-1, 8859, cp819, latin, latin1, L1" msgstr "" -#: ../../library/codecs.rst:1255 msgid "iso8859_2" msgstr "" -#: ../../library/codecs.rst:1255 msgid "iso-8859-2, latin2, L2" msgstr "" -#: ../../library/codecs.rst:1257 msgid "iso8859_3" msgstr "" -#: ../../library/codecs.rst:1257 msgid "iso-8859-3, latin3, L3" msgstr "" -#: ../../library/codecs.rst:1257 msgid "Esperanto, Maltese" msgstr "" -#: ../../library/codecs.rst:1259 msgid "iso8859_4" msgstr "" -#: ../../library/codecs.rst:1259 msgid "iso-8859-4, latin4, L4" msgstr "" -#: ../../library/codecs.rst:1259 msgid "Northern Europe" msgstr "" -#: ../../library/codecs.rst:1261 msgid "iso8859_5" msgstr "" -#: ../../library/codecs.rst:1261 msgid "iso-8859-5, cyrillic" msgstr "" -#: ../../library/codecs.rst:1264 msgid "iso8859_6" msgstr "" -#: ../../library/codecs.rst:1264 msgid "iso-8859-6, arabic" msgstr "" -#: ../../library/codecs.rst:1266 msgid "iso8859_7" msgstr "" -#: ../../library/codecs.rst:1266 msgid "iso-8859-7, greek, greek8" msgstr "" -#: ../../library/codecs.rst:1268 msgid "iso8859_8" msgstr "" -#: ../../library/codecs.rst:1268 msgid "iso-8859-8, hebrew" msgstr "" -#: ../../library/codecs.rst:1270 msgid "iso8859_9" msgstr "" -#: ../../library/codecs.rst:1270 msgid "iso-8859-9, latin5, L5" msgstr "" -#: ../../library/codecs.rst:1272 msgid "iso8859_10" msgstr "" -#: ../../library/codecs.rst:1272 msgid "iso-8859-10, latin6, L6" msgstr "" -#: ../../library/codecs.rst:1272 msgid "Nordic languages" msgstr "" -#: ../../library/codecs.rst:1274 msgid "iso8859_11" msgstr "" -#: ../../library/codecs.rst:1274 msgid "iso-8859-11, thai" msgstr "" -#: ../../library/codecs.rst:1274 msgid "Thai languages" msgstr "" -#: ../../library/codecs.rst:1276 msgid "iso8859_13" msgstr "" -#: ../../library/codecs.rst:1276 msgid "iso-8859-13, latin7, L7" msgstr "" -#: ../../library/codecs.rst:1278 msgid "iso8859_14" msgstr "" -#: ../../library/codecs.rst:1278 msgid "iso-8859-14, latin8, L8" msgstr "" -#: ../../library/codecs.rst:1278 msgid "Celtic languages" msgstr "" -#: ../../library/codecs.rst:1280 msgid "iso8859_15" msgstr "" -#: ../../library/codecs.rst:1280 msgid "iso-8859-15, latin9, L9" msgstr "" -#: ../../library/codecs.rst:1282 msgid "iso8859_16" msgstr "" -#: ../../library/codecs.rst:1282 msgid "iso-8859-16, latin10, L10" msgstr "" -#: ../../library/codecs.rst:1282 msgid "South-Eastern Europe" msgstr "" -#: ../../library/codecs.rst:1284 msgid "johab" msgstr "" -#: ../../library/codecs.rst:1284 msgid "cp1361, ms1361" msgstr "" -#: ../../library/codecs.rst:1286 msgid "koi8_r" msgstr "" -#: ../../library/codecs.rst:1288 msgid "koi8_t" msgstr "" -#: ../../library/codecs.rst:1288 msgid "Tajik" msgstr "" -#: ../../library/codecs.rst:1292 msgid "koi8_u" msgstr "" -#: ../../library/codecs.rst:1294 msgid "kz1048" msgstr "" -#: ../../library/codecs.rst:1294 msgid "kz_1048, strk1048_2002, rk1048" msgstr "" -#: ../../library/codecs.rst:1294 ../../library/codecs.rst:1312 msgid "Kazakh" msgstr "" -#: ../../library/codecs.rst:1298 msgid "mac_cyrillic" msgstr "" -#: ../../library/codecs.rst:1298 msgid "maccyrillic" msgstr "" -#: ../../library/codecs.rst:1301 msgid "mac_greek" msgstr "" -#: ../../library/codecs.rst:1301 msgid "macgreek" msgstr "" -#: ../../library/codecs.rst:1303 msgid "mac_iceland" msgstr "" -#: ../../library/codecs.rst:1303 msgid "maciceland" msgstr "" -#: ../../library/codecs.rst:1305 msgid "mac_latin2" msgstr "" -#: ../../library/codecs.rst:1305 msgid "maclatin2, maccentraleurope, mac_centeuro" msgstr "" -#: ../../library/codecs.rst:1308 msgid "mac_roman" msgstr "" -#: ../../library/codecs.rst:1308 msgid "macroman, macintosh" msgstr "" -#: ../../library/codecs.rst:1310 msgid "mac_turkish" msgstr "" -#: ../../library/codecs.rst:1310 msgid "macturkish" msgstr "" -#: ../../library/codecs.rst:1312 msgid "ptcp154" msgstr "" -#: ../../library/codecs.rst:1312 msgid "csptcp154, pt154, cp154, cyrillic-asian" msgstr "" -#: ../../library/codecs.rst:1315 msgid "shift_jis" msgstr "" -#: ../../library/codecs.rst:1315 msgid "csshiftjis, shiftjis, sjis, s_jis" msgstr "" -#: ../../library/codecs.rst:1318 msgid "shift_jis_2004" msgstr "" -#: ../../library/codecs.rst:1318 msgid "shiftjis2004, sjis_2004, sjis2004" msgstr "" -#: ../../library/codecs.rst:1321 msgid "shift_jisx0213" msgstr "" -#: ../../library/codecs.rst:1321 msgid "shiftjisx0213, sjisx0213, s_jisx0213" msgstr "" -#: ../../library/codecs.rst:1324 msgid "utf_32" msgstr "" -#: ../../library/codecs.rst:1324 msgid "U32, utf32" msgstr "" -#: ../../library/codecs.rst:1324 ../../library/codecs.rst:1326 -#: ../../library/codecs.rst:1328 ../../library/codecs.rst:1330 -#: ../../library/codecs.rst:1332 ../../library/codecs.rst:1334 -#: ../../library/codecs.rst:1336 ../../library/codecs.rst:1338 -#: ../../library/codecs.rst:1340 msgid "all languages" msgstr "" -#: ../../library/codecs.rst:1326 msgid "utf_32_be" msgstr "" -#: ../../library/codecs.rst:1326 msgid "UTF-32BE" msgstr "" -#: ../../library/codecs.rst:1328 msgid "utf_32_le" msgstr "" -#: ../../library/codecs.rst:1328 msgid "UTF-32LE" msgstr "" -#: ../../library/codecs.rst:1330 msgid "utf_16" msgstr "" -#: ../../library/codecs.rst:1330 msgid "U16, utf16" msgstr "" -#: ../../library/codecs.rst:1332 msgid "utf_16_be" msgstr "" -#: ../../library/codecs.rst:1332 msgid "UTF-16BE" msgstr "" -#: ../../library/codecs.rst:1334 msgid "utf_16_le" msgstr "" -#: ../../library/codecs.rst:1334 msgid "UTF-16LE" msgstr "" -#: ../../library/codecs.rst:1336 msgid "utf_7" msgstr "" -#: ../../library/codecs.rst:1336 msgid "U7, unicode-1-1-utf-7" msgstr "" -#: ../../library/codecs.rst:1338 msgid "utf_8" msgstr "" -#: ../../library/codecs.rst:1338 msgid "U8, UTF, utf8, cp65001" msgstr "" -#: ../../library/codecs.rst:1340 msgid "utf_8_sig" msgstr "" -#: ../../library/codecs.rst:1343 -msgid "" -"The utf-16\\* and utf-32\\* encoders no longer allow surrogate code points " -"(``U+D800``--``U+DFFF``) to be encoded. The utf-32\\* decoders no longer " -"decode byte sequences that correspond to surrogate code points." +msgid "The utf-16\\* and utf-32\\* encoders no longer allow surrogate code points (``U+D800``--``U+DFFF``) to be encoded. The utf-32\\* decoders no longer decode byte sequences that correspond to surrogate code points." msgstr "" -#: ../../library/codecs.rst:1349 msgid "``cp65001`` is now an alias to ``utf_8``." msgstr "" -#: ../../library/codecs.rst:1352 msgid "On Windows, ``cpXXX`` codecs are now available for all code pages." msgstr "" -#: ../../library/codecs.rst:1357 msgid "Python Specific Encodings" msgstr "" -#: ../../library/codecs.rst:1359 -msgid "" -"A number of predefined codecs are specific to Python, so their codec names " -"have no meaning outside Python. These are listed in the tables below based " -"on the expected input and output types (note that while text encodings are " -"the most common use case for codecs, the underlying codec infrastructure " -"supports arbitrary data transforms rather than just text encodings). For " -"asymmetric codecs, the stated meaning describes the encoding direction." +msgid "A number of predefined codecs are specific to Python, so their codec names have no meaning outside Python. These are listed in the tables below based on the expected input and output types (note that while text encodings are the most common use case for codecs, the underlying codec infrastructure supports arbitrary data transforms rather than just text encodings). For asymmetric codecs, the stated meaning describes the encoding direction." msgstr "" -#: ../../library/codecs.rst:1367 msgid "Text Encodings" msgstr "" -#: ../../library/codecs.rst:1369 -msgid "" -"The following codecs provide :class:`str` to :class:`bytes` encoding " -"and :term:`bytes-like object` to :class:`str` decoding, similar to the " -"Unicode text encodings." +msgid "The following codecs provide :class:`str` to :class:`bytes` encoding and :term:`bytes-like object` to :class:`str` decoding, similar to the Unicode text encodings." msgstr "" -#: ../../library/codecs.rst:1378 msgid "idna" msgstr "" -#: ../../library/codecs.rst:1378 -msgid "" -"Implement :rfc:`3490`, see also :mod:`encodings.idna`. Only " -"``errors='strict'`` is supported." +msgid "Implement :rfc:`3490`, see also :mod:`encodings.idna`. Only ``errors='strict'`` is supported." msgstr "" -#: ../../library/codecs.rst:1384 msgid "mbcs" msgstr "" -#: ../../library/codecs.rst:1384 msgid "ansi, dbcs" msgstr "" -#: ../../library/codecs.rst:1384 -msgid "" -"Windows only: Encode the operand according to the ANSI codepage (CP_ACP)." +msgid "Windows only: Encode the operand according to the ANSI codepage (CP_ACP)." msgstr "" -#: ../../library/codecs.rst:1388 msgid "oem" msgstr "" -#: ../../library/codecs.rst:1388 -msgid "" -"Windows only: Encode the operand according to the OEM codepage (CP_OEMCP)." +msgid "Windows only: Encode the operand according to the OEM codepage (CP_OEMCP)." msgstr "" -#: ../../library/codecs.rst:1394 msgid "palmos" msgstr "" -#: ../../library/codecs.rst:1394 msgid "Encoding of PalmOS 3.5." msgstr "" -#: ../../library/codecs.rst:1396 msgid "punycode" msgstr "" -#: ../../library/codecs.rst:1396 msgid "Implement :rfc:`3492`. Stateful codecs are not supported." msgstr "" -#: ../../library/codecs.rst:1402 -msgid "" -"The decoding and encoding algorithms scale poorly, so limit the length of " -"untrusted input." +msgid "The decoding and encoding algorithms scale poorly, so limit the length of untrusted input." msgstr "" -#: ../../library/codecs.rst:1408 msgid "raw_unicode_escape" msgstr "" -#: ../../library/codecs.rst:1408 -msgid "" -"Latin-1 encoding with :samp:`\\\\u{XXXX}` and :samp:`\\\\U{XXXXXXXX}` for " -"other code points. Existing backslashes are not escaped in any way. It is " -"used in the Python pickle protocol." +msgid "Latin-1 encoding with :samp:`\\\\u{XXXX}` and :samp:`\\\\U{XXXXXXXX}` for other code points. Existing backslashes are not escaped in any way. It is used in the Python pickle protocol." msgstr "" -#: ../../library/codecs.rst:1418 msgid "undefined" msgstr "" -#: ../../library/codecs.rst:1418 msgid "This Codec should only be used for testing purposes." msgstr "" -#: ../../library/codecs.rst:1422 -msgid "" -"Raise an exception for all conversions, even empty strings. The error " -"handler is ignored." +msgid "Raise an exception for all conversions, even empty strings. The error handler is ignored." msgstr "" -#: ../../library/codecs.rst:1427 msgid "unicode_escape" msgstr "" -#: ../../library/codecs.rst:1427 -msgid "" -"Encoding suitable as the contents of a Unicode literal in ASCII-encoded " -"Python source code, except that quotes are not escaped. Decode from Latin-1 " -"source code. Beware that Python source code actually uses UTF-8 by default." +msgid "Encoding suitable as the contents of a Unicode literal in ASCII-encoded Python source code, except that quotes are not escaped. Decode from Latin-1 source code. Beware that Python source code actually uses UTF-8 by default." msgstr "" -#: ../../library/codecs.rst:1439 msgid "\"unicode_internal\" codec is removed." msgstr "" -#: ../../library/codecs.rst:1446 msgid "Binary Transforms" msgstr "" -#: ../../library/codecs.rst:1448 -msgid "" -"The following codecs provide binary transforms: :term:`bytes-like object` " -"to :class:`bytes` mappings. They are not supported by :meth:`bytes.decode` " -"(which only produces :class:`str` output)." +msgid "The following codecs provide binary transforms: :term:`bytes-like object` to :class:`bytes` mappings. They are not supported by :meth:`bytes.decode` (which only produces :class:`str` output)." msgstr "" -#: ../../library/codecs.rst:1456 msgid "Encoder / decoder" msgstr "" -#: ../../library/codecs.rst:1458 msgid "base64_codec [#b64]_" msgstr "" -#: ../../library/codecs.rst:1458 msgid "base64, base_64" msgstr "" -#: ../../library/codecs.rst:1458 -msgid "" -"Convert the operand to multiline MIME base64 (the result always includes a " -"trailing ``'\\n'``)." +msgid "Convert the operand to multiline MIME base64 (the result always includes a trailing ``'\\n'``)." msgstr "" -#: ../../library/codecs.rst:1463 -msgid "" -"accepts any :term:`bytes-like object` as input for encoding and decoding" +msgid "accepts any :term:`bytes-like object` as input for encoding and decoding" msgstr "" -#: ../../library/codecs.rst:1458 msgid ":meth:`base64.encodebytes` / :meth:`base64.decodebytes`" msgstr "" -#: ../../library/codecs.rst:1469 msgid "bz2_codec" msgstr "" -#: ../../library/codecs.rst:1469 msgid "bz2" msgstr "" -#: ../../library/codecs.rst:1469 msgid "Compress the operand using bz2." msgstr "" -#: ../../library/codecs.rst:1469 msgid ":meth:`bz2.compress` / :meth:`bz2.decompress`" msgstr "" -#: ../../library/codecs.rst:1472 msgid "hex_codec" msgstr "" -#: ../../library/codecs.rst:1472 msgid "hex" msgstr "" -#: ../../library/codecs.rst:1472 -msgid "" -"Convert the operand to hexadecimal representation, with two digits per byte." +msgid "Convert the operand to hexadecimal representation, with two digits per byte." msgstr "" -#: ../../library/codecs.rst:1472 msgid ":meth:`binascii.b2a_hex` / :meth:`binascii.a2b_hex`" msgstr "" -#: ../../library/codecs.rst:1477 msgid "quopri_codec" msgstr "" -#: ../../library/codecs.rst:1477 msgid "quopri, quotedprintable, quoted_printable" msgstr "" -#: ../../library/codecs.rst:1477 msgid "Convert the operand to MIME quoted printable." msgstr "" -#: ../../library/codecs.rst:1477 msgid ":meth:`quopri.encode` with ``quotetabs=True`` / :meth:`quopri.decode`" msgstr "" -#: ../../library/codecs.rst:1481 msgid "uu_codec" msgstr "" -#: ../../library/codecs.rst:1481 msgid "uu" msgstr "" -#: ../../library/codecs.rst:1481 msgid "Convert the operand using uuencode." msgstr "" -#: ../../library/codecs.rst:1484 msgid "zlib_codec" msgstr "" -#: ../../library/codecs.rst:1484 msgid "zip, zlib" msgstr "" -#: ../../library/codecs.rst:1484 msgid "Compress the operand using gzip." msgstr "" -#: ../../library/codecs.rst:1484 msgid ":meth:`zlib.compress` / :meth:`zlib.decompress`" msgstr "" -#: ../../library/codecs.rst:1488 -msgid "" -"In addition to :term:`bytes-like objects `, " -"``'base64_codec'`` also accepts ASCII-only instances of :class:`str` for " -"decoding" +msgid "In addition to :term:`bytes-like objects `, ``'base64_codec'`` also accepts ASCII-only instances of :class:`str` for decoding" msgstr "" -#: ../../library/codecs.rst:1492 msgid "Restoration of the binary transforms." msgstr "" -#: ../../library/codecs.rst:1495 msgid "Restoration of the aliases for the binary transforms." msgstr "" -#: ../../library/codecs.rst:1502 msgid "Standalone Codec Functions" msgstr "" -#: ../../library/codecs.rst:1504 -msgid "" -"The following functions provide encoding and decoding functionality similar " -"to codecs, but are not available as named codecs " -"through :func:`codecs.encode` or :func:`codecs.decode`. They are used " -"internally (for example, by :mod:`pickle`) and behave similarly to the " -"``string_escape`` codec that was removed in Python 3." +msgid "The following functions provide encoding and decoding functionality similar to codecs, but are not available as named codecs through :func:`codecs.encode` or :func:`codecs.decode`. They are used internally (for example, by :mod:`pickle`) and behave similarly to the ``string_escape`` codec that was removed in Python 3." msgstr "" -#: ../../library/codecs.rst:1511 -msgid "" -"Encode *input* using escape sequences. Similar to how :func:`repr` on bytes " -"produces escaped byte values." +msgid "Encode *input* using escape sequences. Similar to how :func:`repr` on bytes produces escaped byte values." msgstr "" -#: ../../library/codecs.rst:1514 msgid "*input* must be a :class:`bytes` object." msgstr "" -#: ../../library/codecs.rst:1516 ../../library/codecs.rst:1525 -msgid "" -"Returns a tuple ``(output, length)`` where *output* is a :class:`bytes` " -"object and *length* is the number of bytes consumed." +msgid "Returns a tuple ``(output, length)`` where *output* is a :class:`bytes` object and *length* is the number of bytes consumed." msgstr "" -#: ../../library/codecs.rst:1521 msgid "Decode *input* from escape sequences back to the original bytes." msgstr "" -#: ../../library/codecs.rst:1523 msgid "*input* must be a :term:`bytes-like object`." msgstr "" -#: ../../library/codecs.rst:1532 msgid "Text Transforms" msgstr "" -#: ../../library/codecs.rst:1534 -msgid "" -"The following codec provides a text transform: a :class:`str` " -"to :class:`str` mapping. It is not supported by :meth:`str.encode` (which " -"only produces :class:`bytes` output)." +msgid "The following codec provides a text transform: a :class:`str` to :class:`str` mapping. It is not supported by :meth:`str.encode` (which only produces :class:`bytes` output)." msgstr "" -#: ../../library/codecs.rst:1543 msgid "rot_13" msgstr "" -#: ../../library/codecs.rst:1543 msgid "rot13" msgstr "" -#: ../../library/codecs.rst:1543 msgid "Return the Caesar-cypher encryption of the operand." msgstr "" -#: ../../library/codecs.rst:1548 msgid "Restoration of the ``rot_13`` text transform." msgstr "" -#: ../../library/codecs.rst:1551 msgid "Restoration of the ``rot13`` alias." msgstr "" -#: ../../library/codecs.rst:1556 msgid ":mod:`!encodings` --- Encodings package" msgstr "" -#: ../../library/codecs.rst:1561 msgid "This module implements the following functions:" msgstr "" -#: ../../library/codecs.rst:1565 msgid "Normalize encoding name *encoding*." msgstr "" -#: ../../library/codecs.rst:1567 -msgid "" -"Normalization works as follows: all non-alphanumeric characters except the " -"dot used for Python package names are collapsed and replaced with a single " -"underscore, leading and trailing underscores are removed. For example, ``' " -"-;#'`` becomes ``'_'``." +msgid "Normalization works as follows: all non-alphanumeric characters except the dot used for Python package names are collapsed and replaced with a single underscore, leading and trailing underscores are removed. For example, ``' -;#'`` becomes ``'_'``." msgstr "" -#: ../../library/codecs.rst:1572 msgid "Note that *encoding* should be ASCII only." msgstr "" -#: ../../library/codecs.rst:1576 -msgid "" -"The following functions should not be used directly, except for testing " -"purposes; :func:`codecs.lookup` should be used instead." +msgid "The following functions should not be used directly, except for testing purposes; :func:`codecs.lookup` should be used instead." msgstr "" -#: ../../library/codecs.rst:1582 -msgid "" -"Search for the codec module corresponding to the given encoding name " -"*encoding*." +msgid "Search for the codec module corresponding to the given encoding name *encoding*." msgstr "" -#: ../../library/codecs.rst:1585 -msgid "" -"This function first normalizes the *encoding* " -"using :func:`normalize_encoding`, then looks for a corresponding alias. It " -"attempts to import a codec module from the encodings package using either " -"the alias or the normalized name. If the module is found and defines a valid " -"``getregentry()`` function that returns a :class:`codecs.CodecInfo` object, " -"the codec is cached and returned." +msgid "This function first normalizes the *encoding* using :func:`normalize_encoding`, then looks for a corresponding alias. It attempts to import a codec module from the encodings package using either the alias or the normalized name. If the module is found and defines a valid ``getregentry()`` function that returns a :class:`codecs.CodecInfo` object, the codec is cached and returned." msgstr "" -#: ../../library/codecs.rst:1592 -msgid "" -"If the codec module defines a ``getaliases()`` function any returned aliases " -"are registered for future use." +msgid "If the codec module defines a ``getaliases()`` function any returned aliases are registered for future use." msgstr "" -#: ../../library/codecs.rst:1598 -msgid "" -"Search for a Windows code page encoding *encoding* of the form ``cpXXXX``." +msgid "Search for a Windows code page encoding *encoding* of the form ``cpXXXX``." msgstr "" -#: ../../library/codecs.rst:1600 -msgid "" -"If the code page is valid and supported, return a :class:`codecs.CodecInfo` " -"object for it." +msgid "If the code page is valid and supported, return a :class:`codecs.CodecInfo` object for it." msgstr "" -#: ../../library/codecs.rst:1603 ../../library/codecs.rst:1689 msgid "Availability" msgstr "" -#: ../../library/codecs.rst:1608 msgid "This module implements the following exception:" msgstr "" -#: ../../library/codecs.rst:1612 msgid "Raised when a codec is invalid or incompatible." msgstr "" -#: ../../library/codecs.rst:1616 -msgid "" -":mod:`!encodings.idna` --- Internationalized Domain Names in Applications" +msgid ":mod:`!encodings.idna` --- Internationalized Domain Names in Applications" msgstr "" -#: ../../library/codecs.rst:1622 -msgid "" -"This module implements :rfc:`3490` (Internationalized Domain Names in " -"Applications) and :rfc:`3492` (Nameprep: A Stringprep Profile for " -"Internationalized Domain Names (IDN)). It builds upon the ``punycode`` " -"encoding and :mod:`stringprep`." +msgid "This module implements :rfc:`3490` (Internationalized Domain Names in Applications) and :rfc:`3492` (Nameprep: A Stringprep Profile for Internationalized Domain Names (IDN)). It builds upon the ``punycode`` encoding and :mod:`stringprep`." msgstr "" -#: ../../library/codecs.rst:1627 -msgid "" -"If you need the IDNA 2008 standard from :rfc:`5891` and :rfc:`5895`, use the " -"third-party :pypi:`idna` module." +msgid "If you need the IDNA 2008 standard from :rfc:`5891` and :rfc:`5895`, use the third-party :pypi:`idna` module." msgstr "" -#: ../../library/codecs.rst:1630 -msgid "" -"These RFCs together define a protocol to support non-ASCII characters in " -"domain names. A domain name containing non-ASCII characters (such as " -"``www.Alliancefrançaise.nu``) is converted into an ASCII-compatible encoding " -"(ACE, such as ``www.xn--alliancefranaise-npb.nu``). The ACE form of the " -"domain name is then used in all places where arbitrary characters are not " -"allowed by the protocol, such as DNS queries, HTTP :mailheader:`Host` " -"fields, and so on. This conversion is carried out in the application; if " -"possible invisible to the user: The application should transparently convert " -"Unicode domain labels to IDNA on the wire, and convert back ACE labels to " -"Unicode before presenting them to the user." -msgstr "" - -#: ../../library/codecs.rst:1641 -msgid "" -"Python supports this conversion in several ways: the ``idna`` codec " -"performs conversion between Unicode and ACE, separating an input string into " -"labels based on the separator characters defined in :rfc:`section 3.1 of RFC " -"3490 <3490#section-3.1>` and converting each label to ACE as required, and " -"conversely separating an input byte string into labels based on the ``.`` " -"separator and converting any ACE labels found into unicode. Furthermore, " -"the :mod:`socket` module transparently converts Unicode host names to ACE, " -"so that applications need not be concerned about converting host names " -"themselves when they pass them to the socket module. On top of that, modules " -"that have host names as function parameters, such as :mod:`http.client` " -"and :mod:`ftplib`, accept Unicode host names (:mod:`http.client` then also " -"transparently sends an IDNA hostname in the :mailheader:`Host` field if it " -"sends that field at all)." -msgstr "" - -#: ../../library/codecs.rst:1654 -msgid "" -"When receiving host names from the wire (such as in reverse name lookup), no " -"automatic conversion to Unicode is performed: applications wishing to " -"present such host names to the user should decode them to Unicode." +msgid "These RFCs together define a protocol to support non-ASCII characters in domain names. A domain name containing non-ASCII characters (such as ``www.Alliancefrançaise.nu``) is converted into an ASCII-compatible encoding (ACE, such as ``www.xn--alliancefranaise-npb.nu``). The ACE form of the domain name is then used in all places where arbitrary characters are not allowed by the protocol, such as DNS queries, HTTP :mailheader:`Host` fields, and so on. This conversion is carried out in the application; if possible invisible to the user: The application should transparently convert Unicode domain labels to IDNA on the wire, and convert back ACE labels to Unicode before presenting them to the user." msgstr "" -#: ../../library/codecs.rst:1658 -msgid "" -"The module :mod:`!encodings.idna` also implements the nameprep procedure, " -"which performs certain normalizations on host names, to achieve case-" -"insensitivity of international domain names, and to unify similar " -"characters. The nameprep functions can be used directly if desired." +msgid "Python supports this conversion in several ways: the ``idna`` codec performs conversion between Unicode and ACE, separating an input string into labels based on the separator characters defined in :rfc:`section 3.1 of RFC 3490 <3490#section-3.1>` and converting each label to ACE as required, and conversely separating an input byte string into labels based on the ``.`` separator and converting any ACE labels found into unicode. Furthermore, the :mod:`socket` module transparently converts Unicode host names to ACE, so that applications need not be concerned about converting host names themselves when they pass them to the socket module. On top of that, modules that have host names as function parameters, such as :mod:`http.client` and :mod:`ftplib`, accept Unicode host names (:mod:`http.client` then also transparently sends an IDNA hostname in the :mailheader:`Host` field if it sends that field at all)." msgstr "" -#: ../../library/codecs.rst:1666 -msgid "" -"Return the nameprepped version of *label*. The implementation currently " -"assumes query strings, so ``AllowUnassigned`` is true." +msgid "When receiving host names from the wire (such as in reverse name lookup), no automatic conversion to Unicode is performed: applications wishing to present such host names to the user should decode them to Unicode." msgstr "" -#: ../../library/codecs.rst:1672 -msgid "" -"Convert a label to ASCII, as specified in :rfc:`3490`. ``UseSTD3ASCIIRules`` " -"is assumed to be false." +msgid "The module :mod:`!encodings.idna` also implements the nameprep procedure, which performs certain normalizations on host names, to achieve case-insensitivity of international domain names, and to unify similar characters. The nameprep functions can be used directly if desired." +msgstr "" + +msgid "Return the nameprepped version of *label*. The implementation currently assumes query strings, so ``AllowUnassigned`` is true." +msgstr "" + +msgid "Convert a label to ASCII, as specified in :rfc:`3490`. ``UseSTD3ASCIIRules`` is assumed to be false." msgstr "" -#: ../../library/codecs.rst:1678 msgid "Convert a label to Unicode, as specified in :rfc:`3490`." msgstr "" -#: ../../library/codecs.rst:1682 msgid ":mod:`!encodings.mbcs` --- Windows ANSI codepage" msgstr "" -#: ../../library/codecs.rst:1687 msgid "This module implements the ANSI codepage (CP_ACP)." msgstr "" -#: ../../library/codecs.rst:1691 -msgid "" -"Before 3.2, the *errors* argument was ignored; ``'replace'`` was always used " -"to encode, and ``'ignore'`` to decode." +msgid "Before 3.2, the *errors* argument was ignored; ``'replace'`` was always used to encode, and ``'ignore'`` to decode." msgstr "" -#: ../../library/codecs.rst:1695 msgid "Support any error handler." msgstr "" -#: ../../library/codecs.rst:1700 msgid ":mod:`!encodings.utf_8_sig` --- UTF-8 codec with BOM signature" msgstr "" -#: ../../library/codecs.rst:1706 -msgid "" -"This module implements a variant of the UTF-8 codec. On encoding, a UTF-8 " -"encoded BOM will be prepended to the UTF-8 encoded bytes. For the stateful " -"encoder this is only done once (on the first write to the byte stream). On " -"decoding, an optional UTF-8 encoded BOM at the start of the data will be " -"skipped." +msgid "This module implements a variant of the UTF-8 codec. On encoding, a UTF-8 encoded BOM will be prepended to the UTF-8 encoded bytes. For the stateful encoder this is only done once (on the first write to the byte stream). On decoding, an optional UTF-8 encoded BOM at the start of the data will be skipped." msgstr "" -#: ../../library/codecs.rst:13 msgid "Unicode" msgstr "" -#: ../../library/codecs.rst:13 msgid "encode" msgstr "" -#: ../../library/codecs.rst:13 msgid "decode" msgstr "" -#: ../../library/codecs.rst:13 msgid "streams" msgstr "" -#: ../../library/codecs.rst:13 msgid "stackable" msgstr "" -#: ../../library/codecs.rst:338 msgid "strict" msgstr "" -#: ../../library/codecs.rst:338 ../../library/codecs.rst:390 -#: ../../library/codecs.rst:413 msgid "error handler's name" msgstr "" -#: ../../library/codecs.rst:338 msgid "ignore" msgstr "" -#: ../../library/codecs.rst:338 msgid "replace" msgstr "" -#: ../../library/codecs.rst:338 msgid "backslashreplace" msgstr "" -#: ../../library/codecs.rst:338 msgid "surrogateescape" msgstr "" -#: ../../library/codecs.rst:338 msgid "? (question mark)" msgstr "" -#: ../../library/codecs.rst:338 msgid "replacement character" msgstr "" -#: ../../library/codecs.rst:338 msgid "\\ (backslash)" msgstr "" -#: ../../library/codecs.rst:338 ../../library/codecs.rst:390 msgid "escape sequence" msgstr "" -#: ../../library/codecs.rst:338 msgid "\\x" msgstr "" -#: ../../library/codecs.rst:338 msgid "\\u" msgstr "" -#: ../../library/codecs.rst:338 msgid "\\U" msgstr "" -#: ../../library/codecs.rst:390 msgid "xmlcharrefreplace" msgstr "" -#: ../../library/codecs.rst:390 msgid "namereplace" msgstr "" -#: ../../library/codecs.rst:390 msgid "\\N" msgstr "" -#: ../../library/codecs.rst:413 msgid "surrogatepass" msgstr "" diff --git a/library/codeop.po b/library/codeop.po index 9fc62fee..1fe85747 100644 --- a/library/codeop.po +++ b/library/codeop.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:56+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,96 +21,44 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/codeop.rst:2 msgid ":mod:`!codeop` --- Compile Python code" msgstr "" -#: ../../library/codeop.rst:10 msgid "**Source code:** :source:`Lib/codeop.py`" msgstr "" -#: ../../library/codeop.rst:14 -msgid "" -"The :mod:`!codeop` module provides utilities upon which the Python read-eval-" -"print loop can be emulated, as is done in the :mod:`code` module. As a " -"result, you probably don't want to use the module directly; if you want to " -"include such a loop in your program you probably want to use the :mod:`code` " -"module instead." +msgid "The :mod:`!codeop` module provides utilities upon which the Python read-eval-print loop can be emulated, as is done in the :mod:`code` module. As a result, you probably don't want to use the module directly; if you want to include such a loop in your program you probably want to use the :mod:`code` module instead." msgstr "" -#: ../../library/codeop.rst:20 msgid "There are two parts to this job:" msgstr "" -#: ../../library/codeop.rst:22 -msgid "" -"Being able to tell if a line of input completes a Python statement: in " -"short, telling whether to print '``>>>``' or '``...``' next." +msgid "Being able to tell if a line of input completes a Python statement: in short, telling whether to print '``>>>``' or '``...``' next." msgstr "" -#: ../../library/codeop.rst:25 -msgid "" -"Remembering which future statements the user has entered, so subsequent " -"input can be compiled with these in effect." +msgid "Remembering which future statements the user has entered, so subsequent input can be compiled with these in effect." msgstr "" -#: ../../library/codeop.rst:28 -msgid "" -"The :mod:`!codeop` module provides a way of doing each of these things, and " -"a way of doing them both." +msgid "The :mod:`!codeop` module provides a way of doing each of these things, and a way of doing them both." msgstr "" -#: ../../library/codeop.rst:31 msgid "To do just the former:" msgstr "" -#: ../../library/codeop.rst:35 -msgid "" -"Tries to compile *source*, which should be a string of Python code and " -"return a code object if *source* is valid Python code. In that case, the " -"filename attribute of the code object will be *filename*, which defaults to " -"``''``. Returns ``None`` if *source* is *not* valid Python code, but " -"is a prefix of valid Python code." +msgid "Tries to compile *source*, which should be a string of Python code and return a code object if *source* is valid Python code. In that case, the filename attribute of the code object will be *filename*, which defaults to ``''``. Returns ``None`` if *source* is *not* valid Python code, but is a prefix of valid Python code." msgstr "" -#: ../../library/codeop.rst:41 -msgid "" -"If there is a problem with *source*, an exception will be " -"raised. :exc:`SyntaxError` is raised if there is invalid Python syntax, " -"and :exc:`OverflowError` or :exc:`ValueError` if there is an invalid literal." +msgid "If there is a problem with *source*, an exception will be raised. :exc:`SyntaxError` is raised if there is invalid Python syntax, and :exc:`OverflowError` or :exc:`ValueError` if there is an invalid literal." msgstr "" -#: ../../library/codeop.rst:45 -msgid "" -"The *symbol* argument determines whether *source* is compiled as a statement " -"(``'single'``, the default), as a sequence of :term:`statement` (``'exec'``) " -"or as an :term:`expression` (``'eval'``). Any other value will " -"cause :exc:`ValueError` to be raised." +msgid "The *symbol* argument determines whether *source* is compiled as a statement (``'single'``, the default), as a sequence of :term:`statement` (``'exec'``) or as an :term:`expression` (``'eval'``). Any other value will cause :exc:`ValueError` to be raised." msgstr "" -#: ../../library/codeop.rst:52 -msgid "" -"It is possible (but not likely) that the parser stops parsing with a " -"successful outcome before reaching the end of the source; in this case, " -"trailing symbols may be ignored instead of causing an error. For example, a " -"backslash followed by two newlines may be followed by arbitrary garbage. " -"This will be fixed once the API for the parser is better." +msgid "It is possible (but not likely) that the parser stops parsing with a successful outcome before reaching the end of the source; in this case, trailing symbols may be ignored instead of causing an error. For example, a backslash followed by two newlines may be followed by arbitrary garbage. This will be fixed once the API for the parser is better." msgstr "" -#: ../../library/codeop.rst:61 -msgid "" -"Instances of this class have :meth:`~object.__call__` methods identical in " -"signature to the built-in function :func:`compile`, but with the difference " -"that if the instance compiles program text containing a :mod:`__future__` " -"statement, the instance 'remembers' and compiles all subsequent program " -"texts with the statement in force." +msgid "Instances of this class have :meth:`~object.__call__` methods identical in signature to the built-in function :func:`compile`, but with the difference that if the instance compiles program text containing a :mod:`__future__` statement, the instance 'remembers' and compiles all subsequent program texts with the statement in force." msgstr "" -#: ../../library/codeop.rst:70 -msgid "" -"Instances of this class have :meth:`~object.__call__` methods identical in " -"signature to :func:`compile_command`; the difference is that if the instance " -"compiles program text containing a :mod:`__future__` statement, the instance " -"'remembers' and compiles all subsequent program texts with the statement in " -"force." +msgid "Instances of this class have :meth:`~object.__call__` methods identical in signature to :func:`compile_command`; the difference is that if the instance compiles program text containing a :mod:`__future__` statement, the instance 'remembers' and compiles all subsequent program texts with the statement in force." msgstr "" diff --git a/library/collections.abc.po b/library/collections.abc.po index 9c79d094..b6d4b1aa 100644 --- a/library/collections.abc.po +++ b/library/collections.abc.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:56+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,51 +23,32 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/collections.abc.rst:2 msgid ":mod:`!collections.abc` --- Abstract Base Classes for Containers" msgstr "" -#: ../../library/collections.abc.rst:10 msgid "Formerly, this module was part of the :mod:`collections` module." msgstr "" -#: ../../library/collections.abc.rst:13 msgid "**Source code:** :source:`Lib/_collections_abc.py`" msgstr "" -#: ../../library/collections.abc.rst:23 -msgid "" -"This module provides :term:`abstract base classes ` " -"that can be used to test whether a class provides a particular interface; " -"for example, whether it is :term:`hashable` or whether it is " -"a :term:`mapping`." +msgid "This module provides :term:`abstract base classes ` that can be used to test whether a class provides a particular interface; for example, whether it is :term:`hashable` or whether it is a :term:`mapping`." msgstr "" -#: ../../library/collections.abc.rst:27 -msgid "" -"An :func:`issubclass` or :func:`isinstance` test for an interface works in " -"one of three ways." +msgid "An :func:`issubclass` or :func:`isinstance` test for an interface works in one of three ways." msgstr "" -#: ../../library/collections.abc.rst:30 -msgid "" -"A newly written class can inherit directly from one of the abstract base " -"classes. The class must supply the required abstract methods. The " -"remaining mixin methods come from inheritance and can be overridden if " -"desired. Other methods may be added as needed:" +msgid "A newly written class can inherit directly from one of the abstract base classes. The class must supply the required abstract methods. The remaining mixin methods come from inheritance and can be overridden if desired. Other methods may be added as needed:" msgstr "" -#: ../../library/collections.abc.rst:35 msgid "" "class C(Sequence): # Direct inheritance\n" -" def __init__(self): ... # Extra method not required by the " -"ABC\n" +" def __init__(self): ... # Extra method not required by the ABC\n" " def __getitem__(self, index): ... # Required abstract method\n" " def __len__(self): ... # Required abstract method\n" " def count(self, value): ... # Optionally override a mixin method" msgstr "" -#: ../../library/collections.abc.rst:43 msgid "" ">>> issubclass(C, Sequence)\n" "True\n" @@ -75,21 +56,12 @@ msgid "" "True" msgstr "" -#: ../../library/collections.abc.rst:50 -msgid "" -"Existing classes and built-in classes can be registered as \"virtual " -"subclasses\" of the ABCs. Those classes should define the full API " -"including all of the abstract methods and all of the mixin methods. This " -"lets users rely on :func:`issubclass` or :func:`isinstance` tests to " -"determine whether the full interface is supported. The exception to this " -"rule is for methods that are automatically inferred from the rest of the API:" +msgid "Existing classes and built-in classes can be registered as \"virtual subclasses\" of the ABCs. Those classes should define the full API including all of the abstract methods and all of the mixin methods. This lets users rely on :func:`issubclass` or :func:`isinstance` tests to determine whether the full interface is supported. The exception to this rule is for methods that are automatically inferred from the rest of the API:" msgstr "" -#: ../../library/collections.abc.rst:58 msgid "" "class D: # No inheritance\n" -" def __init__(self): ... # Extra method not required by the " -"ABC\n" +" def __init__(self): ... # Extra method not required by the ABC\n" " def __getitem__(self, index): ... # Abstract method\n" " def __len__(self): ... # Abstract method\n" " def count(self, value): ... # Mixin method\n" @@ -98,7 +70,6 @@ msgid "" "Sequence.register(D) # Register instead of inherit" msgstr "" -#: ../../library/collections.abc.rst:69 msgid "" ">>> issubclass(D, Sequence)\n" "True\n" @@ -106,29 +77,18 @@ msgid "" "True" msgstr "" -#: ../../library/collections.abc.rst:76 -msgid "" -"In this example, class :class:`!D` does not need to define ``__contains__``, " -"``__iter__``, and ``__reversed__`` because the :ref:`in-operator " -"`, the :term:`iteration ` logic, and " -"the :func:`reversed` function automatically fall back to using " -"``__getitem__`` and ``__len__``." +msgid "In this example, class :class:`!D` does not need to define ``__contains__``, ``__iter__``, and ``__reversed__`` because the :ref:`in-operator `, the :term:`iteration ` logic, and the :func:`reversed` function automatically fall back to using ``__getitem__`` and ``__len__``." msgstr "" -#: ../../library/collections.abc.rst:82 -msgid "" -"Some simple interfaces are directly recognizable by the presence of the " -"required methods (unless those methods have been set to :const:`None`):" +msgid "Some simple interfaces are directly recognizable by the presence of the required methods (unless those methods have been set to :const:`None`):" msgstr "" -#: ../../library/collections.abc.rst:85 msgid "" "class E:\n" " def __iter__(self): ...\n" " def __next__(self): ..." msgstr "" -#: ../../library/collections.abc.rst:91 msgid "" ">>> issubclass(E, Iterable)\n" "True\n" @@ -136,610 +96,369 @@ msgid "" "True" msgstr "" -#: ../../library/collections.abc.rst:98 -msgid "" -"Complex interfaces do not support this last technique because an interface " -"is more than just the presence of method names. Interfaces specify " -"semantics and relationships between methods that cannot be inferred solely " -"from the presence of specific method names. For example, knowing that a " -"class supplies ``__getitem__``, ``__len__``, and ``__iter__`` is " -"insufficient for distinguishing a :class:`Sequence` from a :class:`Mapping`." +msgid "Complex interfaces do not support this last technique because an interface is more than just the presence of method names. Interfaces specify semantics and relationships between methods that cannot be inferred solely from the presence of specific method names. For example, knowing that a class supplies ``__getitem__``, ``__len__``, and ``__iter__`` is insufficient for distinguishing a :class:`Sequence` from a :class:`Mapping`." msgstr "" -#: ../../library/collections.abc.rst:106 -msgid "" -"These abstract classes now support ``[]``. See :ref:`types-genericalias` " -"and :pep:`585`." +msgid "These abstract classes now support ``[]``. See :ref:`types-genericalias` and :pep:`585`." msgstr "" -#: ../../library/collections.abc.rst:113 msgid "Collections Abstract Base Classes" msgstr "" -#: ../../library/collections.abc.rst:115 -msgid "" -"The collections module offers the following :term:`ABCs `:" +msgid "The collections module offers the following :term:`ABCs `:" msgstr "" -#: ../../library/collections.abc.rst:120 msgid "ABC" msgstr "" -#: ../../library/collections.abc.rst:120 msgid "Inherits from" msgstr "" -#: ../../library/collections.abc.rst:120 msgid "Abstract Methods" msgstr "" -#: ../../library/collections.abc.rst:120 msgid "Mixin Methods" msgstr "" -#: ../../library/collections.abc.rst:122 msgid ":class:`Container` [1]_" msgstr "" -#: ../../library/collections.abc.rst:122 msgid "``__contains__``" msgstr "" -#: ../../library/collections.abc.rst:123 msgid ":class:`Hashable` [1]_" msgstr "" -#: ../../library/collections.abc.rst:123 msgid "``__hash__``" msgstr "" -#: ../../library/collections.abc.rst:124 msgid ":class:`Iterable` [1]_ [2]_" msgstr "" -#: ../../library/collections.abc.rst:124 ../../library/collections.abc.rst:125 msgid "``__iter__``" msgstr "" -#: ../../library/collections.abc.rst:125 msgid ":class:`Iterator` [1]_" msgstr "" -#: ../../library/collections.abc.rst:125 ../../library/collections.abc.rst:126 msgid ":class:`Iterable`" msgstr "" -#: ../../library/collections.abc.rst:125 msgid "``__next__``" msgstr "" -#: ../../library/collections.abc.rst:126 msgid ":class:`Reversible` [1]_" msgstr "" -#: ../../library/collections.abc.rst:126 msgid "``__reversed__``" msgstr "" -#: ../../library/collections.abc.rst:127 msgid ":class:`Generator` [1]_" msgstr "" -#: ../../library/collections.abc.rst:127 msgid ":class:`Iterator`" msgstr "" -#: ../../library/collections.abc.rst:127 ../../library/collections.abc.rst:176 msgid "``send``, ``throw``" msgstr "" -#: ../../library/collections.abc.rst:127 msgid "``close``, ``__iter__``, ``__next__``" msgstr "" -#: ../../library/collections.abc.rst:128 msgid ":class:`Sized` [1]_" msgstr "" -#: ../../library/collections.abc.rst:128 msgid "``__len__``" msgstr "" -#: ../../library/collections.abc.rst:129 msgid ":class:`Callable` [1]_" msgstr "" -#: ../../library/collections.abc.rst:129 msgid "``__call__``" msgstr "" -#: ../../library/collections.abc.rst:130 msgid ":class:`Collection` [1]_" msgstr "" -#: ../../library/collections.abc.rst:130 msgid ":class:`Sized`, :class:`Iterable`, :class:`Container`" msgstr "" -#: ../../library/collections.abc.rst:130 ../../library/collections.abc.rst:146 msgid "``__contains__``, ``__iter__``, ``__len__``" msgstr "" -#: ../../library/collections.abc.rst:134 ../../library/collections.abc.rst:137 -#: ../../library/collections.abc.rst:143 msgid ":class:`Sequence`" msgstr "" -#: ../../library/collections.abc.rst:134 msgid ":class:`Reversible`, :class:`Collection`" msgstr "" -#: ../../library/collections.abc.rst:134 ../../library/collections.abc.rst:143 msgid "``__getitem__``, ``__len__``" msgstr "" -#: ../../library/collections.abc.rst:134 -msgid "" -"``__contains__``, ``__iter__``, ``__reversed__``, ``index``, and ``count``" +msgid "``__contains__``, ``__iter__``, ``__reversed__``, ``index``, and ``count``" msgstr "" -#: ../../library/collections.abc.rst:137 msgid ":class:`MutableSequence`" msgstr "" -#: ../../library/collections.abc.rst:137 -msgid "" -"``__getitem__``, ``__setitem__``, ``__delitem__``, ``__len__``, ``insert``" +msgid "``__getitem__``, ``__setitem__``, ``__delitem__``, ``__len__``, ``insert``" msgstr "" -#: ../../library/collections.abc.rst:137 -msgid "" -"Inherited :class:`Sequence` methods and ``append``, ``clear``, ``reverse``, " -"``extend``, ``pop``, ``remove``, and ``__iadd__``" +msgid "Inherited :class:`Sequence` methods and ``append``, ``clear``, ``reverse``, ``extend``, ``pop``, ``remove``, and ``__iadd__``" msgstr "" -#: ../../library/collections.abc.rst:143 msgid ":class:`ByteString`" msgstr "" -#: ../../library/collections.abc.rst:143 msgid "Inherited :class:`Sequence` methods" msgstr "" -#: ../../library/collections.abc.rst:146 ../../library/collections.abc.rst:151 msgid ":class:`Set`" msgstr "" -#: ../../library/collections.abc.rst:146 ../../library/collections.abc.rst:157 msgid ":class:`Collection`" msgstr "" -#: ../../library/collections.abc.rst:146 -msgid "" -"``__le__``, ``__lt__``, ``__eq__``, ``__ne__``, ``__gt__``, ``__ge__``, " -"``__and__``, ``__or__``, ``__sub__``, ``__rsub__``, ``__xor__``, " -"``__rxor__`` and ``isdisjoint``" +msgid "``__le__``, ``__lt__``, ``__eq__``, ``__ne__``, ``__gt__``, ``__ge__``, ``__and__``, ``__or__``, ``__sub__``, ``__rsub__``, ``__xor__``, ``__rxor__`` and ``isdisjoint``" msgstr "" -#: ../../library/collections.abc.rst:151 msgid ":class:`MutableSet`" msgstr "" -#: ../../library/collections.abc.rst:151 msgid "``__contains__``, ``__iter__``, ``__len__``, ``add``, ``discard``" msgstr "" -#: ../../library/collections.abc.rst:151 -msgid "" -"Inherited :class:`Set` methods and ``clear``, ``pop``, ``remove``, " -"``__ior__``, ``__iand__``, ``__ixor__``, and ``__isub__``" +msgid "Inherited :class:`Set` methods and ``clear``, ``pop``, ``remove``, ``__ior__``, ``__iand__``, ``__ixor__``, and ``__isub__``" msgstr "" -#: ../../library/collections.abc.rst:157 ../../library/collections.abc.rst:161 msgid ":class:`Mapping`" msgstr "" -#: ../../library/collections.abc.rst:157 msgid "``__getitem__``, ``__iter__``, ``__len__``" msgstr "" -#: ../../library/collections.abc.rst:157 -msgid "" -"``__contains__``, ``keys``, ``items``, ``values``, ``get``, ``__eq__``, and " -"``__ne__``" +msgid "``__contains__``, ``keys``, ``items``, ``values``, ``get``, ``__eq__``, and ``__ne__``" msgstr "" -#: ../../library/collections.abc.rst:161 msgid ":class:`MutableMapping`" msgstr "" -#: ../../library/collections.abc.rst:161 -msgid "" -"``__getitem__``, ``__setitem__``, ``__delitem__``, ``__iter__``, ``__len__``" +msgid "``__getitem__``, ``__setitem__``, ``__delitem__``, ``__iter__``, ``__len__``" msgstr "" -#: ../../library/collections.abc.rst:161 -msgid "" -"Inherited :class:`Mapping` methods and ``pop``, ``popitem``, ``clear``, " -"``update``, and ``setdefault``" +msgid "Inherited :class:`Mapping` methods and ``pop``, ``popitem``, ``clear``, ``update``, and ``setdefault``" msgstr "" -#: ../../library/collections.abc.rst:168 msgid ":class:`MappingView`" msgstr "" -#: ../../library/collections.abc.rst:168 msgid ":class:`Sized`" msgstr "" -#: ../../library/collections.abc.rst:168 msgid "``__init__``, ``__len__`` and ``__repr__``" msgstr "" -#: ../../library/collections.abc.rst:169 msgid ":class:`ItemsView`" msgstr "" -#: ../../library/collections.abc.rst:169 ../../library/collections.abc.rst:171 msgid ":class:`MappingView`, :class:`Set`" msgstr "" -#: ../../library/collections.abc.rst:169 ../../library/collections.abc.rst:171 -#: ../../library/collections.abc.rst:173 msgid "``__contains__``, ``__iter__``" msgstr "" -#: ../../library/collections.abc.rst:171 msgid ":class:`KeysView`" msgstr "" -#: ../../library/collections.abc.rst:173 msgid ":class:`ValuesView`" msgstr "" -#: ../../library/collections.abc.rst:173 msgid ":class:`MappingView`, :class:`Collection`" msgstr "" -#: ../../library/collections.abc.rst:175 msgid ":class:`Awaitable` [1]_" msgstr "" -#: ../../library/collections.abc.rst:175 msgid "``__await__``" msgstr "" -#: ../../library/collections.abc.rst:176 msgid ":class:`Coroutine` [1]_" msgstr "" -#: ../../library/collections.abc.rst:176 msgid ":class:`Awaitable`" msgstr "" -#: ../../library/collections.abc.rst:176 msgid "``close``" msgstr "" -#: ../../library/collections.abc.rst:177 msgid ":class:`AsyncIterable` [1]_" msgstr "" -#: ../../library/collections.abc.rst:177 ../../library/collections.abc.rst:178 msgid "``__aiter__``" msgstr "" -#: ../../library/collections.abc.rst:178 msgid ":class:`AsyncIterator` [1]_" msgstr "" -#: ../../library/collections.abc.rst:178 msgid ":class:`AsyncIterable`" msgstr "" -#: ../../library/collections.abc.rst:178 msgid "``__anext__``" msgstr "" -#: ../../library/collections.abc.rst:179 msgid ":class:`AsyncGenerator` [1]_" msgstr "" -#: ../../library/collections.abc.rst:179 msgid ":class:`AsyncIterator`" msgstr "" -#: ../../library/collections.abc.rst:179 msgid "``asend``, ``athrow``" msgstr "" -#: ../../library/collections.abc.rst:179 msgid "``aclose``, ``__aiter__``, ``__anext__``" msgstr "" -#: ../../library/collections.abc.rst:180 msgid ":class:`Buffer` [1]_" msgstr "" -#: ../../library/collections.abc.rst:180 msgid "``__buffer__``" msgstr "" -#: ../../library/collections.abc.rst:185 msgid "Footnotes" msgstr "" -#: ../../library/collections.abc.rst:186 -msgid "" -"These ABCs override :meth:`~abc.ABCMeta.__subclasshook__` to support testing " -"an interface by verifying the required methods are present and have not been " -"set to :const:`None`. This only works for simple interfaces. More complex " -"interfaces require registration or direct subclassing." +msgid "These ABCs override :meth:`~abc.ABCMeta.__subclasshook__` to support testing an interface by verifying the required methods are present and have not been set to :const:`None`. This only works for simple interfaces. More complex interfaces require registration or direct subclassing." msgstr "" -#: ../../library/collections.abc.rst:192 -msgid "" -"Checking ``isinstance(obj, Iterable)`` detects classes that are registered " -"as :class:`Iterable` or that have an :meth:`~container.__iter__` method, but " -"it does not detect classes that iterate with the :meth:`~object.__getitem__` " -"method. The only reliable way to determine whether an object " -"is :term:`iterable` is to call ``iter(obj)``." +msgid "Checking ``isinstance(obj, Iterable)`` detects classes that are registered as :class:`Iterable` or that have an :meth:`~container.__iter__` method, but it does not detect classes that iterate with the :meth:`~object.__getitem__` method. The only reliable way to determine whether an object is :term:`iterable` is to call ``iter(obj)``." msgstr "" -#: ../../library/collections.abc.rst:200 msgid "Collections Abstract Base Classes -- Detailed Descriptions" msgstr "" -#: ../../library/collections.abc.rst:205 msgid "ABC for classes that provide the :meth:`~object.__contains__` method." msgstr "" -#: ../../library/collections.abc.rst:209 msgid "ABC for classes that provide the :meth:`~object.__hash__` method." msgstr "" -#: ../../library/collections.abc.rst:213 msgid "ABC for classes that provide the :meth:`~object.__len__` method." msgstr "" -#: ../../library/collections.abc.rst:217 msgid "ABC for classes that provide the :meth:`~object.__call__` method." msgstr "" -#: ../../library/collections.abc.rst:219 -msgid "" -"See :ref:`annotating-callables` for details on how to use :class:`!Callable` " -"in type annotations." +msgid "See :ref:`annotating-callables` for details on how to use :class:`!Callable` in type annotations." msgstr "" -#: ../../library/collections.abc.rst:224 msgid "ABC for classes that provide the :meth:`~container.__iter__` method." msgstr "" -#: ../../library/collections.abc.rst:226 -msgid "" -"Checking ``isinstance(obj, Iterable)`` detects classes that are registered " -"as :class:`Iterable` or that have an :meth:`~container.__iter__` method, but " -"it does not detect classes that iterate with the :meth:`~object.__getitem__` " -"method. The only reliable way to determine whether an object " -"is :term:`iterable` is to call ``iter(obj)``." +msgid "Checking ``isinstance(obj, Iterable)`` detects classes that are registered as :class:`Iterable` or that have an :meth:`~container.__iter__` method, but it does not detect classes that iterate with the :meth:`~object.__getitem__` method. The only reliable way to determine whether an object is :term:`iterable` is to call ``iter(obj)``." msgstr "" -#: ../../library/collections.abc.rst:235 msgid "ABC for sized iterable container classes." msgstr "" -#: ../../library/collections.abc.rst:241 -msgid "" -"ABC for classes that provide the :meth:`~iterator.__iter__` " -"and :meth:`~iterator.__next__` methods. See also the definition " -"of :term:`iterator`." +msgid "ABC for classes that provide the :meth:`~iterator.__iter__` and :meth:`~iterator.__next__` methods. See also the definition of :term:`iterator`." msgstr "" -#: ../../library/collections.abc.rst:247 -msgid "" -"ABC for iterable classes that also provide the :meth:`~object.__reversed__` " -"method." +msgid "ABC for iterable classes that also provide the :meth:`~object.__reversed__` method." msgstr "" -#: ../../library/collections.abc.rst:254 -msgid "" -"ABC for :term:`generator` classes that implement the protocol defined " -"in :pep:`342` that extends :term:`iterators ` with " -"the :meth:`~generator.send`, :meth:`~generator.throw` " -"and :meth:`~generator.close` methods." +msgid "ABC for :term:`generator` classes that implement the protocol defined in :pep:`342` that extends :term:`iterators ` with the :meth:`~generator.send`, :meth:`~generator.throw` and :meth:`~generator.close` methods." msgstr "" -#: ../../library/collections.abc.rst:259 -msgid "" -"See :ref:`annotating-generators-and-coroutines` for details on " -"using :class:`!Generator` in type annotations." +msgid "See :ref:`annotating-generators-and-coroutines` for details on using :class:`!Generator` in type annotations." msgstr "" -#: ../../library/collections.abc.rst:268 msgid "ABCs for read-only and mutable :term:`sequences `." msgstr "" -#: ../../library/collections.abc.rst:270 -msgid "" -"Implementation note: Some of the mixin methods, such " -"as :meth:`~container.__iter__`, :meth:`~object.__reversed__`, " -"and :meth:`~sequence.index` make repeated calls to the " -"underlying :meth:`~object.__getitem__` method. Consequently, " -"if :meth:`~object.__getitem__` is implemented with constant access speed, " -"the mixin methods will have linear performance; however, if the underlying " -"method is linear (as it would be with a linked list), the mixins will have " -"quadratic performance and will likely need to be overridden." +msgid "Implementation note: Some of the mixin methods, such as :meth:`~container.__iter__`, :meth:`~object.__reversed__`, and :meth:`~sequence.index` make repeated calls to the underlying :meth:`~object.__getitem__` method. Consequently, if :meth:`~object.__getitem__` is implemented with constant access speed, the mixin methods will have linear performance; however, if the underlying method is linear (as it would be with a linked list), the mixins will have quadratic performance and will likely need to be overridden." msgstr "" -#: ../../library/collections.abc.rst:282 msgid "Return first index of *value*." msgstr "" -#: ../../library/collections.abc.rst:284 msgid "Raises :exc:`ValueError` if the value is not present." msgstr "" -#: ../../library/collections.abc.rst:286 -msgid "" -"Supporting the *start* and *stop* arguments is optional, but recommended." +msgid "Supporting the *start* and *stop* arguments is optional, but recommended." msgstr "" -#: ../../library/collections.abc.rst:288 -msgid "" -"The :meth:`~sequence.index` method gained support for the *stop* and *start* " -"arguments." +msgid "The :meth:`~sequence.index` method gained support for the *stop* and *start* arguments." msgstr "" -#: ../../library/collections.abc.rst:292 msgid "The :class:`ByteString` ABC has been deprecated." msgstr "" -#: ../../library/collections.abc.rst:295 -msgid "" -"Use ``isinstance(obj, collections.abc.Buffer)`` to test if ``obj`` " -"implements the :ref:`buffer protocol ` at runtime. For use in " -"type annotations, either use :class:`Buffer` or a union that explicitly " -"specifies the types your code supports (e.g., ``bytes | bytearray | " -"memoryview``)." +msgid "Use ``isinstance(obj, collections.abc.Buffer)`` to test if ``obj`` implements the :ref:`buffer protocol ` at runtime. For use in type annotations, either use :class:`Buffer` or a union that explicitly specifies the types your code supports (e.g., ``bytes | bytearray | memoryview``)." msgstr "" -#: ../../library/collections.abc.rst:301 -msgid "" -":class:`!ByteString` was originally intended to be an abstract class that " -"would serve as a supertype of both :class:`bytes` and :class:`bytearray`. " -"However, since the ABC never had any methods, knowing that an object was an " -"instance of :class:`!ByteString` never actually told you anything useful " -"about the object. Other common buffer types such as :class:`memoryview` were " -"also never understood as subtypes of :class:`!ByteString` (either at runtime " -"or by static type checkers)." +msgid ":class:`!ByteString` was originally intended to be an abstract class that would serve as a supertype of both :class:`bytes` and :class:`bytearray`. However, since the ABC never had any methods, knowing that an object was an instance of :class:`!ByteString` never actually told you anything useful about the object. Other common buffer types such as :class:`memoryview` were also never understood as subtypes of :class:`!ByteString` (either at runtime or by static type checkers)." msgstr "" -#: ../../library/collections.abc.rst:309 msgid "See :pep:`PEP 688 <688#current-options>` for more details." msgstr "" -#: ../../library/collections.abc.rst:314 msgid "ABCs for read-only and mutable :ref:`sets `." msgstr "" -#: ../../library/collections.abc.rst:319 msgid "ABCs for read-only and mutable :term:`mappings `." msgstr "" -#: ../../library/collections.abc.rst:326 -msgid "" -"ABCs for mapping, items, keys, and values :term:`views `." +msgid "ABCs for mapping, items, keys, and values :term:`views `." msgstr "" -#: ../../library/collections.abc.rst:330 -msgid "" -"ABC for :term:`awaitable` objects, which can be used in :keyword:`await` " -"expressions. Custom implementations must provide " -"the :meth:`~object.__await__` method." +msgid "ABC for :term:`awaitable` objects, which can be used in :keyword:`await` expressions. Custom implementations must provide the :meth:`~object.__await__` method." msgstr "" -#: ../../library/collections.abc.rst:334 -msgid "" -":term:`Coroutine ` objects and instances of " -"the :class:`~collections.abc.Coroutine` ABC are all instances of this ABC." +msgid ":term:`Coroutine ` objects and instances of the :class:`~collections.abc.Coroutine` ABC are all instances of this ABC." msgstr "" -#: ../../library/collections.abc.rst:338 -msgid "" -"In CPython, generator-based coroutines (:term:`generators ` " -"decorated with :deco:`types.coroutine`) are *awaitables*, even though they " -"do not have an :meth:`~object.__await__` method. Using ``isinstance(gencoro, " -"Awaitable)`` for them will return ``False``. Use :func:`inspect.isawaitable` " -"to detect them." +msgid "In CPython, generator-based coroutines (:term:`generators ` decorated with :deco:`types.coroutine`) are *awaitables*, even though they do not have an :meth:`~object.__await__` method. Using ``isinstance(gencoro, Awaitable)`` for them will return ``False``. Use :func:`inspect.isawaitable` to detect them." msgstr "" -#: ../../library/collections.abc.rst:348 -msgid "" -"ABC for :term:`coroutine` compatible classes. These implement the following " -"methods, defined in :ref:`coroutine-" -"objects`: :meth:`~coroutine.send`, :meth:`~coroutine.throw`, " -"and :meth:`~coroutine.close`. Custom implementations must also " -"implement :meth:`~object.__await__`. All :class:`Coroutine` instances are " -"also instances of :class:`Awaitable`." +msgid "ABC for :term:`coroutine` compatible classes. These implement the following methods, defined in :ref:`coroutine-objects`: :meth:`~coroutine.send`, :meth:`~coroutine.throw`, and :meth:`~coroutine.close`. Custom implementations must also implement :meth:`~object.__await__`. All :class:`Coroutine` instances are also instances of :class:`Awaitable`." msgstr "" -#: ../../library/collections.abc.rst:356 -msgid "" -"In CPython, generator-based coroutines (:term:`generators ` " -"decorated with :deco:`types.coroutine`) are *awaitables*, even though they " -"do not have an :meth:`~object.__await__` method. Using ``isinstance(gencoro, " -"Coroutine)`` for them will return ``False``. Use :func:`inspect.isawaitable` " -"to detect them." +msgid "In CPython, generator-based coroutines (:term:`generators ` decorated with :deco:`types.coroutine`) are *awaitables*, even though they do not have an :meth:`~object.__await__` method. Using ``isinstance(gencoro, Coroutine)`` for them will return ``False``. Use :func:`inspect.isawaitable` to detect them." msgstr "" -#: ../../library/collections.abc.rst:362 -msgid "" -"See :ref:`annotating-generators-and-coroutines` for details on " -"using :class:`!Coroutine` in type annotations. The variance and order of " -"type parameters correspond to those of :class:`Generator`." +msgid "See :ref:`annotating-generators-and-coroutines` for details on using :class:`!Coroutine` in type annotations. The variance and order of type parameters correspond to those of :class:`Generator`." msgstr "" -#: ../../library/collections.abc.rst:371 -msgid "" -"ABC for classes that provide an ``__aiter__`` method. See also the " -"definition of :term:`asynchronous iterable`." +msgid "ABC for classes that provide an ``__aiter__`` method. See also the definition of :term:`asynchronous iterable`." msgstr "" -#: ../../library/collections.abc.rst:378 -msgid "" -"ABC for classes that provide ``__aiter__`` and ``__anext__`` methods. See " -"also the definition of :term:`asynchronous iterator`." +msgid "ABC for classes that provide ``__aiter__`` and ``__anext__`` methods. See also the definition of :term:`asynchronous iterator`." msgstr "" -#: ../../library/collections.abc.rst:385 -msgid "" -"ABC for :term:`asynchronous generator` classes that implement the protocol " -"defined in :pep:`525` and :pep:`492`." +msgid "ABC for :term:`asynchronous generator` classes that implement the protocol defined in :pep:`525` and :pep:`492`." msgstr "" -#: ../../library/collections.abc.rst:388 -msgid "" -"See :ref:`annotating-generators-and-coroutines` for details on " -"using :class:`!AsyncGenerator` in type annotations." +msgid "See :ref:`annotating-generators-and-coroutines` for details on using :class:`!AsyncGenerator` in type annotations." msgstr "" -#: ../../library/collections.abc.rst:395 -msgid "" -"ABC for classes that provide the :meth:`~object.__buffer__` method, " -"implementing the :ref:`buffer protocol `. See :pep:`688`." +msgid "ABC for classes that provide the :meth:`~object.__buffer__` method, implementing the :ref:`buffer protocol `. See :pep:`688`." msgstr "" -#: ../../library/collections.abc.rst:401 msgid "Examples and Recipes" msgstr "" -#: ../../library/collections.abc.rst:403 -msgid "" -"ABCs allow us to ask classes or instances if they provide particular " -"functionality, for example::" +msgid "ABCs allow us to ask classes or instances if they provide particular functionality, for example::" msgstr "" -#: ../../library/collections.abc.rst:406 msgid "" "size = None\n" "if isinstance(myvar, collections.abc.Sized):\n" " size = len(myvar)" msgstr "" -#: ../../library/collections.abc.rst:410 -msgid "" -"Several of the ABCs are also useful as mixins that make it easier to develop " -"classes supporting container APIs. For example, to write a class supporting " -"the full :class:`Set` API, it is only necessary to supply the three " -"underlying abstract " -"methods: :meth:`~object.__contains__`, :meth:`~container.__iter__`, " -"and :meth:`~object.__len__`. The ABC supplies the remaining methods such " -"as :meth:`!__and__` and :meth:`~frozenset.isdisjoint`::" +msgid "Several of the ABCs are also useful as mixins that make it easier to develop classes supporting container APIs. For example, to write a class supporting the full :class:`Set` API, it is only necessary to supply the three underlying abstract methods: :meth:`~object.__contains__`, :meth:`~container.__iter__`, and :meth:`~object.__len__`. The ABC supplies the remaining methods such as :meth:`!__and__` and :meth:`~frozenset.isdisjoint`::" msgstr "" -#: ../../library/collections.abc.rst:417 msgid "" "class ListBasedSet(collections.abc.Set):\n" " ''' Alternate set implementation favoring space over speed\n" @@ -761,49 +480,23 @@ msgid "" "\n" "s1 = ListBasedSet('abcdef')\n" "s2 = ListBasedSet('defghi')\n" -"overlap = s1 & s2 # The __and__() method is supported " -"automatically" +"overlap = s1 & s2 # The __and__() method is supported automatically" msgstr "" -#: ../../library/collections.abc.rst:439 msgid "Notes on using :class:`Set` and :class:`MutableSet` as a mixin:" msgstr "" -#: ../../library/collections.abc.rst:442 -msgid "" -"Since some set operations create new sets, the default mixin methods need a " -"way to create new instances from an :term:`iterable`. The class constructor " -"is assumed to have a signature in the form ``ClassName(iterable)``. That " -"assumption is factored-out to an internal :class:`classmethod` " -"called :meth:`!_from_iterable` which calls ``cls(iterable)`` to produce a " -"new set. If the :class:`Set` mixin is being used in a class with a different " -"constructor signature, you will need to override :meth:`!_from_iterable` " -"with a classmethod or regular method that can construct new instances from " -"an iterable argument." -msgstr "" - -#: ../../library/collections.abc.rst:453 -msgid "" -"To override the comparisons (presumably for speed, as the semantics are " -"fixed), redefine :meth:`~object.__le__` and :meth:`~object.__ge__`, then the " -"other operations will automatically follow suit." +msgid "Since some set operations create new sets, the default mixin methods need a way to create new instances from an :term:`iterable`. The class constructor is assumed to have a signature in the form ``ClassName(iterable)``. That assumption is factored-out to an internal :class:`classmethod` called :meth:`!_from_iterable` which calls ``cls(iterable)`` to produce a new set. If the :class:`Set` mixin is being used in a class with a different constructor signature, you will need to override :meth:`!_from_iterable` with a classmethod or regular method that can construct new instances from an iterable argument." msgstr "" -#: ../../library/collections.abc.rst:459 -msgid "" -"The :class:`Set` mixin provides a :meth:`!_hash` method to compute a hash " -"value for the set; however, :meth:`~object.__hash__` is not defined because " -"not all sets are :term:`hashable` or immutable. To add set hashability " -"using mixins, inherit from both :class:`Set` and :class:`Hashable`, then " -"define ``__hash__ = Set._hash``." +msgid "To override the comparisons (presumably for speed, as the semantics are fixed), redefine :meth:`~object.__le__` and :meth:`~object.__ge__`, then the other operations will automatically follow suit." msgstr "" -#: ../../library/collections.abc.rst:467 -msgid "" -"`OrderedSet recipe `_ for an " -"example built on :class:`MutableSet`." +msgid "The :class:`Set` mixin provides a :meth:`!_hash` method to compute a hash value for the set; however, :meth:`~object.__hash__` is not defined because not all sets are :term:`hashable` or immutable. To add set hashability using mixins, inherit from both :class:`Set` and :class:`Hashable`, then define ``__hash__ = Set._hash``." +msgstr "" + +msgid "`OrderedSet recipe `_ for an example built on :class:`MutableSet`." msgstr "" -#: ../../library/collections.abc.rst:470 msgid "For more about ABCs, see the :mod:`abc` module and :pep:`3119`." msgstr "" diff --git a/library/collections.po b/library/collections.po index ec4081cb..7013800b 100644 --- a/library/collections.po +++ b/library/collections.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:56+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,190 +23,111 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/collections.rst:2 msgid ":mod:`!collections` --- Container datatypes" msgstr "" -#: ../../library/collections.rst:10 msgid "**Source code:** :source:`Lib/collections/__init__.py`" msgstr "" -#: ../../library/collections.rst:20 -msgid "" -"This module implements specialized container datatypes providing " -"alternatives to Python's general purpose built-in " -"containers, :class:`dict`, :class:`list`, :class:`set`, and :class:`tuple`." +msgid "This module implements specialized container datatypes providing alternatives to Python's general purpose built-in containers, :class:`dict`, :class:`list`, :class:`set`, and :class:`tuple`." msgstr "" -#: ../../library/collections.rst:25 msgid ":func:`namedtuple`" msgstr "" -#: ../../library/collections.rst:25 msgid "factory function for creating tuple subclasses with named fields" msgstr "" -#: ../../library/collections.rst:26 msgid ":class:`deque`" msgstr "" -#: ../../library/collections.rst:26 msgid "list-like container with fast appends and pops on either end" msgstr "" -#: ../../library/collections.rst:27 msgid ":class:`ChainMap`" msgstr "" -#: ../../library/collections.rst:27 msgid "dict-like class for creating a single view of multiple mappings" msgstr "" -#: ../../library/collections.rst:28 msgid ":class:`Counter`" msgstr "" -#: ../../library/collections.rst:28 msgid "dict subclass for counting :term:`hashable` objects" msgstr "" -#: ../../library/collections.rst:29 msgid ":class:`OrderedDict`" msgstr "" -#: ../../library/collections.rst:29 msgid "dict subclass that remembers the order entries were added" msgstr "" -#: ../../library/collections.rst:30 msgid ":class:`defaultdict`" msgstr "" -#: ../../library/collections.rst:30 msgid "dict subclass that calls a factory function to supply missing values" msgstr "" -#: ../../library/collections.rst:31 msgid ":class:`UserDict`" msgstr "" -#: ../../library/collections.rst:31 msgid "wrapper around dictionary objects for easier dict subclassing" msgstr "" -#: ../../library/collections.rst:32 msgid ":class:`UserList`" msgstr "" -#: ../../library/collections.rst:32 msgid "wrapper around list objects for easier list subclassing" msgstr "" -#: ../../library/collections.rst:33 msgid ":class:`UserString`" msgstr "" -#: ../../library/collections.rst:33 msgid "wrapper around string objects for easier string subclassing" msgstr "" -#: ../../library/collections.rst:38 msgid ":class:`ChainMap` objects" msgstr "" -#: ../../library/collections.rst:42 -msgid "" -"A :class:`ChainMap` class is provided for quickly linking a number of " -"mappings so they can be treated as a single unit. It is often much faster " -"than creating a new dictionary and running multiple :meth:`~dict.update` " -"calls." +msgid "A :class:`ChainMap` class is provided for quickly linking a number of mappings so they can be treated as a single unit. It is often much faster than creating a new dictionary and running multiple :meth:`~dict.update` calls." msgstr "" -#: ../../library/collections.rst:46 -msgid "" -"The class can be used to simulate nested scopes and is useful in templating." +msgid "The class can be used to simulate nested scopes and is useful in templating." msgstr "" -#: ../../library/collections.rst:50 -msgid "" -"A :class:`ChainMap` groups multiple dicts or other mappings together to " -"create a single, updateable view. If no *maps* are specified, a single " -"empty dictionary is provided so that a new chain always has at least one " -"mapping." +msgid "A :class:`ChainMap` groups multiple dicts or other mappings together to create a single, updateable view. If no *maps* are specified, a single empty dictionary is provided so that a new chain always has at least one mapping." msgstr "" -#: ../../library/collections.rst:54 -msgid "" -"The underlying mappings are stored in a list. That list is public and can " -"be accessed or updated using the *maps* attribute. There is no other state." +msgid "The underlying mappings are stored in a list. That list is public and can be accessed or updated using the *maps* attribute. There is no other state." msgstr "" -#: ../../library/collections.rst:57 -msgid "" -"Lookups search the underlying mappings successively until a key is found. " -"In contrast, writes, updates, and deletions only operate on the first " -"mapping." +msgid "Lookups search the underlying mappings successively until a key is found. In contrast, writes, updates, and deletions only operate on the first mapping." msgstr "" -#: ../../library/collections.rst:60 -msgid "" -"A :class:`ChainMap` incorporates the underlying mappings by reference. So, " -"if one of the underlying mappings gets updated, those changes will be " -"reflected in :class:`ChainMap`." +msgid "A :class:`ChainMap` incorporates the underlying mappings by reference. So, if one of the underlying mappings gets updated, those changes will be reflected in :class:`ChainMap`." msgstr "" -#: ../../library/collections.rst:64 -msgid "" -"All of the usual dictionary methods are supported. In addition, there is a " -"*maps* attribute, a method for creating new subcontexts, and a property for " -"accessing all but the first mapping:" +msgid "All of the usual dictionary methods are supported. In addition, there is a *maps* attribute, a method for creating new subcontexts, and a property for accessing all but the first mapping:" msgstr "" -#: ../../library/collections.rst:70 -msgid "" -"A user updateable list of mappings. The list is ordered from first-searched " -"to last-searched. It is the only stored state and can be modified to change " -"which mappings are searched. The list should always contain at least one " -"mapping." +msgid "A user updateable list of mappings. The list is ordered from first-searched to last-searched. It is the only stored state and can be modified to change which mappings are searched. The list should always contain at least one mapping." msgstr "" -#: ../../library/collections.rst:77 -msgid "" -"Returns a new :class:`ChainMap` containing a new map followed by all of the " -"maps in the current instance. If ``m`` is specified, it becomes the new map " -"at the front of the list of mappings; if not specified, an empty dict is " -"used, so that a call to ``d.new_child()`` is equivalent to: ``ChainMap({}, " -"*d.maps)``. If any keyword arguments are specified, they update passed map " -"or new empty dict. This method is used for creating subcontexts that can be " -"updated without altering values in any of the parent mappings." +msgid "Returns a new :class:`ChainMap` containing a new map followed by all of the maps in the current instance. If ``m`` is specified, it becomes the new map at the front of the list of mappings; if not specified, an empty dict is used, so that a call to ``d.new_child()`` is equivalent to: ``ChainMap({}, *d.maps)``. If any keyword arguments are specified, they update passed map or new empty dict. This method is used for creating subcontexts that can be updated without altering values in any of the parent mappings." msgstr "" -#: ../../library/collections.rst:86 msgid "The optional ``m`` parameter was added." msgstr "" -#: ../../library/collections.rst:89 msgid "Keyword arguments support was added." msgstr "" -#: ../../library/collections.rst:94 -msgid "" -"Property returning a new :class:`ChainMap` containing all of the maps in the " -"current instance except the first one. This is useful for skipping the " -"first map in the search. Use cases are similar to those for " -"the :keyword:`nonlocal` keyword used in :term:`nested scopes `. The use cases also parallel those for the built-in :func:`super` " -"function. A reference to ``d.parents`` is equivalent to: " -"``ChainMap(*d.maps[1:])``." +msgid "Property returning a new :class:`ChainMap` containing all of the maps in the current instance except the first one. This is useful for skipping the first map in the search. Use cases are similar to those for the :keyword:`nonlocal` keyword used in :term:`nested scopes `. The use cases also parallel those for the built-in :func:`super` function. A reference to ``d.parents`` is equivalent to: ``ChainMap(*d.maps[1:])``." msgstr "" -#: ../../library/collections.rst:102 -msgid "" -"Note, the iteration order of a :class:`ChainMap` is determined by scanning " -"the mappings last to first::" +msgid "Note, the iteration order of a :class:`ChainMap` is determined by scanning the mappings last to first::" msgstr "" -#: ../../library/collections.rst:105 msgid "" ">>> baseline = {'music': 'bach', 'art': 'rembrandt'}\n" ">>> adjustments = {'art': 'van gogh', 'opera': 'carmen'}\n" @@ -214,13 +135,9 @@ msgid "" "['music', 'art', 'opera']" msgstr "" -#: ../../library/collections.rst:110 -msgid "" -"This gives the same ordering as a series of :meth:`dict.update` calls " -"starting with the last mapping::" +msgid "This gives the same ordering as a series of :meth:`dict.update` calls starting with the last mapping::" msgstr "" -#: ../../library/collections.rst:113 msgid "" ">>> combined = baseline.copy()\n" ">>> combined.update(adjustments)\n" @@ -228,67 +145,38 @@ msgid "" "['music', 'art', 'opera']" msgstr "" -#: ../../library/collections.rst:118 msgid "Added support for ``|`` and ``|=`` operators, specified in :pep:`584`." msgstr "" -#: ../../library/collections.rst:123 -msgid "" -"The `MultiContext class `_ in the Enthought `CodeTools package " -"`_ has options to support writing to " -"any mapping in the chain." +msgid "The `MultiContext class `_ in the Enthought `CodeTools package `_ has options to support writing to any mapping in the chain." msgstr "" -#: ../../library/collections.rst:129 -msgid "" -"Django's `Context class `_ for templating is a read-only chain of mappings. It " -"also features pushing and popping of contexts similar to " -"the :meth:`~collections.ChainMap.new_child` method and " -"the :attr:`~collections.ChainMap.parents` property." +msgid "Django's `Context class `_ for templating is a read-only chain of mappings. It also features pushing and popping of contexts similar to the :meth:`~collections.ChainMap.new_child` method and the :attr:`~collections.ChainMap.parents` property." msgstr "" -#: ../../library/collections.rst:136 -msgid "" -"The `Nested Contexts recipe `_ has options to control " -"whether writes and other mutations apply only to the first mapping or to any " -"mapping in the chain." +msgid "The `Nested Contexts recipe `_ has options to control whether writes and other mutations apply only to the first mapping or to any mapping in the chain." msgstr "" -#: ../../library/collections.rst:141 -msgid "" -"A `greatly simplified read-only version of Chainmap `_." +msgid "A `greatly simplified read-only version of Chainmap `_." msgstr "" -#: ../../library/collections.rst:146 msgid ":class:`ChainMap` Examples and Recipes" msgstr "" -#: ../../library/collections.rst:148 msgid "This section shows various approaches to working with chained maps." msgstr "" -#: ../../library/collections.rst:151 msgid "Example of simulating Python's internal lookup chain::" msgstr "" -#: ../../library/collections.rst:153 msgid "" "import builtins\n" "pylookup = ChainMap(locals(), globals(), vars(builtins))" msgstr "" -#: ../../library/collections.rst:156 -msgid "" -"Example of letting user specified command-line arguments take precedence " -"over environment variables which in turn take precedence over default " -"values::" +msgid "Example of letting user specified command-line arguments take precedence over environment variables which in turn take precedence over default values::" msgstr "" -#: ../../library/collections.rst:159 msgid "" "import os, argparse\n" "\n" @@ -298,27 +186,21 @@ msgid "" "parser.add_argument('-u', '--user')\n" "parser.add_argument('-c', '--color')\n" "namespace = parser.parse_args()\n" -"command_line_args = {k: v for k, v in vars(namespace).items() if v is not " -"None}\n" +"command_line_args = {k: v for k, v in vars(namespace).items() if v is not None}\n" "\n" "combined = ChainMap(command_line_args, os.environ, defaults)\n" "print(combined['color'])\n" "print(combined['user'])" msgstr "" -#: ../../library/collections.rst:173 -msgid "" -"Example patterns for using the :class:`ChainMap` class to simulate nested " -"contexts::" +msgid "Example patterns for using the :class:`ChainMap` class to simulate nested contexts::" msgstr "" -#: ../../library/collections.rst:176 msgid "" "c = ChainMap() # Create root context\n" "d = c.new_child() # Create nested child context\n" "e = c.new_child() # Child of c, independent from d\n" -"e.maps[0] # Current context dictionary -- like Python's " -"locals()\n" +"e.maps[0] # Current context dictionary -- like Python's locals()\n" "e.maps[-1] # Root context -- like Python's globals()\n" "e.parents # Enclosing context chain -- like Python's nonlocals\n" "\n" @@ -332,15 +214,9 @@ msgid "" "dict(d) # Flatten into a regular dictionary" msgstr "" -#: ../../library/collections.rst:192 -msgid "" -"The :class:`ChainMap` class only makes updates (writes and deletions) to the " -"first mapping in the chain while lookups will search the full chain. " -"However, if deep writes and deletions are desired, it is easy to make a " -"subclass that updates keys found deeper in the chain::" +msgid "The :class:`ChainMap` class only makes updates (writes and deletions) to the first mapping in the chain while lookups will search the full chain. However, if deep writes and deletions are desired, it is easy to make a subclass that updates keys found deeper in the chain::" msgstr "" -#: ../../library/collections.rst:197 msgid "" "class DeepChainMap(ChainMap):\n" " 'Variant of ChainMap that allows direct updates to inner scopes'\n" @@ -359,8 +235,7 @@ msgid "" " return\n" " raise KeyError(key)\n" "\n" -">>> d = DeepChainMap({'zebra': 'black'}, {'elephant': 'blue'}, {'lion': " -"'yellow'})\n" +">>> d = DeepChainMap({'zebra': 'black'}, {'elephant': 'blue'}, {'lion': 'yellow'})\n" ">>> d['lion'] = 'orange' # update an existing key two levels down\n" ">>> d['snake'] = 'red' # new keys get added to the topmost dict\n" ">>> del d['elephant'] # remove an existing key one level down\n" @@ -368,17 +243,12 @@ msgid "" "DeepChainMap({'zebra': 'black', 'snake': 'red'}, {}, {'lion': 'orange'})" msgstr "" -#: ../../library/collections.rst:223 msgid ":class:`Counter` objects" msgstr "" -#: ../../library/collections.rst:225 -msgid "" -"A counter tool is provided to support convenient and rapid tallies. For " -"example::" +msgid "A counter tool is provided to support convenient and rapid tallies. For example::" msgstr "" -#: ../../library/collections.rst:228 msgid "" ">>> # Tally occurrences of words in a list\n" ">>> cnt = Counter()\n" @@ -396,116 +266,57 @@ msgid "" " ('you', 554), ('a', 546), ('my', 514), ('hamlet', 471), ('in', 451)]" msgstr "" -#: ../../library/collections.rst:247 -msgid "" -"A :class:`Counter` is a :class:`dict` subclass for counting :term:`hashable` " -"objects. It is a collection where elements are stored as dictionary keys and " -"their counts are stored as dictionary values. Counts are allowed to be any " -"integer value including zero or negative counts. The :class:`Counter` class " -"is similar to bags or multisets in other languages." +msgid "A :class:`Counter` is a :class:`dict` subclass for counting :term:`hashable` objects. It is a collection where elements are stored as dictionary keys and their counts are stored as dictionary values. Counts are allowed to be any integer value including zero or negative counts. The :class:`Counter` class is similar to bags or multisets in other languages." msgstr "" -#: ../../library/collections.rst:253 -msgid "" -"Elements are counted from an *iterable* or initialized from another " -"*mapping* (or counter):" +msgid "Elements are counted from an *iterable* or initialized from another *mapping* (or counter):" msgstr "" -#: ../../library/collections.rst:261 -msgid "" -"Counter objects have a dictionary interface except that they return a zero " -"count for missing items instead of raising a :exc:`KeyError`:" +msgid "Counter objects have a dictionary interface except that they return a zero count for missing items instead of raising a :exc:`KeyError`:" msgstr "" -#: ../../library/collections.rst:268 -msgid "" -"Setting a count to zero does not remove an element from a counter. Use " -"``del`` to remove it entirely:" +msgid "Setting a count to zero does not remove an element from a counter. Use ``del`` to remove it entirely:" msgstr "" -#: ../../library/collections.rst:276 -msgid "" -"As a :class:`dict` subclass, :class:`Counter` inherited the capability to " -"remember insertion order. Math operations on *Counter* objects also " -"preserve order. Results are ordered according to when an element is first " -"encountered in the left operand and then by the order encountered in the " -"right operand." +msgid "As a :class:`dict` subclass, :class:`Counter` inherited the capability to remember insertion order. Math operations on *Counter* objects also preserve order. Results are ordered according to when an element is first encountered in the left operand and then by the order encountered in the right operand." msgstr "" -#: ../../library/collections.rst:282 -msgid "" -"Counter objects support additional methods beyond those available for all " -"dictionaries:" +msgid "Counter objects support additional methods beyond those available for all dictionaries:" msgstr "" -#: ../../library/collections.rst:287 -msgid "" -"Return an iterator over elements repeating each as many times as its count. " -"Elements are returned in the order first encountered. If an element's count " -"is less than one, :meth:`elements` will ignore it." +msgid "Return an iterator over elements repeating each as many times as its count. Elements are returned in the order first encountered. If an element's count is less than one, :meth:`elements` will ignore it." msgstr "" -#: ../../library/collections.rst:297 -msgid "" -"Return a list of the *n* most common elements and their counts from the most " -"common to the least. If *n* is omitted or ``None``, :meth:`most_common` " -"returns *all* elements in the counter. Elements with equal counts are " -"ordered in the order first encountered:" +msgid "Return a list of the *n* most common elements and their counts from the most common to the least. If *n* is omitted or ``None``, :meth:`most_common` returns *all* elements in the counter. Elements with equal counts are ordered in the order first encountered:" msgstr "" -#: ../../library/collections.rst:309 -msgid "" -"Elements are subtracted from an *iterable* or from another *mapping* (or " -"counter). Like :meth:`dict.update` but subtracts counts instead of " -"replacing them. Both inputs and outputs may be zero or negative." +msgid "Elements are subtracted from an *iterable* or from another *mapping* (or counter). Like :meth:`dict.update` but subtracts counts instead of replacing them. Both inputs and outputs may be zero or negative." msgstr "" -#: ../../library/collections.rst:323 msgid "Compute the sum of the counts." msgstr "" -#: ../../library/collections.rst:331 -msgid "" -"The usual dictionary methods are available for :class:`Counter` objects " -"except for two which work differently for counters." +msgid "The usual dictionary methods are available for :class:`Counter` objects except for two which work differently for counters." msgstr "" -#: ../../library/collections.rst:336 msgid "This class method is not implemented for :class:`Counter` objects." msgstr "" -#: ../../library/collections.rst:342 -msgid "" -"Elements are counted from an *iterable* or added-in from another *mapping* " -"(or counter). Like :meth:`dict.update` but adds counts instead of replacing " -"them. Also, the *iterable* is expected to be a sequence of elements, not a " -"sequence of ``(key, value)`` pairs." +msgid "Elements are counted from an *iterable* or added-in from another *mapping* (or counter). Like :meth:`dict.update` but adds counts instead of replacing them. Also, the *iterable* is expected to be a sequence of elements, not a sequence of ``(key, value)`` pairs." msgstr "" -#: ../../library/collections.rst:347 -msgid "" -"Counters support rich comparison operators for equality, subset, and " -"superset relationships: ``==``, ``!=``, ``<``, ``<=``, ``>``, ``>=``. All of " -"those tests treat missing elements as having zero counts so that " -"``Counter(a=1) == Counter(a=1, b=0)`` returns true." +msgid "Counters support rich comparison operators for equality, subset, and superset relationships: ``==``, ``!=``, ``<``, ``<=``, ``>``, ``>=``. All of those tests treat missing elements as having zero counts so that ``Counter(a=1) == Counter(a=1, b=0)`` returns true." msgstr "" -#: ../../library/collections.rst:352 msgid "Rich comparison operations were added." msgstr "" -#: ../../library/collections.rst:355 -msgid "" -"In equality tests, missing elements are treated as having zero counts. " -"Formerly, ``Counter(a=3)`` and ``Counter(a=3, b=0)`` were considered " -"distinct." +msgid "In equality tests, missing elements are treated as having zero counts. Formerly, ``Counter(a=3)`` and ``Counter(a=3, b=0)`` were considered distinct." msgstr "" -#: ../../library/collections.rst:360 msgid "Common patterns for working with :class:`Counter` objects::" msgstr "" -#: ../../library/collections.rst:362 msgid "" "c.total() # total of all counts\n" "c.clear() # reset all counts\n" @@ -518,18 +329,9 @@ msgid "" "+c # remove zero and negative counts" msgstr "" -#: ../../library/collections.rst:372 -msgid "" -"Several mathematical operations are provided for combining :class:`Counter` " -"objects to produce multisets (counters that have counts greater than zero). " -"Addition and subtraction combine counters by adding or subtracting the " -"counts of corresponding elements. Intersection and union return the minimum " -"and maximum of corresponding counts. Equality and inclusion compare " -"corresponding counts. Each operation can accept inputs with signed counts, " -"but the output will exclude results with counts of zero or less." +msgid "Several mathematical operations are provided for combining :class:`Counter` objects to produce multisets (counters that have counts greater than zero). Addition and subtraction combine counters by adding or subtracting the counts of corresponding elements. Intersection and union return the minimum and maximum of corresponding counts. Equality and inclusion compare corresponding counts. Each operation can accept inputs with signed counts, but the output will exclude results with counts of zero or less." msgstr "" -#: ../../library/collections.rst:380 msgid "" ">>> c = Counter(a=3, b=1)\n" ">>> d = Counter(a=1, b=2)\n" @@ -547,256 +349,132 @@ msgid "" "False" msgstr "" -#: ../../library/collections.rst:397 -msgid "" -"Unary addition and subtraction are shortcuts for adding an empty counter or " -"subtracting from an empty counter." +msgid "Unary addition and subtraction are shortcuts for adding an empty counter or subtracting from an empty counter." msgstr "" -#: ../../library/collections.rst:406 -msgid "" -"Added support for unary plus, unary minus, and in-place multiset operations." +msgid "Added support for unary plus, unary minus, and in-place multiset operations." msgstr "" -#: ../../library/collections.rst:411 -msgid "" -"Counters were primarily designed to work with positive integers to represent " -"running counts; however, care was taken to not unnecessarily preclude use " -"cases needing other types or negative values. To help with those use cases, " -"this section documents the minimum range and type restrictions." +msgid "Counters were primarily designed to work with positive integers to represent running counts; however, care was taken to not unnecessarily preclude use cases needing other types or negative values. To help with those use cases, this section documents the minimum range and type restrictions." msgstr "" -#: ../../library/collections.rst:416 -msgid "" -"The :class:`Counter` class itself is a dictionary subclass with no " -"restrictions on its keys and values. The values are intended to be numbers " -"representing counts, but you *could* store anything in the value field." +msgid "The :class:`Counter` class itself is a dictionary subclass with no restrictions on its keys and values. The values are intended to be numbers representing counts, but you *could* store anything in the value field." msgstr "" -#: ../../library/collections.rst:420 -msgid "" -"The :meth:`~Counter.most_common` method requires only that the values be " -"orderable." +msgid "The :meth:`~Counter.most_common` method requires only that the values be orderable." msgstr "" -#: ../../library/collections.rst:422 -msgid "" -"For in-place operations such as ``c[key] += 1``, the value type need only " -"support addition and subtraction. So fractions, floats, and decimals would " -"work and negative values are supported. The same is also true " -"for :meth:`~Counter.update` and :meth:`~Counter.subtract` which allow " -"negative and zero values for both inputs and outputs." +msgid "For in-place operations such as ``c[key] += 1``, the value type need only support addition and subtraction. So fractions, floats, and decimals would work and negative values are supported. The same is also true for :meth:`~Counter.update` and :meth:`~Counter.subtract` which allow negative and zero values for both inputs and outputs." msgstr "" -#: ../../library/collections.rst:428 -msgid "" -"The multiset methods are designed only for use cases with positive values. " -"The inputs may be negative or zero, but only outputs with positive values " -"are created. There are no type restrictions, but the value type needs to " -"support addition, subtraction, and comparison." +msgid "The multiset methods are designed only for use cases with positive values. The inputs may be negative or zero, but only outputs with positive values are created. There are no type restrictions, but the value type needs to support addition, subtraction, and comparison." msgstr "" -#: ../../library/collections.rst:433 -msgid "" -"The :meth:`~Counter.elements` method requires integer counts. It ignores " -"zero and negative counts." +msgid "The :meth:`~Counter.elements` method requires integer counts. It ignores zero and negative counts." msgstr "" -#: ../../library/collections.rst:438 -msgid "" -"`Bag class `_ in Smalltalk." +msgid "`Bag class `_ in Smalltalk." msgstr "" -#: ../../library/collections.rst:441 -msgid "" -"Wikipedia entry for `Multisets `_." +msgid "Wikipedia entry for `Multisets `_." msgstr "" -#: ../../library/collections.rst:443 -msgid "" -"`C++ multisets `_ tutorial with examples." +msgid "`C++ multisets `_ tutorial with examples." msgstr "" -#: ../../library/collections.rst:446 -msgid "" -"For mathematical operations on multisets and their use cases, see *Knuth, " -"Donald. The Art of Computer Programming Volume II, Section 4.6.3, Exercise " -"19*." +msgid "For mathematical operations on multisets and their use cases, see *Knuth, Donald. The Art of Computer Programming Volume II, Section 4.6.3, Exercise 19*." msgstr "" -#: ../../library/collections.rst:450 -msgid "" -"To enumerate all distinct multisets of a given size over a given set of " -"elements, see :func:`itertools.combinations_with_replacement`::" +msgid "To enumerate all distinct multisets of a given size over a given set of elements, see :func:`itertools.combinations_with_replacement`::" msgstr "" -#: ../../library/collections.rst:453 -msgid "" -"map(Counter, combinations_with_replacement('ABC', 2)) # --> AA AB AC BB BC CC" +msgid "map(Counter, combinations_with_replacement('ABC', 2)) # --> AA AB AC BB BC CC" msgstr "" -#: ../../library/collections.rst:457 msgid ":class:`deque` objects" msgstr "" -#: ../../library/collections.rst:461 -msgid "" -"Returns a new deque object initialized left-to-right (using :meth:`append`) " -"with data from *iterable*. If *iterable* is not specified, the new deque is " -"empty." +msgid "Returns a new deque object initialized left-to-right (using :meth:`append`) with data from *iterable*. If *iterable* is not specified, the new deque is empty." msgstr "" -#: ../../library/collections.rst:464 -msgid "" -"Deques are a generalization of stacks and queues (the name is pronounced " -"\"deck\" and is short for \"double-ended queue\"). Deques support thread-" -"safe, memory efficient appends and pops from either side of the deque with " -"approximately the same *O*\\ (1) performance in either direction." +msgid "Deques are a generalization of stacks and queues (the name is pronounced \"deck\" and is short for \"double-ended queue\"). Deques support thread-safe, memory efficient appends and pops from either side of the deque with approximately the same *O*\\ (1) performance in either direction." msgstr "" -#: ../../library/collections.rst:469 -msgid "" -"Though :class:`list` objects support similar operations, they are optimized " -"for fast fixed-length operations and incur *O*\\ (*n*) memory movement costs " -"for ``pop(0)`` and ``insert(0, v)`` operations which change both the size " -"and position of the underlying data representation." +msgid "Though :class:`list` objects support similar operations, they are optimized for fast fixed-length operations and incur *O*\\ (*n*) memory movement costs for ``pop(0)`` and ``insert(0, v)`` operations which change both the size and position of the underlying data representation." msgstr "" -#: ../../library/collections.rst:475 -msgid "" -"If *maxlen* is not specified or is ``None``, deques may grow to an arbitrary " -"length. Otherwise, the deque is bounded to the specified maximum length. " -"Once a bounded length deque is full, when new items are added, a " -"corresponding number of items are discarded from the opposite end. Bounded " -"length deques provide functionality similar to the ``tail`` filter in Unix. " -"They are also useful for tracking transactions and other pools of data where " -"only the most recent activity is of interest." +msgid "If *maxlen* is not specified or is ``None``, deques may grow to an arbitrary length. Otherwise, the deque is bounded to the specified maximum length. Once a bounded length deque is full, when new items are added, a corresponding number of items are discarded from the opposite end. Bounded length deques provide functionality similar to the ``tail`` filter in Unix. They are also useful for tracking transactions and other pools of data where only the most recent activity is of interest." msgstr "" -#: ../../library/collections.rst:483 msgid "Deques are :ref:`generic ` over the type of their contents." msgstr "" -#: ../../library/collections.rst:486 msgid "Deque objects support the following methods:" msgstr "" -#: ../../library/collections.rst:490 msgid "Add *item* to the right side of the deque." msgstr "" -#: ../../library/collections.rst:495 msgid "Add *item* to the left side of the deque." msgstr "" -#: ../../library/collections.rst:500 msgid "Remove all elements from the deque leaving it with length 0." msgstr "" -#: ../../library/collections.rst:505 msgid "Create a shallow copy of the deque." msgstr "" -#: ../../library/collections.rst:512 msgid "Count the number of deque elements equal to *value*." msgstr "" -#: ../../library/collections.rst:519 -msgid "" -"Extend the right side of the deque by appending elements from the iterable " -"argument." +msgid "Extend the right side of the deque by appending elements from the iterable argument." msgstr "" -#: ../../library/collections.rst:525 -msgid "" -"Extend the left side of the deque by appending elements from *iterable*. " -"Note, the series of left appends results in reversing the order of elements " -"in the iterable argument." +msgid "Extend the left side of the deque by appending elements from *iterable*. Note, the series of left appends results in reversing the order of elements in the iterable argument." msgstr "" -#: ../../library/collections.rst:532 -msgid "" -"Return the position of *value* in the deque (at or after index *start* and " -"before index *stop*). Returns the first match or raises :exc:`ValueError` " -"if not found." +msgid "Return the position of *value* in the deque (at or after index *start* and before index *stop*). Returns the first match or raises :exc:`ValueError` if not found." msgstr "" -#: ../../library/collections.rst:541 msgid "Insert *value* into the deque at position *index*." msgstr "" -#: ../../library/collections.rst:543 -msgid "" -"If the insertion would cause a bounded deque to grow beyond *maxlen*, " -"an :exc:`IndexError` is raised." +msgid "If the insertion would cause a bounded deque to grow beyond *maxlen*, an :exc:`IndexError` is raised." msgstr "" -#: ../../library/collections.rst:551 -msgid "" -"Remove and return an element from the right side of the deque. If no " -"elements are present, raises an :exc:`IndexError`." +msgid "Remove and return an element from the right side of the deque. If no elements are present, raises an :exc:`IndexError`." msgstr "" -#: ../../library/collections.rst:557 -msgid "" -"Remove and return an element from the left side of the deque. If no elements " -"are present, raises an :exc:`IndexError`." +msgid "Remove and return an element from the left side of the deque. If no elements are present, raises an :exc:`IndexError`." msgstr "" -#: ../../library/collections.rst:563 -msgid "" -"Remove the first occurrence of *value*. If not found, raises " -"a :exc:`ValueError`." +msgid "Remove the first occurrence of *value*. If not found, raises a :exc:`ValueError`." msgstr "" -#: ../../library/collections.rst:569 msgid "Reverse the elements of the deque in-place and then return ``None``." msgstr "" -#: ../../library/collections.rst:576 -msgid "" -"Rotate the deque *n* steps to the right. If *n* is negative, rotate to the " -"left." +msgid "Rotate the deque *n* steps to the right. If *n* is negative, rotate to the left." msgstr "" -#: ../../library/collections.rst:579 -msgid "" -"When the deque is not empty, rotating one step to the right is equivalent to " -"``d.appendleft(d.pop())``, and rotating one step to the left is equivalent " -"to ``d.append(d.popleft())``." +msgid "When the deque is not empty, rotating one step to the right is equivalent to ``d.appendleft(d.pop())``, and rotating one step to the left is equivalent to ``d.append(d.popleft())``." msgstr "" -#: ../../library/collections.rst:584 msgid "Deque objects also provide one read-only attribute:" msgstr "" -#: ../../library/collections.rst:588 msgid "Maximum size of a deque or ``None`` if unbounded." msgstr "" -#: ../../library/collections.rst:593 -msgid "" -"In addition to the above, deques support iteration, pickling, ``len(d)``, " -"``reversed(d)``, ``copy.copy(d)``, ``copy.deepcopy(d)``, membership testing " -"with the :keyword:`in` operator, and subscript references such as ``d[0]`` " -"to access the first element. Indexed access is *O*\\ (1) at both ends but " -"slows to *O*\\ (*n*) in the middle. For fast random access, use lists " -"instead." +msgid "In addition to the above, deques support iteration, pickling, ``len(d)``, ``reversed(d)``, ``copy.copy(d)``, ``copy.deepcopy(d)``, membership testing with the :keyword:`in` operator, and subscript references such as ``d[0]`` to access the first element. Indexed access is *O*\\ (1) at both ends but slows to *O*\\ (*n*) in the middle. For fast random access, use lists instead." msgstr "" -#: ../../library/collections.rst:599 -msgid "" -"Starting in version 3.5, deques support ``__add__()``, ``__mul__()``, and " -"``__imul__()``." +msgid "Starting in version 3.5, deques support ``__add__()``, ``__mul__()``, and ``__imul__()``." msgstr "" -#: ../../library/collections.rst:602 msgid "Example:" msgstr "" -#: ../../library/collections.rst:604 msgid "" ">>> from collections import deque\n" ">>> d = deque('ghi') # make a new deque with three items\n" @@ -822,8 +500,7 @@ msgid "" ">>> d[-1] # peek at rightmost item\n" "'i'\n" "\n" -">>> list(reversed(d)) # list the contents of a deque in " -"reverse\n" +">>> list(reversed(d)) # list the contents of a deque in reverse\n" "['i', 'h', 'g']\n" ">>> 'h' in d # search the deque\n" "True\n" @@ -846,27 +523,20 @@ msgid "" " d.pop()\n" "IndexError: pop from an empty deque\n" "\n" -">>> d.extendleft('abc') # extendleft() reverses the input " -"order\n" +">>> d.extendleft('abc') # extendleft() reverses the input order\n" ">>> d\n" "deque(['c', 'b', 'a'])" msgstr "" -#: ../../library/collections.rst:659 msgid ":class:`deque` Recipes" msgstr "" -#: ../../library/collections.rst:661 msgid "This section shows various approaches to working with deques." msgstr "" -#: ../../library/collections.rst:663 -msgid "" -"Bounded length deques provide functionality similar to the ``tail`` filter " -"in Unix::" +msgid "Bounded length deques provide functionality similar to the ``tail`` filter in Unix::" msgstr "" -#: ../../library/collections.rst:666 msgid "" "def tail(filename, n=10):\n" " 'Return the last n lines of a file'\n" @@ -874,13 +544,9 @@ msgid "" " return deque(f, n)" msgstr "" -#: ../../library/collections.rst:671 -msgid "" -"Another approach to using deques is to maintain a sequence of recently added " -"elements by appending to the right and popping to the left::" +msgid "Another approach to using deques is to maintain a sequence of recently added elements by appending to the right and popping to the left::" msgstr "" -#: ../../library/collections.rst:674 msgid "" "def moving_average(iterable, n=3):\n" " # moving_average([40, 30, 50, 46, 39, 44]) --> 40.0 42.0 45.0 43.0\n" @@ -895,17 +561,9 @@ msgid "" " yield s / n" msgstr "" -#: ../../library/collections.rst:686 -msgid "" -"A `round-robin scheduler `_ can be implemented with input iterators stored in " -"a :class:`deque`. Values are yielded from the active iterator in position " -"zero. If that iterator is exhausted, it can be removed " -"with :meth:`~deque.popleft`; otherwise, it can be cycled back to the end " -"with the :meth:`~deque.rotate` method::" +msgid "A `round-robin scheduler `_ can be implemented with input iterators stored in a :class:`deque`. Values are yielded from the active iterator in position zero. If that iterator is exhausted, it can be removed with :meth:`~deque.popleft`; otherwise, it can be cycled back to the end with the :meth:`~deque.rotate` method::" msgstr "" -#: ../../library/collections.rst:693 msgid "" "def roundrobin(*iterables):\n" " \"roundrobin('ABC', 'D', 'EF') --> A D E B F C\"\n" @@ -920,14 +578,9 @@ msgid "" " iterators.popleft()" msgstr "" -#: ../../library/collections.rst:705 -msgid "" -"The :meth:`~deque.rotate` method provides a way to implement :class:`deque` " -"slicing and deletion. For example, a pure Python implementation of ``del " -"d[n]`` relies on the ``rotate()`` method to position elements to be popped::" +msgid "The :meth:`~deque.rotate` method provides a way to implement :class:`deque` slicing and deletion. For example, a pure Python implementation of ``del d[n]`` relies on the ``rotate()`` method to position elements to be popped::" msgstr "" -#: ../../library/collections.rst:709 msgid "" "def delete_nth(d, n):\n" " d.rotate(-n)\n" @@ -935,255 +588,118 @@ msgid "" " d.rotate(n)" msgstr "" -#: ../../library/collections.rst:714 -msgid "" -"To implement :class:`deque` slicing, use a similar approach " -"applying :meth:`~deque.rotate` to bring a target element to the left side of " -"the deque. Remove old entries with :meth:`~deque.popleft`, add new entries " -"with :meth:`~deque.extend`, and then reverse the rotation. With minor " -"variations on that approach, it is easy to implement Forth style stack " -"manipulations such as ``dup``, ``drop``, ``swap``, ``over``, ``pick``, " -"``rot``, and ``roll``." +msgid "To implement :class:`deque` slicing, use a similar approach applying :meth:`~deque.rotate` to bring a target element to the left side of the deque. Remove old entries with :meth:`~deque.popleft`, add new entries with :meth:`~deque.extend`, and then reverse the rotation. With minor variations on that approach, it is easy to implement Forth style stack manipulations such as ``dup``, ``drop``, ``swap``, ``over``, ``pick``, ``rot``, and ``roll``." msgstr "" -#: ../../library/collections.rst:724 msgid ":class:`defaultdict` objects" msgstr "" -#: ../../library/collections.rst:730 -msgid "" -"Return a new dictionary-like object. :class:`defaultdict` is a subclass of " -"the built-in :class:`dict` class. It overrides one method and adds one " -"writable instance variable. The remaining functionality is the same as for " -"the :class:`dict` class and is not documented here." +msgid "Return a new dictionary-like object. :class:`defaultdict` is a subclass of the built-in :class:`dict` class. It overrides one method and adds one writable instance variable. The remaining functionality is the same as for the :class:`dict` class and is not documented here." msgstr "" -#: ../../library/collections.rst:735 -msgid "" -"The first argument provides the initial value for " -"the :attr:`default_factory` attribute; it defaults to ``None``. All " -"remaining arguments are treated the same as if they were passed to " -"the :class:`dict` constructor, including keyword arguments." +msgid "The first argument provides the initial value for the :attr:`default_factory` attribute; it defaults to ``None``. All remaining arguments are treated the same as if they were passed to the :class:`dict` constructor, including keyword arguments." msgstr "" -#: ../../library/collections.rst:740 -msgid "" -":class:`!defaultdict`\\s are :ref:`generic ` over two types, " -"signifying (respectively) the types of the dictionary's keys and values." +msgid ":class:`!defaultdict`\\s are :ref:`generic ` over two types, signifying (respectively) the types of the dictionary's keys and values." msgstr "" -#: ../../library/collections.rst:744 -msgid "" -":class:`defaultdict` objects support the following method in addition to the " -"standard :class:`dict` operations:" +msgid ":class:`defaultdict` objects support the following method in addition to the standard :class:`dict` operations:" msgstr "" -#: ../../library/collections.rst:749 -msgid "" -"If the :attr:`default_factory` attribute is ``None``, this raises " -"a :exc:`KeyError` exception with the *key* as argument." +msgid "If the :attr:`default_factory` attribute is ``None``, this raises a :exc:`KeyError` exception with the *key* as argument." msgstr "" -#: ../../library/collections.rst:752 -msgid "" -"If :attr:`default_factory` is not ``None``, it is called without arguments " -"to provide a default value for the given *key*, this value is inserted in " -"the dictionary for the *key*, and returned." +msgid "If :attr:`default_factory` is not ``None``, it is called without arguments to provide a default value for the given *key*, this value is inserted in the dictionary for the *key*, and returned." msgstr "" -#: ../../library/collections.rst:756 -msgid "" -"If calling :attr:`default_factory` raises an exception this exception is " -"propagated unchanged." +msgid "If calling :attr:`default_factory` raises an exception this exception is propagated unchanged." msgstr "" -#: ../../library/collections.rst:759 -msgid "" -"This method is called by the :meth:`~object.__getitem__` method of " -"the :class:`dict` class when the requested key is not found; whatever it " -"returns or raises is then returned or raised by :meth:`~object.__getitem__`." +msgid "This method is called by the :meth:`~object.__getitem__` method of the :class:`dict` class when the requested key is not found; whatever it returns or raises is then returned or raised by :meth:`~object.__getitem__`." msgstr "" -#: ../../library/collections.rst:763 -msgid "" -"Note that :meth:`__missing__` is *not* called for any operations " -"besides :meth:`~object.__getitem__`. This means that :meth:`~dict.get` will, " -"like normal dictionaries, return ``None`` as a default rather than " -"using :attr:`default_factory`." +msgid "Note that :meth:`__missing__` is *not* called for any operations besides :meth:`~object.__getitem__`. This means that :meth:`~dict.get` will, like normal dictionaries, return ``None`` as a default rather than using :attr:`default_factory`." msgstr "" -#: ../../library/collections.rst:769 msgid ":class:`defaultdict` objects support the following instance variable:" msgstr "" -#: ../../library/collections.rst:774 -msgid "" -"This attribute is used by the :meth:`~defaultdict.__missing__` method; it is " -"initialized from the first argument to the constructor, if present, or to " -"``None``, if absent." +msgid "This attribute is used by the :meth:`~defaultdict.__missing__` method; it is initialized from the first argument to the constructor, if present, or to ``None``, if absent." msgstr "" -#: ../../library/collections.rst:778 ../../library/collections.rst:1207 -msgid "" -"Added merge (``|``) and update (``|=``) operators, specified in :pep:`584`." +msgid "Added merge (``|``) and update (``|=``) operators, specified in :pep:`584`." msgstr "" -#: ../../library/collections.rst:784 msgid ":class:`defaultdict` Examples" msgstr "" -#: ../../library/collections.rst:786 -msgid "" -"Using :class:`list` as the :attr:`~defaultdict.default_factory`, it is easy " -"to group a sequence of key-value pairs into a dictionary of lists:" +msgid "Using :class:`list` as the :attr:`~defaultdict.default_factory`, it is easy to group a sequence of key-value pairs into a dictionary of lists:" msgstr "" -#: ../../library/collections.rst:797 -msgid "" -"When each key is encountered for the first time, it is not already in the " -"mapping; so an entry is automatically created using " -"the :attr:`~defaultdict.default_factory` function which returns an " -"empty :class:`list`. The :meth:`list.append` operation then attaches the " -"value to the new list. When keys are encountered again, the look-up " -"proceeds normally (returning the list for that key) and " -"the :meth:`list.append` operation adds another value to the list. This " -"technique is simpler and faster than an equivalent technique " -"using :meth:`dict.setdefault`:" -msgstr "" - -#: ../../library/collections.rst:812 -msgid "" -"Setting the :attr:`~defaultdict.default_factory` to :class:`int` makes " -"the :class:`defaultdict` useful for counting (like a bag or multiset in " -"other languages):" +msgid "When each key is encountered for the first time, it is not already in the mapping; so an entry is automatically created using the :attr:`~defaultdict.default_factory` function which returns an empty :class:`list`. The :meth:`list.append` operation then attaches the value to the new list. When keys are encountered again, the look-up proceeds normally (returning the list for that key) and the :meth:`list.append` operation adds another value to the list. This technique is simpler and faster than an equivalent technique using :meth:`dict.setdefault`:" msgstr "" -#: ../../library/collections.rst:824 -msgid "" -"When a letter is first encountered, it is missing from the mapping, so " -"the :attr:`~defaultdict.default_factory` function calls :func:`int` to " -"supply a default count of zero. The increment operation then builds up the " -"count for each letter." +msgid "Setting the :attr:`~defaultdict.default_factory` to :class:`int` makes the :class:`defaultdict` useful for counting (like a bag or multiset in other languages):" msgstr "" -#: ../../library/collections.rst:828 -msgid "" -"The function :func:`int` which always returns zero is just a special case of " -"constant functions. A faster and more flexible way to create constant " -"functions is to use a lambda function which can supply any constant value " -"(not just zero):" +msgid "When a letter is first encountered, it is missing from the mapping, so the :attr:`~defaultdict.default_factory` function calls :func:`int` to supply a default count of zero. The increment operation then builds up the count for each letter." msgstr "" -#: ../../library/collections.rst:841 -msgid "" -"Setting the :attr:`~defaultdict.default_factory` to :class:`set` makes " -"the :class:`defaultdict` useful for building a dictionary of sets:" +msgid "The function :func:`int` which always returns zero is just a special case of constant functions. A faster and more flexible way to create constant functions is to use a lambda function which can supply any constant value (not just zero):" +msgstr "" + +msgid "Setting the :attr:`~defaultdict.default_factory` to :class:`set` makes the :class:`defaultdict` useful for building a dictionary of sets:" msgstr "" -#: ../../library/collections.rst:854 msgid ":func:`namedtuple` Factory Function for Tuples with Named Fields" msgstr "" -#: ../../library/collections.rst:856 -msgid "" -"Named tuples assign meaning to each position in a tuple and allow for more " -"readable, self-documenting code. They can be used wherever regular tuples " -"are used, and they add the ability to access fields by name instead of " -"position index." +msgid "Named tuples assign meaning to each position in a tuple and allow for more readable, self-documenting code. They can be used wherever regular tuples are used, and they add the ability to access fields by name instead of position index." msgstr "" -#: ../../library/collections.rst:862 -msgid "" -"Returns a new tuple subclass named *typename*. The new subclass is used to " -"create tuple-like objects that have fields accessible by attribute lookup as " -"well as being indexable and iterable. Instances of the subclass also have a " -"helpful docstring (with *typename* and *field_names*) and a " -"helpful :meth:`~object.__repr__` method which lists the tuple contents in a " -"``name=value`` format." +msgid "Returns a new tuple subclass named *typename*. The new subclass is used to create tuple-like objects that have fields accessible by attribute lookup as well as being indexable and iterable. Instances of the subclass also have a helpful docstring (with *typename* and *field_names*) and a helpful :meth:`~object.__repr__` method which lists the tuple contents in a ``name=value`` format." msgstr "" -#: ../../library/collections.rst:869 -msgid "" -"The *field_names* are a sequence of strings such as ``['x', 'y']``. " -"Alternatively, *field_names* can be a single string with each fieldname " -"separated by whitespace and/or commas, for example ``'x y'`` or ``'x, y'``." +msgid "The *field_names* are a sequence of strings such as ``['x', 'y']``. Alternatively, *field_names* can be a single string with each fieldname separated by whitespace and/or commas, for example ``'x y'`` or ``'x, y'``." msgstr "" -#: ../../library/collections.rst:873 -msgid "" -"Any valid Python identifier may be used for a fieldname except for names " -"starting with an underscore. Valid identifiers consist of letters, digits, " -"and underscores but do not start with a digit or underscore and cannot be " -"a :mod:`keyword` such as *class*, *for*, *return*, *global*, *pass*, or " -"*raise*." +msgid "Any valid Python identifier may be used for a fieldname except for names starting with an underscore. Valid identifiers consist of letters, digits, and underscores but do not start with a digit or underscore and cannot be a :mod:`keyword` such as *class*, *for*, *return*, *global*, *pass*, or *raise*." msgstr "" -#: ../../library/collections.rst:879 -msgid "" -"If *rename* is true, invalid fieldnames are automatically replaced with " -"positional names. For example, ``['abc', 'def', 'ghi', 'abc']`` is " -"converted to ``['abc', '_1', 'ghi', '_3']``, eliminating the keyword ``def`` " -"and the duplicate fieldname ``abc``." +msgid "If *rename* is true, invalid fieldnames are automatically replaced with positional names. For example, ``['abc', 'def', 'ghi', 'abc']`` is converted to ``['abc', '_1', 'ghi', '_3']``, eliminating the keyword ``def`` and the duplicate fieldname ``abc``." msgstr "" -#: ../../library/collections.rst:884 -msgid "" -"*defaults* can be ``None`` or an :term:`iterable` of default values. Since " -"fields with a default value must come after any fields without a default, " -"the *defaults* are applied to the rightmost parameters. For example, if the " -"fieldnames are ``['x', 'y', 'z']`` and the defaults are ``(1, 2)``, then " -"``x`` will be a required argument, ``y`` will default to ``1``, and ``z`` " -"will default to ``2``." +msgid "*defaults* can be ``None`` or an :term:`iterable` of default values. Since fields with a default value must come after any fields without a default, the *defaults* are applied to the rightmost parameters. For example, if the fieldnames are ``['x', 'y', 'z']`` and the defaults are ``(1, 2)``, then ``x`` will be a required argument, ``y`` will default to ``1``, and ``z`` will default to ``2``." msgstr "" -#: ../../library/collections.rst:891 -msgid "" -"If *module* is defined, the :attr:`~type.__module__` attribute of the named " -"tuple is set to that value." +msgid "If *module* is defined, the :attr:`~type.__module__` attribute of the named tuple is set to that value." msgstr "" -#: ../../library/collections.rst:894 -msgid "" -"Named tuple instances do not have per-instance dictionaries, so they are " -"lightweight and require no more memory than regular tuples." +msgid "Named tuple instances do not have per-instance dictionaries, so they are lightweight and require no more memory than regular tuples." msgstr "" -#: ../../library/collections.rst:897 -msgid "" -"To support pickling, the named tuple class should be assigned to a variable " -"that matches *typename*." +msgid "To support pickling, the named tuple class should be assigned to a variable that matches *typename*." msgstr "" -#: ../../library/collections.rst:900 msgid "Added support for *rename*." msgstr "" -#: ../../library/collections.rst:903 -msgid "" -"The *verbose* and *rename* parameters became :ref:`keyword-only arguments " -"`." +msgid "The *verbose* and *rename* parameters became :ref:`keyword-only arguments `." msgstr "" -#: ../../library/collections.rst:907 msgid "Added the *module* parameter." msgstr "" -#: ../../library/collections.rst:910 msgid "Removed the *verbose* parameter and the :attr:`!_source` attribute." msgstr "" -#: ../../library/collections.rst:913 -msgid "" -"Added the *defaults* parameter and " -"the :attr:`~somenamedtuple._field_defaults` attribute." +msgid "Added the *defaults* parameter and the :attr:`~somenamedtuple._field_defaults` attribute." msgstr "" -#: ../../library/collections.rst:917 msgid "" ">>> # Basic example\n" ">>> Point = namedtuple('Point', ['x', 'y'])\n" -">>> p = Point(11, y=22) # instantiate with positional or keyword " -"arguments\n" +">>> p = Point(11, y=22) # instantiate with positional or keyword arguments\n" ">>> p[0] + p[1] # indexable like the plain tuple (11, 22)\n" "33\n" ">>> x, y = p # unpack like a regular tuple\n" @@ -1195,110 +711,72 @@ msgid "" "Point(x=11, y=22)" msgstr "" -#: ../../library/collections.rst:933 -msgid "" -"Named tuples are especially useful for assigning field names to result " -"tuples returned by the :mod:`csv` or :mod:`sqlite3` modules::" +msgid "Named tuples are especially useful for assigning field names to result tuples returned by the :mod:`csv` or :mod:`sqlite3` modules::" msgstr "" -#: ../../library/collections.rst:936 msgid "" -"EmployeeRecord = namedtuple('EmployeeRecord', 'name, age, title, department, " -"paygrade')\n" +"EmployeeRecord = namedtuple('EmployeeRecord', 'name, age, title, department, paygrade')\n" "\n" "import csv\n" -"for emp in map(EmployeeRecord._make, csv.reader(open(\"employees.csv\", " -"\"rb\"))):\n" +"for emp in map(EmployeeRecord._make, csv.reader(open(\"employees.csv\", \"rb\"))):\n" " print(emp.name, emp.title)\n" "\n" "import sqlite3\n" "conn = sqlite3.connect('/companydata')\n" "cursor = conn.cursor()\n" -"cursor.execute('SELECT name, age, title, department, paygrade FROM " -"employees')\n" +"cursor.execute('SELECT name, age, title, department, paygrade FROM employees')\n" "for emp in map(EmployeeRecord._make, cursor.fetchall()):\n" " print(emp.name, emp.title)" msgstr "" -#: ../../library/collections.rst:949 -msgid "" -"In addition to the methods inherited from tuples, named tuples support three " -"additional methods and two attributes. To prevent conflicts with field " -"names, the method and attribute names start with an underscore." +msgid "In addition to the methods inherited from tuples, named tuples support three additional methods and two attributes. To prevent conflicts with field names, the method and attribute names start with an underscore." msgstr "" -#: ../../library/collections.rst:955 -msgid "" -"Class method that makes a new instance from an existing sequence or iterable." +msgid "Class method that makes a new instance from an existing sequence or iterable." msgstr "" -#: ../../library/collections.rst:957 msgid "" ">>> t = [11, 22]\n" ">>> Point._make(t)\n" "Point(x=11, y=22)" msgstr "" -#: ../../library/collections.rst:965 -msgid "" -"Return a new :class:`dict` which maps field names to their corresponding " -"values:" +msgid "Return a new :class:`dict` which maps field names to their corresponding values:" msgstr "" -#: ../../library/collections.rst:968 msgid "" ">>> p = Point(x=11, y=22)\n" ">>> p._asdict()\n" "{'x': 11, 'y': 22}" msgstr "" -#: ../../library/collections.rst:974 msgid "Returns an :class:`OrderedDict` instead of a regular :class:`dict`." msgstr "" -#: ../../library/collections.rst:977 -msgid "" -"Returns a regular :class:`dict` instead of an :class:`OrderedDict`. As of " -"Python 3.7, regular dicts are guaranteed to be ordered. If the extra " -"features of :class:`OrderedDict` are required, the suggested remediation is " -"to cast the result to the desired type: ``OrderedDict(nt._asdict())``." +msgid "Returns a regular :class:`dict` instead of an :class:`OrderedDict`. As of Python 3.7, regular dicts are guaranteed to be ordered. If the extra features of :class:`OrderedDict` are required, the suggested remediation is to cast the result to the desired type: ``OrderedDict(nt._asdict())``." msgstr "" -#: ../../library/collections.rst:986 -msgid "" -"Return a new instance of the named tuple replacing specified fields with new " -"values::" +msgid "Return a new instance of the named tuple replacing specified fields with new values::" msgstr "" -#: ../../library/collections.rst:989 msgid "" ">>> p = Point(x=11, y=22)\n" ">>> p._replace(x=33)\n" "Point(x=33, y=22)\n" "\n" ">>> for partnum, record in inventory.items():\n" -"... inventory[partnum] = record._replace(price=newprices[partnum], " -"timestamp=time.now())" +"... inventory[partnum] = record._replace(price=newprices[partnum], timestamp=time.now())" msgstr "" -#: ../../library/collections.rst:996 -msgid "" -"Named tuples are also supported by generic function :func:`copy.replace`." +msgid "Named tuples are also supported by generic function :func:`copy.replace`." msgstr "" -#: ../../library/collections.rst:998 -msgid "" -"Raise :exc:`TypeError` instead of :exc:`ValueError` for invalid keyword " -"arguments." +msgid "Raise :exc:`TypeError` instead of :exc:`ValueError` for invalid keyword arguments." msgstr "" -#: ../../library/collections.rst:1004 -msgid "" -"Tuple of strings listing the field names. Useful for introspection and for " -"creating new named tuple types from existing named tuples." +msgid "Tuple of strings listing the field names. Useful for introspection and for creating new named tuple types from existing named tuples." msgstr "" -#: ../../library/collections.rst:1007 msgid "" ">>> p._fields # view the field names\n" "('x', 'y')\n" @@ -1309,11 +787,9 @@ msgid "" "Pixel(x=11, y=22, red=128, green=255, blue=0)" msgstr "" -#: ../../library/collections.rst:1019 msgid "Dictionary mapping field names to default values." msgstr "" -#: ../../library/collections.rst:1021 msgid "" ">>> Account = namedtuple('Account', ['type', 'balance'], defaults=[0])\n" ">>> Account._field_defaults\n" @@ -1322,26 +798,15 @@ msgid "" "Account(type='premium', balance=0)" msgstr "" -#: ../../library/collections.rst:1029 -msgid "" -"To retrieve a field whose name is stored in a string, use " -"the :func:`getattr` function:" +msgid "To retrieve a field whose name is stored in a string, use the :func:`getattr` function:" msgstr "" -#: ../../library/collections.rst:1035 -msgid "" -"To convert a dictionary to a named tuple, use the double-star-operator (as " -"described in :ref:`tut-unpacking-arguments`):" +msgid "To convert a dictionary to a named tuple, use the double-star-operator (as described in :ref:`tut-unpacking-arguments`):" msgstr "" -#: ../../library/collections.rst:1042 -msgid "" -"Since a named tuple is a regular Python class, it is easy to add or change " -"functionality with a subclass. Here is how to add a calculated field and a " -"fixed-width print format:" +msgid "Since a named tuple is a regular Python class, it is easy to add or change functionality with a subclass. Here is how to add a calculated field and a fixed-width print format:" msgstr "" -#: ../../library/collections.rst:1046 msgid "" ">>> class Point(namedtuple('Point', ['x', 'y'])):\n" "... __slots__ = ()\n" @@ -1349,8 +814,7 @@ msgid "" "... def hypot(self):\n" "... return (self.x ** 2 + self.y ** 2) ** 0.5\n" "... def __str__(self):\n" -"... return 'Point: x=%6.3f y=%6.3f hypot=%6.3f' % (self.x, self.y, " -"self.hypot)\n" +"... return 'Point: x=%6.3f y=%6.3f hypot=%6.3f' % (self.x, self.y, self.hypot)\n" "\n" ">>> for p in Point(3, 4), Point(14, 5/7):\n" "... print(p)\n" @@ -1358,38 +822,21 @@ msgid "" "Point: x=14.000 y= 0.714 hypot=14.018" msgstr "" -#: ../../library/collections.rst:1061 -msgid "" -"The subclass shown above sets ``__slots__`` to an empty tuple. This helps " -"keep memory requirements low by preventing the creation of instance " -"dictionaries." +msgid "The subclass shown above sets ``__slots__`` to an empty tuple. This helps keep memory requirements low by preventing the creation of instance dictionaries." msgstr "" -#: ../../library/collections.rst:1064 -msgid "" -"Subclassing is not useful for adding new, stored fields. Instead, simply " -"create a new named tuple type from the :attr:`~somenamedtuple._fields` " -"attribute:" +msgid "Subclassing is not useful for adding new, stored fields. Instead, simply create a new named tuple type from the :attr:`~somenamedtuple._fields` attribute:" msgstr "" -#: ../../library/collections.rst:1069 -msgid "" -"Docstrings can be customized by making direct assignments to the ``__doc__`` " -"fields:" +msgid "Docstrings can be customized by making direct assignments to the ``__doc__`` fields:" msgstr "" -#: ../../library/collections.rst:1078 msgid "Property docstrings became writeable." msgstr "" -#: ../../library/collections.rst:1083 -msgid "" -"See :class:`typing.NamedTuple` for a way to add type hints for named " -"tuples. It also provides an elegant notation using the :keyword:`class` " -"keyword::" +msgid "See :class:`typing.NamedTuple` for a way to add type hints for named tuples. It also provides an elegant notation using the :keyword:`class` keyword::" msgstr "" -#: ../../library/collections.rst:1087 msgid "" "class Component(NamedTuple):\n" " part_number: int\n" @@ -1397,132 +844,66 @@ msgid "" " description: Optional[str] = None" msgstr "" -#: ../../library/collections.rst:1092 -msgid "" -"See :meth:`types.SimpleNamespace` for a mutable namespace based on an " -"underlying dictionary instead of a tuple." +msgid "See :meth:`types.SimpleNamespace` for a mutable namespace based on an underlying dictionary instead of a tuple." msgstr "" -#: ../../library/collections.rst:1095 -msgid "" -"The :mod:`dataclasses` module provides a decorator and functions for " -"automatically adding generated special methods to user-defined classes." +msgid "The :mod:`dataclasses` module provides a decorator and functions for automatically adding generated special methods to user-defined classes." msgstr "" -#: ../../library/collections.rst:1100 msgid ":class:`OrderedDict` objects" msgstr "" -#: ../../library/collections.rst:1102 -msgid "" -"Ordered dictionaries are just like regular dictionaries but have some extra " -"capabilities relating to ordering operations. They have become less " -"important now that the built-in :class:`dict` class gained the ability to " -"remember insertion order (this new behavior became guaranteed in Python 3.7)." +msgid "Ordered dictionaries are just like regular dictionaries but have some extra capabilities relating to ordering operations. They have become less important now that the built-in :class:`dict` class gained the ability to remember insertion order (this new behavior became guaranteed in Python 3.7)." msgstr "" -#: ../../library/collections.rst:1108 msgid "Some differences from :class:`dict` still remain:" msgstr "" -#: ../../library/collections.rst:1110 -msgid "" -"The regular :class:`dict` was designed to be very good at mapping " -"operations. Tracking insertion order was secondary." +msgid "The regular :class:`dict` was designed to be very good at mapping operations. Tracking insertion order was secondary." msgstr "" -#: ../../library/collections.rst:1113 -msgid "" -"The :class:`OrderedDict` was designed to be good at reordering operations. " -"Space efficiency, iteration speed, and the performance of update operations " -"were secondary." +msgid "The :class:`OrderedDict` was designed to be good at reordering operations. Space efficiency, iteration speed, and the performance of update operations were secondary." msgstr "" -#: ../../library/collections.rst:1117 -msgid "" -"The :class:`OrderedDict` algorithm can handle frequent reordering operations " -"better than :class:`dict`. As shown in the recipes below, this makes it " -"suitable for implementing various kinds of LRU caches." +msgid "The :class:`OrderedDict` algorithm can handle frequent reordering operations better than :class:`dict`. As shown in the recipes below, this makes it suitable for implementing various kinds of LRU caches." msgstr "" -#: ../../library/collections.rst:1121 -msgid "" -"The equality operation for :class:`OrderedDict` checks for matching order." +msgid "The equality operation for :class:`OrderedDict` checks for matching order." msgstr "" -#: ../../library/collections.rst:1123 -msgid "" -"A regular :class:`dict` can emulate the order sensitive equality test with " -"``p == q and all(k1 == k2 for k1, k2 in zip(p, q))``." +msgid "A regular :class:`dict` can emulate the order sensitive equality test with ``p == q and all(k1 == k2 for k1, k2 in zip(p, q))``." msgstr "" -#: ../../library/collections.rst:1126 -msgid "" -"The :meth:`~OrderedDict.popitem` method of :class:`OrderedDict` has a " -"different signature. It accepts an optional argument to specify which item " -"is popped." +msgid "The :meth:`~OrderedDict.popitem` method of :class:`OrderedDict` has a different signature. It accepts an optional argument to specify which item is popped." msgstr "" -#: ../../library/collections.rst:1129 -msgid "" -"A regular :class:`dict` can emulate OrderedDict's ``od.popitem(last=True)`` " -"with ``d.popitem()`` which is guaranteed to pop the rightmost (last) item." +msgid "A regular :class:`dict` can emulate OrderedDict's ``od.popitem(last=True)`` with ``d.popitem()`` which is guaranteed to pop the rightmost (last) item." msgstr "" -#: ../../library/collections.rst:1132 -msgid "" -"A regular :class:`dict` can emulate OrderedDict's ``od.popitem(last=False)`` " -"with ``(k := next(iter(d)), d.pop(k))`` which will return and remove the " -"leftmost (first) item if it exists." +msgid "A regular :class:`dict` can emulate OrderedDict's ``od.popitem(last=False)`` with ``(k := next(iter(d)), d.pop(k))`` which will return and remove the leftmost (first) item if it exists." msgstr "" -#: ../../library/collections.rst:1136 -msgid "" -":class:`OrderedDict` has a :meth:`~OrderedDict.move_to_end` method to " -"efficiently reposition an element to an endpoint." +msgid ":class:`OrderedDict` has a :meth:`~OrderedDict.move_to_end` method to efficiently reposition an element to an endpoint." msgstr "" -#: ../../library/collections.rst:1139 -msgid "" -"A regular :class:`dict` can emulate OrderedDict's ``od.move_to_end(k, " -"last=True)`` with ``d[k] = d.pop(k)`` which will move the key and its " -"associated value to the rightmost (last) position." +msgid "A regular :class:`dict` can emulate OrderedDict's ``od.move_to_end(k, last=True)`` with ``d[k] = d.pop(k)`` which will move the key and its associated value to the rightmost (last) position." msgstr "" -#: ../../library/collections.rst:1143 -msgid "" -"A regular :class:`dict` does not have an efficient equivalent for " -"OrderedDict's ``od.move_to_end(k, last=False)`` which moves the key and its " -"associated value to the leftmost (first) position." +msgid "A regular :class:`dict` does not have an efficient equivalent for OrderedDict's ``od.move_to_end(k, last=False)`` which moves the key and its associated value to the leftmost (first) position." msgstr "" -#: ../../library/collections.rst:1147 -msgid "" -"Until Python 3.8, :class:`dict` lacked a :meth:`~object.__reversed__` method." +msgid "Until Python 3.8, :class:`dict` lacked a :meth:`~object.__reversed__` method." msgstr "" -#: ../../library/collections.rst:1154 -msgid "" -"Return an instance of a :class:`dict` subclass that has methods specialized " -"for rearranging dictionary order." +msgid "Return an instance of a :class:`dict` subclass that has methods specialized for rearranging dictionary order." msgstr "" -#: ../../library/collections.rst:1161 -msgid "" -"The :meth:`popitem` method for ordered dictionaries returns and removes a " -"(key, value) pair. The pairs are returned in :abbr:`LIFO (last-in, first-" -"out)` order if *last* is true or :abbr:`FIFO (first-in, first-out)` order if " -"false." +msgid "The :meth:`popitem` method for ordered dictionaries returns and removes a (key, value) pair. The pairs are returned in :abbr:`LIFO (last-in, first-out)` order if *last* is true or :abbr:`FIFO (first-in, first-out)` order if false." msgstr "" -#: ../../library/collections.rst:1168 -msgid "" -"Move an existing *key* to either end of an ordered dictionary. The item is " -"moved to the right end if *last* is true (the default) or to the beginning " -"if *last* is false. Raises :exc:`KeyError` if the *key* does not exist:" +msgid "Move an existing *key* to either end of an ordered dictionary. The item is moved to the right end if *last* is true (the default) or to the beginning if *last* is false. Raises :exc:`KeyError` if the *key* does not exist:" msgstr "" -#: ../../library/collections.rst:1173 msgid "" ">>> d = OrderedDict.fromkeys('abcde')\n" ">>> d.move_to_end('b')\n" @@ -1533,52 +914,27 @@ msgid "" "'bacde'" msgstr "" -#: ../../library/collections.rst:1185 -msgid "" -"In addition to the usual mapping methods, ordered dictionaries also support " -"reverse iteration using :func:`reversed`." +msgid "In addition to the usual mapping methods, ordered dictionaries also support reverse iteration using :func:`reversed`." msgstr "" -#: ../../library/collections.rst:1190 -msgid "" -"Equality tests between :class:`OrderedDict` objects are order-sensitive and " -"are roughly equivalent to ``list(od1.items())==list(od2.items())``." +msgid "Equality tests between :class:`OrderedDict` objects are order-sensitive and are roughly equivalent to ``list(od1.items())==list(od2.items())``." msgstr "" -#: ../../library/collections.rst:1193 -msgid "" -"Equality tests between :class:`OrderedDict` objects and " -"other :class:`~collections.abc.Mapping` objects are order-insensitive like " -"regular dictionaries. This allows :class:`OrderedDict` objects to be " -"substituted anywhere a regular dictionary is used." +msgid "Equality tests between :class:`OrderedDict` objects and other :class:`~collections.abc.Mapping` objects are order-insensitive like regular dictionaries. This allows :class:`OrderedDict` objects to be substituted anywhere a regular dictionary is used." msgstr "" -#: ../../library/collections.rst:1198 -msgid "" -"The items, keys, and values :term:`views ` " -"of :class:`OrderedDict` now support reverse iteration using :func:`reversed`." +msgid "The items, keys, and values :term:`views ` of :class:`OrderedDict` now support reverse iteration using :func:`reversed`." msgstr "" -#: ../../library/collections.rst:1202 -msgid "" -"With the acceptance of :pep:`468`, order is retained for keyword arguments " -"passed to the :class:`OrderedDict` constructor and its :meth:`~dict.update` " -"method." +msgid "With the acceptance of :pep:`468`, order is retained for keyword arguments passed to the :class:`OrderedDict` constructor and its :meth:`~dict.update` method." msgstr "" -#: ../../library/collections.rst:1212 msgid ":class:`OrderedDict` Examples and Recipes" msgstr "" -#: ../../library/collections.rst:1214 -msgid "" -"It is straightforward to create an ordered dictionary variant that remembers " -"the order the keys were *last* inserted. If a new entry overwrites an " -"existing entry, the original insertion position is changed and moved to the " -"end::" +msgid "It is straightforward to create an ordered dictionary variant that remembers the order the keys were *last* inserted. If a new entry overwrites an existing entry, the original insertion position is changed and moved to the end::" msgstr "" -#: ../../library/collections.rst:1219 msgid "" "class LastUpdatedOrderedDict(OrderedDict):\n" " 'Store items in the order the keys were last added'\n" @@ -1588,13 +944,9 @@ msgid "" " self.move_to_end(key)" msgstr "" -#: ../../library/collections.rst:1226 -msgid "" -"An :class:`OrderedDict` would also be useful for implementing variants " -"of :deco:`functools.lru_cache`:" +msgid "An :class:`OrderedDict` would also be useful for implementing variants of :deco:`functools.lru_cache`:" msgstr "" -#: ../../library/collections.rst:1229 msgid "" "from collections import OrderedDict\n" "from time import monotonic\n" @@ -1621,7 +973,6 @@ msgid "" " return result" msgstr "" -#: ../../library/collections.rst:1256 msgid "" "class MultiHitLRUCache:\n" " \"\"\" LRU cache that defers caching a result until\n" @@ -1637,8 +988,7 @@ msgid "" " self.cache = OrderedDict() # { cached_key : function_result }\n" " self.func = func\n" " self.maxrequests = maxrequests # max number of uncached requests\n" -" self.maxsize = maxsize # max number of stored return " -"values\n" +" self.maxsize = maxsize # max number of stored return values\n" " self.cache_after = cache_after\n" "\n" " def __call__(self, *args):\n" @@ -1659,130 +1009,59 @@ msgid "" " return result" msgstr "" -#: ../../library/collections.rst:1325 msgid ":class:`UserDict` objects" msgstr "" -#: ../../library/collections.rst:1327 -msgid "" -"The class, :class:`UserDict` acts as a wrapper around dictionary objects. " -"The need for this class has been partially supplanted by the ability to " -"subclass directly from :class:`dict`; however, this class can be easier to " -"work with because the underlying dictionary is accessible as an attribute." +msgid "The class, :class:`UserDict` acts as a wrapper around dictionary objects. The need for this class has been partially supplanted by the ability to subclass directly from :class:`dict`; however, this class can be easier to work with because the underlying dictionary is accessible as an attribute." msgstr "" -#: ../../library/collections.rst:1337 -msgid "" -"Class that simulates a dictionary. The instance's contents are kept in a " -"regular dictionary, which is accessible via the :attr:`data` attribute " -"of :class:`!UserDict` instances. If arguments are provided, they are used " -"to initialize :attr:`data`, like a regular dictionary." +msgid "Class that simulates a dictionary. The instance's contents are kept in a regular dictionary, which is accessible via the :attr:`data` attribute of :class:`!UserDict` instances. If arguments are provided, they are used to initialize :attr:`data`, like a regular dictionary." msgstr "" -#: ../../library/collections.rst:1342 -msgid "" -"In addition to supporting the methods and operations of mappings, :class:`!" -"UserDict` instances provide the following attribute:" +msgid "In addition to supporting the methods and operations of mappings, :class:`!UserDict` instances provide the following attribute:" msgstr "" -#: ../../library/collections.rst:1347 -msgid "" -"A real dictionary used to store the contents of the :class:`UserDict` class." +msgid "A real dictionary used to store the contents of the :class:`UserDict` class." msgstr "" -#: ../../library/collections.rst:1353 msgid ":class:`UserList` objects" msgstr "" -#: ../../library/collections.rst:1355 -msgid "" -"This class acts as a wrapper around list objects. It is a useful base class " -"for your own list-like classes which can inherit from them and override " -"existing methods or add new ones. In this way, one can add new behaviors to " -"lists." +msgid "This class acts as a wrapper around list objects. It is a useful base class for your own list-like classes which can inherit from them and override existing methods or add new ones. In this way, one can add new behaviors to lists." msgstr "" -#: ../../library/collections.rst:1360 -msgid "" -"The need for this class has been partially supplanted by the ability to " -"subclass directly from :class:`list`; however, this class can be easier to " -"work with because the underlying list is accessible as an attribute." +msgid "The need for this class has been partially supplanted by the ability to subclass directly from :class:`list`; however, this class can be easier to work with because the underlying list is accessible as an attribute." msgstr "" -#: ../../library/collections.rst:1366 -msgid "" -"Class that simulates a list. The instance's contents are kept in a regular " -"list, which is accessible via the :attr:`data` attribute " -"of :class:`UserList` instances. The instance's contents are initially set " -"to a copy of *list*, defaulting to the empty list ``[]``. *list* can be any " -"iterable, for example a real Python list or a :class:`UserList` object." +msgid "Class that simulates a list. The instance's contents are kept in a regular list, which is accessible via the :attr:`data` attribute of :class:`UserList` instances. The instance's contents are initially set to a copy of *list*, defaulting to the empty list ``[]``. *list* can be any iterable, for example a real Python list or a :class:`UserList` object." msgstr "" -#: ../../library/collections.rst:1372 -msgid "" -"In addition to supporting the methods and operations of mutable " -"sequences, :class:`UserList` instances provide the following attribute:" +msgid "In addition to supporting the methods and operations of mutable sequences, :class:`UserList` instances provide the following attribute:" msgstr "" -#: ../../library/collections.rst:1377 -msgid "" -"A real :class:`list` object used to store the contents of " -"the :class:`UserList` class." +msgid "A real :class:`list` object used to store the contents of the :class:`UserList` class." msgstr "" -#: ../../library/collections.rst:1380 -msgid "" -"**Subclassing requirements:** Subclasses of :class:`UserList` are expected " -"to offer a constructor which can be called with either no arguments or one " -"argument. List operations which return a new sequence attempt to create an " -"instance of the actual implementation class. To do so, it assumes that the " -"constructor can be called with a single parameter, which is a sequence " -"object used as a data source." +msgid "**Subclassing requirements:** Subclasses of :class:`UserList` are expected to offer a constructor which can be called with either no arguments or one argument. List operations which return a new sequence attempt to create an instance of the actual implementation class. To do so, it assumes that the constructor can be called with a single parameter, which is a sequence object used as a data source." msgstr "" -#: ../../library/collections.rst:1387 -msgid "" -"If a derived class does not wish to comply with this requirement, all of the " -"special methods supported by this class will need to be overridden; please " -"consult the sources for information about the methods which need to be " -"provided in that case." +msgid "If a derived class does not wish to comply with this requirement, all of the special methods supported by this class will need to be overridden; please consult the sources for information about the methods which need to be provided in that case." msgstr "" -#: ../../library/collections.rst:1393 msgid ":class:`UserString` objects" msgstr "" -#: ../../library/collections.rst:1395 -msgid "" -"The class, :class:`UserString` acts as a wrapper around string objects. The " -"need for this class has been partially supplanted by the ability to subclass " -"directly from :class:`str`; however, this class can be easier to work with " -"because the underlying string is accessible as an attribute." +msgid "The class, :class:`UserString` acts as a wrapper around string objects. The need for this class has been partially supplanted by the ability to subclass directly from :class:`str`; however, this class can be easier to work with because the underlying string is accessible as an attribute." msgstr "" -#: ../../library/collections.rst:1403 -msgid "" -"Class that simulates a string object. The instance's content is kept in a " -"regular string object, which is accessible via the :attr:`data` attribute " -"of :class:`UserString` instances. The instance's contents are initially set " -"to a copy of *seq*. The *seq* argument can be any object which can be " -"converted into a string using the built-in :func:`str` function." +msgid "Class that simulates a string object. The instance's content is kept in a regular string object, which is accessible via the :attr:`data` attribute of :class:`UserString` instances. The instance's contents are initially set to a copy of *seq*. The *seq* argument can be any object which can be converted into a string using the built-in :func:`str` function." msgstr "" -#: ../../library/collections.rst:1410 -msgid "" -"In addition to supporting the methods and operations of " -"strings, :class:`UserString` instances provide the following attribute:" +msgid "In addition to supporting the methods and operations of strings, :class:`UserString` instances provide the following attribute:" msgstr "" -#: ../../library/collections.rst:1415 -msgid "" -"A real :class:`str` object used to store the contents of " -"the :class:`UserString` class." +msgid "A real :class:`str` object used to store the contents of the :class:`UserString` class." msgstr "" -#: ../../library/collections.rst:1418 -msgid "" -"New methods ``__getnewargs__``, ``__rmod__``, ``casefold``, ``format_map``, " -"``isprintable``, and ``maketrans``." +msgid "New methods ``__getnewargs__``, ``__rmod__``, ``casefold``, ``format_map``, ``isprintable``, and ``maketrans``." msgstr "" diff --git a/library/colorsys.po b/library/colorsys.po index 530d2565..e5763758 100644 --- a/library/colorsys.po +++ b/library/colorsys.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:57+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,65 +23,42 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/colorsys.rst:2 msgid ":mod:`!colorsys` --- Conversions between color systems" msgstr "" -#: ../../library/colorsys.rst:9 msgid "**Source code:** :source:`Lib/colorsys.py`" msgstr "" -#: ../../library/colorsys.rst:13 -msgid "" -"The :mod:`!colorsys` module defines bidirectional conversions of color " -"values between colors expressed in the RGB (Red Green Blue) color space used " -"in computer monitors and three other coordinate systems: YIQ, HLS (Hue " -"Lightness Saturation) and HSV (Hue Saturation Value). Coordinates in all of " -"these color spaces are floating-point values. In the YIQ space, the Y " -"coordinate is between 0 and 1, but the I and Q coordinates can be positive " -"or negative. In all other spaces, the coordinates are all between 0 and 1." +msgid "The :mod:`!colorsys` module defines bidirectional conversions of color values between colors expressed in the RGB (Red Green Blue) color space used in computer monitors and three other coordinate systems: YIQ, HLS (Hue Lightness Saturation) and HSV (Hue Saturation Value). Coordinates in all of these color spaces are floating-point values. In the YIQ space, the Y coordinate is between 0 and 1, but the I and Q coordinates can be positive or negative. In all other spaces, the coordinates are all between 0 and 1." msgstr "" -#: ../../library/colorsys.rst:23 -msgid "" -"More information about color spaces can be found at https://poynton.ca/" -"ColorFAQ.html and https://www.cambridgeincolour.com/tutorials/color-" -"spaces.htm." +msgid "More information about color spaces can be found at https://poynton.ca/ColorFAQ.html and https://www.cambridgeincolour.com/tutorials/color-spaces.htm." msgstr "" -#: ../../library/colorsys.rst:27 msgid "The :mod:`!colorsys` module defines the following functions:" msgstr "" -#: ../../library/colorsys.rst:32 msgid "Convert the color from RGB coordinates to YIQ coordinates." msgstr "" -#: ../../library/colorsys.rst:37 msgid "Convert the color from YIQ coordinates to RGB coordinates." msgstr "" -#: ../../library/colorsys.rst:42 msgid "Convert the color from RGB coordinates to HLS coordinates." msgstr "" -#: ../../library/colorsys.rst:47 msgid "Convert the color from HLS coordinates to RGB coordinates." msgstr "" -#: ../../library/colorsys.rst:52 msgid "Convert the color from RGB coordinates to HSV coordinates." msgstr "" -#: ../../library/colorsys.rst:57 msgid "Convert the color from HSV coordinates to RGB coordinates." msgstr "" -#: ../../library/colorsys.rst:59 msgid "Example::" msgstr "" -#: ../../library/colorsys.rst:61 msgid "" ">>> import colorsys\n" ">>> colorsys.rgb_to_hsv(0.2, 0.4, 0.4)\n" diff --git a/library/compileall.po b/library/compileall.po index d346174c..9e3e3722 100644 --- a/library/compileall.po +++ b/library/compileall.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:57+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,390 +23,186 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/compileall.rst:2 msgid ":mod:`!compileall` --- Byte-compile Python libraries" msgstr "" -#: ../../library/compileall.rst:7 msgid "**Source code:** :source:`Lib/compileall.py`" msgstr "" -#: ../../library/compileall.rst:11 -msgid "" -"This module provides some utility functions to support installing Python " -"libraries. These functions compile Python source files in a directory tree. " -"This module can be used to create the cached byte-code files at library " -"installation time, which makes them available for use even by users who " -"don't have write permission to the library directories." +msgid "This module provides some utility functions to support installing Python libraries. These functions compile Python source files in a directory tree. This module can be used to create the cached byte-code files at library installation time, which makes them available for use even by users who don't have write permission to the library directories." msgstr "" -#: ../../includes/wasm-notavail.rst:3 msgid "Availability" msgstr "" -#: ../../includes/wasm-notavail.rst:5 -msgid "" -"This module does not work or is not available on WebAssembly. See :ref:`wasm-" -"availability` for more information." +msgid "This module does not work or is not available on WebAssembly. See :ref:`wasm-availability` for more information." msgstr "" -#: ../../library/compileall.rst:22 msgid "Command-line use" msgstr "" -#: ../../library/compileall.rst:24 -msgid "" -"This module can work as a script (using :program:`python -m compileall`) to " -"compile Python sources." +msgid "This module can work as a script (using :program:`python -m compileall`) to compile Python sources." msgstr "" -#: ../../library/compileall.rst:32 -msgid "" -"Positional arguments are files to compile or directories that contain source " -"files, traversed recursively. If no argument is given, behave as if the " -"command line was :samp:`-l {}`." +msgid "Positional arguments are files to compile or directories that contain source files, traversed recursively. If no argument is given, behave as if the command line was :samp:`-l {}`." msgstr "" -#: ../../library/compileall.rst:38 -msgid "" -"Do not recurse into subdirectories, only compile source code files directly " -"contained in the named or implied directories." +msgid "Do not recurse into subdirectories, only compile source code files directly contained in the named or implied directories." msgstr "" -#: ../../library/compileall.rst:43 msgid "Force rebuild even if timestamps are up-to-date." msgstr "" -#: ../../library/compileall.rst:47 -msgid "" -"Do not print the list of files compiled. If passed once, error messages will " -"still be printed. If passed twice (``-qq``), all output is suppressed." +msgid "Do not print the list of files compiled. If passed once, error messages will still be printed. If passed twice (``-qq``), all output is suppressed." msgstr "" -#: ../../library/compileall.rst:52 -msgid "" -"Directory prepended to the path to each file being compiled. This will " -"appear in compilation time tracebacks, and is also compiled in to the byte-" -"code file, where it will be used in tracebacks and other messages in cases " -"where the source file does not exist at the time the byte-code file is " -"executed." +msgid "Directory prepended to the path to each file being compiled. This will appear in compilation time tracebacks, and is also compiled in to the byte-code file, where it will be used in tracebacks and other messages in cases where the source file does not exist at the time the byte-code file is executed." msgstr "" -#: ../../library/compileall.rst:60 -msgid "" -"Remove the given prefix from paths recorded in the ``.pyc`` files. Paths are " -"made relative to the prefix." +msgid "Remove the given prefix from paths recorded in the ``.pyc`` files. Paths are made relative to the prefix." msgstr "" -#: ../../library/compileall.rst:63 msgid "This option can be used with ``-p`` but not with ``-d``." msgstr "" -#: ../../library/compileall.rst:67 -msgid "" -"Prepend the given prefix to paths recorded in the ``.pyc`` files. Use ``-p /" -"`` to make the paths absolute." +msgid "Prepend the given prefix to paths recorded in the ``.pyc`` files. Use ``-p /`` to make the paths absolute." msgstr "" -#: ../../library/compileall.rst:70 msgid "This option can be used with ``-s`` but not with ``-d``." msgstr "" -#: ../../library/compileall.rst:74 -msgid "" -"regex is used to search the full path to each file considered for " -"compilation, and if the regex produces a match, the file is skipped." +msgid "regex is used to search the full path to each file considered for compilation, and if the regex produces a match, the file is skipped." msgstr "" -#: ../../library/compileall.rst:79 -msgid "" -"Read the file ``list`` and add each line that it contains to the list of " -"files and directories to compile. If ``list`` is ``-``, read lines from " -"``stdin``." +msgid "Read the file ``list`` and add each line that it contains to the list of files and directories to compile. If ``list`` is ``-``, read lines from ``stdin``." msgstr "" -#: ../../library/compileall.rst:85 -msgid "" -"Write the byte-code files to their legacy locations and names, which may " -"overwrite byte-code files created by another version of Python. The default " -"is to write files to their :pep:`3147` locations and names, which allows " -"byte-code files from multiple versions of Python to coexist." +msgid "Write the byte-code files to their legacy locations and names, which may overwrite byte-code files created by another version of Python. The default is to write files to their :pep:`3147` locations and names, which allows byte-code files from multiple versions of Python to coexist." msgstr "" -#: ../../library/compileall.rst:92 -msgid "" -"Control the maximum recursion level for subdirectories. If this is given, " -"then ``-l`` option will not be taken into account. :program:`python -m " -"compileall -r 0` is equivalent to :program:`python -m compileall " -" -l`." +msgid "Control the maximum recursion level for subdirectories. If this is given, then ``-l`` option will not be taken into account. :program:`python -m compileall -r 0` is equivalent to :program:`python -m compileall -l`." msgstr "" -#: ../../library/compileall.rst:99 -msgid "" -"Use *N* workers to compile the files within the given directory. If ``0`` is " -"used, then the result of :func:`os.process_cpu_count` will be used." +msgid "Use *N* workers to compile the files within the given directory. If ``0`` is used, then the result of :func:`os.process_cpu_count` will be used." msgstr "" -#: ../../library/compileall.rst:105 -msgid "" -"Control how the generated byte-code files are invalidated at runtime. The " -"``timestamp`` value, means that ``.pyc`` files with the source timestamp and " -"size embedded will be generated. The ``checked-hash`` and ``unchecked-hash`` " -"values cause hash-based pycs to be generated. Hash-based pycs embed a hash " -"of the source file contents rather than a timestamp. See :ref:`pyc-" -"invalidation` for more information on how Python validates bytecode cache " -"files at runtime. The default is ``timestamp`` if " -"the :envvar:`SOURCE_DATE_EPOCH` environment variable is not set, and " -"``checked-hash`` if the ``SOURCE_DATE_EPOCH`` environment variable is set." -msgstr "" - -#: ../../library/compileall.rst:118 -msgid "" -"Compile with the given optimization level. May be used multiple times to " -"compile for multiple levels at a time (for example, ``compileall -o 1 -o " -"2``)." +msgid "Control how the generated byte-code files are invalidated at runtime. The ``timestamp`` value, means that ``.pyc`` files with the source timestamp and size embedded will be generated. The ``checked-hash`` and ``unchecked-hash`` values cause hash-based pycs to be generated. Hash-based pycs embed a hash of the source file contents rather than a timestamp. See :ref:`pyc-invalidation` for more information on how Python validates bytecode cache files at runtime. The default is ``timestamp`` if the :envvar:`SOURCE_DATE_EPOCH` environment variable is not set, and ``checked-hash`` if the ``SOURCE_DATE_EPOCH`` environment variable is set." +msgstr "" + +msgid "Compile with the given optimization level. May be used multiple times to compile for multiple levels at a time (for example, ``compileall -o 1 -o 2``)." msgstr "" -#: ../../library/compileall.rst:124 msgid "Ignore symlinks pointing outside the given directory." msgstr "" -#: ../../library/compileall.rst:128 -msgid "" -"If two ``.pyc`` files with different optimization level have the same " -"content, use hard links to consolidate duplicate files." +msgid "If two ``.pyc`` files with different optimization level have the same content, use hard links to consolidate duplicate files." msgstr "" -#: ../../library/compileall.rst:131 msgid "Added the ``-i``, ``-b`` and ``-h`` options." msgstr "" -#: ../../library/compileall.rst:134 -msgid "" -"Added the ``-j``, ``-r``, and ``-qq`` options. ``-q`` option was changed " -"to a multilevel value. ``-b`` will always produce a byte-code file ending " -"in ``.pyc``, never ``.pyo``." +msgid "Added the ``-j``, ``-r``, and ``-qq`` options. ``-q`` option was changed to a multilevel value. ``-b`` will always produce a byte-code file ending in ``.pyc``, never ``.pyo``." msgstr "" -#: ../../library/compileall.rst:139 msgid "Added the ``--invalidation-mode`` option." msgstr "" -#: ../../library/compileall.rst:142 -msgid "" -"Added the ``-s``, ``-p``, ``-e`` and ``--hardlink-dupes`` options. Raised " -"the default recursion limit from 10 to :py:func:`sys.getrecursionlimit()`. " -"Added the possibility to specify the ``-o`` option multiple times." +msgid "Added the ``-s``, ``-p``, ``-e`` and ``--hardlink-dupes`` options. Raised the default recursion limit from 10 to :py:func:`sys.getrecursionlimit()`. Added the possibility to specify the ``-o`` option multiple times." msgstr "" -#: ../../library/compileall.rst:149 -msgid "" -"There is no command-line option to control the optimization level used by " -"the :func:`compile` function, because the Python interpreter itself already " -"provides the option: :program:`python -O -m compileall`." +msgid "There is no command-line option to control the optimization level used by the :func:`compile` function, because the Python interpreter itself already provides the option: :program:`python -O -m compileall`." msgstr "" -#: ../../library/compileall.rst:153 -msgid "" -"Similarly, the :func:`compile` function respects " -"the :data:`sys.pycache_prefix` setting. The generated bytecode cache will " -"only be useful if :func:`compile` is run with the " -"same :data:`sys.pycache_prefix` (if any) that will be used at runtime." +msgid "Similarly, the :func:`compile` function respects the :data:`sys.pycache_prefix` setting. The generated bytecode cache will only be useful if :func:`compile` is run with the same :data:`sys.pycache_prefix` (if any) that will be used at runtime." msgstr "" -#: ../../library/compileall.rst:159 msgid "Public functions" msgstr "" -#: ../../library/compileall.rst:163 -msgid "" -"Recursively descend the directory tree named by *dir*, compiling " -"all :file:`.py` files along the way. Return a true value if all the files " -"compiled successfully, and a false value otherwise." +msgid "Recursively descend the directory tree named by *dir*, compiling all :file:`.py` files along the way. Return a true value if all the files compiled successfully, and a false value otherwise." msgstr "" -#: ../../library/compileall.rst:167 -msgid "" -"The *maxlevels* parameter is used to limit the depth of the recursion; it " -"defaults to ``sys.getrecursionlimit()``." +msgid "The *maxlevels* parameter is used to limit the depth of the recursion; it defaults to ``sys.getrecursionlimit()``." msgstr "" -#: ../../library/compileall.rst:170 -msgid "" -"If *ddir* is given, it is prepended to the path to each file being compiled " -"for use in compilation time tracebacks, and is also compiled in to the byte-" -"code file, where it will be used in tracebacks and other messages in cases " -"where the source file does not exist at the time the byte-code file is " -"executed." +msgid "If *ddir* is given, it is prepended to the path to each file being compiled for use in compilation time tracebacks, and is also compiled in to the byte-code file, where it will be used in tracebacks and other messages in cases where the source file does not exist at the time the byte-code file is executed." msgstr "" -#: ../../library/compileall.rst:176 -msgid "" -"If *force* is true, modules are re-compiled even if the timestamps are up to " -"date." +msgid "If *force* is true, modules are re-compiled even if the timestamps are up to date." msgstr "" -#: ../../library/compileall.rst:179 -msgid "" -"If *rx* is given, its ``search`` method is called on the complete path to " -"each file considered for compilation, and if it returns a true value, the " -"file is skipped. This can be used to exclude files matching a regular " -"expression, given as a :ref:`re.Pattern ` object." +msgid "If *rx* is given, its ``search`` method is called on the complete path to each file considered for compilation, and if it returns a true value, the file is skipped. This can be used to exclude files matching a regular expression, given as a :ref:`re.Pattern ` object." msgstr "" -#: ../../library/compileall.rst:184 ../../library/compileall.rst:261 -msgid "" -"If *quiet* is ``False`` or ``0`` (the default), the filenames and other " -"information are printed to standard out. Set to ``1``, only errors are " -"printed. Set to ``2``, all output is suppressed." +msgid "If *quiet* is ``False`` or ``0`` (the default), the filenames and other information are printed to standard out. Set to ``1``, only errors are printed. Set to ``2``, all output is suppressed." msgstr "" -#: ../../library/compileall.rst:188 ../../library/compileall.rst:265 -msgid "" -"If *legacy* is true, byte-code files are written to their legacy locations " -"and names, which may overwrite byte-code files created by another version of " -"Python. The default is to write files to their :pep:`3147` locations and " -"names, which allows byte-code files from multiple versions of Python to " -"coexist." +msgid "If *legacy* is true, byte-code files are written to their legacy locations and names, which may overwrite byte-code files created by another version of Python. The default is to write files to their :pep:`3147` locations and names, which allows byte-code files from multiple versions of Python to coexist." msgstr "" -#: ../../library/compileall.rst:194 ../../library/compileall.rst:271 -msgid "" -"*optimize* specifies the optimization level for the compiler. It is passed " -"to the built-in :func:`compile` function. Accepts also a sequence of " -"optimization levels which lead to multiple compilations of one :file:`.py` " -"file in one call." +msgid "*optimize* specifies the optimization level for the compiler. It is passed to the built-in :func:`compile` function. Accepts also a sequence of optimization levels which lead to multiple compilations of one :file:`.py` file in one call." msgstr "" -#: ../../library/compileall.rst:198 -msgid "" -"The argument *workers* specifies how many workers are used to compile files " -"in parallel. The default is to not use multiple workers. If the platform " -"can't use multiple workers and *workers* argument is given, then sequential " -"compilation will be used as a fallback. If *workers* is 0, the number of " -"cores in the system is used. If *workers* is lower than ``0``, " -"a :exc:`ValueError` will be raised." +msgid "The argument *workers* specifies how many workers are used to compile files in parallel. The default is to not use multiple workers. If the platform can't use multiple workers and *workers* argument is given, then sequential compilation will be used as a fallback. If *workers* is 0, the number of cores in the system is used. If *workers* is lower than ``0``, a :exc:`ValueError` will be raised." msgstr "" -#: ../../library/compileall.rst:205 ../../library/compileall.rst:275 -msgid "" -"*invalidation_mode* should be a member of " -"the :class:`py_compile.PycInvalidationMode` enum and controls how the " -"generated pycs are invalidated at runtime." +msgid "*invalidation_mode* should be a member of the :class:`py_compile.PycInvalidationMode` enum and controls how the generated pycs are invalidated at runtime." msgstr "" -#: ../../library/compileall.rst:209 ../../library/compileall.rst:279 -msgid "" -"The *stripdir*, *prependdir* and *limit_sl_dest* arguments correspond to the " -"``-s``, ``-p`` and ``-e`` options described above. They may be specified as " -"``str`` or :py:class:`os.PathLike`." +msgid "The *stripdir*, *prependdir* and *limit_sl_dest* arguments correspond to the ``-s``, ``-p`` and ``-e`` options described above. They may be specified as ``str`` or :py:class:`os.PathLike`." msgstr "" -#: ../../library/compileall.rst:213 ../../library/compileall.rst:283 -msgid "" -"If *hardlink_dupes* is true and two ``.pyc`` files with different " -"optimization level have the same content, use hard links to consolidate " -"duplicate files." +msgid "If *hardlink_dupes* is true and two ``.pyc`` files with different optimization level have the same content, use hard links to consolidate duplicate files." msgstr "" -#: ../../library/compileall.rst:216 ../../library/compileall.rst:314 msgid "Added the *legacy* and *optimize* parameter." msgstr "" -#: ../../library/compileall.rst:219 msgid "Added the *workers* parameter." msgstr "" -#: ../../library/compileall.rst:222 ../../library/compileall.rst:288 -#: ../../library/compileall.rst:317 msgid "*quiet* parameter was changed to a multilevel value." msgstr "" -#: ../../library/compileall.rst:225 ../../library/compileall.rst:291 -#: ../../library/compileall.rst:320 -msgid "" -"The *legacy* parameter only writes out ``.pyc`` files, not ``.pyo`` files no " -"matter what the value of *optimize* is." +msgid "The *legacy* parameter only writes out ``.pyc`` files, not ``.pyo`` files no matter what the value of *optimize* is." msgstr "" -#: ../../library/compileall.rst:229 msgid "Accepts a :term:`path-like object`." msgstr "" -#: ../../library/compileall.rst:232 ../../library/compileall.rst:295 -#: ../../library/compileall.rst:324 msgid "The *invalidation_mode* parameter was added." msgstr "" -#: ../../library/compileall.rst:235 ../../library/compileall.rst:298 -#: ../../library/compileall.rst:327 -msgid "" -"The *invalidation_mode* parameter's default value is updated to ``None``." +msgid "The *invalidation_mode* parameter's default value is updated to ``None``." msgstr "" -#: ../../library/compileall.rst:238 msgid "Setting *workers* to 0 now chooses the optimal number of cores." msgstr "" -#: ../../library/compileall.rst:241 -msgid "" -"Added *stripdir*, *prependdir*, *limit_sl_dest* and *hardlink_dupes* " -"arguments. Default value of *maxlevels* was changed from ``10`` to " -"``sys.getrecursionlimit()``" +msgid "Added *stripdir*, *prependdir*, *limit_sl_dest* and *hardlink_dupes* arguments. Default value of *maxlevels* was changed from ``10`` to ``sys.getrecursionlimit()``" msgstr "" -#: ../../library/compileall.rst:247 -msgid "" -"Compile the file with path *fullname*. Return a true value if the file " -"compiled successfully, and a false value otherwise." +msgid "Compile the file with path *fullname*. Return a true value if the file compiled successfully, and a false value otherwise." msgstr "" -#: ../../library/compileall.rst:250 -msgid "" -"If *ddir* is given, it is prepended to the path to the file being compiled " -"for use in compilation time tracebacks, and is also compiled in to the byte-" -"code file, where it will be used in tracebacks and other messages in cases " -"where the source file does not exist at the time the byte-code file is " -"executed." +msgid "If *ddir* is given, it is prepended to the path to the file being compiled for use in compilation time tracebacks, and is also compiled in to the byte-code file, where it will be used in tracebacks and other messages in cases where the source file does not exist at the time the byte-code file is executed." msgstr "" -#: ../../library/compileall.rst:256 -msgid "" -"If *rx* is given, its ``search`` method is passed the full path name to the " -"file being compiled, and if it returns a true value, the file is not " -"compiled and ``True`` is returned. This can be used to exclude files " -"matching a regular expression, given as a :ref:`re.Pattern ` " -"object." +msgid "If *rx* is given, its ``search`` method is passed the full path name to the file being compiled, and if it returns a true value, the file is not compiled and ``True`` is returned. This can be used to exclude files matching a regular expression, given as a :ref:`re.Pattern ` object." msgstr "" -#: ../../library/compileall.rst:301 -msgid "" -"Added *stripdir*, *prependdir*, *limit_sl_dest* and *hardlink_dupes* " -"arguments." +msgid "Added *stripdir*, *prependdir*, *limit_sl_dest* and *hardlink_dupes* arguments." msgstr "" -#: ../../library/compileall.rst:306 -msgid "" -"Byte-compile all the :file:`.py` files found along ``sys.path``. Return a " -"true value if all the files compiled successfully, and a false value " -"otherwise." +msgid "Byte-compile all the :file:`.py` files found along ``sys.path``. Return a true value if all the files compiled successfully, and a false value otherwise." msgstr "" -#: ../../library/compileall.rst:309 -msgid "" -"If *skip_curdir* is true (the default), the current directory is not " -"included in the search. All other parameters are passed to " -"the :func:`compile_dir` function. Note that unlike the other compile " -"functions, ``maxlevels`` defaults to ``0``." +msgid "If *skip_curdir* is true (the default), the current directory is not included in the search. All other parameters are passed to the :func:`compile_dir` function. Note that unlike the other compile functions, ``maxlevels`` defaults to ``0``." msgstr "" -#: ../../library/compileall.rst:330 -msgid "" -"To force a recompile of all the :file:`.py` files in the :file:`Lib/` " -"subdirectory and all its subdirectories::" +msgid "To force a recompile of all the :file:`.py` files in the :file:`Lib/` subdirectory and all its subdirectories::" msgstr "" -#: ../../library/compileall.rst:333 msgid "" "import compileall\n" "\n" @@ -421,10 +217,8 @@ msgid "" "compileall.compile_dir(pathlib.Path('Lib/'), force=True)" msgstr "" -#: ../../library/compileall.rst:347 msgid "Module :mod:`py_compile`" msgstr "" -#: ../../library/compileall.rst:348 msgid "Byte-compile a single source file." msgstr "" diff --git a/library/compression.po b/library/compression.po index 5e0ac482..a164bf4a 100644 --- a/library/compression.po +++ b/library/compression.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2026-07-25 12:59+0330\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: none\n" @@ -19,37 +19,23 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../library/compression.rst:2 msgid "The :mod:`!compression` package" msgstr "" -#: ../../library/compression.rst:8 -msgid "" -"The :mod:`!compression` package contains the canonical compression modules " -"containing interfaces to several different compression algorithms. Some of " -"these modules have historically been available as separate modules; those " -"will continue to be available under their original names for compatibility " -"reasons, and will not be removed without a deprecation cycle. The use of " -"modules in :mod:`!compression` is encouraged where practical." +msgid "The :mod:`!compression` package contains the canonical compression modules containing interfaces to several different compression algorithms. Some of these modules have historically been available as separate modules; those will continue to be available under their original names for compatibility reasons, and will not be removed without a deprecation cycle. The use of modules in :mod:`!compression` is encouraged where practical." msgstr "" -#: ../../library/compression.rst:15 msgid ":mod:`!compression.bz2` -- Re-exports :mod:`bz2`" msgstr "" -#: ../../library/compression.rst:16 msgid ":mod:`!compression.gzip` -- Re-exports :mod:`gzip`" msgstr "" -#: ../../library/compression.rst:17 msgid ":mod:`!compression.lzma` -- Re-exports :mod:`lzma`" msgstr "" -#: ../../library/compression.rst:18 msgid ":mod:`!compression.zlib` -- Re-exports :mod:`zlib`" msgstr "" -#: ../../library/compression.rst:19 -msgid "" -":mod:`compression.zstd` -- Wrapper for the Zstandard compression library" +msgid ":mod:`compression.zstd` -- Wrapper for the Zstandard compression library" msgstr "" diff --git a/library/compression.zstd.po b/library/compression.zstd.po index ccf8b28d..b02cc36d 100644 --- a/library/compression.zstd.po +++ b/library/compression.zstd.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2026-07-25 12:59+0330\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: none\n" @@ -19,986 +19,453 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../library/compression.zstd.rst:2 -msgid "" -":mod:`!compression.zstd` --- Compression compatible with the Zstandard format" +msgid ":mod:`!compression.zstd` --- Compression compatible with the Zstandard format" msgstr "" -#: ../../library/compression.zstd.rst:10 msgid "**Source code:** :source:`Lib/compression/zstd/__init__.py`" msgstr "" -#: ../../library/compression.zstd.rst:14 -msgid "" -"This module provides classes and functions for compressing and decompressing " -"data using the Zstandard (or *zstd*) compression algorithm. The `zstd manual " -"`__ describes " -"Zstandard as \"a fast lossless compression algorithm, targeting real-time " -"compression scenarios at zlib-level and better compression ratios.\" Also " -"included is a file interface that supports reading and writing the contents " -"of ``.zst`` files created by the :program:`zstd` utility, as well as raw " -"zstd compressed streams." +msgid "This module provides classes and functions for compressing and decompressing data using the Zstandard (or *zstd*) compression algorithm. The `zstd manual `__ describes Zstandard as \"a fast lossless compression algorithm, targeting real-time compression scenarios at zlib-level and better compression ratios.\" Also included is a file interface that supports reading and writing the contents of ``.zst`` files created by the :program:`zstd` utility, as well as raw zstd compressed streams." msgstr "" -#: ../../library/compression.zstd.rst:23 msgid "The :mod:`!compression.zstd` module contains:" msgstr "" -#: ../../library/compression.zstd.rst:25 -msgid "" -"The :func:`.open` function and :class:`ZstdFile` class for reading and " -"writing compressed files." +msgid "The :func:`.open` function and :class:`ZstdFile` class for reading and writing compressed files." msgstr "" -#: ../../library/compression.zstd.rst:27 -msgid "" -"The :class:`ZstdCompressor` and :class:`ZstdDecompressor` classes for " -"incremental (de)compression." +msgid "The :class:`ZstdCompressor` and :class:`ZstdDecompressor` classes for incremental (de)compression." msgstr "" -#: ../../library/compression.zstd.rst:29 -msgid "" -"The :func:`compress` and :func:`decompress` functions for one-shot " -"(de)compression." +msgid "The :func:`compress` and :func:`decompress` functions for one-shot (de)compression." msgstr "" -#: ../../library/compression.zstd.rst:31 -msgid "" -"The :func:`train_dict` and :func:`finalize_dict` functions and " -"the :class:`ZstdDict` class to train and manage Zstandard dictionaries." +msgid "The :func:`train_dict` and :func:`finalize_dict` functions and the :class:`ZstdDict` class to train and manage Zstandard dictionaries." msgstr "" -#: ../../library/compression.zstd.rst:33 -msgid "" -"The :class:`CompressionParameter`, :class:`DecompressionParameter`, " -"and :class:`Strategy` classes for setting advanced (de)compression " -"parameters." +msgid "The :class:`CompressionParameter`, :class:`DecompressionParameter`, and :class:`Strategy` classes for setting advanced (de)compression parameters." msgstr "" -#: ../../includes/optional-module.rst:1 -msgid "" -"This is an :term:`optional module`. If it is missing from your copy of " -"CPython, look for documentation from your distributor (that is, whoever " -"provided Python to you). If you are the distributor, see :ref:`optional-" -"module-requirements`." +msgid "This is an :term:`optional module`. If it is missing from your copy of CPython, look for documentation from your distributor (that is, whoever provided Python to you). If you are the distributor, see :ref:`optional-module-requirements`." msgstr "" -#: ../../library/compression.zstd.rst:40 msgid "Exceptions" msgstr "" -#: ../../library/compression.zstd.rst:44 -msgid "" -"This exception is raised when an error occurs during compression or " -"decompression, or while initializing the (de)compressor state." +msgid "This exception is raised when an error occurs during compression or decompression, or while initializing the (de)compressor state." msgstr "" -#: ../../library/compression.zstd.rst:49 msgid "Reading and writing compressed files" msgstr "" -#: ../../library/compression.zstd.rst:54 -msgid "" -"Open a Zstandard-compressed file in binary or text mode, returning " -"a :term:`file object`." +msgid "Open a Zstandard-compressed file in binary or text mode, returning a :term:`file object`." msgstr "" -#: ../../library/compression.zstd.rst:57 -msgid "" -"The *file* argument can be either a file name (given as " -"a :class:`str`, :class:`bytes` or :term:`path-like ` " -"object), in which case the named file is opened, or it can be an existing " -"file object to read from or write to." +msgid "The *file* argument can be either a file name (given as a :class:`str`, :class:`bytes` or :term:`path-like ` object), in which case the named file is opened, or it can be an existing file object to read from or write to." msgstr "" -#: ../../library/compression.zstd.rst:62 -msgid "" -"The mode argument can be either ``'rb'`` for reading (default), ``'wb'`` for " -"overwriting, ``'ab'`` for appending, or ``'xb'`` for exclusive creation. " -"These can equivalently be given as ``'r'``, ``'w'``, ``'a'``, and ``'x'`` " -"respectively. You may also open in text mode with ``'rt'``, ``'wt'``, " -"``'at'``, and ``'xt'`` respectively." +msgid "The mode argument can be either ``'rb'`` for reading (default), ``'wb'`` for overwriting, ``'ab'`` for appending, or ``'xb'`` for exclusive creation. These can equivalently be given as ``'r'``, ``'w'``, ``'a'``, and ``'x'`` respectively. You may also open in text mode with ``'rt'``, ``'wt'``, ``'at'``, and ``'xt'`` respectively." msgstr "" -#: ../../library/compression.zstd.rst:68 ../../library/compression.zstd.rst:112 -msgid "" -"When reading, the *options* argument can be a dictionary providing advanced " -"decompression parameters; see :class:`DecompressionParameter` for detailed " -"information about supported parameters. The *zstd_dict* argument is " -"a :class:`ZstdDict` instance to be used during decompression. When reading, " -"if the *level* argument is not None, a :exc:`!TypeError` will be raised." +msgid "When reading, the *options* argument can be a dictionary providing advanced decompression parameters; see :class:`DecompressionParameter` for detailed information about supported parameters. The *zstd_dict* argument is a :class:`ZstdDict` instance to be used during decompression. When reading, if the *level* argument is not None, a :exc:`!TypeError` will be raised." msgstr "" -#: ../../library/compression.zstd.rst:75 -msgid "" -"When writing, the *options* argument can be a dictionary providing advanced " -"compression parameters; see :class:`CompressionParameter` for detailed " -"information about supported parameters. The *level* argument is the " -"compression level to use when writing compressed data. Only one of *level* " -"or *options* may be non-None. The *zstd_dict* argument is " -"a :class:`ZstdDict` instance to be used during compression." +msgid "When writing, the *options* argument can be a dictionary providing advanced compression parameters; see :class:`CompressionParameter` for detailed information about supported parameters. The *level* argument is the compression level to use when writing compressed data. Only one of *level* or *options* may be non-None. The *zstd_dict* argument is a :class:`ZstdDict` instance to be used during compression." msgstr "" -#: ../../library/compression.zstd.rst:83 -msgid "" -"In binary mode, this function is equivalent to the :class:`ZstdFile` " -"constructor: ``ZstdFile(file, mode, ...)``. In this case, the *encoding*, " -"*errors*, and *newline* parameters must not be provided." +msgid "In binary mode, this function is equivalent to the :class:`ZstdFile` constructor: ``ZstdFile(file, mode, ...)``. In this case, the *encoding*, *errors*, and *newline* parameters must not be provided." msgstr "" -#: ../../library/compression.zstd.rst:87 -msgid "" -"In text mode, a :class:`ZstdFile` object is created, and wrapped in " -"an :class:`io.TextIOWrapper` instance with the specified encoding, error " -"handling behavior, and line endings." +msgid "In text mode, a :class:`ZstdFile` object is created, and wrapped in an :class:`io.TextIOWrapper` instance with the specified encoding, error handling behavior, and line endings." msgstr "" -#: ../../library/compression.zstd.rst:95 msgid "Open a Zstandard-compressed file in binary mode." msgstr "" -#: ../../library/compression.zstd.rst:97 -msgid "" -"A :class:`ZstdFile` can wrap an already-open :term:`file object`, or operate " -"directly on a named file. The *file* argument specifies either the file " -"object to wrap, or the name of the file to open (as " -"a :class:`str`, :class:`bytes` or :term:`path-like ` " -"object). If wrapping an existing file object, the wrapped file will not be " -"closed when the :class:`ZstdFile` is closed." +msgid "A :class:`ZstdFile` can wrap an already-open :term:`file object`, or operate directly on a named file. The *file* argument specifies either the file object to wrap, or the name of the file to open (as a :class:`str`, :class:`bytes` or :term:`path-like ` object). If wrapping an existing file object, the wrapped file will not be closed when the :class:`ZstdFile` is closed." msgstr "" -#: ../../library/compression.zstd.rst:104 -msgid "" -"The *mode* argument can be either ``'rb'`` for reading (default), ``'wb'`` " -"for overwriting, ``'xb'`` for exclusive creation, or ``'ab'`` for appending. " -"These can equivalently be given as ``'r'``, ``'w'``, ``'x'`` and ``'a'`` " -"respectively." +msgid "The *mode* argument can be either ``'rb'`` for reading (default), ``'wb'`` for overwriting, ``'xb'`` for exclusive creation, or ``'ab'`` for appending. These can equivalently be given as ``'r'``, ``'w'``, ``'x'`` and ``'a'`` respectively." msgstr "" -#: ../../library/compression.zstd.rst:109 -msgid "" -"If *file* is a file object (rather than an actual file name), a mode of " -"``'w'`` does not truncate the file, and is instead equivalent to ``'a'``." +msgid "If *file* is a file object (rather than an actual file name), a mode of ``'w'`` does not truncate the file, and is instead equivalent to ``'a'``." msgstr "" -#: ../../library/compression.zstd.rst:119 -msgid "" -"When writing, the *options* argument can be a dictionary providing advanced " -"compression parameters; see :class:`CompressionParameter` for detailed " -"information about supported parameters. The *level* argument is the " -"compression level to use when writing compressed data. Only one of *level* " -"or *options* may be passed. The *zstd_dict* argument is a :class:`ZstdDict` " -"instance to be used during compression." +msgid "When writing, the *options* argument can be a dictionary providing advanced compression parameters; see :class:`CompressionParameter` for detailed information about supported parameters. The *level* argument is the compression level to use when writing compressed data. Only one of *level* or *options* may be passed. The *zstd_dict* argument is a :class:`ZstdDict` instance to be used during compression." msgstr "" -#: ../../library/compression.zstd.rst:127 -msgid "" -":class:`!ZstdFile` supports all the members specified " -"by :class:`io.BufferedIOBase`, except for :meth:`~io.BufferedIOBase.detach` " -"and :meth:`~io.IOBase.truncate`. Iteration and the :keyword:`with` statement " -"are supported." +msgid ":class:`!ZstdFile` supports all the members specified by :class:`io.BufferedIOBase`, except for :meth:`~io.BufferedIOBase.detach` and :meth:`~io.IOBase.truncate`. Iteration and the :keyword:`with` statement are supported." msgstr "" -#: ../../library/compression.zstd.rst:132 msgid "The following method and attributes are also provided:" msgstr "" -#: ../../library/compression.zstd.rst:136 -msgid "" -"Return buffered data without advancing the file position. At least one byte " -"of data will be returned, unless EOF has been reached. The exact number of " -"bytes returned is unspecified (the *size* argument is ignored)." +msgid "Return buffered data without advancing the file position. At least one byte of data will be returned, unless EOF has been reached. The exact number of bytes returned is unspecified (the *size* argument is ignored)." msgstr "" -#: ../../library/compression.zstd.rst:140 -msgid "" -"While calling :meth:`peek` does not change the file position of " -"the :class:`ZstdFile`, it may change the position of the underlying file " -"object (for example, if the :class:`ZstdFile` was constructed by passing a " -"file object for *file*)." +msgid "While calling :meth:`peek` does not change the file position of the :class:`ZstdFile`, it may change the position of the underlying file object (for example, if the :class:`ZstdFile` was constructed by passing a file object for *file*)." msgstr "" -#: ../../library/compression.zstd.rst:147 msgid "``'rb'`` for reading and ``'wb'`` for writing." msgstr "" -#: ../../library/compression.zstd.rst:151 -msgid "" -"The name of the Zstandard file. Equivalent to the :attr:`~io.FileIO.name` " -"attribute of the underlying :term:`file object`." +msgid "The name of the Zstandard file. Equivalent to the :attr:`~io.FileIO.name` attribute of the underlying :term:`file object`." msgstr "" -#: ../../library/compression.zstd.rst:156 msgid "Compressing and decompressing data in memory" msgstr "" -#: ../../library/compression.zstd.rst:160 -msgid "" -"Compress *data* (a :term:`bytes-like object`), returning the compressed data " -"as a :class:`bytes` object." +msgid "Compress *data* (a :term:`bytes-like object`), returning the compressed data as a :class:`bytes` object." msgstr "" -#: ../../library/compression.zstd.rst:163 -#: ../../library/compression.zstd.rst:207 -msgid "" -"The *level* argument is an integer controlling the level of compression. " -"*level* is an alternative to " -"setting :attr:`CompressionParameter.compression_level` in *options*. " -"Use :meth:`~CompressionParameter.bounds` " -"on :attr:`~CompressionParameter.compression_level` to get the values that " -"can be passed for *level*. If advanced compression options are needed, the " -"*level* argument must be omitted and in the *options* dictionary the :attr:`!" -"CompressionParameter.compression_level` parameter should be set." -msgstr "" - -#: ../../library/compression.zstd.rst:172 -#: ../../library/compression.zstd.rst:216 -msgid "" -"The *options* argument is a Python dictionary containing advanced " -"compression parameters. The valid keys and values for compression parameters " -"are documented as part of the :class:`CompressionParameter` documentation." +msgid "The *level* argument is an integer controlling the level of compression. *level* is an alternative to setting :attr:`CompressionParameter.compression_level` in *options*. Use :meth:`~CompressionParameter.bounds` on :attr:`~CompressionParameter.compression_level` to get the values that can be passed for *level*. If advanced compression options are needed, the *level* argument must be omitted and in the *options* dictionary the :attr:`!CompressionParameter.compression_level` parameter should be set." msgstr "" -#: ../../library/compression.zstd.rst:176 -msgid "" -"The *zstd_dict* argument is an instance of :class:`ZstdDict` containing " -"trained data to improve compression efficiency. The " -"function :func:`train_dict` can be used to generate a Zstandard dictionary." +msgid "The *options* argument is a Python dictionary containing advanced compression parameters. The valid keys and values for compression parameters are documented as part of the :class:`CompressionParameter` documentation." msgstr "" -#: ../../library/compression.zstd.rst:183 -msgid "" -"Decompress *data* (a :term:`bytes-like object`), returning the uncompressed " -"data as a :class:`bytes` object." +msgid "The *zstd_dict* argument is an instance of :class:`ZstdDict` containing trained data to improve compression efficiency. The function :func:`train_dict` can be used to generate a Zstandard dictionary." msgstr "" -#: ../../library/compression.zstd.rst:186 -#: ../../library/compression.zstd.rst:308 -msgid "" -"The *options* argument is a Python dictionary containing advanced " -"decompression parameters. The valid keys and values for compression " -"parameters are documented as part of the :class:`DecompressionParameter` " -"documentation." +msgid "Decompress *data* (a :term:`bytes-like object`), returning the uncompressed data as a :class:`bytes` object." msgstr "" -#: ../../library/compression.zstd.rst:191 -#: ../../library/compression.zstd.rst:313 -msgid "" -"The *zstd_dict* argument is an instance of :class:`ZstdDict` containing " -"trained data used during compression. This must be the same Zstandard " -"dictionary used during compression." +msgid "The *options* argument is a Python dictionary containing advanced decompression parameters. The valid keys and values for compression parameters are documented as part of the :class:`DecompressionParameter` documentation." msgstr "" -#: ../../library/compression.zstd.rst:195 -msgid "" -"If *data* is the concatenation of multiple distinct compressed frames, " -"decompress all of these frames, and return the concatenation of the results." +msgid "The *zstd_dict* argument is an instance of :class:`ZstdDict` containing trained data used during compression. This must be the same Zstandard dictionary used during compression." msgstr "" -#: ../../library/compression.zstd.rst:201 -msgid "" -"Create a compressor object, which can be used to compress data incrementally." +msgid "If *data* is the concatenation of multiple distinct compressed frames, decompress all of these frames, and return the concatenation of the results." msgstr "" -#: ../../library/compression.zstd.rst:204 -msgid "" -"For a more convenient way of compressing a single chunk of data, see the " -"module-level function :func:`compress`." +msgid "Create a compressor object, which can be used to compress data incrementally." msgstr "" -#: ../../library/compression.zstd.rst:220 -msgid "" -"The *zstd_dict* argument is an optional instance of :class:`ZstdDict` " -"containing trained data to improve compression efficiency. The " -"function :func:`train_dict` can be used to generate a Zstandard dictionary." +msgid "For a more convenient way of compressing a single chunk of data, see the module-level function :func:`compress`." msgstr "" -#: ../../library/compression.zstd.rst:227 -msgid "" -"Compress *data* (a :term:`bytes-like object`), returning a :class:`bytes` " -"object with compressed data if possible, or otherwise an empty :class:`!" -"bytes` object. Some of *data* may be buffered internally, for use in later " -"calls to :meth:`!compress` and :meth:`~.flush`. The returned data should be " -"concatenated with the output of any previous calls to :meth:`~.compress`." +msgid "The *zstd_dict* argument is an optional instance of :class:`ZstdDict` containing trained data to improve compression efficiency. The function :func:`train_dict` can be used to generate a Zstandard dictionary." msgstr "" -#: ../../library/compression.zstd.rst:234 -msgid "" -"The *mode* argument is a :class:`ZstdCompressor` attribute, " -"either :attr:`~.CONTINUE`, :attr:`~.FLUSH_BLOCK`, or :attr:`~.FLUSH_FRAME`." +msgid "Compress *data* (a :term:`bytes-like object`), returning a :class:`bytes` object with compressed data if possible, or otherwise an empty :class:`!bytes` object. Some of *data* may be buffered internally, for use in later calls to :meth:`!compress` and :meth:`~.flush`. The returned data should be concatenated with the output of any previous calls to :meth:`~.compress`." msgstr "" -#: ../../library/compression.zstd.rst:238 -msgid "" -"When all data has been provided to the compressor, call the :meth:`~.flush` " -"method to finish the compression process. If :meth:`~.compress` is called " -"with *mode* set to :attr:`~.FLUSH_FRAME`, :meth:`~.flush` should not be " -"called, as it would write out a new empty frame." +msgid "The *mode* argument is a :class:`ZstdCompressor` attribute, either :attr:`~.CONTINUE`, :attr:`~.FLUSH_BLOCK`, or :attr:`~.FLUSH_FRAME`." msgstr "" -#: ../../library/compression.zstd.rst:246 -msgid "" -"Finish the compression process, returning a :class:`bytes` object containing " -"any data stored in the compressor's internal buffers." +msgid "When all data has been provided to the compressor, call the :meth:`~.flush` method to finish the compression process. If :meth:`~.compress` is called with *mode* set to :attr:`~.FLUSH_FRAME`, :meth:`~.flush` should not be called, as it would write out a new empty frame." msgstr "" -#: ../../library/compression.zstd.rst:249 -msgid "" -"The *mode* argument is a :class:`ZstdCompressor` attribute, " -"either :attr:`~.FLUSH_BLOCK`, or :attr:`~.FLUSH_FRAME`." +msgid "Finish the compression process, returning a :class:`bytes` object containing any data stored in the compressor's internal buffers." msgstr "" -#: ../../library/compression.zstd.rst:254 -msgid "" -"Specify the amount of uncompressed data *size* that will be provided for the " -"next frame. *size* will be written into the frame header of the next frame " -"unless :attr:`CompressionParameter.content_size_flag` is ``False`` or ``0``. " -"A size of ``0`` means that the frame is empty. If *size* is ``None``, the " -"frame header will omit the frame size. Frames that include the uncompressed " -"data size require less memory to decompress, especially at higher " -"compression levels." +msgid "The *mode* argument is a :class:`ZstdCompressor` attribute, either :attr:`~.FLUSH_BLOCK`, or :attr:`~.FLUSH_FRAME`." msgstr "" -#: ../../library/compression.zstd.rst:262 -msgid "" -"If :attr:`last_mode` is not :attr:`FLUSH_FRAME`, a :exc:`ValueError` is " -"raised as the compressor is not at the start of a frame. If the pledged size " -"does not match the actual size of data provided to :meth:`.compress`, future " -"calls to :meth:`!compress` or :meth:`flush` may raise :exc:`ZstdError` and " -"the last chunk of data may be lost." +msgid "Specify the amount of uncompressed data *size* that will be provided for the next frame. *size* will be written into the frame header of the next frame unless :attr:`CompressionParameter.content_size_flag` is ``False`` or ``0``. A size of ``0`` means that the frame is empty. If *size* is ``None``, the frame header will omit the frame size. Frames that include the uncompressed data size require less memory to decompress, especially at higher compression levels." msgstr "" -#: ../../library/compression.zstd.rst:269 -msgid "" -"After :meth:`flush` or :meth:`.compress` are called with " -"mode :attr:`FLUSH_FRAME`, the next frame will not include the frame size " -"into the header unless :meth:`!set_pledged_input_size` is called again." +msgid "If :attr:`last_mode` is not :attr:`FLUSH_FRAME`, a :exc:`ValueError` is raised as the compressor is not at the start of a frame. If the pledged size does not match the actual size of data provided to :meth:`.compress`, future calls to :meth:`!compress` or :meth:`flush` may raise :exc:`ZstdError` and the last chunk of data may be lost." msgstr "" -#: ../../library/compression.zstd.rst:275 -msgid "" -"Collect more data for compression, which may or may not generate output " -"immediately. This mode optimizes the compression ratio by maximizing the " -"amount of data per block and frame." +msgid "After :meth:`flush` or :meth:`.compress` are called with mode :attr:`FLUSH_FRAME`, the next frame will not include the frame size into the header unless :meth:`!set_pledged_input_size` is called again." msgstr "" -#: ../../library/compression.zstd.rst:281 -msgid "" -"Complete and write a block to the data stream. The data returned so far can " -"be immediately decompressed. Past data can still be referenced in future " -"blocks generated by calls to :meth:`~.compress`, improving compression." +msgid "Collect more data for compression, which may or may not generate output immediately. This mode optimizes the compression ratio by maximizing the amount of data per block and frame." msgstr "" -#: ../../library/compression.zstd.rst:288 -msgid "" -"Complete and write out a frame. Future data provided to :meth:`~.compress` " -"will be written into a new frame and *cannot* reference past data." +msgid "Complete and write a block to the data stream. The data returned so far can be immediately decompressed. Past data can still be referenced in future blocks generated by calls to :meth:`~.compress`, improving compression." msgstr "" -#: ../../library/compression.zstd.rst:294 -msgid "" -"The last mode passed to either :meth:`~.compress` or :meth:`~.flush`. The " -"value can be one of :attr:`~.CONTINUE`, :attr:`~.FLUSH_BLOCK`, " -"or :attr:`~.FLUSH_FRAME`. The initial value is :attr:`~.FLUSH_FRAME`, " -"signifying that the compressor is at the start of a new frame." +msgid "Complete and write out a frame. Future data provided to :meth:`~.compress` will be written into a new frame and *cannot* reference past data." msgstr "" -#: ../../library/compression.zstd.rst:302 -msgid "" -"Create a decompressor object, which can be used to decompress data " -"incrementally." +msgid "The last mode passed to either :meth:`~.compress` or :meth:`~.flush`. The value can be one of :attr:`~.CONTINUE`, :attr:`~.FLUSH_BLOCK`, or :attr:`~.FLUSH_FRAME`. The initial value is :attr:`~.FLUSH_FRAME`, signifying that the compressor is at the start of a new frame." msgstr "" -#: ../../library/compression.zstd.rst:305 -msgid "" -"For a more convenient way of decompressing an entire compressed stream at " -"once, see the module-level function :func:`decompress`." +msgid "Create a decompressor object, which can be used to decompress data incrementally." msgstr "" -#: ../../library/compression.zstd.rst:318 -msgid "" -"This class does not transparently handle inputs containing multiple " -"compressed frames, unlike the :func:`decompress` function " -"and :class:`ZstdFile` class. To decompress a multi-frame input, you should " -"use :func:`decompress`, :class:`ZstdFile` if working with a :term:`file " -"object`, or multiple :class:`!ZstdDecompressor` instances." +msgid "For a more convenient way of decompressing an entire compressed stream at once, see the module-level function :func:`decompress`." msgstr "" -#: ../../library/compression.zstd.rst:326 -msgid "" -"Decompress *data* (a :term:`bytes-like object`), returning uncompressed data " -"as bytes. Some of *data* may be buffered internally, for use in later calls " -"to :meth:`!decompress`. The returned data should be concatenated with the " -"output of any previous calls to :meth:`!decompress`." +msgid "This class does not transparently handle inputs containing multiple compressed frames, unlike the :func:`decompress` function and :class:`ZstdFile` class. To decompress a multi-frame input, you should use :func:`decompress`, :class:`ZstdFile` if working with a :term:`file object`, or multiple :class:`!ZstdDecompressor` instances." msgstr "" -#: ../../library/compression.zstd.rst:332 -msgid "" -"If *max_length* is non-negative, the method returns at most *max_length* " -"bytes of decompressed data. If this limit is reached and further output can " -"be produced, the :attr:`~.needs_input` attribute will be set to ``False``. " -"In this case, the next call to :meth:`~.decompress` may provide *data* as " -"``b''`` to obtain more of the output." +msgid "Decompress *data* (a :term:`bytes-like object`), returning uncompressed data as bytes. Some of *data* may be buffered internally, for use in later calls to :meth:`!decompress`. The returned data should be concatenated with the output of any previous calls to :meth:`!decompress`." msgstr "" -#: ../../library/compression.zstd.rst:339 -msgid "" -"If all of the input data was decompressed and returned (either because this " -"was less than *max_length* bytes, or because *max_length* was negative), " -"the :attr:`~.needs_input` attribute will be set to ``True``." +msgid "If *max_length* is non-negative, the method returns at most *max_length* bytes of decompressed data. If this limit is reached and further output can be produced, the :attr:`~.needs_input` attribute will be set to ``False``. In this case, the next call to :meth:`~.decompress` may provide *data* as ``b''`` to obtain more of the output." msgstr "" -#: ../../library/compression.zstd.rst:344 -msgid "" -"Attempting to decompress data after the end of a frame will raise " -"a :exc:`ZstdError`. Any data found after the end of the frame is ignored and " -"saved in the :attr:`~.unused_data` attribute." +msgid "If all of the input data was decompressed and returned (either because this was less than *max_length* bytes, or because *max_length* was negative), the :attr:`~.needs_input` attribute will be set to ``True``." +msgstr "" + +msgid "Attempting to decompress data after the end of a frame will raise a :exc:`ZstdError`. Any data found after the end of the frame is ignored and saved in the :attr:`~.unused_data` attribute." msgstr "" -#: ../../library/compression.zstd.rst:350 msgid "``True`` if the end-of-stream marker has been reached." msgstr "" -#: ../../library/compression.zstd.rst:354 msgid "Data found after the end of the compressed stream." msgstr "" -#: ../../library/compression.zstd.rst:356 msgid "Before the end of the stream is reached, this will be ``b''``." msgstr "" -#: ../../library/compression.zstd.rst:360 -msgid "" -"``False`` if the :meth:`.decompress` method can provide more decompressed " -"data before requiring new compressed input." +msgid "``False`` if the :meth:`.decompress` method can provide more decompressed data before requiring new compressed input." msgstr "" -#: ../../library/compression.zstd.rst:365 msgid "Zstandard dictionaries" msgstr "" -#: ../../library/compression.zstd.rst:370 -msgid "" -"Train a Zstandard dictionary, returning a :class:`ZstdDict` instance. " -"Zstandard dictionaries enable more efficient compression of smaller sizes of " -"data, which is traditionally difficult to compress due to less repetition. " -"If you are compressing multiple similar groups of data (such as similar " -"files), Zstandard dictionaries can improve compression ratios and speed " -"significantly." +msgid "Train a Zstandard dictionary, returning a :class:`ZstdDict` instance. Zstandard dictionaries enable more efficient compression of smaller sizes of data, which is traditionally difficult to compress due to less repetition. If you are compressing multiple similar groups of data (such as similar files), Zstandard dictionaries can improve compression ratios and speed significantly." msgstr "" -#: ../../library/compression.zstd.rst:377 -msgid "" -"The *samples* argument (an iterable of :class:`bytes` objects), is the " -"population of samples used to train the Zstandard dictionary." +msgid "The *samples* argument (an iterable of :class:`bytes` objects), is the population of samples used to train the Zstandard dictionary." msgstr "" -#: ../../library/compression.zstd.rst:380 -msgid "" -"The *dict_size* argument, an integer, is the maximum size (in bytes) the " -"Zstandard dictionary should be. The Zstandard documentation suggests an " -"absolute maximum of no more than 100 KB, but the maximum can often be " -"smaller depending on the data. Larger dictionaries generally slow down " -"compression, but improve compression ratios. Smaller dictionaries lead to " -"faster compression, but reduce the compression ratio." +msgid "The *dict_size* argument, an integer, is the maximum size (in bytes) the Zstandard dictionary should be. The Zstandard documentation suggests an absolute maximum of no more than 100 KB, but the maximum can often be smaller depending on the data. Larger dictionaries generally slow down compression, but improve compression ratios. Smaller dictionaries lead to faster compression, but reduce the compression ratio." msgstr "" -#: ../../library/compression.zstd.rst:390 -msgid "" -"An advanced function for converting a \"raw content\" Zstandard dictionary " -"into a regular Zstandard dictionary. \"Raw content\" dictionaries are a " -"sequence of bytes that do not need to follow the structure of a normal " -"Zstandard dictionary." +msgid "An advanced function for converting a \"raw content\" Zstandard dictionary into a regular Zstandard dictionary. \"Raw content\" dictionaries are a sequence of bytes that do not need to follow the structure of a normal Zstandard dictionary." msgstr "" -#: ../../library/compression.zstd.rst:395 -msgid "" -"The *zstd_dict* argument is a :class:`ZstdDict` instance with " -"the :attr:`~ZstdDict.dict_content` containing the raw dictionary contents." +msgid "The *zstd_dict* argument is a :class:`ZstdDict` instance with the :attr:`~ZstdDict.dict_content` containing the raw dictionary contents." msgstr "" -#: ../../library/compression.zstd.rst:398 -msgid "" -"The *samples* argument (an iterable of :class:`bytes` objects), contains " -"sample data for generating the Zstandard dictionary." +msgid "The *samples* argument (an iterable of :class:`bytes` objects), contains sample data for generating the Zstandard dictionary." msgstr "" -#: ../../library/compression.zstd.rst:401 -msgid "" -"The *dict_size* argument, an integer, is the maximum size (in bytes) the " -"Zstandard dictionary should be. See :func:`train_dict` for suggestions on " -"the maximum dictionary size." +msgid "The *dict_size* argument, an integer, is the maximum size (in bytes) the Zstandard dictionary should be. See :func:`train_dict` for suggestions on the maximum dictionary size." msgstr "" -#: ../../library/compression.zstd.rst:405 -msgid "" -"The *level* argument (an integer) is the compression level expected to be " -"passed to the compressors using this dictionary. The dictionary information " -"varies for each compression level, so tuning for the proper compression " -"level can make compression more efficient." +msgid "The *level* argument (an integer) is the compression level expected to be passed to the compressors using this dictionary. The dictionary information varies for each compression level, so tuning for the proper compression level can make compression more efficient." msgstr "" -#: ../../library/compression.zstd.rst:413 -msgid "" -"A wrapper around Zstandard dictionaries. Dictionaries can be used to improve " -"the compression of many small chunks of data. Use :func:`train_dict` if you " -"need to train a new dictionary from sample data." +msgid "A wrapper around Zstandard dictionaries. Dictionaries can be used to improve the compression of many small chunks of data. Use :func:`train_dict` if you need to train a new dictionary from sample data." msgstr "" -#: ../../library/compression.zstd.rst:417 -msgid "" -"The *dict_content* argument (a :term:`bytes-like object`), is the already " -"trained dictionary information." +msgid "The *dict_content* argument (a :term:`bytes-like object`), is the already trained dictionary information." msgstr "" -#: ../../library/compression.zstd.rst:420 -msgid "" -"The *is_raw* argument, a boolean, is an advanced parameter controlling the " -"meaning of *dict_content*. ``True`` means *dict_content* is a \"raw " -"content\" dictionary, without any format restrictions. ``False`` means " -"*dict_content* is an ordinary Zstandard dictionary, created from Zstandard " -"functions, for example, :func:`train_dict` or the external :program:`zstd` " -"CLI." +msgid "The *is_raw* argument, a boolean, is an advanced parameter controlling the meaning of *dict_content*. ``True`` means *dict_content* is a \"raw content\" dictionary, without any format restrictions. ``False`` means *dict_content* is an ordinary Zstandard dictionary, created from Zstandard functions, for example, :func:`train_dict` or the external :program:`zstd` CLI." msgstr "" -#: ../../library/compression.zstd.rst:426 -msgid "" -"When passing a :class:`!ZstdDict` to a function, the :attr:`!" -"as_digested_dict` and :attr:`!as_undigested_dict` attributes can control how " -"the dictionary is loaded by passing them as the ``zstd_dict`` argument, for " -"example, ``compress(data, zstd_dict=zd.as_digested_dict)``. Digesting a " -"dictionary is a costly operation that occurs when loading a Zstandard " -"dictionary. When making multiple calls to compression or decompression, " -"passing a digested dictionary will reduce the overhead of loading the " -"dictionary." +msgid "When passing a :class:`!ZstdDict` to a function, the :attr:`!as_digested_dict` and :attr:`!as_undigested_dict` attributes can control how the dictionary is loaded by passing them as the ``zstd_dict`` argument, for example, ``compress(data, zstd_dict=zd.as_digested_dict)``. Digesting a dictionary is a costly operation that occurs when loading a Zstandard dictionary. When making multiple calls to compression or decompression, passing a digested dictionary will reduce the overhead of loading the dictionary." msgstr "" -#: ../../library/compression.zstd.rst:435 msgid "Difference for compression" msgstr "" -#: ../../library/compression.zstd.rst:440 msgid "Digested dictionary" msgstr "" -#: ../../library/compression.zstd.rst:441 msgid "Undigested dictionary" msgstr "" -#: ../../library/compression.zstd.rst:442 -msgid "" -"Advanced parameters of the compressor which may be overridden by the " -"dictionary's parameters" +msgid "Advanced parameters of the compressor which may be overridden by the dictionary's parameters" msgstr "" -#: ../../library/compression.zstd.rst:444 -msgid "" -"``window_log``, ``hash_log``, ``chain_log``, ``search_log``, ``min_match``, " -"``target_length``, ``strategy``, ``enable_long_distance_matching``, " -"``ldm_hash_log``, ``ldm_min_match``, ``ldm_bucket_size_log``, " -"``ldm_hash_rate_log``, and some non-public parameters." +msgid "``window_log``, ``hash_log``, ``chain_log``, ``search_log``, ``min_match``, ``target_length``, ``strategy``, ``enable_long_distance_matching``, ``ldm_hash_log``, ``ldm_min_match``, ``ldm_bucket_size_log``, ``ldm_hash_rate_log``, and some non-public parameters." msgstr "" -#: ../../library/compression.zstd.rst:449 msgid "None" msgstr "" -#: ../../library/compression.zstd.rst:450 msgid ":class:`!ZstdDict` internally caches the dictionary" msgstr "" -#: ../../library/compression.zstd.rst:451 -msgid "" -"Yes. It's faster when loading a digested dictionary again with the same " -"compression level." +msgid "Yes. It's faster when loading a digested dictionary again with the same compression level." msgstr "" -#: ../../library/compression.zstd.rst:453 -msgid "" -"No. If you wish to load an undigested dictionary multiple times, consider " -"reusing a compressor object." +msgid "No. If you wish to load an undigested dictionary multiple times, consider reusing a compressor object." msgstr "" -#: ../../library/compression.zstd.rst:456 -msgid "" -"If passing a :class:`!ZstdDict` without any attribute, an undigested " -"dictionary is passed by default when compressing and a digested dictionary " -"is generated if necessary and passed by default when decompressing." +msgid "If passing a :class:`!ZstdDict` without any attribute, an undigested dictionary is passed by default when compressing and a digested dictionary is generated if necessary and passed by default when decompressing." msgstr "" -#: ../../library/compression.zstd.rst:462 -msgid "" -"The content of the Zstandard dictionary, a ``bytes`` object. It's the same " -"as the *dict_content* argument in the ``__init__`` method. It can be used " -"with other programs, such as the ``zstd`` CLI program." +msgid "The content of the Zstandard dictionary, a ``bytes`` object. It's the same as the *dict_content* argument in the ``__init__`` method. It can be used with other programs, such as the ``zstd`` CLI program." msgstr "" -#: ../../library/compression.zstd.rst:468 msgid "Identifier of the Zstandard dictionary, a non-negative int value." msgstr "" -#: ../../library/compression.zstd.rst:470 -msgid "" -"Non-zero means the dictionary is ordinary, created by Zstandard functions " -"and following the Zstandard format." +msgid "Non-zero means the dictionary is ordinary, created by Zstandard functions and following the Zstandard format." msgstr "" -#: ../../library/compression.zstd.rst:473 -msgid "" -"``0`` means a \"raw content\" dictionary, free of any format restriction, " -"used for advanced users." +msgid "``0`` means a \"raw content\" dictionary, free of any format restriction, used for advanced users." msgstr "" -#: ../../library/compression.zstd.rst:478 -msgid "" -"The meaning of ``0`` for :attr:`!ZstdDict.dict_id` is different from the " -"``dictionary_id`` attribute to the :func:`get_frame_info` function." +msgid "The meaning of ``0`` for :attr:`!ZstdDict.dict_id` is different from the ``dictionary_id`` attribute to the :func:`get_frame_info` function." msgstr "" -#: ../../library/compression.zstd.rst:484 msgid "Load as a digested dictionary." msgstr "" -#: ../../library/compression.zstd.rst:488 msgid "Load as an undigested dictionary." msgstr "" -#: ../../library/compression.zstd.rst:492 msgid "Advanced parameter control" msgstr "" -#: ../../library/compression.zstd.rst:496 -msgid "" -"An :class:`~enum.IntEnum` containing the advanced compression parameter keys " -"that can be used when compressing data." +msgid "An :class:`~enum.IntEnum` containing the advanced compression parameter keys that can be used when compressing data." msgstr "" -#: ../../library/compression.zstd.rst:499 -#: ../../library/compression.zstd.rst:733 -msgid "" -"The :meth:`~.bounds` method can be used on any attribute to get the valid " -"values for that parameter." +msgid "The :meth:`~.bounds` method can be used on any attribute to get the valid values for that parameter." msgstr "" -#: ../../library/compression.zstd.rst:502 -msgid "" -"Parameters are optional; any omitted parameter will have its value selected " -"automatically." +msgid "Parameters are optional; any omitted parameter will have its value selected automatically." msgstr "" -#: ../../library/compression.zstd.rst:505 -msgid "" -"Example getting the lower and upper bound of :attr:`~.compression_level`::" +msgid "Example getting the lower and upper bound of :attr:`~.compression_level`::" msgstr "" -#: ../../library/compression.zstd.rst:507 msgid "lower, upper = CompressionParameter.compression_level.bounds()" msgstr "" -#: ../../library/compression.zstd.rst:509 msgid "Example setting the :attr:`~.window_log` to the maximum size::" msgstr "" -#: ../../library/compression.zstd.rst:511 msgid "" "_lower, upper = CompressionParameter.window_log.bounds()\n" "options = {CompressionParameter.window_log: upper}\n" "compress(b'venezuelan beaver cheese', options=options)" msgstr "" -#: ../../library/compression.zstd.rst:517 -msgid "" -"Return the tuple of int bounds, ``(lower, upper)``, of a compression " -"parameter. This method should be called on the attribute you wish to " -"retrieve the bounds of. For example, to get the valid values " -"for :attr:`~.compression_level`, one may check the result of " -"``CompressionParameter.compression_level.bounds()``." +msgid "Return the tuple of int bounds, ``(lower, upper)``, of a compression parameter. This method should be called on the attribute you wish to retrieve the bounds of. For example, to get the valid values for :attr:`~.compression_level`, one may check the result of ``CompressionParameter.compression_level.bounds()``." msgstr "" -#: ../../library/compression.zstd.rst:523 -#: ../../library/compression.zstd.rst:751 msgid "Both the lower and upper bounds are inclusive." msgstr "" -#: ../../library/compression.zstd.rst:527 -msgid "" -"A high-level means of setting other compression parameters that affect the " -"speed and ratio of compressing data." +msgid "A high-level means of setting other compression parameters that affect the speed and ratio of compressing data." msgstr "" -#: ../../library/compression.zstd.rst:530 -msgid "" -"Regular compression levels are greater than ``0``. Values greater than " -"``20`` are considered \"ultra\" compression and require more memory than " -"other levels. Negative values can be used to trade off faster compression " -"for worse compression ratios." +msgid "Regular compression levels are greater than ``0``. Values greater than ``20`` are considered \"ultra\" compression and require more memory than other levels. Negative values can be used to trade off faster compression for worse compression ratios." msgstr "" -#: ../../library/compression.zstd.rst:535 msgid "Setting the level to zero uses :attr:`COMPRESSION_LEVEL_DEFAULT`." msgstr "" -#: ../../library/compression.zstd.rst:539 -msgid "" -"Maximum allowed back-reference distance the compressor can use when " -"compressing data, expressed as power of two, ``1 << window_log`` bytes. This " -"parameter greatly influences the memory usage of compression. Higher values " -"require more memory but gain better compression values." -msgstr "" - -#: ../../library/compression.zstd.rst:544 -#: ../../library/compression.zstd.rst:553 -#: ../../library/compression.zstd.rst:564 -#: ../../library/compression.zstd.rst:572 -#: ../../library/compression.zstd.rst:583 -#: ../../library/compression.zstd.rst:598 -#: ../../library/compression.zstd.rst:629 -#: ../../library/compression.zstd.rst:636 -#: ../../library/compression.zstd.rst:644 -#: ../../library/compression.zstd.rst:652 -#: ../../library/compression.zstd.rst:711 -#: ../../library/compression.zstd.rst:760 +msgid "Maximum allowed back-reference distance the compressor can use when compressing data, expressed as power of two, ``1 << window_log`` bytes. This parameter greatly influences the memory usage of compression. Higher values require more memory but gain better compression values." +msgstr "" + msgid "A value of zero causes the value to be selected automatically." msgstr "" -#: ../../library/compression.zstd.rst:548 -msgid "" -"Size of the initial probe table, as a power of two. The resulting memory " -"usage is ``1 << (hash_log+2)`` bytes. Larger tables improve compression " -"ratio of strategies <= :attr:`~Strategy.dfast`, and improve compression " -"speed of strategies > :attr:`~Strategy.dfast`." +msgid "Size of the initial probe table, as a power of two. The resulting memory usage is ``1 << (hash_log+2)`` bytes. Larger tables improve compression ratio of strategies <= :attr:`~Strategy.dfast`, and improve compression speed of strategies > :attr:`~Strategy.dfast`." msgstr "" -#: ../../library/compression.zstd.rst:557 -msgid "" -"Size of the multi-probe search table, as a power of two. The resulting " -"memory usage is ``1 << (chain_log+2)`` bytes. Larger tables result in better " -"and slower compression. This parameter has no effect for " -"the :attr:`~Strategy.fast` strategy. It's still useful when " -"using :attr:`~Strategy.dfast` strategy, in which case it defines a secondary " -"probe table." +msgid "Size of the multi-probe search table, as a power of two. The resulting memory usage is ``1 << (chain_log+2)`` bytes. Larger tables result in better and slower compression. This parameter has no effect for the :attr:`~Strategy.fast` strategy. It's still useful when using :attr:`~Strategy.dfast` strategy, in which case it defines a secondary probe table." msgstr "" -#: ../../library/compression.zstd.rst:568 -msgid "" -"Number of search attempts, as a power of two. More attempts result in better " -"and slower compression. This parameter is useless for :attr:`~Strategy.fast` " -"and :attr:`~Strategy.dfast` strategies." +msgid "Number of search attempts, as a power of two. More attempts result in better and slower compression. This parameter is useless for :attr:`~Strategy.fast` and :attr:`~Strategy.dfast` strategies." msgstr "" -#: ../../library/compression.zstd.rst:576 -msgid "" -"Minimum size of searched matches. Larger values increase compression and " -"decompression speed, but decrease ratio. Note that Zstandard can still find " -"matches of smaller size, it just tweaks its search algorithm to look for " -"this size and larger. For all strategies < :attr:`~Strategy.btopt`, the " -"effective minimum is ``4``; for all strategies > :attr:`~Strategy.fast`, the " -"effective maximum is ``6``." +msgid "Minimum size of searched matches. Larger values increase compression and decompression speed, but decrease ratio. Note that Zstandard can still find matches of smaller size, it just tweaks its search algorithm to look for this size and larger. For all strategies < :attr:`~Strategy.btopt`, the effective minimum is ``4``; for all strategies > :attr:`~Strategy.fast`, the effective maximum is ``6``." msgstr "" -#: ../../library/compression.zstd.rst:587 msgid "The impact of this field depends on the selected :class:`Strategy`." msgstr "" -#: ../../library/compression.zstd.rst:589 -msgid "" -"For strategies :attr:`~Strategy.btopt`, :attr:`~Strategy.btultra` " -"and :attr:`~Strategy.btultra2`, the value is the length of a match " -"considered \"good enough\" to stop searching. Larger values make compression " -"ratios better, but compresses slower." +msgid "For strategies :attr:`~Strategy.btopt`, :attr:`~Strategy.btultra` and :attr:`~Strategy.btultra2`, the value is the length of a match considered \"good enough\" to stop searching. Larger values make compression ratios better, but compresses slower." msgstr "" -#: ../../library/compression.zstd.rst:594 -msgid "" -"For strategy :attr:`~Strategy.fast`, it is the distance between match " -"sampling. Larger values make compression faster, but with a worse " -"compression ratio." +msgid "For strategy :attr:`~Strategy.fast`, it is the distance between match sampling. Larger values make compression faster, but with a worse compression ratio." msgstr "" -#: ../../library/compression.zstd.rst:602 -msgid "" -"The higher the value of selected strategy, the more complex the compression " -"technique used by zstd, resulting in higher compression ratios but slower " -"compression." +msgid "The higher the value of selected strategy, the more complex the compression technique used by zstd, resulting in higher compression ratios but slower compression." msgstr "" -#: ../../library/compression.zstd.rst:606 msgid ":class:`Strategy`" msgstr "" -#: ../../library/compression.zstd.rst:610 -msgid "" -"Long distance matching can be used to improve compression for large inputs " -"by finding large matches at greater distances. It increases memory usage and " -"window size." +msgid "Long distance matching can be used to improve compression for large inputs by finding large matches at greater distances. It increases memory usage and window size." msgstr "" -#: ../../library/compression.zstd.rst:614 -msgid "" -"``True`` or ``1`` enable long distance matching while ``False`` or ``0`` " -"disable it." +msgid "``True`` or ``1`` enable long distance matching while ``False`` or ``0`` disable it." msgstr "" -#: ../../library/compression.zstd.rst:617 -msgid "" -"Enabling this parameter increases " -"default :attr:`~CompressionParameter.window_log` to 128 MiB except when " -"expressly set to a different value. This setting is enabled by default " -"if :attr:`!window_log` >= 128 MiB and the compression strategy " -">= :attr:`~Strategy.btopt` (compression level 16+)." +msgid "Enabling this parameter increases default :attr:`~CompressionParameter.window_log` to 128 MiB except when expressly set to a different value. This setting is enabled by default if :attr:`!window_log` >= 128 MiB and the compression strategy >= :attr:`~Strategy.btopt` (compression level 16+)." msgstr "" -#: ../../library/compression.zstd.rst:625 -msgid "" -"Size of the table for long distance matching, as a power of two. Larger " -"values increase memory usage and compression ratio, but decrease compression " -"speed." +msgid "Size of the table for long distance matching, as a power of two. Larger values increase memory usage and compression ratio, but decrease compression speed." msgstr "" -#: ../../library/compression.zstd.rst:633 -msgid "" -"Minimum match size for long distance matcher. Larger or too small values can " -"often decrease the compression ratio." +msgid "Minimum match size for long distance matcher. Larger or too small values can often decrease the compression ratio." msgstr "" -#: ../../library/compression.zstd.rst:640 -msgid "" -"Log size of each bucket in the long distance matcher hash table for " -"collision resolution. Larger values improve collision resolution but " -"decrease compression speed." +msgid "Log size of each bucket in the long distance matcher hash table for collision resolution. Larger values improve collision resolution but decrease compression speed." msgstr "" -#: ../../library/compression.zstd.rst:648 -msgid "" -"Frequency of inserting/looking up entries into the long distance matcher " -"hash table. Larger values improve compression speed. Deviating far from the " -"default value will likely result in a compression ratio decrease." +msgid "Frequency of inserting/looking up entries into the long distance matcher hash table. Larger values improve compression speed. Deviating far from the default value will likely result in a compression ratio decrease." msgstr "" -#: ../../library/compression.zstd.rst:656 -msgid "" -"Write the size of the data to be compressed into the Zstandard frame header " -"when known prior to compressing." +msgid "Write the size of the data to be compressed into the Zstandard frame header when known prior to compressing." msgstr "" -#: ../../library/compression.zstd.rst:659 msgid "This flag only takes effect under the following scenarios:" msgstr "" -#: ../../library/compression.zstd.rst:661 msgid "Calling :func:`compress` for one-shot compression" msgstr "" -#: ../../library/compression.zstd.rst:662 -msgid "" -"Providing all of the data to be compressed in the frame in a " -"single :meth:`ZstdCompressor.compress` call, with " -"the :attr:`ZstdCompressor.FLUSH_FRAME` mode." +msgid "Providing all of the data to be compressed in the frame in a single :meth:`ZstdCompressor.compress` call, with the :attr:`ZstdCompressor.FLUSH_FRAME` mode." msgstr "" -#: ../../library/compression.zstd.rst:665 -msgid "" -"Calling :meth:`ZstdCompressor.set_pledged_input_size` with the exact amount " -"of data that will be provided to the compressor prior to any calls " -"to :meth:`ZstdCompressor.compress` for the current frame. :meth:`!" -"ZstdCompressor.set_pledged_input_size` must be called for each new frame." +msgid "Calling :meth:`ZstdCompressor.set_pledged_input_size` with the exact amount of data that will be provided to the compressor prior to any calls to :meth:`ZstdCompressor.compress` for the current frame. :meth:`!ZstdCompressor.set_pledged_input_size` must be called for each new frame." msgstr "" -#: ../../library/compression.zstd.rst:671 -msgid "" -"All other compression calls may not write the size information into the " -"frame header." +msgid "All other compression calls may not write the size information into the frame header." msgstr "" -#: ../../library/compression.zstd.rst:674 -msgid "" -"``True`` or ``1`` enable the content size flag while ``False`` or ``0`` " -"disable it." +msgid "``True`` or ``1`` enable the content size flag while ``False`` or ``0`` disable it." msgstr "" -#: ../../library/compression.zstd.rst:679 -msgid "" -"A four-byte checksum using XXHash64 of the uncompressed content is written " -"at the end of each frame. Zstandard's decompression code verifies the " -"checksum. If there is a mismatch a :class:`ZstdError` exception is raised." +msgid "A four-byte checksum using XXHash64 of the uncompressed content is written at the end of each frame. Zstandard's decompression code verifies the checksum. If there is a mismatch a :class:`ZstdError` exception is raised." msgstr "" -#: ../../library/compression.zstd.rst:684 -msgid "" -"``True`` or ``1`` enable checksum generation while ``False`` or ``0`` " -"disable it." +msgid "``True`` or ``1`` enable checksum generation while ``False`` or ``0`` disable it." msgstr "" -#: ../../library/compression.zstd.rst:689 -msgid "" -"When compressing with a :class:`ZstdDict`, the dictionary's ID is written " -"into the frame header." +msgid "When compressing with a :class:`ZstdDict`, the dictionary's ID is written into the frame header." msgstr "" -#: ../../library/compression.zstd.rst:692 -msgid "" -"``True`` or ``1`` enable storing the dictionary ID while ``False`` or ``0`` " -"disable it." +msgid "``True`` or ``1`` enable storing the dictionary ID while ``False`` or ``0`` disable it." msgstr "" -#: ../../library/compression.zstd.rst:697 -msgid "" -"Select how many threads will be spawned to compress in parallel. " -"When :attr:`!nb_workers` > 0, enables multi-threaded compression, a value of " -"``1`` means \"one-thread multi-threaded mode\". More workers improve speed, " -"but also increase memory usage and slightly reduce compression ratio." +msgid "Select how many threads will be spawned to compress in parallel. When :attr:`!nb_workers` > 0, enables multi-threaded compression, a value of ``1`` means \"one-thread multi-threaded mode\". More workers improve speed, but also increase memory usage and slightly reduce compression ratio." msgstr "" -#: ../../library/compression.zstd.rst:702 msgid "A value of zero disables multi-threading." msgstr "" -#: ../../library/compression.zstd.rst:706 -msgid "" -"Size of a compression job, in bytes. This value is enforced only " -"when :attr:`~CompressionParameter.nb_workers` >= 1. Each compression job is " -"completed in parallel, so this value can indirectly impact the number of " -"active threads." +msgid "Size of a compression job, in bytes. This value is enforced only when :attr:`~CompressionParameter.nb_workers` >= 1. Each compression job is completed in parallel, so this value can indirectly impact the number of active threads." msgstr "" -#: ../../library/compression.zstd.rst:715 -msgid "" -"Sets how much data is reloaded from previous jobs (threads) for new jobs to " -"be used by the look behind window during compression. This value is only " -"used when :attr:`~CompressionParameter.nb_workers` >= 1. Acceptable values " -"vary from 0 to 9." +msgid "Sets how much data is reloaded from previous jobs (threads) for new jobs to be used by the look behind window during compression. This value is only used when :attr:`~CompressionParameter.nb_workers` >= 1. Acceptable values vary from 0 to 9." msgstr "" -#: ../../library/compression.zstd.rst:720 msgid "0 means dynamically set the overlap amount" msgstr "" -#: ../../library/compression.zstd.rst:721 msgid "1 means no overlap" msgstr "" -#: ../../library/compression.zstd.rst:722 msgid "9 means use a full window size from the previous job" msgstr "" -#: ../../library/compression.zstd.rst:724 -msgid "" -"Each increment halves/doubles the overlap size. \"8\" means an overlap of " -"``window_size/2``, \"7\" means an overlap of ``window_size/4``, etc." +msgid "Each increment halves/doubles the overlap size. \"8\" means an overlap of ``window_size/2``, \"7\" means an overlap of ``window_size/4``, etc." msgstr "" -#: ../../library/compression.zstd.rst:729 -msgid "" -"An :class:`~enum.IntEnum` containing the advanced decompression parameter " -"keys that can be used when decompressing data. Parameters are optional; any " -"omitted parameter will have its value selected automatically." +msgid "An :class:`~enum.IntEnum` containing the advanced decompression parameter keys that can be used when decompressing data. Parameters are optional; any omitted parameter will have its value selected automatically." msgstr "" -#: ../../library/compression.zstd.rst:736 msgid "Example setting the :attr:`~.window_log_max` to the maximum size::" msgstr "" -#: ../../library/compression.zstd.rst:738 msgid "" "data = compress(b'Some very long buffer of bytes...')\n" "\n" @@ -1008,83 +475,48 @@ msgid "" "decompress(data, options=options)" msgstr "" -#: ../../library/compression.zstd.rst:747 -msgid "" -"Return the tuple of int bounds, ``(lower, upper)``, of a decompression " -"parameter. This method should be called on the attribute you wish to " -"retrieve the bounds of." +msgid "Return the tuple of int bounds, ``(lower, upper)``, of a decompression parameter. This method should be called on the attribute you wish to retrieve the bounds of." msgstr "" -#: ../../library/compression.zstd.rst:755 -msgid "" -"The base-two logarithm of the maximum size of the window used during " -"decompression. This can be useful to limit the amount of memory used when " -"decompressing data. A larger maximum window size leads to faster " -"decompression." +msgid "The base-two logarithm of the maximum size of the window used during decompression. This can be useful to limit the amount of memory used when decompressing data. A larger maximum window size leads to faster decompression." msgstr "" -#: ../../library/compression.zstd.rst:765 -msgid "" -"An :class:`~enum.IntEnum` containing strategies for compression. Higher-" -"numbered strategies correspond to more complex and slower compression." +msgid "An :class:`~enum.IntEnum` containing strategies for compression. Higher-numbered strategies correspond to more complex and slower compression." msgstr "" -#: ../../library/compression.zstd.rst:771 -msgid "" -"The values of attributes of :class:`!Strategy` are not necessarily stable " -"across zstd versions. Only the ordering of the attributes may be relied " -"upon. The attributes are listed below in order." +msgid "The values of attributes of :class:`!Strategy` are not necessarily stable across zstd versions. Only the ordering of the attributes may be relied upon. The attributes are listed below in order." msgstr "" -#: ../../library/compression.zstd.rst:775 msgid "The following strategies are available:" msgstr "" -#: ../../library/compression.zstd.rst:797 msgid "Miscellaneous" msgstr "" -#: ../../library/compression.zstd.rst:801 -msgid "" -"Retrieve a :class:`FrameInfo` object containing metadata about a Zstandard " -"frame. Frames contain metadata related to the compressed data they hold." +msgid "Retrieve a :class:`FrameInfo` object containing metadata about a Zstandard frame. Frames contain metadata related to the compressed data they hold." msgstr "" -#: ../../library/compression.zstd.rst:807 msgid "Metadata related to a Zstandard frame." msgstr "" -#: ../../library/compression.zstd.rst:811 msgid "The size of the decompressed contents of the frame." msgstr "" -#: ../../library/compression.zstd.rst:815 -msgid "" -"An integer representing the Zstandard dictionary ID needed for decompressing " -"the frame. ``0`` means the dictionary ID was not recorded in the frame " -"header. This may mean that a Zstandard dictionary is not needed, or that the " -"ID of a required dictionary was not recorded." +msgid "An integer representing the Zstandard dictionary ID needed for decompressing the frame. ``0`` means the dictionary ID was not recorded in the frame header. This may mean that a Zstandard dictionary is not needed, or that the ID of a required dictionary was not recorded." msgstr "" -#: ../../library/compression.zstd.rst:823 msgid "The default compression level for Zstandard: ``3``." msgstr "" -#: ../../library/compression.zstd.rst:828 -msgid "" -"Version number of the runtime zstd library as a tuple of integers (major, " -"minor, release)." +msgid "Version number of the runtime zstd library as a tuple of integers (major, minor, release)." msgstr "" -#: ../../library/compression.zstd.rst:833 msgid "Examples" msgstr "" -#: ../../library/compression.zstd.rst:835 msgid "Reading in a compressed file:" msgstr "" -#: ../../library/compression.zstd.rst:837 msgid "" "from compression import zstd\n" "\n" @@ -1092,11 +524,9 @@ msgid "" " file_content = f.read()" msgstr "" -#: ../../library/compression.zstd.rst:844 msgid "Creating a compressed file:" msgstr "" -#: ../../library/compression.zstd.rst:846 msgid "" "from compression import zstd\n" "\n" @@ -1105,11 +535,9 @@ msgid "" " f.write(data)" msgstr "" -#: ../../library/compression.zstd.rst:854 msgid "Compressing data in memory:" msgstr "" -#: ../../library/compression.zstd.rst:856 msgid "" "from compression import zstd\n" "\n" @@ -1117,11 +545,9 @@ msgid "" "data_out = zstd.compress(data_in)" msgstr "" -#: ../../library/compression.zstd.rst:863 msgid "Incremental compression:" msgstr "" -#: ../../library/compression.zstd.rst:865 msgid "" "from compression import zstd\n" "\n" @@ -1134,11 +560,9 @@ msgid "" "result = b\"\".join([out1, out2, out3, out4])" msgstr "" -#: ../../library/compression.zstd.rst:877 msgid "Writing compressed data to an already-open file:" msgstr "" -#: ../../library/compression.zstd.rst:879 msgid "" "from compression import zstd\n" "\n" @@ -1149,11 +573,9 @@ msgid "" " f.write(b\"Not compressed\\n\")" msgstr "" -#: ../../library/compression.zstd.rst:889 msgid "Creating a compressed file using compression parameters:" msgstr "" -#: ../../library/compression.zstd.rst:891 msgid "" "from compression import zstd\n" "\n" diff --git a/library/concurrency.po b/library/concurrency.po index 9eaa8683..fdbe3d58 100644 --- a/library/concurrency.po +++ b/library/concurrency.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:57+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,19 +21,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/concurrency.rst:5 msgid "Concurrent Execution" msgstr "" -#: ../../library/concurrency.rst:7 -msgid "" -"The modules described in this chapter provide support for concurrent " -"execution of code. The appropriate choice of tool will depend on the task to " -"be executed (CPU bound vs IO bound) and preferred style of development " -"(event driven cooperative multitasking vs preemptive multitasking). Here's " -"an overview:" +msgid "The modules described in this chapter provide support for concurrent execution of code. The appropriate choice of tool will depend on the task to be executed (CPU bound vs IO bound) and preferred style of development (event driven cooperative multitasking vs preemptive multitasking). Here's an overview:" msgstr "" -#: ../../library/concurrency.rst:28 msgid "The following are support modules for some of the above services:" msgstr "" diff --git a/library/concurrent.futures.po b/library/concurrent.futures.po index 16eb14ef..b5120e87 100644 --- a/library/concurrent.futures.po +++ b/library/concurrent.futures.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:57+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,167 +23,81 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/concurrent.futures.rst:2 msgid ":mod:`!concurrent.futures` --- Launching parallel tasks" msgstr "" -#: ../../library/concurrent.futures.rst:9 -msgid "" -"**Source code:** :source:`Lib/concurrent/futures/thread.py`, :source:`Lib/" -"concurrent/futures/process.py`, and :source:`Lib/concurrent/futures/" -"interpreter.py`" +msgid "**Source code:** :source:`Lib/concurrent/futures/thread.py`, :source:`Lib/concurrent/futures/process.py`, and :source:`Lib/concurrent/futures/interpreter.py`" msgstr "" -#: ../../library/concurrent.futures.rst:15 -msgid "" -"The :mod:`!concurrent.futures` module provides a high-level interface for " -"asynchronously executing callables." +msgid "The :mod:`!concurrent.futures` module provides a high-level interface for asynchronously executing callables." msgstr "" -#: ../../library/concurrent.futures.rst:18 -msgid "" -"The asynchronous execution can be performed with threads, " -"using :class:`ThreadPoolExecutor` or :class:`InterpreterPoolExecutor`, or " -"separate processes, using :class:`ProcessPoolExecutor`. Each implements the " -"same interface, which is defined by the abstract :class:`Executor` class." +msgid "The asynchronous execution can be performed with threads, using :class:`ThreadPoolExecutor` or :class:`InterpreterPoolExecutor`, or separate processes, using :class:`ProcessPoolExecutor`. Each implements the same interface, which is defined by the abstract :class:`Executor` class." msgstr "" -#: ../../library/concurrent.futures.rst:24 -msgid "" -":class:`concurrent.futures.Future` must not be confused " -"with :class:`asyncio.Future`, which is designed for use with :mod:`asyncio` " -"tasks and coroutines. See the :doc:`asyncio's Future ` " -"documentation for a detailed comparison of the two." +msgid ":class:`concurrent.futures.Future` must not be confused with :class:`asyncio.Future`, which is designed for use with :mod:`asyncio` tasks and coroutines. See the :doc:`asyncio's Future ` documentation for a detailed comparison of the two." msgstr "" -#: ../../includes/wasm-notavail.rst:3 msgid "Availability" msgstr "" -#: ../../includes/wasm-notavail.rst:5 -msgid "" -"This module does not work or is not available on WebAssembly. See :ref:`wasm-" -"availability` for more information." +msgid "This module does not work or is not available on WebAssembly. See :ref:`wasm-availability` for more information." msgstr "" -#: ../../library/concurrent.futures.rst:32 msgid "Executor Objects" msgstr "" -#: ../../library/concurrent.futures.rst:36 -msgid "" -"An abstract class that provides methods to execute calls asynchronously. It " -"should not be used directly, but through its concrete subclasses." +msgid "An abstract class that provides methods to execute calls asynchronously. It should not be used directly, but through its concrete subclasses." msgstr "" -#: ../../library/concurrent.futures.rst:41 -msgid "" -"Schedules the callable, *fn*, to be executed as ``fn(*args, **kwargs)`` and " -"returns a :class:`Future` object representing the execution of the " -"callable. ::" +msgid "Schedules the callable, *fn*, to be executed as ``fn(*args, **kwargs)`` and returns a :class:`Future` object representing the execution of the callable. ::" msgstr "" -#: ../../library/concurrent.futures.rst:45 msgid "" "with ThreadPoolExecutor(max_workers=1) as executor:\n" " future = executor.submit(pow, 323, 1235)\n" " print(future.result())" msgstr "" -#: ../../library/concurrent.futures.rst:51 msgid "Similar to :func:`map(fn, *iterables) ` except:" msgstr "" -#: ../../library/concurrent.futures.rst:53 -msgid "" -"The *iterables* are collected immediately rather than lazily, unless a " -"*buffersize* is specified to limit the number of submitted tasks whose " -"results have not yet been yielded. If the buffer is full, iteration over the " -"*iterables* pauses until a result is yielded from the buffer." +msgid "The *iterables* are collected immediately rather than lazily, unless a *buffersize* is specified to limit the number of submitted tasks whose results have not yet been yielded. If the buffer is full, iteration over the *iterables* pauses until a result is yielded from the buffer." msgstr "" -#: ../../library/concurrent.futures.rst:58 -msgid "" -"*fn* is executed asynchronously and several calls to *fn* may be made " -"concurrently." +msgid "*fn* is executed asynchronously and several calls to *fn* may be made concurrently." msgstr "" -#: ../../library/concurrent.futures.rst:61 -msgid "" -"The returned iterator raises a :exc:`TimeoutError` " -"if :meth:`~iterator.__next__` is called and the result isn't available after " -"*timeout* seconds from the original call to :meth:`Executor.map`. *timeout* " -"can be an int or a float. If *timeout* is not specified or ``None``, there " -"is no limit to the wait time." +msgid "The returned iterator raises a :exc:`TimeoutError` if :meth:`~iterator.__next__` is called and the result isn't available after *timeout* seconds from the original call to :meth:`Executor.map`. *timeout* can be an int or a float. If *timeout* is not specified or ``None``, there is no limit to the wait time." msgstr "" -#: ../../library/concurrent.futures.rst:67 -msgid "" -"If a *fn* call raises an exception, then that exception will be raised when " -"its value is retrieved from the iterator." +msgid "If a *fn* call raises an exception, then that exception will be raised when its value is retrieved from the iterator." msgstr "" -#: ../../library/concurrent.futures.rst:70 -msgid "" -"When using :class:`ProcessPoolExecutor`, this method chops *iterables* into " -"a number of chunks which it submits to the pool as separate tasks. The " -"(approximate) size of these chunks can be specified by setting *chunksize* " -"to a positive integer. For very long iterables, using a large value for " -"*chunksize* can significantly improve performance compared to the default " -"size of 1. With :class:`ThreadPoolExecutor` " -"and :class:`InterpreterPoolExecutor`, *chunksize* has no effect." +msgid "When using :class:`ProcessPoolExecutor`, this method chops *iterables* into a number of chunks which it submits to the pool as separate tasks. The (approximate) size of these chunks can be specified by setting *chunksize* to a positive integer. For very long iterables, using a large value for *chunksize* can significantly improve performance compared to the default size of 1. With :class:`ThreadPoolExecutor` and :class:`InterpreterPoolExecutor`, *chunksize* has no effect." msgstr "" -#: ../../library/concurrent.futures.rst:79 msgid "Added the *chunksize* parameter." msgstr "" -#: ../../library/concurrent.futures.rst:82 msgid "Added the *buffersize* parameter." msgstr "" -#: ../../library/concurrent.futures.rst:87 -msgid "" -"Signal the executor that it should free any resources that it is using when " -"the currently pending futures are done executing. Calls " -"to :meth:`Executor.submit` and :meth:`Executor.map` made after shutdown will " -"raise :exc:`RuntimeError`." +msgid "Signal the executor that it should free any resources that it is using when the currently pending futures are done executing. Calls to :meth:`Executor.submit` and :meth:`Executor.map` made after shutdown will raise :exc:`RuntimeError`." msgstr "" -#: ../../library/concurrent.futures.rst:92 -msgid "" -"If *wait* is ``True`` then this method will not return until all the pending " -"futures are done executing and the resources associated with the executor " -"have been freed. If *wait* is ``False`` then this method will return " -"immediately and the resources associated with the executor will be freed " -"when all pending futures are done executing. Regardless of the value of " -"*wait*, the entire Python program will not exit until all pending futures " -"are done executing." +msgid "If *wait* is ``True`` then this method will not return until all the pending futures are done executing and the resources associated with the executor have been freed. If *wait* is ``False`` then this method will return immediately and the resources associated with the executor will be freed when all pending futures are done executing. Regardless of the value of *wait*, the entire Python program will not exit until all pending futures are done executing." msgstr "" -#: ../../library/concurrent.futures.rst:100 -msgid "" -"If *cancel_futures* is ``True``, this method will cancel all pending futures " -"that the executor has not started running. Any futures that are completed or " -"running won't be cancelled, regardless of the value of *cancel_futures*." +msgid "If *cancel_futures* is ``True``, this method will cancel all pending futures that the executor has not started running. Any futures that are completed or running won't be cancelled, regardless of the value of *cancel_futures*." msgstr "" -#: ../../library/concurrent.futures.rst:105 -msgid "" -"If both *cancel_futures* and *wait* are ``True``, all futures that the " -"executor has started running will be completed prior to this method " -"returning. The remaining futures are cancelled." +msgid "If both *cancel_futures* and *wait* are ``True``, all futures that the executor has started running will be completed prior to this method returning. The remaining futures are cancelled." msgstr "" -#: ../../library/concurrent.futures.rst:109 -msgid "" -"You can avoid having to call this method explicitly if you use the executor " -"as a :term:`context manager` via the :keyword:`with` statement, which will " -"shutdown the :class:`Executor` (waiting as if :meth:`Executor.shutdown` were " -"called with *wait* set to ``True``)::" +msgid "You can avoid having to call this method explicitly if you use the executor as a :term:`context manager` via the :keyword:`with` statement, which will shutdown the :class:`Executor` (waiting as if :meth:`Executor.shutdown` were called with *wait* set to ``True``)::" msgstr "" -#: ../../library/concurrent.futures.rst:114 msgid "" "import shutil\n" "with ThreadPoolExecutor(max_workers=4) as e:\n" @@ -193,27 +107,18 @@ msgid "" " e.submit(shutil.copy, 'src4.txt', 'dest4.txt')" msgstr "" -#: ../../library/concurrent.futures.rst:121 msgid "Added *cancel_futures*." msgstr "" -#: ../../library/concurrent.futures.rst:126 msgid "ThreadPoolExecutor" msgstr "" -#: ../../library/concurrent.futures.rst:128 -msgid "" -":class:`ThreadPoolExecutor` is an :class:`Executor` subclass that uses a " -"pool of threads to execute calls asynchronously." +msgid ":class:`ThreadPoolExecutor` is an :class:`Executor` subclass that uses a pool of threads to execute calls asynchronously." msgstr "" -#: ../../library/concurrent.futures.rst:131 -msgid "" -"Deadlocks can occur when the callable associated with a :class:`Future` " -"waits on the results of another :class:`Future`. For example::" +msgid "Deadlocks can occur when the callable associated with a :class:`Future` waits on the results of another :class:`Future`. For example::" msgstr "" -#: ../../library/concurrent.futures.rst:134 msgid "" "import time\n" "def wait_on_b():\n" @@ -232,11 +137,9 @@ msgid "" "b = executor.submit(wait_on_a)" msgstr "" -#: ../../library/concurrent.futures.rst:150 msgid "And::" msgstr "" -#: ../../library/concurrent.futures.rst:152 msgid "" "def wait_on_future():\n" " f = executor.submit(pow, 5, 2)\n" @@ -250,77 +153,36 @@ msgid "" "# the single worker thread is already waiting for wait_on_future()." msgstr "" -#: ../../library/concurrent.futures.rst:166 -msgid "" -"An :class:`Executor` subclass that uses a pool of at most *max_workers* " -"threads to execute calls asynchronously." +msgid "An :class:`Executor` subclass that uses a pool of at most *max_workers* threads to execute calls asynchronously." msgstr "" -#: ../../library/concurrent.futures.rst:169 -msgid "" -"All threads enqueued to ``ThreadPoolExecutor`` will be joined before the " -"interpreter can exit. Note that the exit handler which does this is executed " -"*before* any exit handlers added using ``atexit``. This means exceptions in " -"the main thread must be caught and handled in order to signal threads to " -"exit gracefully. For this reason, it is recommended that " -"``ThreadPoolExecutor`` not be used for long-running tasks." +msgid "All threads enqueued to ``ThreadPoolExecutor`` will be joined before the interpreter can exit. Note that the exit handler which does this is executed *before* any exit handlers added using ``atexit``. This means exceptions in the main thread must be caught and handled in order to signal threads to exit gracefully. For this reason, it is recommended that ``ThreadPoolExecutor`` not be used for long-running tasks." msgstr "" -#: ../../library/concurrent.futures.rst:176 -msgid "" -"*initializer* is an optional callable that is called at the start of each " -"worker thread; *initargs* is a tuple of arguments passed to the " -"initializer. Should *initializer* raise an exception, all currently pending " -"jobs will raise a :exc:`~concurrent.futures.thread.BrokenThreadPool`, as " -"well as any attempt to submit more jobs to the pool." +msgid "*initializer* is an optional callable that is called at the start of each worker thread; *initargs* is a tuple of arguments passed to the initializer. Should *initializer* raise an exception, all currently pending jobs will raise a :exc:`~concurrent.futures.thread.BrokenThreadPool`, as well as any attempt to submit more jobs to the pool." msgstr "" -#: ../../library/concurrent.futures.rst:182 -msgid "" -"If *max_workers* is ``None`` or not given, it will default to the number of " -"processors on the machine, multiplied by ``5``, assuming " -"that :class:`ThreadPoolExecutor` is often used to overlap I/O instead of CPU " -"work and the number of workers should be higher than the number of workers " -"for :class:`ProcessPoolExecutor`." +msgid "If *max_workers* is ``None`` or not given, it will default to the number of processors on the machine, multiplied by ``5``, assuming that :class:`ThreadPoolExecutor` is often used to overlap I/O instead of CPU work and the number of workers should be higher than the number of workers for :class:`ProcessPoolExecutor`." msgstr "" -#: ../../library/concurrent.futures.rst:190 -msgid "" -"Added the *thread_name_prefix* parameter to allow users to control " -"the :class:`threading.Thread` names for worker threads created by the pool " -"for easier debugging." +msgid "Added the *thread_name_prefix* parameter to allow users to control the :class:`threading.Thread` names for worker threads created by the pool for easier debugging." msgstr "" -#: ../../library/concurrent.futures.rst:195 -#: ../../library/concurrent.futures.rst:400 msgid "Added the *initializer* and *initargs* arguments." msgstr "" -#: ../../library/concurrent.futures.rst:198 -msgid "" -"Default value of *max_workers* is changed to ``min(32, os.cpu_count() + " -"4)``. This default value preserves at least 5 workers for I/O bound tasks. " -"It utilizes at most 32 CPU cores for CPU bound tasks which release the GIL. " -"And it avoids using very large resources implicitly on many-core machines." +msgid "Default value of *max_workers* is changed to ``min(32, os.cpu_count() + 4)``. This default value preserves at least 5 workers for I/O bound tasks. It utilizes at most 32 CPU cores for CPU bound tasks which release the GIL. And it avoids using very large resources implicitly on many-core machines." msgstr "" -#: ../../library/concurrent.futures.rst:204 -msgid "" -"ThreadPoolExecutor now reuses idle worker threads before starting " -"*max_workers* worker threads too." +msgid "ThreadPoolExecutor now reuses idle worker threads before starting *max_workers* worker threads too." msgstr "" -#: ../../library/concurrent.futures.rst:207 -msgid "" -"Default value of *max_workers* is changed to ``min(32, " -"(os.process_cpu_count() or 1) + 4)``." +msgid "Default value of *max_workers* is changed to ``min(32, (os.process_cpu_count() or 1) + 4)``." msgstr "" -#: ../../library/concurrent.futures.rst:215 msgid "ThreadPoolExecutor Example" msgstr "" -#: ../../library/concurrent.futures.rst:218 msgid "" "import concurrent.futures\n" "import urllib.request\n" @@ -339,8 +201,7 @@ msgid "" "# We can use a with statement to ensure threads are cleaned up promptly\n" "with concurrent.futures.ThreadPoolExecutor(max_workers=5) as executor:\n" " # Start the load operations and mark each future with its URL\n" -" future_to_url = {executor.submit(load_url, url, 60): url for url in " -"URLS}\n" +" future_to_url = {executor.submit(load_url, url, 60): url for url in URLS}\n" " for future in concurrent.futures.as_completed(future_to_url):\n" " url = future_to_url[future]\n" " try:\n" @@ -351,274 +212,102 @@ msgid "" " print('%r page is %d bytes' % (url, len(data)))" msgstr "" -#: ../../library/concurrent.futures.rst:247 msgid "InterpreterPoolExecutor" msgstr "" -#: ../../library/concurrent.futures.rst:251 -msgid "" -"The :class:`InterpreterPoolExecutor` class uses a pool of interpreters to " -"execute calls asynchronously. It is a :class:`ThreadPoolExecutor` subclass, " -"which means each worker is running in its own thread. The difference here is " -"that each worker has its own interpreter, and runs each task using that " -"interpreter." +msgid "The :class:`InterpreterPoolExecutor` class uses a pool of interpreters to execute calls asynchronously. It is a :class:`ThreadPoolExecutor` subclass, which means each worker is running in its own thread. The difference here is that each worker has its own interpreter, and runs each task using that interpreter." msgstr "" -#: ../../library/concurrent.futures.rst:257 -msgid "" -"The biggest benefit to using interpreters instead of only threads is true " -"multi-core parallelism. Each interpreter has its own :term:`Global " -"Interpreter Lock `, so code running in one " -"interpreter can run on one CPU core, while code in another interpreter runs " -"unblocked on a different core." +msgid "The biggest benefit to using interpreters instead of only threads is true multi-core parallelism. Each interpreter has its own :term:`Global Interpreter Lock `, so code running in one interpreter can run on one CPU core, while code in another interpreter runs unblocked on a different core." msgstr "" -#: ../../library/concurrent.futures.rst:263 -msgid "" -"The tradeoff is that writing concurrent code for use with multiple " -"interpreters can take extra effort. However, this is because it forces you " -"to be deliberate about how and when interpreters interact, and to be " -"explicit about what data is shared between interpreters. This results in " -"several benefits that help balance the extra effort, including true multi-" -"core parallelism, For example, code written this way can make it easier to " -"reason about concurrency. Another major benefit is that you don't have to " -"deal with several of the big pain points of using threads, like race " -"conditions." -msgstr "" - -#: ../../library/concurrent.futures.rst:273 -msgid "" -"Each worker's interpreter is isolated from all the other interpreters. " -"\"Isolated\" means each interpreter has its own runtime state and operates " -"completely independently. For example, if you redirect :data:`sys.stdout` " -"in one interpreter, it will not be automatically redirected to any other " -"interpreter. If you import a module in one interpreter, it is not " -"automatically imported in any other. You would need to import the module " -"separately in interpreter where you need it. In fact, each module imported " -"in an interpreter is a completely separate object from the same module in a " -"different interpreter, including :mod:`sys`, :mod:`builtins`, and even " -"``__main__``." -msgstr "" - -#: ../../library/concurrent.futures.rst:285 -msgid "" -"Isolation means a mutable object, or other data, cannot be used by more than " -"one interpreter at the same time. That effectively means interpreters " -"cannot actually share such objects or data. Instead, each interpreter must " -"have its own copy, and you will have to synchronize any changes between the " -"copies manually. Immutable objects and data, like the builtin singletons, " -"strings, and tuples of immutable objects, don't have these limitations." +msgid "The tradeoff is that writing concurrent code for use with multiple interpreters can take extra effort. However, this is because it forces you to be deliberate about how and when interpreters interact, and to be explicit about what data is shared between interpreters. This results in several benefits that help balance the extra effort, including true multi-core parallelism, For example, code written this way can make it easier to reason about concurrency. Another major benefit is that you don't have to deal with several of the big pain points of using threads, like race conditions." msgstr "" -#: ../../library/concurrent.futures.rst:293 -msgid "" -"Communicating and synchronizing between interpreters is most effectively " -"done using dedicated tools, like those proposed in :pep:`734`. One less " -"efficient alternative is to serialize with :mod:`pickle` and then send the " -"bytes over a shared :mod:`socket ` or :func:`pipe `." +msgid "Each worker's interpreter is isolated from all the other interpreters. \"Isolated\" means each interpreter has its own runtime state and operates completely independently. For example, if you redirect :data:`sys.stdout` in one interpreter, it will not be automatically redirected to any other interpreter. If you import a module in one interpreter, it is not automatically imported in any other. You would need to import the module separately in interpreter where you need it. In fact, each module imported in an interpreter is a completely separate object from the same module in a different interpreter, including :mod:`sys`, :mod:`builtins`, and even ``__main__``." msgstr "" -#: ../../library/concurrent.futures.rst:301 -msgid "" -"A :class:`ThreadPoolExecutor` subclass that executes calls asynchronously " -"using a pool of at most *max_workers* threads. Each thread runs tasks in " -"its own interpreter. The worker interpreters are isolated from each other, " -"which means each has its own runtime state and that they can't share any " -"mutable objects or other data. Each interpreter has its own :term:`Global " -"Interpreter Lock `, which means code run with this " -"executor has true multi-core parallelism." +msgid "Isolation means a mutable object, or other data, cannot be used by more than one interpreter at the same time. That effectively means interpreters cannot actually share such objects or data. Instead, each interpreter must have its own copy, and you will have to synchronize any changes between the copies manually. Immutable objects and data, like the builtin singletons, strings, and tuples of immutable objects, don't have these limitations." msgstr "" -#: ../../library/concurrent.futures.rst:309 -msgid "" -"The optional *initializer* and *initargs* arguments have the same meaning as " -"for :class:`!ThreadPoolExecutor`: the initializer is run when each worker is " -"created, though in this case it is run in the worker's interpreter. The " -"executor serializes the *initializer* and *initargs* using :mod:`pickle` " -"when sending them to the worker's interpreter." +msgid "Communicating and synchronizing between interpreters is most effectively done using dedicated tools, like those proposed in :pep:`734`. One less efficient alternative is to serialize with :mod:`pickle` and then send the bytes over a shared :mod:`socket ` or :func:`pipe `." msgstr "" -#: ../../library/concurrent.futures.rst:317 -msgid "" -"The executor may replace uncaught exceptions from *initializer* " -"with :class:`~concurrent.interpreters.ExecutionFailed`." +msgid "A :class:`ThreadPoolExecutor` subclass that executes calls asynchronously using a pool of at most *max_workers* threads. Each thread runs tasks in its own interpreter. The worker interpreters are isolated from each other, which means each has its own runtime state and that they can't share any mutable objects or other data. Each interpreter has its own :term:`Global Interpreter Lock `, which means code run with this executor has true multi-core parallelism." +msgstr "" + +msgid "The optional *initializer* and *initargs* arguments have the same meaning as for :class:`!ThreadPoolExecutor`: the initializer is run when each worker is created, though in this case it is run in the worker's interpreter. The executor serializes the *initializer* and *initargs* using :mod:`pickle` when sending them to the worker's interpreter." +msgstr "" + +msgid "The executor may replace uncaught exceptions from *initializer* with :class:`~concurrent.interpreters.ExecutionFailed`." msgstr "" -#: ../../library/concurrent.futures.rst:320 msgid "Other caveats from parent :class:`ThreadPoolExecutor` apply here." msgstr "" -#: ../../library/concurrent.futures.rst:322 -msgid "" -":meth:`~Executor.submit` and :meth:`~Executor.map` work like normal, except " -"the worker serializes the callable and arguments using :mod:`pickle` when " -"sending them to its interpreter. The worker likewise serializes the return " -"value when sending it back." +msgid ":meth:`~Executor.submit` and :meth:`~Executor.map` work like normal, except the worker serializes the callable and arguments using :mod:`pickle` when sending them to its interpreter. The worker likewise serializes the return value when sending it back." +msgstr "" + +msgid "When a worker's current task raises an uncaught exception, the worker always tries to preserve the exception as-is. If that is successful then it also sets the ``__cause__`` to a corresponding :class:`~concurrent.interpreters.ExecutionFailed` instance, which contains a summary of the original exception. In the uncommon case that the worker is not able to preserve the original as-is then it directly preserves the corresponding :class:`~concurrent.interpreters.ExecutionFailed` instance instead." msgstr "" -#: ../../library/concurrent.futures.rst:327 -msgid "" -"When a worker's current task raises an uncaught exception, the worker always " -"tries to preserve the exception as-is. If that is successful then it also " -"sets the ``__cause__`` to a " -"corresponding :class:`~concurrent.interpreters.ExecutionFailed` instance, " -"which contains a summary of the original exception. In the uncommon case " -"that the worker is not able to preserve the original as-is then it directly " -"preserves the " -"corresponding :class:`~concurrent.interpreters.ExecutionFailed` instance " -"instead." -msgstr "" - -#: ../../library/concurrent.futures.rst:339 msgid "ProcessPoolExecutor" msgstr "" -#: ../../library/concurrent.futures.rst:341 -msgid "" -"The :class:`ProcessPoolExecutor` class is an :class:`Executor` subclass that " -"uses a pool of processes to execute calls " -"asynchronously. :class:`ProcessPoolExecutor` uses the :mod:`multiprocessing` " -"module, which allows it to side-step the :term:`Global Interpreter Lock " -"` but also means that only picklable objects can be " -"executed and returned." +msgid "The :class:`ProcessPoolExecutor` class is an :class:`Executor` subclass that uses a pool of processes to execute calls asynchronously. :class:`ProcessPoolExecutor` uses the :mod:`multiprocessing` module, which allows it to side-step the :term:`Global Interpreter Lock ` but also means that only picklable objects can be executed and returned." msgstr "" -#: ../../library/concurrent.futures.rst:348 -msgid "" -"The ``__main__`` module must be importable by worker subprocesses. This " -"means that :class:`ProcessPoolExecutor` will not work in the interactive " -"interpreter." +msgid "The ``__main__`` module must be importable by worker subprocesses. This means that :class:`ProcessPoolExecutor` will not work in the interactive interpreter." msgstr "" -#: ../../library/concurrent.futures.rst:351 -msgid "" -"Calling :class:`Executor` or :class:`Future` methods from a callable " -"submitted to a :class:`ProcessPoolExecutor` will result in deadlock." +msgid "Calling :class:`Executor` or :class:`Future` methods from a callable submitted to a :class:`ProcessPoolExecutor` will result in deadlock." msgstr "" -#: ../../library/concurrent.futures.rst:354 -msgid "" -"Note that the restrictions on functions and arguments needing to picklable " -"as per :class:`multiprocessing.Process` apply when " -"using :meth:`~Executor.submit` and :meth:`~Executor.map` on " -"a :class:`ProcessPoolExecutor`. A function defined in a REPL or a lambda " -"should not be expected to work." +msgid "Note that the restrictions on functions and arguments needing to picklable as per :class:`multiprocessing.Process` apply when using :meth:`~Executor.submit` and :meth:`~Executor.map` on a :class:`ProcessPoolExecutor`. A function defined in a REPL or a lambda should not be expected to work." msgstr "" -#: ../../library/concurrent.futures.rst:361 -msgid "" -"An :class:`Executor` subclass that executes calls asynchronously using a " -"pool of at most *max_workers* processes. If *max_workers* is ``None`` or " -"not given, it will default to :func:`os.process_cpu_count`. If *max_workers* " -"is less than or equal to ``0``, then a :exc:`ValueError` will be raised. On " -"Windows, *max_workers* must be less than or equal to ``61``. If it is not " -"then :exc:`ValueError` will be raised. If *max_workers* is ``None``, then " -"the default chosen will be at most ``61``, even if more processors are " -"available. *mp_context* can be a :mod:`multiprocessing` context or ``None``. " -"It will be used to launch the workers. If *mp_context* is ``None`` or not " -"given, the default :mod:`multiprocessing` context is used. " -"See :ref:`multiprocessing-start-methods`." -msgstr "" - -#: ../../library/concurrent.futures.rst:375 -msgid "" -"*initializer* is an optional callable that is called at the start of each " -"worker process; *initargs* is a tuple of arguments passed to the " -"initializer. Should *initializer* raise an exception, all currently pending " -"jobs will raise a :exc:`~concurrent.futures.process.BrokenProcessPool`, as " -"well as any attempt to submit more jobs to the pool." +msgid "An :class:`Executor` subclass that executes calls asynchronously using a pool of at most *max_workers* processes. If *max_workers* is ``None`` or not given, it will default to :func:`os.process_cpu_count`. If *max_workers* is less than or equal to ``0``, then a :exc:`ValueError` will be raised. On Windows, *max_workers* must be less than or equal to ``61``. If it is not then :exc:`ValueError` will be raised. If *max_workers* is ``None``, then the default chosen will be at most ``61``, even if more processors are available. *mp_context* can be a :mod:`multiprocessing` context or ``None``. It will be used to launch the workers. If *mp_context* is ``None`` or not given, the default :mod:`multiprocessing` context is used. See :ref:`multiprocessing-start-methods`." msgstr "" -#: ../../library/concurrent.futures.rst:381 -msgid "" -"*max_tasks_per_child* is an optional argument that specifies the maximum " -"number of tasks a single process can execute before it will exit and be " -"replaced with a fresh worker process. By default *max_tasks_per_child* is " -"``None`` which means worker processes will live as long as the pool. When a " -"max is specified, the \"spawn\" multiprocessing start method will be used by " -"default in absence of a *mp_context* parameter. This feature is incompatible " -"with the \"fork\" start method." +msgid "*initializer* is an optional callable that is called at the start of each worker process; *initargs* is a tuple of arguments passed to the initializer. Should *initializer* raise an exception, all currently pending jobs will raise a :exc:`~concurrent.futures.process.BrokenProcessPool`, as well as any attempt to submit more jobs to the pool." msgstr "" -#: ../../library/concurrent.futures.rst:389 -msgid "" -"When one of the worker processes terminates abruptly, " -"a :exc:`~concurrent.futures.process.BrokenProcessPool` error is now raised. " -"Previously, behaviour was undefined but operations on the executor or its " -"futures would often freeze or deadlock." +msgid "*max_tasks_per_child* is an optional argument that specifies the maximum number of tasks a single process can execute before it will exit and be replaced with a fresh worker process. By default *max_tasks_per_child* is ``None`` which means worker processes will live as long as the pool. When a max is specified, the \"spawn\" multiprocessing start method will be used by default in absence of a *mp_context* parameter. This feature is incompatible with the \"fork\" start method." msgstr "" -#: ../../library/concurrent.futures.rst:396 -msgid "" -"The *mp_context* argument was added to allow users to control the " -"start_method for worker processes created by the pool." +msgid "When one of the worker processes terminates abruptly, a :exc:`~concurrent.futures.process.BrokenProcessPool` error is now raised. Previously, behaviour was undefined but operations on the executor or its futures would often freeze or deadlock." msgstr "" -#: ../../library/concurrent.futures.rst:402 -msgid "" -"The *max_tasks_per_child* argument was added to allow users to control the " -"lifetime of workers in the pool." +msgid "The *mp_context* argument was added to allow users to control the start_method for worker processes created by the pool." msgstr "" -#: ../../library/concurrent.futures.rst:406 -msgid "" -"On POSIX systems, if your application has multiple threads and " -"the :mod:`multiprocessing` context uses the ``\"fork\"`` start method: " -"The :func:`os.fork` function called internally to spawn workers may raise " -"a :exc:`DeprecationWarning`. Pass a *mp_context* configured to use a " -"different start method. See the :func:`os.fork` documentation for further " -"explanation." +msgid "The *max_tasks_per_child* argument was added to allow users to control the lifetime of workers in the pool." msgstr "" -#: ../../library/concurrent.futures.rst:414 -msgid "" -"*max_workers* uses :func:`os.process_cpu_count` by default, instead " -"of :func:`os.cpu_count`." +msgid "On POSIX systems, if your application has multiple threads and the :mod:`multiprocessing` context uses the ``\"fork\"`` start method: The :func:`os.fork` function called internally to spawn workers may raise a :exc:`DeprecationWarning`. Pass a *mp_context* configured to use a different start method. See the :func:`os.fork` documentation for further explanation." msgstr "" -#: ../../library/concurrent.futures.rst:418 -msgid "" -"The default process start method (see :ref:`multiprocessing-start-methods`) " -"changed away from *fork*. If you require the *fork* start method " -"for :class:`ProcessPoolExecutor` you must explicitly pass " -"``mp_context=multiprocessing.get_context(\"fork\")``." +msgid "*max_workers* uses :func:`os.process_cpu_count` by default, instead of :func:`os.cpu_count`." msgstr "" -#: ../../library/concurrent.futures.rst:424 -msgid "" -"Fixed a deadlock (:gh:`115634`) where the executor could hang after a worker " -"process exited upon reaching its *max_tasks_per_child* limit while tasks " -"remained queued." +msgid "The default process start method (see :ref:`multiprocessing-start-methods`) changed away from *fork*. If you require the *fork* start method for :class:`ProcessPoolExecutor` you must explicitly pass ``mp_context=multiprocessing.get_context(\"fork\")``." msgstr "" -#: ../../library/concurrent.futures.rst:431 -msgid "" -"Attempt to terminate all living worker processes immediately by " -"calling :meth:`Process.terminate ` on " -"each of them. Internally, it will also call :meth:`Executor.shutdown` to " -"ensure that all other resources associated with the executor are freed." +msgid "Fixed a deadlock (:gh:`115634`) where the executor could hang after a worker process exited upon reaching its *max_tasks_per_child* limit while tasks remained queued." msgstr "" -#: ../../library/concurrent.futures.rst:436 -#: ../../library/concurrent.futures.rst:448 -msgid "" -"After calling this method the caller should no longer submit tasks to the " -"executor." +msgid "Attempt to terminate all living worker processes immediately by calling :meth:`Process.terminate ` on each of them. Internally, it will also call :meth:`Executor.shutdown` to ensure that all other resources associated with the executor are freed." msgstr "" -#: ../../library/concurrent.futures.rst:443 -msgid "" -"Attempt to kill all living worker processes immediately by " -"calling :meth:`Process.kill ` on each of them. " -"Internally, it will also call :meth:`Executor.shutdown` to ensure that all " -"other resources associated with the executor are freed." +msgid "After calling this method the caller should no longer submit tasks to the executor." +msgstr "" + +msgid "Attempt to kill all living worker processes immediately by calling :meth:`Process.kill ` on each of them. Internally, it will also call :meth:`Executor.shutdown` to ensure that all other resources associated with the executor are freed." msgstr "" -#: ../../library/concurrent.futures.rst:456 msgid "ProcessPoolExecutor Example" msgstr "" -#: ../../library/concurrent.futures.rst:459 msgid "" "import concurrent.futures\n" "import math\n" @@ -654,287 +343,137 @@ msgid "" " main()" msgstr "" -#: ../../library/concurrent.futures.rst:494 msgid "Future Objects" msgstr "" -#: ../../library/concurrent.futures.rst:496 -msgid "" -"The :class:`Future` class encapsulates the asynchronous execution of a " -"callable. :class:`Future` instances are created by :meth:`Executor.submit`." +msgid "The :class:`Future` class encapsulates the asynchronous execution of a callable. :class:`Future` instances are created by :meth:`Executor.submit`." msgstr "" -#: ../../library/concurrent.futures.rst:501 -msgid "" -"Encapsulates the asynchronous execution of a callable. :class:`Future` " -"instances are created by :meth:`Executor.submit` and should not be created " -"directly except for testing." +msgid "Encapsulates the asynchronous execution of a callable. :class:`Future` instances are created by :meth:`Executor.submit` and should not be created directly except for testing." msgstr "" -#: ../../library/concurrent.futures.rst:507 -msgid "" -"Attempt to cancel the call. If the call is currently being executed or " -"finished running and cannot be cancelled then the method will return " -"``False``, otherwise the call will be cancelled and the method will return " -"``True``." +msgid "Attempt to cancel the call. If the call is currently being executed or finished running and cannot be cancelled then the method will return ``False``, otherwise the call will be cancelled and the method will return ``True``." msgstr "" -#: ../../library/concurrent.futures.rst:514 msgid "Return ``True`` if the call was successfully cancelled." msgstr "" -#: ../../library/concurrent.futures.rst:518 -msgid "" -"Return ``True`` if the call is currently being executed and cannot be " -"cancelled." +msgid "Return ``True`` if the call is currently being executed and cannot be cancelled." msgstr "" -#: ../../library/concurrent.futures.rst:523 -msgid "" -"Return ``True`` if the call was successfully cancelled or finished running." +msgid "Return ``True`` if the call was successfully cancelled or finished running." msgstr "" -#: ../../library/concurrent.futures.rst:528 -msgid "" -"Return the value returned by the call. If the call hasn't yet completed then " -"this method will wait up to *timeout* seconds. If the call hasn't completed " -"in *timeout* seconds, then a :exc:`TimeoutError` will be raised. *timeout* " -"can be an int or float. If *timeout* is not specified or ``None``, there is " -"no limit to the wait time." +msgid "Return the value returned by the call. If the call hasn't yet completed then this method will wait up to *timeout* seconds. If the call hasn't completed in *timeout* seconds, then a :exc:`TimeoutError` will be raised. *timeout* can be an int or float. If *timeout* is not specified or ``None``, there is no limit to the wait time." msgstr "" -#: ../../library/concurrent.futures.rst:535 -#: ../../library/concurrent.futures.rst:549 -msgid "" -"If the future is cancelled before completing then :exc:`.CancelledError` " -"will be raised." +msgid "If the future is cancelled before completing then :exc:`.CancelledError` will be raised." msgstr "" -#: ../../library/concurrent.futures.rst:538 -msgid "" -"If the call raised an exception, this method will raise the same exception." +msgid "If the call raised an exception, this method will raise the same exception." msgstr "" -#: ../../library/concurrent.futures.rst:542 -msgid "" -"Return the exception raised by the call. If the call hasn't yet completed " -"then this method will wait up to *timeout* seconds. If the call hasn't " -"completed in *timeout* seconds, then a :exc:`TimeoutError` will be raised. " -"*timeout* can be an int or float. If *timeout* is not specified or " -"``None``, there is no limit to the wait time." +msgid "Return the exception raised by the call. If the call hasn't yet completed then this method will wait up to *timeout* seconds. If the call hasn't completed in *timeout* seconds, then a :exc:`TimeoutError` will be raised. *timeout* can be an int or float. If *timeout* is not specified or ``None``, there is no limit to the wait time." msgstr "" -#: ../../library/concurrent.futures.rst:552 msgid "If the call completed without raising, ``None`` is returned." msgstr "" -#: ../../library/concurrent.futures.rst:556 -msgid "" -"Attaches the callable *fn* to the future. *fn* will be called, with the " -"future as its only argument, when the future is cancelled or finishes " -"running." +msgid "Attaches the callable *fn* to the future. *fn* will be called, with the future as its only argument, when the future is cancelled or finishes running." msgstr "" -#: ../../library/concurrent.futures.rst:560 -msgid "" -"Added callables are called in the order that they were added and are always " -"called in a thread belonging to the process that added them. If the " -"callable raises an :exc:`Exception` subclass, it will be logged and " -"ignored. If the callable raises a :exc:`BaseException` subclass, the " -"behavior is undefined." +msgid "Added callables are called in the order that they were added and are always called in a thread belonging to the process that added them. If the callable raises an :exc:`Exception` subclass, it will be logged and ignored. If the callable raises a :exc:`BaseException` subclass, the behavior is undefined." msgstr "" -#: ../../library/concurrent.futures.rst:566 -msgid "" -"If the future has already completed or been cancelled, *fn* will be called " -"immediately." +msgid "If the future has already completed or been cancelled, *fn* will be called immediately." msgstr "" -#: ../../library/concurrent.futures.rst:569 -msgid "" -"The following :class:`Future` methods are meant for use in unit tests " -"and :class:`Executor` implementations." +msgid "The following :class:`Future` methods are meant for use in unit tests and :class:`Executor` implementations." msgstr "" -#: ../../library/concurrent.futures.rst:574 -msgid "" -"This method should only be called by :class:`Executor` implementations " -"before executing the work associated with the :class:`Future` and by unit " -"tests." +msgid "This method should only be called by :class:`Executor` implementations before executing the work associated with the :class:`Future` and by unit tests." msgstr "" -#: ../../library/concurrent.futures.rst:578 -msgid "" -"If the method returns ``False`` then the :class:`Future` was cancelled, " -"i.e. :meth:`Future.cancel` was called and returned ``True``. Any threads " -"waiting on the :class:`Future` completing (i.e. through :func:`as_completed` " -"or :func:`wait`) will be woken up." +msgid "If the method returns ``False`` then the :class:`Future` was cancelled, i.e. :meth:`Future.cancel` was called and returned ``True``. Any threads waiting on the :class:`Future` completing (i.e. through :func:`as_completed` or :func:`wait`) will be woken up." msgstr "" -#: ../../library/concurrent.futures.rst:583 -msgid "" -"If the method returns ``True`` then the :class:`Future` was not cancelled " -"and has been put in the running state, i.e. calls to :meth:`Future.running` " -"will return ``True``." +msgid "If the method returns ``True`` then the :class:`Future` was not cancelled and has been put in the running state, i.e. calls to :meth:`Future.running` will return ``True``." msgstr "" -#: ../../library/concurrent.futures.rst:587 -msgid "" -"This method can only be called once and cannot be called " -"after :meth:`Future.set_result` or :meth:`Future.set_exception` have been " -"called." +msgid "This method can only be called once and cannot be called after :meth:`Future.set_result` or :meth:`Future.set_exception` have been called." msgstr "" -#: ../../library/concurrent.futures.rst:593 -msgid "" -"Sets the result of the work associated with the :class:`Future` to *result*." +msgid "Sets the result of the work associated with the :class:`Future` to *result*." msgstr "" -#: ../../library/concurrent.futures.rst:596 -#: ../../library/concurrent.futures.rst:609 -msgid "" -"This method should only be used by :class:`Executor` implementations and " -"unit tests." +msgid "This method should only be used by :class:`Executor` implementations and unit tests." msgstr "" -#: ../../library/concurrent.futures.rst:599 -#: ../../library/concurrent.futures.rst:612 -msgid "" -"This method raises :exc:`concurrent.futures.InvalidStateError` if " -"the :class:`Future` is already done." +msgid "This method raises :exc:`concurrent.futures.InvalidStateError` if the :class:`Future` is already done." msgstr "" -#: ../../library/concurrent.futures.rst:606 -msgid "" -"Sets the result of the work associated with the :class:`Future` to " -"the :class:`Exception` *exception*." +msgid "Sets the result of the work associated with the :class:`Future` to the :class:`Exception` *exception*." msgstr "" -#: ../../library/concurrent.futures.rst:618 msgid "Module Functions" msgstr "" -#: ../../library/concurrent.futures.rst:622 -msgid "" -"Wait for the :class:`Future` instances (possibly created by " -"different :class:`Executor` instances) given by *fs* to complete. Duplicate " -"futures given to *fs* are removed and will be returned only once. Returns a " -"named 2-tuple of sets. The first set, named ``done``, contains the futures " -"that completed (finished or cancelled futures) before the wait completed. " -"The second set, named ``not_done``, contains the futures that did not " -"complete (pending or running futures)." +msgid "Wait for the :class:`Future` instances (possibly created by different :class:`Executor` instances) given by *fs* to complete. Duplicate futures given to *fs* are removed and will be returned only once. Returns a named 2-tuple of sets. The first set, named ``done``, contains the futures that completed (finished or cancelled futures) before the wait completed. The second set, named ``not_done``, contains the futures that did not complete (pending or running futures)." msgstr "" -#: ../../library/concurrent.futures.rst:630 -msgid "" -"*timeout* can be used to control the maximum number of seconds to wait " -"before returning. *timeout* can be an int or float. If *timeout* is not " -"specified or ``None``, there is no limit to the wait time." +msgid "*timeout* can be used to control the maximum number of seconds to wait before returning. *timeout* can be an int or float. If *timeout* is not specified or ``None``, there is no limit to the wait time." msgstr "" -#: ../../library/concurrent.futures.rst:634 -msgid "" -"*return_when* indicates when this function should return. It must be one of " -"the following constants:" +msgid "*return_when* indicates when this function should return. It must be one of the following constants:" msgstr "" -#: ../../library/concurrent.futures.rst:640 msgid "Constant" msgstr "" -#: ../../library/concurrent.futures.rst:641 msgid "Description" msgstr "" -#: ../../library/concurrent.futures.rst:644 msgid "The function will return when any future finishes or is cancelled." msgstr "" -#: ../../library/concurrent.futures.rst:647 -msgid "" -"The function will return when any future finishes by raising an exception. " -"If no future raises an exception then it is equivalent " -"to :const:`ALL_COMPLETED`." +msgid "The function will return when any future finishes by raising an exception. If no future raises an exception then it is equivalent to :const:`ALL_COMPLETED`." msgstr "" -#: ../../library/concurrent.futures.rst:652 msgid "The function will return when all futures finish or are cancelled." msgstr "" -#: ../../library/concurrent.futures.rst:656 -msgid "" -"Returns an iterator over the :class:`Future` instances (possibly created by " -"different :class:`Executor` instances) given by *fs* that yields futures as " -"they complete (finished or cancelled futures). Any futures given by *fs* " -"that are duplicated will be returned once. Any futures that completed " -"before :func:`as_completed` is called will be yielded first. The returned " -"iterator raises a :exc:`TimeoutError` if :meth:`~iterator.__next__` is " -"called and the result isn't available after *timeout* seconds from the " -"original call to :func:`as_completed`. *timeout* can be an int or float. If " -"*timeout* is not specified or ``None``, there is no limit to the wait time." -msgstr "" - -#: ../../library/concurrent.futures.rst:669 +msgid "Returns an iterator over the :class:`Future` instances (possibly created by different :class:`Executor` instances) given by *fs* that yields futures as they complete (finished or cancelled futures). Any futures given by *fs* that are duplicated will be returned once. Any futures that completed before :func:`as_completed` is called will be yielded first. The returned iterator raises a :exc:`TimeoutError` if :meth:`~iterator.__next__` is called and the result isn't available after *timeout* seconds from the original call to :func:`as_completed`. *timeout* can be an int or float. If *timeout* is not specified or ``None``, there is no limit to the wait time." +msgstr "" + msgid ":pep:`3148` -- futures - execute computations asynchronously" msgstr "" -#: ../../library/concurrent.futures.rst:670 -msgid "" -"The proposal which described this feature for inclusion in the Python " -"standard library." +msgid "The proposal which described this feature for inclusion in the Python standard library." msgstr "" -#: ../../library/concurrent.futures.rst:675 msgid "Exception classes" msgstr "" -#: ../../library/concurrent.futures.rst:681 msgid "Raised when a future is cancelled." msgstr "" -#: ../../library/concurrent.futures.rst:685 -msgid "" -"A deprecated alias of :exc:`TimeoutError`, raised when a future operation " -"exceeds the given timeout." +msgid "A deprecated alias of :exc:`TimeoutError`, raised when a future operation exceeds the given timeout." msgstr "" -#: ../../library/concurrent.futures.rst:690 msgid "This class was made an alias of :exc:`TimeoutError`." msgstr "" -#: ../../library/concurrent.futures.rst:695 -msgid "" -"Derived from :exc:`RuntimeError`, this exception class is raised when an " -"executor is broken for some reason, and cannot be used to submit or execute " -"new tasks." +msgid "Derived from :exc:`RuntimeError`, this exception class is raised when an executor is broken for some reason, and cannot be used to submit or execute new tasks." msgstr "" -#: ../../library/concurrent.futures.rst:703 -msgid "" -"Raised when an operation is performed on a future that is not allowed in the " -"current state." +msgid "Raised when an operation is performed on a future that is not allowed in the current state." msgstr "" -#: ../../library/concurrent.futures.rst:712 -msgid "" -"Derived from :exc:`~concurrent.futures.BrokenExecutor`, this exception class " -"is raised when one of the workers of " -"a :class:`~concurrent.futures.ThreadPoolExecutor` has failed initializing." +msgid "Derived from :exc:`~concurrent.futures.BrokenExecutor`, this exception class is raised when one of the workers of a :class:`~concurrent.futures.ThreadPoolExecutor` has failed initializing." msgstr "" -#: ../../library/concurrent.futures.rst:723 -msgid "" -"Derived from :exc:`~concurrent.futures.thread.BrokenThreadPool`, this " -"exception class is raised when one of the workers of " -"a :class:`~concurrent.futures.InterpreterPoolExecutor` has failed " -"initializing." +msgid "Derived from :exc:`~concurrent.futures.thread.BrokenThreadPool`, this exception class is raised when one of the workers of a :class:`~concurrent.futures.InterpreterPoolExecutor` has failed initializing." msgstr "" -#: ../../library/concurrent.futures.rst:734 -msgid "" -"Derived from :exc:`~concurrent.futures.BrokenExecutor` " -"(formerly :exc:`RuntimeError`), this exception class is raised when one of " -"the workers of a :class:`~concurrent.futures.ProcessPoolExecutor` has " -"terminated in a non-clean fashion (for example, if it was killed from the " -"outside)." +msgid "Derived from :exc:`~concurrent.futures.BrokenExecutor` (formerly :exc:`RuntimeError`), this exception class is raised when one of the workers of a :class:`~concurrent.futures.ProcessPoolExecutor` has terminated in a non-clean fashion (for example, if it was killed from the outside)." msgstr "" diff --git a/library/concurrent.interpreters.po b/library/concurrent.interpreters.po index 31511ec4..0708e6b9 100644 --- a/library/concurrent.interpreters.po +++ b/library/concurrent.interpreters.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2026-07-25 12:59+0330\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: none\n" @@ -19,478 +19,264 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../library/concurrent.interpreters.rst:2 -msgid "" -":mod:`!concurrent.interpreters` --- Multiple interpreters in the same process" +msgid ":mod:`!concurrent.interpreters` --- Multiple interpreters in the same process" msgstr "" -#: ../../library/concurrent.interpreters.rst:12 msgid "**Source code:** :source:`Lib/concurrent/interpreters`" msgstr "" -#: ../../library/concurrent.interpreters.rst:16 -msgid "" -"The :mod:`!concurrent.interpreters` module constructs higher-level " -"interfaces on top of the lower level :mod:`!_interpreters` module." +msgid "The :mod:`!concurrent.interpreters` module constructs higher-level interfaces on top of the lower level :mod:`!_interpreters` module." msgstr "" -#: ../../library/concurrent.interpreters.rst:19 -msgid "" -"The module is primarily meant to provide a basic API for managing " -"interpreters (AKA \"subinterpreters\") and running things in them. Running " -"mostly involves switching to an interpreter (in the current thread) and " -"calling a function in that execution context." +msgid "The module is primarily meant to provide a basic API for managing interpreters (AKA \"subinterpreters\") and running things in them. Running mostly involves switching to an interpreter (in the current thread) and calling a function in that execution context." msgstr "" -#: ../../library/concurrent.interpreters.rst:24 -msgid "" -"For concurrency, interpreters themselves (and this module) don't provide " -"much more than isolation, which on its own isn't useful. Actual concurrency " -"is available separately through :mod:`threads ` -- see `below " -"`_." +msgid "For concurrency, interpreters themselves (and this module) don't provide much more than isolation, which on its own isn't useful. Actual concurrency is available separately through :mod:`threads ` -- see `below `_." msgstr "" -#: ../../library/concurrent.interpreters.rst:31 msgid ":class:`~concurrent.futures.InterpreterPoolExecutor`" msgstr "" -#: ../../library/concurrent.interpreters.rst:32 msgid "Combines threads with interpreters in a familiar interface." msgstr "" -#: ../../library/concurrent.interpreters.rst:36 msgid ":ref:`isolating-extensions-howto`" msgstr "" -#: ../../library/concurrent.interpreters.rst:37 msgid "How to update an extension module to support multiple interpreters." msgstr "" -#: ../../library/concurrent.interpreters.rst:39 msgid ":pep:`554`" msgstr "" -#: ../../library/concurrent.interpreters.rst:41 msgid ":pep:`734`" msgstr "" -#: ../../library/concurrent.interpreters.rst:43 msgid ":pep:`684`" msgstr "" -#: ../../includes/wasm-notavail.rst:3 msgid "Availability" msgstr "" -#: ../../includes/wasm-notavail.rst:5 -msgid "" -"This module does not work or is not available on WebAssembly. See :ref:`wasm-" -"availability` for more information." +msgid "This module does not work or is not available on WebAssembly. See :ref:`wasm-availability` for more information." msgstr "" -#: ../../library/concurrent.interpreters.rst:51 msgid "Key details" msgstr "" -#: ../../library/concurrent.interpreters.rst:53 -msgid "" -"Before we dive in further, there are a small number of details to keep in " -"mind about using multiple interpreters:" +msgid "Before we dive in further, there are a small number of details to keep in mind about using multiple interpreters:" msgstr "" -#: ../../library/concurrent.interpreters.rst:56 msgid "`isolated `_, by default" msgstr "" -#: ../../library/concurrent.interpreters.rst:57 msgid "no implicit threads" msgstr "" -#: ../../library/concurrent.interpreters.rst:58 msgid "not all PyPI packages support use in multiple interpreters yet" msgstr "" -#: ../../library/concurrent.interpreters.rst:66 msgid "Introduction" msgstr "" -#: ../../library/concurrent.interpreters.rst:68 -msgid "" -"An \"interpreter\" is effectively the execution context of the Python " -"runtime. It contains all of the state the runtime needs to execute a " -"program. This includes things like the import state and builtins. (Each " -"thread, even if there's only the main thread, has some extra runtime state, " -"in addition to the current interpreter, related to the current exception and " -"the bytecode eval loop.)" +msgid "An \"interpreter\" is effectively the execution context of the Python runtime. It contains all of the state the runtime needs to execute a program. This includes things like the import state and builtins. (Each thread, even if there's only the main thread, has some extra runtime state, in addition to the current interpreter, related to the current exception and the bytecode eval loop.)" msgstr "" -#: ../../library/concurrent.interpreters.rst:75 -msgid "" -"The concept and functionality of the interpreter have been a part of Python " -"since version 2.2, but the feature was only available through the C-API and " -"not well known, and the `isolation `_ was relatively " -"incomplete until version 3.12." +msgid "The concept and functionality of the interpreter have been a part of Python since version 2.2, but the feature was only available through the C-API and not well known, and the `isolation `_ was relatively incomplete until version 3.12." msgstr "" -#: ../../library/concurrent.interpreters.rst:83 msgid "Multiple Interpreters and Isolation" msgstr "" -#: ../../library/concurrent.interpreters.rst:85 -msgid "" -"A Python implementation may support using multiple interpreters in the same " -"process. CPython has this support. Each interpreter is effectively " -"isolated from the others (with a limited number of carefully managed process-" -"global exceptions to the rule)." +msgid "A Python implementation may support using multiple interpreters in the same process. CPython has this support. Each interpreter is effectively isolated from the others (with a limited number of carefully managed process-global exceptions to the rule)." msgstr "" -#: ../../library/concurrent.interpreters.rst:90 -msgid "" -"That isolation is primarily useful as a strong separation between distinct " -"logical components of a program, where you want to have careful control of " -"how those components interact." +msgid "That isolation is primarily useful as a strong separation between distinct logical components of a program, where you want to have careful control of how those components interact." msgstr "" -#: ../../library/concurrent.interpreters.rst:96 -msgid "" -"Interpreters in the same process can technically never be strictly isolated " -"from one another since there are few restrictions on memory access within " -"the same process. The Python runtime makes a best effort at isolation but " -"extension modules may easily violate that. Therefore, do not use multiple " -"interpreters in security-sensitive situations, where they shouldn't have " -"access to each other's data." +msgid "Interpreters in the same process can technically never be strictly isolated from one another since there are few restrictions on memory access within the same process. The Python runtime makes a best effort at isolation but extension modules may easily violate that. Therefore, do not use multiple interpreters in security-sensitive situations, where they shouldn't have access to each other's data." msgstr "" -#: ../../library/concurrent.interpreters.rst:104 msgid "Running in an Interpreter" msgstr "" -#: ../../library/concurrent.interpreters.rst:106 -msgid "" -"Running in a different interpreter involves switching to it in the current " -"thread and then calling some function. The runtime will execute the " -"function using the current interpreter's state. The :mod:`!" -"concurrent.interpreters` module provides a basic API for creating and " -"managing interpreters, as well as the switch-and-call operation." +msgid "Running in a different interpreter involves switching to it in the current thread and then calling some function. The runtime will execute the function using the current interpreter's state. The :mod:`!concurrent.interpreters` module provides a basic API for creating and managing interpreters, as well as the switch-and-call operation." msgstr "" -#: ../../library/concurrent.interpreters.rst:113 -msgid "" -"No other threads are automatically started for the operation. There is `a " -"helper `_ for that though. There is another " -"dedicated helper for calling the builtin :func:`exec` in an interpreter." +msgid "No other threads are automatically started for the operation. There is `a helper `_ for that though. There is another dedicated helper for calling the builtin :func:`exec` in an interpreter." msgstr "" -#: ../../library/concurrent.interpreters.rst:118 -msgid "" -"When :func:`exec` (or :func:`eval`) are called in an interpreter, they run " -"using the interpreter's :mod:`!__main__` module as the \"globals\" " -"namespace. The same is true for functions that aren't associated with any " -"module. This is the same as how scripts invoked from the command-line run " -"in the :mod:`!__main__` module." +msgid "When :func:`exec` (or :func:`eval`) are called in an interpreter, they run using the interpreter's :mod:`!__main__` module as the \"globals\" namespace. The same is true for functions that aren't associated with any module. This is the same as how scripts invoked from the command-line run in the :mod:`!__main__` module." msgstr "" -#: ../../library/concurrent.interpreters.rst:128 msgid "Concurrency and Parallelism" msgstr "" -#: ../../library/concurrent.interpreters.rst:130 -msgid "" -"As noted earlier, interpreters do not provide any concurrency on their own. " -"They strictly represent the isolated execution context the runtime will use " -"*in the current thread*. That isolation makes them similar to processes, " -"but they still enjoy in-process efficiency, like threads." +msgid "As noted earlier, interpreters do not provide any concurrency on their own. They strictly represent the isolated execution context the runtime will use *in the current thread*. That isolation makes them similar to processes, but they still enjoy in-process efficiency, like threads." msgstr "" -#: ../../library/concurrent.interpreters.rst:136 -msgid "" -"All that said, interpreters do naturally support certain flavors of " -"concurrency. There's a powerful side effect of that isolation. It enables a " -"different approach to concurrency than you can take with async or threads. " -"It's a similar concurrency model to CSP or the actor model, a model which is " -"relatively easy to reason about." +msgid "All that said, interpreters do naturally support certain flavors of concurrency. There's a powerful side effect of that isolation. It enables a different approach to concurrency than you can take with async or threads. It's a similar concurrency model to CSP or the actor model, a model which is relatively easy to reason about." msgstr "" -#: ../../library/concurrent.interpreters.rst:143 -msgid "" -"You can take advantage of that concurrency model in a single thread, " -"switching back and forth between interpreters, Stackless-style. However, " -"this model is more useful when you combine interpreters with multiple " -"threads. This mostly involves starting a new thread, where you switch to " -"another interpreter and run what you want there." +msgid "You can take advantage of that concurrency model in a single thread, switching back and forth between interpreters, Stackless-style. However, this model is more useful when you combine interpreters with multiple threads. This mostly involves starting a new thread, where you switch to another interpreter and run what you want there." msgstr "" -#: ../../library/concurrent.interpreters.rst:149 -msgid "" -"Each actual thread in Python, even if you're only running in the main " -"thread, has its own *current* execution context. Multiple threads can use " -"the same interpreter or different ones." +msgid "Each actual thread in Python, even if you're only running in the main thread, has its own *current* execution context. Multiple threads can use the same interpreter or different ones." msgstr "" -#: ../../library/concurrent.interpreters.rst:153 -msgid "" -"At a high level, you can think of the combination of threads and " -"interpreters as threads with opt-in sharing." +msgid "At a high level, you can think of the combination of threads and interpreters as threads with opt-in sharing." msgstr "" -#: ../../library/concurrent.interpreters.rst:156 -msgid "" -"As a significant bonus, interpreters are sufficiently isolated that they do " -"not share the :term:`GIL`, which means combining threads with multiple " -"interpreters enables full multi-core parallelism. (This has been the case " -"since Python 3.12.)" +msgid "As a significant bonus, interpreters are sufficiently isolated that they do not share the :term:`GIL`, which means combining threads with multiple interpreters enables full multi-core parallelism. (This has been the case since Python 3.12.)" msgstr "" -#: ../../library/concurrent.interpreters.rst:162 msgid "Communication Between Interpreters" msgstr "" -#: ../../library/concurrent.interpreters.rst:164 -msgid "" -"In practice, multiple interpreters are useful only if we have a way to " -"communicate between them. This usually involves some form of message " -"passing, but can even mean sharing data in some carefully managed way." +msgid "In practice, multiple interpreters are useful only if we have a way to communicate between them. This usually involves some form of message passing, but can even mean sharing data in some carefully managed way." msgstr "" -#: ../../library/concurrent.interpreters.rst:169 -msgid "" -"With this in mind, the :mod:`!concurrent.interpreters` module provides " -"a :class:`queue.Queue` implementation, available " -"through :func:`create_queue`." +msgid "With this in mind, the :mod:`!concurrent.interpreters` module provides a :class:`queue.Queue` implementation, available through :func:`create_queue`." msgstr "" -#: ../../library/concurrent.interpreters.rst:176 msgid "\"Sharing\" Objects" msgstr "" -#: ../../library/concurrent.interpreters.rst:178 -msgid "" -"Any data actually shared between interpreters loses the thread-safety " -"provided by the :term:`GIL`. There are various options for dealing with " -"this in extension modules. However, from Python code the lack of thread-" -"safety means objects can't actually be shared, with a few exceptions. " -"Instead, a copy must be created, which means mutable objects won't stay in " -"sync." +msgid "Any data actually shared between interpreters loses the thread-safety provided by the :term:`GIL`. There are various options for dealing with this in extension modules. However, from Python code the lack of thread-safety means objects can't actually be shared, with a few exceptions. Instead, a copy must be created, which means mutable objects won't stay in sync." msgstr "" -#: ../../library/concurrent.interpreters.rst:185 -msgid "" -"By default, most objects are copied with :mod:`pickle` when they are passed " -"to another interpreter. Nearly all of the immutable builtin objects are " -"either directly shared or copied efficiently. For example:" +msgid "By default, most objects are copied with :mod:`pickle` when they are passed to another interpreter. Nearly all of the immutable builtin objects are either directly shared or copied efficiently. For example:" msgstr "" -#: ../../library/concurrent.interpreters.rst:189 msgid ":const:`None`" msgstr "" -#: ../../library/concurrent.interpreters.rst:190 msgid ":class:`bool` (:const:`True` and :const:`False`)" msgstr "" -#: ../../library/concurrent.interpreters.rst:191 msgid ":class:`bytes`" msgstr "" -#: ../../library/concurrent.interpreters.rst:192 msgid ":class:`str`" msgstr "" -#: ../../library/concurrent.interpreters.rst:193 msgid ":class:`int`" msgstr "" -#: ../../library/concurrent.interpreters.rst:194 msgid ":class:`float`" msgstr "" -#: ../../library/concurrent.interpreters.rst:195 msgid ":class:`tuple` (of similarly supported objects)" msgstr "" -#: ../../library/concurrent.interpreters.rst:197 -msgid "" -"There is a small number of Python types that actually share mutable data " -"between interpreters:" +msgid "There is a small number of Python types that actually share mutable data between interpreters:" msgstr "" -#: ../../library/concurrent.interpreters.rst:200 msgid ":class:`memoryview`" msgstr "" -#: ../../library/concurrent.interpreters.rst:201 msgid ":class:`Queue`" msgstr "" -#: ../../library/concurrent.interpreters.rst:205 msgid "Reference" msgstr "" -#: ../../library/concurrent.interpreters.rst:207 msgid "This module defines the following functions:" msgstr "" -#: ../../library/concurrent.interpreters.rst:211 -msgid "" -"Return a :class:`list` of :class:`Interpreter` objects, one for each " -"existing interpreter." +msgid "Return a :class:`list` of :class:`Interpreter` objects, one for each existing interpreter." msgstr "" -#: ../../library/concurrent.interpreters.rst:216 -msgid "" -"Return an :class:`Interpreter` object for the currently running interpreter." +msgid "Return an :class:`Interpreter` object for the currently running interpreter." msgstr "" -#: ../../library/concurrent.interpreters.rst:221 -msgid "" -"Return an :class:`Interpreter` object for the main interpreter. This is the " -"interpreter the runtime created to run the :term:`REPL` or the script given " -"at the command-line. It is usually the only one." +msgid "Return an :class:`Interpreter` object for the main interpreter. This is the interpreter the runtime created to run the :term:`REPL` or the script given at the command-line. It is usually the only one." msgstr "" -#: ../../library/concurrent.interpreters.rst:227 -msgid "" -"Initialize a new (idle) Python interpreter and return a :class:`Interpreter` " -"object for it." +msgid "Initialize a new (idle) Python interpreter and return a :class:`Interpreter` object for it." msgstr "" -#: ../../library/concurrent.interpreters.rst:232 -msgid "" -"Initialize a new cross-interpreter queue and return a :class:`Queue` object " -"for it." +msgid "Initialize a new cross-interpreter queue and return a :class:`Queue` object for it." msgstr "" -#: ../../library/concurrent.interpreters.rst:237 msgid "Interpreter objects" msgstr "" -#: ../../library/concurrent.interpreters.rst:241 msgid "A single interpreter in the current process." msgstr "" -#: ../../library/concurrent.interpreters.rst:243 -msgid "" -"Generally, :class:`Interpreter` shouldn't be called directly. Instead, " -"use :func:`create` or one of the other module functions." +msgid "Generally, :class:`Interpreter` shouldn't be called directly. Instead, use :func:`create` or one of the other module functions." msgstr "" -#: ../../library/concurrent.interpreters.rst:248 -#: ../../library/concurrent.interpreters.rst:254 -#: ../../library/concurrent.interpreters.rst:333 msgid "(read-only)" msgstr "" -#: ../../library/concurrent.interpreters.rst:250 msgid "The underlying interpreter's ID." msgstr "" -#: ../../library/concurrent.interpreters.rst:256 msgid "A string describing where the interpreter came from." msgstr "" -#: ../../library/concurrent.interpreters.rst:260 -msgid "" -"Return ``True`` if the interpreter is currently executing code in its :mod:`!" -"__main__` module and ``False`` otherwise." +msgid "Return ``True`` if the interpreter is currently executing code in its :mod:`!__main__` module and ``False`` otherwise." msgstr "" -#: ../../library/concurrent.interpreters.rst:265 msgid "Finalize and destroy the interpreter." msgstr "" -#: ../../library/concurrent.interpreters.rst:269 msgid "Bind objects in the interpreter's :mod:`!__main__` module." msgstr "" -#: ../../library/concurrent.interpreters.rst:271 -#: ../../library/concurrent.interpreters.rst:328 -msgid "" -"Some objects are actually shared and some are copied efficiently, but most " -"are copied via :mod:`pickle`. See :ref:`interp-object-sharing`." +msgid "Some objects are actually shared and some are copied efficiently, but most are copied via :mod:`pickle`. See :ref:`interp-object-sharing`." msgstr "" -#: ../../library/concurrent.interpreters.rst:276 msgid "Run the given source code in the interpreter (in the current thread)." msgstr "" -#: ../../library/concurrent.interpreters.rst:280 -msgid "" -"Return the result of calling running the given function in the interpreter " -"(in the current thread)." +msgid "Return the result of calling running the given function in the interpreter (in the current thread)." msgstr "" -#: ../../library/concurrent.interpreters.rst:287 msgid "Run the given function in the interpreter (in a new thread)." msgstr "" -#: ../../library/concurrent.interpreters.rst:290 msgid "Exceptions" msgstr "" -#: ../../library/concurrent.interpreters.rst:294 -msgid "" -"This exception, a subclass of :exc:`Exception`, is raised when an " -"interpreter-related error happens." +msgid "This exception, a subclass of :exc:`Exception`, is raised when an interpreter-related error happens." msgstr "" -#: ../../library/concurrent.interpreters.rst:299 -msgid "" -"This exception, a subclass of :exc:`InterpreterError`, is raised when the " -"targeted interpreter no longer exists." +msgid "This exception, a subclass of :exc:`InterpreterError`, is raised when the targeted interpreter no longer exists." msgstr "" -#: ../../library/concurrent.interpreters.rst:304 -msgid "" -"This exception, a subclass of :exc:`InterpreterError`, is raised when the " -"running code raised an uncaught exception." +msgid "This exception, a subclass of :exc:`InterpreterError`, is raised when the running code raised an uncaught exception." msgstr "" -#: ../../library/concurrent.interpreters.rst:309 msgid "A basic snapshot of the exception raised in the other interpreter." msgstr "" -#: ../../library/concurrent.interpreters.rst:315 -msgid "" -"This exception, a subclass of :exc:`TypeError`, is raised when an object " -"cannot be sent to another interpreter." +msgid "This exception, a subclass of :exc:`TypeError`, is raised when an object cannot be sent to another interpreter." msgstr "" -#: ../../library/concurrent.interpreters.rst:320 msgid "Communicating Between Interpreters" msgstr "" -#: ../../library/concurrent.interpreters.rst:324 -msgid "" -"A wrapper around a low-level, cross-interpreter queue, which implements " -"the :class:`queue.Queue` interface. The underlying queue can only be " -"created through :func:`create_queue`." +msgid "A wrapper around a low-level, cross-interpreter queue, which implements the :class:`queue.Queue` interface. The underlying queue can only be created through :func:`create_queue`." msgstr "" -#: ../../library/concurrent.interpreters.rst:335 msgid "The queue's ID." msgstr "" -#: ../../library/concurrent.interpreters.rst:340 -msgid "" -"This exception, a subclass of :exc:`queue.Empty`, is raised from :meth:`!" -"Queue.get` and :meth:`!Queue.get_nowait` when the queue is empty." +msgid "This exception, a subclass of :exc:`queue.Empty`, is raised from :meth:`!Queue.get` and :meth:`!Queue.get_nowait` when the queue is empty." msgstr "" -#: ../../library/concurrent.interpreters.rst:346 -msgid "" -"This exception, a subclass of :exc:`queue.Full`, is raised from :meth:`!" -"Queue.put` and :meth:`!Queue.put_nowait` when the queue is full." +msgid "This exception, a subclass of :exc:`queue.Full`, is raised from :meth:`!Queue.put` and :meth:`!Queue.put_nowait` when the queue is full." msgstr "" -#: ../../library/concurrent.interpreters.rst:352 msgid "Basic usage" msgstr "" -#: ../../library/concurrent.interpreters.rst:354 msgid "Creating an interpreter and running code in it::" msgstr "" -#: ../../library/concurrent.interpreters.rst:356 msgid "" "from concurrent import interpreters\n" "\n" diff --git a/library/concurrent.po b/library/concurrent.po index 6f858e4b..201fcca2 100644 --- a/library/concurrent.po +++ b/library/concurrent.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:57+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,19 +21,14 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/concurrent.rst:2 msgid "The :mod:`!concurrent` package" msgstr "" -#: ../../library/concurrent.rst:4 msgid "This package contains the following modules:" msgstr "" -#: ../../library/concurrent.rst:6 msgid ":mod:`concurrent.futures` -- Launching parallel tasks" msgstr "" -#: ../../library/concurrent.rst:7 -msgid "" -":mod:`concurrent.interpreters` -- Multiple interpreters in the same process" +msgid ":mod:`concurrent.interpreters` -- Multiple interpreters in the same process" msgstr "" diff --git a/library/configparser.po b/library/configparser.po index 57080bd0..3d18e8bf 100644 --- a/library/configparser.po +++ b/library/configparser.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:57+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,67 +23,42 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/configparser.rst:2 msgid ":mod:`!configparser` --- Configuration file parser" msgstr "" -#: ../../library/configparser.rst:14 msgid "**Source code:** :source:`Lib/configparser.py`" msgstr "" -#: ../../library/configparser.rst:24 -msgid "" -"This module provides the :class:`ConfigParser` class which implements a " -"basic configuration language which provides a structure similar to what's " -"found in Microsoft Windows INI files. You can use this to write Python " -"programs which can be customized by end users easily." +msgid "This module provides the :class:`ConfigParser` class which implements a basic configuration language which provides a structure similar to what's found in Microsoft Windows INI files. You can use this to write Python programs which can be customized by end users easily." msgstr "" -#: ../../library/configparser.rst:31 -msgid "" -"This library does *not* interpret or write the value-type prefixes used in " -"the Windows Registry extended version of INI syntax." +msgid "This library does *not* interpret or write the value-type prefixes used in the Windows Registry extended version of INI syntax." msgstr "" -#: ../../library/configparser.rst:36 msgid "Module :mod:`tomllib`" msgstr "" -#: ../../library/configparser.rst:37 -msgid "" -"TOML is a well-specified format for application configuration files. It is " -"specifically designed to be an improved version of INI." +msgid "TOML is a well-specified format for application configuration files. It is specifically designed to be an improved version of INI." msgstr "" -#: ../../library/configparser.rst:40 msgid "Module :mod:`shlex`" msgstr "" -#: ../../library/configparser.rst:41 -msgid "" -"Support for creating Unix shell-like mini-languages which can also be used " -"for application configuration files." +msgid "Support for creating Unix shell-like mini-languages which can also be used for application configuration files." msgstr "" -#: ../../library/configparser.rst:44 msgid "Module :mod:`json`" msgstr "" -#: ../../library/configparser.rst:45 -msgid "" -"The ``json`` module implements a subset of JavaScript syntax which is " -"sometimes used for configuration, but does not support comments." +msgid "The ``json`` module implements a subset of JavaScript syntax which is sometimes used for configuration, but does not support comments." msgstr "" -#: ../../library/configparser.rst:61 msgid "Quick Start" msgstr "" -#: ../../library/configparser.rst:63 msgid "Let's take a very basic configuration file that looks like this:" msgstr "" -#: ../../library/configparser.rst:65 msgid "" "[DEFAULT]\n" "ServerAliveInterval = 45\n" @@ -99,16 +74,9 @@ msgid "" "ForwardX11 = no" msgstr "" -#: ../../library/configparser.rst:80 -msgid "" -"The structure of INI files is described `in the following section " -"<#supported-ini-file-structure>`_. Essentially, the file consists of " -"sections, each of which contains keys with values. :mod:`!configparser` " -"classes can read and write such files. Let's start by creating the above " -"configuration file programmatically." +msgid "The structure of INI files is described `in the following section <#supported-ini-file-structure>`_. Essentially, the file consists of sections, each of which contains keys with values. :mod:`!configparser` classes can read and write such files. Let's start by creating the above configuration file programmatically." msgstr "" -#: ../../library/configparser.rst:86 msgid "" ">>> import configparser\n" ">>> config = configparser.ConfigParser()\n" @@ -127,20 +95,12 @@ msgid "" "..." msgstr "" -#: ../../library/configparser.rst:104 -msgid "" -"As you can see, we can treat a config parser much like a dictionary. There " -"are differences, `outlined later <#mapping-protocol-access>`_, but the " -"behavior is very close to what you would expect from a dictionary." +msgid "As you can see, we can treat a config parser much like a dictionary. There are differences, `outlined later <#mapping-protocol-access>`_, but the behavior is very close to what you would expect from a dictionary." msgstr "" -#: ../../library/configparser.rst:108 -msgid "" -"Now that we have created and saved a configuration file, let's read it back " -"and explore the data it holds." +msgid "Now that we have created and saved a configuration file, let's read it back and explore the data it holds." msgstr "" -#: ../../library/configparser.rst:111 msgid "" ">>> config = configparser.ConfigParser()\n" ">>> config.sections()\n" @@ -173,31 +133,17 @@ msgid "" "'yes'" msgstr "" -#: ../../library/configparser.rst:143 -msgid "" -"As we can see above, the API is pretty straightforward. The only bit of " -"magic involves the ``DEFAULT`` section which provides default values for all " -"other sections [1]_. Note also that keys in sections are case-insensitive " -"and stored in lowercase [1]_." +msgid "As we can see above, the API is pretty straightforward. The only bit of magic involves the ``DEFAULT`` section which provides default values for all other sections [1]_. Note also that keys in sections are case-insensitive and stored in lowercase [1]_." msgstr "" -#: ../../library/configparser.rst:148 ../../library/configparser.rst:1003 -msgid "" -"It is possible to read several configurations into a " -"single :class:`ConfigParser`, where the most recently added configuration " -"has the highest priority. Any conflicting keys are taken from the more " -"recent configuration while the previously existing keys are retained. The " -"example below reads in an ``override.ini`` file, which will override any " -"conflicting keys from the ``example.ini`` file." +msgid "It is possible to read several configurations into a single :class:`ConfigParser`, where the most recently added configuration has the highest priority. Any conflicting keys are taken from the more recent configuration while the previously existing keys are retained. The example below reads in an ``override.ini`` file, which will override any conflicting keys from the ``example.ini`` file." msgstr "" -#: ../../library/configparser.rst:155 ../../library/configparser.rst:1010 msgid "" "[DEFAULT]\n" "ServerAliveInterval = -1" msgstr "" -#: ../../library/configparser.rst:160 ../../library/configparser.rst:1015 msgid "" ">>> config_override = configparser.ConfigParser()\n" ">>> config_override['DEFAULT'] = {'ServerAliveInterval': '-1'}\n" @@ -211,24 +157,15 @@ msgid "" "-1" msgstr "" -#: ../../library/configparser.rst:174 -msgid "" -"This behaviour is equivalent to a :meth:`ConfigParser.read` call with " -"several files passed to the *filenames* parameter." +msgid "This behaviour is equivalent to a :meth:`ConfigParser.read` call with several files passed to the *filenames* parameter." msgstr "" -#: ../../library/configparser.rst:179 msgid "Supported Datatypes" msgstr "" -#: ../../library/configparser.rst:181 -msgid "" -"Config parsers do not guess datatypes of values in configuration files, " -"always storing them internally as strings. This means that if you need " -"other datatypes, you should convert on your own:" +msgid "Config parsers do not guess datatypes of values in configuration files, always storing them internally as strings. This means that if you need other datatypes, you should convert on your own:" msgstr "" -#: ../../library/configparser.rst:185 msgid "" ">>> int(topsecret['Port'])\n" "50022\n" @@ -236,18 +173,9 @@ msgid "" "9.0" msgstr "" -#: ../../library/configparser.rst:192 -msgid "" -"Since this task is so common, config parsers provide a range of handy getter " -"methods to handle integers, floats and booleans. The last one is the most " -"interesting because simply passing the value to ``bool()`` would do no good " -"since ``bool('False')`` is still ``True``. This is why config parsers also " -"provide :meth:`~ConfigParser.getboolean`. This method is case-insensitive " -"and recognizes Boolean values from ``'yes'``/``'no'``, ``'on'``/``'off'``, " -"``'true'``/``'false'`` and ``'1'``/``'0'`` [1]_. For example:" +msgid "Since this task is so common, config parsers provide a range of handy getter methods to handle integers, floats and booleans. The last one is the most interesting because simply passing the value to ``bool()`` would do no good since ``bool('False')`` is still ``True``. This is why config parsers also provide :meth:`~ConfigParser.getboolean`. This method is case-insensitive and recognizes Boolean values from ``'yes'``/``'no'``, ``'on'``/``'off'``, ``'true'``/``'false'`` and ``'1'``/``'0'`` [1]_. For example:" msgstr "" -#: ../../library/configparser.rst:200 msgid "" ">>> topsecret.getboolean('ForwardX11')\n" "False\n" @@ -257,25 +185,15 @@ msgid "" "True" msgstr "" -#: ../../library/configparser.rst:209 -msgid "" -"Apart from :meth:`~ConfigParser.getboolean`, config parsers also provide " -"equivalent :meth:`~ConfigParser.getint` and :meth:`~ConfigParser.getfloat` " -"methods. You can register your own converters and customize the provided " -"ones. [1]_" +msgid "Apart from :meth:`~ConfigParser.getboolean`, config parsers also provide equivalent :meth:`~ConfigParser.getint` and :meth:`~ConfigParser.getfloat` methods. You can register your own converters and customize the provided ones. [1]_" msgstr "" -#: ../../library/configparser.rst:215 msgid "Fallback Values" msgstr "" -#: ../../library/configparser.rst:217 -msgid "" -"As with a dictionary, you can use a section's :meth:`~ConfigParser.get` " -"method to provide fallback values:" +msgid "As with a dictionary, you can use a section's :meth:`~ConfigParser.get` method to provide fallback values:" msgstr "" -#: ../../library/configparser.rst:220 msgid "" ">>> topsecret.get('Port')\n" "'50022'\n" @@ -286,44 +204,26 @@ msgid "" "'3des-cbc'" msgstr "" -#: ../../library/configparser.rst:230 -msgid "" -"Please note that default values have precedence over fallback values. For " -"instance, in our example the ``'CompressionLevel'`` key was specified only " -"in the ``'DEFAULT'`` section. If we try to get it from the section " -"``'topsecret.server.example'``, we will always get the default, even if we " -"specify a fallback:" +msgid "Please note that default values have precedence over fallback values. For instance, in our example the ``'CompressionLevel'`` key was specified only in the ``'DEFAULT'`` section. If we try to get it from the section ``'topsecret.server.example'``, we will always get the default, even if we specify a fallback:" msgstr "" -#: ../../library/configparser.rst:236 msgid "" ">>> topsecret.get('CompressionLevel', '3')\n" "'9'" msgstr "" -#: ../../library/configparser.rst:241 -msgid "" -"One more thing to be aware of is that the parser-" -"level :meth:`~ConfigParser.get` method provides a custom, more complex " -"interface, maintained for backwards compatibility. When using this method, " -"a fallback value can be provided via the ``fallback`` keyword-only argument:" +msgid "One more thing to be aware of is that the parser-level :meth:`~ConfigParser.get` method provides a custom, more complex interface, maintained for backwards compatibility. When using this method, a fallback value can be provided via the ``fallback`` keyword-only argument:" msgstr "" -#: ../../library/configparser.rst:246 msgid "" ">>> config.get('forge.example', 'monster',\n" "... fallback='No such things as monsters')\n" "'No such things as monsters'" msgstr "" -#: ../../library/configparser.rst:252 -msgid "" -"The same ``fallback`` argument can be used with " -"the :meth:`~ConfigParser.getint`, :meth:`~ConfigParser.getfloat` " -"and :meth:`~ConfigParser.getboolean` methods, for example:" +msgid "The same ``fallback`` argument can be used with the :meth:`~ConfigParser.getint`, :meth:`~ConfigParser.getfloat` and :meth:`~ConfigParser.getboolean` methods, for example:" msgstr "" -#: ../../library/configparser.rst:256 msgid "" ">>> 'BatchMode' in topsecret\n" "False\n" @@ -334,49 +234,24 @@ msgid "" "False" msgstr "" -#: ../../library/configparser.rst:268 msgid "Supported INI File Structure" msgstr "" -#: ../../library/configparser.rst:270 -msgid "" -"A configuration file consists of sections, each led by a ``[section]`` " -"header, followed by key/value entries separated by a specific string (``=`` " -"or ``:`` by default [1]_). By default, section names are case sensitive but " -"keys are not [1]_. Leading and trailing whitespace is removed from keys and " -"values. Values can be omitted if the parser is configured to allow it [1]_, " -"in which case the key/value delimiter may also be left out. Values can also " -"span multiple lines, as long as they are indented deeper than the first line " -"of the value. Depending on the parser's mode, blank lines may be treated as " -"parts of multiline values or ignored." -msgstr "" - -#: ../../library/configparser.rst:280 -msgid "" -"By default, a valid section name can be any string that does not contain '\\" -"\\n'. To change this, see :attr:`ConfigParser.SECTCRE`." +msgid "A configuration file consists of sections, each led by a ``[section]`` header, followed by key/value entries separated by a specific string (``=`` or ``:`` by default [1]_). By default, section names are case sensitive but keys are not [1]_. Leading and trailing whitespace is removed from keys and values. Values can be omitted if the parser is configured to allow it [1]_, in which case the key/value delimiter may also be left out. Values can also span multiple lines, as long as they are indented deeper than the first line of the value. Depending on the parser's mode, blank lines may be treated as parts of multiline values or ignored." msgstr "" -#: ../../library/configparser.rst:283 -msgid "" -"The first section name may be omitted if the parser is configured to allow " -"an unnamed top level section with ``allow_unnamed_section=True``. In this " -"case, the keys/values may be retrieved by :const:`UNNAMED_SECTION` as in " -"``config[UNNAMED_SECTION]``." +msgid "By default, a valid section name can be any string that does not contain '\\\\n'. To change this, see :attr:`ConfigParser.SECTCRE`." msgstr "" -#: ../../library/configparser.rst:288 -msgid "" -"Configuration files may include comments, prefixed by specific characters " -"(``#`` and ``;`` by default [1]_). Comments may appear on their own on an " -"otherwise empty line, possibly indented. [1]_" +msgid "The first section name may be omitted if the parser is configured to allow an unnamed top level section with ``allow_unnamed_section=True``. In this case, the keys/values may be retrieved by :const:`UNNAMED_SECTION` as in ``config[UNNAMED_SECTION]``." +msgstr "" + +msgid "Configuration files may include comments, prefixed by specific characters (``#`` and ``;`` by default [1]_). Comments may appear on their own on an otherwise empty line, possibly indented. [1]_" msgstr "" -#: ../../library/configparser.rst:292 ../../library/configparser.rst:376 msgid "For example:" msgstr "" -#: ../../library/configparser.rst:294 msgid "" "[Simple Values]\n" "key=value\n" @@ -421,17 +296,12 @@ msgid "" " # Did I mention we can indent comments, too?" msgstr "" -#: ../../library/configparser.rst:342 msgid "Unnamed Sections" msgstr "" -#: ../../library/configparser.rst:344 -msgid "" -"The name of the first section (or unique) may be omitted and values " -"retrieved by the :const:`UNNAMED_SECTION` attribute." +msgid "The name of the first section (or unique) may be omitted and values retrieved by the :const:`UNNAMED_SECTION` attribute." msgstr "" -#: ../../library/configparser.rst:347 msgid "" ">>> config = \"\"\"\n" "... option = value\n" @@ -445,26 +315,15 @@ msgid "" "'value'" msgstr "" -#: ../../library/configparser.rst:361 msgid "Interpolation of values" msgstr "" -#: ../../library/configparser.rst:363 -msgid "" -"On top of the core functionality, :class:`ConfigParser` supports " -"interpolation. This means values can be preprocessed before returning them " -"from ``get()`` calls." +msgid "On top of the core functionality, :class:`ConfigParser` supports interpolation. This means values can be preprocessed before returning them from ``get()`` calls." msgstr "" -#: ../../library/configparser.rst:371 -msgid "" -"The default implementation used by :class:`ConfigParser`. It enables values " -"to contain format strings which refer to other values in the same section, " -"or values in the special default section [1]_. Additional default values " -"can be provided on initialization." +msgid "The default implementation used by :class:`ConfigParser`. It enables values to contain format strings which refer to other values in the same section, or values in the special default section [1]_. Additional default values can be provided on initialization." msgstr "" -#: ../../library/configparser.rst:378 msgid "" "[Paths]\n" "home_dir: /Users\n" @@ -472,45 +331,22 @@ msgid "" "my_pictures: %(my_dir)s/Pictures\n" "\n" "[Escape]\n" -"# use a %% to escape the % sign (% is the only character that needs to be " -"escaped):\n" +"# use a %% to escape the % sign (% is the only character that needs to be escaped):\n" "gain: 80%%" msgstr "" -#: ../../library/configparser.rst:389 -msgid "" -"In the example above, :class:`ConfigParser` with *interpolation* set to " -"``BasicInterpolation()`` would resolve ``%(home_dir)s`` to the value of " -"``home_dir`` (``/Users`` in this case). ``%(my_dir)s`` in effect would " -"resolve to ``/Users/lumberjack``. All interpolations are done on demand so " -"keys used in the chain of references do not have to be specified in any " -"specific order in the configuration file." +msgid "In the example above, :class:`ConfigParser` with *interpolation* set to ``BasicInterpolation()`` would resolve ``%(home_dir)s`` to the value of ``home_dir`` (``/Users`` in this case). ``%(my_dir)s`` in effect would resolve to ``/Users/lumberjack``. All interpolations are done on demand so keys used in the chain of references do not have to be specified in any specific order in the configuration file." msgstr "" -#: ../../library/configparser.rst:396 -msgid "" -"With ``interpolation`` set to ``None``, the parser would simply return ``%" -"(my_dir)s/Pictures`` as the value of ``my_pictures`` and ``%(home_dir)s/" -"lumberjack`` as the value of ``my_dir``." +msgid "With ``interpolation`` set to ``None``, the parser would simply return ``%(my_dir)s/Pictures`` as the value of ``my_pictures`` and ``%(home_dir)s/lumberjack`` as the value of ``my_dir``." msgstr "" -#: ../../library/configparser.rst:404 -msgid "" -"An alternative handler for interpolation which implements a more advanced " -"syntax, used for instance in ``zc.buildout``. Extended interpolation is " -"using ``${section:option}`` to denote a value from a foreign section. " -"Interpolation can span multiple levels. For convenience, if the " -"``section:`` part is omitted, interpolation defaults to the current section " -"(and possibly the default values from the special section)." +msgid "An alternative handler for interpolation which implements a more advanced syntax, used for instance in ``zc.buildout``. Extended interpolation is using ``${section:option}`` to denote a value from a foreign section. Interpolation can span multiple levels. For convenience, if the ``section:`` part is omitted, interpolation defaults to the current section (and possibly the default values from the special section)." msgstr "" -#: ../../library/configparser.rst:411 -msgid "" -"For example, the configuration specified above with basic interpolation, " -"would look like this with extended interpolation:" +msgid "For example, the configuration specified above with basic interpolation, would look like this with extended interpolation:" msgstr "" -#: ../../library/configparser.rst:414 msgid "" "[Paths]\n" "home_dir: /Users\n" @@ -518,16 +354,13 @@ msgid "" "my_pictures: ${my_dir}/Pictures\n" "\n" "[Escape]\n" -"# use a $$ to escape the $ sign ($ is the only character that needs to be " -"escaped):\n" +"# use a $$ to escape the $ sign ($ is the only character that needs to be escaped):\n" "cost: $$80" msgstr "" -#: ../../library/configparser.rst:425 msgid "Values from other sections can be fetched as well:" msgstr "" -#: ../../library/configparser.rst:427 msgid "" "[Common]\n" "home_dir: /Users\n" @@ -547,163 +380,80 @@ msgid "" "python_dir: ${Frameworks:path}/Python/Versions/${Frameworks:Python}" msgstr "" -#: ../../library/configparser.rst:447 msgid "Mapping Protocol Access" msgstr "" -#: ../../library/configparser.rst:451 -msgid "" -"Mapping protocol access is a generic name for functionality that enables " -"using custom objects as if they were dictionaries. In case of :mod:`!" -"configparser`, the mapping interface implementation is using the " -"``parser['section']['option']`` notation." +msgid "Mapping protocol access is a generic name for functionality that enables using custom objects as if they were dictionaries. In case of :mod:`!configparser`, the mapping interface implementation is using the ``parser['section']['option']`` notation." msgstr "" -#: ../../library/configparser.rst:456 -msgid "" -"``parser['section']`` in particular returns a proxy for the section's data " -"in the parser. This means that the values are not copied but they are taken " -"from the original parser on demand. What's even more important is that when " -"values are changed on a section proxy, they are actually mutated in the " -"original parser." +msgid "``parser['section']`` in particular returns a proxy for the section's data in the parser. This means that the values are not copied but they are taken from the original parser on demand. What's even more important is that when values are changed on a section proxy, they are actually mutated in the original parser." msgstr "" -#: ../../library/configparser.rst:462 -msgid "" -":mod:`!configparser` objects behave as close to actual dictionaries as " -"possible. The mapping interface is complete and adheres to " -"the :class:`~collections.abc.MutableMapping` ABC. However, there are a few " -"differences that should be taken into account:" +msgid ":mod:`!configparser` objects behave as close to actual dictionaries as possible. The mapping interface is complete and adheres to the :class:`~collections.abc.MutableMapping` ABC. However, there are a few differences that should be taken into account:" msgstr "" -#: ../../library/configparser.rst:467 -msgid "" -"By default, all keys in sections are accessible in a case-insensitive manner " -"[1]_. E.g. ``for option in parser[\"section\"]`` yields only " -"``optionxform``'ed option key names. This means lowercased keys by " -"default. At the same time, for a section that holds the key ``'a'``, both " -"expressions return ``True``::" +msgid "By default, all keys in sections are accessible in a case-insensitive manner [1]_. E.g. ``for option in parser[\"section\"]`` yields only ``optionxform``'ed option key names. This means lowercased keys by default. At the same time, for a section that holds the key ``'a'``, both expressions return ``True``::" msgstr "" -#: ../../library/configparser.rst:472 msgid "" "\"a\" in parser[\"section\"]\n" "\"A\" in parser[\"section\"]" msgstr "" -#: ../../library/configparser.rst:475 -msgid "" -"All sections include ``DEFAULTSECT`` values as well which means that " -"``.clear()`` on a section may not leave the section visibly empty. This is " -"because default values cannot be deleted from the section (because " -"technically they are not there). If they are overridden in the section, " -"deleting causes the default value to be visible again. Trying to delete a " -"default value causes a :exc:`KeyError`." +msgid "All sections include ``DEFAULTSECT`` values as well which means that ``.clear()`` on a section may not leave the section visibly empty. This is because default values cannot be deleted from the section (because technically they are not there). If they are overridden in the section, deleting causes the default value to be visible again. Trying to delete a default value causes a :exc:`KeyError`." msgstr "" -#: ../../library/configparser.rst:482 msgid "``DEFAULTSECT`` cannot be removed from the parser:" msgstr "" -#: ../../library/configparser.rst:484 msgid "trying to delete it raises :exc:`ValueError`," msgstr "" -#: ../../library/configparser.rst:486 msgid "``parser.clear()`` leaves it intact," msgstr "" -#: ../../library/configparser.rst:488 msgid "``parser.popitem()`` never returns it." msgstr "" -#: ../../library/configparser.rst:490 -msgid "" -"``parser.get(section, option, **kwargs)`` - the second argument is **not** a " -"fallback value. Note however that the section-level ``get()`` methods are " -"compatible both with the mapping protocol and the classic configparser API." +msgid "``parser.get(section, option, **kwargs)`` - the second argument is **not** a fallback value. Note however that the section-level ``get()`` methods are compatible both with the mapping protocol and the classic configparser API." msgstr "" -#: ../../library/configparser.rst:494 -msgid "" -"``parser.items()`` is compatible with the mapping protocol (returns a list " -"of *section_name*, *section_proxy* pairs including the DEFAULTSECT). " -"However, this method can also be invoked with arguments: " -"``parser.items(section, raw, vars)``. The latter call returns a list of " -"*option*, *value* pairs for a specified ``section``, with all interpolations " -"expanded (unless ``raw=True`` is provided)." +msgid "``parser.items()`` is compatible with the mapping protocol (returns a list of *section_name*, *section_proxy* pairs including the DEFAULTSECT). However, this method can also be invoked with arguments: ``parser.items(section, raw, vars)``. The latter call returns a list of *option*, *value* pairs for a specified ``section``, with all interpolations expanded (unless ``raw=True`` is provided)." msgstr "" -#: ../../library/configparser.rst:501 -msgid "" -"The mapping protocol is implemented on top of the existing legacy API so " -"that subclasses overriding the original interface still should have mappings " -"working as expected." +msgid "The mapping protocol is implemented on top of the existing legacy API so that subclasses overriding the original interface still should have mappings working as expected." msgstr "" -#: ../../library/configparser.rst:507 msgid "Customizing Parser Behaviour" msgstr "" -#: ../../library/configparser.rst:509 -msgid "" -"There are nearly as many INI format variants as there are applications using " -"it. :mod:`!configparser` goes a long way to provide support for the largest " -"sensible set of INI styles available. The default functionality is mainly " -"dictated by historical background and it's very likely that you will want to " -"customize some of the features." +msgid "There are nearly as many INI format variants as there are applications using it. :mod:`!configparser` goes a long way to provide support for the largest sensible set of INI styles available. The default functionality is mainly dictated by historical background and it's very likely that you will want to customize some of the features." msgstr "" -#: ../../library/configparser.rst:515 -msgid "" -"The most common way to change the way a specific config parser works is to " -"use the :meth:`!__init__` options:" +msgid "The most common way to change the way a specific config parser works is to use the :meth:`!__init__` options:" msgstr "" -#: ../../library/configparser.rst:518 msgid "*defaults*, default value: ``None``" msgstr "" -#: ../../library/configparser.rst:520 -msgid "" -"This option accepts a dictionary of key-value pairs which will be initially " -"put in the ``DEFAULT`` section. This makes for an elegant way to support " -"concise configuration files that don't specify values which are the same as " -"the documented default." +msgid "This option accepts a dictionary of key-value pairs which will be initially put in the ``DEFAULT`` section. This makes for an elegant way to support concise configuration files that don't specify values which are the same as the documented default." msgstr "" -#: ../../library/configparser.rst:525 -msgid "" -"Hint: if you want to specify default values for a specific section, " -"use :meth:`~ConfigParser.read_dict` before you read the actual file." +msgid "Hint: if you want to specify default values for a specific section, use :meth:`~ConfigParser.read_dict` before you read the actual file." msgstr "" -#: ../../library/configparser.rst:528 msgid "*dict_type*, default value: :class:`dict`" msgstr "" -#: ../../library/configparser.rst:530 -msgid "" -"This option has a major impact on how the mapping protocol will behave and " -"how the written configuration files look. With the standard dictionary, " -"every section is stored in the order they were added to the parser. Same " -"goes for options within sections." +msgid "This option has a major impact on how the mapping protocol will behave and how the written configuration files look. With the standard dictionary, every section is stored in the order they were added to the parser. Same goes for options within sections." msgstr "" -#: ../../library/configparser.rst:535 -msgid "" -"An alternative dictionary type can be used for example to sort sections and " -"options on write-back." +msgid "An alternative dictionary type can be used for example to sort sections and options on write-back." msgstr "" -#: ../../library/configparser.rst:538 -msgid "" -"Please note: there are ways to add a set of key-value pairs in a single " -"operation. When you use a regular dictionary in those operations, the order " -"of the keys will be ordered. For example:" +msgid "Please note: there are ways to add a set of key-value pairs in a single operation. When you use a regular dictionary in those operations, the order of the keys will be ordered. For example:" msgstr "" -#: ../../library/configparser.rst:542 msgid "" ">>> parser = configparser.ConfigParser()\n" ">>> parser.read_dict({'section1': {'key1': 'value1',\n" @@ -722,19 +472,12 @@ msgid "" "['foo', 'bar', 'baz']" msgstr "" -#: ../../library/configparser.rst:560 msgid "*allow_no_value*, default value: ``False``" msgstr "" -#: ../../library/configparser.rst:562 -msgid "" -"Some configuration files are known to include settings without values, but " -"which otherwise conform to the syntax supported by :mod:`!configparser`. " -"The *allow_no_value* parameter to the constructor can be used to indicate " -"that such values should be accepted:" +msgid "Some configuration files are known to include settings without values, but which otherwise conform to the syntax supported by :mod:`!configparser`. The *allow_no_value* parameter to the constructor can be used to indicate that such values should be accepted:" msgstr "" -#: ../../library/configparser.rst:567 msgid "" ">>> import configparser\n" "\n" @@ -765,58 +508,30 @@ msgid "" "KeyError: 'does-not-exist'" msgstr "" -#: ../../library/configparser.rst:597 msgid "*delimiters*, default value: ``('=', ':')``" msgstr "" -#: ../../library/configparser.rst:599 -msgid "" -"Delimiters are substrings that delimit keys from values within a section. " -"The first occurrence of a delimiting substring on a line is considered a " -"delimiter. This means values (but not keys) can contain the delimiters." +msgid "Delimiters are substrings that delimit keys from values within a section. The first occurrence of a delimiting substring on a line is considered a delimiter. This means values (but not keys) can contain the delimiters." msgstr "" -#: ../../library/configparser.rst:603 -msgid "" -"See also the *space_around_delimiters* argument " -"to :meth:`ConfigParser.write`." +msgid "See also the *space_around_delimiters* argument to :meth:`ConfigParser.write`." msgstr "" -#: ../../library/configparser.rst:606 msgid "*comment_prefixes*, default value: ``('#', ';')``" msgstr "" -#: ../../library/configparser.rst:608 msgid "*inline_comment_prefixes*, default value: ``None``" msgstr "" -#: ../../library/configparser.rst:610 -msgid "" -"Comment prefixes are strings that indicate the start of a valid comment " -"within a config file. *comment_prefixes* are used only on otherwise empty " -"lines (optionally indented) whereas *inline_comment_prefixes* can be used " -"after every valid value (e.g. section names, options and empty lines as " -"well). By default inline comments are disabled and ``'#'`` and ``';'`` are " -"used as prefixes for whole line comments." +msgid "Comment prefixes are strings that indicate the start of a valid comment within a config file. *comment_prefixes* are used only on otherwise empty lines (optionally indented) whereas *inline_comment_prefixes* can be used after every valid value (e.g. section names, options and empty lines as well). By default inline comments are disabled and ``'#'`` and ``';'`` are used as prefixes for whole line comments." msgstr "" -#: ../../library/configparser.rst:617 -msgid "" -"In previous versions of :mod:`!configparser` behaviour matched " -"``comment_prefixes=('#',';')`` and ``inline_comment_prefixes=(';',)``." +msgid "In previous versions of :mod:`!configparser` behaviour matched ``comment_prefixes=('#',';')`` and ``inline_comment_prefixes=(';',)``." msgstr "" -#: ../../library/configparser.rst:621 -msgid "" -"Please note that config parsers don't support escaping of comment prefixes " -"so using *inline_comment_prefixes* may prevent users from specifying option " -"values with characters used as comment prefixes. When in doubt, avoid " -"setting *inline_comment_prefixes*. In any circumstances, the only way of " -"storing comment prefix characters at the beginning of a line in multiline " -"values is to interpolate the prefix, for example::" +msgid "Please note that config parsers don't support escaping of comment prefixes so using *inline_comment_prefixes* may prevent users from specifying option values with characters used as comment prefixes. When in doubt, avoid setting *inline_comment_prefixes*. In any circumstances, the only way of storing comment prefix characters at the beginning of a line in multiline values is to interpolate the prefix, for example::" msgstr "" -#: ../../library/configparser.rst:628 msgid "" ">>> from configparser import ConfigParser, ExtendedInterpolation\n" ">>> parser = ConfigParser(interpolation=ExtendedInterpolation())\n" @@ -858,40 +573,21 @@ msgid "" "line #3" msgstr "" -#: ../../library/configparser.rst:667 msgid "*strict*, default value: ``True``" msgstr "" -#: ../../library/configparser.rst:669 -msgid "" -"When set to ``True``, the parser will not allow for any section or option " -"duplicates while reading from a single source " -"(using :meth:`~ConfigParser.read_file`, :meth:`~ConfigParser.read_string` " -"or :meth:`~ConfigParser.read_dict`). It is recommended to use strict " -"parsers in new applications." +msgid "When set to ``True``, the parser will not allow for any section or option duplicates while reading from a single source (using :meth:`~ConfigParser.read_file`, :meth:`~ConfigParser.read_string` or :meth:`~ConfigParser.read_dict`). It is recommended to use strict parsers in new applications." msgstr "" -#: ../../library/configparser.rst:674 -msgid "" -"In previous versions of :mod:`!configparser` behaviour matched " -"``strict=False``." +msgid "In previous versions of :mod:`!configparser` behaviour matched ``strict=False``." msgstr "" -#: ../../library/configparser.rst:678 msgid "*empty_lines_in_values*, default value: ``True``" msgstr "" -#: ../../library/configparser.rst:680 -msgid "" -"In config parsers, values can span multiple lines as long as they are " -"indented more than the key that holds them. By default parsers also let " -"empty lines to be parts of values. At the same time, keys can be " -"arbitrarily indented themselves to improve readability. In consequence, " -"when configuration files get big and complex, it is easy for the user to " -"lose track of the file structure. Take for instance:" +msgid "In config parsers, values can span multiple lines as long as they are indented more than the key that holds them. By default parsers also let empty lines to be parts of values. At the same time, keys can be arbitrarily indented themselves to improve readability. In consequence, when configuration files get big and complex, it is easy for the user to lose track of the file structure. Take for instance:" msgstr "" -#: ../../library/configparser.rst:687 msgid "" "[Section]\n" "key = multiline\n" @@ -900,92 +596,36 @@ msgid "" " this = is still a part of the multiline value of 'key'" msgstr "" -#: ../../library/configparser.rst:695 -msgid "" -"This can be especially problematic for the user to see if she's using a " -"proportional font to edit the file. That is why when your application does " -"not need values with empty lines, you should consider disallowing them. " -"This will make empty lines split keys every time. In the example above, it " -"would produce two keys, ``key`` and ``this``." +msgid "This can be especially problematic for the user to see if she's using a proportional font to edit the file. That is why when your application does not need values with empty lines, you should consider disallowing them. This will make empty lines split keys every time. In the example above, it would produce two keys, ``key`` and ``this``." msgstr "" -#: ../../library/configparser.rst:701 -msgid "" -"*default_section*, default value: ``configparser.DEFAULTSECT`` (that is: " -"``\"DEFAULT\"``)" +msgid "*default_section*, default value: ``configparser.DEFAULTSECT`` (that is: ``\"DEFAULT\"``)" +msgstr "" + +msgid "The convention of allowing a special section of default values for other sections or interpolation purposes is a powerful concept of this library, letting users create complex declarative configurations. This section is normally called ``\"DEFAULT\"`` but this can be customized to point to any other valid section name. Some typical values include: ``\"general\"`` or ``\"common\"``. The name provided is used for recognizing default sections when reading from any source and is used when writing configuration back to a file. Its current value can be retrieved using the ``parser_instance.default_section`` attribute and may be modified at runtime (i.e. to convert files from one format to another)." msgstr "" -#: ../../library/configparser.rst:704 -msgid "" -"The convention of allowing a special section of default values for other " -"sections or interpolation purposes is a powerful concept of this library, " -"letting users create complex declarative configurations. This section is " -"normally called ``\"DEFAULT\"`` but this can be customized to point to any " -"other valid section name. Some typical values include: ``\"general\"`` or " -"``\"common\"``. The name provided is used for recognizing default sections " -"when reading from any source and is used when writing configuration back to " -"a file. Its current value can be retrieved using the " -"``parser_instance.default_section`` attribute and may be modified at runtime " -"(i.e. to convert files from one format to another)." -msgstr "" - -#: ../../library/configparser.rst:715 msgid "*interpolation*, default value: ``configparser.BasicInterpolation``" msgstr "" -#: ../../library/configparser.rst:717 -msgid "" -"Interpolation behaviour may be customized by providing a custom handler " -"through the *interpolation* argument. ``None`` can be used to turn off " -"interpolation completely, ``ExtendedInterpolation()`` provides a more " -"advanced variant inspired by ``zc.buildout``. More on the subject in the " -"`dedicated documentation section <#interpolation-of-" -"values>`_. :class:`RawConfigParser` has a default value of ``None``." +msgid "Interpolation behaviour may be customized by providing a custom handler through the *interpolation* argument. ``None`` can be used to turn off interpolation completely, ``ExtendedInterpolation()`` provides a more advanced variant inspired by ``zc.buildout``. More on the subject in the `dedicated documentation section <#interpolation-of-values>`_. :class:`RawConfigParser` has a default value of ``None``." msgstr "" -#: ../../library/configparser.rst:724 msgid "*converters*, default value: not set" msgstr "" -#: ../../library/configparser.rst:726 -msgid "" -"Config parsers provide option value getters that perform type conversion. " -"By default :meth:`~ConfigParser.getint`, :meth:`~ConfigParser.getfloat`, " -"and :meth:`~ConfigParser.getboolean` are implemented. Should other getters " -"be desirable, users may define them in a subclass or pass a dictionary where " -"each key is a name of the converter and each value is a callable " -"implementing said conversion. For instance, passing ``{'decimal': " -"decimal.Decimal}`` would add :meth:`!getdecimal` on both the parser object " -"and all section proxies. In other words, it will be possible to write both " -"``parser_instance.getdecimal('section', 'key', fallback=0)`` and " -"``parser_instance['section'].getdecimal('key', 0)``." -msgstr "" - -#: ../../library/configparser.rst:737 -msgid "" -"If the converter needs to access the state of the parser, it can be " -"implemented as a method on a config parser subclass. If the name of this " -"method starts with ``get``, it will be available on all section proxies, in " -"the dict-compatible form (see the ``getdecimal()`` example above)." +msgid "Config parsers provide option value getters that perform type conversion. By default :meth:`~ConfigParser.getint`, :meth:`~ConfigParser.getfloat`, and :meth:`~ConfigParser.getboolean` are implemented. Should other getters be desirable, users may define them in a subclass or pass a dictionary where each key is a name of the converter and each value is a callable implementing said conversion. For instance, passing ``{'decimal': decimal.Decimal}`` would add :meth:`!getdecimal` on both the parser object and all section proxies. In other words, it will be possible to write both ``parser_instance.getdecimal('section', 'key', fallback=0)`` and ``parser_instance['section'].getdecimal('key', 0)``." msgstr "" -#: ../../library/configparser.rst:742 -msgid "" -"More advanced customization may be achieved by overriding default values of " -"these parser attributes. The defaults are defined on the classes, so they " -"may be overridden by subclasses or by attribute assignment." +msgid "If the converter needs to access the state of the parser, it can be implemented as a method on a config parser subclass. If the name of this method starts with ``get``, it will be available on all section proxies, in the dict-compatible form (see the ``getdecimal()`` example above)." msgstr "" -#: ../../library/configparser.rst:748 -msgid "" -"By default when using :meth:`~ConfigParser.getboolean`, config parsers " -"consider the following values ``True``: ``'1'``, ``'yes'``, ``'true'``, " -"``'on'`` and the following values ``False``: ``'0'``, ``'no'``, ``'false'``, " -"``'off'``. You can override this by specifying a custom dictionary of " -"strings and their Boolean outcomes. For example:" +msgid "More advanced customization may be achieved by overriding default values of these parser attributes. The defaults are defined on the classes, so they may be overridden by subclasses or by attribute assignment." +msgstr "" + +msgid "By default when using :meth:`~ConfigParser.getboolean`, config parsers consider the following values ``True``: ``'1'``, ``'yes'``, ``'true'``, ``'on'`` and the following values ``False``: ``'0'``, ``'no'``, ``'false'``, ``'off'``. You can override this by specifying a custom dictionary of strings and their Boolean outcomes. For example:" msgstr "" -#: ../../library/configparser.rst:754 msgid "" ">>> custom = configparser.ConfigParser()\n" ">>> custom['section1'] = {'funky': 'nope'}\n" @@ -998,21 +638,12 @@ msgid "" "False" msgstr "" -#: ../../library/configparser.rst:766 -msgid "" -"Other typical Boolean pairs include ``accept``/``reject`` or ``enabled``/" -"``disabled``." +msgid "Other typical Boolean pairs include ``accept``/``reject`` or ``enabled``/``disabled``." msgstr "" -#: ../../library/configparser.rst:772 -msgid "" -"This method transforms option names on every read, get, or set operation. " -"The default converts the name to lowercase. This also means that when a " -"configuration file gets written, all keys will be lowercase. Override this " -"method if that's unsuitable. For example:" +msgid "This method transforms option names on every read, get, or set operation. The default converts the name to lowercase. This also means that when a configuration file gets written, all keys will be lowercase. Override this method if that's unsuitable. For example:" msgstr "" -#: ../../library/configparser.rst:778 msgid "" ">>> config = \"\"\"\n" "... [Section1]\n" @@ -1036,23 +667,12 @@ msgid "" "['AnotherKey']" msgstr "" -#: ../../library/configparser.rst:802 -msgid "" -"The optionxform function transforms option names to a canonical form. This " -"should be an idempotent function: if the name is already in canonical form, " -"it should be returned unchanged." +msgid "The optionxform function transforms option names to a canonical form. This should be an idempotent function: if the name is already in canonical form, it should be returned unchanged." msgstr "" -#: ../../library/configparser.rst:809 -msgid "" -"A compiled regular expression used to parse section headers. The default " -"matches ``[section]`` to the name ``\"section\"``. Whitespace is considered " -"part of the section name, thus ``[ larch ]`` will be read as a section of " -"name ``\" larch \"``. Override this attribute if that's unsuitable. For " -"example:" +msgid "A compiled regular expression used to parse section headers. The default matches ``[section]`` to the name ``\"section\"``. Whitespace is considered part of the section name, thus ``[ larch ]`` will be read as a section of name ``\" larch \"``. Override this attribute if that's unsuitable. For example:" msgstr "" -#: ../../library/configparser.rst:815 msgid "" ">>> import re\n" ">>> config = \"\"\"\n" @@ -1073,31 +693,18 @@ msgid "" "['Section 1', 'Section 2']" msgstr "" -#: ../../library/configparser.rst:837 -msgid "" -"While ConfigParser objects also use an ``OPTCRE`` attribute for recognizing " -"option lines, it's not recommended to override it because that would " -"interfere with constructor options *allow_no_value* and *delimiters*." +msgid "While ConfigParser objects also use an ``OPTCRE`` attribute for recognizing option lines, it's not recommended to override it because that would interfere with constructor options *allow_no_value* and *delimiters*." msgstr "" -#: ../../library/configparser.rst:843 msgid "Legacy API Examples" msgstr "" -#: ../../library/configparser.rst:845 -msgid "" -"Mainly because of backwards compatibility concerns, :mod:`!configparser` " -"provides also a legacy API with explicit ``get``/``set`` methods. While " -"there are valid use cases for the methods outlined below, mapping protocol " -"access is preferred for new projects. The legacy API is at times more " -"advanced, low-level and downright counterintuitive." +msgid "Mainly because of backwards compatibility concerns, :mod:`!configparser` provides also a legacy API with explicit ``get``/``set`` methods. While there are valid use cases for the methods outlined below, mapping protocol access is preferred for new projects. The legacy API is at times more advanced, low-level and downright counterintuitive." msgstr "" -#: ../../library/configparser.rst:851 msgid "An example of writing to a configuration file::" msgstr "" -#: ../../library/configparser.rst:853 msgid "" "import configparser\n" "\n" @@ -1121,11 +728,9 @@ msgid "" " config.write(configfile)" msgstr "" -#: ../../library/configparser.rst:874 msgid "An example of reading the configuration file again::" msgstr "" -#: ../../library/configparser.rst:876 msgid "" "import configparser\n" "\n" @@ -1144,11 +749,9 @@ msgid "" " print(config.get('Section1', 'foo'))" msgstr "" -#: ../../library/configparser.rst:892 msgid "To get interpolation, use :class:`ConfigParser`::" msgstr "" -#: ../../library/configparser.rst:894 msgid "" "import configparser\n" "\n" @@ -1172,8 +775,7 @@ msgid "" "print(cfg.get('Section1', 'foo', fallback='Monty is not.'))\n" " # -> \"Python is fun!\"\n" "\n" -"print(cfg.get('Section1', 'monster', fallback='No such things as " -"monsters.'))\n" +"print(cfg.get('Section1', 'monster', fallback='No such things as monsters.'))\n" " # -> \"No such things as monsters.\"\n" "\n" "# A bare print(cfg.get('Section1', 'monster')) would raise NoOptionError\n" @@ -1183,13 +785,9 @@ msgid "" " # -> None" msgstr "" -#: ../../library/configparser.rst:925 -msgid "" -"Default values are available in both types of ConfigParsers. They are used " -"in interpolation if an option used is not defined elsewhere. ::" +msgid "Default values are available in both types of ConfigParsers. They are used in interpolation if an option used is not defined elsewhere. ::" msgstr "" -#: ../../library/configparser.rst:928 msgid "" "import configparser\n" "\n" @@ -1203,186 +801,84 @@ msgid "" "print(config.get('Section1', 'foo')) # -> \"Life is hard!\"" msgstr "" -#: ../../library/configparser.rst:943 msgid "ConfigParser Objects" msgstr "" -#: ../../library/configparser.rst:953 -msgid "" -"The main configuration parser. When *defaults* is given, it is initialized " -"into the dictionary of intrinsic defaults. When *dict_type* is given, it " -"will be used to create the dictionary objects for the list of sections, for " -"the options within a section, and for the default values." +msgid "The main configuration parser. When *defaults* is given, it is initialized into the dictionary of intrinsic defaults. When *dict_type* is given, it will be used to create the dictionary objects for the list of sections, for the options within a section, and for the default values." msgstr "" -#: ../../library/configparser.rst:958 -msgid "" -"When *delimiters* is given, it is used as the set of substrings that divide " -"keys from values. When *comment_prefixes* is given, it will be used as the " -"set of substrings that prefix comments in otherwise empty lines. Comments " -"can be indented. When *inline_comment_prefixes* is given, it will be used " -"as the set of substrings that prefix comments in non-empty lines." +msgid "When *delimiters* is given, it is used as the set of substrings that divide keys from values. When *comment_prefixes* is given, it will be used as the set of substrings that prefix comments in otherwise empty lines. Comments can be indented. When *inline_comment_prefixes* is given, it will be used as the set of substrings that prefix comments in non-empty lines." msgstr "" -#: ../../library/configparser.rst:964 -msgid "" -"When *strict* is ``True`` (the default), the parser won't allow for any " -"section or option duplicates while reading from a single source (file, " -"string or dictionary), raising :exc:`DuplicateSectionError` " -"or :exc:`DuplicateOptionError`. When *empty_lines_in_values* is ``False`` " -"(default: ``True``), each empty line marks the end of an option. Otherwise, " -"internal empty lines of a multiline option are kept as part of the value. " -"When *allow_no_value* is ``True`` (default: ``False``), options without " -"values are accepted; the value held for these is ``None`` and they are " -"serialized without the trailing delimiter." -msgstr "" - -#: ../../library/configparser.rst:974 -msgid "" -"When *default_section* is given, it specifies the name for the special " -"section holding default values for other sections and interpolation purposes " -"(normally named ``\"DEFAULT\"``). This value can be retrieved and changed " -"at runtime using the ``default_section`` instance attribute. This won't re-" -"evaluate an already parsed config file, but will be used when writing parsed " -"settings to a new config file." +msgid "When *strict* is ``True`` (the default), the parser won't allow for any section or option duplicates while reading from a single source (file, string or dictionary), raising :exc:`DuplicateSectionError` or :exc:`DuplicateOptionError`. When *empty_lines_in_values* is ``False`` (default: ``True``), each empty line marks the end of an option. Otherwise, internal empty lines of a multiline option are kept as part of the value. When *allow_no_value* is ``True`` (default: ``False``), options without values are accepted; the value held for these is ``None`` and they are serialized without the trailing delimiter." msgstr "" -#: ../../library/configparser.rst:981 -msgid "" -"Interpolation behaviour may be customized by providing a custom handler " -"through the *interpolation* argument. ``None`` can be used to turn off " -"interpolation completely, ``ExtendedInterpolation()`` provides a more " -"advanced variant inspired by ``zc.buildout``. More on the subject in the " -"`dedicated documentation section <#interpolation-of-values>`_." +msgid "When *default_section* is given, it specifies the name for the special section holding default values for other sections and interpolation purposes (normally named ``\"DEFAULT\"``). This value can be retrieved and changed at runtime using the ``default_section`` instance attribute. This won't re-evaluate an already parsed config file, but will be used when writing parsed settings to a new config file." msgstr "" -#: ../../library/configparser.rst:987 -msgid "" -"All option names used in interpolation will be passed through " -"the :meth:`optionxform` method just like any other option name reference. " -"For example, using the default implementation of :meth:`optionxform` (which " -"converts option names to lower case), the values ``foo %(bar)s`` and ``foo %" -"(BAR)s`` are equivalent." +msgid "Interpolation behaviour may be customized by providing a custom handler through the *interpolation* argument. ``None`` can be used to turn off interpolation completely, ``ExtendedInterpolation()`` provides a more advanced variant inspired by ``zc.buildout``. More on the subject in the `dedicated documentation section <#interpolation-of-values>`_." msgstr "" -#: ../../library/configparser.rst:993 -msgid "" -"When *converters* is given, it should be a dictionary where each key " -"represents the name of a type converter and each value is a callable " -"implementing the conversion from string to the desired datatype. Every " -"converter gets its own corresponding :meth:`!get*` method on the parser " -"object and section proxies." +msgid "All option names used in interpolation will be passed through the :meth:`optionxform` method just like any other option name reference. For example, using the default implementation of :meth:`optionxform` (which converts option names to lower case), the values ``foo %(bar)s`` and ``foo %(BAR)s`` are equivalent." msgstr "" -#: ../../library/configparser.rst:999 -msgid "" -"When *allow_unnamed_section* is ``True`` (default: ``False``), the first " -"section name can be omitted. See the `\"Unnamed Sections\" section <#unnamed-" -"sections>`_." +msgid "When *converters* is given, it should be a dictionary where each key represents the name of a type converter and each value is a callable implementing the conversion from string to the desired datatype. Every converter gets its own corresponding :meth:`!get*` method on the parser object and section proxies." +msgstr "" + +msgid "When *allow_unnamed_section* is ``True`` (default: ``False``), the first section name can be omitted. See the `\"Unnamed Sections\" section <#unnamed-sections>`_." msgstr "" -#: ../../library/configparser.rst:1028 msgid "The default *dict_type* is :class:`collections.OrderedDict`." msgstr "" -#: ../../library/configparser.rst:1031 ../../library/configparser.rst:1324 -msgid "" -"*allow_no_value*, *delimiters*, *comment_prefixes*, *strict*, " -"*empty_lines_in_values*, *default_section* and *interpolation* were added." +msgid "*allow_no_value*, *delimiters*, *comment_prefixes*, *strict*, *empty_lines_in_values*, *default_section* and *interpolation* were added." msgstr "" -#: ../../library/configparser.rst:1036 ../../library/configparser.rst:1329 msgid "The *converters* argument was added." msgstr "" -#: ../../library/configparser.rst:1039 -msgid "" -"The *defaults* argument is read with :meth:`read_dict`, providing consistent " -"behavior across the parser: non-string keys and values are implicitly " -"converted to strings." +msgid "The *defaults* argument is read with :meth:`read_dict`, providing consistent behavior across the parser: non-string keys and values are implicitly converted to strings." msgstr "" -#: ../../library/configparser.rst:1044 ../../library/configparser.rst:1332 -msgid "" -"The default *dict_type* is :class:`dict`, since it now preserves insertion " -"order." +msgid "The default *dict_type* is :class:`dict`, since it now preserves insertion order." msgstr "" -#: ../../library/configparser.rst:1048 -msgid "" -"Raise a :exc:`MultilineContinuationError` when *allow_no_value* is ``True``, " -"and a key without a value is continued with an indented line." +msgid "Raise a :exc:`MultilineContinuationError` when *allow_no_value* is ``True``, and a key without a value is continued with an indented line." msgstr "" -#: ../../library/configparser.rst:1052 ../../library/configparser.rst:1336 msgid "The *allow_unnamed_section* argument was added." msgstr "" -#: ../../library/configparser.rst:1057 msgid "Return a dictionary containing the instance-wide defaults." msgstr "" -#: ../../library/configparser.rst:1062 -msgid "" -"Return a list of the sections available; the *default section* is not " -"included in the list." +msgid "Return a list of the sections available; the *default section* is not included in the list." msgstr "" -#: ../../library/configparser.rst:1068 -msgid "" -"Add a section named *section* to the instance. If a section by the given " -"name already exists, :exc:`DuplicateSectionError` is raised. If the " -"*default section* name is passed, :exc:`ValueError` is raised. The name of " -"the section must be a string; if not, :exc:`TypeError` is raised." +msgid "Add a section named *section* to the instance. If a section by the given name already exists, :exc:`DuplicateSectionError` is raised. If the *default section* name is passed, :exc:`ValueError` is raised. The name of the section must be a string; if not, :exc:`TypeError` is raised." msgstr "" -#: ../../library/configparser.rst:1073 msgid "Non-string section names raise :exc:`TypeError`." msgstr "" -#: ../../library/configparser.rst:1079 -msgid "" -"Indicates whether the named *section* is present in the configuration. The " -"*default section* is not acknowledged." +msgid "Indicates whether the named *section* is present in the configuration. The *default section* is not acknowledged." msgstr "" -#: ../../library/configparser.rst:1085 msgid "Return a list of options available in the specified *section*." msgstr "" -#: ../../library/configparser.rst:1090 -msgid "" -"If the given *section* exists, and contains the given *option*, " -"return :const:`True`; otherwise return :const:`False`. If the specified " -"*section* is :const:`None` or an empty string, DEFAULT is assumed." +msgid "If the given *section* exists, and contains the given *option*, return :const:`True`; otherwise return :const:`False`. If the specified *section* is :const:`None` or an empty string, DEFAULT is assumed." msgstr "" -#: ../../library/configparser.rst:1097 -msgid "" -"Attempt to read and parse an iterable of filenames, returning a list of " -"filenames which were successfully parsed." +msgid "Attempt to read and parse an iterable of filenames, returning a list of filenames which were successfully parsed." msgstr "" -#: ../../library/configparser.rst:1100 -msgid "" -"If *filenames* is a string, a :class:`bytes` object or a :term:`path-like " -"object`, it is treated as a single filename. If a file named in *filenames* " -"cannot be opened, that file will be ignored. This is designed so that you " -"can specify an iterable of potential configuration file locations (for " -"example, the current directory, the user's home directory, and some system-" -"wide directory), and all existing configuration files in the iterable will " -"be read." +msgid "If *filenames* is a string, a :class:`bytes` object or a :term:`path-like object`, it is treated as a single filename. If a file named in *filenames* cannot be opened, that file will be ignored. This is designed so that you can specify an iterable of potential configuration file locations (for example, the current directory, the user's home directory, and some system-wide directory), and all existing configuration files in the iterable will be read." msgstr "" -#: ../../library/configparser.rst:1109 -msgid "" -"If none of the named files exist, the :class:`ConfigParser` instance will " -"contain an empty dataset. An application which requires initial values to " -"be loaded from a file should load the required file or files " -"using :meth:`read_file` before calling :meth:`read` for any optional files::" +msgid "If none of the named files exist, the :class:`ConfigParser` instance will contain an empty dataset. An application which requires initial values to be loaded from a file should load the required file or files using :meth:`read_file` before calling :meth:`read` for any optional files::" msgstr "" -#: ../../library/configparser.rst:1115 msgid "" "import configparser, os\n" "\n" @@ -1392,424 +888,211 @@ msgid "" " encoding='cp1250')" msgstr "" -#: ../../library/configparser.rst:1122 -msgid "" -"Added the *encoding* parameter. Previously, all files were read using the " -"default encoding for :func:`open`." +msgid "Added the *encoding* parameter. Previously, all files were read using the default encoding for :func:`open`." msgstr "" -#: ../../library/configparser.rst:1126 msgid "The *filenames* parameter accepts a :term:`path-like object`." msgstr "" -#: ../../library/configparser.rst:1129 msgid "The *filenames* parameter accepts a :class:`bytes` object." msgstr "" -#: ../../library/configparser.rst:1135 -msgid "" -"Read and parse configuration data from *f* which must be an iterable " -"yielding Unicode strings (for example files opened in text mode)." +msgid "Read and parse configuration data from *f* which must be an iterable yielding Unicode strings (for example files opened in text mode)." msgstr "" -#: ../../library/configparser.rst:1138 -msgid "" -"Optional argument *source* specifies the name of the file being read. If " -"not given and *f* has a :attr:`!name` attribute, that is used for *source*; " -"the default is ``''``." +msgid "Optional argument *source* specifies the name of the file being read. If not given and *f* has a :attr:`!name` attribute, that is used for *source*; the default is ``''``." msgstr "" -#: ../../library/configparser.rst:1142 msgid "Replaces :meth:`!readfp`." msgstr "" -#: ../../library/configparser.rst:1147 msgid "Parse configuration data from a string." msgstr "" -#: ../../library/configparser.rst:1149 -msgid "" -"Optional argument *source* specifies a context-specific name of the string " -"passed. If not given, ``''`` is used. This should commonly be a " -"filesystem path or a URL." +msgid "Optional argument *source* specifies a context-specific name of the string passed. If not given, ``''`` is used. This should commonly be a filesystem path or a URL." msgstr "" -#: ../../library/configparser.rst:1158 -msgid "" -"Load configuration from any object that provides a dict-like ``items()`` " -"method. Keys are section names, values are dictionaries with keys and " -"values that should be present in the section. If the used dictionary type " -"preserves order, sections and their keys will be added in order. Values are " -"automatically converted to strings." +msgid "Load configuration from any object that provides a dict-like ``items()`` method. Keys are section names, values are dictionaries with keys and values that should be present in the section. If the used dictionary type preserves order, sections and their keys will be added in order. Values are automatically converted to strings." msgstr "" -#: ../../library/configparser.rst:1164 -msgid "" -"Optional argument *source* specifies a context-specific name of the " -"dictionary passed. If not given, ```` is used." +msgid "Optional argument *source* specifies a context-specific name of the dictionary passed. If not given, ```` is used." msgstr "" -#: ../../library/configparser.rst:1167 msgid "This method can be used to copy state between parsers." msgstr "" -#: ../../library/configparser.rst:1174 -msgid "" -"Get an *option* value for the named *section*. If *vars* is provided, it " -"must be a dictionary. The *option* is looked up in *vars* (if provided), " -"*section*, and in *DEFAULTSECT* in that order. If the key is not found and " -"*fallback* is provided, it is used as a fallback value. ``None`` can be " -"provided as a *fallback* value." +msgid "Get an *option* value for the named *section*. If *vars* is provided, it must be a dictionary. The *option* is looked up in *vars* (if provided), *section*, and in *DEFAULTSECT* in that order. If the key is not found and *fallback* is provided, it is used as a fallback value. ``None`` can be provided as a *fallback* value." msgstr "" -#: ../../library/configparser.rst:1180 -msgid "" -"All the ``'%'`` interpolations are expanded in the return values, unless the " -"*raw* argument is true. Values for interpolation keys are looked up in the " -"same manner as the option." +msgid "All the ``'%'`` interpolations are expanded in the return values, unless the *raw* argument is true. Values for interpolation keys are looked up in the same manner as the option." msgstr "" -#: ../../library/configparser.rst:1184 -msgid "" -"Arguments *raw*, *vars* and *fallback* are keyword only to protect users " -"from trying to use the third argument as the *fallback* fallback (especially " -"when using the mapping protocol)." +msgid "Arguments *raw*, *vars* and *fallback* are keyword only to protect users from trying to use the third argument as the *fallback* fallback (especially when using the mapping protocol)." msgstr "" -#: ../../library/configparser.rst:1192 -msgid "" -"A convenience method which coerces the *option* in the specified *section* " -"to an integer. See :meth:`get` for explanation of *raw*, *vars* and " -"*fallback*." +msgid "A convenience method which coerces the *option* in the specified *section* to an integer. See :meth:`get` for explanation of *raw*, *vars* and *fallback*." msgstr "" -#: ../../library/configparser.rst:1199 -msgid "" -"A convenience method which coerces the *option* in the specified *section* " -"to a floating-point number. See :meth:`get` for explanation of *raw*, " -"*vars* and *fallback*." +msgid "A convenience method which coerces the *option* in the specified *section* to a floating-point number. See :meth:`get` for explanation of *raw*, *vars* and *fallback*." msgstr "" -#: ../../library/configparser.rst:1206 -msgid "" -"A convenience method which coerces the *option* in the specified *section* " -"to a Boolean value. Note that the accepted values for the option are " -"``'1'``, ``'yes'``, ``'true'``, and ``'on'``, which cause this method to " -"return ``True``, and ``'0'``, ``'no'``, ``'false'``, and ``'off'``, which " -"cause it to return ``False``. These string values are checked in a case-" -"insensitive manner. Any other value will cause it to " -"raise :exc:`ValueError`. See :meth:`get` for explanation of *raw*, *vars* " -"and *fallback*." +msgid "A convenience method which coerces the *option* in the specified *section* to a Boolean value. Note that the accepted values for the option are ``'1'``, ``'yes'``, ``'true'``, and ``'on'``, which cause this method to return ``True``, and ``'0'``, ``'no'``, ``'false'``, and ``'off'``, which cause it to return ``False``. These string values are checked in a case-insensitive manner. Any other value will cause it to raise :exc:`ValueError`. See :meth:`get` for explanation of *raw*, *vars* and *fallback*." msgstr "" -#: ../../library/configparser.rst:1219 -msgid "" -"When *section* is not given, return a list of *section_name*, " -"*section_proxy* pairs, including DEFAULTSECT." +msgid "When *section* is not given, return a list of *section_name*, *section_proxy* pairs, including DEFAULTSECT." msgstr "" -#: ../../library/configparser.rst:1222 -msgid "" -"Otherwise, return a list of *name*, *value* pairs for the options in the " -"given *section*. Optional arguments have the same meaning as for " -"the :meth:`get` method." +msgid "Otherwise, return a list of *name*, *value* pairs for the options in the given *section*. Optional arguments have the same meaning as for the :meth:`get` method." msgstr "" -#: ../../library/configparser.rst:1226 -msgid "" -"Items present in *vars* no longer appear in the result. The previous " -"behaviour mixed actual parser options with variables provided for " -"interpolation." +msgid "Items present in *vars* no longer appear in the result. The previous behaviour mixed actual parser options with variables provided for interpolation." msgstr "" -#: ../../library/configparser.rst:1234 -msgid "" -"If the given section exists, set the given option to the specified value; " -"otherwise raise :exc:`NoSectionError`. *option* and *value* must be " -"strings; if not, :exc:`TypeError` is raised." +msgid "If the given section exists, set the given option to the specified value; otherwise raise :exc:`NoSectionError`. *option* and *value* must be strings; if not, :exc:`TypeError` is raised." msgstr "" -#: ../../library/configparser.rst:1241 -msgid "" -"Write a representation of the configuration to the specified :term:`file " -"object`, which must be opened in text mode (accepting strings). This " -"representation can be parsed by a future :meth:`read` call. If " -"*space_around_delimiters* is true, delimiters between keys and values are " -"surrounded by spaces." +msgid "Write a representation of the configuration to the specified :term:`file object`, which must be opened in text mode (accepting strings). This representation can be parsed by a future :meth:`read` call. If *space_around_delimiters* is true, delimiters between keys and values are surrounded by spaces." msgstr "" -#: ../../library/configparser.rst:1247 -msgid "" -"Raises InvalidWriteError if this would write a representation which cannot " -"be accurately parsed by a future :meth:`read` call from this parser." +msgid "Raises InvalidWriteError if this would write a representation which cannot be accurately parsed by a future :meth:`read` call from this parser." msgstr "" -#: ../../library/configparser.rst:1253 -msgid "" -"Comments in the original configuration file are not preserved when writing " -"the configuration back. What is considered a comment, depends on the given " -"values for *comment_prefix* and *inline_comment_prefix*." +msgid "Comments in the original configuration file are not preserved when writing the configuration back. What is considered a comment, depends on the given values for *comment_prefix* and *inline_comment_prefix*." msgstr "" -#: ../../library/configparser.rst:1261 -msgid "" -"Remove the specified *option* from the specified *section*. If the section " -"does not exist, raise :exc:`NoSectionError`. If the option existed to be " -"removed, return :const:`True`; otherwise return :const:`False`." +msgid "Remove the specified *option* from the specified *section*. If the section does not exist, raise :exc:`NoSectionError`. If the option existed to be removed, return :const:`True`; otherwise return :const:`False`." msgstr "" -#: ../../library/configparser.rst:1269 -msgid "" -"Remove the specified *section* from the configuration. If the section in " -"fact existed, return ``True``. Otherwise return ``False``." +msgid "Remove the specified *section* from the configuration. If the section in fact existed, return ``True``. Otherwise return ``False``." msgstr "" -#: ../../library/configparser.rst:1275 -msgid "" -"Transforms the option name *option* as found in an input file or as passed " -"in by client code to the form that should be used in the internal " -"structures. The default implementation returns a lower-case version of " -"*option*; subclasses may override this or client code can set an attribute " -"of this name on instances to affect this behavior." +msgid "Transforms the option name *option* as found in an input file or as passed in by client code to the form that should be used in the internal structures. The default implementation returns a lower-case version of *option*; subclasses may override this or client code can set an attribute of this name on instances to affect this behavior." msgstr "" -#: ../../library/configparser.rst:1281 -msgid "" -"You don't need to subclass the parser to use this method, you can also set " -"it on an instance, to a function that takes a string argument and returns a " -"string. Setting it to ``str``, for example, would make option names case " -"sensitive::" +msgid "You don't need to subclass the parser to use this method, you can also set it on an instance, to a function that takes a string argument and returns a string. Setting it to ``str``, for example, would make option names case sensitive::" msgstr "" -#: ../../library/configparser.rst:1286 msgid "" "cfgparser = ConfigParser()\n" "cfgparser.optionxform = str" msgstr "" -#: ../../library/configparser.rst:1289 -msgid "" -"Note that when reading configuration files, whitespace around the option " -"names is stripped before :meth:`optionxform` is called." +msgid "Note that when reading configuration files, whitespace around the option names is stripped before :meth:`optionxform` is called." msgstr "" -#: ../../library/configparser.rst:1295 -msgid "" -"A special object representing a section name used to reference the unnamed " -"section (see :ref:`unnamed-sections`)." +msgid "A special object representing a section name used to reference the unnamed section (see :ref:`unnamed-sections`)." msgstr "" -#: ../../library/configparser.rst:1300 -msgid "" -"The maximum depth for recursive interpolation " -"for :meth:`~configparser.ConfigParser.get` when the *raw* parameter is " -"false. This is relevant only when the default *interpolation* is used." +msgid "The maximum depth for recursive interpolation for :meth:`~configparser.ConfigParser.get` when the *raw* parameter is false. This is relevant only when the default *interpolation* is used." msgstr "" -#: ../../library/configparser.rst:1308 msgid "RawConfigParser Objects" msgstr "" -#: ../../library/configparser.rst:1319 -msgid "" -"Legacy variant of the :class:`ConfigParser`. It has interpolation disabled " -"by default and allows for non-string section names, option names, and values " -"via its unsafe ``add_section`` and ``set`` methods, as well as the legacy " -"``defaults=`` keyword argument handling." +msgid "Legacy variant of the :class:`ConfigParser`. It has interpolation disabled by default and allows for non-string section names, option names, and values via its unsafe ``add_section`` and ``set`` methods, as well as the legacy ``defaults=`` keyword argument handling." msgstr "" -#: ../../library/configparser.rst:1340 -msgid "" -"Consider using :class:`ConfigParser` instead which checks types of the " -"values to be stored internally. If you don't want interpolation, you can " -"use ``ConfigParser(interpolation=None)``." +msgid "Consider using :class:`ConfigParser` instead which checks types of the values to be stored internally. If you don't want interpolation, you can use ``ConfigParser(interpolation=None)``." msgstr "" -#: ../../library/configparser.rst:1347 -msgid "" -"Add a section named *section* or :const:`UNNAMED_SECTION` to the instance." +msgid "Add a section named *section* or :const:`UNNAMED_SECTION` to the instance." msgstr "" -#: ../../library/configparser.rst:1349 -msgid "" -"If the given section already exists, :exc:`DuplicateSectionError` is raised. " -"If the *default section* name is passed, :exc:`ValueError` is raised. " -"If :const:`UNNAMED_SECTION` is passed and support is " -"disabled, :exc:`UnnamedSectionDisabledError` is raised." +msgid "If the given section already exists, :exc:`DuplicateSectionError` is raised. If the *default section* name is passed, :exc:`ValueError` is raised. If :const:`UNNAMED_SECTION` is passed and support is disabled, :exc:`UnnamedSectionDisabledError` is raised." msgstr "" -#: ../../library/configparser.rst:1354 -msgid "" -"Type of *section* is not checked which lets users create non-string named " -"sections. This behaviour is unsupported and may cause internal errors." +msgid "Type of *section* is not checked which lets users create non-string named sections. This behaviour is unsupported and may cause internal errors." msgstr "" -#: ../../library/configparser.rst:1357 msgid "Added support for :const:`UNNAMED_SECTION`." msgstr "" -#: ../../library/configparser.rst:1363 -msgid "" -"If the given section exists, set the given option to the specified value; " -"otherwise raise :exc:`NoSectionError`. While it is possible to " -"use :class:`RawConfigParser` (or :class:`ConfigParser` with *raw* parameters " -"set to true) for *internal* storage of non-string values, full functionality " -"(including interpolation and output to files) can only be achieved using " -"string values." +msgid "If the given section exists, set the given option to the specified value; otherwise raise :exc:`NoSectionError`. While it is possible to use :class:`RawConfigParser` (or :class:`ConfigParser` with *raw* parameters set to true) for *internal* storage of non-string values, full functionality (including interpolation and output to files) can only be achieved using string values." msgstr "" -#: ../../library/configparser.rst:1370 -msgid "" -"This method lets users assign non-string values to keys internally. This " -"behaviour is unsupported and will cause errors when attempting to write to a " -"file or get it in non-raw mode. **Use the mapping protocol API** which does " -"not allow such assignments to take place." +msgid "This method lets users assign non-string values to keys internally. This behaviour is unsupported and will cause errors when attempting to write to a file or get it in non-raw mode. **Use the mapping protocol API** which does not allow such assignments to take place." msgstr "" -#: ../../library/configparser.rst:1377 msgid "Exceptions" msgstr "" -#: ../../library/configparser.rst:1381 msgid "Base class for all other :mod:`!configparser` exceptions." msgstr "" -#: ../../library/configparser.rst:1386 msgid "Exception raised when a specified section is not found." msgstr "" -#: ../../library/configparser.rst:1391 -msgid "" -"Exception raised if :meth:`~ConfigParser.add_section` is called with the " -"name of a section that is already present or in strict parsers when a " -"section if found more than once in a single input file, string or dictionary." +msgid "Exception raised if :meth:`~ConfigParser.add_section` is called with the name of a section that is already present or in strict parsers when a section if found more than once in a single input file, string or dictionary." msgstr "" -#: ../../library/configparser.rst:1395 -msgid "" -"Added the optional *source* and *lineno* attributes and parameters " -"to :meth:`!__init__`." +msgid "Added the optional *source* and *lineno* attributes and parameters to :meth:`!__init__`." msgstr "" -#: ../../library/configparser.rst:1402 -msgid "" -"Exception raised by strict parsers if a single option appears twice during " -"reading from a single file, string or dictionary. This catches misspellings " -"and case sensitivity-related errors, e.g. a dictionary may have two keys " -"representing the same case-insensitive configuration key." +msgid "Exception raised by strict parsers if a single option appears twice during reading from a single file, string or dictionary. This catches misspellings and case sensitivity-related errors, e.g. a dictionary may have two keys representing the same case-insensitive configuration key." msgstr "" -#: ../../library/configparser.rst:1410 -msgid "" -"Exception raised when a specified option is not found in the specified " -"section." +msgid "Exception raised when a specified option is not found in the specified section." msgstr "" -#: ../../library/configparser.rst:1416 -msgid "" -"Base class for exceptions raised when problems occur performing string " -"interpolation." +msgid "Base class for exceptions raised when problems occur performing string interpolation." msgstr "" -#: ../../library/configparser.rst:1422 -msgid "" -"Exception raised when string interpolation cannot be completed because the " -"number of iterations exceeds :const:`MAX_INTERPOLATION_DEPTH`. Subclass " -"of :exc:`InterpolationError`." +msgid "Exception raised when string interpolation cannot be completed because the number of iterations exceeds :const:`MAX_INTERPOLATION_DEPTH`. Subclass of :exc:`InterpolationError`." msgstr "" -#: ../../library/configparser.rst:1429 -msgid "" -"Exception raised when an option referenced from a value does not exist. " -"Subclass of :exc:`InterpolationError`." +msgid "Exception raised when an option referenced from a value does not exist. Subclass of :exc:`InterpolationError`." msgstr "" -#: ../../library/configparser.rst:1435 -msgid "" -"Exception raised when the source text into which substitutions are made does " -"not conform to the required syntax. Subclass of :exc:`InterpolationError`." +msgid "Exception raised when the source text into which substitutions are made does not conform to the required syntax. Subclass of :exc:`InterpolationError`." msgstr "" -#: ../../library/configparser.rst:1441 -msgid "" -"Exception raised when attempting to parse a file which has no section " -"headers." +msgid "Exception raised when attempting to parse a file which has no section headers." msgstr "" -#: ../../library/configparser.rst:1446 msgid "Exception raised when errors occur attempting to parse a file." msgstr "" -#: ../../library/configparser.rst:1448 -msgid "" -"The ``filename`` attribute and :meth:`!__init__` constructor argument were " -"removed. They have been available using the name ``source`` since 3.2." +msgid "The ``filename`` attribute and :meth:`!__init__` constructor argument were removed. They have been available using the name ``source`` since 3.2." msgstr "" -#: ../../library/configparser.rst:1454 -msgid "" -"Exception raised when a key without a corresponding value is continued with " -"an indented line." +msgid "Exception raised when a key without a corresponding value is continued with an indented line." msgstr "" -#: ../../library/configparser.rst:1461 -msgid "" -"Exception raised when attempting to use the :const:`UNNAMED_SECTION` without " -"enabling it." +msgid "Exception raised when attempting to use the :const:`UNNAMED_SECTION` without enabling it." msgstr "" -#: ../../library/configparser.rst:1468 -msgid "" -"Exception raised when an attempted :meth:`ConfigParser.write` would not be " -"parsed accurately with a future :meth:`ConfigParser.read` call." +msgid "Exception raised when an attempted :meth:`ConfigParser.write` would not be parsed accurately with a future :meth:`ConfigParser.read` call." msgstr "" -#: ../../library/configparser.rst:1471 -msgid "" -"Ex: Writing a key beginning with the :attr:`ConfigParser.SECTCRE` pattern " -"would parse as a section header when read. Attempting to write this will " -"raise this exception." +msgid "Ex: Writing a key beginning with the :attr:`ConfigParser.SECTCRE` pattern would parse as a section header when read. Attempting to write this will raise this exception." msgstr "" -#: ../../library/configparser.rst:1478 msgid "Footnotes" msgstr "" -#: ../../library/configparser.rst:1479 -msgid "" -"Config parsers allow for heavy customization. If you are interested in " -"changing the behaviour outlined by the footnote reference, consult the " -"`Customizing Parser Behaviour`_ section." +msgid "Config parsers allow for heavy customization. If you are interested in changing the behaviour outlined by the footnote reference, consult the `Customizing Parser Behaviour`_ section." msgstr "" -#: ../../library/configparser.rst:16 msgid ".ini" msgstr "" -#: ../../library/configparser.rst:16 msgid "file" msgstr "" -#: ../../library/configparser.rst:16 msgid "configuration" msgstr "" -#: ../../library/configparser.rst:16 msgid "ini file" msgstr "" -#: ../../library/configparser.rst:16 msgid "Windows ini file" msgstr "" -#: ../../library/configparser.rst:367 msgid "% (percent)" msgstr "" -#: ../../library/configparser.rst:367 ../../library/configparser.rst:400 msgid "interpolation in configuration files" msgstr "" -#: ../../library/configparser.rst:400 msgid "$ (dollar)" msgstr "" diff --git a/library/constants.po b/library/constants.po index 6f9349dc..96d117c4 100644 --- a/library/constants.po +++ b/library/constants.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:57+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -22,144 +22,68 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/constants.rst:4 msgid "Built-in Constants" msgstr "" -#: ../../library/constants.rst:6 msgid "A small number of constants live in the built-in namespace. They are:" msgstr "" -#: ../../library/constants.rst:10 -msgid "" -"The false value of the :class:`bool` type. Assignments to ``False`` are " -"illegal and raise a :exc:`SyntaxError`." +msgid "The false value of the :class:`bool` type. Assignments to ``False`` are illegal and raise a :exc:`SyntaxError`." msgstr "" -#: ../../library/constants.rst:16 -msgid "" -"The true value of the :class:`bool` type. Assignments to ``True`` are " -"illegal and raise a :exc:`SyntaxError`." +msgid "The true value of the :class:`bool` type. Assignments to ``True`` are illegal and raise a :exc:`SyntaxError`." msgstr "" -#: ../../library/constants.rst:22 -msgid "" -"An object frequently used to represent the absence of a value, as when " -"default arguments are not passed to a function. Assignments to ``None`` are " -"illegal and raise a :exc:`SyntaxError`. ``None`` is the sole instance of " -"the :class:`~types.NoneType` type." +msgid "An object frequently used to represent the absence of a value, as when default arguments are not passed to a function. Assignments to ``None`` are illegal and raise a :exc:`SyntaxError`. ``None`` is the sole instance of the :class:`~types.NoneType` type." msgstr "" -#: ../../library/constants.rst:30 -msgid "" -"A special value which should be returned by the binary special methods " -"(e.g. :meth:`~object.__eq__`, :meth:`~object.__lt__`, :meth:`~object.__add__`, :meth:`~object.__rsub__`, " -"etc.) to indicate that the operation is not implemented with respect to the " -"other type; may be returned by the in-place binary special methods " -"(e.g. :meth:`~object.__imul__`, :meth:`~object.__iand__`, etc.) for the same " -"purpose. It should not be evaluated in a boolean context. :data:`!" -"NotImplemented` is the sole instance of " -"the :class:`types.NotImplementedType` type." +msgid "A special value which should be returned by the binary special methods (e.g. :meth:`~object.__eq__`, :meth:`~object.__lt__`, :meth:`~object.__add__`, :meth:`~object.__rsub__`, etc.) to indicate that the operation is not implemented with respect to the other type; may be returned by the in-place binary special methods (e.g. :meth:`~object.__imul__`, :meth:`~object.__iand__`, etc.) for the same purpose. It should not be evaluated in a boolean context. :data:`!NotImplemented` is the sole instance of the :class:`types.NotImplementedType` type." msgstr "" -#: ../../library/constants.rst:40 -msgid "" -"When a binary (or in-place) method returns :data:`!NotImplemented` the " -"interpreter will try the reflected operation on the other type (or some " -"other fallback, depending on the operator). If all attempts return :data:`!" -"NotImplemented`, the interpreter will raise an appropriate exception. " -"Incorrectly returning :data:`!NotImplemented` will result in a misleading " -"error message or the :data:`!NotImplemented` value being returned to Python " -"code." +msgid "When a binary (or in-place) method returns :data:`!NotImplemented` the interpreter will try the reflected operation on the other type (or some other fallback, depending on the operator). If all attempts return :data:`!NotImplemented`, the interpreter will raise an appropriate exception. Incorrectly returning :data:`!NotImplemented` will result in a misleading error message or the :data:`!NotImplemented` value being returned to Python code." msgstr "" -#: ../../library/constants.rst:47 msgid "See :ref:`implementing-the-arithmetic-operations` for examples." msgstr "" -#: ../../library/constants.rst:51 -msgid "" -":data:`!NotImplemented` and :exc:`!NotImplementedError` are not " -"interchangeable. This constant should only be used as described above; " -"see :exc:`NotImplementedError` for details on correct usage of the exception." +msgid ":data:`!NotImplemented` and :exc:`!NotImplementedError` are not interchangeable. This constant should only be used as described above; see :exc:`NotImplementedError` for details on correct usage of the exception." msgstr "" -#: ../../library/constants.rst:56 msgid "Evaluating :data:`!NotImplemented` in a boolean context was deprecated." msgstr "" -#: ../../library/constants.rst:59 -msgid "" -"Evaluating :data:`!NotImplemented` in a boolean context now raises " -"a :exc:`TypeError`. It previously evaluated to :const:`True` and emitted " -"a :exc:`DeprecationWarning` since Python 3.9." +msgid "Evaluating :data:`!NotImplemented` in a boolean context now raises a :exc:`TypeError`. It previously evaluated to :const:`True` and emitted a :exc:`DeprecationWarning` since Python 3.9." msgstr "" -#: ../../library/constants.rst:68 -msgid "" -"The same as the ellipsis literal \"``...``\", an object frequently used to " -"indicate that something is omitted. Assignment to ``Ellipsis`` is possible, " -"but assignment to ``...`` raises a :exc:`SyntaxError`. ``Ellipsis`` is the " -"sole instance of the :class:`types.EllipsisType` type." +msgid "The same as the ellipsis literal \"``...``\", an object frequently used to indicate that something is omitted. Assignment to ``Ellipsis`` is possible, but assignment to ``...`` raises a :exc:`SyntaxError`. ``Ellipsis`` is the sole instance of the :class:`types.EllipsisType` type." msgstr "" -#: ../../library/constants.rst:76 -msgid "" -"This constant is true if Python was not started with an :option:`-O` option. " -"See also the :keyword:`assert` statement." +msgid "This constant is true if Python was not started with an :option:`-O` option. See also the :keyword:`assert` statement." msgstr "" -#: ../../library/constants.rst:82 -msgid "" -"The names :data:`None`, :data:`False`, :data:`True` and :data:`__debug__` " -"cannot be reassigned (assignments to them, even as an attribute name, " -"raise :exc:`SyntaxError`), so they can be considered \"true\" constants." +msgid "The names :data:`None`, :data:`False`, :data:`True` and :data:`__debug__` cannot be reassigned (assignments to them, even as an attribute name, raise :exc:`SyntaxError`), so they can be considered \"true\" constants." msgstr "" -#: ../../library/constants.rst:90 msgid "Constants added by the :mod:`site` module" msgstr "" -#: ../../library/constants.rst:92 -msgid "" -"The :mod:`site` module (which is imported automatically during startup, " -"except if the :option:`-S` command-line option is given) adds several " -"constants to the built-in namespace. They are useful for the interactive " -"interpreter shell and should not be used in programs." +msgid "The :mod:`site` module (which is imported automatically during startup, except if the :option:`-S` command-line option is given) adds several constants to the built-in namespace. They are useful for the interactive interpreter shell and should not be used in programs." msgstr "" -#: ../../library/constants.rst:100 -msgid "" -"Objects that when printed, print a message like \"Use quit() or Ctrl-D (i.e. " -"EOF) to exit\", and when accessed directly in the interactive interpreter or " -"called as functions, raise :exc:`SystemExit` with the specified exit code." +msgid "Objects that when printed, print a message like \"Use quit() or Ctrl-D (i.e. EOF) to exit\", and when accessed directly in the interactive interpreter or called as functions, raise :exc:`SystemExit` with the specified exit code." msgstr "" -#: ../../library/constants.rst:108 -msgid "" -"Object that when printed, prints the message \"Type help() for interactive " -"help, or help(object) for help about object.\", and when accessed directly " -"in the interactive interpreter, invokes the built-in help system " -"(see :func:`help`)." +msgid "Object that when printed, prints the message \"Type help() for interactive help, or help(object) for help about object.\", and when accessed directly in the interactive interpreter, invokes the built-in help system (see :func:`help`)." msgstr "" -#: ../../library/constants.rst:116 -msgid "" -"Objects that when printed or called, print the text of copyright or credits, " -"respectively." +msgid "Objects that when printed or called, print the text of copyright or credits, respectively." msgstr "" -#: ../../library/constants.rst:121 -msgid "" -"Object that when printed, prints the message \"Type license() to see the " -"full license text\", and when called, displays the full license text in a " -"pager-like fashion (one screen at a time)." +msgid "Object that when printed, prints the message \"Type license() to see the full license text\", and when called, displays the full license text in a pager-like fashion (one screen at a time)." msgstr "" -#: ../../library/constants.rst:65 msgid "..." msgstr "" -#: ../../library/constants.rst:65 msgid "ellipsis literal" msgstr "" diff --git a/library/contextlib.po b/library/contextlib.po index a1de88bd..19003145 100644 --- a/library/contextlib.po +++ b/library/contextlib.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:57+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,73 +24,36 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/contextlib.rst:2 -msgid "" -":mod:`!contextlib` --- Utilities for :keyword:`!with`\\ -statement contexts" +msgid ":mod:`!contextlib` --- Utilities for :keyword:`!with`\\ -statement contexts" msgstr "" -#: ../../library/contextlib.rst:7 msgid "**Source code:** :source:`Lib/contextlib.py`" msgstr "" -#: ../../library/contextlib.rst:11 -msgid "" -"This module provides utilities for common tasks involving " -"the :keyword:`with` statement. For more information see " -"also :ref:`typecontextmanager` and :ref:`context-managers`." +msgid "This module provides utilities for common tasks involving the :keyword:`with` statement. For more information see also :ref:`typecontextmanager` and :ref:`context-managers`." msgstr "" -#: ../../library/contextlib.rst:17 msgid "Utilities" msgstr "" -#: ../../library/contextlib.rst:19 msgid "Functions and classes provided:" msgstr "" -#: ../../library/contextlib.rst:23 -msgid "" -"An :term:`abstract base class` for classes that " -"implement :meth:`~object.__enter__` and :meth:`~object.__exit__`. A default " -"implementation for :meth:`~object.__enter__` is provided which returns " -"``self`` while :meth:`~object.__exit__` is an abstract method which by " -"default returns ``None``. See also the definition " -"of :ref:`typecontextmanager`." +msgid "An :term:`abstract base class` for classes that implement :meth:`~object.__enter__` and :meth:`~object.__exit__`. A default implementation for :meth:`~object.__enter__` is provided which returns ``self`` while :meth:`~object.__exit__` is an abstract method which by default returns ``None``. See also the definition of :ref:`typecontextmanager`." msgstr "" -#: ../../library/contextlib.rst:34 -msgid "" -"An :term:`abstract base class` for classes that " -"implement :meth:`~object.__aenter__` and :meth:`~object.__aexit__`. A " -"default implementation for :meth:`~object.__aenter__` is provided which " -"returns ``self`` while :meth:`~object.__aexit__` is an abstract method which " -"by default returns ``None``. See also the definition of :ref:`async-context-" -"managers`." +msgid "An :term:`abstract base class` for classes that implement :meth:`~object.__aenter__` and :meth:`~object.__aexit__`. A default implementation for :meth:`~object.__aenter__` is provided which returns ``self`` while :meth:`~object.__aexit__` is an abstract method which by default returns ``None``. See also the definition of :ref:`async-context-managers`." msgstr "" -#: ../../library/contextlib.rst:46 -msgid "" -"This function is a :term:`decorator` that can be used to define a factory " -"function for :keyword:`with` statement context managers, without needing to " -"create a class or separate :meth:`~object.__enter__` " -"and :meth:`~object.__exit__` methods." +msgid "This function is a :term:`decorator` that can be used to define a factory function for :keyword:`with` statement context managers, without needing to create a class or separate :meth:`~object.__enter__` and :meth:`~object.__exit__` methods." msgstr "" -#: ../../library/contextlib.rst:50 -msgid "" -"While many objects natively support use in with statements, sometimes a " -"resource needs to be managed that isn't a context manager in its own right, " -"and doesn't implement a ``close()`` method for use with " -"``contextlib.closing``." +msgid "While many objects natively support use in with statements, sometimes a resource needs to be managed that isn't a context manager in its own right, and doesn't implement a ``close()`` method for use with ``contextlib.closing``." msgstr "" -#: ../../library/contextlib.rst:54 -msgid "" -"An abstract example would be the following to ensure correct resource " -"management::" +msgid "An abstract example would be the following to ensure correct resource management::" msgstr "" -#: ../../library/contextlib.rst:57 msgid "" "from contextlib import contextmanager\n" "\n" @@ -105,75 +68,36 @@ msgid "" " release_resource(resource)" msgstr "" -#: ../../library/contextlib.rst:69 msgid "The function can then be used like this::" msgstr "" -#: ../../library/contextlib.rst:71 msgid "" ">>> with managed_resource(timeout=3600) as resource:\n" "... # Resource is released at the end of this block,\n" "... # even if code in the block raises an exception" msgstr "" -#: ../../library/contextlib.rst:75 -msgid "" -"The function being decorated must return a :term:`generator`-iterator when " -"called. This iterator must yield exactly one value, which will be bound to " -"the targets in the :keyword:`with` statement's :keyword:`!as` clause, if any." +msgid "The function being decorated must return a :term:`generator`-iterator when called. This iterator must yield exactly one value, which will be bound to the targets in the :keyword:`with` statement's :keyword:`!as` clause, if any." msgstr "" -#: ../../library/contextlib.rst:79 -msgid "" -"At the point where the generator yields, the block nested in " -"the :keyword:`with` statement is executed. The generator is then resumed " -"after the block is exited. If an unhandled exception occurs in the block, it " -"is reraised inside the generator at the point where the yield occurred. " -"Thus, you can use a :keyword:`try`...\\ :keyword:`except`..." -"\\ :keyword:`finally` statement to trap the error (if any), or ensure that " -"some cleanup takes place. If an exception is trapped merely in order to log " -"it or to perform some action (rather than to suppress it entirely), the " -"generator must reraise that exception. Otherwise the generator context " -"manager will indicate to the :keyword:`!with` statement that the exception " -"has been handled, and execution will resume with the statement immediately " -"following the :keyword:`!with` statement." -msgstr "" - -#: ../../library/contextlib.rst:91 -msgid "" -":deco:`contextmanager` uses :class:`ContextDecorator` so the context " -"managers it creates can be used as decorators as well as in :keyword:`with` " -"statements. When used as a decorator, a new generator instance is implicitly " -"created on each function call (this allows the otherwise \"one-shot\" " -"context managers created by :deco:`contextmanager` to meet the requirement " -"that context managers support multiple invocations in order to be used as " -"decorators)." +msgid "At the point where the generator yields, the block nested in the :keyword:`with` statement is executed. The generator is then resumed after the block is exited. If an unhandled exception occurs in the block, it is reraised inside the generator at the point where the yield occurred. Thus, you can use a :keyword:`try`...\\ :keyword:`except`...\\ :keyword:`finally` statement to trap the error (if any), or ensure that some cleanup takes place. If an exception is trapped merely in order to log it or to perform some action (rather than to suppress it entirely), the generator must reraise that exception. Otherwise the generator context manager will indicate to the :keyword:`!with` statement that the exception has been handled, and execution will resume with the statement immediately following the :keyword:`!with` statement." +msgstr "" + +msgid ":deco:`contextmanager` uses :class:`ContextDecorator` so the context managers it creates can be used as decorators as well as in :keyword:`with` statements. When used as a decorator, a new generator instance is implicitly created on each function call (this allows the otherwise \"one-shot\" context managers created by :deco:`contextmanager` to meet the requirement that context managers support multiple invocations in order to be used as decorators)." msgstr "" -#: ../../library/contextlib.rst:98 msgid "Use of :class:`ContextDecorator`." msgstr "" -#: ../../library/contextlib.rst:104 -msgid "" -"Similar to :deco:`~contextlib.contextmanager`, but creates " -"an :ref:`asynchronous context manager `." +msgid "Similar to :deco:`~contextlib.contextmanager`, but creates an :ref:`asynchronous context manager `." msgstr "" -#: ../../library/contextlib.rst:107 -msgid "" -"This function is a :term:`decorator` that can be used to define a factory " -"function for :keyword:`async with` statement asynchronous context managers, " -"without needing to create a class or separate :meth:`~object.__aenter__` " -"and :meth:`~object.__aexit__` methods. It must be applied to " -"an :term:`asynchronous generator` function." +msgid "This function is a :term:`decorator` that can be used to define a factory function for :keyword:`async with` statement asynchronous context managers, without needing to create a class or separate :meth:`~object.__aenter__` and :meth:`~object.__aexit__` methods. It must be applied to an :term:`asynchronous generator` function." msgstr "" -#: ../../library/contextlib.rst:113 msgid "A simple example::" msgstr "" -#: ../../library/contextlib.rst:115 msgid "" "from contextlib import asynccontextmanager\n" "\n" @@ -190,13 +114,9 @@ msgid "" " return conn.query('SELECT ...')" msgstr "" -#: ../../library/contextlib.rst:131 -msgid "" -"Context managers defined with :deco:`asynccontextmanager` can be used either " -"as decorators or with :keyword:`async with` statements::" +msgid "Context managers defined with :deco:`asynccontextmanager` can be used either as decorators or with :keyword:`async with` statements::" msgstr "" -#: ../../library/contextlib.rst:134 msgid "" "import time\n" "from contextlib import asynccontextmanager\n" @@ -214,27 +134,15 @@ msgid "" " # ... async code ..." msgstr "" -#: ../../library/contextlib.rst:149 -msgid "" -"When used as a decorator, a new generator instance is implicitly created on " -"each function call. This allows the otherwise \"one-shot\" context managers " -"created by :deco:`asynccontextmanager` to meet the requirement that context " -"managers support multiple invocations in order to be used as decorators." +msgid "When used as a decorator, a new generator instance is implicitly created on each function call. This allows the otherwise \"one-shot\" context managers created by :deco:`asynccontextmanager` to meet the requirement that context managers support multiple invocations in order to be used as decorators." msgstr "" -#: ../../library/contextlib.rst:154 -msgid "" -"Async context managers created with :deco:`asynccontextmanager` can be used " -"as decorators." +msgid "Async context managers created with :deco:`asynccontextmanager` can be used as decorators." msgstr "" -#: ../../library/contextlib.rst:161 -msgid "" -"Return a context manager that closes *thing* upon completion of the block. " -"This is basically equivalent to::" +msgid "Return a context manager that closes *thing* upon completion of the block. This is basically equivalent to::" msgstr "" -#: ../../library/contextlib.rst:164 msgid "" "from contextlib import contextmanager\n" "\n" @@ -246,11 +154,9 @@ msgid "" " thing.close()" msgstr "" -#: ../../library/contextlib.rst:173 msgid "And lets you write code like this::" msgstr "" -#: ../../library/contextlib.rst:175 msgid "" "from contextlib import closing\n" "from urllib.request import urlopen\n" @@ -260,29 +166,15 @@ msgid "" " print(line)" msgstr "" -#: ../../library/contextlib.rst:182 -msgid "" -"without needing to explicitly close ``page``. Even if an error occurs, " -"``page.close()`` will be called when the :keyword:`with` block is exited." +msgid "without needing to explicitly close ``page``. Even if an error occurs, ``page.close()`` will be called when the :keyword:`with` block is exited." msgstr "" -#: ../../library/contextlib.rst:187 -msgid "" -"Most types managing resources support the :term:`context manager` protocol, " -"which closes *thing* on leaving the :keyword:`with` statement. As " -"such, :func:`!closing` is most useful for third party types that don't " -"support context managers. This example is purely for illustration purposes, " -"as :func:`~urllib.request.urlopen` would normally be used in a context " -"manager." +msgid "Most types managing resources support the :term:`context manager` protocol, which closes *thing* on leaving the :keyword:`with` statement. As such, :func:`!closing` is most useful for third party types that don't support context managers. This example is purely for illustration purposes, as :func:`~urllib.request.urlopen` would normally be used in a context manager." msgstr "" -#: ../../library/contextlib.rst:196 -msgid "" -"Return an async context manager that calls the ``aclose()`` method of " -"*thing* upon completion of the block. This is basically equivalent to::" +msgid "Return an async context manager that calls the ``aclose()`` method of *thing* upon completion of the block. This is basically equivalent to::" msgstr "" -#: ../../library/contextlib.rst:199 msgid "" "from contextlib import asynccontextmanager\n" "\n" @@ -294,14 +186,9 @@ msgid "" " await thing.aclose()" msgstr "" -#: ../../library/contextlib.rst:208 -msgid "" -"Significantly, ``aclosing()`` supports deterministic cleanup of async " -"generators when they happen to exit early by :keyword:`break` or an " -"exception. For example::" +msgid "Significantly, ``aclosing()`` supports deterministic cleanup of async generators when they happen to exit early by :keyword:`break` or an exception. For example::" msgstr "" -#: ../../library/contextlib.rst:212 msgid "" "from contextlib import aclosing\n" "\n" @@ -311,22 +198,12 @@ msgid "" " break" msgstr "" -#: ../../library/contextlib.rst:219 -msgid "" -"This pattern ensures that the generator's async exit code is executed in the " -"same context as its iterations (so that exceptions and context variables " -"work as expected, and the exit code isn't run after the lifetime of some " -"task it depends on)." +msgid "This pattern ensures that the generator's async exit code is executed in the same context as its iterations (so that exceptions and context variables work as expected, and the exit code isn't run after the lifetime of some task it depends on)." msgstr "" -#: ../../library/contextlib.rst:231 -msgid "" -"Return a context manager that returns *enter_result* " -"from :meth:`~object.__enter__`, but otherwise does nothing. It is intended " -"to be used as a stand-in for an optional context manager, for example::" +msgid "Return a context manager that returns *enter_result* from :meth:`~object.__enter__`, but otherwise does nothing. It is intended to be used as a stand-in for an optional context manager, for example::" msgstr "" -#: ../../library/contextlib.rst:235 msgid "" "def myfunction(arg, ignore_exceptions=False):\n" " if ignore_exceptions:\n" @@ -339,11 +216,9 @@ msgid "" " # Do something" msgstr "" -#: ../../library/contextlib.rst:245 msgid "An example using *enter_result*::" msgstr "" -#: ../../library/contextlib.rst:247 msgid "" "def process_file(file_or_path):\n" " if isinstance(file_or_path, str):\n" @@ -357,13 +232,9 @@ msgid "" " # Perform processing on the file" msgstr "" -#: ../../library/contextlib.rst:258 -msgid "" -"It can also be used as a stand-in for :ref:`asynchronous context managers " -"`::" +msgid "It can also be used as a stand-in for :ref:`asynchronous context managers `::" msgstr "" -#: ../../library/contextlib.rst:261 msgid "" "async def send_http(session=None):\n" " if not session:\n" @@ -377,31 +248,18 @@ msgid "" " # Send http requests with session" msgstr "" -#: ../../library/contextlib.rst:274 msgid ":term:`asynchronous context manager` support was added." msgstr "" -#: ../../library/contextlib.rst:281 -msgid "" -"Return a context manager that suppresses any of the specified exceptions if " -"they occur in the body of a :keyword:`!with` statement and then resumes " -"execution with the first statement following the end of the :keyword:`!with` " -"statement." +msgid "Return a context manager that suppresses any of the specified exceptions if they occur in the body of a :keyword:`!with` statement and then resumes execution with the first statement following the end of the :keyword:`!with` statement." msgstr "" -#: ../../library/contextlib.rst:286 -msgid "" -"As with any other mechanism that completely suppresses exceptions, this " -"context manager should be used only to cover very specific errors where " -"silently continuing with program execution is known to be the right thing to " -"do." +msgid "As with any other mechanism that completely suppresses exceptions, this context manager should be used only to cover very specific errors where silently continuing with program execution is known to be the right thing to do." msgstr "" -#: ../../library/contextlib.rst:291 msgid "For example::" msgstr "" -#: ../../library/contextlib.rst:293 msgid "" "from contextlib import suppress\n" "\n" @@ -412,11 +270,9 @@ msgid "" " os.remove('someotherfile.tmp')" msgstr "" -#: ../../library/contextlib.rst:301 msgid "This code is equivalent to::" msgstr "" -#: ../../library/contextlib.rst:303 msgid "" "try:\n" " os.remove('somefile.tmp')\n" @@ -429,131 +285,71 @@ msgid "" " pass" msgstr "" -#: ../../library/contextlib.rst:313 ../../library/contextlib.rst:362 -#: ../../library/contextlib.rst:372 ../../library/contextlib.rst:389 msgid "This context manager is :ref:`reentrant `." msgstr "" -#: ../../library/contextlib.rst:315 -msgid "" -"If the code within the :keyword:`!with` block raises " -"a :exc:`BaseExceptionGroup`, suppressed exceptions are removed from the " -"group. Any exceptions of the group which are not suppressed are re-raised " -"in a new group which is created using the original " -"group's :meth:`~BaseExceptionGroup.derive` method." +msgid "If the code within the :keyword:`!with` block raises a :exc:`BaseExceptionGroup`, suppressed exceptions are removed from the group. Any exceptions of the group which are not suppressed are re-raised in a new group which is created using the original group's :meth:`~BaseExceptionGroup.derive` method." msgstr "" -#: ../../library/contextlib.rst:323 -msgid "" -"``suppress`` now supports suppressing exceptions raised as part of " -"a :exc:`BaseExceptionGroup`." +msgid "``suppress`` now supports suppressing exceptions raised as part of a :exc:`BaseExceptionGroup`." msgstr "" -#: ../../library/contextlib.rst:329 -msgid "" -"Context manager for temporarily redirecting :data:`sys.stdout` to another " -"file or file-like object." +msgid "Context manager for temporarily redirecting :data:`sys.stdout` to another file or file-like object." msgstr "" -#: ../../library/contextlib.rst:332 -msgid "" -"This tool adds flexibility to existing functions or classes whose output is " -"hardwired to stdout." +msgid "This tool adds flexibility to existing functions or classes whose output is hardwired to stdout." msgstr "" -#: ../../library/contextlib.rst:335 -msgid "" -"For example, the output of :func:`help` normally is sent to *sys.stdout*. " -"You can capture that output in a string by redirecting the output to " -"an :class:`io.StringIO` object. The replacement stream is returned from " -"the :meth:`~object.__enter__` method and so is available as the target of " -"the :keyword:`with` statement::" +msgid "For example, the output of :func:`help` normally is sent to *sys.stdout*. You can capture that output in a string by redirecting the output to an :class:`io.StringIO` object. The replacement stream is returned from the :meth:`~object.__enter__` method and so is available as the target of the :keyword:`with` statement::" msgstr "" -#: ../../library/contextlib.rst:341 msgid "" "with redirect_stdout(io.StringIO()) as f:\n" " help(pow)\n" "s = f.getvalue()" msgstr "" -#: ../../library/contextlib.rst:345 -msgid "" -"To send the output of :func:`help` to a file on disk, redirect the output to " -"a regular file::" +msgid "To send the output of :func:`help` to a file on disk, redirect the output to a regular file::" msgstr "" -#: ../../library/contextlib.rst:348 msgid "" "with open('help.txt', 'w') as f:\n" " with redirect_stdout(f):\n" " help(pow)" msgstr "" -#: ../../library/contextlib.rst:352 msgid "To send the output of :func:`help` to *sys.stderr*::" msgstr "" -#: ../../library/contextlib.rst:354 msgid "" "with redirect_stdout(sys.stderr):\n" " help(pow)" msgstr "" -#: ../../library/contextlib.rst:357 -msgid "" -"Note that the global side effect on :data:`sys.stdout` means that this " -"context manager is not suitable for use in library code and most threaded " -"applications. It also has no effect on the output of subprocesses. However, " -"it is still a useful approach for many utility scripts." +msgid "Note that the global side effect on :data:`sys.stdout` means that this context manager is not suitable for use in library code and most threaded applications. It also has no effect on the output of subprocesses. However, it is still a useful approach for many utility scripts." msgstr "" -#: ../../library/contextlib.rst:369 -msgid "" -"Similar to :func:`~contextlib.redirect_stdout` but " -"redirecting :data:`sys.stderr` to another file or file-like object." +msgid "Similar to :func:`~contextlib.redirect_stdout` but redirecting :data:`sys.stderr` to another file or file-like object." msgstr "" -#: ../../library/contextlib.rst:379 -msgid "" -"Non parallel-safe context manager to change the current working directory. " -"As this changes a global state, the working directory, it is not suitable " -"for use in most threaded or async contexts. It is also not suitable for most " -"non-linear code execution, like generators, where the program execution is " -"temporarily relinquished -- unless explicitly desired, you should not yield " -"when this context manager is active." +msgid "Non parallel-safe context manager to change the current working directory. As this changes a global state, the working directory, it is not suitable for use in most threaded or async contexts. It is also not suitable for most non-linear code execution, like generators, where the program execution is temporarily relinquished -- unless explicitly desired, you should not yield when this context manager is active." msgstr "" -#: ../../library/contextlib.rst:386 -msgid "" -"This is a simple wrapper around :func:`~os.chdir`, it changes the current " -"working directory upon entering and restores the old one on exit." +msgid "This is a simple wrapper around :func:`~os.chdir`, it changes the current working directory upon entering and restores the old one on exit." msgstr "" -#: ../../library/contextlib.rst:396 -msgid "" -"A base class that enables a context manager to also be used as a decorator." +msgid "A base class that enables a context manager to also be used as a decorator." msgstr "" -#: ../../library/contextlib.rst:398 -msgid "" -"Context managers inheriting from ``ContextDecorator`` have to " -"implement :meth:`~object.__enter__` and :meth:`~object.__exit__` as normal. " -"``__exit__`` retains its optional exception handling even when used as a " -"decorator." +msgid "Context managers inheriting from ``ContextDecorator`` have to implement :meth:`~object.__enter__` and :meth:`~object.__exit__` as normal. ``__exit__`` retains its optional exception handling even when used as a decorator." msgstr "" -#: ../../library/contextlib.rst:403 -msgid "" -"``ContextDecorator`` is used by :deco:`contextmanager`, so you get this " -"functionality automatically." +msgid "``ContextDecorator`` is used by :deco:`contextmanager`, so you get this functionality automatically." msgstr "" -#: ../../library/contextlib.rst:406 msgid "Example of ``ContextDecorator``::" msgstr "" -#: ../../library/contextlib.rst:408 msgid "" "from contextlib import ContextDecorator\n" "\n" @@ -567,11 +363,9 @@ msgid "" " return False" msgstr "" -#: ../../library/contextlib.rst:419 ../../library/contextlib.rst:491 msgid "The class can then be used like this::" msgstr "" -#: ../../library/contextlib.rst:421 msgid "" ">>> @mycontext()\n" "... def function():\n" @@ -590,42 +384,30 @@ msgid "" "Finishing" msgstr "" -#: ../../library/contextlib.rst:437 -msgid "" -"This change is just syntactic sugar for any construct of the following form::" +msgid "This change is just syntactic sugar for any construct of the following form::" msgstr "" -#: ../../library/contextlib.rst:439 msgid "" "def f():\n" " with cm():\n" " # Do stuff" msgstr "" -#: ../../library/contextlib.rst:443 msgid "``ContextDecorator`` lets you instead write::" msgstr "" -#: ../../library/contextlib.rst:445 msgid "" "@cm()\n" "def f():\n" " # Do stuff" msgstr "" -#: ../../library/contextlib.rst:449 -msgid "" -"It makes it clear that the ``cm`` applies to the whole function, rather than " -"just a piece of it (and saving an indentation level is nice, too)." +msgid "It makes it clear that the ``cm`` applies to the whole function, rather than just a piece of it (and saving an indentation level is nice, too)." msgstr "" -#: ../../library/contextlib.rst:452 -msgid "" -"Existing context managers that already have a base class can be extended by " -"using ``ContextDecorator`` as a mixin class::" +msgid "Existing context managers that already have a base class can be extended by using ``ContextDecorator`` as a mixin class::" msgstr "" -#: ../../library/contextlib.rst:455 msgid "" "from contextlib import ContextDecorator\n" "\n" @@ -637,24 +419,15 @@ msgid "" " return False" msgstr "" -#: ../../library/contextlib.rst:465 -msgid "" -"As the decorated function must be able to be called multiple times, the " -"underlying context manager must support use in multiple :keyword:`with` " -"statements. If this is not the case, then the original construct with the " -"explicit :keyword:`!with` statement inside the function should be used." +msgid "As the decorated function must be able to be called multiple times, the underlying context manager must support use in multiple :keyword:`with` statements. If this is not the case, then the original construct with the explicit :keyword:`!with` statement inside the function should be used." msgstr "" -#: ../../library/contextlib.rst:475 -msgid "" -"Similar to :class:`ContextDecorator` but only for asynchronous functions." +msgid "Similar to :class:`ContextDecorator` but only for asynchronous functions." msgstr "" -#: ../../library/contextlib.rst:477 msgid "Example of ``AsyncContextDecorator``::" msgstr "" -#: ../../library/contextlib.rst:479 msgid "" "from asyncio import run\n" "from contextlib import AsyncContextDecorator\n" @@ -669,7 +442,6 @@ msgid "" " return False" msgstr "" -#: ../../library/contextlib.rst:493 msgid "" ">>> @mycontext()\n" "... async def function():\n" @@ -690,20 +462,12 @@ msgid "" "Finishing" msgstr "" -#: ../../library/contextlib.rst:516 -msgid "" -"A context manager that is designed to make it easy to programmatically " -"combine other context managers and cleanup functions, especially those that " -"are optional or otherwise driven by input data." +msgid "A context manager that is designed to make it easy to programmatically combine other context managers and cleanup functions, especially those that are optional or otherwise driven by input data." msgstr "" -#: ../../library/contextlib.rst:520 -msgid "" -"For example, a set of files may easily be handled in a single with statement " -"as follows::" +msgid "For example, a set of files may easily be handled in a single with statement as follows::" msgstr "" -#: ../../library/contextlib.rst:523 msgid "" "with ExitStack() as stack:\n" " files = [stack.enter_context(open(fname)) for fname in filenames]\n" @@ -712,130 +476,60 @@ msgid "" " # in the list raise an exception" msgstr "" -#: ../../library/contextlib.rst:529 -msgid "" -"The :meth:`~object.__enter__` method returns the :class:`ExitStack` " -"instance, and performs no additional operations." +msgid "The :meth:`~object.__enter__` method returns the :class:`ExitStack` instance, and performs no additional operations." msgstr "" -#: ../../library/contextlib.rst:532 -msgid "" -"Each instance maintains a stack of registered callbacks that are called in " -"reverse order when the instance is closed (either explicitly or implicitly " -"at the end of a :keyword:`with` statement). Note that callbacks are *not* " -"invoked implicitly when the context stack instance is garbage collected." +msgid "Each instance maintains a stack of registered callbacks that are called in reverse order when the instance is closed (either explicitly or implicitly at the end of a :keyword:`with` statement). Note that callbacks are *not* invoked implicitly when the context stack instance is garbage collected." msgstr "" -#: ../../library/contextlib.rst:537 -msgid "" -"This stack model is used so that context managers that acquire their " -"resources in their ``__init__`` method (such as file objects) can be handled " -"correctly." +msgid "This stack model is used so that context managers that acquire their resources in their ``__init__`` method (such as file objects) can be handled correctly." msgstr "" -#: ../../library/contextlib.rst:541 -msgid "" -"Since registered callbacks are invoked in the reverse order of registration, " -"this ends up behaving as if multiple nested :keyword:`with` statements had " -"been used with the registered set of callbacks. This even extends to " -"exception handling - if an inner callback suppresses or replaces an " -"exception, then outer callbacks will be passed arguments based on that " -"updated state." +msgid "Since registered callbacks are invoked in the reverse order of registration, this ends up behaving as if multiple nested :keyword:`with` statements had been used with the registered set of callbacks. This even extends to exception handling - if an inner callback suppresses or replaces an exception, then outer callbacks will be passed arguments based on that updated state." msgstr "" -#: ../../library/contextlib.rst:548 -msgid "" -"This is a relatively low level API that takes care of the details of " -"correctly unwinding the stack of exit callbacks. It provides a suitable " -"foundation for higher level context managers that manipulate the exit stack " -"in application specific ways." +msgid "This is a relatively low level API that takes care of the details of correctly unwinding the stack of exit callbacks. It provides a suitable foundation for higher level context managers that manipulate the exit stack in application specific ways." msgstr "" -#: ../../library/contextlib.rst:557 -msgid "" -"Enters a new context manager and adds its :meth:`~object.__exit__` method to " -"the callback stack. The return value is the result of the context manager's " -"own :meth:`~object.__enter__` method." +msgid "Enters a new context manager and adds its :meth:`~object.__exit__` method to the callback stack. The return value is the result of the context manager's own :meth:`~object.__enter__` method." msgstr "" -#: ../../library/contextlib.rst:561 -msgid "" -"These context managers may suppress exceptions just as they normally would " -"if used directly as part of a :keyword:`with` statement." +msgid "These context managers may suppress exceptions just as they normally would if used directly as part of a :keyword:`with` statement." msgstr "" -#: ../../library/contextlib.rst:564 -msgid "" -"Raises :exc:`TypeError` instead of :exc:`AttributeError` if *cm* is not a " -"context manager." +msgid "Raises :exc:`TypeError` instead of :exc:`AttributeError` if *cm* is not a context manager." msgstr "" -#: ../../library/contextlib.rst:570 -msgid "" -"Adds a context manager's :meth:`~object.__exit__` method to the callback " -"stack." +msgid "Adds a context manager's :meth:`~object.__exit__` method to the callback stack." msgstr "" -#: ../../library/contextlib.rst:572 -msgid "" -"As ``__enter__`` is *not* invoked, this method can be used to cover part of " -"an :meth:`~object.__enter__` implementation with a context manager's " -"own :meth:`~object.__exit__` method." +msgid "As ``__enter__`` is *not* invoked, this method can be used to cover part of an :meth:`~object.__enter__` implementation with a context manager's own :meth:`~object.__exit__` method." msgstr "" -#: ../../library/contextlib.rst:576 -msgid "" -"If passed an object that is not a context manager, this method assumes it is " -"a callback with the same signature as a context " -"manager's :meth:`~object.__exit__` method and adds it directly to the " -"callback stack." +msgid "If passed an object that is not a context manager, this method assumes it is a callback with the same signature as a context manager's :meth:`~object.__exit__` method and adds it directly to the callback stack." msgstr "" -#: ../../library/contextlib.rst:580 -msgid "" -"By returning true values, these callbacks can suppress exceptions the same " -"way context manager :meth:`~object.__exit__` methods can." +msgid "By returning true values, these callbacks can suppress exceptions the same way context manager :meth:`~object.__exit__` methods can." msgstr "" -#: ../../library/contextlib.rst:583 -msgid "" -"The passed in object is returned from the function, allowing this method to " -"be used as a function decorator." +msgid "The passed in object is returned from the function, allowing this method to be used as a function decorator." msgstr "" -#: ../../library/contextlib.rst:588 -msgid "" -"Accepts an arbitrary callback function and arguments and adds it to the " -"callback stack." +msgid "Accepts an arbitrary callback function and arguments and adds it to the callback stack." msgstr "" -#: ../../library/contextlib.rst:591 -msgid "" -"Unlike the other methods, callbacks added this way cannot suppress " -"exceptions (as they are never passed the exception details)." +msgid "Unlike the other methods, callbacks added this way cannot suppress exceptions (as they are never passed the exception details)." msgstr "" -#: ../../library/contextlib.rst:594 -msgid "" -"The passed in callback is returned from the function, allowing this method " -"to be used as a function decorator." +msgid "The passed in callback is returned from the function, allowing this method to be used as a function decorator." msgstr "" -#: ../../library/contextlib.rst:599 -msgid "" -"Transfers the callback stack to a fresh :class:`ExitStack` instance and " -"returns it. No callbacks are invoked by this operation - instead, they will " -"now be invoked when the new stack is closed (either explicitly or implicitly " -"at the end of a :keyword:`with` statement)." +msgid "Transfers the callback stack to a fresh :class:`ExitStack` instance and returns it. No callbacks are invoked by this operation - instead, they will now be invoked when the new stack is closed (either explicitly or implicitly at the end of a :keyword:`with` statement)." msgstr "" -#: ../../library/contextlib.rst:604 -msgid "" -"For example, a group of files can be opened as an \"all or nothing\" " -"operation as follows::" +msgid "For example, a group of files can be opened as an \"all or nothing\" operation as follows::" msgstr "" -#: ../../library/contextlib.rst:607 msgid "" "with ExitStack() as stack:\n" " files = [stack.enter_context(open(fname)) for fname in filenames]\n" @@ -847,58 +541,33 @@ msgid "" " # close_files() can then be invoked explicitly to close them all." msgstr "" -#: ../../library/contextlib.rst:618 -msgid "" -"Immediately unwinds the callback stack, invoking callbacks in the reverse " -"order of registration. For any context managers and exit callbacks " -"registered, the arguments passed in will indicate that no exception occurred." +msgid "Immediately unwinds the callback stack, invoking callbacks in the reverse order of registration. For any context managers and exit callbacks registered, the arguments passed in will indicate that no exception occurred." msgstr "" -#: ../../library/contextlib.rst:625 -msgid "" -"An :ref:`asynchronous context manager `, similar " -"to :class:`ExitStack`, that supports combining both synchronous and " -"asynchronous context managers, as well as having coroutines for cleanup " -"logic." +msgid "An :ref:`asynchronous context manager `, similar to :class:`ExitStack`, that supports combining both synchronous and asynchronous context managers, as well as having coroutines for cleanup logic." msgstr "" -#: ../../library/contextlib.rst:630 -msgid "" -"The :meth:`~ExitStack.close` method is not implemented; :meth:`aclose` must " -"be used instead." +msgid "The :meth:`~ExitStack.close` method is not implemented; :meth:`aclose` must be used instead." msgstr "" -#: ../../library/contextlib.rst:636 -msgid "" -"Similar to :meth:`ExitStack.enter_context` but expects an asynchronous " -"context manager." +msgid "Similar to :meth:`ExitStack.enter_context` but expects an asynchronous context manager." msgstr "" -#: ../../library/contextlib.rst:639 -msgid "" -"Raises :exc:`TypeError` instead of :exc:`AttributeError` if *cm* is not an " -"asynchronous context manager." +msgid "Raises :exc:`TypeError` instead of :exc:`AttributeError` if *cm* is not an asynchronous context manager." msgstr "" -#: ../../library/contextlib.rst:645 -msgid "" -"Similar to :meth:`ExitStack.push` but expects either an asynchronous context " -"manager or a coroutine function." +msgid "Similar to :meth:`ExitStack.push` but expects either an asynchronous context manager or a coroutine function." msgstr "" -#: ../../library/contextlib.rst:650 msgid "Similar to :meth:`ExitStack.callback` but expects a coroutine function." msgstr "" -#: ../../library/contextlib.rst:655 msgid "Similar to :meth:`ExitStack.close` but properly handles awaitables." msgstr "" -#: ../../library/contextlib.rst:657 msgid "Continuing the example for :deco:`asynccontextmanager`::" msgstr "" -#: ../../library/contextlib.rst:659 msgid "" "async with AsyncExitStack() as stack:\n" " connections = [await stack.enter_async_context(get_connection())\n" @@ -908,31 +577,18 @@ msgid "" " # later in the list raise an exception." msgstr "" -#: ../../library/contextlib.rst:669 msgid "Examples and Recipes" msgstr "" -#: ../../library/contextlib.rst:671 -msgid "" -"This section describes some examples and recipes for making effective use of " -"the tools provided by :mod:`!contextlib`." +msgid "This section describes some examples and recipes for making effective use of the tools provided by :mod:`!contextlib`." msgstr "" -#: ../../library/contextlib.rst:676 msgid "Supporting a variable number of context managers" msgstr "" -#: ../../library/contextlib.rst:678 -msgid "" -"The primary use case for :class:`ExitStack` is the one given in the class " -"documentation: supporting a variable number of context managers and other " -"cleanup operations in a single :keyword:`with` statement. The variability " -"may come from the number of context managers needed being driven by user " -"input (such as opening a user specified collection of files), or from some " -"of the context managers being optional::" +msgid "The primary use case for :class:`ExitStack` is the one given in the class documentation: supporting a variable number of context managers and other cleanup operations in a single :keyword:`with` statement. The variability may come from the number of context managers needed being driven by user input (such as opening a user specified collection of files), or from some of the context managers being optional::" msgstr "" -#: ../../library/contextlib.rst:685 msgid "" "with ExitStack() as stack:\n" " for resource in resources:\n" @@ -943,28 +599,15 @@ msgid "" " # Perform operations that use the acquired resources" msgstr "" -#: ../../library/contextlib.rst:693 -msgid "" -"As shown, :class:`ExitStack` also makes it quite easy to use :keyword:`with` " -"statements to manage arbitrary resources that don't natively support the " -"context management protocol." +msgid "As shown, :class:`ExitStack` also makes it quite easy to use :keyword:`with` statements to manage arbitrary resources that don't natively support the context management protocol." msgstr "" -#: ../../library/contextlib.rst:699 msgid "Catching exceptions from ``__enter__`` methods" msgstr "" -#: ../../library/contextlib.rst:701 -msgid "" -"It is occasionally desirable to catch exceptions from " -"an :meth:`~object.__enter__` method implementation, *without* inadvertently " -"catching exceptions from the :keyword:`with` statement body or the context " -"manager's :meth:`~object.__exit__` method. By using :class:`ExitStack` the " -"steps in the context management protocol can be separated slightly in order " -"to allow this::" +msgid "It is occasionally desirable to catch exceptions from an :meth:`~object.__enter__` method implementation, *without* inadvertently catching exceptions from the :keyword:`with` statement body or the context manager's :meth:`~object.__exit__` method. By using :class:`ExitStack` the steps in the context management protocol can be separated slightly in order to allow this::" msgstr "" -#: ../../library/contextlib.rst:707 msgid "" "stack = ExitStack()\n" "try:\n" @@ -976,43 +619,24 @@ msgid "" " # Handle normal case" msgstr "" -#: ../../library/contextlib.rst:716 -msgid "" -"Actually needing to do this is likely to indicate that the underlying API " -"should be providing a direct resource management interface for use " -"with :keyword:`try`/:keyword:`except`/:keyword:`finally` statements, but not " -"all APIs are well designed in that regard. When a context manager is the " -"only resource management API provided, then :class:`ExitStack` can make it " -"easier to handle various situations that can't be handled directly in " -"a :keyword:`with` statement." +msgid "Actually needing to do this is likely to indicate that the underlying API should be providing a direct resource management interface for use with :keyword:`try`/:keyword:`except`/:keyword:`finally` statements, but not all APIs are well designed in that regard. When a context manager is the only resource management API provided, then :class:`ExitStack` can make it easier to handle various situations that can't be handled directly in a :keyword:`with` statement." msgstr "" -#: ../../library/contextlib.rst:726 msgid "Cleaning up in an ``__enter__`` implementation" msgstr "" -#: ../../library/contextlib.rst:728 -msgid "" -"As noted in the documentation of :meth:`ExitStack.push`, this method can be " -"useful in cleaning up an already allocated resource if later steps in " -"the :meth:`~object.__enter__` implementation fail." +msgid "As noted in the documentation of :meth:`ExitStack.push`, this method can be useful in cleaning up an already allocated resource if later steps in the :meth:`~object.__enter__` implementation fail." msgstr "" -#: ../../library/contextlib.rst:732 -msgid "" -"Here's an example of doing this for a context manager that accepts resource " -"acquisition and release functions, along with an optional validation " -"function, and maps them to the context management protocol::" +msgid "Here's an example of doing this for a context manager that accepts resource acquisition and release functions, along with an optional validation function, and maps them to the context management protocol::" msgstr "" -#: ../../library/contextlib.rst:736 msgid "" "from contextlib import contextmanager, AbstractContextManager, ExitStack\n" "\n" "class ResourceManager(AbstractContextManager):\n" "\n" -" def __init__(self, acquire_resource, release_resource, " -"check_resource_ok=None):\n" +" def __init__(self, acquire_resource, release_resource, check_resource_ok=None):\n" " self.acquire_resource = acquire_resource\n" " self.release_resource = release_resource\n" " if check_resource_ok is None:\n" @@ -1043,19 +667,12 @@ msgid "" " self.release_resource()" msgstr "" -#: ../../library/contextlib.rst:772 msgid "Replacing any use of ``try-finally`` and flag variables" msgstr "" -#: ../../library/contextlib.rst:774 -msgid "" -"A pattern you will sometimes see is a ``try-finally`` statement with a flag " -"variable to indicate whether or not the body of the ``finally`` clause " -"should be executed. In its simplest form (that can't already be handled just " -"by using an ``except`` clause instead), it looks something like this::" +msgid "A pattern you will sometimes see is a ``try-finally`` statement with a flag variable to indicate whether or not the body of the ``finally`` clause should be executed. In its simplest form (that can't already be handled just by using an ``except`` clause instead), it looks something like this::" msgstr "" -#: ../../library/contextlib.rst:779 msgid "" "cleanup_needed = True\n" "try:\n" @@ -1067,21 +684,12 @@ msgid "" " cleanup_resources()" msgstr "" -#: ../../library/contextlib.rst:788 -msgid "" -"As with any ``try`` statement based code, this can cause problems for " -"development and review, because the setup code and the cleanup code can end " -"up being separated by arbitrarily long sections of code." +msgid "As with any ``try`` statement based code, this can cause problems for development and review, because the setup code and the cleanup code can end up being separated by arbitrarily long sections of code." msgstr "" -#: ../../library/contextlib.rst:792 -msgid "" -":class:`ExitStack` makes it possible to instead register a callback for " -"execution at the end of a ``with`` statement, and then later decide to skip " -"executing that callback::" +msgid ":class:`ExitStack` makes it possible to instead register a callback for execution at the end of a ``with`` statement, and then later decide to skip executing that callback::" msgstr "" -#: ../../library/contextlib.rst:796 msgid "" "from contextlib import ExitStack\n" "\n" @@ -1092,19 +700,12 @@ msgid "" " stack.pop_all()" msgstr "" -#: ../../library/contextlib.rst:804 -msgid "" -"This allows the intended cleanup behaviour to be made explicit up front, " -"rather than requiring a separate flag variable." +msgid "This allows the intended cleanup behaviour to be made explicit up front, rather than requiring a separate flag variable." msgstr "" -#: ../../library/contextlib.rst:807 -msgid "" -"If a particular application uses this pattern a lot, it can be simplified " -"even further by means of a small helper class::" +msgid "If a particular application uses this pattern a lot, it can be simplified even further by means of a small helper class::" msgstr "" -#: ../../library/contextlib.rst:810 msgid "" "from contextlib import ExitStack\n" "\n" @@ -1122,14 +723,9 @@ msgid "" " cb.cancel()" msgstr "" -#: ../../library/contextlib.rst:825 -msgid "" -"If the resource cleanup isn't already neatly bundled into a standalone " -"function, then it is still possible to use the decorator form " -"of :meth:`ExitStack.callback` to declare the resource cleanup in advance::" +msgid "If the resource cleanup isn't already neatly bundled into a standalone function, then it is still possible to use the decorator form of :meth:`ExitStack.callback` to declare the resource cleanup in advance::" msgstr "" -#: ../../library/contextlib.rst:830 msgid "" "from contextlib import ExitStack\n" "\n" @@ -1142,33 +738,18 @@ msgid "" " stack.pop_all()" msgstr "" -#: ../../library/contextlib.rst:840 -msgid "" -"Due to the way the decorator protocol works, a callback function declared " -"this way cannot take any parameters. Instead, any resources to be released " -"must be accessed as closure variables." +msgid "Due to the way the decorator protocol works, a callback function declared this way cannot take any parameters. Instead, any resources to be released must be accessed as closure variables." msgstr "" -#: ../../library/contextlib.rst:846 msgid "Using a context manager as a function decorator" msgstr "" -#: ../../library/contextlib.rst:848 -msgid "" -":class:`ContextDecorator` makes it possible to use a context manager in both " -"an ordinary ``with`` statement and also as a function decorator." +msgid ":class:`ContextDecorator` makes it possible to use a context manager in both an ordinary ``with`` statement and also as a function decorator." msgstr "" -#: ../../library/contextlib.rst:851 -msgid "" -"For example, it is sometimes useful to wrap functions or groups of " -"statements with a logger that can track the time of entry and time of exit. " -"Rather than writing both a function decorator and a context manager for the " -"task, inheriting from :class:`ContextDecorator` provides both capabilities " -"in a single definition::" +msgid "For example, it is sometimes useful to wrap functions or groups of statements with a logger that can track the time of entry and time of exit. Rather than writing both a function decorator and a context manager for the task, inheriting from :class:`ContextDecorator` provides both capabilities in a single definition::" msgstr "" -#: ../../library/contextlib.rst:857 msgid "" "from contextlib import ContextDecorator\n" "import logging\n" @@ -1186,22 +767,18 @@ msgid "" " logging.info('Exiting: %s', self.name)" msgstr "" -#: ../../library/contextlib.rst:872 msgid "Instances of this class can be used as both a context manager::" msgstr "" -#: ../../library/contextlib.rst:874 msgid "" "with track_entry_and_exit('widget loader'):\n" " print('Some time consuming activity goes here')\n" " load_widget()" msgstr "" -#: ../../library/contextlib.rst:878 msgid "And also as a function decorator::" msgstr "" -#: ../../library/contextlib.rst:880 msgid "" "@track_entry_and_exit('widget loader')\n" "def activity():\n" @@ -1209,58 +786,30 @@ msgid "" " load_widget()" msgstr "" -#: ../../library/contextlib.rst:885 -msgid "" -"Note that there is one additional limitation when using context managers as " -"function decorators: there's no way to access the return value " -"of :meth:`~object.__enter__`. If that value is needed, then it is still " -"necessary to use an explicit ``with`` statement." +msgid "Note that there is one additional limitation when using context managers as function decorators: there's no way to access the return value of :meth:`~object.__enter__`. If that value is needed, then it is still necessary to use an explicit ``with`` statement." msgstr "" -#: ../../library/contextlib.rst:892 msgid ":pep:`343` - The \"with\" statement" msgstr "" -#: ../../library/contextlib.rst:893 -msgid "" -"The specification, background, and examples for the Python :keyword:`with` " -"statement." +msgid "The specification, background, and examples for the Python :keyword:`with` statement." msgstr "" -#: ../../library/contextlib.rst:899 msgid "Single use, reusable and reentrant context managers" msgstr "" -#: ../../library/contextlib.rst:901 -msgid "" -"Most context managers are written in a way that means they can only be used " -"effectively in a :keyword:`with` statement once. These single use context " -"managers must be created afresh each time they're used - attempting to use " -"them a second time will trigger an exception or otherwise not work correctly." +msgid "Most context managers are written in a way that means they can only be used effectively in a :keyword:`with` statement once. These single use context managers must be created afresh each time they're used - attempting to use them a second time will trigger an exception or otherwise not work correctly." msgstr "" -#: ../../library/contextlib.rst:907 -msgid "" -"This common limitation means that it is generally advisable to create " -"context managers directly in the header of the :keyword:`with` statement " -"where they are used (as shown in all of the usage examples above)." +msgid "This common limitation means that it is generally advisable to create context managers directly in the header of the :keyword:`with` statement where they are used (as shown in all of the usage examples above)." msgstr "" -#: ../../library/contextlib.rst:911 -msgid "" -"Files are an example of effectively single use context managers, since the " -"first :keyword:`with` statement will close the file, preventing any further " -"IO operations using that file object." +msgid "Files are an example of effectively single use context managers, since the first :keyword:`with` statement will close the file, preventing any further IO operations using that file object." msgstr "" -#: ../../library/contextlib.rst:915 -msgid "" -"Context managers created using :deco:`contextmanager` are also single use " -"context managers, and will complain about the underlying generator failing " -"to yield if an attempt is made to use them a second time::" +msgid "Context managers created using :deco:`contextmanager` are also single use context managers, and will complain about the underlying generator failing to yield if an attempt is made to use them a second time::" msgstr "" -#: ../../library/contextlib.rst:919 msgid "" ">>> from contextlib import contextmanager\n" ">>> @contextmanager\n" @@ -1283,26 +832,15 @@ msgid "" "RuntimeError: generator didn't yield" msgstr "" -#: ../../library/contextlib.rst:943 msgid "Reentrant context managers" msgstr "" -#: ../../library/contextlib.rst:945 -msgid "" -"More sophisticated context managers may be \"reentrant\". These context " -"managers can not only be used in multiple :keyword:`with` statements, but " -"may also be used *inside* a :keyword:`!with` statement that is already using " -"the same context manager." +msgid "More sophisticated context managers may be \"reentrant\". These context managers can not only be used in multiple :keyword:`with` statements, but may also be used *inside* a :keyword:`!with` statement that is already using the same context manager." msgstr "" -#: ../../library/contextlib.rst:950 -msgid "" -":class:`threading.RLock` is an example of a reentrant context manager, as " -"are :func:`suppress`, :func:`redirect_stdout`, and :func:`chdir`. Here's a " -"very simple example of reentrant use::" +msgid ":class:`threading.RLock` is an example of a reentrant context manager, as are :func:`suppress`, :func:`redirect_stdout`, and :func:`chdir`. Here's a very simple example of reentrant use::" msgstr "" -#: ../../library/contextlib.rst:954 msgid "" ">>> from contextlib import redirect_stdout\n" ">>> from io import StringIO\n" @@ -1320,51 +858,24 @@ msgid "" "This is also written to the stream" msgstr "" -#: ../../library/contextlib.rst:969 -msgid "" -"Real world examples of reentrancy are more likely to involve multiple " -"functions calling each other and hence be far more complicated than this " -"example." +msgid "Real world examples of reentrancy are more likely to involve multiple functions calling each other and hence be far more complicated than this example." msgstr "" -#: ../../library/contextlib.rst:973 -msgid "" -"Note also that being reentrant is *not* the same thing as being thread " -"safe. :func:`redirect_stdout`, for example, is definitely not thread safe, " -"as it makes a global modification to the system state by " -"binding :data:`sys.stdout` to a different stream." +msgid "Note also that being reentrant is *not* the same thing as being thread safe. :func:`redirect_stdout`, for example, is definitely not thread safe, as it makes a global modification to the system state by binding :data:`sys.stdout` to a different stream." msgstr "" -#: ../../library/contextlib.rst:982 msgid "Reusable context managers" msgstr "" -#: ../../library/contextlib.rst:984 -msgid "" -"Distinct from both single use and reentrant context managers are " -"\"reusable\" context managers (or, to be completely explicit, \"reusable, " -"but not reentrant\" context managers, since reentrant context managers are " -"also reusable). These context managers support being used multiple times, " -"but will fail (or otherwise not work correctly) if the specific context " -"manager instance has already been used in a containing with statement." +msgid "Distinct from both single use and reentrant context managers are \"reusable\" context managers (or, to be completely explicit, \"reusable, but not reentrant\" context managers, since reentrant context managers are also reusable). These context managers support being used multiple times, but will fail (or otherwise not work correctly) if the specific context manager instance has already been used in a containing with statement." msgstr "" -#: ../../library/contextlib.rst:991 -msgid "" -":class:`threading.Lock` is an example of a reusable, but not reentrant, " -"context manager (for a reentrant lock, it is necessary to " -"use :class:`threading.RLock` instead)." +msgid ":class:`threading.Lock` is an example of a reusable, but not reentrant, context manager (for a reentrant lock, it is necessary to use :class:`threading.RLock` instead)." msgstr "" -#: ../../library/contextlib.rst:995 -msgid "" -"Another example of a reusable, but not reentrant, context manager " -"is :class:`ExitStack`, as it invokes *all* currently registered callbacks " -"when leaving any with statement, regardless of where those callbacks were " -"added::" +msgid "Another example of a reusable, but not reentrant, context manager is :class:`ExitStack`, as it invokes *all* currently registered callbacks when leaving any with statement, regardless of where those callbacks were added::" msgstr "" -#: ../../library/contextlib.rst:1000 msgid "" ">>> from contextlib import ExitStack\n" ">>> stack = ExitStack()\n" @@ -1393,21 +904,12 @@ msgid "" "Leaving outer context" msgstr "" -#: ../../library/contextlib.rst:1026 -msgid "" -"As the output from the example shows, reusing a single stack object across " -"multiple with statements works correctly, but attempting to nest them will " -"cause the stack to be cleared at the end of the innermost with statement, " -"which is unlikely to be desirable behaviour." +msgid "As the output from the example shows, reusing a single stack object across multiple with statements works correctly, but attempting to nest them will cause the stack to be cleared at the end of the innermost with statement, which is unlikely to be desirable behaviour." msgstr "" -#: ../../library/contextlib.rst:1031 -msgid "" -"Using separate :class:`ExitStack` instances instead of reusing a single " -"instance avoids that problem::" +msgid "Using separate :class:`ExitStack` instances instead of reusing a single instance avoids that problem::" msgstr "" -#: ../../library/contextlib.rst:1034 msgid "" ">>> from contextlib import ExitStack\n" ">>> with ExitStack() as outer_stack:\n" diff --git a/library/contextvars.po b/library/contextvars.po index bd4a3461..c7452ab9 100644 --- a/library/contextvars.po +++ b/library/contextvars.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 00:57+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,120 +23,69 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/contextvars.rst:2 msgid ":mod:`!contextvars` --- Context Variables" msgstr "" -#: ../../library/contextvars.rst:11 -msgid "" -"This module provides APIs to manage, store, and access context-local state. " -"The :class:`~contextvars.ContextVar` class is used to declare and work with " -"*Context Variables*. The :func:`~contextvars.copy_context` function and " -"the :class:`~contextvars.Context` class should be used to manage the current " -"context in asynchronous frameworks." +msgid "This module provides APIs to manage, store, and access context-local state. The :class:`~contextvars.ContextVar` class is used to declare and work with *Context Variables*. The :func:`~contextvars.copy_context` function and the :class:`~contextvars.Context` class should be used to manage the current context in asynchronous frameworks." msgstr "" -#: ../../library/contextvars.rst:17 -msgid "" -"Context managers that have state should use Context Variables instead " -"of :func:`threading.local` to prevent their state from bleeding to other " -"code unexpectedly, when used in concurrent code." +msgid "Context managers that have state should use Context Variables instead of :func:`threading.local` to prevent their state from bleeding to other code unexpectedly, when used in concurrent code." msgstr "" -#: ../../library/contextvars.rst:21 msgid "See also :pep:`567` for additional details." msgstr "" -#: ../../library/contextvars.rst:27 msgid "Context Variables" msgstr "" -#: ../../library/contextvars.rst:31 msgid "This class is used to declare a new Context Variable, e.g.::" msgstr "" -#: ../../library/contextvars.rst:33 msgid "var: ContextVar[int] = ContextVar('var', default=42)" msgstr "" -#: ../../library/contextvars.rst:35 -msgid "" -"The required *name* parameter is used for introspection and debug purposes." +msgid "The required *name* parameter is used for introspection and debug purposes." msgstr "" -#: ../../library/contextvars.rst:38 -msgid "" -"The optional keyword-only *default* parameter is returned " -"by :meth:`ContextVar.get` when no value for the variable is found in the " -"current context." +msgid "The optional keyword-only *default* parameter is returned by :meth:`ContextVar.get` when no value for the variable is found in the current context." msgstr "" -#: ../../library/contextvars.rst:42 -msgid "" -"**Important:** Context Variables should be created at the top module level " -"and never in closures. :class:`Context` objects hold strong references to " -"context variables which prevents context variables from being properly " -"garbage collected." +msgid "**Important:** Context Variables should be created at the top module level and never in closures. :class:`Context` objects hold strong references to context variables which prevents context variables from being properly garbage collected." msgstr "" -#: ../../library/contextvars.rst:47 -msgid "" -":class:`!ContextVar`\\s are :ref:`generic ` over the type of their " -"contained value." +msgid ":class:`!ContextVar`\\s are :ref:`generic ` over the type of their contained value." msgstr "" -#: ../../library/contextvars.rst:52 msgid "The name of the variable. This is a read-only property." msgstr "" -#: ../../library/contextvars.rst:58 msgid "Return a value for the context variable for the current context." msgstr "" -#: ../../library/contextvars.rst:60 -msgid "" -"If there is no value for the variable in the current context, the method " -"will:" +msgid "If there is no value for the variable in the current context, the method will:" msgstr "" -#: ../../library/contextvars.rst:63 -msgid "" -"return the value of the *default* argument of the method, if provided; or" +msgid "return the value of the *default* argument of the method, if provided; or" msgstr "" -#: ../../library/contextvars.rst:66 -msgid "" -"return the default value for the context variable, if it was created with " -"one; or" +msgid "return the default value for the context variable, if it was created with one; or" msgstr "" -#: ../../library/contextvars.rst:69 msgid "raise a :exc:`LookupError`." msgstr "" -#: ../../library/contextvars.rst:73 -msgid "" -"Call to set a new value for the context variable in the current context." +msgid "Call to set a new value for the context variable in the current context." msgstr "" -#: ../../library/contextvars.rst:76 -msgid "" -"The required *value* argument is the new value for the context variable." +msgid "The required *value* argument is the new value for the context variable." msgstr "" -#: ../../library/contextvars.rst:79 -msgid "" -"Returns a :class:`~contextvars.Token` object that can be used to restore the " -"variable to its previous value via the :meth:`ContextVar.reset` method." +msgid "Returns a :class:`~contextvars.Token` object that can be used to restore the variable to its previous value via the :meth:`ContextVar.reset` method." msgstr "" -#: ../../library/contextvars.rst:83 -msgid "" -"For convenience, the token object can be used as a context manager to avoid " -"calling :meth:`ContextVar.reset` manually::" +msgid "For convenience, the token object can be used as a context manager to avoid calling :meth:`ContextVar.reset` manually::" msgstr "" -#: ../../library/contextvars.rst:86 msgid "" "var = ContextVar('var', default='default value')\n" "\n" @@ -146,11 +95,9 @@ msgid "" "assert var.get() == 'default value'" msgstr "" -#: ../../library/contextvars.rst:93 msgid "It is a shorthand for::" msgstr "" -#: ../../library/contextvars.rst:95 msgid "" "var = ContextVar('var', default='default value')\n" "\n" @@ -163,21 +110,15 @@ msgid "" "assert var.get() == 'default value'" msgstr "" -#: ../../library/contextvars.rst:107 msgid "Added support for using tokens as context managers." msgstr "" -#: ../../library/contextvars.rst:111 -msgid "" -"Reset the context variable to the value it had before " -"the :meth:`ContextVar.set` that created the *token* was used." +msgid "Reset the context variable to the value it had before the :meth:`ContextVar.set` that created the *token* was used." msgstr "" -#: ../../library/contextvars.rst:114 msgid "For example::" msgstr "" -#: ../../library/contextvars.rst:116 msgid "" "var = ContextVar('var')\n" "\n" @@ -189,154 +130,83 @@ msgid "" "# var.get() would raise a LookupError." msgstr "" -#: ../../library/contextvars.rst:125 msgid "The same *token* cannot be used twice." msgstr "" -#: ../../library/contextvars.rst:130 -msgid "" -"*Token* objects are returned by the :meth:`ContextVar.set` method. They can " -"be passed to the :meth:`ContextVar.reset` method to revert the value of the " -"variable to what it was before the corresponding *set*. A single token " -"cannot reset a context variable more than once." +msgid "*Token* objects are returned by the :meth:`ContextVar.set` method. They can be passed to the :meth:`ContextVar.reset` method to revert the value of the variable to what it was before the corresponding *set*. A single token cannot reset a context variable more than once." msgstr "" -#: ../../library/contextvars.rst:135 -msgid "" -"Tokens support the :ref:`context manager protocol ` to " -"automatically reset context variables. See :meth:`ContextVar.set`." +msgid "Tokens support the :ref:`context manager protocol ` to automatically reset context variables. See :meth:`ContextVar.set`." msgstr "" -#: ../../library/contextvars.rst:138 -msgid "" -"Tokens are :ref:`generic ` over the same type as " -"the :class:`ContextVar` which created them." +msgid "Tokens are :ref:`generic ` over the same type as the :class:`ContextVar` which created them." msgstr "" -#: ../../library/contextvars.rst:143 msgid "Added support for usage as a context manager." msgstr "" -#: ../../library/contextvars.rst:147 -msgid "" -"A read-only property. Points to the :class:`ContextVar` object that created " -"the token." +msgid "A read-only property. Points to the :class:`ContextVar` object that created the token." msgstr "" -#: ../../library/contextvars.rst:152 -msgid "" -"A read-only property. Set to the value the variable had before " -"the :meth:`ContextVar.set` method call that created the token. It points " -"to :attr:`Token.MISSING` if the variable was not set before the call." +msgid "A read-only property. Set to the value the variable had before the :meth:`ContextVar.set` method call that created the token. It points to :attr:`Token.MISSING` if the variable was not set before the call." msgstr "" -#: ../../library/contextvars.rst:159 msgid "A marker object used by :attr:`Token.old_value`." msgstr "" -#: ../../library/contextvars.rst:163 msgid "Manual Context Management" msgstr "" -#: ../../library/contextvars.rst:167 msgid "Returns a copy of the current :class:`~contextvars.Context` object." msgstr "" -#: ../../library/contextvars.rst:169 -msgid "" -"The following snippet gets a copy of the current context and prints all " -"variables and their values that are set in it::" +msgid "The following snippet gets a copy of the current context and prints all variables and their values that are set in it::" msgstr "" -#: ../../library/contextvars.rst:172 msgid "" "ctx: Context = copy_context()\n" "print(list(ctx.items()))" msgstr "" -#: ../../library/contextvars.rst:175 -msgid "" -"The function has an *O*\\ (1) complexity, i.e. works equally fast for " -"contexts with a few context variables and for contexts that have a lot of " -"them." +msgid "The function has an *O*\\ (1) complexity, i.e. works equally fast for contexts with a few context variables and for contexts that have a lot of them." msgstr "" -#: ../../library/contextvars.rst:182 msgid "A mapping of :class:`ContextVars ` to their values." msgstr "" -#: ../../library/contextvars.rst:184 -msgid "" -"``Context()`` creates an empty context with no values in it. To get a copy " -"of the current context use the :func:`~contextvars.copy_context` function." +msgid "``Context()`` creates an empty context with no values in it. To get a copy of the current context use the :func:`~contextvars.copy_context` function." msgstr "" -#: ../../library/contextvars.rst:188 -msgid "" -"Each thread has its own effective stack of :class:`!Context` objects. " -"The :term:`current context` is the :class:`!Context` object at the top of " -"the current thread's stack. All :class:`!Context` objects in the stacks are " -"considered to be *entered*." +msgid "Each thread has its own effective stack of :class:`!Context` objects. The :term:`current context` is the :class:`!Context` object at the top of the current thread's stack. All :class:`!Context` objects in the stacks are considered to be *entered*." msgstr "" -#: ../../library/contextvars.rst:193 -msgid "" -"*Entering* a context, which can be done by calling its :meth:`~Context.run` " -"method, makes the context the current context by pushing it onto the top of " -"the current thread's context stack." +msgid "*Entering* a context, which can be done by calling its :meth:`~Context.run` method, makes the context the current context by pushing it onto the top of the current thread's context stack." msgstr "" -#: ../../library/contextvars.rst:197 -msgid "" -"*Exiting* from the current context, which can be done by returning from the " -"callback passed to the :meth:`~Context.run` method, restores the current " -"context to what it was before the context was entered by popping the context " -"off the top of the context stack." +msgid "*Exiting* from the current context, which can be done by returning from the callback passed to the :meth:`~Context.run` method, restores the current context to what it was before the context was entered by popping the context off the top of the context stack." msgstr "" -#: ../../library/contextvars.rst:202 -msgid "" -"Since each thread has its own context stack, :class:`ContextVar` objects " -"behave in a similar fashion to :func:`threading.local` when values are " -"assigned in different threads." +msgid "Since each thread has its own context stack, :class:`ContextVar` objects behave in a similar fashion to :func:`threading.local` when values are assigned in different threads." msgstr "" -#: ../../library/contextvars.rst:206 -msgid "" -"Attempting to enter an already entered context, including contexts entered " -"in other threads, raises a :exc:`RuntimeError`." +msgid "Attempting to enter an already entered context, including contexts entered in other threads, raises a :exc:`RuntimeError`." msgstr "" -#: ../../library/contextvars.rst:209 msgid "After exiting a context, it can later be re-entered (from any thread)." msgstr "" -#: ../../library/contextvars.rst:211 -msgid "" -"Any changes to :class:`ContextVar` values via the :meth:`ContextVar.set` " -"method are recorded in the current context. The :meth:`ContextVar.get` " -"method returns the value associated with the current context. Exiting a " -"context effectively reverts any changes made to context variables while the " -"context was entered (if needed, the values can be restored by re-entering " -"the context)." +msgid "Any changes to :class:`ContextVar` values via the :meth:`ContextVar.set` method are recorded in the current context. The :meth:`ContextVar.get` method returns the value associated with the current context. Exiting a context effectively reverts any changes made to context variables while the context was entered (if needed, the values can be restored by re-entering the context)." msgstr "" -#: ../../library/contextvars.rst:218 msgid "Context implements the :class:`collections.abc.Mapping` interface." msgstr "" -#: ../../library/contextvars.rst:222 -msgid "" -"Enters the Context, executes ``callable(*args, **kwargs)``, then exits the " -"Context. Returns *callable*'s return value, or propagates an exception if " -"one occurred." +msgid "Enters the Context, executes ``callable(*args, **kwargs)``, then exits the Context. Returns *callable*'s return value, or propagates an exception if one occurred." msgstr "" -#: ../../library/contextvars.rst:226 msgid "Example:" msgstr "" -#: ../../library/contextvars.rst:228 msgid "" "import contextvars\n" "\n" @@ -370,63 +240,39 @@ msgid "" "print(var.get()) # 'spam'" msgstr "" -#: ../../library/contextvars.rst:274 msgid "Return a shallow copy of the context object." msgstr "" -#: ../../library/contextvars.rst:278 -msgid "" -"Return ``True`` if the *context* has a value for *var* set; return ``False`` " -"otherwise." +msgid "Return ``True`` if the *context* has a value for *var* set; return ``False`` otherwise." msgstr "" -#: ../../library/contextvars.rst:283 -msgid "" -"Return the value of the *var* :class:`ContextVar` variable. If the variable " -"is not set in the context object, a :exc:`KeyError` is raised." +msgid "Return the value of the *var* :class:`ContextVar` variable. If the variable is not set in the context object, a :exc:`KeyError` is raised." msgstr "" -#: ../../library/contextvars.rst:289 -msgid "" -"Return the value for *var* if *var* has the value in the context object. " -"Return *default* otherwise. If *default* is not given, return ``None``." +msgid "Return the value for *var* if *var* has the value in the context object. Return *default* otherwise. If *default* is not given, return ``None``." msgstr "" -#: ../../library/contextvars.rst:295 msgid "Return an iterator over the variables stored in the context object." msgstr "" -#: ../../library/contextvars.rst:300 msgid "Return the number of variables set in the context object." msgstr "" -#: ../../library/contextvars.rst:304 msgid "Return a list of all variables in the context object." msgstr "" -#: ../../library/contextvars.rst:308 msgid "Return a list of all variables' values in the context object." msgstr "" -#: ../../library/contextvars.rst:313 -msgid "" -"Return a list of 2-tuples containing all variables and their values in the " -"context object." +msgid "Return a list of 2-tuples containing all variables and their values in the context object." msgstr "" -#: ../../library/contextvars.rst:318 msgid "asyncio support" msgstr "" -#: ../../library/contextvars.rst:320 -msgid "" -"Context variables are natively supported in :mod:`asyncio` and are ready to " -"be used without any extra configuration. For example, here is a simple echo " -"server, that uses a context variable to make the address of a remote client " -"available in the Task that handles that client::" +msgid "Context variables are natively supported in :mod:`asyncio` and are ready to be used without any extra configuration. For example, here is a simple echo server, that uses a context variable to make the address of a remote client available in the Task that handles that client::" msgstr "" -#: ../../library/contextvars.rst:326 msgid "" "import asyncio\n" "import contextvars\n" diff --git a/library/copy.po b/library/copy.po index 315fa9ff..738ac71f 100644 --- a/library/copy.po +++ b/library/copy.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:03+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,187 +23,98 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/copy.rst:2 msgid ":mod:`!copy` --- Shallow and deep copy operations" msgstr "" -#: ../../library/copy.rst:7 msgid "**Source code:** :source:`Lib/copy.py`" msgstr "" -#: ../../library/copy.rst:11 -msgid "" -"Assignment statements in Python do not copy objects, they create bindings " -"between a target and an object. For collections that are mutable or contain " -"mutable items, a copy is sometimes needed so one can change one copy without " -"changing the other. This module provides generic shallow and deep copy " -"operations (explained below)." +msgid "Assignment statements in Python do not copy objects, they create bindings between a target and an object. For collections that are mutable or contain mutable items, a copy is sometimes needed so one can change one copy without changing the other. This module provides generic shallow and deep copy operations (explained below)." msgstr "" -#: ../../library/copy.rst:18 msgid "Interface summary:" msgstr "" -#: ../../library/copy.rst:22 msgid "Return a shallow copy of *obj*." msgstr "" -#: ../../library/copy.rst:27 msgid "Return a deep copy of *obj*." msgstr "" -#: ../../library/copy.rst:32 -msgid "" -"Creates a new object of the same type as *obj*, replacing fields with values " -"from *changes*." +msgid "Creates a new object of the same type as *obj*, replacing fields with values from *changes*." msgstr "" -#: ../../library/copy.rst:40 msgid "Raised for module specific errors." msgstr "" -#: ../../library/copy.rst:44 -msgid "" -"The difference between shallow and deep copying is only relevant for " -"compound objects (objects that contain other objects, like lists or class " -"instances):" +msgid "The difference between shallow and deep copying is only relevant for compound objects (objects that contain other objects, like lists or class instances):" msgstr "" -#: ../../library/copy.rst:47 -msgid "" -"A *shallow copy* constructs a new compound object and then (to the extent " -"possible) inserts *references* into it to the objects found in the original." +msgid "A *shallow copy* constructs a new compound object and then (to the extent possible) inserts *references* into it to the objects found in the original." msgstr "" -#: ../../library/copy.rst:50 -msgid "" -"A *deep copy* constructs a new compound object and then, recursively, " -"inserts *copies* into it of the objects found in the original." +msgid "A *deep copy* constructs a new compound object and then, recursively, inserts *copies* into it of the objects found in the original." msgstr "" -#: ../../library/copy.rst:53 -msgid "" -"Two problems often exist with deep copy operations that don't exist with " -"shallow copy operations:" +msgid "Two problems often exist with deep copy operations that don't exist with shallow copy operations:" msgstr "" -#: ../../library/copy.rst:56 -msgid "" -"Recursive objects (compound objects that, directly or indirectly, contain a " -"reference to themselves) may cause a recursive loop." +msgid "Recursive objects (compound objects that, directly or indirectly, contain a reference to themselves) may cause a recursive loop." msgstr "" -#: ../../library/copy.rst:59 -msgid "" -"Because deep copy copies everything it may copy too much, such as data which " -"is intended to be shared between copies." +msgid "Because deep copy copies everything it may copy too much, such as data which is intended to be shared between copies." msgstr "" -#: ../../library/copy.rst:62 msgid "The :func:`deepcopy` function avoids these problems by:" msgstr "" -#: ../../library/copy.rst:64 -msgid "" -"keeping a ``memo`` dictionary of objects already copied during the current " -"copying pass; and" +msgid "keeping a ``memo`` dictionary of objects already copied during the current copying pass; and" msgstr "" -#: ../../library/copy.rst:67 -msgid "" -"letting user-defined classes override the copying operation or the set of " -"components copied." +msgid "letting user-defined classes override the copying operation or the set of components copied." msgstr "" -#: ../../library/copy.rst:70 -msgid "" -"This module does not copy types like module, method, stack trace, stack " -"frame, file, socket, window, or any similar types. It does \"copy\" " -"functions and classes (shallow and deeply), by returning the original object " -"unchanged; this is compatible with the way these are treated by " -"the :mod:`pickle` module." +msgid "This module does not copy types like module, method, stack trace, stack frame, file, socket, window, or any similar types. It does \"copy\" functions and classes (shallow and deeply), by returning the original object unchanged; this is compatible with the way these are treated by the :mod:`pickle` module." msgstr "" -#: ../../library/copy.rst:75 -msgid "" -"Shallow copies of many collections can be made using the " -"corresponding :meth:`!copy` method (such " -"as :meth:`list.copy`, :meth:`dict.copy` or :meth:`set.copy`), and of " -"sequences (such as lists or bytearrays) by making a slice of the entire " -"sequence (``sequence[:]``). However, these methods and slicing can create an " -"instance of the base type when copying an instance of a subclass, " -"whereas :func:`copy.copy` normally returns an instance of the same type." +msgid "Shallow copies of many collections can be made using the corresponding :meth:`!copy` method (such as :meth:`list.copy`, :meth:`dict.copy` or :meth:`set.copy`), and of sequences (such as lists or bytearrays) by making a slice of the entire sequence (``sequence[:]``). However, these methods and slicing can create an instance of the base type when copying an instance of a subclass, whereas :func:`copy.copy` normally returns an instance of the same type." msgstr "" -#: ../../library/copy.rst:85 -msgid "" -"Classes can use the same interfaces to control copying that they use to " -"control pickling. See the description of module :mod:`pickle` for " -"information on these methods. In fact, the :mod:`!copy` module uses the " -"registered pickle functions from the :mod:`copyreg` module." +msgid "Classes can use the same interfaces to control copying that they use to control pickling. See the description of module :mod:`pickle` for information on these methods. In fact, the :mod:`!copy` module uses the registered pickle functions from the :mod:`copyreg` module." msgstr "" -#: ../../library/copy.rst:96 -msgid "" -"In order for a class to define its own copy implementation, it can define " -"special methods :meth:`~object.__copy__` and :meth:`~object.__deepcopy__`." +msgid "In order for a class to define its own copy implementation, it can define special methods :meth:`~object.__copy__` and :meth:`~object.__deepcopy__`." msgstr "" -#: ../../library/copy.rst:102 -msgid "" -"Called to implement the shallow copy operation; no additional arguments are " -"passed." +msgid "Called to implement the shallow copy operation; no additional arguments are passed." msgstr "" -#: ../../library/copy.rst:108 -msgid "" -"Called to implement the deep copy operation; it is passed one argument, the " -"*memo* dictionary. If the ``__deepcopy__`` implementation needs to make a " -"deep copy of a component, it should call the :func:`~copy.deepcopy` function " -"with the component as first argument and the *memo* dictionary as second " -"argument. The *memo* dictionary should be treated as an opaque object." +msgid "Called to implement the deep copy operation; it is passed one argument, the *memo* dictionary. If the ``__deepcopy__`` implementation needs to make a deep copy of a component, it should call the :func:`~copy.deepcopy` function with the component as first argument and the *memo* dictionary as second argument. The *memo* dictionary should be treated as an opaque object." msgstr "" -#: ../../library/copy.rst:118 -msgid "" -"Function :func:`!copy.replace` is more limited than :func:`~copy.copy` " -"and :func:`~copy.deepcopy`, and only supports named tuples created " -"by :func:`~collections.namedtuple`, :mod:`dataclasses`, and other classes " -"which define method :meth:`~object.__replace__`." +msgid "Function :func:`!copy.replace` is more limited than :func:`~copy.copy` and :func:`~copy.deepcopy`, and only supports named tuples created by :func:`~collections.namedtuple`, :mod:`dataclasses`, and other classes which define method :meth:`~object.__replace__`." msgstr "" -#: ../../library/copy.rst:126 -msgid "" -"This method should create a new object of the same type, replacing fields " -"with values from *changes*." +msgid "This method should create a new object of the same type, replacing fields with values from *changes*." msgstr "" -#: ../../library/copy.rst:134 msgid "Module :mod:`pickle`" msgstr "" -#: ../../library/copy.rst:135 -msgid "" -"Discussion of the special methods used to support object state retrieval and " -"restoration." +msgid "Discussion of the special methods used to support object state retrieval and restoration." msgstr "" -#: ../../library/copy.rst:83 msgid "module" msgstr "" -#: ../../library/copy.rst:83 msgid "pickle" msgstr "" -#: ../../library/copy.rst:90 msgid "__copy__() (copy protocol)" msgstr "" -#: ../../library/copy.rst:90 msgid "__deepcopy__() (copy protocol)" msgstr "" -#: ../../library/copy.rst:115 msgid "__replace__() (replace protocol)" msgstr "" diff --git a/library/copyreg.po b/library/copyreg.po index e52a5e48..9945c9dc 100644 --- a/library/copyreg.po +++ b/library/copyreg.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:03+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,69 +24,38 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/copyreg.rst:2 msgid ":mod:`!copyreg` --- Register :mod:`!pickle` support functions" msgstr "" -#: ../../library/copyreg.rst:7 msgid "**Source code:** :source:`Lib/copyreg.py`" msgstr "" -#: ../../library/copyreg.rst:15 -msgid "" -"The :mod:`!copyreg` module offers a way to define functions used while " -"pickling specific objects. The :mod:`pickle` and :mod:`copy` modules use " -"those functions when pickling/copying those objects. The module provides " -"configuration information about object constructors which are not classes. " -"Such constructors may be factory functions or class instances." +msgid "The :mod:`!copyreg` module offers a way to define functions used while pickling specific objects. The :mod:`pickle` and :mod:`copy` modules use those functions when pickling/copying those objects. The module provides configuration information about object constructors which are not classes. Such constructors may be factory functions or class instances." msgstr "" -#: ../../library/copyreg.rst:24 -msgid "" -"Declares *object* to be a valid constructor. If *object* is not callable " -"(and hence not valid as a constructor), raises :exc:`TypeError`." +msgid "Declares *object* to be a valid constructor. If *object* is not callable (and hence not valid as a constructor), raises :exc:`TypeError`." msgstr "" -#: ../../library/copyreg.rst:30 -msgid "" -"Declares that *function* should be used as a \"reduction\" function for " -"objects of type *type*. *function* must return either a string or a tuple " -"containing between two and six elements. See " -"the :attr:`~pickle.Pickler.dispatch_table` for more details on the interface " -"of *function*." +msgid "Declares that *function* should be used as a \"reduction\" function for objects of type *type*. *function* must return either a string or a tuple containing between two and six elements. See the :attr:`~pickle.Pickler.dispatch_table` for more details on the interface of *function*." msgstr "" -#: ../../library/copyreg.rst:35 -msgid "" -"The *constructor_ob* parameter is a legacy feature and is now ignored, but " -"if passed it must be a callable." +msgid "The *constructor_ob* parameter is a legacy feature and is now ignored, but if passed it must be a callable." msgstr "" -#: ../../library/copyreg.rst:38 -msgid "" -"Note that the :attr:`~pickle.Pickler.dispatch_table` attribute of a pickler " -"object or subclass of :class:`pickle.Pickler` can also be used for declaring " -"reduction functions." +msgid "Note that the :attr:`~pickle.Pickler.dispatch_table` attribute of a pickler object or subclass of :class:`pickle.Pickler` can also be used for declaring reduction functions." msgstr "" -#: ../../library/copyreg.rst:43 msgid "Example" msgstr "" -#: ../../library/copyreg.rst:45 -msgid "" -"The example below would like to show how to register a pickle function and " -"how it will be used:" +msgid "The example below would like to show how to register a pickle function and how it will be used:" msgstr "" -#: ../../library/copyreg.rst:9 msgid "module" msgstr "" -#: ../../library/copyreg.rst:9 msgid "pickle" msgstr "" -#: ../../library/copyreg.rst:9 msgid "copy" msgstr "" diff --git a/library/crypt.po b/library/crypt.po index 362ffa3e..a37fdd4c 100644 --- a/library/crypt.po +++ b/library/crypt.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2024-11-19 01:02+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,27 +21,14 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/crypt.rst:2 msgid ":mod:`!crypt` --- Function to check Unix passwords" msgstr "" -#: ../../library/crypt.rst:10 -msgid "" -"This module is no longer part of the Python standard library. It " -"was :ref:`removed in Python 3.13 ` after being " -"deprecated in Python 3.11. The removal was decided in :pep:`594`." +msgid "This module is no longer part of the Python standard library. It was :ref:`removed in Python 3.13 ` after being deprecated in Python 3.11. The removal was decided in :pep:`594`." msgstr "" -#: ../../library/crypt.rst:14 -msgid "" -"Applications can use the :mod:`hashlib` module from the standard library. " -"Other possible replacements are third-party libraries from " -"PyPI: :pypi:`legacycrypt`, :pypi:`bcrypt`, or :pypi:`argon2-cffi`. These are " -"not supported or maintained by the Python core team." +msgid "Applications can use the :mod:`hashlib` module from the standard library. Other possible replacements are third-party libraries from PyPI: :pypi:`legacycrypt`, :pypi:`bcrypt`, or :pypi:`argon2-cffi`. These are not supported or maintained by the Python core team." msgstr "" -#: ../../library/crypt.rst:19 -msgid "" -"The last version of Python that provided the :mod:`!crypt` module was " -"`Python 3.12 `_." +msgid "The last version of Python that provided the :mod:`!crypt` module was `Python 3.12 `_." msgstr "" diff --git a/library/crypto.po b/library/crypto.po index 446177bb..de381ace 100644 --- a/library/crypto.po +++ b/library/crypto.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:03+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,17 +21,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/crypto.rst:5 msgid "Cryptographic Services" msgstr "" -#: ../../library/crypto.rst:9 -msgid "" -"The modules described in this chapter implement various algorithms of a " -"cryptographic nature. They are available at the discretion of the " -"installation. Here's an overview:" +msgid "The modules described in this chapter implement various algorithms of a cryptographic nature. They are available at the discretion of the installation. Here's an overview:" msgstr "" -#: ../../library/crypto.rst:7 msgid "cryptography" msgstr "" diff --git a/library/csv.po b/library/csv.po index 402d1b15..42eb05dc 100644 --- a/library/csv.po +++ b/library/csv.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:03+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,90 +24,42 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/csv.rst:2 msgid ":mod:`!csv` --- CSV File Reading and Writing" msgstr "" -#: ../../library/csv.rst:9 msgid "**Source code:** :source:`Lib/csv.py`" msgstr "" -#: ../../library/csv.rst:17 -msgid "" -"The so-called CSV (Comma Separated Values) format is the most common import " -"and export format for spreadsheets and databases. CSV format was used for " -"many years prior to attempts to describe the format in a standardized way " -"in :rfc:`4180`. The lack of a well-defined standard means that subtle " -"differences often exist in the data produced and consumed by different " -"applications. These differences can make it annoying to process CSV files " -"from multiple sources. Still, while the delimiters and quoting characters " -"vary, the overall format is similar enough that it is possible to write a " -"single module which can efficiently manipulate such data, hiding the details " -"of reading and writing the data from the programmer." -msgstr "" - -#: ../../library/csv.rst:28 -msgid "" -"The :mod:`!csv` module implements classes to read and write tabular data in " -"CSV format. It allows programmers to say, \"write this data in the format " -"preferred by Excel,\" or \"read data from this file which was generated by " -"Excel,\" without knowing the precise details of the CSV format used by " -"Excel. Programmers can also describe the CSV formats understood by other " -"applications or define their own special-purpose CSV formats." +msgid "The so-called CSV (Comma Separated Values) format is the most common import and export format for spreadsheets and databases. CSV format was used for many years prior to attempts to describe the format in a standardized way in :rfc:`4180`. The lack of a well-defined standard means that subtle differences often exist in the data produced and consumed by different applications. These differences can make it annoying to process CSV files from multiple sources. Still, while the delimiters and quoting characters vary, the overall format is similar enough that it is possible to write a single module which can efficiently manipulate such data, hiding the details of reading and writing the data from the programmer." msgstr "" -#: ../../library/csv.rst:35 -msgid "" -"The :mod:`!csv` module's :class:`reader` and :class:`writer` objects read " -"and write sequences. Programmers can also read and write data in dictionary " -"form using the :class:`DictReader` and :class:`DictWriter` classes." +msgid "The :mod:`!csv` module implements classes to read and write tabular data in CSV format. It allows programmers to say, \"write this data in the format preferred by Excel,\" or \"read data from this file which was generated by Excel,\" without knowing the precise details of the CSV format used by Excel. Programmers can also describe the CSV formats understood by other applications or define their own special-purpose CSV formats." +msgstr "" + +msgid "The :mod:`!csv` module's :class:`reader` and :class:`writer` objects read and write sequences. Programmers can also read and write data in dictionary form using the :class:`DictReader` and :class:`DictWriter` classes." msgstr "" -#: ../../library/csv.rst:41 msgid ":pep:`305` - CSV File API" msgstr "" -#: ../../library/csv.rst:42 msgid "The Python Enhancement Proposal which proposed this addition to Python." msgstr "" -#: ../../library/csv.rst:48 msgid "Module Contents" msgstr "" -#: ../../library/csv.rst:50 msgid "The :mod:`!csv` module defines the following functions:" msgstr "" -#: ../../library/csv.rst:58 -msgid "" -"Return a :ref:`reader object ` that will process lines from " -"the given *csvfile*. A csvfile must be an iterable of strings, each in the " -"reader's defined csv format. A csvfile is most commonly a file-like object " -"or list. If *csvfile* is a file object, it should be opened with " -"``newline=''``. [1]_ An optional *dialect* parameter can be given which is " -"used to define a set of parameters specific to a particular CSV dialect. It " -"may be an instance of a subclass of the :class:`Dialect` class or one of the " -"strings returned by the :func:`list_dialects` function. The other optional " -"*fmtparams* keyword arguments can be given to override individual formatting " -"parameters in the current dialect. For full details about the dialect and " -"formatting parameters, see section :ref:`csv-fmt-params`." -msgstr "" - -#: ../../library/csv.rst:72 -msgid "" -"Each row read from the csv file is returned as a list of strings. No " -"automatic data type conversion is performed unless " -"the :data:`QUOTE_NONNUMERIC` format option is specified (in which case " -"unquoted fields are transformed into floats)." +msgid "Return a :ref:`reader object ` that will process lines from the given *csvfile*. A csvfile must be an iterable of strings, each in the reader's defined csv format. A csvfile is most commonly a file-like object or list. If *csvfile* is a file object, it should be opened with ``newline=''``. [1]_ An optional *dialect* parameter can be given which is used to define a set of parameters specific to a particular CSV dialect. It may be an instance of a subclass of the :class:`Dialect` class or one of the strings returned by the :func:`list_dialects` function. The other optional *fmtparams* keyword arguments can be given to override individual formatting parameters in the current dialect. For full details about the dialect and formatting parameters, see section :ref:`csv-fmt-params`." +msgstr "" + +msgid "Each row read from the csv file is returned as a list of strings. No automatic data type conversion is performed unless the :data:`QUOTE_NONNUMERIC` format option is specified (in which case unquoted fields are transformed into floats)." msgstr "" -#: ../../library/csv.rst:76 ../../library/csv.rst:113 ../../library/csv.rst:196 -#: ../../library/csv.rst:242 msgid "A short usage example::" msgstr "" -#: ../../library/csv.rst:78 msgid "" ">>> import csv\n" ">>> with open('eggs.csv', newline='') as csvfile:\n" @@ -118,37 +70,17 @@ msgid "" "Spam, Lovely Spam, Wonderful Spam" msgstr "" -#: ../../library/csv.rst:86 msgid "where :file:`eggs.csv` contains:" msgstr "" -#: ../../library/csv.rst:88 ../../library/csv.rst:124 msgid "" "Spam Spam Spam Spam Spam |Baked Beans|\n" "Spam |Lovely Spam| |Wonderful Spam|" msgstr "" -#: ../../library/csv.rst:96 -msgid "" -"Return a writer object responsible for converting the user's data into " -"delimited strings on the given file-like object. *csvfile* can be any " -"object with a :meth:`~io.TextIOBase.write` method. If *csvfile* is a file " -"object, it should be opened with ``newline=''`` [1]_. An optional *dialect* " -"parameter can be given which is used to define a set of parameters specific " -"to a particular CSV dialect. It may be an instance of a subclass of " -"the :class:`Dialect` class or one of the strings returned by " -"the :func:`list_dialects` function. The other optional *fmtparams* keyword " -"arguments can be given to override individual formatting parameters in the " -"current dialect. For full details about dialects and formatting parameters, " -"see the :ref:`csv-fmt-params` section. To make it as easy as possible to " -"interface with modules which implement the DB API, the value :const:`None` " -"is written as the empty string. While this isn't a reversible " -"transformation, it makes it easier to dump SQL NULL data values to CSV files " -"without preprocessing the data returned from a ``cursor.fetch*`` call. All " -"other non-string data are stringified with :func:`str` before being written." -msgstr "" - -#: ../../library/csv.rst:115 +msgid "Return a writer object responsible for converting the user's data into delimited strings on the given file-like object. *csvfile* can be any object with a :meth:`~io.TextIOBase.write` method. If *csvfile* is a file object, it should be opened with ``newline=''`` [1]_. An optional *dialect* parameter can be given which is used to define a set of parameters specific to a particular CSV dialect. It may be an instance of a subclass of the :class:`Dialect` class or one of the strings returned by the :func:`list_dialects` function. The other optional *fmtparams* keyword arguments can be given to override individual formatting parameters in the current dialect. For full details about dialects and formatting parameters, see the :ref:`csv-fmt-params` section. To make it as easy as possible to interface with modules which implement the DB API, the value :const:`None` is written as the empty string. While this isn't a reversible transformation, it makes it easier to dump SQL NULL data values to CSV files without preprocessing the data returned from a ``cursor.fetch*`` call. All other non-string data are stringified with :func:`str` before being written." +msgstr "" + msgid "" "import csv\n" "with open('eggs.csv', 'w', newline='') as csvfile:\n" @@ -158,93 +90,48 @@ msgid "" " spamwriter.writerow(['Spam', 'Lovely Spam', 'Wonderful Spam'])" msgstr "" -#: ../../library/csv.rst:122 msgid "which writes :file:`eggs.csv` containing:" msgstr "" -#: ../../library/csv.rst:132 -msgid "" -"Associate *dialect* with *name*. *name* must be a string. The dialect can " -"be specified either by passing a sub-class of :class:`Dialect`, or by " -"*fmtparams* keyword arguments, or both, with keyword arguments overriding " -"parameters of the dialect. For full details about dialects and formatting " -"parameters, see section :ref:`csv-fmt-params`." +msgid "Associate *dialect* with *name*. *name* must be a string. The dialect can be specified either by passing a sub-class of :class:`Dialect`, or by *fmtparams* keyword arguments, or both, with keyword arguments overriding parameters of the dialect. For full details about dialects and formatting parameters, see section :ref:`csv-fmt-params`." msgstr "" -#: ../../library/csv.rst:141 -msgid "" -"Delete the dialect associated with *name* from the dialect registry. " -"An :exc:`Error` is raised if *name* is not a registered dialect name." +msgid "Delete the dialect associated with *name* from the dialect registry. An :exc:`Error` is raised if *name* is not a registered dialect name." msgstr "" -#: ../../library/csv.rst:147 -msgid "" -"Return the dialect associated with *name*. An :exc:`Error` is raised if " -"*name* is not a registered dialect name. This function returns an " -"immutable :class:`Dialect`." +msgid "Return the dialect associated with *name*. An :exc:`Error` is raised if *name* is not a registered dialect name. This function returns an immutable :class:`Dialect`." msgstr "" -#: ../../library/csv.rst:153 msgid "Return the names of all registered dialects." msgstr "" -#: ../../library/csv.rst:159 -msgid "" -"Returns the current maximum field size allowed by the parser. If *new_limit* " -"is given, this becomes the new limit." +msgid "Returns the current maximum field size allowed by the parser. If *new_limit* is given, this becomes the new limit." msgstr "" -#: ../../library/csv.rst:163 msgid "The :mod:`!csv` module defines the following classes:" msgstr "" -#: ../../library/csv.rst:168 -msgid "" -"Create an object that operates like a regular reader but maps the " -"information in each row to a :class:`dict` whose keys are given by the " -"optional *fieldnames* parameter." +msgid "Create an object that operates like a regular reader but maps the information in each row to a :class:`dict` whose keys are given by the optional *fieldnames* parameter." msgstr "" -#: ../../library/csv.rst:172 -msgid "" -"The *fieldnames* parameter is a :term:`sequence`. If *fieldnames* is " -"omitted, the values in the first row of file *f* will be used as the " -"fieldnames and will be omitted from the results. If *fieldnames* is " -"provided, they will be used and the first row will be included in the " -"results. Regardless of how the fieldnames are determined, the dictionary " -"preserves their original ordering." +msgid "The *fieldnames* parameter is a :term:`sequence`. If *fieldnames* is omitted, the values in the first row of file *f* will be used as the fieldnames and will be omitted from the results. If *fieldnames* is provided, they will be used and the first row will be included in the results. Regardless of how the fieldnames are determined, the dictionary preserves their original ordering." msgstr "" -#: ../../library/csv.rst:179 -msgid "" -"If a row has more fields than fieldnames, the remaining data is put in a " -"list and stored with the fieldname specified by *restkey* (which defaults to " -"``None``). If a non-blank row has fewer fields than fieldnames, the missing " -"values are filled-in with the value of *restval* (which defaults to " -"``None``)." +msgid "If a row has more fields than fieldnames, the remaining data is put in a list and stored with the fieldname specified by *restkey* (which defaults to ``None``). If a non-blank row has fewer fields than fieldnames, the missing values are filled-in with the value of *restval* (which defaults to ``None``)." msgstr "" -#: ../../library/csv.rst:185 -msgid "" -"All other optional or keyword arguments are passed to the " -"underlying :class:`reader` instance." +msgid "All other optional or keyword arguments are passed to the underlying :class:`reader` instance." msgstr "" -#: ../../library/csv.rst:188 ../../library/csv.rst:240 -msgid "" -"If the argument passed to *fieldnames* is an iterator, it will be coerced to " -"a :class:`list`." +msgid "If the argument passed to *fieldnames* is an iterator, it will be coerced to a :class:`list`." msgstr "" -#: ../../library/csv.rst:190 msgid "Returned rows are now of type :class:`OrderedDict`." msgstr "" -#: ../../library/csv.rst:193 msgid "Returned rows are now of type :class:`dict`." msgstr "" -#: ../../library/csv.rst:198 msgid "" ">>> import csv\n" ">>> with open('names.csv', newline='') as csvfile:\n" @@ -259,40 +146,21 @@ msgid "" "{'first_name': 'John', 'last_name': 'Cleese'}" msgstr "" -#: ../../library/csv.rst:210 msgid "where :file:`names.csv` contains:" msgstr "" -#: ../../library/csv.rst:212 msgid "" "first_name,last_name\n" "Eric,Idle\n" "John,Cleese" msgstr "" -#: ../../library/csv.rst:222 -msgid "" -"Create an object which operates like a regular writer but maps dictionaries " -"onto output rows. The *fieldnames* parameter is a :mod:`sequence " -"` of keys that identify the order in which values in the " -"dictionary passed to the :meth:`~csvwriter.writerow` method are written to " -"file *f*. The optional *restval* parameter specifies the value to be " -"written if the dictionary is missing a key in *fieldnames*. If the " -"dictionary passed to the :meth:`~csvwriter.writerow` method contains a key " -"not found in *fieldnames*, the optional *extrasaction* parameter indicates " -"what action to take. If it is set to ``'raise'``, the default value, " -"a :exc:`ValueError` is raised. If it is set to ``'ignore'``, extra values in " -"the dictionary are ignored. Any other optional or keyword arguments are " -"passed to the underlying :class:`writer` instance." -msgstr "" - -#: ../../library/csv.rst:237 -msgid "" -"Note that unlike the :class:`DictReader` class, the *fieldnames* parameter " -"of the :class:`DictWriter` class is not optional." +msgid "Create an object which operates like a regular writer but maps dictionaries onto output rows. The *fieldnames* parameter is a :mod:`sequence ` of keys that identify the order in which values in the dictionary passed to the :meth:`~csvwriter.writerow` method are written to file *f*. The optional *restval* parameter specifies the value to be written if the dictionary is missing a key in *fieldnames*. If the dictionary passed to the :meth:`~csvwriter.writerow` method contains a key not found in *fieldnames*, the optional *extrasaction* parameter indicates what action to take. If it is set to ``'raise'``, the default value, a :exc:`ValueError` is raised. If it is set to ``'ignore'``, extra values in the dictionary are ignored. Any other optional or keyword arguments are passed to the underlying :class:`writer` instance." +msgstr "" + +msgid "Note that unlike the :class:`DictReader` class, the *fieldnames* parameter of the :class:`DictWriter` class is not optional." msgstr "" -#: ../../library/csv.rst:244 msgid "" "import csv\n" "\n" @@ -306,11 +174,9 @@ msgid "" " writer.writerow({'first_name': 'Wonderful', 'last_name': 'Spam'})" msgstr "" -#: ../../library/csv.rst:255 msgid "which writes :file:`names.csv` containing:" msgstr "" -#: ../../library/csv.rst:257 msgid "" "first_name,last_name\n" "Baked,Beans\n" @@ -318,23 +184,12 @@ msgid "" "Wonderful,Spam" msgstr "" -#: ../../library/csv.rst:267 -msgid "" -"The :class:`Dialect` class is a container class whose attributes contain " -"information for how to handle doublequotes, whitespace, delimiters, etc. Due " -"to the lack of a strict CSV specification, different applications produce " -"subtly different CSV data. :class:`Dialect` instances define " -"how :class:`reader` and :class:`writer` instances behave." +msgid "The :class:`Dialect` class is a container class whose attributes contain information for how to handle doublequotes, whitespace, delimiters, etc. Due to the lack of a strict CSV specification, different applications produce subtly different CSV data. :class:`Dialect` instances define how :class:`reader` and :class:`writer` instances behave." msgstr "" -#: ../../library/csv.rst:273 -msgid "" -"All available :class:`Dialect` names are returned by :func:`list_dialects`, " -"and they can be registered with specific :class:`reader` and :class:`writer` " -"classes through their initializer (``__init__``) functions like this::" +msgid "All available :class:`Dialect` names are returned by :func:`list_dialects`, and they can be registered with specific :class:`reader` and :class:`writer` classes through their initializer (``__init__``) functions like this::" msgstr "" -#: ../../library/csv.rst:277 msgid "" "import csv\n" "\n" @@ -342,84 +197,45 @@ msgid "" " writer = csv.writer(csvfile, dialect='unix')" msgstr "" -#: ../../library/csv.rst:285 -msgid "" -"The :class:`excel` class defines the usual properties of an Excel-generated " -"CSV file. It is registered with the dialect name ``'excel'``." +msgid "The :class:`excel` class defines the usual properties of an Excel-generated CSV file. It is registered with the dialect name ``'excel'``." msgstr "" -#: ../../library/csv.rst:291 -msgid "" -"The :class:`excel_tab` class defines the usual properties of an Excel-" -"generated TAB-delimited file. It is registered with the dialect name " -"``'excel-tab'``." +msgid "The :class:`excel_tab` class defines the usual properties of an Excel-generated TAB-delimited file. It is registered with the dialect name ``'excel-tab'``." msgstr "" -#: ../../library/csv.rst:297 -msgid "" -"The :class:`unix_dialect` class defines the usual properties of a CSV file " -"generated on UNIX systems, i.e. using ``'\\n'`` as line terminator and " -"quoting all fields. It is registered with the dialect name ``'unix'``." +msgid "The :class:`unix_dialect` class defines the usual properties of a CSV file generated on UNIX systems, i.e. using ``'\\n'`` as line terminator and quoting all fields. It is registered with the dialect name ``'unix'``." msgstr "" -#: ../../library/csv.rst:306 msgid "The :class:`Sniffer` class is used to deduce the format of a CSV file." msgstr "" -#: ../../library/csv.rst:308 msgid "The :class:`Sniffer` class provides two methods:" msgstr "" -#: ../../library/csv.rst:312 -msgid "" -"Analyze the given *sample* and return a :class:`Dialect` subclass reflecting " -"the parameters found. If the optional *delimiters* parameter is given, it " -"is interpreted as a string containing possible valid delimiter characters." +msgid "Analyze the given *sample* and return a :class:`Dialect` subclass reflecting the parameters found. If the optional *delimiters* parameter is given, it is interpreted as a string containing possible valid delimiter characters." msgstr "" -#: ../../library/csv.rst:317 -msgid "" -"If several delimiters fit the sample equally well --- for example if both " -"``','`` and ``';'`` split every row consistently --- the delimiters ``','``, " -"``'\\t'``, ``';'``, ``' '`` and ``':'`` are preferred, in this order, no " -"matter how many times each of them occurs." +msgid "If several delimiters fit the sample equally well --- for example if both ``','`` and ``';'`` split every row consistently --- the delimiters ``','``, ``'\\t'``, ``';'``, ``' '`` and ``':'`` are preferred, in this order, no matter how many times each of them occurs." msgstr "" -#: ../../library/csv.rst:325 -msgid "" -"Analyze the sample text (presumed to be in CSV format) and " -"return :const:`True` if the first row appears to be a series of column " -"headers. Inspecting each column, one of two key criteria will be considered " -"to estimate if the sample contains a header:" +msgid "Analyze the sample text (presumed to be in CSV format) and return :const:`True` if the first row appears to be a series of column headers. Inspecting each column, one of two key criteria will be considered to estimate if the sample contains a header:" msgstr "" -#: ../../library/csv.rst:330 msgid "the second through n-th rows contain numeric values" msgstr "" -#: ../../library/csv.rst:331 -msgid "" -"the second through n-th rows contain strings where at least one value's " -"length differs from that of the putative header of that column." +msgid "the second through n-th rows contain strings where at least one value's length differs from that of the putative header of that column." msgstr "" -#: ../../library/csv.rst:334 -msgid "" -"Twenty-one rows after the header are sampled; if more than half of the " -"columns + rows meet the criteria, :const:`True` is returned." +msgid "Twenty-one rows after the header are sampled; if more than half of the columns + rows meet the criteria, :const:`True` is returned." msgstr "" -#: ../../library/csv.rst:339 -msgid "" -"This method is a rough heuristic and may produce both false positives and " -"negatives." +msgid "This method is a rough heuristic and may produce both false positives and negatives." msgstr "" -#: ../../library/csv.rst:342 msgid "An example for :class:`Sniffer` use::" msgstr "" -#: ../../library/csv.rst:344 msgid "" "with open('example.csv', newline='') as csvfile:\n" " dialect = csv.Sniffer().sniff(csvfile.read(1024))\n" @@ -428,317 +244,165 @@ msgid "" " # ... process CSV file contents here ..." msgstr "" -#: ../../library/csv.rst:353 msgid "The :mod:`!csv` module defines the following constants:" msgstr "" -#: ../../library/csv.rst:357 msgid "Instructs :class:`writer` objects to quote all fields." msgstr "" -#: ../../library/csv.rst:362 -msgid "" -"Instructs :class:`writer` objects to only quote those fields which contain " -"special characters such as *delimiter*, *quotechar*, ``'\\r'``, ``'\\n'`` or " -"any of the characters in *lineterminator*." +msgid "Instructs :class:`writer` objects to only quote those fields which contain special characters such as *delimiter*, *quotechar*, ``'\\r'``, ``'\\n'`` or any of the characters in *lineterminator*." msgstr "" -#: ../../library/csv.rst:369 msgid "Instructs :class:`writer` objects to quote all non-numeric fields." msgstr "" -#: ../../library/csv.rst:371 -msgid "" -"Instructs :class:`reader` objects to convert all non-quoted fields to " -"type :class:`float`." +msgid "Instructs :class:`reader` objects to convert all non-quoted fields to type :class:`float`." msgstr "" -#: ../../library/csv.rst:374 -msgid "" -"Some numeric types, such as :class:`bool`, :class:`~fractions.Fraction`, " -"or :class:`~enum.IntEnum`, have a string representation that cannot be " -"converted to :class:`float`. They cannot be read in " -"the :data:`QUOTE_NONNUMERIC` and :data:`QUOTE_STRINGS` modes." +msgid "Some numeric types, such as :class:`bool`, :class:`~fractions.Fraction`, or :class:`~enum.IntEnum`, have a string representation that cannot be converted to :class:`float`. They cannot be read in the :data:`QUOTE_NONNUMERIC` and :data:`QUOTE_STRINGS` modes." msgstr "" -#: ../../library/csv.rst:382 -msgid "" -"Instructs :class:`writer` objects to never quote fields. When the current " -"*delimiter*, *quotechar*, *escapechar*, ``'\\r'``, ``'\\n'`` or any of the " -"characters in *lineterminator* occurs in output data it is preceded by the " -"current *escapechar* character. If *escapechar* is not set, the writer will " -"raise :exc:`Error` if any characters that require escaping are encountered. " -"Set *quotechar* to ``None`` to prevent its escaping." +msgid "Instructs :class:`writer` objects to never quote fields. When the current *delimiter*, *quotechar*, *escapechar*, ``'\\r'``, ``'\\n'`` or any of the characters in *lineterminator* occurs in output data it is preceded by the current *escapechar* character. If *escapechar* is not set, the writer will raise :exc:`Error` if any characters that require escaping are encountered. Set *quotechar* to ``None`` to prevent its escaping." msgstr "" -#: ../../library/csv.rst:390 -msgid "" -"Instructs :class:`reader` objects to perform no special processing of quote " -"characters." +msgid "Instructs :class:`reader` objects to perform no special processing of quote characters." msgstr "" -#: ../../library/csv.rst:394 -msgid "" -"Instructs :class:`writer` objects to quote all fields which are not " -"``None``. This is similar to :data:`QUOTE_ALL`, except that if a field " -"value is ``None`` an empty (unquoted) string is written." +msgid "Instructs :class:`writer` objects to quote all fields which are not ``None``. This is similar to :data:`QUOTE_ALL`, except that if a field value is ``None`` an empty (unquoted) string is written." msgstr "" -#: ../../library/csv.rst:398 -msgid "" -"Instructs :class:`reader` objects to interpret an empty (unquoted) field as " -"``None`` and to otherwise behave as :data:`QUOTE_ALL`." +msgid "Instructs :class:`reader` objects to interpret an empty (unquoted) field as ``None`` and to otherwise behave as :data:`QUOTE_ALL`." msgstr "" -#: ../../library/csv.rst:405 -msgid "" -"Instructs :class:`writer` objects to always place quotes around fields which " -"are strings. This is similar to :data:`QUOTE_NONNUMERIC`, except that if a " -"field value is ``None`` an empty (unquoted) string is written." +msgid "Instructs :class:`writer` objects to always place quotes around fields which are strings. This is similar to :data:`QUOTE_NONNUMERIC`, except that if a field value is ``None`` an empty (unquoted) string is written." msgstr "" -#: ../../library/csv.rst:409 -msgid "" -"Instructs :class:`reader` objects to interpret an empty (unquoted) string as " -"``None`` and to otherwise behave as :data:`QUOTE_NONNUMERIC`." +msgid "Instructs :class:`reader` objects to interpret an empty (unquoted) string as ``None`` and to otherwise behave as :data:`QUOTE_NONNUMERIC`." msgstr "" -#: ../../library/csv.rst:414 msgid "The :mod:`!csv` module defines the following exception:" msgstr "" -#: ../../library/csv.rst:419 msgid "Raised by any of the functions when an error is detected." msgstr "" -#: ../../library/csv.rst:424 msgid "Dialects and Formatting Parameters" msgstr "" -#: ../../library/csv.rst:426 -msgid "" -"To make it easier to specify the format of input and output records, " -"specific formatting parameters are grouped together into dialects. A " -"dialect is a subclass of the :class:`Dialect` class containing various " -"attributes describing the format of the CSV file. When " -"creating :class:`reader` or :class:`writer` objects, the programmer can " -"specify a string or a subclass of the :class:`Dialect` class as the dialect " -"parameter. In addition to, or instead of, the *dialect* parameter, the " -"programmer can also specify individual formatting parameters, which have the " -"same names as the attributes defined below for the :class:`Dialect` class." -msgstr "" - -#: ../../library/csv.rst:436 +msgid "To make it easier to specify the format of input and output records, specific formatting parameters are grouped together into dialects. A dialect is a subclass of the :class:`Dialect` class containing various attributes describing the format of the CSV file. When creating :class:`reader` or :class:`writer` objects, the programmer can specify a string or a subclass of the :class:`Dialect` class as the dialect parameter. In addition to, or instead of, the *dialect* parameter, the programmer can also specify individual formatting parameters, which have the same names as the attributes defined below for the :class:`Dialect` class." +msgstr "" + msgid "Dialects support the following attributes:" msgstr "" -#: ../../library/csv.rst:441 -msgid "" -"A one-character string used to separate fields. It defaults to ``','``." +msgid "A one-character string used to separate fields. It defaults to ``','``." msgstr "" -#: ../../library/csv.rst:446 -msgid "" -"Controls how instances of *quotechar* appearing inside a field should " -"themselves be quoted. When :const:`True`, the character is doubled. " -"When :const:`False`, the *escapechar* is used as a prefix to the " -"*quotechar*. It defaults to :const:`True`." +msgid "Controls how instances of *quotechar* appearing inside a field should themselves be quoted. When :const:`True`, the character is doubled. When :const:`False`, the *escapechar* is used as a prefix to the *quotechar*. It defaults to :const:`True`." msgstr "" -#: ../../library/csv.rst:451 -msgid "" -"On output, if *doublequote* is :const:`False` and no *escapechar* is " -"set, :exc:`Error` is raised if a *quotechar* is found in a field." +msgid "On output, if *doublequote* is :const:`False` and no *escapechar* is set, :exc:`Error` is raised if a *quotechar* is found in a field." msgstr "" -#: ../../library/csv.rst:457 -msgid "" -"A one-character string used by the writer to escape characters that require " -"escaping:" +msgid "A one-character string used by the writer to escape characters that require escaping:" msgstr "" -#: ../../library/csv.rst:460 -msgid "" -"the *delimiter*, the *quotechar*, ``'\\r'``, ``'\\n'`` and any of the " -"characters in *lineterminator* are escaped if *quoting* is set " -"to :const:`QUOTE_NONE`;" +msgid "the *delimiter*, the *quotechar*, ``'\\r'``, ``'\\n'`` and any of the characters in *lineterminator* are escaped if *quoting* is set to :const:`QUOTE_NONE`;" msgstr "" -#: ../../library/csv.rst:463 msgid "the *quotechar* is escaped if *doublequote* is :const:`False`;" msgstr "" -#: ../../library/csv.rst:464 msgid "the *escapechar* itself." msgstr "" -#: ../../library/csv.rst:466 -msgid "" -"On reading, the *escapechar* removes any special meaning from the following " -"character. It defaults to :const:`None`, which disables escaping." +msgid "On reading, the *escapechar* removes any special meaning from the following character. It defaults to :const:`None`, which disables escaping." msgstr "" -#: ../../library/csv.rst:469 msgid "An empty *escapechar* is not allowed." msgstr "" -#: ../../library/csv.rst:474 -msgid "" -"The string used to terminate lines produced by the :class:`writer`. It " -"defaults to ``'\\r\\n'``." +msgid "The string used to terminate lines produced by the :class:`writer`. It defaults to ``'\\r\\n'``." msgstr "" -#: ../../library/csv.rst:479 -msgid "" -"The :class:`reader` is hard-coded to recognise either ``'\\r'`` or ``'\\n'`` " -"as end-of-line, and ignores *lineterminator*. This behavior may change in " -"the future." +msgid "The :class:`reader` is hard-coded to recognise either ``'\\r'`` or ``'\\n'`` as end-of-line, and ignores *lineterminator*. This behavior may change in the future." msgstr "" -#: ../../library/csv.rst:486 -msgid "" -"A one-character string used to quote fields containing special characters, " -"such as the *delimiter* or the *quotechar*, or which contain new-line " -"characters (``'\\r'``, ``'\\n'`` or any of the characters in " -"*lineterminator*). It defaults to ``'\"'``. Can be set to ``None`` to " -"prevent escaping ``'\"'`` if *quoting* is set to :const:`QUOTE_NONE`." +msgid "A one-character string used to quote fields containing special characters, such as the *delimiter* or the *quotechar*, or which contain new-line characters (``'\\r'``, ``'\\n'`` or any of the characters in *lineterminator*). It defaults to ``'\"'``. Can be set to ``None`` to prevent escaping ``'\"'`` if *quoting* is set to :const:`QUOTE_NONE`." msgstr "" -#: ../../library/csv.rst:493 msgid "An empty *quotechar* is not allowed." msgstr "" -#: ../../library/csv.rst:498 -msgid "" -"Controls when quotes should be generated by the writer and recognised by the " -"reader. It can take on any of the :ref:`QUOTE_\\* constants ` and defaults to :const:`QUOTE_MINIMAL` if *quotechar* is not " -"``None``, and :const:`QUOTE_NONE` otherwise." +msgid "Controls when quotes should be generated by the writer and recognised by the reader. It can take on any of the :ref:`QUOTE_\\* constants ` and defaults to :const:`QUOTE_MINIMAL` if *quotechar* is not ``None``, and :const:`QUOTE_NONE` otherwise." msgstr "" -#: ../../library/csv.rst:506 -msgid "" -"When :const:`True`, spaces immediately following the *delimiter* are " -"ignored. The default is :const:`False`. When combining ``delimiter=' '`` " -"with ``skipinitialspace=True``, unquoted empty fields are not allowed." +msgid "When :const:`True`, spaces immediately following the *delimiter* are ignored. The default is :const:`False`. When combining ``delimiter=' '`` with ``skipinitialspace=True``, unquoted empty fields are not allowed." msgstr "" -#: ../../library/csv.rst:513 -msgid "" -"When ``True``, raise exception :exc:`Error` on bad CSV input. The default is " -"``False``." +msgid "When ``True``, raise exception :exc:`Error` on bad CSV input. The default is ``False``." msgstr "" -#: ../../library/csv.rst:519 msgid "Reader Objects" msgstr "" -#: ../../library/csv.rst:521 -msgid "" -"Reader objects (:class:`DictReader` instances and objects returned by " -"the :func:`reader` function) have the following public methods:" +msgid "Reader objects (:class:`DictReader` instances and objects returned by the :func:`reader` function) have the following public methods:" msgstr "" -#: ../../library/csv.rst:526 -msgid "" -"Return the next row of the reader's iterable object as a list (if the object " -"was returned from :func:`reader`) or a dict (if it is a :class:`DictReader` " -"instance), parsed according to the current :class:`Dialect`. Usually you " -"should call this as ``next(reader)``." +msgid "Return the next row of the reader's iterable object as a list (if the object was returned from :func:`reader`) or a dict (if it is a :class:`DictReader` instance), parsed according to the current :class:`Dialect`. Usually you should call this as ``next(reader)``." msgstr "" -#: ../../library/csv.rst:532 msgid "Reader objects have the following public attributes:" msgstr "" -#: ../../library/csv.rst:536 msgid "A read-only description of the dialect in use by the parser." msgstr "" -#: ../../library/csv.rst:541 -msgid "" -"The number of lines read from the source iterator. This is not the same as " -"the number of records returned, as records can span multiple lines." +msgid "The number of lines read from the source iterator. This is not the same as the number of records returned, as records can span multiple lines." msgstr "" -#: ../../library/csv.rst:545 msgid "DictReader objects have the following public attribute:" msgstr "" -#: ../../library/csv.rst:549 -msgid "" -"If not passed as a parameter when creating the object, this attribute is " -"initialized upon first access or when the first record is read from the file." +msgid "If not passed as a parameter when creating the object, this attribute is initialized upon first access or when the first record is read from the file." msgstr "" -#: ../../library/csv.rst:556 msgid "Writer Objects" msgstr "" -#: ../../library/csv.rst:558 -msgid "" -":class:`writer` objects (:class:`DictWriter` instances and objects returned " -"by the :func:`writer` function) have the following public methods. A *row* " -"must be an iterable of strings or numbers for :class:`writer` objects and a " -"dictionary mapping fieldnames to strings or numbers (by passing them " -"through :func:`str` first) for :class:`DictWriter` objects. Note that " -"complex numbers are written out surrounded by parens. This may cause some " -"problems for other programs which read CSV files (assuming they support " -"complex numbers at all)." +msgid ":class:`writer` objects (:class:`DictWriter` instances and objects returned by the :func:`writer` function) have the following public methods. A *row* must be an iterable of strings or numbers for :class:`writer` objects and a dictionary mapping fieldnames to strings or numbers (by passing them through :func:`str` first) for :class:`DictWriter` objects. Note that complex numbers are written out surrounded by parens. This may cause some problems for other programs which read CSV files (assuming they support complex numbers at all)." msgstr "" -#: ../../library/csv.rst:569 -msgid "" -"Write the *row* parameter to the writer's file object, formatted according " -"to the current :class:`Dialect`. Return the return value of the call to the " -"*write* method of the underlying file object." +msgid "Write the *row* parameter to the writer's file object, formatted according to the current :class:`Dialect`. Return the return value of the call to the *write* method of the underlying file object." msgstr "" -#: ../../library/csv.rst:573 msgid "Added support of arbitrary iterables." msgstr "" -#: ../../library/csv.rst:578 -msgid "" -"Write all elements in *rows* (an iterable of *row* objects as described " -"above) to the writer's file object, formatted according to the current " -"dialect." +msgid "Write all elements in *rows* (an iterable of *row* objects as described above) to the writer's file object, formatted according to the current dialect." msgstr "" -#: ../../library/csv.rst:582 msgid "Writer objects have the following public attribute:" msgstr "" -#: ../../library/csv.rst:587 msgid "A read-only description of the dialect in use by the writer." msgstr "" -#: ../../library/csv.rst:590 msgid "DictWriter objects have the following public method:" msgstr "" -#: ../../library/csv.rst:595 -msgid "" -"Write a row with the field names (as specified in the constructor) to the " -"writer's file object, formatted according to the current dialect. Return the " -"return value of the :meth:`csvwriter.writerow` call used internally." +msgid "Write a row with the field names (as specified in the constructor) to the writer's file object, formatted according to the current dialect. Return the return value of the :meth:`csvwriter.writerow` call used internally." msgstr "" -#: ../../library/csv.rst:600 -msgid "" -":meth:`writeheader` now also returns the value returned by " -"the :meth:`csvwriter.writerow` method it uses internally." +msgid ":meth:`writeheader` now also returns the value returned by the :meth:`csvwriter.writerow` method it uses internally." msgstr "" -#: ../../library/csv.rst:608 msgid "Examples" msgstr "" -#: ../../library/csv.rst:610 msgid "The simplest example of reading a CSV file::" msgstr "" -#: ../../library/csv.rst:612 msgid "" "import csv\n" "with open('some.csv', newline='') as f:\n" @@ -747,11 +411,9 @@ msgid "" " print(row)" msgstr "" -#: ../../library/csv.rst:618 msgid "Reading a file with an alternate format::" msgstr "" -#: ../../library/csv.rst:620 msgid "" "import csv\n" "with open('passwd', newline='') as f:\n" @@ -760,11 +422,9 @@ msgid "" " print(row)" msgstr "" -#: ../../library/csv.rst:626 msgid "The corresponding simplest possible writing example is::" msgstr "" -#: ../../library/csv.rst:628 msgid "" "import csv\n" "with open('some.csv', 'w', newline='') as f:\n" @@ -772,15 +432,9 @@ msgid "" " writer.writerows(someiterable)" msgstr "" -#: ../../library/csv.rst:633 -msgid "" -"Since :func:`open` is used to open a CSV file for reading, the file will by " -"default be decoded into unicode using the system default encoding " -"(see :func:`locale.getencoding`). To decode a file using a different " -"encoding, use the ``encoding`` argument of open::" +msgid "Since :func:`open` is used to open a CSV file for reading, the file will by default be decoded into unicode using the system default encoding (see :func:`locale.getencoding`). To decode a file using a different encoding, use the ``encoding`` argument of open::" msgstr "" -#: ../../library/csv.rst:638 msgid "" "import csv\n" "with open('some.csv', newline='', encoding='utf-8') as f:\n" @@ -789,17 +443,12 @@ msgid "" " print(row)" msgstr "" -#: ../../library/csv.rst:644 -msgid "" -"The same applies to writing in something other than the system default " -"encoding: specify the encoding argument when opening the output file." +msgid "The same applies to writing in something other than the system default encoding: specify the encoding argument when opening the output file." msgstr "" -#: ../../library/csv.rst:647 msgid "Registering a new dialect::" msgstr "" -#: ../../library/csv.rst:649 msgid "" "import csv\n" "csv.register_dialect('unixpwd', delimiter=':', quoting=csv.QUOTE_NONE)\n" @@ -807,13 +456,9 @@ msgid "" " reader = csv.reader(f, 'unixpwd')" msgstr "" -#: ../../library/csv.rst:654 -msgid "" -"A slightly more advanced use of the reader --- catching and reporting " -"errors::" +msgid "A slightly more advanced use of the reader --- catching and reporting errors::" msgstr "" -#: ../../library/csv.rst:656 msgid "" "import csv, sys\n" "filename = 'some.csv'\n" @@ -826,48 +471,32 @@ msgid "" " sys.exit(f'file {filename}, line {reader.line_num}: {e}')" msgstr "" -#: ../../library/csv.rst:666 -msgid "" -"And while the module doesn't directly support parsing strings, it can easily " -"be done::" +msgid "And while the module doesn't directly support parsing strings, it can easily be done::" msgstr "" -#: ../../library/csv.rst:669 msgid "" "import csv\n" "for row in csv.reader(['one,two,three']):\n" " print(row)" msgstr "" -#: ../../library/csv.rst:675 msgid "Footnotes" msgstr "" -#: ../../library/csv.rst:676 -msgid "" -"If ``newline=''`` is not specified, newlines embedded inside quoted fields " -"will not be interpreted correctly, and on platforms that use ``\\r\\n`` line " -"endings on write an extra ``\\r`` will be added. It should always be safe " -"to specify ``newline=''``, since the csv module does its own " -"(:term:`universal `) newline handling." +msgid "If ``newline=''`` is not specified, newlines embedded inside quoted fields will not be interpreted correctly, and on platforms that use ``\\r\\n`` line endings on write an extra ``\\r`` will be added. It should always be safe to specify ``newline=''``, since the csv module does its own (:term:`universal `) newline handling." msgstr "" -#: ../../library/csv.rst:11 msgid "csv" msgstr "" -#: ../../library/csv.rst:11 msgid "data" msgstr "" -#: ../../library/csv.rst:11 msgid "tabular" msgstr "" -#: ../../library/csv.rst:53 msgid "universal newlines" msgstr "" -#: ../../library/csv.rst:53 msgid "csv.reader function" msgstr "" diff --git a/library/ctypes.po b/library/ctypes.po index 8d5cf6d6..f1a3ffbf 100644 --- a/library/ctypes.po +++ b/library/ctypes.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:03+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,88 +24,42 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/ctypes.rst:2 msgid ":mod:`!ctypes` --- A foreign function library for Python" msgstr "" -#: ../../library/ctypes.rst:9 msgid "**Source code:** :source:`Lib/ctypes`" msgstr "" -#: ../../library/ctypes.rst:13 -msgid "" -":mod:`!ctypes` is a foreign function library for Python. It provides C " -"compatible data types, and allows calling functions in DLLs or shared " -"libraries. It can be used to wrap these libraries in pure Python." +msgid ":mod:`!ctypes` is a foreign function library for Python. It provides C compatible data types, and allows calling functions in DLLs or shared libraries. It can be used to wrap these libraries in pure Python." msgstr "" -#: ../../includes/optional-module.rst:1 -msgid "" -"This is an :term:`optional module`. If it is missing from your copy of " -"CPython, look for documentation from your distributor (that is, whoever " -"provided Python to you). If you are the distributor, see :ref:`optional-" -"module-requirements`." +msgid "This is an :term:`optional module`. If it is missing from your copy of CPython, look for documentation from your distributor (that is, whoever provided Python to you). If you are the distributor, see :ref:`optional-module-requirements`." msgstr "" -#: ../../library/ctypes.rst:21 -msgid "" -":mod:`!ctypes` provides low-level access to native libraries and the " -"process's memory, bypassing Python's safety mechanisms and allowing " -"execution of arbitrary native code. Incorrect use can corrupt data and " -"objects, reveal sensitive information, cause crashes, or otherwise " -"compromise the running process." +msgid ":mod:`!ctypes` provides low-level access to native libraries and the process's memory, bypassing Python's safety mechanisms and allowing execution of arbitrary native code. Incorrect use can corrupt data and objects, reveal sensitive information, cause crashes, or otherwise compromise the running process." msgstr "" -#: ../../library/ctypes.rst:31 msgid "ctypes tutorial" msgstr "" -#: ../../library/ctypes.rst:33 -msgid "" -"Note: Some code samples reference the ctypes :class:`c_int` type. On " -"platforms where ``sizeof(long) == sizeof(int)`` it is an alias " -"to :class:`c_long`. So, you should not be confused if :class:`c_long` is " -"printed if you would expect :class:`c_int` --- they are actually the same " -"type." +msgid "Note: Some code samples reference the ctypes :class:`c_int` type. On platforms where ``sizeof(long) == sizeof(int)`` it is an alias to :class:`c_long`. So, you should not be confused if :class:`c_long` is printed if you would expect :class:`c_int` --- they are actually the same type." msgstr "" -#: ../../library/ctypes.rst:41 msgid "Loading dynamic link libraries" msgstr "" -#: ../../library/ctypes.rst:43 -msgid "" -":mod:`!ctypes` exports the :py:data:`~ctypes.cdll`, and on " -"Windows :py:data:`~ctypes.windll` and :py:data:`~ctypes.oledll` objects, for " -"loading dynamic link libraries." +msgid ":mod:`!ctypes` exports the :py:data:`~ctypes.cdll`, and on Windows :py:data:`~ctypes.windll` and :py:data:`~ctypes.oledll` objects, for loading dynamic link libraries." msgstr "" -#: ../../library/ctypes.rst:47 -msgid "" -"You load libraries by accessing them as attributes of these " -"objects. :py:data:`!cdll` loads libraries which export functions using the " -"standard ``cdecl`` calling convention, while :py:data:`!windll` libraries " -"call functions using the ``stdcall`` calling convention. :py:data:`~oledll` " -"also uses the ``stdcall`` calling convention, and assumes the functions " -"return a Windows :c:type:`!HRESULT` error code. The error code is used to " -"automatically raise an :class:`OSError` exception when the function call " -"fails." +msgid "You load libraries by accessing them as attributes of these objects. :py:data:`!cdll` loads libraries which export functions using the standard ``cdecl`` calling convention, while :py:data:`!windll` libraries call functions using the ``stdcall`` calling convention. :py:data:`~oledll` also uses the ``stdcall`` calling convention, and assumes the functions return a Windows :c:type:`!HRESULT` error code. The error code is used to automatically raise an :class:`OSError` exception when the function call fails." msgstr "" -#: ../../library/ctypes.rst:57 -msgid "" -"Windows errors used to raise :exc:`WindowsError`, which is now an alias " -"of :exc:`OSError`." +msgid "Windows errors used to raise :exc:`WindowsError`, which is now an alias of :exc:`OSError`." msgstr "" -#: ../../library/ctypes.rst:62 -msgid "" -"Here are some examples for Windows. Note that ``msvcrt`` is the MS standard " -"C library containing most standard C functions, and uses the ``cdecl`` " -"calling convention::" +msgid "Here are some examples for Windows. Note that ``msvcrt`` is the MS standard C library containing most standard C functions, and uses the ``cdecl`` calling convention::" msgstr "" -#: ../../library/ctypes.rst:66 msgid "" ">>> from ctypes import *\n" ">>> print(windll.kernel32)\n" @@ -116,32 +70,18 @@ msgid "" ">>>" msgstr "" -#: ../../library/ctypes.rst:74 msgid "Windows appends the usual ``.dll`` file suffix automatically." msgstr "" -#: ../../library/ctypes.rst:77 -msgid "" -"Accessing the standard C library through ``cdll.msvcrt`` will use an " -"outdated version of the library that may be incompatible with the one being " -"used by Python. Where possible, use native Python functionality, or else " -"import and use the ``msvcrt`` module." +msgid "Accessing the standard C library through ``cdll.msvcrt`` will use an outdated version of the library that may be incompatible with the one being used by Python. Where possible, use native Python functionality, or else import and use the ``msvcrt`` module." msgstr "" -#: ../../library/ctypes.rst:82 -msgid "" -"Other systems require the filename *including* the extension to load a " -"library, so attribute access can not be used to load libraries. Either " -"the :meth:`~LibraryLoader.LoadLibrary` method of the dll loaders should be " -"used, or you should load the library by creating an instance " -"of :py:class:`CDLL` by calling the constructor." +msgid "Other systems require the filename *including* the extension to load a library, so attribute access can not be used to load libraries. Either the :meth:`~LibraryLoader.LoadLibrary` method of the dll loaders should be used, or you should load the library by creating an instance of :py:class:`CDLL` by calling the constructor." msgstr "" -#: ../../library/ctypes.rst:88 msgid "For example, on Linux::" msgstr "" -#: ../../library/ctypes.rst:90 msgid "" ">>> cdll.LoadLibrary(\"libc.so.6\")\n" "\n" @@ -151,11 +91,9 @@ msgid "" ">>>" msgstr "" -#: ../../library/ctypes.rst:97 msgid "On macOS::" msgstr "" -#: ../../library/ctypes.rst:99 msgid "" ">>> cdll.LoadLibrary(\"libc.dylib\")\n" "\n" @@ -164,15 +102,12 @@ msgid "" "" msgstr "" -#: ../../library/ctypes.rst:110 msgid "Accessing functions from loaded dlls" msgstr "" -#: ../../library/ctypes.rst:112 msgid "Functions are accessed as attributes of dll objects::" msgstr "" -#: ../../library/ctypes.rst:114 msgid "" ">>> libc.printf\n" "<_FuncPtr object at 0x...>\n" @@ -187,18 +122,9 @@ msgid "" ">>>" msgstr "" -#: ../../library/ctypes.rst:126 -msgid "" -"Note that win32 system dlls like ``kernel32`` and ``user32`` often export " -"ANSI as well as UNICODE versions of a function. The UNICODE version is " -"exported with a ``W`` appended to the name, while the ANSI version is " -"exported with an ``A`` appended to the name. The win32 ``GetModuleHandle`` " -"function, which returns a *module handle* for a given module name, has the " -"following C prototype, and a macro is used to expose one of them as " -"``GetModuleHandle`` depending on whether UNICODE is defined or not::" +msgid "Note that win32 system dlls like ``kernel32`` and ``user32`` often export ANSI as well as UNICODE versions of a function. The UNICODE version is exported with a ``W`` appended to the name, while the ANSI version is exported with an ``A`` appended to the name. The win32 ``GetModuleHandle`` function, which returns a *module handle* for a given module name, has the following C prototype, and a macro is used to expose one of them as ``GetModuleHandle`` depending on whether UNICODE is defined or not::" msgstr "" -#: ../../library/ctypes.rst:134 msgid "" "/* ANSI version */\n" "HMODULE GetModuleHandleA(LPCSTR lpModuleName);\n" @@ -206,35 +132,21 @@ msgid "" "HMODULE GetModuleHandleW(LPCWSTR lpModuleName);" msgstr "" -#: ../../library/ctypes.rst:139 -msgid "" -"*windll* does not try to select one of them by magic, you must access the " -"version you need by specifying ``GetModuleHandleA`` or ``GetModuleHandleW`` " -"explicitly, and then call it with bytes or string objects respectively." +msgid "*windll* does not try to select one of them by magic, you must access the version you need by specifying ``GetModuleHandleA`` or ``GetModuleHandleW`` explicitly, and then call it with bytes or string objects respectively." msgstr "" -#: ../../library/ctypes.rst:143 -msgid "" -"Sometimes, dlls export functions with names which aren't valid Python " -"identifiers, like ``\"??2@YAPAXI@Z\"``. In this case you have to " -"use :func:`getattr` to retrieve the function::" +msgid "Sometimes, dlls export functions with names which aren't valid Python identifiers, like ``\"??2@YAPAXI@Z\"``. In this case you have to use :func:`getattr` to retrieve the function::" msgstr "" -#: ../../library/ctypes.rst:147 msgid "" ">>> getattr(cdll.msvcrt, \"??2@YAPAXI@Z\")\n" "<_FuncPtr object at 0x...>\n" ">>>" msgstr "" -#: ../../library/ctypes.rst:151 -msgid "" -"On Windows, some dlls export functions not by name but by ordinal. These " -"functions can be accessed by indexing the dll object with the ordinal " -"number::" +msgid "On Windows, some dlls export functions not by name but by ordinal. These functions can be accessed by indexing the dll object with the ordinal number::" msgstr "" -#: ../../library/ctypes.rst:154 msgid "" ">>> cdll.kernel32[1]\n" "<_FuncPtr object at 0x...>\n" @@ -247,74 +159,49 @@ msgid "" ">>>" msgstr "" -#: ../../library/ctypes.rst:168 msgid "Calling functions" msgstr "" -#: ../../library/ctypes.rst:170 -msgid "" -"You can call these functions like any other Python callable. This example " -"uses the ``rand()`` function, which takes no arguments and returns a pseudo-" -"random integer::" +msgid "You can call these functions like any other Python callable. This example uses the ``rand()`` function, which takes no arguments and returns a pseudo-random integer::" msgstr "" -#: ../../library/ctypes.rst:173 msgid "" ">>> print(libc.rand())\n" "1804289383" msgstr "" -#: ../../library/ctypes.rst:176 -msgid "" -"On Windows, you can call the ``GetModuleHandleA()`` function, which returns " -"a win32 module handle (passing ``None`` as single argument to call it with a " -"``NULL`` pointer)::" +msgid "On Windows, you can call the ``GetModuleHandleA()`` function, which returns a win32 module handle (passing ``None`` as single argument to call it with a ``NULL`` pointer)::" msgstr "" -#: ../../library/ctypes.rst:179 msgid "" ">>> print(hex(windll.kernel32.GetModuleHandleA(None)))\n" "0x1d000000\n" ">>>" msgstr "" -#: ../../library/ctypes.rst:183 -msgid "" -":exc:`ValueError` is raised when you call an ``stdcall`` function with the " -"``cdecl`` calling convention, or vice versa::" +msgid ":exc:`ValueError` is raised when you call an ``stdcall`` function with the ``cdecl`` calling convention, or vice versa::" msgstr "" -#: ../../library/ctypes.rst:186 msgid "" ">>> cdll.kernel32.GetModuleHandleA(None)\n" "Traceback (most recent call last):\n" " File \"\", line 1, in \n" -"ValueError: Procedure probably called with not enough arguments (4 bytes " -"missing)\n" +"ValueError: Procedure probably called with not enough arguments (4 bytes missing)\n" ">>>\n" "\n" ">>> windll.msvcrt.printf(b\"spam\")\n" "Traceback (most recent call last):\n" " File \"\", line 1, in \n" -"ValueError: Procedure probably called with too many arguments (4 bytes in " -"excess)\n" +"ValueError: Procedure probably called with too many arguments (4 bytes in excess)\n" ">>>" msgstr "" -#: ../../library/ctypes.rst:198 -msgid "" -"To find out the correct calling convention you have to look into the C " -"header file or the documentation for the function you want to call." +msgid "To find out the correct calling convention you have to look into the C header file or the documentation for the function you want to call." msgstr "" -#: ../../library/ctypes.rst:201 -msgid "" -"On Windows, :mod:`!ctypes` uses win32 structured exception handling to " -"prevent crashes from general protection faults when functions are called " -"with invalid argument values::" +msgid "On Windows, :mod:`!ctypes` uses win32 structured exception handling to prevent crashes from general protection faults when functions are called with invalid argument values::" msgstr "" -#: ../../library/ctypes.rst:205 msgid "" ">>> windll.kernel32.GetModuleHandleA(32)\n" "Traceback (most recent call last):\n" @@ -323,500 +210,351 @@ msgid "" ">>>" msgstr "" -#: ../../library/ctypes.rst:211 -msgid "" -"The :mod:`faulthandler` module can help debug crashes, such as segmentation " -"faults produced by erroneous C library calls." +msgid "The :mod:`faulthandler` module can help debug crashes, such as segmentation faults produced by erroneous C library calls." msgstr "" -#: ../../library/ctypes.rst:214 -msgid "" -"``None``, integers, bytes objects and (unicode) strings are the only native " -"Python objects that can directly be used as parameters in these function " -"calls. ``None`` is passed as a C ``NULL`` pointer, bytes objects and strings " -"are passed as pointer to the memory block that contains their data " -"(:c:expr:`char *` or :c:expr:`wchar_t *`). Python integers are passed as " -"the platform's default C :c:expr:`int` type, their value is masked to fit " -"into the C type." +msgid "``None``, integers, bytes objects and (unicode) strings are the only native Python objects that can directly be used as parameters in these function calls. ``None`` is passed as a C ``NULL`` pointer, bytes objects and strings are passed as pointer to the memory block that contains their data (:c:expr:`char *` or :c:expr:`wchar_t *`). Python integers are passed as the platform's default C :c:expr:`int` type, their value is masked to fit into the C type." msgstr "" -#: ../../library/ctypes.rst:221 -msgid "" -"Before we move on calling functions with other parameter types, we have to " -"learn more about :mod:`!ctypes` data types." +msgid "Before we move on calling functions with other parameter types, we have to learn more about :mod:`!ctypes` data types." msgstr "" -#: ../../library/ctypes.rst:228 ../../library/ctypes.rst:2542 msgid "Fundamental data types" msgstr "" -#: ../../library/ctypes.rst:230 msgid ":mod:`!ctypes` defines a number of primitive C compatible data types:" msgstr "" -#: ../../library/ctypes.rst:235 ../../library/ctypes.rst:374 msgid "ctypes type" msgstr "" -#: ../../library/ctypes.rst:236 ../../library/ctypes.rst:375 msgid "C type" msgstr "" -#: ../../library/ctypes.rst:237 ../../library/ctypes.rst:376 msgid "Python type" msgstr "" -#: ../../library/ctypes.rst:238 ../../library/ctypes.rst:377 msgid ":py:attr:`~_SimpleCData._type_`" msgstr "" -#: ../../library/ctypes.rst:239 msgid ":class:`c_bool`" msgstr "" -#: ../../library/ctypes.rst:240 msgid ":c:expr:`_Bool`" msgstr "" -#: ../../library/ctypes.rst:241 ../../library/ctypes.rst:365 msgid ":py:class:`bool`" msgstr "" -#: ../../library/ctypes.rst:242 msgid "``'?'``" msgstr "" -#: ../../library/ctypes.rst:243 msgid ":class:`c_char`" msgstr "" -#: ../../library/ctypes.rst:244 ../../library/ctypes.rst:252 msgid ":c:expr:`char`" msgstr "" -#: ../../library/ctypes.rst:245 msgid "1-character :py:class:`bytes`" msgstr "" -#: ../../library/ctypes.rst:246 msgid "``'c'``" msgstr "" -#: ../../library/ctypes.rst:247 msgid ":class:`c_wchar`" msgstr "" -#: ../../library/ctypes.rst:248 msgid ":c:type:`wchar_t`" msgstr "" -#: ../../library/ctypes.rst:249 msgid "1-character :py:class:`str`" msgstr "" -#: ../../library/ctypes.rst:250 msgid "``'u'``" msgstr "" -#: ../../library/ctypes.rst:251 msgid ":class:`c_byte`" msgstr "" -#: ../../library/ctypes.rst:253 ../../library/ctypes.rst:257 -#: ../../library/ctypes.rst:261 ../../library/ctypes.rst:265 -#: ../../library/ctypes.rst:269 ../../library/ctypes.rst:273 -#: ../../library/ctypes.rst:277 ../../library/ctypes.rst:281 -#: ../../library/ctypes.rst:285 ../../library/ctypes.rst:289 -#: ../../library/ctypes.rst:293 ../../library/ctypes.rst:297 -#: ../../library/ctypes.rst:301 ../../library/ctypes.rst:305 -#: ../../library/ctypes.rst:309 ../../library/ctypes.rst:313 -#: ../../library/ctypes.rst:317 ../../library/ctypes.rst:321 -#: ../../library/ctypes.rst:325 ../../library/ctypes.rst:329 -#: ../../library/ctypes.rst:333 msgid ":py:class:`int`" msgstr "" -#: ../../library/ctypes.rst:254 msgid "``'b'``" msgstr "" -#: ../../library/ctypes.rst:255 msgid ":class:`c_ubyte`" msgstr "" -#: ../../library/ctypes.rst:256 msgid ":c:expr:`unsigned char`" msgstr "" -#: ../../library/ctypes.rst:258 msgid "``'B'``" msgstr "" -#: ../../library/ctypes.rst:259 msgid ":class:`c_short`" msgstr "" -#: ../../library/ctypes.rst:260 msgid ":c:expr:`short`" msgstr "" -#: ../../library/ctypes.rst:262 msgid "``'h'``" msgstr "" -#: ../../library/ctypes.rst:263 msgid ":class:`c_ushort`" msgstr "" -#: ../../library/ctypes.rst:264 msgid ":c:expr:`unsigned short`" msgstr "" -#: ../../library/ctypes.rst:266 msgid "``'H'``" msgstr "" -#: ../../library/ctypes.rst:267 msgid ":class:`c_int`" msgstr "" -#: ../../library/ctypes.rst:268 msgid ":c:expr:`int`" msgstr "" -#: ../../library/ctypes.rst:270 msgid "``'i'`` \\*" msgstr "" -#: ../../library/ctypes.rst:271 msgid ":class:`c_int8`" msgstr "" -#: ../../library/ctypes.rst:272 msgid ":c:type:`int8_t`" msgstr "" -#: ../../library/ctypes.rst:274 ../../library/ctypes.rst:278 -#: ../../library/ctypes.rst:282 ../../library/ctypes.rst:286 -#: ../../library/ctypes.rst:294 ../../library/ctypes.rst:298 -#: ../../library/ctypes.rst:302 ../../library/ctypes.rst:306 -#: ../../library/ctypes.rst:326 ../../library/ctypes.rst:330 -#: ../../library/ctypes.rst:334 msgid "\\*" msgstr "" -#: ../../library/ctypes.rst:275 msgid ":class:`c_int16`" msgstr "" -#: ../../library/ctypes.rst:276 msgid ":c:type:`int16_t`" msgstr "" -#: ../../library/ctypes.rst:279 msgid ":class:`c_int32`" msgstr "" -#: ../../library/ctypes.rst:280 msgid ":c:type:`int32_t`" msgstr "" -#: ../../library/ctypes.rst:283 msgid ":class:`c_int64`" msgstr "" -#: ../../library/ctypes.rst:284 msgid ":c:type:`int64_t`" msgstr "" -#: ../../library/ctypes.rst:287 msgid ":class:`c_uint`" msgstr "" -#: ../../library/ctypes.rst:288 msgid ":c:expr:`unsigned int`" msgstr "" -#: ../../library/ctypes.rst:290 msgid "``'I'`` \\*" msgstr "" -#: ../../library/ctypes.rst:291 msgid ":class:`c_uint8`" msgstr "" -#: ../../library/ctypes.rst:292 msgid ":c:type:`uint8_t`" msgstr "" -#: ../../library/ctypes.rst:295 msgid ":class:`c_uint16`" msgstr "" -#: ../../library/ctypes.rst:296 msgid ":c:type:`uint16_t`" msgstr "" -#: ../../library/ctypes.rst:299 msgid ":class:`c_uint32`" msgstr "" -#: ../../library/ctypes.rst:300 msgid ":c:type:`uint32_t`" msgstr "" -#: ../../library/ctypes.rst:303 msgid ":class:`c_uint64`" msgstr "" -#: ../../library/ctypes.rst:304 msgid ":c:type:`uint64_t`" msgstr "" -#: ../../library/ctypes.rst:307 msgid ":class:`c_long`" msgstr "" -#: ../../library/ctypes.rst:308 msgid ":c:expr:`long`" msgstr "" -#: ../../library/ctypes.rst:310 msgid "``'l'``" msgstr "" -#: ../../library/ctypes.rst:311 msgid ":class:`c_ulong`" msgstr "" -#: ../../library/ctypes.rst:312 msgid ":c:expr:`unsigned long`" msgstr "" -#: ../../library/ctypes.rst:314 msgid "``'L'``" msgstr "" -#: ../../library/ctypes.rst:315 msgid ":class:`c_longlong`" msgstr "" -#: ../../library/ctypes.rst:316 msgid ":c:expr:`long long`" msgstr "" -#: ../../library/ctypes.rst:318 msgid "``'q'`` \\*" msgstr "" -#: ../../library/ctypes.rst:319 msgid ":class:`c_ulonglong`" msgstr "" -#: ../../library/ctypes.rst:320 msgid ":c:expr:`unsigned long long`" msgstr "" -#: ../../library/ctypes.rst:322 msgid "``'Q'`` \\*" msgstr "" -#: ../../library/ctypes.rst:323 msgid ":class:`c_size_t`" msgstr "" -#: ../../library/ctypes.rst:324 msgid ":c:type:`size_t`" msgstr "" -#: ../../library/ctypes.rst:327 msgid ":class:`c_ssize_t`" msgstr "" -#: ../../library/ctypes.rst:328 msgid ":c:type:`Py_ssize_t`" msgstr "" -#: ../../library/ctypes.rst:331 msgid ":class:`c_time_t`" msgstr "" -#: ../../library/ctypes.rst:332 msgid ":c:type:`time_t`" msgstr "" -#: ../../library/ctypes.rst:335 msgid ":class:`c_float`" msgstr "" -#: ../../library/ctypes.rst:336 msgid ":c:expr:`float`" msgstr "" -#: ../../library/ctypes.rst:337 ../../library/ctypes.rst:341 -#: ../../library/ctypes.rst:345 msgid ":py:class:`float`" msgstr "" -#: ../../library/ctypes.rst:338 msgid "``'f'``" msgstr "" -#: ../../library/ctypes.rst:339 msgid ":class:`c_double`" msgstr "" -#: ../../library/ctypes.rst:340 msgid ":c:expr:`double`" msgstr "" -#: ../../library/ctypes.rst:342 msgid "``'d'``" msgstr "" -#: ../../library/ctypes.rst:343 msgid ":class:`c_longdouble`" msgstr "" -#: ../../library/ctypes.rst:344 msgid ":c:expr:`long double`" msgstr "" -#: ../../library/ctypes.rst:346 msgid "``'g'`` \\*" msgstr "" -#: ../../library/ctypes.rst:347 msgid ":class:`c_char_p`" msgstr "" -#: ../../library/ctypes.rst:348 msgid ":c:expr:`char *` (NUL terminated)" msgstr "" -#: ../../library/ctypes.rst:349 msgid ":py:class:`bytes` or ``None``" msgstr "" -#: ../../library/ctypes.rst:350 msgid "``'z'``" msgstr "" -#: ../../library/ctypes.rst:351 msgid ":class:`c_wchar_p`" msgstr "" -#: ../../library/ctypes.rst:352 msgid ":c:expr:`wchar_t *` (NUL terminated)" msgstr "" -#: ../../library/ctypes.rst:353 msgid ":py:class:`str` or ``None``" msgstr "" -#: ../../library/ctypes.rst:354 msgid "``'Z'``" msgstr "" -#: ../../library/ctypes.rst:355 msgid ":class:`c_void_p`" msgstr "" -#: ../../library/ctypes.rst:356 msgid ":c:expr:`void *`" msgstr "" -#: ../../library/ctypes.rst:357 msgid ":py:class:`int` or ``None``" msgstr "" -#: ../../library/ctypes.rst:358 msgid "``'P'``" msgstr "" -#: ../../library/ctypes.rst:359 msgid ":class:`py_object`" msgstr "" -#: ../../library/ctypes.rst:360 msgid ":c:expr:`PyObject *`" msgstr "" -#: ../../library/ctypes.rst:361 msgid ":py:class:`object`" msgstr "" -#: ../../library/ctypes.rst:362 msgid "``'O'``" msgstr "" -#: ../../library/ctypes.rst:363 msgid ":ref:`VARIANT_BOOL `" msgstr "" -#: ../../library/ctypes.rst:364 msgid ":c:expr:`short int`" msgstr "" -#: ../../library/ctypes.rst:366 msgid "``'v'``" msgstr "" -#: ../../library/ctypes.rst:368 -msgid "" -"Additionally, if IEC 60559 compatible complex arithmetic (Annex G) is " -"supported in both C and ``libffi``, the following complex types are " -"available:" +msgid "Additionally, if IEC 60559 compatible complex arithmetic (Annex G) is supported in both C and ``libffi``, the following complex types are available:" msgstr "" -#: ../../library/ctypes.rst:378 msgid ":class:`c_float_complex`" msgstr "" -#: ../../library/ctypes.rst:379 msgid ":c:expr:`float complex`" msgstr "" -#: ../../library/ctypes.rst:380 ../../library/ctypes.rst:384 -#: ../../library/ctypes.rst:388 msgid ":py:class:`complex`" msgstr "" -#: ../../library/ctypes.rst:381 msgid "``'F'``" msgstr "" -#: ../../library/ctypes.rst:382 msgid ":class:`c_double_complex`" msgstr "" -#: ../../library/ctypes.rst:383 msgid ":c:expr:`double complex`" msgstr "" -#: ../../library/ctypes.rst:385 msgid "``'D'``" msgstr "" -#: ../../library/ctypes.rst:386 msgid ":class:`c_longdouble_complex`" msgstr "" -#: ../../library/ctypes.rst:387 msgid ":c:expr:`long double complex`" msgstr "" -#: ../../library/ctypes.rst:389 msgid "``'G'``" msgstr "" -#: ../../library/ctypes.rst:392 -msgid "" -"All these types can be created by calling them with an optional initializer " -"of the correct type and value::" +msgid "All these types can be created by calling them with an optional initializer of the correct type and value::" msgstr "" -#: ../../library/ctypes.rst:395 msgid "" ">>> c_int()\n" "c_long(0)\n" @@ -827,27 +565,18 @@ msgid "" ">>>" msgstr "" -#: ../../library/ctypes.rst:403 -msgid "" -"The constructors for numeric types will convert input " -"using :py:meth:`~object.__bool__`, :py:meth:`~object.__index__` (for " -"``int``), :py:meth:`~object.__float__` or :py:meth:`~object.__complex__`. " -"This means :py:class:`~ctypes.c_bool` accepts any object with a truth value::" +msgid "The constructors for numeric types will convert input using :py:meth:`~object.__bool__`, :py:meth:`~object.__index__` (for ``int``), :py:meth:`~object.__float__` or :py:meth:`~object.__complex__`. This means :py:class:`~ctypes.c_bool` accepts any object with a truth value::" msgstr "" -#: ../../library/ctypes.rst:409 msgid "" ">>> empty_list = []\n" ">>> c_bool(empty_list)\n" "c_bool(False)" msgstr "" -#: ../../library/ctypes.rst:413 -msgid "" -"Since these types are mutable, their value can also be changed afterwards::" +msgid "Since these types are mutable, their value can also be changed afterwards::" msgstr "" -#: ../../library/ctypes.rst:415 msgid "" ">>> i = c_int(42)\n" ">>> print(i)\n" @@ -860,15 +589,9 @@ msgid "" ">>>" msgstr "" -#: ../../library/ctypes.rst:425 -msgid "" -"Assigning a new value to instances of the pointer " -"types :class:`c_char_p`, :class:`c_wchar_p`, and :class:`c_void_p` changes " -"the *memory location* they point to, *not the contents* of the memory block " -"(of course not, because Python string objects are immutable)::" +msgid "Assigning a new value to instances of the pointer types :class:`c_char_p`, :class:`c_wchar_p`, and :class:`c_void_p` changes the *memory location* they point to, *not the contents* of the memory block (of course not, because Python string objects are immutable)::" msgstr "" -#: ../../library/ctypes.rst:430 msgid "" ">>> s = \"Hello, World\"\n" ">>> c_s = c_wchar_p(s)\n" @@ -886,25 +609,15 @@ msgid "" ">>>" msgstr "" -#: ../../library/ctypes.rst:445 -msgid "" -"You should be careful, however, not to pass them to functions expecting " -"pointers to mutable memory. If you need mutable memory blocks, ctypes has " -"a :func:`create_string_buffer` function which creates these in various " -"ways. The current memory block contents can be accessed (or changed) with " -"the ``raw`` property; if you want to access it as NUL terminated string, use " -"the ``value`` property::" +msgid "You should be careful, however, not to pass them to functions expecting pointers to mutable memory. If you need mutable memory blocks, ctypes has a :func:`create_string_buffer` function which creates these in various ways. The current memory block contents can be accessed (or changed) with the ``raw`` property; if you want to access it as NUL terminated string, use the ``value`` property::" msgstr "" -#: ../../library/ctypes.rst:452 msgid "" ">>> from ctypes import *\n" -">>> p = create_string_buffer(3) # create a 3 byte buffer, " -"initialized to NUL bytes\n" +">>> p = create_string_buffer(3) # create a 3 byte buffer, initialized to NUL bytes\n" ">>> print(sizeof(p), repr(p.raw))\n" "3 b'\\x00\\x00\\x00'\n" -">>> p = create_string_buffer(b\"Hello\") # create a buffer containing a " -"NUL terminated string\n" +">>> p = create_string_buffer(b\"Hello\") # create a buffer containing a NUL terminated string\n" ">>> print(sizeof(p), repr(p.raw))\n" "6 b'Hello\\x00'\n" ">>> print(repr(p.value))\n" @@ -918,26 +631,15 @@ msgid "" ">>>" msgstr "" -#: ../../library/ctypes.rst:469 -msgid "" -"The :func:`create_string_buffer` function replaces the old :func:`!c_buffer` " -"function (which is still available as an alias). To create a mutable memory " -"block containing unicode characters of the C type :c:type:`wchar_t`, use " -"the :func:`create_unicode_buffer` function." +msgid "The :func:`create_string_buffer` function replaces the old :func:`!c_buffer` function (which is still available as an alias). To create a mutable memory block containing unicode characters of the C type :c:type:`wchar_t`, use the :func:`create_unicode_buffer` function." msgstr "" -#: ../../library/ctypes.rst:478 msgid "Calling functions, continued" msgstr "" -#: ../../library/ctypes.rst:480 -msgid "" -"Note that printf prints to the real standard output channel, *not* " -"to :data:`sys.stdout`, so these examples will only work at the console " -"prompt, not from within *IDLE* or *PythonWin*::" +msgid "Note that printf prints to the real standard output channel, *not* to :data:`sys.stdout`, so these examples will only work at the console prompt, not from within *IDLE* or *PythonWin*::" msgstr "" -#: ../../library/ctypes.rst:484 msgid "" ">>> printf = libc.printf\n" ">>> printf(b\"Hello, %s\\n\", b\"World!\")\n" @@ -952,19 +654,13 @@ msgid "" ">>> printf(b\"%f bottles of beer\\n\", 42.5)\n" "Traceback (most recent call last):\n" " File \"\", line 1, in \n" -"ctypes.ArgumentError: argument 2: TypeError: Don't know how to convert " -"parameter 2\n" +"ctypes.ArgumentError: argument 2: TypeError: Don't know how to convert parameter 2\n" ">>>" msgstr "" -#: ../../library/ctypes.rst:500 -msgid "" -"As has been mentioned before, all Python types except integers, strings, and " -"bytes objects have to be wrapped in their corresponding :mod:`!ctypes` type, " -"so that they can be converted to the required C data type::" +msgid "As has been mentioned before, all Python types except integers, strings, and bytes objects have to be wrapped in their corresponding :mod:`!ctypes` type, so that they can be converted to the required C data type::" msgstr "" -#: ../../library/ctypes.rst:504 msgid "" ">>> printf(b\"An int %d, a double %f\\n\", 1234, c_double(3.14))\n" "An int 1234, a double 3.140000\n" @@ -972,49 +668,27 @@ msgid "" ">>>" msgstr "" -#: ../../library/ctypes.rst:512 msgid "Calling variadic functions" msgstr "" -#: ../../library/ctypes.rst:514 -msgid "" -"On a lot of platforms calling variadic functions through ctypes is exactly " -"the same as calling functions with a fixed number of parameters. On some " -"platforms, and in particular ARM64 for Apple Platforms, the calling " -"convention for variadic functions is different than that for regular " -"functions." +msgid "On a lot of platforms calling variadic functions through ctypes is exactly the same as calling functions with a fixed number of parameters. On some platforms, and in particular ARM64 for Apple Platforms, the calling convention for variadic functions is different than that for regular functions." msgstr "" -#: ../../library/ctypes.rst:519 -msgid "" -"On those platforms it is required to specify the :attr:`~_CFuncPtr.argtypes` " -"attribute for the regular, non-variadic, function arguments:" +msgid "On those platforms it is required to specify the :attr:`~_CFuncPtr.argtypes` attribute for the regular, non-variadic, function arguments:" msgstr "" -#: ../../library/ctypes.rst:522 msgid "libc.printf.argtypes = [ctypes.c_char_p]" msgstr "" -#: ../../library/ctypes.rst:526 -msgid "" -"Because specifying the attribute does not inhibit portability it is advised " -"to always specify :attr:`~_CFuncPtr.argtypes` for all variadic functions." +msgid "Because specifying the attribute does not inhibit portability it is advised to always specify :attr:`~_CFuncPtr.argtypes` for all variadic functions." msgstr "" -#: ../../library/ctypes.rst:533 msgid "Calling functions with your own custom data types" msgstr "" -#: ../../library/ctypes.rst:535 -msgid "" -"You can also customize :mod:`!ctypes` argument conversion to allow instances " -"of your own classes be used as function arguments. :mod:`!ctypes` looks for " -"an :attr:`!_as_parameter_` attribute and uses this as the function argument. " -"The attribute must be an integer, string, bytes, a :mod:`!ctypes` instance, " -"or an object with an :attr:`!_as_parameter_` attribute::" +msgid "You can also customize :mod:`!ctypes` argument conversion to allow instances of your own classes be used as function arguments. :mod:`!ctypes` looks for an :attr:`!_as_parameter_` attribute and uses this as the function argument. The attribute must be an integer, string, bytes, a :mod:`!ctypes` instance, or an object with an :attr:`!_as_parameter_` attribute::" msgstr "" -#: ../../library/ctypes.rst:541 msgid "" ">>> class Bottles:\n" "... def __init__(self, number):\n" @@ -1027,33 +701,18 @@ msgid "" ">>>" msgstr "" -#: ../../library/ctypes.rst:551 -msgid "" -"If you don't want to store the instance's data in the :attr:`!" -"_as_parameter_` instance variable, you could define a :deco:`property` which " -"makes the attribute available on request." +msgid "If you don't want to store the instance's data in the :attr:`!_as_parameter_` instance variable, you could define a :deco:`property` which makes the attribute available on request." msgstr "" -#: ../../library/ctypes.rst:559 msgid "Specifying the required argument types (function prototypes)" msgstr "" -#: ../../library/ctypes.rst:561 -msgid "" -"It is possible to specify the required argument types of functions exported " -"from DLLs by setting the :attr:`~_CFuncPtr.argtypes` attribute." +msgid "It is possible to specify the required argument types of functions exported from DLLs by setting the :attr:`~_CFuncPtr.argtypes` attribute." msgstr "" -#: ../../library/ctypes.rst:564 -msgid "" -":attr:`~_CFuncPtr.argtypes` must be a sequence of C data types (the :func:`!" -"printf` function is probably not a good example here, because it takes a " -"variable number and different types of parameters depending on the format " -"string, on the other hand this is quite handy to experiment with this " -"feature)::" +msgid ":attr:`~_CFuncPtr.argtypes` must be a sequence of C data types (the :func:`!printf` function is probably not a good example here, because it takes a variable number and different types of parameters depending on the format string, on the other hand this is quite handy to experiment with this feature)::" msgstr "" -#: ../../library/ctypes.rst:569 msgid "" ">>> printf.argtypes = [c_char_p, c_char_p, c_int, c_double]\n" ">>> printf(b\"String '%s', Int %d, Double %f\\n\", b\"Hi\", 10, 2.2)\n" @@ -1062,90 +721,52 @@ msgid "" ">>>" msgstr "" -#: ../../library/ctypes.rst:575 -msgid "" -"Specifying a format protects against incompatible argument types (just as a " -"prototype for a C function), and tries to convert the arguments to valid " -"types::" +msgid "Specifying a format protects against incompatible argument types (just as a prototype for a C function), and tries to convert the arguments to valid types::" msgstr "" -#: ../../library/ctypes.rst:578 msgid "" ">>> printf(b\"%d %d %d\", 1, 2, 3)\n" "Traceback (most recent call last):\n" " File \"\", line 1, in \n" -"ctypes.ArgumentError: argument 2: TypeError: 'int' object cannot be " -"interpreted as ctypes.c_char_p\n" +"ctypes.ArgumentError: argument 2: TypeError: 'int' object cannot be interpreted as ctypes.c_char_p\n" ">>> printf(b\"%s %d %f\\n\", b\"X\", 2, 3)\n" "X 2 3.000000\n" "13\n" ">>>" msgstr "" -#: ../../library/ctypes.rst:587 -msgid "" -"If you have defined your own classes which you pass to function calls, you " -"have to implement a :meth:`~_CData.from_param` class method for them to be " -"able to use them in the :attr:`~_CFuncPtr.argtypes` sequence. " -"The :meth:`~_CData.from_param` class method receives the Python object " -"passed to the function call, it should do a typecheck or whatever is needed " -"to make sure this object is acceptable, and then return the object itself, " -"its :attr:`!_as_parameter_` attribute, or whatever you want to pass as the C " -"function argument in this case. Again, the result should be an integer, " -"string, bytes, a :mod:`!ctypes` instance, or an object with an :attr:`!" -"_as_parameter_` attribute." -msgstr "" - -#: ../../library/ctypes.rst:601 +msgid "If you have defined your own classes which you pass to function calls, you have to implement a :meth:`~_CData.from_param` class method for them to be able to use them in the :attr:`~_CFuncPtr.argtypes` sequence. The :meth:`~_CData.from_param` class method receives the Python object passed to the function call, it should do a typecheck or whatever is needed to make sure this object is acceptable, and then return the object itself, its :attr:`!_as_parameter_` attribute, or whatever you want to pass as the C function argument in this case. Again, the result should be an integer, string, bytes, a :mod:`!ctypes` instance, or an object with an :attr:`!_as_parameter_` attribute." +msgstr "" + msgid "Return types" msgstr "" -#: ../../library/ctypes.rst:611 -msgid "" -"By default functions are assumed to return the C :c:expr:`int` type. Other " -"return types can be specified by setting the :attr:`~_CFuncPtr.restype` " -"attribute of the function object." +msgid "By default functions are assumed to return the C :c:expr:`int` type. Other return types can be specified by setting the :attr:`~_CFuncPtr.restype` attribute of the function object." msgstr "" -#: ../../library/ctypes.rst:615 -msgid "" -"The C prototype of :c:func:`time` is ``time_t time(time_t *)``. " -"Because :c:type:`time_t` might be of a different type than the default " -"return type :c:expr:`int`, you should specify the :attr:`!restype` " -"attribute::" +msgid "The C prototype of :c:func:`time` is ``time_t time(time_t *)``. Because :c:type:`time_t` might be of a different type than the default return type :c:expr:`int`, you should specify the :attr:`!restype` attribute::" msgstr "" -#: ../../library/ctypes.rst:619 msgid ">>> libc.time.restype = c_time_t" msgstr "" -#: ../../library/ctypes.rst:621 msgid "The argument types can be specified using :attr:`~_CFuncPtr.argtypes`::" msgstr "" -#: ../../library/ctypes.rst:623 msgid ">>> libc.time.argtypes = (POINTER(c_time_t),)" msgstr "" -#: ../../library/ctypes.rst:625 -msgid "" -"To call the function with a ``NULL`` pointer as first argument, use " -"``None``::" +msgid "To call the function with a ``NULL`` pointer as first argument, use ``None``::" msgstr "" -#: ../../library/ctypes.rst:627 msgid "" ">>> print(libc.time(None))\n" "1150640792" msgstr "" -#: ../../library/ctypes.rst:630 -msgid "" -"Here is a more advanced example, it uses the :func:`!strchr` function, which " -"expects a string pointer and a char, and returns a pointer to a string::" +msgid "Here is a more advanced example, it uses the :func:`!strchr` function, which expects a string pointer and a char, and returns a pointer to a string::" msgstr "" -#: ../../library/ctypes.rst:633 msgid "" ">>> strchr = libc.strchr\n" ">>> strchr(b\"abcdef\", ord(\"d\"))\n" @@ -1158,14 +779,9 @@ msgid "" ">>>" msgstr "" -#: ../../library/ctypes.rst:643 -msgid "" -"If you want to avoid the :func:`ord(\"x\") ` calls above, you can set " -"the :attr:`~_CFuncPtr.argtypes` attribute, and the second argument will be " -"converted from a single character Python bytes object into a C char:" +msgid "If you want to avoid the :func:`ord(\"x\") ` calls above, you can set the :attr:`~_CFuncPtr.argtypes` attribute, and the second argument will be converted from a single character Python bytes object into a C char:" msgstr "" -#: ../../library/ctypes.rst:647 msgid "" ">>> strchr.restype = c_char_p\n" ">>> strchr.argtypes = [c_char_p, c_char]\n" @@ -1173,8 +789,7 @@ msgid "" "b'def'\n" ">>> strchr(b\"abcdef\", b\"def\")\n" "Traceback (most recent call last):\n" -"ctypes.ArgumentError: argument 2: TypeError: one character bytes, bytearray " -"or integer expected\n" +"ctypes.ArgumentError: argument 2: TypeError: one character bytes, bytearray or integer expected\n" ">>> print(strchr(b\"abcdef\", b\"x\"))\n" "None\n" ">>> strchr(b\"abcdef\", b\"d\")\n" @@ -1182,17 +797,9 @@ msgid "" ">>>" msgstr "" -#: ../../library/ctypes.rst:662 -msgid "" -"You can also use a callable Python object (a function or a class for " -"example) as the :attr:`~_CFuncPtr.restype` attribute, if the foreign " -"function returns an integer. The callable will be called with the *integer* " -"the C function returns, and the result of this call will be used as the " -"result of your function call. This is useful to check for error return " -"values and automatically raise an exception::" +msgid "You can also use a callable Python object (a function or a class for example) as the :attr:`~_CFuncPtr.restype` attribute, if the foreign function returns an integer. The callable will be called with the *integer* the C function returns, and the result of this call will be used as the result of your function call. This is useful to check for error return values and automatically raise an exception::" msgstr "" -#: ../../library/ctypes.rst:668 msgid "" ">>> GetModuleHandle = windll.kernel32.GetModuleHandleA\n" ">>> def ValidHandle(value):\n" @@ -1212,43 +819,21 @@ msgid "" ">>>" msgstr "" -#: ../../library/ctypes.rst:685 -msgid "" -"``WinError`` is a function which will call Windows ``FormatMessage()`` api " -"to get the string representation of an error code, and *returns* an " -"exception. ``WinError`` takes an optional error code parameter, if no one is " -"used, it calls :func:`GetLastError` to retrieve it." +msgid "``WinError`` is a function which will call Windows ``FormatMessage()`` api to get the string representation of an error code, and *returns* an exception. ``WinError`` takes an optional error code parameter, if no one is used, it calls :func:`GetLastError` to retrieve it." msgstr "" -#: ../../library/ctypes.rst:690 -msgid "" -"Please note that a much more powerful error checking mechanism is available " -"through the :attr:`~_CFuncPtr.errcheck` attribute; see the reference manual " -"for details." +msgid "Please note that a much more powerful error checking mechanism is available through the :attr:`~_CFuncPtr.errcheck` attribute; see the reference manual for details." msgstr "" -#: ../../library/ctypes.rst:698 msgid "Passing pointers (or: passing parameters by reference)" msgstr "" -#: ../../library/ctypes.rst:700 -msgid "" -"Sometimes a C api function expects a *pointer* to a data type as parameter, " -"probably to write into the corresponding location, or if the data is too " -"large to be passed by value. This is also known as *passing parameters by " -"reference*." +msgid "Sometimes a C api function expects a *pointer* to a data type as parameter, probably to write into the corresponding location, or if the data is too large to be passed by value. This is also known as *passing parameters by reference*." msgstr "" -#: ../../library/ctypes.rst:704 -msgid "" -":mod:`!ctypes` exports the :func:`byref` function which is used to pass " -"parameters by reference. The same effect can be achieved with " -"the :func:`pointer` function, although :func:`pointer` does a lot more work " -"since it constructs a real pointer object, so it is faster to " -"use :func:`byref` if you don't need the pointer object in Python itself::" +msgid ":mod:`!ctypes` exports the :func:`byref` function which is used to pass parameters by reference. The same effect can be achieved with the :func:`pointer` function, although :func:`pointer` does a lot more work since it constructs a real pointer object, so it is faster to use :func:`byref` if you don't need the pointer object in Python itself::" msgstr "" -#: ../../library/ctypes.rst:710 msgid "" ">>> i = c_int()\n" ">>> f = c_float()\n" @@ -1263,33 +848,18 @@ msgid "" ">>>" msgstr "" -#: ../../library/ctypes.rst:726 msgid "Structures and unions" msgstr "" -#: ../../library/ctypes.rst:728 -msgid "" -"Structures and unions must derive from the :class:`Structure` " -"and :class:`Union` base classes which are defined in the :mod:`!ctypes` " -"module. Each subclass must define a :attr:`~Structure._fields_` " -"attribute. :attr:`!_fields_` must be a list of *2-tuples*, containing a " -"*field name* and a *field type*." +msgid "Structures and unions must derive from the :class:`Structure` and :class:`Union` base classes which are defined in the :mod:`!ctypes` module. Each subclass must define a :attr:`~Structure._fields_` attribute. :attr:`!_fields_` must be a list of *2-tuples*, containing a *field name* and a *field type*." msgstr "" -#: ../../library/ctypes.rst:733 -msgid "" -"The field type must be a :mod:`!ctypes` type like :class:`c_int`, or any " -"other derived :mod:`!ctypes` type: structure, union, array, pointer." +msgid "The field type must be a :mod:`!ctypes` type like :class:`c_int`, or any other derived :mod:`!ctypes` type: structure, union, array, pointer." msgstr "" -#: ../../library/ctypes.rst:736 -msgid "" -"Here is a simple example of a POINT structure, which contains two integers " -"named *x* and *y*, and also shows how to initialize a structure in the " -"constructor::" +msgid "Here is a simple example of a POINT structure, which contains two integers named *x* and *y*, and also shows how to initialize a structure in the constructor::" msgstr "" -#: ../../library/ctypes.rst:739 msgid "" ">>> from ctypes import *\n" ">>> class POINT(Structure):\n" @@ -1309,19 +879,12 @@ msgid "" ">>>" msgstr "" -#: ../../library/ctypes.rst:756 -msgid "" -"You can, however, build much more complicated structures. A structure can " -"itself contain other structures by using a structure as a field type." +msgid "You can, however, build much more complicated structures. A structure can itself contain other structures by using a structure as a field type." msgstr "" -#: ../../library/ctypes.rst:759 -msgid "" -"Here is a RECT structure which contains two POINTs named *upperleft* and " -"*lowerright*::" +msgid "Here is a RECT structure which contains two POINTs named *upperleft* and *lowerright*::" msgstr "" -#: ../../library/ctypes.rst:762 msgid "" ">>> class RECT(Structure):\n" "... _fields_ = [(\"upperleft\", POINT),\n" @@ -1335,26 +898,17 @@ msgid "" ">>>" msgstr "" -#: ../../library/ctypes.rst:773 -msgid "" -"Nested structures can also be initialized in the constructor in several " -"ways::" +msgid "Nested structures can also be initialized in the constructor in several ways::" msgstr "" -#: ../../library/ctypes.rst:775 msgid "" ">>> r = RECT(POINT(1, 2), POINT(3, 4))\n" ">>> r = RECT((1, 2), (3, 4))" msgstr "" -#: ../../library/ctypes.rst:778 -msgid "" -"Field :term:`descriptor`\\s can be retrieved from the *class*, they are " -"useful for debugging because they can provide useful information. " -"See :class:`CField`::" +msgid "Field :term:`descriptor`\\s can be retrieved from the *class*, they are useful for debugging because they can provide useful information. See :class:`CField`::" msgstr "" -#: ../../library/ctypes.rst:782 msgid "" ">>> POINT.x\n" "\n" @@ -1363,55 +917,27 @@ msgid "" ">>>" msgstr "" -#: ../../library/ctypes.rst:793 -msgid "" -":mod:`!ctypes` does not support passing unions or structures with bit-fields " -"to functions by value. While this may work on 32-bit x86, it's not " -"guaranteed by the library to work in the general case. Unions and " -"structures with bit-fields should always be passed to functions by pointer." +msgid ":mod:`!ctypes` does not support passing unions or structures with bit-fields to functions by value. While this may work on 32-bit x86, it's not guaranteed by the library to work in the general case. Unions and structures with bit-fields should always be passed to functions by pointer." msgstr "" -#: ../../library/ctypes.rst:799 msgid "Structure/union layout, alignment and byte order" msgstr "" -#: ../../library/ctypes.rst:801 -msgid "" -"By default, Structure and Union fields are laid out in the same way the C " -"compiler does it. It is possible to override this behavior entirely by " -"specifying a :attr:`~Structure._layout_` class attribute in the subclass " -"definition; see the attribute documentation for details." +msgid "By default, Structure and Union fields are laid out in the same way the C compiler does it. It is possible to override this behavior entirely by specifying a :attr:`~Structure._layout_` class attribute in the subclass definition; see the attribute documentation for details." msgstr "" -#: ../../library/ctypes.rst:806 -msgid "" -"It is possible to specify the maximum alignment for the fields and/or for " -"the structure itself by setting the class " -"attributes :attr:`~Structure._pack_` and/or :attr:`~Structure._align_`, " -"respectively. See the attribute documentation for details." +msgid "It is possible to specify the maximum alignment for the fields and/or for the structure itself by setting the class attributes :attr:`~Structure._pack_` and/or :attr:`~Structure._align_`, respectively. See the attribute documentation for details." msgstr "" -#: ../../library/ctypes.rst:811 -msgid "" -":mod:`!ctypes` uses the native byte order for Structures and Unions. To " -"build structures with non-native byte order, you can use one of " -"the :class:`BigEndianStructure`, :class:`LittleEndianStructure`, :class:`BigEndianUnion`, " -"and :class:`LittleEndianUnion` base classes. These classes cannot contain " -"pointer fields." +msgid ":mod:`!ctypes` uses the native byte order for Structures and Unions. To build structures with non-native byte order, you can use one of the :class:`BigEndianStructure`, :class:`LittleEndianStructure`, :class:`BigEndianUnion`, and :class:`LittleEndianUnion` base classes. These classes cannot contain pointer fields." msgstr "" -#: ../../library/ctypes.rst:821 msgid "Bit fields in structures and unions" msgstr "" -#: ../../library/ctypes.rst:823 -msgid "" -"It is possible to create structures and unions containing bit fields. Bit " -"fields are only possible for integer fields, the bit width is specified as " -"the third item in the :attr:`~Structure._fields_` tuples::" +msgid "It is possible to create structures and unions containing bit fields. Bit fields are only possible for integer fields, the bit width is specified as the third item in the :attr:`~Structure._fields_` tuples::" msgstr "" -#: ../../library/ctypes.rst:827 msgid "" ">>> class Int(Structure):\n" "... _fields_ = [(\"first_16\", c_int, 16),\n" @@ -1423,42 +949,24 @@ msgid "" "" msgstr "" -#: ../../library/ctypes.rst:836 -msgid "" -"It is important to note that bit field allocation and layout in memory are " -"not defined as a C standard; their implementation is compiler-specific. By " -"default, Python will attempt to match the behavior of a \"native\" compiler " -"for the current platform. See the :attr:`~Structure._layout_` attribute for " -"details on the default behavior and how to change it." +msgid "It is important to note that bit field allocation and layout in memory are not defined as a C standard; their implementation is compiler-specific. By default, Python will attempt to match the behavior of a \"native\" compiler for the current platform. See the :attr:`~Structure._layout_` attribute for details on the default behavior and how to change it." msgstr "" -#: ../../library/ctypes.rst:847 msgid "Arrays" msgstr "" -#: ../../library/ctypes.rst:849 -msgid "" -"Arrays are sequences, containing a fixed number of instances of the same " -"type." +msgid "Arrays are sequences, containing a fixed number of instances of the same type." msgstr "" -#: ../../library/ctypes.rst:851 -msgid "" -"The recommended way to create array types is by multiplying a data type with " -"a positive integer::" +msgid "The recommended way to create array types is by multiplying a data type with a positive integer::" msgstr "" -#: ../../library/ctypes.rst:854 msgid "TenPointsArrayType = POINT * 10" msgstr "" -#: ../../library/ctypes.rst:856 -msgid "" -"Here is an example of a somewhat artificial data type, a structure " -"containing 4 POINTs among other stuff::" +msgid "Here is an example of a somewhat artificial data type, a structure containing 4 POINTs among other stuff::" msgstr "" -#: ../../library/ctypes.rst:859 msgid "" ">>> from ctypes import *\n" ">>> class POINT(Structure):\n" @@ -1474,28 +982,21 @@ msgid "" ">>>" msgstr "" -#: ../../library/ctypes.rst:872 msgid "Instances are created in the usual way, by calling the class::" msgstr "" -#: ../../library/ctypes.rst:874 msgid "" "arr = TenPointsArrayType()\n" "for pt in arr:\n" " print(pt.x, pt.y)" msgstr "" -#: ../../library/ctypes.rst:878 -msgid "" -"The above code print a series of ``0 0`` lines, because the array contents " -"is initialized to zeros." +msgid "The above code print a series of ``0 0`` lines, because the array contents is initialized to zeros." msgstr "" -#: ../../library/ctypes.rst:881 msgid "Initializers of the correct type can also be specified::" msgstr "" -#: ../../library/ctypes.rst:883 msgid "" ">>> from ctypes import *\n" ">>> TenIntegers = c_int * 10\n" @@ -1508,17 +1009,12 @@ msgid "" ">>>" msgstr "" -#: ../../library/ctypes.rst:897 msgid "Pointers" msgstr "" -#: ../../library/ctypes.rst:899 -msgid "" -"Pointer instances are created by calling the :func:`pointer` function on " -"a :mod:`!ctypes` type::" +msgid "Pointer instances are created by calling the :func:`pointer` function on a :mod:`!ctypes` type::" msgstr "" -#: ../../library/ctypes.rst:902 msgid "" ">>> from ctypes import *\n" ">>> i = c_int(42)\n" @@ -1526,26 +1022,18 @@ msgid "" ">>>" msgstr "" -#: ../../library/ctypes.rst:907 -msgid "" -"Pointer instances have a :attr:`~_Pointer.contents` attribute which returns " -"the object to which the pointer points, the ``i`` object above::" +msgid "Pointer instances have a :attr:`~_Pointer.contents` attribute which returns the object to which the pointer points, the ``i`` object above::" msgstr "" -#: ../../library/ctypes.rst:910 msgid "" ">>> pi.contents\n" "c_long(42)\n" ">>>" msgstr "" -#: ../../library/ctypes.rst:914 -msgid "" -"Note that :mod:`!ctypes` does not have OOR (original object return), it " -"constructs a new, equivalent object each time you retrieve an attribute::" +msgid "Note that :mod:`!ctypes` does not have OOR (original object return), it constructs a new, equivalent object each time you retrieve an attribute::" msgstr "" -#: ../../library/ctypes.rst:917 msgid "" ">>> pi.contents is i\n" "False\n" @@ -1554,14 +1042,9 @@ msgid "" ">>>" msgstr "" -#: ../../library/ctypes.rst:923 -msgid "" -"Assigning another :class:`c_int` instance to the pointer's contents " -"attribute would cause the pointer to point to the memory location where this " -"is stored::" +msgid "Assigning another :class:`c_int` instance to the pointer's contents attribute would cause the pointer to point to the memory location where this is stored::" msgstr "" -#: ../../library/ctypes.rst:926 msgid "" ">>> i = c_int(99)\n" ">>> pi.contents = i\n" @@ -1570,22 +1053,18 @@ msgid "" ">>>" msgstr "" -#: ../../library/ctypes.rst:935 msgid "Pointer instances can also be indexed with integers::" msgstr "" -#: ../../library/ctypes.rst:937 msgid "" ">>> pi[0]\n" "99\n" ">>>" msgstr "" -#: ../../library/ctypes.rst:941 msgid "Assigning to an integer index changes the pointed to value::" msgstr "" -#: ../../library/ctypes.rst:943 msgid "" ">>> print(i)\n" "c_long(99)\n" @@ -1595,24 +1074,12 @@ msgid "" ">>>" msgstr "" -#: ../../library/ctypes.rst:950 -msgid "" -"It is also possible to use indexes different from 0, but you must know what " -"you're doing, just as in C: You can access or change arbitrary memory " -"locations. Generally you only use this feature if you receive a pointer from " -"a C function, and you *know* that the pointer actually points to an array " -"instead of a single item." +msgid "It is also possible to use indexes different from 0, but you must know what you're doing, just as in C: You can access or change arbitrary memory locations. Generally you only use this feature if you receive a pointer from a C function, and you *know* that the pointer actually points to an array instead of a single item." msgstr "" -#: ../../library/ctypes.rst:956 -msgid "" -"Behind the scenes, the :func:`pointer` function does more than simply create " -"pointer instances, it has to create pointer *types* first. This is done with " -"the :func:`POINTER` function, which accepts any :mod:`!ctypes` type, and " -"returns a new type::" +msgid "Behind the scenes, the :func:`pointer` function does more than simply create pointer instances, it has to create pointer *types* first. This is done with the :func:`POINTER` function, which accepts any :mod:`!ctypes` type, and returns a new type::" msgstr "" -#: ../../library/ctypes.rst:961 msgid "" ">>> PI = POINTER(c_int)\n" ">>> PI\n" @@ -1626,13 +1093,9 @@ msgid "" ">>>" msgstr "" -#: ../../library/ctypes.rst:972 -msgid "" -"Calling the pointer type without an argument creates a ``NULL`` pointer. " -"``NULL`` pointers have a ``False`` boolean value::" +msgid "Calling the pointer type without an argument creates a ``NULL`` pointer. ``NULL`` pointers have a ``False`` boolean value::" msgstr "" -#: ../../library/ctypes.rst:975 msgid "" ">>> null_ptr = POINTER(c_int)()\n" ">>> print(bool(null_ptr))\n" @@ -1640,13 +1103,9 @@ msgid "" ">>>" msgstr "" -#: ../../library/ctypes.rst:980 -msgid "" -":mod:`!ctypes` checks for ``NULL`` when dereferencing pointers (but " -"dereferencing invalid non-\\ ``NULL`` pointers would crash Python)::" +msgid ":mod:`!ctypes` checks for ``NULL`` when dereferencing pointers (but dereferencing invalid non-\\ ``NULL`` pointers would crash Python)::" msgstr "" -#: ../../library/ctypes.rst:983 msgid "" ">>> null_ptr[0]\n" "Traceback (most recent call last):\n" @@ -1661,34 +1120,21 @@ msgid "" ">>>" msgstr "" -#: ../../library/ctypes.rst:998 msgid "Thread safety without the GIL" msgstr "" -#: ../../library/ctypes.rst:1000 -msgid "" -"From Python 3.13 onward, the :term:`GIL` can be disabled on the :term:`free-" -"threaded build`. In ctypes, reads and writes to a single object concurrently " -"is safe, but not across multiple objects:" +msgid "From Python 3.13 onward, the :term:`GIL` can be disabled on the :term:`free-threaded build`. In ctypes, reads and writes to a single object concurrently is safe, but not across multiple objects:" msgstr "" -#: ../../library/ctypes.rst:1003 msgid "" ">>> number = c_int(42)\n" ">>> pointer_a = pointer(number)\n" ">>> pointer_b = pointer(number)" msgstr "" -#: ../../library/ctypes.rst:1009 -msgid "" -"In the above, it's only safe for one object to read and write to the address " -"at once if the GIL is disabled. So, ``pointer_a`` can be shared and written " -"to across multiple threads, but only if ``pointer_b`` is not also attempting " -"to do the same. If this is an issue, consider using " -"a :class:`threading.Lock` to synchronize access to memory:" +msgid "In the above, it's only safe for one object to read and write to the address at once if the GIL is disabled. So, ``pointer_a`` can be shared and written to across multiple threads, but only if ``pointer_b`` is not also attempting to do the same. If this is an issue, consider using a :class:`threading.Lock` to synchronize access to memory:" msgstr "" -#: ../../library/ctypes.rst:1014 msgid "" ">>> import threading\n" ">>> lock = threading.Lock()\n" @@ -1700,22 +1146,12 @@ msgid "" "... pointer_b.contents = 42" msgstr "" -#: ../../library/ctypes.rst:1029 msgid "Type conversions" msgstr "" -#: ../../library/ctypes.rst:1031 -msgid "" -"Usually, ctypes does strict type checking. This means, if you have " -"``POINTER(c_int)`` in the :attr:`~_CFuncPtr.argtypes` list of a function or " -"as the type of a member field in a structure definition, only instances of " -"exactly the same type are accepted. There are some exceptions to this rule, " -"where ctypes accepts other objects. For example, you can pass compatible " -"array instances instead of pointer types. So, for ``POINTER(c_int)``, " -"ctypes accepts an array of c_int::" +msgid "Usually, ctypes does strict type checking. This means, if you have ``POINTER(c_int)`` in the :attr:`~_CFuncPtr.argtypes` list of a function or as the type of a member field in a structure definition, only instances of exactly the same type are accepted. There are some exceptions to this rule, where ctypes accepts other objects. For example, you can pass compatible array instances instead of pointer types. So, for ``POINTER(c_int)``, ctypes accepts an array of c_int::" msgstr "" -#: ../../library/ctypes.rst:1038 msgid "" ">>> class Bar(Structure):\n" "... _fields_ = [(\"count\", c_int), (\"values\", POINTER(c_int))]\n" @@ -1732,58 +1168,34 @@ msgid "" ">>>" msgstr "" -#: ../../library/ctypes.rst:1052 -msgid "" -"In addition, if a function argument is explicitly declared to be a pointer " -"type (such as ``POINTER(c_int)``) in :attr:`~_CFuncPtr.argtypes`, an object " -"of the pointed type (``c_int`` in this case) can be passed to the function. " -"ctypes will apply the required :func:`byref` conversion in this case " -"automatically." +msgid "In addition, if a function argument is explicitly declared to be a pointer type (such as ``POINTER(c_int)``) in :attr:`~_CFuncPtr.argtypes`, an object of the pointed type (``c_int`` in this case) can be passed to the function. ctypes will apply the required :func:`byref` conversion in this case automatically." msgstr "" -#: ../../library/ctypes.rst:1057 msgid "To set a POINTER type field to ``NULL``, you can assign ``None``::" msgstr "" -#: ../../library/ctypes.rst:1059 msgid "" ">>> bar.values = None\n" ">>>" msgstr "" -#: ../../library/ctypes.rst:1064 -msgid "" -"Sometimes you have instances of incompatible types. In C, you can cast one " -"type into another type. :mod:`!ctypes` provides a :func:`cast` function " -"which can be used in the same way. The ``Bar`` structure defined above " -"accepts ``POINTER(c_int)`` pointers or :class:`c_int` arrays for its " -"``values`` field, but not instances of other types::" +msgid "Sometimes you have instances of incompatible types. In C, you can cast one type into another type. :mod:`!ctypes` provides a :func:`cast` function which can be used in the same way. The ``Bar`` structure defined above accepts ``POINTER(c_int)`` pointers or :class:`c_int` arrays for its ``values`` field, but not instances of other types::" msgstr "" -#: ../../library/ctypes.rst:1070 msgid "" ">>> bar.values = (c_byte * 4)()\n" "Traceback (most recent call last):\n" " File \"\", line 1, in \n" -"TypeError: incompatible types, c_byte_Array_4 instance instead of LP_c_long " -"instance\n" +"TypeError: incompatible types, c_byte_Array_4 instance instead of LP_c_long instance\n" ">>>" msgstr "" -#: ../../library/ctypes.rst:1076 msgid "For these cases, the :func:`cast` function is handy." msgstr "" -#: ../../library/ctypes.rst:1078 -msgid "" -"The :func:`cast` function can be used to cast a ctypes instance into a " -"pointer to a different ctypes data type. :func:`cast` takes two parameters, " -"a ctypes object that is or can be converted to a pointer of some kind, and a " -"ctypes pointer type. It returns an instance of the second argument, which " -"references the same memory block as the first argument::" +msgid "The :func:`cast` function can be used to cast a ctypes instance into a pointer to a different ctypes data type. :func:`cast` takes two parameters, a ctypes object that is or can be converted to a pointer of some kind, and a ctypes pointer type. It returns an instance of the second argument, which references the same memory block as the first argument::" msgstr "" -#: ../../library/ctypes.rst:1084 msgid "" ">>> a = (c_byte * 4)()\n" ">>> cast(a, POINTER(c_int))\n" @@ -1791,13 +1203,9 @@ msgid "" ">>>" msgstr "" -#: ../../library/ctypes.rst:1089 -msgid "" -"So, :func:`cast` can be used to assign to the ``values`` field of ``Bar`` " -"the structure::" +msgid "So, :func:`cast` can be used to assign to the ``values`` field of ``Bar`` the structure::" msgstr "" -#: ../../library/ctypes.rst:1092 msgid "" ">>> bar = Bar()\n" ">>> bar.values = cast((c_byte * 4)(), POINTER(c_int))\n" @@ -1806,18 +1214,12 @@ msgid "" ">>>" msgstr "" -#: ../../library/ctypes.rst:1102 msgid "Incomplete Types" msgstr "" -#: ../../library/ctypes.rst:1104 -msgid "" -"*Incomplete Types* are structures, unions or arrays whose members are not " -"yet specified. In C, they are specified by forward declarations, which are " -"defined later::" +msgid "*Incomplete Types* are structures, unions or arrays whose members are not yet specified. In C, they are specified by forward declarations, which are defined later::" msgstr "" -#: ../../library/ctypes.rst:1108 msgid "" "struct cell; /* forward declaration */\n" "\n" @@ -1827,13 +1229,9 @@ msgid "" "};" msgstr "" -#: ../../library/ctypes.rst:1115 -msgid "" -"The straightforward translation into ctypes code would be this, but it does " -"not work::" +msgid "The straightforward translation into ctypes code would be this, but it does not work::" msgstr "" -#: ../../library/ctypes.rst:1118 msgid "" ">>> class cell(Structure):\n" "... _fields_ = [(\"name\", c_char_p),\n" @@ -1846,14 +1244,9 @@ msgid "" ">>>" msgstr "" -#: ../../library/ctypes.rst:1128 -msgid "" -"because the new ``class cell`` is not available in the class statement " -"itself. In :mod:`!ctypes`, we can define the ``cell`` class and set " -"the :attr:`~Structure._fields_` attribute later, after the class statement::" +msgid "because the new ``class cell`` is not available in the class statement itself. In :mod:`!ctypes`, we can define the ``cell`` class and set the :attr:`~Structure._fields_` attribute later, after the class statement::" msgstr "" -#: ../../library/ctypes.rst:1132 msgid "" ">>> from ctypes import *\n" ">>> class cell(Structure):\n" @@ -1864,13 +1257,9 @@ msgid "" ">>>" msgstr "" -#: ../../library/ctypes.rst:1140 -msgid "" -"Let's try it. We create two instances of ``cell``, and let them point to " -"each other, and finally follow the pointer chain a few times::" +msgid "Let's try it. We create two instances of ``cell``, and let them point to each other, and finally follow the pointer chain a few times::" msgstr "" -#: ../../library/ctypes.rst:1143 msgid "" ">>> c1 = cell()\n" ">>> c1.name = b\"foo\"\n" @@ -1887,46 +1276,24 @@ msgid "" ">>>" msgstr "" -#: ../../library/ctypes.rst:1161 msgid "Callback functions" msgstr "" -#: ../../library/ctypes.rst:1163 -msgid "" -":mod:`!ctypes` allows creating C callable function pointers from Python " -"callables. These are sometimes called *callback functions*." +msgid ":mod:`!ctypes` allows creating C callable function pointers from Python callables. These are sometimes called *callback functions*." msgstr "" -#: ../../library/ctypes.rst:1166 -msgid "" -"First, you must create a class for the callback function. The class knows " -"the calling convention, the return type, and the number and types of " -"arguments this function will receive." +msgid "First, you must create a class for the callback function. The class knows the calling convention, the return type, and the number and types of arguments this function will receive." msgstr "" -#: ../../library/ctypes.rst:1170 -msgid "" -"The :func:`CFUNCTYPE` factory function creates types for callback functions " -"using the ``cdecl`` calling convention. On Windows, the :func:`WINFUNCTYPE` " -"factory function creates types for callback functions using the ``stdcall`` " -"calling convention." +msgid "The :func:`CFUNCTYPE` factory function creates types for callback functions using the ``cdecl`` calling convention. On Windows, the :func:`WINFUNCTYPE` factory function creates types for callback functions using the ``stdcall`` calling convention." msgstr "" -#: ../../library/ctypes.rst:1175 -msgid "" -"Both of these factory functions are called with the result type as first " -"argument, and the callback functions expected argument types as the " -"remaining arguments." +msgid "Both of these factory functions are called with the result type as first argument, and the callback functions expected argument types as the remaining arguments." msgstr "" -#: ../../library/ctypes.rst:1179 -msgid "" -"I will present an example here which uses the standard C library's :c:func:`!" -"qsort` function, that is used to sort items with the help of a callback " -"function. :c:func:`!qsort` will be used to sort an array of integers::" +msgid "I will present an example here which uses the standard C library's :c:func:`!qsort` function, that is used to sort items with the help of a callback function. :c:func:`!qsort` will be used to sort an array of integers::" msgstr "" -#: ../../library/ctypes.rst:1183 msgid "" ">>> IntArray5 = c_int * 5\n" ">>> ia = IntArray5(5, 1, 7, 33, 99)\n" @@ -1935,35 +1302,20 @@ msgid "" ">>>" msgstr "" -#: ../../library/ctypes.rst:1189 -msgid "" -":func:`!qsort` must be called with a pointer to the data to sort, the number " -"of items in the data array, the size of one item, and a pointer to the " -"comparison function, the callback. The callback will then be called with two " -"pointers to items, and it must return a negative integer if the first item " -"is smaller than the second, a zero if they are equal, and a positive integer " -"otherwise." +msgid ":func:`!qsort` must be called with a pointer to the data to sort, the number of items in the data array, the size of one item, and a pointer to the comparison function, the callback. The callback will then be called with two pointers to items, and it must return a negative integer if the first item is smaller than the second, a zero if they are equal, and a positive integer otherwise." msgstr "" -#: ../../library/ctypes.rst:1195 -msgid "" -"So our callback function receives pointers to integers, and must return an " -"integer. First we create the ``type`` for the callback function::" +msgid "So our callback function receives pointers to integers, and must return an integer. First we create the ``type`` for the callback function::" msgstr "" -#: ../../library/ctypes.rst:1198 msgid "" ">>> CMPFUNC = CFUNCTYPE(c_int, POINTER(c_int), POINTER(c_int))\n" ">>>" msgstr "" -#: ../../library/ctypes.rst:1201 -msgid "" -"To get started, here is a simple callback that shows the values it gets " -"passed::" +msgid "To get started, here is a simple callback that shows the values it gets passed::" msgstr "" -#: ../../library/ctypes.rst:1204 msgid "" ">>> def py_cmp_func(a, b):\n" "... print(\"py_cmp_func\", a[0], b[0])\n" @@ -1973,11 +1325,9 @@ msgid "" ">>>" msgstr "" -#: ../../library/ctypes.rst:1211 msgid "The result::" msgstr "" -#: ../../library/ctypes.rst:1213 msgid "" ">>> qsort(ia, len(ia), sizeof(c_int), cmp_func)\n" "py_cmp_func 5 1\n" @@ -1988,11 +1338,9 @@ msgid "" ">>>" msgstr "" -#: ../../library/ctypes.rst:1221 msgid "Now we can actually compare the two items and return a useful result::" msgstr "" -#: ../../library/ctypes.rst:1223 msgid "" ">>> def py_cmp_func(a, b):\n" "... print(\"py_cmp_func\", a[0], b[0])\n" @@ -2008,11 +1356,9 @@ msgid "" ">>>" msgstr "" -#: ../../library/ctypes.rst:1236 msgid "As we can easily check, our array is sorted now::" msgstr "" -#: ../../library/ctypes.rst:1238 msgid "" ">>> for i in ia: print(i, end=\" \")\n" "...\n" @@ -2020,13 +1366,9 @@ msgid "" ">>>" msgstr "" -#: ../../library/ctypes.rst:1243 -msgid "" -"The function factories can be used as decorator factories, so we may as well " -"write::" +msgid "The function factories can be used as decorator factories, so we may as well write::" msgstr "" -#: ../../library/ctypes.rst:1246 msgid "" ">>> @CFUNCTYPE(c_int, POINTER(c_int), POINTER(c_int))\n" "... def py_cmp_func(a, b):\n" @@ -2042,74 +1384,39 @@ msgid "" ">>>" msgstr "" -#: ../../library/ctypes.rst:1261 -msgid "" -"Make sure you keep references to :func:`CFUNCTYPE` objects as long as they " -"are used from C code. :mod:`!ctypes` doesn't, and if you don't, they may be " -"garbage collected, crashing your program when a callback is made." +msgid "Make sure you keep references to :func:`CFUNCTYPE` objects as long as they are used from C code. :mod:`!ctypes` doesn't, and if you don't, they may be garbage collected, crashing your program when a callback is made." msgstr "" -#: ../../library/ctypes.rst:1265 -msgid "" -"Also, note that if the callback function is called in a thread created " -"outside of Python's control (e.g. by the foreign code that calls the " -"callback), ctypes creates a new dummy Python thread on every invocation. " -"This behavior is correct for most purposes, but it means that values stored " -"with :class:`threading.local` will *not* survive across different callbacks, " -"even when those calls are made from the same C thread." +msgid "Also, note that if the callback function is called in a thread created outside of Python's control (e.g. by the foreign code that calls the callback), ctypes creates a new dummy Python thread on every invocation. This behavior is correct for most purposes, but it means that values stored with :class:`threading.local` will *not* survive across different callbacks, even when those calls are made from the same C thread." msgstr "" -#: ../../library/ctypes.rst:1275 msgid "Accessing values exported from dlls" msgstr "" -#: ../../library/ctypes.rst:1277 -msgid "" -"Some shared libraries not only export functions, they also export variables. " -"An example in the Python library itself is the :c:data:`Py_Version`, Python " -"runtime version number encoded in a single constant integer." +msgid "Some shared libraries not only export functions, they also export variables. An example in the Python library itself is the :c:data:`Py_Version`, Python runtime version number encoded in a single constant integer." msgstr "" -#: ../../library/ctypes.rst:1281 -msgid "" -":mod:`!ctypes` can access values like this with the :meth:`~_CData.in_dll` " -"class methods of the type. *pythonapi* is a predefined symbol giving access " -"to the Python C api::" +msgid ":mod:`!ctypes` can access values like this with the :meth:`~_CData.in_dll` class methods of the type. *pythonapi* is a predefined symbol giving access to the Python C api::" msgstr "" -#: ../../library/ctypes.rst:1285 msgid "" ">>> version = ctypes.c_int.in_dll(ctypes.pythonapi, \"Py_Version\")\n" ">>> print(hex(version.value))\n" "0x30c00a0" msgstr "" -#: ../../library/ctypes.rst:1289 -msgid "" -"An extended example which also demonstrates the use of pointers accesses " -"the :c:data:`PyImport_FrozenModules` pointer exported by Python." +msgid "An extended example which also demonstrates the use of pointers accesses the :c:data:`PyImport_FrozenModules` pointer exported by Python." msgstr "" -#: ../../library/ctypes.rst:1292 msgid "Quoting the docs for that value:" msgstr "" -#: ../../library/ctypes.rst:1294 -msgid "" -"This pointer is initialized to point to an array of :c:struct:`_frozen` " -"records, terminated by one whose members are all ``NULL`` or zero. When a " -"frozen module is imported, it is searched in this table. Third-party code " -"could play tricks with this to provide a dynamically created collection of " -"frozen modules." +msgid "This pointer is initialized to point to an array of :c:struct:`_frozen` records, terminated by one whose members are all ``NULL`` or zero. When a frozen module is imported, it is searched in this table. Third-party code could play tricks with this to provide a dynamically created collection of frozen modules." msgstr "" -#: ../../library/ctypes.rst:1299 -msgid "" -"So manipulating this pointer could even prove useful. To restrict the " -"example size, we show only how this table can be read with :mod:`!ctypes`::" +msgid "So manipulating this pointer could even prove useful. To restrict the example size, we show only how this table can be read with :mod:`!ctypes`::" msgstr "" -#: ../../library/ctypes.rst:1302 msgid "" ">>> from ctypes import *\n" ">>>\n" @@ -2123,29 +1430,18 @@ msgid "" ">>>" msgstr "" -#: ../../library/ctypes.rst:1313 -msgid "" -"We have defined the :c:struct:`_frozen` data type, so we can get the pointer " -"to the table::" +msgid "We have defined the :c:struct:`_frozen` data type, so we can get the pointer to the table::" msgstr "" -#: ../../library/ctypes.rst:1316 msgid "" ">>> FrozenTable = POINTER(struct_frozen)\n" ">>> table = FrozenTable.in_dll(pythonapi, \"_PyImport_FrozenBootstrap\")\n" ">>>" msgstr "" -#: ../../library/ctypes.rst:1320 -msgid "" -"Since ``table`` is a ``pointer`` to the array of ``struct_frozen`` records, " -"we can iterate over it, but we just have to make sure that our loop " -"terminates, because pointers have no size. Sooner or later it would probably " -"crash with an access violation or whatever, so it's better to break out of " -"the loop when we hit the ``NULL`` entry::" +msgid "Since ``table`` is a ``pointer`` to the array of ``struct_frozen`` records, we can iterate over it, but we just have to make sure that our loop terminates, because pointers have no size. Sooner or later it would probably crash with an access violation or whatever, so it's better to break out of the loop when we hit the ``NULL`` entry::" msgstr "" -#: ../../library/ctypes.rst:1326 msgid "" ">>> for item in table:\n" "... if item.name is None:\n" @@ -2158,28 +1454,18 @@ msgid "" ">>>" msgstr "" -#: ../../library/ctypes.rst:1336 -msgid "" -"The fact that standard Python has a frozen module and a frozen package " -"(indicated by the negative ``size`` member) is not well known, it is only " -"used for testing. Try it out with ``import __hello__`` for example." +msgid "The fact that standard Python has a frozen module and a frozen package (indicated by the negative ``size`` member) is not well known, it is only used for testing. Try it out with ``import __hello__`` for example." msgstr "" -#: ../../library/ctypes.rst:1344 msgid "Surprises" msgstr "" -#: ../../library/ctypes.rst:1346 -msgid "" -"There are some edges in :mod:`!ctypes` where you might expect something " -"other than what actually happens." +msgid "There are some edges in :mod:`!ctypes` where you might expect something other than what actually happens." msgstr "" -#: ../../library/ctypes.rst:1349 msgid "Consider the following example::" msgstr "" -#: ../../library/ctypes.rst:1351 msgid "" ">>> from ctypes import *\n" ">>> class POINT(Structure):\n" @@ -2200,13 +1486,9 @@ msgid "" ">>>" msgstr "" -#: ../../library/ctypes.rst:1369 -msgid "" -"Hm. We certainly expected the last statement to print ``3 4 1 2``. What " -"happened? Here are the steps of the ``rc.a, rc.b = rc.b, rc.a`` line above::" +msgid "Hm. We certainly expected the last statement to print ``3 4 1 2``. What happened? Here are the steps of the ``rc.a, rc.b = rc.b, rc.a`` line above::" msgstr "" -#: ../../library/ctypes.rst:1372 msgid "" ">>> temp0, temp1 = rc.b, rc.a\n" ">>> rc.a = temp0\n" @@ -2214,29 +1496,15 @@ msgid "" ">>>" msgstr "" -#: ../../library/ctypes.rst:1377 -msgid "" -"Note that ``temp0`` and ``temp1`` are objects still using the internal " -"buffer of the ``rc`` object above. So executing ``rc.a = temp0`` copies the " -"buffer contents of ``temp0`` into ``rc`` 's buffer. This, in turn, changes " -"the contents of ``temp1``. So, the last assignment ``rc.b = temp1``, doesn't " -"have the expected effect." +msgid "Note that ``temp0`` and ``temp1`` are objects still using the internal buffer of the ``rc`` object above. So executing ``rc.a = temp0`` copies the buffer contents of ``temp0`` into ``rc`` 's buffer. This, in turn, changes the contents of ``temp1``. So, the last assignment ``rc.b = temp1``, doesn't have the expected effect." msgstr "" -#: ../../library/ctypes.rst:1383 -msgid "" -"Keep in mind that retrieving sub-objects from Structure, Unions, and Arrays " -"doesn't *copy* the sub-object, instead it retrieves a wrapper object " -"accessing the root-object's underlying buffer." +msgid "Keep in mind that retrieving sub-objects from Structure, Unions, and Arrays doesn't *copy* the sub-object, instead it retrieves a wrapper object accessing the root-object's underlying buffer." msgstr "" -#: ../../library/ctypes.rst:1387 -msgid "" -"Another example that may behave differently from what one would expect is " -"this::" +msgid "Another example that may behave differently from what one would expect is this::" msgstr "" -#: ../../library/ctypes.rst:1389 msgid "" ">>> s = c_char_p()\n" ">>> s.value = b\"abc def ghi\"\n" @@ -2247,41 +1515,21 @@ msgid "" ">>>" msgstr "" -#: ../../library/ctypes.rst:1399 -msgid "" -"Objects instantiated from :class:`c_char_p` can only have their value set to " -"bytes or integers." +msgid "Objects instantiated from :class:`c_char_p` can only have their value set to bytes or integers." msgstr "" -#: ../../library/ctypes.rst:1402 -msgid "" -"Why is it printing ``False``? ctypes instances are objects containing a " -"memory block plus some :term:`descriptor`\\s accessing the contents of the " -"memory. Storing a Python object in the memory block does not store the " -"object itself, instead the ``contents`` of the object is stored. Accessing " -"the contents again constructs a new Python object each time!" +msgid "Why is it printing ``False``? ctypes instances are objects containing a memory block plus some :term:`descriptor`\\s accessing the contents of the memory. Storing a Python object in the memory block does not store the object itself, instead the ``contents`` of the object is stored. Accessing the contents again constructs a new Python object each time!" msgstr "" -#: ../../library/ctypes.rst:1412 msgid "Variable-sized data types" msgstr "" -#: ../../library/ctypes.rst:1414 -msgid "" -":mod:`!ctypes` provides some support for variable-sized arrays and " -"structures." +msgid ":mod:`!ctypes` provides some support for variable-sized arrays and structures." msgstr "" -#: ../../library/ctypes.rst:1416 -msgid "" -"The :func:`resize` function can be used to resize the memory buffer of an " -"existing ctypes object. The function takes the object as first argument, " -"and the requested size in bytes as the second argument. The memory block " -"cannot be made smaller than the natural memory block specified by the " -"objects type, a :exc:`ValueError` is raised if this is tried::" +msgid "The :func:`resize` function can be used to resize the memory buffer of an existing ctypes object. The function takes the object as first argument, and the requested size in bytes as the second argument. The memory block cannot be made smaller than the natural memory block specified by the objects type, a :exc:`ValueError` is raised if this is tried::" msgstr "" -#: ../../library/ctypes.rst:1422 msgid "" ">>> short_array = (c_short * 4)()\n" ">>> print(sizeof(short_array))\n" @@ -2298,14 +1546,9 @@ msgid "" ">>>" msgstr "" -#: ../../library/ctypes.rst:1436 -msgid "" -"This is nice and fine, but how would one access the additional elements " -"contained in this array? Since the type still only knows about 4 elements, " -"we get errors accessing other elements::" +msgid "This is nice and fine, but how would one access the additional elements contained in this array? Since the type still only knows about 4 elements, we get errors accessing other elements::" msgstr "" -#: ../../library/ctypes.rst:1440 msgid "" ">>> short_array[:]\n" "[0, 0, 0, 0]\n" @@ -2316,79 +1559,42 @@ msgid "" ">>>" msgstr "" -#: ../../library/ctypes.rst:1448 -msgid "" -"Another way to use variable-sized data types with :mod:`!ctypes` is to use " -"the dynamic nature of Python, and (re-)define the data type after the " -"required size is already known, on a case by case basis." +msgid "Another way to use variable-sized data types with :mod:`!ctypes` is to use the dynamic nature of Python, and (re-)define the data type after the required size is already known, on a case by case basis." msgstr "" -#: ../../library/ctypes.rst:1456 msgid "ctypes reference" msgstr "" -#: ../../library/ctypes.rst:1462 msgid "Finding shared libraries" msgstr "" -#: ../../library/ctypes.rst:1464 -msgid "" -"When programming in a compiled language, shared libraries are accessed when " -"compiling/linking a program, and when the program is run." +msgid "When programming in a compiled language, shared libraries are accessed when compiling/linking a program, and when the program is run." msgstr "" -#: ../../library/ctypes.rst:1467 -msgid "" -"The purpose of the :func:`~ctypes.util.find_library` function is to locate a " -"library in a way similar to what the compiler or runtime loader does (on " -"platforms with several versions of a shared library the most recent should " -"be loaded), while the ctypes library loaders act like when a program is run, " -"and call the runtime loader directly." +msgid "The purpose of the :func:`~ctypes.util.find_library` function is to locate a library in a way similar to what the compiler or runtime loader does (on platforms with several versions of a shared library the most recent should be loaded), while the ctypes library loaders act like when a program is run, and call the runtime loader directly." msgstr "" -#: ../../library/ctypes.rst:1473 -msgid "" -"The :mod:`!ctypes.util` module provides a function which can help to " -"determine the library to load." +msgid "The :mod:`!ctypes.util` module provides a function which can help to determine the library to load." msgstr "" -#: ../../library/ctypes.rst:1481 -msgid "" -"Try to find a library and return a pathname. *name* is the library name " -"without any prefix like *lib*, suffix like ``.so``, ``.dylib`` or version " -"number (this is the form used for the posix linker option :option:`!-l`). " -"If no library can be found, returns ``None``." +msgid "Try to find a library and return a pathname. *name* is the library name without any prefix like *lib*, suffix like ``.so``, ``.dylib`` or version number (this is the form used for the posix linker option :option:`!-l`). If no library can be found, returns ``None``." msgstr "" -#: ../../library/ctypes.rst:1486 ../../library/ctypes.rst:2245 msgid "The exact functionality is system dependent." msgstr "" -#: ../../library/ctypes.rst:1488 -msgid "" -"On Linux, :func:`~ctypes.util.find_library` tries to run external programs " -"(``/sbin/ldconfig``, ``gcc``, ``objdump`` and ``ld``) to find the library " -"file. It returns the filename of the library file." +msgid "On Linux, :func:`~ctypes.util.find_library` tries to run external programs (``/sbin/ldconfig``, ``gcc``, ``objdump`` and ``ld``) to find the library file. It returns the filename of the library file." msgstr "" -#: ../../library/ctypes.rst:1492 -msgid "" -"Note that if the output of these programs does not correspond to the dynamic " -"linker used by Python, the result of this function may be misleading." +msgid "Note that if the output of these programs does not correspond to the dynamic linker used by Python, the result of this function may be misleading." msgstr "" -#: ../../library/ctypes.rst:1495 -msgid "" -"On Linux, the value of the environment variable ``LD_LIBRARY_PATH`` is used " -"when searching for libraries, if a library cannot be found by any other " -"means." +msgid "On Linux, the value of the environment variable ``LD_LIBRARY_PATH`` is used when searching for libraries, if a library cannot be found by any other means." msgstr "" -#: ../../library/ctypes.rst:1499 msgid "Here are some examples::" msgstr "" -#: ../../library/ctypes.rst:1501 msgid "" ">>> from ctypes.util import find_library\n" ">>> find_library(\"m\")\n" @@ -2400,14 +1606,9 @@ msgid "" ">>>" msgstr "" -#: ../../library/ctypes.rst:1510 -msgid "" -"On macOS and Android, :func:`~ctypes.util.find_library` uses the system's " -"standard naming schemes and paths to locate the library, and returns a full " -"pathname if successful::" +msgid "On macOS and Android, :func:`~ctypes.util.find_library` uses the system's standard naming schemes and paths to locate the library, and returns a full pathname if successful::" msgstr "" -#: ../../library/ctypes.rst:1514 msgid "" ">>> from ctypes.util import find_library\n" ">>> find_library(\"c\")\n" @@ -2421,122 +1622,60 @@ msgid "" ">>>" msgstr "" -#: ../../library/ctypes.rst:1525 -msgid "" -"On Windows, :func:`~ctypes.util.find_library` searches along the system " -"search path, and returns the full pathname, but since there is no predefined " -"naming scheme a call like ``find_library(\"c\")`` will fail and return " -"``None``." +msgid "On Windows, :func:`~ctypes.util.find_library` searches along the system search path, and returns the full pathname, but since there is no predefined naming scheme a call like ``find_library(\"c\")`` will fail and return ``None``." msgstr "" -#: ../../library/ctypes.rst:1529 -msgid "" -"If wrapping a shared library with :mod:`!ctypes`, it *may* be better to " -"determine the shared library name at development time, and hardcode that " -"into the wrapper module instead of using :func:`~ctypes.util.find_library` " -"to locate the library at runtime." +msgid "If wrapping a shared library with :mod:`!ctypes`, it *may* be better to determine the shared library name at development time, and hardcode that into the wrapper module instead of using :func:`~ctypes.util.find_library` to locate the library at runtime." msgstr "" -#: ../../library/ctypes.rst:1537 msgid "Listing loaded shared libraries" msgstr "" -#: ../../library/ctypes.rst:1539 -msgid "" -"When writing code that relies on code loaded from shared libraries, it can " -"be useful to know which shared libraries have already been loaded into the " -"current process." +msgid "When writing code that relies on code loaded from shared libraries, it can be useful to know which shared libraries have already been loaded into the current process." msgstr "" -#: ../../library/ctypes.rst:1543 -msgid "" -"The :mod:`!ctypes.util` module provides the :func:`~ctypes.util.dllist` " -"function, which calls the different APIs provided by the various platforms " -"to help determine which shared libraries have already been loaded into the " -"current process." +msgid "The :mod:`!ctypes.util` module provides the :func:`~ctypes.util.dllist` function, which calls the different APIs provided by the various platforms to help determine which shared libraries have already been loaded into the current process." msgstr "" -#: ../../library/ctypes.rst:1547 -msgid "" -"The exact output of this function will be system dependent. On most " -"platforms, the first entry of this list represents the current process " -"itself, which may be an empty string. For example, on glibc-based Linux, the " -"return may look like::" +msgid "The exact output of this function will be system dependent. On most platforms, the first entry of this list represents the current process itself, which may be an empty string. For example, on glibc-based Linux, the return may look like::" msgstr "" -#: ../../library/ctypes.rst:1552 msgid "" ">>> from ctypes.util import dllist\n" ">>> dllist()\n" -"['', 'linux-vdso.so.1', '/lib/x86_64-linux-gnu/libm.so.6', '/lib/x86_64-" -"linux-gnu/libc.so.6', ... ]" +"['', 'linux-vdso.so.1', '/lib/x86_64-linux-gnu/libm.so.6', '/lib/x86_64-linux-gnu/libc.so.6', ... ]" msgstr "" -#: ../../library/ctypes.rst:1559 msgid "Loading shared libraries" msgstr "" -#: ../../library/ctypes.rst:1561 -msgid "" -"There are several ways to load shared libraries into the Python process. " -"One way is to instantiate :py:class:`CDLL` or one of its subclasses:" +msgid "There are several ways to load shared libraries into the Python process. One way is to instantiate :py:class:`CDLL` or one of its subclasses:" msgstr "" -#: ../../library/ctypes.rst:1567 msgid "Represents a loaded shared library." msgstr "" -#: ../../library/ctypes.rst:1569 -msgid "" -"Functions in this library use the standard C calling convention, and are " -"assumed to return :c:expr:`int`. The Python :term:`global interpreter lock` " -"is released before calling any function exported by these libraries, and " -"reacquired afterwards. For different function behavior, use a " -"subclass: :py:class:`~ctypes.OleDLL`, :py:class:`~ctypes.WinDLL`, " -"or :py:class:`~ctypes.PyDLL`." +msgid "Functions in this library use the standard C calling convention, and are assumed to return :c:expr:`int`. The Python :term:`global interpreter lock` is released before calling any function exported by these libraries, and reacquired afterwards. For different function behavior, use a subclass: :py:class:`~ctypes.OleDLL`, :py:class:`~ctypes.WinDLL`, or :py:class:`~ctypes.PyDLL`." msgstr "" -#: ../../library/ctypes.rst:1576 -msgid "" -"If you have an existing :py:attr:`handle ` to an " -"already loaded shared library, it can be passed as the *handle* argument to " -"wrap the opened library in a new :py:class:`!CDLL` object. In this case, " -"*name* is only used to set the :py:attr:`~ctypes.CDLL._name` attribute, but " -"it may be adjusted and/or validated." +msgid "If you have an existing :py:attr:`handle ` to an already loaded shared library, it can be passed as the *handle* argument to wrap the opened library in a new :py:class:`!CDLL` object. In this case, *name* is only used to set the :py:attr:`~ctypes.CDLL._name` attribute, but it may be adjusted and/or validated." msgstr "" -#: ../../library/ctypes.rst:1582 -msgid "" -"If *handle* is ``None``, the underlying platform's :manpage:`dlopen(3)` " -"or :c:func:`!LoadLibrary` function is used to load the library into the " -"process, and to get a handle to it." +msgid "If *handle* is ``None``, the underlying platform's :manpage:`dlopen(3)` or :c:func:`!LoadLibrary` function is used to load the library into the process, and to get a handle to it." msgstr "" -#: ../../library/ctypes.rst:1586 -msgid "" -"*name* is the pathname of the shared library to open. If *name* does not " -"contain a path separator, the library is found in a platform-specific way." +msgid "*name* is the pathname of the shared library to open. If *name* does not contain a path separator, the library is found in a platform-specific way." msgstr "" -#: ../../library/ctypes.rst:1590 -msgid "" -"On non-Windows systems, *name* can be ``None``. In this case, :c:func:`!" -"dlopen` is called with ``NULL``, which opens the main program as a " -"\"library\". (Some systems do the same is *name* is empty; ``None``/``NULL`` " -"is more portable.)" +msgid "On non-Windows systems, *name* can be ``None``. In this case, :c:func:`!dlopen` is called with ``NULL``, which opens the main program as a \"library\". (Some systems do the same is *name* is empty; ``None``/``NULL`` is more portable.)" msgstr "" -#: ../../library/ctypes.rst:1596 msgid "CPython implementation detail" msgstr "" -#: ../../library/ctypes.rst:1598 -msgid "" -"Since CPython is linked to ``libc``, a ``None`` *name* is often used to " -"access the C standard library::" +msgid "Since CPython is linked to ``libc``, a ``None`` *name* is often used to access the C standard library::" msgstr "" -#: ../../library/ctypes.rst:1601 msgid "" ">>> printf = ctypes.CDLL(None).printf\n" ">>> printf.argtypes = [ctypes.c_char_p]\n" @@ -2545,95 +1684,39 @@ msgid "" "6" msgstr "" -#: ../../library/ctypes.rst:1607 -msgid "" -"To access the Python C API, prefer :py:data:`ctypes.pythonapi` which works " -"across platforms." +msgid "To access the Python C API, prefer :py:data:`ctypes.pythonapi` which works across platforms." msgstr "" -#: ../../library/ctypes.rst:1610 -msgid "" -"The *mode* parameter can be used to specify how the library is loaded. For " -"details, consult the :manpage:`dlopen(3)` manpage. On Windows, *mode* is " -"ignored. On posix systems, RTLD_NOW is always added, and is not " -"configurable." +msgid "The *mode* parameter can be used to specify how the library is loaded. For details, consult the :manpage:`dlopen(3)` manpage. On Windows, *mode* is ignored. On posix systems, RTLD_NOW is always added, and is not configurable." msgstr "" -#: ../../library/ctypes.rst:1615 -msgid "" -"The *use_errno* parameter, when set to true, enables a ctypes mechanism that " -"allows accessing the system :data:`errno` error number in a safe way. :mod:`!" -"ctypes` maintains a thread-local copy of the system's :data:`errno` " -"variable; if you call foreign functions created with ``use_errno=True`` then " -"the :data:`errno` value before the function call is swapped with the ctypes " -"private copy, the same happens immediately after the function call." +msgid "The *use_errno* parameter, when set to true, enables a ctypes mechanism that allows accessing the system :data:`errno` error number in a safe way. :mod:`!ctypes` maintains a thread-local copy of the system's :data:`errno` variable; if you call foreign functions created with ``use_errno=True`` then the :data:`errno` value before the function call is swapped with the ctypes private copy, the same happens immediately after the function call." msgstr "" -#: ../../library/ctypes.rst:1622 -msgid "" -"The function :func:`ctypes.get_errno` returns the value of the ctypes " -"private copy, and the function :func:`ctypes.set_errno` changes the ctypes " -"private copy to a new value and returns the former value." +msgid "The function :func:`ctypes.get_errno` returns the value of the ctypes private copy, and the function :func:`ctypes.set_errno` changes the ctypes private copy to a new value and returns the former value." msgstr "" -#: ../../library/ctypes.rst:1626 -msgid "" -"The *use_last_error* parameter, when set to true, enables the same mechanism " -"for the Windows error code which is managed by the :func:`GetLastError` " -"and :func:`!SetLastError` Windows API " -"functions; :func:`ctypes.get_last_error` and :func:`ctypes.set_last_error` " -"are used to request and change the ctypes private copy of the windows error " -"code." +msgid "The *use_last_error* parameter, when set to true, enables the same mechanism for the Windows error code which is managed by the :func:`GetLastError` and :func:`!SetLastError` Windows API functions; :func:`ctypes.get_last_error` and :func:`ctypes.set_last_error` are used to request and change the ctypes private copy of the windows error code." msgstr "" -#: ../../library/ctypes.rst:1632 -msgid "" -"The *winmode* parameter is used on Windows to specify how the library is " -"loaded (since *mode* is ignored). It takes any value that is valid for the " -"Win32 API ``LoadLibraryEx`` flags parameter. When omitted, the default is to " -"use the flags that result in the most secure DLL load, which avoids issues " -"such as DLL hijacking. Passing the full path to the DLL is the safest way to " -"ensure the correct library and dependencies are loaded." +msgid "The *winmode* parameter is used on Windows to specify how the library is loaded (since *mode* is ignored). It takes any value that is valid for the Win32 API ``LoadLibraryEx`` flags parameter. When omitted, the default is to use the flags that result in the most secure DLL load, which avoids issues such as DLL hijacking. Passing the full path to the DLL is the safest way to ensure the correct library and dependencies are loaded." msgstr "" -#: ../../library/ctypes.rst:1639 -msgid "" -"On Windows creating a :class:`CDLL` instance may fail even if the DLL name " -"exists. When a dependent DLL of the loaded DLL is not found, " -"a :exc:`OSError` error is raised with the message *\"[WinError 126] The " -"specified module could not be found\".* This error message does not contain " -"the name of the missing DLL because the Windows API does not return this " -"information making this error hard to diagnose. To resolve this error and " -"determine which DLL is not found, you need to find the list of dependent " -"DLLs and determine which one is not found using Windows debugging and " -"tracing tools." -msgstr "" - -#: ../../library/ctypes.rst:1651 -msgid "" -"`Microsoft DUMPBIN tool `_ -- A tool to find DLL " -"dependents." +msgid "On Windows creating a :class:`CDLL` instance may fail even if the DLL name exists. When a dependent DLL of the loaded DLL is not found, a :exc:`OSError` error is raised with the message *\"[WinError 126] The specified module could not be found\".* This error message does not contain the name of the missing DLL because the Windows API does not return this information making this error hard to diagnose. To resolve this error and determine which DLL is not found, you need to find the list of dependent DLLs and determine which one is not found using Windows debugging and tracing tools." +msgstr "" + +msgid "`Microsoft DUMPBIN tool `_ -- A tool to find DLL dependents." msgstr "" -#: ../../library/ctypes.rst:1654 msgid "Added *winmode* parameter." msgstr "" -#: ../../library/ctypes.rst:1659 msgid "The *name* parameter can now be a :term:`path-like object`." msgstr "" -#: ../../library/ctypes.rst:1661 -msgid "" -"Instances of this class have no public methods. Functions exported by the " -"shared library can be accessed as attributes or by index. Please note that " -"accessing the function through an attribute caches the result and therefore " -"accessing it repeatedly returns the same object each time. On the other " -"hand, accessing it through an index returns a new object each time::" +msgid "Instances of this class have no public methods. Functions exported by the shared library can be accessed as attributes or by index. Please note that accessing the function through an attribute caches the result and therefore accessing it repeatedly returns the same object each time. On the other hand, accessing it through an index returns a new object each time::" msgstr "" -#: ../../library/ctypes.rst:1667 msgid "" ">>> from ctypes import CDLL\n" ">>> libc = CDLL(\"libc.so.6\") # On Linux\n" @@ -2643,191 +1726,96 @@ msgid "" "False" msgstr "" -#: ../../library/ctypes.rst:1674 -msgid "" -"The following public attributes are available. Their name starts with an " -"underscore to not clash with exported function names:" +msgid "The following public attributes are available. Their name starts with an underscore to not clash with exported function names:" msgstr "" -#: ../../library/ctypes.rst:1679 msgid "The system handle used to access the library." msgstr "" -#: ../../library/ctypes.rst:1683 msgid "The name of the library passed in the constructor." msgstr "" -#: ../../library/ctypes.rst:1687 ../../library/ctypes.rst:1704 -#: ../../library/ctypes.rst:1713 msgid "See :py:class:`~ctypes.CDLL`, the superclass, for common information." msgstr "" -#: ../../library/ctypes.rst:1689 -msgid "" -"Functions in this library use the ``stdcall`` calling convention, and are " -"assumed to return the windows specific :class:`HRESULT` " -"code. :class:`HRESULT` values contain information specifying whether the " -"function call failed or succeeded, together with additional error code. If " -"the return value signals a failure, an :class:`OSError` is automatically " -"raised." -msgstr "" - -#: ../../library/ctypes.rst:1695 ../../library/ctypes.rst:1709 -#: ../../library/ctypes.rst:1772 ../../library/ctypes.rst:1779 -#: ../../library/ctypes.rst:1949 ../../library/ctypes.rst:2001 -#: ../../library/ctypes.rst:2153 ../../library/ctypes.rst:2225 -#: ../../library/ctypes.rst:2234 ../../library/ctypes.rst:2261 -#: ../../library/ctypes.rst:2275 ../../library/ctypes.rst:2284 -#: ../../library/ctypes.rst:2293 ../../library/ctypes.rst:2308 -#: ../../library/ctypes.rst:2375 ../../library/ctypes.rst:2402 -#: ../../library/ctypes.rst:2834 ../../library/ctypes.rst:3257 +msgid "Functions in this library use the ``stdcall`` calling convention, and are assumed to return the windows specific :class:`HRESULT` code. :class:`HRESULT` values contain information specifying whether the function call failed or succeeded, together with additional error code. If the return value signals a failure, an :class:`OSError` is automatically raised." +msgstr "" + msgid "Availability" msgstr "" -#: ../../library/ctypes.rst:1697 -msgid "" -":exc:`WindowsError` used to be raised, which is now an alias " -"of :exc:`OSError`." +msgid ":exc:`WindowsError` used to be raised, which is now an alias of :exc:`OSError`." msgstr "" -#: ../../library/ctypes.rst:1706 -msgid "" -"Functions in these libraries use the ``stdcall`` calling convention, and are " -"assumed to return :c:expr:`int` by default." +msgid "Functions in these libraries use the ``stdcall`` calling convention, and are assumed to return :c:expr:`int` by default." msgstr "" -#: ../../library/ctypes.rst:1715 -msgid "" -"When functions in this library are called, the Python GIL is *not* released " -"during the function call, and after the function execution the Python error " -"flag is checked. If the error flag is set, a Python exception is raised." +msgid "When functions in this library are called, the Python GIL is *not* released during the function call, and after the function execution the Python error flag is checked. If the error flag is set, a Python exception is raised." msgstr "" -#: ../../library/ctypes.rst:1720 msgid "Thus, this is only useful to call Python C API functions directly." msgstr "" -#: ../../library/ctypes.rst:1725 -msgid "" -"Flag to use as *mode* parameter. On platforms where this flag is not " -"available, it is defined as the integer zero." +msgid "Flag to use as *mode* parameter. On platforms where this flag is not available, it is defined as the integer zero." msgstr "" -#: ../../library/ctypes.rst:1731 -msgid "" -"Flag to use as *mode* parameter. On platforms where this is not available, " -"it is the same as *RTLD_GLOBAL*." +msgid "Flag to use as *mode* parameter. On platforms where this is not available, it is the same as *RTLD_GLOBAL*." msgstr "" -#: ../../library/ctypes.rst:1737 -msgid "" -"The default mode which is used to load shared libraries. On OSX 10.3, this " -"is *RTLD_GLOBAL*, otherwise it is the same as *RTLD_LOCAL*." +msgid "The default mode which is used to load shared libraries. On OSX 10.3, this is *RTLD_GLOBAL*, otherwise it is the same as *RTLD_LOCAL*." msgstr "" -#: ../../library/ctypes.rst:1741 -msgid "" -"Shared libraries can also be loaded by using one of the prefabricated " -"objects, which are instances of the :class:`LibraryLoader` class, either by " -"calling the :meth:`~LibraryLoader.LoadLibrary` method, or by retrieving the " -"library as attribute of the loader instance." +msgid "Shared libraries can also be loaded by using one of the prefabricated objects, which are instances of the :class:`LibraryLoader` class, either by calling the :meth:`~LibraryLoader.LoadLibrary` method, or by retrieving the library as attribute of the loader instance." msgstr "" -#: ../../library/ctypes.rst:1748 -msgid "" -"Class which loads shared libraries. *dlltype* should be one of " -"the :class:`CDLL`, :class:`PyDLL`, :class:`WinDLL`, or :class:`OleDLL` types." +msgid "Class which loads shared libraries. *dlltype* should be one of the :class:`CDLL`, :class:`PyDLL`, :class:`WinDLL`, or :class:`OleDLL` types." msgstr "" -#: ../../library/ctypes.rst:1751 -msgid "" -":meth:`!__getattr__` has special behavior: It allows loading a shared " -"library by accessing it as attribute of a library loader instance. The " -"result is cached, so repeated attribute accesses return the same library " -"each time." +msgid ":meth:`!__getattr__` has special behavior: It allows loading a shared library by accessing it as attribute of a library loader instance. The result is cached, so repeated attribute accesses return the same library each time." msgstr "" -#: ../../library/ctypes.rst:1757 -msgid "" -"Load a shared library into the process and return it. This method always " -"returns a new instance of the library." +msgid "Load a shared library into the process and return it. This method always returns a new instance of the library." msgstr "" -#: ../../library/ctypes.rst:1761 msgid "These prefabricated library loaders are available:" msgstr "" -#: ../../library/ctypes.rst:1765 msgid "Creates :class:`CDLL` instances." msgstr "" -#: ../../library/ctypes.rst:1770 msgid "Creates :class:`WinDLL` instances." msgstr "" -#: ../../library/ctypes.rst:1777 msgid "Creates :class:`OleDLL` instances." msgstr "" -#: ../../library/ctypes.rst:1784 msgid "Creates :class:`PyDLL` instances." msgstr "" -#: ../../library/ctypes.rst:1787 -msgid "" -"For accessing the C Python api directly, a ready-to-use Python shared " -"library object is available:" +msgid "For accessing the C Python api directly, a ready-to-use Python shared library object is available:" msgstr "" -#: ../../library/ctypes.rst:1792 -msgid "" -"An instance of :class:`PyDLL` that exposes Python C API functions as " -"attributes. Note that all these functions are assumed to return " -"C :c:expr:`int`, which is of course not always the truth, so you have to " -"assign the correct :attr:`!restype` attribute to use these functions." +msgid "An instance of :class:`PyDLL` that exposes Python C API functions as attributes. Note that all these functions are assumed to return C :c:expr:`int`, which is of course not always the truth, so you have to assign the correct :attr:`!restype` attribute to use these functions." msgstr "" -#: ../../library/ctypes.rst:1797 ../../library/ctypes.rst:1799 -msgid "" -"Loading a library through any of these objects raises an :ref:`auditing " -"event ` ``ctypes.dlopen`` with string argument ``name``, the name " -"used to load the library." +msgid "Loading a library through any of these objects raises an :ref:`auditing event ` ``ctypes.dlopen`` with string argument ``name``, the name used to load the library." msgstr "" -#: ../../library/ctypes.rst:1803 ../../library/ctypes.rst:1805 -msgid "" -"Accessing a function on a loaded library raises an auditing event " -"``ctypes.dlsym`` with arguments ``library`` (the library object) and " -"``name`` (the symbol's name as a string or integer)." +msgid "Accessing a function on a loaded library raises an auditing event ``ctypes.dlsym`` with arguments ``library`` (the library object) and ``name`` (the symbol's name as a string or integer)." msgstr "" -#: ../../library/ctypes.rst:1809 ../../library/ctypes.rst:1811 -msgid "" -"In cases when only the library handle is available rather than the object, " -"accessing a function raises an auditing event ``ctypes.dlsym/handle`` with " -"arguments ``handle`` (the raw library handle) and ``name``." +msgid "In cases when only the library handle is available rather than the object, accessing a function raises an auditing event ``ctypes.dlsym/handle`` with arguments ``handle`` (the raw library handle) and ``name``." msgstr "" -#: ../../library/ctypes.rst:1818 msgid "Foreign functions" msgstr "" -#: ../../library/ctypes.rst:1820 -msgid "" -"As explained in the previous section, foreign functions can be accessed as " -"attributes of loaded shared libraries. The function objects created in this " -"way by default accept any number of arguments, accept any ctypes data " -"instances as arguments, and return the default result type specified by the " -"library loader." +msgid "As explained in the previous section, foreign functions can be accessed as attributes of loaded shared libraries. The function objects created in this way by default accept any number of arguments, accept any ctypes data instances as arguments, and return the default result type specified by the library loader." msgstr "" -#: ../../library/ctypes.rst:1825 -msgid "" -"They are instances of a private local class :class:`!_FuncPtr` (not exposed " -"in :mod:`!ctypes`) which inherits from the private :class:`_CFuncPtr` class:" +msgid "They are instances of a private local class :class:`!_FuncPtr` (not exposed in :mod:`!ctypes`) which inherits from the private :class:`_CFuncPtr` class:" msgstr "" -#: ../../library/ctypes.rst:1828 msgid "" ">>> import ctypes\n" ">>> lib = ctypes.CDLL(None)\n" @@ -2837,263 +1825,126 @@ msgid "" "False" msgstr "" -#: ../../library/ctypes.rst:1839 msgid "Base class for C callable foreign functions." msgstr "" -#: ../../library/ctypes.rst:1841 -msgid "" -"Instances of foreign functions are also C compatible data types; they " -"represent C function pointers." +msgid "Instances of foreign functions are also C compatible data types; they represent C function pointers." msgstr "" -#: ../../library/ctypes.rst:1844 -msgid "" -"This behavior can be customized by assigning to special attributes of the " -"foreign function object." +msgid "This behavior can be customized by assigning to special attributes of the foreign function object." msgstr "" -#: ../../library/ctypes.rst:1849 -msgid "" -"Assign a ctypes type to specify the result type of the foreign function. Use " -"``None`` for :c:expr:`void`, a function not returning anything." +msgid "Assign a ctypes type to specify the result type of the foreign function. Use ``None`` for :c:expr:`void`, a function not returning anything." msgstr "" -#: ../../library/ctypes.rst:1852 -msgid "" -"It is possible to assign a callable Python object that is not a ctypes type, " -"in this case the function is assumed to return a C :c:expr:`int`, and the " -"callable will be called with this integer, allowing further processing or " -"error checking. Using this is deprecated, for more flexible post processing " -"or error checking use a ctypes data type as :attr:`!restype` and assign a " -"callable to the :attr:`errcheck` attribute." +msgid "It is possible to assign a callable Python object that is not a ctypes type, in this case the function is assumed to return a C :c:expr:`int`, and the callable will be called with this integer, allowing further processing or error checking. Using this is deprecated, for more flexible post processing or error checking use a ctypes data type as :attr:`!restype` and assign a callable to the :attr:`errcheck` attribute." msgstr "" -#: ../../library/ctypes.rst:1861 -msgid "" -"Assign a tuple of ctypes types to specify the argument types that the " -"function accepts. Functions using the ``stdcall`` calling convention can " -"only be called with the same number of arguments as the length of this " -"tuple; functions using the C calling convention accept additional, " -"unspecified arguments as well." +msgid "Assign a tuple of ctypes types to specify the argument types that the function accepts. Functions using the ``stdcall`` calling convention can only be called with the same number of arguments as the length of this tuple; functions using the C calling convention accept additional, unspecified arguments as well." msgstr "" -#: ../../library/ctypes.rst:1867 -msgid "" -"When a foreign function is called, each actual argument is passed to " -"the :meth:`~_CData.from_param` class method of the items in " -"the :attr:`argtypes` tuple, this method allows adapting the actual argument " -"to an object that the foreign function accepts. For example, " -"a :class:`c_char_p` item in the :attr:`argtypes` tuple will convert a string " -"passed as argument into a bytes object using ctypes conversion rules." +msgid "When a foreign function is called, each actual argument is passed to the :meth:`~_CData.from_param` class method of the items in the :attr:`argtypes` tuple, this method allows adapting the actual argument to an object that the foreign function accepts. For example, a :class:`c_char_p` item in the :attr:`argtypes` tuple will convert a string passed as argument into a bytes object using ctypes conversion rules." msgstr "" -#: ../../library/ctypes.rst:1874 -msgid "" -"New: It is now possible to put items in argtypes which are not ctypes types, " -"but each item must have a :meth:`~_CData.from_param` method which returns a " -"value usable as argument (integer, string, ctypes instance). This allows " -"defining adapters that can adapt custom objects as function parameters." +msgid "New: It is now possible to put items in argtypes which are not ctypes types, but each item must have a :meth:`~_CData.from_param` method which returns a value usable as argument (integer, string, ctypes instance). This allows defining adapters that can adapt custom objects as function parameters." msgstr "" -#: ../../library/ctypes.rst:1881 -msgid "" -"Assign a Python function or another callable to this attribute. The callable " -"will be called with three or more arguments:" +msgid "Assign a Python function or another callable to this attribute. The callable will be called with three or more arguments:" msgstr "" -#: ../../library/ctypes.rst:1888 -msgid "" -"*result* is what the foreign function returns, as specified by the :attr:`!" -"restype` attribute." +msgid "*result* is what the foreign function returns, as specified by the :attr:`!restype` attribute." msgstr "" -#: ../../library/ctypes.rst:1891 -msgid "" -"*func* is the foreign function object itself, this allows reusing the same " -"callable object to check or post process the results of several functions." +msgid "*func* is the foreign function object itself, this allows reusing the same callable object to check or post process the results of several functions." msgstr "" -#: ../../library/ctypes.rst:1895 -msgid "" -"*arguments* is a tuple containing the parameters originally passed to the " -"function call, this allows specializing the behavior on the arguments used." +msgid "*arguments* is a tuple containing the parameters originally passed to the function call, this allows specializing the behavior on the arguments used." msgstr "" -#: ../../library/ctypes.rst:1899 -msgid "" -"The object that this function returns will be returned from the foreign " -"function call, but it can also check the result value and raise an exception " -"if the foreign function call failed." +msgid "The object that this function returns will be returned from the foreign function call, but it can also check the result value and raise an exception if the foreign function call failed." msgstr "" -#: ../../library/ctypes.rst:1904 ../../library/ctypes.rst:1906 -msgid "" -"On Windows, when a foreign function call raises a system exception (for " -"example, due to an access violation), it will be captured and replaced with " -"a suitable Python exception. Further, an auditing event " -"``ctypes.set_exception`` with argument ``code`` will be raised, allowing an " -"audit hook to replace the exception with its own." +msgid "On Windows, when a foreign function call raises a system exception (for example, due to an access violation), it will be captured and replaced with a suitable Python exception. Further, an auditing event ``ctypes.set_exception`` with argument ``code`` will be raised, allowing an audit hook to replace the exception with its own." msgstr "" -#: ../../library/ctypes.rst:1912 ../../library/ctypes.rst:1914 -msgid "" -"Some ways to invoke foreign function calls as well as some of the functions " -"in this module may raise an auditing event ``ctypes.call_function`` with " -"arguments ``function pointer`` and ``arguments``." +msgid "Some ways to invoke foreign function calls as well as some of the functions in this module may raise an auditing event ``ctypes.call_function`` with arguments ``function pointer`` and ``arguments``." msgstr "" -#: ../../library/ctypes.rst:1921 msgid "Function prototypes" msgstr "" -#: ../../library/ctypes.rst:1923 -msgid "" -"Foreign functions can also be created by instantiating function prototypes. " -"Function prototypes are similar to function prototypes in C; they describe a " -"function (return type, argument types, calling convention) without defining " -"an implementation. The factory functions must be called with the desired " -"result type and the argument types of the function, and can be used as " -"decorator factories, and as such, be applied to functions through the " -"``@wrapper`` syntax. See :ref:`ctypes-callback-functions` for examples." +msgid "Foreign functions can also be created by instantiating function prototypes. Function prototypes are similar to function prototypes in C; they describe a function (return type, argument types, calling convention) without defining an implementation. The factory functions must be called with the desired result type and the argument types of the function, and can be used as decorator factories, and as such, be applied to functions through the ``@wrapper`` syntax. See :ref:`ctypes-callback-functions` for examples." msgstr "" -#: ../../library/ctypes.rst:1934 -msgid "" -"The returned function prototype creates functions that use the standard C " -"calling convention. The function will release the GIL during the call. If " -"*use_errno* is set to true, the ctypes private copy of the " -"system :data:`errno` variable is exchanged with the real :data:`errno` value " -"before and after the call; *use_last_error* does the same for the Windows " -"error code." +msgid "The returned function prototype creates functions that use the standard C calling convention. The function will release the GIL during the call. If *use_errno* is set to true, the ctypes private copy of the system :data:`errno` variable is exchanged with the real :data:`errno` value before and after the call; *use_last_error* does the same for the Windows error code." msgstr "" -#: ../../library/ctypes.rst:1944 -msgid "" -"The returned function prototype creates functions that use the ``stdcall`` " -"calling convention. The function will release the GIL during the call. " -"*use_errno* and *use_last_error* have the same meaning as above." +msgid "The returned function prototype creates functions that use the ``stdcall`` calling convention. The function will release the GIL during the call. *use_errno* and *use_last_error* have the same meaning as above." msgstr "" -#: ../../library/ctypes.rst:1954 -msgid "" -"The returned function prototype creates functions that use the Python " -"calling convention. The function will *not* release the GIL during the call." +msgid "The returned function prototype creates functions that use the Python calling convention. The function will *not* release the GIL during the call." msgstr "" -#: ../../library/ctypes.rst:1957 -msgid "" -"Function prototypes created by these factory functions can be instantiated " -"in different ways, depending on the type and number of the parameters in the " -"call:" +msgid "Function prototypes created by these factory functions can be instantiated in different ways, depending on the type and number of the parameters in the call:" msgstr "" -#: ../../library/ctypes.rst:1964 -msgid "" -"Returns a foreign function at the specified address which must be an integer." +msgid "Returns a foreign function at the specified address which must be an integer." msgstr "" -#: ../../library/ctypes.rst:1971 -msgid "" -"Create a C callable function (a callback function) from a Python *callable*." +msgid "Create a C callable function (a callback function) from a Python *callable*." msgstr "" -#: ../../library/ctypes.rst:1978 -msgid "" -"Returns a foreign function exported by a shared library. *func_spec* must be " -"a 2-tuple ``(name_or_ordinal, library)``. The first item is the name of the " -"exported function as string, or the ordinal of the exported function as " -"small integer. The second item is the shared library instance." +msgid "Returns a foreign function exported by a shared library. *func_spec* must be a 2-tuple ``(name_or_ordinal, library)``. The first item is the name of the exported function as string, or the ordinal of the exported function as small integer. The second item is the shared library instance." msgstr "" -#: ../../library/ctypes.rst:1988 -msgid "" -"Returns a foreign function that will call a COM method. *vtbl_index* is the " -"index into the virtual function table, a small non-negative integer. *name* " -"is name of the COM method. *iid* is an optional pointer to the interface " -"identifier which is used in extended error reporting." +msgid "Returns a foreign function that will call a COM method. *vtbl_index* is the index into the virtual function table, a small non-negative integer. *name* is name of the COM method. *iid* is an optional pointer to the interface identifier which is used in extended error reporting." msgstr "" -#: ../../library/ctypes.rst:1993 -msgid "" -"If *iid* is not specified, an :exc:`OSError` is raised if the COM method " -"call fails. If *iid* is specified, a :exc:`~ctypes.COMError` is raised " -"instead." +msgid "If *iid* is not specified, an :exc:`OSError` is raised if the COM method call fails. If *iid* is specified, a :exc:`~ctypes.COMError` is raised instead." msgstr "" -#: ../../library/ctypes.rst:1997 -msgid "" -"COM methods use a special calling convention: They require a pointer to the " -"COM interface as first argument, in addition to those parameters that are " -"specified in the :attr:`!argtypes` tuple." +msgid "COM methods use a special calling convention: They require a pointer to the COM interface as first argument, in addition to those parameters that are specified in the :attr:`!argtypes` tuple." msgstr "" -#: ../../library/ctypes.rst:2004 -msgid "" -"The optional *paramflags* parameter creates foreign function wrappers with " -"much more functionality than the features described above." +msgid "The optional *paramflags* parameter creates foreign function wrappers with much more functionality than the features described above." msgstr "" -#: ../../library/ctypes.rst:2007 -msgid "" -"*paramflags* must be a tuple of the same length " -"as :attr:`~_CFuncPtr.argtypes`." +msgid "*paramflags* must be a tuple of the same length as :attr:`~_CFuncPtr.argtypes`." msgstr "" -#: ../../library/ctypes.rst:2009 -msgid "" -"Each item in this tuple contains further information about a parameter, it " -"must be a tuple containing one, two, or three items." +msgid "Each item in this tuple contains further information about a parameter, it must be a tuple containing one, two, or three items." msgstr "" -#: ../../library/ctypes.rst:2012 -msgid "" -"The first item is an integer containing a combination of direction flags for " -"the parameter:" +msgid "The first item is an integer containing a combination of direction flags for the parameter:" msgstr "" -#: ../../library/ctypes.rst:2015 msgid "1" msgstr "" -#: ../../library/ctypes.rst:2016 msgid "Specifies an input parameter to the function." msgstr "" -#: ../../library/ctypes.rst:2018 msgid "2" msgstr "" -#: ../../library/ctypes.rst:2019 msgid "Output parameter. The foreign function fills in a value." msgstr "" -#: ../../library/ctypes.rst:2021 msgid "4" msgstr "" -#: ../../library/ctypes.rst:2022 msgid "Input parameter which defaults to the integer zero." msgstr "" -#: ../../library/ctypes.rst:2024 -msgid "" -"The optional second item is the parameter name as string. If this is " -"specified, the foreign function can be called with named parameters." +msgid "The optional second item is the parameter name as string. If this is specified, the foreign function can be called with named parameters." msgstr "" -#: ../../library/ctypes.rst:2027 msgid "The optional third item is the default value for this parameter." msgstr "" -#: ../../library/ctypes.rst:2030 -msgid "" -"The following example demonstrates how to wrap the Windows ``MessageBoxW`` " -"function so that it supports default parameters and named arguments. The C " -"declaration from the windows header file is this::" +msgid "The following example demonstrates how to wrap the Windows ``MessageBoxW`` function so that it supports default parameters and named arguments. The C declaration from the windows header file is this::" msgstr "" -#: ../../library/ctypes.rst:2034 msgid "" "WINUSERAPI int WINAPI\n" "MessageBoxW(\n" @@ -3103,40 +1954,29 @@ msgid "" " UINT uType);" msgstr "" -#: ../../library/ctypes.rst:2041 ../../library/ctypes.rst:2064 msgid "Here is the wrapping with :mod:`!ctypes`::" msgstr "" -#: ../../library/ctypes.rst:2043 msgid "" ">>> from ctypes import c_int, WINFUNCTYPE, windll\n" ">>> from ctypes.wintypes import HWND, LPCWSTR, UINT\n" ">>> prototype = WINFUNCTYPE(c_int, HWND, LPCWSTR, LPCWSTR, UINT)\n" -">>> paramflags = (1, \"hwnd\", 0), (1, \"text\", \"Hi\"), (1, \"caption\", " -"\"Hello from ctypes\"), (1, \"flags\", 0)\n" +">>> paramflags = (1, \"hwnd\", 0), (1, \"text\", \"Hi\"), (1, \"caption\", \"Hello from ctypes\"), (1, \"flags\", 0)\n" ">>> MessageBox = prototype((\"MessageBoxW\", windll.user32), paramflags)" msgstr "" -#: ../../library/ctypes.rst:2049 msgid "The ``MessageBox`` foreign function can now be called in these ways::" msgstr "" -#: ../../library/ctypes.rst:2051 msgid "" ">>> MessageBox()\n" ">>> MessageBox(text=\"Spam, spam, spam\")\n" ">>> MessageBox(flags=2, text=\"foo bar\")" msgstr "" -#: ../../library/ctypes.rst:2055 -msgid "" -"A second example demonstrates output parameters. The win32 " -"``GetWindowRect`` function retrieves the dimensions of a specified window by " -"copying them into ``RECT`` structure that the caller has to supply. Here is " -"the C declaration::" +msgid "A second example demonstrates output parameters. The win32 ``GetWindowRect`` function retrieves the dimensions of a specified window by copying them into ``RECT`` structure that the caller has to supply. Here is the C declaration::" msgstr "" -#: ../../library/ctypes.rst:2059 msgid "" "WINUSERAPI BOOL WINAPI\n" "GetWindowRect(\n" @@ -3144,35 +1984,21 @@ msgid "" " LPRECT lpRect);" msgstr "" -#: ../../library/ctypes.rst:2066 msgid "" ">>> from ctypes import POINTER, WINFUNCTYPE, windll, WinError\n" ">>> from ctypes.wintypes import BOOL, HWND, RECT\n" ">>> prototype = WINFUNCTYPE(BOOL, HWND, POINTER(RECT))\n" ">>> paramflags = (1, \"hwnd\"), (2, \"lprect\")\n" -">>> GetWindowRect = prototype((\"GetWindowRect\", windll.user32), " -"paramflags)\n" +">>> GetWindowRect = prototype((\"GetWindowRect\", windll.user32), paramflags)\n" ">>>" msgstr "" -#: ../../library/ctypes.rst:2073 -msgid "" -"Functions with output parameters will automatically return the output " -"parameter value if there is a single one, or a tuple containing the output " -"parameter values when there are more than one, so the GetWindowRect function " -"now returns a RECT instance, when called." +msgid "Functions with output parameters will automatically return the output parameter value if there is a single one, or a tuple containing the output parameter values when there are more than one, so the GetWindowRect function now returns a RECT instance, when called." msgstr "" -#: ../../library/ctypes.rst:2078 -msgid "" -"Output parameters can be combined with the :attr:`~_CFuncPtr.errcheck` " -"protocol to do further output processing and error checking. The win32 " -"``GetWindowRect`` api function returns a ``BOOL`` to signal success or " -"failure, so this function could do the error checking, and raises an " -"exception when the api call failed::" +msgid "Output parameters can be combined with the :attr:`~_CFuncPtr.errcheck` protocol to do further output processing and error checking. The win32 ``GetWindowRect`` api function returns a ``BOOL`` to signal success or failure, so this function could do the error checking, and raises an exception when the api call failed::" msgstr "" -#: ../../library/ctypes.rst:2083 msgid "" ">>> def errcheck(result, func, args):\n" "... if not result:\n" @@ -3183,17 +2009,9 @@ msgid "" ">>>" msgstr "" -#: ../../library/ctypes.rst:2091 -msgid "" -"If the :attr:`~_CFuncPtr.errcheck` function returns the argument tuple it " -"receives unchanged, :mod:`!ctypes` continues the normal processing it does " -"on the output parameters. If you want to return a tuple of window " -"coordinates instead of a ``RECT`` instance, you can retrieve the fields in " -"the function and return them instead, the normal processing will no longer " -"take place::" +msgid "If the :attr:`~_CFuncPtr.errcheck` function returns the argument tuple it receives unchanged, :mod:`!ctypes` continues the normal processing it does on the output parameters. If you want to return a tuple of window coordinates instead of a ``RECT`` instance, you can retrieve the fields in the function and return them instead, the normal processing will no longer take place::" msgstr "" -#: ../../library/ctypes.rst:2097 msgid "" ">>> def errcheck(result, func, args):\n" "... if not result:\n" @@ -3205,118 +2023,63 @@ msgid "" ">>>" msgstr "" -#: ../../library/ctypes.rst:2110 msgid "Utility functions" msgstr "" -#: ../../library/ctypes.rst:2114 -msgid "" -"Returns the address of the memory buffer as integer. *obj* must be an " -"instance of a ctypes type." +msgid "Returns the address of the memory buffer as integer. *obj* must be an instance of a ctypes type." msgstr "" -#: ../../library/ctypes.rst:2117 -msgid "" -"Raises an :ref:`auditing event ` ``ctypes.addressof`` with " -"argument ``obj``." +msgid "Raises an :ref:`auditing event ` ``ctypes.addressof`` with argument ``obj``." msgstr "" -#: ../../library/ctypes.rst:2122 -msgid "" -"Returns the alignment requirements of a ctypes type. *obj_or_type* must be a " -"ctypes type or instance." +msgid "Returns the alignment requirements of a ctypes type. *obj_or_type* must be a ctypes type or instance." msgstr "" -#: ../../library/ctypes.rst:2128 -msgid "" -"Returns a light-weight pointer to *obj*, which must be an instance of a " -"ctypes type. *offset* defaults to zero, and must be an integer that will be " -"added to the internal pointer value." +msgid "Returns a light-weight pointer to *obj*, which must be an instance of a ctypes type. *offset* defaults to zero, and must be an integer that will be added to the internal pointer value." msgstr "" -#: ../../library/ctypes.rst:2132 msgid "``byref(obj, offset)`` corresponds to this C code::" msgstr "" -#: ../../library/ctypes.rst:2134 msgid "(((char *)&obj) + offset)" msgstr "" -#: ../../library/ctypes.rst:2136 -msgid "" -"The returned object can only be used as a foreign function call parameter. " -"It behaves similar to ``pointer(obj)``, but the construction is a lot faster." +msgid "The returned object can only be used as a foreign function call parameter. It behaves similar to ``pointer(obj)``, but the construction is a lot faster." msgstr "" -#: ../../library/ctypes.rst:2142 -msgid "" -"Copies a COM pointer from *src* to *dst* and returns the Windows " -"specific :c:type:`!HRESULT` value." +msgid "Copies a COM pointer from *src* to *dst* and returns the Windows specific :c:type:`!HRESULT` value." msgstr "" -#: ../../library/ctypes.rst:2145 -msgid "" -"If *src* is not ``NULL``, its ``AddRef`` method is called, incrementing the " -"reference count." +msgid "If *src* is not ``NULL``, its ``AddRef`` method is called, incrementing the reference count." msgstr "" -#: ../../library/ctypes.rst:2148 -msgid "" -"In contrast, the reference count of *dst* will not be decremented before " -"assigning the new value. Unless *dst* is ``NULL``, the caller is responsible " -"for decrementing the reference count by calling its ``Release`` method when " -"necessary." +msgid "In contrast, the reference count of *dst* will not be decremented before assigning the new value. Unless *dst* is ``NULL``, the caller is responsible for decrementing the reference count by calling its ``Release`` method when necessary." msgstr "" -#: ../../library/ctypes.rst:2160 -msgid "" -"This function is similar to the cast operator in C. It returns a new " -"instance of *type* which points to the same memory block as *obj*. *type* " -"must be a pointer type, and *obj* must be an object that can be interpreted " -"as a pointer." +msgid "This function is similar to the cast operator in C. It returns a new instance of *type* which points to the same memory block as *obj*. *type* must be a pointer type, and *obj* must be an object that can be interpreted as a pointer." msgstr "" -#: ../../library/ctypes.rst:2169 -msgid "" -"This function creates a mutable character buffer. The returned object is a " -"ctypes array of :class:`c_char`." +msgid "This function creates a mutable character buffer. The returned object is a ctypes array of :class:`c_char`." msgstr "" -#: ../../library/ctypes.rst:2172 -msgid "" -"If *size* is given (and not ``None``), it must be an :class:`int`. It " -"specifies the size of the returned array." +msgid "If *size* is given (and not ``None``), it must be an :class:`int`. It specifies the size of the returned array." msgstr "" -#: ../../library/ctypes.rst:2175 -msgid "" -"If the *init* argument is given, it must be :class:`bytes`. It is used to " -"initialize the array items. Bytes not initialized this way are set to zero " -"(NUL)." +msgid "If the *init* argument is given, it must be :class:`bytes`. It is used to initialize the array items. Bytes not initialized this way are set to zero (NUL)." msgstr "" -#: ../../library/ctypes.rst:2179 -msgid "" -"If *size* is not given (or if it is ``None``), the buffer is made one " -"element larger than *init*, effectively adding a NUL terminator." +msgid "If *size* is not given (or if it is ``None``), the buffer is made one element larger than *init*, effectively adding a NUL terminator." msgstr "" -#: ../../library/ctypes.rst:2182 -msgid "" -"If both arguments are given, *size* must not be less than ``len(init)``." +msgid "If both arguments are given, *size* must not be less than ``len(init)``." msgstr "" -#: ../../library/ctypes.rst:2186 -msgid "" -"If *size* is equal to ``len(init)``, a NUL terminator is not added. Do not " -"treat such a buffer as a C string." +msgid "If *size* is equal to ``len(init)``, a NUL terminator is not added. Do not treat such a buffer as a C string." msgstr "" -#: ../../library/ctypes.rst:2189 msgid "For example::" msgstr "" -#: ../../library/ctypes.rst:2191 msgid "" ">>> bytes(create_string_buffer(2))\n" "b'\\x00\\x00'\n" @@ -3332,780 +2095,363 @@ msgid "" "ValueError: byte string too long" msgstr "" -#: ../../library/ctypes.rst:2204 -msgid "" -"Raises an :ref:`auditing event ` ``ctypes.create_string_buffer`` " -"with arguments ``init``, ``size``." +msgid "Raises an :ref:`auditing event ` ``ctypes.create_string_buffer`` with arguments ``init``, ``size``." msgstr "" -#: ../../library/ctypes.rst:2210 -msgid "" -"This function creates a mutable unicode character buffer. The returned " -"object is a ctypes array of :class:`c_wchar`." +msgid "This function creates a mutable unicode character buffer. The returned object is a ctypes array of :class:`c_wchar`." msgstr "" -#: ../../library/ctypes.rst:2213 -msgid "" -"The function takes the same arguments as :func:`~create_string_buffer` " -"except *init* must be a string and *size* counts :class:`c_wchar`." +msgid "The function takes the same arguments as :func:`~create_string_buffer` except *init* must be a string and *size* counts :class:`c_wchar`." msgstr "" -#: ../../library/ctypes.rst:2216 -msgid "" -"Raises an :ref:`auditing event ` ``ctypes.create_unicode_buffer`` " -"with arguments ``init``, ``size``." +msgid "Raises an :ref:`auditing event ` ``ctypes.create_unicode_buffer`` with arguments ``init``, ``size``." msgstr "" -#: ../../library/ctypes.rst:2221 -msgid "" -"This function is a hook which allows implementing in-process COM servers " -"with ctypes. It is called from the DllCanUnloadNow function that the " -"_ctypes extension dll exports." +msgid "This function is a hook which allows implementing in-process COM servers with ctypes. It is called from the DllCanUnloadNow function that the _ctypes extension dll exports." msgstr "" -#: ../../library/ctypes.rst:2230 -msgid "" -"This function is a hook which allows implementing in-process COM servers " -"with ctypes. It is called from the DllGetClassObject function that the " -"``_ctypes`` extension dll exports." +msgid "This function is a hook which allows implementing in-process COM servers with ctypes. It is called from the DllGetClassObject function that the ``_ctypes`` extension dll exports." msgstr "" -#: ../../library/ctypes.rst:2240 -msgid "" -"Try to find a library and return a pathname. *name* is the library name " -"without any prefix like ``lib``, suffix like ``.so``, ``.dylib`` or version " -"number (this is the form used for the posix linker option :option:`!-l`). " -"If no library can be found, returns ``None``." +msgid "Try to find a library and return a pathname. *name* is the library name without any prefix like ``lib``, suffix like ``.so``, ``.dylib`` or version number (this is the form used for the posix linker option :option:`!-l`). If no library can be found, returns ``None``." msgstr "" -#: ../../library/ctypes.rst:2247 msgid "See :ref:`ctypes-finding-shared-libraries` for complete documentation." msgstr "" -#: ../../library/ctypes.rst:2253 -msgid "" -"Returns the filename of the VC runtime library used by Python, and by the " -"extension modules. If the name of the library cannot be determined, " -"``None`` is returned." +msgid "Returns the filename of the VC runtime library used by Python, and by the extension modules. If the name of the library cannot be determined, ``None`` is returned." msgstr "" -#: ../../library/ctypes.rst:2257 -msgid "" -"If you need to free memory, for example, allocated by an extension module " -"with a call to the ``free(void *)``, it is important that you use the " -"function in the same library that allocated the memory." +msgid "If you need to free memory, for example, allocated by an extension module with a call to the ``free(void *)``, it is important that you use the function in the same library that allocated the memory." msgstr "" -#: ../../library/ctypes.rst:2267 -msgid "" -"Try to provide a list of paths of the shared libraries loaded into the " -"current process. These paths are not normalized or processed in any way. " -"The function can raise :exc:`OSError` if the underlying platform APIs fail. " -"The exact functionality is system dependent." +msgid "Try to provide a list of paths of the shared libraries loaded into the current process. These paths are not normalized or processed in any way. The function can raise :exc:`OSError` if the underlying platform APIs fail. The exact functionality is system dependent." msgstr "" -#: ../../library/ctypes.rst:2272 -msgid "" -"On most platforms, the first element of the list represents the current " -"executable file. It may be an empty string." +msgid "On most platforms, the first element of the list represents the current executable file. It may be an empty string." msgstr "" -#: ../../library/ctypes.rst:2280 -msgid "" -"Returns a textual description of the error code *code*. If no error code is " -"specified, the last error code is used by calling the Windows API " -"function :func:`GetLastError`." +msgid "Returns a textual description of the error code *code*. If no error code is specified, the last error code is used by calling the Windows API function :func:`GetLastError`." msgstr "" -#: ../../library/ctypes.rst:2289 -msgid "" -"Returns the last error code set by Windows in the calling thread. This " -"function calls the Windows ``GetLastError()`` function directly, it does not " -"return the ctypes-private copy of the error code." +msgid "Returns the last error code set by Windows in the calling thread. This function calls the Windows ``GetLastError()`` function directly, it does not return the ctypes-private copy of the error code." msgstr "" -#: ../../library/ctypes.rst:2298 -msgid "" -"Returns the current value of the ctypes-private copy of the " -"system :data:`errno` variable in the calling thread." +msgid "Returns the current value of the ctypes-private copy of the system :data:`errno` variable in the calling thread." msgstr "" -#: ../../library/ctypes.rst:2301 -msgid "" -"Raises an :ref:`auditing event ` ``ctypes.get_errno`` with no " -"arguments." +msgid "Raises an :ref:`auditing event ` ``ctypes.get_errno`` with no arguments." msgstr "" -#: ../../library/ctypes.rst:2305 -msgid "" -"Returns the current value of the ctypes-private copy of the system :data:`!" -"LastError` variable in the calling thread." +msgid "Returns the current value of the ctypes-private copy of the system :data:`!LastError` variable in the calling thread." msgstr "" -#: ../../library/ctypes.rst:2310 -msgid "" -"Raises an :ref:`auditing event ` ``ctypes.get_last_error`` with no " -"arguments." +msgid "Raises an :ref:`auditing event ` ``ctypes.get_last_error`` with no arguments." msgstr "" -#: ../../library/ctypes.rst:2315 -msgid "" -"Same as the standard C memmove library function: copies *count* bytes from " -"*src* to *dst*. *dst* and *src* must be integers or ctypes instances that " -"can be converted to pointers." +msgid "Same as the standard C memmove library function: copies *count* bytes from *src* to *dst*. *dst* and *src* must be integers or ctypes instances that can be converted to pointers." msgstr "" -#: ../../library/ctypes.rst:2322 -msgid "" -"Same as the standard C memset library function: fills the memory block at " -"address *dst* with *count* bytes of value *c*. *dst* must be an integer " -"specifying an address, or a ctypes instance." +msgid "Same as the standard C memset library function: fills the memory block at address *dst* with *count* bytes of value *c*. *dst* must be an integer specifying an address, or a ctypes instance." msgstr "" -#: ../../library/ctypes.rst:2329 -msgid "" -"Create or return a ctypes pointer type. Pointer types are cached and reused " -"internally, so calling this function repeatedly is cheap. *type* must be a " -"ctypes type." +msgid "Create or return a ctypes pointer type. Pointer types are cached and reused internally, so calling this function repeatedly is cheap. *type* must be a ctypes type." msgstr "" -#: ../../library/ctypes.rst:2335 -msgid "" -"The resulting pointer type is cached in the ``__pointer_type__`` attribute " -"of *type*. It is possible to set this attribute before the first call to " -"``POINTER`` in order to set a custom pointer type. However, doing this is " -"discouraged: manually creating a suitable pointer type is difficult without " -"relying on implementation details that may change in future Python versions." +msgid "The resulting pointer type is cached in the ``__pointer_type__`` attribute of *type*. It is possible to set this attribute before the first call to ``POINTER`` in order to set a custom pointer type. However, doing this is discouraged: manually creating a suitable pointer type is difficult without relying on implementation details that may change in future Python versions." msgstr "" -#: ../../library/ctypes.rst:2346 -msgid "" -"Create a new pointer instance, pointing to *obj*. The returned object is of " -"the type ``POINTER(type(obj))``." +msgid "Create a new pointer instance, pointing to *obj*. The returned object is of the type ``POINTER(type(obj))``." msgstr "" -#: ../../library/ctypes.rst:2349 -msgid "" -"Note: If you just want to pass a pointer to an object to a foreign function " -"call, you should use ``byref(obj)`` which is much faster." +msgid "Note: If you just want to pass a pointer to an object to a foreign function call, you should use ``byref(obj)`` which is much faster." msgstr "" -#: ../../library/ctypes.rst:2355 -msgid "" -"This function resizes the internal memory buffer of *obj*, which must be an " -"instance of a ctypes type. It is not possible to make the buffer smaller " -"than the native size of the objects type, as given by ``sizeof(type(obj))``, " -"but it is possible to enlarge the buffer." +msgid "This function resizes the internal memory buffer of *obj*, which must be an instance of a ctypes type. It is not possible to make the buffer smaller than the native size of the objects type, as given by ``sizeof(type(obj))``, but it is possible to enlarge the buffer." msgstr "" -#: ../../library/ctypes.rst:2363 -msgid "" -"Set the current value of the ctypes-private copy of the system :data:`errno` " -"variable in the calling thread to *value* and return the previous value." +msgid "Set the current value of the ctypes-private copy of the system :data:`errno` variable in the calling thread to *value* and return the previous value." msgstr "" -#: ../../library/ctypes.rst:2366 -msgid "" -"Raises an :ref:`auditing event ` ``ctypes.set_errno`` with " -"argument ``errno``." +msgid "Raises an :ref:`auditing event ` ``ctypes.set_errno`` with argument ``errno``." msgstr "" -#: ../../library/ctypes.rst:2371 -msgid "" -"Sets the current value of the ctypes-private copy of the system :data:`!" -"LastError` variable in the calling thread to *value* and return the previous " -"value." +msgid "Sets the current value of the ctypes-private copy of the system :data:`!LastError` variable in the calling thread to *value* and return the previous value." msgstr "" -#: ../../library/ctypes.rst:2377 -msgid "" -"Raises an :ref:`auditing event ` ``ctypes.set_last_error`` with " -"argument ``error``." +msgid "Raises an :ref:`auditing event ` ``ctypes.set_last_error`` with argument ``error``." msgstr "" -#: ../../library/ctypes.rst:2382 -msgid "" -"Returns the size in bytes of a ctypes type or instance memory buffer. Does " -"the same as the C ``sizeof`` operator." +msgid "Returns the size in bytes of a ctypes type or instance memory buffer. Does the same as the C ``sizeof`` operator." msgstr "" -#: ../../library/ctypes.rst:2388 -msgid "" -"Return the byte string at *void \\*ptr*. If *size* is specified, it is used " -"as size, otherwise the string is assumed to be zero-terminated." +msgid "Return the byte string at *void \\*ptr*. If *size* is specified, it is used as size, otherwise the string is assumed to be zero-terminated." msgstr "" -#: ../../library/ctypes.rst:2392 -msgid "" -"Raises an :ref:`auditing event ` ``ctypes.string_at`` with " -"arguments ``ptr``, ``size``." +msgid "Raises an :ref:`auditing event ` ``ctypes.string_at`` with arguments ``ptr``, ``size``." msgstr "" -#: ../../library/ctypes.rst:2397 -msgid "" -"Creates an instance of :exc:`OSError`. If *code* is not " -"specified, :func:`GetLastError` is called to determine the error code. If " -"*descr* is not specified, :func:`FormatError` is called to get a textual " -"description of the error." +msgid "Creates an instance of :exc:`OSError`. If *code* is not specified, :func:`GetLastError` is called to determine the error code. If *descr* is not specified, :func:`FormatError` is called to get a textual description of the error." msgstr "" -#: ../../library/ctypes.rst:2404 -msgid "" -"An instance of :exc:`WindowsError` used to be created, which is now an alias " -"of :exc:`OSError`." +msgid "An instance of :exc:`WindowsError` used to be created, which is now an alias of :exc:`OSError`." msgstr "" -#: ../../library/ctypes.rst:2411 -msgid "" -"Return the wide-character string at *void \\*ptr*. If *size* is specified, " -"it is used as the number of characters of the string, otherwise the string " -"is assumed to be zero-terminated." +msgid "Return the wide-character string at *void \\*ptr*. If *size* is specified, it is used as the number of characters of the string, otherwise the string is assumed to be zero-terminated." msgstr "" -#: ../../library/ctypes.rst:2416 -msgid "" -"Raises an :ref:`auditing event ` ``ctypes.wstring_at`` with " -"arguments ``ptr``, ``size``." +msgid "Raises an :ref:`auditing event ` ``ctypes.wstring_at`` with arguments ``ptr``, ``size``." msgstr "" -#: ../../library/ctypes.rst:2421 -msgid "" -"Return a :class:`memoryview` object of length *size* that references memory " -"starting at *void \\*ptr*." +msgid "Return a :class:`memoryview` object of length *size* that references memory starting at *void \\*ptr*." msgstr "" -#: ../../library/ctypes.rst:2424 -msgid "" -"If *readonly* is true, the returned :class:`!memoryview` object can not be " -"used to modify the underlying memory. (Changes made by other means will " -"still be reflected in the returned object.)" +msgid "If *readonly* is true, the returned :class:`!memoryview` object can not be used to modify the underlying memory. (Changes made by other means will still be reflected in the returned object.)" msgstr "" -#: ../../library/ctypes.rst:2429 -msgid "" -"This function is similar to :func:`string_at` with the key difference of not " -"making a copy of the specified memory. It is a semantically equivalent (but " -"more efficient) alternative to ``memoryview((c_byte * " -"size).from_address(ptr))``. (While :meth:`~_CData.from_address` only takes " -"integers, *ptr* can also be given as a :class:`ctypes.POINTER` or " -"a :func:`~ctypes.byref` object.)" +msgid "This function is similar to :func:`string_at` with the key difference of not making a copy of the specified memory. It is a semantically equivalent (but more efficient) alternative to ``memoryview((c_byte * size).from_address(ptr))``. (While :meth:`~_CData.from_address` only takes integers, *ptr* can also be given as a :class:`ctypes.POINTER` or a :func:`~ctypes.byref` object.)" msgstr "" -#: ../../library/ctypes.rst:2436 -msgid "" -"Raises an :ref:`auditing event ` ``ctypes.memoryview_at`` with " -"arguments ``address``, ``size``, ``readonly``." +msgid "Raises an :ref:`auditing event ` ``ctypes.memoryview_at`` with arguments ``address``, ``size``, ``readonly``." msgstr "" -#: ../../library/ctypes.rst:2444 msgid "Data types" msgstr "" -#: ../../library/ctypes.rst:2449 -msgid "" -"This non-public class is the common base class of all ctypes data types. " -"Among other things, all ctypes type instances contain a memory block that " -"hold C compatible data; the address of the memory block is returned by " -"the :func:`addressof` helper function. Another instance variable is exposed " -"as :attr:`_objects`; this contains other Python objects that need to be kept " -"alive in case the memory block contains pointers." +msgid "This non-public class is the common base class of all ctypes data types. Among other things, all ctypes type instances contain a memory block that hold C compatible data; the address of the memory block is returned by the :func:`addressof` helper function. Another instance variable is exposed as :attr:`_objects`; this contains other Python objects that need to be kept alive in case the memory block contains pointers." msgstr "" -#: ../../library/ctypes.rst:2456 -msgid "" -"Common methods of ctypes data types, these are all class methods (to be " -"exact, they are methods of the :term:`metaclass`):" +msgid "Common methods of ctypes data types, these are all class methods (to be exact, they are methods of the :term:`metaclass`):" msgstr "" -#: ../../library/ctypes.rst:2461 -msgid "" -"This method returns a ctypes instance that shares the buffer of the *source* " -"object. The *source* object must support the writeable buffer interface. " -"The optional *offset* parameter specifies an offset into the source buffer " -"in bytes; the default is zero. If the source buffer is not large enough " -"a :exc:`ValueError` is raised." +msgid "This method returns a ctypes instance that shares the buffer of the *source* object. The *source* object must support the writeable buffer interface. The optional *offset* parameter specifies an offset into the source buffer in bytes; the default is zero. If the source buffer is not large enough a :exc:`ValueError` is raised." msgstr "" -#: ../../library/ctypes.rst:2467 ../../library/ctypes.rst:2477 -msgid "" -"Raises an :ref:`auditing event ` ``ctypes.cdata/buffer`` with " -"arguments ``pointer``, ``size``, ``offset``." +msgid "Raises an :ref:`auditing event ` ``ctypes.cdata/buffer`` with arguments ``pointer``, ``size``, ``offset``." msgstr "" -#: ../../library/ctypes.rst:2471 -msgid "" -"This method creates a ctypes instance, copying the buffer from the *source* " -"object buffer which must be readable. The optional *offset* parameter " -"specifies an offset into the source buffer in bytes; the default is zero. " -"If the source buffer is not large enough a :exc:`ValueError` is raised." +msgid "This method creates a ctypes instance, copying the buffer from the *source* object buffer which must be readable. The optional *offset* parameter specifies an offset into the source buffer in bytes; the default is zero. If the source buffer is not large enough a :exc:`ValueError` is raised." msgstr "" -#: ../../library/ctypes.rst:2481 -msgid "" -"This method returns a ctypes type instance using the memory specified by " -"*address* which must be an integer." +msgid "This method returns a ctypes type instance using the memory specified by *address* which must be an integer." msgstr "" -#: ../../library/ctypes.rst:2484 ../../library/ctypes.rst:2486 -msgid "" -"This method, and others that indirectly call this method, raises " -"an :ref:`auditing event ` ``ctypes.cdata`` with argument " -"``address``." +msgid "This method, and others that indirectly call this method, raises an :ref:`auditing event ` ``ctypes.cdata`` with argument ``address``." msgstr "" -#: ../../library/ctypes.rst:2492 -msgid "" -"This method adapts *obj* to a ctypes type. It is called with the actual " -"object used in a foreign function call when the type is present in the " -"foreign function's :attr:`~_CFuncPtr.argtypes` tuple; it must return an " -"object that can be used as a function call parameter." +msgid "This method adapts *obj* to a ctypes type. It is called with the actual object used in a foreign function call when the type is present in the foreign function's :attr:`~_CFuncPtr.argtypes` tuple; it must return an object that can be used as a function call parameter." msgstr "" -#: ../../library/ctypes.rst:2497 -msgid "" -"All ctypes data types have a default implementation of this classmethod that " -"normally returns *obj* if that is an instance of the type. Some types " -"accept other objects as well." +msgid "All ctypes data types have a default implementation of this classmethod that normally returns *obj* if that is an instance of the type. Some types accept other objects as well." msgstr "" -#: ../../library/ctypes.rst:2503 -msgid "" -"This method returns a ctypes type instance exported by a shared library. " -"*name* is the name of the symbol that exports the data, *library* is the " -"loaded shared library." +msgid "This method returns a ctypes type instance exported by a shared library. *name* is the name of the symbol that exports the data, *library* is the loaded shared library." msgstr "" -#: ../../library/ctypes.rst:2507 msgid "Common class variables of ctypes data types:" msgstr "" -#: ../../library/ctypes.rst:2511 -msgid "" -"The pointer type that was created by calling :func:`POINTER` for " -"corresponding ctypes data type. If a pointer type was not yet created, the " -"attribute is missing." +msgid "The pointer type that was created by calling :func:`POINTER` for corresponding ctypes data type. If a pointer type was not yet created, the attribute is missing." msgstr "" -#: ../../library/ctypes.rst:2517 msgid "Common instance variables of ctypes data types:" msgstr "" -#: ../../library/ctypes.rst:2521 -msgid "" -"Sometimes ctypes data instances do not own the memory block they contain, " -"instead they share part of the memory block of a base object. " -"The :attr:`_b_base_` read-only member is the root ctypes object that owns " -"the memory block." +msgid "Sometimes ctypes data instances do not own the memory block they contain, instead they share part of the memory block of a base object. The :attr:`_b_base_` read-only member is the root ctypes object that owns the memory block." msgstr "" -#: ../../library/ctypes.rst:2528 -msgid "" -"This read-only variable is true when the ctypes data instance has allocated " -"the memory block itself, false otherwise." +msgid "This read-only variable is true when the ctypes data instance has allocated the memory block itself, false otherwise." msgstr "" -#: ../../library/ctypes.rst:2533 -msgid "" -"This member is either ``None`` or a dictionary containing Python objects " -"that need to be kept alive so that the memory block contents is kept valid. " -"This object is only exposed for debugging; never modify the contents of this " -"dictionary." +msgid "This member is either ``None`` or a dictionary containing Python objects that need to be kept alive so that the memory block contents is kept valid. This object is only exposed for debugging; never modify the contents of this dictionary." msgstr "" -#: ../../library/ctypes.rst:2546 -msgid "" -"This non-public class is the base class of all fundamental ctypes data " -"types. It is mentioned here because it contains the common attributes of the " -"fundamental ctypes data types. :class:`_SimpleCData` is a subclass " -"of :class:`_CData`, so it inherits their methods and attributes. ctypes data " -"types that are not and do not contain pointers can now be pickled." +msgid "This non-public class is the base class of all fundamental ctypes data types. It is mentioned here because it contains the common attributes of the fundamental ctypes data types. :class:`_SimpleCData` is a subclass of :class:`_CData`, so it inherits their methods and attributes. ctypes data types that are not and do not contain pointers can now be pickled." msgstr "" -#: ../../library/ctypes.rst:2552 msgid "Instances have a single attribute:" msgstr "" -#: ../../library/ctypes.rst:2556 -msgid "" -"This attribute contains the actual value of the instance. For integer and " -"pointer types, it is an integer, for character types, it is a single " -"character bytes object or string, for character pointer types it is a Python " -"bytes object or string." +msgid "This attribute contains the actual value of the instance. For integer and pointer types, it is an integer, for character types, it is a single character bytes object or string, for character pointer types it is a Python bytes object or string." msgstr "" -#: ../../library/ctypes.rst:2561 -msgid "" -"When the ``value`` attribute is retrieved from a ctypes instance, usually a " -"new object is returned each time. :mod:`!ctypes` does *not* implement " -"original object return, always a new object is constructed. The same is " -"true for all other ctypes object instances." +msgid "When the ``value`` attribute is retrieved from a ctypes instance, usually a new object is returned each time. :mod:`!ctypes` does *not* implement original object return, always a new object is constructed. The same is true for all other ctypes object instances." msgstr "" -#: ../../library/ctypes.rst:2566 msgid "Each subclass has a class attribute:" msgstr "" -#: ../../library/ctypes.rst:2570 -msgid "" -"Class attribute that contains an internal type code, as a single-character " -"string. See :ref:`ctypes-fundamental-data-types` for a summary." +msgid "Class attribute that contains an internal type code, as a single-character string. See :ref:`ctypes-fundamental-data-types` for a summary." msgstr "" -#: ../../library/ctypes.rst:2574 -msgid "" -"Types marked \\* in the summary may be (or always are) aliases of a " -"different :class:`_SimpleCData` subclass, and will not necessarily use the " -"listed type code. For example, if the " -"platform's :c:expr:`long`, :c:expr:`long long` and :c:expr:`time_t` C types " -"are the same, then :class:`c_long`, :class:`c_longlong` " -"and :class:`c_time_t` all refer to a single class, :class:`c_long`, " -"whose :attr:`_type_` code is ``'l'``. The ``'L'`` code will be unused." +msgid "Types marked \\* in the summary may be (or always are) aliases of a different :class:`_SimpleCData` subclass, and will not necessarily use the listed type code. For example, if the platform's :c:expr:`long`, :c:expr:`long long` and :c:expr:`time_t` C types are the same, then :class:`c_long`, :class:`c_longlong` and :class:`c_time_t` all refer to a single class, :class:`c_long`, whose :attr:`_type_` code is ``'l'``. The ``'L'`` code will be unused." msgstr "" -#: ../../library/ctypes.rst:2585 -msgid "" -"The :mod:`array` and :ref:`struct ` modules, as well as " -"third-party modules like `numpy `__, use similar -- but " -"slightly different -- type codes." +msgid "The :mod:`array` and :ref:`struct ` modules, as well as third-party modules like `numpy `__, use similar -- but slightly different -- type codes." msgstr "" -#: ../../library/ctypes.rst:2590 -msgid "" -"Fundamental data types, when returned as foreign function call results, or, " -"for example, by retrieving structure field members or array items, are " -"transparently converted to native Python types. In other words, if a " -"foreign function has a :attr:`~_CFuncPtr.restype` of :class:`c_char_p`, you " -"will always receive a Python bytes object, *not* a :class:`c_char_p` " -"instance." +msgid "Fundamental data types, when returned as foreign function call results, or, for example, by retrieving structure field members or array items, are transparently converted to native Python types. In other words, if a foreign function has a :attr:`~_CFuncPtr.restype` of :class:`c_char_p`, you will always receive a Python bytes object, *not* a :class:`c_char_p` instance." msgstr "" -#: ../../library/ctypes.rst:2598 -msgid "" -"Subclasses of fundamental data types do *not* inherit this behavior. So, if " -"a foreign functions :attr:`!restype` is a subclass of :class:`c_void_p`, you " -"will receive an instance of this subclass from the function call. Of course, " -"you can get the value of the pointer by accessing the ``value`` attribute." +msgid "Subclasses of fundamental data types do *not* inherit this behavior. So, if a foreign functions :attr:`!restype` is a subclass of :class:`c_void_p`, you will receive an instance of this subclass from the function call. Of course, you can get the value of the pointer by accessing the ``value`` attribute." msgstr "" -#: ../../library/ctypes.rst:2603 msgid "These are the fundamental ctypes data types:" msgstr "" -#: ../../library/ctypes.rst:2607 -msgid "" -"Represents the C :c:expr:`signed char` datatype, and interprets the value as " -"small integer. The constructor accepts an optional integer initializer; no " -"overflow checking is done." +msgid "Represents the C :c:expr:`signed char` datatype, and interprets the value as small integer. The constructor accepts an optional integer initializer; no overflow checking is done." msgstr "" -#: ../../library/ctypes.rst:2614 -msgid "" -"Represents the C :c:expr:`char` datatype, and interprets the value as a " -"single character. The constructor accepts an optional string initializer, " -"the length of the string must be exactly one character." +msgid "Represents the C :c:expr:`char` datatype, and interprets the value as a single character. The constructor accepts an optional string initializer, the length of the string must be exactly one character." msgstr "" -#: ../../library/ctypes.rst:2621 -msgid "" -"Represents the C :c:expr:`char *` datatype when it points to a zero-" -"terminated string. For a general character pointer that may also point to " -"binary data, ``POINTER(c_char)`` must be used. The constructor accepts an " -"integer address, or a bytes object." +msgid "Represents the C :c:expr:`char *` datatype when it points to a zero-terminated string. For a general character pointer that may also point to binary data, ``POINTER(c_char)`` must be used. The constructor accepts an integer address, or a bytes object." msgstr "" -#: ../../library/ctypes.rst:2629 -msgid "" -"Represents the C :c:expr:`double` datatype. The constructor accepts an " -"optional float initializer." +msgid "Represents the C :c:expr:`double` datatype. The constructor accepts an optional float initializer." msgstr "" -#: ../../library/ctypes.rst:2635 -msgid "" -"Represents the C :c:expr:`long double` datatype. The constructor accepts an " -"optional float initializer. On platforms where ``sizeof(long double) == " -"sizeof(double)`` it is an alias to :class:`c_double`." +msgid "Represents the C :c:expr:`long double` datatype. The constructor accepts an optional float initializer. On platforms where ``sizeof(long double) == sizeof(double)`` it is an alias to :class:`c_double`." msgstr "" -#: ../../library/ctypes.rst:2641 -msgid "" -"Represents the C :c:expr:`float` datatype. The constructor accepts an " -"optional float initializer." +msgid "Represents the C :c:expr:`float` datatype. The constructor accepts an optional float initializer." msgstr "" -#: ../../library/ctypes.rst:2647 -msgid "" -"Represents the C :c:expr:`double complex` datatype, if available. The " -"constructor accepts an optional :class:`complex` initializer." +msgid "Represents the C :c:expr:`double complex` datatype, if available. The constructor accepts an optional :class:`complex` initializer." msgstr "" -#: ../../library/ctypes.rst:2655 -msgid "" -"Represents the C :c:expr:`float complex` datatype, if available. The " -"constructor accepts an optional :class:`complex` initializer." +msgid "Represents the C :c:expr:`float complex` datatype, if available. The constructor accepts an optional :class:`complex` initializer." msgstr "" -#: ../../library/ctypes.rst:2663 -msgid "" -"Represents the C :c:expr:`long double complex` datatype, if available. The " -"constructor accepts an optional :class:`complex` initializer." +msgid "Represents the C :c:expr:`long double complex` datatype, if available. The constructor accepts an optional :class:`complex` initializer." msgstr "" -#: ../../library/ctypes.rst:2671 -msgid "" -"Represents the C :c:expr:`signed int` datatype. The constructor accepts an " -"optional integer initializer; no overflow checking is done. On platforms " -"where ``sizeof(int) == sizeof(long)`` it is an alias to :class:`c_long`." +msgid "Represents the C :c:expr:`signed int` datatype. The constructor accepts an optional integer initializer; no overflow checking is done. On platforms where ``sizeof(int) == sizeof(long)`` it is an alias to :class:`c_long`." msgstr "" -#: ../../library/ctypes.rst:2678 -msgid "" -"Represents the C 8-bit :c:expr:`signed int` datatype. It is an alias " -"for :class:`c_byte`." +msgid "Represents the C 8-bit :c:expr:`signed int` datatype. It is an alias for :class:`c_byte`." msgstr "" -#: ../../library/ctypes.rst:2684 -msgid "" -"Represents the C 16-bit :c:expr:`signed int` datatype. Usually an alias " -"for :class:`c_short`." +msgid "Represents the C 16-bit :c:expr:`signed int` datatype. Usually an alias for :class:`c_short`." msgstr "" -#: ../../library/ctypes.rst:2690 -msgid "" -"Represents the C 32-bit :c:expr:`signed int` datatype. Usually an alias " -"for :class:`c_int`." +msgid "Represents the C 32-bit :c:expr:`signed int` datatype. Usually an alias for :class:`c_int`." msgstr "" -#: ../../library/ctypes.rst:2696 -msgid "" -"Represents the C 64-bit :c:expr:`signed int` datatype. Usually an alias " -"for :class:`c_longlong`." +msgid "Represents the C 64-bit :c:expr:`signed int` datatype. Usually an alias for :class:`c_longlong`." msgstr "" -#: ../../library/ctypes.rst:2702 -msgid "" -"Represents the C :c:expr:`signed long` datatype. The constructor accepts an " -"optional integer initializer; no overflow checking is done." +msgid "Represents the C :c:expr:`signed long` datatype. The constructor accepts an optional integer initializer; no overflow checking is done." msgstr "" -#: ../../library/ctypes.rst:2708 -msgid "" -"Represents the C :c:expr:`signed long long` datatype. The constructor " -"accepts an optional integer initializer; no overflow checking is done. On " -"platforms where ``sizeof(long long) == sizeof(long)`` it is an alias " -"to :class:`c_long`." +msgid "Represents the C :c:expr:`signed long long` datatype. The constructor accepts an optional integer initializer; no overflow checking is done. On platforms where ``sizeof(long long) == sizeof(long)`` it is an alias to :class:`c_long`." msgstr "" -#: ../../library/ctypes.rst:2716 -msgid "" -"Represents the C :c:expr:`signed short` datatype. The constructor accepts " -"an optional integer initializer; no overflow checking is done." +msgid "Represents the C :c:expr:`signed short` datatype. The constructor accepts an optional integer initializer; no overflow checking is done." msgstr "" -#: ../../library/ctypes.rst:2722 -msgid "" -"Represents the C :c:type:`size_t` datatype. Usually an alias for another " -"unsigned integer type." +msgid "Represents the C :c:type:`size_t` datatype. Usually an alias for another unsigned integer type." msgstr "" -#: ../../library/ctypes.rst:2728 -msgid "" -"Represents the :c:type:`Py_ssize_t` datatype. This is a signed version " -"of :c:type:`size_t`; that is, the POSIX :c:type:`ssize_t` type. Usually an " -"alias for another integer type." +msgid "Represents the :c:type:`Py_ssize_t` datatype. This is a signed version of :c:type:`size_t`; that is, the POSIX :c:type:`ssize_t` type. Usually an alias for another integer type." msgstr "" -#: ../../library/ctypes.rst:2738 -msgid "" -"Represents the C :c:type:`time_t` datatype. Usually an alias for another " -"integer type." +msgid "Represents the C :c:type:`time_t` datatype. Usually an alias for another integer type." msgstr "" -#: ../../library/ctypes.rst:2746 -msgid "" -"Represents the C :c:expr:`unsigned char` datatype, it interprets the value " -"as small integer. The constructor accepts an optional integer initializer; " -"no overflow checking is done." +msgid "Represents the C :c:expr:`unsigned char` datatype, it interprets the value as small integer. The constructor accepts an optional integer initializer; no overflow checking is done." msgstr "" -#: ../../library/ctypes.rst:2753 -msgid "" -"Represents the C :c:expr:`unsigned int` datatype. The constructor accepts " -"an optional integer initializer; no overflow checking is done. On platforms " -"where ``sizeof(int) == sizeof(long)`` it is an alias for :class:`c_ulong`." +msgid "Represents the C :c:expr:`unsigned int` datatype. The constructor accepts an optional integer initializer; no overflow checking is done. On platforms where ``sizeof(int) == sizeof(long)`` it is an alias for :class:`c_ulong`." msgstr "" -#: ../../library/ctypes.rst:2760 -msgid "" -"Represents the C 8-bit :c:expr:`unsigned int` datatype. It is an alias " -"for :class:`c_ubyte`." +msgid "Represents the C 8-bit :c:expr:`unsigned int` datatype. It is an alias for :class:`c_ubyte`." msgstr "" -#: ../../library/ctypes.rst:2766 -msgid "" -"Represents the C 16-bit :c:expr:`unsigned int` datatype. Usually an alias " -"for :class:`c_ushort`." +msgid "Represents the C 16-bit :c:expr:`unsigned int` datatype. Usually an alias for :class:`c_ushort`." msgstr "" -#: ../../library/ctypes.rst:2772 -msgid "" -"Represents the C 32-bit :c:expr:`unsigned int` datatype. Usually an alias " -"for :class:`c_uint`." +msgid "Represents the C 32-bit :c:expr:`unsigned int` datatype. Usually an alias for :class:`c_uint`." msgstr "" -#: ../../library/ctypes.rst:2778 -msgid "" -"Represents the C 64-bit :c:expr:`unsigned int` datatype. Usually an alias " -"for :class:`c_ulonglong`." +msgid "Represents the C 64-bit :c:expr:`unsigned int` datatype. Usually an alias for :class:`c_ulonglong`." msgstr "" -#: ../../library/ctypes.rst:2784 -msgid "" -"Represents the C :c:expr:`unsigned long` datatype. The constructor accepts " -"an optional integer initializer; no overflow checking is done." +msgid "Represents the C :c:expr:`unsigned long` datatype. The constructor accepts an optional integer initializer; no overflow checking is done." msgstr "" -#: ../../library/ctypes.rst:2790 -msgid "" -"Represents the C :c:expr:`unsigned long long` datatype. The constructor " -"accepts an optional integer initializer; no overflow checking is done. On " -"platforms where ``sizeof(long long) == sizeof(long)`` it is an alias " -"to :class:`c_long`." +msgid "Represents the C :c:expr:`unsigned long long` datatype. The constructor accepts an optional integer initializer; no overflow checking is done. On platforms where ``sizeof(long long) == sizeof(long)`` it is an alias to :class:`c_long`." msgstr "" -#: ../../library/ctypes.rst:2798 -msgid "" -"Represents the C :c:expr:`unsigned short` datatype. The constructor accepts " -"an optional integer initializer; no overflow checking is done." +msgid "Represents the C :c:expr:`unsigned short` datatype. The constructor accepts an optional integer initializer; no overflow checking is done." msgstr "" -#: ../../library/ctypes.rst:2804 -msgid "" -"Represents the C :c:expr:`void *` type. The value is represented as " -"integer. The constructor accepts an optional integer initializer." +msgid "Represents the C :c:expr:`void *` type. The value is represented as integer. The constructor accepts an optional integer initializer." msgstr "" -#: ../../library/ctypes.rst:2810 -msgid "" -"Represents the C :c:type:`wchar_t` datatype, and interprets the value as a " -"single character unicode string. The constructor accepts an optional string " -"initializer, the length of the string must be exactly one character." +msgid "Represents the C :c:type:`wchar_t` datatype, and interprets the value as a single character unicode string. The constructor accepts an optional string initializer, the length of the string must be exactly one character." msgstr "" -#: ../../library/ctypes.rst:2817 -msgid "" -"Represents the C :c:expr:`wchar_t *` datatype, which must be a pointer to a " -"zero-terminated wide character string. The constructor accepts an integer " -"address, or a string." +msgid "Represents the C :c:expr:`wchar_t *` datatype, which must be a pointer to a zero-terminated wide character string. The constructor accepts an integer address, or a string." msgstr "" -#: ../../library/ctypes.rst:2824 -msgid "" -"Represent the C :c:expr:`bool` datatype (more accurately, :c:expr:`_Bool` " -"from C99). Its value can be ``True`` or ``False``, and the constructor " -"accepts any object that has a truth value." +msgid "Represent the C :c:expr:`bool` datatype (more accurately, :c:expr:`_Bool` from C99). Its value can be ``True`` or ``False``, and the constructor accepts any object that has a truth value." msgstr "" -#: ../../library/ctypes.rst:2831 -msgid "" -"Represents a :c:type:`!HRESULT` value, which contains success or error " -"information for a function or method call." +msgid "Represents a :c:type:`!HRESULT` value, which contains success or error information for a function or method call." msgstr "" -#: ../../library/ctypes.rst:2839 -msgid "" -"Represents the C :c:expr:`PyObject *` datatype. Calling this without an " -"argument creates a ``NULL`` :c:expr:`PyObject *` pointer." +msgid "Represents the C :c:expr:`PyObject *` datatype. Calling this without an argument creates a ``NULL`` :c:expr:`PyObject *` pointer." msgstr "" -#: ../../library/ctypes.rst:2842 msgid ":class:`!py_object` is now a :term:`generic type`." msgstr "" -#: ../../library/ctypes.rst:2847 -msgid "" -"The :mod:`!ctypes.wintypes` module provides quite some other Windows " -"specific data types, for example :c:type:`!HWND`, :c:type:`!" -"WPARAM`, :c:type:`!VARIANT_BOOL` or :c:type:`!DWORD`. Some useful structures " -"like :c:type:`!MSG` or :c:type:`!RECT` are also defined." +msgid "The :mod:`!ctypes.wintypes` module provides quite some other Windows specific data types, for example :c:type:`!HWND`, :c:type:`!WPARAM`, :c:type:`!VARIANT_BOOL` or :c:type:`!DWORD`. Some useful structures like :c:type:`!MSG` or :c:type:`!RECT` are also defined." msgstr "" -#: ../../library/ctypes.rst:2856 msgid "Structured data types" msgstr "" -#: ../../library/ctypes.rst:2861 msgid "Abstract base class for unions in native byte order." msgstr "" -#: ../../library/ctypes.rst:2863 -msgid "" -"Unions share common attributes and behavior with structures; " -"see :class:`Structure` documentation for details." +msgid "Unions share common attributes and behavior with structures; see :class:`Structure` documentation for details." msgstr "" -#: ../../library/ctypes.rst:2868 msgid "Abstract base class for unions in *big endian* byte order." msgstr "" -#: ../../library/ctypes.rst:2874 msgid "Abstract base class for unions in *little endian* byte order." msgstr "" -#: ../../library/ctypes.rst:2880 msgid "Abstract base class for structures in *big endian* byte order." msgstr "" -#: ../../library/ctypes.rst:2885 msgid "Abstract base class for structures in *little endian* byte order." msgstr "" -#: ../../library/ctypes.rst:2887 -msgid "" -"Structures and unions with non-native byte order cannot contain pointer type " -"fields, or any other data types containing pointer type fields." +msgid "Structures and unions with non-native byte order cannot contain pointer type fields, or any other data types containing pointer type fields." msgstr "" -#: ../../library/ctypes.rst:2893 msgid "Abstract base class for structures in *native* byte order." msgstr "" -#: ../../library/ctypes.rst:2895 -msgid "" -"Concrete structure and union types must be created by subclassing one of " -"these types, and at least define a :attr:`_fields_` class variable. :mod:`!" -"ctypes` will create :term:`descriptor`\\s which allow reading and writing " -"the fields by direct attribute accesses. These are the" +msgid "Concrete structure and union types must be created by subclassing one of these types, and at least define a :attr:`_fields_` class variable. :mod:`!ctypes` will create :term:`descriptor`\\s which allow reading and writing the fields by direct attribute accesses. These are the" msgstr "" -#: ../../library/ctypes.rst:2903 -msgid "" -"A sequence defining the structure fields. The items must be 2-tuples or 3-" -"tuples. The first item is the name of the field, the second item specifies " -"the type of the field; it can be any ctypes data type." +msgid "A sequence defining the structure fields. The items must be 2-tuples or 3-tuples. The first item is the name of the field, the second item specifies the type of the field; it can be any ctypes data type." msgstr "" -#: ../../library/ctypes.rst:2907 -msgid "" -"For integer type fields like :class:`c_int`, a third optional item can be " -"given. It must be a small positive integer defining the bit width of the " -"field." +msgid "For integer type fields like :class:`c_int`, a third optional item can be given. It must be a small positive integer defining the bit width of the field." msgstr "" -#: ../../library/ctypes.rst:2911 -msgid "" -"Field names must be unique within one structure or union. This is not " -"checked, only one field can be accessed when names are repeated." +msgid "Field names must be unique within one structure or union. This is not checked, only one field can be accessed when names are repeated." msgstr "" -#: ../../library/ctypes.rst:2914 -msgid "" -"It is possible to define the :attr:`_fields_` class variable *after* the " -"class statement that defines the Structure subclass, this allows creating " -"data types that directly or indirectly reference themselves::" +msgid "It is possible to define the :attr:`_fields_` class variable *after* the class statement that defines the Structure subclass, this allows creating data types that directly or indirectly reference themselves::" msgstr "" -#: ../../library/ctypes.rst:2918 msgid "" "class List(Structure):\n" " pass\n" @@ -4114,160 +2460,78 @@ msgid "" " ]" msgstr "" -#: ../../library/ctypes.rst:2924 -msgid "" -"The :attr:`!_fields_` class variable can only be set once. Later assignments " -"will raise an :exc:`AttributeError`." +msgid "The :attr:`!_fields_` class variable can only be set once. Later assignments will raise an :exc:`AttributeError`." msgstr "" -#: ../../library/ctypes.rst:2927 -msgid "" -"Additionally, the :attr:`!_fields_` class variable must be defined before " -"the structure or union type is first used: an instance or subclass is " -"created, :func:`sizeof` is called on it, and so on. Later assignments " -"to :attr:`!_fields_` will raise an :exc:`AttributeError`. If :attr:`!" -"_fields_` has not been set before such use, the structure or union will have " -"no own fields, as if :attr:`!_fields_` was empty." +msgid "Additionally, the :attr:`!_fields_` class variable must be defined before the structure or union type is first used: an instance or subclass is created, :func:`sizeof` is called on it, and so on. Later assignments to :attr:`!_fields_` will raise an :exc:`AttributeError`. If :attr:`!_fields_` has not been set before such use, the structure or union will have no own fields, as if :attr:`!_fields_` was empty." msgstr "" -#: ../../library/ctypes.rst:2935 -msgid "" -"Sub-subclasses of structure types inherit the fields of the base class plus " -"the :attr:`_fields_` defined in the sub-subclass, if any." +msgid "Sub-subclasses of structure types inherit the fields of the base class plus the :attr:`_fields_` defined in the sub-subclass, if any." msgstr "" -#: ../../library/ctypes.rst:2941 -msgid "" -"An optional small integer that allows overriding the alignment of structure " -"fields in the instance." +msgid "An optional small integer that allows overriding the alignment of structure fields in the instance." msgstr "" -#: ../../library/ctypes.rst:2944 -msgid "" -"This is only implemented for the MSVC-compatible memory layout " -"(see :attr:`_layout_`)." +msgid "This is only implemented for the MSVC-compatible memory layout (see :attr:`_layout_`)." msgstr "" -#: ../../library/ctypes.rst:2947 -msgid "" -"Setting :attr:`!_pack_` to 0 is the same as not setting it at all. " -"Otherwise, the value must be a positive power of two. The effect is " -"equivalent to ``#pragma pack(N)`` in C, except :mod:`!ctypes` may allow " -"larger *n* than what the compiler accepts." +msgid "Setting :attr:`!_pack_` to 0 is the same as not setting it at all. Otherwise, the value must be a positive power of two. The effect is equivalent to ``#pragma pack(N)`` in C, except :mod:`!ctypes` may allow larger *n* than what the compiler accepts." msgstr "" -#: ../../library/ctypes.rst:2952 -msgid "" -":attr:`!_pack_` must already be defined when :attr:`_fields_` is assigned, " -"otherwise it will have no effect." +msgid ":attr:`!_pack_` must already be defined when :attr:`_fields_` is assigned, otherwise it will have no effect." msgstr "" -#: ../../library/ctypes.rst:2957 -msgid "" -"For historical reasons, if :attr:`!_pack_` is non-zero, the MSVC-compatible " -"layout will be used by default. On non-Windows platforms, this default is " -"deprecated and is slated to become an error in Python 3.19. If it is " -"intended, set :attr:`~Structure._layout_` to ``'ms'`` explicitly." +msgid "For historical reasons, if :attr:`!_pack_` is non-zero, the MSVC-compatible layout will be used by default. On non-Windows platforms, this default is deprecated and is slated to become an error in Python 3.19. If it is intended, set :attr:`~Structure._layout_` to ``'ms'`` explicitly." msgstr "" -#: ../../library/ctypes.rst:2966 -msgid "" -"An optional small integer that allows increasing the alignment of the " -"structure when being packed or unpacked to/from memory." +msgid "An optional small integer that allows increasing the alignment of the structure when being packed or unpacked to/from memory." msgstr "" -#: ../../library/ctypes.rst:2969 -msgid "" -"The value must not be negative. The effect is equivalent to " -"``__attribute__((aligned(N)))`` on GCC or ``#pragma align(N)`` on MSVC, " -"except :mod:`!ctypes` may allow values that the compiler would reject." +msgid "The value must not be negative. The effect is equivalent to ``__attribute__((aligned(N)))`` on GCC or ``#pragma align(N)`` on MSVC, except :mod:`!ctypes` may allow values that the compiler would reject." msgstr "" -#: ../../library/ctypes.rst:2974 -msgid "" -":attr:`!_align_` can only *increase* a structure's alignment requirements. " -"Setting it to 0 or 1 has no effect." +msgid ":attr:`!_align_` can only *increase* a structure's alignment requirements. Setting it to 0 or 1 has no effect." msgstr "" -#: ../../library/ctypes.rst:2977 -msgid "" -"Using values that are not powers of two is discouraged and may lead to " -"surprising behavior." +msgid "Using values that are not powers of two is discouraged and may lead to surprising behavior." msgstr "" -#: ../../library/ctypes.rst:2980 -msgid "" -":attr:`!_align_` must already be defined when :attr:`_fields_` is assigned, " -"otherwise it will have no effect." +msgid ":attr:`!_align_` must already be defined when :attr:`_fields_` is assigned, otherwise it will have no effect." msgstr "" -#: ../../library/ctypes.rst:2987 -msgid "" -"An optional string naming the struct/union layout. It can currently be set " -"to:" +msgid "An optional string naming the struct/union layout. It can currently be set to:" msgstr "" -#: ../../library/ctypes.rst:2990 -msgid "" -"``\"ms\"``: the layout used by the Microsoft compiler (MSVC). On GCC and " -"Clang, this layout can be selected with ``__attribute__((ms_struct))``." +msgid "``\"ms\"``: the layout used by the Microsoft compiler (MSVC). On GCC and Clang, this layout can be selected with ``__attribute__((ms_struct))``." msgstr "" -#: ../../library/ctypes.rst:2993 -msgid "" -"``\"gcc-sysv\"``: the layout used by GCC with the System V or “SysV-like” " -"data model, as used on Linux and macOS. With this " -"layout, :attr:`~Structure._pack_` must be unset or zero." +msgid "``\"gcc-sysv\"``: the layout used by GCC with the System V or “SysV-like” data model, as used on Linux and macOS. With this layout, :attr:`~Structure._pack_` must be unset or zero." msgstr "" -#: ../../library/ctypes.rst:2997 -msgid "" -"If not set explicitly, ``ctypes`` will use a default that matches the " -"platform conventions. This default may change in future Python releases (for " -"example, when a new platform gains official support, or when a difference " -"between similar platforms is found). Currently the default will be:" +msgid "If not set explicitly, ``ctypes`` will use a default that matches the platform conventions. This default may change in future Python releases (for example, when a new platform gains official support, or when a difference between similar platforms is found). Currently the default will be:" msgstr "" -#: ../../library/ctypes.rst:3003 msgid "On Windows: ``\"ms\"``" msgstr "" -#: ../../library/ctypes.rst:3004 -msgid "" -"When :attr:`~Structure._pack_` is specified: ``\"ms\"``. (This is " -"deprecated; see :attr:`~Structure._pack_` documentation.)" +msgid "When :attr:`~Structure._pack_` is specified: ``\"ms\"``. (This is deprecated; see :attr:`~Structure._pack_` documentation.)" msgstr "" -#: ../../library/ctypes.rst:3006 msgid "Otherwise: ``\"gcc-sysv\"``" msgstr "" -#: ../../library/ctypes.rst:3008 -msgid "" -":attr:`!_layout_` must already be defined when :attr:`~Structure._fields_` " -"is assigned, otherwise it will have no effect." +msgid ":attr:`!_layout_` must already be defined when :attr:`~Structure._fields_` is assigned, otherwise it will have no effect." msgstr "" -#: ../../library/ctypes.rst:3015 -msgid "" -"An optional sequence that lists the names of unnamed (anonymous) " -"fields. :attr:`_anonymous_` must be already defined when :attr:`_fields_` is " -"assigned, otherwise it will have no effect." +msgid "An optional sequence that lists the names of unnamed (anonymous) fields. :attr:`_anonymous_` must be already defined when :attr:`_fields_` is assigned, otherwise it will have no effect." msgstr "" -#: ../../library/ctypes.rst:3019 -msgid "" -"The fields listed in this variable must be structure or union type " -"fields. :mod:`!ctypes` will create descriptors in the structure type that " -"allows accessing the nested fields directly, without the need to create the " -"structure or union field." +msgid "The fields listed in this variable must be structure or union type fields. :mod:`!ctypes` will create descriptors in the structure type that allows accessing the nested fields directly, without the need to create the structure or union field." msgstr "" -#: ../../library/ctypes.rst:3024 msgid "Here is an example type (Windows)::" msgstr "" -#: ../../library/ctypes.rst:3026 msgid "" "class _U(Union):\n" " _fields_ = [(\"lptdesc\", POINTER(TYPEDESC)),\n" @@ -4280,17 +2544,9 @@ msgid "" " (\"vt\", VARTYPE)]" msgstr "" -#: ../../library/ctypes.rst:3037 -msgid "" -"The ``TYPEDESC`` structure describes a COM data type, the ``vt`` field " -"specifies which one of the union fields is valid. Since the ``u`` field is " -"defined as anonymous field, it is now possible to access the members " -"directly off the TYPEDESC instance. ``td.lptdesc`` and ``td.u.lptdesc`` are " -"equivalent, but the former is faster since it does not need to create a " -"temporary union instance::" +msgid "The ``TYPEDESC`` structure describes a COM data type, the ``vt`` field specifies which one of the union fields is valid. Since the ``u`` field is defined as anonymous field, it is now possible to access the members directly off the TYPEDESC instance. ``td.lptdesc`` and ``td.u.lptdesc`` are equivalent, but the former is faster since it does not need to create a temporary union instance::" msgstr "" -#: ../../library/ctypes.rst:3044 msgid "" "td = TYPEDESC()\n" "td.vt = VT_PTR\n" @@ -4298,31 +2554,15 @@ msgid "" "td.u.lptdesc = POINTER(some_type)" msgstr "" -#: ../../library/ctypes.rst:3049 -msgid "" -"It is possible to define sub-subclasses of structures, they inherit the " -"fields of the base class. If the subclass definition has a " -"separate :attr:`_fields_` variable, the fields specified in this are " -"appended to the fields of the base class." +msgid "It is possible to define sub-subclasses of structures, they inherit the fields of the base class. If the subclass definition has a separate :attr:`_fields_` variable, the fields specified in this are appended to the fields of the base class." msgstr "" -#: ../../library/ctypes.rst:3054 -msgid "" -"Structure and union constructors accept both positional and keyword " -"arguments. Positional arguments are used to initialize member fields in the " -"same order as they are appear in :attr:`_fields_`. Keyword arguments in the " -"constructor are interpreted as attribute assignments, so they will " -"initialize :attr:`_fields_` with the same name, or create new attributes for " -"names not present in :attr:`_fields_`." +msgid "Structure and union constructors accept both positional and keyword arguments. Positional arguments are used to initialize member fields in the same order as they are appear in :attr:`_fields_`. Keyword arguments in the constructor are interpreted as attribute assignments, so they will initialize :attr:`_fields_` with the same name, or create new attributes for names not present in :attr:`_fields_`." msgstr "" -#: ../../library/ctypes.rst:3064 -msgid "" -"Descriptor for fields of a :class:`Structure` and :class:`Union`. For " -"example::" +msgid "Descriptor for fields of a :class:`Structure` and :class:`Union`. For example::" msgstr "" -#: ../../library/ctypes.rst:3067 msgid "" ">>> class Color(Structure):\n" "... _fields_ = (\n" @@ -4345,201 +2585,113 @@ msgid "" "1" msgstr "" -#: ../../library/ctypes.rst:3087 msgid "All attributes are read-only." msgstr "" -#: ../../library/ctypes.rst:3089 -msgid "" -":class:`!CField` objects are created via :attr:`~Structure._fields_`; do not " -"instantiate the class directly." +msgid ":class:`!CField` objects are created via :attr:`~Structure._fields_`; do not instantiate the class directly." msgstr "" -#: ../../library/ctypes.rst:3094 -msgid "" -"Previously, descriptors only had ``offset`` and ``size`` attributes and a " -"readable string representation; the :class:`!CField` class was not available " -"directly." +msgid "Previously, descriptors only had ``offset`` and ``size`` attributes and a readable string representation; the :class:`!CField` class was not available directly." msgstr "" -#: ../../library/ctypes.rst:3100 msgid "Name of the field, as a string." msgstr "" -#: ../../library/ctypes.rst:3104 msgid "Type of the field, as a :ref:`ctypes class `." msgstr "" -#: ../../library/ctypes.rst:3109 msgid "Offset of the field, in bytes." msgstr "" -#: ../../library/ctypes.rst:3111 -msgid "" -"For bitfields, this is the offset of the underlying byte-aligned *storage " -"unit*; see :attr:`~CField.bit_offset`." +msgid "For bitfields, this is the offset of the underlying byte-aligned *storage unit*; see :attr:`~CField.bit_offset`." msgstr "" -#: ../../library/ctypes.rst:3116 msgid "Size of the field, in bytes." msgstr "" -#: ../../library/ctypes.rst:3118 -msgid "" -"For bitfields, this is the size of the underlying *storage unit*. Typically, " -"it has the same size as the bitfield's type." +msgid "For bitfields, this is the size of the underlying *storage unit*. Typically, it has the same size as the bitfield's type." msgstr "" -#: ../../library/ctypes.rst:3123 msgid "For non-bitfields, equivalent to :attr:`~CField.byte_size`." msgstr "" -#: ../../library/ctypes.rst:3125 -msgid "" -"For bitfields, this contains a backwards-compatible bit-packed value that " -"combines :attr:`~CField.bit_size` and :attr:`~CField.bit_offset`. Prefer " -"using the explicit attributes instead." +msgid "For bitfields, this contains a backwards-compatible bit-packed value that combines :attr:`~CField.bit_size` and :attr:`~CField.bit_offset`. Prefer using the explicit attributes instead." msgstr "" -#: ../../library/ctypes.rst:3132 msgid "True if this is a bitfield." msgstr "" -#: ../../library/ctypes.rst:3137 -msgid "" -"The location of a bitfield within its *storage unit*, that is, " -"within :attr:`~CField.byte_size` bytes of memory starting " -"at :attr:`~CField.byte_offset`." +msgid "The location of a bitfield within its *storage unit*, that is, within :attr:`~CField.byte_size` bytes of memory starting at :attr:`~CField.byte_offset`." msgstr "" -#: ../../library/ctypes.rst:3141 -msgid "" -"To get the field's value, read the storage unit as an integer, :ref:`shift " -"left ` by :attr:`!bit_offset` and take the :attr:`!bit_size` least " -"significant bits." +msgid "To get the field's value, read the storage unit as an integer, :ref:`shift left ` by :attr:`!bit_offset` and take the :attr:`!bit_size` least significant bits." msgstr "" -#: ../../library/ctypes.rst:3145 -msgid "" -"For non-bitfields, :attr:`!bit_offset` is zero and :attr:`!bit_size` is " -"equal to ``byte_size * 8``." +msgid "For non-bitfields, :attr:`!bit_offset` is zero and :attr:`!bit_size` is equal to ``byte_size * 8``." msgstr "" -#: ../../library/ctypes.rst:3150 -msgid "" -"True if this field is anonymous, that is, it contains nested sub-fields that " -"should be merged into a containing structure or union." +msgid "True if this field is anonymous, that is, it contains nested sub-fields that should be merged into a containing structure or union." msgstr "" -#: ../../library/ctypes.rst:3157 msgid "Arrays and pointers" msgstr "" -#: ../../library/ctypes.rst:3161 msgid "Abstract base class for arrays." msgstr "" -#: ../../library/ctypes.rst:3163 -msgid "" -"The recommended way to create concrete array types is by multiplying " -"any :mod:`!ctypes` data type with a non-negative integer. Alternatively, " -"you can subclass this type and define :attr:`_length_` and :attr:`_type_` " -"class variables. Array elements can be read and written using standard " -"subscript and slice accesses; for slice reads, the resulting object is *not* " -"itself an :class:`Array`." +msgid "The recommended way to create concrete array types is by multiplying any :mod:`!ctypes` data type with a non-negative integer. Alternatively, you can subclass this type and define :attr:`_length_` and :attr:`_type_` class variables. Array elements can be read and written using standard subscript and slice accesses; for slice reads, the resulting object is *not* itself an :class:`Array`." msgstr "" -#: ../../library/ctypes.rst:3170 msgid "Arrays are :ref:`generic ` over the type of their elements." msgstr "" -#: ../../library/ctypes.rst:3175 -msgid "" -"A positive integer specifying the number of elements in the array. Out-of-" -"range subscripts result in an :exc:`IndexError`. Will be returned " -"by :func:`len`." +msgid "A positive integer specifying the number of elements in the array. Out-of-range subscripts result in an :exc:`IndexError`. Will be returned by :func:`len`." msgstr "" -#: ../../library/ctypes.rst:3182 msgid "Specifies the type of each element in the array." msgstr "" -#: ../../library/ctypes.rst:3185 -msgid "" -"Array subclass constructors accept positional arguments, used to initialize " -"the elements in order." +msgid "Array subclass constructors accept positional arguments, used to initialize the elements in order." msgstr "" -#: ../../library/ctypes.rst:3190 -msgid "" -"Create an array. Equivalent to ``type * length``, where *type* is a :mod:`!" -"ctypes` data type and *length* an integer." +msgid "Create an array. Equivalent to ``type * length``, where *type* is a :mod:`!ctypes` data type and *length* an integer." msgstr "" -#: ../../library/ctypes.rst:3194 msgid "In favor of multiplication." msgstr "" -#: ../../library/ctypes.rst:3200 msgid "Private, abstract base class for pointers." msgstr "" -#: ../../library/ctypes.rst:3202 -msgid "" -"Concrete pointer types are created by calling :func:`POINTER` with the type " -"that will be pointed to; this is done automatically by :func:`pointer`." +msgid "Concrete pointer types are created by calling :func:`POINTER` with the type that will be pointed to; this is done automatically by :func:`pointer`." msgstr "" -#: ../../library/ctypes.rst:3206 -msgid "" -"If a pointer points to an array, its elements can be read and written using " -"standard subscript and slice accesses. Pointer objects have no size, " -"so :func:`len` will raise :exc:`TypeError`. Negative subscripts will read " -"from the memory *before* the pointer (as in C), and out-of-range subscripts " -"will probably crash with an access violation (if you're lucky)." +msgid "If a pointer points to an array, its elements can be read and written using standard subscript and slice accesses. Pointer objects have no size, so :func:`len` will raise :exc:`TypeError`. Negative subscripts will read from the memory *before* the pointer (as in C), and out-of-range subscripts will probably crash with an access violation (if you're lucky)." msgstr "" -#: ../../library/ctypes.rst:3216 msgid "Specifies the type pointed to." msgstr "" -#: ../../library/ctypes.rst:3220 -msgid "" -"Returns the object to which to pointer points. Assigning to this attribute " -"changes the pointer to point to the assigned object." +msgid "Returns the object to which to pointer points. Assigning to this attribute changes the pointer to point to the assigned object." msgstr "" -#: ../../library/ctypes.rst:3227 msgid "Exceptions" msgstr "" -#: ../../library/ctypes.rst:3231 -msgid "" -"This exception is raised when a foreign function call cannot convert one of " -"the passed arguments." +msgid "This exception is raised when a foreign function call cannot convert one of the passed arguments." msgstr "" -#: ../../library/ctypes.rst:3237 msgid "This exception is raised when a COM method call failed." msgstr "" -#: ../../library/ctypes.rst:3241 msgid "The integer value representing the error code." msgstr "" -#: ../../library/ctypes.rst:3245 msgid "The error message." msgstr "" -#: ../../library/ctypes.rst:3249 msgid "The 5-tuple ``(descr, source, helpfile, helpcontext, progid)``." msgstr "" -#: ../../library/ctypes.rst:3251 -msgid "" -"*descr* is the textual description. *source* is the language-dependent " -"``ProgID`` for the class or application that raised the error. *helpfile* " -"is the path of the help file. *helpcontext* is the help context " -"identifier. *progid* is the ``ProgID`` of the interface that defined the " -"error." +msgid "*descr* is the textual description. *source* is the language-dependent ``ProgID`` for the class or application that raised the error. *helpfile* is the path of the help file. *helpcontext* is the help context identifier. *progid* is the ``ProgID`` of the interface that defined the error." msgstr "" diff --git a/library/curses.ascii.po b/library/curses.ascii.po index 002a206b..a74f5634 100644 --- a/library/curses.ascii.po +++ b/library/curses.ascii.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:03+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,325 +24,209 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/curses.ascii.rst:2 msgid ":mod:`!curses.ascii` --- Utilities for ASCII characters" msgstr "" -#: ../../library/curses.ascii.rst:10 msgid "**Source code:** :source:`Lib/curses/ascii.py`" msgstr "" -#: ../../library/curses.ascii.rst:14 -msgid "" -"The :mod:`!curses.ascii` module supplies name constants for ASCII characters " -"and functions to test membership in various ASCII character classes. The " -"constants supplied are names for control characters as follows:" +msgid "The :mod:`!curses.ascii` module supplies name constants for ASCII characters and functions to test membership in various ASCII character classes. The constants supplied are names for control characters as follows:" msgstr "" -#: ../../library/curses.ascii.rst:19 msgid "Name" msgstr "" -#: ../../library/curses.ascii.rst:19 msgid "Meaning" msgstr "" -#: ../../library/curses.ascii.rst:23 msgid "Start of heading, console interrupt" msgstr "" -#: ../../library/curses.ascii.rst:25 msgid "Start of text" msgstr "" -#: ../../library/curses.ascii.rst:27 msgid "End of text" msgstr "" -#: ../../library/curses.ascii.rst:29 msgid "End of transmission" msgstr "" -#: ../../library/curses.ascii.rst:31 msgid "Enquiry, goes with :const:`ACK` flow control" msgstr "" -#: ../../library/curses.ascii.rst:33 msgid "Acknowledgement" msgstr "" -#: ../../library/curses.ascii.rst:35 msgid "Bell" msgstr "" -#: ../../library/curses.ascii.rst:37 msgid "Backspace" msgstr "" -#: ../../library/curses.ascii.rst:39 msgid "Tab" msgstr "" -#: ../../library/curses.ascii.rst:41 msgid "Alias for :const:`TAB`: \"Horizontal tab\"" msgstr "" -#: ../../library/curses.ascii.rst:43 msgid "Line feed" msgstr "" -#: ../../library/curses.ascii.rst:45 msgid "Alias for :const:`LF`: \"New line\"" msgstr "" -#: ../../library/curses.ascii.rst:47 msgid "Vertical tab" msgstr "" -#: ../../library/curses.ascii.rst:49 msgid "Form feed" msgstr "" -#: ../../library/curses.ascii.rst:51 msgid "Carriage return" msgstr "" -#: ../../library/curses.ascii.rst:53 msgid "Shift-out, begin alternate character set" msgstr "" -#: ../../library/curses.ascii.rst:55 msgid "Shift-in, resume default character set" msgstr "" -#: ../../library/curses.ascii.rst:57 msgid "Data-link escape" msgstr "" -#: ../../library/curses.ascii.rst:59 msgid "XON, for flow control" msgstr "" -#: ../../library/curses.ascii.rst:61 msgid "Device control 2, block-mode flow control" msgstr "" -#: ../../library/curses.ascii.rst:63 msgid "XOFF, for flow control" msgstr "" -#: ../../library/curses.ascii.rst:65 msgid "Device control 4" msgstr "" -#: ../../library/curses.ascii.rst:67 msgid "Negative acknowledgement" msgstr "" -#: ../../library/curses.ascii.rst:69 msgid "Synchronous idle" msgstr "" -#: ../../library/curses.ascii.rst:71 msgid "End transmission block" msgstr "" -#: ../../library/curses.ascii.rst:73 msgid "Cancel" msgstr "" -#: ../../library/curses.ascii.rst:75 msgid "End of medium" msgstr "" -#: ../../library/curses.ascii.rst:77 msgid "Substitute" msgstr "" -#: ../../library/curses.ascii.rst:79 msgid "Escape" msgstr "" -#: ../../library/curses.ascii.rst:81 msgid "File separator" msgstr "" -#: ../../library/curses.ascii.rst:83 msgid "Group separator" msgstr "" -#: ../../library/curses.ascii.rst:85 msgid "Record separator, block-mode terminator" msgstr "" -#: ../../library/curses.ascii.rst:87 msgid "Unit separator" msgstr "" -#: ../../library/curses.ascii.rst:89 msgid "Space" msgstr "" -#: ../../library/curses.ascii.rst:91 msgid "Delete" msgstr "" -#: ../../library/curses.ascii.rst:94 -msgid "" -"Note that many of these have little practical significance in modern usage. " -"The mnemonics derive from teleprinter conventions that predate digital " -"computers." +msgid "Note that many of these have little practical significance in modern usage. The mnemonics derive from teleprinter conventions that predate digital computers." msgstr "" -#: ../../library/curses.ascii.rst:97 -msgid "" -"The module supplies the following functions, patterned on those in the " -"standard C library:" +msgid "The module supplies the following functions, patterned on those in the standard C library:" msgstr "" -#: ../../library/curses.ascii.rst:103 -msgid "" -"Checks for an ASCII alphanumeric character; it is equivalent to ``isalpha(c) " -"or isdigit(c)``." +msgid "Checks for an ASCII alphanumeric character; it is equivalent to ``isalpha(c) or isdigit(c)``." msgstr "" -#: ../../library/curses.ascii.rst:109 -msgid "" -"Checks for an ASCII alphabetic character; it is equivalent to ``isupper(c) " -"or islower(c)``." +msgid "Checks for an ASCII alphabetic character; it is equivalent to ``isupper(c) or islower(c)``." msgstr "" -#: ../../library/curses.ascii.rst:115 msgid "Checks for a character value that fits in the 7-bit ASCII set." msgstr "" -#: ../../library/curses.ascii.rst:120 msgid "Checks for an ASCII blank character; space or horizontal tab." msgstr "" -#: ../../library/curses.ascii.rst:125 -msgid "" -"Checks for an ASCII control character (in the range 0x00 to 0x1f or 0x7f)." +msgid "Checks for an ASCII control character (in the range 0x00 to 0x1f or 0x7f)." msgstr "" -#: ../../library/curses.ascii.rst:130 -msgid "" -"Checks for an ASCII decimal digit, ``'0'`` through ``'9'``. This is " -"equivalent to ``c in string.digits``." +msgid "Checks for an ASCII decimal digit, ``'0'`` through ``'9'``. This is equivalent to ``c in string.digits``." msgstr "" -#: ../../library/curses.ascii.rst:136 msgid "Checks for any ASCII printable character except space." msgstr "" -#: ../../library/curses.ascii.rst:141 msgid "Checks for an ASCII lower-case character." msgstr "" -#: ../../library/curses.ascii.rst:146 msgid "Checks for any ASCII printable character including space." msgstr "" -#: ../../library/curses.ascii.rst:151 -msgid "" -"Checks for any ASCII printable character which is not a space or an " -"alphanumeric character." +msgid "Checks for any ASCII printable character which is not a space or an alphanumeric character." msgstr "" -#: ../../library/curses.ascii.rst:157 -msgid "" -"Checks for ASCII white-space characters; space, line feed, carriage return, " -"form feed, horizontal tab, vertical tab." +msgid "Checks for ASCII white-space characters; space, line feed, carriage return, form feed, horizontal tab, vertical tab." msgstr "" -#: ../../library/curses.ascii.rst:163 msgid "Checks for an ASCII uppercase letter." msgstr "" -#: ../../library/curses.ascii.rst:168 -msgid "" -"Checks for an ASCII hexadecimal digit. This is equivalent to ``c in " -"string.hexdigits``." +msgid "Checks for an ASCII hexadecimal digit. This is equivalent to ``c in string.hexdigits``." msgstr "" -#: ../../library/curses.ascii.rst:174 -msgid "" -"Checks for an ASCII control character (ordinal values 0 to 31). " -"Unlike :func:`iscntrl`, this does not include the delete character (0x7f)." +msgid "Checks for an ASCII control character (ordinal values 0 to 31). Unlike :func:`iscntrl`, this does not include the delete character (0x7f)." msgstr "" -#: ../../library/curses.ascii.rst:180 msgid "Checks for a non-ASCII character (ordinal values 0x80 and above)." msgstr "" -#: ../../library/curses.ascii.rst:182 -msgid "" -"These functions accept either integers or single-character strings; when the " -"argument is a string, it is first converted using the built-in " -"function :func:`ord`." +msgid "These functions accept either integers or single-character strings; when the argument is a string, it is first converted using the built-in function :func:`ord`." msgstr "" -#: ../../library/curses.ascii.rst:185 -msgid "" -"Note that all these functions check ordinal bit values derived from the " -"character of the string you pass in; they do not actually know anything " -"about the host machine's character encoding." +msgid "Note that all these functions check ordinal bit values derived from the character of the string you pass in; they do not actually know anything about the host machine's character encoding." msgstr "" -#: ../../library/curses.ascii.rst:189 -msgid "" -"The following two functions take either a single-character string or integer " -"byte value; they return a value of the same type." +msgid "The following two functions take either a single-character string or integer byte value; they return a value of the same type." msgstr "" -#: ../../library/curses.ascii.rst:195 msgid "Return the ASCII value corresponding to the low 7 bits of *c*." msgstr "" -#: ../../library/curses.ascii.rst:200 -msgid "" -"Return the control character corresponding to the given character (the " -"character bit value is bitwise-anded with 0x1f)." +msgid "Return the control character corresponding to the given character (the character bit value is bitwise-anded with 0x1f)." msgstr "" -#: ../../library/curses.ascii.rst:206 -msgid "" -"Return the 8-bit character corresponding to the given ASCII character (the " -"character bit value is bitwise-ored with 0x80)." +msgid "Return the 8-bit character corresponding to the given ASCII character (the character bit value is bitwise-ored with 0x80)." msgstr "" -#: ../../library/curses.ascii.rst:209 -msgid "" -"The following function takes either a single-character string or integer " -"value; it returns a string." +msgid "The following function takes either a single-character string or integer value; it returns a string." msgstr "" -#: ../../library/curses.ascii.rst:219 -msgid "" -"Return a string representation of the ASCII character *c*. If *c* is " -"printable, this string is the character itself. If the character is a " -"control character (0x00--0x1f) the string consists of a caret (``'^'``) " -"followed by the corresponding uppercase letter. If the character is an ASCII " -"delete (0x7f) the string is ``'^?'``. If the character has its meta bit " -"(0x80) set, the meta bit is stripped, the preceding rules applied, and " -"``'!'`` prepended to the result." +msgid "Return a string representation of the ASCII character *c*. If *c* is printable, this string is the character itself. If the character is a control character (0x00--0x1f) the string consists of a caret (``'^'``) followed by the corresponding uppercase letter. If the character is an ASCII delete (0x7f) the string is ``'^?'``. If the character has its meta bit (0x80) set, the meta bit is stripped, the preceding rules applied, and ``'!'`` prepended to the result." msgstr "" -#: ../../library/curses.ascii.rst:229 -msgid "" -"A 33-element string array that contains the ASCII mnemonics for the thirty-" -"two ASCII control characters from 0 (NUL) to 0x1f (US), in order, plus the " -"mnemonic ``SP`` for the space character." +msgid "A 33-element string array that contains the ASCII mnemonics for the thirty-two ASCII control characters from 0 (NUL) to 0x1f (US), in order, plus the mnemonic ``SP`` for the space character." msgstr "" -#: ../../library/curses.ascii.rst:213 msgid "^ (caret)" msgstr "" -#: ../../library/curses.ascii.rst:213 msgid "in curses module" msgstr "" -#: ../../library/curses.ascii.rst:213 msgid "! (exclamation)" msgstr "" diff --git a/library/curses.panel.po b/library/curses.panel.po index e3c39d1b..79427359 100644 --- a/library/curses.panel.po +++ b/library/curses.panel.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:03+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,123 +23,77 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/curses.panel.rst:2 msgid ":mod:`!curses.panel` --- A panel stack extension for curses" msgstr "" -#: ../../library/curses.panel.rst:11 -msgid "" -"Panels are windows with the added feature of depth, so they can be stacked " -"on top of each other, and only the visible portions of each window will be " -"displayed. Panels can be added, moved up or down in the stack, and removed." +msgid "Panels are windows with the added feature of depth, so they can be stacked on top of each other, and only the visible portions of each window will be displayed. Panels can be added, moved up or down in the stack, and removed." msgstr "" -#: ../../library/curses.panel.rst:19 msgid "Functions" msgstr "" -#: ../../library/curses.panel.rst:21 msgid "The module :mod:`!curses.panel` defines the following exception:" msgstr "" -#: ../../library/curses.panel.rst:26 msgid "Exception raised when a curses panel library function returns an error." msgstr "" -#: ../../library/curses.panel.rst:29 msgid "The module :mod:`!curses.panel` defines the following functions:" msgstr "" -#: ../../library/curses.panel.rst:34 msgid "Returns the bottom panel in the panel stack." msgstr "" -#: ../../library/curses.panel.rst:39 -msgid "" -"Returns a panel object, associating it with the given window *win* and " -"placing the new panel on top of the panel stack. Be aware that you need to " -"keep the returned panel object referenced explicitly. If you don't, the " -"panel object is garbage collected and removed from the panel stack." +msgid "Returns a panel object, associating it with the given window *win* and placing the new panel on top of the panel stack. Be aware that you need to keep the returned panel object referenced explicitly. If you don't, the panel object is garbage collected and removed from the panel stack." msgstr "" -#: ../../library/curses.panel.rst:47 msgid "Returns the top panel in the panel stack." msgstr "" -#: ../../library/curses.panel.rst:52 -msgid "" -"Updates the virtual screen after changes in the panel stack. This does not " -"call :func:`curses.doupdate`, so you'll have to do this yourself." +msgid "Updates the virtual screen after changes in the panel stack. This does not call :func:`curses.doupdate`, so you'll have to do this yourself." msgstr "" -#: ../../library/curses.panel.rst:59 msgid "Panel objects" msgstr "" -#: ../../library/curses.panel.rst:79 -msgid "" -"Panel objects, as returned by :func:`new_panel` above, are windows with a " -"stacking order. There's always a window associated with a panel which " -"determines the content, while the panel methods are responsible for the " -"window's depth in the panel stack." +msgid "Panel objects, as returned by :func:`new_panel` above, are windows with a stacking order. There's always a window associated with a panel which determines the content, while the panel methods are responsible for the window's depth in the panel stack." msgstr "" -#: ../../library/curses.panel.rst:84 msgid "Panel objects have the following methods:" msgstr "" -#: ../../library/curses.panel.rst:89 msgid "Returns the panel above the current panel." msgstr "" -#: ../../library/curses.panel.rst:94 msgid "Returns the panel below the current panel." msgstr "" -#: ../../library/curses.panel.rst:99 msgid "Push the panel to the bottom of the stack." msgstr "" -#: ../../library/curses.panel.rst:104 -msgid "" -"Returns ``True`` if the panel is hidden (not visible), ``False`` otherwise." +msgid "Returns ``True`` if the panel is hidden (not visible), ``False`` otherwise." msgstr "" -#: ../../library/curses.panel.rst:109 -msgid "" -"Hide the panel. This does not delete the object, it just makes the window on " -"screen invisible." +msgid "Hide the panel. This does not delete the object, it just makes the window on screen invisible." msgstr "" -#: ../../library/curses.panel.rst:115 msgid "Move the panel to the screen coordinates ``(y, x)``." msgstr "" -#: ../../library/curses.panel.rst:120 msgid "Change the window associated with the panel to the window *win*." msgstr "" -#: ../../library/curses.panel.rst:125 -msgid "" -"Set the panel's user pointer to *obj*. This is used to associate an " -"arbitrary piece of data with the panel, and can be any Python object." +msgid "Set the panel's user pointer to *obj*. This is used to associate an arbitrary piece of data with the panel, and can be any Python object." msgstr "" -#: ../../library/curses.panel.rst:131 -msgid "" -"Display the panel (which might have been hidden), placing it on top of the " -"panel stack." +msgid "Display the panel (which might have been hidden), placing it on top of the panel stack." msgstr "" -#: ../../library/curses.panel.rst:137 msgid "Push panel to the top of the stack." msgstr "" -#: ../../library/curses.panel.rst:142 -msgid "" -"Returns the user pointer for the panel. This might be any Python object." +msgid "Returns the user pointer for the panel. This might be any Python object." msgstr "" -#: ../../library/curses.panel.rst:147 msgid "Returns the window object associated with the panel." msgstr "" diff --git a/library/curses.po b/library/curses.po index 30769695..bf434aae 100644 --- a/library/curses.po +++ b/library/curses.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:03+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -25,2690 +25,1511 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/curses.rst:2 msgid ":mod:`!curses` --- Terminal handling for character-cell displays" msgstr "" -#: ../../library/curses.rst:11 msgid "**Source code:** :source:`Lib/curses`" msgstr "" -#: ../../library/curses.rst:15 -msgid "" -"The :mod:`!curses` module provides an interface to the curses library, the " -"de-facto standard for portable advanced terminal handling." +msgid "The :mod:`!curses` module provides an interface to the curses library, the de-facto standard for portable advanced terminal handling." msgstr "" -#: ../../library/curses.rst:18 -msgid "" -"While curses is most widely used in the Unix environment, versions are " -"available for Windows, DOS, and possibly other systems as well. This " -"extension module is designed to match the API of ncurses, an open-source " -"curses library hosted on Linux and the BSD variants of Unix." +msgid "While curses is most widely used in the Unix environment, versions are available for Windows, DOS, and possibly other systems as well. This extension module is designed to match the API of ncurses, an open-source curses library hosted on Linux and the BSD variants of Unix." msgstr "" -#: ../../library/curses.rst:27 ../../includes/wasm-mobile-notavail.rst:3 msgid "Availability" msgstr "" -#: ../../includes/wasm-mobile-notavail.rst:5 -msgid "" -"This module is not supported on :ref:`mobile platforms ` or :ref:`WebAssembly platforms `." +msgid "This module is not supported on :ref:`mobile platforms ` or :ref:`WebAssembly platforms `." msgstr "" -#: ../../includes/optional-module.rst:1 -msgid "" -"This is an :term:`optional module`. If it is missing from your copy of " -"CPython, look for documentation from your distributor (that is, whoever " -"provided Python to you). If you are the distributor, see :ref:`optional-" -"module-requirements`." +msgid "This is an :term:`optional module`. If it is missing from your copy of CPython, look for documentation from your distributor (that is, whoever provided Python to you). If you are the distributor, see :ref:`optional-module-requirements`." msgstr "" -#: ../../library/curses.rst:31 -msgid "" -"Whenever the documentation mentions a *character* it can be specified as an " -"integer, a one-character Unicode string or a one-byte byte string." +msgid "Whenever the documentation mentions a *character* it can be specified as an integer, a one-character Unicode string or a one-byte byte string." msgstr "" -#: ../../library/curses.rst:34 -msgid "" -"Whenever the documentation mentions a *character string* it can be specified " -"as a Unicode string or a byte string." +msgid "Whenever the documentation mentions a *character string* it can be specified as a Unicode string or a byte string." msgstr "" -#: ../../library/curses.rst:39 msgid "Module :mod:`curses.ascii`" msgstr "" -#: ../../library/curses.rst:40 -msgid "" -"Utilities for working with ASCII characters, regardless of your locale " -"settings." +msgid "Utilities for working with ASCII characters, regardless of your locale settings." msgstr "" -#: ../../library/curses.rst:42 msgid "Module :mod:`curses.panel`" msgstr "" -#: ../../library/curses.rst:43 msgid "A panel stack extension that adds depth to curses windows." msgstr "" -#: ../../library/curses.rst:45 msgid "Module :mod:`curses.textpad`" msgstr "" -#: ../../library/curses.rst:46 -msgid "" -"Editable text widget for curses supporting :program:`Emacs`\\ -like " -"bindings." +msgid "Editable text widget for curses supporting :program:`Emacs`\\ -like bindings." msgstr "" -#: ../../library/curses.rst:48 msgid ":ref:`curses-howto`" msgstr "" -#: ../../library/curses.rst:49 -msgid "" -"Tutorial material on using curses with Python, by Andrew Kuchling and Eric " -"Raymond." +msgid "Tutorial material on using curses with Python, by Andrew Kuchling and Eric Raymond." msgstr "" -#: ../../library/curses.rst:56 msgid "Functions" msgstr "" -#: ../../library/curses.rst:58 msgid "The module :mod:`!curses` defines the following exception:" msgstr "" -#: ../../library/curses.rst:63 msgid "Exception raised when a curses library function returns an error." msgstr "" -#: ../../library/curses.rst:67 -msgid "" -"Whenever *x* or *y* arguments to a function or a method are optional, they " -"default to the current cursor location. Whenever *attr* is optional, it " -"defaults to :const:`A_NORMAL`." +msgid "Whenever *x* or *y* arguments to a function or a method are optional, they default to the current cursor location. Whenever *attr* is optional, it defaults to :const:`A_NORMAL`." msgstr "" -#: ../../library/curses.rst:71 msgid "The module :mod:`!curses` defines the following functions:" msgstr "" -#: ../../library/curses.rst:76 -msgid "" -"Allow use of default values for colors on terminals supporting this feature. " -"Use this to support transparency in your application." +msgid "Allow use of default values for colors on terminals supporting this feature. Use this to support transparency in your application." msgstr "" -#: ../../library/curses.rst:79 -msgid "" -"Assign terminal default foreground/background colors to color number ``-1``. " -"So ``init_pair(x, COLOR_RED, -1)`` will initialize pair *x* as red on " -"default background and ``init_pair(x, -1, COLOR_BLUE)`` will initialize pair " -"*x* as default foreground on blue." +msgid "Assign terminal default foreground/background colors to color number ``-1``. So ``init_pair(x, COLOR_RED, -1)`` will initialize pair *x* as red on default background and ``init_pair(x, -1, COLOR_BLUE)`` will initialize pair *x* as default foreground on blue." msgstr "" -#: ../../library/curses.rst:84 msgid "Change the definition of the color-pair ``0`` to ``(fg, bg)``." msgstr "" -#: ../../library/curses.rst:86 msgid "This is an ncurses extension." msgstr "" -#: ../../library/curses.rst:93 -msgid "" -"Return the output speed of the terminal in bits per second. On software " -"terminal emulators it will have a fixed high value. Included for historical " -"reasons; in former times, it was used to write output loops for time delays " -"and occasionally to change interfaces depending on the line speed." +msgid "Return the output speed of the terminal in bits per second. On software terminal emulators it will have a fixed high value. Included for historical reasons; in former times, it was used to write output loops for time delays and occasionally to change interfaces depending on the line speed." msgstr "" -#: ../../library/curses.rst:101 msgid "Emit a short attention sound." msgstr "" -#: ../../library/curses.rst:106 -msgid "" -"Return ``True`` or ``False``, depending on whether the programmer can change " -"the colors displayed by the terminal." +msgid "Return ``True`` or ``False``, depending on whether the programmer can change the colors displayed by the terminal." msgstr "" -#: ../../library/curses.rst:112 -msgid "" -"Enter cbreak mode. In cbreak mode (sometimes called \"rare\" mode) normal " -"tty line buffering is turned off and characters are available to be read one " -"by one. However, unlike raw mode, special characters (interrupt, quit, " -"suspend, and flow control) retain their effects on the tty driver and " -"calling program. Calling first :func:`raw` then :func:`cbreak` leaves the " -"terminal in cbreak mode." +msgid "Enter cbreak mode. In cbreak mode (sometimes called \"rare\" mode) normal tty line buffering is turned off and characters are available to be read one by one. However, unlike raw mode, special characters (interrupt, quit, suspend, and flow control) retain their effects on the tty driver and calling program. Calling first :func:`raw` then :func:`cbreak` leaves the terminal in cbreak mode." msgstr "" -#: ../../library/curses.rst:121 -msgid "" -"Return the intensity of the red, green, and blue (RGB) components in the " -"color *color_number*, which must be between ``0`` and ``COLORS - 1``. " -"Return a 3-tuple, containing the R,G,B values for the given color, which " -"will be between ``0`` (no component) and ``1000`` (maximum amount of " -"component). Raise an exception if the color is not supported." +msgid "Return the intensity of the red, green, and blue (RGB) components in the color *color_number*, which must be between ``0`` and ``COLORS - 1``. Return a 3-tuple, containing the R,G,B values for the given color, which will be between ``0`` (no component) and ``1000`` (maximum amount of component). Raise an exception if the color is not supported." msgstr "" -#: ../../library/curses.rst:130 -msgid "" -"Return the attribute value for displaying text in the specified color pair. " -"Only the first 256 color pairs are supported. This attribute value can be " -"combined with :const:`A_STANDOUT`, :const:`A_REVERSE`, and the " -"other :const:`!A_\\*` attributes. :func:`pair_number` is the counterpart to " -"this function." +msgid "Return the attribute value for displaying text in the specified color pair. Only the first 256 color pairs are supported. This attribute value can be combined with :const:`A_STANDOUT`, :const:`A_REVERSE`, and the other :const:`!A_\\*` attributes. :func:`pair_number` is the counterpart to this function." msgstr "" -#: ../../library/curses.rst:139 -msgid "" -"Set the cursor state. *visibility* can be set to ``0``, ``1``, or ``2``, " -"for invisible, normal, or very visible. If the terminal supports the " -"visibility requested, return the previous cursor state; otherwise raise an " -"exception. On many terminals, the \"visible\" mode is an underline cursor " -"and the \"very visible\" mode is a block cursor." +msgid "Set the cursor state. *visibility* can be set to ``0``, ``1``, or ``2``, for invisible, normal, or very visible. If the terminal supports the visibility requested, return the previous cursor state; otherwise raise an exception. On many terminals, the \"visible\" mode is an underline cursor and the \"very visible\" mode is a block cursor." msgstr "" -#: ../../library/curses.rst:148 -msgid "" -"Save the current terminal mode as the \"program\" mode, the mode when the " -"running program is using curses. (Its counterpart is the \"shell\" mode, " -"for when the program is not in curses.) Subsequent calls " -"to :func:`reset_prog_mode` will restore this mode." +msgid "Save the current terminal mode as the \"program\" mode, the mode when the running program is using curses. (Its counterpart is the \"shell\" mode, for when the program is not in curses.) Subsequent calls to :func:`reset_prog_mode` will restore this mode." msgstr "" -#: ../../library/curses.rst:156 -msgid "" -"Save the current terminal mode as the \"shell\" mode, the mode when the " -"running program is not using curses. (Its counterpart is the \"program\" " -"mode, when the program is using curses capabilities.) Subsequent calls " -"to :func:`reset_shell_mode` will restore this mode." +msgid "Save the current terminal mode as the \"shell\" mode, the mode when the running program is not using curses. (Its counterpart is the \"program\" mode, when the program is using curses capabilities.) Subsequent calls to :func:`reset_shell_mode` will restore this mode." msgstr "" -#: ../../library/curses.rst:164 msgid "Insert an *ms* millisecond pause in output." msgstr "" -#: ../../library/curses.rst:169 -msgid "" -"Update the physical screen. The curses library keeps two data structures, " -"one representing the current physical screen contents and a virtual screen " -"representing the desired next state. The :func:`doupdate` function updates " -"the physical screen to match the virtual screen." +msgid "Update the physical screen. The curses library keeps two data structures, one representing the current physical screen contents and a virtual screen representing the desired next state. The :func:`doupdate` function updates the physical screen to match the virtual screen." msgstr "" -#: ../../library/curses.rst:174 -msgid "" -"The virtual screen may be updated by a :meth:`~window.noutrefresh` call " -"after write operations such as :meth:`~window.addstr` have been performed on " -"a window. The normal :meth:`~window.refresh` call is simply :meth:`!" -"noutrefresh` followed by :func:`!doupdate`; if you have to update multiple " -"windows, you can speed performance and perhaps reduce screen flicker by " -"issuing :meth:`!noutrefresh` calls on all windows, followed by a " -"single :func:`!doupdate`." +msgid "The virtual screen may be updated by a :meth:`~window.noutrefresh` call after write operations such as :meth:`~window.addstr` have been performed on a window. The normal :meth:`~window.refresh` call is simply :meth:`!noutrefresh` followed by :func:`!doupdate`; if you have to update multiple windows, you can speed performance and perhaps reduce screen flicker by issuing :meth:`!noutrefresh` calls on all windows, followed by a single :func:`!doupdate`." msgstr "" -#: ../../library/curses.rst:184 -msgid "" -"Enter echo mode. In echo mode, each character input is echoed to the screen " -"as it is entered." +msgid "Enter echo mode. In echo mode, each character input is echoed to the screen as it is entered." msgstr "" -#: ../../library/curses.rst:190 msgid "De-initialize the library, and return terminal to normal status." msgstr "" -#: ../../library/curses.rst:195 -msgid "" -"Return the user's current erase character as a one-byte bytes object. Under " -"Unix operating systems this is a property of the controlling tty of the " -"curses program, and is not set by the curses library itself." +msgid "Return the user's current erase character as a one-byte bytes object. Under Unix operating systems this is a property of the controlling tty of the curses program, and is not set by the curses library itself." msgstr "" -#: ../../library/curses.rst:202 -msgid "" -"The :func:`.filter` routine, if used, must be called before :func:`initscr` " -"is called. The effect is that, during the initialization, :envvar:`LINES` " -"is set to ``1``; the capabilities ``clear``, ``cup``, ``cud``, ``cud1``, " -"``cuu1``, ``cuu``, ``vpa`` are disabled; and the ``home`` string is set to " -"the value of ``cr``. The effect is that the cursor is confined to the " -"current line, and so are screen updates. This may be used for enabling " -"character-at-a-time line editing without touching the rest of the screen." +msgid "The :func:`.filter` routine, if used, must be called before :func:`initscr` is called. The effect is that, during the initialization, :envvar:`LINES` is set to ``1``; the capabilities ``clear``, ``cup``, ``cud``, ``cud1``, ``cuu1``, ``cuu``, ``vpa`` are disabled; and the ``home`` string is set to the value of ``cr``. The effect is that the cursor is confined to the current line, and so are screen updates. This may be used for enabling character-at-a-time line editing without touching the rest of the screen." msgstr "" -#: ../../library/curses.rst:212 -msgid "" -"Flash the screen. That is, change it to reverse-video and then change it " -"back in a short interval. Some people prefer such as 'visible bell' to the " -"audible attention signal produced by :func:`beep`." +msgid "Flash the screen. That is, change it to reverse-video and then change it back in a short interval. Some people prefer such as 'visible bell' to the audible attention signal produced by :func:`beep`." msgstr "" -#: ../../library/curses.rst:219 -msgid "" -"Flush all input buffers. This throws away any typeahead that has been " -"typed by the user and has not yet been processed by the program." +msgid "Flush all input buffers. This throws away any typeahead that has been typed by the user and has not yet been processed by the program." msgstr "" -#: ../../library/curses.rst:225 -msgid "" -"After :meth:`~window.getch` returns :const:`KEY_MOUSE` to signal a mouse " -"event, this method should be called to retrieve the queued mouse event, " -"represented as a 5-tuple ``(id, x, y, z, bstate)``. *id* is an ID value used " -"to distinguish multiple devices, and *x*, *y*, *z* are the event's " -"coordinates. (*z* is currently unused.) *bstate* is an integer value whose " -"bits will be set to indicate the type of event, and will be the bitwise OR " -"of one or more of the following constants, where *n* is the button number " -"from 1 to " -"5: :const:`BUTTONn_PRESSED`, :const:`BUTTONn_RELEASED`, :const:`BUTTONn_CLICKED`, :const:`BUTTONn_DOUBLE_CLICKED`, :const:`BUTTONn_TRIPLE_CLICKED`, :const:`BUTTON_SHIFT`, :const:`BUTTON_CTRL`, :const:`BUTTON_ALT`." -msgstr "" - -#: ../../library/curses.rst:236 ../../library/curses.rst:1864 -msgid "" -"The ``BUTTON5_*`` constants are now exposed if they are provided by the " -"underlying curses library." +msgid "After :meth:`~window.getch` returns :const:`KEY_MOUSE` to signal a mouse event, this method should be called to retrieve the queued mouse event, represented as a 5-tuple ``(id, x, y, z, bstate)``. *id* is an ID value used to distinguish multiple devices, and *x*, *y*, *z* are the event's coordinates. (*z* is currently unused.) *bstate* is an integer value whose bits will be set to indicate the type of event, and will be the bitwise OR of one or more of the following constants, where *n* is the button number from 1 to 5: :const:`BUTTONn_PRESSED`, :const:`BUTTONn_RELEASED`, :const:`BUTTONn_CLICKED`, :const:`BUTTONn_DOUBLE_CLICKED`, :const:`BUTTONn_TRIPLE_CLICKED`, :const:`BUTTON_SHIFT`, :const:`BUTTON_CTRL`, :const:`BUTTON_ALT`." msgstr "" -#: ../../library/curses.rst:243 -msgid "" -"Return the current coordinates of the virtual screen cursor as a tuple ``(y, " -"x)``. If :meth:`leaveok ` is currently ``True``, then " -"return ``(-1, -1)``." +msgid "The ``BUTTON5_*`` constants are now exposed if they are provided by the underlying curses library." msgstr "" -#: ../../library/curses.rst:249 -msgid "" -"Read window-related data stored in the file by an " -"earlier :meth:`window.putwin` call. The routine then creates and initializes " -"a new window using that data, returning the new window object. The *file* " -"argument must be a file object opened for reading in binary mode." +msgid "Return the current coordinates of the virtual screen cursor as a tuple ``(y, x)``. If :meth:`leaveok ` is currently ``True``, then return ``(-1, -1)``." msgstr "" -#: ../../library/curses.rst:257 -msgid "" -"Return ``True`` if the terminal can display colors; otherwise, return " -"``False``." +msgid "Read window-related data stored in the file by an earlier :meth:`window.putwin` call. The routine then creates and initializes a new window using that data, returning the new window object. The *file* argument must be a file object opened for reading in binary mode." msgstr "" -#: ../../library/curses.rst:261 -msgid "" -"Return ``True`` if the module supports extended colors; otherwise, return " -"``False``. Extended color support allows more than 256 color pairs for " -"terminals that support more than 16 colors (for example, xterm-256color)." +msgid "Return ``True`` if the terminal can display colors; otherwise, return ``False``." +msgstr "" + +msgid "Return ``True`` if the module supports extended colors; otherwise, return ``False``. Extended color support allows more than 256 color pairs for terminals that support more than 16 colors (for example, xterm-256color)." msgstr "" -#: ../../library/curses.rst:265 msgid "Extended color support requires ncurses version 6.1 or later." msgstr "" -#: ../../library/curses.rst:271 -msgid "" -"Return ``True`` if the terminal has insert- and delete-character " -"capabilities. This function is included for historical reasons only, as all " -"modern software terminal emulators have such capabilities." +msgid "Return ``True`` if the terminal has insert- and delete-character capabilities. This function is included for historical reasons only, as all modern software terminal emulators have such capabilities." msgstr "" -#: ../../library/curses.rst:278 -msgid "" -"Return ``True`` if the terminal has insert- and delete-line capabilities, or " -"can simulate them using scrolling regions. This function is included for " -"historical reasons only, as all modern software terminal emulators have such " -"capabilities." +msgid "Return ``True`` if the terminal has insert- and delete-line capabilities, or can simulate them using scrolling regions. This function is included for historical reasons only, as all modern software terminal emulators have such capabilities." msgstr "" -#: ../../library/curses.rst:286 -msgid "" -"Take a key value *ch*, and return ``True`` if the current terminal type " -"recognizes a key with that value." +msgid "Take a key value *ch*, and return ``True`` if the current terminal type recognizes a key with that value." msgstr "" -#: ../../library/curses.rst:292 -msgid "" -"Used for half-delay mode, which is similar to cbreak mode in that characters " -"typed by the user are immediately available to the program. However, after " -"blocking for *tenths* tenths of seconds, raise an exception if nothing has " -"been typed. The value of *tenths* must be a number between ``1`` and " -"``255``. Use :func:`nocbreak` to leave half-delay mode." +msgid "Used for half-delay mode, which is similar to cbreak mode in that characters typed by the user are immediately available to the program. However, after blocking for *tenths* tenths of seconds, raise an exception if nothing has been typed. The value of *tenths* must be a number between ``1`` and ``255``. Use :func:`nocbreak` to leave half-delay mode." msgstr "" -#: ../../library/curses.rst:301 -msgid "" -"Change the definition of a color, taking the number of the color to be " -"changed followed by three RGB values (for the amounts of red, green, and " -"blue components). The value of *color_number* must be between ``0`` and " -"``COLORS - 1``. Each of *r*, *g*, *b*, must be a value between ``0`` and " -"``1000``. When :func:`init_color` is used, all occurrences of that color on " -"the screen immediately change to the new definition. This function is a no-" -"op on most terminals; it is active only if :func:`can_change_color` returns " -"``True``." +msgid "Change the definition of a color, taking the number of the color to be changed followed by three RGB values (for the amounts of red, green, and blue components). The value of *color_number* must be between ``0`` and ``COLORS - 1``. Each of *r*, *g*, *b*, must be a value between ``0`` and ``1000``. When :func:`init_color` is used, all occurrences of that color on the screen immediately change to the new definition. This function is a no-op on most terminals; it is active only if :func:`can_change_color` returns ``True``." msgstr "" -#: ../../library/curses.rst:312 -msgid "" -"Change the definition of a color-pair. It takes three arguments: the number " -"of the color-pair to be changed, the foreground color number, and the " -"background color number. The value of *pair_number* must be between ``1`` " -"and ``COLOR_PAIRS - 1`` (the ``0`` color pair can only be changed " -"by :func:`use_default_colors` and :func:`assume_default_colors`). The value " -"of *fg* and *bg* arguments must be between ``0`` and ``COLORS - 1``, or, " -"after calling :func:`!use_default_colors` or :func:`!assume_default_colors`, " -"``-1``. If the color-pair was previously initialized, the screen is " -"refreshed and all occurrences of that color-pair are changed to the new " -"definition." -msgstr "" - -#: ../../library/curses.rst:327 -msgid "" -"Initialize the library. Return a :ref:`window ` " -"object which represents the whole screen." +msgid "Change the definition of a color-pair. It takes three arguments: the number of the color-pair to be changed, the foreground color number, and the background color number. The value of *pair_number* must be between ``1`` and ``COLOR_PAIRS - 1`` (the ``0`` color pair can only be changed by :func:`use_default_colors` and :func:`assume_default_colors`). The value of *fg* and *bg* arguments must be between ``0`` and ``COLORS - 1``, or, after calling :func:`!use_default_colors` or :func:`!assume_default_colors`, ``-1``. If the color-pair was previously initialized, the screen is refreshed and all occurrences of that color-pair are changed to the new definition." msgstr "" -#: ../../library/curses.rst:330 -msgid "" -"See :func:`setupterm` for a caveat about calling it before this function." +msgid "Initialize the library. Return a :ref:`window ` object which represents the whole screen." msgstr "" -#: ../../library/curses.rst:334 -msgid "" -"If there is an error opening the terminal, the underlying curses library may " -"cause the interpreter to exit." +msgid "See :func:`setupterm` for a caveat about calling it before this function." msgstr "" -#: ../../library/curses.rst:340 -msgid "" -"If *flag* is ``True``, pressing an interrupt key (interrupt, break, or quit) " -"will flush all output in the terminal driver queue. If *flag* is ``False``, " -"no flushing is done." +msgid "If there is an error opening the terminal, the underlying curses library may cause the interpreter to exit." msgstr "" -#: ../../library/curses.rst:347 -msgid "" -"Return ``True`` if :func:`resize_term` would modify the window structure, " -"``False`` otherwise." +msgid "If *flag* is ``True``, pressing an interrupt key (interrupt, break, or quit) will flush all output in the terminal driver queue. If *flag* is ``False``, no flushing is done." msgstr "" -#: ../../library/curses.rst:353 -msgid "" -"Return ``True`` if :func:`endwin` has been called (that is, the curses " -"library has been deinitialized)." +msgid "Return ``True`` if :func:`resize_term` would modify the window structure, ``False`` otherwise." msgstr "" -#: ../../library/curses.rst:359 -msgid "" -"Return the name of the key numbered *k* as a bytes object. The name of a " -"key generating printable ASCII character is the key's character. The name " -"of a control-key combination is a two-byte bytes object consisting of a " -"caret (``b'^'``) followed by the corresponding printable ASCII character. " -"The name of an alt-key combination (128--255) is a bytes object consisting " -"of the prefix ``b'M-'`` followed by the name of the corresponding ASCII " -"character." +msgid "Return ``True`` if :func:`endwin` has been called (that is, the curses library has been deinitialized)." +msgstr "" + +msgid "Return the name of the key numbered *k* as a bytes object. The name of a key generating printable ASCII character is the key's character. The name of a control-key combination is a two-byte bytes object consisting of a caret (``b'^'``) followed by the corresponding printable ASCII character. The name of an alt-key combination (128--255) is a bytes object consisting of the prefix ``b'M-'`` followed by the name of the corresponding ASCII character." msgstr "" -#: ../../library/curses.rst:366 msgid "Raise a :exc:`ValueError` if *k* is negative." msgstr "" -#: ../../library/curses.rst:371 -msgid "" -"Return the user's current line kill character as a one-byte bytes object. " -"Under Unix operating systems this is a property of the controlling tty of " -"the curses program, and is not set by the curses library itself." +msgid "Return the user's current line kill character as a one-byte bytes object. Under Unix operating systems this is a property of the controlling tty of the curses program, and is not set by the curses library itself." msgstr "" -#: ../../library/curses.rst:378 -msgid "" -"Return a bytes object containing the terminfo long name field describing the " -"current terminal. The maximum length of a verbose description is 128 " -"characters. It is defined only after the call to :func:`initscr`." +msgid "Return a bytes object containing the terminfo long name field describing the current terminal. The maximum length of a verbose description is 128 characters. It is defined only after the call to :func:`initscr`." msgstr "" -#: ../../library/curses.rst:385 -msgid "" -"If *flag* is ``True``, allow 8-bit characters to be input. If *flag* is " -"``False``, allow only 7-bit chars." +msgid "If *flag* is ``True``, allow 8-bit characters to be input. If *flag* is ``False``, allow only 7-bit chars." msgstr "" -#: ../../library/curses.rst:391 -msgid "" -"Set the maximum time in milliseconds that can elapse between press and " -"release events in order for them to be recognized as a click, and return the " -"previous interval value. The default value is 166 milliseconds, or one " -"sixth of a second. Use a negative *interval* to obtain the interval value " -"without changing it." +msgid "Set the maximum time in milliseconds that can elapse between press and release events in order for them to be recognized as a click, and return the previous interval value. The default value is 166 milliseconds, or one sixth of a second. Use a negative *interval* to obtain the interval value without changing it." msgstr "" -#: ../../library/curses.rst:399 -msgid "" -"Set the mouse events to be reported, and return a tuple ``(availmask, " -"oldmask)``. *availmask* indicates which of the specified mouse events can " -"be reported; on complete failure it returns ``0``. *oldmask* is the " -"previous value of the mouse event mask. If this function is never called, " -"no mouse events are ever reported." +msgid "Set the mouse events to be reported, and return a tuple ``(availmask, oldmask)``. *availmask* indicates which of the specified mouse events can be reported; on complete failure it returns ``0``. *oldmask* is the previous value of the mouse event mask. If this function is never called, no mouse events are ever reported." msgstr "" -#: ../../library/curses.rst:408 msgid "Sleep for *ms* milliseconds." msgstr "" -#: ../../library/curses.rst:413 -msgid "" -"Create and return a pointer to a new pad data structure with the given " -"number of lines and columns. Return a pad as a window object." +msgid "Create and return a pointer to a new pad data structure with the given number of lines and columns. Return a pad as a window object." msgstr "" -#: ../../library/curses.rst:416 -msgid "" -"A pad is like a window, except that it is not restricted by the screen size, " -"and is not necessarily associated with a particular part of the screen. " -"Pads can be used when a large window is needed, and only a part of the " -"window will be on the screen at one time. Automatic refreshes of pads (such " -"as from scrolling or echoing of input) do not occur. " -"The :meth:`~window.refresh` and :meth:`~window.noutrefresh` methods of a pad " -"require 6 arguments to specify the part of the pad to be displayed and the " -"location on the screen to be used for the display. The arguments are " -"*pminrow*, *pmincol*, *sminrow*, *smincol*, *smaxrow*, *smaxcol*; the *p* " -"arguments refer to the upper-left corner of the pad region to be displayed " -"and the *s* arguments define a clipping box on the screen within which the " -"pad region is to be displayed." -msgstr "" - -#: ../../library/curses.rst:432 -msgid "" -"Return a new :ref:`window `, whose left-upper corner " -"is at ``(begin_y, begin_x)``, and whose height/width is *nlines*/*ncols*." +msgid "A pad is like a window, except that it is not restricted by the screen size, and is not necessarily associated with a particular part of the screen. Pads can be used when a large window is needed, and only a part of the window will be on the screen at one time. Automatic refreshes of pads (such as from scrolling or echoing of input) do not occur. The :meth:`~window.refresh` and :meth:`~window.noutrefresh` methods of a pad require 6 arguments to specify the part of the pad to be displayed and the location on the screen to be used for the display. The arguments are *pminrow*, *pmincol*, *sminrow*, *smincol*, *smaxrow*, *smaxcol*; the *p* arguments refer to the upper-left corner of the pad region to be displayed and the *s* arguments define a clipping box on the screen within which the pad region is to be displayed." msgstr "" -#: ../../library/curses.rst:435 -msgid "" -"By default, the window will extend from the specified position to the lower " -"right corner of the screen." +msgid "Return a new :ref:`window `, whose left-upper corner is at ``(begin_y, begin_x)``, and whose height/width is *nlines*/*ncols*." msgstr "" -#: ../../library/curses.rst:441 -msgid "" -"Enter newline mode. This mode translates the return key into newline on " -"input, and translates newline into return and line-feed on output. Newline " -"mode is initially on." +msgid "By default, the window will extend from the specified position to the lower right corner of the screen." +msgstr "" + +msgid "Enter newline mode. This mode translates the return key into newline on input, and translates newline into return and line-feed on output. Newline mode is initially on." msgstr "" -#: ../../library/curses.rst:445 msgid "If *flag* is ``False``, the effect is the same as calling :func:`nonl`." msgstr "" -#: ../../library/curses.rst:450 -msgid "" -"Leave cbreak mode. Return to normal \"cooked\" mode with line buffering." +msgid "Leave cbreak mode. Return to normal \"cooked\" mode with line buffering." msgstr "" -#: ../../library/curses.rst:455 msgid "Leave echo mode. Echoing of input characters is turned off." msgstr "" -#: ../../library/curses.rst:460 -msgid "" -"Leave newline mode. Disable translation of return into newline on input, " -"and disable low-level translation of newline into newline/return on output " -"(but this does not change the behavior of ``addch('\\n')``, which always " -"does the equivalent of return and line feed on the virtual screen). With " -"translation off, curses can sometimes speed up vertical motion a little; " -"also, it will be able to detect the return key on input." +msgid "Leave newline mode. Disable translation of return into newline on input, and disable low-level translation of newline into newline/return on output (but this does not change the behavior of ``addch('\\n')``, which always does the equivalent of return and line feed on the virtual screen). With translation off, curses can sometimes speed up vertical motion a little; also, it will be able to detect the return key on input." msgstr "" -#: ../../library/curses.rst:470 -msgid "" -"When the :func:`!noqiflush` routine is used, normal flush of input and " -"output queues associated with the ``INTR``, ``QUIT`` and ``SUSP`` characters " -"will not be done. You may want to call :func:`!noqiflush` in a signal " -"handler if you want output to continue as though the interrupt had not " -"occurred, after the handler exits." +msgid "When the :func:`!noqiflush` routine is used, normal flush of input and output queues associated with the ``INTR``, ``QUIT`` and ``SUSP`` characters will not be done. You may want to call :func:`!noqiflush` in a signal handler if you want output to continue as though the interrupt had not occurred, after the handler exits." msgstr "" -#: ../../library/curses.rst:478 msgid "Leave raw mode. Return to normal \"cooked\" mode with line buffering." msgstr "" -#: ../../library/curses.rst:483 -msgid "" -"Return a tuple ``(fg, bg)`` containing the colors for the requested color " -"pair. The value of *pair_number* must be between ``0`` and ``COLOR_PAIRS - " -"1``." +msgid "Return a tuple ``(fg, bg)`` containing the colors for the requested color pair. The value of *pair_number* must be between ``0`` and ``COLOR_PAIRS - 1``." msgstr "" -#: ../../library/curses.rst:489 -msgid "" -"Return the number of the color-pair set by the attribute value " -"*attr*. :func:`color_pair` is the counterpart to this function." +msgid "Return the number of the color-pair set by the attribute value *attr*. :func:`color_pair` is the counterpart to this function." msgstr "" -#: ../../library/curses.rst:495 -msgid "" -"Equivalent to ``tputs(str, 1, putchar)``; emit the value of a specified " -"terminfo capability for the current terminal. Note that the output " -"of :func:`putp` always goes to standard output." +msgid "Equivalent to ``tputs(str, 1, putchar)``; emit the value of a specified terminfo capability for the current terminal. Note that the output of :func:`putp` always goes to standard output." msgstr "" -#: ../../library/curses.rst:499 ../../library/curses.rst:642 -#: ../../library/curses.rst:652 ../../library/curses.rst:662 -#: ../../library/curses.rst:672 msgid ":func:`setupterm` (or :func:`initscr`) must be called first." msgstr "" -#: ../../library/curses.rst:504 -msgid "" -"If *flag* is ``False``, the effect is the same as calling :func:`noqiflush`. " -"If *flag* is ``True``, or no argument is provided, the queues will be " -"flushed when these control characters are read." +msgid "If *flag* is ``False``, the effect is the same as calling :func:`noqiflush`. If *flag* is ``True``, or no argument is provided, the queues will be flushed when these control characters are read." msgstr "" -#: ../../library/curses.rst:511 -msgid "" -"Enter raw mode. In raw mode, normal line buffering and processing of " -"interrupt, quit, suspend, and flow control keys are turned off; characters " -"are presented to curses input functions one by one." +msgid "Enter raw mode. In raw mode, normal line buffering and processing of interrupt, quit, suspend, and flow control keys are turned off; characters are presented to curses input functions one by one." msgstr "" -#: ../../library/curses.rst:518 -msgid "" -"Restore the terminal to \"program\" mode, as previously saved " -"by :func:`def_prog_mode`." +msgid "Restore the terminal to \"program\" mode, as previously saved by :func:`def_prog_mode`." msgstr "" -#: ../../library/curses.rst:524 -msgid "" -"Restore the terminal to \"shell\" mode, as previously saved " -"by :func:`def_shell_mode`." +msgid "Restore the terminal to \"shell\" mode, as previously saved by :func:`def_shell_mode`." msgstr "" -#: ../../library/curses.rst:530 -msgid "" -"Restore the state of the terminal modes to what it was at the last call " -"to :func:`savetty`." +msgid "Restore the state of the terminal modes to what it was at the last call to :func:`savetty`." msgstr "" -#: ../../library/curses.rst:536 -msgid "" -"Backend function used by :func:`resizeterm`, performing most of the work; " -"when resizing the windows, :func:`resize_term` blank-fills the areas that " -"are extended. The calling application should fill in these areas with " -"appropriate data. The :func:`!resize_term` function attempts to resize all " -"windows. However, due to the calling convention of pads, it is not possible " -"to resize these without additional interaction with the application." +msgid "Backend function used by :func:`resizeterm`, performing most of the work; when resizing the windows, :func:`resize_term` blank-fills the areas that are extended. The calling application should fill in these areas with appropriate data. The :func:`!resize_term` function attempts to resize all windows. However, due to the calling convention of pads, it is not possible to resize these without additional interaction with the application." msgstr "" -#: ../../library/curses.rst:546 -msgid "" -"Resize the standard and current windows to the specified dimensions, and " -"adjusts other bookkeeping data used by the curses library that record the " -"window dimensions (in particular the SIGWINCH handler)." +msgid "Resize the standard and current windows to the specified dimensions, and adjusts other bookkeeping data used by the curses library that record the window dimensions (in particular the SIGWINCH handler)." msgstr "" -#: ../../library/curses.rst:553 -msgid "" -"Save the current state of the terminal modes in a buffer, usable " -"by :func:`resetty`." +msgid "Save the current state of the terminal modes in a buffer, usable by :func:`resetty`." msgstr "" -#: ../../library/curses.rst:558 msgid "Retrieves the value set by :func:`set_escdelay`." msgstr "" -#: ../../library/curses.rst:564 -msgid "" -"Sets the number of milliseconds to wait after reading an escape character, " -"to distinguish between an individual escape character entered on the " -"keyboard from escape sequences sent by cursor and function keys." +msgid "Sets the number of milliseconds to wait after reading an escape character, to distinguish between an individual escape character entered on the keyboard from escape sequences sent by cursor and function keys." msgstr "" -#: ../../library/curses.rst:572 msgid "Retrieves the value set by :func:`set_tabsize`." msgstr "" -#: ../../library/curses.rst:578 -msgid "" -"Sets the number of columns used by the curses library when converting a tab " -"character to spaces as it adds the tab to a window." +msgid "Sets the number of columns used by the curses library when converting a tab character to spaces as it adds the tab to a window." msgstr "" -#: ../../library/curses.rst:585 -msgid "" -"Set the virtual screen cursor to *y*, *x*. If *y* and *x* are both ``-1``, " -"then :meth:`leaveok ` is set ``True``." +msgid "Set the virtual screen cursor to *y*, *x*. If *y* and *x* are both ``-1``, then :meth:`leaveok ` is set ``True``." msgstr "" -#: ../../library/curses.rst:591 -msgid "" -"Initialize the terminal. *term* is a string giving the terminal name, or " -"``None``; if omitted or ``None``, the value of the :envvar:`TERM` " -"environment variable will be used. *fd* is the file descriptor to which any " -"initialization sequences will be sent; if not supplied or ``-1``, the file " -"descriptor for ``sys.stdout`` will be used." +msgid "Initialize the terminal. *term* is a string giving the terminal name, or ``None``; if omitted or ``None``, the value of the :envvar:`TERM` environment variable will be used. *fd* is the file descriptor to which any initialization sequences will be sent; if not supplied or ``-1``, the file descriptor for ``sys.stdout`` will be used." msgstr "" -#: ../../library/curses.rst:597 -msgid "" -"Raise a :exc:`curses.error` if the terminal could not be found or its " -"terminfo database entry could not be read. If the terminal has already been " -"initialized, this function has no effect." +msgid "Raise a :exc:`curses.error` if the terminal could not be found or its terminfo database entry could not be read. If the terminal has already been initialized, this function has no effect." msgstr "" -#: ../../library/curses.rst:603 -msgid "" -"Calling :func:`initscr` after :func:`setupterm` leaks the terminal " -"that :func:`setupterm` allocated: the curses library keeps only a single " -"current terminal and does not free the previously allocated one." +msgid "Calling :func:`initscr` after :func:`setupterm` leaks the terminal that :func:`setupterm` allocated: the curses library keeps only a single current terminal and does not free the previously allocated one." msgstr "" -#: ../../library/curses.rst:611 -msgid "" -"Must be called if the programmer wants to use colors, and before any other " -"color manipulation routine is called. It is good practice to call this " -"routine right after :func:`initscr`." +msgid "Must be called if the programmer wants to use colors, and before any other color manipulation routine is called. It is good practice to call this routine right after :func:`initscr`." msgstr "" -#: ../../library/curses.rst:615 -msgid "" -":func:`start_color` initializes eight basic colors (black, red, green, " -"yellow, blue, magenta, cyan, and white), and two global variables in " -"the :mod:`!curses` module, :const:`COLORS` and :const:`COLOR_PAIRS`, " -"containing the maximum number of colors and color-pairs the terminal can " -"support. It also restores the colors on the terminal to the values they had " -"when the terminal was just turned on." +msgid ":func:`start_color` initializes eight basic colors (black, red, green, yellow, blue, magenta, cyan, and white), and two global variables in the :mod:`!curses` module, :const:`COLORS` and :const:`COLOR_PAIRS`, containing the maximum number of colors and color-pairs the terminal can support. It also restores the colors on the terminal to the values they had when the terminal was just turned on." msgstr "" -#: ../../library/curses.rst:624 -msgid "" -"Return a logical OR of all video attributes supported by the terminal. This " -"information is useful when a curses program needs complete control over the " -"appearance of the screen." +msgid "Return a logical OR of all video attributes supported by the terminal. This information is useful when a curses program needs complete control over the appearance of the screen." msgstr "" -#: ../../library/curses.rst:631 -msgid "" -"Return the value of the environment variable :envvar:`TERM`, as a bytes " -"object, truncated to 14 characters." +msgid "Return the value of the environment variable :envvar:`TERM`, as a bytes object, truncated to 14 characters." msgstr "" -#: ../../library/curses.rst:637 -msgid "" -"Return the value of the Boolean capability corresponding to the terminfo " -"capability name *capname* as an integer. Return the value ``-1`` if " -"*capname* is not a Boolean capability, or ``0`` if it is canceled or absent " -"from the terminal description." +msgid "Return the value of the Boolean capability corresponding to the terminfo capability name *capname* as an integer. Return the value ``-1`` if *capname* is not a Boolean capability, or ``0`` if it is canceled or absent from the terminal description." msgstr "" -#: ../../library/curses.rst:647 -msgid "" -"Return the value of the numeric capability corresponding to the terminfo " -"capability name *capname* as an integer. Return the value ``-2`` if " -"*capname* is not a numeric capability, or ``-1`` if it is canceled or absent " -"from the terminal description." +msgid "Return the value of the numeric capability corresponding to the terminfo capability name *capname* as an integer. Return the value ``-2`` if *capname* is not a numeric capability, or ``-1`` if it is canceled or absent from the terminal description." msgstr "" -#: ../../library/curses.rst:657 -msgid "" -"Return the value of the string capability corresponding to the terminfo " -"capability name *capname* as a bytes object. Return ``None`` if *capname* " -"is not a terminfo \"string capability\", or is canceled or absent from the " -"terminal description." +msgid "Return the value of the string capability corresponding to the terminfo capability name *capname* as a bytes object. Return ``None`` if *capname* is not a terminfo \"string capability\", or is canceled or absent from the terminal description." msgstr "" -#: ../../library/curses.rst:667 -msgid "" -"Instantiate the bytes object *str* with the supplied parameters, where *str* " -"should be a parameterized string obtained from the terminfo database. For " -"example, ``tparm(tigetstr(\"cup\"), 5, 3)`` could result in " -"``b'\\033[6;4H'``, the exact result depending on terminal type. Up to nine " -"integer parameters may be supplied." +msgid "Instantiate the bytes object *str* with the supplied parameters, where *str* should be a parameterized string obtained from the terminfo database. For example, ``tparm(tigetstr(\"cup\"), 5, 3)`` could result in ``b'\\033[6;4H'``, the exact result depending on terminal type. Up to nine integer parameters may be supplied." msgstr "" -#: ../../library/curses.rst:677 -msgid "" -"Specify that the file descriptor *fd* be used for typeahead checking. If " -"*fd* is ``-1``, then no typeahead checking is done." +msgid "Specify that the file descriptor *fd* be used for typeahead checking. If *fd* is ``-1``, then no typeahead checking is done." msgstr "" -#: ../../library/curses.rst:680 -msgid "" -"The curses library does \"line-breakout optimization\" by looking for " -"typeahead periodically while updating the screen. If input is found, and it " -"is coming from a tty, the current update is postponed until refresh or " -"doupdate is called again, allowing faster response to commands typed in " -"advance. This function allows specifying a different file descriptor for " -"typeahead checking." +msgid "The curses library does \"line-breakout optimization\" by looking for typeahead periodically while updating the screen. If input is found, and it is coming from a tty, the current update is postponed until refresh or doupdate is called again, allowing faster response to commands typed in advance. This function allows specifying a different file descriptor for typeahead checking." msgstr "" -#: ../../library/curses.rst:689 -msgid "" -"Return a bytes object which is a printable representation of the character " -"*ch*. Control characters are represented as a caret followed by the " -"character, for example as ``b'^C'``. Printing characters are left as they " -"are." +msgid "Return a bytes object which is a printable representation of the character *ch*. Control characters are represented as a caret followed by the character, for example as ``b'^C'``. Printing characters are left as they are." msgstr "" -#: ../../library/curses.rst:696 msgid "Push *ch* so the next :meth:`~window.getch` will return it." msgstr "" -#: ../../library/curses.rst:700 msgid "Only one *ch* can be pushed before :meth:`!getch` is called." msgstr "" -#: ../../library/curses.rst:705 -msgid "" -"Update the :const:`LINES` and :const:`COLS` module variables. Useful for " -"detecting manual screen resize." +msgid "Update the :const:`LINES` and :const:`COLS` module variables. Useful for detecting manual screen resize." msgstr "" -#: ../../library/curses.rst:713 msgid "Push *ch* so the next :meth:`~window.get_wch` will return it." msgstr "" -#: ../../library/curses.rst:717 msgid "Only one *ch* can be pushed before :meth:`!get_wch` is called." msgstr "" -#: ../../library/curses.rst:724 -msgid "" -"Push a :const:`KEY_MOUSE` event onto the input queue, associating the given " -"state data with it." +msgid "Push a :const:`KEY_MOUSE` event onto the input queue, associating the given state data with it." msgstr "" -#: ../../library/curses.rst:730 -msgid "" -"If used, this function should be called before :func:`initscr` or newterm " -"are called. When *flag* is ``False``, the values of lines and columns " -"specified in the terminfo database will be used, even if environment " -"variables :envvar:`LINES` and :envvar:`COLUMNS` (used by default) are set, " -"or if curses is running in a window (in which case default behavior would be " -"to use the window size if :envvar:`LINES` and :envvar:`COLUMNS` are not set)." +msgid "If used, this function should be called before :func:`initscr` or newterm are called. When *flag* is ``False``, the values of lines and columns specified in the terminfo database will be used, even if environment variables :envvar:`LINES` and :envvar:`COLUMNS` (used by default) are set, or if curses is running in a window (in which case default behavior would be to use the window size if :envvar:`LINES` and :envvar:`COLUMNS` are not set)." msgstr "" -#: ../../library/curses.rst:740 msgid "Equivalent to ``assume_default_colors(-1, -1)``." msgstr "" -#: ../../library/curses.rst:745 -msgid "" -"Initialize curses and call another callable object, *func*, which should be " -"the rest of your curses-using application. If the application raises an " -"exception, this function will restore the terminal to a sane state before re-" -"raising the exception and generating a traceback. The callable object " -"*func* is then passed the main window 'stdscr' as its first argument, " -"followed by any other arguments passed to :func:`!wrapper`. Before calling " -"*func*, :func:`!wrapper` turns on cbreak mode, turns off echo, enables the " -"terminal keypad, and initializes colors if the terminal has color support. " -"On exit (whether normally or by exception) it restores cooked mode, turns on " -"echo, and disables the terminal keypad." -msgstr "" - -#: ../../library/curses.rst:759 +msgid "Initialize curses and call another callable object, *func*, which should be the rest of your curses-using application. If the application raises an exception, this function will restore the terminal to a sane state before re-raising the exception and generating a traceback. The callable object *func* is then passed the main window 'stdscr' as its first argument, followed by any other arguments passed to :func:`!wrapper`. Before calling *func*, :func:`!wrapper` turns on cbreak mode, turns off echo, enables the terminal keypad, and initializes colors if the terminal has color support. On exit (whether normally or by exception) it restores cooked mode, turns on echo, and disables the terminal keypad." +msgstr "" + msgid "Window objects" msgstr "" -#: ../../library/curses.rst:763 -msgid "" -"Window objects, as returned by :func:`initscr` and :func:`newwin` above, " -"have the following methods and attributes:" +msgid "Window objects, as returned by :func:`initscr` and :func:`newwin` above, have the following methods and attributes:" msgstr "" -#: ../../library/curses.rst:770 -msgid "" -"Paint character *ch* at ``(y, x)`` with attributes *attr*, overwriting any " -"character previously painted at that location. By default, the character " -"position and attributes are the current settings for the window object." +msgid "Paint character *ch* at ``(y, x)`` with attributes *attr*, overwriting any character previously painted at that location. By default, the character position and attributes are the current settings for the window object." msgstr "" -#: ../../library/curses.rst:776 -msgid "" -"Writing outside the window, subwindow, or pad raises a :exc:`curses.error`. " -"Attempting to write to the lower-right corner of a window, subwindow, or pad " -"will cause an exception to be raised after the character is printed." +msgid "Writing outside the window, subwindow, or pad raises a :exc:`curses.error`. Attempting to write to the lower-right corner of a window, subwindow, or pad will cause an exception to be raised after the character is printed." msgstr "" -#: ../../library/curses.rst:784 -msgid "" -"Paint at most *n* characters of the character string *str* at ``(y, x)`` " -"with attributes *attr*, overwriting anything previously on the display." +msgid "Paint at most *n* characters of the character string *str* at ``(y, x)`` with attributes *attr*, overwriting anything previously on the display." msgstr "" -#: ../../library/curses.rst:792 -msgid "" -"Paint the character string *str* at ``(y, x)`` with attributes *attr*, " -"overwriting anything previously on the display." +msgid "Paint the character string *str* at ``(y, x)`` with attributes *attr*, overwriting anything previously on the display." msgstr "" -#: ../../library/curses.rst:797 -msgid "" -"Writing outside the window, subwindow, or pad raises :exc:`curses.error`. " -"Attempting to write to the lower-right corner of a window, subwindow, or pad " -"will cause an exception to be raised after the string is printed." +msgid "Writing outside the window, subwindow, or pad raises :exc:`curses.error`. Attempting to write to the lower-right corner of a window, subwindow, or pad will cause an exception to be raised after the string is printed." msgstr "" -#: ../../library/curses.rst:801 -msgid "" -"A bug in ncurses, the backend for this Python module, could cause segfaults " -"when resizing windows. This was fixed in ncurses-6.1-20190511. If you are " -"stuck with an earlier ncurses, you can avoid triggering it by not " -"calling :meth:`!addstr` with a *str* that has embedded newlines; instead, " -"call :meth:`!addstr` separately for each line." +msgid "A bug in ncurses, the backend for this Python module, could cause segfaults when resizing windows. This was fixed in ncurses-6.1-20190511. If you are stuck with an earlier ncurses, you can avoid triggering it by not calling :meth:`!addstr` with a *str* that has embedded newlines; instead, call :meth:`!addstr` separately for each line." msgstr "" -#: ../../library/curses.rst:810 -msgid "" -"Remove attribute *attr* from the \"background\" set applied to all writes to " -"the current window." +msgid "Remove attribute *attr* from the \"background\" set applied to all writes to the current window." msgstr "" -#: ../../library/curses.rst:816 -msgid "" -"Add attribute *attr* to the \"background\" set applied to all writes to the " -"current window." +msgid "Add attribute *attr* to the \"background\" set applied to all writes to the current window." msgstr "" -#: ../../library/curses.rst:822 -msgid "" -"Set the \"background\" set of attributes to *attr*. This set is initially " -"``0`` (no attributes)." +msgid "Set the \"background\" set of attributes to *attr*. This set is initially ``0`` (no attributes)." msgstr "" -#: ../../library/curses.rst:828 -msgid "" -"Set the background property of the window to the character *ch*, with " -"attributes *attr*. The change is then applied to every character position " -"in that window:" +msgid "Set the background property of the window to the character *ch*, with attributes *attr*. The change is then applied to every character position in that window:" msgstr "" -#: ../../library/curses.rst:832 -msgid "" -"The attribute of every character in the window is changed to the new " -"background attribute." +msgid "The attribute of every character in the window is changed to the new background attribute." msgstr "" -#: ../../library/curses.rst:835 -msgid "" -"Wherever the former background character appears, it is changed to the new " -"background character." +msgid "Wherever the former background character appears, it is changed to the new background character." msgstr "" -#: ../../library/curses.rst:841 -msgid "" -"Set the window's background. A window's background consists of a character " -"and any combination of attributes. The attribute part of the background is " -"combined (OR'ed) with all non-blank characters that are written into the " -"window. Both the character and attribute parts of the background are " -"combined with the blank characters. The background becomes a property of " -"the character and moves with the character through any scrolling and insert/" -"delete line/character operations." +msgid "Set the window's background. A window's background consists of a character and any combination of attributes. The attribute part of the background is combined (OR'ed) with all non-blank characters that are written into the window. Both the character and attribute parts of the background are combined with the blank characters. The background becomes a property of the character and moves with the character through any scrolling and insert/delete line/character operations." msgstr "" -#: ../../library/curses.rst:851 -msgid "" -"Draw a border around the edges of the window. Each parameter specifies the " -"character to use for a specific part of the border; see the table below for " -"more details." +msgid "Draw a border around the edges of the window. Each parameter specifies the character to use for a specific part of the border; see the table below for more details." msgstr "" -#: ../../library/curses.rst:857 -msgid "" -"A ``0`` value for any parameter will cause the default character to be used " -"for that parameter. Keyword parameters can *not* be used. The defaults are " -"listed in this table:" +msgid "A ``0`` value for any parameter will cause the default character to be used for that parameter. Keyword parameters can *not* be used. The defaults are listed in this table:" msgstr "" -#: ../../library/curses.rst:862 msgid "Parameter" msgstr "" -#: ../../library/curses.rst:862 msgid "Description" msgstr "" -#: ../../library/curses.rst:862 msgid "Default value" msgstr "" -#: ../../library/curses.rst:864 msgid "*ls*" msgstr "" -#: ../../library/curses.rst:864 msgid "Left side" msgstr "" -#: ../../library/curses.rst:864 ../../library/curses.rst:866 msgid ":const:`ACS_VLINE`" msgstr "" -#: ../../library/curses.rst:866 msgid "*rs*" msgstr "" -#: ../../library/curses.rst:866 msgid "Right side" msgstr "" -#: ../../library/curses.rst:868 msgid "*ts*" msgstr "" -#: ../../library/curses.rst:868 msgid "Top" msgstr "" -#: ../../library/curses.rst:868 ../../library/curses.rst:870 msgid ":const:`ACS_HLINE`" msgstr "" -#: ../../library/curses.rst:870 msgid "*bs*" msgstr "" -#: ../../library/curses.rst:870 msgid "Bottom" msgstr "" -#: ../../library/curses.rst:872 msgid "*tl*" msgstr "" -#: ../../library/curses.rst:872 msgid "Upper-left corner" msgstr "" -#: ../../library/curses.rst:872 msgid ":const:`ACS_ULCORNER`" msgstr "" -#: ../../library/curses.rst:874 msgid "*tr*" msgstr "" -#: ../../library/curses.rst:874 msgid "Upper-right corner" msgstr "" -#: ../../library/curses.rst:874 msgid ":const:`ACS_URCORNER`" msgstr "" -#: ../../library/curses.rst:876 msgid "*bl*" msgstr "" -#: ../../library/curses.rst:876 msgid "Bottom-left corner" msgstr "" -#: ../../library/curses.rst:876 msgid ":const:`ACS_LLCORNER`" msgstr "" -#: ../../library/curses.rst:878 msgid "*br*" msgstr "" -#: ../../library/curses.rst:878 msgid "Bottom-right corner" msgstr "" -#: ../../library/curses.rst:878 msgid ":const:`ACS_LRCORNER`" msgstr "" -#: ../../library/curses.rst:884 -msgid "" -"Similar to :meth:`border`, but both *ls* and *rs* are *vertch* and both *ts* " -"and *bs* are *horch*. The default corner characters are always used by this " -"function." +msgid "Similar to :meth:`border`, but both *ls* and *rs* are *vertch* and both *ts* and *bs* are *horch*. The default corner characters are always used by this function." msgstr "" -#: ../../library/curses.rst:893 -msgid "" -"Set the attributes of *num* characters at the current cursor position, or at " -"position ``(y, x)`` if supplied. If *num* is not given or is ``-1``, the " -"attribute will be set on all the characters to the end of the line. This " -"function moves cursor to position ``(y, x)`` if supplied. The changed line " -"will be touched using the :meth:`touchline` method so that the contents will " -"be redisplayed by the next window refresh." +msgid "Set the attributes of *num* characters at the current cursor position, or at position ``(y, x)`` if supplied. If *num* is not given or is ``-1``, the attribute will be set on all the characters to the end of the line. This function moves cursor to position ``(y, x)`` if supplied. The changed line will be touched using the :meth:`touchline` method so that the contents will be redisplayed by the next window refresh." msgstr "" -#: ../../library/curses.rst:903 -msgid "" -"Like :meth:`erase`, but also cause the whole window to be repainted upon " -"next call to :meth:`refresh`." +msgid "Like :meth:`erase`, but also cause the whole window to be repainted upon next call to :meth:`refresh`." msgstr "" -#: ../../library/curses.rst:909 -msgid "" -"If *flag* is ``True``, the next call to :meth:`refresh` will clear the " -"window completely." +msgid "If *flag* is ``True``, the next call to :meth:`refresh` will clear the window completely." msgstr "" -#: ../../library/curses.rst:915 -msgid "" -"Erase from cursor to the end of the window: all lines below the cursor are " -"deleted, and then the equivalent of :meth:`clrtoeol` is performed." +msgid "Erase from cursor to the end of the window: all lines below the cursor are deleted, and then the equivalent of :meth:`clrtoeol` is performed." msgstr "" -#: ../../library/curses.rst:921 msgid "Erase from cursor to the end of the line." msgstr "" -#: ../../library/curses.rst:926 -msgid "" -"Update the current cursor position of all the ancestors of the window to " -"reflect the current cursor position of the window." +msgid "Update the current cursor position of all the ancestors of the window to reflect the current cursor position of the window." msgstr "" -#: ../../library/curses.rst:932 -msgid "" -"Delete the character under the cursor, or at ``(y, x)`` if specified. All " -"characters to the right on the same line are shifted one position left." +msgid "Delete the character under the cursor, or at ``(y, x)`` if specified. All characters to the right on the same line are shifted one position left." msgstr "" -#: ../../library/curses.rst:938 -msgid "" -"Delete the line under the cursor. All following lines are moved up by one " -"line." +msgid "Delete the line under the cursor. All following lines are moved up by one line." msgstr "" -#: ../../library/curses.rst:944 -msgid "" -"An abbreviation for \"derive window\", :meth:`derwin` is the same as " -"calling :meth:`subwin`, except that *begin_y* and *begin_x* are relative to " -"the origin of the window, rather than relative to the entire screen. Return " -"a window object for the derived window." +msgid "An abbreviation for \"derive window\", :meth:`derwin` is the same as calling :meth:`subwin`, except that *begin_y* and *begin_x* are relative to the origin of the window, rather than relative to the entire screen. Return a window object for the derived window." msgstr "" -#: ../../library/curses.rst:952 -msgid "" -"Add character *ch* with attribute *attr*, and immediately " -"call :meth:`refresh` on the window." +msgid "Add character *ch* with attribute *attr*, and immediately call :meth:`refresh` on the window." msgstr "" -#: ../../library/curses.rst:958 -msgid "" -"Test whether the given pair of screen-relative character-cell coordinates " -"are enclosed by the given window, returning ``True`` or ``False``. It is " -"useful for determining what subset of the screen windows enclose the " -"location of a mouse event." +msgid "Test whether the given pair of screen-relative character-cell coordinates are enclosed by the given window, returning ``True`` or ``False``. It is useful for determining what subset of the screen windows enclose the location of a mouse event." msgstr "" -#: ../../library/curses.rst:963 msgid "Previously it returned ``1`` or ``0`` instead of ``True`` or ``False``." msgstr "" -#: ../../library/curses.rst:969 -msgid "" -"Encoding used to encode method arguments (Unicode strings and characters). " -"The encoding attribute is inherited from the parent window when a subwindow " -"is created, for example with :meth:`window.subwin`. By default, current " -"locale encoding is used (see :func:`locale.getencoding`)." +msgid "Encoding used to encode method arguments (Unicode strings and characters). The encoding attribute is inherited from the parent window when a subwindow is created, for example with :meth:`window.subwin`. By default, current locale encoding is used (see :func:`locale.getencoding`)." msgstr "" -#: ../../library/curses.rst:979 msgid "Clear the window." msgstr "" -#: ../../library/curses.rst:984 msgid "Return a tuple ``(y, x)`` of coordinates of upper-left corner." msgstr "" -#: ../../library/curses.rst:989 -msgid "" -"Return the given window's current background character/attribute pair. Its " -"components can be extracted like those of :meth:`inch`." +msgid "Return the given window's current background character/attribute pair. Its components can be extracted like those of :meth:`inch`." msgstr "" -#: ../../library/curses.rst:995 -msgid "" -"Get a character. Note that the integer returned does *not* have to be in " -"ASCII range: function keys, keypad keys and so on are represented by numbers " -"higher than 255. In no-delay mode, return ``-1`` if there is no input, " -"otherwise wait until a key is pressed." +msgid "Get a character. Note that the integer returned does *not* have to be in ASCII range: function keys, keypad keys and so on are represented by numbers higher than 255. In no-delay mode, return ``-1`` if there is no input, otherwise wait until a key is pressed." msgstr "" -#: ../../library/curses.rst:1003 -msgid "" -"Get a wide character. Return a character for most keys, or an integer for " -"function keys, keypad keys, and other special keys. In no-delay mode, raise " -"an exception if there is no input." +msgid "Get a wide character. Return a character for most keys, or an integer for function keys, keypad keys, and other special keys. In no-delay mode, raise an exception if there is no input." msgstr "" -#: ../../library/curses.rst:1012 -msgid "" -"Get a character, returning a string instead of an integer, as :meth:`getch` " -"does. Function keys, keypad keys and other special keys return a multibyte " -"string containing the key name. In no-delay mode, raise an exception if " -"there is no input." +msgid "Get a character, returning a string instead of an integer, as :meth:`getch` does. Function keys, keypad keys and other special keys return a multibyte string containing the key name. In no-delay mode, raise an exception if there is no input." msgstr "" -#: ../../library/curses.rst:1020 msgid "Return a tuple ``(y, x)`` of the height and width of the window." msgstr "" -#: ../../library/curses.rst:1025 -msgid "" -"Return the beginning coordinates of this window relative to its parent " -"window as a tuple ``(y, x)``. Return ``(-1, -1)`` if this window has no " -"parent." +msgid "Return the beginning coordinates of this window relative to its parent window as a tuple ``(y, x)``. Return ``(-1, -1)`` if this window has no parent." msgstr "" -#: ../../library/curses.rst:1035 -msgid "" -"Read a bytes object from the user, with primitive line editing capacity. At " -"most *n* characters are read; *n* defaults to and cannot exceed 2047." +msgid "Read a bytes object from the user, with primitive line editing capacity. At most *n* characters are read; *n* defaults to and cannot exceed 2047." msgstr "" -#: ../../library/curses.rst:1039 ../../library/curses.rst:1145 msgid "The maximum value for *n* was increased from 1023 to 2047." msgstr "" -#: ../../library/curses.rst:1045 -msgid "" -"Return a tuple ``(y, x)`` of current cursor position relative to the " -"window's upper-left corner." +msgid "Return a tuple ``(y, x)`` of current cursor position relative to the window's upper-left corner." msgstr "" -#: ../../library/curses.rst:1052 -msgid "" -"Display a horizontal line starting at ``(y, x)`` with length *n* consisting " -"of the character *ch* with attributes *attr*. The line stops at the right " -"edge of the window if fewer than *n* cells are available." +msgid "Display a horizontal line starting at ``(y, x)`` with length *n* consisting of the character *ch* with attributes *attr*. The line stops at the right edge of the window if fewer than *n* cells are available." msgstr "" -#: ../../library/curses.rst:1059 -msgid "" -"If *flag* is ``False``, curses no longer considers using the hardware insert/" -"delete character feature of the terminal; if *flag* is ``True``, use of " -"character insertion and deletion is enabled. When curses is first " -"initialized, use of character insert/delete is enabled by default." +msgid "If *flag* is ``False``, curses no longer considers using the hardware insert/delete character feature of the terminal; if *flag* is ``True``, use of character insertion and deletion is enabled. When curses is first initialized, use of character insert/delete is enabled by default." msgstr "" -#: ../../library/curses.rst:1067 -msgid "" -"If *flag* is ``True``, :mod:`!curses` will try to use hardware line editing " -"facilities. Otherwise, curses will not use them." +msgid "If *flag* is ``True``, :mod:`!curses` will try to use hardware line editing facilities. Otherwise, curses will not use them." msgstr "" -#: ../../library/curses.rst:1073 -msgid "" -"If *flag* is ``True``, any change in the window image automatically causes " -"the window to be refreshed; you no longer have to call :meth:`refresh` " -"yourself. However, it may degrade performance considerably, due to repeated " -"calls to wrefresh. This option is disabled by default." +msgid "If *flag* is ``True``, any change in the window image automatically causes the window to be refreshed; you no longer have to call :meth:`refresh` yourself. However, it may degrade performance considerably, due to repeated calls to wrefresh. This option is disabled by default." msgstr "" -#: ../../library/curses.rst:1081 -msgid "" -"Return the character at the given position in the window. The bottom 8 bits " -"are the character proper and the upper bits are the attributes; extract them " -"with the :data:`A_CHARTEXT` and :data:`A_ATTRIBUTES` bit-masks, and the " -"color pair with :func:`pair_number`. The character byte is the locale-" -"encoded byte of the cell's character, consistent with :meth:`instr`. On a " -"wide-character build, a character that does not fit in a single byte in the " -"current locale has a character byte of ``0``; use :meth:`instr` to read such " -"characters." +msgid "Return the character at the given position in the window. The bottom 8 bits are the character proper and the upper bits are the attributes; extract them with the :data:`A_CHARTEXT` and :data:`A_ATTRIBUTES` bit-masks, and the color pair with :func:`pair_number`. The character byte is the locale-encoded byte of the cell's character, consistent with :meth:`instr`. On a wide-character build, a character that does not fit in a single byte in the current locale has a character byte of ``0``; use :meth:`instr` to read such characters." msgstr "" -#: ../../library/curses.rst:1095 -msgid "" -"Insert character *ch* with attributes *attr* before the character under the " -"cursor, or at ``(y, x)`` if specified. All characters to the right of the " -"cursor are shifted one position right, with the rightmost character on the " -"line being lost. The cursor position does not change." +msgid "Insert character *ch* with attributes *attr* before the character under the cursor, or at ``(y, x)`` if specified. All characters to the right of the cursor are shifted one position right, with the rightmost character on the line being lost. The cursor position does not change." msgstr "" -#: ../../library/curses.rst:1103 -msgid "" -"Insert *nlines* lines into the specified window above the current line. The " -"*nlines* bottom lines are lost. For negative *nlines*, delete *nlines* " -"lines starting with the one under the cursor, and move the remaining lines " -"up. The bottom *nlines* lines are cleared. The current cursor position " -"remains the same." +msgid "Insert *nlines* lines into the specified window above the current line. The *nlines* bottom lines are lost. For negative *nlines*, delete *nlines* lines starting with the one under the cursor, and move the remaining lines up. The bottom *nlines* lines are cleared. The current cursor position remains the same." msgstr "" -#: ../../library/curses.rst:1112 -msgid "" -"Insert a blank line under the cursor. All following lines are moved down by " -"one line." +msgid "Insert a blank line under the cursor. All following lines are moved down by one line." msgstr "" -#: ../../library/curses.rst:1119 -msgid "" -"Insert a character string (as many characters as will fit on the line) " -"before the character under the cursor, up to *n* characters. If *n* is " -"zero or negative, the entire string is inserted. All characters to the right " -"of the cursor are shifted right, with the rightmost characters on the line " -"being lost. The cursor position does not change (after moving to *y*, *x*, " -"if specified)." +msgid "Insert a character string (as many characters as will fit on the line) before the character under the cursor, up to *n* characters. If *n* is zero or negative, the entire string is inserted. All characters to the right of the cursor are shifted right, with the rightmost characters on the line being lost. The cursor position does not change (after moving to *y*, *x*, if specified)." msgstr "" -#: ../../library/curses.rst:1129 -msgid "" -"Insert a character string (as many characters as will fit on the line) " -"before the character under the cursor. All characters to the right of the " -"cursor are shifted right, with the rightmost characters on the line being " -"lost. The cursor position does not change (after moving to *y*, *x*, if " -"specified)." +msgid "Insert a character string (as many characters as will fit on the line) before the character under the cursor. All characters to the right of the cursor are shifted right, with the rightmost characters on the line being lost. The cursor position does not change (after moving to *y*, *x*, if specified)." msgstr "" -#: ../../library/curses.rst:1138 -msgid "" -"Return a bytes object of characters, extracted from the window starting at " -"the current cursor position, or at *y*, *x* if specified, and stopping at " -"the end of the line. Attributes and color information are stripped from the " -"characters. If *n* is specified, :meth:`instr` returns a string at most *n* " -"characters long (exclusive of the trailing NUL). The maximum value for *n* " -"is 2047." +msgid "Return a bytes object of characters, extracted from the window starting at the current cursor position, or at *y*, *x* if specified, and stopping at the end of the line. Attributes and color information are stripped from the characters. If *n* is specified, :meth:`instr` returns a string at most *n* characters long (exclusive of the trailing NUL). The maximum value for *n* is 2047." msgstr "" -#: ../../library/curses.rst:1151 -msgid "" -"Return ``True`` if the specified line was modified since the last call " -"to :meth:`refresh`; otherwise return ``False``. Raise a :exc:`curses.error` " -"exception if *line* is not valid for the given window." +msgid "Return ``True`` if the specified line was modified since the last call to :meth:`refresh`; otherwise return ``False``. Raise a :exc:`curses.error` exception if *line* is not valid for the given window." msgstr "" -#: ../../library/curses.rst:1158 -msgid "" -"Return ``True`` if the specified window was modified since the last call " -"to :meth:`refresh`; otherwise return ``False``." +msgid "Return ``True`` if the specified window was modified since the last call to :meth:`refresh`; otherwise return ``False``." msgstr "" -#: ../../library/curses.rst:1164 -msgid "" -"If *flag* is ``True``, escape sequences generated by some keys (keypad, " -"function keys) will be interpreted by :mod:`!curses`. If *flag* is " -"``False``, escape sequences will be left as is in the input stream." +msgid "If *flag* is ``True``, escape sequences generated by some keys (keypad, function keys) will be interpreted by :mod:`!curses`. If *flag* is ``False``, escape sequences will be left as is in the input stream." msgstr "" -#: ../../library/curses.rst:1171 -msgid "" -"If *flag* is ``True``, cursor is left where it is on update, instead of " -"being at \"cursor position.\" This reduces cursor movement where possible." +msgid "If *flag* is ``True``, cursor is left where it is on update, instead of being at \"cursor position.\" This reduces cursor movement where possible." msgstr "" -#: ../../library/curses.rst:1174 -msgid "" -"If *flag* is ``False``, cursor will always be at \"cursor position\" after " -"an update." +msgid "If *flag* is ``False``, cursor will always be at \"cursor position\" after an update." msgstr "" -#: ../../library/curses.rst:1179 msgid "Move cursor to ``(new_y, new_x)``." msgstr "" -#: ../../library/curses.rst:1184 -msgid "" -"Move the window inside its parent window. The screen-relative parameters of " -"the window are not changed. This routine is used to display different parts " -"of the parent window at the same physical position on the screen." +msgid "Move the window inside its parent window. The screen-relative parameters of the window are not changed. This routine is used to display different parts of the parent window at the same physical position on the screen." msgstr "" -#: ../../library/curses.rst:1191 msgid "Move the window so its upper-left corner is at ``(new_y, new_x)``." msgstr "" -#: ../../library/curses.rst:1193 -msgid "" -"Moving the window so that any part of it would be off the screen is an " -"error: the window is not moved and :exc:`curses.error` is raised." +msgid "Moving the window so that any part of it would be off the screen is an error: the window is not moved and :exc:`curses.error` is raised." msgstr "" -#: ../../library/curses.rst:1199 msgid "If *flag* is ``True``, :meth:`getch` will be non-blocking." msgstr "" -#: ../../library/curses.rst:1204 msgid "If *flag* is ``True``, escape sequences will not be timed out." msgstr "" -#: ../../library/curses.rst:1206 -msgid "" -"If *flag* is ``False``, after a few milliseconds, an escape sequence will " -"not be interpreted, and will be left in the input stream as is." +msgid "If *flag* is ``False``, after a few milliseconds, an escape sequence will not be interpreted, and will be left in the input stream as is." msgstr "" -#: ../../library/curses.rst:1213 -msgid "" -"Mark for refresh but wait. This function updates the data structure " -"representing the desired state of the window, but does not force an update " -"of the physical screen. To accomplish that, call :func:`doupdate`." +msgid "Mark for refresh but wait. This function updates the data structure representing the desired state of the window, but does not force an update of the physical screen. To accomplish that, call :func:`doupdate`." msgstr "" -#: ../../library/curses.rst:1217 -msgid "" -"The 6 arguments can only be specified, and are then required, when the " -"window is a pad created with :func:`newpad`; they have the same meaning as " -"for :meth:`refresh`." +msgid "The 6 arguments can only be specified, and are then required, when the window is a pad created with :func:`newpad`; they have the same meaning as for :meth:`refresh`." msgstr "" -#: ../../library/curses.rst:1224 -msgid "" -"Overlay the window on top of *destwin*. The windows need not be the same " -"size, only the overlapping region is copied. This copy is non-destructive, " -"which means that the current background character does not overwrite the old " -"contents of *destwin*." +msgid "Overlay the window on top of *destwin*. The windows need not be the same size, only the overlapping region is copied. This copy is non-destructive, which means that the current background character does not overwrite the old contents of *destwin*." msgstr "" -#: ../../library/curses.rst:1229 -msgid "" -"To get fine-grained control over the copied region, the second form " -"of :meth:`overlay` can be used. *sminrow* and *smincol* are the upper-left " -"coordinates of the source window, and the other variables mark a rectangle " -"in the destination window." +msgid "To get fine-grained control over the copied region, the second form of :meth:`overlay` can be used. *sminrow* and *smincol* are the upper-left coordinates of the source window, and the other variables mark a rectangle in the destination window." msgstr "" -#: ../../library/curses.rst:1237 -msgid "" -"Overwrite the window on top of *destwin*. The windows need not be the same " -"size, in which case only the overlapping region is copied. This copy is " -"destructive, which means that the current background character overwrites " -"the old contents of *destwin*." +msgid "Overwrite the window on top of *destwin*. The windows need not be the same size, in which case only the overlapping region is copied. This copy is destructive, which means that the current background character overwrites the old contents of *destwin*." msgstr "" -#: ../../library/curses.rst:1242 -msgid "" -"To get fine-grained control over the copied region, the second form " -"of :meth:`overwrite` can be used. *sminrow* and *smincol* are the upper-left " -"coordinates of the source window, the other variables mark a rectangle in " -"the destination window." +msgid "To get fine-grained control over the copied region, the second form of :meth:`overwrite` can be used. *sminrow* and *smincol* are the upper-left coordinates of the source window, the other variables mark a rectangle in the destination window." msgstr "" -#: ../../library/curses.rst:1250 -msgid "" -"Write all data associated with the window into the provided file object. " -"This information can be later retrieved using the :func:`getwin` function." +msgid "Write all data associated with the window into the provided file object. This information can be later retrieved using the :func:`getwin` function." msgstr "" -#: ../../library/curses.rst:1256 -msgid "" -"Indicate that the *num* screen lines, starting at line *beg*, are corrupted " -"and should be completely redrawn on the next :meth:`refresh` call." +msgid "Indicate that the *num* screen lines, starting at line *beg*, are corrupted and should be completely redrawn on the next :meth:`refresh` call." msgstr "" -#: ../../library/curses.rst:1262 -msgid "" -"Touch the entire window, causing it to be completely redrawn on the " -"next :meth:`refresh` call." +msgid "Touch the entire window, causing it to be completely redrawn on the next :meth:`refresh` call." msgstr "" -#: ../../library/curses.rst:1268 -msgid "" -"Update the display immediately (sync actual screen with previous drawing/" -"deleting methods)." +msgid "Update the display immediately (sync actual screen with previous drawing/deleting methods)." msgstr "" -#: ../../library/curses.rst:1271 -msgid "" -"The 6 arguments can only be specified, and are then required, when the " -"window is a pad created with :func:`newpad`. The additional parameters are " -"needed to indicate what part of the pad and screen are involved. *pminrow* " -"and *pmincol* specify the upper-left corner of the rectangle to be displayed " -"in the pad. *sminrow*, *smincol*, *smaxrow*, and *smaxcol* specify the " -"edges of the rectangle to be displayed on the screen. The lower-right " -"corner of the rectangle to be displayed in the pad is calculated from the " -"screen coordinates, since the rectangles must be the same size. Both " -"rectangles must be entirely contained within their respective structures. " -"Negative values of *pminrow*, *pmincol*, *sminrow*, or *smincol* are treated " -"as if they were zero." -msgstr "" - -#: ../../library/curses.rst:1285 -msgid "" -"Reallocate storage for a curses window to adjust its dimensions to the " -"specified values. If either dimension is larger than the current values, " -"the window's data is filled with blanks that have the current background " -"rendition (as set by :meth:`bkgdset`) merged into them." +msgid "The 6 arguments can only be specified, and are then required, when the window is a pad created with :func:`newpad`. The additional parameters are needed to indicate what part of the pad and screen are involved. *pminrow* and *pmincol* specify the upper-left corner of the rectangle to be displayed in the pad. *sminrow*, *smincol*, *smaxrow*, and *smaxcol* specify the edges of the rectangle to be displayed on the screen. The lower-right corner of the rectangle to be displayed in the pad is calculated from the screen coordinates, since the rectangles must be the same size. Both rectangles must be entirely contained within their respective structures. Negative values of *pminrow*, *pmincol*, *sminrow*, or *smincol* are treated as if they were zero." msgstr "" -#: ../../library/curses.rst:1293 -msgid "" -"Scroll the screen or scrolling region. Scroll upward by *lines* lines if " -"*lines* is positive, or downward if it is negative. Scrolling has no effect " -"unless it has been enabled for the window with :meth:`scrollok`." +msgid "Reallocate storage for a curses window to adjust its dimensions to the specified values. If either dimension is larger than the current values, the window's data is filled with blanks that have the current background rendition (as set by :meth:`bkgdset`) merged into them." msgstr "" -#: ../../library/curses.rst:1300 -msgid "" -"Control what happens when the cursor of a window is moved off the edge of " -"the window or scrolling region, either as a result of a newline action on " -"the bottom line, or typing the last character of the last line. If *flag* " -"is ``False``, the cursor is left on the bottom line. If *flag* is ``True``, " -"the window is scrolled up one line. Note that in order to get the physical " -"scrolling effect on the terminal, it is also necessary to call :meth:`idlok`." +msgid "Scroll the screen or scrolling region. Scroll upward by *lines* lines if *lines* is positive, or downward if it is negative. Scrolling has no effect unless it has been enabled for the window with :meth:`scrollok`." msgstr "" -#: ../../library/curses.rst:1310 -msgid "" -"Set the scrolling region from line *top* to line *bottom*. All scrolling " -"actions will take place in this region." +msgid "Control what happens when the cursor of a window is moved off the edge of the window or scrolling region, either as a result of a newline action on the bottom line, or typing the last character of the last line. If *flag* is ``False``, the cursor is left on the bottom line. If *flag* is ``True``, the window is scrolled up one line. Note that in order to get the physical scrolling effect on the terminal, it is also necessary to call :meth:`idlok`." msgstr "" -#: ../../library/curses.rst:1316 -msgid "" -"Turn off the standout attribute. On some terminals this has the side effect " -"of turning off all attributes." +msgid "Set the scrolling region from line *top* to line *bottom*. All scrolling actions will take place in this region." +msgstr "" + +msgid "Turn off the standout attribute. On some terminals this has the side effect of turning off all attributes." msgstr "" -#: ../../library/curses.rst:1322 msgid "Turn on attribute *A_STANDOUT*." msgstr "" -#: ../../library/curses.rst:1328 -msgid "" -"Return a sub-pad, whose upper-left corner is at ``(begin_y, begin_x)``, and " -"whose width/height is *ncols*/*nlines*. The coordinates are relative to the " -"parent pad (unlike :meth:`subwin`, which uses screen coordinates). This " -"method is only available for pads created with :func:`newpad`." +msgid "Return a sub-pad, whose upper-left corner is at ``(begin_y, begin_x)``, and whose width/height is *ncols*/*nlines*. The coordinates are relative to the parent pad (unlike :meth:`subwin`, which uses screen coordinates). This method is only available for pads created with :func:`newpad`." msgstr "" -#: ../../library/curses.rst:1337 -msgid "" -"Return a sub-window, whose upper-left corner is at the screen-relative " -"coordinates ``(begin_y, begin_x)``, and whose width/height is *ncols*/" -"*nlines*." +msgid "Return a sub-window, whose upper-left corner is at the screen-relative coordinates ``(begin_y, begin_x)``, and whose width/height is *ncols*/*nlines*." msgstr "" -#: ../../library/curses.rst:1340 -msgid "" -"By default, the sub-window will extend from the specified position to the " -"lower right corner of the window." +msgid "By default, the sub-window will extend from the specified position to the lower right corner of the window." msgstr "" -#: ../../library/curses.rst:1346 -msgid "" -"Touch each location in the window that has been touched in any of its " -"ancestor windows. This routine is called by :meth:`refresh`, so it should " -"almost never be necessary to call it manually." +msgid "Touch each location in the window that has been touched in any of its ancestor windows. This routine is called by :meth:`refresh`, so it should almost never be necessary to call it manually." msgstr "" -#: ../../library/curses.rst:1353 -msgid "" -"If *flag* is ``True``, then :meth:`syncup` is called automatically whenever " -"there is a change in the window." +msgid "If *flag* is ``True``, then :meth:`syncup` is called automatically whenever there is a change in the window." msgstr "" -#: ../../library/curses.rst:1359 -msgid "" -"Touch all locations in ancestors of the window that have been changed in " -"the window." +msgid "Touch all locations in ancestors of the window that have been changed in the window." msgstr "" -#: ../../library/curses.rst:1365 -msgid "" -"Set blocking or non-blocking read behavior for the window. If *delay* is " -"negative, blocking read is used (which will wait indefinitely for input). " -"If *delay* is zero, then non-blocking read is used, and :meth:`getch` will " -"return ``-1`` if no input is waiting. If *delay* is positive, " -"then :meth:`getch` will block for *delay* milliseconds, and return ``-1`` if " -"there is still no input at the end of that time." +msgid "Set blocking or non-blocking read behavior for the window. If *delay* is negative, blocking read is used (which will wait indefinitely for input). If *delay* is zero, then non-blocking read is used, and :meth:`getch` will return ``-1`` if no input is waiting. If *delay* is positive, then :meth:`getch` will block for *delay* milliseconds, and return ``-1`` if there is still no input at the end of that time." msgstr "" -#: ../../library/curses.rst:1375 -msgid "" -"Pretend *count* lines have been changed, starting with line *start*. If " -"*changed* is supplied, it specifies whether the affected lines are marked as " -"having been changed (*changed*\\ ``=True``) or unchanged (*changed*\\ " -"``=False``)." +msgid "Pretend *count* lines have been changed, starting with line *start*. If *changed* is supplied, it specifies whether the affected lines are marked as having been changed (*changed*\\ ``=True``) or unchanged (*changed*\\ ``=False``)." msgstr "" -#: ../../library/curses.rst:1382 -msgid "" -"Pretend the whole window has been changed, for purposes of drawing " -"optimizations." +msgid "Pretend the whole window has been changed, for purposes of drawing optimizations." msgstr "" -#: ../../library/curses.rst:1388 -msgid "" -"Mark all lines in the window as unchanged since the last call " -"to :meth:`refresh`." +msgid "Mark all lines in the window as unchanged since the last call to :meth:`refresh`." msgstr "" -#: ../../library/curses.rst:1395 -msgid "" -"Display a vertical line starting at ``(y, x)`` with length *n* consisting of " -"the character *ch* with attributes *attr*." +msgid "Display a vertical line starting at ``(y, x)`` with length *n* consisting of the character *ch* with attributes *attr*." msgstr "" -#: ../../library/curses.rst:1400 msgid "Constants" msgstr "" -#: ../../library/curses.rst:1402 msgid "The :mod:`!curses` module defines the following data members:" msgstr "" -#: ../../library/curses.rst:1407 -msgid "" -"Some curses routines that return an integer, such " -"as :meth:`~window.getch`, return :const:`ERR` upon failure." +msgid "Some curses routines that return an integer, such as :meth:`~window.getch`, return :const:`ERR` upon failure." msgstr "" -#: ../../library/curses.rst:1413 -msgid "" -"Some curses routines that return an integer, such as :func:`napms`, " -"return :const:`OK` upon success." +msgid "Some curses routines that return an integer, such as :func:`napms`, return :const:`OK` upon success." msgstr "" -#: ../../library/curses.rst:1419 msgid "A bytes object representing the current version of the module." msgstr "" -#: ../../library/curses.rst:1424 -msgid "" -"A named tuple containing the three components of the ncurses library " -"version: *major*, *minor*, and *patch*. All values are integers. The " -"components can also be accessed by name, so ``curses.ncurses_version[0]`` " -"is equivalent to ``curses.ncurses_version.major`` and so on." +msgid "A named tuple containing the three components of the ncurses library version: *major*, *minor*, and *patch*. All values are integers. The components can also be accessed by name, so ``curses.ncurses_version[0]`` is equivalent to ``curses.ncurses_version.major`` and so on." msgstr "" -#: ../../library/curses.rst:1429 msgid "Availability: if the ncurses library is used." msgstr "" -#: ../../library/curses.rst:1435 -msgid "" -"The maximum number of colors the terminal can support. It is defined only " -"after the call to :func:`start_color`." +msgid "The maximum number of colors the terminal can support. It is defined only after the call to :func:`start_color`." msgstr "" -#: ../../library/curses.rst:1440 -msgid "" -"The maximum number of color pairs the terminal can support. It is defined " -"only after the call to :func:`start_color`." +msgid "The maximum number of color pairs the terminal can support. It is defined only after the call to :func:`start_color`." msgstr "" -#: ../../library/curses.rst:1445 -msgid "" -"The width of the screen, that is, the number of columns. It is defined only " -"after the call to :func:`initscr`. Updated " -"by :func:`update_lines_cols`, :func:`resizeterm` and :func:`resize_term`." +msgid "The width of the screen, that is, the number of columns. It is defined only after the call to :func:`initscr`. Updated by :func:`update_lines_cols`, :func:`resizeterm` and :func:`resize_term`." msgstr "" -#: ../../library/curses.rst:1452 -msgid "" -"The height of the screen, that is, the number of lines. It is defined only " -"after the call to :func:`initscr`. Updated " -"by :func:`update_lines_cols`, :func:`resizeterm` and :func:`resize_term`." +msgid "The height of the screen, that is, the number of lines. It is defined only after the call to :func:`initscr`. Updated by :func:`update_lines_cols`, :func:`resizeterm` and :func:`resize_term`." msgstr "" -#: ../../library/curses.rst:1458 -msgid "" -"Some constants are available to specify character cell attributes. The exact " -"constants available are system dependent." +msgid "Some constants are available to specify character cell attributes. The exact constants available are system dependent." msgstr "" -#: ../../library/curses.rst:1462 msgid "Attribute" msgstr "" -#: ../../library/curses.rst:1462 ../../library/curses.rst:1507 -#: ../../library/curses.rst:1753 ../../library/curses.rst:1845 msgid "Meaning" msgstr "" -#: ../../library/curses.rst:1464 msgid "Alternate character set mode" msgstr "" -#: ../../library/curses.rst:1466 msgid "Blink mode" msgstr "" -#: ../../library/curses.rst:1468 msgid "Bold mode" msgstr "" -#: ../../library/curses.rst:1470 msgid "Dim mode" msgstr "" -#: ../../library/curses.rst:1472 msgid "Invisible or blank mode" msgstr "" -#: ../../library/curses.rst:1474 msgid "Italic mode" msgstr "" -#: ../../library/curses.rst:1476 msgid "Normal attribute" msgstr "" -#: ../../library/curses.rst:1478 msgid "Protected mode" msgstr "" -#: ../../library/curses.rst:1480 msgid "Reverse background and foreground colors" msgstr "" -#: ../../library/curses.rst:1483 msgid "Standout mode" msgstr "" -#: ../../library/curses.rst:1485 msgid "Underline mode" msgstr "" -#: ../../library/curses.rst:1487 msgid "Horizontal highlight" msgstr "" -#: ../../library/curses.rst:1489 msgid "Left highlight" msgstr "" -#: ../../library/curses.rst:1491 msgid "Low highlight" msgstr "" -#: ../../library/curses.rst:1493 msgid "Right highlight" msgstr "" -#: ../../library/curses.rst:1495 msgid "Top highlight" msgstr "" -#: ../../library/curses.rst:1497 msgid "Vertical highlight" msgstr "" -#: ../../library/curses.rst:1500 msgid "``A_ITALIC`` was added." msgstr "" -#: ../../library/curses.rst:1503 -msgid "" -"Several constants are available to extract corresponding attributes returned " -"by some methods." +msgid "Several constants are available to extract corresponding attributes returned by some methods." msgstr "" -#: ../../library/curses.rst:1507 msgid "Bit-mask" msgstr "" -#: ../../library/curses.rst:1509 msgid "Bit-mask to extract attributes" msgstr "" -#: ../../library/curses.rst:1512 msgid "Bit-mask to extract a character" msgstr "" -#: ../../library/curses.rst:1515 msgid "Bit-mask to extract color-pair field information" msgstr "" -#: ../../library/curses.rst:1519 -msgid "" -"Keys are referred to by integer constants with names starting with " -"``KEY_``. The exact keycaps available are system dependent." +msgid "Keys are referred to by integer constants with names starting with ``KEY_``. The exact keycaps available are system dependent." msgstr "" -#: ../../library/curses.rst:1525 msgid "Key constant" msgstr "" -#: ../../library/curses.rst:1525 msgid "Key" msgstr "" -#: ../../library/curses.rst:1527 msgid "Minimum key value" msgstr "" -#: ../../library/curses.rst:1529 msgid "Break key (unreliable)" msgstr "" -#: ../../library/curses.rst:1531 msgid "Down-arrow" msgstr "" -#: ../../library/curses.rst:1533 msgid "Up-arrow" msgstr "" -#: ../../library/curses.rst:1535 msgid "Left-arrow" msgstr "" -#: ../../library/curses.rst:1537 msgid "Right-arrow" msgstr "" -#: ../../library/curses.rst:1539 msgid "Home key (upward+left arrow)" msgstr "" -#: ../../library/curses.rst:1541 msgid "Backspace (unreliable)" msgstr "" -#: ../../library/curses.rst:1543 msgid "Function keys. Up to 64 function keys are supported." msgstr "" -#: ../../library/curses.rst:1546 msgid "Value of function key *n*" msgstr "" -#: ../../library/curses.rst:1548 msgid "Delete line" msgstr "" -#: ../../library/curses.rst:1550 msgid "Insert line" msgstr "" -#: ../../library/curses.rst:1552 msgid "Delete character" msgstr "" -#: ../../library/curses.rst:1554 msgid "Insert char or enter insert mode" msgstr "" -#: ../../library/curses.rst:1556 msgid "Exit insert char mode" msgstr "" -#: ../../library/curses.rst:1558 msgid "Clear screen" msgstr "" -#: ../../library/curses.rst:1560 msgid "Clear to end of screen" msgstr "" -#: ../../library/curses.rst:1562 msgid "Clear to end of line" msgstr "" -#: ../../library/curses.rst:1564 msgid "Scroll 1 line forward" msgstr "" -#: ../../library/curses.rst:1566 msgid "Scroll 1 line backward (reverse)" msgstr "" -#: ../../library/curses.rst:1568 msgid "Next page" msgstr "" -#: ../../library/curses.rst:1570 msgid "Previous page" msgstr "" -#: ../../library/curses.rst:1572 msgid "Set tab" msgstr "" -#: ../../library/curses.rst:1574 msgid "Clear tab" msgstr "" -#: ../../library/curses.rst:1576 msgid "Clear all tabs" msgstr "" -#: ../../library/curses.rst:1578 msgid "Enter or send (unreliable)" msgstr "" -#: ../../library/curses.rst:1580 msgid "Soft (partial) reset (unreliable)" msgstr "" -#: ../../library/curses.rst:1582 msgid "Reset or hard reset (unreliable)" msgstr "" -#: ../../library/curses.rst:1584 msgid "Print" msgstr "" -#: ../../library/curses.rst:1586 msgid "Home down or bottom (lower left)" msgstr "" -#: ../../library/curses.rst:1588 msgid "Upper left of keypad" msgstr "" -#: ../../library/curses.rst:1590 msgid "Upper right of keypad" msgstr "" -#: ../../library/curses.rst:1592 msgid "Center of keypad" msgstr "" -#: ../../library/curses.rst:1594 msgid "Lower left of keypad" msgstr "" -#: ../../library/curses.rst:1596 msgid "Lower right of keypad" msgstr "" -#: ../../library/curses.rst:1598 msgid "Back tab" msgstr "" -#: ../../library/curses.rst:1600 msgid "Beg (beginning)" msgstr "" -#: ../../library/curses.rst:1602 msgid "Cancel" msgstr "" -#: ../../library/curses.rst:1604 msgid "Close" msgstr "" -#: ../../library/curses.rst:1606 msgid "Cmd (command)" msgstr "" -#: ../../library/curses.rst:1608 msgid "Copy" msgstr "" -#: ../../library/curses.rst:1610 msgid "Create" msgstr "" -#: ../../library/curses.rst:1612 msgid "End" msgstr "" -#: ../../library/curses.rst:1614 msgid "Exit" msgstr "" -#: ../../library/curses.rst:1616 msgid "Find" msgstr "" -#: ../../library/curses.rst:1618 msgid "Help" msgstr "" -#: ../../library/curses.rst:1620 msgid "Mark" msgstr "" -#: ../../library/curses.rst:1622 msgid "Message" msgstr "" -#: ../../library/curses.rst:1624 msgid "Move" msgstr "" -#: ../../library/curses.rst:1626 msgid "Next" msgstr "" -#: ../../library/curses.rst:1628 msgid "Open" msgstr "" -#: ../../library/curses.rst:1630 msgid "Options" msgstr "" -#: ../../library/curses.rst:1632 msgid "Prev (previous)" msgstr "" -#: ../../library/curses.rst:1634 msgid "Redo" msgstr "" -#: ../../library/curses.rst:1636 msgid "Ref (reference)" msgstr "" -#: ../../library/curses.rst:1638 msgid "Refresh" msgstr "" -#: ../../library/curses.rst:1640 msgid "Replace" msgstr "" -#: ../../library/curses.rst:1642 msgid "Restart" msgstr "" -#: ../../library/curses.rst:1644 msgid "Resume" msgstr "" -#: ../../library/curses.rst:1646 msgid "Save" msgstr "" -#: ../../library/curses.rst:1648 msgid "Shifted Beg (beginning)" msgstr "" -#: ../../library/curses.rst:1650 msgid "Shifted Cancel" msgstr "" -#: ../../library/curses.rst:1652 msgid "Shifted Command" msgstr "" -#: ../../library/curses.rst:1654 msgid "Shifted Copy" msgstr "" -#: ../../library/curses.rst:1656 msgid "Shifted Create" msgstr "" -#: ../../library/curses.rst:1658 msgid "Shifted Delete char" msgstr "" -#: ../../library/curses.rst:1660 msgid "Shifted Delete line" msgstr "" -#: ../../library/curses.rst:1662 msgid "Select" msgstr "" -#: ../../library/curses.rst:1664 msgid "Shifted End" msgstr "" -#: ../../library/curses.rst:1666 msgid "Shifted Clear line" msgstr "" -#: ../../library/curses.rst:1668 msgid "Shifted Exit" msgstr "" -#: ../../library/curses.rst:1670 msgid "Shifted Find" msgstr "" -#: ../../library/curses.rst:1672 msgid "Shifted Help" msgstr "" -#: ../../library/curses.rst:1674 msgid "Shifted Home" msgstr "" -#: ../../library/curses.rst:1676 msgid "Shifted Input" msgstr "" -#: ../../library/curses.rst:1678 msgid "Shifted Left arrow" msgstr "" -#: ../../library/curses.rst:1680 msgid "Shifted Message" msgstr "" -#: ../../library/curses.rst:1682 msgid "Shifted Move" msgstr "" -#: ../../library/curses.rst:1684 msgid "Shifted Next" msgstr "" -#: ../../library/curses.rst:1686 msgid "Shifted Options" msgstr "" -#: ../../library/curses.rst:1688 msgid "Shifted Prev" msgstr "" -#: ../../library/curses.rst:1690 msgid "Shifted Print" msgstr "" -#: ../../library/curses.rst:1692 msgid "Shifted Redo" msgstr "" -#: ../../library/curses.rst:1694 msgid "Shifted Replace" msgstr "" -#: ../../library/curses.rst:1696 msgid "Shifted Right arrow" msgstr "" -#: ../../library/curses.rst:1698 msgid "Shifted Resume" msgstr "" -#: ../../library/curses.rst:1700 msgid "Shifted Save" msgstr "" -#: ../../library/curses.rst:1702 msgid "Shifted Suspend" msgstr "" -#: ../../library/curses.rst:1704 msgid "Shifted Undo" msgstr "" -#: ../../library/curses.rst:1706 msgid "Suspend" msgstr "" -#: ../../library/curses.rst:1708 msgid "Undo" msgstr "" -#: ../../library/curses.rst:1710 msgid "Mouse event has occurred" msgstr "" -#: ../../library/curses.rst:1712 msgid "Terminal resize event" msgstr "" -#: ../../library/curses.rst:1714 msgid "Maximum key value" msgstr "" -#: ../../library/curses.rst:1717 -msgid "" -"On VT100s and their software emulations, such as X terminal emulators, there " -"are normally at least four function keys (:const:`KEY_F1 " -"`, :const:`KEY_F2 `, :const:`KEY_F3 " -"`, :const:`KEY_F4 `) available, and the arrow keys mapped " -"to :const:`KEY_UP`, :const:`KEY_DOWN`, :const:`KEY_LEFT` " -"and :const:`KEY_RIGHT` in the obvious way. If your machine has a PC " -"keyboard, it is safe to expect arrow keys and twelve function keys (older PC " -"keyboards may have only ten function keys); also, the following keypad " -"mappings are standard:" -msgstr "" - -#: ../../library/curses.rst:1726 +msgid "On VT100s and their software emulations, such as X terminal emulators, there are normally at least four function keys (:const:`KEY_F1 `, :const:`KEY_F2 `, :const:`KEY_F3 `, :const:`KEY_F4 `) available, and the arrow keys mapped to :const:`KEY_UP`, :const:`KEY_DOWN`, :const:`KEY_LEFT` and :const:`KEY_RIGHT` in the obvious way. If your machine has a PC keyboard, it is safe to expect arrow keys and twelve function keys (older PC keyboards may have only ten function keys); also, the following keypad mappings are standard:" +msgstr "" + msgid "Keycap" msgstr "" -#: ../../library/curses.rst:1726 ../../library/curses.rst:1871 -#: ../../library/curses.rst:2000 msgid "Constant" msgstr "" -#: ../../library/curses.rst:1728 msgid ":kbd:`Insert`" msgstr "" -#: ../../library/curses.rst:1728 msgid "KEY_IC" msgstr "" -#: ../../library/curses.rst:1730 msgid ":kbd:`Delete`" msgstr "" -#: ../../library/curses.rst:1730 msgid "KEY_DC" msgstr "" -#: ../../library/curses.rst:1732 msgid ":kbd:`Home`" msgstr "" -#: ../../library/curses.rst:1732 msgid "KEY_HOME" msgstr "" -#: ../../library/curses.rst:1734 msgid ":kbd:`End`" msgstr "" -#: ../../library/curses.rst:1734 msgid "KEY_END" msgstr "" -#: ../../library/curses.rst:1736 msgid ":kbd:`Page Up`" msgstr "" -#: ../../library/curses.rst:1736 msgid "KEY_PPAGE" msgstr "" -#: ../../library/curses.rst:1738 msgid ":kbd:`Page Down`" msgstr "" -#: ../../library/curses.rst:1738 msgid "KEY_NPAGE" msgstr "" -#: ../../library/curses.rst:1743 -msgid "" -"The following table lists characters from the alternate character set. These " -"are inherited from the VT100 terminal, and will generally be available on " -"software emulations such as X terminals. When there is no graphic " -"available, curses falls back on a crude printable ASCII approximation." +msgid "The following table lists characters from the alternate character set. These are inherited from the VT100 terminal, and will generally be available on software emulations such as X terminals. When there is no graphic available, curses falls back on a crude printable ASCII approximation." msgstr "" -#: ../../library/curses.rst:1750 msgid "These are available only after :func:`initscr` has been called." msgstr "" -#: ../../library/curses.rst:1753 msgid "ACS code" msgstr "" -#: ../../library/curses.rst:1755 msgid "alternate name for upper-right corner" msgstr "" -#: ../../library/curses.rst:1757 msgid "solid square block" msgstr "" -#: ../../library/curses.rst:1759 msgid "board of squares" msgstr "" -#: ../../library/curses.rst:1761 msgid "alternate name for horizontal line" msgstr "" -#: ../../library/curses.rst:1763 msgid "alternate name for upper-left corner" msgstr "" -#: ../../library/curses.rst:1765 msgid "alternate name for top tee" msgstr "" -#: ../../library/curses.rst:1767 msgid "bottom tee" msgstr "" -#: ../../library/curses.rst:1769 msgid "bullet" msgstr "" -#: ../../library/curses.rst:1771 msgid "checker board (stipple)" msgstr "" -#: ../../library/curses.rst:1773 msgid "arrow pointing down" msgstr "" -#: ../../library/curses.rst:1775 msgid "degree symbol" msgstr "" -#: ../../library/curses.rst:1777 msgid "diamond" msgstr "" -#: ../../library/curses.rst:1779 msgid "greater-than-or-equal-to" msgstr "" -#: ../../library/curses.rst:1781 msgid "horizontal line" msgstr "" -#: ../../library/curses.rst:1783 msgid "lantern symbol" msgstr "" -#: ../../library/curses.rst:1785 msgid "left arrow" msgstr "" -#: ../../library/curses.rst:1787 msgid "less-than-or-equal-to" msgstr "" -#: ../../library/curses.rst:1789 msgid "lower-left corner" msgstr "" -#: ../../library/curses.rst:1791 msgid "lower-right corner" msgstr "" -#: ../../library/curses.rst:1793 msgid "left tee" msgstr "" -#: ../../library/curses.rst:1795 msgid "not-equal sign" msgstr "" -#: ../../library/curses.rst:1797 msgid "letter pi" msgstr "" -#: ../../library/curses.rst:1799 msgid "plus-or-minus sign" msgstr "" -#: ../../library/curses.rst:1801 msgid "big plus sign" msgstr "" -#: ../../library/curses.rst:1803 msgid "right arrow" msgstr "" -#: ../../library/curses.rst:1805 msgid "right tee" msgstr "" -#: ../../library/curses.rst:1807 msgid "scan line 1" msgstr "" -#: ../../library/curses.rst:1809 msgid "scan line 3" msgstr "" -#: ../../library/curses.rst:1811 msgid "scan line 7" msgstr "" -#: ../../library/curses.rst:1813 msgid "scan line 9" msgstr "" -#: ../../library/curses.rst:1815 msgid "alternate name for lower-right corner" msgstr "" -#: ../../library/curses.rst:1817 msgid "alternate name for vertical line" msgstr "" -#: ../../library/curses.rst:1819 msgid "alternate name for right tee" msgstr "" -#: ../../library/curses.rst:1821 msgid "alternate name for lower-left corner" msgstr "" -#: ../../library/curses.rst:1823 msgid "alternate name for bottom tee" msgstr "" -#: ../../library/curses.rst:1825 msgid "alternate name for left tee" msgstr "" -#: ../../library/curses.rst:1827 msgid "alternate name for crossover or big plus" msgstr "" -#: ../../library/curses.rst:1829 msgid "pound sterling" msgstr "" -#: ../../library/curses.rst:1831 msgid "top tee" msgstr "" -#: ../../library/curses.rst:1833 msgid "up arrow" msgstr "" -#: ../../library/curses.rst:1835 msgid "upper-left corner" msgstr "" -#: ../../library/curses.rst:1837 msgid "upper-right corner" msgstr "" -#: ../../library/curses.rst:1839 msgid "vertical line" msgstr "" -#: ../../library/curses.rst:1842 -msgid "" -"The following table lists mouse button constants used by :meth:`getmouse`:" +msgid "The following table lists mouse button constants used by :meth:`getmouse`:" msgstr "" -#: ../../library/curses.rst:1845 msgid "Mouse button constant" msgstr "" -#: ../../library/curses.rst:1847 msgid "Mouse button *n* pressed" msgstr "" -#: ../../library/curses.rst:1849 msgid "Mouse button *n* released" msgstr "" -#: ../../library/curses.rst:1851 msgid "Mouse button *n* clicked" msgstr "" -#: ../../library/curses.rst:1853 msgid "Mouse button *n* double clicked" msgstr "" -#: ../../library/curses.rst:1855 msgid "Mouse button *n* triple clicked" msgstr "" -#: ../../library/curses.rst:1857 msgid "Shift was down during button state change" msgstr "" -#: ../../library/curses.rst:1859 msgid "Control was down during button state change" msgstr "" -#: ../../library/curses.rst:1861 msgid "Alt was down during button state change" msgstr "" -#: ../../library/curses.rst:1868 msgid "The following table lists the predefined colors:" msgstr "" -#: ../../library/curses.rst:1871 msgid "Color" msgstr "" -#: ../../library/curses.rst:1873 msgid "Black" msgstr "" -#: ../../library/curses.rst:1875 msgid "Blue" msgstr "" -#: ../../library/curses.rst:1877 msgid "Cyan (light greenish blue)" msgstr "" -#: ../../library/curses.rst:1879 msgid "Green" msgstr "" -#: ../../library/curses.rst:1881 msgid "Magenta (purplish red)" msgstr "" -#: ../../library/curses.rst:1883 msgid "Red" msgstr "" -#: ../../library/curses.rst:1885 msgid "White" msgstr "" -#: ../../library/curses.rst:1887 msgid "Yellow" msgstr "" -#: ../../library/curses.rst:1892 msgid ":mod:`!curses.textpad` --- Text input widget for curses programs" msgstr "" -#: ../../library/curses.rst:1900 -msgid "" -"The :mod:`!curses.textpad` module provides a :class:`Textbox` class that " -"handles elementary text editing in a curses window, supporting a set of " -"keybindings resembling those of Emacs (thus, also of Netscape Navigator, " -"BBedit 6.x, FrameMaker, and many other programs). The module also provides " -"a rectangle-drawing function useful for framing text boxes or for other " -"purposes." +msgid "The :mod:`!curses.textpad` module provides a :class:`Textbox` class that handles elementary text editing in a curses window, supporting a set of keybindings resembling those of Emacs (thus, also of Netscape Navigator, BBedit 6.x, FrameMaker, and many other programs). The module also provides a rectangle-drawing function useful for framing text boxes or for other purposes." msgstr "" -#: ../../library/curses.rst:1906 msgid "The module :mod:`!curses.textpad` defines the following function:" msgstr "" -#: ../../library/curses.rst:1911 -msgid "" -"Draw a rectangle. The first argument must be a window object; the remaining " -"arguments are coordinates relative to that window. The second and third " -"arguments are the y and x coordinates of the upper-left corner of the " -"rectangle to be drawn; the fourth and fifth arguments are the y and x " -"coordinates of the lower-right corner. The rectangle will be drawn using " -"VT100/IBM PC forms characters on terminals that make this possible " -"(including xterm and most other software terminal emulators). Otherwise it " -"will be drawn with ASCII dashes, vertical bars, and plus signs." +msgid "Draw a rectangle. The first argument must be a window object; the remaining arguments are coordinates relative to that window. The second and third arguments are the y and x coordinates of the upper-left corner of the rectangle to be drawn; the fourth and fifth arguments are the y and x coordinates of the lower-right corner. The rectangle will be drawn using VT100/IBM PC forms characters on terminals that make this possible (including xterm and most other software terminal emulators). Otherwise it will be drawn with ASCII dashes, vertical bars, and plus signs." msgstr "" -#: ../../library/curses.rst:1924 msgid "Textbox objects" msgstr "" -#: ../../library/curses.rst:1926 msgid "You can instantiate a :class:`Textbox` object as follows:" msgstr "" -#: ../../library/curses.rst:1931 -msgid "" -"Return a textbox widget object. The *win* argument should be a " -"curses :ref:`window ` object in which the textbox is " -"to be contained. If *insert_mode* is true, the textbox inserts typed " -"characters, shifting existing text to the right, rather than overwriting it. " -"The edit cursor of the textbox is initially located at the upper-left corner " -"of the containing window, with coordinates ``(0, 0)``. The " -"instance's :attr:`stripspaces` flag is initially on." +msgid "Return a textbox widget object. The *win* argument should be a curses :ref:`window ` object in which the textbox is to be contained. If *insert_mode* is true, the textbox inserts typed characters, shifting existing text to the right, rather than overwriting it. The edit cursor of the textbox is initially located at the upper-left corner of the containing window, with coordinates ``(0, 0)``. The instance's :attr:`stripspaces` flag is initially on." msgstr "" -#: ../../library/curses.rst:1939 msgid ":class:`Textbox` objects have the following methods:" msgstr "" -#: ../../library/curses.rst:1944 -msgid "" -"This is the entry point you will normally use. It accepts editing " -"keystrokes until one of the termination keystrokes is entered. If " -"*validate* is supplied, it must be a function. It will be called for each " -"keystroke entered with the keystroke as a parameter; command dispatch is " -"done on the result. If it returns a false value, the keystroke is ignored. " -"This method returns the window contents as a string; whether blanks in the " -"window are included is affected by the :attr:`stripspaces` attribute." +msgid "This is the entry point you will normally use. It accepts editing keystrokes until one of the termination keystrokes is entered. If *validate* is supplied, it must be a function. It will be called for each keystroke entered with the keystroke as a parameter; command dispatch is done on the result. If it returns a false value, the keystroke is ignored. This method returns the window contents as a string; whether blanks in the window are included is affected by the :attr:`stripspaces` attribute." msgstr "" -#: ../../library/curses.rst:1956 -msgid "" -"Process a single command keystroke. Returns ``1`` to continue editing, or " -"``0`` if a termination keystroke was processed. Here are the supported " -"special keystrokes:" +msgid "Process a single command keystroke. Returns ``1`` to continue editing, or ``0`` if a termination keystroke was processed. Here are the supported special keystrokes:" msgstr "" -#: ../../library/curses.rst:1961 ../../library/curses.rst:2000 msgid "Keystroke" msgstr "" -#: ../../library/curses.rst:1961 msgid "Action" msgstr "" -#: ../../library/curses.rst:1963 msgid ":kbd:`Control-A`" msgstr "" -#: ../../library/curses.rst:1963 msgid "Go to left edge of window." msgstr "" -#: ../../library/curses.rst:1965 ../../library/curses.rst:2002 msgid ":kbd:`Control-B`" msgstr "" -#: ../../library/curses.rst:1965 msgid "Cursor left, wrapping to previous line if appropriate." msgstr "" -#: ../../library/curses.rst:1968 msgid ":kbd:`Control-D`" msgstr "" -#: ../../library/curses.rst:1968 msgid "Delete character under cursor." msgstr "" -#: ../../library/curses.rst:1970 msgid ":kbd:`Control-E`" msgstr "" -#: ../../library/curses.rst:1970 msgid "Go to right edge (stripspaces off) or end of line (stripspaces on)." msgstr "" -#: ../../library/curses.rst:1973 ../../library/curses.rst:2004 msgid ":kbd:`Control-F`" msgstr "" -#: ../../library/curses.rst:1973 msgid "Cursor right, wrapping to next line when appropriate." msgstr "" -#: ../../library/curses.rst:1976 msgid ":kbd:`Control-G`" msgstr "" -#: ../../library/curses.rst:1976 msgid "Terminate, returning the window contents." msgstr "" -#: ../../library/curses.rst:1978 msgid ":kbd:`Control-H`" msgstr "" -#: ../../library/curses.rst:1978 msgid "Delete character backward." msgstr "" -#: ../../library/curses.rst:1980 msgid ":kbd:`Control-J`" msgstr "" -#: ../../library/curses.rst:1980 -msgid "" -"Terminate if the window is 1 line, otherwise move to the start of the next " -"line." +msgid "Terminate if the window is 1 line, otherwise move to the start of the next line." msgstr "" -#: ../../library/curses.rst:1984 msgid ":kbd:`Control-K`" msgstr "" -#: ../../library/curses.rst:1984 msgid "If line is blank, delete it, otherwise clear to end of line." msgstr "" -#: ../../library/curses.rst:1987 msgid ":kbd:`Control-L`" msgstr "" -#: ../../library/curses.rst:1987 msgid "Refresh screen." msgstr "" -#: ../../library/curses.rst:1989 ../../library/curses.rst:2008 msgid ":kbd:`Control-N`" msgstr "" -#: ../../library/curses.rst:1989 msgid "Cursor down; move down one line." msgstr "" -#: ../../library/curses.rst:1991 msgid ":kbd:`Control-O`" msgstr "" -#: ../../library/curses.rst:1991 msgid "Insert a blank line at cursor location." msgstr "" -#: ../../library/curses.rst:1993 ../../library/curses.rst:2006 msgid ":kbd:`Control-P`" msgstr "" -#: ../../library/curses.rst:1993 msgid "Cursor up; move up one line." msgstr "" -#: ../../library/curses.rst:1996 -msgid "" -"Move operations do nothing if the cursor is at an edge where the movement is " -"not possible. The following synonyms are supported where possible:" +msgid "Move operations do nothing if the cursor is at an edge where the movement is not possible. The following synonyms are supported where possible:" msgstr "" -#: ../../library/curses.rst:2002 msgid ":const:`~curses.KEY_LEFT`" msgstr "" -#: ../../library/curses.rst:2004 msgid ":const:`~curses.KEY_RIGHT`" msgstr "" -#: ../../library/curses.rst:2006 msgid ":const:`~curses.KEY_UP`" msgstr "" -#: ../../library/curses.rst:2008 msgid ":const:`~curses.KEY_DOWN`" msgstr "" -#: ../../library/curses.rst:2010 msgid ":const:`~curses.KEY_BACKSPACE`" msgstr "" -#: ../../library/curses.rst:2010 msgid ":kbd:`Control-h`" msgstr "" -#: ../../library/curses.rst:2013 -msgid "" -"All other keystrokes are treated as a command to insert the given character " -"and move right (with line wrapping)." +msgid "All other keystrokes are treated as a command to insert the given character and move right (with line wrapping)." msgstr "" -#: ../../library/curses.rst:2019 -msgid "" -"Return the window contents as a string; whether blanks in the window are " -"included is affected by the :attr:`stripspaces` member." +msgid "Return the window contents as a string; whether blanks in the window are included is affected by the :attr:`stripspaces` member." msgstr "" -#: ../../library/curses.rst:2025 -msgid "" -"This attribute is a flag which controls the interpretation of blanks in the " -"window. When it is on, trailing blanks on each line are ignored; any cursor " -"motion that would land the cursor on a trailing blank goes to the end of " -"that line instead, and trailing blanks are stripped when the window contents " -"are gathered." +msgid "This attribute is a flag which controls the interpretation of blanks in the window. When it is on, trailing blanks on each line are ignored; any cursor motion that would land the cursor on a trailing blank goes to the end of that line instead, and trailing blanks are stripped when the window contents are gathered." msgstr "" diff --git a/library/custominterp.po b/library/custominterp.po index e9af3d5b..bb6fe29b 100644 --- a/library/custominterp.po +++ b/library/custominterp.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:03+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,19 +21,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/custominterp.rst:5 msgid "Custom Python Interpreters" msgstr "" -#: ../../library/custominterp.rst:7 -msgid "" -"The modules described in this chapter allow writing interfaces similar to " -"Python's interactive interpreter. If you want a Python interpreter that " -"supports some special feature in addition to the Python language, you should " -"look at the :mod:`code` module. (The :mod:`codeop` module is lower-level, " -"used to support compiling a possibly incomplete chunk of Python code.)" +msgid "The modules described in this chapter allow writing interfaces similar to Python's interactive interpreter. If you want a Python interpreter that supports some special feature in addition to the Python language, you should look at the :mod:`code` module. (The :mod:`codeop` module is lower-level, used to support compiling a possibly incomplete chunk of Python code.)" msgstr "" -#: ../../library/custominterp.rst:13 msgid "The full list of modules described in this chapter is:" msgstr "" diff --git a/library/dataclasses.po b/library/dataclasses.po index 0d44da44..0cb75a06 100644 --- a/library/dataclasses.po +++ b/library/dataclasses.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:03+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,29 +23,18 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/dataclasses.rst:2 msgid ":mod:`!dataclasses` --- Data Classes" msgstr "" -#: ../../library/dataclasses.rst:10 msgid "**Source code:** :source:`Lib/dataclasses.py`" msgstr "" -#: ../../library/dataclasses.rst:14 -msgid "" -"This module provides a decorator and functions for automatically adding " -"generated :term:`special methods ` such " -"as :meth:`~object.__init__` and :meth:`~object.__repr__` to user-defined " -"classes. It was originally described in :pep:`557`." +msgid "This module provides a decorator and functions for automatically adding generated :term:`special methods ` such as :meth:`~object.__init__` and :meth:`~object.__repr__` to user-defined classes. It was originally described in :pep:`557`." msgstr "" -#: ../../library/dataclasses.rst:19 -msgid "" -"The member variables to use in these generated methods are defined " -"using :pep:`526` type annotations. For example, this code::" +msgid "The member variables to use in these generated methods are defined using :pep:`526` type annotations. For example, this code::" msgstr "" -#: ../../library/dataclasses.rst:22 msgid "" "from dataclasses import dataclass\n" "\n" @@ -60,67 +49,37 @@ msgid "" " return self.unit_price * self.quantity_on_hand" msgstr "" -#: ../../library/dataclasses.rst:34 msgid "will add, among other things, a :meth:`!__init__` that looks like::" msgstr "" -#: ../../library/dataclasses.rst:36 msgid "" -"def __init__(self, name: str, unit_price: float, quantity_on_hand: int = " -"0):\n" +"def __init__(self, name: str, unit_price: float, quantity_on_hand: int = 0):\n" " self.name = name\n" " self.unit_price = unit_price\n" " self.quantity_on_hand = quantity_on_hand" msgstr "" -#: ../../library/dataclasses.rst:41 -msgid "" -"Note that this method is automatically added to the class: it is not " -"directly specified in the :class:`!InventoryItem` definition shown above." +msgid "Note that this method is automatically added to the class: it is not directly specified in the :class:`!InventoryItem` definition shown above." msgstr "" -#: ../../library/dataclasses.rst:47 msgid "Module contents" msgstr "" -#: ../../library/dataclasses.rst:51 -msgid "" -"This function is a :term:`decorator` that is used to add " -"generated :term:`special methods ` to classes, as described " -"below." +msgid "This function is a :term:`decorator` that is used to add generated :term:`special methods ` to classes, as described below." msgstr "" -#: ../../library/dataclasses.rst:54 -msgid "" -"The ``@dataclass`` decorator examines the class to find ``field``\\s. A " -"``field`` is defined as a class variable that has a :term:`type annotation " -"`. With two exceptions described below, nothing in " -"``@dataclass`` examines the type specified in the variable annotation." +msgid "The ``@dataclass`` decorator examines the class to find ``field``\\s. A ``field`` is defined as a class variable that has a :term:`type annotation `. With two exceptions described below, nothing in ``@dataclass`` examines the type specified in the variable annotation." msgstr "" -#: ../../library/dataclasses.rst:60 -msgid "" -"The order of the fields in all of the generated methods is the order in " -"which they appear in the class definition." +msgid "The order of the fields in all of the generated methods is the order in which they appear in the class definition." msgstr "" -#: ../../library/dataclasses.rst:63 -msgid "" -"The ``@dataclass`` decorator will add various \"dunder\" methods to the " -"class, described below. If any of the added methods already exist in the " -"class, the behavior depends on the parameter, as documented below. The " -"decorator returns the same class that it is called on; no new class is " -"created." +msgid "The ``@dataclass`` decorator will add various \"dunder\" methods to the class, described below. If any of the added methods already exist in the class, the behavior depends on the parameter, as documented below. The decorator returns the same class that it is called on; no new class is created." msgstr "" -#: ../../library/dataclasses.rst:69 -msgid "" -"If ``@dataclass`` is used just as a simple decorator with no parameters, it " -"acts as if it has the default values documented in this signature. That is, " -"these three uses of ``@dataclass`` are equivalent::" +msgid "If ``@dataclass`` is used just as a simple decorator with no parameters, it acts as if it has the default values documented in this signature. That is, these three uses of ``@dataclass`` are equivalent::" msgstr "" -#: ../../library/dataclasses.rst:74 msgid "" "@dataclass\n" "class C:\n" @@ -130,232 +89,99 @@ msgid "" "class C:\n" " ...\n" "\n" -"@dataclass(init=True, repr=True, eq=True, order=False, unsafe_hash=False, " -"frozen=False,\n" +"@dataclass(init=True, repr=True, eq=True, order=False, unsafe_hash=False, frozen=False,\n" " match_args=True, kw_only=False, slots=False, weakref_slot=False)\n" "class C:\n" " ..." msgstr "" -#: ../../library/dataclasses.rst:87 msgid "The parameters to ``@dataclass`` are:" msgstr "" -#: ../../library/dataclasses.rst:89 -msgid "" -"*init*: If true (the default), a :meth:`~object.__init__` method will be " -"generated." +msgid "*init*: If true (the default), a :meth:`~object.__init__` method will be generated." msgstr "" -#: ../../library/dataclasses.rst:92 -msgid "" -"If the class already defines :meth:`!__init__`, this parameter is ignored." +msgid "If the class already defines :meth:`!__init__`, this parameter is ignored." msgstr "" -#: ../../library/dataclasses.rst:95 -msgid "" -"*repr*: If true (the default), a :meth:`~object.__repr__` method will be " -"generated. The generated repr string will have the class name and the name " -"and repr of each field, in the order they are defined in the class. Fields " -"that are marked as being excluded from the repr are not included. For " -"example: ``InventoryItem(name='widget', unit_price=3.0, " -"quantity_on_hand=10)``." +msgid "*repr*: If true (the default), a :meth:`~object.__repr__` method will be generated. The generated repr string will have the class name and the name and repr of each field, in the order they are defined in the class. Fields that are marked as being excluded from the repr are not included. For example: ``InventoryItem(name='widget', unit_price=3.0, quantity_on_hand=10)``." msgstr "" -#: ../../library/dataclasses.rst:102 -msgid "" -"If the class already defines :meth:`!__repr__`, this parameter is ignored." +msgid "If the class already defines :meth:`!__repr__`, this parameter is ignored." msgstr "" -#: ../../library/dataclasses.rst:105 -msgid "" -"*eq*: If true (the default), an :meth:`~object.__eq__` method will be " -"generated." +msgid "*eq*: If true (the default), an :meth:`~object.__eq__` method will be generated." msgstr "" -#: ../../library/dataclasses.rst:108 -msgid "" -"This method compares the class by comparing each field in order. Both " -"instances in the comparison must be of the identical type." +msgid "This method compares the class by comparing each field in order. Both instances in the comparison must be of the identical type." msgstr "" -#: ../../library/dataclasses.rst:111 -msgid "" -"If the class already defines :meth:`!__eq__`, this parameter is ignored." +msgid "If the class already defines :meth:`!__eq__`, this parameter is ignored." msgstr "" -#: ../../library/dataclasses.rst:113 -msgid "" -"The generated ``__eq__`` method now compares each field individually (for " -"example, ``self.a == other.a and self.b == other.b``), rather than comparing " -"tuples of fields as in previous versions." +msgid "The generated ``__eq__`` method now compares each field individually (for example, ``self.a == other.a and self.b == other.b``), rather than comparing tuples of fields as in previous versions." msgstr "" -#: ../../library/dataclasses.rst:118 -msgid "" -"This change makes the comparison faster but it may alter results in cases " -"where attributes compare equal by identity but not by value (such as " -"``float('nan')``)." +msgid "This change makes the comparison faster but it may alter results in cases where attributes compare equal by identity but not by value (such as ``float('nan')``)." msgstr "" -#: ../../library/dataclasses.rst:122 -msgid "" -"In Python 3.12 and earlier, the comparison was performed by creating tuples " -"of the fields and comparing them (for example, ``(self.a, self.b) == " -"(other.a, other.b)``)." +msgid "In Python 3.12 and earlier, the comparison was performed by creating tuples of the fields and comparing them (for example, ``(self.a, self.b) == (other.a, other.b)``)." msgstr "" -#: ../../library/dataclasses.rst:126 -msgid "" -"*order*: If true (the default is " -"``False``), :meth:`~object.__lt__`, :meth:`~object.__le__`, :meth:`~object.__gt__`, " -"and :meth:`~object.__ge__` methods will be generated. These compare the " -"class as if it were a tuple of its fields, in order. Both instances in the " -"comparison must be of the identical type. If *order* is true and *eq* is " -"false, a :exc:`ValueError` is raised." +msgid "*order*: If true (the default is ``False``), :meth:`~object.__lt__`, :meth:`~object.__le__`, :meth:`~object.__gt__`, and :meth:`~object.__ge__` methods will be generated. These compare the class as if it were a tuple of its fields, in order. Both instances in the comparison must be of the identical type. If *order* is true and *eq* is false, a :exc:`ValueError` is raised." msgstr "" -#: ../../library/dataclasses.rst:133 -msgid "" -"If the class already defines any of :meth:`!__lt__`, :meth:`!" -"__le__`, :meth:`!__gt__`, or :meth:`!__ge__`, then :exc:`TypeError` is " -"raised." +msgid "If the class already defines any of :meth:`!__lt__`, :meth:`!__le__`, :meth:`!__gt__`, or :meth:`!__ge__`, then :exc:`TypeError` is raised." msgstr "" -#: ../../library/dataclasses.rst:137 -msgid "" -"*unsafe_hash*: If true, force ``dataclasses`` to create " -"a :meth:`~object.__hash__` method, even though it may not be safe to do so. " -"Otherwise, generate a :meth:`~object.__hash__` method according to how *eq* " -"and *frozen* are set. The default value is ``False``." +msgid "*unsafe_hash*: If true, force ``dataclasses`` to create a :meth:`~object.__hash__` method, even though it may not be safe to do so. Otherwise, generate a :meth:`~object.__hash__` method according to how *eq* and *frozen* are set. The default value is ``False``." msgstr "" -#: ../../library/dataclasses.rst:143 -msgid "" -":meth:`!__hash__` is used by built-in :meth:`hash`, and when objects are " -"added to hashed collections such as dictionaries and sets. Having a :meth:`!" -"__hash__` implies that instances of the class are immutable. Mutability is a " -"complicated property that depends on the programmer's intent, the existence " -"and behavior of :meth:`!__eq__`, and the values of the *eq* and *frozen* " -"flags in the ``@dataclass`` decorator." +msgid ":meth:`!__hash__` is used by built-in :meth:`hash`, and when objects are added to hashed collections such as dictionaries and sets. Having a :meth:`!__hash__` implies that instances of the class are immutable. Mutability is a complicated property that depends on the programmer's intent, the existence and behavior of :meth:`!__eq__`, and the values of the *eq* and *frozen* flags in the ``@dataclass`` decorator." msgstr "" -#: ../../library/dataclasses.rst:150 -msgid "" -"By default, ``@dataclass`` will not implicitly add " -"a :meth:`~object.__hash__` method unless it is safe to do so. Neither will " -"it add or change an existing explicitly defined :meth:`!__hash__` method. " -"Setting the class attribute ``__hash__ = None`` has a specific meaning to " -"Python, as described in the :meth:`!__hash__` documentation." +msgid "By default, ``@dataclass`` will not implicitly add a :meth:`~object.__hash__` method unless it is safe to do so. Neither will it add or change an existing explicitly defined :meth:`!__hash__` method. Setting the class attribute ``__hash__ = None`` has a specific meaning to Python, as described in the :meth:`!__hash__` documentation." msgstr "" -#: ../../library/dataclasses.rst:156 -msgid "" -"If :meth:`!__hash__` is not explicitly defined, or if it is set to ``None``, " -"then ``@dataclass`` *may* add an implicit :meth:`!__hash__` method. Although " -"not recommended, you can force ``@dataclass`` to create a :meth:`!__hash__` " -"method with ``unsafe_hash=True``. This might be the case if your class is " -"logically immutable but can still be mutated. This is a specialized use case " -"and should be considered carefully." +msgid "If :meth:`!__hash__` is not explicitly defined, or if it is set to ``None``, then ``@dataclass`` *may* add an implicit :meth:`!__hash__` method. Although not recommended, you can force ``@dataclass`` to create a :meth:`!__hash__` method with ``unsafe_hash=True``. This might be the case if your class is logically immutable but can still be mutated. This is a specialized use case and should be considered carefully." msgstr "" -#: ../../library/dataclasses.rst:163 -msgid "" -"Here are the rules governing implicit creation of a :meth:`!__hash__` " -"method. Note that you cannot both have an explicit :meth:`!__hash__` method " -"in your dataclass and set ``unsafe_hash=True``; this will result in " -"a :exc:`TypeError`." +msgid "Here are the rules governing implicit creation of a :meth:`!__hash__` method. Note that you cannot both have an explicit :meth:`!__hash__` method in your dataclass and set ``unsafe_hash=True``; this will result in a :exc:`TypeError`." msgstr "" -#: ../../library/dataclasses.rst:168 -msgid "" -"If *eq* and *frozen* are both true, by default ``@dataclass`` will generate " -"a :meth:`!__hash__` method for you. If *eq* is true and *frozen* is " -"false, :meth:`!__hash__` will be set to ``None``, marking it unhashable " -"(which it is, since it is mutable). If *eq* is false, :meth:`!__hash__` " -"will be left untouched meaning the :meth:`!__hash__` method of the " -"superclass will be used (if the superclass is :class:`object`, this means it " -"will fall back to id-based hashing)." +msgid "If *eq* and *frozen* are both true, by default ``@dataclass`` will generate a :meth:`!__hash__` method for you. If *eq* is true and *frozen* is false, :meth:`!__hash__` will be set to ``None``, marking it unhashable (which it is, since it is mutable). If *eq* is false, :meth:`!__hash__` will be left untouched meaning the :meth:`!__hash__` method of the superclass will be used (if the superclass is :class:`object`, this means it will fall back to id-based hashing)." msgstr "" -#: ../../library/dataclasses.rst:176 -msgid "" -"*frozen*: If true (the default is ``False``), assigning to fields will " -"generate an exception. This emulates read-only frozen instances. See " -"the :ref:`discussion ` below." +msgid "*frozen*: If true (the default is ``False``), assigning to fields will generate an exception. This emulates read-only frozen instances. See the :ref:`discussion ` below." msgstr "" -#: ../../library/dataclasses.rst:180 -msgid "" -"If :meth:`~object.__setattr__` or :meth:`~object.__delattr__` is defined in " -"the class and *frozen* is true, then :exc:`TypeError` is raised." +msgid "If :meth:`~object.__setattr__` or :meth:`~object.__delattr__` is defined in the class and *frozen* is true, then :exc:`TypeError` is raised." msgstr "" -#: ../../library/dataclasses.rst:183 -msgid "" -"*match_args*: If true (the default is ``True``), " -"the :attr:`~object.__match_args__` tuple will be created from the list of " -"non keyword-only parameters to the generated :meth:`~object.__init__` method " -"(even if :meth:`!__init__` is not generated, see above). If false, or " -"if :attr:`!__match_args__` is already defined in the class, then :attr:`!" -"__match_args__` will not be generated." +msgid "*match_args*: If true (the default is ``True``), the :attr:`~object.__match_args__` tuple will be created from the list of non keyword-only parameters to the generated :meth:`~object.__init__` method (even if :meth:`!__init__` is not generated, see above). If false, or if :attr:`!__match_args__` is already defined in the class, then :attr:`!__match_args__` will not be generated." msgstr "" -#: ../../library/dataclasses.rst:192 -msgid "" -"*kw_only*: If true (the default value is ``False``), then all fields will be " -"marked as keyword-only. If a field is marked as keyword-only, then the only " -"effect is that the :meth:`~object.__init__` parameter generated from a " -"keyword-only field must be specified with a keyword when :meth:`!__init__` " -"is called. See the :term:`parameter` glossary entry for details. Also see " -"the :const:`KW_ONLY` section." +msgid "*kw_only*: If true (the default value is ``False``), then all fields will be marked as keyword-only. If a field is marked as keyword-only, then the only effect is that the :meth:`~object.__init__` parameter generated from a keyword-only field must be specified with a keyword when :meth:`!__init__` is called. See the :term:`parameter` glossary entry for details. Also see the :const:`KW_ONLY` section." msgstr "" -#: ../../library/dataclasses.rst:200 msgid "Keyword-only fields are not included in :attr:`!__match_args__`." msgstr "" -#: ../../library/dataclasses.rst:204 -msgid "" -"*slots*: If true (the default is ``False``), :attr:`~object.__slots__` " -"attribute will be generated and new class will be returned instead of the " -"original one. If :attr:`!__slots__` is already defined in the class, " -"then :exc:`TypeError` is raised." +msgid "*slots*: If true (the default is ``False``), :attr:`~object.__slots__` attribute will be generated and new class will be returned instead of the original one. If :attr:`!__slots__` is already defined in the class, then :exc:`TypeError` is raised." msgstr "" -#: ../../library/dataclasses.rst:210 -msgid "" -"Passing parameters to a base class :meth:`~object.__init_subclass__` when " -"using ``slots=True`` will result in a :exc:`TypeError`. Either use " -"``__init_subclass__`` with no parameters or use default values as a " -"workaround. See :gh:`91126` for full details." +msgid "Passing parameters to a base class :meth:`~object.__init_subclass__` when using ``slots=True`` will result in a :exc:`TypeError`. Either use ``__init_subclass__`` with no parameters or use default values as a workaround. See :gh:`91126` for full details." msgstr "" -#: ../../library/dataclasses.rst:218 -msgid "" -"If a field name is already included in the :attr:`!__slots__` of a base " -"class, it will not be included in the generated :attr:`!__slots__` to " -"prevent :ref:`overriding them `. Therefore, do not " -"use :attr:`!__slots__` to retrieve the field names of a dataclass. " -"Use :func:`fields` instead. To be able to determine inherited slots, base " -"class :attr:`!__slots__` may be any iterable, but *not* an iterator." +msgid "If a field name is already included in the :attr:`!__slots__` of a base class, it will not be included in the generated :attr:`!__slots__` to prevent :ref:`overriding them `. Therefore, do not use :attr:`!__slots__` to retrieve the field names of a dataclass. Use :func:`fields` instead. To be able to determine inherited slots, base class :attr:`!__slots__` may be any iterable, but *not* an iterator." msgstr "" -#: ../../library/dataclasses.rst:228 -msgid "" -"*weakref_slot*: If true (the default is ``False``), add a slot named " -"\"__weakref__\", which is required to make an instance :func:`weakref-able " -"`. It is an error to specify ``weakref_slot=True`` without also " -"specifying ``slots=True``." +msgid "*weakref_slot*: If true (the default is ``False``), add a slot named \"__weakref__\", which is required to make an instance :func:`weakref-able `. It is an error to specify ``weakref_slot=True`` without also specifying ``slots=True``." msgstr "" -#: ../../library/dataclasses.rst:236 -msgid "" -"``field``\\s may optionally specify a default value, using normal Python " -"syntax::" +msgid "``field``\\s may optionally specify a default value, using normal Python syntax::" msgstr "" -#: ../../library/dataclasses.rst:239 msgid "" "@dataclass\n" "class C:\n" @@ -363,33 +189,18 @@ msgid "" " b: int = 0 # assign a default value for 'b'" msgstr "" -#: ../../library/dataclasses.rst:244 -msgid "" -"In this example, both :attr:`!a` and :attr:`!b` will be included in the " -"added :meth:`~object.__init__` method, which will be defined as::" +msgid "In this example, both :attr:`!a` and :attr:`!b` will be included in the added :meth:`~object.__init__` method, which will be defined as::" msgstr "" -#: ../../library/dataclasses.rst:247 msgid "def __init__(self, a: int, b: int = 0):" msgstr "" -#: ../../library/dataclasses.rst:249 -msgid "" -":exc:`TypeError` will be raised if a field without a default value follows a " -"field with a default value. This is true whether this occurs in a single " -"class, or as a result of class inheritance." +msgid ":exc:`TypeError` will be raised if a field without a default value follows a field with a default value. This is true whether this occurs in a single class, or as a result of class inheritance." msgstr "" -#: ../../library/dataclasses.rst:255 -msgid "" -"For common and simple use cases, no other functionality is required. There " -"are, however, some dataclass features that require additional per-field " -"information. To satisfy this need for additional information, you can " -"replace the default field value with a call to the provided :func:`!field` " -"function. For example::" +msgid "For common and simple use cases, no other functionality is required. There are, however, some dataclass features that require additional per-field information. To satisfy this need for additional information, you can replace the default field value with a call to the provided :func:`!field` function. For example::" msgstr "" -#: ../../library/dataclasses.rst:261 msgid "" "@dataclass\n" "class C:\n" @@ -399,109 +210,48 @@ msgid "" "c.mylist += [1, 2, 3]" msgstr "" -#: ../../library/dataclasses.rst:268 -msgid "" -"As shown above, the :const:`MISSING` value is a sentinel object used to " -"detect if some parameters are provided by the user. This sentinel is used " -"because ``None`` is a valid value for some parameters with a distinct " -"meaning. No code should directly use the :const:`MISSING` value." +msgid "As shown above, the :const:`MISSING` value is a sentinel object used to detect if some parameters are provided by the user. This sentinel is used because ``None`` is a valid value for some parameters with a distinct meaning. No code should directly use the :const:`MISSING` value." msgstr "" -#: ../../library/dataclasses.rst:273 msgid "The parameters to :func:`!field` are:" msgstr "" -#: ../../library/dataclasses.rst:275 -msgid "" -"*default*: If provided, this will be the default value for this field. This " -"is needed because the :func:`!field` call itself replaces the normal " -"position of the default value." +msgid "*default*: If provided, this will be the default value for this field. This is needed because the :func:`!field` call itself replaces the normal position of the default value." msgstr "" -#: ../../library/dataclasses.rst:279 -msgid "" -"*default_factory*: If provided, it must be a zero-argument callable that " -"will be called when a default value is needed for this field. Among other " -"purposes, this can be used to specify fields with mutable default values, as " -"discussed below. It is an error to specify both *default* and " -"*default_factory*." +msgid "*default_factory*: If provided, it must be a zero-argument callable that will be called when a default value is needed for this field. Among other purposes, this can be used to specify fields with mutable default values, as discussed below. It is an error to specify both *default* and *default_factory*." msgstr "" -#: ../../library/dataclasses.rst:285 -msgid "" -"*init*: If true (the default), this field is included as a parameter to the " -"generated :meth:`~object.__init__` method." +msgid "*init*: If true (the default), this field is included as a parameter to the generated :meth:`~object.__init__` method." msgstr "" -#: ../../library/dataclasses.rst:288 -msgid "" -"*repr*: If true (the default), this field is included in the string returned " -"by the generated :meth:`~object.__repr__` method." +msgid "*repr*: If true (the default), this field is included in the string returned by the generated :meth:`~object.__repr__` method." msgstr "" -#: ../../library/dataclasses.rst:291 -msgid "" -"*hash*: This can be a bool or ``None``. If true, this field is included in " -"the generated :meth:`~object.__hash__` method. If false, this field is " -"excluded from the generated :meth:`~object.__hash__`. If ``None`` (the " -"default), use the value of *compare*: this would normally be the expected " -"behavior, since a field should be included in the hash if it's used for " -"comparisons. Setting this value to anything other than ``None`` is " -"discouraged." +msgid "*hash*: This can be a bool or ``None``. If true, this field is included in the generated :meth:`~object.__hash__` method. If false, this field is excluded from the generated :meth:`~object.__hash__`. If ``None`` (the default), use the value of *compare*: this would normally be the expected behavior, since a field should be included in the hash if it's used for comparisons. Setting this value to anything other than ``None`` is discouraged." msgstr "" -#: ../../library/dataclasses.rst:299 -msgid "" -"One possible reason to set ``hash=False`` but ``compare=True`` would be if a " -"field is expensive to compute a hash value for, that field is needed for " -"equality testing, and there are other fields that contribute to the type's " -"hash value. Even if a field is excluded from the hash, it will still be " -"used for comparisons." +msgid "One possible reason to set ``hash=False`` but ``compare=True`` would be if a field is expensive to compute a hash value for, that field is needed for equality testing, and there are other fields that contribute to the type's hash value. Even if a field is excluded from the hash, it will still be used for comparisons." msgstr "" -#: ../../library/dataclasses.rst:305 -msgid "" -"*compare*: If true (the default), this field is included in the generated " -"equality and comparison methods " -"(:meth:`~object.__eq__`, :meth:`~object.__gt__`, et al.)." +msgid "*compare*: If true (the default), this field is included in the generated equality and comparison methods (:meth:`~object.__eq__`, :meth:`~object.__gt__`, et al.)." msgstr "" -#: ../../library/dataclasses.rst:309 -msgid "" -"*metadata*: This can be a mapping or ``None``. ``None`` is treated as an " -"empty dict. This value is wrapped in :func:`~types.MappingProxyType` to " -"make it read-only, and exposed on the :class:`Field` object. It is not used " -"at all by Data Classes, and is provided as a third-party extension " -"mechanism. Multiple third-parties can each have their own key, to use as a " -"namespace in the metadata." +msgid "*metadata*: This can be a mapping or ``None``. ``None`` is treated as an empty dict. This value is wrapped in :func:`~types.MappingProxyType` to make it read-only, and exposed on the :class:`Field` object. It is not used at all by Data Classes, and is provided as a third-party extension mechanism. Multiple third-parties can each have their own key, to use as a namespace in the metadata." msgstr "" -#: ../../library/dataclasses.rst:317 -msgid "" -"*kw_only*: If true, this field will be marked as keyword-only. This is used " -"when the generated :meth:`~object.__init__` method's parameters are computed." +msgid "*kw_only*: If true, this field will be marked as keyword-only. This is used when the generated :meth:`~object.__init__` method's parameters are computed." msgstr "" -#: ../../library/dataclasses.rst:321 msgid "Keyword-only fields are also not included in :attr:`!__match_args__`." msgstr "" -#: ../../library/dataclasses.rst:325 msgid "*doc*: optional docstring for this field." msgstr "" -#: ../../library/dataclasses.rst:329 -msgid "" -"If the default value of a field is specified by a call to :func:`!field`, " -"then the class attribute for this field will be replaced by the specified " -"*default* value. If *default* is not provided, then the class attribute " -"will be deleted. The intent is that after the :deco:`dataclass` decorator " -"runs, the class attributes will all contain the default values for the " -"fields, just as if the default value itself were specified. For example, " -"after::" +msgid "If the default value of a field is specified by a call to :func:`!field`, then the class attribute for this field will be replaced by the specified *default* value. If *default* is not provided, then the class attribute will be deleted. The intent is that after the :deco:`dataclass` decorator runs, the class attributes will all contain the default values for the fields, just as if the default value itself were specified. For example, after::" msgstr "" -#: ../../library/dataclasses.rst:338 msgid "" "@dataclass\n" "class C:\n" @@ -511,73 +261,36 @@ msgid "" " t: int = 20" msgstr "" -#: ../../library/dataclasses.rst:345 -msgid "" -"The class attribute :attr:`!C.z` will be ``10``, the class attribute :attr:`!" -"C.t` will be ``20``, and the class attributes :attr:`!C.x` and :attr:`!C.y` " -"will not be set." +msgid "The class attribute :attr:`!C.z` will be ``10``, the class attribute :attr:`!C.t` will be ``20``, and the class attributes :attr:`!C.x` and :attr:`!C.y` will not be set." msgstr "" -#: ../../library/dataclasses.rst:351 -msgid "" -":class:`!Field` objects describe each defined field. These objects are " -"created internally, and are returned by the :func:`fields` module-level " -"method (see below). Users should never instantiate a :class:`!Field` object " -"directly. Its documented attributes are:" +msgid ":class:`!Field` objects describe each defined field. These objects are created internally, and are returned by the :func:`fields` module-level method (see below). Users should never instantiate a :class:`!Field` object directly. Its documented attributes are:" msgstr "" -#: ../../library/dataclasses.rst:356 msgid ":attr:`!name`: The name of the field." msgstr "" -#: ../../library/dataclasses.rst:357 msgid ":attr:`!type`: The type of the field." msgstr "" -#: ../../library/dataclasses.rst:358 -msgid "" -":attr:`!default`, :attr:`!default_factory`, :attr:`!init`, :attr:`!" -"repr`, :attr:`!hash`, :attr:`!compare`, :attr:`!metadata`, and :attr:`!" -"kw_only` have the identical meaning and values as they do in " -"the :func:`field` function." +msgid ":attr:`!default`, :attr:`!default_factory`, :attr:`!init`, :attr:`!repr`, :attr:`!hash`, :attr:`!compare`, :attr:`!metadata`, and :attr:`!kw_only` have the identical meaning and values as they do in the :func:`field` function." msgstr "" -#: ../../library/dataclasses.rst:362 -msgid "" -"Other attributes may exist, but they are private and must not be inspected " -"or relied on." +msgid "Other attributes may exist, but they are private and must not be inspected or relied on." msgstr "" -#: ../../library/dataclasses.rst:367 -msgid "" -"``InitVar[T]`` type annotations describe variables that are :ref:`init-only " -"`. Fields annotated with :class:`!InitVar` " -"are considered pseudo-fields, and thus are neither returned by " -"the :func:`fields` function nor used in any way except adding them as " -"parameters to :meth:`~object.__init__` and an optional :meth:`__post_init__`." +msgid "``InitVar[T]`` type annotations describe variables that are :ref:`init-only `. Fields annotated with :class:`!InitVar` are considered pseudo-fields, and thus are neither returned by the :func:`fields` function nor used in any way except adding them as parameters to :meth:`~object.__init__` and an optional :meth:`__post_init__`." msgstr "" -#: ../../library/dataclasses.rst:376 -msgid "" -"Returns a tuple of :class:`Field` objects that define the fields for this " -"dataclass. Accepts either a dataclass, or an instance of a dataclass. " -"Raises :exc:`TypeError` if not passed a dataclass or instance of one. Does " -"not return pseudo-fields which are ``ClassVar`` or ``InitVar``." +msgid "Returns a tuple of :class:`Field` objects that define the fields for this dataclass. Accepts either a dataclass, or an instance of a dataclass. Raises :exc:`TypeError` if not passed a dataclass or instance of one. Does not return pseudo-fields which are ``ClassVar`` or ``InitVar``." msgstr "" -#: ../../library/dataclasses.rst:383 -msgid "" -"Converts the dataclass *obj* to a dict (by using the factory function " -"*dict_factory*). Each dataclass is converted to a dict of its fields, as " -"``name: value`` pairs. dataclasses, dicts, lists, and tuples are recursed " -"into. Other objects are copied with :func:`copy.deepcopy`." +msgid "Converts the dataclass *obj* to a dict (by using the factory function *dict_factory*). Each dataclass is converted to a dict of its fields, as ``name: value`` pairs. dataclasses, dicts, lists, and tuples are recursed into. Other objects are copied with :func:`copy.deepcopy`." msgstr "" -#: ../../library/dataclasses.rst:389 msgid "Example of using :func:`!asdict` on nested dataclasses::" msgstr "" -#: ../../library/dataclasses.rst:391 msgid "" "@dataclass\n" "class Point:\n" @@ -595,82 +308,44 @@ msgid "" "assert asdict(c) == {'mylist': [{'x': 0, 'y': 0}, {'x': 10, 'y': 4}]}" msgstr "" -#: ../../library/dataclasses.rst:406 ../../library/dataclasses.rst:426 msgid "To create a shallow copy, the following workaround may be used::" msgstr "" -#: ../../library/dataclasses.rst:408 msgid "{field.name: getattr(obj, field.name) for field in fields(obj)}" msgstr "" -#: ../../library/dataclasses.rst:410 -msgid "" -":func:`!asdict` raises :exc:`TypeError` if *obj* is not a dataclass instance." +msgid ":func:`!asdict` raises :exc:`TypeError` if *obj* is not a dataclass instance." msgstr "" -#: ../../library/dataclasses.rst:415 -msgid "" -"Converts the dataclass *obj* to a tuple (by using the factory function " -"*tuple_factory*). Each dataclass is converted to a tuple of its field " -"values. dataclasses, dicts, lists, and tuples are recursed into. Other " -"objects are copied with :func:`copy.deepcopy`." +msgid "Converts the dataclass *obj* to a tuple (by using the factory function *tuple_factory*). Each dataclass is converted to a tuple of its field values. dataclasses, dicts, lists, and tuples are recursed into. Other objects are copied with :func:`copy.deepcopy`." msgstr "" -#: ../../library/dataclasses.rst:421 msgid "Continuing from the previous example::" msgstr "" -#: ../../library/dataclasses.rst:423 msgid "" "assert astuple(p) == (10, 20)\n" "assert astuple(c) == ([(0, 0), (10, 4)],)" msgstr "" -#: ../../library/dataclasses.rst:428 msgid "tuple(getattr(obj, field.name) for field in dataclasses.fields(obj))" msgstr "" -#: ../../library/dataclasses.rst:430 -msgid "" -":func:`!astuple` raises :exc:`TypeError` if *obj* is not a dataclass " -"instance." +msgid ":func:`!astuple` raises :exc:`TypeError` if *obj* is not a dataclass instance." msgstr "" -#: ../../library/dataclasses.rst:435 -msgid "" -"Creates a new dataclass with name *cls_name*, fields as defined in *fields*, " -"base classes as given in *bases*, and initialized with a namespace as given " -"in *namespace*. *fields* is an iterable whose elements are each either " -"``name``, ``(name, type)``, or ``(name, type, Field)``. If just ``name`` is " -"supplied, :data:`typing.Any` is used for ``type``. The values of *init*, " -"*repr*, *eq*, *order*, *unsafe_hash*, *frozen*, *match_args*, *kw_only*, " -"*slots*, and *weakref_slot* have the same meaning as they do " -"in :deco:`dataclass`." +msgid "Creates a new dataclass with name *cls_name*, fields as defined in *fields*, base classes as given in *bases*, and initialized with a namespace as given in *namespace*. *fields* is an iterable whose elements are each either ``name``, ``(name, type)``, or ``(name, type, Field)``. If just ``name`` is supplied, :data:`typing.Any` is used for ``type``. The values of *init*, *repr*, *eq*, *order*, *unsafe_hash*, *frozen*, *match_args*, *kw_only*, *slots*, and *weakref_slot* have the same meaning as they do in :deco:`dataclass`." msgstr "" -#: ../../library/dataclasses.rst:445 -msgid "" -"If *module* is defined, the :attr:`!__module__` attribute of the dataclass " -"is set to that value. By default, it is set to the module name of the caller." +msgid "If *module* is defined, the :attr:`!__module__` attribute of the dataclass is set to that value. By default, it is set to the module name of the caller." msgstr "" -#: ../../library/dataclasses.rst:449 -msgid "" -"The *decorator* parameter is a callable that will be used to create the " -"dataclass. It should take the class object as a first argument and the same " -"keyword arguments as :deco:`dataclass`. By default, the :deco:`dataclass` " -"function is used." +msgid "The *decorator* parameter is a callable that will be used to create the dataclass. It should take the class object as a first argument and the same keyword arguments as :deco:`dataclass`. By default, the :deco:`dataclass` function is used." msgstr "" -#: ../../library/dataclasses.rst:454 -msgid "" -"This function is not strictly required, because any Python mechanism for " -"creating a new class with :attr:`~object.__annotations__` can then apply " -"the :deco:`dataclass` function to convert that class to a dataclass. This " -"function is provided as a convenience. For example::" +msgid "This function is not strictly required, because any Python mechanism for creating a new class with :attr:`~object.__annotations__` can then apply the :deco:`dataclass` function to convert that class to a dataclass. This function is provided as a convenience. For example::" msgstr "" -#: ../../library/dataclasses.rst:460 msgid "" "C = make_dataclass('C',\n" " [('x', int),\n" @@ -679,11 +354,9 @@ msgid "" " namespace={'add_one': lambda self: self.x + 1})" msgstr "" -#: ../../library/dataclasses.rst:466 msgid "Is equivalent to::" msgstr "" -#: ../../library/dataclasses.rst:468 msgid "" "@dataclass\n" "class C:\n" @@ -695,97 +368,47 @@ msgid "" " return self.x + 1" msgstr "" -#: ../../library/dataclasses.rst:477 msgid "Added the *decorator* parameter." msgstr "" -#: ../../library/dataclasses.rst:482 -msgid "" -"Creates a new object of the same type as *obj*, replacing fields with values " -"from *changes*. If *obj* is not a Data Class, raises :exc:`TypeError`. If " -"keys in *changes* are not field names of the given dataclass, " -"raises :exc:`TypeError`." +msgid "Creates a new object of the same type as *obj*, replacing fields with values from *changes*. If *obj* is not a Data Class, raises :exc:`TypeError`. If keys in *changes* are not field names of the given dataclass, raises :exc:`TypeError`." msgstr "" -#: ../../library/dataclasses.rst:487 -msgid "" -"The newly returned object is created by calling the :meth:`~object.__init__` " -"method of the dataclass. This ensures that :meth:`__post_init__`, if " -"present, is also called." +msgid "The newly returned object is created by calling the :meth:`~object.__init__` method of the dataclass. This ensures that :meth:`__post_init__`, if present, is also called." msgstr "" -#: ../../library/dataclasses.rst:491 -msgid "" -"Init-only variables without default values, if any exist, must be specified " -"on the call to :func:`!replace` so that they can be passed to :meth:`!" -"__init__` and :meth:`__post_init__`." +msgid "Init-only variables without default values, if any exist, must be specified on the call to :func:`!replace` so that they can be passed to :meth:`!__init__` and :meth:`__post_init__`." msgstr "" -#: ../../library/dataclasses.rst:495 -msgid "" -"It is an error for *changes* to contain any fields that are defined as " -"having ``init=False``. A :exc:`ValueError` will be raised in this case." +msgid "It is an error for *changes* to contain any fields that are defined as having ``init=False``. A :exc:`ValueError` will be raised in this case." msgstr "" -#: ../../library/dataclasses.rst:499 -msgid "" -"Be forewarned about how ``init=False`` fields work during a call to :func:`!" -"replace`. They are not copied from the source object, but rather are " -"initialized in :meth:`__post_init__`, if they're initialized at all. It is " -"expected that ``init=False`` fields will be rarely and judiciously used. If " -"they are used, it might be wise to have alternate class constructors, or " -"perhaps a custom :func:`!replace` (or similarly named) method which handles " -"instance copying." +msgid "Be forewarned about how ``init=False`` fields work during a call to :func:`!replace`. They are not copied from the source object, but rather are initialized in :meth:`__post_init__`, if they're initialized at all. It is expected that ``init=False`` fields will be rarely and judiciously used. If they are used, it might be wise to have alternate class constructors, or perhaps a custom :func:`!replace` (or similarly named) method which handles instance copying." msgstr "" -#: ../../library/dataclasses.rst:508 -msgid "" -"Dataclass instances are also supported by generic " -"function :func:`copy.replace`." +msgid "Dataclass instances are also supported by generic function :func:`copy.replace`." msgstr "" -#: ../../library/dataclasses.rst:512 -msgid "" -"Return ``True`` if its parameter is a dataclass (including subclasses of a " -"dataclass, but not including :ref:`generic aliases `) or " -"an instance of one, otherwise return ``False``." +msgid "Return ``True`` if its parameter is a dataclass (including subclasses of a dataclass, but not including :ref:`generic aliases `) or an instance of one, otherwise return ``False``." msgstr "" -#: ../../library/dataclasses.rst:516 -msgid "" -"If you need to know if a class is an instance of a dataclass (and not a " -"dataclass itself), then add a further check for ``not isinstance(obj, " -"type)``::" +msgid "If you need to know if a class is an instance of a dataclass (and not a dataclass itself), then add a further check for ``not isinstance(obj, type)``::" msgstr "" -#: ../../library/dataclasses.rst:520 msgid "" "def is_dataclass_instance(obj):\n" " return is_dataclass(obj) and not isinstance(obj, type)" msgstr "" -#: ../../library/dataclasses.rst:525 msgid "A sentinel value signifying a missing default or default_factory." msgstr "" -#: ../../library/dataclasses.rst:529 -msgid "" -"A sentinel value used as a type annotation. Any fields after a pseudo-field " -"with the type of :const:`!KW_ONLY` are marked as keyword-only fields. Note " -"that a pseudo-field of type :const:`!KW_ONLY` is otherwise completely " -"ignored. This includes the name of such a field. By convention, a name of " -"``_`` is used for a :const:`!KW_ONLY` field. Keyword-only fields " -"signify :meth:`~object.__init__` parameters that must be specified as " -"keywords when the class is instantiated." +msgid "A sentinel value used as a type annotation. Any fields after a pseudo-field with the type of :const:`!KW_ONLY` are marked as keyword-only fields. Note that a pseudo-field of type :const:`!KW_ONLY` is otherwise completely ignored. This includes the name of such a field. By convention, a name of ``_`` is used for a :const:`!KW_ONLY` field. Keyword-only fields signify :meth:`~object.__init__` parameters that must be specified as keywords when the class is instantiated." msgstr "" -#: ../../library/dataclasses.rst:538 -msgid "" -"In this example, the fields ``y`` and ``z`` will be marked as keyword-only " -"fields::" +msgid "In this example, the fields ``y`` and ``z`` will be marked as keyword-only fields::" msgstr "" -#: ../../library/dataclasses.rst:540 msgid "" "@dataclass\n" "class Point:\n" @@ -797,40 +420,21 @@ msgid "" "p = Point(0, y=1.5, z=2.0)" msgstr "" -#: ../../library/dataclasses.rst:549 -msgid "" -"In a single dataclass, it is an error to specify more than one field whose " -"type is :const:`!KW_ONLY`." +msgid "In a single dataclass, it is an error to specify more than one field whose type is :const:`!KW_ONLY`." msgstr "" -#: ../../library/dataclasses.rst:556 -msgid "" -"Raised when an implicitly defined :meth:`~object.__setattr__` " -"or :meth:`~object.__delattr__` is called on a dataclass which was defined " -"with ``frozen=True``. It is a subclass of :exc:`AttributeError`." +msgid "Raised when an implicitly defined :meth:`~object.__setattr__` or :meth:`~object.__delattr__` is called on a dataclass which was defined with ``frozen=True``. It is a subclass of :exc:`AttributeError`." msgstr "" -#: ../../library/dataclasses.rst:563 msgid "Post-init processing" msgstr "" -#: ../../library/dataclasses.rst:567 -msgid "" -"When defined on the class, it will be called by the " -"generated :meth:`~object.__init__`, normally as :meth:`!self.__post_init__`. " -"However, if any ``InitVar`` fields are defined, they will also be passed " -"to :meth:`!__post_init__` in the order they were defined in the class. If " -"no :meth:`!__init__` method is generated, then :meth:`!__post_init__` will " -"not automatically be called." +msgid "When defined on the class, it will be called by the generated :meth:`~object.__init__`, normally as :meth:`!self.__post_init__`. However, if any ``InitVar`` fields are defined, they will also be passed to :meth:`!__post_init__` in the order they were defined in the class. If no :meth:`!__init__` method is generated, then :meth:`!__post_init__` will not automatically be called." msgstr "" -#: ../../library/dataclasses.rst:574 -msgid "" -"Among other uses, this allows for initializing field values that depend on " -"one or more other fields. For example::" +msgid "Among other uses, this allows for initializing field values that depend on one or more other fields. For example::" msgstr "" -#: ../../library/dataclasses.rst:577 msgid "" "@dataclass\n" "class C:\n" @@ -842,15 +446,9 @@ msgid "" " self.c = self.a + self.b" msgstr "" -#: ../../library/dataclasses.rst:586 -msgid "" -"The :meth:`~object.__init__` method generated by :deco:`dataclass` does not " -"call base class :meth:`!__init__` methods. If the base class has an :meth:`!" -"__init__` method that has to be called, it is common to call this method in " -"a :meth:`__post_init__` method::" +msgid "The :meth:`~object.__init__` method generated by :deco:`dataclass` does not call base class :meth:`!__init__` methods. If the base class has an :meth:`!__init__` method that has to be called, it is common to call this method in a :meth:`__post_init__` method::" msgstr "" -#: ../../library/dataclasses.rst:591 msgid "" "class Rectangle:\n" " def __init__(self, height, width):\n" @@ -865,59 +463,27 @@ msgid "" " super().__init__(self.side, self.side)" msgstr "" -#: ../../library/dataclasses.rst:603 -msgid "" -"Note, however, that in general the dataclass-generated :meth:`!__init__` " -"methods don't need to be called, since the derived dataclass will take care " -"of initializing all fields of any base class that is a dataclass itself." +msgid "Note, however, that in general the dataclass-generated :meth:`!__init__` methods don't need to be called, since the derived dataclass will take care of initializing all fields of any base class that is a dataclass itself." msgstr "" -#: ../../library/dataclasses.rst:607 -msgid "" -"See the section below on init-only variables for ways to pass parameters " -"to :meth:`!__post_init__`. Also see the warning about how :func:`replace` " -"handles ``init=False`` fields." +msgid "See the section below on init-only variables for ways to pass parameters to :meth:`!__post_init__`. Also see the warning about how :func:`replace` handles ``init=False`` fields." msgstr "" -#: ../../library/dataclasses.rst:614 msgid "Class variables" msgstr "" -#: ../../library/dataclasses.rst:616 -msgid "" -"One of the few places where :deco:`dataclass` actually inspects the type of " -"a field is to determine if a field is a class variable as defined " -"in :pep:`526`. It does this by checking if the type of the field " -"is :data:`typing.ClassVar`. If a field is a ``ClassVar``, it is excluded " -"from consideration as a field and is ignored by the dataclass mechanisms. " -"Such ``ClassVar`` pseudo-fields are not returned by the module-" -"level :func:`fields` function." +msgid "One of the few places where :deco:`dataclass` actually inspects the type of a field is to determine if a field is a class variable as defined in :pep:`526`. It does this by checking if the type of the field is :data:`typing.ClassVar`. If a field is a ``ClassVar``, it is excluded from consideration as a field and is ignored by the dataclass mechanisms. Such ``ClassVar`` pseudo-fields are not returned by the module-level :func:`fields` function." msgstr "" -#: ../../library/dataclasses.rst:627 msgid "Init-only variables" msgstr "" -#: ../../library/dataclasses.rst:629 -msgid "" -"Another place where :deco:`dataclass` inspects a type annotation is to " -"determine if a field is an init-only variable. It does this by seeing if " -"the type of a field is of type :class:`InitVar`. If a field is " -"an :class:`InitVar`, it is considered a pseudo-field called an init-only " -"field. As it is not a true field, it is not returned by the module-" -"level :func:`fields` function. Init-only fields are added as parameters to " -"the generated :meth:`~object.__init__` method, and are passed to the " -"optional :meth:`__post_init__` method. They are not otherwise used by " -"dataclasses." -msgstr "" - -#: ../../library/dataclasses.rst:639 -msgid "" -"For example, suppose a field will be initialized from a database, if a value " -"is not provided when creating the class::" +msgid "Another place where :deco:`dataclass` inspects a type annotation is to determine if a field is an init-only variable. It does this by seeing if the type of a field is of type :class:`InitVar`. If a field is an :class:`InitVar`, it is considered a pseudo-field called an init-only field. As it is not a true field, it is not returned by the module-level :func:`fields` function. Init-only fields are added as parameters to the generated :meth:`~object.__init__` method, and are passed to the optional :meth:`__post_init__` method. They are not otherwise used by dataclasses." +msgstr "" + +msgid "For example, suppose a field will be initialized from a database, if a value is not provided when creating the class::" msgstr "" -#: ../../library/dataclasses.rst:642 msgid "" "@dataclass\n" "class C:\n" @@ -932,50 +498,24 @@ msgid "" "c = C(10, database=my_database)" msgstr "" -#: ../../library/dataclasses.rst:654 -msgid "" -"In this case, :func:`fields` will return :class:`Field` objects for :attr:`!" -"i` and :attr:`!j`, but not for :attr:`!database`." +msgid "In this case, :func:`fields` will return :class:`Field` objects for :attr:`!i` and :attr:`!j`, but not for :attr:`!database`." msgstr "" -#: ../../library/dataclasses.rst:660 msgid "Frozen instances" msgstr "" -#: ../../library/dataclasses.rst:662 -msgid "" -"It is not possible to create truly immutable Python objects. However, by " -"passing ``frozen=True`` to the :deco:`dataclass` decorator you can emulate " -"immutability. In that case, dataclasses will " -"add :meth:`~object.__setattr__` and :meth:`~object.__delattr__` methods to " -"the class. These methods will raise a :exc:`FrozenInstanceError` when " -"invoked." +msgid "It is not possible to create truly immutable Python objects. However, by passing ``frozen=True`` to the :deco:`dataclass` decorator you can emulate immutability. In that case, dataclasses will add :meth:`~object.__setattr__` and :meth:`~object.__delattr__` methods to the class. These methods will raise a :exc:`FrozenInstanceError` when invoked." msgstr "" -#: ../../library/dataclasses.rst:668 -msgid "" -"There is a tiny performance penalty when using " -"``frozen=True``: :meth:`~object.__init__` cannot use simple assignment to " -"initialize fields, and must use :meth:`!object.__setattr__`." +msgid "There is a tiny performance penalty when using ``frozen=True``: :meth:`~object.__init__` cannot use simple assignment to initialize fields, and must use :meth:`!object.__setattr__`." msgstr "" -#: ../../library/dataclasses.rst:677 msgid "Inheritance" msgstr "" -#: ../../library/dataclasses.rst:679 -msgid "" -"When the dataclass is being created by the :deco:`dataclass` decorator, it " -"looks through all of the class's base classes in reverse MRO (that is, " -"starting at :class:`object`) and, for each dataclass that it finds, adds the " -"fields from that base class to an ordered mapping of fields. After all of " -"the base class fields are added, it adds its own fields to the ordered " -"mapping. All of the generated methods will use this combined, calculated " -"ordered mapping of fields. Because the fields are in insertion order, " -"derived classes override base classes. An example::" +msgid "When the dataclass is being created by the :deco:`dataclass` decorator, it looks through all of the class's base classes in reverse MRO (that is, starting at :class:`object`) and, for each dataclass that it finds, adds the fields from that base class to an ordered mapping of fields. After all of the base class fields are added, it adds its own fields to the ordered mapping. All of the generated methods will use this combined, calculated ordered mapping of fields. Because the fields are in insertion order, derived classes override base classes. An example::" msgstr "" -#: ../../library/dataclasses.rst:689 msgid "" "@dataclass\n" "class Base:\n" @@ -988,43 +528,24 @@ msgid "" " x: int = 15" msgstr "" -#: ../../library/dataclasses.rst:699 -msgid "" -"The final list of fields is, in order, :attr:`!x`, :attr:`!y`, :attr:`!z`. " -"The final type of :attr:`!x` is :class:`int`, as specified in class :class:`!" -"C`." +msgid "The final list of fields is, in order, :attr:`!x`, :attr:`!y`, :attr:`!z`. The final type of :attr:`!x` is :class:`int`, as specified in class :class:`!C`." msgstr "" -#: ../../library/dataclasses.rst:702 -msgid "" -"The generated :meth:`~object.__init__` method for :class:`!C` will look " -"like::" +msgid "The generated :meth:`~object.__init__` method for :class:`!C` will look like::" msgstr "" -#: ../../library/dataclasses.rst:704 msgid "def __init__(self, x: int = 15, y: int = 0, z: int = 10):" msgstr "" -#: ../../library/dataclasses.rst:707 msgid "Re-ordering of keyword-only parameters in :meth:`!__init__`" msgstr "" -#: ../../library/dataclasses.rst:709 -msgid "" -"After the parameters needed for :meth:`~object.__init__` are computed, any " -"keyword-only parameters are moved to come after all regular (non-keyword-" -"only) parameters. This is a requirement of how keyword-only parameters are " -"implemented in Python: they must come after non-keyword-only parameters." +msgid "After the parameters needed for :meth:`~object.__init__` are computed, any keyword-only parameters are moved to come after all regular (non-keyword-only) parameters. This is a requirement of how keyword-only parameters are implemented in Python: they must come after non-keyword-only parameters." msgstr "" -#: ../../library/dataclasses.rst:715 -msgid "" -"In this example, :attr:`!Base.y`, :attr:`!Base.w`, and :attr:`!D.t` are " -"keyword-only fields, and :attr:`!Base.x` and :attr:`!D.z` are regular " -"fields::" +msgid "In this example, :attr:`!Base.y`, :attr:`!Base.w`, and :attr:`!D.t` are keyword-only fields, and :attr:`!Base.x` and :attr:`!D.z` are regular fields::" msgstr "" -#: ../../library/dataclasses.rst:718 msgid "" "@dataclass\n" "class Base:\n" @@ -1039,64 +560,36 @@ msgid "" " t: int = field(kw_only=True, default=0)" msgstr "" -#: ../../library/dataclasses.rst:730 msgid "The generated :meth:`!__init__` method for :class:`!D` will look like::" msgstr "" -#: ../../library/dataclasses.rst:732 -msgid "" -"def __init__(self, x: Any = 15.0, z: int = 10, *, y: int = 0, w: int = 1, t: " -"int = 0):" +msgid "def __init__(self, x: Any = 15.0, z: int = 10, *, y: int = 0, w: int = 1, t: int = 0):" msgstr "" -#: ../../library/dataclasses.rst:734 -msgid "" -"Note that the parameters have been re-ordered from how they appear in the " -"list of fields: parameters derived from regular fields are followed by " -"parameters derived from keyword-only fields." +msgid "Note that the parameters have been re-ordered from how they appear in the list of fields: parameters derived from regular fields are followed by parameters derived from keyword-only fields." msgstr "" -#: ../../library/dataclasses.rst:738 -msgid "" -"The relative ordering of keyword-only parameters is maintained in the re-" -"ordered :meth:`!__init__` parameter list." +msgid "The relative ordering of keyword-only parameters is maintained in the re-ordered :meth:`!__init__` parameter list." msgstr "" -#: ../../library/dataclasses.rst:743 msgid "Default factory functions" msgstr "" -#: ../../library/dataclasses.rst:745 -msgid "" -"If a :func:`field` specifies a *default_factory*, it is called with zero " -"arguments when a default value for the field is needed. For example, to " -"create a new instance of a list, use::" +msgid "If a :func:`field` specifies a *default_factory*, it is called with zero arguments when a default value for the field is needed. For example, to create a new instance of a list, use::" msgstr "" -#: ../../library/dataclasses.rst:749 msgid "mylist: list = field(default_factory=list)" msgstr "" -#: ../../library/dataclasses.rst:751 -msgid "" -"If a field is excluded from :meth:`~object.__init__` (using ``init=False``) " -"and the field also specifies *default_factory*, then the default factory " -"function will always be called from the generated :meth:`!__init__` " -"function. This happens because there is no other way to give the field an " -"initial value." +msgid "If a field is excluded from :meth:`~object.__init__` (using ``init=False``) and the field also specifies *default_factory*, then the default factory function will always be called from the generated :meth:`!__init__` function. This happens because there is no other way to give the field an initial value." msgstr "" -#: ../../library/dataclasses.rst:758 msgid "Mutable default values" msgstr "" -#: ../../library/dataclasses.rst:760 -msgid "" -"Python stores default member variable values in class attributes. Consider " -"this example, not using dataclasses::" +msgid "Python stores default member variable values in class attributes. Consider this example, not using dataclasses::" msgstr "" -#: ../../library/dataclasses.rst:763 msgid "" "class C:\n" " x = []\n" @@ -1111,17 +604,12 @@ msgid "" "assert o1.x is o2.x" msgstr "" -#: ../../library/dataclasses.rst:775 -msgid "" -"Note that the two instances of class :class:`!C` share the same class " -"variable :attr:`!x`, as expected." +msgid "Note that the two instances of class :class:`!C` share the same class variable :attr:`!x`, as expected." msgstr "" -#: ../../library/dataclasses.rst:778 msgid "Using dataclasses, *if* this code was valid::" msgstr "" -#: ../../library/dataclasses.rst:780 msgid "" "@dataclass\n" "class D:\n" @@ -1130,11 +618,9 @@ msgid "" " self.x.append(element)" msgstr "" -#: ../../library/dataclasses.rst:786 msgid "it would generate code similar to::" msgstr "" -#: ../../library/dataclasses.rst:788 msgid "" "class D:\n" " x = []\n" @@ -1146,26 +632,12 @@ msgid "" "assert D().x is D().x" msgstr "" -#: ../../library/dataclasses.rst:797 -msgid "" -"This has the same issue as the original example using class :class:`!C`. " -"That is, two instances of class :class:`!D` that do not specify a value " -"for :attr:`!x` when creating a class instance will share the same copy " -"of :attr:`!x`. Because dataclasses just use normal Python class creation " -"they also share this behavior. There is no general way for Data Classes to " -"detect this condition. Instead, the :deco:`dataclass` decorator will raise " -"a :exc:`ValueError` if it detects an unhashable default parameter. The " -"assumption is that if a value is unhashable, it is mutable. This is a " -"partial solution, but it does protect against many common errors." -msgstr "" - -#: ../../library/dataclasses.rst:808 -msgid "" -"Using default factory functions is a way to create new instances of mutable " -"types as default values for fields::" +msgid "This has the same issue as the original example using class :class:`!C`. That is, two instances of class :class:`!D` that do not specify a value for :attr:`!x` when creating a class instance will share the same copy of :attr:`!x`. Because dataclasses just use normal Python class creation they also share this behavior. There is no general way for Data Classes to detect this condition. Instead, the :deco:`dataclass` decorator will raise a :exc:`ValueError` if it detects an unhashable default parameter. The assumption is that if a value is unhashable, it is mutable. This is a partial solution, but it does protect against many common errors." +msgstr "" + +msgid "Using default factory functions is a way to create new instances of mutable types as default values for fields::" msgstr "" -#: ../../library/dataclasses.rst:811 msgid "" "@dataclass\n" "class D:\n" @@ -1174,49 +646,24 @@ msgid "" "assert D().x is not D().x" msgstr "" -#: ../../library/dataclasses.rst:817 -msgid "" -"Instead of looking for and disallowing objects of " -"type :class:`list`, :class:`dict`, or :class:`set`, unhashable objects are " -"now not allowed as default values. Unhashability is used to approximate " -"mutability." +msgid "Instead of looking for and disallowing objects of type :class:`list`, :class:`dict`, or :class:`set`, unhashable objects are now not allowed as default values. Unhashability is used to approximate mutability." msgstr "" -#: ../../library/dataclasses.rst:824 msgid "Descriptor-typed fields" msgstr "" -#: ../../library/dataclasses.rst:826 -msgid "" -"Fields that are assigned :ref:`descriptor objects ` as their " -"default value have the following special behaviors:" +msgid "Fields that are assigned :ref:`descriptor objects ` as their default value have the following special behaviors:" msgstr "" -#: ../../library/dataclasses.rst:829 -msgid "" -"The value for the field passed to the dataclass's :meth:`~object.__init__` " -"method is passed to the descriptor's :meth:`~object.__set__` method rather " -"than overwriting the descriptor object." +msgid "The value for the field passed to the dataclass's :meth:`~object.__init__` method is passed to the descriptor's :meth:`~object.__set__` method rather than overwriting the descriptor object." msgstr "" -#: ../../library/dataclasses.rst:833 -msgid "" -"Similarly, when getting or setting the field, the " -"descriptor's :meth:`~object.__get__` or :meth:`!__set__` method is called " -"rather than returning or overwriting the descriptor object." +msgid "Similarly, when getting or setting the field, the descriptor's :meth:`~object.__get__` or :meth:`!__set__` method is called rather than returning or overwriting the descriptor object." msgstr "" -#: ../../library/dataclasses.rst:837 -msgid "" -"To determine whether a field contains a default value, :deco:`dataclass` " -"will call the descriptor's :meth:`!__get__` method using its class access " -"form: ``descriptor.__get__(obj=None, type=cls)``. If the descriptor returns " -"a value in this case, it will be used as the field's default. On the other " -"hand, if the descriptor raises :exc:`AttributeError` in this situation, no " -"default value will be provided for the field." +msgid "To determine whether a field contains a default value, :deco:`dataclass` will call the descriptor's :meth:`!__get__` method using its class access form: ``descriptor.__get__(obj=None, type=cls)``. If the descriptor returns a value in this case, it will be used as the field's default. On the other hand, if the descriptor raises :exc:`AttributeError` in this situation, no default value will be provided for the field." msgstr "" -#: ../../library/dataclasses.rst:847 msgid "" "class IntConversionDescriptor:\n" " def __init__(self, *, default):\n" @@ -1236,8 +683,7 @@ msgid "" "\n" "@dataclass\n" "class InventoryItem:\n" -" quantity_on_hand: IntConversionDescriptor = " -"IntConversionDescriptor(default=100)\n" +" quantity_on_hand: IntConversionDescriptor = IntConversionDescriptor(default=100)\n" "\n" "i = InventoryItem()\n" "print(i.quantity_on_hand) # 100\n" @@ -1245,9 +691,5 @@ msgid "" "print(i.quantity_on_hand) # 2" msgstr "" -#: ../../library/dataclasses.rst:872 -msgid "" -"Note that if a field is annotated with a descriptor type, but is not " -"assigned a descriptor object as its default value, the field will act like a " -"normal field." +msgid "Note that if a field is annotated with a descriptor type, but is not assigned a descriptor object as its default value, the field will act like a normal field." msgstr "" diff --git a/library/datatypes.po b/library/datatypes.po index e7e262ac..7c40a226 100644 --- a/library/datatypes.po +++ b/library/datatypes.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:04+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,26 +21,14 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/datatypes.rst:5 msgid "Data Types" msgstr "" -#: ../../library/datatypes.rst:7 -msgid "" -"The modules described in this chapter provide a variety of specialized data " -"types such as dates and times, fixed-type arrays, heap queues, double-ended " -"queues, and enumerations." +msgid "The modules described in this chapter provide a variety of specialized data types such as dates and times, fixed-type arrays, heap queues, double-ended queues, and enumerations." msgstr "" -#: ../../library/datatypes.rst:11 -msgid "" -"Python also provides some built-in data types, in " -"particular, :class:`dict`, :class:`list`, :class:`set` " -"and :class:`frozenset`, and :class:`tuple`. The :class:`str` class is used " -"to hold Unicode strings, and the :class:`bytes` and :class:`bytearray` " -"classes are used to hold binary data." +msgid "Python also provides some built-in data types, in particular, :class:`dict`, :class:`list`, :class:`set` and :class:`frozenset`, and :class:`tuple`. The :class:`str` class is used to hold Unicode strings, and the :class:`bytes` and :class:`bytearray` classes are used to hold binary data." msgstr "" -#: ../../library/datatypes.rst:17 msgid "The following modules are documented in this chapter:" msgstr "" diff --git a/library/datetime.po b/library/datetime.po index 87dea1d0..de1addf3 100644 --- a/library/datetime.po +++ b/library/datetime.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:04+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -25,347 +25,203 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/datetime.rst:2 msgid ":mod:`!datetime` --- Basic date and time types" msgstr "" -#: ../../library/datetime.rst:11 msgid "**Source code:** :source:`Lib/datetime.py`" msgstr "" -#: ../../library/datetime.rst:15 -msgid "" -"The :mod:`!datetime` module supplies classes for manipulating dates and " -"times." +msgid "The :mod:`!datetime` module supplies classes for manipulating dates and times." msgstr "" -#: ../../library/datetime.rst:17 -msgid "" -"While date and time arithmetic is supported, the focus of the implementation " -"is on efficient attribute extraction for output formatting and manipulation." +msgid "While date and time arithmetic is supported, the focus of the implementation is on efficient attribute extraction for output formatting and manipulation." msgstr "" -#: ../../library/datetime.rst:22 msgid "Skip to :ref:`the format codes `." msgstr "" -#: ../../library/datetime.rst:26 msgid "Module :mod:`calendar`" msgstr "" -#: ../../library/datetime.rst:27 msgid "General calendar related functions." msgstr "" -#: ../../library/datetime.rst:29 msgid "Module :mod:`time`" msgstr "" -#: ../../library/datetime.rst:30 msgid "Time access and conversions." msgstr "" -#: ../../library/datetime.rst:32 msgid "Module :mod:`zoneinfo`" msgstr "" -#: ../../library/datetime.rst:33 msgid "Concrete time zones representing the IANA time zone database." msgstr "" -#: ../../library/datetime.rst:35 msgid "Package `dateutil `_" msgstr "" -#: ../../library/datetime.rst:36 msgid "Third-party library with expanded time zone and parsing support." msgstr "" -#: ../../library/datetime.rst:38 msgid "Package :pypi:`DateType`" msgstr "" -#: ../../library/datetime.rst:39 -msgid "" -"Third-party library that introduces distinct static types to for example, " -"allow :term:`static type checkers ` to differentiate " -"between naive and aware datetimes." +msgid "Third-party library that introduces distinct static types to for example, allow :term:`static type checkers ` to differentiate between naive and aware datetimes." msgstr "" -#: ../../library/datetime.rst:47 msgid "Aware and naive objects" msgstr "" -#: ../../library/datetime.rst:49 -msgid "" -"Date and time objects may be categorized as \"aware\" or \"naive\" depending " -"on whether or not they include time zone information." +msgid "Date and time objects may be categorized as \"aware\" or \"naive\" depending on whether or not they include time zone information." msgstr "" -#: ../../library/datetime.rst:52 -msgid "" -"With sufficient knowledge of applicable algorithmic and political time " -"adjustments, such as time zone and daylight saving time information, an " -"**aware** object can locate itself relative to other aware objects. An aware " -"object represents a specific moment in time that is not open to " -"interpretation. [#]_" +msgid "With sufficient knowledge of applicable algorithmic and political time adjustments, such as time zone and daylight saving time information, an **aware** object can locate itself relative to other aware objects. An aware object represents a specific moment in time that is not open to interpretation. [#]_" msgstr "" -#: ../../library/datetime.rst:58 -msgid "" -"A **naive** object does not contain enough information to unambiguously " -"locate itself relative to other date/time objects. Whether a naive object " -"represents Coordinated Universal Time (UTC), local time, or time in some " -"other time zone is purely up to the program, just like it is up to the " -"program whether a particular number represents metres, miles, or mass. Naive " -"objects are easy to understand and to work with, at the cost of ignoring " -"some aspects of reality." +msgid "A **naive** object does not contain enough information to unambiguously locate itself relative to other date/time objects. Whether a naive object represents Coordinated Universal Time (UTC), local time, or time in some other time zone is purely up to the program, just like it is up to the program whether a particular number represents metres, miles, or mass. Naive objects are easy to understand and to work with, at the cost of ignoring some aspects of reality." msgstr "" -#: ../../library/datetime.rst:65 -msgid "" -"For applications requiring aware objects, :class:`.datetime` " -"and :class:`.time` objects have an optional time zone information " -"attribute, :attr:`!tzinfo`, that can be set to an instance of a subclass of " -"the abstract :class:`!tzinfo` class. These :class:`tzinfo` objects capture " -"information about the offset from UTC time, the time zone name, and whether " -"daylight saving time is in effect." +msgid "For applications requiring aware objects, :class:`.datetime` and :class:`.time` objects have an optional time zone information attribute, :attr:`!tzinfo`, that can be set to an instance of a subclass of the abstract :class:`!tzinfo` class. These :class:`tzinfo` objects capture information about the offset from UTC time, the time zone name, and whether daylight saving time is in effect." msgstr "" -#: ../../library/datetime.rst:71 -msgid "" -"Only one concrete :class:`tzinfo` class, the :class:`timezone` class, is " -"supplied by the :mod:`!datetime` module. The :class:`!timezone` class can " -"represent simple time zones with fixed offsets from UTC, such as UTC itself " -"or North American EST and EDT time zones. Supporting time zones at deeper " -"levels of detail is up to the application. The rules for time adjustment " -"across the world are more political than rational, change frequently, and " -"there is no standard suitable for every application aside from UTC." +msgid "Only one concrete :class:`tzinfo` class, the :class:`timezone` class, is supplied by the :mod:`!datetime` module. The :class:`!timezone` class can represent simple time zones with fixed offsets from UTC, such as UTC itself or North American EST and EDT time zones. Supporting time zones at deeper levels of detail is up to the application. The rules for time adjustment across the world are more political than rational, change frequently, and there is no standard suitable for every application aside from UTC." msgstr "" -#: ../../library/datetime.rst:81 msgid "Constants" msgstr "" -#: ../../library/datetime.rst:83 msgid "The :mod:`!datetime` module exports the following constants:" msgstr "" -#: ../../library/datetime.rst:87 -msgid "" -"The smallest year number allowed in a :class:`date` or :class:`.datetime` " -"object. :const:`MINYEAR` is 1." +msgid "The smallest year number allowed in a :class:`date` or :class:`.datetime` object. :const:`MINYEAR` is 1." msgstr "" -#: ../../library/datetime.rst:93 -msgid "" -"The largest year number allowed in a :class:`date` or :class:`.datetime` " -"object. :const:`MAXYEAR` is 9999." +msgid "The largest year number allowed in a :class:`date` or :class:`.datetime` object. :const:`MAXYEAR` is 9999." msgstr "" -#: ../../library/datetime.rst:99 msgid "Alias for the UTC time zone singleton :attr:`datetime.timezone.utc`." msgstr "" -#: ../../library/datetime.rst:105 msgid "Available types" msgstr "" -#: ../../library/datetime.rst:110 -msgid "" -"An idealized naive date, assuming the current Gregorian calendar always was, " -"and always will be, in effect. Attributes: :attr:`year`, :attr:`month`, " -"and :attr:`day`." +msgid "An idealized naive date, assuming the current Gregorian calendar always was, and always will be, in effect. Attributes: :attr:`year`, :attr:`month`, and :attr:`day`." msgstr "" -#: ../../library/datetime.rst:118 -msgid "" -"An idealized time, independent of any particular day, assuming that every " -"day has exactly 24\\*60\\*60 seconds. (There is no notion of \"leap " -"seconds\" here.) " -"Attributes: :attr:`hour`, :attr:`minute`, :attr:`second`, :attr:`microsecond`, " -"and :attr:`.tzinfo`." +msgid "An idealized time, independent of any particular day, assuming that every day has exactly 24\\*60\\*60 seconds. (There is no notion of \"leap seconds\" here.) Attributes: :attr:`hour`, :attr:`minute`, :attr:`second`, :attr:`microsecond`, and :attr:`.tzinfo`." msgstr "" -#: ../../library/datetime.rst:127 -msgid "" -"A combination of a date and a time. " -"Attributes: :attr:`year`, :attr:`month`, :attr:`day`, :attr:`hour`, :attr:`minute`, :attr:`second`, :attr:`microsecond`, " -"and :attr:`.tzinfo`." +msgid "A combination of a date and a time. Attributes: :attr:`year`, :attr:`month`, :attr:`day`, :attr:`hour`, :attr:`minute`, :attr:`second`, :attr:`microsecond`, and :attr:`.tzinfo`." msgstr "" -#: ../../library/datetime.rst:135 -msgid "" -"A duration expressing the difference between two :class:`.datetime` " -"or :class:`date` instances to microsecond resolution." +msgid "A duration expressing the difference between two :class:`.datetime` or :class:`date` instances to microsecond resolution." msgstr "" -#: ../../library/datetime.rst:142 -msgid "" -"An abstract base class for time zone information objects. These are used by " -"the :class:`.datetime` and :class:`.time` classes to provide a customizable " -"notion of time adjustment (for example, to account for time zone and/or " -"daylight saving time)." +msgid "An abstract base class for time zone information objects. These are used by the :class:`.datetime` and :class:`.time` classes to provide a customizable notion of time adjustment (for example, to account for time zone and/or daylight saving time)." msgstr "" -#: ../../library/datetime.rst:151 -msgid "" -"A class that implements the :class:`tzinfo` abstract base class as a fixed " -"offset from the UTC." +msgid "A class that implements the :class:`tzinfo` abstract base class as a fixed offset from the UTC." msgstr "" -#: ../../library/datetime.rst:157 ../../library/datetime.rst:174 msgid "Objects of these types are immutable." msgstr "" -#: ../../library/datetime.rst:159 msgid "Subclass relationships:" msgstr "" -#: ../../library/datetime.rst:161 msgid "" "timedelta, tzinfo, time, and date inherit from object; timezone inherits\n" "from tzinfo; and datetime inherits from date." msgstr "" -#: ../../library/datetime.rst:169 msgid "Common properties" msgstr "" -#: ../../library/datetime.rst:171 -msgid "" -"The :class:`date`, :class:`.datetime`, :class:`.time`, and :class:`timezone` " -"types share these common features:" +msgid "The :class:`date`, :class:`.datetime`, :class:`.time`, and :class:`timezone` types share these common features:" msgstr "" -#: ../../library/datetime.rst:175 -msgid "" -"Objects of these types are :term:`hashable`, meaning that they can be used " -"as dictionary keys." +msgid "Objects of these types are :term:`hashable`, meaning that they can be used as dictionary keys." msgstr "" -#: ../../library/datetime.rst:177 -msgid "" -"Objects of these types support efficient pickling via the :mod:`pickle` " -"module." +msgid "Objects of these types support efficient pickling via the :mod:`pickle` module." msgstr "" -#: ../../library/datetime.rst:181 msgid "Determining if an object is aware or naive" msgstr "" -#: ../../library/datetime.rst:183 msgid "Objects of the :class:`date` type are always naive." msgstr "" -#: ../../library/datetime.rst:185 -msgid "" -"An object of type :class:`.time` or :class:`.datetime` may be aware or naive." +msgid "An object of type :class:`.time` or :class:`.datetime` may be aware or naive." msgstr "" -#: ../../library/datetime.rst:187 -msgid "" -"A :class:`.datetime` object ``d`` is aware if both of the following hold:" +msgid "A :class:`.datetime` object ``d`` is aware if both of the following hold:" msgstr "" -#: ../../library/datetime.rst:189 msgid "``d.tzinfo`` is not ``None``" msgstr "" -#: ../../library/datetime.rst:190 msgid "``d.tzinfo.utcoffset(d)`` does not return ``None``" msgstr "" -#: ../../library/datetime.rst:192 msgid "Otherwise, ``d`` is naive." msgstr "" -#: ../../library/datetime.rst:194 msgid "A :class:`.time` object ``t`` is aware if both of the following hold:" msgstr "" -#: ../../library/datetime.rst:196 msgid "``t.tzinfo`` is not ``None``" msgstr "" -#: ../../library/datetime.rst:197 msgid "``t.tzinfo.utcoffset(None)`` does not return ``None``." msgstr "" -#: ../../library/datetime.rst:199 msgid "Otherwise, ``t`` is naive." msgstr "" -#: ../../library/datetime.rst:201 -msgid "" -"The distinction between aware and naive doesn't apply to :class:`timedelta` " -"objects." +msgid "The distinction between aware and naive doesn't apply to :class:`timedelta` objects." msgstr "" -#: ../../library/datetime.rst:208 msgid ":class:`!timedelta` objects" msgstr "" -#: ../../library/datetime.rst:210 -msgid "" -"A :class:`timedelta` object represents a duration, the difference between " -"two :class:`.datetime` or :class:`date` instances." +msgid "A :class:`timedelta` object represents a duration, the difference between two :class:`.datetime` or :class:`date` instances." msgstr "" -#: ../../library/datetime.rst:215 -msgid "" -"All arguments are optional and default to 0. Arguments may be integers or " -"floats, and may be positive or negative." +msgid "All arguments are optional and default to 0. Arguments may be integers or floats, and may be positive or negative." msgstr "" -#: ../../library/datetime.rst:218 -msgid "" -"Only *days*, *seconds* and *microseconds* are stored internally. Arguments " -"are converted to those units:" +msgid "Only *days*, *seconds* and *microseconds* are stored internally. Arguments are converted to those units:" msgstr "" -#: ../../library/datetime.rst:221 msgid "A millisecond is converted to 1000 microseconds." msgstr "" -#: ../../library/datetime.rst:222 msgid "A minute is converted to 60 seconds." msgstr "" -#: ../../library/datetime.rst:223 msgid "An hour is converted to 3600 seconds." msgstr "" -#: ../../library/datetime.rst:224 msgid "A week is converted to 7 days." msgstr "" -#: ../../library/datetime.rst:226 -msgid "" -"and days, seconds and microseconds are then normalized so that the " -"representation is unique, with" +msgid "and days, seconds and microseconds are then normalized so that the representation is unique, with" msgstr "" -#: ../../library/datetime.rst:229 msgid "``0 <= microseconds < 1000000``" msgstr "" -#: ../../library/datetime.rst:230 msgid "``0 <= seconds < 3600*24`` (the number of seconds in one day)" msgstr "" -#: ../../library/datetime.rst:231 msgid "``-999999999 <= days <= 999999999``" msgstr "" -#: ../../library/datetime.rst:233 -msgid "" -"The following example illustrates how any arguments besides *days*, " -"*seconds* and *microseconds* are \"merged\" and normalized into those three " -"resulting attributes::" +msgid "The following example illustrates how any arguments besides *days*, *seconds* and *microseconds* are \"merged\" and normalized into those three resulting attributes::" msgstr "" -#: ../../library/datetime.rst:237 msgid "" ">>> import datetime as dt\n" ">>> delta = dt.timedelta(\n" @@ -382,36 +238,18 @@ msgid "" "datetime.timedelta(days=64, seconds=29156, microseconds=10)" msgstr "" -#: ../../library/datetime.rst:252 -msgid "" -"``import datetime as dt`` instead of ``import datetime`` or ``from datetime " -"import datetime`` to avoid confusion between the module and the class. See " -"`How I Import Python’s datetime Module `__." +msgid "``import datetime as dt`` instead of ``import datetime`` or ``from datetime import datetime`` to avoid confusion between the module and the class. See `How I Import Python’s datetime Module `__." msgstr "" -#: ../../library/datetime.rst:257 -msgid "" -"If any argument is a float and there are fractional microseconds, the " -"fractional microseconds left over from all arguments are combined and their " -"sum is rounded to the nearest microsecond using round-half-to-even " -"tiebreaker. If no argument is a float, the conversion and normalization " -"processes are exact (no information is lost)." +msgid "If any argument is a float and there are fractional microseconds, the fractional microseconds left over from all arguments are combined and their sum is rounded to the nearest microsecond using round-half-to-even tiebreaker. If no argument is a float, the conversion and normalization processes are exact (no information is lost)." msgstr "" -#: ../../library/datetime.rst:264 -msgid "" -"If the normalized value of days lies outside the indicated " -"range, :exc:`OverflowError` is raised." +msgid "If the normalized value of days lies outside the indicated range, :exc:`OverflowError` is raised." msgstr "" -#: ../../library/datetime.rst:267 -msgid "" -"Note that normalization of negative values may be surprising at first. For " -"example::" +msgid "Note that normalization of negative values may be surprising at first. For example::" msgstr "" -#: ../../library/datetime.rst:270 msgid "" ">>> import datetime as dt\n" ">>> d = dt.timedelta(microseconds=-1)\n" @@ -419,13 +257,9 @@ msgid "" "(-1, 86399, 999999)" msgstr "" -#: ../../library/datetime.rst:275 -msgid "" -"Since the string representation of :class:`!timedelta` objects can be " -"confusing, use the following recipe to produce a more readable format:" +msgid "Since the string representation of :class:`!timedelta` objects can be confusing, use the following recipe to produce a more readable format:" msgstr "" -#: ../../library/datetime.rst:278 msgid "" ">>> def pretty_timedelta(td):\n" "... if td.days >= 0:\n" @@ -439,56 +273,33 @@ msgid "" "'-(1:00:00)'" msgstr "" -#: ../../library/datetime.rst:292 ../../library/datetime.rst:630 -#: ../../library/datetime.rst:1200 ../../library/datetime.rst:1845 -#: ../../library/datetime.rst:2481 msgid "Class attributes:" msgstr "" -#: ../../library/datetime.rst:296 msgid "The most negative :class:`timedelta` object, ``timedelta(-999999999)``." msgstr "" -#: ../../library/datetime.rst:301 -msgid "" -"The most positive :class:`timedelta` object, ``timedelta(days=999999999, " -"hours=23, minutes=59, seconds=59, microseconds=999999)``." +msgid "The most positive :class:`timedelta` object, ``timedelta(days=999999999, hours=23, minutes=59, seconds=59, microseconds=999999)``." msgstr "" -#: ../../library/datetime.rst:307 -msgid "" -"The smallest possible difference between non-equal :class:`timedelta` " -"objects, ``timedelta(microseconds=1)``." +msgid "The smallest possible difference between non-equal :class:`timedelta` objects, ``timedelta(microseconds=1)``." msgstr "" -#: ../../library/datetime.rst:311 -msgid "" -"Note that, because of normalization, ``timedelta.max`` is greater than ``-" -"timedelta.min``. ``-timedelta.max`` is not representable as " -"a :class:`timedelta` object." +msgid "Note that, because of normalization, ``timedelta.max`` is greater than ``-timedelta.min``. ``-timedelta.max`` is not representable as a :class:`timedelta` object." msgstr "" -#: ../../library/datetime.rst:315 ../../library/datetime.rst:648 -#: ../../library/datetime.rst:1220 ../../library/datetime.rst:1865 msgid "Instance attributes (read-only):" msgstr "" -#: ../../library/datetime.rst:319 msgid "Between -999,999,999 and 999,999,999 inclusive." msgstr "" -#: ../../library/datetime.rst:324 msgid "Between 0 and 86,399 inclusive." msgstr "" -#: ../../library/datetime.rst:328 -msgid "" -"It is a somewhat common bug for code to unintentionally use this attribute " -"when it is actually intended to get a :meth:`~timedelta.total_seconds` value " -"instead:" +msgid "It is a somewhat common bug for code to unintentionally use this attribute when it is actually intended to get a :meth:`~timedelta.total_seconds` value instead:" msgstr "" -#: ../../library/datetime.rst:332 msgid "" ">>> import datetime as dt\n" ">>> duration = dt.timedelta(seconds=11235813)\n" @@ -498,194 +309,123 @@ msgid "" "11235813.0" msgstr "" -#: ../../library/datetime.rst:344 msgid "Between 0 and 999,999 inclusive." msgstr "" -#: ../../library/datetime.rst:347 ../../library/datetime.rst:665 -#: ../../library/datetime.rst:1274 msgid "Supported operations:" msgstr "" -#: ../../library/datetime.rst:350 ../../library/datetime.rst:668 -#: ../../library/datetime.rst:1277 msgid "Operation" msgstr "" -#: ../../library/datetime.rst:350 ../../library/datetime.rst:668 -#: ../../library/datetime.rst:1277 msgid "Result" msgstr "" -#: ../../library/datetime.rst:352 msgid "``t1 = t2 + t3``" msgstr "" -#: ../../library/datetime.rst:352 -msgid "" -"Sum of ``t2`` and ``t3``. Afterwards ``t1 - t2 == t3`` and ``t1 - t3 == t2`` " -"are true. (1)" +msgid "Sum of ``t2`` and ``t3``. Afterwards ``t1 - t2 == t3`` and ``t1 - t3 == t2`` are true. (1)" msgstr "" -#: ../../library/datetime.rst:356 msgid "``t1 = t2 - t3``" msgstr "" -#: ../../library/datetime.rst:356 -msgid "" -"Difference of ``t2`` and ``t3``. Afterwards ``t1 == t2 - t3`` and ``t2 == " -"t1 + t3`` are true. (1)(6)" +msgid "Difference of ``t2`` and ``t3``. Afterwards ``t1 == t2 - t3`` and ``t2 == t1 + t3`` are true. (1)(6)" msgstr "" -#: ../../library/datetime.rst:360 msgid "``t1 = t2 * i or t1 = i * t2``" msgstr "" -#: ../../library/datetime.rst:360 -msgid "" -"Delta multiplied by an integer. Afterwards ``t1 // i == t2`` is true, " -"provided ``i != 0``." +msgid "Delta multiplied by an integer. Afterwards ``t1 // i == t2`` is true, provided ``i != 0``." msgstr "" -#: ../../library/datetime.rst:364 msgid "In general, ``t1 * i == t1 * (i-1) + t1`` is true. (1)" msgstr "" -#: ../../library/datetime.rst:367 msgid "``t1 = t2 * f or t1 = f * t2``" msgstr "" -#: ../../library/datetime.rst:367 -msgid "" -"Delta multiplied by a float. The result is rounded to the nearest multiple " -"of timedelta.resolution using round-half-to-even." +msgid "Delta multiplied by a float. The result is rounded to the nearest multiple of timedelta.resolution using round-half-to-even." msgstr "" -#: ../../library/datetime.rst:371 msgid "``f = t2 / t3``" msgstr "" -#: ../../library/datetime.rst:371 -msgid "" -"Division (3) of overall duration ``t2`` by interval unit ``t3``. Returns " -"a :class:`float` object." +msgid "Division (3) of overall duration ``t2`` by interval unit ``t3``. Returns a :class:`float` object." msgstr "" -#: ../../library/datetime.rst:375 msgid "``t1 = t2 / f or t1 = t2 / i``" msgstr "" -#: ../../library/datetime.rst:375 -msgid "" -"Delta divided by a float or an int. The result is rounded to the nearest " -"multiple of timedelta.resolution using round-half-to-even." +msgid "Delta divided by a float or an int. The result is rounded to the nearest multiple of timedelta.resolution using round-half-to-even." msgstr "" -#: ../../library/datetime.rst:379 msgid "``t1 = t2 // i`` or ``t1 = t2 // t3``" msgstr "" -#: ../../library/datetime.rst:379 -msgid "" -"The floor is computed and the remainder (if any) is thrown away. In the " -"second case, an integer is returned. (3)" +msgid "The floor is computed and the remainder (if any) is thrown away. In the second case, an integer is returned. (3)" msgstr "" -#: ../../library/datetime.rst:383 msgid "``t1 = t2 % t3``" msgstr "" -#: ../../library/datetime.rst:383 msgid "The remainder is computed as a :class:`timedelta` object. (3)" msgstr "" -#: ../../library/datetime.rst:386 msgid "``q, r = divmod(t1, t2)``" msgstr "" -#: ../../library/datetime.rst:386 -msgid "" -"Computes the quotient and the remainder: ``q = t1 // t2`` (3) and ``r = t1 % " -"t2``. ``q`` is an integer and ``r`` is a :class:`timedelta` object." +msgid "Computes the quotient and the remainder: ``q = t1 // t2`` (3) and ``r = t1 % t2``. ``q`` is an integer and ``r`` is a :class:`timedelta` object." msgstr "" -#: ../../library/datetime.rst:391 msgid "``+t1``" msgstr "" -#: ../../library/datetime.rst:391 msgid "Returns a :class:`timedelta` object with the same value. (2)" msgstr "" -#: ../../library/datetime.rst:394 msgid "``-t1``" msgstr "" -#: ../../library/datetime.rst:394 -msgid "" -"Equivalent to ``timedelta(-t1.days, -t1.seconds, -t1.microseconds)``, and to " -"``t1 * -1``. (1)(4)" +msgid "Equivalent to ``timedelta(-t1.days, -t1.seconds, -t1.microseconds)``, and to ``t1 * -1``. (1)(4)" msgstr "" -#: ../../library/datetime.rst:398 msgid "``abs(t)``" msgstr "" -#: ../../library/datetime.rst:398 -msgid "" -"Equivalent to ``+t`` when ``t.days >= 0``, and to ``-t`` when ``t.days < " -"0``. (2)" +msgid "Equivalent to ``+t`` when ``t.days >= 0``, and to ``-t`` when ``t.days < 0``. (2)" msgstr "" -#: ../../library/datetime.rst:401 msgid "``str(t)``" msgstr "" -#: ../../library/datetime.rst:401 -msgid "" -"Returns a string in the form ``[D day[s], ][H]H:MM:SS[.UUUUUU]``, where D is " -"negative for negative ``t``. (5)" +msgid "Returns a string in the form ``[D day[s], ][H]H:MM:SS[.UUUUUU]``, where D is negative for negative ``t``. (5)" msgstr "" -#: ../../library/datetime.rst:405 msgid "``repr(t)``" msgstr "" -#: ../../library/datetime.rst:405 -msgid "" -"Returns a string representation of the :class:`timedelta` object as a " -"constructor call with canonical attribute values." +msgid "Returns a string representation of the :class:`timedelta` object as a constructor call with canonical attribute values." msgstr "" -#: ../../library/datetime.rst:410 ../../library/datetime.rst:687 -#: ../../library/datetime.rst:2750 msgid "Notes:" msgstr "" -#: ../../library/datetime.rst:413 msgid "This is exact but may overflow." msgstr "" -#: ../../library/datetime.rst:416 msgid "This is exact and cannot overflow." msgstr "" -#: ../../library/datetime.rst:419 msgid "Division by zero raises :exc:`ZeroDivisionError`." msgstr "" -#: ../../library/datetime.rst:422 msgid "``-timedelta.max`` is not representable as a :class:`timedelta` object." msgstr "" -#: ../../library/datetime.rst:425 -msgid "" -"String representations of :class:`timedelta` objects are normalized " -"similarly to their internal representation. This leads to somewhat unusual " -"results for negative timedeltas. For example::" +msgid "String representations of :class:`timedelta` objects are normalized similarly to their internal representation. This leads to somewhat unusual results for negative timedeltas. For example::" msgstr "" -#: ../../library/datetime.rst:429 msgid "" ">>> timedelta(hours=-5)\n" "datetime.timedelta(days=-1, seconds=68400)\n" @@ -693,65 +433,36 @@ msgid "" "-1 day, 19:00:00" msgstr "" -#: ../../library/datetime.rst:435 -msgid "" -"The expression ``t2 - t3`` will always be equal to the expression ``t2 + (-" -"t3)`` except when t3 is equal to ``timedelta.max``; in that case the former " -"will produce a result while the latter will overflow." +msgid "The expression ``t2 - t3`` will always be equal to the expression ``t2 + (-t3)`` except when t3 is equal to ``timedelta.max``; in that case the former will produce a result while the latter will overflow." msgstr "" -#: ../../library/datetime.rst:439 -msgid "" -"In addition to the operations listed above, :class:`timedelta` objects " -"support certain additions and subtractions with :class:`date` " -"and :class:`.datetime` objects (see below)." +msgid "In addition to the operations listed above, :class:`timedelta` objects support certain additions and subtractions with :class:`date` and :class:`.datetime` objects (see below)." msgstr "" -#: ../../library/datetime.rst:443 -msgid "" -"Floor division and true division of a :class:`timedelta` object by " -"another :class:`!timedelta` object are now supported, as are remainder " -"operations and the :func:`divmod` function. True division and multiplication " -"of a :class:`!timedelta` object by a :class:`float` object are now supported." +msgid "Floor division and true division of a :class:`timedelta` object by another :class:`!timedelta` object are now supported, as are remainder operations and the :func:`divmod` function. True division and multiplication of a :class:`!timedelta` object by a :class:`float` object are now supported." msgstr "" -#: ../../library/datetime.rst:449 msgid ":class:`timedelta` objects support equality and order comparisons." msgstr "" -#: ../../library/datetime.rst:451 -msgid "" -"In Boolean contexts, a :class:`timedelta` object is considered to be true if " -"and only if it isn't equal to ``timedelta(0)``." +msgid "In Boolean contexts, a :class:`timedelta` object is considered to be true if and only if it isn't equal to ``timedelta(0)``." msgstr "" -#: ../../library/datetime.rst:454 ../../library/datetime.rst:729 -#: ../../library/datetime.rst:1365 ../../library/datetime.rst:1990 msgid "Instance methods:" msgstr "" -#: ../../library/datetime.rst:458 -msgid "" -"Return the total number of seconds contained in the duration. Equivalent to " -"``td / timedelta(seconds=1)``. For interval units other than seconds, use " -"the division form directly (for example, ``td / timedelta(microseconds=1)``)." +msgid "Return the total number of seconds contained in the duration. Equivalent to ``td / timedelta(seconds=1)``. For interval units other than seconds, use the division form directly (for example, ``td / timedelta(microseconds=1)``)." msgstr "" -#: ../../library/datetime.rst:462 -msgid "" -"Note that for very large time intervals (greater than 270 years on most " -"platforms) this method will lose microsecond accuracy." +msgid "Note that for very large time intervals (greater than 270 years on most platforms) this method will lose microsecond accuracy." msgstr "" -#: ../../library/datetime.rst:469 msgid "Examples of usage: :class:`!timedelta`" msgstr "" -#: ../../library/datetime.rst:471 msgid "An additional example of normalization::" msgstr "" -#: ../../library/datetime.rst:473 msgid "" ">>> # Components of another_year add up to exactly 365 days\n" ">>> import datetime as dt\n" @@ -764,11 +475,9 @@ msgid "" "31536000.0" msgstr "" -#: ../../library/datetime.rst:483 msgid "Examples of :class:`timedelta` arithmetic::" msgstr "" -#: ../../library/datetime.rst:485 msgid "" ">>> import datetime as dt\n" ">>> year = dt.timedelta(days=365)\n" @@ -785,121 +494,69 @@ msgid "" "(datetime.timedelta(days=1095), 3)" msgstr "" -#: ../../library/datetime.rst:503 msgid ":class:`!date` objects" msgstr "" -#: ../../library/datetime.rst:505 -msgid "" -"A :class:`date` object represents a date (year, month and day) in an " -"idealized calendar, the current Gregorian calendar indefinitely extended in " -"both directions." +msgid "A :class:`date` object represents a date (year, month and day) in an idealized calendar, the current Gregorian calendar indefinitely extended in both directions." msgstr "" -#: ../../library/datetime.rst:509 -msgid "" -"January 1 of year 1 is called day number 1, January 2 of year 1 is called " -"day number 2, and so on. [#]_" +msgid "January 1 of year 1 is called day number 1, January 2 of year 1 is called day number 2, and so on. [#]_" msgstr "" -#: ../../library/datetime.rst:514 -msgid "" -"All arguments are required. Arguments must be integers, in the following " -"ranges:" +msgid "All arguments are required. Arguments must be integers, in the following ranges:" msgstr "" -#: ../../library/datetime.rst:517 msgid "``MINYEAR <= year <= MAXYEAR``" msgstr "" -#: ../../library/datetime.rst:518 msgid "``1 <= month <= 12``" msgstr "" -#: ../../library/datetime.rst:519 msgid "``1 <= day <= number of days in the given month and year``" msgstr "" -#: ../../library/datetime.rst:521 ../../library/datetime.rst:950 -msgid "" -"If an argument outside those ranges is given, :exc:`ValueError` is raised." +msgid "If an argument outside those ranges is given, :exc:`ValueError` is raised." msgstr "" -#: ../../library/datetime.rst:524 ../../library/datetime.rst:956 msgid "Other constructors, all class methods:" msgstr "" -#: ../../library/datetime.rst:528 msgid "Return the current local date." msgstr "" -#: ../../library/datetime.rst:530 msgid "This is equivalent to ``date.fromtimestamp(time.time())``." msgstr "" -#: ../../library/datetime.rst:535 -msgid "" -"Return the local date corresponding to the POSIX *timestamp*, such as is " -"returned by :func:`time.time`." +msgid "Return the local date corresponding to the POSIX *timestamp*, such as is returned by :func:`time.time`." msgstr "" -#: ../../library/datetime.rst:538 -msgid "" -"This may raise :exc:`OverflowError`, if the timestamp is out of the range of " -"values supported by the platform C :c:func:`localtime` function, " -"and :exc:`OSError` on :c:func:`localtime` failure. It's common for this to " -"be restricted to years from 1970 through 2038. Note that on non-POSIX " -"systems that include leap seconds in their notion of a timestamp, leap " -"seconds are ignored by :meth:`fromtimestamp`." +msgid "This may raise :exc:`OverflowError`, if the timestamp is out of the range of values supported by the platform C :c:func:`localtime` function, and :exc:`OSError` on :c:func:`localtime` failure. It's common for this to be restricted to years from 1970 through 2038. Note that on non-POSIX systems that include leap seconds in their notion of a timestamp, leap seconds are ignored by :meth:`fromtimestamp`." msgstr "" -#: ../../library/datetime.rst:545 -msgid "" -"Raise :exc:`OverflowError` instead of :exc:`ValueError` if the timestamp is " -"out of the range of values supported by the platform C :c:func:`localtime` " -"function. Raise :exc:`OSError` instead of :exc:`ValueError` " -"on :c:func:`localtime` failure." +msgid "Raise :exc:`OverflowError` instead of :exc:`ValueError` if the timestamp is out of the range of values supported by the platform C :c:func:`localtime` function. Raise :exc:`OSError` instead of :exc:`ValueError` on :c:func:`localtime` failure." msgstr "" -#: ../../library/datetime.rst:554 -msgid "" -"Return the date corresponding to the proleptic Gregorian *ordinal*, where " -"January 1 of year 1 has ordinal 1." +msgid "Return the date corresponding to the proleptic Gregorian *ordinal*, where January 1 of year 1 has ordinal 1." msgstr "" -#: ../../library/datetime.rst:557 -msgid "" -":exc:`ValueError` is raised unless ``1 <= ordinal <= date.max.toordinal()``. " -"For any date ``d``, ``date.fromordinal(d.toordinal()) == d``." +msgid ":exc:`ValueError` is raised unless ``1 <= ordinal <= date.max.toordinal()``. For any date ``d``, ``date.fromordinal(d.toordinal()) == d``." msgstr "" -#: ../../library/datetime.rst:564 -msgid "" -"Return a :class:`date` corresponding to a *date_string* given in any valid " -"ISO 8601 format, with the following exceptions:" +msgid "Return a :class:`date` corresponding to a *date_string* given in any valid ISO 8601 format, with the following exceptions:" msgstr "" -#: ../../library/datetime.rst:567 ../../library/datetime.rst:1121 -msgid "" -"Reduced precision dates are not currently supported (``YYYY-MM``, ``YYYY``)." +msgid "Reduced precision dates are not currently supported (``YYYY-MM``, ``YYYY``)." msgstr "" -#: ../../library/datetime.rst:569 ../../library/datetime.rst:1123 -msgid "" -"Extended date representations are not currently supported (``±YYYYYY-MM-" -"DD``)." +msgid "Extended date representations are not currently supported (``±YYYYYY-MM-DD``)." msgstr "" -#: ../../library/datetime.rst:571 ../../library/datetime.rst:1125 msgid "Ordinal dates are not currently supported (``YYYY-OOO``)." msgstr "" -#: ../../library/datetime.rst:573 ../../library/datetime.rst:1127 -#: ../../library/datetime.rst:1599 msgid "Examples::" msgstr "" -#: ../../library/datetime.rst:575 msgid "" ">>> import datetime as dt\n" ">>> dt.date.fromisoformat('2019-12-04')\n" @@ -910,206 +567,125 @@ msgid "" "datetime.date(2021, 1, 4)" msgstr "" -#: ../../library/datetime.rst:584 msgid "Previously, this method only supported the format ``YYYY-MM-DD``." msgstr "" -#: ../../library/datetime.rst:590 -msgid "" -"Return a :class:`date` corresponding to the ISO calendar date specified by " -"*year*, *week* and *day*. This is the inverse of the " -"function :meth:`date.isocalendar`." +msgid "Return a :class:`date` corresponding to the ISO calendar date specified by *year*, *week* and *day*. This is the inverse of the function :meth:`date.isocalendar`." msgstr "" -#: ../../library/datetime.rst:598 -msgid "" -"Return a :class:`.date` corresponding to *date_string*, parsed according to " -"*format*. This is equivalent to::" +msgid "Return a :class:`.date` corresponding to *date_string*, parsed according to *format*. This is equivalent to::" msgstr "" -#: ../../library/datetime.rst:601 msgid "date(*(time.strptime(date_string, format)[0:3]))" msgstr "" -#: ../../library/datetime.rst:603 -msgid "" -":exc:`ValueError` is raised if the date_string and format can't be parsed " -"by :func:`time.strptime` or if it returns a value which isn't a time tuple. " -"See also :ref:`strftime-strptime-behavior` and :meth:`date.fromisoformat`." +msgid ":exc:`ValueError` is raised if the date_string and format can't be parsed by :func:`time.strptime` or if it returns a value which isn't a time tuple. See also :ref:`strftime-strptime-behavior` and :meth:`date.fromisoformat`." msgstr "" -#: ../../library/datetime.rst:610 -msgid "" -"If *format* specifies a day of month without a year " -"a :exc:`DeprecationWarning` is emitted. This is to avoid a quadrennial leap " -"year bug in code seeking to parse only a month and day as the default year " -"used in absence of one in the format is not a leap year. Such *format* " -"values may raise an error as of Python 3.15. The workaround is to always " -"include a year in your *format*. If parsing *date_string* values that do " -"not have a year, explicitly add a year that is a leap year before parsing:" +msgid "If *format* specifies a day of month without a year a :exc:`DeprecationWarning` is emitted. This is to avoid a quadrennial leap year bug in code seeking to parse only a month and day as the default year used in absence of one in the format is not a leap year. Such *format* values may raise an error as of Python 3.15. The workaround is to always include a year in your *format*. If parsing *date_string* values that do not have a year, explicitly add a year that is a leap year before parsing:" msgstr "" -#: ../../library/datetime.rst:619 msgid "" ">>> import datetime as dt\n" ">>> date_string = \"02/29\"\n" -">>> when = dt.date.strptime(f\"{date_string};1984\", \"%m/%d;%Y\") # Avoids " -"leap year bug.\n" +">>> when = dt.date.strptime(f\"{date_string};1984\", \"%m/%d;%Y\") # Avoids leap year bug.\n" ">>> when.strftime(\"%B %d\")\n" "'February 29'" msgstr "" -#: ../../library/datetime.rst:634 msgid "The earliest representable date, ``date(MINYEAR, 1, 1)``." msgstr "" -#: ../../library/datetime.rst:639 msgid "The latest representable date, ``date(MAXYEAR, 12, 31)``." msgstr "" -#: ../../library/datetime.rst:644 -msgid "" -"The smallest possible difference between non-equal date objects, " -"``timedelta(days=1)``." +msgid "The smallest possible difference between non-equal date objects, ``timedelta(days=1)``." msgstr "" -#: ../../library/datetime.rst:652 ../../library/datetime.rst:1224 msgid "Between :const:`MINYEAR` and :const:`MAXYEAR` inclusive." msgstr "" -#: ../../library/datetime.rst:657 ../../library/datetime.rst:1229 msgid "Between 1 and 12 inclusive." msgstr "" -#: ../../library/datetime.rst:662 ../../library/datetime.rst:1234 msgid "Between 1 and the number of days in the given month of the given year." msgstr "" -#: ../../library/datetime.rst:670 msgid "``date2 = date1 + timedelta``" msgstr "" -#: ../../library/datetime.rst:670 msgid "``date2`` will be ``timedelta.days`` days after ``date1``. (1)" msgstr "" -#: ../../library/datetime.rst:673 msgid "``date2 = date1 - timedelta``" msgstr "" -#: ../../library/datetime.rst:673 msgid "Computes ``date2`` such that ``date2 + timedelta == date1``. (2)" msgstr "" -#: ../../library/datetime.rst:676 msgid "``timedelta = date1 - date2``" msgstr "" -#: ../../library/datetime.rst:676 ../../library/datetime.rst:1283 msgid "\\(3)" msgstr "" -#: ../../library/datetime.rst:0 msgid "``date1 == date2``" msgstr "" -#: ../../library/datetime.rst:0 msgid "``date1 != date2``" msgstr "" -#: ../../library/datetime.rst:678 ../../library/datetime.rst:1285 msgid "Equality comparison. (4)" msgstr "" -#: ../../library/datetime.rst:0 msgid "``date1 < date2``" msgstr "" -#: ../../library/datetime.rst:0 msgid "``date1 > date2``" msgstr "" -#: ../../library/datetime.rst:0 msgid "``date1 <= date2``" msgstr "" -#: ../../library/datetime.rst:0 msgid "``date1 >= date2``" msgstr "" -#: ../../library/datetime.rst:681 ../../library/datetime.rst:1288 msgid "Order comparison. (5)" msgstr "" -#: ../../library/datetime.rst:690 -msgid "" -"*date2* is moved forward in time if ``timedelta.days > 0``, or backward if " -"``timedelta.days < 0``. Afterward ``date2 - date1 == timedelta.days``. " -"``timedelta.seconds`` and ``timedelta.microseconds`` are " -"ignored. :exc:`OverflowError` is raised if ``date2.year`` would be smaller " -"than :const:`MINYEAR` or larger than :const:`MAXYEAR`." +msgid "*date2* is moved forward in time if ``timedelta.days > 0``, or backward if ``timedelta.days < 0``. Afterward ``date2 - date1 == timedelta.days``. ``timedelta.seconds`` and ``timedelta.microseconds`` are ignored. :exc:`OverflowError` is raised if ``date2.year`` would be smaller than :const:`MINYEAR` or larger than :const:`MAXYEAR`." msgstr "" -#: ../../library/datetime.rst:697 msgid "``timedelta.seconds`` and ``timedelta.microseconds`` are ignored." msgstr "" -#: ../../library/datetime.rst:700 -msgid "" -"This is exact, and cannot overflow. ``timedelta.seconds`` and " -"``timedelta.microseconds`` are 0, and ``date2 + timedelta == date1`` after." +msgid "This is exact, and cannot overflow. ``timedelta.seconds`` and ``timedelta.microseconds`` are 0, and ``date2 + timedelta == date1`` after." msgstr "" -#: ../../library/datetime.rst:704 msgid ":class:`date` objects are equal if they represent the same date." msgstr "" -#: ../../library/datetime.rst:706 -msgid "" -":class:`!date` objects that are not also :class:`.datetime` instances are " -"never equal to :class:`!datetime` objects, even if they represent the same " -"date." +msgid ":class:`!date` objects that are not also :class:`.datetime` instances are never equal to :class:`!datetime` objects, even if they represent the same date." msgstr "" -#: ../../library/datetime.rst:711 -msgid "" -"*date1* is considered less than *date2* when *date1* precedes *date2* in " -"time. In other words, ``date1 < date2`` if and only if ``date1.toordinal() < " -"date2.toordinal()``." +msgid "*date1* is considered less than *date2* when *date1* precedes *date2* in time. In other words, ``date1 < date2`` if and only if ``date1.toordinal() < date2.toordinal()``." msgstr "" -#: ../../library/datetime.rst:715 -msgid "" -"Order comparison between a :class:`date` object that is not also " -"a :class:`.datetime` instance and a :class:`!datetime` object " -"raises :exc:`TypeError`." +msgid "Order comparison between a :class:`date` object that is not also a :class:`.datetime` instance and a :class:`!datetime` object raises :exc:`TypeError`." msgstr "" -#: ../../library/datetime.rst:719 ../../library/datetime.rst:1356 -msgid "" -"Comparison between :class:`.datetime` object and an instance of " -"the :class:`date` subclass that is not a :class:`!datetime` subclass no " -"longer converts the latter to :class:`!date`, ignoring the time part and the " -"time zone. The default behavior can be changed by overriding the special " -"comparison methods in subclasses." +msgid "Comparison between :class:`.datetime` object and an instance of the :class:`date` subclass that is not a :class:`!datetime` subclass no longer converts the latter to :class:`!date`, ignoring the time part and the time zone. The default behavior can be changed by overriding the special comparison methods in subclasses." msgstr "" -#: ../../library/datetime.rst:727 -msgid "" -"In Boolean contexts, all :class:`date` objects are considered to be true." +msgid "In Boolean contexts, all :class:`date` objects are considered to be true." msgstr "" -#: ../../library/datetime.rst:733 -msgid "" -"Return a new :class:`date` object with the same values, but with specified " -"parameters updated." +msgid "Return a new :class:`date` object with the same values, but with specified parameters updated." msgstr "" -#: ../../library/datetime.rst:736 ../../library/datetime.rst:2036 msgid "Example::" msgstr "" -#: ../../library/datetime.rst:738 msgid "" ">>> import datetime as dt\n" ">>> d = dt.date(2002, 12, 31)\n" @@ -1117,85 +693,45 @@ msgid "" "datetime.date(2002, 12, 26)" msgstr "" -#: ../../library/datetime.rst:743 -msgid "" -"The generic function :func:`copy.replace` also supports :class:`date` " -"objects." +msgid "The generic function :func:`copy.replace` also supports :class:`date` objects." msgstr "" -#: ../../library/datetime.rst:749 ../../library/datetime.rst:1481 -msgid "" -"Return a :class:`time.struct_time` such as returned " -"by :func:`time.localtime`." +msgid "Return a :class:`time.struct_time` such as returned by :func:`time.localtime`." msgstr "" -#: ../../library/datetime.rst:751 msgid "The hours, minutes and seconds are 0, and the DST flag is -1." msgstr "" -#: ../../library/datetime.rst:753 ../../library/datetime.rst:1483 msgid "``d.timetuple()`` is equivalent to::" msgstr "" -#: ../../library/datetime.rst:755 -msgid "" -"time.struct_time((d.year, d.month, d.day, 0, 0, 0, d.weekday(), yday, -1))" +msgid "time.struct_time((d.year, d.month, d.day, 0, 0, 0, d.weekday(), yday, -1))" msgstr "" -#: ../../library/datetime.rst:757 -msgid "" -"where ``yday = d.toordinal() - date(d.year, 1, 1).toordinal() + 1`` is the " -"day number within the current year starting with 1 for January 1st." +msgid "where ``yday = d.toordinal() - date(d.year, 1, 1).toordinal() + 1`` is the day number within the current year starting with 1 for January 1st." msgstr "" -#: ../../library/datetime.rst:763 -msgid "" -"Return the proleptic Gregorian ordinal of the date, where January 1 of year " -"1 has ordinal 1. For any :class:`date` object ``d``, " -"``date.fromordinal(d.toordinal()) == d``." +msgid "Return the proleptic Gregorian ordinal of the date, where January 1 of year 1 has ordinal 1. For any :class:`date` object ``d``, ``date.fromordinal(d.toordinal()) == d``." msgstr "" -#: ../../library/datetime.rst:770 -msgid "" -"Return the day of the week as an integer, where Monday is 0 and Sunday is 6. " -"For example, ``date(2002, 12, 4).weekday() == 2``, a Wednesday. See " -"also :meth:`isoweekday`." +msgid "Return the day of the week as an integer, where Monday is 0 and Sunday is 6. For example, ``date(2002, 12, 4).weekday() == 2``, a Wednesday. See also :meth:`isoweekday`." msgstr "" -#: ../../library/datetime.rst:777 -msgid "" -"Return the day of the week as an integer, where Monday is 1 and Sunday is 7. " -"For example, ``date(2002, 12, 4).isoweekday() == 3``, a Wednesday. See " -"also :meth:`weekday`, :meth:`isocalendar`." +msgid "Return the day of the week as an integer, where Monday is 1 and Sunday is 7. For example, ``date(2002, 12, 4).isoweekday() == 3``, a Wednesday. See also :meth:`weekday`, :meth:`isocalendar`." msgstr "" -#: ../../library/datetime.rst:784 -msgid "" -"Return a :term:`named tuple` object with three components: ``year``, " -"``week`` and ``weekday``." +msgid "Return a :term:`named tuple` object with three components: ``year``, ``week`` and ``weekday``." msgstr "" -#: ../../library/datetime.rst:787 -msgid "" -"The ISO calendar is a widely used variant of the Gregorian calendar. [#]_" +msgid "The ISO calendar is a widely used variant of the Gregorian calendar. [#]_" msgstr "" -#: ../../library/datetime.rst:789 -msgid "" -"The ISO year consists of 52 or 53 full weeks, and where a week starts on a " -"Monday and ends on a Sunday. The first week of an ISO year is the first " -"(Gregorian) calendar week of a year containing a Thursday. This is called " -"week number 1, and the ISO year of that Thursday is the same as its " -"Gregorian year." +msgid "The ISO year consists of 52 or 53 full weeks, and where a week starts on a Monday and ends on a Sunday. The first week of an ISO year is the first (Gregorian) calendar week of a year containing a Thursday. This is called week number 1, and the ISO year of that Thursday is the same as its Gregorian year." msgstr "" -#: ../../library/datetime.rst:794 -msgid "" -"For example, 2004 begins on a Thursday, so the first week of ISO year 2004 " -"begins on Monday, 29 Dec 2003 and ends on Sunday, 4 Jan 2004::" +msgid "For example, 2004 begins on a Thursday, so the first week of ISO year 2004 begins on Monday, 29 Dec 2003 and ends on Sunday, 4 Jan 2004::" msgstr "" -#: ../../library/datetime.rst:797 msgid "" ">>> import datetime as dt\n" ">>> dt.date(2003, 12, 29).isocalendar()\n" @@ -1204,77 +740,51 @@ msgid "" "datetime.IsoCalendarDate(year=2004, week=1, weekday=7)" msgstr "" -#: ../../library/datetime.rst:803 msgid "Result changed from a tuple to a :term:`named tuple`." msgstr "" -#: ../../library/datetime.rst:809 -msgid "" -"Return a string representing the date in ISO 8601 format, ``YYYY-MM-DD``::" +msgid "Return a string representing the date in ISO 8601 format, ``YYYY-MM-DD``::" msgstr "" -#: ../../library/datetime.rst:811 msgid "" ">>> import datetime as dt\n" ">>> dt.date(2002, 12, 4).isoformat()\n" "'2002-12-04'" msgstr "" -#: ../../library/datetime.rst:818 msgid "For a date ``d``, ``str(d)`` is equivalent to ``d.isoformat()``." msgstr "" -#: ../../library/datetime.rst:823 msgid "Return a string representing the date::" msgstr "" -#: ../../library/datetime.rst:825 msgid "" ">>> import datetime as dt\n" ">>> dt.date(2002, 12, 4).ctime()\n" "'Wed Dec 4 00:00:00 2002'" msgstr "" -#: ../../library/datetime.rst:829 ../../library/datetime.rst:1670 msgid "``d.ctime()`` is equivalent to::" msgstr "" -#: ../../library/datetime.rst:831 ../../library/datetime.rst:1672 msgid "time.ctime(time.mktime(d.timetuple()))" msgstr "" -#: ../../library/datetime.rst:833 -msgid "" -"on platforms where the native C :c:func:`ctime` function " -"(which :func:`time.ctime` invokes, but which :meth:`date.ctime` does not " -"invoke) conforms to the C standard." +msgid "on platforms where the native C :c:func:`ctime` function (which :func:`time.ctime` invokes, but which :meth:`date.ctime` does not invoke) conforms to the C standard." msgstr "" -#: ../../library/datetime.rst:840 -msgid "" -"Return a string representing the date, controlled by an explicit format " -"string. Format codes referring to hours, minutes or seconds will see 0 " -"values. See also :ref:`strftime-strptime-behavior` " -"and :meth:`date.isoformat`." +msgid "Return a string representing the date, controlled by an explicit format string. Format codes referring to hours, minutes or seconds will see 0 values. See also :ref:`strftime-strptime-behavior` and :meth:`date.isoformat`." msgstr "" -#: ../../library/datetime.rst:847 -msgid "" -"Same as :meth:`.date.strftime`. This makes it possible to specify a format " -"string for a :class:`.date` object in :ref:`formatted string literals ` and when using :meth:`str.format`. See also :ref:`strftime-" -"strptime-behavior` and :meth:`date.isoformat`." +msgid "Same as :meth:`.date.strftime`. This makes it possible to specify a format string for a :class:`.date` object in :ref:`formatted string literals ` and when using :meth:`str.format`. See also :ref:`strftime-strptime-behavior` and :meth:`date.isoformat`." msgstr "" -#: ../../library/datetime.rst:854 msgid "Examples of usage: :class:`!date`" msgstr "" -#: ../../library/datetime.rst:856 msgid "Example of counting days to an event::" msgstr "" -#: ../../library/datetime.rst:858 msgid "" ">>> import time\n" ">>> import datetime as dt\n" @@ -1294,11 +804,9 @@ msgid "" "202" msgstr "" -#: ../../library/datetime.rst:875 msgid "More examples of working with :class:`date`:" msgstr "" -#: ../../library/datetime.rst:877 msgid "" ">>> import datetime as dt\n" ">>> d = dt.date.fromordinal(730920) # 730920th day after 1. 1. 0001\n" @@ -1342,298 +850,162 @@ msgid "" "datetime.date(2005, 3, 11)" msgstr "" -#: ../../library/datetime.rst:924 msgid ":class:`!datetime` objects" msgstr "" -#: ../../library/datetime.rst:926 -msgid "" -"A :class:`.datetime` object is a single object containing all the " -"information from a :class:`date` object and a :class:`.time` object." +msgid "A :class:`.datetime` object is a single object containing all the information from a :class:`date` object and a :class:`.time` object." msgstr "" -#: ../../library/datetime.rst:929 -msgid "" -"Like a :class:`date` object, :class:`.datetime` assumes the current " -"Gregorian calendar extended in both directions; like a :class:`.time` " -"object, :class:`!datetime` assumes there are exactly 3600\\*24 seconds in " -"every day." +msgid "Like a :class:`date` object, :class:`.datetime` assumes the current Gregorian calendar extended in both directions; like a :class:`.time` object, :class:`!datetime` assumes there are exactly 3600\\*24 seconds in every day." msgstr "" -#: ../../library/datetime.rst:933 msgid "Constructor:" msgstr "" -#: ../../library/datetime.rst:937 -msgid "" -"The *year*, *month* and *day* arguments are required. *tzinfo* may be " -"``None``, or an instance of a :class:`tzinfo` subclass. The remaining " -"arguments must be integers in the following ranges:" +msgid "The *year*, *month* and *day* arguments are required. *tzinfo* may be ``None``, or an instance of a :class:`tzinfo` subclass. The remaining arguments must be integers in the following ranges:" msgstr "" -#: ../../library/datetime.rst:941 msgid "``MINYEAR <= year <= MAXYEAR``," msgstr "" -#: ../../library/datetime.rst:942 msgid "``1 <= month <= 12``," msgstr "" -#: ../../library/datetime.rst:943 msgid "``1 <= day <= number of days in the given month and year``," msgstr "" -#: ../../library/datetime.rst:944 ../../library/datetime.rst:1835 msgid "``0 <= hour < 24``," msgstr "" -#: ../../library/datetime.rst:945 ../../library/datetime.rst:1836 msgid "``0 <= minute < 60``," msgstr "" -#: ../../library/datetime.rst:946 ../../library/datetime.rst:1837 msgid "``0 <= second < 60``," msgstr "" -#: ../../library/datetime.rst:947 ../../library/datetime.rst:1838 msgid "``0 <= microsecond < 1000000``," msgstr "" -#: ../../library/datetime.rst:948 ../../library/datetime.rst:1839 msgid "``fold in [0, 1]``." msgstr "" -#: ../../library/datetime.rst:952 ../../library/datetime.rst:1402 -#: ../../library/datetime.rst:2003 msgid "Added the *fold* parameter." msgstr "" -#: ../../library/datetime.rst:960 msgid "Return the current local date and time, with :attr:`.tzinfo` ``None``." msgstr "" -#: ../../library/datetime.rst:962 msgid "Equivalent to::" msgstr "" -#: ../../library/datetime.rst:964 msgid "datetime.fromtimestamp(time.time())" msgstr "" -#: ../../library/datetime.rst:966 msgid "See also :meth:`now`, :meth:`fromtimestamp`." msgstr "" -#: ../../library/datetime.rst:968 -msgid "" -"This method is functionally equivalent to :meth:`now`, but without a ``tz`` " -"parameter." +msgid "This method is functionally equivalent to :meth:`now`, but without a ``tz`` parameter." msgstr "" -#: ../../library/datetime.rst:974 msgid "Return the current local date and time." msgstr "" -#: ../../library/datetime.rst:976 -msgid "" -"If optional argument *tz* is ``None`` or not specified, this is " -"like :meth:`today`, but, if possible, supplies more precision than can be " -"gotten from going through a :func:`time.time` timestamp (for example, this " -"may be possible on platforms supplying the C :c:func:`gettimeofday` " -"function)." +msgid "If optional argument *tz* is ``None`` or not specified, this is like :meth:`today`, but, if possible, supplies more precision than can be gotten from going through a :func:`time.time` timestamp (for example, this may be possible on platforms supplying the C :c:func:`gettimeofday` function)." msgstr "" -#: ../../library/datetime.rst:982 -msgid "" -"If *tz* is not ``None``, it must be an instance of a :class:`tzinfo` " -"subclass, and the current date and time are converted to *tz*’s time zone." +msgid "If *tz* is not ``None``, it must be an instance of a :class:`tzinfo` subclass, and the current date and time are converted to *tz*’s time zone." msgstr "" -#: ../../library/datetime.rst:985 msgid "This function is preferred over :meth:`today` and :meth:`utcnow`." msgstr "" -#: ../../library/datetime.rst:989 -msgid "" -"Subsequent calls to :meth:`!datetime.now` may return the same instant " -"depending on the precision of the underlying clock." +msgid "Subsequent calls to :meth:`!datetime.now` may return the same instant depending on the precision of the underlying clock." msgstr "" -#: ../../library/datetime.rst:995 msgid "Return the current UTC date and time, with :attr:`.tzinfo` ``None``." msgstr "" -#: ../../library/datetime.rst:997 -msgid "" -"This is like :meth:`now`, but returns the current UTC date and time, as a " -"naive :class:`.datetime` object. An aware current UTC datetime can be " -"obtained by calling ``datetime.now(timezone.utc)``. See also :meth:`now`." +msgid "This is like :meth:`now`, but returns the current UTC date and time, as a naive :class:`.datetime` object. An aware current UTC datetime can be obtained by calling ``datetime.now(timezone.utc)``. See also :meth:`now`." msgstr "" -#: ../../library/datetime.rst:1003 -msgid "" -"Because naive ``datetime`` objects are treated by many ``datetime`` methods " -"as local times, it is preferred to use aware datetimes to represent times in " -"UTC. As such, the recommended way to create an object representing the " -"current time in UTC is by calling ``datetime.now(timezone.utc)``." +msgid "Because naive ``datetime`` objects are treated by many ``datetime`` methods as local times, it is preferred to use aware datetimes to represent times in UTC. As such, the recommended way to create an object representing the current time in UTC is by calling ``datetime.now(timezone.utc)``." msgstr "" -#: ../../library/datetime.rst:1010 msgid "Use :meth:`datetime.now` with :const:`UTC` instead." msgstr "" -#: ../../library/datetime.rst:1015 -msgid "" -"Return the local date and time corresponding to the POSIX timestamp, such as " -"is returned by :func:`time.time`. If optional argument *tz* is ``None`` or " -"not specified, the timestamp is converted to the platform's local date and " -"time, and the returned :class:`.datetime` object is naive." +msgid "Return the local date and time corresponding to the POSIX timestamp, such as is returned by :func:`time.time`. If optional argument *tz* is ``None`` or not specified, the timestamp is converted to the platform's local date and time, and the returned :class:`.datetime` object is naive." msgstr "" -#: ../../library/datetime.rst:1020 -msgid "" -"If *tz* is not ``None``, it must be an instance of a :class:`tzinfo` " -"subclass, and the timestamp is converted to *tz*’s time zone." +msgid "If *tz* is not ``None``, it must be an instance of a :class:`tzinfo` subclass, and the timestamp is converted to *tz*’s time zone." msgstr "" -#: ../../library/datetime.rst:1023 -msgid "" -":meth:`fromtimestamp` may raise :exc:`OverflowError`, if the timestamp is " -"out of the range of values supported by the platform C :c:func:`localtime` " -"or :c:func:`gmtime` functions, and :exc:`OSError` on :c:func:`localtime` " -"or :c:func:`gmtime` failure. It's common for this to be restricted to years " -"in 1970 through 2038. Note that on non-POSIX systems that include leap " -"seconds in their notion of a timestamp, leap seconds are ignored " -"by :meth:`fromtimestamp`, and then it's possible to have two timestamps " -"differing by a second that yield identical :class:`.datetime` objects. This " -"method is preferred over :meth:`utcfromtimestamp`." -msgstr "" - -#: ../../library/datetime.rst:1034 -msgid "" -"Raise :exc:`OverflowError` instead of :exc:`ValueError` if the timestamp is " -"out of the range of values supported by the platform C :c:func:`localtime` " -"or :c:func:`gmtime` functions. Raise :exc:`OSError` instead " -"of :exc:`ValueError` on :c:func:`localtime` or :c:func:`gmtime` failure." +msgid ":meth:`fromtimestamp` may raise :exc:`OverflowError`, if the timestamp is out of the range of values supported by the platform C :c:func:`localtime` or :c:func:`gmtime` functions, and :exc:`OSError` on :c:func:`localtime` or :c:func:`gmtime` failure. It's common for this to be restricted to years in 1970 through 2038. Note that on non-POSIX systems that include leap seconds in their notion of a timestamp, leap seconds are ignored by :meth:`fromtimestamp`, and then it's possible to have two timestamps differing by a second that yield identical :class:`.datetime` objects. This method is preferred over :meth:`utcfromtimestamp`." +msgstr "" + +msgid "Raise :exc:`OverflowError` instead of :exc:`ValueError` if the timestamp is out of the range of values supported by the platform C :c:func:`localtime` or :c:func:`gmtime` functions. Raise :exc:`OSError` instead of :exc:`ValueError` on :c:func:`localtime` or :c:func:`gmtime` failure." msgstr "" -#: ../../library/datetime.rst:1041 msgid ":meth:`fromtimestamp` may return instances with :attr:`.fold` set to 1." msgstr "" -#: ../../library/datetime.rst:1046 -msgid "" -"Return the UTC :class:`.datetime` corresponding to the POSIX timestamp, " -"with :attr:`.tzinfo` ``None``. (The resulting object is naive.)" +msgid "Return the UTC :class:`.datetime` corresponding to the POSIX timestamp, with :attr:`.tzinfo` ``None``. (The resulting object is naive.)" msgstr "" -#: ../../library/datetime.rst:1049 -msgid "" -"This may raise :exc:`OverflowError`, if the timestamp is out of the range of " -"values supported by the platform C :c:func:`gmtime` function, " -"and :exc:`OSError` on :c:func:`gmtime` failure. It's common for this to be " -"restricted to years in 1970 through 2038." +msgid "This may raise :exc:`OverflowError`, if the timestamp is out of the range of values supported by the platform C :c:func:`gmtime` function, and :exc:`OSError` on :c:func:`gmtime` failure. It's common for this to be restricted to years in 1970 through 2038." msgstr "" -#: ../../library/datetime.rst:1054 msgid "To get an aware :class:`.datetime` object, call :meth:`fromtimestamp`::" msgstr "" -#: ../../library/datetime.rst:1056 msgid "datetime.fromtimestamp(timestamp, timezone.utc)" msgstr "" -#: ../../library/datetime.rst:1058 -msgid "" -"On the POSIX compliant platforms, it is equivalent to the following " -"expression::" +msgid "On the POSIX compliant platforms, it is equivalent to the following expression::" msgstr "" -#: ../../library/datetime.rst:1061 -msgid "" -"datetime(1970, 1, 1, tzinfo=timezone.utc) + timedelta(seconds=timestamp)" +msgid "datetime(1970, 1, 1, tzinfo=timezone.utc) + timedelta(seconds=timestamp)" msgstr "" -#: ../../library/datetime.rst:1063 -msgid "" -"except the latter formula always supports the full years range: " -"between :const:`MINYEAR` and :const:`MAXYEAR` inclusive." +msgid "except the latter formula always supports the full years range: between :const:`MINYEAR` and :const:`MAXYEAR` inclusive." msgstr "" -#: ../../library/datetime.rst:1068 -msgid "" -"Because naive ``datetime`` objects are treated by many ``datetime`` methods " -"as local times, it is preferred to use aware datetimes to represent times in " -"UTC. As such, the recommended way to create an object representing a " -"specific timestamp in UTC is by calling ``datetime.fromtimestamp(timestamp, " -"tz=timezone.utc)``." +msgid "Because naive ``datetime`` objects are treated by many ``datetime`` methods as local times, it is preferred to use aware datetimes to represent times in UTC. As such, the recommended way to create an object representing a specific timestamp in UTC is by calling ``datetime.fromtimestamp(timestamp, tz=timezone.utc)``." msgstr "" -#: ../../library/datetime.rst:1074 -msgid "" -"Raise :exc:`OverflowError` instead of :exc:`ValueError` if the timestamp is " -"out of the range of values supported by the platform C :c:func:`gmtime` " -"function. Raise :exc:`OSError` instead of :exc:`ValueError` " -"on :c:func:`gmtime` failure." +msgid "Raise :exc:`OverflowError` instead of :exc:`ValueError` if the timestamp is out of the range of values supported by the platform C :c:func:`gmtime` function. Raise :exc:`OSError` instead of :exc:`ValueError` on :c:func:`gmtime` failure." msgstr "" -#: ../../library/datetime.rst:1080 msgid "Accepts any real number as *timestamp*, not only integer or float." msgstr "" -#: ../../library/datetime.rst:1085 msgid "Use :meth:`datetime.fromtimestamp` with :const:`UTC` instead." msgstr "" -#: ../../library/datetime.rst:1090 -msgid "" -"Return the :class:`.datetime` corresponding to the proleptic Gregorian " -"ordinal, where January 1 of year 1 has ordinal 1. :exc:`ValueError` is " -"raised unless ``1 <= ordinal <= datetime.max.toordinal()``. The hour, " -"minute, second and microsecond of the result are all 0, and :attr:`.tzinfo` " -"is ``None``." +msgid "Return the :class:`.datetime` corresponding to the proleptic Gregorian ordinal, where January 1 of year 1 has ordinal 1. :exc:`ValueError` is raised unless ``1 <= ordinal <= datetime.max.toordinal()``. The hour, minute, second and microsecond of the result are all 0, and :attr:`.tzinfo` is ``None``." msgstr "" -#: ../../library/datetime.rst:1098 -msgid "" -"Return a new :class:`.datetime` object whose date components are equal to " -"the given :class:`date` object's, and whose time components are equal to the " -"given :class:`.time` object's. If the *tzinfo* argument is provided, its " -"value is used to set the :attr:`.tzinfo` attribute of the result, otherwise " -"the :attr:`~.time.tzinfo` attribute of the *time* argument is used. If the " -"*date* argument is a :class:`!datetime` object, its time components " -"and :attr:`.tzinfo` attributes are ignored." +msgid "Return a new :class:`.datetime` object whose date components are equal to the given :class:`date` object's, and whose time components are equal to the given :class:`.time` object's. If the *tzinfo* argument is provided, its value is used to set the :attr:`.tzinfo` attribute of the result, otherwise the :attr:`~.time.tzinfo` attribute of the *time* argument is used. If the *date* argument is a :class:`!datetime` object, its time components and :attr:`.tzinfo` attributes are ignored." msgstr "" -#: ../../library/datetime.rst:1106 -msgid "" -"For any :class:`.datetime` object ``d``, ``d == datetime.combine(d.date(), " -"d.time(), d.tzinfo)``." +msgid "For any :class:`.datetime` object ``d``, ``d == datetime.combine(d.date(), d.time(), d.tzinfo)``." msgstr "" -#: ../../library/datetime.rst:1109 msgid "Added the *tzinfo* argument." msgstr "" -#: ../../library/datetime.rst:1115 -msgid "" -"Return a :class:`.datetime` corresponding to a *date_string* in any valid " -"ISO 8601 format, with the following exceptions:" +msgid "Return a :class:`.datetime` corresponding to a *date_string* in any valid ISO 8601 format, with the following exceptions:" msgstr "" -#: ../../library/datetime.rst:1118 ../../library/datetime.rst:1937 msgid "Time zone offsets may have fractional seconds." msgstr "" -#: ../../library/datetime.rst:1119 msgid "The ``T`` separator may be replaced by any single unicode character." msgstr "" -#: ../../library/datetime.rst:1120 ../../library/datetime.rst:1942 msgid "Fractional hours and minutes are not supported." msgstr "" -#: ../../library/datetime.rst:1129 msgid "" ">>> import datetime as dt\n" ">>> dt.datetime.fromisoformat('2011-11-04')\n" @@ -1651,341 +1023,170 @@ msgid "" ">>> dt.datetime.fromisoformat('2011-11-04 00:05:23.283')\n" "datetime.datetime(2011, 11, 4, 0, 5, 23, 283000)\n" ">>> dt.datetime.fromisoformat('2011-11-04 00:05:23.283+00:00')\n" -"datetime.datetime(2011, 11, 4, 0, 5, 23, 283000, " -"tzinfo=datetime.timezone.utc)\n" +"datetime.datetime(2011, 11, 4, 0, 5, 23, 283000, tzinfo=datetime.timezone.utc)\n" ">>> dt.datetime.fromisoformat('2011-11-04T00:05:23+04:00')\n" "datetime.datetime(2011, 11, 4, 0, 5, 23,\n" " tzinfo=datetime.timezone(datetime.timedelta(seconds=14400)))" msgstr "" -#: ../../library/datetime.rst:1151 -msgid "" -"Previously, this method only supported formats that could be emitted " -"by :meth:`date.isoformat` or :meth:`datetime.isoformat`." +msgid "Previously, this method only supported formats that could be emitted by :meth:`date.isoformat` or :meth:`datetime.isoformat`." msgstr "" -#: ../../library/datetime.rst:1158 -msgid "" -"Return a :class:`.datetime` corresponding to the ISO calendar date specified " -"by *year*, *week* and *day*. The non-date components of the datetime are " -"populated with their normal default values. This is the inverse of the " -"function :meth:`datetime.isocalendar`." +msgid "Return a :class:`.datetime` corresponding to the ISO calendar date specified by *year*, *week* and *day*. The non-date components of the datetime are populated with their normal default values. This is the inverse of the function :meth:`datetime.isocalendar`." msgstr "" -#: ../../library/datetime.rst:1168 -msgid "" -"Return a :class:`.datetime` corresponding to *date_string*, parsed according " -"to *format*." +msgid "Return a :class:`.datetime` corresponding to *date_string*, parsed according to *format*." msgstr "" -#: ../../library/datetime.rst:1171 -msgid "" -"If *format* does not contain microseconds or time zone information, this is " -"equivalent to::" +msgid "If *format* does not contain microseconds or time zone information, this is equivalent to::" msgstr "" -#: ../../library/datetime.rst:1173 ../../library/datetime.rst:2730 msgid "datetime(*(time.strptime(date_string, format)[0:6]))" msgstr "" -#: ../../library/datetime.rst:1175 -msgid "" -":exc:`ValueError` is raised if the date_string and format can't be parsed " -"by :func:`time.strptime` or if it returns a value which isn't a time tuple. " -"See also :ref:`strftime-strptime-behavior` " -"and :meth:`datetime.fromisoformat`." +msgid ":exc:`ValueError` is raised if the date_string and format can't be parsed by :func:`time.strptime` or if it returns a value which isn't a time tuple. See also :ref:`strftime-strptime-behavior` and :meth:`datetime.fromisoformat`." msgstr "" -#: ../../library/datetime.rst:1182 -msgid "" -"If *format* specifies a day of month without a year " -"a :exc:`DeprecationWarning` is now emitted. This is to avoid a quadrennial " -"leap year bug in code seeking to parse only a month and day as the default " -"year used in absence of one in the format is not a leap year. Such *format* " -"values may raise an error as of Python 3.15. The workaround is to always " -"include a year in your *format*. If parsing *date_string* values that do " -"not have a year, explicitly add a year that is a leap year before parsing:" +msgid "If *format* specifies a day of month without a year a :exc:`DeprecationWarning` is now emitted. This is to avoid a quadrennial leap year bug in code seeking to parse only a month and day as the default year used in absence of one in the format is not a leap year. Such *format* values may raise an error as of Python 3.15. The workaround is to always include a year in your *format*. If parsing *date_string* values that do not have a year, explicitly add a year that is a leap year before parsing:" msgstr "" -#: ../../library/datetime.rst:1191 msgid "" ">>> import datetime as dt\n" ">>> date_string = \"02/29\"\n" -">>> when = dt.datetime.strptime(f\"{date_string};1984\", \"%m/%d;%Y\") # " -"Avoids leap year bug.\n" +">>> when = dt.datetime.strptime(f\"{date_string};1984\", \"%m/%d;%Y\") # Avoids leap year bug.\n" ">>> when.strftime(\"%B %d\")\n" "'February 29'" msgstr "" -#: ../../library/datetime.rst:1204 -msgid "" -"The earliest representable :class:`.datetime`, ``datetime(MINYEAR, 1, 1, " -"tzinfo=None)``." +msgid "The earliest representable :class:`.datetime`, ``datetime(MINYEAR, 1, 1, tzinfo=None)``." msgstr "" -#: ../../library/datetime.rst:1210 -msgid "" -"The latest representable :class:`.datetime`, ``datetime(MAXYEAR, 12, 31, 23, " -"59, 59, 999999, tzinfo=None)``." +msgid "The latest representable :class:`.datetime`, ``datetime(MAXYEAR, 12, 31, 23, 59, 59, 999999, tzinfo=None)``." msgstr "" -#: ../../library/datetime.rst:1216 -msgid "" -"The smallest possible difference between non-equal :class:`.datetime` " -"objects, ``timedelta(microseconds=1)``." +msgid "The smallest possible difference between non-equal :class:`.datetime` objects, ``timedelta(microseconds=1)``." msgstr "" -#: ../../library/datetime.rst:1239 ../../library/datetime.rst:1869 msgid "In ``range(24)``." msgstr "" -#: ../../library/datetime.rst:1244 ../../library/datetime.rst:1249 -#: ../../library/datetime.rst:1874 ../../library/datetime.rst:1879 msgid "In ``range(60)``." msgstr "" -#: ../../library/datetime.rst:1254 ../../library/datetime.rst:1884 msgid "In ``range(1000000)``." msgstr "" -#: ../../library/datetime.rst:1259 -msgid "" -"The object passed as the *tzinfo* argument to the :class:`.datetime` " -"constructor, or ``None`` if none was passed." +msgid "The object passed as the *tzinfo* argument to the :class:`.datetime` constructor, or ``None`` if none was passed." msgstr "" -#: ../../library/datetime.rst:1265 ../../library/datetime.rst:1895 -msgid "" -"In ``[0, 1]``. Used to disambiguate wall times during a repeated interval. " -"(A repeated interval occurs when clocks are rolled back at the end of " -"daylight saving time or when the UTC offset for the current zone is " -"decreased for political reasons.) The values 0 and 1 represent, " -"respectively, the earlier and later of the two moments with the same wall " -"time representation." +msgid "In ``[0, 1]``. Used to disambiguate wall times during a repeated interval. (A repeated interval occurs when clocks are rolled back at the end of daylight saving time or when the UTC offset for the current zone is decreased for political reasons.) The values 0 and 1 represent, respectively, the earlier and later of the two moments with the same wall time representation." msgstr "" -#: ../../library/datetime.rst:1279 msgid "``datetime2 = datetime1 + timedelta``" msgstr "" -#: ../../library/datetime.rst:1279 ../../library/datetime.rst:2538 -#: ../../library/datetime.rst:2543 ../../library/datetime.rst:2555 -#: ../../library/datetime.rst:2560 ../../library/datetime.rst:2620 -#: ../../library/datetime.rst:2625 ../../library/datetime.rst:2629 msgid "\\(1)" msgstr "" -#: ../../library/datetime.rst:1281 msgid "``datetime2 = datetime1 - timedelta``" msgstr "" -#: ../../library/datetime.rst:1281 ../../library/datetime.rst:2571 msgid "\\(2)" msgstr "" -#: ../../library/datetime.rst:1283 msgid "``timedelta = datetime1 - datetime2``" msgstr "" -#: ../../library/datetime.rst:0 msgid "``datetime1 == datetime2``" msgstr "" -#: ../../library/datetime.rst:0 msgid "``datetime1 != datetime2``" msgstr "" -#: ../../library/datetime.rst:0 msgid "``datetime1 < datetime2``" msgstr "" -#: ../../library/datetime.rst:0 msgid "``datetime1 > datetime2``" msgstr "" -#: ../../library/datetime.rst:0 msgid "``datetime1 <= datetime2``" msgstr "" -#: ../../library/datetime.rst:0 msgid "``datetime1 >= datetime2``" msgstr "" -#: ../../library/datetime.rst:1295 -msgid "" -"``datetime2`` is a duration of ``timedelta`` removed from ``datetime1``, " -"moving forward in time if ``timedelta.days > 0``, or backward if " -"``timedelta.days < 0``. The result has the same :attr:`~.datetime.tzinfo` " -"attribute as the input datetime, and ``datetime2 - datetime1 == timedelta`` " -"after. :exc:`OverflowError` is raised if ``datetime2.year`` would be smaller " -"than :const:`MINYEAR` or larger than :const:`MAXYEAR`. Note that no time " -"zone adjustments are done even if the input is an aware object." +msgid "``datetime2`` is a duration of ``timedelta`` removed from ``datetime1``, moving forward in time if ``timedelta.days > 0``, or backward if ``timedelta.days < 0``. The result has the same :attr:`~.datetime.tzinfo` attribute as the input datetime, and ``datetime2 - datetime1 == timedelta`` after. :exc:`OverflowError` is raised if ``datetime2.year`` would be smaller than :const:`MINYEAR` or larger than :const:`MAXYEAR`. Note that no time zone adjustments are done even if the input is an aware object." msgstr "" -#: ../../library/datetime.rst:1304 -msgid "" -"Computes the ``datetime2`` such that ``datetime2 + timedelta == datetime1``. " -"As for addition, the result has the same :attr:`~.datetime.tzinfo` attribute " -"as the input datetime, and no time zone adjustments are done even if the " -"input is aware." +msgid "Computes the ``datetime2`` such that ``datetime2 + timedelta == datetime1``. As for addition, the result has the same :attr:`~.datetime.tzinfo` attribute as the input datetime, and no time zone adjustments are done even if the input is aware." msgstr "" -#: ../../library/datetime.rst:1309 -msgid "" -"Subtraction of a :class:`.datetime` from a :class:`!datetime` is defined " -"only if both operands are naive, or if both are aware. If one is aware and " -"the other is naive, :exc:`TypeError` is raised." +msgid "Subtraction of a :class:`.datetime` from a :class:`!datetime` is defined only if both operands are naive, or if both are aware. If one is aware and the other is naive, :exc:`TypeError` is raised." msgstr "" -#: ../../library/datetime.rst:1313 -msgid "" -"If both are naive, or both are aware and have the " -"same :attr:`~.datetime.tzinfo` attribute, the :attr:`~.datetime.tzinfo` " -"attributes are ignored, and the result is a :class:`timedelta` object ``t`` " -"such that ``datetime2 + t == datetime1``. No time zone adjustments are done " -"in this case." +msgid "If both are naive, or both are aware and have the same :attr:`~.datetime.tzinfo` attribute, the :attr:`~.datetime.tzinfo` attributes are ignored, and the result is a :class:`timedelta` object ``t`` such that ``datetime2 + t == datetime1``. No time zone adjustments are done in this case." msgstr "" -#: ../../library/datetime.rst:1318 -msgid "" -"If both are aware and have different :attr:`~.datetime.tzinfo` attributes, " -"``a-b`` acts as if ``a`` and ``b`` were first converted to naive UTC " -"datetimes. The result is ``(a.replace(tzinfo=None) - a.utcoffset()) - " -"(b.replace(tzinfo=None) - b.utcoffset())`` except that the implementation " -"never overflows." +msgid "If both are aware and have different :attr:`~.datetime.tzinfo` attributes, ``a-b`` acts as if ``a`` and ``b`` were first converted to naive UTC datetimes. The result is ``(a.replace(tzinfo=None) - a.utcoffset()) - (b.replace(tzinfo=None) - b.utcoffset())`` except that the implementation never overflows." msgstr "" -#: ../../library/datetime.rst:1324 -msgid "" -":class:`.datetime` objects are equal if they represent the same date and " -"time, taking into account the time zone." +msgid ":class:`.datetime` objects are equal if they represent the same date and time, taking into account the time zone." msgstr "" -#: ../../library/datetime.rst:1327 msgid "Naive and aware :class:`.datetime` objects are never equal." msgstr "" -#: ../../library/datetime.rst:1329 -msgid "" -"If both comparands are aware, and have the same :attr:`!tzinfo` attribute, " -"the :attr:`!tzinfo` and :attr:`~.datetime.fold` attributes are ignored and " -"the base datetimes are compared. If both comparands are aware and have " -"different :attr:`~.datetime.tzinfo` attributes, the comparison acts as " -"comparands were first converted to UTC datetimes except that the " -"implementation never overflows. :class:`.datetime` instances in a repeated " -"interval are never equal to :class:`!datetime` instances in other time zone." +msgid "If both comparands are aware, and have the same :attr:`!tzinfo` attribute, the :attr:`!tzinfo` and :attr:`~.datetime.fold` attributes are ignored and the base datetimes are compared. If both comparands are aware and have different :attr:`~.datetime.tzinfo` attributes, the comparison acts as comparands were first converted to UTC datetimes except that the implementation never overflows. :class:`.datetime` instances in a repeated interval are never equal to :class:`!datetime` instances in other time zone." msgstr "" -#: ../../library/datetime.rst:1339 -msgid "" -"*datetime1* is considered less than *datetime2* when *datetime1* precedes " -"*datetime2* in time, taking into account the time zone." +msgid "*datetime1* is considered less than *datetime2* when *datetime1* precedes *datetime2* in time, taking into account the time zone." msgstr "" -#: ../../library/datetime.rst:1342 -msgid "" -"Order comparison between naive and aware :class:`.datetime` objects " -"raises :exc:`TypeError`." +msgid "Order comparison between naive and aware :class:`.datetime` objects raises :exc:`TypeError`." msgstr "" -#: ../../library/datetime.rst:1345 -msgid "" -"If both comparands are aware, and have the same :attr:`!tzinfo` attribute, " -"the :attr:`!tzinfo` and :attr:`~.datetime.fold` attributes are ignored and " -"the base datetimes are compared. If both comparands are aware and have " -"different :attr:`~.datetime.tzinfo` attributes, the comparison acts as " -"comparands were first converted to UTC datetimes except that the " -"implementation never overflows." +msgid "If both comparands are aware, and have the same :attr:`!tzinfo` attribute, the :attr:`!tzinfo` and :attr:`~.datetime.fold` attributes are ignored and the base datetimes are compared. If both comparands are aware and have different :attr:`~.datetime.tzinfo` attributes, the comparison acts as comparands were first converted to UTC datetimes except that the implementation never overflows." msgstr "" -#: ../../library/datetime.rst:1352 -msgid "" -"Equality comparisons between aware and naive :class:`.datetime` instances " -"don't raise :exc:`TypeError`." +msgid "Equality comparisons between aware and naive :class:`.datetime` instances don't raise :exc:`TypeError`." msgstr "" -#: ../../library/datetime.rst:1369 msgid "Return :class:`date` object with same year, month and day." msgstr "" -#: ../../library/datetime.rst:1374 -msgid "" -"Return :class:`.time` object with same hour, minute, second, microsecond and " -"fold. :attr:`.tzinfo` is ``None``. See also method :meth:`timetz`." +msgid "Return :class:`.time` object with same hour, minute, second, microsecond and fold. :attr:`.tzinfo` is ``None``. See also method :meth:`timetz`." msgstr "" -#: ../../library/datetime.rst:1377 ../../library/datetime.rst:1386 msgid "The fold value is copied to the returned :class:`.time` object." msgstr "" -#: ../../library/datetime.rst:1383 -msgid "" -"Return :class:`.time` object with same hour, minute, second, microsecond, " -"fold, and tzinfo attributes. See also method :meth:`time`." +msgid "Return :class:`.time` object with same hour, minute, second, microsecond, fold, and tzinfo attributes. See also method :meth:`time`." msgstr "" -#: ../../library/datetime.rst:1394 -msgid "" -"Return a new :class:`datetime` object with the same attributes, but with " -"specified parameters updated. Note that ``tzinfo=None`` can be specified to " -"create a naive datetime from an aware datetime with no conversion of date " -"and time data." +msgid "Return a new :class:`datetime` object with the same attributes, but with specified parameters updated. Note that ``tzinfo=None`` can be specified to create a naive datetime from an aware datetime with no conversion of date and time data." msgstr "" -#: ../../library/datetime.rst:1399 -msgid "" -":class:`.datetime` objects are also supported by generic " -"function :func:`copy.replace`." +msgid ":class:`.datetime` objects are also supported by generic function :func:`copy.replace`." msgstr "" -#: ../../library/datetime.rst:1408 -msgid "" -"Return a :class:`.datetime` object with new :attr:`.tzinfo` attribute *tz*, " -"adjusting the date and time data so the result is the same UTC time as " -"*self*, but in *tz*'s local time." +msgid "Return a :class:`.datetime` object with new :attr:`.tzinfo` attribute *tz*, adjusting the date and time data so the result is the same UTC time as *self*, but in *tz*'s local time." msgstr "" -#: ../../library/datetime.rst:1412 -msgid "" -"If provided, *tz* must be an instance of a :class:`tzinfo` subclass, and " -"its :meth:`utcoffset` and :meth:`dst` methods must not return ``None``. If " -"*self* is naive, it is presumed to represent time in the system time zone." +msgid "If provided, *tz* must be an instance of a :class:`tzinfo` subclass, and its :meth:`utcoffset` and :meth:`dst` methods must not return ``None``. If *self* is naive, it is presumed to represent time in the system time zone." msgstr "" -#: ../../library/datetime.rst:1416 -msgid "" -"If called without arguments (or with ``tz=None``) the system local time zone " -"is assumed for the target time zone. The ``.tzinfo`` attribute of the " -"converted datetime instance will be set to an instance of :class:`timezone` " -"with the zone name and offset obtained from the OS." +msgid "If called without arguments (or with ``tz=None``) the system local time zone is assumed for the target time zone. The ``.tzinfo`` attribute of the converted datetime instance will be set to an instance of :class:`timezone` with the zone name and offset obtained from the OS." msgstr "" -#: ../../library/datetime.rst:1421 -msgid "" -"If ``self.tzinfo`` is *tz*, ``self.astimezone(tz)`` is equal to *self*: no " -"adjustment of date or time data is performed. Else the result is local time " -"in the time zone *tz*, representing the same UTC time as *self*: after " -"``astz = dt.astimezone(tz)``, ``astz - astz.utcoffset()`` will have the same " -"date and time data as ``dt - dt.utcoffset()``." +msgid "If ``self.tzinfo`` is *tz*, ``self.astimezone(tz)`` is equal to *self*: no adjustment of date or time data is performed. Else the result is local time in the time zone *tz*, representing the same UTC time as *self*: after ``astz = dt.astimezone(tz)``, ``astz - astz.utcoffset()`` will have the same date and time data as ``dt - dt.utcoffset()``." msgstr "" -#: ../../library/datetime.rst:1427 -msgid "" -"If you merely want to attach a :class:`timezone` object *tz* to a datetime " -"*dt* without adjustment of date and time data, use " -"``dt.replace(tzinfo=tz)``. If you merely want to remove the :class:`!" -"timezone` object from an aware datetime *dt* without conversion of date and " -"time data, use ``dt.replace(tzinfo=None)``." +msgid "If you merely want to attach a :class:`timezone` object *tz* to a datetime *dt* without adjustment of date and time data, use ``dt.replace(tzinfo=tz)``. If you merely want to remove the :class:`!timezone` object from an aware datetime *dt* without conversion of date and time data, use ``dt.replace(tzinfo=None)``." msgstr "" -#: ../../library/datetime.rst:1432 -msgid "" -"Note that the default :meth:`tzinfo.fromutc` method can be overridden in " -"a :class:`tzinfo` subclass to affect the result returned " -"by :meth:`astimezone`. Ignoring error cases, :meth:`astimezone` acts like::" +msgid "Note that the default :meth:`tzinfo.fromutc` method can be overridden in a :class:`tzinfo` subclass to affect the result returned by :meth:`astimezone`. Ignoring error cases, :meth:`astimezone` acts like::" msgstr "" -#: ../../library/datetime.rst:1436 msgid "" "def astimezone(self, tz):\n" " if self.tzinfo is tz:\n" @@ -1996,202 +1197,102 @@ msgid "" " return tz.fromutc(utc)" msgstr "" -#: ../../library/datetime.rst:1444 msgid "*tz* now can be omitted." msgstr "" -#: ../../library/datetime.rst:1447 -msgid "" -"The :meth:`astimezone` method can now be called on naive instances that are " -"presumed to represent system local time." +msgid "The :meth:`astimezone` method can now be called on naive instances that are presumed to represent system local time." msgstr "" -#: ../../library/datetime.rst:1454 -msgid "" -"If :attr:`.tzinfo` is ``None``, returns ``None``, else returns " -"``self.tzinfo.utcoffset(self)``, and raises an exception if the latter " -"doesn't return ``None`` or a :class:`timedelta` object with magnitude less " -"than one day." +msgid "If :attr:`.tzinfo` is ``None``, returns ``None``, else returns ``self.tzinfo.utcoffset(self)``, and raises an exception if the latter doesn't return ``None`` or a :class:`timedelta` object with magnitude less than one day." msgstr "" -#: ../../library/datetime.rst:1458 ../../library/datetime.rst:2076 -#: ../../library/datetime.rst:2185 ../../library/datetime.rst:2438 -#: ../../library/datetime.rst:2450 ../../library/datetime.rst:2803 msgid "The UTC offset is not restricted to a whole number of minutes." msgstr "" -#: ../../library/datetime.rst:1464 -msgid "" -"If :attr:`.tzinfo` is ``None``, returns ``None``, else returns " -"``self.tzinfo.dst(self)``, and raises an exception if the latter doesn't " -"return ``None`` or a :class:`timedelta` object with magnitude less than one " -"day." +msgid "If :attr:`.tzinfo` is ``None``, returns ``None``, else returns ``self.tzinfo.dst(self)``, and raises an exception if the latter doesn't return ``None`` or a :class:`timedelta` object with magnitude less than one day." msgstr "" -#: ../../library/datetime.rst:1468 ../../library/datetime.rst:2086 -#: ../../library/datetime.rst:2243 msgid "The DST offset is not restricted to a whole number of minutes." msgstr "" -#: ../../library/datetime.rst:1474 -msgid "" -"If :attr:`.tzinfo` is ``None``, returns ``None``, else returns " -"``self.tzinfo.tzname(self)``, raises an exception if the latter doesn't " -"return ``None`` or a string object," +msgid "If :attr:`.tzinfo` is ``None``, returns ``None``, else returns ``self.tzinfo.tzname(self)``, raises an exception if the latter doesn't return ``None`` or a string object," msgstr "" -#: ../../library/datetime.rst:1485 msgid "" "time.struct_time((d.year, d.month, d.day,\n" " d.hour, d.minute, d.second,\n" " d.weekday(), yday, dst))" msgstr "" -#: ../../library/datetime.rst:1489 -msgid "" -"where ``yday = d.toordinal() - date(d.year, 1, 1).toordinal() + 1`` is the " -"day number within the current year starting with 1 for January 1st. " -"The :attr:`~time.struct_time.tm_isdst` flag of the result is set according " -"to the :meth:`dst` method: :attr:`.tzinfo` is ``None`` or :meth:`dst` " -"returns ``None``, :attr:`!tm_isdst` is set to ``-1``; else if :meth:`dst` " -"returns a non-zero value, :attr:`!tm_isdst` is set to 1; else :attr:`!" -"tm_isdst` is set to 0." +msgid "where ``yday = d.toordinal() - date(d.year, 1, 1).toordinal() + 1`` is the day number within the current year starting with 1 for January 1st. The :attr:`~time.struct_time.tm_isdst` flag of the result is set according to the :meth:`dst` method: :attr:`.tzinfo` is ``None`` or :meth:`dst` returns ``None``, :attr:`!tm_isdst` is set to ``-1``; else if :meth:`dst` returns a non-zero value, :attr:`!tm_isdst` is set to 1; else :attr:`!tm_isdst` is set to 0." msgstr "" -#: ../../library/datetime.rst:1500 -msgid "" -"If :class:`.datetime` instance ``d`` is naive, this is the same as " -"``d.timetuple()`` except that :attr:`~.time.struct_time.tm_isdst` is forced " -"to 0 regardless of what ``d.dst()`` returns. DST is never in effect for a " -"UTC time." +msgid "If :class:`.datetime` instance ``d`` is naive, this is the same as ``d.timetuple()`` except that :attr:`~.time.struct_time.tm_isdst` is forced to 0 regardless of what ``d.dst()`` returns. DST is never in effect for a UTC time." msgstr "" -#: ../../library/datetime.rst:1504 -msgid "" -"If ``d`` is aware, ``d`` is normalized to UTC time, by subtracting " -"``d.utcoffset()``, and a :class:`time.struct_time` for the normalized time " -"is returned. :attr:`!tm_isdst` is forced to 0. Note that " -"an :exc:`OverflowError` may be raised if ``d.year`` was ``MINYEAR`` or " -"``MAXYEAR`` and UTC adjustment spills over a year boundary." +msgid "If ``d`` is aware, ``d`` is normalized to UTC time, by subtracting ``d.utcoffset()``, and a :class:`time.struct_time` for the normalized time is returned. :attr:`!tm_isdst` is forced to 0. Note that an :exc:`OverflowError` may be raised if ``d.year`` was ``MINYEAR`` or ``MAXYEAR`` and UTC adjustment spills over a year boundary." msgstr "" -#: ../../library/datetime.rst:1513 -msgid "" -"Because naive ``datetime`` objects are treated by many ``datetime`` methods " -"as local times, it is preferred to use aware datetimes to represent times in " -"UTC; as a result, using :meth:`datetime.utctimetuple` may give misleading " -"results. If you have a naive ``datetime`` representing UTC, use " -"``datetime.replace(tzinfo=timezone.utc)`` to make it aware, at which point " -"you can use :meth:`.datetime.timetuple`." +msgid "Because naive ``datetime`` objects are treated by many ``datetime`` methods as local times, it is preferred to use aware datetimes to represent times in UTC; as a result, using :meth:`datetime.utctimetuple` may give misleading results. If you have a naive ``datetime`` representing UTC, use ``datetime.replace(tzinfo=timezone.utc)`` to make it aware, at which point you can use :meth:`.datetime.timetuple`." msgstr "" -#: ../../library/datetime.rst:1523 -msgid "" -"Return the proleptic Gregorian ordinal of the date. The same as " -"``self.date().toordinal()``." +msgid "Return the proleptic Gregorian ordinal of the date. The same as ``self.date().toordinal()``." msgstr "" -#: ../../library/datetime.rst:1529 -msgid "" -"Return POSIX timestamp corresponding to the :class:`.datetime` instance. The " -"return value is a :class:`float` similar to that returned " -"by :func:`time.time`." +msgid "Return POSIX timestamp corresponding to the :class:`.datetime` instance. The return value is a :class:`float` similar to that returned by :func:`time.time`." msgstr "" -#: ../../library/datetime.rst:1533 -msgid "" -"Naive :class:`.datetime` instances are assumed to represent local time and " -"this method relies on the platform C :c:func:`mktime` function to perform " -"the conversion. Since :class:`!datetime` supports wider range of values " -"than :c:func:`mktime` on many platforms, this method may " -"raise :exc:`OverflowError` or :exc:`OSError` for times far in the past or " -"far in the future." +msgid "Naive :class:`.datetime` instances are assumed to represent local time and this method relies on the platform C :c:func:`mktime` function to perform the conversion. Since :class:`!datetime` supports wider range of values than :c:func:`mktime` on many platforms, this method may raise :exc:`OverflowError` or :exc:`OSError` for times far in the past or far in the future." msgstr "" -#: ../../library/datetime.rst:1540 -msgid "" -"For aware :class:`.datetime` instances, the return value is computed as::" +msgid "For aware :class:`.datetime` instances, the return value is computed as::" msgstr "" -#: ../../library/datetime.rst:1543 msgid "(dt - datetime(1970, 1, 1, tzinfo=timezone.utc)).total_seconds()" msgstr "" -#: ../../library/datetime.rst:1547 -msgid "" -"There is no method to obtain the POSIX timestamp directly from a " -"naive :class:`.datetime` instance representing UTC time. If your application " -"uses this convention and your system time zone is not set to UTC, you can " -"obtain the POSIX timestamp by supplying ``tzinfo=timezone.utc``::" +msgid "There is no method to obtain the POSIX timestamp directly from a naive :class:`.datetime` instance representing UTC time. If your application uses this convention and your system time zone is not set to UTC, you can obtain the POSIX timestamp by supplying ``tzinfo=timezone.utc``::" msgstr "" -#: ../../library/datetime.rst:1553 msgid "timestamp = dt.replace(tzinfo=timezone.utc).timestamp()" msgstr "" -#: ../../library/datetime.rst:1555 msgid "or by calculating the timestamp directly::" msgstr "" -#: ../../library/datetime.rst:1557 msgid "timestamp = (dt - datetime(1970, 1, 1)) / timedelta(seconds=1)" msgstr "" -#: ../../library/datetime.rst:1561 -msgid "" -"The :meth:`timestamp` method uses the :attr:`.fold` attribute to " -"disambiguate the times during a repeated interval." +msgid "The :meth:`timestamp` method uses the :attr:`.fold` attribute to disambiguate the times during a repeated interval." msgstr "" -#: ../../library/datetime.rst:1568 -msgid "" -"Return the day of the week as an integer, where Monday is 0 and Sunday is 6. " -"The same as ``self.date().weekday()``. See also :meth:`isoweekday`." +msgid "Return the day of the week as an integer, where Monday is 0 and Sunday is 6. The same as ``self.date().weekday()``. See also :meth:`isoweekday`." msgstr "" -#: ../../library/datetime.rst:1574 -msgid "" -"Return the day of the week as an integer, where Monday is 1 and Sunday is 7. " -"The same as ``self.date().isoweekday()``. See " -"also :meth:`weekday`, :meth:`isocalendar`." +msgid "Return the day of the week as an integer, where Monday is 1 and Sunday is 7. The same as ``self.date().isoweekday()``. See also :meth:`weekday`, :meth:`isocalendar`." msgstr "" -#: ../../library/datetime.rst:1581 -msgid "" -"Return a :term:`named tuple` with three components: ``year``, ``week`` and " -"``weekday``. The same as ``self.date().isocalendar()``." +msgid "Return a :term:`named tuple` with three components: ``year``, ``week`` and ``weekday``. The same as ``self.date().isocalendar()``." msgstr "" -#: ../../library/datetime.rst:1587 msgid "Return a string representing the date and time in ISO 8601 format:" msgstr "" -#: ../../library/datetime.rst:1589 msgid "``YYYY-MM-DDTHH:MM:SS.ffffff``, if :attr:`microsecond` is not 0" msgstr "" -#: ../../library/datetime.rst:1590 msgid "``YYYY-MM-DDTHH:MM:SS``, if :attr:`microsecond` is 0" msgstr "" -#: ../../library/datetime.rst:1592 -msgid "" -"If :meth:`utcoffset` does not return ``None``, a string is appended, giving " -"the UTC offset:" +msgid "If :meth:`utcoffset` does not return ``None``, a string is appended, giving the UTC offset:" msgstr "" -#: ../../library/datetime.rst:1595 -msgid "" -"``YYYY-MM-DDTHH:MM:SS.ffffff+HH:MM[:SS[.ffffff]]``, if :attr:`microsecond` " -"is not 0" +msgid "``YYYY-MM-DDTHH:MM:SS.ffffff+HH:MM[:SS[.ffffff]]``, if :attr:`microsecond` is not 0" msgstr "" -#: ../../library/datetime.rst:1597 -msgid "" -"``YYYY-MM-DDTHH:MM:SS+HH:MM[:SS[.ffffff]]``, if :attr:`microsecond` is 0" +msgid "``YYYY-MM-DDTHH:MM:SS+HH:MM[:SS[.ffffff]]``, if :attr:`microsecond` is 0" msgstr "" -#: ../../library/datetime.rst:1601 msgid "" ">>> import datetime as dt\n" ">>> dt.datetime(2019, 5, 18, 15, 17, 8, 132263).isoformat()\n" @@ -2200,13 +1301,9 @@ msgid "" "'2019-05-18T15:17:00+00:00'" msgstr "" -#: ../../library/datetime.rst:1607 -msgid "" -"The optional argument *sep* (default ``'T'``) is a one-character separator, " -"placed between the date and time portions of the result. For example::" +msgid "The optional argument *sep* (default ``'T'``) is a one-character separator, placed between the date and time portions of the result. For example::" msgstr "" -#: ../../library/datetime.rst:1610 msgid "" ">>> import datetime as dt\n" ">>> class TZ(dt.tzinfo):\n" @@ -2220,53 +1317,33 @@ msgid "" "'2009-11-27T00:00:00.000100-06:39'" msgstr "" -#: ../../library/datetime.rst:1621 ../../library/datetime.rst:2016 -msgid "" -"The optional argument *timespec* specifies the number of additional " -"components of the time to include (the default is ``'auto'``). It can be one " -"of the following:" +msgid "The optional argument *timespec* specifies the number of additional components of the time to include (the default is ``'auto'``). It can be one of the following:" msgstr "" -#: ../../library/datetime.rst:1625 ../../library/datetime.rst:2020 -msgid "" -"``'auto'``: Same as ``'seconds'`` if :attr:`microsecond` is 0, same as " -"``'microseconds'`` otherwise." +msgid "``'auto'``: Same as ``'seconds'`` if :attr:`microsecond` is 0, same as ``'microseconds'`` otherwise." msgstr "" -#: ../../library/datetime.rst:1627 ../../library/datetime.rst:2022 msgid "``'hours'``: Include the :attr:`hour` in the two-digit ``HH`` format." msgstr "" -#: ../../library/datetime.rst:1628 ../../library/datetime.rst:2023 -msgid "" -"``'minutes'``: Include :attr:`hour` and :attr:`minute` in ``HH:MM`` format." +msgid "``'minutes'``: Include :attr:`hour` and :attr:`minute` in ``HH:MM`` format." msgstr "" -#: ../../library/datetime.rst:1629 ../../library/datetime.rst:2024 -msgid "" -"``'seconds'``: Include :attr:`hour`, :attr:`minute`, and :attr:`second` in " -"``HH:MM:SS`` format." +msgid "``'seconds'``: Include :attr:`hour`, :attr:`minute`, and :attr:`second` in ``HH:MM:SS`` format." msgstr "" -#: ../../library/datetime.rst:1631 ../../library/datetime.rst:2026 -msgid "" -"``'milliseconds'``: Include full time, but truncate fractional second part " -"to milliseconds. ``HH:MM:SS.sss`` format." +msgid "``'milliseconds'``: Include full time, but truncate fractional second part to milliseconds. ``HH:MM:SS.sss`` format." msgstr "" -#: ../../library/datetime.rst:1633 ../../library/datetime.rst:2028 msgid "``'microseconds'``: Include full time in ``HH:MM:SS.ffffff`` format." msgstr "" -#: ../../library/datetime.rst:1637 ../../library/datetime.rst:2032 msgid "Excluded time components are truncated, not rounded." msgstr "" -#: ../../library/datetime.rst:1639 msgid ":exc:`ValueError` will be raised on an invalid *timespec* argument::" msgstr "" -#: ../../library/datetime.rst:1642 msgid "" ">>> import datetime as dt\n" ">>> dt.datetime.now().isoformat(timespec='minutes')\n" @@ -2276,64 +1353,39 @@ msgid "" "'2015-01-01T12:30:59.000000'" msgstr "" -#: ../../library/datetime.rst:1649 ../../library/datetime.rst:2047 msgid "Added the *timespec* parameter." msgstr "" -#: ../../library/datetime.rst:1655 -msgid "" -"For a :class:`.datetime` instance ``d``, ``str(d)`` is equivalent to " -"``d.isoformat(' ')``." +msgid "For a :class:`.datetime` instance ``d``, ``str(d)`` is equivalent to ``d.isoformat(' ')``." msgstr "" -#: ../../library/datetime.rst:1661 msgid "Return a string representing the date and time::" msgstr "" -#: ../../library/datetime.rst:1663 msgid "" ">>> import datetime as dt\n" ">>> dt.datetime(2002, 12, 4, 20, 30, 40).ctime()\n" "'Wed Dec 4 20:30:40 2002'" msgstr "" -#: ../../library/datetime.rst:1667 -msgid "" -"The output string will *not* include time zone information, regardless of " -"whether the input is aware or naive." +msgid "The output string will *not* include time zone information, regardless of whether the input is aware or naive." msgstr "" -#: ../../library/datetime.rst:1674 -msgid "" -"on platforms where the native C :c:func:`ctime` function " -"(which :func:`time.ctime` invokes, but which :meth:`datetime.ctime` does not " -"invoke) conforms to the C standard." +msgid "on platforms where the native C :c:func:`ctime` function (which :func:`time.ctime` invokes, but which :meth:`datetime.ctime` does not invoke) conforms to the C standard." msgstr "" -#: ../../library/datetime.rst:1681 -msgid "" -"Return a string representing the date and time, controlled by an explicit " -"format string. See also :ref:`strftime-strptime-behavior` " -"and :meth:`datetime.isoformat`." +msgid "Return a string representing the date and time, controlled by an explicit format string. See also :ref:`strftime-strptime-behavior` and :meth:`datetime.isoformat`." msgstr "" -#: ../../library/datetime.rst:1688 -msgid "" -"Same as :meth:`.datetime.strftime`. This makes it possible to specify a " -"format string for a :class:`.datetime` object in :ref:`formatted string " -"literals ` and when using :meth:`str.format`. See " -"also :ref:`strftime-strptime-behavior` and :meth:`datetime.isoformat`." +msgid "Same as :meth:`.datetime.strftime`. This makes it possible to specify a format string for a :class:`.datetime` object in :ref:`formatted string literals ` and when using :meth:`str.format`. See also :ref:`strftime-strptime-behavior` and :meth:`datetime.isoformat`." msgstr "" -#: ../../library/datetime.rst:1695 msgid "Examples of usage: :class:`!datetime`" msgstr "" -#: ../../library/datetime.rst:1697 msgid "Examples of working with :class:`.datetime` objects:" msgstr "" -#: ../../library/datetime.rst:1699 msgid "" ">>> import datetime as dt\n" "\n" @@ -2347,12 +1399,10 @@ msgid "" ">>> dt.datetime.now()\n" "datetime.datetime(2007, 12, 6, 16, 29, 43, 79043) # GMT +1\n" ">>> dt.datetime.now(dt.timezone.utc)\n" -"datetime.datetime(2007, 12, 6, 15, 29, 43, 79060, " -"tzinfo=datetime.timezone.utc)\n" +"datetime.datetime(2007, 12, 6, 15, 29, 43, 79060, tzinfo=datetime.timezone.utc)\n" "\n" ">>> # Using datetime.strptime()\n" -">>> my_datetime = dt.datetime.strptime(\"21/11/06 16:30\", \"%d/%m/%y %H:" -"%M\")\n" +">>> my_datetime = dt.datetime.strptime(\"21/11/06 16:30\", \"%d/%m/%y %H:%M\")\n" ">>> my_datetime\n" "datetime.datetime(2006, 11, 21, 16, 30)\n" "\n" @@ -2383,19 +1433,13 @@ msgid "" ">>> # Formatting a datetime\n" ">>> my_datetime.strftime(\"%A, %d. %B %Y %I:%M%p\")\n" "'Tuesday, 21. November 2006 04:30PM'\n" -">>> 'The {1} is {0:%d}, the {2} is {0:%B}, the {3} is {0:%I:" -"%M%p}.'.format(my_datetime, \"day\", \"month\", \"time\")\n" +">>> 'The {1} is {0:%d}, the {2} is {0:%B}, the {3} is {0:%I:%M%p}.'.format(my_datetime, \"day\", \"month\", \"time\")\n" "'The day is 21, the month is November, the time is 04:30PM.'" msgstr "" -#: ../../library/datetime.rst:1750 -msgid "" -"The example below defines a :class:`tzinfo` subclass capturing time zone " -"information for Kabul, Afghanistan, which used +4 UTC until 1945 and then " -"+4:30 UTC thereafter::" +msgid "The example below defines a :class:`tzinfo` subclass capturing time zone information for Kabul, Afghanistan, which used +4 UTC until 1945 and then +4:30 UTC thereafter::" msgstr "" -#: ../../library/datetime.rst:1754 msgid "" "import datetime as dt\n" "\n" @@ -2406,8 +1450,7 @@ msgid "" " def utcoffset(self, when):\n" " if when.year < 1945:\n" " return dt.timedelta(hours=4)\n" -" elif (1945, 1, 1, 0, 0) <= when.timetuple()[:5] < (1945, 1, 1, 0, " -"30):\n" +" elif (1945, 1, 1, 0, 0) <= when.timetuple()[:5] < (1945, 1, 1, 0, 30):\n" " # An ambiguous (\"imaginary\") half-hour range representing\n" " # a 'fold' in time due to the shift from +4 to +4:30.\n" " # If when falls in the imaginary range, use fold to decide how\n" @@ -2442,11 +1485,9 @@ msgid "" " return \"+04\"" msgstr "" -#: ../../library/datetime.rst:1797 msgid "Usage of ``KabulTz`` from above::" msgstr "" -#: ../../library/datetime.rst:1799 msgid "" ">>> tz1 = KabulTz()\n" "\n" @@ -2470,117 +1511,63 @@ msgid "" "True" msgstr "" -#: ../../library/datetime.rst:1824 msgid ":class:`!time` objects" msgstr "" -#: ../../library/datetime.rst:1826 -msgid "" -"A :class:`.time` object represents a (local) time of day, independent of any " -"particular day, and subject to adjustment via a :class:`tzinfo` object." +msgid "A :class:`.time` object represents a (local) time of day, independent of any particular day, and subject to adjustment via a :class:`tzinfo` object." msgstr "" -#: ../../library/datetime.rst:1831 -msgid "" -"All arguments are optional. *tzinfo* may be ``None``, or an instance of " -"a :class:`tzinfo` subclass. The remaining arguments must be integers in the " -"following ranges:" +msgid "All arguments are optional. *tzinfo* may be ``None``, or an instance of a :class:`tzinfo` subclass. The remaining arguments must be integers in the following ranges:" msgstr "" -#: ../../library/datetime.rst:1841 -msgid "" -"If an argument outside those ranges is given, :exc:`ValueError` is raised. " -"All default to 0 except *tzinfo*, which defaults to ``None``." +msgid "If an argument outside those ranges is given, :exc:`ValueError` is raised. All default to 0 except *tzinfo*, which defaults to ``None``." msgstr "" -#: ../../library/datetime.rst:1850 msgid "The earliest representable :class:`.time`, ``time(0, 0, 0, 0)``." msgstr "" -#: ../../library/datetime.rst:1855 msgid "The latest representable :class:`.time`, ``time(23, 59, 59, 999999)``." msgstr "" -#: ../../library/datetime.rst:1860 -msgid "" -"The smallest possible difference between non-equal :class:`.time` objects, " -"``timedelta(microseconds=1)``, although note that arithmetic " -"on :class:`.time` objects is not supported." +msgid "The smallest possible difference between non-equal :class:`.time` objects, ``timedelta(microseconds=1)``, although note that arithmetic on :class:`.time` objects is not supported." msgstr "" -#: ../../library/datetime.rst:1889 -msgid "" -"The object passed as the tzinfo argument to the :class:`.time` constructor, " -"or ``None`` if none was passed." +msgid "The object passed as the tzinfo argument to the :class:`.time` constructor, or ``None`` if none was passed." msgstr "" -#: ../../library/datetime.rst:1904 -msgid "" -":class:`.time` objects support equality and order comparisons, where ``a`` " -"is considered less than ``b`` when ``a`` precedes ``b`` in time." +msgid ":class:`.time` objects support equality and order comparisons, where ``a`` is considered less than ``b`` when ``a`` precedes ``b`` in time." msgstr "" -#: ../../library/datetime.rst:1907 -msgid "" -"Naive and aware :class:`!time` objects are never equal. Order comparison " -"between naive and aware :class:`!time` objects raises :exc:`TypeError`." +msgid "Naive and aware :class:`!time` objects are never equal. Order comparison between naive and aware :class:`!time` objects raises :exc:`TypeError`." msgstr "" -#: ../../library/datetime.rst:1911 -msgid "" -"If both comparands are aware, and have the same :attr:`~.time.tzinfo` " -"attribute, the :attr:`!tzinfo` and :attr:`!fold` attributes are ignored and " -"the base times are compared. If both comparands are aware and have " -"different :attr:`!tzinfo` attributes, the comparands are first adjusted by " -"subtracting their UTC offsets (obtained from ``self.utcoffset()``)." +msgid "If both comparands are aware, and have the same :attr:`~.time.tzinfo` attribute, the :attr:`!tzinfo` and :attr:`!fold` attributes are ignored and the base times are compared. If both comparands are aware and have different :attr:`!tzinfo` attributes, the comparands are first adjusted by subtracting their UTC offsets (obtained from ``self.utcoffset()``)." msgstr "" -#: ../../library/datetime.rst:1917 -msgid "" -"Equality comparisons between aware and naive :class:`.time` instances don't " -"raise :exc:`TypeError`." +msgid "Equality comparisons between aware and naive :class:`.time` instances don't raise :exc:`TypeError`." msgstr "" -#: ../../library/datetime.rst:1921 -msgid "" -"In Boolean contexts, a :class:`.time` object is always considered to be true." +msgid "In Boolean contexts, a :class:`.time` object is always considered to be true." msgstr "" -#: ../../library/datetime.rst:1923 -msgid "" -"Before Python 3.5, a :class:`.time` object was considered to be false if it " -"represented midnight in UTC. This behavior was considered obscure and error-" -"prone and has been removed in Python 3.5. See :issue:`13936` for more " -"information." +msgid "Before Python 3.5, a :class:`.time` object was considered to be false if it represented midnight in UTC. This behavior was considered obscure and error-prone and has been removed in Python 3.5. See :issue:`13936` for more information." msgstr "" -#: ../../library/datetime.rst:1930 msgid "Other constructors:" msgstr "" -#: ../../library/datetime.rst:1934 -msgid "" -"Return a :class:`.time` corresponding to a *time_string* in any valid ISO " -"8601 format, with the following exceptions:" +msgid "Return a :class:`.time` corresponding to a *time_string* in any valid ISO 8601 format, with the following exceptions:" msgstr "" -#: ../../library/datetime.rst:1938 -msgid "" -"The leading ``T``, normally required in cases where there may be ambiguity " -"between a date and a time, is not required." +msgid "The leading ``T``, normally required in cases where there may be ambiguity between a date and a time, is not required." msgstr "" -#: ../../library/datetime.rst:1940 -msgid "" -"Fractional seconds may have any number of digits (anything beyond 6 will be " -"truncated)." +msgid "Fractional seconds may have any number of digits (anything beyond 6 will be truncated)." msgstr "" -#: ../../library/datetime.rst:1944 msgid "Examples:" msgstr "" -#: ../../library/datetime.rst:1946 msgid "" ">>> import datetime as dt\n" ">>> dt.time.fromisoformat('04:23:01')\n" @@ -2594,91 +1581,55 @@ msgid "" ">>> dt.time.fromisoformat('04:23:01,000384')\n" "datetime.time(4, 23, 1, 384)\n" ">>> dt.time.fromisoformat('04:23:01+04:00')\n" -"datetime.time(4, 23, 1, " -"tzinfo=datetime.timezone(datetime.timedelta(seconds=14400)))\n" +"datetime.time(4, 23, 1, tzinfo=datetime.timezone(datetime.timedelta(seconds=14400)))\n" ">>> dt.time.fromisoformat('04:23:01Z')\n" "datetime.time(4, 23, 1, tzinfo=datetime.timezone.utc)\n" ">>> dt.time.fromisoformat('04:23:01+00:00')\n" "datetime.time(4, 23, 1, tzinfo=datetime.timezone.utc)" msgstr "" -#: ../../library/datetime.rst:1968 -msgid "" -"Previously, this method only supported formats that could be emitted " -"by :meth:`time.isoformat`." +msgid "Previously, this method only supported formats that could be emitted by :meth:`time.isoformat`." msgstr "" -#: ../../library/datetime.rst:1975 -msgid "" -"Return a :class:`.time` corresponding to *date_string*, parsed according to " -"*format*." +msgid "Return a :class:`.time` corresponding to *date_string*, parsed according to *format*." msgstr "" -#: ../../library/datetime.rst:1978 -msgid "" -"If *format* does not contain microseconds or timezone information, this is " -"equivalent to::" +msgid "If *format* does not contain microseconds or timezone information, this is equivalent to::" msgstr "" -#: ../../library/datetime.rst:1980 msgid "time(*(time.strptime(date_string, format)[3:6]))" msgstr "" -#: ../../library/datetime.rst:1982 -msgid "" -":exc:`ValueError` is raised if the *date_string* and *format* cannot be " -"parsed by :func:`time.strptime` or if it returns a value which is not a time " -"tuple. See also :ref:`strftime-strptime-behavior` " -"and :meth:`time.fromisoformat`." +msgid ":exc:`ValueError` is raised if the *date_string* and *format* cannot be parsed by :func:`time.strptime` or if it returns a value which is not a time tuple. See also :ref:`strftime-strptime-behavior` and :meth:`time.fromisoformat`." msgstr "" -#: ../../library/datetime.rst:1995 -msgid "" -"Return a new :class:`.time` with the same values, but with specified " -"parameters updated. Note that ``tzinfo=None`` can be specified to create a " -"naive :class:`!time` from an aware :class:`!time`, without conversion of the " -"time data." +msgid "Return a new :class:`.time` with the same values, but with specified parameters updated. Note that ``tzinfo=None`` can be specified to create a naive :class:`!time` from an aware :class:`!time`, without conversion of the time data." msgstr "" -#: ../../library/datetime.rst:2000 -msgid "" -":class:`.time` objects are also supported by generic " -"function :func:`copy.replace`." +msgid ":class:`.time` objects are also supported by generic function :func:`copy.replace`." msgstr "" -#: ../../library/datetime.rst:2009 msgid "Return a string representing the time in ISO 8601 format, one of:" msgstr "" -#: ../../library/datetime.rst:2011 msgid "``HH:MM:SS.ffffff``, if :attr:`microsecond` is not 0" msgstr "" -#: ../../library/datetime.rst:2012 msgid "``HH:MM:SS``, if :attr:`microsecond` is 0" msgstr "" -#: ../../library/datetime.rst:2013 -msgid "" -"``HH:MM:SS.ffffff+HH:MM[:SS[.ffffff]]``, if :meth:`utcoffset` does not " -"return ``None``" +msgid "``HH:MM:SS.ffffff+HH:MM[:SS[.ffffff]]``, if :meth:`utcoffset` does not return ``None``" msgstr "" -#: ../../library/datetime.rst:2014 -msgid "" -"``HH:MM:SS+HH:MM[:SS[.ffffff]]``, if :attr:`microsecond` is 0 " -"and :meth:`utcoffset` does not return ``None``" +msgid "``HH:MM:SS+HH:MM[:SS[.ffffff]]``, if :attr:`microsecond` is 0 and :meth:`utcoffset` does not return ``None``" msgstr "" -#: ../../library/datetime.rst:2034 msgid ":exc:`ValueError` will be raised on an invalid *timespec* argument." msgstr "" -#: ../../library/datetime.rst:2038 msgid "" ">>> import datetime as dt\n" -">>> dt.time(hour=12, minute=34, second=56, " -"microsecond=123456).isoformat(timespec='minutes')\n" +">>> dt.time(hour=12, minute=34, second=56, microsecond=123456).isoformat(timespec='minutes')\n" "'12:34'\n" ">>> my_time = dt.time(hour=12, minute=34, second=56, microsecond=0)\n" ">>> my_time.isoformat(timespec='microseconds')\n" @@ -2687,57 +1638,30 @@ msgid "" "'12:34:56'" msgstr "" -#: ../../library/datetime.rst:2053 msgid "For a time ``t``, ``str(t)`` is equivalent to ``t.isoformat()``." msgstr "" -#: ../../library/datetime.rst:2058 -msgid "" -"Return a string representing the time, controlled by an explicit format " -"string. See also :ref:`strftime-strptime-behavior` " -"and :meth:`time.isoformat`." +msgid "Return a string representing the time, controlled by an explicit format string. See also :ref:`strftime-strptime-behavior` and :meth:`time.isoformat`." msgstr "" -#: ../../library/datetime.rst:2064 -msgid "" -"Same as :meth:`.time.strftime`. This makes it possible to specify a format " -"string for a :class:`.time` object in :ref:`formatted string literals ` and when using :meth:`str.format`. See also :ref:`strftime-" -"strptime-behavior` and :meth:`time.isoformat`." +msgid "Same as :meth:`.time.strftime`. This makes it possible to specify a format string for a :class:`.time` object in :ref:`formatted string literals ` and when using :meth:`str.format`. See also :ref:`strftime-strptime-behavior` and :meth:`time.isoformat`." msgstr "" -#: ../../library/datetime.rst:2072 -msgid "" -"If :attr:`.tzinfo` is ``None``, returns ``None``, else returns " -"``self.tzinfo.utcoffset(None)``, and raises an exception if the latter " -"doesn't return ``None`` or a :class:`timedelta` object with magnitude less " -"than one day." +msgid "If :attr:`.tzinfo` is ``None``, returns ``None``, else returns ``self.tzinfo.utcoffset(None)``, and raises an exception if the latter doesn't return ``None`` or a :class:`timedelta` object with magnitude less than one day." msgstr "" -#: ../../library/datetime.rst:2082 -msgid "" -"If :attr:`.tzinfo` is ``None``, returns ``None``, else returns " -"``self.tzinfo.dst(None)``, and raises an exception if the latter doesn't " -"return ``None``, or a :class:`timedelta` object with magnitude less than one " -"day." +msgid "If :attr:`.tzinfo` is ``None``, returns ``None``, else returns ``self.tzinfo.dst(None)``, and raises an exception if the latter doesn't return ``None``, or a :class:`timedelta` object with magnitude less than one day." msgstr "" -#: ../../library/datetime.rst:2092 -msgid "" -"If :attr:`.tzinfo` is ``None``, returns ``None``, else returns " -"``self.tzinfo.tzname(None)``, or raises an exception if the latter doesn't " -"return ``None`` or a string object." +msgid "If :attr:`.tzinfo` is ``None``, returns ``None``, else returns ``self.tzinfo.tzname(None)``, or raises an exception if the latter doesn't return ``None`` or a string object." msgstr "" -#: ../../library/datetime.rst:2098 msgid "Examples of usage: :class:`!time`" msgstr "" -#: ../../library/datetime.rst:2100 msgid "Examples of working with a :class:`.time` object::" msgstr "" -#: ../../library/datetime.rst:2102 msgid "" ">>> import datetime as dt\n" ">>> class TZ1(dt.tzinfo):\n" @@ -2765,138 +1689,59 @@ msgid "" "'The time is 12:10.'" msgstr "" -#: ../../library/datetime.rst:2131 msgid ":class:`!tzinfo` objects" msgstr "" -#: ../../library/datetime.rst:2135 -msgid "" -"This is an :term:`abstract base class`, meaning that this class should not " -"be instantiated directly. Define a subclass of :class:`tzinfo` to capture " -"information about a particular time zone." +msgid "This is an :term:`abstract base class`, meaning that this class should not be instantiated directly. Define a subclass of :class:`tzinfo` to capture information about a particular time zone." msgstr "" -#: ../../library/datetime.rst:2139 -msgid "" -"An instance of (a concrete subclass of) :class:`tzinfo` can be passed to the " -"constructors for :class:`.datetime` and :class:`.time` objects. The latter " -"objects view their attributes as being in local time, and the :class:`!" -"tzinfo` object supports methods revealing offset of local time from UTC, the " -"name of the time zone, and DST offset, all relative to a date or time object " -"passed to them." +msgid "An instance of (a concrete subclass of) :class:`tzinfo` can be passed to the constructors for :class:`.datetime` and :class:`.time` objects. The latter objects view their attributes as being in local time, and the :class:`!tzinfo` object supports methods revealing offset of local time from UTC, the name of the time zone, and DST offset, all relative to a date or time object passed to them." msgstr "" -#: ../../library/datetime.rst:2145 -msgid "" -"You need to derive a concrete subclass, and (at least) supply " -"implementations of the standard :class:`tzinfo` methods needed by " -"the :class:`.datetime` methods you use. The :mod:`!datetime` module " -"provides :class:`timezone`, a simple concrete subclass of :class:`!tzinfo` " -"which can represent time zones with fixed offset from UTC such as UTC itself " -"or North American EST and EDT." +msgid "You need to derive a concrete subclass, and (at least) supply implementations of the standard :class:`tzinfo` methods needed by the :class:`.datetime` methods you use. The :mod:`!datetime` module provides :class:`timezone`, a simple concrete subclass of :class:`!tzinfo` which can represent time zones with fixed offset from UTC such as UTC itself or North American EST and EDT." msgstr "" -#: ../../library/datetime.rst:2152 -msgid "" -"Special requirement for pickling: A :class:`tzinfo` subclass must have " -"an :meth:`~object.__init__` method that can be called with no arguments, " -"otherwise it can be pickled but possibly not unpickled again. This is a " -"technical requirement that may be relaxed in the future." +msgid "Special requirement for pickling: A :class:`tzinfo` subclass must have an :meth:`~object.__init__` method that can be called with no arguments, otherwise it can be pickled but possibly not unpickled again. This is a technical requirement that may be relaxed in the future." msgstr "" -#: ../../library/datetime.rst:2158 -msgid "" -"A concrete subclass of :class:`tzinfo` may need to implement the following " -"methods. Exactly which methods are needed depends on the uses made of " -"aware :mod:`!datetime` objects. If in doubt, simply implement all of them." +msgid "A concrete subclass of :class:`tzinfo` may need to implement the following methods. Exactly which methods are needed depends on the uses made of aware :mod:`!datetime` objects. If in doubt, simply implement all of them." msgstr "" -#: ../../library/datetime.rst:2165 -msgid "" -"Return offset of local time from UTC, as a :class:`timedelta` object that is " -"positive east of UTC. If local time is west of UTC, this should be negative." +msgid "Return offset of local time from UTC, as a :class:`timedelta` object that is positive east of UTC. If local time is west of UTC, this should be negative." msgstr "" -#: ../../library/datetime.rst:2168 -msgid "" -"This represents the *total* offset from UTC; for example, if " -"a :class:`tzinfo` object represents both time zone and DST " -"adjustments, :meth:`utcoffset` should return their sum. If the UTC offset " -"isn't known, return ``None``. Else the value returned must be " -"a :class:`timedelta` object strictly between ``-timedelta(hours=24)`` and " -"``timedelta(hours=24)`` (the magnitude of the offset must be less than one " -"day). Most implementations of :meth:`utcoffset` will probably look like one " -"of these two::" +msgid "This represents the *total* offset from UTC; for example, if a :class:`tzinfo` object represents both time zone and DST adjustments, :meth:`utcoffset` should return their sum. If the UTC offset isn't known, return ``None``. Else the value returned must be a :class:`timedelta` object strictly between ``-timedelta(hours=24)`` and ``timedelta(hours=24)`` (the magnitude of the offset must be less than one day). Most implementations of :meth:`utcoffset` will probably look like one of these two::" msgstr "" -#: ../../library/datetime.rst:2176 msgid "" "return CONSTANT # fixed-offset class\n" "return CONSTANT + self.dst(dt) # daylight-aware class" msgstr "" -#: ../../library/datetime.rst:2179 -msgid "" -"If :meth:`utcoffset` does not return ``None``, :meth:`dst` should not return " -"``None`` either." +msgid "If :meth:`utcoffset` does not return ``None``, :meth:`dst` should not return ``None`` either." msgstr "" -#: ../../library/datetime.rst:2182 -msgid "" -"The default implementation of :meth:`utcoffset` " -"raises :exc:`NotImplementedError`." +msgid "The default implementation of :meth:`utcoffset` raises :exc:`NotImplementedError`." msgstr "" -#: ../../library/datetime.rst:2191 -msgid "" -"Return the daylight saving time (DST) adjustment, as a :class:`timedelta` " -"object or ``None`` if DST information isn't known." +msgid "Return the daylight saving time (DST) adjustment, as a :class:`timedelta` object or ``None`` if DST information isn't known." msgstr "" -#: ../../library/datetime.rst:2195 -msgid "" -"Return ``timedelta(0)`` if DST is not in effect. If DST is in effect, return " -"the offset as a :class:`timedelta` object (see :meth:`utcoffset` for " -"details). Note that DST offset, if applicable, has already been added to the " -"UTC offset returned by :meth:`utcoffset`, so there's no need to " -"consult :meth:`dst` unless you're interested in obtaining DST info " -"separately. For example, :meth:`datetime.timetuple` calls " -"its :attr:`~.datetime.tzinfo` attribute's :meth:`dst` method to determine " -"how the :attr:`~time.struct_time.tm_isdst` flag should be set, " -"and :meth:`tzinfo.fromutc` calls :meth:`dst` to account for DST changes when " -"crossing time zones." -msgstr "" - -#: ../../library/datetime.rst:2205 -msgid "" -"An instance *tz* of a :class:`tzinfo` subclass that models both standard and " -"daylight times must be consistent in this sense:" +msgid "Return ``timedelta(0)`` if DST is not in effect. If DST is in effect, return the offset as a :class:`timedelta` object (see :meth:`utcoffset` for details). Note that DST offset, if applicable, has already been added to the UTC offset returned by :meth:`utcoffset`, so there's no need to consult :meth:`dst` unless you're interested in obtaining DST info separately. For example, :meth:`datetime.timetuple` calls its :attr:`~.datetime.tzinfo` attribute's :meth:`dst` method to determine how the :attr:`~time.struct_time.tm_isdst` flag should be set, and :meth:`tzinfo.fromutc` calls :meth:`dst` to account for DST changes when crossing time zones." +msgstr "" + +msgid "An instance *tz* of a :class:`tzinfo` subclass that models both standard and daylight times must be consistent in this sense:" msgstr "" -#: ../../library/datetime.rst:2208 msgid "``tz.utcoffset(dt) - tz.dst(dt)``" msgstr "" -#: ../../library/datetime.rst:2210 -msgid "" -"must return the same result for every :class:`.datetime` *dt* with " -"``dt.tzinfo == tz``. For sane :class:`!tzinfo` subclasses, this expression " -"yields the time zone's \"standard offset\", which should not depend on the " -"date or the time, but only on geographic location. The implementation " -"of :meth:`datetime.astimezone` relies on this, but cannot detect violations; " -"it's the programmer's responsibility to ensure it. If a :class:`!tzinfo` " -"subclass cannot guarantee this, it may be able to override the default " -"implementation of :meth:`tzinfo.fromutc` to work correctly " -"with :meth:`~.datetime.astimezone` regardless." -msgstr "" - -#: ../../library/datetime.rst:2219 -msgid "" -"Most implementations of :meth:`dst` will probably look like one of these " -"two::" +msgid "must return the same result for every :class:`.datetime` *dt* with ``dt.tzinfo == tz``. For sane :class:`!tzinfo` subclasses, this expression yields the time zone's \"standard offset\", which should not depend on the date or the time, but only on geographic location. The implementation of :meth:`datetime.astimezone` relies on this, but cannot detect violations; it's the programmer's responsibility to ensure it. If a :class:`!tzinfo` subclass cannot guarantee this, it may be able to override the default implementation of :meth:`tzinfo.fromutc` to work correctly with :meth:`~.datetime.astimezone` regardless." +msgstr "" + +msgid "Most implementations of :meth:`dst` will probably look like one of these two::" msgstr "" -#: ../../library/datetime.rst:2221 msgid "" "import datetime as dt\n" "\n" @@ -2905,11 +1750,9 @@ msgid "" " return dt.timedelta(0)" msgstr "" -#: ../../library/datetime.rst:2227 msgid "or::" msgstr "" -#: ../../library/datetime.rst:2229 msgid "" "import datetime as dt\n" "\n" @@ -2924,97 +1767,36 @@ msgid "" " return dt.timedelta(0)" msgstr "" -#: ../../library/datetime.rst:2241 -msgid "" -"The default implementation of :meth:`dst` raises :exc:`NotImplementedError`." +msgid "The default implementation of :meth:`dst` raises :exc:`NotImplementedError`." msgstr "" -#: ../../library/datetime.rst:2249 -msgid "" -"Return the time zone name corresponding to the :class:`.datetime` object " -"*dt*, as a string. Nothing about string names is defined by the :mod:`!" -"datetime` module, and there's no requirement that it mean anything in " -"particular. For example, ``\"GMT\"``, ``\"UTC\"``, ``\"-500\"``, " -"``\"-5:00\"``, ``\"EDT\"``, ``\"US/Eastern\"``, ``\"America/New York\"`` are " -"all valid replies. Return ``None`` if a string name isn't known. Note that " -"this is a method rather than a fixed string primarily because " -"some :class:`tzinfo` subclasses will wish to return different names " -"depending on the specific value of *dt* passed, especially if the :class:`!" -"tzinfo` class is accounting for daylight time." -msgstr "" - -#: ../../library/datetime.rst:2259 -msgid "" -"The default implementation of :meth:`tzname` " -"raises :exc:`NotImplementedError`." +msgid "Return the time zone name corresponding to the :class:`.datetime` object *dt*, as a string. Nothing about string names is defined by the :mod:`!datetime` module, and there's no requirement that it mean anything in particular. For example, ``\"GMT\"``, ``\"UTC\"``, ``\"-500\"``, ``\"-5:00\"``, ``\"EDT\"``, ``\"US/Eastern\"``, ``\"America/New York\"`` are all valid replies. Return ``None`` if a string name isn't known. Note that this is a method rather than a fixed string primarily because some :class:`tzinfo` subclasses will wish to return different names depending on the specific value of *dt* passed, especially if the :class:`!tzinfo` class is accounting for daylight time." msgstr "" -#: ../../library/datetime.rst:2262 -msgid "" -"These methods are called by a :class:`.datetime` or :class:`.time` object, " -"in response to their methods of the same names. A :class:`!datetime` object " -"passes itself as the argument, and a :class:`!time` object passes ``None`` " -"as the argument. A :class:`tzinfo` subclass's methods should therefore be " -"prepared to accept a *dt* argument of ``None``, or of class :class:`!" -"datetime`." +msgid "The default implementation of :meth:`tzname` raises :exc:`NotImplementedError`." msgstr "" -#: ../../library/datetime.rst:2268 -msgid "" -"When ``None`` is passed, it's up to the class designer to decide the best " -"response. For example, returning ``None`` is appropriate if the class wishes " -"to say that time objects don't participate in the :class:`tzinfo` protocols. " -"It may be more useful for ``utcoffset(None)`` to return the standard UTC " -"offset, as there is no other convention for discovering the standard offset." +msgid "These methods are called by a :class:`.datetime` or :class:`.time` object, in response to their methods of the same names. A :class:`!datetime` object passes itself as the argument, and a :class:`!time` object passes ``None`` as the argument. A :class:`tzinfo` subclass's methods should therefore be prepared to accept a *dt* argument of ``None``, or of class :class:`!datetime`." msgstr "" -#: ../../library/datetime.rst:2274 -msgid "" -"When a :class:`.datetime` object is passed in response to a :class:`!" -"datetime` method, ``dt.tzinfo`` is the same object as " -"*self*. :class:`tzinfo` methods can rely on this, unless user code " -"calls :class:`!tzinfo` methods directly. The intent is that the :class:`!" -"tzinfo` methods interpret *dt* as being in local time, and not need worry " -"about objects in other time zones." +msgid "When ``None`` is passed, it's up to the class designer to decide the best response. For example, returning ``None`` is appropriate if the class wishes to say that time objects don't participate in the :class:`tzinfo` protocols. It may be more useful for ``utcoffset(None)`` to return the standard UTC offset, as there is no other convention for discovering the standard offset." msgstr "" -#: ../../library/datetime.rst:2280 -msgid "" -"There is one more :class:`tzinfo` method that a subclass may wish to " -"override:" +msgid "When a :class:`.datetime` object is passed in response to a :class:`!datetime` method, ``dt.tzinfo`` is the same object as *self*. :class:`tzinfo` methods can rely on this, unless user code calls :class:`!tzinfo` methods directly. The intent is that the :class:`!tzinfo` methods interpret *dt* as being in local time, and not need worry about objects in other time zones." msgstr "" -#: ../../library/datetime.rst:2285 -msgid "" -"This is called from the default :meth:`datetime.astimezone` implementation. " -"When called from that, ``dt.tzinfo`` is *self*, and *dt*'s date and time " -"data are to be viewed as expressing a UTC time. The purpose " -"of :meth:`fromutc` is to adjust the date and time data, returning an " -"equivalent datetime in *self*'s local time." +msgid "There is one more :class:`tzinfo` method that a subclass may wish to override:" msgstr "" -#: ../../library/datetime.rst:2291 -msgid "" -"Most :class:`tzinfo` subclasses should be able to inherit the " -"default :meth:`fromutc` implementation without problems. It's strong enough " -"to handle fixed-offset time zones, and time zones accounting for both " -"standard and daylight time, and the latter even if the DST transition times " -"differ in different years. An example of a time zone the " -"default :meth:`fromutc` implementation may not handle correctly in all cases " -"is one where the standard offset (from UTC) depends on the specific date and " -"time passed, which can happen for political reasons. The default " -"implementations of :meth:`~.datetime.astimezone` and :meth:`fromutc` may not " -"produce the result you want if the result is one of the hours straddling the " -"moment the standard offset changes." -msgstr "" - -#: ../../library/datetime.rst:2302 -msgid "" -"Skipping code for error cases, the default :meth:`fromutc` implementation " -"acts like::" +msgid "This is called from the default :meth:`datetime.astimezone` implementation. When called from that, ``dt.tzinfo`` is *self*, and *dt*'s date and time data are to be viewed as expressing a UTC time. The purpose of :meth:`fromutc` is to adjust the date and time data, returning an equivalent datetime in *self*'s local time." +msgstr "" + +msgid "Most :class:`tzinfo` subclasses should be able to inherit the default :meth:`fromutc` implementation without problems. It's strong enough to handle fixed-offset time zones, and time zones accounting for both standard and daylight time, and the latter even if the DST transition times differ in different years. An example of a time zone the default :meth:`fromutc` implementation may not handle correctly in all cases is one where the standard offset (from UTC) depends on the specific date and time passed, which can happen for political reasons. The default implementations of :meth:`~.datetime.astimezone` and :meth:`fromutc` may not produce the result you want if the result is one of the hours straddling the moment the standard offset changes." +msgstr "" + +msgid "Skipping code for error cases, the default :meth:`fromutc` implementation acts like::" msgstr "" -#: ../../library/datetime.rst:2305 msgid "" "import datetime as dt\n" "\n" @@ -3034,13 +1816,9 @@ msgid "" " return when" msgstr "" -#: ../../library/datetime.rst:2322 -msgid "" -"In the following :download:`tzinfo_examples.py <../includes/" -"tzinfo_examples.py>` file there are some examples of :class:`tzinfo` classes:" +msgid "In the following :download:`tzinfo_examples.py <../includes/tzinfo_examples.py>` file there are some examples of :class:`tzinfo` classes:" msgstr "" -#: ../../library/datetime.rst:2326 msgid "" "import datetime as dt\n" "\n" @@ -3130,8 +1908,7 @@ msgid "" "DSTSTART_1987_2006 = dt.datetime(1, 4, 1, 2)\n" "DSTEND_1987_2006 = dt.datetime(1, 10, 25, 2)\n" "# From 1967 to 1986, DST used to start at 2am (standard time) on the last\n" -"# Sunday in April (the one on or after April 24) and to end at 2am (DST " -"time)\n" +"# Sunday in April (the one on or after April 24) and to end at 2am (DST time)\n" "# on the last Sunday of October, which is the first Sunday\n" "# on or after Oct 25.\n" "DSTSTART_1967_1986 = dt.datetime(1, 4, 24, 2)\n" @@ -3223,16 +2000,9 @@ msgid "" "Pacific = USTimeZone(-8, \"Pacific\", \"PST\", \"PDT\")\n" msgstr "" -#: ../../library/datetime.rst:2328 -msgid "" -"Note that there are unavoidable subtleties twice per year in " -"a :class:`tzinfo` subclass accounting for both standard and daylight time, " -"at the DST transition points. For concreteness, consider US Eastern (UTC " -"-0500), where EDT begins the minute after 1:59 (EST) on the second Sunday in " -"March, and ends the minute after 1:59 (EDT) on the first Sunday in November::" +msgid "Note that there are unavoidable subtleties twice per year in a :class:`tzinfo` subclass accounting for both standard and daylight time, at the DST transition points. For concreteness, consider US Eastern (UTC -0500), where EDT begins the minute after 1:59 (EST) on the second Sunday in March, and ends the minute after 1:59 (EDT) on the first Sunday in November::" msgstr "" -#: ../../library/datetime.rst:2334 msgid "" " UTC 3:MM 4:MM 5:MM 6:MM 7:MM 8:MM\n" " EST 22:MM 23:MM 0:MM 1:MM 2:MM 3:MM\n" @@ -3243,16 +2013,9 @@ msgid "" " end 23:MM 0:MM 1:MM 1:MM 2:MM 3:MM" msgstr "" -#: ../../library/datetime.rst:2342 -msgid "" -"When DST starts (the \"start\" line), the local wall clock leaps from 1:59 " -"to 3:00. A wall time of the form 2:MM doesn't really make sense on that day, " -"so ``astimezone(Eastern)`` won't deliver a result with ``hour == 2`` on the " -"day DST begins. For example, at the Spring forward transition of 2016, we " -"get::" +msgid "When DST starts (the \"start\" line), the local wall clock leaps from 1:59 to 3:00. A wall time of the form 2:MM doesn't really make sense on that day, so ``astimezone(Eastern)`` won't deliver a result with ``hour == 2`` on the day DST begins. For example, at the Spring forward transition of 2016, we get::" msgstr "" -#: ../../library/datetime.rst:2347 msgid "" ">>> import datetime as dt\n" ">>> from tzinfo_examples import HOUR, Eastern\n" @@ -3268,22 +2031,9 @@ msgid "" "08:00:00 UTC = 04:00:00 EDT" msgstr "" -#: ../../library/datetime.rst:2361 -msgid "" -"When DST ends (the \"end\" line), there's a potentially worse problem: " -"there's an hour that can't be spelled unambiguously in local wall time: the " -"last hour of daylight time. In Eastern, that's times of the form 5:MM UTC on " -"the day daylight time ends. The local wall clock leaps from 1:59 (daylight " -"time) back to 1:00 (standard time) again. Local times of the form 1:MM are " -"ambiguous. :meth:`~.datetime.astimezone` mimics the local clock's behavior " -"by mapping two adjacent UTC hours into the same local hour then. In the " -"Eastern example, UTC times of the form 5:MM and 6:MM both map to 1:MM when " -"converted to Eastern, but earlier times have the :attr:`~.datetime.fold` " -"attribute set to 0 and the later times have it set to 1. For example, at the " -"Fall back transition of 2016, we get::" -msgstr "" - -#: ../../library/datetime.rst:2372 +msgid "When DST ends (the \"end\" line), there's a potentially worse problem: there's an hour that can't be spelled unambiguously in local wall time: the last hour of daylight time. In Eastern, that's times of the form 5:MM UTC on the day daylight time ends. The local wall clock leaps from 1:59 (daylight time) back to 1:00 (standard time) again. Local times of the form 1:MM are ambiguous. :meth:`~.datetime.astimezone` mimics the local clock's behavior by mapping two adjacent UTC hours into the same local hour then. In the Eastern example, UTC times of the form 5:MM and 6:MM both map to 1:MM when converted to Eastern, but earlier times have the :attr:`~.datetime.fold` attribute set to 0 and the later times have it set to 1. For example, at the Fall back transition of 2016, we get::" +msgstr "" + msgid "" ">>> import datetime as dt\n" ">>> from tzinfo_examples import HOUR, Eastern\n" @@ -3299,203 +2049,114 @@ msgid "" "07:00:00 UTC = 02:00:00 EST 0" msgstr "" -#: ../../library/datetime.rst:2385 -msgid "" -"Note that the :class:`.datetime` instances that differ only by the value of " -"the :attr:`~.datetime.fold` attribute are considered equal in comparisons." +msgid "Note that the :class:`.datetime` instances that differ only by the value of the :attr:`~.datetime.fold` attribute are considered equal in comparisons." msgstr "" -#: ../../library/datetime.rst:2388 -msgid "" -"Applications that can't bear wall-time ambiguities should explicitly check " -"the value of the :attr:`~.datetime.fold` attribute or avoid using " -"hybrid :class:`tzinfo` subclasses; there are no ambiguities when " -"using :class:`timezone`, or any other fixed-offset :class:`!tzinfo` subclass " -"(such as a class representing only EST (fixed offset -5 hours), or only EDT " -"(fixed offset -4 hours))." +msgid "Applications that can't bear wall-time ambiguities should explicitly check the value of the :attr:`~.datetime.fold` attribute or avoid using hybrid :class:`tzinfo` subclasses; there are no ambiguities when using :class:`timezone`, or any other fixed-offset :class:`!tzinfo` subclass (such as a class representing only EST (fixed offset -5 hours), or only EDT (fixed offset -4 hours))." msgstr "" -#: ../../library/datetime.rst:2396 msgid ":mod:`zoneinfo`" msgstr "" -#: ../../library/datetime.rst:2397 -msgid "" -"The :mod:`!datetime` module has a basic :class:`timezone` class (for " -"handling arbitrary fixed offsets from UTC) and its :attr:`timezone.utc` " -"attribute (a UTC :class:`!timezone` instance)." +msgid "The :mod:`!datetime` module has a basic :class:`timezone` class (for handling arbitrary fixed offsets from UTC) and its :attr:`timezone.utc` attribute (a UTC :class:`!timezone` instance)." msgstr "" -#: ../../library/datetime.rst:2401 -msgid "" -"``zoneinfo`` brings the *IANA time zone database* (also known as the Olson " -"database) to Python, and its usage is recommended." +msgid "``zoneinfo`` brings the *IANA time zone database* (also known as the Olson database) to Python, and its usage is recommended." msgstr "" -#: ../../library/datetime.rst:2404 msgid "`IANA time zone database `_" msgstr "" -#: ../../library/datetime.rst:2405 -msgid "" -"The Time Zone Database (often called tz, tzdata or zoneinfo) contains code " -"and data that represent the history of local time for many representative " -"locations around the globe. It is updated periodically to reflect changes " -"made by political bodies to time zone boundaries, UTC offsets, and daylight-" -"saving rules." +msgid "The Time Zone Database (often called tz, tzdata or zoneinfo) contains code and data that represent the history of local time for many representative locations around the globe. It is updated periodically to reflect changes made by political bodies to time zone boundaries, UTC offsets, and daylight-saving rules." msgstr "" -#: ../../library/datetime.rst:2415 msgid ":class:`!timezone` objects" msgstr "" -#: ../../library/datetime.rst:2417 -msgid "" -"The :class:`timezone` class is a subclass of :class:`tzinfo`, each instance " -"of which represents a time zone defined by a fixed offset from UTC." +msgid "The :class:`timezone` class is a subclass of :class:`tzinfo`, each instance of which represents a time zone defined by a fixed offset from UTC." msgstr "" -#: ../../library/datetime.rst:2421 -msgid "" -"Objects of this class cannot be used to represent time zone information in " -"the locations where different offsets are used in different days of the year " -"or where historical changes have been made to civil time." +msgid "Objects of this class cannot be used to represent time zone information in the locations where different offsets are used in different days of the year or where historical changes have been made to civil time." msgstr "" -#: ../../library/datetime.rst:2428 -msgid "" -"The *offset* argument must be specified as a :class:`timedelta` object " -"representing the difference between the local time and UTC. It must be " -"strictly between ``-timedelta(hours=24)`` and ``timedelta(hours=24)``, " -"otherwise :exc:`ValueError` is raised." +msgid "The *offset* argument must be specified as a :class:`timedelta` object representing the difference between the local time and UTC. It must be strictly between ``-timedelta(hours=24)`` and ``timedelta(hours=24)``, otherwise :exc:`ValueError` is raised." msgstr "" -#: ../../library/datetime.rst:2433 -msgid "" -"The *name* argument is optional. If specified it must be a string that will " -"be used as the value returned by the :meth:`datetime.tzname` method." +msgid "The *name* argument is optional. If specified it must be a string that will be used as the value returned by the :meth:`datetime.tzname` method." msgstr "" -#: ../../library/datetime.rst:2444 ../../library/datetime.rst:2456 -msgid "" -"Return the fixed value specified when the :class:`timezone` instance is " -"constructed." +msgid "Return the fixed value specified when the :class:`timezone` instance is constructed." msgstr "" -#: ../../library/datetime.rst:2447 -msgid "" -"The *dt* argument is ignored. The return value is a :class:`timedelta` " -"instance equal to the difference between the local time and UTC." +msgid "The *dt* argument is ignored. The return value is a :class:`timedelta` instance equal to the difference between the local time and UTC." msgstr "" -#: ../../library/datetime.rst:2459 -msgid "" -"If *name* is not provided in the constructor, the name returned by " -"``tzname(dt)`` is generated from the value of the ``offset`` as follows. If " -"*offset* is ``timedelta(0)``, the name is \"UTC\", otherwise it is a string " -"in the format ``UTC±HH:MM``, where ± is the sign of ``offset``, HH and MM " -"are two digits of ``offset.hours`` and ``offset.minutes`` respectively." +msgid "If *name* is not provided in the constructor, the name returned by ``tzname(dt)`` is generated from the value of the ``offset`` as follows. If *offset* is ``timedelta(0)``, the name is \"UTC\", otherwise it is a string in the format ``UTC±HH:MM``, where ± is the sign of ``offset``, HH and MM are two digits of ``offset.hours`` and ``offset.minutes`` respectively." msgstr "" -#: ../../library/datetime.rst:2465 -msgid "" -"Name generated from ``offset=timedelta(0)`` is now plain ``'UTC'``, not " -"``'UTC+00:00'``." +msgid "Name generated from ``offset=timedelta(0)`` is now plain ``'UTC'``, not ``'UTC+00:00'``." msgstr "" -#: ../../library/datetime.rst:2472 msgid "Always returns ``None``." msgstr "" -#: ../../library/datetime.rst:2477 -msgid "" -"Return ``dt + offset``. The *dt* argument must be an " -"aware :class:`.datetime` instance, with ``tzinfo`` set to ``self``." +msgid "Return ``dt + offset``. The *dt* argument must be an aware :class:`.datetime` instance, with ``tzinfo`` set to ``self``." msgstr "" -#: ../../library/datetime.rst:2485 msgid "The UTC time zone, ``timezone(timedelta(0))``." msgstr "" -#: ../../library/datetime.rst:2494 msgid ":meth:`!strftime` and :meth:`!strptime` behavior" msgstr "" -#: ../../library/datetime.rst:2496 -msgid "" -":class:`date`, :class:`.datetime`, and :class:`.time` objects all support a " -"``strftime(format)`` method, to create a string representing the time under " -"the control of an explicit format string." +msgid ":class:`date`, :class:`.datetime`, and :class:`.time` objects all support a ``strftime(format)`` method, to create a string representing the time under the control of an explicit format string." msgstr "" -#: ../../library/datetime.rst:2500 -msgid "" -"Conversely, the :meth:`date.strptime`, :meth:`datetime.strptime` " -"and :meth:`time.strptime` class methods create an object from a string " -"representing the time and a corresponding format string." +msgid "Conversely, the :meth:`date.strptime`, :meth:`datetime.strptime` and :meth:`time.strptime` class methods create an object from a string representing the time and a corresponding format string." msgstr "" -#: ../../library/datetime.rst:2504 -msgid "" -"The table below provides a high-level comparison " -"of :meth:`~.datetime.strftime` versus :meth:`~.datetime.strptime`:" +msgid "The table below provides a high-level comparison of :meth:`~.datetime.strftime` versus :meth:`~.datetime.strptime`:" msgstr "" -#: ../../library/datetime.rst:2508 msgid "``strftime``" msgstr "" -#: ../../library/datetime.rst:2508 msgid "``strptime``" msgstr "" -#: ../../library/datetime.rst:2510 msgid "Usage" msgstr "" -#: ../../library/datetime.rst:2510 msgid "Convert object to a string according to a given format" msgstr "" -#: ../../library/datetime.rst:2510 msgid "Parse a string into an object given a corresponding format" msgstr "" -#: ../../library/datetime.rst:2512 msgid "Type of method" msgstr "" -#: ../../library/datetime.rst:2512 msgid "Instance method" msgstr "" -#: ../../library/datetime.rst:2512 msgid "Class method" msgstr "" -#: ../../library/datetime.rst:2514 msgid "Signature" msgstr "" -#: ../../library/datetime.rst:2514 msgid "``strftime(format)``" msgstr "" -#: ../../library/datetime.rst:2514 msgid "``strptime(date_string, format)``" msgstr "" -#: ../../library/datetime.rst:2521 msgid ":meth:`!strftime` and :meth:`!strptime` format codes" msgstr "" -#: ../../library/datetime.rst:2523 -msgid "" -"These methods accept format codes that can be used to parse and format " -"dates::" +msgid "These methods accept format codes that can be used to parse and format dates::" msgstr "" -#: ../../library/datetime.rst:2525 msgid "" ">>> import datetime as dt\n" ">>> dt.datetime.strptime('31/01/22 23:59:59.999999',\n" @@ -3505,502 +2166,342 @@ msgid "" "'Mon 31 Jan 2022, 11:59PM'" msgstr "" -#: ../../library/datetime.rst:2532 -msgid "" -"The following is a list of all the format codes that the 1989 C standard " -"requires, and these work on all platforms with a standard C implementation." +msgid "The following is a list of all the format codes that the 1989 C standard requires, and these work on all platforms with a standard C implementation." msgstr "" -#: ../../library/datetime.rst:2536 ../../library/datetime.rst:2639 msgid "Directive" msgstr "" -#: ../../library/datetime.rst:2536 ../../library/datetime.rst:2639 msgid "Meaning" msgstr "" -#: ../../library/datetime.rst:2536 ../../library/datetime.rst:2639 msgid "Example" msgstr "" -#: ../../library/datetime.rst:2536 ../../library/datetime.rst:2639 msgid "Notes" msgstr "" -#: ../../library/datetime.rst:2538 msgid "``%a``" msgstr "" -#: ../../library/datetime.rst:2538 msgid "Weekday as locale's abbreviated name." msgstr "" -#: ../../library/datetime.rst:0 msgid "Sun, Mon, ..., Sat (en_US);" msgstr "" -#: ../../library/datetime.rst:0 msgid "So, Mo, ..., Sa (de_DE)" msgstr "" -#: ../../library/datetime.rst:2543 msgid "``%A``" msgstr "" -#: ../../library/datetime.rst:2543 msgid "Weekday as locale's full name." msgstr "" -#: ../../library/datetime.rst:0 msgid "Sunday, Monday, ..., Saturday (en_US);" msgstr "" -#: ../../library/datetime.rst:0 msgid "Sonntag, Montag, ..., Samstag (de_DE)" msgstr "" -#: ../../library/datetime.rst:2548 msgid "``%w``" msgstr "" -#: ../../library/datetime.rst:2548 msgid "Weekday as a decimal number, where 0 is Sunday and 6 is Saturday." msgstr "" -#: ../../library/datetime.rst:2548 msgid "0, 1, ..., 6" msgstr "" -#: ../../library/datetime.rst:2552 msgid "``%d``" msgstr "" -#: ../../library/datetime.rst:2552 msgid "Day of the month as a zero-padded decimal number." msgstr "" -#: ../../library/datetime.rst:2552 msgid "01, 02, ..., 31" msgstr "" -#: ../../library/datetime.rst:2552 ../../library/datetime.rst:2565 -#: ../../library/datetime.rst:2568 ../../library/datetime.rst:2574 -#: ../../library/datetime.rst:2577 ../../library/datetime.rst:2583 -#: ../../library/datetime.rst:2601 msgid "\\(9)" msgstr "" -#: ../../library/datetime.rst:2555 msgid "``%b``" msgstr "" -#: ../../library/datetime.rst:2555 msgid "Month as locale's abbreviated name." msgstr "" -#: ../../library/datetime.rst:0 msgid "Jan, Feb, ..., Dec (en_US);" msgstr "" -#: ../../library/datetime.rst:0 msgid "Jan, Feb, ..., Dez (de_DE)" msgstr "" -#: ../../library/datetime.rst:2560 msgid "``%B``" msgstr "" -#: ../../library/datetime.rst:2560 msgid "Month as locale's full name." msgstr "" -#: ../../library/datetime.rst:0 msgid "January, February, ..., December (en_US);" msgstr "" -#: ../../library/datetime.rst:0 msgid "Januar, Februar, ..., Dezember (de_DE)" msgstr "" -#: ../../library/datetime.rst:2565 msgid "``%m``" msgstr "" -#: ../../library/datetime.rst:2565 msgid "Month as a zero-padded decimal number." msgstr "" -#: ../../library/datetime.rst:2565 ../../library/datetime.rst:2577 msgid "01, 02, ..., 12" msgstr "" -#: ../../library/datetime.rst:2568 msgid "``%y``" msgstr "" -#: ../../library/datetime.rst:2568 msgid "Year without century as a zero-padded decimal number." msgstr "" -#: ../../library/datetime.rst:2568 msgid "00, 01, ..., 99" msgstr "" -#: ../../library/datetime.rst:2571 msgid "``%Y``" msgstr "" -#: ../../library/datetime.rst:2571 msgid "Year with century as a decimal number." msgstr "" -#: ../../library/datetime.rst:2571 ../../library/datetime.rst:2641 msgid "0001, 0002, ..., 2013, 2014, ..., 9998, 9999" msgstr "" -#: ../../library/datetime.rst:2574 msgid "``%H``" msgstr "" -#: ../../library/datetime.rst:2574 msgid "Hour (24-hour clock) as a zero-padded decimal number." msgstr "" -#: ../../library/datetime.rst:2574 msgid "00, 01, ..., 23" msgstr "" -#: ../../library/datetime.rst:2577 msgid "``%I``" msgstr "" -#: ../../library/datetime.rst:2577 msgid "Hour (12-hour clock) as a zero-padded decimal number." msgstr "" -#: ../../library/datetime.rst:2580 msgid "``%p``" msgstr "" -#: ../../library/datetime.rst:2580 msgid "Locale's equivalent of either AM or PM." msgstr "" -#: ../../library/datetime.rst:0 msgid "AM, PM (en_US);" msgstr "" -#: ../../library/datetime.rst:0 msgid "am, pm (de_DE)" msgstr "" -#: ../../library/datetime.rst:2580 msgid "\\(1), \\(3)" msgstr "" -#: ../../library/datetime.rst:2583 msgid "``%M``" msgstr "" -#: ../../library/datetime.rst:2583 msgid "Minute as a zero-padded decimal number." msgstr "" -#: ../../library/datetime.rst:2583 ../../library/datetime.rst:2586 msgid "00, 01, ..., 59" msgstr "" -#: ../../library/datetime.rst:2586 msgid "``%S``" msgstr "" -#: ../../library/datetime.rst:2586 msgid "Second as a zero-padded decimal number." msgstr "" -#: ../../library/datetime.rst:2586 msgid "\\(4), \\(9)" msgstr "" -#: ../../library/datetime.rst:2589 msgid "``%f``" msgstr "" -#: ../../library/datetime.rst:2589 msgid "Microsecond as a decimal number, zero-padded to 6 digits." msgstr "" -#: ../../library/datetime.rst:2589 msgid "000000, 000001, ..., 999999" msgstr "" -#: ../../library/datetime.rst:2589 msgid "\\(5)" msgstr "" -#: ../../library/datetime.rst:2593 ../../library/datetime.rst:2791 msgid "``%z``" msgstr "" -#: ../../library/datetime.rst:2593 -msgid "" -"UTC offset in the form ``±HHMM[SS[.ffffff]]`` (empty string if the object is " -"naive)." +msgid "UTC offset in the form ``±HHMM[SS[.ffffff]]`` (empty string if the object is naive)." msgstr "" -#: ../../library/datetime.rst:2593 msgid "(empty), +0000, -0400, +1030, +063415, -030712.345216" msgstr "" -#: ../../library/datetime.rst:2593 ../../library/datetime.rst:2598 -#: ../../library/datetime.rst:2655 msgid "\\(6)" msgstr "" -#: ../../library/datetime.rst:2598 ../../library/datetime.rst:2817 msgid "``%Z``" msgstr "" -#: ../../library/datetime.rst:2598 msgid "Time zone name (empty string if the object is naive)." msgstr "" -#: ../../library/datetime.rst:2598 msgid "(empty), UTC, GMT" msgstr "" -#: ../../library/datetime.rst:2601 msgid "``%j``" msgstr "" -#: ../../library/datetime.rst:2601 msgid "Day of the year as a zero-padded decimal number." msgstr "" -#: ../../library/datetime.rst:2601 msgid "001, 002, ..., 366" msgstr "" -#: ../../library/datetime.rst:2604 msgid "``%U``" msgstr "" -#: ../../library/datetime.rst:2604 -msgid "" -"Week number of the year (Sunday as the first day of the week) as a zero-" -"padded decimal number. All days in a new year preceding the first Sunday are " -"considered to be in week 0." +msgid "Week number of the year (Sunday as the first day of the week) as a zero-padded decimal number. All days in a new year preceding the first Sunday are considered to be in week 0." msgstr "" -#: ../../library/datetime.rst:2604 ../../library/datetime.rst:2612 msgid "00, 01, ..., 53" msgstr "" -#: ../../library/datetime.rst:2604 ../../library/datetime.rst:2612 msgid "\\(7), \\(9)" msgstr "" -#: ../../library/datetime.rst:2612 msgid "``%W``" msgstr "" -#: ../../library/datetime.rst:2612 -msgid "" -"Week number of the year (Monday as the first day of the week) as a zero-" -"padded decimal number. All days in a new year preceding the first Monday are " -"considered to be in week 0." +msgid "Week number of the year (Monday as the first day of the week) as a zero-padded decimal number. All days in a new year preceding the first Monday are considered to be in week 0." msgstr "" -#: ../../library/datetime.rst:2620 msgid "``%c``" msgstr "" -#: ../../library/datetime.rst:2620 msgid "Locale's appropriate date and time representation." msgstr "" -#: ../../library/datetime.rst:0 msgid "Tue Aug 16 21:30:00 1988 (en_US);" msgstr "" -#: ../../library/datetime.rst:0 msgid "Di 16 Aug 21:30:00 1988 (de_DE)" msgstr "" -#: ../../library/datetime.rst:2625 msgid "``%x``" msgstr "" -#: ../../library/datetime.rst:2625 msgid "Locale's appropriate date representation." msgstr "" -#: ../../library/datetime.rst:0 msgid "08/16/88 (None);" msgstr "" -#: ../../library/datetime.rst:0 msgid "08/16/1988 (en_US);" msgstr "" -#: ../../library/datetime.rst:0 msgid "16.08.1988 (de_DE)" msgstr "" -#: ../../library/datetime.rst:2629 msgid "``%X``" msgstr "" -#: ../../library/datetime.rst:2629 msgid "Locale's appropriate time representation." msgstr "" -#: ../../library/datetime.rst:0 msgid "21:30:00 (en_US);" msgstr "" -#: ../../library/datetime.rst:0 msgid "21:30:00 (de_DE)" msgstr "" -#: ../../library/datetime.rst:2632 msgid "``%%``" msgstr "" -#: ../../library/datetime.rst:2632 msgid "A literal ``'%'`` character." msgstr "" -#: ../../library/datetime.rst:2632 msgid "%" msgstr "" -#: ../../library/datetime.rst:2635 -msgid "" -"Several additional directives not required by the C89 standard are included " -"for convenience. These parameters all correspond to ISO 8601 date values." +msgid "Several additional directives not required by the C89 standard are included for convenience. These parameters all correspond to ISO 8601 date values." msgstr "" -#: ../../library/datetime.rst:2641 msgid "``%G``" msgstr "" -#: ../../library/datetime.rst:2641 -msgid "" -"ISO 8601 year with century representing the year that contains the greater " -"part of the ISO week (``%V``)." +msgid "ISO 8601 year with century representing the year that contains the greater part of the ISO week (``%V``)." msgstr "" -#: ../../library/datetime.rst:2641 msgid "\\(8)" msgstr "" -#: ../../library/datetime.rst:2646 msgid "``%u``" msgstr "" -#: ../../library/datetime.rst:2646 msgid "ISO 8601 weekday as a decimal number where 1 is Monday." msgstr "" -#: ../../library/datetime.rst:2646 msgid "1, 2, ..., 7" msgstr "" -#: ../../library/datetime.rst:2649 msgid "``%V``" msgstr "" -#: ../../library/datetime.rst:2649 -msgid "" -"ISO 8601 week as a decimal number with Monday as the first day of the week. " -"Week 01 is the week containing Jan 4." +msgid "ISO 8601 week as a decimal number with Monday as the first day of the week. Week 01 is the week containing Jan 4." msgstr "" -#: ../../library/datetime.rst:2649 msgid "01, 02, ..., 53" msgstr "" -#: ../../library/datetime.rst:2649 msgid "\\(8), \\(9)" msgstr "" -#: ../../library/datetime.rst:2655 ../../library/datetime.rst:2813 msgid "``%:z``" msgstr "" -#: ../../library/datetime.rst:2655 -msgid "" -"UTC offset in the form ``±HH:MM[:SS[.ffffff]]`` (empty string if the object " -"is naive)." +msgid "UTC offset in the form ``±HH:MM[:SS[.ffffff]]`` (empty string if the object is naive)." msgstr "" -#: ../../library/datetime.rst:2655 msgid "(empty), +00:00, -04:00, +10:30, +06:34:15, -03:07:12.345216" msgstr "" -#: ../../library/datetime.rst:2661 -msgid "" -"These may not be available on all platforms when used with " -"the :meth:`~.datetime.strftime` method. The ISO 8601 year and ISO 8601 week " -"directives are not interchangeable with the year and week number directives " -"above. Calling :meth:`~.datetime.strptime` with incomplete or ambiguous ISO " -"8601 directives will raise a :exc:`ValueError`." +msgid "These may not be available on all platforms when used with the :meth:`~.datetime.strftime` method. The ISO 8601 year and ISO 8601 week directives are not interchangeable with the year and week number directives above. Calling :meth:`~.datetime.strptime` with incomplete or ambiguous ISO 8601 directives will raise a :exc:`ValueError`." msgstr "" -#: ../../library/datetime.rst:2666 -msgid "" -"The full set of format codes supported varies across platforms, because " -"Python calls the platform C library's :c:func:`strftime` function, and " -"platform variations are common. To see the full set of format codes " -"supported on your platform, consult the :manpage:`strftime(3)` " -"documentation. There are also differences between platforms in handling of " -"unsupported format specifiers." +msgid "The full set of format codes supported varies across platforms, because Python calls the platform C library's :c:func:`strftime` function, and platform variations are common. To see the full set of format codes supported on your platform, consult the :manpage:`strftime(3)` documentation. There are also differences between platforms in handling of unsupported format specifiers." msgstr "" -#: ../../library/datetime.rst:2672 msgid "``%G``, ``%u`` and ``%V`` were added." msgstr "" -#: ../../library/datetime.rst:2675 msgid "``%:z`` was added." msgstr "" -#: ../../library/datetime.rst:2680 msgid "Technical detail" msgstr "" -#: ../../library/datetime.rst:2682 -msgid "" -"Broadly speaking, ``d.strftime(fmt)`` acts like the :mod:`time` module's " -"``time.strftime(fmt, d.timetuple())`` although not all objects support " -"a :meth:`~date.timetuple` method." +msgid "Broadly speaking, ``d.strftime(fmt)`` acts like the :mod:`time` module's ``time.strftime(fmt, d.timetuple())`` although not all objects support a :meth:`~date.timetuple` method." msgstr "" -#: ../../library/datetime.rst:2686 -msgid "" -"For the :meth:`.datetime.strptime` and :meth:`.date.strptime` class methods, " -"the default value is ``1900-01-01T00:00:00.000``: any components not " -"specified in the format string will be pulled from the default value." +msgid "For the :meth:`.datetime.strptime` and :meth:`.date.strptime` class methods, the default value is ``1900-01-01T00:00:00.000``: any components not specified in the format string will be pulled from the default value." msgstr "" -#: ../../library/datetime.rst:2691 -msgid "" -"Format strings without separators can be ambiguous for parsing. For example, " -"with ``%Y%m%d``, the string ``2026111`` may be parsed either as " -"``2026-11-01`` or as ``2026-01-11``. Use separators to ensure the input is " -"parsed as intended." +msgid "Format strings without separators can be ambiguous for parsing. For example, with ``%Y%m%d``, the string ``2026111`` may be parsed either as ``2026-11-01`` or as ``2026-01-11``. Use separators to ensure the input is parsed as intended." msgstr "" -#: ../../library/datetime.rst:2697 -msgid "" -"When used to parse partial dates lacking a year, :meth:`.datetime.strptime` " -"and :meth:`.date.strptime` will raise when encountering February 29 because " -"the default year of 1900 is *not* a leap year. Always add a default leap " -"year to partial date strings before parsing." +msgid "When used to parse partial dates lacking a year, :meth:`.datetime.strptime` and :meth:`.date.strptime` will raise when encountering February 29 because the default year of 1900 is *not* a leap year. Always add a default leap year to partial date strings before parsing." msgstr "" -#: ../../library/datetime.rst:2717 msgid "" ">>> import datetime as dt\n" ">>> value = \"2/29\"\n" @@ -4012,235 +2513,110 @@ msgid "" "datetime.datetime(1904, 2, 29, 0, 0)" msgstr "" -#: ../../library/datetime.rst:2728 msgid "Using ``datetime.strptime(date_string, format)`` is equivalent to::" msgstr "" -#: ../../library/datetime.rst:2732 -msgid "" -"except when the format includes sub-second components or time zone offset " -"information, which are supported in ``datetime.strptime`` but are discarded " -"by ``time.strptime``." +msgid "except when the format includes sub-second components or time zone offset information, which are supported in ``datetime.strptime`` but are discarded by ``time.strptime``." msgstr "" -#: ../../library/datetime.rst:2736 -msgid "" -"For :class:`.time` objects, the format codes for year, month, and day should " -"not be used, as :class:`!time` objects have no such values. If they're used " -"anyway, 1900 is substituted for the year, and 1 for the month and day." +msgid "For :class:`.time` objects, the format codes for year, month, and day should not be used, as :class:`!time` objects have no such values. If they're used anyway, 1900 is substituted for the year, and 1 for the month and day." msgstr "" -#: ../../library/datetime.rst:2740 -msgid "" -"For :class:`date` objects, the format codes for hours, minutes, seconds, and " -"microseconds should not be used, as :class:`date` objects have no such " -"values. If they're used anyway, 0 is substituted for them." +msgid "For :class:`date` objects, the format codes for hours, minutes, seconds, and microseconds should not be used, as :class:`date` objects have no such values. If they're used anyway, 0 is substituted for them." msgstr "" -#: ../../library/datetime.rst:2744 -msgid "" -"For the same reason, handling of format strings containing Unicode code " -"points that can't be represented in the charset of the current locale is " -"also platform-dependent. On some platforms such code points are preserved " -"intact in the output, while on others ``strftime`` may " -"raise :exc:`UnicodeError` or return an empty string instead." +msgid "For the same reason, handling of format strings containing Unicode code points that can't be represented in the charset of the current locale is also platform-dependent. On some platforms such code points are preserved intact in the output, while on others ``strftime`` may raise :exc:`UnicodeError` or return an empty string instead." msgstr "" -#: ../../library/datetime.rst:2753 -msgid "" -"Because the format depends on the current locale, care should be taken when " -"making assumptions about the output value. Field orderings will vary (for " -"example, \"month/day/year\" versus \"day/month/year\"), and the output may " -"contain non-ASCII characters." +msgid "Because the format depends on the current locale, care should be taken when making assumptions about the output value. Field orderings will vary (for example, \"month/day/year\" versus \"day/month/year\"), and the output may contain non-ASCII characters." msgstr "" -#: ../../library/datetime.rst:2759 -msgid "" -"The :meth:`~.datetime.strptime` method can parse years in the full [1, 9999] " -"range, but years < 1000 must be zero-filled to 4-digit width." +msgid "The :meth:`~.datetime.strptime` method can parse years in the full [1, 9999] range, but years < 1000 must be zero-filled to 4-digit width." msgstr "" -#: ../../library/datetime.rst:2762 -msgid "" -"In previous versions, :meth:`~.datetime.strftime` method was restricted to " -"years >= 1900." +msgid "In previous versions, :meth:`~.datetime.strftime` method was restricted to years >= 1900." msgstr "" -#: ../../library/datetime.rst:2766 -msgid "" -"In version 3.2, :meth:`~.datetime.strftime` method was restricted to years " -">= 1000." +msgid "In version 3.2, :meth:`~.datetime.strftime` method was restricted to years >= 1000." msgstr "" -#: ../../library/datetime.rst:2771 -msgid "" -"When used with the :meth:`~.datetime.strptime` method, the ``%p`` directive " -"only affects the output hour field if the ``%I`` directive is used to parse " -"the hour." +msgid "When used with the :meth:`~.datetime.strptime` method, the ``%p`` directive only affects the output hour field if the ``%I`` directive is used to parse the hour." msgstr "" -#: ../../library/datetime.rst:2775 -msgid "" -"Unlike the :mod:`time` module, the :mod:`!datetime` module does not support " -"leap seconds." +msgid "Unlike the :mod:`time` module, the :mod:`!datetime` module does not support leap seconds." msgstr "" -#: ../../library/datetime.rst:2779 -msgid "" -"When used with the :meth:`~.datetime.strptime` method, the ``%f`` directive " -"accepts from one to six digits and zero pads on the right. ``%f`` is an " -"extension to the set of format characters in the C standard (but implemented " -"separately in datetime objects, and therefore always available)." +msgid "When used with the :meth:`~.datetime.strptime` method, the ``%f`` directive accepts from one to six digits and zero pads on the right. ``%f`` is an extension to the set of format characters in the C standard (but implemented separately in datetime objects, and therefore always available)." msgstr "" -#: ../../library/datetime.rst:2786 -msgid "" -"For a naive object, the ``%z``, ``%:z`` and ``%Z`` format codes are replaced " -"by empty strings." +msgid "For a naive object, the ``%z``, ``%:z`` and ``%Z`` format codes are replaced by empty strings." msgstr "" -#: ../../library/datetime.rst:2789 msgid "For an aware object:" msgstr "" -#: ../../library/datetime.rst:2792 -msgid "" -":meth:`~.datetime.utcoffset` is transformed into a string of the form " -"``±HHMM[SS[.ffffff]]``, where ``HH`` is a 2-digit string giving the number " -"of UTC offset hours, ``MM`` is a 2-digit string giving the number of UTC " -"offset minutes, ``SS`` is a 2-digit string giving the number of UTC offset " -"seconds and ``ffffff`` is a 6-digit string giving the number of UTC offset " -"microseconds. The ``ffffff`` part is omitted when the offset is a whole " -"number of seconds and both the ``ffffff`` and the ``SS`` part is omitted " -"when the offset is a whole number of minutes. For example, " -"if :meth:`~.datetime.utcoffset` returns ``timedelta(hours=-3, " -"minutes=-30)``, ``%z`` is replaced with the string ``'-0330'``." -msgstr "" - -#: ../../library/datetime.rst:2806 -msgid "" -"When the ``%z`` directive is provided to the :meth:`~.datetime.strptime` " -"method, the UTC offsets can have a colon as a separator between hours, " -"minutes and seconds. For example, ``'+01:00:00'`` will be parsed as an " -"offset of one hour. In addition, providing ``'Z'`` is identical to " -"``'+00:00'``." +msgid ":meth:`~.datetime.utcoffset` is transformed into a string of the form ``±HHMM[SS[.ffffff]]``, where ``HH`` is a 2-digit string giving the number of UTC offset hours, ``MM`` is a 2-digit string giving the number of UTC offset minutes, ``SS`` is a 2-digit string giving the number of UTC offset seconds and ``ffffff`` is a 6-digit string giving the number of UTC offset microseconds. The ``ffffff`` part is omitted when the offset is a whole number of seconds and both the ``ffffff`` and the ``SS`` part is omitted when the offset is a whole number of minutes. For example, if :meth:`~.datetime.utcoffset` returns ``timedelta(hours=-3, minutes=-30)``, ``%z`` is replaced with the string ``'-0330'``." msgstr "" -#: ../../library/datetime.rst:2814 -msgid "" -"Behaves exactly as ``%z``, but has a colon separator added between hours, " -"minutes and seconds." +msgid "When the ``%z`` directive is provided to the :meth:`~.datetime.strptime` method, the UTC offsets can have a colon as a separator between hours, minutes and seconds. For example, ``'+01:00:00'`` will be parsed as an offset of one hour. In addition, providing ``'Z'`` is identical to ``'+00:00'``." msgstr "" -#: ../../library/datetime.rst:2818 -msgid "" -"In :meth:`~.datetime.strftime`, ``%Z`` is replaced by an empty string " -"if :meth:`~.datetime.tzname` returns ``None``; otherwise ``%Z`` is replaced " -"by the returned value, which must be a string." +msgid "Behaves exactly as ``%z``, but has a colon separator added between hours, minutes and seconds." +msgstr "" + +msgid "In :meth:`~.datetime.strftime`, ``%Z`` is replaced by an empty string if :meth:`~.datetime.tzname` returns ``None``; otherwise ``%Z`` is replaced by the returned value, which must be a string." msgstr "" -#: ../../library/datetime.rst:2822 msgid ":meth:`~.datetime.strptime` only accepts certain values for ``%Z``:" msgstr "" -#: ../../library/datetime.rst:2824 msgid "any value in ``time.tzname`` for your machine's locale" msgstr "" -#: ../../library/datetime.rst:2825 msgid "the hard-coded values ``UTC`` and ``GMT``" msgstr "" -#: ../../library/datetime.rst:2827 -msgid "" -"So someone living in Japan may have ``JST``, ``UTC``, and ``GMT`` as valid " -"values, but probably not ``EST``. It will raise ``ValueError`` for invalid " -"values." +msgid "So someone living in Japan may have ``JST``, ``UTC``, and ``GMT`` as valid values, but probably not ``EST``. It will raise ``ValueError`` for invalid values." msgstr "" -#: ../../library/datetime.rst:2831 -msgid "" -"When the ``%z`` directive is provided to the :meth:`~.datetime.strptime` " -"method, an aware :class:`.datetime` object will be produced. The ``tzinfo`` " -"of the result will be set to a :class:`timezone` instance." +msgid "When the ``%z`` directive is provided to the :meth:`~.datetime.strptime` method, an aware :class:`.datetime` object will be produced. The ``tzinfo`` of the result will be set to a :class:`timezone` instance." msgstr "" -#: ../../library/datetime.rst:2837 -msgid "" -"When used with the :meth:`~.datetime.strptime` method, ``%U`` and ``%W`` are " -"only used in calculations when the day of the week and the calendar year " -"(``%Y``) are specified." +msgid "When used with the :meth:`~.datetime.strptime` method, ``%U`` and ``%W`` are only used in calculations when the day of the week and the calendar year (``%Y``) are specified." msgstr "" -#: ../../library/datetime.rst:2842 -msgid "" -"Similar to ``%U`` and ``%W``, ``%V`` is only used in calculations when the " -"day of the week and the ISO year (``%G``) are specified in " -"a :meth:`~.datetime.strptime` format string. Also note that ``%G`` and " -"``%Y`` are not interchangeable." +msgid "Similar to ``%U`` and ``%W``, ``%V`` is only used in calculations when the day of the week and the ISO year (``%G``) are specified in a :meth:`~.datetime.strptime` format string. Also note that ``%G`` and ``%Y`` are not interchangeable." msgstr "" -#: ../../library/datetime.rst:2848 -msgid "" -"When used with the :meth:`~.datetime.strptime` method, the leading zero is " -"optional for formats ``%d``, ``%m``, ``%H``, ``%I``, ``%M``, ``%S``, " -"``%j``, ``%U``, ``%W``, and ``%V``. Format ``%y`` does require a leading " -"zero." +msgid "When used with the :meth:`~.datetime.strptime` method, the leading zero is optional for formats ``%d``, ``%m``, ``%H``, ``%I``, ``%M``, ``%S``, ``%j``, ``%U``, ``%W``, and ``%V``. Format ``%y`` does require a leading zero." msgstr "" -#: ../../library/datetime.rst:2853 -msgid "" -"When parsing a month and day using :meth:`~.datetime.strptime`, always " -"include a year in the format. If the value you need to parse lacks a year, " -"append an explicit dummy leap year. Otherwise your code will raise an " -"exception when it encounters leap day because the default year used by the " -"parser (1900) is not a leap year. Users run into that bug every leap year." +msgid "When parsing a month and day using :meth:`~.datetime.strptime`, always include a year in the format. If the value you need to parse lacks a year, append an explicit dummy leap year. Otherwise your code will raise an exception when it encounters leap day because the default year used by the parser (1900) is not a leap year. Users run into that bug every leap year." msgstr "" -#: ../../library/datetime.rst:2859 msgid "" ">>> month_day = \"02/29\"\n" -">>> dt.datetime.strptime(f\"{month_day};1984\", \"%m/%d;%Y\") # No leap " -"year bug.\n" +">>> dt.datetime.strptime(f\"{month_day};1984\", \"%m/%d;%Y\") # No leap year bug.\n" "datetime.datetime(1984, 2, 29, 0, 0)" msgstr "" -#: ../../library/datetime.rst:2865 -msgid "" -":meth:`~.datetime.strptime` calls using a format string containing a day of " -"month without a year now emit a :exc:`DeprecationWarning`. In 3.15 or later " -"we may change this into an error or change the default year to a leap year. " -"See :gh:`70647`." +msgid ":meth:`~.datetime.strptime` calls using a format string containing a day of month without a year now emit a :exc:`DeprecationWarning`. In 3.15 or later we may change this into an error or change the default year to a leap year. See :gh:`70647`." msgstr "" -#: ../../library/datetime.rst:2872 msgid "Footnotes" msgstr "" -#: ../../library/datetime.rst:2873 msgid "If, that is, we ignore the effects of relativity." msgstr "" -#: ../../library/datetime.rst:2875 -msgid "" -"This matches the definition of the \"proleptic Gregorian\" calendar in " -"Dershowitz and Reingold's book *Calendrical Calculations*, where it's the " -"base calendar for all computations. See the book for algorithms for " -"converting between proleptic Gregorian ordinals and many other calendar " -"systems." +msgid "This matches the definition of the \"proleptic Gregorian\" calendar in Dershowitz and Reingold's book *Calendrical Calculations*, where it's the base calendar for all computations. See the book for algorithms for converting between proleptic Gregorian ordinals and many other calendar systems." msgstr "" -#: ../../library/datetime.rst:2881 -msgid "" -"See R. H. van Gent's `guide to the mathematics of the ISO 8601 calendar " -"`_ for a good explanation." +msgid "See R. H. van Gent's `guide to the mathematics of the ISO 8601 calendar `_ for a good explanation." msgstr "" -#: ../../library/datetime.rst:2488 msgid "% (percent)" msgstr "" -#: ../../library/datetime.rst:2488 msgid "datetime format" msgstr "" diff --git a/library/dbm.po b/library/dbm.po index 3a8b785d..5b64f363 100644 --- a/library/dbm.po +++ b/library/dbm.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:04+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,188 +23,108 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/dbm.rst:2 msgid ":mod:`!dbm` --- Interfaces to Unix \"databases\"" msgstr "" -#: ../../library/dbm.rst:7 msgid "**Source code:** :source:`Lib/dbm/__init__.py`" msgstr "" -#: ../../library/dbm.rst:11 msgid ":mod:`!dbm` is a generic interface to variants of the DBM database:" msgstr "" -#: ../../library/dbm.rst:13 msgid ":mod:`dbm.sqlite3`" msgstr "" -#: ../../library/dbm.rst:14 msgid ":mod:`dbm.gnu`" msgstr "" -#: ../../library/dbm.rst:15 msgid ":mod:`dbm.ndbm`" msgstr "" -#: ../../library/dbm.rst:17 -msgid "" -"If none of these modules are installed, the slow-but-simple implementation " -"in module :mod:`dbm.dumb` will be used. There is a `third party interface " -"`_ to the Oracle Berkeley DB." +msgid "If none of these modules are installed, the slow-but-simple implementation in module :mod:`dbm.dumb` will be used. There is a `third party interface `_ to the Oracle Berkeley DB." msgstr "" -#: ../../library/dbm.rst:24 -msgid "" -"A tuple containing the exceptions that can be raised by each of the " -"supported modules, with a unique exception also named :exc:`dbm.error` as " -"the first item --- the latter is used when :exc:`dbm.error` is raised." +msgid "A tuple containing the exceptions that can be raised by each of the supported modules, with a unique exception also named :exc:`dbm.error` as the first item --- the latter is used when :exc:`dbm.error` is raised." msgstr "" -#: ../../library/dbm.rst:31 -msgid "" -"This function attempts to guess which of the several simple database modules " -"available --- :mod:`dbm.sqlite3`, :mod:`dbm.gnu`, :mod:`dbm.ndbm`, " -"or :mod:`dbm.dumb` --- should be used to open a given file." +msgid "This function attempts to guess which of the several simple database modules available --- :mod:`dbm.sqlite3`, :mod:`dbm.gnu`, :mod:`dbm.ndbm`, or :mod:`dbm.dumb` --- should be used to open a given file." msgstr "" -#: ../../library/dbm.rst:35 msgid "Return one of the following values:" msgstr "" -#: ../../library/dbm.rst:37 -msgid "" -"``None`` if the file can't be opened because it's unreadable or doesn't exist" +msgid "``None`` if the file can't be opened because it's unreadable or doesn't exist" msgstr "" -#: ../../library/dbm.rst:38 msgid "the empty string (``''``) if the file's format can't be guessed" msgstr "" -#: ../../library/dbm.rst:39 -msgid "" -"a string containing the required module name, such as ``'dbm.ndbm'`` or " -"``'dbm.gnu'``" +msgid "a string containing the required module name, such as ``'dbm.ndbm'`` or ``'dbm.gnu'``" msgstr "" -#: ../../library/dbm.rst:41 ../../library/dbm.rst:270 ../../library/dbm.rst:472 msgid "*filename* accepts a :term:`path-like object`." msgstr "" -#: ../../library/dbm.rst:65 msgid "Open a database and return the corresponding database object." msgstr "" -#: ../../library/dbm.rst:0 msgid "Parameters" msgstr "" -#: ../../library/dbm.rst:67 -msgid "" -"The database file to open. If the database file already exists, " -"the :func:`whichdb` function is used to determine its type and the " -"appropriate module is used; if it does not exist, the first submodule listed " -"above that can be imported is used." +msgid "The database file to open. If the database file already exists, the :func:`whichdb` function is used to determine its type and the appropriate module is used; if it does not exist, the first submodule listed above that can be imported is used." msgstr "" -#: ../../library/dbm.rst:68 ../../library/dbm.rst:242 msgid "The database file to open." msgstr "" -#: ../../library/dbm.rst:70 -msgid "" -"If the database file already exists, the :func:`whichdb` function is used to " -"determine its type and the appropriate module is used; if it does not exist, " -"the first submodule listed above that can be imported is used." +msgid "If the database file already exists, the :func:`whichdb` function is used to determine its type and the appropriate module is used; if it does not exist, the first submodule listed above that can be imported is used." msgstr "" -#: ../../library/dbm.rst:75 ../../library/dbm.rst:181 ../../library/dbm.rst:375 -msgid "" -"* ``'r'`` (default): |flag_r| * ``'w'``: |flag_w| * ``'c'``: |flag_c| * " -"``'n'``: |flag_n|" +msgid "* ``'r'`` (default): |flag_r| * ``'w'``: |flag_w| * ``'c'``: |flag_c| * ``'n'``: |flag_n|" msgstr "" -#: ../../library/dbm.rst:76 ../../library/dbm.rst:183 ../../library/dbm.rst:247 -#: ../../library/dbm.rst:376 msgid "``'r'`` (default): |flag_r|" msgstr "" -#: ../../library/dbm.rst:77 ../../library/dbm.rst:184 ../../library/dbm.rst:248 -#: ../../library/dbm.rst:377 ../../library/dbm.rst:453 msgid "``'w'``: |flag_w|" msgstr "" -#: ../../library/dbm.rst:78 ../../library/dbm.rst:185 ../../library/dbm.rst:249 -#: ../../library/dbm.rst:378 msgid "``'c'``: |flag_c|" msgstr "" -#: ../../library/dbm.rst:79 ../../library/dbm.rst:186 ../../library/dbm.rst:250 -#: ../../library/dbm.rst:379 ../../library/dbm.rst:455 msgid "``'n'``: |flag_n|" msgstr "" -#: ../../library/dbm.rst:81 ../../library/dbm.rst:264 ../../library/dbm.rst:381 -#: ../../library/dbm.rst:457 msgid "|mode_param_doc|" msgstr "" -#: ../../library/dbm.rst:84 msgid "*file* accepts a :term:`path-like object`." msgstr "" -#: ../../library/dbm.rst:87 -msgid "" -"The object returned by :func:`~dbm.open` supports the basic functionality of " -"mutable :term:`mappings `; keys and their corresponding values can " -"be stored, retrieved, and deleted, and iteration, the :keyword:`in` operator " -"and methods :meth:`!keys`, :meth:`!get`, :meth:`!setdefault` and :meth:`!" -"clear` are available. The :meth:`!keys` method returns a list instead of a " -"view object. The :meth:`!setdefault` method requires two arguments." +msgid "The object returned by :func:`~dbm.open` supports the basic functionality of mutable :term:`mappings `; keys and their corresponding values can be stored, retrieved, and deleted, and iteration, the :keyword:`in` operator and methods :meth:`!keys`, :meth:`!get`, :meth:`!setdefault` and :meth:`!clear` are available. The :meth:`!keys` method returns a list instead of a view object. The :meth:`!setdefault` method requires two arguments." msgstr "" -#: ../../library/dbm.rst:95 -msgid "" -"Key and values are always stored as :class:`bytes`. This means that when " -"strings are used they are implicitly converted to the default encoding " -"before being stored." +msgid "Key and values are always stored as :class:`bytes`. This means that when strings are used they are implicitly converted to the default encoding before being stored." msgstr "" -#: ../../library/dbm.rst:99 -msgid "" -"These objects also support being used in a :keyword:`with` statement, which " -"will automatically close them when done." +msgid "These objects also support being used in a :keyword:`with` statement, which will automatically close them when done." msgstr "" -#: ../../library/dbm.rst:102 -msgid "" -":meth:`!get` and :meth:`!setdefault` methods are now available for " -"all :mod:`!dbm` backends." +msgid ":meth:`!get` and :meth:`!setdefault` methods are now available for all :mod:`!dbm` backends." msgstr "" -#: ../../library/dbm.rst:106 -msgid "" -"Added native support for the context management protocol to the objects " -"returned by :func:`~dbm.open`." +msgid "Added native support for the context management protocol to the objects returned by :func:`~dbm.open`." msgstr "" -#: ../../library/dbm.rst:110 -msgid "" -"Deleting a key from a read-only database raises a database module specific " -"exception instead of :exc:`KeyError`." +msgid "Deleting a key from a read-only database raises a database module specific exception instead of :exc:`KeyError`." msgstr "" -#: ../../library/dbm.rst:114 msgid ":meth:`!clear` methods are now available for all :mod:`!dbm` backends." msgstr "" -#: ../../library/dbm.rst:118 -msgid "" -"The following example records some hostnames and a corresponding title, and " -"then prints out the contents of the database::" +msgid "The following example records some hostnames and a corresponding title, and then prints out the contents of the database::" msgstr "" -#: ../../library/dbm.rst:121 msgid "" "import dbm\n" "\n" @@ -231,208 +151,117 @@ msgid "" "# db is automatically closed when leaving the with statement." msgstr "" -#: ../../library/dbm.rst:148 msgid "Module :mod:`shelve`" msgstr "" -#: ../../library/dbm.rst:149 msgid "Persistence module which stores non-string data." msgstr "" -#: ../../library/dbm.rst:152 msgid "The individual submodules are described in the following sections." msgstr "" -#: ../../library/dbm.rst:155 msgid ":mod:`!dbm.sqlite3` --- SQLite backend for dbm" msgstr "" -#: ../../library/dbm.rst:162 msgid "**Source code:** :source:`Lib/dbm/sqlite3.py`" msgstr "" -#: ../../library/dbm.rst:166 -msgid "" -"This module uses the standard library :mod:`sqlite3` module to provide an " -"SQLite backend for the :mod:`!dbm` module. The files created by :mod:`!" -"dbm.sqlite3` can thus be opened by :mod:`sqlite3`, or any other SQLite " -"browser, including the SQLite CLI." +msgid "This module uses the standard library :mod:`sqlite3` module to provide an SQLite backend for the :mod:`!dbm` module. The files created by :mod:`!dbm.sqlite3` can thus be opened by :mod:`sqlite3`, or any other SQLite browser, including the SQLite CLI." msgstr "" -#: ../../library/dbm.rst:225 ../../library/dbm.rst:353 -#: ../../includes/wasm-mobile-notavail.rst:3 ../../includes/wasm-notavail.rst:3 msgid "Availability" msgstr "" -#: ../../includes/wasm-notavail.rst:5 -msgid "" -"This module does not work or is not available on WebAssembly. See :ref:`wasm-" -"availability` for more information." +msgid "This module does not work or is not available on WebAssembly. See :ref:`wasm-availability` for more information." msgstr "" -#: ../../library/dbm.rst:175 msgid "Open an SQLite database." msgstr "" -#: ../../library/dbm.rst:177 msgid "The path to the database to be opened." msgstr "" -#: ../../library/dbm.rst:188 -msgid "" -"The Unix file access mode of the file (default: octal ``0o666``), used only " -"when the database has to be created." +msgid "The Unix file access mode of the file (default: octal ``0o666``), used only when the database has to be created." msgstr "" -#: ../../library/dbm.rst:192 -msgid "" -"The returned database object behaves similar to a mutable :term:`mapping`, " -"but the :meth:`!keys` method returns a list, and the :meth:`!setdefault` " -"method requires two arguments. It also supports a \"closing\" context " -"manager via the :keyword:`with` keyword." +msgid "The returned database object behaves similar to a mutable :term:`mapping`, but the :meth:`!keys` method returns a list, and the :meth:`!setdefault` method requires two arguments. It also supports a \"closing\" context manager via the :keyword:`with` keyword." msgstr "" -#: ../../library/dbm.rst:197 ../../library/dbm.rst:400 msgid "The following method is also provided:" msgstr "" -#: ../../library/dbm.rst:201 msgid "Close the SQLite database." msgstr "" -#: ../../library/dbm.rst:205 msgid ":mod:`!dbm.gnu` --- GNU database manager" msgstr "" -#: ../../library/dbm.rst:210 msgid "**Source code:** :source:`Lib/dbm/gnu.py`" msgstr "" -#: ../../library/dbm.rst:214 -msgid "" -"The :mod:`!dbm.gnu` module provides an interface to the :abbr:`GDBM (GNU " -"dbm)` library, similar to the :mod:`dbm.ndbm` module, but with additional " -"functionality like crash tolerance." +msgid "The :mod:`!dbm.gnu` module provides an interface to the :abbr:`GDBM (GNU dbm)` library, similar to the :mod:`dbm.ndbm` module, but with additional functionality like crash tolerance." msgstr "" -#: ../../library/dbm.rst:220 -msgid "" -"The file formats created by :mod:`!dbm.gnu` and :mod:`dbm.ndbm` are " -"incompatible and can not be used interchangeably." +msgid "The file formats created by :mod:`!dbm.gnu` and :mod:`dbm.ndbm` are incompatible and can not be used interchangeably." msgstr "" -#: ../../includes/wasm-mobile-notavail.rst:5 -msgid "" -"This module is not supported on :ref:`mobile platforms ` or :ref:`WebAssembly platforms `." +msgid "This module is not supported on :ref:`mobile platforms ` or :ref:`WebAssembly platforms `." msgstr "" -#: ../../library/dbm.rst:229 -msgid "" -"Raised on :mod:`!dbm.gnu`-specific errors, such as I/O " -"errors. :exc:`KeyError` is raised for general mapping errors like specifying " -"an incorrect key." +msgid "Raised on :mod:`!dbm.gnu`-specific errors, such as I/O errors. :exc:`KeyError` is raised for general mapping errors like specifying an incorrect key." msgstr "" -#: ../../library/dbm.rst:235 -msgid "" -"A string of characters the *flag* parameter of :meth:`~dbm.gnu.open` " -"supports." +msgid "A string of characters the *flag* parameter of :meth:`~dbm.gnu.open` supports." msgstr "" -#: ../../library/dbm.rst:240 msgid "Open a GDBM database and return a :class:`!gdbm` object." msgstr "" -#: ../../library/dbm.rst:246 -msgid "" -"* ``'r'`` (default): |flag_r| * ``'w'``: |flag_w| * ``'c'``: |flag_c| * " -"``'n'``: |flag_n| The following additional characters may be appended to " -"control how the database is opened: * ``'f'``: Open the database in fast " -"mode. Writes to the database will not be synchronized. * ``'s'``: " -"Synchronized mode. Changes to the database will be written immediately to " -"the file. * ``'u'``: Do not lock database. Not all flags are valid for all " -"versions of GDBM. See the :data:`open_flags` member for a list of supported " -"flag characters." +msgid "* ``'r'`` (default): |flag_r| * ``'w'``: |flag_w| * ``'c'``: |flag_c| * ``'n'``: |flag_n| The following additional characters may be appended to control how the database is opened: * ``'f'``: Open the database in fast mode. Writes to the database will not be synchronized. * ``'s'``: Synchronized mode. Changes to the database will be written immediately to the file. * ``'u'``: Do not lock database. Not all flags are valid for all versions of GDBM. See the :data:`open_flags` member for a list of supported flag characters." msgstr "" -#: ../../library/dbm.rst:252 -msgid "" -"The following additional characters may be appended to control how the " -"database is opened:" +msgid "The following additional characters may be appended to control how the database is opened:" msgstr "" -#: ../../library/dbm.rst:255 -msgid "" -"``'f'``: Open the database in fast mode. Writes to the database will not be " -"synchronized." +msgid "``'f'``: Open the database in fast mode. Writes to the database will not be synchronized." msgstr "" -#: ../../library/dbm.rst:257 -msgid "" -"``'s'``: Synchronized mode. Changes to the database will be written " -"immediately to the file." +msgid "``'s'``: Synchronized mode. Changes to the database will be written immediately to the file." msgstr "" -#: ../../library/dbm.rst:259 msgid "``'u'``: Do not lock database." msgstr "" -#: ../../library/dbm.rst:261 -msgid "" -"Not all flags are valid for all versions of GDBM. See the :data:`open_flags` " -"member for a list of supported flag characters." +msgid "Not all flags are valid for all versions of GDBM. See the :data:`open_flags` member for a list of supported flag characters." msgstr "" -#: ../../library/dbm.rst:0 msgid "Raises" msgstr "" -#: ../../library/dbm.rst:267 msgid "If an invalid *flag* argument is passed." msgstr "" -#: ../../library/dbm.rst:273 -msgid "" -":class:`!gdbm` objects behave similar to mutable :term:`mappings `, " -"but methods :meth:`!items`, :meth:`!values`, :meth:`!pop`, :meth:`!popitem`, " -"and :meth:`!update` are not supported, the :meth:`!keys` method returns a " -"list, and the :meth:`!setdefault` method requires two arguments. It also " -"supports a \"closing\" context manager via the :keyword:`with` keyword." +msgid ":class:`!gdbm` objects behave similar to mutable :term:`mappings `, but methods :meth:`!items`, :meth:`!values`, :meth:`!pop`, :meth:`!popitem`, and :meth:`!update` are not supported, the :meth:`!keys` method returns a list, and the :meth:`!setdefault` method requires two arguments. It also supports a \"closing\" context manager via the :keyword:`with` keyword." msgstr "" -#: ../../library/dbm.rst:280 ../../library/dbm.rst:394 msgid "Added the :meth:`!get` and :meth:`!setdefault` methods." msgstr "" -#: ../../library/dbm.rst:283 ../../library/dbm.rst:397 msgid "Added the :meth:`!clear` method." msgstr "" -#: ../../library/dbm.rst:286 ../../library/dbm.rst:480 msgid "The following methods are also provided:" msgstr "" -#: ../../library/dbm.rst:290 msgid "Close the GDBM database." msgstr "" -#: ../../library/dbm.rst:294 -msgid "" -"It's possible to loop over every key in the database using this method and " -"the :meth:`nextkey` method. The traversal is ordered by GDBM's internal " -"hash values, and won't be sorted by the key values. This method returns the " -"starting key." +msgid "It's possible to loop over every key in the database using this method and the :meth:`nextkey` method. The traversal is ordered by GDBM's internal hash values, and won't be sorted by the key values. This method returns the starting key." msgstr "" -#: ../../library/dbm.rst:301 -msgid "" -"Returns the key that follows *key* in the traversal. The following code " -"prints every key in the database ``db``, without having to create a list in " -"memory that contains them all::" +msgid "Returns the key that follows *key* in the traversal. The following code prints every key in the database ``db``, without having to create a list in memory that contains them all::" msgstr "" -#: ../../library/dbm.rst:305 msgid "" "k = db.firstkey()\n" "while k is not None:\n" @@ -440,197 +269,107 @@ msgid "" " k = db.nextkey(k)" msgstr "" -#: ../../library/dbm.rst:312 -msgid "" -"If you have carried out a lot of deletions and would like to shrink the " -"space used by the GDBM file, this routine will reorganize the " -"database. :class:`!gdbm` objects will not shorten the length of a database " -"file except by using this reorganization; otherwise, deleted file space will " -"be kept and reused as new (key, value) pairs are added." +msgid "If you have carried out a lot of deletions and would like to shrink the space used by the GDBM file, this routine will reorganize the database. :class:`!gdbm` objects will not shorten the length of a database file except by using this reorganization; otherwise, deleted file space will be kept and reused as new (key, value) pairs are added." msgstr "" -#: ../../library/dbm.rst:320 -msgid "" -"When the database has been opened in fast mode, this method forces any " -"unwritten data to be written to the disk." +msgid "When the database has been opened in fast mode, this method forces any unwritten data to be written to the disk." msgstr "" -#: ../../library/dbm.rst:325 msgid ":mod:`!dbm.ndbm` --- New Database Manager" msgstr "" -#: ../../library/dbm.rst:330 msgid "**Source code:** :source:`Lib/dbm/ndbm.py`" msgstr "" -#: ../../library/dbm.rst:334 -msgid "" -"The :mod:`!dbm.ndbm` module provides an interface to the :abbr:`NDBM (New " -"Database Manager)` library. This module can be used with the \"classic\" " -"NDBM interface or the :abbr:`GDBM (GNU dbm)` compatibility interface." +msgid "The :mod:`!dbm.ndbm` module provides an interface to the :abbr:`NDBM (New Database Manager)` library. This module can be used with the \"classic\" NDBM interface or the :abbr:`GDBM (GNU dbm)` compatibility interface." msgstr "" -#: ../../library/dbm.rst:341 -msgid "" -"The file formats created by :mod:`dbm.gnu` and :mod:`!dbm.ndbm` are " -"incompatible and can not be used interchangeably." +msgid "The file formats created by :mod:`dbm.gnu` and :mod:`!dbm.ndbm` are incompatible and can not be used interchangeably." msgstr "" -#: ../../library/dbm.rst:346 -msgid "" -"The NDBM library shipped as part of macOS has an undocumented limitation on " -"the size of values, which can result in corrupted database files when " -"storing values larger than this limit. Reading such corrupted files can " -"result in a hard crash (segmentation fault)." +msgid "The NDBM library shipped as part of macOS has an undocumented limitation on the size of values, which can result in corrupted database files when storing values larger than this limit. Reading such corrupted files can result in a hard crash (segmentation fault)." msgstr "" -#: ../../library/dbm.rst:357 -msgid "" -"Raised on :mod:`!dbm.ndbm`-specific errors, such as I/O " -"errors. :exc:`KeyError` is raised for general mapping errors like specifying " -"an incorrect key." +msgid "Raised on :mod:`!dbm.ndbm`-specific errors, such as I/O errors. :exc:`KeyError` is raised for general mapping errors like specifying an incorrect key." msgstr "" -#: ../../library/dbm.rst:363 msgid "Name of the NDBM implementation library used." msgstr "" -#: ../../library/dbm.rst:368 msgid "Open an NDBM database and return an :class:`!ndbm` object." msgstr "" -#: ../../library/dbm.rst:370 -msgid "" -"The basename of the database file (without the :file:`.dir` or :file:`.pag` " -"extensions)." +msgid "The basename of the database file (without the :file:`.dir` or :file:`.pag` extensions)." msgstr "" -#: ../../library/dbm.rst:384 msgid "Accepts :term:`path-like object` for filename." msgstr "" -#: ../../library/dbm.rst:387 -msgid "" -":class:`!ndbm` objects behave similar to mutable :term:`mappings `, " -"but methods :meth:`!items`, :meth:`!values`, :meth:`!pop`, :meth:`!popitem`, " -"and :meth:`!update` are not supported, the :meth:`!keys` method returns a " -"list, and the :meth:`!setdefault` method requires two arguments. It also " -"supports a \"closing\" context manager via the :keyword:`with` keyword." +msgid ":class:`!ndbm` objects behave similar to mutable :term:`mappings `, but methods :meth:`!items`, :meth:`!values`, :meth:`!pop`, :meth:`!popitem`, and :meth:`!update` are not supported, the :meth:`!keys` method returns a list, and the :meth:`!setdefault` method requires two arguments. It also supports a \"closing\" context manager via the :keyword:`with` keyword." msgstr "" -#: ../../library/dbm.rst:404 msgid "Close the NDBM database." msgstr "" -#: ../../library/dbm.rst:408 msgid ":mod:`!dbm.dumb` --- Portable DBM implementation" msgstr "" -#: ../../library/dbm.rst:413 msgid "**Source code:** :source:`Lib/dbm/dumb.py`" msgstr "" -#: ../../library/dbm.rst:419 -msgid "" -"The :mod:`!dbm.dumb` module is intended as a last resort fallback for " -"the :mod:`!dbm` module when a more robust module is not available. " -"The :mod:`!dbm.dumb` module is not written for speed and is not nearly as " -"heavily used as the other database modules." +msgid "The :mod:`!dbm.dumb` module is intended as a last resort fallback for the :mod:`!dbm` module when a more robust module is not available. The :mod:`!dbm.dumb` module is not written for speed and is not nearly as heavily used as the other database modules." msgstr "" -#: ../../library/dbm.rst:426 -msgid "" -"The :mod:`!dbm.dumb` module provides a persistent :class:`dict`-like " -"interface which is written entirely in Python. Unlike other :mod:`!dbm` " -"backends, such as :mod:`dbm.gnu`, no external library is required." +msgid "The :mod:`!dbm.dumb` module provides a persistent :class:`dict`-like interface which is written entirely in Python. Unlike other :mod:`!dbm` backends, such as :mod:`dbm.gnu`, no external library is required." msgstr "" -#: ../../library/dbm.rst:431 msgid "The :mod:`!dbm.dumb` module defines the following:" msgstr "" -#: ../../library/dbm.rst:435 -msgid "" -"Raised on :mod:`!dbm.dumb`-specific errors, such as I/O " -"errors. :exc:`KeyError` is raised for general mapping errors like " -"specifying an incorrect key." +msgid "Raised on :mod:`!dbm.dumb`-specific errors, such as I/O errors. :exc:`KeyError` is raised for general mapping errors like specifying an incorrect key." msgstr "" -#: ../../library/dbm.rst:441 msgid "Open a :mod:`!dbm.dumb` database." msgstr "" -#: ../../library/dbm.rst:443 -msgid "" -"The basename of the database file (without extensions). A new database " -"creates the following files: - :file:`{filename}.dat` " -"- :file:`{filename}.dir`" +msgid "The basename of the database file (without extensions). A new database creates the following files: - :file:`{filename}.dat` - :file:`{filename}.dir`" msgstr "" -#: ../../library/dbm.rst:444 -msgid "" -"The basename of the database file (without extensions). A new database " -"creates the following files:" +msgid "The basename of the database file (without extensions). A new database creates the following files:" msgstr "" -#: ../../library/dbm.rst:447 msgid ":file:`{filename}.dat`" msgstr "" -#: ../../library/dbm.rst:448 msgid ":file:`{filename}.dir`" msgstr "" -#: ../../library/dbm.rst:451 -msgid "" -"* ``'r'``: |flag_r| * ``'w'``: |flag_w| * ``'c'`` (default): |flag_c| * " -"``'n'``: |flag_n|" +msgid "* ``'r'``: |flag_r| * ``'w'``: |flag_w| * ``'c'`` (default): |flag_c| * ``'n'``: |flag_n|" msgstr "" -#: ../../library/dbm.rst:452 msgid "``'r'``: |flag_r|" msgstr "" -#: ../../library/dbm.rst:454 msgid "``'c'`` (default): |flag_c|" msgstr "" -#: ../../library/dbm.rst:461 -msgid "" -"It is possible to crash the Python interpreter when loading a database with " -"a sufficiently large/complex entry due to stack depth limitations in " -"Python's AST compiler." +msgid "It is possible to crash the Python interpreter when loading a database with a sufficiently large/complex entry due to stack depth limitations in Python's AST compiler." msgstr "" -#: ../../library/dbm.rst:465 -msgid "" -":func:`~dbm.dumb.open` always creates a new database when *flag* is ``'n'``." +msgid ":func:`~dbm.dumb.open` always creates a new database when *flag* is ``'n'``." msgstr "" -#: ../../library/dbm.rst:468 -msgid "" -"A database opened read-only if *flag* is ``'r'``. A database is not created " -"if it does not exist if *flag* is ``'r'`` or ``'w'``." +msgid "A database opened read-only if *flag* is ``'r'``. A database is not created if it does not exist if *flag* is ``'r'`` or ``'w'``." msgstr "" -#: ../../library/dbm.rst:475 -msgid "" -"The returned database object behaves similar to a mutable :term:`mapping`, " -"but the :meth:`!keys` and :meth:`!items` methods return lists, and " -"the :meth:`!setdefault` method requires two arguments. It also supports a " -"\"closing\" context manager via the :keyword:`with` keyword." +msgid "The returned database object behaves similar to a mutable :term:`mapping`, but the :meth:`!keys` and :meth:`!items` methods return lists, and the :meth:`!setdefault` method requires two arguments. It also supports a \"closing\" context manager via the :keyword:`with` keyword." msgstr "" -#: ../../library/dbm.rst:484 msgid "Close the database." msgstr "" -#: ../../library/dbm.rst:488 -msgid "" -"Synchronize the on-disk directory and data files. This method is called by " -"the :meth:`shelve.Shelf.sync` method." +msgid "Synchronize the on-disk directory and data files. This method is called by the :meth:`shelve.Shelf.sync` method." msgstr "" -#: ../../library/dbm.rst:415 msgid "databases" msgstr "" diff --git a/library/debug.po b/library/debug.po index 80ec8251..a28a2ca5 100644 --- a/library/debug.po +++ b/library/debug.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:04+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,16 +21,8 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/debug.rst:3 msgid "Debugging and Profiling" msgstr "" -#: ../../library/debug.rst:5 -msgid "" -"These libraries help you with Python development: the debugger enables you " -"to step through code, analyze stack frames and set breakpoints etc., and the " -"profilers run code and give you a detailed breakdown of execution times, " -"allowing you to identify bottlenecks in your programs. Auditing events " -"provide visibility into runtime behaviors that would otherwise require " -"intrusive debugging or patching." +msgid "These libraries help you with Python development: the debugger enables you to step through code, analyze stack frames and set breakpoints etc., and the profilers run code and give you a detailed breakdown of execution times, allowing you to identify bottlenecks in your programs. Auditing events provide visibility into runtime behaviors that would otherwise require intrusive debugging or patching." msgstr "" diff --git a/library/decimal.po b/library/decimal.po index 61194361..956a8658 100644 --- a/library/decimal.po +++ b/library/decimal.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:04+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,144 +24,60 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/decimal.rst:2 msgid ":mod:`!decimal` --- Decimal fixed-point and floating-point arithmetic" msgstr "" -#: ../../library/decimal.rst:15 msgid "**Source code:** :source:`Lib/decimal.py`" msgstr "" -#: ../../library/decimal.rst:33 -msgid "" -"The :mod:`!decimal` module provides support for fast correctly rounded " -"decimal floating-point arithmetic. It offers several advantages over " -"the :class:`float` datatype:" +msgid "The :mod:`!decimal` module provides support for fast correctly rounded decimal floating-point arithmetic. It offers several advantages over the :class:`float` datatype:" msgstr "" -#: ../../library/decimal.rst:37 -msgid "" -"Decimal \"is based on a `floating-point model `__ which was designed with people in mind, " -"and necessarily has a paramount guiding principle -- computers must provide " -"an arithmetic that works in the same way as the arithmetic that people learn " -"at school.\" -- excerpt from the decimal arithmetic specification." +msgid "Decimal \"is based on a `floating-point model `__ which was designed with people in mind, and necessarily has a paramount guiding principle -- computers must provide an arithmetic that works in the same way as the arithmetic that people learn at school.\" -- excerpt from the decimal arithmetic specification." msgstr "" -#: ../../library/decimal.rst:44 -msgid "" -"Decimal numbers can be represented exactly. In contrast, numbers like " -"``1.1`` and ``2.2`` do not have exact representations in binary floating " -"point. End users typically would not expect ``1.1 + 2.2`` to display as " -"``3.3000000000000003`` as it does with binary floating point." +msgid "Decimal numbers can be represented exactly. In contrast, numbers like ``1.1`` and ``2.2`` do not have exact representations in binary floating point. End users typically would not expect ``1.1 + 2.2`` to display as ``3.3000000000000003`` as it does with binary floating point." msgstr "" -#: ../../library/decimal.rst:49 -msgid "" -"The exactness carries over into arithmetic. In decimal floating point, " -"``0.1 + 0.1 + 0.1 - 0.3`` is exactly equal to zero. In binary floating " -"point, the result is ``5.5511151231257827e-017``. While near to zero, the " -"differences prevent reliable equality testing and differences can " -"accumulate. For this reason, decimal is preferred in accounting applications " -"which have strict equality invariants." +msgid "The exactness carries over into arithmetic. In decimal floating point, ``0.1 + 0.1 + 0.1 - 0.3`` is exactly equal to zero. In binary floating point, the result is ``5.5511151231257827e-017``. While near to zero, the differences prevent reliable equality testing and differences can accumulate. For this reason, decimal is preferred in accounting applications which have strict equality invariants." msgstr "" -#: ../../library/decimal.rst:56 -msgid "" -"The decimal module incorporates a notion of significant places so that " -"``1.30 + 1.20`` is ``2.50``. The trailing zero is kept to indicate " -"significance. This is the customary presentation for monetary applications. " -"For multiplication, the \"schoolbook\" approach uses all the figures in the " -"multiplicands. For instance, ``1.3 * 1.2`` gives ``1.56`` while ``1.30 * " -"1.20`` gives ``1.5600``." +msgid "The decimal module incorporates a notion of significant places so that ``1.30 + 1.20`` is ``2.50``. The trailing zero is kept to indicate significance. This is the customary presentation for monetary applications. For multiplication, the \"schoolbook\" approach uses all the figures in the multiplicands. For instance, ``1.3 * 1.2`` gives ``1.56`` while ``1.30 * 1.20`` gives ``1.5600``." msgstr "" -#: ../../library/decimal.rst:63 -msgid "" -"Unlike hardware based binary floating point, the decimal module has a user " -"alterable precision (defaulting to 28 places) which can be as large as " -"needed for a given problem:" +msgid "Unlike hardware based binary floating point, the decimal module has a user alterable precision (defaulting to 28 places) which can be as large as needed for a given problem:" msgstr "" -#: ../../library/decimal.rst:75 -msgid "" -"Both binary and decimal floating point are implemented in terms of published " -"standards. While the built-in float type exposes only a modest portion of " -"its capabilities, the decimal module exposes all required parts of the " -"standard. When needed, the programmer has full control over rounding and " -"signal handling. This includes an option to enforce exact arithmetic by " -"using exceptions to block any inexact operations." +msgid "Both binary and decimal floating point are implemented in terms of published standards. While the built-in float type exposes only a modest portion of its capabilities, the decimal module exposes all required parts of the standard. When needed, the programmer has full control over rounding and signal handling. This includes an option to enforce exact arithmetic by using exceptions to block any inexact operations." msgstr "" -#: ../../library/decimal.rst:82 -msgid "" -"The decimal module was designed to support \"without prejudice, both exact " -"unrounded decimal arithmetic (sometimes called fixed-point arithmetic) and " -"rounded floating-point arithmetic.\" -- excerpt from the decimal arithmetic " -"specification." +msgid "The decimal module was designed to support \"without prejudice, both exact unrounded decimal arithmetic (sometimes called fixed-point arithmetic) and rounded floating-point arithmetic.\" -- excerpt from the decimal arithmetic specification." msgstr "" -#: ../../library/decimal.rst:87 -msgid "" -"The module design is centered around three concepts: the decimal number, " -"the context for arithmetic, and signals." +msgid "The module design is centered around three concepts: the decimal number, the context for arithmetic, and signals." msgstr "" -#: ../../library/decimal.rst:90 -msgid "" -"A decimal number is immutable. It has a sign, coefficient digits, and an " -"exponent. To preserve significance, the coefficient digits do not truncate " -"trailing zeros. Decimals also include special values such as ``Infinity``, " -"``-Infinity``, and ``NaN``. The standard also differentiates ``-0`` from " -"``+0``." +msgid "A decimal number is immutable. It has a sign, coefficient digits, and an exponent. To preserve significance, the coefficient digits do not truncate trailing zeros. Decimals also include special values such as ``Infinity``, ``-Infinity``, and ``NaN``. The standard also differentiates ``-0`` from ``+0``." msgstr "" -#: ../../library/decimal.rst:96 -msgid "" -"The context for arithmetic is an environment specifying precision, rounding " -"rules, limits on exponents, flags indicating the results of operations, and " -"trap enablers which determine whether signals are treated as exceptions. " -"Rounding options " -"include :const:`ROUND_CEILING`, :const:`ROUND_DOWN`, :const:`ROUND_FLOOR`, :const:`ROUND_HALF_DOWN`, :const:`ROUND_HALF_EVEN`, :const:`ROUND_HALF_UP`, :const:`ROUND_UP`, " -"and :const:`ROUND_05UP`." +msgid "The context for arithmetic is an environment specifying precision, rounding rules, limits on exponents, flags indicating the results of operations, and trap enablers which determine whether signals are treated as exceptions. Rounding options include :const:`ROUND_CEILING`, :const:`ROUND_DOWN`, :const:`ROUND_FLOOR`, :const:`ROUND_HALF_DOWN`, :const:`ROUND_HALF_EVEN`, :const:`ROUND_HALF_UP`, :const:`ROUND_UP`, and :const:`ROUND_05UP`." msgstr "" -#: ../../library/decimal.rst:103 -msgid "" -"Signals are groups of exceptional conditions arising during the course of " -"computation. Depending on the needs of the application, signals may be " -"ignored, considered as informational, or treated as exceptions. The signals " -"in the decimal module " -"are: :const:`Clamped`, :const:`InvalidOperation`, :const:`DivisionByZero`, :const:`Inexact`, :const:`Rounded`, :const:`Subnormal`, :const:`Overflow`, :const:`Underflow` " -"and :const:`FloatOperation`." +msgid "Signals are groups of exceptional conditions arising during the course of computation. Depending on the needs of the application, signals may be ignored, considered as informational, or treated as exceptions. The signals in the decimal module are: :const:`Clamped`, :const:`InvalidOperation`, :const:`DivisionByZero`, :const:`Inexact`, :const:`Rounded`, :const:`Subnormal`, :const:`Overflow`, :const:`Underflow` and :const:`FloatOperation`." msgstr "" -#: ../../library/decimal.rst:110 -msgid "" -"For each signal there is a flag and a trap enabler. When a signal is " -"encountered, its flag is set to one, then, if the trap enabler is set to " -"one, an exception is raised. Flags are sticky, so the user needs to reset " -"them before monitoring a calculation." +msgid "For each signal there is a flag and a trap enabler. When a signal is encountered, its flag is set to one, then, if the trap enabler is set to one, an exception is raised. Flags are sticky, so the user needs to reset them before monitoring a calculation." msgstr "" -#: ../../library/decimal.rst:118 -msgid "" -"IBM's General Decimal Arithmetic Specification, `The General Decimal " -"Arithmetic Specification `_." +msgid "IBM's General Decimal Arithmetic Specification, `The General Decimal Arithmetic Specification `_." msgstr "" -#: ../../library/decimal.rst:127 msgid "Quick-start tutorial" msgstr "" -#: ../../library/decimal.rst:129 -msgid "" -"The usual start to using decimals is importing the module, viewing the " -"current context with :func:`getcontext` and, if necessary, setting new " -"values for precision, rounding, or enabled traps::" +msgid "The usual start to using decimals is importing the module, viewing the current context with :func:`getcontext` and, if necessary, setting new values for precision, rounding, or enabled traps::" msgstr "" -#: ../../library/decimal.rst:133 msgid "" ">>> from decimal import *\n" ">>> getcontext()\n" @@ -172,16 +88,9 @@ msgid "" ">>> getcontext().prec = 7 # Set a new precision" msgstr "" -#: ../../library/decimal.rst:141 -msgid "" -"Decimal instances can be constructed from integers, strings, floats, or " -"tuples. Construction from an integer or a float performs an exact conversion " -"of the value of that integer or float. Decimal numbers include special " -"values such as ``NaN`` which stands for \"Not a number\", positive and " -"negative ``Infinity``, and ``-0``::" +msgid "Decimal instances can be constructed from integers, strings, floats, or tuples. Construction from an integer or a float performs an exact conversion of the value of that integer or float. Decimal numbers include special values such as ``NaN`` which stands for \"Not a number\", positive and negative ``Infinity``, and ``-0``::" msgstr "" -#: ../../library/decimal.rst:147 msgid "" ">>> getcontext().prec = 28\n" ">>> Decimal(10)\n" @@ -202,14 +111,9 @@ msgid "" "Decimal('-Infinity')" msgstr "" -#: ../../library/decimal.rst:165 -msgid "" -"If the :exc:`FloatOperation` signal is trapped, accidental mixing of " -"decimals and floats in constructors or ordering comparisons raises an " -"exception::" +msgid "If the :exc:`FloatOperation` signal is trapped, accidental mixing of decimals and floats in constructors or ordering comparisons raises an exception::" msgstr "" -#: ../../library/decimal.rst:169 msgid "" ">>> c = getcontext()\n" ">>> c.traps[FloatOperation] = True\n" @@ -225,14 +129,9 @@ msgid "" "True" msgstr "" -#: ../../library/decimal.rst:184 -msgid "" -"The significance of a new Decimal is determined solely by the number of " -"digits input. Context precision and rounding only come into play during " -"arithmetic operations." +msgid "The significance of a new Decimal is determined solely by the number of digits input. Context precision and rounding only come into play during arithmetic operations." msgstr "" -#: ../../library/decimal.rst:188 msgid "" ">>> getcontext().prec = 6\n" ">>> Decimal('3.0')\n" @@ -246,13 +145,9 @@ msgid "" "Decimal('5.85988')" msgstr "" -#: ../../library/decimal.rst:201 -msgid "" -"If the internal limits of the C version are exceeded, constructing a decimal " -"raises :class:`InvalidOperation`::" +msgid "If the internal limits of the C version are exceeded, constructing a decimal raises :class:`InvalidOperation`::" msgstr "" -#: ../../library/decimal.rst:204 msgid "" ">>> Decimal(\"1e9999999999999999999\")\n" "Traceback (most recent call last):\n" @@ -260,13 +155,9 @@ msgid "" "decimal.InvalidOperation: []" msgstr "" -#: ../../library/decimal.rst:211 -msgid "" -"Decimals interact well with much of the rest of Python. Here is a small " -"decimal floating-point flying circus:" +msgid "Decimals interact well with much of the rest of Python. Here is a small decimal floating-point flying circus:" msgstr "" -#: ../../library/decimal.rst:214 msgid "" ">>> data = list(map(Decimal, '1.34 1.87 3.45 2.35 1.00 0.03 9.25'.split()))\n" ">>> max(data)\n" @@ -295,14 +186,9 @@ msgid "" "Decimal('0.77')" msgstr "" -#: ../../library/decimal.rst:243 -msgid "" -"Decimals can be formatted (with :func:`format` built-in or :ref:`f-strings`) " -"in fixed-point or scientific notation, using the same formatting syntax " -"(see :ref:`formatspec`) as builtin :class:`float` type:" +msgid "Decimals can be formatted (with :func:`format` built-in or :ref:`f-strings`) in fixed-point or scientific notation, using the same formatting syntax (see :ref:`formatspec`) as builtin :class:`float` type:" msgstr "" -#: ../../library/decimal.rst:247 msgid "" ">>> format(Decimal('2.675'), \"f\")\n" "'2.675'\n" @@ -319,40 +205,21 @@ msgid "" "2.67" msgstr "" -#: ../../library/decimal.rst:263 msgid "And some mathematical functions are also available to Decimal:" msgstr "" -#: ../../library/decimal.rst:275 -msgid "" -"The :meth:`~Decimal.quantize` method rounds a number to a fixed exponent. " -"This method is useful for monetary applications that often round results to " -"a fixed number of places:" +msgid "The :meth:`~Decimal.quantize` method rounds a number to a fixed exponent. This method is useful for monetary applications that often round results to a fixed number of places:" msgstr "" -#: ../../library/decimal.rst:284 -msgid "" -"As shown above, the :func:`getcontext` function accesses the current context " -"and allows the settings to be changed. This approach meets the needs of " -"most applications." +msgid "As shown above, the :func:`getcontext` function accesses the current context and allows the settings to be changed. This approach meets the needs of most applications." msgstr "" -#: ../../library/decimal.rst:288 -msgid "" -"For more advanced work, it may be useful to create alternate contexts using " -"the :meth:`Context` constructor. To make an alternate active, use " -"the :func:`setcontext` function." +msgid "For more advanced work, it may be useful to create alternate contexts using the :meth:`Context` constructor. To make an alternate active, use the :func:`setcontext` function." msgstr "" -#: ../../library/decimal.rst:292 -msgid "" -"In accordance with the standard, the :mod:`!decimal` module provides two " -"ready to use standard contexts, :const:`BasicContext` " -"and :const:`ExtendedContext`. The former is especially useful for debugging " -"because many of the traps are enabled:" +msgid "In accordance with the standard, the :mod:`!decimal` module provides two ready to use standard contexts, :const:`BasicContext` and :const:`ExtendedContext`. The former is especially useful for debugging because many of the traps are enabled:" msgstr "" -#: ../../library/decimal.rst:297 msgid "" ">>> myothercontext = Context(prec=60, rounding=ROUND_HALF_DOWN)\n" ">>> setcontext(myothercontext)\n" @@ -376,15 +243,9 @@ msgid "" "DivisionByZero: x / 0" msgstr "" -#: ../../library/decimal.rst:321 -msgid "" -"Contexts also have signal flags for monitoring exceptional conditions " -"encountered during computations. The flags remain set until explicitly " -"cleared, so it is best to clear the flags before each set of monitored " -"computations by using the :meth:`~Context.clear_flags` method. ::" +msgid "Contexts also have signal flags for monitoring exceptional conditions encountered during computations. The flags remain set until explicitly cleared, so it is best to clear the flags before each set of monitored computations by using the :meth:`~Context.clear_flags` method. ::" msgstr "" -#: ../../library/decimal.rst:326 msgid "" ">>> setcontext(ExtendedContext)\n" ">>> getcontext().clear_flags()\n" @@ -395,20 +256,12 @@ msgid "" " capitals=1, clamp=0, flags=[Inexact, Rounded], traps=[])" msgstr "" -#: ../../library/decimal.rst:334 -msgid "" -"The *flags* entry shows that the rational approximation to pi was rounded " -"(digits beyond the context precision were thrown away) and that the result " -"is inexact (some of the discarded digits were non-zero)." +msgid "The *flags* entry shows that the rational approximation to pi was rounded (digits beyond the context precision were thrown away) and that the result is inexact (some of the discarded digits were non-zero)." msgstr "" -#: ../../library/decimal.rst:338 -msgid "" -"Individual traps are set using the dictionary in the :attr:`~Context.traps` " -"attribute of a context:" +msgid "Individual traps are set using the dictionary in the :attr:`~Context.traps` attribute of a context:" msgstr "" -#: ../../library/decimal.rst:341 msgid "" ">>> setcontext(ExtendedContext)\n" ">>> Decimal(1) / Decimal(0)\n" @@ -421,37 +274,21 @@ msgid "" "DivisionByZero: x / 0" msgstr "" -#: ../../library/decimal.rst:353 -msgid "" -"Most programs adjust the current context only once, at the beginning of the " -"program. And, in many applications, data is converted to :class:`Decimal` " -"with a single cast inside a loop. With context set and decimals created, " -"the bulk of the program manipulates the data no differently than with other " -"Python numeric types." +msgid "Most programs adjust the current context only once, at the beginning of the program. And, in many applications, data is converted to :class:`Decimal` with a single cast inside a loop. With context set and decimals created, the bulk of the program manipulates the data no differently than with other Python numeric types." msgstr "" -#: ../../library/decimal.rst:365 msgid "Decimal objects" msgstr "" -#: ../../library/decimal.rst:370 msgid "Construct a new :class:`Decimal` object based from *value*." msgstr "" -#: ../../library/decimal.rst:372 -msgid "" -"*value* can be an integer, string, tuple, :class:`float`, or " -"another :class:`Decimal` object. If no *value* is given, returns " -"``Decimal('0')``. If *value* is a string, it should conform to the decimal " -"numeric string syntax after leading and trailing whitespace characters, as " -"well as underscores throughout, are removed::" +msgid "*value* can be an integer, string, tuple, :class:`float`, or another :class:`Decimal` object. If no *value* is given, returns ``Decimal('0')``. If *value* is a string, it should conform to the decimal numeric string syntax after leading and trailing whitespace characters, as well as underscores throughout, are removed::" msgstr "" -#: ../../library/decimal.rst:377 msgid "" "sign ::= '+' | '-'\n" -"digit ::= '0' | '1' | '2' | '3' | '4' | '5' | '6' | '7' | '8' | " -"'9'\n" +"digit ::= '0' | '1' | '2' | '3' | '4' | '5' | '6' | '7' | '8' | '9'\n" "indicator ::= 'e' | 'E'\n" "digits ::= digit [digit]...\n" "decimal-part ::= digits '.' [digits] | ['.'] digits\n" @@ -462,90 +299,39 @@ msgid "" "numeric-string ::= [sign] numeric-value | [sign] nan" msgstr "" -#: ../../library/decimal.rst:388 -msgid "" -"Other Unicode decimal digits are also permitted where ``digit`` appears " -"above. These include decimal digits from various other alphabets (for " -"example, Arabic-Indic and Devanāgarī digits) along with the fullwidth digits " -"``'\\uff10'`` through ``'\\uff19'``. Case is not significant, so, for " -"example, ``inf``, ``Inf``, ``INFINITY``, and ``iNfINity`` are all acceptable " -"spellings for positive infinity." +msgid "Other Unicode decimal digits are also permitted where ``digit`` appears above. These include decimal digits from various other alphabets (for example, Arabic-Indic and Devanāgarī digits) along with the fullwidth digits ``'\\uff10'`` through ``'\\uff19'``. Case is not significant, so, for example, ``inf``, ``Inf``, ``INFINITY``, and ``iNfINity`` are all acceptable spellings for positive infinity." msgstr "" -#: ../../library/decimal.rst:395 -msgid "" -"If *value* is a :class:`tuple`, it should have three components, a sign " -"(``0`` for positive or ``1`` for negative), a :class:`tuple` of digits, and " -"an integer exponent. For example, ``Decimal((0, (1, 4, 1, 4), -3))`` returns " -"``Decimal('1.414')``." +msgid "If *value* is a :class:`tuple`, it should have three components, a sign (``0`` for positive or ``1`` for negative), a :class:`tuple` of digits, and an integer exponent. For example, ``Decimal((0, (1, 4, 1, 4), -3))`` returns ``Decimal('1.414')``." msgstr "" -#: ../../library/decimal.rst:400 -msgid "" -"If *value* is a :class:`float`, the binary floating-point value is " -"losslessly converted to its exact decimal equivalent. This conversion can " -"often require 53 or more digits of precision. For example, " -"``Decimal(float('1.1'))`` converts to " -"``Decimal('1.100000000000000088817841970012523233890533447265625')``." +msgid "If *value* is a :class:`float`, the binary floating-point value is losslessly converted to its exact decimal equivalent. This conversion can often require 53 or more digits of precision. For example, ``Decimal(float('1.1'))`` converts to ``Decimal('1.100000000000000088817841970012523233890533447265625')``." msgstr "" -#: ../../library/decimal.rst:406 -msgid "" -"The *context* precision does not affect how many digits are stored. That is " -"determined exclusively by the number of digits in *value*. For example, " -"``Decimal('3.00000')`` records all five zeros even if the context precision " -"is only three." +msgid "The *context* precision does not affect how many digits are stored. That is determined exclusively by the number of digits in *value*. For example, ``Decimal('3.00000')`` records all five zeros even if the context precision is only three." msgstr "" -#: ../../library/decimal.rst:411 -msgid "" -"The purpose of the *context* argument is determining what to do if *value* " -"is a malformed string. If the context traps :const:`InvalidOperation`, an " -"exception is raised; otherwise, the constructor returns a new Decimal with " -"the value of ``NaN``." +msgid "The purpose of the *context* argument is determining what to do if *value* is a malformed string. If the context traps :const:`InvalidOperation`, an exception is raised; otherwise, the constructor returns a new Decimal with the value of ``NaN``." msgstr "" -#: ../../library/decimal.rst:416 msgid "Once constructed, :class:`Decimal` objects are immutable." msgstr "" -#: ../../library/decimal.rst:418 -msgid "" -"The argument to the constructor is now permitted to be a :class:`float` " -"instance." +msgid "The argument to the constructor is now permitted to be a :class:`float` instance." msgstr "" -#: ../../library/decimal.rst:422 -msgid "" -":class:`float` arguments raise an exception if the :exc:`FloatOperation` " -"trap is set. By default the trap is off." +msgid ":class:`float` arguments raise an exception if the :exc:`FloatOperation` trap is set. By default the trap is off." msgstr "" -#: ../../library/decimal.rst:426 -msgid "" -"Underscores are allowed for grouping, as with integral and floating-point " -"literals in code." +msgid "Underscores are allowed for grouping, as with integral and floating-point literals in code." msgstr "" -#: ../../library/decimal.rst:430 -msgid "" -"Decimal floating-point objects share many properties with the other built-in " -"numeric types such as :class:`float` and :class:`int`. All of the usual " -"math operations and special methods apply. Likewise, decimal objects can be " -"copied, pickled, printed, used as dictionary keys, used as set elements, " -"compared, sorted, and coerced to another type (such as :class:`float` " -"or :class:`int`)." +msgid "Decimal floating-point objects share many properties with the other built-in numeric types such as :class:`float` and :class:`int`. All of the usual math operations and special methods apply. Likewise, decimal objects can be copied, pickled, printed, used as dictionary keys, used as set elements, compared, sorted, and coerced to another type (such as :class:`float` or :class:`int`)." msgstr "" -#: ../../library/decimal.rst:437 -msgid "" -"There are some small differences between arithmetic on Decimal objects and " -"arithmetic on integers and floats. When the remainder operator ``%`` is " -"applied to Decimal objects, the sign of the result is the sign of the " -"*dividend* rather than the sign of the divisor::" +msgid "There are some small differences between arithmetic on Decimal objects and arithmetic on integers and floats. When the remainder operator ``%`` is applied to Decimal objects, the sign of the result is the sign of the *dividend* rather than the sign of the divisor::" msgstr "" -#: ../../library/decimal.rst:442 msgid "" ">>> (-7) % 4\n" "1\n" @@ -553,14 +339,9 @@ msgid "" "Decimal('-3')" msgstr "" -#: ../../library/decimal.rst:447 -msgid "" -"The integer division operator ``//`` behaves analogously, returning the " -"integer part of the true quotient (truncating towards zero) rather than its " -"floor, so as to preserve the usual identity ``x == (x // y) * y + x % y``::" +msgid "The integer division operator ``//`` behaves analogously, returning the integer part of the true quotient (truncating towards zero) rather than its floor, so as to preserve the usual identity ``x == (x // y) * y + x % y``::" msgstr "" -#: ../../library/decimal.rst:451 msgid "" ">>> -7 // 4\n" "-2\n" @@ -568,82 +349,41 @@ msgid "" "Decimal('-1')" msgstr "" -#: ../../library/decimal.rst:456 -msgid "" -"The ``%`` and ``//`` operators implement the ``remainder`` and ``divide-" -"integer`` operations (respectively) as described in the specification." +msgid "The ``%`` and ``//`` operators implement the ``remainder`` and ``divide-integer`` operations (respectively) as described in the specification." msgstr "" -#: ../../library/decimal.rst:460 -msgid "" -"Decimal objects cannot generally be combined with floats or instances " -"of :class:`fractions.Fraction` in arithmetic operations: an attempt to add " -"a :class:`Decimal` to a :class:`float`, for example, will raise " -"a :exc:`TypeError`. However, it is possible to use Python's comparison " -"operators to compare a :class:`Decimal` instance ``x`` with another number " -"``y``. This avoids confusing results when doing equality comparisons " -"between numbers of different types." +msgid "Decimal objects cannot generally be combined with floats or instances of :class:`fractions.Fraction` in arithmetic operations: an attempt to add a :class:`Decimal` to a :class:`float`, for example, will raise a :exc:`TypeError`. However, it is possible to use Python's comparison operators to compare a :class:`Decimal` instance ``x`` with another number ``y``. This avoids confusing results when doing equality comparisons between numbers of different types." msgstr "" -#: ../../library/decimal.rst:468 -msgid "" -"Mixed-type comparisons between :class:`Decimal` instances and other numeric " -"types are now fully supported." +msgid "Mixed-type comparisons between :class:`Decimal` instances and other numeric types are now fully supported." msgstr "" -#: ../../library/decimal.rst:472 -msgid "" -"In addition to the standard numeric properties, decimal floating-point " -"objects also have a number of specialized methods:" +msgid "In addition to the standard numeric properties, decimal floating-point objects also have a number of specialized methods:" msgstr "" -#: ../../library/decimal.rst:478 -msgid "" -"Return the adjusted exponent after shifting out the coefficient's rightmost " -"digits until only the lead digit remains: ``Decimal('321e+5').adjusted()`` " -"returns seven. Used for determining the position of the most significant " -"digit with respect to the decimal point." +msgid "Return the adjusted exponent after shifting out the coefficient's rightmost digits until only the lead digit remains: ``Decimal('321e+5').adjusted()`` returns seven. Used for determining the position of the most significant digit with respect to the decimal point." msgstr "" -#: ../../library/decimal.rst:485 -msgid "" -"Return a pair ``(n, d)`` of integers that represent the " -"given :class:`Decimal` instance as a fraction, in lowest terms and with a " -"positive denominator::" +msgid "Return a pair ``(n, d)`` of integers that represent the given :class:`Decimal` instance as a fraction, in lowest terms and with a positive denominator::" msgstr "" -#: ../../library/decimal.rst:489 msgid "" ">>> Decimal('-3.14').as_integer_ratio()\n" "(-157, 50)" msgstr "" -#: ../../library/decimal.rst:492 -msgid "" -"The conversion is exact. Raise OverflowError on infinities and ValueError " -"on NaNs." +msgid "The conversion is exact. Raise OverflowError on infinities and ValueError on NaNs." msgstr "" -#: ../../library/decimal.rst:499 -msgid "" -"Return a :term:`named tuple` representation of the number: " -"``DecimalTuple(sign, digits, exponent)``." +msgid "Return a :term:`named tuple` representation of the number: ``DecimalTuple(sign, digits, exponent)``." msgstr "" -#: ../../library/decimal.rst:505 -msgid "" -"Return the canonical encoding of the argument. Currently, the encoding of " -"a :class:`Decimal` instance is always canonical, so this operation returns " -"its argument unchanged." +msgid "Return the canonical encoding of the argument. Currently, the encoding of a :class:`Decimal` instance is always canonical, so this operation returns its argument unchanged." msgstr "" -#: ../../library/decimal.rst:511 -msgid "" -"Compare the values of two Decimal instances. :meth:`compare` returns a " -"Decimal instance, and if either operand is a NaN then the result is a NaN::" +msgid "Compare the values of two Decimal instances. :meth:`compare` returns a Decimal instance, and if either operand is a NaN then the result is a NaN::" msgstr "" -#: ../../library/decimal.rst:515 msgid "" "a or b is a NaN ==> Decimal('NaN')\n" "a < b ==> Decimal('-1')\n" @@ -651,101 +391,45 @@ msgid "" "a > b ==> Decimal('1')" msgstr "" -#: ../../library/decimal.rst:522 -msgid "" -"This operation is identical to the :meth:`compare` method, except that all " -"NaNs signal. That is, if neither operand is a signaling NaN then any quiet " -"NaN operand is treated as though it were a signaling NaN." +msgid "This operation is identical to the :meth:`compare` method, except that all NaNs signal. That is, if neither operand is a signaling NaN then any quiet NaN operand is treated as though it were a signaling NaN." msgstr "" -#: ../../library/decimal.rst:528 -msgid "" -"Compare two operands using their abstract representation rather than their " -"numerical value. Similar to the :meth:`compare` method, but the result " -"gives a total ordering on :class:`Decimal` instances. Two :class:`Decimal` " -"instances with the same numeric value but different representations compare " -"unequal in this ordering:" +msgid "Compare two operands using their abstract representation rather than their numerical value. Similar to the :meth:`compare` method, but the result gives a total ordering on :class:`Decimal` instances. Two :class:`Decimal` instances with the same numeric value but different representations compare unequal in this ordering:" msgstr "" -#: ../../library/decimal.rst:537 -msgid "" -"Quiet and signaling NaNs are also included in the total ordering. The " -"result of this function is ``Decimal('0')`` if both operands have the same " -"representation, ``Decimal('-1')`` if the first operand is lower in the total " -"order than the second, and ``Decimal('1')`` if the first operand is higher " -"in the total order than the second operand. See the specification for " -"details of the total order." +msgid "Quiet and signaling NaNs are also included in the total ordering. The result of this function is ``Decimal('0')`` if both operands have the same representation, ``Decimal('-1')`` if the first operand is lower in the total order than the second, and ``Decimal('1')`` if the first operand is higher in the total order than the second operand. See the specification for details of the total order." msgstr "" -#: ../../library/decimal.rst:544 ../../library/decimal.rst:555 -#: ../../library/decimal.rst:583 ../../library/decimal.rst:887 -msgid "" -"This operation is unaffected by context and is quiet: no flags are changed " -"and no rounding is performed. As an exception, the C version may raise " -"InvalidOperation if the second operand cannot be converted exactly." +msgid "This operation is unaffected by context and is quiet: no flags are changed and no rounding is performed. As an exception, the C version may raise InvalidOperation if the second operand cannot be converted exactly." msgstr "" -#: ../../library/decimal.rst:550 -msgid "" -"Compare two operands using their abstract representation rather than their " -"value as in :meth:`compare_total`, but ignoring the sign of each operand. " -"``x.compare_total_mag(y)`` is equivalent to " -"``x.copy_abs().compare_total(y.copy_abs())``." +msgid "Compare two operands using their abstract representation rather than their value as in :meth:`compare_total`, but ignoring the sign of each operand. ``x.compare_total_mag(y)`` is equivalent to ``x.copy_abs().compare_total(y.copy_abs())``." msgstr "" -#: ../../library/decimal.rst:561 -msgid "" -"Just returns self, this method is only to comply with the Decimal " -"Specification." +msgid "Just returns self, this method is only to comply with the Decimal Specification." msgstr "" -#: ../../library/decimal.rst:566 -msgid "" -"Return the absolute value of the argument. This operation is unaffected by " -"the context and is quiet: no flags are changed and no rounding is performed." +msgid "Return the absolute value of the argument. This operation is unaffected by the context and is quiet: no flags are changed and no rounding is performed." msgstr "" -#: ../../library/decimal.rst:572 -msgid "" -"Return the negation of the argument. This operation is unaffected by the " -"context and is quiet: no flags are changed and no rounding is performed." +msgid "Return the negation of the argument. This operation is unaffected by the context and is quiet: no flags are changed and no rounding is performed." msgstr "" -#: ../../library/decimal.rst:577 -msgid "" -"Return a copy of the first operand with the sign set to be the same as the " -"sign of the second operand. For example:" +msgid "Return a copy of the first operand with the sign set to be the same as the sign of the second operand. For example:" msgstr "" -#: ../../library/decimal.rst:589 -msgid "" -"Return the value of the (natural) exponential function ``e**x`` at the given " -"number. The result is correctly rounded using the :const:`ROUND_HALF_EVEN` " -"rounding mode." +msgid "Return the value of the (natural) exponential function ``e**x`` at the given number. The result is correctly rounded using the :const:`ROUND_HALF_EVEN` rounding mode." msgstr "" -#: ../../library/decimal.rst:600 -msgid "" -"Alternative constructor that only accepts instances of :class:`float` " -"or :class:`int`." +msgid "Alternative constructor that only accepts instances of :class:`float` or :class:`int`." msgstr "" -#: ../../library/decimal.rst:603 -msgid "" -"Note ``Decimal.from_float(0.1)`` is not the same as ``Decimal('0.1')``. " -"Since 0.1 is not exactly representable in binary floating point, the value " -"is stored as the nearest representable value which is " -"``0x1.999999999999ap-4``. That equivalent value in decimal is " -"``0.1000000000000000055511151231257827021181583404541015625``." +msgid "Note ``Decimal.from_float(0.1)`` is not the same as ``Decimal('0.1')``. Since 0.1 is not exactly representable in binary floating point, the value is stored as the nearest representable value which is ``0x1.999999999999ap-4``. That equivalent value in decimal is ``0.1000000000000000055511151231257827021181583404541015625``." msgstr "" -#: ../../library/decimal.rst:609 -msgid "" -"From Python 3.2 onwards, a :class:`Decimal` instance can also be constructed " -"directly from a :class:`float`." +msgid "From Python 3.2 onwards, a :class:`Decimal` instance can also be constructed directly from a :class:`float`." msgstr "" -#: ../../library/decimal.rst:612 msgid "" ">>> Decimal.from_float(0.1)\n" "Decimal('0.1000000000000000055511151231257827021181583404541015625')\n" @@ -757,14 +441,9 @@ msgid "" "Decimal('-Infinity')" msgstr "" -#: ../../library/decimal.rst:627 -msgid "" -"Alternative constructor that only accepts instances " -"of :class:`float`, :class:`int` or :class:`Decimal`, but not strings or " -"tuples." +msgid "Alternative constructor that only accepts instances of :class:`float`, :class:`int` or :class:`Decimal`, but not strings or tuples." msgstr "" -#: ../../library/decimal.rst:631 msgid "" ">>> Decimal.from_number(314)\n" "Decimal('314')\n" @@ -774,428 +453,207 @@ msgid "" "Decimal('3.14')" msgstr "" -#: ../../library/decimal.rst:644 -msgid "" -"Fused multiply-add. Return self*other+third with no rounding of the " -"intermediate product self*other." +msgid "Fused multiply-add. Return self*other+third with no rounding of the intermediate product self*other." msgstr "" -#: ../../library/decimal.rst:652 -msgid "" -"Return :const:`True` if the argument is canonical and :const:`False` " -"otherwise. Currently, a :class:`Decimal` instance is always canonical, so " -"this operation always returns :const:`True`." +msgid "Return :const:`True` if the argument is canonical and :const:`False` otherwise. Currently, a :class:`Decimal` instance is always canonical, so this operation always returns :const:`True`." msgstr "" -#: ../../library/decimal.rst:658 -msgid "" -"Return :const:`True` if the argument is a finite number, and :const:`False` " -"if the argument is an infinity or a NaN." +msgid "Return :const:`True` if the argument is a finite number, and :const:`False` if the argument is an infinity or a NaN." msgstr "" -#: ../../library/decimal.rst:663 -msgid "" -"Return :const:`True` if the argument is either positive or negative infinity " -"and :const:`False` otherwise." +msgid "Return :const:`True` if the argument is either positive or negative infinity and :const:`False` otherwise." msgstr "" -#: ../../library/decimal.rst:668 -msgid "" -"Return :const:`True` if the argument is a (quiet or signaling) NaN " -"and :const:`False` otherwise." +msgid "Return :const:`True` if the argument is a (quiet or signaling) NaN and :const:`False` otherwise." msgstr "" -#: ../../library/decimal.rst:673 -msgid "" -"Return :const:`True` if the argument is a *normal* finite number. " -"Return :const:`False` if the argument is zero, subnormal, infinite or a NaN." +msgid "Return :const:`True` if the argument is a *normal* finite number. Return :const:`False` if the argument is zero, subnormal, infinite or a NaN." msgstr "" -#: ../../library/decimal.rst:678 -msgid "" -"Return :const:`True` if the argument is a quiet NaN, and :const:`False` " -"otherwise." +msgid "Return :const:`True` if the argument is a quiet NaN, and :const:`False` otherwise." msgstr "" -#: ../../library/decimal.rst:683 -msgid "" -"Return :const:`True` if the argument has a negative sign and :const:`False` " -"otherwise. Note that zeros and NaNs can both carry signs." +msgid "Return :const:`True` if the argument has a negative sign and :const:`False` otherwise. Note that zeros and NaNs can both carry signs." msgstr "" -#: ../../library/decimal.rst:688 -msgid "" -"Return :const:`True` if the argument is a signaling NaN and :const:`False` " -"otherwise." +msgid "Return :const:`True` if the argument is a signaling NaN and :const:`False` otherwise." msgstr "" -#: ../../library/decimal.rst:693 -msgid "" -"Return :const:`True` if the argument is subnormal, and :const:`False` " -"otherwise." +msgid "Return :const:`True` if the argument is subnormal, and :const:`False` otherwise." msgstr "" -#: ../../library/decimal.rst:698 -msgid "" -"Return :const:`True` if the argument is a (positive or negative) zero " -"and :const:`False` otherwise." +msgid "Return :const:`True` if the argument is a (positive or negative) zero and :const:`False` otherwise." msgstr "" -#: ../../library/decimal.rst:703 -msgid "" -"Return the natural (base e) logarithm of the operand. The result is " -"correctly rounded using the :const:`ROUND_HALF_EVEN` rounding mode." +msgid "Return the natural (base e) logarithm of the operand. The result is correctly rounded using the :const:`ROUND_HALF_EVEN` rounding mode." msgstr "" -#: ../../library/decimal.rst:708 -msgid "" -"Return the base ten logarithm of the operand. The result is correctly " -"rounded using the :const:`ROUND_HALF_EVEN` rounding mode." +msgid "Return the base ten logarithm of the operand. The result is correctly rounded using the :const:`ROUND_HALF_EVEN` rounding mode." msgstr "" -#: ../../library/decimal.rst:713 -msgid "" -"For a nonzero number, return the adjusted exponent of its operand as " -"a :class:`Decimal` instance. If the operand is a zero then ``Decimal('-" -"Infinity')`` is returned and the :const:`DivisionByZero` flag is raised. If " -"the operand is an infinity then ``Decimal('Infinity')`` is returned." +msgid "For a nonzero number, return the adjusted exponent of its operand as a :class:`Decimal` instance. If the operand is a zero then ``Decimal('-Infinity')`` is returned and the :const:`DivisionByZero` flag is raised. If the operand is an infinity then ``Decimal('Infinity')`` is returned." msgstr "" -#: ../../library/decimal.rst:721 -msgid "" -":meth:`logical_and` is a logical operation which takes two *logical " -"operands* (see :ref:`logical_operands_label`). The result is the digit-wise " -"``and`` of the two operands." +msgid ":meth:`logical_and` is a logical operation which takes two *logical operands* (see :ref:`logical_operands_label`). The result is the digit-wise ``and`` of the two operands." msgstr "" -#: ../../library/decimal.rst:727 -msgid "" -":meth:`logical_invert` is a logical operation. The result is the digit-wise " -"inversion of the operand." +msgid ":meth:`logical_invert` is a logical operation. The result is the digit-wise inversion of the operand." msgstr "" -#: ../../library/decimal.rst:732 -msgid "" -":meth:`logical_or` is a logical operation which takes two *logical operands* " -"(see :ref:`logical_operands_label`). The result is the digit-wise ``or`` of " -"the two operands." +msgid ":meth:`logical_or` is a logical operation which takes two *logical operands* (see :ref:`logical_operands_label`). The result is the digit-wise ``or`` of the two operands." msgstr "" -#: ../../library/decimal.rst:738 -msgid "" -":meth:`logical_xor` is a logical operation which takes two *logical " -"operands* (see :ref:`logical_operands_label`). The result is the digit-wise " -"exclusive or of the two operands." +msgid ":meth:`logical_xor` is a logical operation which takes two *logical operands* (see :ref:`logical_operands_label`). The result is the digit-wise exclusive or of the two operands." msgstr "" -#: ../../library/decimal.rst:744 -msgid "" -"Like ``max(self, other)`` except that the context rounding rule is applied " -"before returning and that ``NaN`` values are either signaled or ignored " -"(depending on the context and whether they are signaling or quiet)." +msgid "Like ``max(self, other)`` except that the context rounding rule is applied before returning and that ``NaN`` values are either signaled or ignored (depending on the context and whether they are signaling or quiet)." msgstr "" -#: ../../library/decimal.rst:751 -msgid "" -"Similar to the :meth:`.max` method, but the comparison is done using the " -"absolute values of the operands." +msgid "Similar to the :meth:`.max` method, but the comparison is done using the absolute values of the operands." msgstr "" -#: ../../library/decimal.rst:756 -msgid "" -"Like ``min(self, other)`` except that the context rounding rule is applied " -"before returning and that ``NaN`` values are either signaled or ignored " -"(depending on the context and whether they are signaling or quiet)." +msgid "Like ``min(self, other)`` except that the context rounding rule is applied before returning and that ``NaN`` values are either signaled or ignored (depending on the context and whether they are signaling or quiet)." msgstr "" -#: ../../library/decimal.rst:763 -msgid "" -"Similar to the :meth:`.min` method, but the comparison is done using the " -"absolute values of the operands." +msgid "Similar to the :meth:`.min` method, but the comparison is done using the absolute values of the operands." msgstr "" -#: ../../library/decimal.rst:768 -msgid "" -"Return the largest number representable in the given context (or in the " -"current thread's context if no context is given) that is smaller than the " -"given operand." +msgid "Return the largest number representable in the given context (or in the current thread's context if no context is given) that is smaller than the given operand." msgstr "" -#: ../../library/decimal.rst:774 -msgid "" -"Return the smallest number representable in the given context (or in the " -"current thread's context if no context is given) that is larger than the " -"given operand." +msgid "Return the smallest number representable in the given context (or in the current thread's context if no context is given) that is larger than the given operand." msgstr "" -#: ../../library/decimal.rst:780 -msgid "" -"If the two operands are unequal, return the number closest to the first " -"operand in the direction of the second operand. If both operands are " -"numerically equal, return a copy of the first operand with the sign set to " -"be the same as the sign of the second operand." +msgid "If the two operands are unequal, return the number closest to the first operand in the direction of the second operand. If both operands are numerically equal, return a copy of the first operand with the sign set to be the same as the sign of the second operand." msgstr "" -#: ../../library/decimal.rst:787 -msgid "" -"Used for producing canonical values of an equivalence class within either " -"the current context or the specified context." +msgid "Used for producing canonical values of an equivalence class within either the current context or the specified context." msgstr "" -#: ../../library/decimal.rst:790 -msgid "" -"This has the same semantics as the unary plus operation, except that if the " -"final result is finite it is reduced to its simplest form, with all trailing " -"zeros removed and its sign preserved. That is, while the coefficient is non-" -"zero and a multiple of ten the coefficient is divided by ten and the " -"exponent is incremented by 1. Otherwise (the coefficient is zero) the " -"exponent is set to 0. In all cases the sign is unchanged." +msgid "This has the same semantics as the unary plus operation, except that if the final result is finite it is reduced to its simplest form, with all trailing zeros removed and its sign preserved. That is, while the coefficient is non-zero and a multiple of ten the coefficient is divided by ten and the exponent is incremented by 1. Otherwise (the coefficient is zero) the exponent is set to 0. In all cases the sign is unchanged." msgstr "" -#: ../../library/decimal.rst:797 -msgid "" -"For example, ``Decimal('32.100')`` and ``Decimal('0.321000e+2')`` both " -"normalize to the equivalent value ``Decimal('32.1')``." +msgid "For example, ``Decimal('32.100')`` and ``Decimal('0.321000e+2')`` both normalize to the equivalent value ``Decimal('32.1')``." msgstr "" -#: ../../library/decimal.rst:800 msgid "Note that rounding is applied *before* reducing to simplest form." msgstr "" -#: ../../library/decimal.rst:802 -msgid "" -"In the latest versions of the specification, this operation is also known as " -"``reduce``." +msgid "In the latest versions of the specification, this operation is also known as ``reduce``." msgstr "" -#: ../../library/decimal.rst:807 -msgid "" -"Return a string describing the *class* of the operand. The returned value " -"is one of the following ten strings." +msgid "Return a string describing the *class* of the operand. The returned value is one of the following ten strings." msgstr "" -#: ../../library/decimal.rst:810 msgid "``\"-Infinity\"``, indicating that the operand is negative infinity." msgstr "" -#: ../../library/decimal.rst:811 -msgid "" -"``\"-Normal\"``, indicating that the operand is a negative normal number." +msgid "``\"-Normal\"``, indicating that the operand is a negative normal number." msgstr "" -#: ../../library/decimal.rst:812 -msgid "" -"``\"-Subnormal\"``, indicating that the operand is negative and subnormal." +msgid "``\"-Subnormal\"``, indicating that the operand is negative and subnormal." msgstr "" -#: ../../library/decimal.rst:813 msgid "``\"-Zero\"``, indicating that the operand is a negative zero." msgstr "" -#: ../../library/decimal.rst:814 msgid "``\"+Zero\"``, indicating that the operand is a positive zero." msgstr "" -#: ../../library/decimal.rst:815 -msgid "" -"``\"+Subnormal\"``, indicating that the operand is positive and subnormal." +msgid "``\"+Subnormal\"``, indicating that the operand is positive and subnormal." msgstr "" -#: ../../library/decimal.rst:816 -msgid "" -"``\"+Normal\"``, indicating that the operand is a positive normal number." +msgid "``\"+Normal\"``, indicating that the operand is a positive normal number." msgstr "" -#: ../../library/decimal.rst:817 msgid "``\"+Infinity\"``, indicating that the operand is positive infinity." msgstr "" -#: ../../library/decimal.rst:818 msgid "``\"NaN\"``, indicating that the operand is a quiet NaN (Not a Number)." msgstr "" -#: ../../library/decimal.rst:819 msgid "``\"sNaN\"``, indicating that the operand is a signaling NaN." msgstr "" -#: ../../library/decimal.rst:823 -msgid "" -"Return a value equal to the first operand after rounding and having the " -"exponent of the second operand." +msgid "Return a value equal to the first operand after rounding and having the exponent of the second operand." msgstr "" -#: ../../library/decimal.rst:829 -msgid "" -"Unlike other operations, if the length of the coefficient after the quantize " -"operation would be greater than precision, then an :const:`InvalidOperation` " -"is signaled. This guarantees that, unless there is an error condition, the " -"quantized exponent is always equal to that of the right-hand operand." +msgid "Unlike other operations, if the length of the coefficient after the quantize operation would be greater than precision, then an :const:`InvalidOperation` is signaled. This guarantees that, unless there is an error condition, the quantized exponent is always equal to that of the right-hand operand." msgstr "" -#: ../../library/decimal.rst:835 -msgid "" -"Also unlike other operations, quantize never signals Underflow, even if the " -"result is subnormal and inexact." +msgid "Also unlike other operations, quantize never signals Underflow, even if the result is subnormal and inexact." msgstr "" -#: ../../library/decimal.rst:838 -msgid "" -"If the exponent of the second operand is larger than that of the first then " -"rounding may be necessary. In this case, the rounding mode is determined by " -"the ``rounding`` argument if given, else by the given ``context`` argument; " -"if neither argument is given the rounding mode of the current thread's " -"context is used." +msgid "If the exponent of the second operand is larger than that of the first then rounding may be necessary. In this case, the rounding mode is determined by the ``rounding`` argument if given, else by the given ``context`` argument; if neither argument is given the rounding mode of the current thread's context is used." msgstr "" -#: ../../library/decimal.rst:844 -msgid "" -"An error is returned whenever the resulting exponent is greater " -"than :attr:`~Context.Emax` or less than :meth:`~Context.Etiny`." +msgid "An error is returned whenever the resulting exponent is greater than :attr:`~Context.Emax` or less than :meth:`~Context.Etiny`." msgstr "" -#: ../../library/decimal.rst:849 -msgid "" -"Return ``Decimal(10)``, the radix (base) in which the :class:`Decimal` class " -"does all its arithmetic. Included for compatibility with the specification." +msgid "Return ``Decimal(10)``, the radix (base) in which the :class:`Decimal` class does all its arithmetic. Included for compatibility with the specification." msgstr "" -#: ../../library/decimal.rst:855 -msgid "" -"Return the remainder from dividing *self* by *other*. This differs from " -"``self % other`` in that the sign of the remainder is chosen so as to " -"minimize its absolute value. More precisely, the return value is ``self - n " -"* other`` where ``n`` is the integer nearest to the exact value of ``self / " -"other``, and if two integers are equally near then the even one is chosen." +msgid "Return the remainder from dividing *self* by *other*. This differs from ``self % other`` in that the sign of the remainder is chosen so as to minimize its absolute value. More precisely, the return value is ``self - n * other`` where ``n`` is the integer nearest to the exact value of ``self / other``, and if two integers are equally near then the even one is chosen." msgstr "" -#: ../../library/decimal.rst:862 msgid "If the result is zero then its sign will be the sign of *self*." msgstr "" -#: ../../library/decimal.rst:873 -msgid "" -"Return the result of rotating the digits of the first operand by an amount " -"specified by the second operand. The second operand must be an integer in " -"the range -precision through precision. The absolute value of the second " -"operand gives the number of places to rotate. If the second operand is " -"positive then rotation is to the left; otherwise rotation is to the right. " -"The coefficient of the first operand is padded on the left with zeros to " -"length precision if necessary. The sign and exponent of the first operand " -"are unchanged." +msgid "Return the result of rotating the digits of the first operand by an amount specified by the second operand. The second operand must be an integer in the range -precision through precision. The absolute value of the second operand gives the number of places to rotate. If the second operand is positive then rotation is to the left; otherwise rotation is to the right. The coefficient of the first operand is padded on the left with zeros to length precision if necessary. The sign and exponent of the first operand are unchanged." msgstr "" -#: ../../library/decimal.rst:884 -msgid "" -"Test whether self and other have the same exponent or whether both are " -"``NaN``." +msgid "Test whether self and other have the same exponent or whether both are ``NaN``." msgstr "" -#: ../../library/decimal.rst:893 -msgid "" -"Return the first operand with exponent adjusted by the second. Equivalently, " -"return the first operand multiplied by ``10**other``. The second operand " -"must be an integer." +msgid "Return the first operand with exponent adjusted by the second. Equivalently, return the first operand multiplied by ``10**other``. The second operand must be an integer." msgstr "" -#: ../../library/decimal.rst:899 -msgid "" -"Return the result of shifting the digits of the first operand by an amount " -"specified by the second operand. The second operand must be an integer in " -"the range -precision through precision. The absolute value of the second " -"operand gives the number of places to shift. If the second operand is " -"positive then the shift is to the left; otherwise the shift is to the " -"right. Digits shifted into the coefficient are zeros. The sign and " -"exponent of the first operand are unchanged." +msgid "Return the result of shifting the digits of the first operand by an amount specified by the second operand. The second operand must be an integer in the range -precision through precision. The absolute value of the second operand gives the number of places to shift. If the second operand is positive then the shift is to the left; otherwise the shift is to the right. Digits shifted into the coefficient are zeros. The sign and exponent of the first operand are unchanged." msgstr "" -#: ../../library/decimal.rst:909 msgid "Return the square root of the argument to full precision." msgstr "" -#: ../../library/decimal.rst:914 ../../library/decimal.rst:1571 -msgid "" -"Convert to a string, using engineering notation if an exponent is needed." +msgid "Convert to a string, using engineering notation if an exponent is needed." msgstr "" -#: ../../library/decimal.rst:916 ../../library/decimal.rst:1573 -msgid "" -"Engineering notation has an exponent which is a multiple of 3. This can " -"leave up to 3 digits to the left of the decimal place and may require the " -"addition of either one or two trailing zeros." +msgid "Engineering notation has an exponent which is a multiple of 3. This can leave up to 3 digits to the left of the decimal place and may require the addition of either one or two trailing zeros." msgstr "" -#: ../../library/decimal.rst:920 -msgid "" -"For example, this converts ``Decimal('123E+1')`` to ``Decimal('1.23E+3')``." +msgid "For example, this converts ``Decimal('123E+1')`` to ``Decimal('1.23E+3')``." msgstr "" -#: ../../library/decimal.rst:924 -msgid "" -"Identical to the :meth:`to_integral_value` method. The ``to_integral`` name " -"has been kept for compatibility with older versions." +msgid "Identical to the :meth:`to_integral_value` method. The ``to_integral`` name has been kept for compatibility with older versions." msgstr "" -#: ../../library/decimal.rst:929 -msgid "" -"Round to the nearest integer, signaling :const:`Inexact` or :const:`Rounded` " -"as appropriate if rounding occurs. The rounding mode is determined by the " -"``rounding`` parameter if given, else by the given ``context``. If neither " -"parameter is given then the rounding mode of the current context is used." +msgid "Round to the nearest integer, signaling :const:`Inexact` or :const:`Rounded` as appropriate if rounding occurs. The rounding mode is determined by the ``rounding`` parameter if given, else by the given ``context``. If neither parameter is given then the rounding mode of the current context is used." msgstr "" -#: ../../library/decimal.rst:937 -msgid "" -"Round to the nearest integer without signaling :const:`Inexact` " -"or :const:`Rounded`. If given, applies *rounding*; otherwise, uses the " -"rounding method in either the supplied *context* or the current context." +msgid "Round to the nearest integer without signaling :const:`Inexact` or :const:`Rounded`. If given, applies *rounding*; otherwise, uses the rounding method in either the supplied *context* or the current context." msgstr "" -#: ../../library/decimal.rst:941 msgid "Decimal numbers can be rounded using the :func:`.round` function:" msgstr "" -#: ../../library/decimal.rst:946 -msgid "" -"If *ndigits* is not given or ``None``, returns the nearest :class:`int` to " -"*number*, rounding ties to even, and ignoring the rounding mode of " -"the :class:`Decimal` context. Raises :exc:`OverflowError` if *number* is an " -"infinity or :exc:`ValueError` if it is a (quiet or signaling) NaN." +msgid "If *ndigits* is not given or ``None``, returns the nearest :class:`int` to *number*, rounding ties to even, and ignoring the rounding mode of the :class:`Decimal` context. Raises :exc:`OverflowError` if *number* is an infinity or :exc:`ValueError` if it is a (quiet or signaling) NaN." msgstr "" -#: ../../library/decimal.rst:952 -msgid "" -"If *ndigits* is an :class:`int`, the context's rounding mode is respected " -"and a :class:`Decimal` representing *number* rounded to the nearest multiple " -"of ``Decimal('1E-ndigits')`` is returned; in this case, ``round(number, " -"ndigits)`` is equivalent to ``self.quantize(Decimal('1E-ndigits'))``. " -"Returns ``Decimal('NaN')`` if *number* is a quiet NaN. " -"Raises :class:`InvalidOperation` if *number* is an infinity, a signaling " -"NaN, or if the length of the coefficient after the quantize operation would " -"be greater than the current context's precision. In other words, for the " -"non-corner cases:" -msgstr "" - -#: ../../library/decimal.rst:962 -msgid "" -"if *ndigits* is positive, return *number* rounded to *ndigits* decimal " -"places;" +msgid "If *ndigits* is an :class:`int`, the context's rounding mode is respected and a :class:`Decimal` representing *number* rounded to the nearest multiple of ``Decimal('1E-ndigits')`` is returned; in this case, ``round(number, ndigits)`` is equivalent to ``self.quantize(Decimal('1E-ndigits'))``. Returns ``Decimal('NaN')`` if *number* is a quiet NaN. Raises :class:`InvalidOperation` if *number* is an infinity, a signaling NaN, or if the length of the coefficient after the quantize operation would be greater than the current context's precision. In other words, for the non-corner cases:" +msgstr "" + +msgid "if *ndigits* is positive, return *number* rounded to *ndigits* decimal places;" msgstr "" -#: ../../library/decimal.rst:964 msgid "if *ndigits* is zero, return *number* rounded to the nearest integer;" msgstr "" -#: ../../library/decimal.rst:965 -msgid "" -"if *ndigits* is negative, return *number* rounded to the nearest multiple of " -"``10**abs(ndigits)``." +msgid "if *ndigits* is negative, return *number* rounded to the nearest multiple of ``10**abs(ndigits)``." msgstr "" -#: ../../library/decimal.rst:968 msgid "For example::" msgstr "" -#: ../../library/decimal.rst:970 msgid "" ">>> from decimal import Decimal, getcontext, ROUND_DOWN\n" ">>> getcontext().rounding = ROUND_DOWN\n" @@ -1211,67 +669,36 @@ msgid "" "Decimal('0E+1')" msgstr "" -#: ../../library/decimal.rst:987 msgid "Logical operands" msgstr "" -#: ../../library/decimal.rst:989 -msgid "" -"The :meth:`~Decimal.logical_and`, :meth:`~Decimal.logical_invert`, :meth:`~Decimal.logical_or`, " -"and :meth:`~Decimal.logical_xor` methods expect their arguments to be " -"*logical operands*. A *logical operand* is a :class:`Decimal` instance " -"whose exponent and sign are both zero, and whose digits are all either ``0`` " -"or ``1``." +msgid "The :meth:`~Decimal.logical_and`, :meth:`~Decimal.logical_invert`, :meth:`~Decimal.logical_or`, and :meth:`~Decimal.logical_xor` methods expect their arguments to be *logical operands*. A *logical operand* is a :class:`Decimal` instance whose exponent and sign are both zero, and whose digits are all either ``0`` or ``1``." msgstr "" -#: ../../library/decimal.rst:1001 msgid "Context objects" msgstr "" -#: ../../library/decimal.rst:1003 -msgid "" -"Contexts are environments for arithmetic operations. They govern precision, " -"set rules for rounding, determine which signals are treated as exceptions, " -"and limit the range for exponents." +msgid "Contexts are environments for arithmetic operations. They govern precision, set rules for rounding, determine which signals are treated as exceptions, and limit the range for exponents." msgstr "" -#: ../../library/decimal.rst:1007 -msgid "" -"Each thread has its own current context which is accessed or changed using " -"the :func:`getcontext` and :func:`setcontext` functions:" +msgid "Each thread has its own current context which is accessed or changed using the :func:`getcontext` and :func:`setcontext` functions:" msgstr "" -#: ../../library/decimal.rst:1013 msgid "Return the current context for the active thread." msgstr "" -#: ../../library/decimal.rst:1018 msgid "Set the current context for the active thread to *c*." msgstr "" -#: ../../library/decimal.rst:1020 -msgid "" -"You can also use the :keyword:`with` statement and the :func:`localcontext` " -"function to temporarily change the active context." +msgid "You can also use the :keyword:`with` statement and the :func:`localcontext` function to temporarily change the active context." msgstr "" -#: ../../library/decimal.rst:1025 -msgid "" -"Return a context manager that will set the current context for the active " -"thread to a copy of *ctx* on entry to the with-statement and restore the " -"previous context when exiting the with-statement. If no context is " -"specified, a copy of the current context is used. The *kwargs* argument is " -"used to set the attributes of the new context." +msgid "Return a context manager that will set the current context for the active thread to a copy of *ctx* on entry to the with-statement and restore the previous context when exiting the with-statement. If no context is specified, a copy of the current context is used. The *kwargs* argument is used to set the attributes of the new context." msgstr "" -#: ../../library/decimal.rst:1031 -msgid "" -"For example, the following code sets the current decimal precision to 42 " -"places, performs a calculation, and then automatically restores the previous " -"context::" +msgid "For example, the following code sets the current decimal precision to 42 places, performs a calculation, and then automatically restores the previous context::" msgstr "" -#: ../../library/decimal.rst:1034 msgid "" "from decimal import localcontext\n" "\n" @@ -1281,11 +708,9 @@ msgid "" "s = +s # Round the final result back to the default precision" msgstr "" -#: ../../library/decimal.rst:1041 msgid "Using keyword arguments, the code would be the following::" msgstr "" -#: ../../library/decimal.rst:1043 msgid "" "from decimal import localcontext\n" "\n" @@ -1294,208 +719,95 @@ msgid "" "s = +s" msgstr "" -#: ../../library/decimal.rst:1049 -msgid "" -"Raises :exc:`TypeError` if *kwargs* supplies an attribute " -"that :class:`Context` doesn't support. Raises either :exc:`TypeError` " -"or :exc:`ValueError` if *kwargs* supplies an invalid value for an attribute." +msgid "Raises :exc:`TypeError` if *kwargs* supplies an attribute that :class:`Context` doesn't support. Raises either :exc:`TypeError` or :exc:`ValueError` if *kwargs* supplies an invalid value for an attribute." msgstr "" -#: ../../library/decimal.rst:1053 -msgid "" -":meth:`localcontext` now supports setting context attributes through the use " -"of keyword arguments." +msgid ":meth:`localcontext` now supports setting context attributes through the use of keyword arguments." msgstr "" -#: ../../library/decimal.rst:1058 -msgid "" -"Return a context object initialized to the proper values for one of the IEEE " -"interchange formats. The argument must be a multiple of 32 and less " -"than :const:`IEEE_CONTEXT_MAX_BITS`." +msgid "Return a context object initialized to the proper values for one of the IEEE interchange formats. The argument must be a multiple of 32 and less than :const:`IEEE_CONTEXT_MAX_BITS`." msgstr "" -#: ../../library/decimal.rst:1064 -msgid "" -"New contexts can also be created using the :class:`Context` constructor " -"described below. In addition, the module provides three pre-made contexts:" +msgid "New contexts can also be created using the :class:`Context` constructor described below. In addition, the module provides three pre-made contexts:" msgstr "" -#: ../../library/decimal.rst:1070 -msgid "" -"This is a standard context defined by the General Decimal Arithmetic " -"Specification. Precision is set to nine. Rounding is set " -"to :const:`ROUND_HALF_UP`. All flags are cleared. All traps are enabled " -"(treated as exceptions) except :const:`Inexact`, :const:`Rounded`, " -"and :const:`Subnormal`." +msgid "This is a standard context defined by the General Decimal Arithmetic Specification. Precision is set to nine. Rounding is set to :const:`ROUND_HALF_UP`. All flags are cleared. All traps are enabled (treated as exceptions) except :const:`Inexact`, :const:`Rounded`, and :const:`Subnormal`." msgstr "" -#: ../../library/decimal.rst:1076 -msgid "" -"Because many of the traps are enabled, this context is useful for debugging." +msgid "Because many of the traps are enabled, this context is useful for debugging." msgstr "" -#: ../../library/decimal.rst:1081 -msgid "" -"This is a standard context defined by the General Decimal Arithmetic " -"Specification. Precision is set to nine. Rounding is set " -"to :const:`ROUND_HALF_EVEN`. All flags are cleared. No traps are enabled " -"(so that exceptions are not raised during computations)." +msgid "This is a standard context defined by the General Decimal Arithmetic Specification. Precision is set to nine. Rounding is set to :const:`ROUND_HALF_EVEN`. All flags are cleared. No traps are enabled (so that exceptions are not raised during computations)." msgstr "" -#: ../../library/decimal.rst:1086 -msgid "" -"Because the traps are disabled, this context is useful for applications that " -"prefer to have result value of ``NaN`` or ``Infinity`` instead of raising " -"exceptions. This allows an application to complete a run in the presence of " -"conditions that would otherwise halt the program." +msgid "Because the traps are disabled, this context is useful for applications that prefer to have result value of ``NaN`` or ``Infinity`` instead of raising exceptions. This allows an application to complete a run in the presence of conditions that would otherwise halt the program." msgstr "" -#: ../../library/decimal.rst:1094 -msgid "" -"This context is used by the :class:`Context` constructor as a prototype for " -"new contexts. Changing a field (such a precision) has the effect of " -"changing the default for new contexts created by the :class:`Context` " -"constructor." +msgid "This context is used by the :class:`Context` constructor as a prototype for new contexts. Changing a field (such a precision) has the effect of changing the default for new contexts created by the :class:`Context` constructor." msgstr "" -#: ../../library/decimal.rst:1098 -msgid "" -"This context is most useful in multi-threaded environments. Changing one of " -"the fields before threads are started has the effect of setting system-wide " -"defaults. Changing the fields after threads have started is not recommended " -"as it would require thread synchronization to prevent race conditions." +msgid "This context is most useful in multi-threaded environments. Changing one of the fields before threads are started has the effect of setting system-wide defaults. Changing the fields after threads have started is not recommended as it would require thread synchronization to prevent race conditions." msgstr "" -#: ../../library/decimal.rst:1103 -msgid "" -"In single threaded environments, it is preferable to not use this context at " -"all. Instead, simply create contexts explicitly as described below." +msgid "In single threaded environments, it is preferable to not use this context at all. Instead, simply create contexts explicitly as described below." msgstr "" -#: ../../library/decimal.rst:1106 -msgid "" -"The default values are :attr:`Context.prec`\\ =\\ " -"``28``, :attr:`Context.rounding`\\ =\\ :const:`ROUND_HALF_EVEN`, and enabled " -"traps for :class:`Overflow`, :class:`InvalidOperation`, " -"and :class:`DivisionByZero`." +msgid "The default values are :attr:`Context.prec`\\ =\\ ``28``, :attr:`Context.rounding`\\ =\\ :const:`ROUND_HALF_EVEN`, and enabled traps for :class:`Overflow`, :class:`InvalidOperation`, and :class:`DivisionByZero`." msgstr "" -#: ../../library/decimal.rst:1111 -msgid "" -"In addition to the three supplied contexts, new contexts can be created with " -"the :class:`Context` constructor." +msgid "In addition to the three supplied contexts, new contexts can be created with the :class:`Context` constructor." msgstr "" -#: ../../library/decimal.rst:1117 -msgid "" -"Creates a new context. If a field is not specified or is :const:`None`, the " -"default values are copied from the :const:`DefaultContext`. If the *flags* " -"field is not specified or is :const:`None`, all flags are cleared." +msgid "Creates a new context. If a field is not specified or is :const:`None`, the default values are copied from the :const:`DefaultContext`. If the *flags* field is not specified or is :const:`None`, all flags are cleared." msgstr "" -#: ../../library/decimal.rst:1123 -msgid "" -"An integer in the range [``1``, :const:`MAX_PREC`] that sets the precision " -"for arithmetic operations in the context." +msgid "An integer in the range [``1``, :const:`MAX_PREC`] that sets the precision for arithmetic operations in the context." msgstr "" -#: ../../library/decimal.rst:1128 msgid "One of the constants listed in the section `Rounding Modes`_." msgstr "" -#: ../../library/decimal.rst:1133 -msgid "" -"Lists of any signals to be set. Generally, new contexts should only set " -"traps and leave the flags clear." +msgid "Lists of any signals to be set. Generally, new contexts should only set traps and leave the flags clear." msgstr "" -#: ../../library/decimal.rst:1139 -msgid "" -"Integers specifying the outer limits allowable for exponents. *Emin* must be " -"in the range [:const:`MIN_EMIN`, ``0``], *Emax* in the range " -"[``0``, :const:`MAX_EMAX`]." +msgid "Integers specifying the outer limits allowable for exponents. *Emin* must be in the range [:const:`MIN_EMIN`, ``0``], *Emax* in the range [``0``, :const:`MAX_EMAX`]." msgstr "" -#: ../../library/decimal.rst:1145 -msgid "" -"Either ``0`` or ``1`` (the default). If set to ``1``, exponents are printed " -"with a capital ``E``; otherwise, a lowercase ``e`` is used: " -"``Decimal('6.02e+23')``." +msgid "Either ``0`` or ``1`` (the default). If set to ``1``, exponents are printed with a capital ``E``; otherwise, a lowercase ``e`` is used: ``Decimal('6.02e+23')``." +msgstr "" + +msgid "Either ``0`` (the default) or ``1``. If set to ``1``, the exponent ``e`` of a :class:`Decimal` instance representable in this context is strictly limited to the range ``Emin - prec + 1 <= e <= Emax - prec + 1``. If *clamp* is ``0`` then a weaker condition holds: the adjusted exponent of the :class:`Decimal` instance is at most :attr:`~Context.Emax`. When *clamp* is ``1``, a large normal number will, where possible, have its exponent reduced and a corresponding number of zeros added to its coefficient, in order to fit the exponent constraints; this preserves the value of the number but loses information about significant trailing zeros. For example::" msgstr "" -#: ../../library/decimal.rst:1151 -msgid "" -"Either ``0`` (the default) or ``1``. If set to ``1``, the exponent ``e`` of " -"a :class:`Decimal` instance representable in this context is strictly " -"limited to the range ``Emin - prec + 1 <= e <= Emax - prec + 1``. If *clamp* " -"is ``0`` then a weaker condition holds: the adjusted exponent of " -"the :class:`Decimal` instance is at most :attr:`~Context.Emax`. When " -"*clamp* is ``1``, a large normal number will, where possible, have its " -"exponent reduced and a corresponding number of zeros added to its " -"coefficient, in order to fit the exponent constraints; this preserves the " -"value of the number but loses information about significant trailing zeros. " -"For example::" -msgstr "" - -#: ../../library/decimal.rst:1162 msgid "" ">>> Context(prec=6, Emax=999, clamp=1).create_decimal('1.23e999')\n" "Decimal('1.23000E+999')" msgstr "" -#: ../../library/decimal.rst:1165 -msgid "" -"A *clamp* value of ``1`` allows compatibility with the fixed-width decimal " -"interchange formats specified in IEEE 754." +msgid "A *clamp* value of ``1`` allows compatibility with the fixed-width decimal interchange formats specified in IEEE 754." +msgstr "" + +msgid "The :class:`Context` class defines several general purpose methods as well as a large number of methods for doing arithmetic directly in a given context. In addition, for each of the :class:`Decimal` methods described above (with the exception of the :meth:`~Decimal.adjusted` and :meth:`~Decimal.as_tuple` methods) there is a corresponding :class:`Context` method. For example, for a :class:`Context` instance ``C`` and :class:`Decimal` instance ``x``, ``C.exp(x)`` is equivalent to ``x.exp(context=C)``. Each :class:`Context` method accepts a Python integer (an instance of :class:`int`) anywhere that a Decimal instance is accepted." msgstr "" -#: ../../library/decimal.rst:1168 -msgid "" -"The :class:`Context` class defines several general purpose methods as well " -"as a large number of methods for doing arithmetic directly in a given " -"context. In addition, for each of the :class:`Decimal` methods described " -"above (with the exception of the :meth:`~Decimal.adjusted` " -"and :meth:`~Decimal.as_tuple` methods) there is a " -"corresponding :class:`Context` method. For example, for a :class:`Context` " -"instance ``C`` and :class:`Decimal` instance ``x``, ``C.exp(x)`` is " -"equivalent to ``x.exp(context=C)``. Each :class:`Context` method accepts a " -"Python integer (an instance of :class:`int`) anywhere that a Decimal " -"instance is accepted." -msgstr "" - -#: ../../library/decimal.rst:1181 msgid "Resets all of the flags to ``0``." msgstr "" -#: ../../library/decimal.rst:1185 msgid "Resets all of the traps to ``0``." msgstr "" -#: ../../library/decimal.rst:1191 msgid "Return a duplicate of the context." msgstr "" -#: ../../library/decimal.rst:1195 msgid "Return a copy of the Decimal instance num." msgstr "" -#: ../../library/decimal.rst:1199 -msgid "" -"Creates a new Decimal instance from *num* but using *self* as context. " -"Unlike the :class:`Decimal` constructor, the context precision, rounding " -"method, flags, and traps are applied to the conversion." +msgid "Creates a new Decimal instance from *num* but using *self* as context. Unlike the :class:`Decimal` constructor, the context precision, rounding method, flags, and traps are applied to the conversion." msgstr "" -#: ../../library/decimal.rst:1203 -msgid "" -"This is useful because constants are often given to a greater precision than " -"is needed by the application. Another benefit is that rounding immediately " -"eliminates unintended effects from digits beyond the current precision. In " -"the following example, using unrounded inputs means that adding zero to a " -"sum can change the result:" +msgid "This is useful because constants are often given to a greater precision than is needed by the application. Another benefit is that rounding immediately eliminates unintended effects from digits beyond the current precision. In the following example, using unrounded inputs means that adding zero to a sum can change the result:" msgstr "" -#: ../../library/decimal.rst:1209 msgid "" ">>> getcontext().prec = 3\n" ">>> Decimal('3.4445') + Decimal('1.0023')\n" @@ -1504,22 +816,12 @@ msgid "" "Decimal('4.44')" msgstr "" -#: ../../library/decimal.rst:1217 -msgid "" -"This method implements the to-number operation of the IBM specification. If " -"the argument is a string, no leading or trailing whitespace or underscores " -"are permitted." +msgid "This method implements the to-number operation of the IBM specification. If the argument is a string, no leading or trailing whitespace or underscores are permitted." msgstr "" -#: ../../library/decimal.rst:1223 -msgid "" -"Creates a new Decimal instance from a float *f* but rounding using *self* as " -"the context. Unlike the :meth:`Decimal.from_float` class method, the " -"context precision, rounding method, flags, and traps are applied to the " -"conversion." +msgid "Creates a new Decimal instance from a float *f* but rounding using *self* as the context. Unlike the :meth:`Decimal.from_float` class method, the context precision, rounding method, flags, and traps are applied to the conversion." msgstr "" -#: ../../library/decimal.rst:1228 msgid "" ">>> context = Context(prec=5, rounding=ROUND_DOWN)\n" ">>> context.create_decimal_from_float(math.pi)\n" @@ -1531,494 +833,321 @@ msgid "" "decimal.Inexact: None" msgstr "" -#: ../../library/decimal.rst:1243 -msgid "" -"Returns a value equal to ``Emin - prec + 1`` which is the minimum exponent " -"value for subnormal results. When underflow occurs, the exponent is set " -"to :const:`Etiny`." +msgid "Returns a value equal to ``Emin - prec + 1`` which is the minimum exponent value for subnormal results. When underflow occurs, the exponent is set to :const:`Etiny`." msgstr "" -#: ../../library/decimal.rst:1249 msgid "Returns a value equal to ``Emax - prec + 1``." msgstr "" -#: ../../library/decimal.rst:1251 -msgid "" -"The usual approach to working with decimals is to create :class:`Decimal` " -"instances and then apply arithmetic operations which take place within the " -"current context for the active thread. An alternative approach is to use " -"context methods for calculating within a specific context. The methods are " -"similar to those for the :class:`Decimal` class and are only briefly " -"recounted here." +msgid "The usual approach to working with decimals is to create :class:`Decimal` instances and then apply arithmetic operations which take place within the current context for the active thread. An alternative approach is to use context methods for calculating within a specific context. The methods are similar to those for the :class:`Decimal` class and are only briefly recounted here." msgstr "" -#: ../../library/decimal.rst:1261 msgid "Returns the absolute value of *x*." msgstr "" -#: ../../library/decimal.rst:1266 msgid "Return the sum of *x* and *y*." msgstr "" -#: ../../library/decimal.rst:1271 msgid "Returns the same Decimal object *x*." msgstr "" -#: ../../library/decimal.rst:1276 msgid "Compares *x* and *y* numerically." msgstr "" -#: ../../library/decimal.rst:1281 msgid "Compares the values of the two operands numerically." msgstr "" -#: ../../library/decimal.rst:1286 msgid "Compares two operands using their abstract representation." msgstr "" -#: ../../library/decimal.rst:1291 -msgid "" -"Compares two operands using their abstract representation, ignoring sign." +msgid "Compares two operands using their abstract representation, ignoring sign." msgstr "" -#: ../../library/decimal.rst:1296 msgid "Returns a copy of *x* with the sign set to 0." msgstr "" -#: ../../library/decimal.rst:1301 msgid "Returns a copy of *x* with the sign inverted." msgstr "" -#: ../../library/decimal.rst:1306 msgid "Copies the sign from *y* to *x*." msgstr "" -#: ../../library/decimal.rst:1311 msgid "Return *x* divided by *y*." msgstr "" -#: ../../library/decimal.rst:1316 msgid "Return *x* divided by *y*, truncated to an integer." msgstr "" -#: ../../library/decimal.rst:1321 msgid "Divides two numbers and returns the integer part of the result." msgstr "" -#: ../../library/decimal.rst:1326 msgid "Returns ``e ** x``." msgstr "" -#: ../../library/decimal.rst:1331 msgid "Returns *x* multiplied by *y*, plus *z*." msgstr "" -#: ../../library/decimal.rst:1336 msgid "Returns ``True`` if *x* is canonical; otherwise returns ``False``." msgstr "" -#: ../../library/decimal.rst:1341 msgid "Returns ``True`` if *x* is finite; otherwise returns ``False``." msgstr "" -#: ../../library/decimal.rst:1346 msgid "Returns ``True`` if *x* is infinite; otherwise returns ``False``." msgstr "" -#: ../../library/decimal.rst:1351 msgid "Returns ``True`` if *x* is a qNaN or sNaN; otherwise returns ``False``." msgstr "" -#: ../../library/decimal.rst:1356 -msgid "" -"Returns ``True`` if *x* is a normal number; otherwise returns ``False``." +msgid "Returns ``True`` if *x* is a normal number; otherwise returns ``False``." msgstr "" -#: ../../library/decimal.rst:1361 msgid "Returns ``True`` if *x* is a quiet NaN; otherwise returns ``False``." msgstr "" -#: ../../library/decimal.rst:1366 msgid "Returns ``True`` if *x* is negative; otherwise returns ``False``." msgstr "" -#: ../../library/decimal.rst:1371 -msgid "" -"Returns ``True`` if *x* is a signaling NaN; otherwise returns ``False``." +msgid "Returns ``True`` if *x* is a signaling NaN; otherwise returns ``False``." msgstr "" -#: ../../library/decimal.rst:1376 msgid "Returns ``True`` if *x* is subnormal; otherwise returns ``False``." msgstr "" -#: ../../library/decimal.rst:1381 msgid "Returns ``True`` if *x* is a zero; otherwise returns ``False``." msgstr "" -#: ../../library/decimal.rst:1386 msgid "Returns the natural (base e) logarithm of *x*." msgstr "" -#: ../../library/decimal.rst:1391 msgid "Returns the base 10 logarithm of *x*." msgstr "" -#: ../../library/decimal.rst:1396 msgid "Returns the exponent of the magnitude of the operand's MSD." msgstr "" -#: ../../library/decimal.rst:1401 msgid "Applies the logical operation *and* between each operand's digits." msgstr "" -#: ../../library/decimal.rst:1406 msgid "Invert all the digits in *x*." msgstr "" -#: ../../library/decimal.rst:1411 msgid "Applies the logical operation *or* between each operand's digits." msgstr "" -#: ../../library/decimal.rst:1416 msgid "Applies the logical operation *xor* between each operand's digits." msgstr "" -#: ../../library/decimal.rst:1421 msgid "Compares two values numerically and returns the maximum." msgstr "" -#: ../../library/decimal.rst:1426 ../../library/decimal.rst:1436 msgid "Compares the values numerically with their sign ignored." msgstr "" -#: ../../library/decimal.rst:1431 msgid "Compares two values numerically and returns the minimum." msgstr "" -#: ../../library/decimal.rst:1441 msgid "Minus corresponds to the unary prefix minus operator in Python." msgstr "" -#: ../../library/decimal.rst:1446 msgid "Return the product of *x* and *y*." msgstr "" -#: ../../library/decimal.rst:1451 msgid "Returns the largest representable number smaller than *x*." msgstr "" -#: ../../library/decimal.rst:1456 msgid "Returns the smallest representable number larger than *x*." msgstr "" -#: ../../library/decimal.rst:1461 msgid "Returns the number closest to *x*, in direction towards *y*." msgstr "" -#: ../../library/decimal.rst:1466 msgid "Reduces *x* to its simplest form." msgstr "" -#: ../../library/decimal.rst:1471 msgid "Returns an indication of the class of *x*." msgstr "" -#: ../../library/decimal.rst:1476 -msgid "" -"Plus corresponds to the unary prefix plus operator in Python. This " -"operation applies the context precision and rounding, so it is *not* an " -"identity operation." +msgid "Plus corresponds to the unary prefix plus operator in Python. This operation applies the context precision and rounding, so it is *not* an identity operation." msgstr "" -#: ../../library/decimal.rst:1483 msgid "Return ``x`` to the power of ``y``, reduced modulo ``modulo`` if given." msgstr "" -#: ../../library/decimal.rst:1485 -msgid "" -"With two arguments, compute ``x**y``. If ``x`` is negative then ``y`` must " -"be integral. The result will be inexact unless ``y`` is integral and the " -"result is finite and can be expressed exactly in 'precision' digits. The " -"rounding mode of the context is used. Results are always correctly rounded " -"in the Python version." +msgid "With two arguments, compute ``x**y``. If ``x`` is negative then ``y`` must be integral. The result will be inexact unless ``y`` is integral and the result is finite and can be expressed exactly in 'precision' digits. The rounding mode of the context is used. Results are always correctly rounded in the Python version." msgstr "" -#: ../../library/decimal.rst:1491 -msgid "" -"``Decimal(0) ** Decimal(0)`` results in ``InvalidOperation``, and if " -"``InvalidOperation`` is not trapped, then results in ``Decimal('NaN')``." +msgid "``Decimal(0) ** Decimal(0)`` results in ``InvalidOperation``, and if ``InvalidOperation`` is not trapped, then results in ``Decimal('NaN')``." msgstr "" -#: ../../library/decimal.rst:1494 -msgid "" -"The C module computes :meth:`power` in terms of the correctly " -"rounded :meth:`exp` and :meth:`ln` functions. The result is well-defined but " -"only \"almost always correctly rounded\"." +msgid "The C module computes :meth:`power` in terms of the correctly rounded :meth:`exp` and :meth:`ln` functions. The result is well-defined but only \"almost always correctly rounded\"." msgstr "" -#: ../../library/decimal.rst:1499 -msgid "" -"With three arguments, compute ``(x**y) % modulo``. For the three argument " -"form, the following restrictions on the arguments hold:" +msgid "With three arguments, compute ``(x**y) % modulo``. For the three argument form, the following restrictions on the arguments hold:" msgstr "" -#: ../../library/decimal.rst:1502 msgid "all three arguments must be integral" msgstr "" -#: ../../library/decimal.rst:1503 msgid "``y`` must be nonnegative" msgstr "" -#: ../../library/decimal.rst:1504 msgid "at least one of ``x`` or ``y`` must be nonzero" msgstr "" -#: ../../library/decimal.rst:1505 msgid "``modulo`` must be nonzero and have at most 'precision' digits" msgstr "" -#: ../../library/decimal.rst:1507 -msgid "" -"The value resulting from ``Context.power(x, y, modulo)`` is equal to the " -"value that would be obtained by computing ``(x**y) % modulo`` with unbounded " -"precision, but is computed more efficiently. The exponent of the result is " -"zero, regardless of the exponents of ``x``, ``y`` and ``modulo``. The " -"result is always exact." +msgid "The value resulting from ``Context.power(x, y, modulo)`` is equal to the value that would be obtained by computing ``(x**y) % modulo`` with unbounded precision, but is computed more efficiently. The exponent of the result is zero, regardless of the exponents of ``x``, ``y`` and ``modulo``. The result is always exact." msgstr "" -#: ../../library/decimal.rst:1517 msgid "Returns a value equal to *x* (rounded), having the exponent of *y*." msgstr "" -#: ../../library/decimal.rst:1522 msgid "Just returns 10, as this is Decimal, :)" msgstr "" -#: ../../library/decimal.rst:1527 msgid "Returns the remainder from integer division." msgstr "" -#: ../../library/decimal.rst:1529 -msgid "" -"The sign of the result, if non-zero, is the same as that of the original " -"dividend." +msgid "The sign of the result, if non-zero, is the same as that of the original dividend." msgstr "" -#: ../../library/decimal.rst:1535 -msgid "" -"Returns ``x - y * n``, where *n* is the integer nearest the exact value of " -"``x / y`` (if the result is 0 then its sign will be the sign of *x*)." +msgid "Returns ``x - y * n``, where *n* is the integer nearest the exact value of ``x / y`` (if the result is 0 then its sign will be the sign of *x*)." msgstr "" -#: ../../library/decimal.rst:1541 msgid "Returns a rotated copy of *x*, *y* times." msgstr "" -#: ../../library/decimal.rst:1546 msgid "Returns ``True`` if the two operands have the same exponent." msgstr "" -#: ../../library/decimal.rst:1551 msgid "Returns the first operand after adding the second value its exp." msgstr "" -#: ../../library/decimal.rst:1556 msgid "Returns a shifted copy of *x*, *y* times." msgstr "" -#: ../../library/decimal.rst:1561 msgid "Square root of a non-negative number to context precision." msgstr "" -#: ../../library/decimal.rst:1566 msgid "Return the difference between *x* and *y*." msgstr "" -#: ../../library/decimal.rst:1580 msgid "Rounds to an integer." msgstr "" -#: ../../library/decimal.rst:1585 msgid "Converts a number to a string using scientific notation." msgstr "" -#: ../../library/decimal.rst:1592 msgid "Constants" msgstr "" -#: ../../library/decimal.rst:1594 -msgid "" -"The constants in this section are only relevant for the C module. They are " -"also included in the pure Python version for compatibility." +msgid "The constants in this section are only relevant for the C module. They are also included in the pure Python version for compatibility." msgstr "" -#: ../../library/decimal.rst:1598 msgid "32-bit" msgstr "" -#: ../../library/decimal.rst:1598 msgid "64-bit" msgstr "" -#: ../../library/decimal.rst:1600 ../../library/decimal.rst:1602 msgid "``425000000``" msgstr "" -#: ../../library/decimal.rst:1600 ../../library/decimal.rst:1602 msgid "``999999999999999999``" msgstr "" -#: ../../library/decimal.rst:1604 msgid "``-425000000``" msgstr "" -#: ../../library/decimal.rst:1604 msgid "``-999999999999999999``" msgstr "" -#: ../../library/decimal.rst:1606 msgid "``-849999999``" msgstr "" -#: ../../library/decimal.rst:1606 msgid "``-1999999999999999997``" msgstr "" -#: ../../library/decimal.rst:1608 msgid "``256``" msgstr "" -#: ../../library/decimal.rst:1608 msgid "``512``" msgstr "" -#: ../../library/decimal.rst:1613 -msgid "" -"The value is ``True``. Deprecated, because Python now always has threads." +msgid "The value is ``True``. Deprecated, because Python now always has threads." msgstr "" -#: ../../library/decimal.rst:1619 -msgid "" -"The default value is ``True``. If Python is :option:`configured using the --" -"without-decimal-contextvar option <--without-decimal-contextvar>`, the C " -"version uses a thread-local rather than a coroutine-local context and the " -"value is ``False``. This is slightly faster in some nested context " -"scenarios." +msgid "The default value is ``True``. If Python is :option:`configured using the --without-decimal-contextvar option <--without-decimal-contextvar>`, the C version uses a thread-local rather than a coroutine-local context and the value is ``False``. This is slightly faster in some nested context scenarios." msgstr "" -#: ../../library/decimal.rst:1628 msgid "Rounding modes" msgstr "" -#: ../../library/decimal.rst:1632 msgid "Round towards ``Infinity``." msgstr "" -#: ../../library/decimal.rst:1636 msgid "Round towards zero." msgstr "" -#: ../../library/decimal.rst:1640 msgid "Round towards ``-Infinity``." msgstr "" -#: ../../library/decimal.rst:1644 msgid "Round to nearest with ties going towards zero." msgstr "" -#: ../../library/decimal.rst:1648 msgid "Round to nearest with ties going to nearest even integer." msgstr "" -#: ../../library/decimal.rst:1652 msgid "Round to nearest with ties going away from zero." msgstr "" -#: ../../library/decimal.rst:1656 msgid "Round away from zero." msgstr "" -#: ../../library/decimal.rst:1660 -msgid "" -"Round away from zero if last digit after rounding towards zero would have " -"been 0 or 5; otherwise round towards zero." +msgid "Round away from zero if last digit after rounding towards zero would have been 0 or 5; otherwise round towards zero." msgstr "" -#: ../../library/decimal.rst:1667 msgid "Signals" msgstr "" -#: ../../library/decimal.rst:1669 -msgid "" -"Signals represent conditions that arise during computation. Each corresponds " -"to one context flag and one context trap enabler." +msgid "Signals represent conditions that arise during computation. Each corresponds to one context flag and one context trap enabler." msgstr "" -#: ../../library/decimal.rst:1672 -msgid "" -"The context flag is set whenever the condition is encountered. After the " -"computation, flags may be checked for informational purposes (for instance, " -"to determine whether a computation was exact). After checking the flags, be " -"sure to clear all flags before starting the next computation." +msgid "The context flag is set whenever the condition is encountered. After the computation, flags may be checked for informational purposes (for instance, to determine whether a computation was exact). After checking the flags, be sure to clear all flags before starting the next computation." msgstr "" -#: ../../library/decimal.rst:1677 -msgid "" -"If the context's trap enabler is set for the signal, then the condition " -"causes a Python exception to be raised. For example, if " -"the :class:`DivisionByZero` trap is set, then a :exc:`DivisionByZero` " -"exception is raised upon encountering the condition." +msgid "If the context's trap enabler is set for the signal, then the condition causes a Python exception to be raised. For example, if the :class:`DivisionByZero` trap is set, then a :exc:`DivisionByZero` exception is raised upon encountering the condition." msgstr "" -#: ../../library/decimal.rst:1685 msgid "Altered an exponent to fit representation constraints." msgstr "" -#: ../../library/decimal.rst:1687 -msgid "" -"Typically, clamping occurs when an exponent falls outside the " -"context's :attr:`~Context.Emin` and :attr:`~Context.Emax` limits. If " -"possible, the exponent is reduced to fit by adding zeros to the coefficient." +msgid "Typically, clamping occurs when an exponent falls outside the context's :attr:`~Context.Emin` and :attr:`~Context.Emax` limits. If possible, the exponent is reduced to fit by adding zeros to the coefficient." msgstr "" -#: ../../library/decimal.rst:1694 msgid "Base class for other signals and a subclass of :exc:`ArithmeticError`." msgstr "" -#: ../../library/decimal.rst:1699 msgid "Signals the division of a non-infinite number by zero." msgstr "" -#: ../../library/decimal.rst:1701 -msgid "" -"Can occur with division, modulo division, or when raising a number to a " -"negative power. If this signal is not trapped, returns ``Infinity`` or ``-" -"Infinity`` with the sign determined by the inputs to the calculation." +msgid "Can occur with division, modulo division, or when raising a number to a negative power. If this signal is not trapped, returns ``Infinity`` or ``-Infinity`` with the sign determined by the inputs to the calculation." msgstr "" -#: ../../library/decimal.rst:1708 msgid "Indicates that rounding occurred and the result is not exact." msgstr "" -#: ../../library/decimal.rst:1710 -msgid "" -"Signals when non-zero digits were discarded during rounding. The rounded " -"result is returned. The signal flag or trap is used to detect when results " -"are inexact." +msgid "Signals when non-zero digits were discarded during rounding. The rounded result is returned. The signal flag or trap is used to detect when results are inexact." msgstr "" -#: ../../library/decimal.rst:1717 msgid "An invalid operation was performed." msgstr "" -#: ../../library/decimal.rst:1719 -msgid "" -"Indicates that an operation was requested that does not make sense. If not " -"trapped, returns ``NaN``. Possible causes include::" +msgid "Indicates that an operation was requested that does not make sense. If not trapped, returns ``NaN``. Possible causes include::" msgstr "" -#: ../../library/decimal.rst:1722 msgid "" "Infinity - Infinity\n" "0 * Infinity\n" @@ -2031,77 +1160,42 @@ msgid "" "x ** Infinity" msgstr "" -#: ../../library/decimal.rst:1735 msgid "Numerical overflow." msgstr "" -#: ../../library/decimal.rst:1737 -msgid "" -"Indicates the exponent is larger than :attr:`Context.Emax` after rounding " -"has occurred. If not trapped, the result depends on the rounding mode, " -"either pulling inward to the largest representable finite number or rounding " -"outward to ``Infinity``. In either case, :class:`Inexact` " -"and :class:`Rounded` are also signaled." +msgid "Indicates the exponent is larger than :attr:`Context.Emax` after rounding has occurred. If not trapped, the result depends on the rounding mode, either pulling inward to the largest representable finite number or rounding outward to ``Infinity``. In either case, :class:`Inexact` and :class:`Rounded` are also signaled." msgstr "" -#: ../../library/decimal.rst:1746 msgid "Rounding occurred though possibly no information was lost." msgstr "" -#: ../../library/decimal.rst:1748 -msgid "" -"Signaled whenever rounding discards digits; even if those digits are zero " -"(such as rounding ``5.00`` to ``5.0``). If not trapped, returns the result " -"unchanged. This signal is used to detect loss of significant digits." +msgid "Signaled whenever rounding discards digits; even if those digits are zero (such as rounding ``5.00`` to ``5.0``). If not trapped, returns the result unchanged. This signal is used to detect loss of significant digits." msgstr "" -#: ../../library/decimal.rst:1756 msgid "Exponent was lower than :attr:`~Context.Emin` prior to rounding." msgstr "" -#: ../../library/decimal.rst:1758 -msgid "" -"Occurs when an operation result is subnormal (the exponent is too small). If " -"not trapped, returns the result unchanged." +msgid "Occurs when an operation result is subnormal (the exponent is too small). If not trapped, returns the result unchanged." msgstr "" -#: ../../library/decimal.rst:1764 msgid "Numerical underflow with result rounded to zero." msgstr "" -#: ../../library/decimal.rst:1766 -msgid "" -"Occurs when a subnormal result is pushed to zero by " -"rounding. :class:`Inexact` and :class:`Subnormal` are also signaled." +msgid "Occurs when a subnormal result is pushed to zero by rounding. :class:`Inexact` and :class:`Subnormal` are also signaled." msgstr "" -#: ../../library/decimal.rst:1772 msgid "Enable stricter semantics for mixing floats and Decimals." msgstr "" -#: ../../library/decimal.rst:1774 -msgid "" -"If the signal is not trapped (default), mixing floats and Decimals is " -"permitted in the :class:`~decimal.Decimal` " -"constructor, :meth:`~decimal.Context.create_decimal` and all comparison " -"operators. Both conversion and comparisons are exact. Any occurrence of a " -"mixed operation is silently recorded by setting :exc:`FloatOperation` in the " -"context flags. Explicit conversions with :meth:`~decimal.Decimal.from_float` " -"or :meth:`~decimal.Context.create_decimal_from_float` do not set the flag." +msgid "If the signal is not trapped (default), mixing floats and Decimals is permitted in the :class:`~decimal.Decimal` constructor, :meth:`~decimal.Context.create_decimal` and all comparison operators. Both conversion and comparisons are exact. Any occurrence of a mixed operation is silently recorded by setting :exc:`FloatOperation` in the context flags. Explicit conversions with :meth:`~decimal.Decimal.from_float` or :meth:`~decimal.Context.create_decimal_from_float` do not set the flag." msgstr "" -#: ../../library/decimal.rst:1782 -msgid "" -"Otherwise (the signal is trapped), only equality comparisons and explicit " -"conversions are silent. All other mixed operations " -"raise :exc:`FloatOperation`." +msgid "Otherwise (the signal is trapped), only equality comparisons and explicit conversions are silent. All other mixed operations raise :exc:`FloatOperation`." msgstr "" -#: ../../library/decimal.rst:1786 msgid "The following table summarizes the hierarchy of signals::" msgstr "" -#: ../../library/decimal.rst:1788 msgid "" "exceptions.ArithmeticError(exceptions.Exception)\n" " DecimalException\n" @@ -2116,32 +1210,18 @@ msgid "" " FloatOperation(DecimalException, exceptions.TypeError)" msgstr "" -#: ../../library/decimal.rst:1807 msgid "Floating-point notes" msgstr "" -#: ../../library/decimal.rst:1811 msgid "Mitigating round-off error with increased precision" msgstr "" -#: ../../library/decimal.rst:1813 -msgid "" -"The use of decimal floating point eliminates decimal representation error " -"(making it possible to represent ``0.1`` exactly); however, some operations " -"can still incur round-off error when non-zero digits exceed the fixed " -"precision." +msgid "The use of decimal floating point eliminates decimal representation error (making it possible to represent ``0.1`` exactly); however, some operations can still incur round-off error when non-zero digits exceed the fixed precision." msgstr "" -#: ../../library/decimal.rst:1817 -msgid "" -"The effects of round-off error can be amplified by the addition or " -"subtraction of nearly offsetting quantities resulting in loss of " -"significance. Knuth provides two instructive examples where rounded " -"floating-point arithmetic with insufficient precision causes the breakdown " -"of the associative and distributive properties of addition:" +msgid "The effects of round-off error can be amplified by the addition or subtraction of nearly offsetting quantities resulting in loss of significance. Knuth provides two instructive examples where rounded floating-point arithmetic with insufficient precision causes the breakdown of the associative and distributive properties of addition:" msgstr "" -#: ../../library/decimal.rst:1823 msgid "" "# Examples from Seminumerical Algorithms, Section 4.2.2.\n" ">>> from decimal import Decimal, getcontext\n" @@ -2160,13 +1240,9 @@ msgid "" "Decimal('0.0060000')" msgstr "" -#: ../../library/decimal.rst:1841 -msgid "" -"The :mod:`!decimal` module makes it possible to restore the identities by " -"expanding the precision sufficiently to avoid loss of significance:" +msgid "The :mod:`!decimal` module makes it possible to restore the identities by expanding the precision sufficiently to avoid loss of significance:" msgstr "" -#: ../../library/decimal.rst:1844 msgid "" ">>> getcontext().prec = 20\n" ">>> u, v, w = Decimal(11111113), Decimal(-11111111), Decimal('7.51111111')\n" @@ -2182,130 +1258,51 @@ msgid "" "Decimal('0.0060000')" msgstr "" -#: ../../library/decimal.rst:1861 msgid "Special values" msgstr "" -#: ../../library/decimal.rst:1863 -msgid "" -"The number system for the :mod:`!decimal` module provides special values " -"including ``NaN``, ``sNaN``, ``-Infinity``, ``Infinity``, and two zeros, " -"``+0`` and ``-0``." +msgid "The number system for the :mod:`!decimal` module provides special values including ``NaN``, ``sNaN``, ``-Infinity``, ``Infinity``, and two zeros, ``+0`` and ``-0``." msgstr "" -#: ../../library/decimal.rst:1867 -msgid "" -"Infinities can be constructed directly with: ``Decimal('Infinity')``. Also, " -"they can arise from dividing by zero when the :exc:`DivisionByZero` signal " -"is not trapped. Likewise, when the :exc:`Overflow` signal is not trapped, " -"infinity can result from rounding beyond the limits of the largest " -"representable number." +msgid "Infinities can be constructed directly with: ``Decimal('Infinity')``. Also, they can arise from dividing by zero when the :exc:`DivisionByZero` signal is not trapped. Likewise, when the :exc:`Overflow` signal is not trapped, infinity can result from rounding beyond the limits of the largest representable number." msgstr "" -#: ../../library/decimal.rst:1872 -msgid "" -"The infinities are signed (affine) and can be used in arithmetic operations " -"where they get treated as very large, indeterminate numbers. For instance, " -"adding a constant to infinity gives another infinite result." +msgid "The infinities are signed (affine) and can be used in arithmetic operations where they get treated as very large, indeterminate numbers. For instance, adding a constant to infinity gives another infinite result." msgstr "" -#: ../../library/decimal.rst:1876 -msgid "" -"Some operations are indeterminate and return ``NaN``, or if " -"the :exc:`InvalidOperation` signal is trapped, raise an exception. For " -"example, ``0/0`` returns ``NaN`` which means \"not a number\". This variety " -"of ``NaN`` is quiet and, once created, will flow through other computations " -"always resulting in another ``NaN``. This behavior can be useful for a " -"series of computations that occasionally have missing inputs --- it allows " -"the calculation to proceed while flagging specific results as invalid." +msgid "Some operations are indeterminate and return ``NaN``, or if the :exc:`InvalidOperation` signal is trapped, raise an exception. For example, ``0/0`` returns ``NaN`` which means \"not a number\". This variety of ``NaN`` is quiet and, once created, will flow through other computations always resulting in another ``NaN``. This behavior can be useful for a series of computations that occasionally have missing inputs --- it allows the calculation to proceed while flagging specific results as invalid." msgstr "" -#: ../../library/decimal.rst:1884 -msgid "" -"A variant is ``sNaN`` which signals rather than remaining quiet after every " -"operation. This is a useful return value when an invalid result needs to " -"interrupt a calculation for special handling." +msgid "A variant is ``sNaN`` which signals rather than remaining quiet after every operation. This is a useful return value when an invalid result needs to interrupt a calculation for special handling." msgstr "" -#: ../../library/decimal.rst:1888 -msgid "" -"The behavior of Python's comparison operators can be a little surprising " -"where a ``NaN`` is involved. A test for equality where one of the operands " -"is a quiet or signaling ``NaN`` always returns :const:`False` (even when " -"doing ``Decimal('NaN')==Decimal('NaN')``), while a test for inequality " -"always returns :const:`True`. An attempt to compare two Decimals using any " -"of the ``<``, ``<=``, ``>`` or ``>=`` operators will raise " -"the :exc:`InvalidOperation` signal if either operand is a ``NaN``, and " -"return :const:`False` if this signal is not trapped. Note that the General " -"Decimal Arithmetic specification does not specify the behavior of direct " -"comparisons; these rules for comparisons involving a ``NaN`` were taken from " -"the IEEE 854 standard (see Table 3 in section 5.7). To ensure strict " -"standards-compliance, use the :meth:`~Decimal.compare` " -"and :meth:`~Decimal.compare_signal` methods instead." -msgstr "" - -#: ../../library/decimal.rst:1901 -msgid "" -"The signed zeros can result from calculations that underflow. They keep the " -"sign that would have resulted if the calculation had been carried out to " -"greater precision. Since their magnitude is zero, both positive and " -"negative zeros are treated as equal and their sign is informational." +msgid "The behavior of Python's comparison operators can be a little surprising where a ``NaN`` is involved. A test for equality where one of the operands is a quiet or signaling ``NaN`` always returns :const:`False` (even when doing ``Decimal('NaN')==Decimal('NaN')``), while a test for inequality always returns :const:`True`. An attempt to compare two Decimals using any of the ``<``, ``<=``, ``>`` or ``>=`` operators will raise the :exc:`InvalidOperation` signal if either operand is a ``NaN``, and return :const:`False` if this signal is not trapped. Note that the General Decimal Arithmetic specification does not specify the behavior of direct comparisons; these rules for comparisons involving a ``NaN`` were taken from the IEEE 854 standard (see Table 3 in section 5.7). To ensure strict standards-compliance, use the :meth:`~Decimal.compare` and :meth:`~Decimal.compare_signal` methods instead." msgstr "" -#: ../../library/decimal.rst:1906 -msgid "" -"In addition to the two signed zeros which are distinct yet equal, there are " -"various representations of zero with differing precisions yet equivalent in " -"value. This takes a bit of getting used to. For an eye accustomed to " -"normalized floating-point representations, it is not immediately obvious " -"that the following calculation returns a value equal to zero:" +msgid "The signed zeros can result from calculations that underflow. They keep the sign that would have resulted if the calculation had been carried out to greater precision. Since their magnitude is zero, both positive and negative zeros are treated as equal and their sign is informational." +msgstr "" + +msgid "In addition to the two signed zeros which are distinct yet equal, there are various representations of zero with differing precisions yet equivalent in value. This takes a bit of getting used to. For an eye accustomed to normalized floating-point representations, it is not immediately obvious that the following calculation returns a value equal to zero:" msgstr "" -#: ../../library/decimal.rst:1921 msgid "Working with threads" msgstr "" -#: ../../library/decimal.rst:1923 -msgid "" -"The :func:`getcontext` function accesses a different :class:`Context` object " -"for each thread. Having separate thread contexts means that threads may " -"make changes (such as ``getcontext().prec=10``) without interfering with " -"other threads." +msgid "The :func:`getcontext` function accesses a different :class:`Context` object for each thread. Having separate thread contexts means that threads may make changes (such as ``getcontext().prec=10``) without interfering with other threads." msgstr "" -#: ../../library/decimal.rst:1927 -msgid "" -"Likewise, the :func:`setcontext` function automatically assigns its target " -"to the current thread." +msgid "Likewise, the :func:`setcontext` function automatically assigns its target to the current thread." msgstr "" -#: ../../library/decimal.rst:1930 -msgid "" -"If :func:`setcontext` has not been called before :func:`getcontext`, " -"then :func:`getcontext` will automatically create a new context for use in " -"the current thread. New context objects have default values set from " -"the :data:`decimal.DefaultContext` object." +msgid "If :func:`setcontext` has not been called before :func:`getcontext`, then :func:`getcontext` will automatically create a new context for use in the current thread. New context objects have default values set from the :data:`decimal.DefaultContext` object." msgstr "" -#: ../../library/decimal.rst:1935 -msgid "" -"The :data:`sys.flags.thread_inherit_context` flag affects the context for " -"new threads. If the flag is false, new threads will start with an empty " -"context. In this case, :func:`getcontext` will create a new context object " -"when called and use the default values from *DefaultContext*. If the flag " -"is true, new threads will start with a copy of context from the caller " -"of :meth:`threading.Thread.start`." +msgid "The :data:`sys.flags.thread_inherit_context` flag affects the context for new threads. If the flag is false, new threads will start with an empty context. In this case, :func:`getcontext` will create a new context object when called and use the default values from *DefaultContext*. If the flag is true, new threads will start with a copy of context from the caller of :meth:`threading.Thread.start`." msgstr "" -#: ../../library/decimal.rst:1942 -msgid "" -"To control the defaults so that each thread will use the same values " -"throughout the application, directly modify the *DefaultContext* object. " -"This should be done *before* any threads are started so that there won't be " -"a race condition between threads calling :func:`getcontext`. For example::" +msgid "To control the defaults so that each thread will use the same values throughout the application, directly modify the *DefaultContext* object. This should be done *before* any threads are started so that there won't be a race condition between threads calling :func:`getcontext`. For example::" msgstr "" -#: ../../library/decimal.rst:1947 msgid "" "# Set applicationwide defaults for all threads about to be launched\n" "DefaultContext.prec = 12\n" @@ -2321,17 +1318,12 @@ msgid "" " . . ." msgstr "" -#: ../../library/decimal.rst:1966 msgid "Recipes" msgstr "" -#: ../../library/decimal.rst:1968 -msgid "" -"Here are a few recipes that serve as utility functions and that demonstrate " -"ways to work with the :class:`Decimal` class::" +msgid "Here are a few recipes that serve as utility functions and that demonstrate ways to work with the :class:`Decimal` class::" msgstr "" -#: ../../library/decimal.rst:1971 msgid "" "def moneyfmt(value, places=2, curr='', sep=',', dp='.',\n" " pos='', neg='-', trailneg=''):\n" @@ -2403,8 +1395,7 @@ msgid "" " return +s # unary plus applies the new precision\n" "\n" "def exp(x):\n" -" \"\"\"Return e raised to the power of x. Result type matches input " -"type.\n" +" \"\"\"Return e raised to the power of x. Result type matches input type.\n" "\n" " >>> print(exp(Decimal(1)))\n" " 2.718281828459045235360287471\n" @@ -2480,83 +1471,42 @@ msgid "" " return +s" msgstr "" -#: ../../library/decimal.rst:2123 msgid "Decimal FAQ" msgstr "" -#: ../../library/decimal.rst:2125 -msgid "" -"Q: It is cumbersome to type ``decimal.Decimal('1234.5')``. Is there a way " -"to minimize typing when using the interactive interpreter?" +msgid "Q: It is cumbersome to type ``decimal.Decimal('1234.5')``. Is there a way to minimize typing when using the interactive interpreter?" msgstr "" -#: ../../library/decimal.rst:2128 msgid "A: Some users abbreviate the constructor to just a single letter:" msgstr "" -#: ../../library/decimal.rst:2134 -msgid "" -"Q: In a fixed-point application with two decimal places, some inputs have " -"many places and need to be rounded. Others are not supposed to have excess " -"digits and need to be validated. What methods should be used?" +msgid "Q: In a fixed-point application with two decimal places, some inputs have many places and need to be rounded. Others are not supposed to have excess digits and need to be validated. What methods should be used?" msgstr "" -#: ../../library/decimal.rst:2138 -msgid "" -"A: The :meth:`~Decimal.quantize` method rounds to a fixed number of decimal " -"places. If the :const:`Inexact` trap is set, it is also useful for " -"validation:" +msgid "A: The :meth:`~Decimal.quantize` method rounds to a fixed number of decimal places. If the :const:`Inexact` trap is set, it is also useful for validation:" msgstr "" -#: ../../library/decimal.rst:2156 -msgid "" -"Q: Once I have valid two place inputs, how do I maintain that invariant " -"throughout an application?" +msgid "Q: Once I have valid two place inputs, how do I maintain that invariant throughout an application?" msgstr "" -#: ../../library/decimal.rst:2159 -msgid "" -"A: Some operations like addition, subtraction, and multiplication by an " -"integer will automatically preserve fixed point. Others operations, like " -"division and non-integer multiplication, will change the number of decimal " -"places and need to be followed-up with a :meth:`~Decimal.quantize` step:" +msgid "A: Some operations like addition, subtraction, and multiplication by an integer will automatically preserve fixed point. Others operations, like division and non-integer multiplication, will change the number of decimal places and need to be followed-up with a :meth:`~Decimal.quantize` step:" msgstr "" -#: ../../library/decimal.rst:2177 -msgid "" -"In developing fixed-point applications, it is convenient to define functions " -"to handle the :meth:`~Decimal.quantize` step:" +msgid "In developing fixed-point applications, it is convenient to define functions to handle the :meth:`~Decimal.quantize` step:" msgstr "" -#: ../../library/decimal.rst:2191 -msgid "" -"Q: There are many ways to express the same value. The numbers ``200``, " -"``200.000``, ``2E2``, and ``.02E+4`` all have the same value at various " -"precisions. Is there a way to transform them to a single recognizable " -"canonical value?" +msgid "Q: There are many ways to express the same value. The numbers ``200``, ``200.000``, ``2E2``, and ``.02E+4`` all have the same value at various precisions. Is there a way to transform them to a single recognizable canonical value?" msgstr "" -#: ../../library/decimal.rst:2196 -msgid "" -"A: The :meth:`~Decimal.normalize` method maps all equivalent values to a " -"single representative:" +msgid "A: The :meth:`~Decimal.normalize` method maps all equivalent values to a single representative:" msgstr "" -#: ../../library/decimal.rst:2203 msgid "Q: When does rounding occur in a computation?" msgstr "" -#: ../../library/decimal.rst:2205 -msgid "" -"A: It occurs *after* the computation. The philosophy of the decimal " -"specification is that numbers are considered exact and are created " -"independent of the current context. They can even have greater precision " -"than current context. Computations process with those exact inputs and then " -"rounding (or other context operations) is applied to the *result* of the " -"computation::" +msgid "A: It occurs *after* the computation. The philosophy of the decimal specification is that numbers are considered exact and are created independent of the current context. They can even have greater precision than current context. Computations process with those exact inputs and then rounding (or other context operations) is applied to the *result* of the computation::" msgstr "" -#: ../../library/decimal.rst:2212 msgid "" ">>> getcontext().prec = 5\n" ">>> pi = Decimal('3.1415926535') # More than 5 digits\n" @@ -2570,75 +1520,38 @@ msgid "" "Decimal('3.1416')" msgstr "" -#: ../../library/decimal.rst:2223 -msgid "" -"Q: Some decimal values always print with exponential notation. Is there a " -"way to get a non-exponential representation?" +msgid "Q: Some decimal values always print with exponential notation. Is there a way to get a non-exponential representation?" msgstr "" -#: ../../library/decimal.rst:2226 -msgid "" -"A: For some values, exponential notation is the only way to express the " -"number of significant places in the coefficient. For example, expressing " -"``5.0E+3`` as ``5000`` keeps the value constant but cannot show the " -"original's two-place significance." +msgid "A: For some values, exponential notation is the only way to express the number of significant places in the coefficient. For example, expressing ``5.0E+3`` as ``5000`` keeps the value constant but cannot show the original's two-place significance." msgstr "" -#: ../../library/decimal.rst:2231 -msgid "" -"If an application does not care about tracking significance, it is easy to " -"remove the exponent and trailing zeroes, losing significance, but keeping " -"the value unchanged:" +msgid "If an application does not care about tracking significance, it is easy to remove the exponent and trailing zeroes, losing significance, but keeping the value unchanged:" msgstr "" -#: ../../library/decimal.rst:2241 msgid "Q: Is there a way to convert a regular float to a :class:`Decimal`?" msgstr "" -#: ../../library/decimal.rst:2243 -msgid "" -"A: Yes, any binary floating-point number can be exactly expressed as a " -"Decimal though an exact conversion may take more precision than intuition " -"would suggest:" +msgid "A: Yes, any binary floating-point number can be exactly expressed as a Decimal though an exact conversion may take more precision than intuition would suggest:" msgstr "" -#: ../../library/decimal.rst:2247 msgid "" ">>> Decimal(math.pi)\n" "Decimal('3.141592653589793115997963468544185161590576171875')" msgstr "" -#: ../../library/decimal.rst:2252 -msgid "" -"Q: Within a complex calculation, how can I make sure that I haven't gotten a " -"spurious result because of insufficient precision or rounding anomalies." +msgid "Q: Within a complex calculation, how can I make sure that I haven't gotten a spurious result because of insufficient precision or rounding anomalies." msgstr "" -#: ../../library/decimal.rst:2255 -msgid "" -"A: The decimal module makes it easy to test results. A best practice is to " -"re-run calculations using greater precision and with various rounding modes. " -"Widely differing results indicate insufficient precision, rounding mode " -"issues, ill-conditioned inputs, or a numerically unstable algorithm." +msgid "A: The decimal module makes it easy to test results. A best practice is to re-run calculations using greater precision and with various rounding modes. Widely differing results indicate insufficient precision, rounding mode issues, ill-conditioned inputs, or a numerically unstable algorithm." msgstr "" -#: ../../library/decimal.rst:2260 -msgid "" -"Q: I noticed that context precision is applied to the results of operations " -"but not to the inputs. Is there anything to watch out for when mixing " -"values of different precisions?" +msgid "Q: I noticed that context precision is applied to the results of operations but not to the inputs. Is there anything to watch out for when mixing values of different precisions?" msgstr "" -#: ../../library/decimal.rst:2264 -msgid "" -"A: Yes. The principle is that all values are considered to be exact and so " -"is the arithmetic on those values. Only the results are rounded. The " -"advantage for inputs is that \"what you type is what you get\". A " -"disadvantage is that the results can look odd if you forget that the inputs " -"haven't been rounded:" +msgid "A: Yes. The principle is that all values are considered to be exact and so is the arithmetic on those values. Only the results are rounded. The advantage for inputs is that \"what you type is what you get\". A disadvantage is that the results can look odd if you forget that the inputs haven't been rounded:" msgstr "" -#: ../../library/decimal.rst:2269 msgid "" ">>> getcontext().prec = 3\n" ">>> Decimal('3.104') + Decimal('2.104')\n" @@ -2647,57 +1560,30 @@ msgid "" "Decimal('5.20')" msgstr "" -#: ../../library/decimal.rst:2277 -msgid "" -"The solution is either to increase precision or to force rounding of inputs " -"using the unary plus operation:" +msgid "The solution is either to increase precision or to force rounding of inputs using the unary plus operation:" msgstr "" -#: ../../library/decimal.rst:2280 msgid "" ">>> getcontext().prec = 3\n" ">>> +Decimal('1.23456789') # unary plus triggers rounding\n" "Decimal('1.23')" msgstr "" -#: ../../library/decimal.rst:2286 -msgid "" -"Alternatively, inputs can be rounded upon creation using " -"the :meth:`Context.create_decimal` method:" +msgid "Alternatively, inputs can be rounded upon creation using the :meth:`Context.create_decimal` method:" msgstr "" -#: ../../library/decimal.rst:2292 msgid "Q: Is the CPython implementation fast for large numbers?" msgstr "" -#: ../../library/decimal.rst:2294 -msgid "" -"A: Yes. In the CPython and PyPy3 implementations, the C/CFFI versions of " -"the decimal module integrate the high speed `libmpdec `_ library for arbitrary " -"precision correctly rounded decimal floating-point arithmetic [#]_. " -"``libmpdec`` uses `Karatsuba multiplication `_ for medium-sized numbers and the `Number Theoretic " -"Transform `_ for very " -"large numbers." -msgstr "" - -#: ../../library/decimal.rst:2304 -msgid "" -"The context must be adapted for exact arbitrary precision " -"arithmetic. :attr:`~Context.Emin` and :attr:`~Context.Emax` should always be " -"set to the maximum values, :attr:`~Context.clamp` should always be 0 (the " -"default). Setting :attr:`~Context.prec` requires some care." +msgid "A: Yes. In the CPython and PyPy3 implementations, the C/CFFI versions of the decimal module integrate the high speed `libmpdec `_ library for arbitrary precision correctly rounded decimal floating-point arithmetic [#]_. ``libmpdec`` uses `Karatsuba multiplication `_ for medium-sized numbers and the `Number Theoretic Transform `_ for very large numbers." msgstr "" -#: ../../library/decimal.rst:2308 -msgid "" -"The easiest approach for trying out bignum arithmetic is to use the maximum " -"value for :attr:`~Context.prec` as well [#]_::" +msgid "The context must be adapted for exact arbitrary precision arithmetic. :attr:`~Context.Emin` and :attr:`~Context.Emax` should always be set to the maximum values, :attr:`~Context.clamp` should always be 0 (the default). Setting :attr:`~Context.prec` requires some care." +msgstr "" + +msgid "The easiest approach for trying out bignum arithmetic is to use the maximum value for :attr:`~Context.prec` as well [#]_::" msgstr "" -#: ../../library/decimal.rst:2311 msgid "" ">>> setcontext(Context(prec=MAX_PREC, Emax=MAX_EMAX, Emin=MIN_EMIN))\n" ">>> x = Decimal(2) ** 256\n" @@ -2705,13 +1591,9 @@ msgid "" "Decimal('904625697166532776746648320380374280103671755200316906558262375061821325312')" msgstr "" -#: ../../library/decimal.rst:2317 -msgid "" -"For inexact results, :const:`MAX_PREC` is far too large on 64-bit platforms " -"and the available memory will be insufficient::" +msgid "For inexact results, :const:`MAX_PREC` is far too large on 64-bit platforms and the available memory will be insufficient::" msgstr "" -#: ../../library/decimal.rst:2320 msgid "" ">>> Decimal(1) / 3\n" "Traceback (most recent call last):\n" @@ -2719,20 +1601,13 @@ msgid "" "MemoryError" msgstr "" -#: ../../library/decimal.rst:2325 -msgid "" -"On systems with overallocation (e.g. Linux), a more sophisticated approach " -"is to adjust :attr:`~Context.prec` to the amount of available RAM. Suppose " -"that you have 8GB of RAM and expect 10 simultaneous operands using a maximum " -"of 500MB each::" +msgid "On systems with overallocation (e.g. Linux), a more sophisticated approach is to adjust :attr:`~Context.prec` to the amount of available RAM. Suppose that you have 8GB of RAM and expect 10 simultaneous operands using a maximum of 500MB each::" msgstr "" -#: ../../library/decimal.rst:2329 msgid "" ">>> import sys\n" ">>>\n" -">>> # Maximum number of digits for a single operand using 500MB in 8-byte " -"words\n" +">>> # Maximum number of digits for a single operand using 500MB in 8-byte words\n" ">>> # with 19 digits per word (4-byte and 9 digits for the 32-bit build):\n" ">>> maxdigits = 19 * ((500 * 1024**2) // 8)\n" ">>>\n" @@ -2751,14 +1626,8 @@ msgid "" " decimal.Inexact: []" msgstr "" -#: ../../library/decimal.rst:2349 -msgid "" -"In general (and especially on systems without overallocation), it is " -"recommended to estimate even tighter bounds and set the :attr:`Inexact` trap " -"if all calculations are expected to be exact." +msgid "In general (and especially on systems without overallocation), it is recommended to estimate even tighter bounds and set the :attr:`Inexact` trap if all calculations are expected to be exact." msgstr "" -#: ../../library/decimal.rst:2358 -msgid "" -"This approach now works for all exact results except for non-integer powers." +msgid "This approach now works for all exact results except for non-integer powers." msgstr "" diff --git a/library/development.po b/library/development.po index 8a37aa39..aff500ec 100644 --- a/library/development.po +++ b/library/development.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:04+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,19 +21,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/development.rst:5 msgid "Development Tools" msgstr "" -#: ../../library/development.rst:7 -msgid "" -"The modules described in this chapter help you write software. For example, " -"the :mod:`pydoc` module takes a module and generates documentation based on " -"the module's contents. The :mod:`doctest` and :mod:`unittest` modules " -"contains frameworks for writing unit tests that automatically exercise code " -"and verify that the expected output is produced." +msgid "The modules described in this chapter help you write software. For example, the :mod:`pydoc` module takes a module and generates documentation based on the module's contents. The :mod:`doctest` and :mod:`unittest` modules contains frameworks for writing unit tests that automatically exercise code and verify that the expected output is produced." msgstr "" -#: ../../library/development.rst:13 msgid "The list of modules described in this chapter is:" msgstr "" diff --git a/library/devmode.po b/library/devmode.po index 50c38a45..ca13cbd8 100644 --- a/library/devmode.po +++ b/library/devmode.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:04+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,220 +24,123 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/devmode.rst:4 msgid "Python Development Mode" msgstr "" -#: ../../library/devmode.rst:8 -msgid "" -"The Python Development Mode introduces additional runtime checks that are " -"too expensive to be enabled by default. It should not be more verbose than " -"the default if the code is correct; new warnings are only emitted when an " -"issue is detected." +msgid "The Python Development Mode introduces additional runtime checks that are too expensive to be enabled by default. It should not be more verbose than the default if the code is correct; new warnings are only emitted when an issue is detected." msgstr "" -#: ../../library/devmode.rst:13 -msgid "" -"It can be enabled using the :option:`-X dev <-X>` command line option or by " -"setting the :envvar:`PYTHONDEVMODE` environment variable to ``1``." +msgid "It can be enabled using the :option:`-X dev <-X>` command line option or by setting the :envvar:`PYTHONDEVMODE` environment variable to ``1``." msgstr "" -#: ../../library/devmode.rst:16 msgid "See also :ref:`Python debug build `." msgstr "" -#: ../../library/devmode.rst:19 msgid "Effects of the Python Development Mode" msgstr "" -#: ../../library/devmode.rst:21 -msgid "" -"Enabling the Python Development Mode is similar to the following command, " -"but with additional effects described below::" +msgid "Enabling the Python Development Mode is similar to the following command, but with additional effects described below::" msgstr "" -#: ../../library/devmode.rst:24 -msgid "" -"PYTHONMALLOC=debug PYTHONASYNCIODEBUG=1 python -W default -X faulthandler" +msgid "PYTHONMALLOC=debug PYTHONASYNCIODEBUG=1 python -W default -X faulthandler" msgstr "" -#: ../../library/devmode.rst:26 msgid "Effects of the Python Development Mode:" msgstr "" -#: ../../library/devmode.rst:28 -msgid "" -"Add ``default`` :ref:`warning filter `. The " -"following warnings are shown:" +msgid "Add ``default`` :ref:`warning filter `. The following warnings are shown:" msgstr "" -#: ../../library/devmode.rst:31 msgid ":exc:`DeprecationWarning`" msgstr "" -#: ../../library/devmode.rst:32 msgid ":exc:`ImportWarning`" msgstr "" -#: ../../library/devmode.rst:33 msgid ":exc:`PendingDeprecationWarning`" msgstr "" -#: ../../library/devmode.rst:34 msgid ":exc:`ResourceWarning`" msgstr "" -#: ../../library/devmode.rst:36 -msgid "" -"Normally, the above warnings are filtered by the default :ref:`warning " -"filters `." +msgid "Normally, the above warnings are filtered by the default :ref:`warning filters `." msgstr "" -#: ../../library/devmode.rst:39 -msgid "" -"It behaves as if the :option:`-W default <-W>` command line option is used." +msgid "It behaves as if the :option:`-W default <-W>` command line option is used." msgstr "" -#: ../../library/devmode.rst:41 -msgid "" -"Use the :option:`-W error <-W>` command line option or set " -"the :envvar:`PYTHONWARNINGS` environment variable to ``error`` to treat " -"warnings as errors." +msgid "Use the :option:`-W error <-W>` command line option or set the :envvar:`PYTHONWARNINGS` environment variable to ``error`` to treat warnings as errors." msgstr "" -#: ../../library/devmode.rst:45 msgid "Install debug hooks on memory allocators to check for:" msgstr "" -#: ../../library/devmode.rst:47 msgid "Buffer underflow" msgstr "" -#: ../../library/devmode.rst:48 msgid "Buffer overflow" msgstr "" -#: ../../library/devmode.rst:49 msgid "Memory allocator API violation" msgstr "" -#: ../../library/devmode.rst:50 msgid "Unsafe usage of the GIL" msgstr "" -#: ../../library/devmode.rst:52 msgid "See the :c:func:`PyMem_SetupDebugHooks` C function." msgstr "" -#: ../../library/devmode.rst:54 -msgid "" -"It behaves as if the :envvar:`PYTHONMALLOC` environment variable is set to " -"``debug``." +msgid "It behaves as if the :envvar:`PYTHONMALLOC` environment variable is set to ``debug``." msgstr "" -#: ../../library/devmode.rst:57 -msgid "" -"To enable the Python Development Mode without installing debug hooks on " -"memory allocators, set the :envvar:`PYTHONMALLOC` environment variable to " -"``default``." +msgid "To enable the Python Development Mode without installing debug hooks on memory allocators, set the :envvar:`PYTHONMALLOC` environment variable to ``default``." msgstr "" -#: ../../library/devmode.rst:61 -msgid "" -"Call :func:`faulthandler.enable` at Python startup to install handlers for " -"the :const:`~signal.SIGSEGV`, :const:`~signal.SIGFPE`, :const:`~signal.SIGABRT`, :const:`~signal.SIGBUS` " -"and :const:`~signal.SIGILL` signals to dump the Python traceback on a crash." +msgid "Call :func:`faulthandler.enable` at Python startup to install handlers for the :const:`~signal.SIGSEGV`, :const:`~signal.SIGFPE`, :const:`~signal.SIGABRT`, :const:`~signal.SIGBUS` and :const:`~signal.SIGILL` signals to dump the Python traceback on a crash." msgstr "" -#: ../../library/devmode.rst:66 -msgid "" -"It behaves as if the :option:`-X faulthandler <-X>` command line option is " -"used or if the :envvar:`PYTHONFAULTHANDLER` environment variable is set to " -"``1``." +msgid "It behaves as if the :option:`-X faulthandler <-X>` command line option is used or if the :envvar:`PYTHONFAULTHANDLER` environment variable is set to ``1``." msgstr "" -#: ../../library/devmode.rst:70 -msgid "" -"Enable :ref:`asyncio debug mode `. For " -"example, :mod:`asyncio` checks for coroutines that were not awaited and logs " -"them." +msgid "Enable :ref:`asyncio debug mode `. For example, :mod:`asyncio` checks for coroutines that were not awaited and logs them." msgstr "" -#: ../../library/devmode.rst:73 -msgid "" -"It behaves as if the :envvar:`PYTHONASYNCIODEBUG` environment variable is " -"set to ``1``." +msgid "It behaves as if the :envvar:`PYTHONASYNCIODEBUG` environment variable is set to ``1``." msgstr "" -#: ../../library/devmode.rst:76 -msgid "" -"Check the *encoding* and *errors* arguments for string encoding and decoding " -"operations. Examples: :func:`open`, :meth:`str.encode` " -"and :meth:`bytes.decode`." +msgid "Check the *encoding* and *errors* arguments for string encoding and decoding operations. Examples: :func:`open`, :meth:`str.encode` and :meth:`bytes.decode`." msgstr "" -#: ../../library/devmode.rst:80 -msgid "" -"By default, for best performance, the *errors* argument is only checked at " -"the first encoding/decoding error and the *encoding* argument is sometimes " -"ignored for empty strings." +msgid "By default, for best performance, the *errors* argument is only checked at the first encoding/decoding error and the *encoding* argument is sometimes ignored for empty strings." msgstr "" -#: ../../library/devmode.rst:84 msgid "The :class:`io.IOBase` destructor logs ``close()`` exceptions." msgstr "" -#: ../../library/devmode.rst:85 -msgid "" -"Set the :attr:`~sys.flags.dev_mode` attribute of :data:`sys.flags` to " -"``True``." +msgid "Set the :attr:`~sys.flags.dev_mode` attribute of :data:`sys.flags` to ``True``." msgstr "" -#: ../../library/devmode.rst:88 -msgid "" -"The Python Development Mode does not enable the :mod:`tracemalloc` module by " -"default, because the overhead cost (to performance and memory) would be too " -"large. Enabling the :mod:`tracemalloc` module provides additional " -"information on the origin of some errors. For " -"example, :exc:`ResourceWarning` logs the traceback where the resource was " -"allocated, and a buffer overflow error logs the traceback where the memory " -"block was allocated." +msgid "The Python Development Mode does not enable the :mod:`tracemalloc` module by default, because the overhead cost (to performance and memory) would be too large. Enabling the :mod:`tracemalloc` module provides additional information on the origin of some errors. For example, :exc:`ResourceWarning` logs the traceback where the resource was allocated, and a buffer overflow error logs the traceback where the memory block was allocated." msgstr "" -#: ../../library/devmode.rst:95 -msgid "" -"The Python Development Mode does not prevent the :option:`-O` command line " -"option from removing :keyword:`assert` statements nor from " -"setting :const:`__debug__` to ``False``." +msgid "The Python Development Mode does not prevent the :option:`-O` command line option from removing :keyword:`assert` statements nor from setting :const:`__debug__` to ``False``." msgstr "" -#: ../../library/devmode.rst:99 -msgid "" -"The Python Development Mode can only be enabled at the Python startup. Its " -"value can be read from :data:`sys.flags.dev_mode `." +msgid "The Python Development Mode can only be enabled at the Python startup. Its value can be read from :data:`sys.flags.dev_mode `." msgstr "" -#: ../../library/devmode.rst:102 msgid "The :class:`io.IOBase` destructor now logs ``close()`` exceptions." msgstr "" -#: ../../library/devmode.rst:105 -msgid "" -"The *encoding* and *errors* arguments are now checked for string encoding " -"and decoding operations." +msgid "The *encoding* and *errors* arguments are now checked for string encoding and decoding operations." msgstr "" -#: ../../library/devmode.rst:111 msgid "ResourceWarning Example" msgstr "" -#: ../../library/devmode.rst:113 -msgid "" -"Example of a script counting the number of lines of the text file specified " -"in the command line::" +msgid "Example of a script counting the number of lines of the text file specified in the command line::" msgstr "" -#: ../../library/devmode.rst:116 msgid "" "import sys\n" "\n" @@ -251,46 +154,32 @@ msgid "" " main()" msgstr "" -#: ../../library/devmode.rst:127 -msgid "" -"The script does not close the file explicitly. By default, Python does not " -"emit any warning. Example using README.txt, which has 269 lines:" +msgid "The script does not close the file explicitly. By default, Python does not emit any warning. Example using README.txt, which has 269 lines:" msgstr "" -#: ../../library/devmode.rst:130 msgid "" "$ python script.py README.txt\n" "269" msgstr "" -#: ../../library/devmode.rst:135 -msgid "" -"Enabling the Python Development Mode displays a :exc:`ResourceWarning` " -"warning:" +msgid "Enabling the Python Development Mode displays a :exc:`ResourceWarning` warning:" msgstr "" -#: ../../library/devmode.rst:137 msgid "" "$ python -X dev script.py README.txt\n" "269\n" -"script.py:10: ResourceWarning: unclosed file <_io.TextIOWrapper " -"name='README.rst' mode='r' encoding='UTF-8'>\n" +"script.py:10: ResourceWarning: unclosed file <_io.TextIOWrapper name='README.rst' mode='r' encoding='UTF-8'>\n" " main()\n" "ResourceWarning: Enable tracemalloc to get the object allocation traceback" msgstr "" -#: ../../library/devmode.rst:145 -msgid "" -"In addition, enabling :mod:`tracemalloc` shows the line where the file was " -"opened:" +msgid "In addition, enabling :mod:`tracemalloc` shows the line where the file was opened:" msgstr "" -#: ../../library/devmode.rst:148 msgid "" "$ python -X dev -X tracemalloc=5 script.py README.rst\n" "269\n" -"script.py:10: ResourceWarning: unclosed file <_io.TextIOWrapper " -"name='README.rst' mode='r' encoding='UTF-8'>\n" +"script.py:10: ResourceWarning: unclosed file <_io.TextIOWrapper name='README.rst' mode='r' encoding='UTF-8'>\n" " main()\n" "Object allocated at (most recent call last):\n" " File \"script.py\", lineno 10\n" @@ -299,12 +188,9 @@ msgid "" " fp = open(sys.argv[1])" msgstr "" -#: ../../library/devmode.rst:160 -msgid "" -"The fix is to close explicitly the file. Example using a context manager::" +msgid "The fix is to close explicitly the file. Example using a context manager::" msgstr "" -#: ../../library/devmode.rst:162 msgid "" "def main():\n" " # Close the file explicitly when exiting the with block\n" @@ -313,23 +199,15 @@ msgid "" " print(nlines)" msgstr "" -#: ../../library/devmode.rst:168 -msgid "" -"Not closing a resource explicitly can leave a resource open for way longer " -"than expected; it can cause severe issues upon exiting Python. It is bad in " -"CPython, but it is even worse in PyPy. Closing resources explicitly makes an " -"application more deterministic and more reliable." +msgid "Not closing a resource explicitly can leave a resource open for way longer than expected; it can cause severe issues upon exiting Python. It is bad in CPython, but it is even worse in PyPy. Closing resources explicitly makes an application more deterministic and more reliable." msgstr "" -#: ../../library/devmode.rst:175 msgid "Bad file descriptor error example" msgstr "" -#: ../../library/devmode.rst:177 msgid "Script displaying the first line of itself::" msgstr "" -#: ../../library/devmode.rst:179 msgid "" "import os\n" "\n" @@ -343,49 +221,32 @@ msgid "" "main()" msgstr "" -#: ../../library/devmode.rst:190 msgid "By default, Python does not emit any warning:" msgstr "" -#: ../../library/devmode.rst:192 msgid "" "$ python script.py\n" "import os" msgstr "" -#: ../../library/devmode.rst:197 -msgid "" -"The Python Development Mode shows a :exc:`ResourceWarning` and logs a \"Bad " -"file descriptor\" error when finalizing the file object:" +msgid "The Python Development Mode shows a :exc:`ResourceWarning` and logs a \"Bad file descriptor\" error when finalizing the file object:" msgstr "" -#: ../../library/devmode.rst:200 msgid "" "$ python -X dev script.py\n" "import os\n" -"script.py:10: ResourceWarning: unclosed file <_io.TextIOWrapper " -"name='script.py' mode='r' encoding='UTF-8'>\n" +"script.py:10: ResourceWarning: unclosed file <_io.TextIOWrapper name='script.py' mode='r' encoding='UTF-8'>\n" " main()\n" "ResourceWarning: Enable tracemalloc to get the object allocation traceback\n" -"Exception ignored in: <_io.TextIOWrapper name='script.py' mode='r' " -"encoding='UTF-8'>\n" +"Exception ignored in: <_io.TextIOWrapper name='script.py' mode='r' encoding='UTF-8'>\n" "Traceback (most recent call last):\n" " File \"script.py\", line 10, in \n" " main()\n" "OSError: [Errno 9] Bad file descriptor" msgstr "" -#: ../../library/devmode.rst:213 -msgid "" -"``os.close(fp.fileno())`` closes the file descriptor. When the file object " -"finalizer tries to close the file descriptor again, it fails with the ``Bad " -"file descriptor`` error. A file descriptor must be closed only once. In the " -"worst case scenario, closing it twice can lead to a crash " -"(see :issue:`18748` for an example)." +msgid "``os.close(fp.fileno())`` closes the file descriptor. When the file object finalizer tries to close the file descriptor again, it fails with the ``Bad file descriptor`` error. A file descriptor must be closed only once. In the worst case scenario, closing it twice can lead to a crash (see :issue:`18748` for an example)." msgstr "" -#: ../../library/devmode.rst:219 -msgid "" -"The fix is to remove the ``os.close(fp.fileno())`` line, or open the file " -"with ``closefd=False``." +msgid "The fix is to remove the ``os.close(fp.fileno())`` line, or open the file with ``closefd=False``." msgstr "" diff --git a/library/dialog.po b/library/dialog.po index 46a117e1..38ae67ad 100644 --- a/library/dialog.po +++ b/library/dialog.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:04+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,372 +21,206 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/dialog.rst:2 msgid "Tkinter dialogs" msgstr "" -#: ../../library/dialog.rst:5 msgid ":mod:`!tkinter.simpledialog` --- Standard Tkinter input dialogs" msgstr "" -#: ../../library/dialog.rst:10 msgid "**Source code:** :source:`Lib/tkinter/simpledialog.py`" msgstr "" -#: ../../library/dialog.rst:14 -msgid "" -"The :mod:`!tkinter.simpledialog` module contains convenience classes and " -"functions for creating simple modal dialogs to get a value from the user." +msgid "The :mod:`!tkinter.simpledialog` module contains convenience classes and functions for creating simple modal dialogs to get a value from the user." msgstr "" -#: ../../library/dialog.rst:22 -msgid "" -"Prompt the user to enter a value of the desired type and return it, or " -"``None`` if the dialog is cancelled." +msgid "Prompt the user to enter a value of the desired type and return it, or ``None`` if the dialog is cancelled." msgstr "" -#: ../../library/dialog.rst:25 -msgid "" -"*title* is the dialog title and *prompt* the message shown above the entry. " -"*initialvalue* is the value initially placed in the entry. *parent* is the " -"window over which the dialog is shown. :func:`askinteger` " -"and :func:`askfloat` also accept *minvalue* and *maxvalue*, which bound the " -"accepted value. :func:`askstring` also accepts *show*, a character used to " -"mask the entered text, for example ``'*'`` to hide a password." +msgid "*title* is the dialog title and *prompt* the message shown above the entry. *initialvalue* is the value initially placed in the entry. *parent* is the window over which the dialog is shown. :func:`askinteger` and :func:`askfloat` also accept *minvalue* and *maxvalue*, which bound the accepted value. :func:`askstring` also accepts *show*, a character used to mask the entered text, for example ``'*'`` to hide a password." msgstr "" -#: ../../library/dialog.rst:35 -msgid "" -"The base class for custom dialogs. Instantiating it shows the dialog modally " -"and returns once the user closes it; the entered value is then available in " -"the :attr:`!result` attribute." +msgid "The base class for custom dialogs. Instantiating it shows the dialog modally and returns once the user closes it; the entered value is then available in the :attr:`!result` attribute." msgstr "" -#: ../../library/dialog.rst:41 -msgid "" -"The value produced by :meth:`apply`, or ``None`` if the dialog was cancelled." +msgid "The value produced by :meth:`apply`, or ``None`` if the dialog was cancelled." msgstr "" -#: ../../library/dialog.rst:46 -msgid "" -"Override to construct the dialog's interface and return the widget that " -"should have initial focus." +msgid "Override to construct the dialog's interface and return the widget that should have initial focus." msgstr "" -#: ../../library/dialog.rst:51 -msgid "" -"Default behaviour adds OK and Cancel buttons. Override for custom button " -"layouts." +msgid "Default behaviour adds OK and Cancel buttons. Override for custom button layouts." msgstr "" -#: ../../library/dialog.rst:56 -msgid "" -"Validate the data entered by the user. Return true if it is valid, in which " -"case the dialog proceeds to :meth:`apply`; return false to keep the dialog " -"open. The default implementation always returns true; override it to check " -"the input." +msgid "Validate the data entered by the user. Return true if it is valid, in which case the dialog proceeds to :meth:`apply`; return false to keep the dialog open. The default implementation always returns true; override it to check the input." msgstr "" -#: ../../library/dialog.rst:64 -msgid "" -"Process the data entered by the user, for example by storing it in " -"the :attr:`!result` attribute. Called after :meth:`validate` succeeds and " -"just before the dialog is destroyed. The default implementation does " -"nothing; override it to act on or store the result." +msgid "Process the data entered by the user, for example by storing it in the :attr:`!result` attribute. Called after :meth:`validate` succeeds and just before the dialog is destroyed. The default implementation does nothing; override it to act on or store the result." msgstr "" -#: ../../library/dialog.rst:73 -msgid "" -"Destroy the dialog window, clearing the reference to the widget that had the " -"initial focus." +msgid "Destroy the dialog window, clearing the reference to the widget that had the initial focus." msgstr "" -#: ../../library/dialog.rst:79 -msgid "" -"A simple modal dialog that displays the message *text* above a row of push " -"buttons whose labels are given by *buttons*, and returns the index of the " -"button the user presses. *default* is the index of the button activated by " -"the Return key, *cancel* the index returned when the window is closed " -"through the window manager, *title* the window title, and *class_* the Tk " -"class name of the window." +msgid "A simple modal dialog that displays the message *text* above a row of push buttons whose labels are given by *buttons*, and returns the index of the button the user presses. *default* is the index of the button activated by the Return key, *cancel* the index returned when the window is closed through the window manager, *title* the window title, and *class_* the Tk class name of the window." msgstr "" -#: ../../library/dialog.rst:88 -msgid "" -"Display the dialog, wait until the user presses a button or closes the " -"window, and return the index of the chosen button." +msgid "Display the dialog, wait until the user presses a button or closes the window, and return the index of the chosen button." msgstr "" -#: ../../library/dialog.rst:94 msgid ":mod:`!tkinter.filedialog` --- File selection dialogs" msgstr "" -#: ../../library/dialog.rst:99 msgid "**Source code:** :source:`Lib/tkinter/filedialog.py`" msgstr "" -#: ../../library/dialog.rst:103 -msgid "" -"The :mod:`!tkinter.filedialog` module provides classes and factory functions " -"for creating file/directory selection windows." +msgid "The :mod:`!tkinter.filedialog` module provides classes and factory functions for creating file/directory selection windows." msgstr "" -#: ../../library/dialog.rst:107 msgid "Native load/save dialogs" msgstr "" -#: ../../library/dialog.rst:109 -msgid "" -"The following classes and functions provide file dialog windows that combine " -"a native look-and-feel with configuration options to customize behaviour. " -"The following keyword arguments are applicable to the classes and functions " -"listed below:" +msgid "The following classes and functions provide file dialog windows that combine a native look-and-feel with configuration options to customize behaviour. The following keyword arguments are applicable to the classes and functions listed below:" msgstr "" -#: ../../library/dialog.rst:0 msgid "*parent* - the window to place the dialog on top of" msgstr "" -#: ../../library/dialog.rst:0 msgid "*title* - the title of the window" msgstr "" -#: ../../library/dialog.rst:0 msgid "*initialdir* - the directory that the dialog starts in" msgstr "" -#: ../../library/dialog.rst:0 msgid "*initialfile* - the file selected upon opening of the dialog" msgstr "" -#: ../../library/dialog.rst:0 -msgid "" -"*filetypes* - a sequence of (label, pattern) tuples, '*' wildcard is allowed" +msgid "*filetypes* - a sequence of (label, pattern) tuples, '*' wildcard is allowed" msgstr "" -#: ../../library/dialog.rst:0 msgid "*defaultextension* - default extension to append to file (save dialogs)" msgstr "" -#: ../../library/dialog.rst:0 msgid "*multiple* - when true, selection of multiple items is allowed" msgstr "" -#: ../../library/dialog.rst:129 msgid "**Static factory functions**" msgstr "" -#: ../../library/dialog.rst:131 -msgid "" -"The below functions when called create a modal, native look-and-feel dialog, " -"wait for the user's selection, and return it. The exact return value depends " -"on the function (see below); when the dialog is cancelled it is an empty " -"string, an empty tuple or ``None``. The precise type of this empty value may " -"vary between platforms and Tk versions, so test the result for truth rather " -"than comparing it with a specific value." +msgid "The below functions when called create a modal, native look-and-feel dialog, wait for the user's selection, and return it. The exact return value depends on the function (see below); when the dialog is cancelled it is an empty string, an empty tuple or ``None``. The precise type of this empty value may vary between platforms and Tk versions, so test the result for truth rather than comparing it with a specific value." msgstr "" -#: ../../library/dialog.rst:142 -msgid "" -"Create an :class:`Open` dialog. :func:`askopenfile` returns the opened file " -"object, or ``None`` if the dialog is cancelled. :func:`askopenfiles` returns " -"a list of the opened file objects, or an empty tuple if cancelled. The files " -"are opened in mode *mode* (read-only ``'r'`` by default)." +msgid "Create an :class:`Open` dialog. :func:`askopenfile` returns the opened file object, or ``None`` if the dialog is cancelled. :func:`askopenfiles` returns a list of the opened file objects, or an empty tuple if cancelled. The files are opened in mode *mode* (read-only ``'r'`` by default)." msgstr "" -#: ../../library/dialog.rst:151 -msgid "" -"Create a :class:`SaveAs` dialog and return the opened file object, or " -"``None`` if the dialog is cancelled. The file is opened in mode *mode* " -"(``'w'`` by default)." +msgid "Create a :class:`SaveAs` dialog and return the opened file object, or ``None`` if the dialog is cancelled. The file is opened in mode *mode* (``'w'`` by default)." msgstr "" -#: ../../library/dialog.rst:158 -msgid "" -"Create an :class:`Open` dialog. :func:`askopenfilename` returns the selected " -"filename as a string, or an empty string if the dialog is " -"cancelled. :func:`askopenfilenames` returns a tuple of the selected " -"filenames, or an empty tuple if cancelled." +msgid "Create an :class:`Open` dialog. :func:`askopenfilename` returns the selected filename as a string, or an empty string if the dialog is cancelled. :func:`askopenfilenames` returns a tuple of the selected filenames, or an empty tuple if cancelled." msgstr "" -#: ../../library/dialog.rst:166 -msgid "" -"Create a :class:`SaveAs` dialog and return the selected filename as a " -"string, or an empty string if the dialog is cancelled." +msgid "Create a :class:`SaveAs` dialog and return the selected filename as a string, or an empty string if the dialog is cancelled." msgstr "" -#: ../../library/dialog.rst:171 -msgid "" -"Prompt the user to select a directory, and return its path as a string, or " -"an empty string if the dialog is cancelled. Additional keyword option: " -"*mustexist* - if true, the user may only select an existing directory (false " -"by default)." +msgid "Prompt the user to select a directory, and return its path as a string, or an empty string if the dialog is cancelled. Additional keyword option: *mustexist* - if true, the user may only select an existing directory (false by default)." msgstr "" -#: ../../library/dialog.rst:180 -msgid "" -"The above three classes provide native dialog windows for loading and saving " -"files and for selecting a directory." +msgid "The above three classes provide native dialog windows for loading and saving files and for selecting a directory." msgstr "" -#: ../../library/dialog.rst:183 msgid "**Convenience classes**" msgstr "" -#: ../../library/dialog.rst:185 -msgid "" -"The below classes are used for creating file/directory windows from scratch. " -"These do not emulate the native look-and-feel of the platform." +msgid "The below classes are used for creating file/directory windows from scratch. These do not emulate the native look-and-feel of the platform." msgstr "" -#: ../../library/dialog.rst:188 -msgid "" -"The *FileDialog* class should be subclassed for custom event handling and " -"behaviour." +msgid "The *FileDialog* class should be subclassed for custom event handling and behaviour." msgstr "" -#: ../../library/dialog.rst:193 msgid "Create a basic file selection dialog." msgstr "" -#: ../../library/dialog.rst:197 msgid "Trigger the termination of the dialog window." msgstr "" -#: ../../library/dialog.rst:201 msgid "Event handler for double-click event on directory." msgstr "" -#: ../../library/dialog.rst:205 msgid "Event handler for click event on directory." msgstr "" -#: ../../library/dialog.rst:209 msgid "Event handler for double-click event on file." msgstr "" -#: ../../library/dialog.rst:213 msgid "Event handler for single-click event on file." msgstr "" -#: ../../library/dialog.rst:217 msgid "Filter the files by directory." msgstr "" -#: ../../library/dialog.rst:221 msgid "Retrieve the file filter currently in use." msgstr "" -#: ../../library/dialog.rst:225 msgid "Retrieve the currently selected item." msgstr "" -#: ../../library/dialog.rst:229 msgid "Render dialog and start event loop." msgstr "" -#: ../../library/dialog.rst:233 msgid "Exit dialog returning current selection." msgstr "" -#: ../../library/dialog.rst:237 -msgid "" -"Called when the user confirms the current selection. The base implementation " -"accepts the selection and closes the dialog; :class:`LoadFileDialog` " -"and :class:`SaveFileDialog` override it to check the selection first." +msgid "Called when the user confirms the current selection. The base implementation accepts the selection and closes the dialog; :class:`LoadFileDialog` and :class:`SaveFileDialog` override it to check the selection first." msgstr "" -#: ../../library/dialog.rst:244 msgid "Exit dialog returning filename, if any." msgstr "" -#: ../../library/dialog.rst:248 msgid "Set the file filter." msgstr "" -#: ../../library/dialog.rst:252 msgid "Update the current file selection to *file*." msgstr "" -#: ../../library/dialog.rst:257 -msgid "" -"A subclass of FileDialog that creates a dialog window for selecting an " -"existing file." +msgid "A subclass of FileDialog that creates a dialog window for selecting an existing file." msgstr "" -#: ../../library/dialog.rst:262 -msgid "" -"Test that a file is provided and that the selection indicates an already " -"existing file." +msgid "Test that a file is provided and that the selection indicates an already existing file." msgstr "" -#: ../../library/dialog.rst:267 -msgid "" -"A subclass of FileDialog that creates a dialog window for selecting a " -"destination file." +msgid "A subclass of FileDialog that creates a dialog window for selecting a destination file." msgstr "" -#: ../../library/dialog.rst:272 -msgid "" -"Test whether or not the selection points to a valid file that is not a " -"directory. Confirmation is required if an already existing file is selected." +msgid "Test whether or not the selection points to a valid file that is not a directory. Confirmation is required if an already existing file is selected." msgstr "" -#: ../../library/dialog.rst:277 msgid ":mod:`!tkinter.commondialog` --- Dialog window templates" msgstr "" -#: ../../library/dialog.rst:282 msgid "**Source code:** :source:`Lib/tkinter/commondialog.py`" msgstr "" -#: ../../library/dialog.rst:286 -msgid "" -"The :mod:`!tkinter.commondialog` module provides the :class:`Dialog` class " -"that is the base class for dialogs defined in other supporting modules." +msgid "The :mod:`!tkinter.commondialog` module provides the :class:`Dialog` class that is the base class for dialogs defined in other supporting modules." msgstr "" -#: ../../library/dialog.rst:293 msgid "Render the Dialog window." msgstr "" -#: ../../library/dialog.rst:297 msgid ":mod:`!tkinter.dialog` --- Classic Tk dialog boxes" msgstr "" -#: ../../library/dialog.rst:302 msgid "**Source code:** :source:`Lib/tkinter/dialog.py`" msgstr "" -#: ../../library/dialog.rst:306 -msgid "" -"The :mod:`!tkinter.dialog` module provides a simple modal dialog box built " -"on the classic (non-themed) Tk widgets." +msgid "The :mod:`!tkinter.dialog` module provides a simple modal dialog box built on the classic (non-themed) Tk widgets." msgstr "" -#: ../../library/dialog.rst:311 -msgid "" -"The name of a bitmap (``'questhead'``) suitable for use as the *bitmap* of " -"a :class:`Dialog`." +msgid "The name of a bitmap (``'questhead'``) suitable for use as the *bitmap* of a :class:`Dialog`." msgstr "" -#: ../../library/dialog.rst:316 -msgid "" -"Display a modal dialog box built from the classic (non-themed) Tk widgets " -"and wait for the user to press one of its buttons. The options, given " -"through *cnf* or as keyword arguments, are all required: *title* (the window " -"title), *text* (the message), *bitmap* (the name of a bitmap icon, such " -"as :data:`DIALOG_ICON`), *default* (the index of the default button) and " -"*strings* (the sequence of button labels). After construction, the :attr:`!" -"num` attribute holds the index of the button the user pressed." +msgid "Display a modal dialog box built from the classic (non-themed) Tk widgets and wait for the user to press one of its buttons. The options, given through *cnf* or as keyword arguments, are all required: *title* (the window title), *text* (the message), *bitmap* (the name of a bitmap icon, such as :data:`DIALOG_ICON`), *default* (the index of the default button) and *strings* (the sequence of button labels). After construction, the :attr:`!num` attribute holds the index of the button the user pressed." msgstr "" -#: ../../library/dialog.rst:327 -msgid "" -"Do nothing. The dialog window is destroyed automatically before the " -"constructor returns, so there is nothing left for this method to do." +msgid "Do nothing. The dialog window is destroyed automatically before the constructor returns, so there is nothing left for this method to do." msgstr "" -#: ../../library/dialog.rst:334 msgid "Modules :mod:`tkinter.messagebox`, :ref:`tut-files`" msgstr "" diff --git a/library/difflib.po b/library/difflib.po index cf54712a..5b1e6fe8 100644 --- a/library/difflib.po +++ b/library/difflib.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:04+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,731 +23,363 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/difflib.rst:2 msgid ":mod:`!difflib` --- Helpers for computing deltas" msgstr "" -#: ../../library/difflib.rst:11 msgid "**Source code:** :source:`Lib/difflib.py`" msgstr "" -#: ../../library/difflib.rst:20 -msgid "" -"This module provides classes and functions for comparing sequences. Most of " -"them compare sequences of text lines (for example lists of strings, " -"or :term:`file objects `) and produce :dfn:`diffs` -- reports " -"on the differences. Diffs can be produced in in various formats, including " -"HTML and context and unified diffs -- formats produced by tools " -"like :manpage:`diff ` and :manpage:`git diff `." +msgid "This module provides classes and functions for comparing sequences. Most of them compare sequences of text lines (for example lists of strings, or :term:`file objects `) and produce :dfn:`diffs` -- reports on the differences. Diffs can be produced in in various formats, including HTML and context and unified diffs -- formats produced by tools like :manpage:`diff ` and :manpage:`git diff `." msgstr "" -#: ../../library/difflib.rst:28 -msgid "" -"Comparisons are done using a matching algorithm implemented " -"in :class:`SequenceMatcher` -- a flexible class for comparing pairs of " -"sequences of any type, not just text, so long as the sequence elements " -"are :term:`hashable`." +msgid "Comparisons are done using a matching algorithm implemented in :class:`SequenceMatcher` -- a flexible class for comparing pairs of sequences of any type, not just text, so long as the sequence elements are :term:`hashable`." msgstr "" -#: ../../library/difflib.rst:37 msgid "Junk heuristic" msgstr "" -#: ../../library/difflib.rst:39 -msgid "" -":mod:`!difflib` uses a :dfn:`junk` heuristic: some items are deemed to " -"be :dfn:`junk`, and ignored when searching for similarities. Ideally, these " -"are uninteresting or common items, such as blank lines or whitespace." +msgid ":mod:`!difflib` uses a :dfn:`junk` heuristic: some items are deemed to be :dfn:`junk`, and ignored when searching for similarities. Ideally, these are uninteresting or common items, such as blank lines or whitespace." msgstr "" -#: ../../library/difflib.rst:44 -msgid "" -"This heuristic can speed the algorithm up (because it reduces the number of " -"possible combinations) and it can produce results that are more " -"understandable for humans (typically breaking on whitespace). But it can " -"also cause pathological cases:" +msgid "This heuristic can speed the algorithm up (because it reduces the number of possible combinations) and it can produce results that are more understandable for humans (typically breaking on whitespace). But it can also cause pathological cases:" msgstr "" -#: ../../library/difflib.rst:49 -msgid "" -"Inappropriately chosen junk items can cause an unexpectedly **large** (but " -"still correct) result." +msgid "Inappropriately chosen junk items can cause an unexpectedly **large** (but still correct) result." msgstr "" -#: ../../library/difflib.rst:51 -msgid "" -"The default heuristic is **asymmetric**: only the second sequence is " -"inspected when determining what is considered junk, so comparing A to B can " -"give different results than comparing B to A and reversing the result." +msgid "The default heuristic is **asymmetric**: only the second sequence is inspected when determining what is considered junk, so comparing A to B can give different results than comparing B to A and reversing the result." msgstr "" -#: ../../library/difflib.rst:55 -msgid "" -"By default, if the second input sequence is at least 200 items long, items " -"that account for more than 1% it are considered *junk*." +msgid "By default, if the second input sequence is at least 200 items long, items that account for more than 1% it are considered *junk*." msgstr "" -#: ../../library/difflib.rst:58 -msgid "" -"Depending on your data, you should consider turning this heuristic off " -"(setting :class:`~difflib.SequenceMatcher`'s *autojunk* argument to to " -"``False``) or tuning it (using the *isjunk* argument, perhaps to one of " -"the :ref:`predefined functions `)." +msgid "Depending on your data, you should consider turning this heuristic off (setting :class:`~difflib.SequenceMatcher`'s *autojunk* argument to to ``False``) or tuning it (using the *isjunk* argument, perhaps to one of the :ref:`predefined functions `)." msgstr "" -#: ../../library/difflib.rst:65 msgid "The :mod:`!difflib` algorithm" msgstr "" -#: ../../library/difflib.rst:67 -msgid "" -"The algorithm used in :class:`SequenceMatcher` predates, and is a little " -"fancier than, an algorithm published in the late 1980s by Ratcliff and " -"Obershelp under the hyperbolic name \"gestalt pattern matching.\" The idea " -"is to find the longest contiguous subsequence common to both inputs, then " -"recursively handle the pieces of the sequences to the left and to the right " -"of the matching subsequence." +msgid "The algorithm used in :class:`SequenceMatcher` predates, and is a little fancier than, an algorithm published in the late 1980s by Ratcliff and Obershelp under the hyperbolic name \"gestalt pattern matching.\" The idea is to find the longest contiguous subsequence common to both inputs, then recursively handle the pieces of the sequences to the left and to the right of the matching subsequence." msgstr "" -#: ../../library/difflib.rst:76 -msgid "" -"`Pattern Matching: The Gestalt Approach `_" +msgid "`Pattern Matching: The Gestalt Approach `_" msgstr "" -#: ../../library/difflib.rst:77 -msgid "" -"Discussion of a similar algorithm by John W. Ratcliff and D. E. Metzener. " -"This was published in Dr. Dobb's Journal in July, 1988." +msgid "Discussion of a similar algorithm by John W. Ratcliff and D. E. Metzener. This was published in Dr. Dobb's Journal in July, 1988." msgstr "" -#: ../../library/difflib.rst:80 -msgid "" -"As an extension to the Ratcliff and Obershelp algorithm, :mod:`!difflib` " -"searches for the longest *junk-free* contiguous subsequence. See " -"the :ref:`difflib-junk` section for details." +msgid "As an extension to the Ratcliff and Obershelp algorithm, :mod:`!difflib` searches for the longest *junk-free* contiguous subsequence. See the :ref:`difflib-junk` section for details." msgstr "" -#: ../../library/difflib.rst:84 msgid "Timing" msgstr "" -#: ../../library/difflib.rst:86 -msgid "" -"The basic Ratcliff-Obershelp algorithm is cubic time in the worst case and " -"quadratic time in the expected case. :mod:`difflib`'s algorithm is quadratic " -"time for the worst case and has expected-case behavior dependent in a " -"complicated way on how many elements the sequences have in common; best case " -"time is linear." +msgid "The basic Ratcliff-Obershelp algorithm is cubic time in the worst case and quadratic time in the expected case. :mod:`difflib`'s algorithm is quadratic time for the worst case and has expected-case behavior dependent in a complicated way on how many elements the sequences have in common; best case time is linear." msgstr "" -#: ../../library/difflib.rst:97 msgid "Diff generation" msgstr "" -#: ../../library/difflib.rst:103 -msgid "" -"This is a class for comparing sequences of lines of text, and producing " -"human-readable differences or deltas. Differ uses :class:`SequenceMatcher` " -"both to compare sequences of lines, and to compare sequences of characters " -"within similar (near-matching) lines." +msgid "This is a class for comparing sequences of lines of text, and producing human-readable differences or deltas. Differ uses :class:`SequenceMatcher` both to compare sequences of lines, and to compare sequences of characters within similar (near-matching) lines." msgstr "" -#: ../../library/difflib.rst:108 msgid "Each line of a :class:`Differ` delta begins with a two-letter code:" msgstr "" -#: ../../library/difflib.rst:111 msgid "Code" msgstr "" -#: ../../library/difflib.rst:111 ../../library/difflib.rst:580 msgid "Meaning" msgstr "" -#: ../../library/difflib.rst:113 msgid "``'- '``" msgstr "" -#: ../../library/difflib.rst:113 msgid "line unique to sequence 1" msgstr "" -#: ../../library/difflib.rst:115 msgid "``'+ '``" msgstr "" -#: ../../library/difflib.rst:115 msgid "line unique to sequence 2" msgstr "" -#: ../../library/difflib.rst:117 msgid "``' '``" msgstr "" -#: ../../library/difflib.rst:117 msgid "line common to both sequences" msgstr "" -#: ../../library/difflib.rst:119 msgid "``'? '``" msgstr "" -#: ../../library/difflib.rst:119 msgid "line not present in either input sequence" msgstr "" -#: ../../library/difflib.rst:122 -msgid "" -"Lines beginning with '``?``' attempt to guide the eye to intraline " -"differences, and were not present in either input sequence. These lines can " -"be confusing if the sequences contain whitespace characters, such as spaces, " -"tabs or line breaks." +msgid "Lines beginning with '``?``' attempt to guide the eye to intraline differences, and were not present in either input sequence. These lines can be confusing if the sequences contain whitespace characters, such as spaces, tabs or line breaks." msgstr "" -#: ../../library/difflib.rst:126 -msgid "" -"Note that :class:`Differ`\\ -generated deltas make no claim to be " -"**minimal** diffs. To the contrary, minimal diffs are often counter-" -"intuitive for humans, because they synch up anywhere possible, sometimes at " -"accidental matches 100 pages apart. Restricting synch points to contiguous " -"matches preserves some notion of locality, at the occasional cost of " -"producing a longer diff." +msgid "Note that :class:`Differ`\\ -generated deltas make no claim to be **minimal** diffs. To the contrary, minimal diffs are often counter-intuitive for humans, because they synch up anywhere possible, sometimes at accidental matches 100 pages apart. Restricting synch points to contiguous matches preserves some notion of locality, at the occasional cost of producing a longer diff." msgstr "" -#: ../../library/difflib.rst:133 msgid "The :class:`Differ` class has this constructor:" msgstr "" -#: ../../library/difflib.rst:137 -msgid "" -"Optional keyword parameters *linejunk* and *charjunk* are for filter " -"functions (or ``None``):" +msgid "Optional keyword parameters *linejunk* and *charjunk* are for filter functions (or ``None``):" msgstr "" -#: ../../library/difflib.rst:140 -msgid "" -"*linejunk*: A function that accepts a single string argument, and returns " -"true if the string is junk. The default is ``None``, meaning that no line " -"is considered junk." +msgid "*linejunk*: A function that accepts a single string argument, and returns true if the string is junk. The default is ``None``, meaning that no line is considered junk." msgstr "" -#: ../../library/difflib.rst:144 -msgid "" -"*charjunk*: A function that accepts a single character argument (a string of " -"length 1), and returns true if the character is junk. The default is " -"``None``, meaning that no character is considered junk." +msgid "*charjunk*: A function that accepts a single character argument (a string of length 1), and returns true if the character is junk. The default is ``None``, meaning that no character is considered junk." msgstr "" -#: ../../library/difflib.rst:148 -msgid "" -"These junk-filtering functions speed up matching to find differences and do " -"not cause any differing lines or characters to be ignored. Read the " -"description of the :meth:`~SequenceMatcher.find_longest_match` method's " -"*isjunk* parameter for an explanation." +msgid "These junk-filtering functions speed up matching to find differences and do not cause any differing lines or characters to be ignored. Read the description of the :meth:`~SequenceMatcher.find_longest_match` method's *isjunk* parameter for an explanation." msgstr "" -#: ../../library/difflib.rst:154 -msgid "" -":class:`Differ` objects are used (deltas generated) via a single method:" +msgid ":class:`Differ` objects are used (deltas generated) via a single method:" msgstr "" -#: ../../library/difflib.rst:159 -msgid "" -"Compare two sequences of lines, and generate the delta (a sequence of lines)." +msgid "Compare two sequences of lines, and generate the delta (a sequence of lines)." msgstr "" -#: ../../library/difflib.rst:161 -msgid "" -"Each sequence must contain individual single-line strings ending with " -"newlines. Such sequences can be obtained from " -"the :meth:`~io.IOBase.readlines` method of file-like objects. The generated " -"delta also consists of newline-terminated strings, ready to be printed as-is " -"via the :meth:`~io.IOBase.writelines` method of a file-like object." +msgid "Each sequence must contain individual single-line strings ending with newlines. Such sequences can be obtained from the :meth:`~io.IOBase.readlines` method of file-like objects. The generated delta also consists of newline-terminated strings, ready to be printed as-is via the :meth:`~io.IOBase.writelines` method of a file-like object." msgstr "" -#: ../../library/difflib.rst:170 -msgid "" -"This class can be used to create an HTML table (or a complete HTML file " -"containing the table) showing a side by side, line by line comparison of " -"text with inter-line and intra-line change highlights. The table can be " -"generated in either full or contextual difference mode." +msgid "This class can be used to create an HTML table (or a complete HTML file containing the table) showing a side by side, line by line comparison of text with inter-line and intra-line change highlights. The table can be generated in either full or contextual difference mode." msgstr "" -#: ../../library/difflib.rst:177 -msgid "" -"The trailing newlines get stripped before the diff, so the result can be " -"incomplete. See :gh:`71896` for details." +msgid "The trailing newlines get stripped before the diff, so the result can be incomplete. See :gh:`71896` for details." msgstr "" -#: ../../library/difflib.rst:180 msgid "The constructor for this class is:" msgstr "" -#: ../../library/difflib.rst:185 msgid "Initializes instance of :class:`HtmlDiff`." msgstr "" -#: ../../library/difflib.rst:187 -msgid "" -"*tabsize* is an optional keyword argument to specify tab stop spacing and " -"defaults to ``8``." +msgid "*tabsize* is an optional keyword argument to specify tab stop spacing and defaults to ``8``." msgstr "" -#: ../../library/difflib.rst:190 -msgid "" -"*wrapcolumn* is an optional keyword to specify column number where lines are " -"broken and wrapped, defaults to ``None`` where lines are not wrapped." +msgid "*wrapcolumn* is an optional keyword to specify column number where lines are broken and wrapped, defaults to ``None`` where lines are not wrapped." msgstr "" -#: ../../library/difflib.rst:193 -msgid "" -"*linejunk* and *charjunk* are optional keyword arguments passed " -"into :func:`ndiff` (used by :class:`HtmlDiff` to generate the side by side " -"HTML differences). See :func:`ndiff` documentation for argument default " -"values and descriptions." +msgid "*linejunk* and *charjunk* are optional keyword arguments passed into :func:`ndiff` (used by :class:`HtmlDiff` to generate the side by side HTML differences). See :func:`ndiff` documentation for argument default values and descriptions." msgstr "" -#: ../../library/difflib.rst:197 msgid "The following methods are public:" msgstr "" -#: ../../library/difflib.rst:202 -msgid "" -"Compares *fromlines* and *tolines* (lists of strings) and returns a string " -"which is a complete HTML file containing a table showing line by line " -"differences with inter-line and intra-line changes highlighted." +msgid "Compares *fromlines* and *tolines* (lists of strings) and returns a string which is a complete HTML file containing a table showing line by line differences with inter-line and intra-line changes highlighted." msgstr "" -#: ../../library/difflib.rst:206 -msgid "" -"*fromdesc* and *todesc* are optional keyword arguments to specify from/to " -"file column header strings (both default to an empty string)." +msgid "*fromdesc* and *todesc* are optional keyword arguments to specify from/to file column header strings (both default to an empty string)." msgstr "" -#: ../../library/difflib.rst:209 -msgid "" -"*context* and *numlines* are both optional keyword arguments. Set *context* " -"to ``True`` when contextual differences are to be shown, else the default is " -"``False`` to show the full files. *numlines* defaults to ``5``. When " -"*context* is ``True`` *numlines* controls the number of context lines which " -"surround the difference highlights. When *context* is ``False`` *numlines* " -"controls the number of lines which are shown before a difference highlight " -"when using the \"next\" hyperlinks (setting to zero would cause the \"next\" " -"hyperlinks to place the next difference highlight at the top of the browser " -"without any leading context)." -msgstr "" - -#: ../../library/difflib.rst:220 -msgid "" -"*fromdesc* and *todesc* are interpreted as unescaped HTML and should be " -"properly escaped while receiving input from untrusted sources." +msgid "*context* and *numlines* are both optional keyword arguments. Set *context* to ``True`` when contextual differences are to be shown, else the default is ``False`` to show the full files. *numlines* defaults to ``5``. When *context* is ``True`` *numlines* controls the number of context lines which surround the difference highlights. When *context* is ``False`` *numlines* controls the number of lines which are shown before a difference highlight when using the \"next\" hyperlinks (setting to zero would cause the \"next\" hyperlinks to place the next difference highlight at the top of the browser without any leading context)." msgstr "" -#: ../../library/difflib.rst:223 -msgid "" -"*charset* keyword-only argument was added. The default charset of HTML " -"document changed from ``'ISO-8859-1'`` to ``'utf-8'``." +msgid "*fromdesc* and *todesc* are interpreted as unescaped HTML and should be properly escaped while receiving input from untrusted sources." msgstr "" -#: ../../library/difflib.rst:229 -msgid "" -"Compares *fromlines* and *tolines* (lists of strings) and returns a string " -"which is a complete HTML table showing line by line differences with inter-" -"line and intra-line changes highlighted." +msgid "*charset* keyword-only argument was added. The default charset of HTML document changed from ``'ISO-8859-1'`` to ``'utf-8'``." msgstr "" -#: ../../library/difflib.rst:233 -msgid "" -"The arguments for this method are the same as those for " -"the :meth:`make_file` method." +msgid "Compares *fromlines* and *tolines* (lists of strings) and returns a string which is a complete HTML table showing line by line differences with inter-line and intra-line changes highlighted." msgstr "" -#: ../../library/difflib.rst:240 -msgid "" -"Compare *a* and *b* (lists of strings); return a delta (a :term:`generator` " -"generating the delta lines) in context diff format." +msgid "The arguments for this method are the same as those for the :meth:`make_file` method." msgstr "" -#: ../../library/difflib.rst:243 -msgid "" -"Context diffs are a compact way of showing just the lines that have changed " -"plus a few lines of context. The changes are shown in a before/after " -"style. The number of context lines is set by *n* which defaults to three." +msgid "Compare *a* and *b* (lists of strings); return a delta (a :term:`generator` generating the delta lines) in context diff format." msgstr "" -#: ../../library/difflib.rst:247 -msgid "" -"By default, the diff control lines (those with ``***`` or ``---``) are " -"created with a trailing newline. This is helpful so that inputs created " -"from :func:`io.IOBase.readlines` result in diffs that are suitable for use " -"with :func:`io.IOBase.writelines` since both the inputs and outputs have " -"trailing newlines." +msgid "Context diffs are a compact way of showing just the lines that have changed plus a few lines of context. The changes are shown in a before/after style. The number of context lines is set by *n* which defaults to three." msgstr "" -#: ../../library/difflib.rst:253 ../../library/difflib.rst:385 -msgid "" -"For inputs that do not have trailing newlines, set the *lineterm* argument " -"to ``\"\"`` so that the output will be uniformly newline free." +msgid "By default, the diff control lines (those with ``***`` or ``---``) are created with a trailing newline. This is helpful so that inputs created from :func:`io.IOBase.readlines` result in diffs that are suitable for use with :func:`io.IOBase.writelines` since both the inputs and outputs have trailing newlines." msgstr "" -#: ../../library/difflib.rst:256 -msgid "" -"The context diff format normally has a header for filenames and modification " -"times. Any or all of these may be specified using strings for *fromfile*, " -"*tofile*, *fromfiledate*, and *tofiledate*. The modification times are " -"normally expressed in the ISO 8601 format. If not specified, the strings " -"default to blanks." +msgid "For inputs that do not have trailing newlines, set the *lineterm* argument to ``\"\"`` so that the output will be uniformly newline free." +msgstr "" + +msgid "The context diff format normally has a header for filenames and modification times. Any or all of these may be specified using strings for *fromfile*, *tofile*, *fromfiledate*, and *tofiledate*. The modification times are normally expressed in the ISO 8601 format. If not specified, the strings default to blanks." msgstr "" -#: ../../library/difflib.rst:282 ../../library/difflib.rst:408 msgid "See :ref:`difflib-interface` for a more detailed example." msgstr "" -#: ../../library/difflib.rst:287 -msgid "" -"Return a list of the best \"good enough\" matches. *word* is a sequence for " -"which close matches are desired (typically a string), and *possibilities* is " -"a list of sequences against which to match *word* (typically a list of " -"strings)." +msgid "Return a list of the best \"good enough\" matches. *word* is a sequence for which close matches are desired (typically a string), and *possibilities* is a list of sequences against which to match *word* (typically a list of strings)." msgstr "" -#: ../../library/difflib.rst:291 -msgid "" -"Optional argument *n* (default ``3``) is the maximum number of close matches " -"to return; *n* must be greater than ``0``." +msgid "Optional argument *n* (default ``3``) is the maximum number of close matches to return; *n* must be greater than ``0``." msgstr "" -#: ../../library/difflib.rst:294 -msgid "" -"Optional argument *cutoff* (default ``0.6``) is a float in the range [0, 1]. " -"Possibilities that don't score at least that similar to *word* are ignored." +msgid "Optional argument *cutoff* (default ``0.6``) is a float in the range [0, 1]. Possibilities that don't score at least that similar to *word* are ignored." msgstr "" -#: ../../library/difflib.rst:297 -msgid "" -"The best (no more than *n*) matches among the possibilities are returned in " -"a list, sorted by similarity score, most similar first." +msgid "The best (no more than *n*) matches among the possibilities are returned in a list, sorted by similarity score, most similar first." msgstr "" -#: ../../library/difflib.rst:313 -msgid "" -"Compare *a* and *b* (lists of strings); return a :class:`Differ`\\ -style " -"delta (a :term:`generator` generating the delta lines)." +msgid "Compare *a* and *b* (lists of strings); return a :class:`Differ`\\ -style delta (a :term:`generator` generating the delta lines)." msgstr "" -#: ../../library/difflib.rst:316 -msgid "" -"Optional keyword parameters *linejunk* and *charjunk* are filtering " -"functions (or ``None``):" +msgid "Optional keyword parameters *linejunk* and *charjunk* are filtering functions (or ``None``):" msgstr "" -#: ../../library/difflib.rst:319 -msgid "" -"*linejunk*: A function that accepts a single string argument, and returns " -"true if the string is junk, or false if not. The default is ``None``. There " -"is also a module-level function :func:`IS_LINE_JUNK`, which filters out " -"lines without visible characters, except for at most one hash character " -"(``'#'``) -- however the underlying :class:`SequenceMatcher` class does a " -"dynamic analysis of which lines are so frequent as to constitute noise, and " -"this usually works better than using this function." +msgid "*linejunk*: A function that accepts a single string argument, and returns true if the string is junk, or false if not. The default is ``None``. There is also a module-level function :func:`IS_LINE_JUNK`, which filters out lines without visible characters, except for at most one hash character (``'#'``) -- however the underlying :class:`SequenceMatcher` class does a dynamic analysis of which lines are so frequent as to constitute noise, and this usually works better than using this function." msgstr "" -#: ../../library/difflib.rst:327 -msgid "" -"*charjunk*: A function that accepts a character (a string of length 1), and " -"returns if the character is junk, or false if not. The default is module-" -"level function :func:`IS_CHARACTER_JUNK`, which filters out whitespace " -"characters (a blank or tab; it's a bad idea to include newline in this!)." +msgid "*charjunk*: A function that accepts a character (a string of length 1), and returns if the character is junk, or false if not. The default is module-level function :func:`IS_CHARACTER_JUNK`, which filters out whitespace characters (a blank or tab; it's a bad idea to include newline in this!)." msgstr "" -#: ../../library/difflib.rst:348 msgid "Return one of the two sequences that generated a delta." msgstr "" -#: ../../library/difflib.rst:350 -msgid "" -"Given a *sequence* produced by :meth:`Differ.compare` or :func:`ndiff`, " -"extract lines originating from file 1 or 2 (parameter *which*), stripping " -"off line prefixes." +msgid "Given a *sequence* produced by :meth:`Differ.compare` or :func:`ndiff`, extract lines originating from file 1 or 2 (parameter *which*), stripping off line prefixes." msgstr "" -#: ../../library/difflib.rst:354 msgid "Example:" msgstr "" -#: ../../library/difflib.rst:371 -msgid "" -"Compare *a* and *b* (lists of strings); return a delta (a :term:`generator` " -"generating the delta lines) in unified diff format." +msgid "Compare *a* and *b* (lists of strings); return a delta (a :term:`generator` generating the delta lines) in unified diff format." msgstr "" -#: ../../library/difflib.rst:374 -msgid "" -"Unified diffs are a compact way of showing just the lines that have changed " -"plus a few lines of context. The changes are shown in an inline style " -"(instead of separate before/after blocks). The number of context lines is " -"set by *n* which defaults to three." +msgid "Unified diffs are a compact way of showing just the lines that have changed plus a few lines of context. The changes are shown in an inline style (instead of separate before/after blocks). The number of context lines is set by *n* which defaults to three." msgstr "" -#: ../../library/difflib.rst:379 -msgid "" -"By default, the diff control lines (those with ``---``, ``+++``, or ``@@``) " -"are created with a trailing newline. This is helpful so that inputs created " -"from :func:`io.IOBase.readlines` result in diffs that are suitable for use " -"with :func:`io.IOBase.writelines` since both the inputs and outputs have " -"trailing newlines." +msgid "By default, the diff control lines (those with ``---``, ``+++``, or ``@@``) are created with a trailing newline. This is helpful so that inputs created from :func:`io.IOBase.readlines` result in diffs that are suitable for use with :func:`io.IOBase.writelines` since both the inputs and outputs have trailing newlines." msgstr "" -#: ../../library/difflib.rst:388 -msgid "" -"The unified diff format normally has a header for filenames and modification " -"times. Any or all of these may be specified using strings for *fromfile*, " -"*tofile*, *fromfiledate*, and *tofiledate*. The modification times are " -"normally expressed in the ISO 8601 format. If not specified, the strings " -"default to blanks." +msgid "The unified diff format normally has a header for filenames and modification times. Any or all of these may be specified using strings for *fromfile*, *tofile*, *fromfiledate*, and *tofiledate*. The modification times are normally expressed in the ISO 8601 format. If not specified, the strings default to blanks." msgstr "" -#: ../../library/difflib.rst:412 -msgid "" -"Compare *a* and *b* (lists of bytes objects) using *dfunc*; yield a sequence " -"of delta lines (also bytes) in the format returned by *dfunc*. *dfunc* must " -"be a callable, typically either :func:`unified_diff` or :func:`context_diff`." +msgid "Compare *a* and *b* (lists of bytes objects) using *dfunc*; yield a sequence of delta lines (also bytes) in the format returned by *dfunc*. *dfunc* must be a callable, typically either :func:`unified_diff` or :func:`context_diff`." msgstr "" -#: ../../library/difflib.rst:417 -msgid "" -"Allows you to compare data with unknown or inconsistent encoding. All inputs " -"except *n* must be bytes objects, not str. Works by losslessly converting " -"all inputs (except *n*) to str, and calling ``dfunc(a, b, fromfile, tofile, " -"fromfiledate, tofiledate, n, lineterm)``. The output of *dfunc* is then " -"converted back to bytes, so the delta lines that you receive have the same " -"unknown/inconsistent encodings as *a* and *b*." +msgid "Allows you to compare data with unknown or inconsistent encoding. All inputs except *n* must be bytes objects, not str. Works by losslessly converting all inputs (except *n*) to str, and calling ``dfunc(a, b, fromfile, tofile, fromfiledate, tofiledate, n, lineterm)``. The output of *dfunc* is then converted back to bytes, so the delta lines that you receive have the same unknown/inconsistent encodings as *a* and *b*." msgstr "" -#: ../../library/difflib.rst:430 msgid "Junk definition functions" msgstr "" -#: ../../library/difflib.rst:434 -msgid "" -"Return ``True`` for ignorable lines. The line *line* is ignorable if *line* " -"is blank or contains a single ``'#'``, otherwise it is not ignorable. Used " -"as a default for parameter *linejunk* in :func:`ndiff` in older versions." +msgid "Return ``True`` for ignorable lines. The line *line* is ignorable if *line* is blank or contains a single ``'#'``, otherwise it is not ignorable. Used as a default for parameter *linejunk* in :func:`ndiff` in older versions." msgstr "" -#: ../../library/difflib.rst:441 -msgid "" -"Return ``True`` for ignorable characters. The character *ch* is ignorable " -"if *ch* is a space or tab, otherwise it is not ignorable. Used as a default " -"for parameter *charjunk* in :func:`ndiff`." +msgid "Return ``True`` for ignorable characters. The character *ch* is ignorable if *ch* is a space or tab, otherwise it is not ignorable. Used as a default for parameter *charjunk* in :func:`ndiff`." msgstr "" -#: ../../library/difflib.rst:449 msgid "SequenceMatcher objects" msgstr "" -#: ../../library/difflib.rst:453 -msgid "" -"Optional argument *isjunk* must be ``None`` (the default) or a one-argument " -"function that takes a sequence element and returns true if and only if the " -"element is \"junk\" and should be ignored. Passing ``None`` for *isjunk* is " -"equivalent to passing ``lambda x: False``; in other words, no elements are " -"ignored. For example, pass::" +msgid "Optional argument *isjunk* must be ``None`` (the default) or a one-argument function that takes a sequence element and returns true if and only if the element is \"junk\" and should be ignored. Passing ``None`` for *isjunk* is equivalent to passing ``lambda x: False``; in other words, no elements are ignored. For example, pass::" msgstr "" -#: ../../library/difflib.rst:459 msgid "lambda x: x in \" \\t\"" msgstr "" -#: ../../library/difflib.rst:461 -msgid "" -"if you're comparing lines as sequences of characters, and don't want to " -"synch up on blanks or hard tabs." +msgid "if you're comparing lines as sequences of characters, and don't want to synch up on blanks or hard tabs." msgstr "" -#: ../../library/difflib.rst:464 -msgid "" -"The optional arguments *a* and *b* are sequences to be compared; both " -"default to empty strings. The elements of both sequences must " -"be :term:`hashable`." +msgid "The optional arguments *a* and *b* are sequences to be compared; both default to empty strings. The elements of both sequences must be :term:`hashable`." msgstr "" -#: ../../library/difflib.rst:467 -msgid "" -"The optional argument *autojunk* can be used to disable the automatic junk " -"heuristic." +msgid "The optional argument *autojunk* can be used to disable the automatic junk heuristic." msgstr "" -#: ../../library/difflib.rst:470 msgid "Added the *autojunk* parameter." msgstr "" -#: ../../library/difflib.rst:473 -msgid "" -"SequenceMatcher objects get three data attributes: *bjunk* is the set of " -"elements of *b* for which *isjunk* is ``True``; *bpopular* is the set of non-" -"junk elements considered popular by the heuristic (if it is not disabled); " -"*b2j* is a dict mapping the remaining elements of *b* to a list of positions " -"where they occur. All three are reset whenever *b* is reset " -"with :meth:`set_seqs` or :meth:`set_seq2`." +msgid "SequenceMatcher objects get three data attributes: *bjunk* is the set of elements of *b* for which *isjunk* is ``True``; *bpopular* is the set of non-junk elements considered popular by the heuristic (if it is not disabled); *b2j* is a dict mapping the remaining elements of *b* to a list of positions where they occur. All three are reset whenever *b* is reset with :meth:`set_seqs` or :meth:`set_seq2`." msgstr "" -#: ../../library/difflib.rst:480 msgid "The *bjunk* and *bpopular* attributes." msgstr "" -#: ../../library/difflib.rst:483 msgid ":class:`SequenceMatcher` objects have the following methods:" msgstr "" -#: ../../library/difflib.rst:487 msgid "Set the two sequences to be compared." msgstr "" -#: ../../library/difflib.rst:489 -msgid "" -":class:`SequenceMatcher` computes and caches detailed information about the " -"second sequence, so if you want to compare one sequence against many " -"sequences, use :meth:`set_seq2` to set the commonly used sequence once and " -"call :meth:`set_seq1` repeatedly, once for each of the other sequences." +msgid ":class:`SequenceMatcher` computes and caches detailed information about the second sequence, so if you want to compare one sequence against many sequences, use :meth:`set_seq2` to set the commonly used sequence once and call :meth:`set_seq1` repeatedly, once for each of the other sequences." msgstr "" -#: ../../library/difflib.rst:497 -msgid "" -"Set the first sequence to be compared. The second sequence to be compared " -"is not changed." +msgid "Set the first sequence to be compared. The second sequence to be compared is not changed." msgstr "" -#: ../../library/difflib.rst:503 -msgid "" -"Set the second sequence to be compared. The first sequence to be compared " -"is not changed." +msgid "Set the second sequence to be compared. The first sequence to be compared is not changed." msgstr "" -#: ../../library/difflib.rst:509 msgid "Find longest matching block in ``a[alo:ahi]`` and ``b[blo:bhi]``." msgstr "" -#: ../../library/difflib.rst:511 -msgid "" -"If *isjunk* was omitted or ``None``, :meth:`find_longest_match` returns " -"``(i, j, k)`` such that ``a[i:i+k]`` is equal to ``b[j:j+k]``, where ``alo " -"<= i <= i+k <= ahi`` and ``blo <= j <= j+k <= bhi``. For all ``(i', j', " -"k')`` meeting those conditions, the additional conditions ``k >= k'``, ``i " -"<= i'``, and if ``i == i'``, ``j <= j'`` are also met. In other words, of " -"all maximal matching blocks, return one that starts earliest in *a*, and of " -"all those maximal matching blocks that start earliest in *a*, return the one " -"that starts earliest in *b*." +msgid "If *isjunk* was omitted or ``None``, :meth:`find_longest_match` returns ``(i, j, k)`` such that ``a[i:i+k]`` is equal to ``b[j:j+k]``, where ``alo <= i <= i+k <= ahi`` and ``blo <= j <= j+k <= bhi``. For all ``(i', j', k')`` meeting those conditions, the additional conditions ``k >= k'``, ``i <= i'``, and if ``i == i'``, ``j <= j'`` are also met. In other words, of all maximal matching blocks, return one that starts earliest in *a*, and of all those maximal matching blocks that start earliest in *a*, return the one that starts earliest in *b*." msgstr "" -#: ../../library/difflib.rst:524 -msgid "" -"If *isjunk* was provided, first the longest matching block is determined as " -"above, but with the additional restriction that no junk element appears in " -"the block. Then that block is extended as far as possible by matching " -"(only) junk elements on both sides. So the resulting block never matches on " -"junk except as identical junk happens to be adjacent to an interesting match." +msgid "If *isjunk* was provided, first the longest matching block is determined as above, but with the additional restriction that no junk element appears in the block. Then that block is extended as far as possible by matching (only) junk elements on both sides. So the resulting block never matches on junk except as identical junk happens to be adjacent to an interesting match." msgstr "" -#: ../../library/difflib.rst:531 -msgid "" -"Here's the same example as before, but considering blanks to be junk. That " -"prevents ``' abcd'`` from matching the ``' abcd'`` at the tail end of the " -"second sequence directly. Instead only the ``'abcd'`` can match, and " -"matches the leftmost ``'abcd'`` in the second sequence:" +msgid "Here's the same example as before, but considering blanks to be junk. That prevents ``' abcd'`` from matching the ``' abcd'`` at the tail end of the second sequence directly. Instead only the ``'abcd'`` can match, and matches the leftmost ``'abcd'`` in the second sequence:" msgstr "" -#: ../../library/difflib.rst:540 msgid "If no blocks match, this returns ``(alo, blo, 0)``." msgstr "" -#: ../../library/difflib.rst:542 msgid "This method returns a :term:`named tuple` ``Match(a, b, size)``." msgstr "" -#: ../../library/difflib.rst:544 msgid "Added default arguments." msgstr "" -#: ../../library/difflib.rst:550 -msgid "" -"Return list of triples describing non-overlapping matching subsequences. " -"Each triple is of the form ``(i, j, n)``, and means that ``a[i:i+n] == " -"b[j:j+n]``. The triples are monotonically increasing in *i* and *j*." +msgid "Return list of triples describing non-overlapping matching subsequences. Each triple is of the form ``(i, j, n)``, and means that ``a[i:i+n] == b[j:j+n]``. The triples are monotonically increasing in *i* and *j*." msgstr "" -#: ../../library/difflib.rst:555 -msgid "" -"The last triple is a dummy, and has the value ``(len(a), len(b), 0)``. It " -"is the only triple with ``n == 0``. If ``(i, j, n)`` and ``(i', j', n')`` " -"are adjacent triples in the list, and the second is not the last triple in " -"the list, then ``i+n < i'`` or ``j+n < j'``; in other words, adjacent " -"triples always describe non-adjacent equal blocks." +msgid "The last triple is a dummy, and has the value ``(len(a), len(b), 0)``. It is the only triple with ``n == 0``. If ``(i, j, n)`` and ``(i', j', n')`` are adjacent triples in the list, and the second is not the last triple in the list, then ``i+n < i'`` or ``j+n < j'``; in other words, adjacent triples always describe non-adjacent equal blocks." msgstr "" -#: ../../library/difflib.rst:563 msgid "" ">>> s = SequenceMatcher(None, \"abxcd\", \"abcd\")\n" ">>> s.get_matching_blocks()\n" "[Match(a=0, b=0, size=2), Match(a=3, b=2, size=2), Match(a=5, b=4, size=0)]" msgstr "" -#: ../../library/difflib.rst:572 -msgid "" -"Return list of 5-tuples describing how to turn *a* into *b*. Each tuple is " -"of the form ``(tag, i1, i2, j1, j2)``. The first tuple has ``i1 == j1 == " -"0``, and remaining tuples have *i1* equal to the *i2* from the preceding " -"tuple, and, likewise, *j1* equal to the previous *j2*." +msgid "Return list of 5-tuples describing how to turn *a* into *b*. Each tuple is of the form ``(tag, i1, i2, j1, j2)``. The first tuple has ``i1 == j1 == 0``, and remaining tuples have *i1* equal to the *i2* from the preceding tuple, and, likewise, *j1* equal to the previous *j2*." msgstr "" -#: ../../library/difflib.rst:577 msgid "The *tag* values are strings, with these meanings:" msgstr "" -#: ../../library/difflib.rst:580 msgid "Value" msgstr "" -#: ../../library/difflib.rst:582 msgid "``'replace'``" msgstr "" -#: ../../library/difflib.rst:582 msgid "``a[i1:i2]`` should be replaced by ``b[j1:j2]``." msgstr "" -#: ../../library/difflib.rst:585 msgid "``'delete'``" msgstr "" -#: ../../library/difflib.rst:585 msgid "``a[i1:i2]`` should be deleted. Note that ``j1 == j2`` in this case." msgstr "" -#: ../../library/difflib.rst:588 msgid "``'insert'``" msgstr "" -#: ../../library/difflib.rst:588 -msgid "" -"``b[j1:j2]`` should be inserted at ``a[i1:i1]``. Note that ``i1 == i2`` in " -"this case." +msgid "``b[j1:j2]`` should be inserted at ``a[i1:i1]``. Note that ``i1 == i2`` in this case." msgstr "" -#: ../../library/difflib.rst:592 msgid "``'equal'``" msgstr "" -#: ../../library/difflib.rst:592 msgid "``a[i1:i2] == b[j1:j2]`` (the sub-sequences are equal)." msgstr "" -#: ../../library/difflib.rst:596 msgid "For example::" msgstr "" -#: ../../library/difflib.rst:598 msgid "" ">>> a = \"qabxcd\"\n" ">>> b = \"abycdf\"\n" @@ -762,159 +394,89 @@ msgid "" "insert a[6:6] --> b[5:6] '' --> 'f'" msgstr "" -#: ../../library/difflib.rst:613 msgid "Return a :term:`generator` of groups with up to *n* lines of context." msgstr "" -#: ../../library/difflib.rst:615 -msgid "" -"Starting with the groups returned by :meth:`get_opcodes`, this method splits " -"out smaller change clusters and eliminates intervening ranges which have no " -"changes." +msgid "Starting with the groups returned by :meth:`get_opcodes`, this method splits out smaller change clusters and eliminates intervening ranges which have no changes." msgstr "" -#: ../../library/difflib.rst:619 msgid "The groups are returned in the same format as :meth:`get_opcodes`." msgstr "" -#: ../../library/difflib.rst:624 -msgid "" -"Return a measure of the sequences' similarity as a float in the range [0, 1]." +msgid "Return a measure of the sequences' similarity as a float in the range [0, 1]." msgstr "" -#: ../../library/difflib.rst:627 -msgid "" -"Where T is the total number of elements in both sequences, and M is the " -"number of matches, this is 2.0\\*M / T. Note that this is ``1.0`` if the " -"sequences are identical, and ``0.0`` if they have nothing in common." +msgid "Where T is the total number of elements in both sequences, and M is the number of matches, this is 2.0\\*M / T. Note that this is ``1.0`` if the sequences are identical, and ``0.0`` if they have nothing in common." msgstr "" -#: ../../library/difflib.rst:631 -msgid "" -"This is expensive to compute if :meth:`get_matching_blocks` " -"or :meth:`get_opcodes` hasn't already been called, in which case you may " -"want to try :meth:`quick_ratio` or :meth:`real_quick_ratio` first to get an " -"upper bound." +msgid "This is expensive to compute if :meth:`get_matching_blocks` or :meth:`get_opcodes` hasn't already been called, in which case you may want to try :meth:`quick_ratio` or :meth:`real_quick_ratio` first to get an upper bound." msgstr "" -#: ../../library/difflib.rst:639 msgid "Return an upper bound on :meth:`ratio` relatively quickly." msgstr "" -#: ../../library/difflib.rst:644 msgid "Return an upper bound on :meth:`ratio` very quickly." msgstr "" -#: ../../library/difflib.rst:647 -msgid "" -"The three methods that return the ratio of matching to total characters can " -"give different results due to differing levels of approximation, " -"although :meth:`~SequenceMatcher.quick_ratio` " -"and :meth:`~SequenceMatcher.real_quick_ratio` are always at least as large " -"as :meth:`~SequenceMatcher.ratio`:" +msgid "The three methods that return the ratio of matching to total characters can give different results due to differing levels of approximation, although :meth:`~SequenceMatcher.quick_ratio` and :meth:`~SequenceMatcher.real_quick_ratio` are always at least as large as :meth:`~SequenceMatcher.ratio`:" msgstr "" -#: ../../library/difflib.rst:662 msgid "Examples" msgstr "" -#: ../../library/difflib.rst:667 msgid "SequenceMatcher examples" msgstr "" -#: ../../library/difflib.rst:669 msgid "This example compares two strings, considering blanks to be \"junk\":" msgstr "" -#: ../../library/difflib.rst:675 -msgid "" -":meth:`~SequenceMatcher.ratio` returns a float in [0, 1], measuring the " -"similarity of the sequences. As a rule of thumb, " -"a :meth:`~SequenceMatcher.ratio` value over 0.6 means the sequences are " -"close matches:" +msgid ":meth:`~SequenceMatcher.ratio` returns a float in [0, 1], measuring the similarity of the sequences. As a rule of thumb, a :meth:`~SequenceMatcher.ratio` value over 0.6 means the sequences are close matches:" msgstr "" -#: ../../library/difflib.rst:682 -msgid "" -"If you're only interested in where the sequences " -"match, :meth:`~SequenceMatcher.get_matching_blocks` is handy:" +msgid "If you're only interested in where the sequences match, :meth:`~SequenceMatcher.get_matching_blocks` is handy:" msgstr "" -#: ../../library/difflib.rst:691 -msgid "" -"Note that the last tuple returned " -"by :meth:`~SequenceMatcher.get_matching_blocks` is always a dummy, " -"``(len(a), len(b), 0)``, and this is the only case in which the last tuple " -"element (number of elements matched) is ``0``." +msgid "Note that the last tuple returned by :meth:`~SequenceMatcher.get_matching_blocks` is always a dummy, ``(len(a), len(b), 0)``, and this is the only case in which the last tuple element (number of elements matched) is ``0``." msgstr "" -#: ../../library/difflib.rst:695 -msgid "" -"If you want to know how to change the first sequence into the second, " -"use :meth:`~SequenceMatcher.get_opcodes`:" +msgid "If you want to know how to change the first sequence into the second, use :meth:`~SequenceMatcher.get_opcodes`:" msgstr "" -#: ../../library/difflib.rst:706 -msgid "" -"The :func:`get_close_matches` function in this module which shows how simple " -"code building on :class:`SequenceMatcher` can be used to do useful work." +msgid "The :func:`get_close_matches` function in this module which shows how simple code building on :class:`SequenceMatcher` can be used to do useful work." msgstr "" -#: ../../library/difflib.rst:710 -msgid "" -"`Simple version control recipe `_ for a small application built " -"with :class:`SequenceMatcher`." +msgid "`Simple version control recipe `_ for a small application built with :class:`SequenceMatcher`." msgstr "" -#: ../../library/difflib.rst:718 msgid "Differ example" msgstr "" -#: ../../library/difflib.rst:720 -msgid "" -"This example compares two texts. First we set up the texts, sequences of " -"individual single-line strings ending with newlines (such sequences can also " -"be obtained from the :meth:`~io.IOBase.readlines` method of file-like " -"objects):" +msgid "This example compares two texts. First we set up the texts, sequences of individual single-line strings ending with newlines (such sequences can also be obtained from the :meth:`~io.IOBase.readlines` method of file-like objects):" msgstr "" -#: ../../library/difflib.rst:739 msgid "Next we instantiate a Differ object:" msgstr "" -#: ../../library/difflib.rst:743 -msgid "" -"Note that when instantiating a :class:`Differ` object we may pass functions " -"to filter out line and character \"junk.\" See the :meth:`Differ` " -"constructor for details." +msgid "Note that when instantiating a :class:`Differ` object we may pass functions to filter out line and character \"junk.\" See the :meth:`Differ` constructor for details." msgstr "" -#: ../../library/difflib.rst:747 msgid "Finally, we compare the two:" msgstr "" -#: ../../library/difflib.rst:751 msgid "``result`` is a list of strings, so let's pretty-print it:" msgstr "" -#: ../../library/difflib.rst:766 msgid "As a single multi-line string it looks like this:" msgstr "" -#: ../../library/difflib.rst:785 msgid "A command-line interface to difflib" msgstr "" -#: ../../library/difflib.rst:787 -msgid "" -"This example shows how to use difflib to create a ``diff``-like utility." +msgid "This example shows how to use difflib to create a ``diff``-like utility." msgstr "" -#: ../../library/difflib.rst:789 msgid "" -"\"\"\" Command-line interface to difflib.py providing diffs in four " -"formats:\n" +"\"\"\" Command-line interface to difflib.py providing diffs in four formats:\n" "\n" "* ndiff: lists every line and highlights interline changes.\n" "* context: highlights clusters of changes in a before/after format.\n" @@ -961,16 +523,13 @@ msgid "" " tolines = tf.readlines()\n" "\n" " if options.u:\n" -" diff = difflib.unified_diff(fromlines, tolines, fromfile, tofile, " -"fromdate, todate, n=n)\n" +" diff = difflib.unified_diff(fromlines, tolines, fromfile, tofile, fromdate, todate, n=n)\n" " elif options.n:\n" " diff = difflib.ndiff(fromlines, tolines)\n" " elif options.m:\n" -" diff = " -"difflib.HtmlDiff().make_file(fromlines,tolines,fromfile,tofile,context=options.c,numlines=n)\n" +" diff = difflib.HtmlDiff().make_file(fromlines,tolines,fromfile,tofile,context=options.c,numlines=n)\n" " else:\n" -" diff = difflib.context_diff(fromlines, tolines, fromfile, tofile, " -"fromdate, todate, n=n)\n" +" diff = difflib.context_diff(fromlines, tolines, fromfile, tofile, fromdate, todate, n=n)\n" "\n" " sys.stdout.writelines(diff)\n" "\n" @@ -978,15 +537,12 @@ msgid "" " main()\n" msgstr "" -#: ../../library/difflib.rst:792 msgid "ndiff example" msgstr "" -#: ../../library/difflib.rst:794 msgid "This example shows how to use :func:`difflib.ndiff`." msgstr "" -#: ../../library/difflib.rst:796 msgid "" "\"\"\"ndiff [-q] file1 file2\n" " or\n" @@ -1014,11 +570,9 @@ msgid "" "confusing if the source files contain tab characters.\n" "\n" "The first file can be recovered by retaining only lines that begin with\n" -"\" \" or \"- \", and deleting those 2-character prefixes; use ndiff with " -"-r1.\n" +"\" \" or \"- \", and deleting those 2-character prefixes; use ndiff with -r1.\n" "\n" -"The second file can be recovered similarly, but by retaining only \" \" " -"and\n" +"The second file can be recovered similarly, but by retaining only \" \" and\n" "\"+ \" lines; use ndiff with -r2; or, on Unix, the second file can be\n" "recovered by piping the output through\n" "\n" diff --git a/library/dis.po b/library/dis.po index 5e6fb648..6b67719f 100644 --- a/library/dis.po +++ b/library/dis.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:04+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,100 +23,53 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/dis.rst:2 msgid ":mod:`!dis` --- Disassembler for Python bytecode" msgstr "" -#: ../../library/dis.rst:7 msgid "**Source code:** :source:`Lib/dis.py`" msgstr "" -#: ../../library/dis.rst:17 -msgid "" -"The :mod:`!dis` module supports the analysis of CPython :term:`bytecode` by " -"disassembling it. The CPython bytecode which this module takes as an input " -"is defined in the file :file:`Include/opcode.h` and used by the compiler and " -"the interpreter." +msgid "The :mod:`!dis` module supports the analysis of CPython :term:`bytecode` by disassembling it. The CPython bytecode which this module takes as an input is defined in the file :file:`Include/opcode.h` and used by the compiler and the interpreter." msgstr "" -#: ../../library/dis.rst:24 -msgid "" -"Bytecode is an implementation detail of the CPython interpreter. No " -"guarantees are made that bytecode will not be added, removed, or changed " -"between versions of Python. Use of this module should not be considered to " -"work across Python VMs or Python releases." +msgid "Bytecode is an implementation detail of the CPython interpreter. No guarantees are made that bytecode will not be added, removed, or changed between versions of Python. Use of this module should not be considered to work across Python VMs or Python releases." msgstr "" -#: ../../library/dis.rst:29 -msgid "" -"Use 2 bytes for each instruction. Previously the number of bytes varied by " -"instruction." +msgid "Use 2 bytes for each instruction. Previously the number of bytes varied by instruction." msgstr "" -#: ../../library/dis.rst:33 -msgid "" -"The argument of jump, exception handling and loop instructions is now the " -"instruction offset rather than the byte offset." +msgid "The argument of jump, exception handling and loop instructions is now the instruction offset rather than the byte offset." msgstr "" -#: ../../library/dis.rst:37 -msgid "" -"Some instructions are accompanied by one or more inline cache entries, which " -"take the form of :opcode:`CACHE` instructions. These instructions are hidden " -"by default, but can be shown by passing ``show_caches=True`` to any :mod:`!" -"dis` utility. Furthermore, the interpreter now adapts the bytecode to " -"specialize it for different runtime conditions. The adaptive bytecode can be " -"shown by passing ``adaptive=True``." +msgid "Some instructions are accompanied by one or more inline cache entries, which take the form of :opcode:`CACHE` instructions. These instructions are hidden by default, but can be shown by passing ``show_caches=True`` to any :mod:`!dis` utility. Furthermore, the interpreter now adapts the bytecode to specialize it for different runtime conditions. The adaptive bytecode can be shown by passing ``adaptive=True``." msgstr "" -#: ../../library/dis.rst:45 -msgid "" -"The argument of a jump is the offset of the target instruction relative to " -"the instruction that appears immediately after the jump " -"instruction's :opcode:`CACHE` entries." +msgid "The argument of a jump is the offset of the target instruction relative to the instruction that appears immediately after the jump instruction's :opcode:`CACHE` entries." msgstr "" -#: ../../library/dis.rst:50 -msgid "" -"As a consequence, the presence of the :opcode:`CACHE` instructions is " -"transparent for forward jumps but needs to be taken into account when " -"reasoning about backward jumps." +msgid "As a consequence, the presence of the :opcode:`CACHE` instructions is transparent for forward jumps but needs to be taken into account when reasoning about backward jumps." msgstr "" -#: ../../library/dis.rst:54 -msgid "" -"The output shows logical labels rather than instruction offsets for jump " -"targets and exception handlers. The ``-O`` command line option and the " -"``show_offsets`` argument were added." +msgid "The output shows logical labels rather than instruction offsets for jump targets and exception handlers. The ``-O`` command line option and the ``show_offsets`` argument were added." msgstr "" -#: ../../library/dis.rst:59 -msgid "" -"The :option:`-P ` command-line option and the " -"``show_positions`` argument were added." +msgid "The :option:`-P ` command-line option and the ``show_positions`` argument were added." msgstr "" -#: ../../library/dis.rst:63 msgid "The :option:`-S ` command-line option is added." msgstr "" -#: ../../library/dis.rst:65 msgid "Example: Given the function :func:`!myfunc`::" msgstr "" -#: ../../library/dis.rst:67 msgid "" "def myfunc(alist):\n" " return len(alist)" msgstr "" -#: ../../library/dis.rst:70 -msgid "" -"the following command can be used to display the disassembly of :func:`!" -"myfunc`:" +msgid "the following command can be used to display the disassembly of :func:`!myfunc`:" msgstr "" -#: ../../library/dis.rst:73 msgid "" ">>> dis.dis(myfunc)\n" " 2 RESUME 0\n" @@ -127,169 +80,99 @@ msgid "" " RETURN_VALUE" msgstr "" -#: ../../library/dis.rst:83 msgid "(The \"2\" is a line number)." msgstr "" -#: ../../library/dis.rst:88 msgid "Command-line interface" msgstr "" -#: ../../library/dis.rst:90 -msgid "" -"The :mod:`!dis` module can be invoked as a script from the command line:" +msgid "The :mod:`!dis` module can be invoked as a script from the command line:" msgstr "" -#: ../../library/dis.rst:92 msgid "python -m dis [-h] [-C] [-O] [-P] [-S] [infile]" msgstr "" -#: ../../library/dis.rst:96 msgid "The following options are accepted:" msgstr "" -#: ../../library/dis.rst:102 msgid "Display usage and exit." msgstr "" -#: ../../library/dis.rst:106 msgid "Show inline caches." msgstr "" -#: ../../library/dis.rst:112 msgid "Show offsets of instructions." msgstr "" -#: ../../library/dis.rst:118 msgid "Show positions of instructions in the source code." msgstr "" -#: ../../library/dis.rst:124 msgid "Show specialized bytecode." msgstr "" -#: ../../library/dis.rst:128 -msgid "" -"If :file:`infile` is specified, its disassembled code will be written to " -"stdout. Otherwise, disassembly is performed on compiled source code received " -"from stdin." +msgid "If :file:`infile` is specified, its disassembled code will be written to stdout. Otherwise, disassembly is performed on compiled source code received from stdin." msgstr "" -#: ../../library/dis.rst:132 msgid "Bytecode analysis" msgstr "" -#: ../../library/dis.rst:136 -msgid "" -"The bytecode analysis API allows pieces of Python code to be wrapped in " -"a :class:`Bytecode` object that provides easy access to details of the " -"compiled code." +msgid "The bytecode analysis API allows pieces of Python code to be wrapped in a :class:`Bytecode` object that provides easy access to details of the compiled code." msgstr "" -#: ../../library/dis.rst:144 -msgid "" -"Analyse the bytecode corresponding to a function, generator, asynchronous " -"generator, coroutine, method, string of source code, or a code object (as " -"returned by :func:`compile`)." +msgid "Analyse the bytecode corresponding to a function, generator, asynchronous generator, coroutine, method, string of source code, or a code object (as returned by :func:`compile`)." msgstr "" -#: ../../library/dis.rst:148 -msgid "" -"This is a convenience wrapper around many of the functions listed below, " -"most notably :func:`get_instructions`, as iterating over a :class:`Bytecode` " -"instance yields the bytecode operations as :class:`Instruction` instances." +msgid "This is a convenience wrapper around many of the functions listed below, most notably :func:`get_instructions`, as iterating over a :class:`Bytecode` instance yields the bytecode operations as :class:`Instruction` instances." msgstr "" -#: ../../library/dis.rst:152 ../../library/dis.rst:373 -msgid "" -"If *first_line* is not ``None``, it indicates the line number that should be " -"reported for the first source line in the disassembled code. Otherwise, the " -"source line information (if any) is taken directly from the disassembled " -"code object." +msgid "If *first_line* is not ``None``, it indicates the line number that should be reported for the first source line in the disassembled code. Otherwise, the source line information (if any) is taken directly from the disassembled code object." msgstr "" -#: ../../library/dis.rst:157 -msgid "" -"If *current_offset* is not ``None``, it refers to an instruction offset in " -"the disassembled code. Setting this means :meth:`.dis` will display a " -"\"current instruction\" marker against the specified opcode." +msgid "If *current_offset* is not ``None``, it refers to an instruction offset in the disassembled code. Setting this means :meth:`.dis` will display a \"current instruction\" marker against the specified opcode." msgstr "" -#: ../../library/dis.rst:161 -msgid "" -"If *show_caches* is ``True``, :meth:`.dis` will display inline cache entries " -"used by the interpreter to specialize the bytecode." +msgid "If *show_caches* is ``True``, :meth:`.dis` will display inline cache entries used by the interpreter to specialize the bytecode." msgstr "" -#: ../../library/dis.rst:164 -msgid "" -"If *adaptive* is ``True``, :meth:`.dis` will display specialized bytecode " -"that may be different from the original bytecode." +msgid "If *adaptive* is ``True``, :meth:`.dis` will display specialized bytecode that may be different from the original bytecode." msgstr "" -#: ../../library/dis.rst:167 -msgid "" -"If *show_offsets* is ``True``, :meth:`.dis` will include instruction offsets " -"in the output." +msgid "If *show_offsets* is ``True``, :meth:`.dis` will include instruction offsets in the output." msgstr "" -#: ../../library/dis.rst:170 -msgid "" -"If *show_positions* is ``True``, :meth:`.dis` will include instruction " -"source code positions in the output." +msgid "If *show_positions* is ``True``, :meth:`.dis` will include instruction source code positions in the output." msgstr "" -#: ../../library/dis.rst:175 -msgid "" -"Construct a :class:`Bytecode` instance from the given traceback, setting " -"*current_offset* to the instruction responsible for the exception." +msgid "Construct a :class:`Bytecode` instance from the given traceback, setting *current_offset* to the instruction responsible for the exception." msgstr "" -#: ../../library/dis.rst:180 msgid "The compiled code object." msgstr "" -#: ../../library/dis.rst:184 msgid "The first source line of the code object (if available)" msgstr "" -#: ../../library/dis.rst:188 -msgid "" -"Return a formatted view of the bytecode operations (the same as printed " -"by :func:`dis.dis`, but returned as a multi-line string)." +msgid "Return a formatted view of the bytecode operations (the same as printed by :func:`dis.dis`, but returned as a multi-line string)." msgstr "" -#: ../../library/dis.rst:193 -msgid "" -"Return a formatted multi-line string with detailed information about the " -"code object, like :func:`code_info`." +msgid "Return a formatted multi-line string with detailed information about the code object, like :func:`code_info`." msgstr "" -#: ../../library/dis.rst:196 ../../library/dis.rst:242 -#: ../../library/dis.rst:295 msgid "This can now handle coroutine and asynchronous generator objects." msgstr "" -#: ../../library/dis.rst:199 ../../library/dis.rst:298 -#: ../../library/dis.rst:320 ../../library/dis.rst:356 -#: ../../library/dis.rst:382 msgid "Added the *show_caches* and *adaptive* parameters." msgstr "" -#: ../../library/dis.rst:202 msgid "Added the *show_offsets* parameter" msgstr "" -#: ../../library/dis.rst:205 ../../library/dis.rst:304 -#: ../../library/dis.rst:326 ../../library/dis.rst:362 msgid "Added the *show_positions* parameter." msgstr "" -#: ../../library/dis.rst:208 msgid "Example:" msgstr "" -#: ../../library/dis.rst:210 msgid "" ">>> bytecode = dis.Bytecode(myfunc)\n" ">>> for instr in bytecode:\n" @@ -302,534 +185,296 @@ msgid "" "RETURN_VALUE" msgstr "" -#: ../../library/dis.rst:224 msgid "Analysis functions" msgstr "" -#: ../../library/dis.rst:226 -msgid "" -"The :mod:`!dis` module also defines the following analysis functions that " -"convert the input directly to the desired output. They can be useful if only " -"a single operation is being performed, so the intermediate analysis object " -"isn't useful:" +msgid "The :mod:`!dis` module also defines the following analysis functions that convert the input directly to the desired output. They can be useful if only a single operation is being performed, so the intermediate analysis object isn't useful:" msgstr "" -#: ../../library/dis.rst:232 -msgid "" -"Return a formatted multi-line string with detailed code object information " -"for the supplied function, generator, asynchronous generator, coroutine, " -"method, source code string or code object." +msgid "Return a formatted multi-line string with detailed code object information for the supplied function, generator, asynchronous generator, coroutine, method, source code string or code object." msgstr "" -#: ../../library/dis.rst:236 -msgid "" -"Note that the exact contents of code info strings are highly implementation " -"dependent and they may change arbitrarily across Python VMs or Python " -"releases." +msgid "Note that the exact contents of code info strings are highly implementation dependent and they may change arbitrarily across Python VMs or Python releases." msgstr "" -#: ../../library/dis.rst:248 -msgid "" -"Print detailed code object information for the supplied function, method, " -"source code string or code object to *file* (or ``sys.stdout`` if *file* is " -"not specified)." +msgid "Print detailed code object information for the supplied function, method, source code string or code object to *file* (or ``sys.stdout`` if *file* is not specified)." msgstr "" -#: ../../library/dis.rst:252 -msgid "" -"This is a convenient shorthand for ``print(code_info(x), file=file)``, " -"intended for interactive exploration at the interpreter prompt." +msgid "This is a convenient shorthand for ``print(code_info(x), file=file)``, intended for interactive exploration at the interpreter prompt." msgstr "" -#: ../../library/dis.rst:257 ../../library/dis.rst:289 -#: ../../library/dis.rst:317 ../../library/dis.rst:353 msgid "Added *file* parameter." msgstr "" -#: ../../library/dis.rst:264 -msgid "" -"Disassemble the *x* object. *x* can denote either a module, a class, a " -"method, a function, a generator, an asynchronous generator, a coroutine, a " -"code object, a string of source code or a byte sequence of raw bytecode. For " -"a module, it disassembles all functions. For a class, it disassembles all " -"methods (including class and static methods). For a code object or sequence " -"of raw bytecode, it prints one line per bytecode instruction. It also " -"recursively disassembles nested code objects. These can include generator " -"expressions, nested functions, the bodies of nested classes, and the code " -"objects used for :ref:`annotation scopes `. Strings are " -"first compiled to code objects with the :func:`compile` built-in function " -"before being disassembled. If no object is provided, this function " -"disassembles the last traceback." -msgstr "" - -#: ../../library/dis.rst:277 ../../library/dis.rst:314 -#: ../../library/dis.rst:350 -msgid "" -"The disassembly is written as text to the supplied *file* argument if " -"provided and to ``sys.stdout`` otherwise." +msgid "Disassemble the *x* object. *x* can denote either a module, a class, a method, a function, a generator, an asynchronous generator, a coroutine, a code object, a string of source code or a byte sequence of raw bytecode. For a module, it disassembles all functions. For a class, it disassembles all methods (including class and static methods). For a code object or sequence of raw bytecode, it prints one line per bytecode instruction. It also recursively disassembles nested code objects. These can include generator expressions, nested functions, the bodies of nested classes, and the code objects used for :ref:`annotation scopes `. Strings are first compiled to code objects with the :func:`compile` built-in function before being disassembled. If no object is provided, this function disassembles the last traceback." msgstr "" -#: ../../library/dis.rst:280 -msgid "" -"The maximal depth of recursion is limited by *depth* unless it is ``None``. " -"``depth=0`` means no recursion." +msgid "The disassembly is written as text to the supplied *file* argument if provided and to ``sys.stdout`` otherwise." msgstr "" -#: ../../library/dis.rst:283 -msgid "" -"If *show_caches* is ``True``, this function will display inline cache " -"entries used by the interpreter to specialize the bytecode." +msgid "The maximal depth of recursion is limited by *depth* unless it is ``None``. ``depth=0`` means no recursion." msgstr "" -#: ../../library/dis.rst:286 -msgid "" -"If *adaptive* is ``True``, this function will display specialized bytecode " -"that may be different from the original bytecode." +msgid "If *show_caches* is ``True``, this function will display inline cache entries used by the interpreter to specialize the bytecode." +msgstr "" + +msgid "If *adaptive* is ``True``, this function will display specialized bytecode that may be different from the original bytecode." msgstr "" -#: ../../library/dis.rst:292 msgid "Implemented recursive disassembling and added *depth* parameter." msgstr "" -#: ../../library/dis.rst:301 ../../library/dis.rst:323 -#: ../../library/dis.rst:359 msgid "Added the *show_offsets* parameter." msgstr "" -#: ../../library/dis.rst:310 -msgid "" -"Disassemble the top-of-stack function of a traceback, using the last " -"traceback if none was passed. The instruction causing the exception is " -"indicated." +msgid "Disassemble the top-of-stack function of a traceback, using the last traceback if none was passed. The instruction causing the exception is indicated." msgstr "" -#: ../../library/dis.rst:334 -msgid "" -"Disassemble a code object, indicating the last instruction if *lasti* was " -"provided. The output is divided in the following columns:" +msgid "Disassemble a code object, indicating the last instruction if *lasti* was provided. The output is divided in the following columns:" msgstr "" -#: ../../library/dis.rst:337 -msgid "" -"the source code location of the instruction. Complete location information " -"is shown if *show_positions* is true. Otherwise (the default) only the line " -"number is displayed." +msgid "the source code location of the instruction. Complete location information is shown if *show_positions* is true. Otherwise (the default) only the line number is displayed." msgstr "" -#: ../../library/dis.rst:340 msgid "the current instruction, indicated as ``-->``," msgstr "" -#: ../../library/dis.rst:341 msgid "a labelled instruction, indicated with ``>>``," msgstr "" -#: ../../library/dis.rst:342 msgid "the address of the instruction," msgstr "" -#: ../../library/dis.rst:343 msgid "the operation code name," msgstr "" -#: ../../library/dis.rst:344 msgid "operation parameters, and" msgstr "" -#: ../../library/dis.rst:345 msgid "interpretation of the parameters in parentheses." msgstr "" -#: ../../library/dis.rst:347 -msgid "" -"The parameter interpretation recognizes local and global variable names, " -"constant values, branch targets, and compare operators." +msgid "The parameter interpretation recognizes local and global variable names, constant values, branch targets, and compare operators." msgstr "" -#: ../../library/dis.rst:367 -msgid "" -"Return an iterator over the instructions in the supplied function, method, " -"source code string or code object." +msgid "Return an iterator over the instructions in the supplied function, method, source code string or code object." msgstr "" -#: ../../library/dis.rst:370 -msgid "" -"The iterator generates a series of :class:`Instruction` named tuples giving " -"the details of each operation in the supplied code." +msgid "The iterator generates a series of :class:`Instruction` named tuples giving the details of each operation in the supplied code." msgstr "" -#: ../../library/dis.rst:378 msgid "The *adaptive* parameter works as it does in :func:`dis`." msgstr "" -#: ../../library/dis.rst:385 -msgid "" -"The *show_caches* parameter is deprecated and has no effect. The iterator " -"generates the :class:`Instruction` instances with the *cache_info* field " -"populated (regardless of the value of *show_caches*) and it no longer " -"generates separate items for the cache entries." +msgid "The *show_caches* parameter is deprecated and has no effect. The iterator generates the :class:`Instruction` instances with the *cache_info* field populated (regardless of the value of *show_caches*) and it no longer generates separate items for the cache entries." msgstr "" -#: ../../library/dis.rst:393 -msgid "" -"This generator function uses the :meth:`~codeobject.co_lines` method of " -"the :ref:`code object ` *code* to find the offsets which are " -"starts of lines in the source code. They are generated as ``(offset, " -"lineno)`` pairs." +msgid "This generator function uses the :meth:`~codeobject.co_lines` method of the :ref:`code object ` *code* to find the offsets which are starts of lines in the source code. They are generated as ``(offset, lineno)`` pairs." msgstr "" -#: ../../library/dis.rst:398 msgid "Line numbers can be decreasing. Before, they were always increasing." msgstr "" -#: ../../library/dis.rst:401 -msgid "" -"The :pep:`626` :meth:`~codeobject.co_lines` method is used instead of " -"the :attr:`~codeobject.co_firstlineno` and :attr:`~codeobject.co_lnotab` " -"attributes of the :ref:`code object `." +msgid "The :pep:`626` :meth:`~codeobject.co_lines` method is used instead of the :attr:`~codeobject.co_firstlineno` and :attr:`~codeobject.co_lnotab` attributes of the :ref:`code object `." msgstr "" -#: ../../library/dis.rst:406 -msgid "" -"Line numbers can be ``None`` for bytecode that does not map to source lines." +msgid "Line numbers can be ``None`` for bytecode that does not map to source lines." msgstr "" -#: ../../library/dis.rst:412 -msgid "" -"Detect all offsets in the raw compiled bytecode string *code* which are jump " -"targets, and return a list of these offsets." +msgid "Detect all offsets in the raw compiled bytecode string *code* which are jump targets, and return a list of these offsets." msgstr "" -#: ../../library/dis.rst:418 msgid "Compute the stack effect of *opcode* with argument *oparg*." msgstr "" -#: ../../library/dis.rst:420 -msgid "" -"If the code has a jump target and *jump* is ``True``, :func:`~stack_effect` " -"will return the stack effect of jumping. If *jump* is ``False``, it will " -"return the stack effect of not jumping. And if *jump* is ``None`` (default), " -"it will return the maximal stack effect of both cases." +msgid "If the code has a jump target and *jump* is ``True``, :func:`~stack_effect` will return the stack effect of jumping. If *jump* is ``False``, it will return the stack effect of not jumping. And if *jump* is ``None`` (default), it will return the maximal stack effect of both cases." msgstr "" -#: ../../library/dis.rst:427 msgid "Added *jump* parameter." msgstr "" -#: ../../library/dis.rst:430 -msgid "" -"If ``oparg`` is omitted (or ``None``), the stack effect is now returned for " -"``oparg=0``. Previously this was an error for opcodes that use their arg. It " -"is also no longer an error to pass an integer ``oparg`` when the ``opcode`` " -"does not use it; the ``oparg`` in this case is ignored." +msgid "If ``oparg`` is omitted (or ``None``), the stack effect is now returned for ``oparg=0``. Previously this was an error for opcodes that use their arg. It is also no longer an error to pass an integer ``oparg`` when the ``opcode`` does not use it; the ``oparg`` in this case is ignored." msgstr "" -#: ../../library/dis.rst:440 msgid "Python Bytecode Instructions" msgstr "" -#: ../../library/dis.rst:442 -msgid "" -"The :func:`get_instructions` function and :class:`Bytecode` class provide " -"details of bytecode instructions as :class:`Instruction` instances:" +msgid "The :func:`get_instructions` function and :class:`Bytecode` class provide details of bytecode instructions as :class:`Instruction` instances:" msgstr "" -#: ../../library/dis.rst:447 msgid "Details for a bytecode operation" msgstr "" -#: ../../library/dis.rst:451 -msgid "" -"numeric code for operation, corresponding to the opcode values listed below " -"and the bytecode values in the :ref:`opcode_collections`." +msgid "numeric code for operation, corresponding to the opcode values listed below and the bytecode values in the :ref:`opcode_collections`." msgstr "" -#: ../../library/dis.rst:457 msgid "human readable name for operation" msgstr "" -#: ../../library/dis.rst:462 -msgid "" -"numeric code for the base operation if operation is specialized; otherwise " -"equal to :data:`opcode`" +msgid "numeric code for the base operation if operation is specialized; otherwise equal to :data:`opcode`" msgstr "" -#: ../../library/dis.rst:468 -msgid "" -"human readable name for the base operation if operation is specialized; " -"otherwise equal to :data:`opname`" +msgid "human readable name for the base operation if operation is specialized; otherwise equal to :data:`opname`" msgstr "" -#: ../../library/dis.rst:474 msgid "numeric argument to operation (if any), otherwise ``None``" msgstr "" -#: ../../library/dis.rst:478 msgid "alias for :data:`arg`" msgstr "" -#: ../../library/dis.rst:482 msgid "resolved arg value (if any), otherwise ``None``" msgstr "" -#: ../../library/dis.rst:487 -msgid "" -"human readable description of operation argument (if any), otherwise an " -"empty string." +msgid "human readable description of operation argument (if any), otherwise an empty string." msgstr "" -#: ../../library/dis.rst:493 msgid "start index of operation within bytecode sequence" msgstr "" -#: ../../library/dis.rst:498 -msgid "" -"start index of operation within bytecode sequence, including prefixed " -"``EXTENDED_ARG`` operations if present; otherwise equal to :data:`offset`" +msgid "start index of operation within bytecode sequence, including prefixed ``EXTENDED_ARG`` operations if present; otherwise equal to :data:`offset`" msgstr "" -#: ../../library/dis.rst:504 msgid "start index of the cache entries following the operation" msgstr "" -#: ../../library/dis.rst:509 msgid "end index of the cache entries following the operation" msgstr "" -#: ../../library/dis.rst:514 msgid "``True`` if this opcode starts a source line, otherwise ``False``" msgstr "" -#: ../../library/dis.rst:519 -msgid "" -"source line number associated with this opcode (if any), otherwise ``None``" +msgid "source line number associated with this opcode (if any), otherwise ``None``" msgstr "" -#: ../../library/dis.rst:524 msgid "``True`` if other code jumps to here, otherwise ``False``" msgstr "" -#: ../../library/dis.rst:529 -msgid "" -"bytecode index of the jump target if this is a jump operation, otherwise " -"``None``" +msgid "bytecode index of the jump target if this is a jump operation, otherwise ``None``" msgstr "" -#: ../../library/dis.rst:535 -msgid "" -":class:`dis.Positions` object holding the start and end locations that are " -"covered by this instruction." +msgid ":class:`dis.Positions` object holding the start and end locations that are covered by this instruction." msgstr "" -#: ../../library/dis.rst:540 -msgid "" -"Information about the cache entries of this instruction, as triplets of the " -"form ``(name, size, data)``, where the ``name`` and ``size`` describe the " -"cache format and data is the contents of the cache. ``cache_info`` is " -"``None`` if the instruction does not have caches." +msgid "Information about the cache entries of this instruction, as triplets of the form ``(name, size, data)``, where the ``name`` and ``size`` describe the cache format and data is the contents of the cache. ``cache_info`` is ``None`` if the instruction does not have caches." msgstr "" -#: ../../library/dis.rst:550 msgid "Field ``positions`` is added." msgstr "" -#: ../../library/dis.rst:554 msgid "Changed field ``starts_line``." msgstr "" -#: ../../library/dis.rst:556 -msgid "" -"Added fields ``start_offset``, ``cache_offset``, ``end_offset``, " -"``baseopname``, ``baseopcode``, ``jump_target``, ``oparg``, ``line_number`` " -"and ``cache_info``." +msgid "Added fields ``start_offset``, ``cache_offset``, ``end_offset``, ``baseopname``, ``baseopcode``, ``jump_target``, ``oparg``, ``line_number`` and ``cache_info``." msgstr "" -#: ../../library/dis.rst:563 -msgid "" -"In case the information is not available, some fields might be ``None``." +msgid "In case the information is not available, some fields might be ``None``." msgstr "" -#: ../../library/dis.rst:573 -msgid "" -"The Python compiler currently generates the following bytecode instructions." +msgid "The Python compiler currently generates the following bytecode instructions." msgstr "" -#: ../../library/dis.rst:576 msgid "**General instructions**" msgstr "" -#: ../../library/dis.rst:578 -msgid "" -"In the following, We will refer to the interpreter stack as ``STACK`` and " -"describe operations on it as if it was a Python list. The top of the stack " -"corresponds to ``STACK[-1]`` in this language." +msgid "In the following, We will refer to the interpreter stack as ``STACK`` and describe operations on it as if it was a Python list. The top of the stack corresponds to ``STACK[-1]`` in this language." msgstr "" -#: ../../library/dis.rst:584 -msgid "" -"Do nothing code. Used as a placeholder by the bytecode optimizer, and to " -"generate line tracing events." +msgid "Do nothing code. Used as a placeholder by the bytecode optimizer, and to generate line tracing events." msgstr "" -#: ../../library/dis.rst:590 -msgid "" -"Do nothing code. Used by the interpreter to record :monitoring-" -"event:`BRANCH_LEFT` and :monitoring-event:`BRANCH_RIGHT` events " -"for :mod:`sys.monitoring`." +msgid "Do nothing code. Used by the interpreter to record :monitoring-event:`BRANCH_LEFT` and :monitoring-event:`BRANCH_RIGHT` events for :mod:`sys.monitoring`." msgstr "" -#: ../../library/dis.rst:599 msgid "Removes the iterator from the top of the stack." msgstr "" -#: ../../library/dis.rst:606 msgid "Removes the top-of-stack item::" msgstr "" -#: ../../library/dis.rst:608 msgid "STACK.pop()" msgstr "" -#: ../../library/dis.rst:613 -msgid "" -"Removes the top-of-stack item. Equivalent to ``POP_TOP``. Used to clean up " -"at the end of loops, hence the name." +msgid "Removes the top-of-stack item. Equivalent to ``POP_TOP``. Used to clean up at the end of loops, hence the name." msgstr "" -#: ../../library/dis.rst:622 msgid "Implements ``del STACK[-2]``. Used to clean up when a generator exits." msgstr "" -#: ../../library/dis.rst:630 -msgid "" -"Push the i-th item to the top of the stack without removing it from its " -"original location::" +msgid "Push the i-th item to the top of the stack without removing it from its original location::" msgstr "" -#: ../../library/dis.rst:633 msgid "" "assert i > 0\n" "STACK.append(STACK[-i])" msgstr "" -#: ../../library/dis.rst:641 msgid "Swap the top of the stack with the i-th element::" msgstr "" -#: ../../library/dis.rst:643 msgid "STACK[-i], STACK[-1] = STACK[-1], STACK[-i]" msgstr "" -#: ../../library/dis.rst:650 -msgid "" -"Rather than being an actual instruction, this opcode is used to mark extra " -"space for the interpreter to cache useful data directly in the bytecode " -"itself. It is automatically hidden by all ``dis`` utilities, but can be " -"viewed with ``show_caches=True``." +msgid "Rather than being an actual instruction, this opcode is used to mark extra space for the interpreter to cache useful data directly in the bytecode itself. It is automatically hidden by all ``dis`` utilities, but can be viewed with ``show_caches=True``." msgstr "" -#: ../../library/dis.rst:655 -msgid "" -"Logically, this space is part of the preceding instruction. Many opcodes " -"expect to be followed by an exact number of caches, and will instruct the " -"interpreter to skip over them at runtime." +msgid "Logically, this space is part of the preceding instruction. Many opcodes expect to be followed by an exact number of caches, and will instruct the interpreter to skip over them at runtime." msgstr "" -#: ../../library/dis.rst:659 -msgid "" -"Populated caches can look like arbitrary instructions, so great care should " -"be taken when reading or modifying raw, adaptive bytecode containing " -"quickened data." +msgid "Populated caches can look like arbitrary instructions, so great care should be taken when reading or modifying raw, adaptive bytecode containing quickened data." msgstr "" -#: ../../library/dis.rst:666 msgid "**Unary operations**" msgstr "" -#: ../../library/dis.rst:668 -msgid "" -"Unary operations take the top of the stack, apply the operation, and push " -"the result back on the stack." +msgid "Unary operations take the top of the stack, apply the operation, and push the result back on the stack." msgstr "" -#: ../../library/dis.rst:674 msgid "Implements ``STACK[-1] = -STACK[-1]``." msgstr "" -#: ../../library/dis.rst:679 msgid "Implements ``STACK[-1] = not STACK[-1]``." msgstr "" -#: ../../library/dis.rst:681 ../../library/dis.rst:1383 -#: ../../library/dis.rst:1399 msgid "This instruction now requires an exact :class:`bool` operand." msgstr "" -#: ../../library/dis.rst:687 msgid "Implements ``STACK[-1] = ~STACK[-1]``." msgstr "" -#: ../../library/dis.rst:692 msgid "Implements ``STACK[-1] = iter(STACK[-1])``." msgstr "" -#: ../../library/dis.rst:697 -msgid "" -"If ``STACK[-1]`` is a :term:`generator iterator` or :term:`coroutine` object " -"it is left as is. Otherwise, implements ``STACK[-1] = iter(STACK[-1])``." +msgid "If ``STACK[-1]`` is a :term:`generator iterator` or :term:`coroutine` object it is left as is. Otherwise, implements ``STACK[-1] = iter(STACK[-1])``." msgstr "" -#: ../../library/dis.rst:705 msgid "Implements ``STACK[-1] = bool(STACK[-1])``." msgstr "" -#: ../../library/dis.rst:710 msgid "**Binary and in-place operations**" msgstr "" -#: ../../library/dis.rst:712 -msgid "" -"Binary operations remove the top two items from the stack (``STACK[-1]`` and " -"``STACK[-2]``). They perform the operation, then put the result back on the " -"stack." +msgid "Binary operations remove the top two items from the stack (``STACK[-1]`` and ``STACK[-2]``). They perform the operation, then put the result back on the stack." msgstr "" -#: ../../library/dis.rst:715 -msgid "" -"In-place operations are like binary operations, but the operation is done in-" -"place when ``STACK[-2]`` supports it, and the resulting ``STACK[-1]`` may be " -"(but does not have to be) the original ``STACK[-2]``." +msgid "In-place operations are like binary operations, but the operation is done in-place when ``STACK[-2]`` supports it, and the resulting ``STACK[-1]`` may be (but does not have to be) the original ``STACK[-2]``." msgstr "" -#: ../../library/dis.rst:722 -msgid "" -"Implements the binary and in-place operators (depending on the value of " -"*op*)::" +msgid "Implements the binary and in-place operators (depending on the value of *op*)::" msgstr "" -#: ../../library/dis.rst:725 msgid "" "rhs = STACK.pop()\n" "lhs = STACK.pop()\n" "STACK.append(lhs op rhs)" msgstr "" -#: ../../library/dis.rst:730 -msgid "" -"With oparg :``NB_SUBSCR``, implements binary subscript (replaces opcode " -"``BINARY_SUBSCR``)" +msgid "With oparg :``NB_SUBSCR``, implements binary subscript (replaces opcode ``BINARY_SUBSCR``)" msgstr "" -#: ../../library/dis.rst:736 ../../library/dis.rst:746 -#: ../../library/dis.rst:754 ../../library/dis.rst:766 -#: ../../library/dis.rst:844 ../../library/dis.rst:854 -#: ../../library/dis.rst:864 ../../library/dis.rst:1070 -#: ../../library/dis.rst:1081 ../../library/dis.rst:1226 -#: ../../library/dis.rst:1238 ../../library/dis.rst:1250 msgid "Implements::" msgstr "" -#: ../../library/dis.rst:738 msgid "" "key = STACK.pop()\n" "container = STACK.pop()\n" @@ -837,14 +482,12 @@ msgid "" "container[key] = value" msgstr "" -#: ../../library/dis.rst:748 msgid "" "key = STACK.pop()\n" "container = STACK.pop()\n" "del container[key]" msgstr "" -#: ../../library/dis.rst:756 msgid "" "end = STACK.pop()\n" "start = STACK.pop()\n" @@ -852,7 +495,6 @@ msgid "" "STACK.append(container[start:end])" msgstr "" -#: ../../library/dis.rst:768 msgid "" "end = STACK.pop()\n" "start = STACK.pop()\n" @@ -861,416 +503,224 @@ msgid "" "container[start:end] = value" msgstr "" -#: ../../library/dis.rst:777 msgid "**Coroutine opcodes**" msgstr "" -#: ../../library/dis.rst:781 -msgid "" -"Implements ``STACK[-1] = get_awaitable(STACK[-1])``, where " -"``get_awaitable(o)`` returns ``o`` if ``o`` is a coroutine object or a " -"generator object with the :data:`~inspect.CO_ITERABLE_COROUTINE` flag, or " -"resolves ``o.__await__``." +msgid "Implements ``STACK[-1] = get_awaitable(STACK[-1])``, where ``get_awaitable(o)`` returns ``o`` if ``o`` is a coroutine object or a generator object with the :data:`~inspect.CO_ITERABLE_COROUTINE` flag, or resolves ``o.__await__``." msgstr "" -#: ../../library/dis.rst:786 -msgid "" -"If the ``where`` operand is nonzero, it indicates where the instruction " -"occurs:" +msgid "If the ``where`` operand is nonzero, it indicates where the instruction occurs:" msgstr "" -#: ../../library/dis.rst:789 msgid "``1``: After a call to ``__aenter__``" msgstr "" -#: ../../library/dis.rst:790 msgid "``2``: After a call to ``__aexit__``" msgstr "" -#: ../../library/dis.rst:794 msgid "Previously, this instruction did not have an oparg." msgstr "" -#: ../../library/dis.rst:800 msgid "Implements ``STACK[-1] = STACK[-1].__aiter__()``." msgstr "" -#: ../../library/dis.rst:803 msgid "Returning awaitable objects from ``__aiter__`` is no longer supported." msgstr "" -#: ../../library/dis.rst:810 -msgid "" -"Implement ``STACK.append(get_awaitable(STACK[-1].__anext__()))`` to the " -"stack. See ``GET_AWAITABLE`` for details about ``get_awaitable``." +msgid "Implement ``STACK.append(get_awaitable(STACK[-1].__anext__()))`` to the stack. See ``GET_AWAITABLE`` for details about ``get_awaitable``." msgstr "" -#: ../../library/dis.rst:818 -msgid "" -"Terminates an :keyword:`async for` loop. Handles an exception raised when " -"awaiting a next item. The stack contains the async iterable in ``STACK[-2]`` " -"and the raised exception in ``STACK[-1]``. Both are popped. If the exception " -"is not :exc:`StopAsyncIteration`, it is re-raised." +msgid "Terminates an :keyword:`async for` loop. Handles an exception raised when awaiting a next item. The stack contains the async iterable in ``STACK[-2]`` and the raised exception in ``STACK[-1]``. Both are popped. If the exception is not :exc:`StopAsyncIteration`, it is re-raised." msgstr "" -#: ../../library/dis.rst:825 ../../library/dis.rst:916 -#: ../../library/dis.rst:927 -msgid "" -"Exception representation on the stack now consist of one, not three, items." +msgid "Exception representation on the stack now consist of one, not three, items." msgstr "" -#: ../../library/dis.rst:831 -msgid "" -"Handles an exception raised during a :meth:`~generator.throw` " -"or :meth:`~generator.close` call through the current frame. If " -"``STACK[-1]`` is an instance of :exc:`StopIteration`, pop three values from " -"the stack and push its ``value`` member. Otherwise, re-raise ``STACK[-1]``." +msgid "Handles an exception raised during a :meth:`~generator.throw` or :meth:`~generator.close` call through the current frame. If ``STACK[-1]`` is an instance of :exc:`StopIteration`, pop three values from the stack and push its ``value`` member. Otherwise, re-raise ``STACK[-1]``." msgstr "" -#: ../../library/dis.rst:840 msgid "**Miscellaneous opcodes**" msgstr "" -#: ../../library/dis.rst:846 msgid "" "item = STACK.pop()\n" "set.add(STACK[-i], item)" msgstr "" -#: ../../library/dis.rst:849 msgid "Used to implement set comprehensions." msgstr "" -#: ../../library/dis.rst:856 msgid "" "item = STACK.pop()\n" "list.append(STACK[-i], item)" msgstr "" -#: ../../library/dis.rst:859 msgid "Used to implement list comprehensions." msgstr "" -#: ../../library/dis.rst:866 msgid "" "value = STACK.pop()\n" "key = STACK.pop()\n" "dict.__setitem__(STACK[-i], key, value)" msgstr "" -#: ../../library/dis.rst:870 msgid "Used to implement dict comprehensions." msgstr "" -#: ../../library/dis.rst:873 -msgid "" -"Map value is ``STACK[-1]`` and map key is ``STACK[-2]``. Before, those were " -"reversed." +msgid "Map value is ``STACK[-1]`` and map key is ``STACK[-2]``. Before, those were reversed." msgstr "" -#: ../../library/dis.rst:877 -msgid "" -"For all of the :opcode:`SET_ADD`, :opcode:`LIST_APPEND` " -"and :opcode:`MAP_ADD` instructions, while the added value or key/value pair " -"is popped off, the container object remains on the stack so that it is " -"available for further iterations of the loop." +msgid "For all of the :opcode:`SET_ADD`, :opcode:`LIST_APPEND` and :opcode:`MAP_ADD` instructions, while the added value or key/value pair is popped off, the container object remains on the stack so that it is available for further iterations of the loop." msgstr "" -#: ../../library/dis.rst:885 msgid "Returns with ``STACK[-1]`` to the caller of the function." msgstr "" -#: ../../library/dis.rst:890 msgid "Yields ``STACK.pop()`` from a :term:`generator`." msgstr "" -#: ../../library/dis.rst:892 msgid "oparg set to be the stack depth." msgstr "" -#: ../../library/dis.rst:895 -msgid "" -"oparg set to be the exception block depth, for efficient closing of " -"generators." +msgid "oparg set to be the exception block depth, for efficient closing of generators." msgstr "" -#: ../../library/dis.rst:898 -msgid "" -"oparg is ``1`` if this instruction is part of a yield-from or await, and " -"``0`` otherwise." +msgid "oparg is ``1`` if this instruction is part of a yield-from or await, and ``0`` otherwise." msgstr "" -#: ../../library/dis.rst:904 -msgid "" -"Checks whether ``__annotations__`` is defined in ``locals()``, if not it is " -"set up to an empty ``dict``. This opcode is only emitted if a class or " -"module body contains :term:`variable annotations ` " -"statically." +msgid "Checks whether ``__annotations__`` is defined in ``locals()``, if not it is set up to an empty ``dict``. This opcode is only emitted if a class or module body contains :term:`variable annotations ` statically." msgstr "" -#: ../../library/dis.rst:914 -msgid "" -"Pops a value from the stack, which is used to restore the exception state." +msgid "Pops a value from the stack, which is used to restore the exception state." msgstr "" -#: ../../library/dis.rst:921 -msgid "" -"Re-raises the exception currently on top of the stack. If oparg is non-zero, " -"pops an additional value from the stack which is used to " -"set :attr:`~frame.f_lasti` of the current frame." +msgid "Re-raises the exception currently on top of the stack. If oparg is non-zero, pops an additional value from the stack which is used to set :attr:`~frame.f_lasti` of the current frame." msgstr "" -#: ../../library/dis.rst:932 -msgid "" -"Pops a value from the stack. Pushes the current exception to the top of the " -"stack. Pushes the value originally popped back to the stack. Used in " -"exception handlers." +msgid "Pops a value from the stack. Pushes the current exception to the top of the stack. Pushes the value originally popped back to the stack. Used in exception handlers." msgstr "" -#: ../../library/dis.rst:940 -msgid "" -"Performs exception matching for ``except``. Tests whether the ``STACK[-2]`` " -"is an exception matching ``STACK[-1]``. Pops ``STACK[-1]`` and pushes the " -"boolean result of the test." +msgid "Performs exception matching for ``except``. Tests whether the ``STACK[-2]`` is an exception matching ``STACK[-1]``. Pops ``STACK[-1]`` and pushes the boolean result of the test." msgstr "" -#: ../../library/dis.rst:948 -msgid "" -"Performs exception matching for ``except*``. Applies ``split(STACK[-1])`` on " -"the exception group representing ``STACK[-2]``." +msgid "Performs exception matching for ``except*``. Applies ``split(STACK[-1])`` on the exception group representing ``STACK[-2]``." msgstr "" -#: ../../library/dis.rst:951 -msgid "" -"In case of a match, pops two items from the stack and pushes the non-" -"matching subgroup (``None`` in case of full match) followed by the matching " -"subgroup. When there is no match, pops one item (the match type) and pushes " -"``None``." +msgid "In case of a match, pops two items from the stack and pushes the non-matching subgroup (``None`` in case of full match) followed by the matching subgroup. When there is no match, pops one item (the match type) and pushes ``None``." msgstr "" -#: ../../library/dis.rst:960 -msgid "" -"Calls the function in position 4 on the stack with arguments (type, val, tb) " -"representing the exception at the top of the stack. Used to implement the " -"call ``context_manager.__exit__(*exc_info())`` when an exception has " -"occurred in a :keyword:`with` statement." +msgid "Calls the function in position 4 on the stack with arguments (type, val, tb) representing the exception at the top of the stack. Used to implement the call ``context_manager.__exit__(*exc_info())`` when an exception has occurred in a :keyword:`with` statement." msgstr "" -#: ../../library/dis.rst:967 -msgid "" -"The ``__exit__`` function is in position 4 of the stack rather than 7. " -"Exception representation on the stack now consist of one, not three, items." +msgid "The ``__exit__`` function is in position 4 of the stack rather than 7. Exception representation on the stack now consist of one, not three, items." msgstr "" -#: ../../library/dis.rst:974 -msgid "" -"Pushes a common constant onto the stack. The interpreter contains a " -"hardcoded list of constants supported by this instruction. Used by " -"the :keyword:`assert` statement to load :exc:`AssertionError`." +msgid "Pushes a common constant onto the stack. The interpreter contains a hardcoded list of constants supported by this instruction. Used by the :keyword:`assert` statement to load :exc:`AssertionError`." msgstr "" -#: ../../library/dis.rst:983 -msgid "" -"Pushes :func:`!builtins.__build_class__` onto the stack. It is later called " -"to construct a class." +msgid "Pushes :func:`!builtins.__build_class__` onto the stack. It is later called to construct a class." msgstr "" -#: ../../library/dis.rst:988 -msgid "" -"Perform ``STACK.append(len(STACK[-1]))``. Used in :keyword:`match` " -"statements where comparison with structure of pattern is needed." +msgid "Perform ``STACK.append(len(STACK[-1]))``. Used in :keyword:`match` statements where comparison with structure of pattern is needed." msgstr "" -#: ../../library/dis.rst:996 -msgid "" -"If ``STACK[-1]`` is an instance of :class:`collections.abc.Mapping` (or, " -"more technically: if it has the :c:macro:`Py_TPFLAGS_MAPPING` flag set in " -"its :c:member:`~PyTypeObject.tp_flags`), push ``True`` onto the stack. " -"Otherwise, push ``False``." +msgid "If ``STACK[-1]`` is an instance of :class:`collections.abc.Mapping` (or, more technically: if it has the :c:macro:`Py_TPFLAGS_MAPPING` flag set in its :c:member:`~PyTypeObject.tp_flags`), push ``True`` onto the stack. Otherwise, push ``False``." msgstr "" -#: ../../library/dis.rst:1006 -msgid "" -"If ``STACK[-1]`` is an instance of :class:`collections.abc.Sequence` and is " -"*not* an instance of :class:`str`/:class:`bytes`/:class:`bytearray` (or, " -"more technically: if it has the :c:macro:`Py_TPFLAGS_SEQUENCE` flag set in " -"its :c:member:`~PyTypeObject.tp_flags`), push ``True`` onto the stack. " -"Otherwise, push ``False``." +msgid "If ``STACK[-1]`` is an instance of :class:`collections.abc.Sequence` and is *not* an instance of :class:`str`/:class:`bytes`/:class:`bytearray` (or, more technically: if it has the :c:macro:`Py_TPFLAGS_SEQUENCE` flag set in its :c:member:`~PyTypeObject.tp_flags`), push ``True`` onto the stack. Otherwise, push ``False``." msgstr "" -#: ../../library/dis.rst:1016 -msgid "" -"``STACK[-1]`` is a tuple of mapping keys, and ``STACK[-2]`` is the match " -"subject. If ``STACK[-2]`` contains all of the keys in ``STACK[-1]``, push " -"a :class:`tuple` containing the corresponding values. Otherwise, push " -"``None``." +msgid "``STACK[-1]`` is a tuple of mapping keys, and ``STACK[-2]`` is the match subject. If ``STACK[-2]`` contains all of the keys in ``STACK[-1]``, push a :class:`tuple` containing the corresponding values. Otherwise, push ``None``." msgstr "" -#: ../../library/dis.rst:1022 ../../library/dis.rst:1768 -msgid "" -"Previously, this instruction also pushed a boolean value indicating success " -"(``True``) or failure (``False``)." +msgid "Previously, this instruction also pushed a boolean value indicating success (``True``) or failure (``False``)." msgstr "" -#: ../../library/dis.rst:1029 -msgid "" -"Implements ``name = STACK.pop()``. *namei* is the index of *name* in the " -"attribute :attr:`~codeobject.co_names` of the :ref:`code object `. The compiler tries to use :opcode:`STORE_FAST` " -"or :opcode:`STORE_GLOBAL` if possible." +msgid "Implements ``name = STACK.pop()``. *namei* is the index of *name* in the attribute :attr:`~codeobject.co_names` of the :ref:`code object `. The compiler tries to use :opcode:`STORE_FAST` or :opcode:`STORE_GLOBAL` if possible." msgstr "" -#: ../../library/dis.rst:1036 -msgid "" -"Implements ``del name``, where *namei* is the index " -"into :attr:`~codeobject.co_names` attribute of the :ref:`code object `." +msgid "Implements ``del name``, where *namei* is the index into :attr:`~codeobject.co_names` attribute of the :ref:`code object `." msgstr "" -#: ../../library/dis.rst:1042 -msgid "" -"Unpacks ``STACK[-1]`` into *count* individual values, which are put onto the " -"stack right-to-left. Require there to be exactly *count* values.::" +msgid "Unpacks ``STACK[-1]`` into *count* individual values, which are put onto the stack right-to-left. Require there to be exactly *count* values.::" msgstr "" -#: ../../library/dis.rst:1045 msgid "" "assert(len(STACK[-1]) == count)\n" "STACK.extend(STACK.pop()[:-count-1:-1])" msgstr "" -#: ../../library/dis.rst:1051 -msgid "" -"Implements assignment with a starred target: Unpacks an iterable in " -"``STACK[-1]`` into individual values, where the total number of values can " -"be smaller than the number of items in the iterable: one of the new values " -"will be a list of all leftover items." +msgid "Implements assignment with a starred target: Unpacks an iterable in ``STACK[-1]`` into individual values, where the total number of values can be smaller than the number of items in the iterable: one of the new values will be a list of all leftover items." msgstr "" -#: ../../library/dis.rst:1056 msgid "The number of values before and after the list value is limited to 255." msgstr "" -#: ../../library/dis.rst:1058 -msgid "" -"The number of values before the list value is encoded in the argument of the " -"opcode. The number of values after the list if any is encoded using an " -"``EXTENDED_ARG``. As a consequence, the argument can be seen as a two bytes " -"values where the low byte of *counts* is the number of values before the " -"list value, the high byte of *counts* the number of values after it." +msgid "The number of values before the list value is encoded in the argument of the opcode. The number of values after the list if any is encoded using an ``EXTENDED_ARG``. As a consequence, the argument can be seen as a two bytes values where the low byte of *counts* is the number of values before the list value, the high byte of *counts* the number of values after it." msgstr "" -#: ../../library/dis.rst:1064 -msgid "" -"The extracted values are put onto the stack right-to-left, i.e. ``a, *b, c = " -"d`` will be stored after execution as ``STACK.extend((a, b, c))``." +msgid "The extracted values are put onto the stack right-to-left, i.e. ``a, *b, c = d`` will be stored after execution as ``STACK.extend((a, b, c))``." msgstr "" -#: ../../library/dis.rst:1072 msgid "" "obj = STACK.pop()\n" "value = STACK.pop()\n" "obj.name = value" msgstr "" -#: ../../library/dis.rst:1076 -msgid "" -"where *namei* is the index of name in :attr:`~codeobject.co_names` of " -"the :ref:`code object `." +msgid "where *namei* is the index of name in :attr:`~codeobject.co_names` of the :ref:`code object `." msgstr "" -#: ../../library/dis.rst:1083 msgid "" "obj = STACK.pop()\n" "del obj.name" msgstr "" -#: ../../library/dis.rst:1086 -msgid "" -"where *namei* is the index of name into :attr:`~codeobject.co_names` of " -"the :ref:`code object `." +msgid "where *namei* is the index of name into :attr:`~codeobject.co_names` of the :ref:`code object `." msgstr "" -#: ../../library/dis.rst:1092 msgid "Works as :opcode:`STORE_NAME`, but stores the name as a global." msgstr "" -#: ../../library/dis.rst:1097 msgid "Works as :opcode:`DELETE_NAME`, but deletes a global name." msgstr "" -#: ../../library/dis.rst:1102 msgid "Pushes ``co_consts[consti]`` onto the stack." msgstr "" -#: ../../library/dis.rst:1107 -msgid "" -"Pushes the integer ``i`` onto the stack. ``i`` must be in ``range(256)``" +msgid "Pushes the integer ``i`` onto the stack. ``i`` must be in ``range(256)``" msgstr "" -#: ../../library/dis.rst:1115 -msgid "" -"Pushes the value associated with ``co_names[namei]`` onto the stack. The " -"name is looked up within the locals, then the globals, then the builtins." +msgid "Pushes the value associated with ``co_names[namei]`` onto the stack. The name is looked up within the locals, then the globals, then the builtins." msgstr "" -#: ../../library/dis.rst:1121 -msgid "" -"Pushes a reference to the locals dictionary onto the stack. This is used to " -"prepare namespace dictionaries for :opcode:`LOAD_FROM_DICT_OR_DEREF` " -"and :opcode:`LOAD_FROM_DICT_OR_GLOBALS`." +msgid "Pushes a reference to the locals dictionary onto the stack. This is used to prepare namespace dictionaries for :opcode:`LOAD_FROM_DICT_OR_DEREF` and :opcode:`LOAD_FROM_DICT_OR_GLOBALS`." msgstr "" -#: ../../library/dis.rst:1130 -msgid "" -"Pops a mapping off the stack and looks up the value for ``co_names[namei]``. " -"If the name is not found there, looks it up in the globals and then the " -"builtins, similar to :opcode:`LOAD_GLOBAL`. This is used for loading global " -"variables in :ref:`annotation scopes ` within class " -"bodies." +msgid "Pops a mapping off the stack and looks up the value for ``co_names[namei]``. If the name is not found there, looks it up in the globals and then the builtins, similar to :opcode:`LOAD_GLOBAL`. This is used for loading global variables in :ref:`annotation scopes ` within class bodies." msgstr "" -#: ../../library/dis.rst:1141 -msgid "" -"Constructs a new :class:`~string.templatelib.Template` instance from a tuple " -"of strings and a tuple of interpolations and pushes the resulting object " -"onto the stack::" +msgid "Constructs a new :class:`~string.templatelib.Template` instance from a tuple of strings and a tuple of interpolations and pushes the resulting object onto the stack::" msgstr "" -#: ../../library/dis.rst:1145 msgid "" "interpolations = STACK.pop()\n" "strings = STACK.pop()\n" "STACK.append(_build_template(strings, interpolations))" msgstr "" -#: ../../library/dis.rst:1154 -msgid "" -"Constructs a new :class:`~string.templatelib.Interpolation` instance from a " -"value and its source expression and pushes the resulting object onto the " -"stack." +msgid "Constructs a new :class:`~string.templatelib.Interpolation` instance from a value and its source expression and pushes the resulting object onto the stack." msgstr "" -#: ../../library/dis.rst:1158 -msgid "" -"If no conversion or format specification is present, ``format`` is set to " -"``2``." +msgid "If no conversion or format specification is present, ``format`` is set to ``2``." msgstr "" -#: ../../library/dis.rst:1161 -msgid "" -"If the low bit of ``format`` is set, it indicates that the interpolation " -"contains a format specification." +msgid "If the low bit of ``format`` is set, it indicates that the interpolation contains a format specification." msgstr "" -#: ../../library/dis.rst:1164 -msgid "" -"If ``format >> 2`` is non-zero, it indicates that the interpolation contains " -"a conversion. The value of ``format >> 2`` is the conversion type (``0`` for " -"no conversion, ``1`` for ``!s``, ``2`` for ``!r``, and ``3`` for ``!a``)::" +msgid "If ``format >> 2`` is non-zero, it indicates that the interpolation contains a conversion. The value of ``format >> 2`` is the conversion type (``0`` for no conversion, ``1`` for ``!s``, ``2`` for ``!r``, and ``3`` for ``!a``)::" msgstr "" -#: ../../library/dis.rst:1169 msgid "" "conversion = format >> 2\n" "if format & 1:\n" @@ -1279,17 +729,12 @@ msgid "" " format_spec = None\n" "expression = STACK.pop()\n" "value = STACK.pop()\n" -"STACK.append(_build_interpolation(value, expression, conversion, " -"format_spec))" +"STACK.append(_build_interpolation(value, expression, conversion, format_spec))" msgstr "" -#: ../../library/dis.rst:1183 -msgid "" -"Creates a tuple consuming *count* items from the stack, and pushes the " -"resulting tuple onto the stack::" +msgid "Creates a tuple consuming *count* items from the stack, and pushes the resulting tuple onto the stack::" msgstr "" -#: ../../library/dis.rst:1186 msgid "" "if count == 0:\n" " value = ()\n" @@ -1300,529 +745,294 @@ msgid "" "STACK.append(value)" msgstr "" -#: ../../library/dis.rst:1197 msgid "Works as :opcode:`BUILD_TUPLE`, but creates a list." msgstr "" -#: ../../library/dis.rst:1202 msgid "Works as :opcode:`BUILD_TUPLE`, but creates a set." msgstr "" -#: ../../library/dis.rst:1207 -msgid "" -"Pushes a new dictionary object onto the stack. Pops ``2 * count`` items so " -"that the dictionary holds *count* entries: ``{..., STACK[-4]: STACK[-3], " -"STACK[-2]: STACK[-1]}``." +msgid "Pushes a new dictionary object onto the stack. Pops ``2 * count`` items so that the dictionary holds *count* entries: ``{..., STACK[-4]: STACK[-3], STACK[-2]: STACK[-1]}``." msgstr "" -#: ../../library/dis.rst:1211 -msgid "" -"The dictionary is created from stack items instead of creating an empty " -"dictionary pre-sized to hold *count* items." +msgid "The dictionary is created from stack items instead of creating an empty dictionary pre-sized to hold *count* items." msgstr "" -#: ../../library/dis.rst:1218 -msgid "" -"Concatenates *count* strings from the stack and pushes the resulting string " -"onto the stack." +msgid "Concatenates *count* strings from the stack and pushes the resulting string onto the stack." msgstr "" -#: ../../library/dis.rst:1228 msgid "" "seq = STACK.pop()\n" "list.extend(STACK[-i], seq)" msgstr "" -#: ../../library/dis.rst:1231 msgid "Used to build lists." msgstr "" -#: ../../library/dis.rst:1240 msgid "" "seq = STACK.pop()\n" "set.update(STACK[-i], seq)" msgstr "" -#: ../../library/dis.rst:1243 msgid "Used to build sets." msgstr "" -#: ../../library/dis.rst:1252 msgid "" "map = STACK.pop()\n" "dict.update(STACK[-i], map)" msgstr "" -#: ../../library/dis.rst:1255 msgid "Used to build dicts." msgstr "" -#: ../../library/dis.rst:1262 msgid "Like :opcode:`DICT_UPDATE` but raises an exception for duplicate keys." msgstr "" -#: ../../library/dis.rst:1269 -msgid "" -"If the low bit of ``namei`` is not set, this replaces ``STACK[-1]`` with " -"``getattr(STACK[-1], co_names[namei>>1])``." +msgid "If the low bit of ``namei`` is not set, this replaces ``STACK[-1]`` with ``getattr(STACK[-1], co_names[namei>>1])``." msgstr "" -#: ../../library/dis.rst:1272 -msgid "" -"If the low bit of ``namei`` is set, this will attempt to load a method named " -"``co_names[namei>>1]`` from the ``STACK[-1]`` object. ``STACK[-1]`` is " -"popped. This bytecode distinguishes two cases: if ``STACK[-1]`` has a method " -"with the correct name, the bytecode pushes the unbound method and " -"``STACK[-1]``. ``STACK[-1]`` will be used as the first argument (``self``) " -"by :opcode:`CALL` or :opcode:`CALL_KW` when calling the unbound method. " -"Otherwise, ``NULL`` and the object returned by the attribute lookup are " -"pushed." +msgid "If the low bit of ``namei`` is set, this will attempt to load a method named ``co_names[namei>>1]`` from the ``STACK[-1]`` object. ``STACK[-1]`` is popped. This bytecode distinguishes two cases: if ``STACK[-1]`` has a method with the correct name, the bytecode pushes the unbound method and ``STACK[-1]``. ``STACK[-1]`` will be used as the first argument (``self``) by :opcode:`CALL` or :opcode:`CALL_KW` when calling the unbound method. Otherwise, ``NULL`` and the object returned by the attribute lookup are pushed." msgstr "" -#: ../../library/dis.rst:1281 -msgid "" -"If the low bit of ``namei`` is set, then a ``NULL`` or ``self`` is pushed to " -"the stack before the attribute or unbound method respectively." +msgid "If the low bit of ``namei`` is set, then a ``NULL`` or ``self`` is pushed to the stack before the attribute or unbound method respectively." msgstr "" -#: ../../library/dis.rst:1288 -msgid "" -"This opcode implements :func:`super`, both in its zero-argument and two-" -"argument forms (e.g. ``super().method()``, ``super().attr`` and ``super(cls, " -"self).method()``, ``super(cls, self).attr``)." +msgid "This opcode implements :func:`super`, both in its zero-argument and two-argument forms (e.g. ``super().method()``, ``super().attr`` and ``super(cls, self).method()``, ``super(cls, self).attr``)." msgstr "" -#: ../../library/dis.rst:1292 msgid "It pops three values from the stack (from top of stack down):" msgstr "" -#: ../../library/dis.rst:1294 msgid "``self``: the first argument to the current method" msgstr "" -#: ../../library/dis.rst:1295 msgid "``cls``: the class within which the current method was defined" msgstr "" -#: ../../library/dis.rst:1296 msgid "the global ``super``" msgstr "" -#: ../../library/dis.rst:1298 -msgid "" -"With respect to its argument, it works similarly to :opcode:`LOAD_ATTR`, " -"except that ``namei`` is shifted left by 2 bits instead of 1." +msgid "With respect to its argument, it works similarly to :opcode:`LOAD_ATTR`, except that ``namei`` is shifted left by 2 bits instead of 1." msgstr "" -#: ../../library/dis.rst:1301 -msgid "" -"The low bit of ``namei`` signals to attempt a method load, as " -"with :opcode:`LOAD_ATTR`, which results in pushing ``NULL`` and the loaded " -"method. When it is unset a single value is pushed to the stack." +msgid "The low bit of ``namei`` signals to attempt a method load, as with :opcode:`LOAD_ATTR`, which results in pushing ``NULL`` and the loaded method. When it is unset a single value is pushed to the stack." msgstr "" -#: ../../library/dis.rst:1305 -msgid "" -"The second-low bit of ``namei``, if set, means that this was a two-argument " -"call to :func:`super` (unset means zero-argument)." +msgid "The second-low bit of ``namei``, if set, means that this was a two-argument call to :func:`super` (unset means zero-argument)." msgstr "" -#: ../../library/dis.rst:1313 -msgid "" -"Performs a Boolean operation. The operation name can be found in " -"``cmp_op[opname >> 5]``. If the fifth-lowest bit of ``opname`` is set " -"(``opname & 16``), the result should be coerced to ``bool``." +msgid "Performs a Boolean operation. The operation name can be found in ``cmp_op[opname >> 5]``. If the fifth-lowest bit of ``opname`` is set (``opname & 16``), the result should be coerced to ``bool``." msgstr "" -#: ../../library/dis.rst:1317 -msgid "" -"The fifth-lowest bit of the oparg now indicates a forced conversion " -"to :class:`bool`." +msgid "The fifth-lowest bit of the oparg now indicates a forced conversion to :class:`bool`." msgstr "" -#: ../../library/dis.rst:1324 msgid "Performs ``is`` comparison, or ``is not`` if ``invert`` is 1." msgstr "" -#: ../../library/dis.rst:1331 msgid "Performs ``in`` comparison, or ``not in`` if ``invert`` is 1." msgstr "" -#: ../../library/dis.rst:1338 -msgid "" -"Imports the module ``co_names[namei]``. ``STACK[-1]`` and ``STACK[-2]`` are " -"popped and provide the *fromlist* and *level* arguments " -"of :func:`__import__`. The module object is pushed onto the stack. The " -"current namespace is not affected: for a proper import statement, a " -"subsequent :opcode:`STORE_FAST` instruction modifies the namespace." +msgid "Imports the module ``co_names[namei]``. ``STACK[-1]`` and ``STACK[-2]`` are popped and provide the *fromlist* and *level* arguments of :func:`__import__`. The module object is pushed onto the stack. The current namespace is not affected: for a proper import statement, a subsequent :opcode:`STORE_FAST` instruction modifies the namespace." msgstr "" -#: ../../library/dis.rst:1346 -msgid "" -"Loads the attribute ``co_names[namei]`` from the module found in " -"``STACK[-1]``. The resulting object is pushed onto the stack, to be " -"subsequently stored by a :opcode:`STORE_FAST` instruction." +msgid "Loads the attribute ``co_names[namei]`` from the module found in ``STACK[-1]``. The resulting object is pushed onto the stack, to be subsequently stored by a :opcode:`STORE_FAST` instruction." msgstr "" -#: ../../library/dis.rst:1353 msgid "Increments bytecode counter by *delta*." msgstr "" -#: ../../library/dis.rst:1358 msgid "Decrements bytecode counter by *delta*. Checks for interrupts." msgstr "" -#: ../../library/dis.rst:1365 msgid "Decrements bytecode counter by *delta*. Does not check for interrupts." msgstr "" -#: ../../library/dis.rst:1372 -msgid "" -"If ``STACK[-1]`` is true, increments the bytecode counter by *delta*. " -"``STACK[-1]`` is popped." +msgid "If ``STACK[-1]`` is true, increments the bytecode counter by *delta*. ``STACK[-1]`` is popped." msgstr "" -#: ../../library/dis.rst:1375 ../../library/dis.rst:1391 -msgid "" -"The oparg is now a relative delta rather than an absolute target. This " -"opcode is a pseudo-instruction, replaced in final bytecode by the directed " -"versions (forward/backward)." +msgid "The oparg is now a relative delta rather than an absolute target. This opcode is a pseudo-instruction, replaced in final bytecode by the directed versions (forward/backward)." msgstr "" -#: ../../library/dis.rst:1380 ../../library/dis.rst:1396 -#: ../../library/dis.rst:1409 ../../library/dis.rst:1420 msgid "This is no longer a pseudo-instruction." msgstr "" -#: ../../library/dis.rst:1388 -msgid "" -"If ``STACK[-1]`` is false, increments the bytecode counter by *delta*. " -"``STACK[-1]`` is popped." +msgid "If ``STACK[-1]`` is false, increments the bytecode counter by *delta*. ``STACK[-1]`` is popped." msgstr "" -#: ../../library/dis.rst:1404 -msgid "" -"If ``STACK[-1]`` is not ``None``, increments the bytecode counter by " -"*delta*. ``STACK[-1]`` is popped." +msgid "If ``STACK[-1]`` is not ``None``, increments the bytecode counter by *delta*. ``STACK[-1]`` is popped." msgstr "" -#: ../../library/dis.rst:1415 -msgid "" -"If ``STACK[-1]`` is ``None``, increments the bytecode counter by *delta*. " -"``STACK[-1]`` is popped." +msgid "If ``STACK[-1]`` is ``None``, increments the bytecode counter by *delta*. ``STACK[-1]`` is popped." msgstr "" -#: ../../library/dis.rst:1425 -msgid "" -"``STACK[-1]`` is an :term:`iterator`. Call its :meth:`~iterator.__next__` " -"method. If this yields a new value, push it on the stack (leaving the " -"iterator below it). If the iterator indicates it is exhausted then the byte " -"code counter is incremented by *delta*." +msgid "``STACK[-1]`` is an :term:`iterator`. Call its :meth:`~iterator.__next__` method. If this yields a new value, push it on the stack (leaving the iterator below it). If the iterator indicates it is exhausted then the byte code counter is incremented by *delta*." msgstr "" -#: ../../library/dis.rst:1430 msgid "Up until 3.11 the iterator was popped when it was exhausted." msgstr "" -#: ../../library/dis.rst:1435 msgid "Loads the global named ``co_names[namei>>1]`` onto the stack." msgstr "" -#: ../../library/dis.rst:1437 -msgid "" -"If the low bit of ``namei`` is set, then a ``NULL`` is pushed to the stack " -"before the global variable." +msgid "If the low bit of ``namei`` is set, then a ``NULL`` is pushed to the stack before the global variable." msgstr "" -#: ../../library/dis.rst:1443 -msgid "" -"Pushes a reference to the local ``co_varnames[var_num]`` onto the stack." +msgid "Pushes a reference to the local ``co_varnames[var_num]`` onto the stack." msgstr "" -#: ../../library/dis.rst:1445 -msgid "" -"This opcode is now only used in situations where the local variable is " -"guaranteed to be initialized. It cannot raise :exc:`UnboundLocalError`." +msgid "This opcode is now only used in situations where the local variable is guaranteed to be initialized. It cannot raise :exc:`UnboundLocalError`." msgstr "" -#: ../../library/dis.rst:1451 -msgid "" -"Pushes a borrowed reference to the local ``co_varnames[var_num]`` onto the " -"stack." +msgid "Pushes a borrowed reference to the local ``co_varnames[var_num]`` onto the stack." msgstr "" -#: ../../library/dis.rst:1458 -msgid "" -"Pushes references to ``co_varnames[var_nums >> 4]`` and " -"``co_varnames[var_nums & 15]`` onto the stack." +msgid "Pushes references to ``co_varnames[var_nums >> 4]`` and ``co_varnames[var_nums & 15]`` onto the stack." msgstr "" -#: ../../library/dis.rst:1466 -msgid "" -"Pushes borrowed references to ``co_varnames[var_nums >> 4]`` and " -"``co_varnames[var_nums & 15]`` onto the stack." +msgid "Pushes borrowed references to ``co_varnames[var_nums >> 4]`` and ``co_varnames[var_nums & 15]`` onto the stack." msgstr "" -#: ../../library/dis.rst:1473 -msgid "" -"Pushes a reference to the local ``co_varnames[var_num]`` onto the stack, " -"raising an :exc:`UnboundLocalError` if the local variable has not been " -"initialized." +msgid "Pushes a reference to the local ``co_varnames[var_num]`` onto the stack, raising an :exc:`UnboundLocalError` if the local variable has not been initialized." msgstr "" -#: ../../library/dis.rst:1481 -msgid "" -"Pushes a reference to the local ``co_varnames[var_num]`` onto the stack (or " -"pushes ``NULL`` onto the stack if the local variable has not been " -"initialized) and sets ``co_varnames[var_num]`` to ``NULL``." +msgid "Pushes a reference to the local ``co_varnames[var_num]`` onto the stack (or pushes ``NULL`` onto the stack if the local variable has not been initialized) and sets ``co_varnames[var_num]`` to ``NULL``." msgstr "" -#: ../../library/dis.rst:1489 msgid "Stores ``STACK.pop()`` into the local ``co_varnames[var_num]``." msgstr "" -#: ../../library/dis.rst:1493 -msgid "" -"Stores ``STACK[-1]`` into ``co_varnames[var_nums >> 4]`` and ``STACK[-2]`` " -"into ``co_varnames[var_nums & 15]``." +msgid "Stores ``STACK[-1]`` into ``co_varnames[var_nums >> 4]`` and ``STACK[-2]`` into ``co_varnames[var_nums & 15]``." msgstr "" -#: ../../library/dis.rst:1500 -msgid "" -"Stores ``STACK.pop()`` into the local ``co_varnames[var_nums >> 4]`` and " -"pushes a reference to the local ``co_varnames[var_nums & 15]`` onto the " -"stack." +msgid "Stores ``STACK.pop()`` into the local ``co_varnames[var_nums >> 4]`` and pushes a reference to the local ``co_varnames[var_nums & 15]`` onto the stack." msgstr "" -#: ../../library/dis.rst:1508 msgid "Deletes local ``co_varnames[var_num]``." msgstr "" -#: ../../library/dis.rst:1513 -msgid "" -"Creates a new cell in slot ``i``. If that slot is nonempty then that value " -"is stored into the new cell." +msgid "Creates a new cell in slot ``i``. If that slot is nonempty then that value is stored into the new cell." msgstr "" -#: ../../library/dis.rst:1521 -msgid "" -"Loads the cell contained in slot ``i`` of the \"fast locals\" storage. " -"Pushes a reference to the object the cell contains on the stack." +msgid "Loads the cell contained in slot ``i`` of the \"fast locals\" storage. Pushes a reference to the object the cell contains on the stack." msgstr "" -#: ../../library/dis.rst:1524 ../../library/dis.rst:1546 -#: ../../library/dis.rst:1557 -msgid "" -"``i`` is no longer offset by the length of :attr:`~codeobject.co_varnames`." +msgid "``i`` is no longer offset by the length of :attr:`~codeobject.co_varnames`." msgstr "" -#: ../../library/dis.rst:1530 -msgid "" -"Pops a mapping off the stack and looks up the name associated with slot " -"``i`` of the \"fast locals\" storage in this mapping. If the name is not " -"found there, loads it from the cell contained in slot ``i``, similar " -"to :opcode:`LOAD_DEREF`. This is used for loading :term:`closure variables " -"` in class bodies (which previously used :opcode:`!" -"LOAD_CLASSDEREF`) and in :ref:`annotation scopes ` within " -"class bodies." +msgid "Pops a mapping off the stack and looks up the name associated with slot ``i`` of the \"fast locals\" storage in this mapping. If the name is not found there, loads it from the cell contained in slot ``i``, similar to :opcode:`LOAD_DEREF`. This is used for loading :term:`closure variables ` in class bodies (which previously used :opcode:`!LOAD_CLASSDEREF`) and in :ref:`annotation scopes ` within class bodies." msgstr "" -#: ../../library/dis.rst:1543 -msgid "" -"Stores ``STACK.pop()`` into the cell contained in slot ``i`` of the \"fast " -"locals\" storage." +msgid "Stores ``STACK.pop()`` into the cell contained in slot ``i`` of the \"fast locals\" storage." msgstr "" -#: ../../library/dis.rst:1552 -msgid "" -"Empties the cell contained in slot ``i`` of the \"fast locals\" storage. " -"Used by the :keyword:`del` statement." +msgid "Empties the cell contained in slot ``i`` of the \"fast locals\" storage. Used by the :keyword:`del` statement." msgstr "" -#: ../../library/dis.rst:1563 -msgid "" -"Copies the ``n`` :term:`free (closure) variables ` from " -"the closure into the frame. Removes the need for special code on the " -"caller's side when calling closures." +msgid "Copies the ``n`` :term:`free (closure) variables ` from the closure into the frame. Removes the need for special code on the caller's side when calling closures." msgstr "" -#: ../../library/dis.rst:1572 -msgid "" -"Raises an exception using one of the 3 forms of the ``raise`` statement, " -"depending on the value of *argc*:" +msgid "Raises an exception using one of the 3 forms of the ``raise`` statement, depending on the value of *argc*:" msgstr "" -#: ../../library/dis.rst:1575 msgid "0: ``raise`` (re-raise previous exception)" msgstr "" -#: ../../library/dis.rst:1576 -msgid "" -"1: ``raise STACK[-1]`` (raise exception instance or type at ``STACK[-1]``)" +msgid "1: ``raise STACK[-1]`` (raise exception instance or type at ``STACK[-1]``)" msgstr "" -#: ../../library/dis.rst:1577 -msgid "" -"2: ``raise STACK[-2] from STACK[-1]`` (raise exception instance or type at " -"``STACK[-2]`` with ``__cause__`` set to ``STACK[-1]``)" +msgid "2: ``raise STACK[-2] from STACK[-1]`` (raise exception instance or type at ``STACK[-2]`` with ``__cause__`` set to ``STACK[-1]``)" msgstr "" -#: ../../library/dis.rst:1583 -msgid "" -"Calls a callable object with the number of arguments specified by ``argc``. " -"On the stack are (in ascending order):" +msgid "Calls a callable object with the number of arguments specified by ``argc``. On the stack are (in ascending order):" msgstr "" -#: ../../library/dis.rst:1586 ../../library/dis.rst:1610 msgid "The callable" msgstr "" -#: ../../library/dis.rst:1587 ../../library/dis.rst:1611 msgid "``self`` or ``NULL``" msgstr "" -#: ../../library/dis.rst:1588 ../../library/dis.rst:1612 msgid "The remaining positional arguments" msgstr "" -#: ../../library/dis.rst:1590 msgid "``argc`` is the total of the positional arguments, excluding ``self``." msgstr "" -#: ../../library/dis.rst:1592 -msgid "" -"``CALL`` pops all arguments and the callable object off the stack, calls the " -"callable object with those arguments, and pushes the return value returned " -"by the callable object." +msgid "``CALL`` pops all arguments and the callable object off the stack, calls the callable object with those arguments, and pushes the return value returned by the callable object." msgstr "" -#: ../../library/dis.rst:1598 msgid "The callable now always appears at the same position on the stack." msgstr "" -#: ../../library/dis.rst:1601 msgid "Calls with keyword arguments are now handled by :opcode:`CALL_KW`." msgstr "" -#: ../../library/dis.rst:1607 -msgid "" -"Calls a callable object with the number of arguments specified by ``argc``, " -"including one or more named arguments. On the stack are (in ascending order):" +msgid "Calls a callable object with the number of arguments specified by ``argc``, including one or more named arguments. On the stack are (in ascending order):" msgstr "" -#: ../../library/dis.rst:1613 msgid "The named arguments" msgstr "" -#: ../../library/dis.rst:1614 msgid "A :class:`tuple` of keyword argument names" msgstr "" -#: ../../library/dis.rst:1616 -msgid "" -"``argc`` is the total of the positional and named arguments, excluding " -"``self``. The length of the tuple of keyword argument names is the number of " -"named arguments." +msgid "``argc`` is the total of the positional and named arguments, excluding ``self``. The length of the tuple of keyword argument names is the number of named arguments." msgstr "" -#: ../../library/dis.rst:1619 -msgid "" -"``CALL_KW`` pops all arguments, the keyword names, and the callable object " -"off the stack, calls the callable object with those arguments, and pushes " -"the return value returned by the callable object." +msgid "``CALL_KW`` pops all arguments, the keyword names, and the callable object off the stack, calls the callable object with those arguments, and pushes the return value returned by the callable object." msgstr "" -#: ../../library/dis.rst:1628 -msgid "" -"Calls a callable object with variable set of positional and keyword " -"arguments. If the lowest bit of *flags* is set, the top of the stack " -"contains a mapping object containing additional keyword arguments. Before " -"the callable is called, the mapping object and iterable object are each " -"\"unpacked\" and their contents passed in as keyword and positional " -"arguments respectively. ``CALL_FUNCTION_EX`` pops all arguments and the " -"callable object off the stack, calls the callable object with those " -"arguments, and pushes the return value returned by the callable object." +msgid "Calls a callable object with variable set of positional and keyword arguments. If the lowest bit of *flags* is set, the top of the stack contains a mapping object containing additional keyword arguments. Before the callable is called, the mapping object and iterable object are each \"unpacked\" and their contents passed in as keyword and positional arguments respectively. ``CALL_FUNCTION_EX`` pops all arguments and the callable object off the stack, calls the callable object with those arguments, and pushes the return value returned by the callable object." msgstr "" -#: ../../library/dis.rst:1643 -msgid "" -"Pushes a ``NULL`` to the stack. Used in the call sequence to match the " -"``NULL`` pushed by :opcode:`!LOAD_METHOD` for non-method calls." +msgid "Pushes a ``NULL`` to the stack. Used in the call sequence to match the ``NULL`` pushed by :opcode:`!LOAD_METHOD` for non-method calls." msgstr "" -#: ../../library/dis.rst:1652 -msgid "" -"Pushes a new function object on the stack built from the code object at " -"``STACK[-1]``." +msgid "Pushes a new function object on the stack built from the code object at ``STACK[-1]``." msgstr "" -#: ../../library/dis.rst:1654 msgid "Flag value ``0x04`` is a tuple of strings instead of dictionary" msgstr "" -#: ../../library/dis.rst:1657 msgid "Qualified name at ``STACK[-1]`` was removed." msgstr "" -#: ../../library/dis.rst:1660 -msgid "" -"Extra function attributes on the stack, signaled by oparg flags, were " -"removed. They now use :opcode:`SET_FUNCTION_ATTRIBUTE`." +msgid "Extra function attributes on the stack, signaled by oparg flags, were removed. They now use :opcode:`SET_FUNCTION_ATTRIBUTE`." msgstr "" -#: ../../library/dis.rst:1667 -msgid "" -"Sets an attribute on a function object. Expects the function at " -"``STACK[-1]`` and the attribute value to set at ``STACK[-2]``; consumes both " -"and leaves the function at ``STACK[-1]``. The flag determines which " -"attribute to set:" +msgid "Sets an attribute on a function object. Expects the function at ``STACK[-1]`` and the attribute value to set at ``STACK[-2]``; consumes both and leaves the function at ``STACK[-1]``. The flag determines which attribute to set:" msgstr "" -#: ../../library/dis.rst:1671 -msgid "" -"``0x01`` a tuple of default values for positional-only and positional-or-" -"keyword parameters in positional order" +msgid "``0x01`` a tuple of default values for positional-only and positional-or-keyword parameters in positional order" msgstr "" -#: ../../library/dis.rst:1673 msgid "``0x02`` a dictionary of keyword-only parameters' default values" msgstr "" -#: ../../library/dis.rst:1674 msgid "``0x04`` a tuple of strings containing parameters' annotations" msgstr "" -#: ../../library/dis.rst:1675 msgid "``0x08`` a tuple containing cells for free variables, making a closure" msgstr "" -#: ../../library/dis.rst:1676 msgid "``0x10`` the :term:`annotate function` for the function object" msgstr "" -#: ../../library/dis.rst:1680 -msgid "" -"Added ``0x10`` to indicate the annotate function for the function object." +msgid "Added ``0x10`` to indicate the annotate function for the function object." msgstr "" -#: ../../library/dis.rst:1688 -msgid "" -"Pushes a slice object on the stack. *argc* must be 2 or 3. If it is 2, " -"implements::" +msgid "Pushes a slice object on the stack. *argc* must be 2 or 3. If it is 2, implements::" msgstr "" -#: ../../library/dis.rst:1690 msgid "" "end = STACK.pop()\n" "start = STACK.pop()\n" "STACK.append(slice(start, end))" msgstr "" -#: ../../library/dis.rst:1694 msgid "if it is 3, implements::" msgstr "" -#: ../../library/dis.rst:1696 msgid "" "step = STACK.pop()\n" "end = STACK.pop()\n" @@ -1830,62 +1040,45 @@ msgid "" "STACK.append(slice(start, end, step))" msgstr "" -#: ../../library/dis.rst:1701 msgid "See the :func:`slice` built-in function for more information." msgstr "" -#: ../../library/dis.rst:1706 -msgid "" -"Prefixes any opcode which has an argument too big to fit into the default " -"one byte. *ext* holds an additional byte which act as higher bits in the " -"argument. For each opcode, at most three prefixal ``EXTENDED_ARG`` are " -"allowed, forming an argument from two-byte to four-byte." +msgid "Prefixes any opcode which has an argument too big to fit into the default one byte. *ext* holds an additional byte which act as higher bits in the argument. For each opcode, at most three prefixal ``EXTENDED_ARG`` are allowed, forming an argument from two-byte to four-byte." msgstr "" -#: ../../library/dis.rst:1714 msgid "Convert value to a string, depending on ``oparg``::" msgstr "" -#: ../../library/dis.rst:1716 msgid "" "value = STACK.pop()\n" "result = func(value)\n" "STACK.append(result)" msgstr "" -#: ../../library/dis.rst:1720 msgid "``oparg == 1``: call :func:`str` on *value*" msgstr "" -#: ../../library/dis.rst:1721 msgid "``oparg == 2``: call :func:`repr` on *value*" msgstr "" -#: ../../library/dis.rst:1722 msgid "``oparg == 3``: call :func:`ascii` on *value*" msgstr "" -#: ../../library/dis.rst:1724 ../../library/dis.rst:1737 -#: ../../library/dis.rst:1750 msgid "Used for implementing formatted string literals (f-strings)." msgstr "" -#: ../../library/dis.rst:1731 msgid "Formats the value on top of stack::" msgstr "" -#: ../../library/dis.rst:1733 msgid "" "value = STACK.pop()\n" "result = value.__format__(\"\")\n" "STACK.append(result)" msgstr "" -#: ../../library/dis.rst:1743 msgid "Formats the given value with the given format spec::" msgstr "" -#: ../../library/dis.rst:1745 msgid "" "spec = STACK.pop()\n" "value = STACK.pop()\n" @@ -1893,234 +1086,147 @@ msgid "" "STACK.append(result)" msgstr "" -#: ../../library/dis.rst:1757 -msgid "" -"``STACK[-1]`` is a tuple of keyword attribute names, ``STACK[-2]`` is the " -"class being matched against, and ``STACK[-3]`` is the match subject. " -"*count* is the number of positional sub-patterns." +msgid "``STACK[-1]`` is a tuple of keyword attribute names, ``STACK[-2]`` is the class being matched against, and ``STACK[-3]`` is the match subject. *count* is the number of positional sub-patterns." msgstr "" -#: ../../library/dis.rst:1761 -msgid "" -"Pop ``STACK[-1]``, ``STACK[-2]``, and ``STACK[-3]``. If ``STACK[-3]`` is an " -"instance of ``STACK[-2]`` and has the positional and keyword attributes " -"required by *count* and ``STACK[-1]``, push a tuple of extracted attributes. " -"Otherwise, push ``None``." +msgid "Pop ``STACK[-1]``, ``STACK[-2]``, and ``STACK[-3]``. If ``STACK[-3]`` is an instance of ``STACK[-2]`` and has the positional and keyword attributes required by *count* and ``STACK[-1]``, push a tuple of extracted attributes. Otherwise, push ``None``." msgstr "" -#: ../../library/dis.rst:1775 msgid "A no-op. Performs internal tracing, debugging and optimization checks." msgstr "" -#: ../../library/dis.rst:1777 -msgid "" -"The ``context`` operand consists of two parts. The lowest two bits indicate " -"where the ``RESUME`` occurs:" +msgid "The ``context`` operand consists of two parts. The lowest two bits indicate where the ``RESUME`` occurs:" msgstr "" -#: ../../library/dis.rst:1780 -msgid "" -"``0`` The start of a function, which is neither a generator, coroutine nor " -"an async generator" +msgid "``0`` The start of a function, which is neither a generator, coroutine nor an async generator" msgstr "" -#: ../../library/dis.rst:1782 msgid "``1`` After a ``yield`` expression" msgstr "" -#: ../../library/dis.rst:1783 msgid "``2`` After a ``yield from`` expression" msgstr "" -#: ../../library/dis.rst:1784 msgid "``3`` After an ``await`` expression" msgstr "" -#: ../../library/dis.rst:1786 -msgid "" -"The next bit is ``1`` if the RESUME is at except-depth ``1``, and ``0`` " -"otherwise." +msgid "The next bit is ``1`` if the RESUME is at except-depth ``1``, and ``0`` otherwise." msgstr "" -#: ../../library/dis.rst:1791 msgid "The oparg value changed to include information about except-depth" msgstr "" -#: ../../library/dis.rst:1797 -msgid "" -"Create a generator, coroutine, or async generator from the current frame. " -"Used as first opcode of in code object for the above mentioned callables. " -"Clear the current frame and return the newly created generator." +msgid "Create a generator, coroutine, or async generator from the current frame. Used as first opcode of in code object for the above mentioned callables. Clear the current frame and return the newly created generator." msgstr "" -#: ../../library/dis.rst:1806 -msgid "" -"Equivalent to ``STACK[-1] = STACK[-2].send(STACK[-1])``. Used in ``yield " -"from`` and ``await`` statements." +msgid "Equivalent to ``STACK[-1] = STACK[-2].send(STACK[-1])``. Used in ``yield from`` and ``await`` statements." msgstr "" -#: ../../library/dis.rst:1809 -msgid "" -"If the call raises :exc:`StopIteration`, pop the top value from the stack, " -"push the exception's ``value`` attribute, and increment the bytecode counter " -"by *delta*." +msgid "If the call raises :exc:`StopIteration`, pop the top value from the stack, push the exception's ``value`` attribute, and increment the bytecode counter by *delta*." msgstr "" -#: ../../library/dis.rst:1818 -msgid "" -"This is not really an opcode. It identifies the dividing line between " -"opcodes in the range [0,255] which don't use their argument and those that " -"do (``< HAVE_ARGUMENT`` and ``>= HAVE_ARGUMENT``, respectively)." +msgid "This is not really an opcode. It identifies the dividing line between opcodes in the range [0,255] which don't use their argument and those that do (``< HAVE_ARGUMENT`` and ``>= HAVE_ARGUMENT``, respectively)." msgstr "" -#: ../../library/dis.rst:1822 -msgid "" -"If your application uses pseudo instructions or specialized instructions, " -"use the :data:`hasarg` collection instead." +msgid "If your application uses pseudo instructions or specialized instructions, use the :data:`hasarg` collection instead." msgstr "" -#: ../../library/dis.rst:1825 -msgid "" -"Now every instruction has an argument, but opcodes ``< HAVE_ARGUMENT`` " -"ignore it. Before, only opcodes ``>= HAVE_ARGUMENT`` had an argument." +msgid "Now every instruction has an argument, but opcodes ``< HAVE_ARGUMENT`` ignore it. Before, only opcodes ``>= HAVE_ARGUMENT`` had an argument." msgstr "" -#: ../../library/dis.rst:1829 -msgid "" -"Pseudo instructions were added to the :mod:`!dis` module, and for them it is " -"not true that comparison with ``HAVE_ARGUMENT`` indicates whether they use " -"their arg." +msgid "Pseudo instructions were added to the :mod:`!dis` module, and for them it is not true that comparison with ``HAVE_ARGUMENT`` indicates whether they use their arg." msgstr "" -#: ../../library/dis.rst:1834 msgid "Use :data:`hasarg` instead." msgstr "" -#: ../../library/dis.rst:1839 -msgid "" -"Calls an intrinsic function with one argument. Passes ``STACK[-1]`` as the " -"argument and sets ``STACK[-1]`` to the result. Used to implement " -"functionality that is not performance critical." +msgid "Calls an intrinsic function with one argument. Passes ``STACK[-1]`` as the argument and sets ``STACK[-1]`` to the result. Used to implement functionality that is not performance critical." msgstr "" -#: ../../library/dis.rst:1843 ../../library/dis.rst:1897 msgid "The operand determines which intrinsic function is called:" msgstr "" -#: ../../library/dis.rst:1846 ../../library/dis.rst:1900 msgid "Operand" msgstr "" -#: ../../library/dis.rst:1846 ../../library/dis.rst:1900 msgid "Description" msgstr "" -#: ../../library/dis.rst:1848 msgid "``INTRINSIC_1_INVALID``" msgstr "" -#: ../../library/dis.rst:1848 ../../library/dis.rst:1902 msgid "Not valid" msgstr "" -#: ../../library/dis.rst:1850 msgid "``INTRINSIC_PRINT``" msgstr "" -#: ../../library/dis.rst:1850 msgid "Prints the argument to standard out. Used in the REPL." msgstr "" -#: ../../library/dis.rst:1853 msgid "``INTRINSIC_IMPORT_STAR``" msgstr "" -#: ../../library/dis.rst:1853 msgid "Performs ``import *`` for the named module." msgstr "" -#: ../../library/dis.rst:1856 msgid "``INTRINSIC_STOPITERATION_ERROR``" msgstr "" -#: ../../library/dis.rst:1856 msgid "Extracts the return value from a ``StopIteration`` exception." msgstr "" -#: ../../library/dis.rst:1859 msgid "``INTRINSIC_ASYNC_GEN_WRAP``" msgstr "" -#: ../../library/dis.rst:1859 msgid "Wraps an async generator value" msgstr "" -#: ../../library/dis.rst:1861 msgid "``INTRINSIC_UNARY_POSITIVE``" msgstr "" -#: ../../library/dis.rst:1861 msgid "Performs the unary ``+`` operation" msgstr "" -#: ../../library/dis.rst:1864 msgid "``INTRINSIC_LIST_TO_TUPLE``" msgstr "" -#: ../../library/dis.rst:1864 msgid "Converts a list to a tuple" msgstr "" -#: ../../library/dis.rst:1866 msgid "``INTRINSIC_TYPEVAR``" msgstr "" -#: ../../library/dis.rst:1866 msgid "Creates a :class:`typing.TypeVar`" msgstr "" -#: ../../library/dis.rst:1868 msgid "``INTRINSIC_PARAMSPEC``" msgstr "" -#: ../../library/dis.rst:1868 msgid "Creates a :class:`typing.ParamSpec`" msgstr "" -#: ../../library/dis.rst:1871 msgid "``INTRINSIC_TYPEVARTUPLE``" msgstr "" -#: ../../library/dis.rst:1871 msgid "Creates a :class:`typing.TypeVarTuple`" msgstr "" -#: ../../library/dis.rst:1874 msgid "``INTRINSIC_SUBSCRIPT_GENERIC``" msgstr "" -#: ../../library/dis.rst:1874 msgid "Returns :class:`typing.Generic` subscripted with the argument" msgstr "" -#: ../../library/dis.rst:1877 msgid "``INTRINSIC_TYPEALIAS``" msgstr "" -#: ../../library/dis.rst:1877 -msgid "" -"Creates a :class:`typing.TypeAliasType`; used in the :keyword:`type` " -"statement. The argument is a tuple of the type alias's name, type " -"parameters, and value." +msgid "Creates a :class:`typing.TypeAliasType`; used in the :keyword:`type` statement. The argument is a tuple of the type alias's name, type parameters, and value." msgstr "" -#: ../../library/dis.rst:1889 -msgid "" -"Calls an intrinsic function with two arguments. Used to implement " -"functionality that is not performance critical::" +msgid "Calls an intrinsic function with two arguments. Used to implement functionality that is not performance critical::" msgstr "" -#: ../../library/dis.rst:1892 msgid "" "arg2 = STACK.pop()\n" "arg1 = STACK.pop()\n" @@ -2128,216 +1234,131 @@ msgid "" "STACK.append(result)" msgstr "" -#: ../../library/dis.rst:1902 msgid "``INTRINSIC_2_INVALID``" msgstr "" -#: ../../library/dis.rst:1904 msgid "``INTRINSIC_PREP_RERAISE_STAR``" msgstr "" -#: ../../library/dis.rst:1904 msgid "Calculates the :exc:`ExceptionGroup` to raise from a ``try-except*``." msgstr "" -#: ../../library/dis.rst:1908 msgid "``INTRINSIC_TYPEVAR_WITH_BOUND``" msgstr "" -#: ../../library/dis.rst:1908 msgid "Creates a :class:`typing.TypeVar` with a bound." msgstr "" -#: ../../library/dis.rst:1911 msgid "``INTRINSIC_TYPEVAR_WITH_CONSTRAINTS``" msgstr "" -#: ../../library/dis.rst:1911 msgid "Creates a :class:`typing.TypeVar` with constraints." msgstr "" -#: ../../library/dis.rst:1915 msgid "``INTRINSIC_SET_FUNCTION_TYPE_PARAMS``" msgstr "" -#: ../../library/dis.rst:1915 msgid "Sets the ``__type_params__`` attribute of a function." msgstr "" -#: ../../library/dis.rst:1924 -msgid "" -"Performs special method lookup on ``STACK[-1]``. If " -"``type(STACK[-1]).__xxx__`` is a method, leave ``type(STACK[-1]).__xxx__; " -"STACK[-1]`` on the stack. If ``type(STACK[-1]).__xxx__`` is not a method, " -"leave ``STACK[-1].__xxx__; NULL`` on the stack." +msgid "Performs special method lookup on ``STACK[-1]``. If ``type(STACK[-1]).__xxx__`` is a method, leave ``type(STACK[-1]).__xxx__; STACK[-1]`` on the stack. If ``type(STACK[-1]).__xxx__`` is not a method, leave ``STACK[-1].__xxx__; NULL`` on the stack." msgstr "" -#: ../../library/dis.rst:1933 msgid "**Pseudo-instructions**" msgstr "" -#: ../../library/dis.rst:1935 -msgid "" -"These opcodes do not appear in Python bytecode. They are used by the " -"compiler but are replaced by real opcodes or removed before bytecode is " -"generated." +msgid "These opcodes do not appear in Python bytecode. They are used by the compiler but are replaced by real opcodes or removed before bytecode is generated." msgstr "" -#: ../../library/dis.rst:1940 -msgid "" -"Set up an exception handler for the following code block. If an exception " -"occurs, the value stack level is restored to its current state and control " -"is transferred to the exception handler at ``target``." +msgid "Set up an exception handler for the following code block. If an exception occurs, the value stack level is restored to its current state and control is transferred to the exception handler at ``target``." msgstr "" -#: ../../library/dis.rst:1947 -msgid "" -"Like ``SETUP_FINALLY``, but in case of an exception also pushes the last " -"instruction (``lasti``) to the stack so that ``RERAISE`` can restore it. If " -"an exception occurs, the value stack level and the last instruction on the " -"frame are restored to their current state, and control is transferred to the " -"exception handler at ``target``." +msgid "Like ``SETUP_FINALLY``, but in case of an exception also pushes the last instruction (``lasti``) to the stack so that ``RERAISE`` can restore it. If an exception occurs, the value stack level and the last instruction on the frame are restored to their current state, and control is transferred to the exception handler at ``target``." msgstr "" -#: ../../library/dis.rst:1956 -msgid "" -"Like ``SETUP_CLEANUP``, but in case of an exception one more item is popped " -"from the stack before control is transferred to the exception handler at " -"``target``." +msgid "Like ``SETUP_CLEANUP``, but in case of an exception one more item is popped from the stack before control is transferred to the exception handler at ``target``." msgstr "" -#: ../../library/dis.rst:1960 -msgid "" -"This variant is used in :keyword:`with` and :keyword:`async with` " -"constructs, which push the return value of the context " -"manager's :meth:`~object.__enter__` or :meth:`~object.__aenter__` to the " -"stack." +msgid "This variant is used in :keyword:`with` and :keyword:`async with` constructs, which push the return value of the context manager's :meth:`~object.__enter__` or :meth:`~object.__aenter__` to the stack." msgstr "" -#: ../../library/dis.rst:1967 -msgid "" -"Marks the end of the code block associated with the last ``SETUP_FINALLY``, " -"``SETUP_CLEANUP`` or ``SETUP_WITH``." +msgid "Marks the end of the code block associated with the last ``SETUP_FINALLY``, ``SETUP_CLEANUP`` or ``SETUP_WITH``." msgstr "" -#: ../../library/dis.rst:1973 -msgid "" -"Works as :opcode:`LOAD_CONST`, but is more efficient for immortal objects." +msgid "Works as :opcode:`LOAD_CONST`, but is more efficient for immortal objects." msgstr "" -#: ../../library/dis.rst:1979 -msgid "" -"Undirected relative jump instructions which are replaced by their directed " -"(forward/backward) counterparts by the assembler." +msgid "Undirected relative jump instructions which are replaced by their directed (forward/backward) counterparts by the assembler." msgstr "" -#: ../../library/dis.rst:1985 -msgid "" -"Conditional jumps which do not impact the stack. Replaced by the sequence " -"``COPY 1``, ``TO_BOOL``, ``POP_JUMP_IF_TRUE/FALSE``." +msgid "Conditional jumps which do not impact the stack. Replaced by the sequence ``COPY 1``, ``TO_BOOL``, ``POP_JUMP_IF_TRUE/FALSE``." msgstr "" -#: ../../library/dis.rst:1990 -msgid "" -"Pushes a reference to the cell contained in slot ``i`` of the \"fast " -"locals\" storage." +msgid "Pushes a reference to the cell contained in slot ``i`` of the \"fast locals\" storage." msgstr "" -#: ../../library/dis.rst:1993 -msgid "" -"Note that ``LOAD_CLOSURE`` is replaced with ``LOAD_FAST`` in the assembler." +msgid "Note that ``LOAD_CLOSURE`` is replaced with ``LOAD_FAST`` in the assembler." msgstr "" -#: ../../library/dis.rst:1995 msgid "This opcode is now a pseudo-instruction." msgstr "" -#: ../../library/dis.rst:2002 msgid "Opcode collections" msgstr "" -#: ../../library/dis.rst:2004 -msgid "" -"These collections are provided for automatic introspection of bytecode " -"instructions:" +msgid "These collections are provided for automatic introspection of bytecode instructions:" msgstr "" -#: ../../library/dis.rst:2007 -msgid "" -"The collections now contain pseudo instructions and instrumented " -"instructions as well. These are opcodes with values ``>= MIN_PSEUDO_OPCODE`` " -"and ``>= MIN_INSTRUMENTED_OPCODE``." +msgid "The collections now contain pseudo instructions and instrumented instructions as well. These are opcodes with values ``>= MIN_PSEUDO_OPCODE`` and ``>= MIN_INSTRUMENTED_OPCODE``." msgstr "" -#: ../../library/dis.rst:2014 msgid "Sequence of operation names, indexable using the bytecode." msgstr "" -#: ../../library/dis.rst:2019 msgid "Dictionary mapping operation names to bytecodes." msgstr "" -#: ../../library/dis.rst:2024 msgid "Sequence of all compare operation names." msgstr "" -#: ../../library/dis.rst:2029 msgid "Sequence of bytecodes that use their argument." msgstr "" -#: ../../library/dis.rst:2036 msgid "Sequence of bytecodes that access a constant." msgstr "" -#: ../../library/dis.rst:2041 -msgid "" -"Sequence of bytecodes that access a :term:`free (closure) variable `. 'free' in this context refers to names in the current scope that " -"are referenced by inner scopes or names in outer scopes that are referenced " -"from this scope. It does *not* include references to global or builtin " -"scopes." +msgid "Sequence of bytecodes that access a :term:`free (closure) variable `. 'free' in this context refers to names in the current scope that are referenced by inner scopes or names in outer scopes that are referenced from this scope. It does *not* include references to global or builtin scopes." msgstr "" -#: ../../library/dis.rst:2049 msgid "Sequence of bytecodes that access an attribute by name." msgstr "" -#: ../../library/dis.rst:2054 msgid "Sequence of bytecodes that have a jump target. All jumps are relative." msgstr "" -#: ../../library/dis.rst:2061 msgid "Sequence of bytecodes that access a local variable." msgstr "" -#: ../../library/dis.rst:2066 msgid "Sequence of bytecodes of Boolean operations." msgstr "" -#: ../../library/dis.rst:2070 msgid "Sequence of bytecodes that set an exception handler." msgstr "" -#: ../../library/dis.rst:2077 msgid "Sequence of bytecodes that have a relative jump target." msgstr "" -#: ../../library/dis.rst:2079 msgid "All jumps are now relative. Use :data:`hasjump`." msgstr "" -#: ../../library/dis.rst:2085 msgid "Sequence of bytecodes that have an absolute jump target." msgstr "" -#: ../../library/dis.rst:2087 msgid "All jumps are now relative. This list is empty." msgstr "" -#: ../../library/dis.rst:1686 msgid "built-in function" msgstr "" -#: ../../library/dis.rst:1686 msgid "slice" msgstr "" diff --git a/library/distribution.po b/library/distribution.po index 328aca34..47bcd287 100644 --- a/library/distribution.po +++ b/library/distribution.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:04+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,14 +21,8 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/distribution.rst:3 msgid "Software Packaging and Distribution" msgstr "" -#: ../../library/distribution.rst:5 -msgid "" -"These libraries help you with publishing and installing Python software. " -"While these modules are designed to work in conjunction with the `Python " -"Package Index `__, they can also be used with a local " -"index server, or without any index server at all." +msgid "These libraries help you with publishing and installing Python software. While these modules are designed to work in conjunction with the `Python Package Index `__, they can also be used with a local index server, or without any index server at all." msgstr "" diff --git a/library/distutils.po b/library/distutils.po index 595418e0..c64489bd 100644 --- a/library/distutils.po +++ b/library/distutils.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2024-11-19 01:02+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,21 +21,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/distutils.rst:2 msgid ":mod:`!distutils` --- Building and installing Python modules" msgstr "" -#: ../../library/distutils.rst:10 -msgid "" -"This module is no longer part of the Python standard library. It " -"was :ref:`removed in Python 3.12 ` after " -"being deprecated in Python 3.10. The removal was decided in :pep:`632`, " -"which has `migration advice `_." +msgid "This module is no longer part of the Python standard library. It was :ref:`removed in Python 3.12 ` after being deprecated in Python 3.10. The removal was decided in :pep:`632`, which has `migration advice `_." msgstr "" -#: ../../library/distutils.rst:16 -msgid "" -"The last version of Python that provided the :mod:`!distutils` module was " -"`Python 3.11 `_." +msgid "The last version of Python that provided the :mod:`!distutils` module was `Python 3.11 `_." msgstr "" diff --git a/library/doctest.po b/library/doctest.po index 8916c770..dab17bbc 100644 --- a/library/doctest.po +++ b/library/doctest.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:04+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,46 +23,27 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/doctest.rst:2 msgid ":mod:`!doctest` --- Test interactive Python examples" msgstr "" -#: ../../library/doctest.rst:12 msgid "**Source code:** :source:`Lib/doctest.py`" msgstr "" -#: ../../library/doctest.rst:16 -msgid "" -"The :mod:`!doctest` module searches for pieces of text that look like " -"interactive Python sessions, and then executes those sessions to verify that " -"they work exactly as shown. There are several common ways to use doctest:" +msgid "The :mod:`!doctest` module searches for pieces of text that look like interactive Python sessions, and then executes those sessions to verify that they work exactly as shown. There are several common ways to use doctest:" msgstr "" -#: ../../library/doctest.rst:20 -msgid "" -"To check that a module's docstrings are up-to-date by verifying that all " -"interactive examples still work as documented." +msgid "To check that a module's docstrings are up-to-date by verifying that all interactive examples still work as documented." msgstr "" -#: ../../library/doctest.rst:23 -msgid "" -"To perform regression testing by verifying that interactive examples from a " -"test file or a test object work as expected." +msgid "To perform regression testing by verifying that interactive examples from a test file or a test object work as expected." msgstr "" -#: ../../library/doctest.rst:26 -msgid "" -"To write tutorial documentation for a package, liberally illustrated with " -"input-output examples. Depending on whether the examples or the expository " -"text are emphasized, this has the flavor of \"literate testing\" or " -"\"executable documentation\"." +msgid "To write tutorial documentation for a package, liberally illustrated with input-output examples. Depending on whether the examples or the expository text are emphasized, this has the flavor of \"literate testing\" or \"executable documentation\"." msgstr "" -#: ../../library/doctest.rst:31 msgid "Here's a complete but small example module::" msgstr "" -#: ../../library/doctest.rst:33 msgid "" "\"\"\"\n" "This is the \"example\" module.\n" @@ -120,26 +101,17 @@ msgid "" " doctest.testmod()" msgstr "" -#: ../../library/doctest.rst:88 -msgid "" -"If you run :file:`example.py` directly from the command line, :mod:`!" -"doctest` works its magic:" +msgid "If you run :file:`example.py` directly from the command line, :mod:`!doctest` works its magic:" msgstr "" -#: ../../library/doctest.rst:91 msgid "" "$ python example.py\n" "$" msgstr "" -#: ../../library/doctest.rst:96 -msgid "" -"There's no output! That's normal, and it means all the examples worked. " -"Pass ``-v`` to the script, and :mod:`!doctest` prints a detailed log of what " -"it's trying, and prints a summary at the end:" +msgid "There's no output! That's normal, and it means all the examples worked. Pass ``-v`` to the script, and :mod:`!doctest` prints a detailed log of what it's trying, and prints a summary at the end:" msgstr "" -#: ../../library/doctest.rst:100 msgid "" "$ python example.py -v\n" "Trying:\n" @@ -154,11 +126,9 @@ msgid "" "ok" msgstr "" -#: ../../library/doctest.rst:114 msgid "And so on, eventually ending with:" msgstr "" -#: ../../library/doctest.rst:116 msgid "" "Trying:\n" " factorial(1e100)\n" @@ -176,119 +146,68 @@ msgid "" "$" msgstr "" -#: ../../library/doctest.rst:133 -msgid "" -"That's all you need to know to start making productive use of :mod:`!" -"doctest`! Jump in. The following sections provide full details. Note that " -"there are many examples of doctests in the standard Python test suite and " -"libraries. Especially useful examples can be found in the standard test " -"file :file:`Lib/test/test_doctest/test_doctest.py`." +msgid "That's all you need to know to start making productive use of :mod:`!doctest`! Jump in. The following sections provide full details. Note that there are many examples of doctests in the standard Python test suite and libraries. Especially useful examples can be found in the standard test file :file:`Lib/test/test_doctest/test_doctest.py`." msgstr "" -#: ../../library/doctest.rst:139 -msgid "" -"Output is colorized by default and can be :ref:`controlled using environment " -"variables `." +msgid "Output is colorized by default and can be :ref:`controlled using environment variables `." msgstr "" -#: ../../library/doctest.rst:147 msgid "Simple Usage: Checking Examples in Docstrings" msgstr "" -#: ../../library/doctest.rst:149 -msgid "" -"The simplest way to start using doctest (but not necessarily the way you'll " -"continue to do it) is to end each module :mod:`!M` with::" +msgid "The simplest way to start using doctest (but not necessarily the way you'll continue to do it) is to end each module :mod:`!M` with::" msgstr "" -#: ../../library/doctest.rst:152 msgid "" "if __name__ == \"__main__\":\n" " import doctest\n" " doctest.testmod()" msgstr "" -#: ../../library/doctest.rst:156 msgid ":mod:`!doctest` then examines docstrings in module :mod:`!M`." msgstr "" -#: ../../library/doctest.rst:158 -msgid "" -"Running the module as a script causes the examples in the docstrings to get " -"executed and verified::" +msgid "Running the module as a script causes the examples in the docstrings to get executed and verified::" msgstr "" -#: ../../library/doctest.rst:161 msgid "python M.py" msgstr "" -#: ../../library/doctest.rst:163 -msgid "" -"This won't display anything unless an example fails, in which case the " -"failing example(s) and the cause(s) of the failure(s) are printed to stdout, " -"and the final line of output is ``***Test Failed*** N failures.``, where *N* " -"is the number of examples that failed." +msgid "This won't display anything unless an example fails, in which case the failing example(s) and the cause(s) of the failure(s) are printed to stdout, and the final line of output is ``***Test Failed*** N failures.``, where *N* is the number of examples that failed." msgstr "" -#: ../../library/doctest.rst:168 msgid "Run it with the ``-v`` switch instead::" msgstr "" -#: ../../library/doctest.rst:170 msgid "python M.py -v" msgstr "" -#: ../../library/doctest.rst:172 -msgid "" -"and a detailed report of all examples tried is printed to standard output, " -"along with assorted summaries at the end." +msgid "and a detailed report of all examples tried is printed to standard output, along with assorted summaries at the end." msgstr "" -#: ../../library/doctest.rst:175 -msgid "" -"You can force verbose mode by passing ``verbose=True`` to :func:`testmod`, " -"or prohibit it by passing ``verbose=False``. In either of those " -"cases, :data:`sys.argv` is not examined by :func:`testmod` (so passing ``-" -"v`` or not has no effect)." +msgid "You can force verbose mode by passing ``verbose=True`` to :func:`testmod`, or prohibit it by passing ``verbose=False``. In either of those cases, :data:`sys.argv` is not examined by :func:`testmod` (so passing ``-v`` or not has no effect)." msgstr "" -#: ../../library/doctest.rst:180 -msgid "" -"There is also a command line shortcut for running :func:`testmod`, see " -"section :ref:`doctest-cli`." +msgid "There is also a command line shortcut for running :func:`testmod`, see section :ref:`doctest-cli`." msgstr "" -#: ../../library/doctest.rst:183 -msgid "" -"For more information on :func:`testmod`, see section :ref:`doctest-basic-" -"api`." +msgid "For more information on :func:`testmod`, see section :ref:`doctest-basic-api`." msgstr "" -#: ../../library/doctest.rst:189 msgid "Simple Usage: Checking Examples in a Text File" msgstr "" -#: ../../library/doctest.rst:191 -msgid "" -"Another simple application of doctest is testing interactive examples in a " -"text file. This can be done with the :func:`testfile` function::" +msgid "Another simple application of doctest is testing interactive examples in a text file. This can be done with the :func:`testfile` function::" msgstr "" -#: ../../library/doctest.rst:194 msgid "" "import doctest\n" "doctest.testfile(\"example.txt\")" msgstr "" -#: ../../library/doctest.rst:197 -msgid "" -"That short script executes and verifies any interactive Python examples " -"contained in the file :file:`example.txt`. The file content is treated as " -"if it were a single giant docstring; the file doesn't need to contain a " -"Python program! For example, perhaps :file:`example.txt` contains this:" +msgid "That short script executes and verifies any interactive Python examples contained in the file :file:`example.txt`. The file content is treated as if it were a single giant docstring; the file doesn't need to contain a Python program! For example, perhaps :file:`example.txt` contains this:" msgstr "" -#: ../../library/doctest.rst:202 msgid "" "The ``example`` module\n" "======================\n" @@ -307,13 +226,9 @@ msgid "" " 120" msgstr "" -#: ../../library/doctest.rst:220 -msgid "" -"Running ``doctest.testfile(\"example.txt\")`` then finds the error in this " -"documentation::" +msgid "Running ``doctest.testfile(\"example.txt\")`` then finds the error in this documentation::" msgstr "" -#: ../../library/doctest.rst:223 msgid "" "File \"./example.txt\", line 14, in example.txt\n" "Failed example:\n" @@ -324,132 +239,69 @@ msgid "" " 720" msgstr "" -#: ../../library/doctest.rst:231 -msgid "" -"As with :func:`testmod`, :func:`testfile` won't display anything unless an " -"example fails. If an example does fail, then the failing example(s) and the " -"cause(s) of the failure(s) are printed to stdout, using the same format " -"as :func:`!testmod`." +msgid "As with :func:`testmod`, :func:`testfile` won't display anything unless an example fails. If an example does fail, then the failing example(s) and the cause(s) of the failure(s) are printed to stdout, using the same format as :func:`!testmod`." msgstr "" -#: ../../library/doctest.rst:236 -msgid "" -"By default, :func:`testfile` looks for files in the calling module's " -"directory. See section :ref:`doctest-basic-api` for a description of the " -"optional arguments that can be used to tell it to look for files in other " -"locations." +msgid "By default, :func:`testfile` looks for files in the calling module's directory. See section :ref:`doctest-basic-api` for a description of the optional arguments that can be used to tell it to look for files in other locations." msgstr "" -#: ../../library/doctest.rst:240 -msgid "" -"Like :func:`testmod`, :func:`testfile`'s verbosity can be set with the ``-" -"v`` command-line switch or with the optional keyword argument *verbose*." +msgid "Like :func:`testmod`, :func:`testfile`'s verbosity can be set with the ``-v`` command-line switch or with the optional keyword argument *verbose*." msgstr "" -#: ../../library/doctest.rst:244 -msgid "" -"There is also a command line shortcut for running :func:`testfile`, see " -"section :ref:`doctest-cli`." +msgid "There is also a command line shortcut for running :func:`testfile`, see section :ref:`doctest-cli`." msgstr "" -#: ../../library/doctest.rst:247 -msgid "" -"For more information on :func:`testfile`, see section :ref:`doctest-basic-" -"api`." +msgid "For more information on :func:`testfile`, see section :ref:`doctest-basic-api`." msgstr "" -#: ../../library/doctest.rst:253 msgid "Command-line Usage" msgstr "" -#: ../../library/doctest.rst:255 -msgid "" -"The :mod:`!doctest` module can be invoked as a script from the command line:" +msgid "The :mod:`!doctest` module can be invoked as a script from the command line:" msgstr "" -#: ../../library/doctest.rst:257 msgid "python -m doctest [-v] [-o OPTION] [-f] file [file ...]" msgstr "" -#: ../../library/doctest.rst:265 -msgid "" -"Detailed report of all examples tried is printed to standard output, along " -"with assorted summaries at the end::" +msgid "Detailed report of all examples tried is printed to standard output, along with assorted summaries at the end::" msgstr "" -#: ../../library/doctest.rst:268 msgid "python -m doctest -v example.py" msgstr "" -#: ../../library/doctest.rst:270 -msgid "" -"This will import :file:`example.py` as a standalone module and " -"run :func:`testmod` on it. Note that this may not work correctly if the file " -"is part of a package and imports other submodules from that package." +msgid "This will import :file:`example.py` as a standalone module and run :func:`testmod` on it. Note that this may not work correctly if the file is part of a package and imports other submodules from that package." msgstr "" -#: ../../library/doctest.rst:274 -msgid "" -"If the file name does not end with :file:`.py`, :mod:`!doctest` infers that " -"it must be run with :func:`testfile` instead::" +msgid "If the file name does not end with :file:`.py`, :mod:`!doctest` infers that it must be run with :func:`testfile` instead::" msgstr "" -#: ../../library/doctest.rst:277 msgid "python -m doctest -v example.txt" msgstr "" -#: ../../library/doctest.rst:281 -msgid "" -"Option flags control various aspects of doctest's behavior, see " -"section :ref:`doctest-options`." +msgid "Option flags control various aspects of doctest's behavior, see section :ref:`doctest-options`." msgstr "" -#: ../../library/doctest.rst:288 msgid "This is shorthand for ``-o FAIL_FAST``." msgstr "" -#: ../../library/doctest.rst:296 msgid "How It Works" msgstr "" -#: ../../library/doctest.rst:298 -msgid "" -"This section examines in detail how doctest works: which docstrings it looks " -"at, how it finds interactive examples, what execution context it uses, how " -"it handles exceptions, and how option flags can be used to control its " -"behavior. This is the information that you need to know to write doctest " -"examples; for information about actually running doctest on these examples, " -"see the following sections." +msgid "This section examines in detail how doctest works: which docstrings it looks at, how it finds interactive examples, what execution context it uses, how it handles exceptions, and how option flags can be used to control its behavior. This is the information that you need to know to write doctest examples; for information about actually running doctest on these examples, see the following sections." msgstr "" -#: ../../library/doctest.rst:309 msgid "Which Docstrings Are Examined?" msgstr "" -#: ../../library/doctest.rst:311 -msgid "" -"The module docstring, and all function, class and method docstrings are " -"searched. Objects imported into the module are not searched." +msgid "The module docstring, and all function, class and method docstrings are searched. Objects imported into the module are not searched." +msgstr "" + +msgid "In addition, there are cases when you want tests to be part of a module but not part of the help text, which requires that the tests not be included in the docstring. Doctest looks for a module-level variable called ``__test__`` and uses it to locate other tests. If ``M.__test__`` exists, it must be a dict, and each entry maps a (string) name to a function object, class object, or string. Function and class object docstrings found from ``M.__test__`` are searched, and strings are treated as if they were docstrings. In output, a key ``K`` in ``M.__test__`` appears with name ``M.__test__.K``." msgstr "" -#: ../../library/doctest.rst:321 -msgid "" -"In addition, there are cases when you want tests to be part of a module but " -"not part of the help text, which requires that the tests not be included in " -"the docstring. Doctest looks for a module-level variable called ``__test__`` " -"and uses it to locate other tests. If ``M.__test__`` exists, it must be a " -"dict, and each entry maps a (string) name to a function object, class " -"object, or string. Function and class object docstrings found from " -"``M.__test__`` are searched, and strings are treated as if they were " -"docstrings. In output, a key ``K`` in ``M.__test__`` appears with name " -"``M.__test__.K``." -msgstr "" - -#: ../../library/doctest.rst:330 msgid "For example, place this block of code at the top of :file:`example.py`:" msgstr "" -#: ../../library/doctest.rst:332 msgid "" "__test__ = {\n" " 'numbers': \"\"\"\n" @@ -462,45 +314,24 @@ msgid "" "}" msgstr "" -#: ../../library/doctest.rst:344 -msgid "" -"The value of ``example.__test__[\"numbers\"]`` will be treated as a " -"docstring and all the tests inside it will be run. It is important to note " -"that the value can be mapped to a function, class object, or module; if " -"so, :mod:`!doctest` searches them recursively for docstrings, which are then " -"scanned for tests." +msgid "The value of ``example.__test__[\"numbers\"]`` will be treated as a docstring and all the tests inside it will be run. It is important to note that the value can be mapped to a function, class object, or module; if so, :mod:`!doctest` searches them recursively for docstrings, which are then scanned for tests." msgstr "" -#: ../../library/doctest.rst:350 -msgid "" -"Any classes found are recursively searched similarly, to test docstrings in " -"their contained methods and nested classes." +msgid "Any classes found are recursively searched similarly, to test docstrings in their contained methods and nested classes." msgstr "" -#: ../../library/doctest.rst:355 -msgid "" -"``doctest`` can only automatically discover classes and functions that are " -"defined at the module level or inside other classes." +msgid "``doctest`` can only automatically discover classes and functions that are defined at the module level or inside other classes." msgstr "" -#: ../../library/doctest.rst:358 -msgid "" -"Since nested classes and functions only exist when an outer function is " -"called, they cannot be discovered. Define them outside to make them visible." +msgid "Since nested classes and functions only exist when an outer function is called, they cannot be discovered. Define them outside to make them visible." msgstr "" -#: ../../library/doctest.rst:364 msgid "How are Docstring Examples Recognized?" msgstr "" -#: ../../library/doctest.rst:366 -msgid "" -"In most cases a copy-and-paste of an interactive console session works fine, " -"but doctest isn't trying to do an exact emulation of any specific Python " -"shell." +msgid "In most cases a copy-and-paste of an interactive console session works fine, but doctest isn't trying to do an exact emulation of any specific Python shell." msgstr "" -#: ../../library/doctest.rst:371 msgid "" ">>> # comments are ignored\n" ">>> x = 12\n" @@ -519,54 +350,24 @@ msgid "" ">>>" msgstr "" -#: ../../library/doctest.rst:391 -msgid "" -"Any expected output must immediately follow the final ``'>>> '`` or ``'... " -"'`` line containing the code, and the expected output (if any) extends to " -"the next ``'>>> '`` or all-whitespace line." +msgid "Any expected output must immediately follow the final ``'>>> '`` or ``'... '`` line containing the code, and the expected output (if any) extends to the next ``'>>> '`` or all-whitespace line." msgstr "" -#: ../../library/doctest.rst:395 msgid "The fine print:" msgstr "" -#: ../../library/doctest.rst:397 -msgid "" -"Expected output cannot contain an all-whitespace line, since such a line is " -"taken to signal the end of expected output. If expected output does contain " -"a blank line, put ```` in your doctest example each place a blank " -"line is expected." +msgid "Expected output cannot contain an all-whitespace line, since such a line is taken to signal the end of expected output. If expected output does contain a blank line, put ```` in your doctest example each place a blank line is expected." msgstr "" -#: ../../library/doctest.rst:402 -msgid "" -"All hard tab characters are expanded to spaces, using 8-column tab stops. " -"Tabs in output generated by the tested code are not modified. Because any " -"hard tabs in the sample output *are* expanded, this means that if the code " -"output includes hard tabs, the only way the doctest can pass is if " -"the :const:`NORMALIZE_WHITESPACE` option or :ref:`directive ` is in effect. Alternatively, the test can be rewritten to " -"capture the output and compare it to an expected value as part of the test. " -"This handling of tabs in the source was arrived at through trial and error, " -"and has proven to be the least error prone way of handling them. It is " -"possible to use a different algorithm for handling tabs by writing a " -"custom :class:`DocTestParser` class." -msgstr "" - -#: ../../library/doctest.rst:414 -msgid "" -"Output to stdout is captured, but not output to stderr (exception tracebacks " -"are captured via a different means)." +msgid "All hard tab characters are expanded to spaces, using 8-column tab stops. Tabs in output generated by the tested code are not modified. Because any hard tabs in the sample output *are* expanded, this means that if the code output includes hard tabs, the only way the doctest can pass is if the :const:`NORMALIZE_WHITESPACE` option or :ref:`directive ` is in effect. Alternatively, the test can be rewritten to capture the output and compare it to an expected value as part of the test. This handling of tabs in the source was arrived at through trial and error, and has proven to be the least error prone way of handling them. It is possible to use a different algorithm for handling tabs by writing a custom :class:`DocTestParser` class." msgstr "" -#: ../../library/doctest.rst:417 -msgid "" -"If you continue a line via backslashing in an interactive session, or for " -"any other reason use a backslash, you should use a raw docstring, which will " -"preserve your backslashes exactly as you type them::" +msgid "Output to stdout is captured, but not output to stderr (exception tracebacks are captured via a different means)." +msgstr "" + +msgid "If you continue a line via backslashing in an interactive session, or for any other reason use a backslash, you should use a raw docstring, which will preserve your backslashes exactly as you type them::" msgstr "" -#: ../../library/doctest.rst:421 msgid "" ">>> def f(x):\n" "... r'''Backslashes in a raw docstring: m\\n'''\n" @@ -575,15 +376,9 @@ msgid "" "Backslashes in a raw docstring: m\\n" msgstr "" -#: ../../library/doctest.rst:427 -msgid "" -"Otherwise, the backslash will be interpreted as part of the string. For " -"example, the ``\\n`` above would be interpreted as a newline character. " -"Alternatively, you can double each backslash in the doctest version (and not " -"use a raw string)::" +msgid "Otherwise, the backslash will be interpreted as part of the string. For example, the ``\\n`` above would be interpreted as a newline character. Alternatively, you can double each backslash in the doctest version (and not use a raw string)::" msgstr "" -#: ../../library/doctest.rst:431 msgid "" ">>> def f(x):\n" "... '''Backslashes in a raw docstring: m\\\\n'''\n" @@ -592,11 +387,9 @@ msgid "" "Backslashes in a raw docstring: m\\n" msgstr "" -#: ../../library/doctest.rst:437 msgid "The starting column doesn't matter::" msgstr "" -#: ../../library/doctest.rst:439 msgid "" ">>> assert \"Easy!\"\n" " >>> import math\n" @@ -604,51 +397,27 @@ msgid "" " 1" msgstr "" -#: ../../library/doctest.rst:444 -msgid "" -"and as many leading whitespace characters are stripped from the expected " -"output as appeared in the initial ``'>>> '`` line that started the example." +msgid "and as many leading whitespace characters are stripped from the expected output as appeared in the initial ``'>>> '`` line that started the example." msgstr "" -#: ../../library/doctest.rst:451 msgid "What's the Execution Context?" msgstr "" -#: ../../library/doctest.rst:453 -msgid "" -"By default, each time :mod:`!doctest` finds a docstring to test, it uses a " -"*shallow copy* of :mod:`!M`'s globals, so that running tests doesn't change " -"the module's real globals, and so that one test in :mod:`!M` can't leave " -"behind crumbs that accidentally allow another test to work. This means " -"examples can freely use any names defined at top-level in :mod:`!M`, and " -"names defined earlier in the docstring being run. Examples cannot see names " -"defined in other docstrings." +msgid "By default, each time :mod:`!doctest` finds a docstring to test, it uses a *shallow copy* of :mod:`!M`'s globals, so that running tests doesn't change the module's real globals, and so that one test in :mod:`!M` can't leave behind crumbs that accidentally allow another test to work. This means examples can freely use any names defined at top-level in :mod:`!M`, and names defined earlier in the docstring being run. Examples cannot see names defined in other docstrings." msgstr "" -#: ../../library/doctest.rst:461 -msgid "" -"You can force use of your own dict as the execution context by passing " -"``globs=your_dict`` to :func:`testmod` or :func:`testfile` instead." +msgid "You can force use of your own dict as the execution context by passing ``globs=your_dict`` to :func:`testmod` or :func:`testfile` instead." msgstr "" -#: ../../library/doctest.rst:468 msgid "What About Exceptions?" msgstr "" -#: ../../library/doctest.rst:470 -msgid "" -"No problem, provided that the traceback is the only output produced by the " -"example: just paste in the traceback. [#]_ Since tracebacks contain details " -"that are likely to change rapidly (for example, exact file paths and line " -"numbers), this is one case where doctest works hard to be flexible in what " -"it accepts." +msgid "No problem, provided that the traceback is the only output produced by the example: just paste in the traceback. [#]_ Since tracebacks contain details that are likely to change rapidly (for example, exact file paths and line numbers), this is one case where doctest works hard to be flexible in what it accepts." msgstr "" -#: ../../library/doctest.rst:476 msgid "Simple example::" msgstr "" -#: ../../library/doctest.rst:478 msgid "" ">>> [1, 2, 3].remove(42)\n" "Traceback (most recent call last):\n" @@ -656,41 +425,23 @@ msgid "" "ValueError: list.remove(x): x not in list" msgstr "" -#: ../../library/doctest.rst:483 -msgid "" -"That doctest succeeds if :exc:`ValueError` is raised, with the " -"``list.remove(x): x not in list`` detail as shown." +msgid "That doctest succeeds if :exc:`ValueError` is raised, with the ``list.remove(x): x not in list`` detail as shown." msgstr "" -#: ../../library/doctest.rst:486 -msgid "" -"The expected output for an exception must start with a traceback header, " -"which may be either of the following two lines, indented the same as the " -"first line of the example::" +msgid "The expected output for an exception must start with a traceback header, which may be either of the following two lines, indented the same as the first line of the example::" msgstr "" -#: ../../library/doctest.rst:490 msgid "" "Traceback (most recent call last):\n" "Traceback (innermost last):" msgstr "" -#: ../../library/doctest.rst:493 -msgid "" -"The traceback header is followed by an optional traceback stack, whose " -"contents are ignored by doctest. The traceback stack is typically omitted, " -"or copied verbatim from an interactive session." +msgid "The traceback header is followed by an optional traceback stack, whose contents are ignored by doctest. The traceback stack is typically omitted, or copied verbatim from an interactive session." msgstr "" -#: ../../library/doctest.rst:497 -msgid "" -"The traceback stack is followed by the most interesting part: the line(s) " -"containing the exception type and detail. This is usually the last line of " -"a traceback, but can extend across multiple lines if the exception has a " -"multi-line detail::" +msgid "The traceback stack is followed by the most interesting part: the line(s) containing the exception type and detail. This is usually the last line of a traceback, but can extend across multiple lines if the exception has a multi-line detail::" msgstr "" -#: ../../library/doctest.rst:502 msgid "" ">>> raise ValueError('multi\\n line\\ndetail')\n" "Traceback (most recent call last):\n" @@ -700,20 +451,12 @@ msgid "" "detail" msgstr "" -#: ../../library/doctest.rst:509 -msgid "" -"The last three lines (starting with :exc:`ValueError`) are compared against " -"the exception's type and detail, and the rest are ignored." +msgid "The last three lines (starting with :exc:`ValueError`) are compared against the exception's type and detail, and the rest are ignored." msgstr "" -#: ../../library/doctest.rst:512 -msgid "" -"Best practice is to omit the traceback stack, unless it adds significant " -"documentation value to the example. So the last example is probably better " -"as::" +msgid "Best practice is to omit the traceback stack, unless it adds significant documentation value to the example. So the last example is probably better as::" msgstr "" -#: ../../library/doctest.rst:515 msgid "" ">>> raise ValueError('multi\\n line\\ndetail')\n" "Traceback (most recent call last):\n" @@ -723,61 +466,27 @@ msgid "" "detail" msgstr "" -#: ../../library/doctest.rst:522 -msgid "" -"Note that tracebacks are treated very specially. In particular, in the " -"rewritten example, the use of ``...`` is independent of " -"doctest's :const:`ELLIPSIS` option. The ellipsis in that example could be " -"left out, or could just as well be three (or three hundred) commas or " -"digits, or an indented transcript of a Monty Python skit." +msgid "Note that tracebacks are treated very specially. In particular, in the rewritten example, the use of ``...`` is independent of doctest's :const:`ELLIPSIS` option. The ellipsis in that example could be left out, or could just as well be three (or three hundred) commas or digits, or an indented transcript of a Monty Python skit." msgstr "" -#: ../../library/doctest.rst:528 msgid "Some details you should read once, but won't need to remember:" msgstr "" -#: ../../library/doctest.rst:530 -msgid "" -"Doctest can't guess whether your expected output came from an exception " -"traceback or from ordinary printing. So, e.g., an example that expects " -"``ValueError: 42 is prime`` will pass whether :exc:`ValueError` is actually " -"raised or if the example merely prints that traceback text. In practice, " -"ordinary output rarely begins with a traceback header line, so this doesn't " -"create real problems." +msgid "Doctest can't guess whether your expected output came from an exception traceback or from ordinary printing. So, e.g., an example that expects ``ValueError: 42 is prime`` will pass whether :exc:`ValueError` is actually raised or if the example merely prints that traceback text. In practice, ordinary output rarely begins with a traceback header line, so this doesn't create real problems." msgstr "" -#: ../../library/doctest.rst:537 -msgid "" -"Each line of the traceback stack (if present) must be indented further than " -"the first line of the example, *or* start with a non-alphanumeric character. " -"The first line following the traceback header indented the same and starting " -"with an alphanumeric is taken to be the start of the exception detail. Of " -"course this does the right thing for genuine tracebacks." +msgid "Each line of the traceback stack (if present) must be indented further than the first line of the example, *or* start with a non-alphanumeric character. The first line following the traceback header indented the same and starting with an alphanumeric is taken to be the start of the exception detail. Of course this does the right thing for genuine tracebacks." msgstr "" -#: ../../library/doctest.rst:543 -msgid "" -"When the :const:`IGNORE_EXCEPTION_DETAIL` doctest option is specified, " -"everything following the leftmost colon and any module information in the " -"exception name is ignored." +msgid "When the :const:`IGNORE_EXCEPTION_DETAIL` doctest option is specified, everything following the leftmost colon and any module information in the exception name is ignored." msgstr "" -#: ../../library/doctest.rst:547 -msgid "" -"The interactive shell omits the traceback header line for " -"some :exc:`SyntaxError`\\ s. But doctest uses the traceback header line to " -"distinguish exceptions from non-exceptions. So in the rare case where you " -"need to test a :exc:`!SyntaxError` that omits the traceback header, you will " -"need to manually add the traceback header line to your test example." +msgid "The interactive shell omits the traceback header line for some :exc:`SyntaxError`\\ s. But doctest uses the traceback header line to distinguish exceptions from non-exceptions. So in the rare case where you need to test a :exc:`!SyntaxError` that omits the traceback header, you will need to manually add the traceback header line to your test example." msgstr "" -#: ../../library/doctest.rst:555 -msgid "" -"For some exceptions, Python displays the position of the error using ``^`` " -"markers and tildes::" +msgid "For some exceptions, Python displays the position of the error using ``^`` markers and tildes::" msgstr "" -#: ../../library/doctest.rst:558 msgid "" ">>> 1 + None\n" " File \"\", line 1\n" @@ -786,15 +495,9 @@ msgid "" "TypeError: unsupported operand type(s) for +: 'int' and 'NoneType'" msgstr "" -#: ../../library/doctest.rst:564 -msgid "" -"Since the lines showing the position of the error come before the exception " -"type and detail, they are not checked by doctest. For example, the " -"following test would pass, even though it puts the ``^`` marker in the wrong " -"location::" +msgid "Since the lines showing the position of the error come before the exception type and detail, they are not checked by doctest. For example, the following test would pass, even though it puts the ``^`` marker in the wrong location::" msgstr "" -#: ../../library/doctest.rst:568 msgid "" ">>> 1 + None\n" " File \"\", line 1\n" @@ -803,85 +506,33 @@ msgid "" "TypeError: unsupported operand type(s) for +: 'int' and 'NoneType'" msgstr "" -#: ../../library/doctest.rst:579 msgid "Option Flags" msgstr "" -#: ../../library/doctest.rst:581 -msgid "" -"A number of option flags control various aspects of doctest's behavior. " -"Symbolic names for the flags are supplied as module constants, which can " -"be :ref:`bitwise ORed ` together and passed to various functions. " -"The names can also be used in :ref:`doctest directives `, and may be passed to the doctest command line interface via " -"the ``-o`` option." +msgid "A number of option flags control various aspects of doctest's behavior. Symbolic names for the flags are supplied as module constants, which can be :ref:`bitwise ORed ` together and passed to various functions. The names can also be used in :ref:`doctest directives `, and may be passed to the doctest command line interface via the ``-o`` option." msgstr "" -#: ../../library/doctest.rst:587 -msgid "" -"The first group of options define test semantics, controlling aspects of how " -"doctest decides whether actual output matches an example's expected output:" +msgid "The first group of options define test semantics, controlling aspects of how doctest decides whether actual output matches an example's expected output:" msgstr "" -#: ../../library/doctest.rst:593 -msgid "" -"By default, if an expected output block contains just ``1``, an actual " -"output block containing just ``1`` or just ``True`` is considered to be a " -"match, and similarly for ``0`` versus ``False``. " -"When :const:`DONT_ACCEPT_TRUE_FOR_1` is specified, neither substitution is " -"allowed. The default behavior caters to that Python changed the return type " -"of many functions from integer to boolean; doctests expecting \"little " -"integer\" output still work in these cases. This option will probably go " -"away, but not for several years." +msgid "By default, if an expected output block contains just ``1``, an actual output block containing just ``1`` or just ``True`` is considered to be a match, and similarly for ``0`` versus ``False``. When :const:`DONT_ACCEPT_TRUE_FOR_1` is specified, neither substitution is allowed. The default behavior caters to that Python changed the return type of many functions from integer to boolean; doctests expecting \"little integer\" output still work in these cases. This option will probably go away, but not for several years." msgstr "" -#: ../../library/doctest.rst:605 -msgid "" -"By default, if an expected output block contains a line containing only the " -"string ````, then that line will match a blank line in the actual " -"output. Because a genuinely blank line delimits the expected output, this " -"is the only way to communicate that a blank line is expected. " -"When :const:`DONT_ACCEPT_BLANKLINE` is specified, this substitution is not " -"allowed." +msgid "By default, if an expected output block contains a line containing only the string ````, then that line will match a blank line in the actual output. Because a genuinely blank line delimits the expected output, this is the only way to communicate that a blank line is expected. When :const:`DONT_ACCEPT_BLANKLINE` is specified, this substitution is not allowed." msgstr "" -#: ../../library/doctest.rst:614 -msgid "" -"When specified, all sequences of whitespace (blanks and newlines) are " -"treated as equal. Any sequence of whitespace within the expected output " -"will match any sequence of whitespace within the actual output. By default, " -"whitespace must match exactly. :const:`NORMALIZE_WHITESPACE` is especially " -"useful when a line of expected output is very long, and you want to wrap it " -"across multiple lines in your source." +msgid "When specified, all sequences of whitespace (blanks and newlines) are treated as equal. Any sequence of whitespace within the expected output will match any sequence of whitespace within the actual output. By default, whitespace must match exactly. :const:`NORMALIZE_WHITESPACE` is especially useful when a line of expected output is very long, and you want to wrap it across multiple lines in your source." msgstr "" -#: ../../library/doctest.rst:625 -msgid "" -"When specified, an ellipsis marker (``...``) in the expected output can " -"match any substring in the actual output. This includes substrings that " -"span line boundaries, and empty substrings, so it's best to keep usage of " -"this simple. Complicated uses can lead to the same kinds of \"oops, it " -"matched too much!\" surprises that ``.*`` is prone to in regular expressions." +msgid "When specified, an ellipsis marker (``...``) in the expected output can match any substring in the actual output. This includes substrings that span line boundaries, and empty substrings, so it's best to keep usage of this simple. Complicated uses can lead to the same kinds of \"oops, it matched too much!\" surprises that ``.*`` is prone to in regular expressions." msgstr "" -#: ../../library/doctest.rst:634 -msgid "" -"When specified, doctests expecting exceptions pass so long as an exception " -"of the expected type is raised, even if the details (message and fully " -"qualified exception name) don't match." +msgid "When specified, doctests expecting exceptions pass so long as an exception of the expected type is raised, even if the details (message and fully qualified exception name) don't match." msgstr "" -#: ../../library/doctest.rst:638 -msgid "" -"For example, an example expecting ``ValueError: 42`` will pass if the actual " -"exception raised is ``ValueError: 3*14``, but will fail if, say, " -"a :exc:`TypeError` is raised instead. It will also ignore any fully " -"qualified name included before the exception class, which can vary between " -"implementations and versions of Python and the code/libraries in use. Hence, " -"all three of these variations will work with the flag specified:" +msgid "For example, an example expecting ``ValueError: 42`` will pass if the actual exception raised is ``ValueError: 3*14``, but will fail if, say, a :exc:`TypeError` is raised instead. It will also ignore any fully qualified name included before the exception class, which can vary between implementations and versions of Python and the code/libraries in use. Hence, all three of these variations will work with the flag specified:" msgstr "" -#: ../../library/doctest.rst:646 msgid "" ">>> raise Exception('message')\n" "Traceback (most recent call last):\n" @@ -896,253 +547,143 @@ msgid "" "__main__.Exception: message" msgstr "" -#: ../../library/doctest.rst:660 -msgid "" -"Note that :const:`ELLIPSIS` can also be used to ignore the details of the " -"exception message, but such a test may still fail based on whether the " -"module name is present or matches exactly." +msgid "Note that :const:`ELLIPSIS` can also be used to ignore the details of the exception message, but such a test may still fail based on whether the module name is present or matches exactly." msgstr "" -#: ../../library/doctest.rst:664 -msgid "" -":const:`IGNORE_EXCEPTION_DETAIL` now also ignores any information relating " -"to the module containing the exception under test." +msgid ":const:`IGNORE_EXCEPTION_DETAIL` now also ignores any information relating to the module containing the exception under test." msgstr "" -#: ../../library/doctest.rst:671 -msgid "" -"When specified, do not run the example at all. This can be useful in " -"contexts where doctest examples serve as both documentation and test cases, " -"and an example should be included for documentation purposes, but should not " -"be checked. E.g., the example's output might be random; or the example " -"might depend on resources which would be unavailable to the test driver." +msgid "When specified, do not run the example at all. This can be useful in contexts where doctest examples serve as both documentation and test cases, and an example should be included for documentation purposes, but should not be checked. E.g., the example's output might be random; or the example might depend on resources which would be unavailable to the test driver." msgstr "" -#: ../../library/doctest.rst:677 -msgid "" -"The SKIP flag can also be used for temporarily \"commenting out\" examples." +msgid "The SKIP flag can also be used for temporarily \"commenting out\" examples." msgstr "" -#: ../../library/doctest.rst:682 msgid "A bitmask or'ing together all the comparison flags above." msgstr "" -#: ../../library/doctest.rst:684 msgid "The second group of options controls how test failures are reported:" msgstr "" -#: ../../library/doctest.rst:689 -msgid "" -"When specified, failures that involve multi-line expected and actual outputs " -"are displayed using a unified diff." +msgid "When specified, failures that involve multi-line expected and actual outputs are displayed using a unified diff." msgstr "" -#: ../../library/doctest.rst:695 -msgid "" -"When specified, failures that involve multi-line expected and actual outputs " -"will be displayed using a context diff." +msgid "When specified, failures that involve multi-line expected and actual outputs will be displayed using a context diff." msgstr "" -#: ../../library/doctest.rst:701 -msgid "" -"When specified, differences are computed by ``difflib.Differ``, using the " -"same algorithm as the popular :file:`ndiff.py` utility. This is the only " -"method that marks differences within lines as well as across lines. For " -"example, if a line of expected output contains digit ``1`` where actual " -"output contains letter ``l``, a line is inserted with a caret marking the " -"mismatching column positions." +msgid "When specified, differences are computed by ``difflib.Differ``, using the same algorithm as the popular :file:`ndiff.py` utility. This is the only method that marks differences within lines as well as across lines. For example, if a line of expected output contains digit ``1`` where actual output contains letter ``l``, a line is inserted with a caret marking the mismatching column positions." msgstr "" -#: ../../library/doctest.rst:710 -msgid "" -"When specified, display the first failing example in each doctest, but " -"suppress output for all remaining examples. This will prevent doctest from " -"reporting correct examples that break because of earlier failures; but it " -"might also hide incorrect examples that fail independently of the first " -"failure. When :const:`REPORT_ONLY_FIRST_FAILURE` is specified, the " -"remaining examples are still run, and still count towards the total number " -"of failures reported; only the output is suppressed." +msgid "When specified, display the first failing example in each doctest, but suppress output for all remaining examples. This will prevent doctest from reporting correct examples that break because of earlier failures; but it might also hide incorrect examples that fail independently of the first failure. When :const:`REPORT_ONLY_FIRST_FAILURE` is specified, the remaining examples are still run, and still count towards the total number of failures reported; only the output is suppressed." msgstr "" -#: ../../library/doctest.rst:721 -msgid "" -"When specified, exit after the first failing example and don't attempt to " -"run the remaining examples. Thus, the number of failures reported will be at " -"most 1. This flag may be useful during debugging, since examples after the " -"first failure won't even produce debugging output." +msgid "When specified, exit after the first failing example and don't attempt to run the remaining examples. Thus, the number of failures reported will be at most 1. This flag may be useful during debugging, since examples after the first failure won't even produce debugging output." msgstr "" -#: ../../library/doctest.rst:729 msgid "A bitmask or'ing together all the reporting flags above." msgstr "" -#: ../../library/doctest.rst:732 -msgid "" -"There is also a way to register new option flag names, though this isn't " -"useful unless you intend to extend :mod:`!doctest` internals via subclassing:" +msgid "There is also a way to register new option flag names, though this isn't useful unless you intend to extend :mod:`!doctest` internals via subclassing:" msgstr "" -#: ../../library/doctest.rst:738 -msgid "" -"Create a new option flag with a given name, and return the new flag's " -"integer value. :func:`register_optionflag` can be used when " -"subclassing :class:`OutputChecker` or :class:`DocTestRunner` to create new " -"options that are supported by your subclasses. :func:`register_optionflag` " -"should always be called using the following idiom::" +msgid "Create a new option flag with a given name, and return the new flag's integer value. :func:`register_optionflag` can be used when subclassing :class:`OutputChecker` or :class:`DocTestRunner` to create new options that are supported by your subclasses. :func:`register_optionflag` should always be called using the following idiom::" msgstr "" -#: ../../library/doctest.rst:744 msgid "MY_FLAG = register_optionflag('MY_FLAG')" msgstr "" -#: ../../library/doctest.rst:754 msgid "Directives" msgstr "" -#: ../../library/doctest.rst:756 -msgid "" -"Doctest directives may be used to modify the :ref:`option flags ` for an individual example. Doctest directives are special Python " -"comments following an example's source code:" +msgid "Doctest directives may be used to modify the :ref:`option flags ` for an individual example. Doctest directives are special Python comments following an example's source code:" msgstr "" -#: ../../library/doctest.rst:767 -msgid "" -"Whitespace is not allowed between the ``+`` or ``-`` and the directive " -"option name. The directive option name can be any of the option flag names " -"explained above." +msgid "Whitespace is not allowed between the ``+`` or ``-`` and the directive option name. The directive option name can be any of the option flag names explained above." msgstr "" -#: ../../library/doctest.rst:771 -msgid "" -"An example's doctest directives modify doctest's behavior for that single " -"example. Use ``+`` to enable the named behavior, or ``-`` to disable it." +msgid "An example's doctest directives modify doctest's behavior for that single example. Use ``+`` to enable the named behavior, or ``-`` to disable it." msgstr "" -#: ../../library/doctest.rst:774 msgid "For example, this test passes:" msgstr "" -#: ../../library/doctest.rst:776 msgid "" ">>> print(list(range(20))) # doctest: +NORMALIZE_WHITESPACE\n" "[0, 1, 2, 3, 4, 5, 6, 7, 8, 9,\n" "10, 11, 12, 13, 14, 15, 16, 17, 18, 19]" msgstr "" -#: ../../library/doctest.rst:783 -msgid "" -"Without the directive it would fail, both because the actual output doesn't " -"have two blanks before the single-digit list elements, and because the " -"actual output is on a single line. This test also passes, and also requires " -"a directive to do so:" +msgid "Without the directive it would fail, both because the actual output doesn't have two blanks before the single-digit list elements, and because the actual output is on a single line. This test also passes, and also requires a directive to do so:" msgstr "" -#: ../../library/doctest.rst:788 msgid "" ">>> print(list(range(20))) # doctest: +ELLIPSIS\n" "[0, 1, ..., 18, 19]" msgstr "" -#: ../../library/doctest.rst:794 -msgid "" -"Multiple directives can be used on a single physical line, separated by " -"commas:" +msgid "Multiple directives can be used on a single physical line, separated by commas:" msgstr "" -#: ../../library/doctest.rst:797 msgid "" ">>> print(list(range(20))) # doctest: +ELLIPSIS, +NORMALIZE_WHITESPACE\n" "[0, 1, ..., 18, 19]" msgstr "" -#: ../../library/doctest.rst:803 -msgid "" -"If multiple directive comments are used for a single example, then they are " -"combined:" +msgid "If multiple directive comments are used for a single example, then they are combined:" msgstr "" -#: ../../library/doctest.rst:806 msgid "" ">>> print(list(range(20))) # doctest: +ELLIPSIS\n" "... # doctest: +NORMALIZE_WHITESPACE\n" "[0, 1, ..., 18, 19]" msgstr "" -#: ../../library/doctest.rst:813 -msgid "" -"As the previous example shows, you can add ``...`` lines to your example " -"containing only directives. This can be useful when an example is too long " -"for a directive to comfortably fit on the same line:" +msgid "As the previous example shows, you can add ``...`` lines to your example containing only directives. This can be useful when an example is too long for a directive to comfortably fit on the same line:" msgstr "" -#: ../../library/doctest.rst:817 msgid "" ">>> print(list(range(5)) + list(range(10, 20)) + list(range(30, 40)))\n" "... # doctest: +ELLIPSIS\n" "[0, ..., 4, 10, ..., 19, 30, ..., 39]" msgstr "" -#: ../../library/doctest.rst:824 -msgid "" -"Note that since all options are disabled by default, and directives apply " -"only to the example they appear in, enabling options (via ``+`` in a " -"directive) is usually the only meaningful choice. However, option flags can " -"also be passed to functions that run doctests, establishing different " -"defaults. In such cases, disabling an option via ``-`` in a directive can " -"be useful." +msgid "Note that since all options are disabled by default, and directives apply only to the example they appear in, enabling options (via ``+`` in a directive) is usually the only meaningful choice. However, option flags can also be passed to functions that run doctests, establishing different defaults. In such cases, disabling an option via ``-`` in a directive can be useful." msgstr "" -#: ../../library/doctest.rst:834 msgid "Warnings" msgstr "" -#: ../../library/doctest.rst:836 -msgid "" -":mod:`!doctest` is serious about requiring exact matches in expected " -"output. If even a single character doesn't match, the test fails. This " -"will probably surprise you a few times, as you learn exactly what Python " -"does and doesn't guarantee about output. For example, when printing a set, " -"Python doesn't guarantee that the element is printed in any particular " -"order, so a test like ::" +msgid ":mod:`!doctest` is serious about requiring exact matches in expected output. If even a single character doesn't match, the test fails. This will probably surprise you a few times, as you learn exactly what Python does and doesn't guarantee about output. For example, when printing a set, Python doesn't guarantee that the element is printed in any particular order, so a test like ::" msgstr "" -#: ../../library/doctest.rst:842 msgid "" ">>> foo()\n" "{\"spam\", \"eggs\"}" msgstr "" -#: ../../library/doctest.rst:845 msgid "is vulnerable! One workaround is to do ::" msgstr "" -#: ../../library/doctest.rst:847 msgid "" ">>> foo() == {\"spam\", \"eggs\"}\n" "True" msgstr "" -#: ../../library/doctest.rst:850 msgid "instead. Another is to do ::" msgstr "" -#: ../../library/doctest.rst:852 msgid "" ">>> d = sorted(foo())\n" ">>> d\n" "['eggs', 'spam']" msgstr "" -#: ../../library/doctest.rst:856 msgid "There are others, but you get the idea." msgstr "" -#: ../../library/doctest.rst:858 msgid "Another bad idea is to print things that embed an object address, like" msgstr "" -#: ../../library/doctest.rst:860 msgid "" ">>> id(1.0) # certain to fail some of the time\n" "7948648\n" @@ -1151,25 +692,17 @@ msgid "" "" msgstr "" -#: ../../library/doctest.rst:868 -msgid "" -"The :const:`ELLIPSIS` directive gives a nice approach for the last example:" +msgid "The :const:`ELLIPSIS` directive gives a nice approach for the last example:" msgstr "" -#: ../../library/doctest.rst:870 msgid "" ">>> C() # doctest: +ELLIPSIS\n" "" msgstr "" -#: ../../library/doctest.rst:876 -msgid "" -"Floating-point numbers are also subject to small output variations across " -"platforms, because Python defers to the platform C library for some floating-" -"point calculations, and C libraries vary widely in quality here. ::" +msgid "Floating-point numbers are also subject to small output variations across platforms, because Python defers to the platform C library for some floating-point calculations, and C libraries vary widely in quality here. ::" msgstr "" -#: ../../library/doctest.rst:880 msgid "" ">>> 1000**0.1 # risky\n" "1.9952623149688797\n" @@ -1179,256 +712,116 @@ msgid "" "1.9953" msgstr "" -#: ../../library/doctest.rst:887 -msgid "" -"Numbers of the form ``I/2.**J`` are safe across all platforms, and I often " -"contrive doctest examples to produce numbers of that form::" +msgid "Numbers of the form ``I/2.**J`` are safe across all platforms, and I often contrive doctest examples to produce numbers of that form::" msgstr "" -#: ../../library/doctest.rst:890 msgid "" ">>> 3./4 # utterly safe\n" "0.75" msgstr "" -#: ../../library/doctest.rst:893 -msgid "" -"Simple fractions are also easier for people to understand, and that makes " -"for better documentation." +msgid "Simple fractions are also easier for people to understand, and that makes for better documentation." msgstr "" -#: ../../library/doctest.rst:900 msgid "Basic API" msgstr "" -#: ../../library/doctest.rst:902 -msgid "" -"The functions :func:`testmod` and :func:`testfile` provide a simple " -"interface to doctest that should be sufficient for most basic uses. For a " -"less formal introduction to these two functions, see sections :ref:`doctest-" -"simple-testmod` and :ref:`doctest-simple-testfile`." +msgid "The functions :func:`testmod` and :func:`testfile` provide a simple interface to doctest that should be sufficient for most basic uses. For a less formal introduction to these two functions, see sections :ref:`doctest-simple-testmod` and :ref:`doctest-simple-testfile`." msgstr "" -#: ../../library/doctest.rst:910 -msgid "" -"All arguments except *filename* are optional, and should be specified in " -"keyword form." +msgid "All arguments except *filename* are optional, and should be specified in keyword form." msgstr "" -#: ../../library/doctest.rst:913 -msgid "" -"Test examples in the file named *filename*. Return ``(failure_count, " -"test_count)``." +msgid "Test examples in the file named *filename*. Return ``(failure_count, test_count)``." msgstr "" -#: ../../library/doctest.rst:916 -msgid "" -"Optional argument *module_relative* specifies how the filename should be " -"interpreted:" +msgid "Optional argument *module_relative* specifies how the filename should be interpreted:" msgstr "" -#: ../../library/doctest.rst:919 -msgid "" -"If *module_relative* is ``True`` (the default), then *filename* specifies an " -"OS-independent module-relative path. By default, this path is relative to " -"the calling module's directory; but if the *package* argument is specified, " -"then it is relative to that package. To ensure OS-independence, *filename* " -"should use ``/`` characters to separate path segments, and may not be an " -"absolute path (i.e., it may not begin with ``/``)." +msgid "If *module_relative* is ``True`` (the default), then *filename* specifies an OS-independent module-relative path. By default, this path is relative to the calling module's directory; but if the *package* argument is specified, then it is relative to that package. To ensure OS-independence, *filename* should use ``/`` characters to separate path segments, and may not be an absolute path (i.e., it may not begin with ``/``)." msgstr "" -#: ../../library/doctest.rst:926 -msgid "" -"If *module_relative* is ``False``, then *filename* specifies an OS-specific " -"path. The path may be absolute or relative; relative paths are resolved " -"with respect to the current working directory." +msgid "If *module_relative* is ``False``, then *filename* specifies an OS-specific path. The path may be absolute or relative; relative paths are resolved with respect to the current working directory." msgstr "" -#: ../../library/doctest.rst:930 -msgid "" -"Optional argument *name* gives the name of the test; by default, or if " -"``None``, ``os.path.basename(filename)`` is used." +msgid "Optional argument *name* gives the name of the test; by default, or if ``None``, ``os.path.basename(filename)`` is used." msgstr "" -#: ../../library/doctest.rst:933 -msgid "" -"Optional argument *package* is a Python package or the name of a Python " -"package whose directory should be used as the base directory for a module-" -"relative filename. If no package is specified, then the calling module's " -"directory is used as the base directory for module-relative filenames. It " -"is an error to specify *package* if *module_relative* is ``False``." +msgid "Optional argument *package* is a Python package or the name of a Python package whose directory should be used as the base directory for a module-relative filename. If no package is specified, then the calling module's directory is used as the base directory for module-relative filenames. It is an error to specify *package* if *module_relative* is ``False``." msgstr "" -#: ../../library/doctest.rst:939 -msgid "" -"Optional argument *globs* gives a dict to be used as the globals when " -"executing examples. A new shallow copy of this dict is created for the " -"doctest, so its examples start with a clean slate. By default, or if " -"``None``, a new empty dict is used." +msgid "Optional argument *globs* gives a dict to be used as the globals when executing examples. A new shallow copy of this dict is created for the doctest, so its examples start with a clean slate. By default, or if ``None``, a new empty dict is used." msgstr "" -#: ../../library/doctest.rst:944 -msgid "" -"Optional argument *extraglobs* gives a dict merged into the globals used to " -"execute examples. This works like :meth:`dict.update`: if *globs* and " -"*extraglobs* have a common key, the associated value in *extraglobs* appears " -"in the combined dict. By default, or if ``None``, no extra globals are " -"used. This is an advanced feature that allows parameterization of " -"doctests. For example, a doctest can be written for a base class, using a " -"generic name for the class, then reused to test any number of subclasses by " -"passing an *extraglobs* dict mapping the generic name to the subclass to be " -"tested." -msgstr "" - -#: ../../library/doctest.rst:953 -msgid "" -"Optional argument *verbose* prints lots of stuff if true, and prints only " -"failures if false; by default, or if ``None``, it's true if and only if ``'-" -"v'`` is in :data:`sys.argv`." +msgid "Optional argument *extraglobs* gives a dict merged into the globals used to execute examples. This works like :meth:`dict.update`: if *globs* and *extraglobs* have a common key, the associated value in *extraglobs* appears in the combined dict. By default, or if ``None``, no extra globals are used. This is an advanced feature that allows parameterization of doctests. For example, a doctest can be written for a base class, using a generic name for the class, then reused to test any number of subclasses by passing an *extraglobs* dict mapping the generic name to the subclass to be tested." msgstr "" -#: ../../library/doctest.rst:957 -msgid "" -"Optional argument *report* prints a summary at the end when true, else " -"prints nothing at the end. In verbose mode, the summary is detailed, else " -"the summary is very brief (in fact, empty if all tests passed)." +msgid "Optional argument *verbose* prints lots of stuff if true, and prints only failures if false; by default, or if ``None``, it's true if and only if ``'-v'`` is in :data:`sys.argv`." msgstr "" -#: ../../library/doctest.rst:961 -msgid "" -"Optional argument *optionflags* (default value ``0``) takes " -"the :ref:`bitwise OR ` of option flags. See section :ref:`doctest-" -"options`." +msgid "Optional argument *report* prints a summary at the end when true, else prints nothing at the end. In verbose mode, the summary is detailed, else the summary is very brief (in fact, empty if all tests passed)." msgstr "" -#: ../../library/doctest.rst:965 -msgid "" -"Optional argument *raise_on_error* defaults to false. If true, an exception " -"is raised upon the first failure or unexpected exception in an example. " -"This allows failures to be post-mortem debugged. Default behavior is to " -"continue running examples." +msgid "Optional argument *optionflags* (default value ``0``) takes the :ref:`bitwise OR ` of option flags. See section :ref:`doctest-options`." msgstr "" -#: ../../library/doctest.rst:970 ../../library/doctest.rst:1113 -msgid "" -"Optional argument *parser* specifies a :class:`DocTestParser` (or subclass) " -"that should be used to extract tests from the files. It defaults to a " -"normal parser (i.e., ``DocTestParser()``)." +msgid "Optional argument *raise_on_error* defaults to false. If true, an exception is raised upon the first failure or unexpected exception in an example. This allows failures to be post-mortem debugged. Default behavior is to continue running examples." msgstr "" -#: ../../library/doctest.rst:974 ../../library/doctest.rst:1117 -msgid "" -"Optional argument *encoding* specifies an encoding that should be used to " -"convert the file to unicode." +msgid "Optional argument *parser* specifies a :class:`DocTestParser` (or subclass) that should be used to extract tests from the files. It defaults to a normal parser (i.e., ``DocTestParser()``)." msgstr "" -#: ../../library/doctest.rst:980 -msgid "" -"All arguments are optional, and all except for *m* should be specified in " -"keyword form." +msgid "Optional argument *encoding* specifies an encoding that should be used to convert the file to unicode." msgstr "" -#: ../../library/doctest.rst:983 -msgid "" -"Test examples in docstrings in functions and classes reachable from module " -"*m* (or module :mod:`__main__` if *m* is not supplied or is ``None``), " -"starting with ``m.__doc__``." +msgid "All arguments are optional, and all except for *m* should be specified in keyword form." msgstr "" -#: ../../library/doctest.rst:987 -msgid "" -"Also test examples reachable from dict ``m.__test__``, if it exists. " -"``m.__test__`` maps names (strings) to functions, classes and strings; " -"function and class docstrings are searched for examples; strings are " -"searched directly, as if they were docstrings." +msgid "Test examples in docstrings in functions and classes reachable from module *m* (or module :mod:`__main__` if *m* is not supplied or is ``None``), starting with ``m.__doc__``." msgstr "" -#: ../../library/doctest.rst:992 -msgid "" -"Only docstrings attached to objects belonging to module *m* are searched." +msgid "Also test examples reachable from dict ``m.__test__``, if it exists. ``m.__test__`` maps names (strings) to functions, classes and strings; function and class docstrings are searched for examples; strings are searched directly, as if they were docstrings." +msgstr "" + +msgid "Only docstrings attached to objects belonging to module *m* are searched." msgstr "" -#: ../../library/doctest.rst:994 msgid "Return ``(failure_count, test_count)``." msgstr "" -#: ../../library/doctest.rst:996 -msgid "" -"Optional argument *name* gives the name of the module; by default, or if " -"``None``, ``m.__name__`` is used." +msgid "Optional argument *name* gives the name of the module; by default, or if ``None``, ``m.__name__`` is used." msgstr "" -#: ../../library/doctest.rst:999 -msgid "" -"Optional argument *exclude_empty* defaults to false. If true, objects for " -"which no doctests are found are excluded from consideration. The default is " -"a backward compatibility hack, so that code still " -"using :meth:`doctest.master.summarize ` in " -"conjunction with :func:`testmod` continues to get output for objects with no " -"tests. The *exclude_empty* argument to the newer :class:`DocTestFinder` " -"constructor defaults to true." +msgid "Optional argument *exclude_empty* defaults to false. If true, objects for which no doctests are found are excluded from consideration. The default is a backward compatibility hack, so that code still using :meth:`doctest.master.summarize ` in conjunction with :func:`testmod` continues to get output for objects with no tests. The *exclude_empty* argument to the newer :class:`DocTestFinder` constructor defaults to true." msgstr "" -#: ../../library/doctest.rst:1007 -msgid "" -"Optional arguments *extraglobs*, *verbose*, *report*, *optionflags*, " -"*raise_on_error*, and *globs* are the same as for function :func:`testfile` " -"above, except that *globs* defaults to ``m.__dict__``." +msgid "Optional arguments *extraglobs*, *verbose*, *report*, *optionflags*, *raise_on_error*, and *globs* are the same as for function :func:`testfile` above, except that *globs* defaults to ``m.__dict__``." msgstr "" -#: ../../library/doctest.rst:1014 -msgid "" -"Test examples associated with object *f*; for example, *f* may be a string, " -"a module, a function, or a class object." +msgid "Test examples associated with object *f*; for example, *f* may be a string, a module, a function, or a class object." msgstr "" -#: ../../library/doctest.rst:1017 -msgid "" -"A shallow copy of dictionary argument *globs* is used for the execution " -"context." +msgid "A shallow copy of dictionary argument *globs* is used for the execution context." msgstr "" -#: ../../library/doctest.rst:1019 -msgid "" -"Optional argument *name* is used in failure messages, and defaults to " -"``\"NoName\"``." +msgid "Optional argument *name* is used in failure messages, and defaults to ``\"NoName\"``." msgstr "" -#: ../../library/doctest.rst:1022 -msgid "" -"If optional argument *verbose* is true, output is generated even if there " -"are no failures. By default, output is generated only in case of an example " -"failure." +msgid "If optional argument *verbose* is true, output is generated even if there are no failures. By default, output is generated only in case of an example failure." msgstr "" -#: ../../library/doctest.rst:1025 -msgid "" -"Optional argument *compileflags* gives the set of flags that should be used " -"by the Python compiler when running the examples. By default, or if " -"``None``, flags are deduced corresponding to the set of future features " -"found in *globs*." +msgid "Optional argument *compileflags* gives the set of flags that should be used by the Python compiler when running the examples. By default, or if ``None``, flags are deduced corresponding to the set of future features found in *globs*." msgstr "" -#: ../../library/doctest.rst:1029 -msgid "" -"Optional argument *optionflags* works as for function :func:`testfile` above." +msgid "Optional argument *optionflags* works as for function :func:`testfile` above." msgstr "" -#: ../../library/doctest.rst:1035 msgid "Unittest API" msgstr "" -#: ../../library/doctest.rst:1037 -msgid "" -"As your collection of doctest'ed modules grows, you'll want a way to run all " -"their doctests systematically. :mod:`!doctest` provides two functions that " -"can be used to create :mod:`unittest` test suites from modules and text " -"files containing doctests. To integrate with :mod:`unittest` test " -"discovery, include a :ref:`load_tests ` function in " -"your test module::" +msgid "As your collection of doctest'ed modules grows, you'll want a way to run all their doctests systematically. :mod:`!doctest` provides two functions that can be used to create :mod:`unittest` test suites from modules and text files containing doctests. To integrate with :mod:`unittest` test discovery, include a :ref:`load_tests ` function in your test module::" msgstr "" -#: ../../library/doctest.rst:1043 msgid "" "import unittest\n" "import doctest\n" @@ -1439,302 +832,132 @@ msgid "" " return tests" msgstr "" -#: ../../library/doctest.rst:1051 -msgid "" -"There are two main functions for creating :class:`unittest.TestSuite` " -"instances from text files and modules with doctests:" +msgid "There are two main functions for creating :class:`unittest.TestSuite` instances from text files and modules with doctests:" msgstr "" -#: ../../library/doctest.rst:1057 -msgid "" -"Convert doctest tests from one or more text files to " -"a :class:`unittest.TestSuite`." +msgid "Convert doctest tests from one or more text files to a :class:`unittest.TestSuite`." msgstr "" -#: ../../library/doctest.rst:1060 -msgid "" -"The returned :class:`unittest.TestSuite` is to be run by the unittest " -"framework and runs the interactive examples in each file. If an example in " -"any file fails, then the synthesized unit test fails, and " -"a :exc:`~unittest.TestCase.failureException` exception is raised showing the " -"name of the file containing the test and a (sometimes approximate) line " -"number. If all the examples in a file are skipped, then the synthesized " -"unit test is also marked as skipped." +msgid "The returned :class:`unittest.TestSuite` is to be run by the unittest framework and runs the interactive examples in each file. If an example in any file fails, then the synthesized unit test fails, and a :exc:`~unittest.TestCase.failureException` exception is raised showing the name of the file containing the test and a (sometimes approximate) line number. If all the examples in a file are skipped, then the synthesized unit test is also marked as skipped." msgstr "" -#: ../../library/doctest.rst:1067 msgid "Pass one or more paths (as strings) to text files to be examined." msgstr "" -#: ../../library/doctest.rst:1069 msgid "Options may be provided as keyword arguments:" msgstr "" -#: ../../library/doctest.rst:1071 -msgid "" -"Optional argument *module_relative* specifies how the filenames in *paths* " -"should be interpreted:" +msgid "Optional argument *module_relative* specifies how the filenames in *paths* should be interpreted:" msgstr "" -#: ../../library/doctest.rst:1074 -msgid "" -"If *module_relative* is ``True`` (the default), then each filename in " -"*paths* specifies an OS-independent module-relative path. By default, this " -"path is relative to the calling module's directory; but if the *package* " -"argument is specified, then it is relative to that package. To ensure OS-" -"independence, each filename should use ``/`` characters to separate path " -"segments, and may not be an absolute path (i.e., it may not begin with ``/" -"``)." +msgid "If *module_relative* is ``True`` (the default), then each filename in *paths* specifies an OS-independent module-relative path. By default, this path is relative to the calling module's directory; but if the *package* argument is specified, then it is relative to that package. To ensure OS-independence, each filename should use ``/`` characters to separate path segments, and may not be an absolute path (i.e., it may not begin with ``/``)." msgstr "" -#: ../../library/doctest.rst:1082 -msgid "" -"If *module_relative* is ``False``, then each filename in *paths* specifies " -"an OS-specific path. The path may be absolute or relative; relative paths " -"are resolved with respect to the current working directory." +msgid "If *module_relative* is ``False``, then each filename in *paths* specifies an OS-specific path. The path may be absolute or relative; relative paths are resolved with respect to the current working directory." msgstr "" -#: ../../library/doctest.rst:1086 -msgid "" -"Optional argument *package* is a Python package or the name of a Python " -"package whose directory should be used as the base directory for module-" -"relative filenames in *paths*. If no package is specified, then the calling " -"module's directory is used as the base directory for module-relative " -"filenames. It is an error to specify *package* if *module_relative* is " -"``False``." +msgid "Optional argument *package* is a Python package or the name of a Python package whose directory should be used as the base directory for module-relative filenames in *paths*. If no package is specified, then the calling module's directory is used as the base directory for module-relative filenames. It is an error to specify *package* if *module_relative* is ``False``." msgstr "" -#: ../../library/doctest.rst:1093 -msgid "" -"Optional argument *setUp* specifies a set-up function for the test suite. " -"This is called before running the tests in each file. The *setUp* function " -"will be passed a :class:`DocTest` object. The *setUp* function can access " -"the test globals as the :attr:`~DocTest.globs` attribute of the test passed." +msgid "Optional argument *setUp* specifies a set-up function for the test suite. This is called before running the tests in each file. The *setUp* function will be passed a :class:`DocTest` object. The *setUp* function can access the test globals as the :attr:`~DocTest.globs` attribute of the test passed." msgstr "" -#: ../../library/doctest.rst:1098 -msgid "" -"Optional argument *tearDown* specifies a tear-down function for the test " -"suite. This is called after running the tests in each file. The *tearDown* " -"function will be passed a :class:`DocTest` object. The *tearDown* function " -"can access the test globals as the :attr:`~DocTest.globs` attribute of the " -"test passed." +msgid "Optional argument *tearDown* specifies a tear-down function for the test suite. This is called after running the tests in each file. The *tearDown* function will be passed a :class:`DocTest` object. The *tearDown* function can access the test globals as the :attr:`~DocTest.globs` attribute of the test passed." msgstr "" -#: ../../library/doctest.rst:1104 -msgid "" -"Optional argument *globs* is a dictionary containing the initial global " -"variables for the tests. A new copy of this dictionary is created for each " -"test. By default, *globs* is a new empty dictionary." +msgid "Optional argument *globs* is a dictionary containing the initial global variables for the tests. A new copy of this dictionary is created for each test. By default, *globs* is a new empty dictionary." msgstr "" -#: ../../library/doctest.rst:1108 -msgid "" -"Optional argument *optionflags* specifies the default doctest options for " -"the tests, created by or-ing together individual option flags. See " -"section :ref:`doctest-options`. See " -"function :func:`set_unittest_reportflags` below for a better way to set " -"reporting options." +msgid "Optional argument *optionflags* specifies the default doctest options for the tests, created by or-ing together individual option flags. See section :ref:`doctest-options`. See function :func:`set_unittest_reportflags` below for a better way to set reporting options." msgstr "" -#: ../../library/doctest.rst:1120 -msgid "" -"The global ``__file__`` is added to the globals provided to doctests loaded " -"from a text file using :func:`DocFileSuite`." +msgid "The global ``__file__`` is added to the globals provided to doctests loaded from a text file using :func:`DocFileSuite`." msgstr "" -#: ../../library/doctest.rst:1126 msgid "Convert doctest tests for a module to a :class:`unittest.TestSuite`." msgstr "" -#: ../../library/doctest.rst:1128 -msgid "" -"The returned :class:`unittest.TestSuite` is to be run by the unittest " -"framework and runs each doctest in the module. Each docstring is run as a " -"separate unit test. If any of the doctests fail, then the synthesized unit " -"test fails, and a :exc:`unittest.TestCase.failureException` exception is " -"raised showing the name of the file containing the test and a (sometimes " -"approximate) line number. If all the examples in a docstring are skipped, " -"then the" +msgid "The returned :class:`unittest.TestSuite` is to be run by the unittest framework and runs each doctest in the module. Each docstring is run as a separate unit test. If any of the doctests fail, then the synthesized unit test fails, and a :exc:`unittest.TestCase.failureException` exception is raised showing the name of the file containing the test and a (sometimes approximate) line number. If all the examples in a docstring are skipped, then the" msgstr "" -#: ../../library/doctest.rst:1136 -msgid "" -"Optional argument *module* provides the module to be tested. It can be a " -"module object or a (possibly dotted) module name. If not specified, the " -"module calling this function is used." +msgid "Optional argument *module* provides the module to be tested. It can be a module object or a (possibly dotted) module name. If not specified, the module calling this function is used." msgstr "" -#: ../../library/doctest.rst:1140 -msgid "" -"Optional argument *globs* is a dictionary containing the initial global " -"variables for the tests. A new copy of this dictionary is created for each " -"test. By default, *globs* is the module's :attr:`~module.__dict__`." +msgid "Optional argument *globs* is a dictionary containing the initial global variables for the tests. A new copy of this dictionary is created for each test. By default, *globs* is the module's :attr:`~module.__dict__`." msgstr "" -#: ../../library/doctest.rst:1144 -msgid "" -"Optional argument *extraglobs* specifies an extra set of global variables, " -"which is merged into *globs*. By default, no extra globals are used." +msgid "Optional argument *extraglobs* specifies an extra set of global variables, which is merged into *globs*. By default, no extra globals are used." msgstr "" -#: ../../library/doctest.rst:1147 -msgid "" -"Optional argument *test_finder* is the :class:`DocTestFinder` object (or a " -"drop-in replacement) that is used to extract doctests from the module." +msgid "Optional argument *test_finder* is the :class:`DocTestFinder` object (or a drop-in replacement) that is used to extract doctests from the module." msgstr "" -#: ../../library/doctest.rst:1150 -msgid "" -"Optional arguments *setUp*, *tearDown*, and *optionflags* are the same as " -"for function :func:`DocFileSuite` above, but they are called for each " -"docstring." +msgid "Optional arguments *setUp*, *tearDown*, and *optionflags* are the same as for function :func:`DocFileSuite` above, but they are called for each docstring." msgstr "" -#: ../../library/doctest.rst:1153 msgid "This function uses the same search technique as :func:`testmod`." msgstr "" -#: ../../library/doctest.rst:1155 -msgid "" -":func:`DocTestSuite` returns an empty :class:`unittest.TestSuite` if " -"*module* contains no docstrings instead of raising :exc:`ValueError`." +msgid ":func:`DocTestSuite` returns an empty :class:`unittest.TestSuite` if *module* contains no docstrings instead of raising :exc:`ValueError`." msgstr "" -#: ../../library/doctest.rst:1159 -msgid "" -"Under the covers, :func:`DocTestSuite` creates a :class:`unittest.TestSuite` " -"out of :class:`!doctest.DocTestCase` instances, and :class:`!DocTestCase` is " -"a subclass of :class:`unittest.TestCase`. :class:`!DocTestCase` isn't " -"documented here (it's an internal detail), but studying its code can answer " -"questions about the exact details of :mod:`unittest` integration." +msgid "Under the covers, :func:`DocTestSuite` creates a :class:`unittest.TestSuite` out of :class:`!doctest.DocTestCase` instances, and :class:`!DocTestCase` is a subclass of :class:`unittest.TestCase`. :class:`!DocTestCase` isn't documented here (it's an internal detail), but studying its code can answer questions about the exact details of :mod:`unittest` integration." msgstr "" -#: ../../library/doctest.rst:1165 -msgid "" -"Similarly, :func:`DocFileSuite` creates a :class:`unittest.TestSuite` out " -"of :class:`!doctest.DocFileCase` instances, and :class:`!DocFileCase` is a " -"subclass of :class:`!DocTestCase`." +msgid "Similarly, :func:`DocFileSuite` creates a :class:`unittest.TestSuite` out of :class:`!doctest.DocFileCase` instances, and :class:`!DocFileCase` is a subclass of :class:`!DocTestCase`." msgstr "" -#: ../../library/doctest.rst:1169 -msgid "" -"So both ways of creating a :class:`unittest.TestSuite` run instances " -"of :class:`!DocTestCase`. This is important for a subtle reason: when you " -"run :mod:`!doctest` functions yourself, you can control the :mod:`!doctest` " -"options in use directly, by passing option flags to :mod:`!doctest` " -"functions. However, if you're writing a :mod:`unittest` framework, :mod:`!" -"unittest` ultimately controls when and how tests get run. The framework " -"author typically wants to control :mod:`!doctest` reporting options " -"(perhaps, e.g., specified by command line options), but there's no way to " -"pass options through :mod:`!unittest` to :mod:`!doctest` test runners." -msgstr "" - -#: ../../library/doctest.rst:1179 -msgid "" -"For this reason, :mod:`!doctest` also supports a notion of :mod:`!doctest` " -"reporting flags specific to :mod:`unittest` support, via this function:" +msgid "So both ways of creating a :class:`unittest.TestSuite` run instances of :class:`!DocTestCase`. This is important for a subtle reason: when you run :mod:`!doctest` functions yourself, you can control the :mod:`!doctest` options in use directly, by passing option flags to :mod:`!doctest` functions. However, if you're writing a :mod:`unittest` framework, :mod:`!unittest` ultimately controls when and how tests get run. The framework author typically wants to control :mod:`!doctest` reporting options (perhaps, e.g., specified by command line options), but there's no way to pass options through :mod:`!unittest` to :mod:`!doctest` test runners." +msgstr "" + +msgid "For this reason, :mod:`!doctest` also supports a notion of :mod:`!doctest` reporting flags specific to :mod:`unittest` support, via this function:" msgstr "" -#: ../../library/doctest.rst:1185 msgid "Set the :mod:`!doctest` reporting flags to use." msgstr "" -#: ../../library/doctest.rst:1187 -msgid "" -"Argument *flags* takes the :ref:`bitwise OR ` of option flags. See " -"section :ref:`doctest-options`. Only \"reporting flags\" can be used." +msgid "Argument *flags* takes the :ref:`bitwise OR ` of option flags. See section :ref:`doctest-options`. Only \"reporting flags\" can be used." msgstr "" -#: ../../library/doctest.rst:1190 -msgid "" -"This is a module-global setting, and affects all future doctests run by " -"module :mod:`unittest`: the :meth:`!runTest` method of :class:`!" -"DocTestCase` looks at the option flags specified for the test case when " -"the :class:`!DocTestCase` instance was constructed. If no reporting flags " -"were specified (which is the typical and expected case), :mod:`!" -"doctest`'s :mod:`!unittest` reporting flags are :ref:`bitwise ORed " -"` into the option flags, and the option flags so augmented are " -"passed to the :class:`DocTestRunner` instance created to run the doctest. " -"If any reporting flags were specified when the :class:`!DocTestCase` " -"instance was constructed, :mod:`!doctest`'s :mod:`!unittest` reporting flags " -"are ignored." -msgstr "" - -#: ../../library/doctest.rst:1201 -msgid "" -"The value of the :mod:`unittest` reporting flags in effect before the " -"function was called is returned by the function." +msgid "This is a module-global setting, and affects all future doctests run by module :mod:`unittest`: the :meth:`!runTest` method of :class:`!DocTestCase` looks at the option flags specified for the test case when the :class:`!DocTestCase` instance was constructed. If no reporting flags were specified (which is the typical and expected case), :mod:`!doctest`'s :mod:`!unittest` reporting flags are :ref:`bitwise ORed ` into the option flags, and the option flags so augmented are passed to the :class:`DocTestRunner` instance created to run the doctest. If any reporting flags were specified when the :class:`!DocTestCase` instance was constructed, :mod:`!doctest`'s :mod:`!unittest` reporting flags are ignored." +msgstr "" + +msgid "The value of the :mod:`unittest` reporting flags in effect before the function was called is returned by the function." msgstr "" -#: ../../library/doctest.rst:1208 msgid "Advanced API" msgstr "" -#: ../../library/doctest.rst:1210 -msgid "" -"The basic API is a simple wrapper that's intended to make doctest easy to " -"use. It is fairly flexible, and should meet most users' needs; however, if " -"you require more fine-grained control over testing, or wish to extend " -"doctest's capabilities, then you should use the advanced API." +msgid "The basic API is a simple wrapper that's intended to make doctest easy to use. It is fairly flexible, and should meet most users' needs; however, if you require more fine-grained control over testing, or wish to extend doctest's capabilities, then you should use the advanced API." msgstr "" -#: ../../library/doctest.rst:1215 -msgid "" -"The advanced API revolves around two container classes, which are used to " -"store the interactive examples extracted from doctest cases:" +msgid "The advanced API revolves around two container classes, which are used to store the interactive examples extracted from doctest cases:" msgstr "" -#: ../../library/doctest.rst:1218 -msgid "" -":class:`Example`: A single Python :term:`statement`, paired with its " -"expected output." +msgid ":class:`Example`: A single Python :term:`statement`, paired with its expected output." msgstr "" -#: ../../library/doctest.rst:1221 -msgid "" -":class:`DocTest`: A collection of :class:`Example`\\ s, typically extracted " -"from a single docstring or text file." +msgid ":class:`DocTest`: A collection of :class:`Example`\\ s, typically extracted from a single docstring or text file." msgstr "" -#: ../../library/doctest.rst:1224 -msgid "" -"Additional processing classes are defined to find, parse, and run, and check " -"doctest examples:" +msgid "Additional processing classes are defined to find, parse, and run, and check doctest examples:" msgstr "" -#: ../../library/doctest.rst:1227 -msgid "" -":class:`DocTestFinder`: Finds all docstrings in a given module, and uses " -"a :class:`DocTestParser` to create a :class:`DocTest` from every docstring " -"that contains interactive examples." +msgid ":class:`DocTestFinder`: Finds all docstrings in a given module, and uses a :class:`DocTestParser` to create a :class:`DocTest` from every docstring that contains interactive examples." msgstr "" -#: ../../library/doctest.rst:1231 -msgid "" -":class:`DocTestParser`: Creates a :class:`DocTest` object from a string " -"(such as an object's docstring)." +msgid ":class:`DocTestParser`: Creates a :class:`DocTest` object from a string (such as an object's docstring)." msgstr "" -#: ../../library/doctest.rst:1234 -msgid "" -":class:`DocTestRunner`: Executes the examples in a :class:`DocTest`, and " -"uses an :class:`OutputChecker` to verify their output." +msgid ":class:`DocTestRunner`: Executes the examples in a :class:`DocTest`, and uses an :class:`OutputChecker` to verify their output." msgstr "" -#: ../../library/doctest.rst:1237 -msgid "" -":class:`OutputChecker`: Compares the actual output from a doctest example " -"with the expected output, and decides whether they match." +msgid ":class:`OutputChecker`: Compares the actual output from a doctest example with the expected output, and decides whether they match." msgstr "" -#: ../../library/doctest.rst:1240 -msgid "" -"The relationships among these processing classes are summarized in the " -"following diagram::" +msgid "The relationships among these processing classes are summarized in the following diagram::" msgstr "" -#: ../../library/doctest.rst:1243 msgid "" " list of:\n" "+------+ +---------+\n" @@ -1746,532 +969,252 @@ msgid "" " +---------+" msgstr "" -#: ../../library/doctest.rst:1256 msgid "DocTest Objects" msgstr "" -#: ../../library/doctest.rst:1261 -msgid "" -"A collection of doctest examples that should be run in a single namespace. " -"The constructor arguments are used to initialize the attributes of the same " -"names." +msgid "A collection of doctest examples that should be run in a single namespace. The constructor arguments are used to initialize the attributes of the same names." msgstr "" -#: ../../library/doctest.rst:1265 -msgid "" -":class:`DocTest` defines the following attributes. They are initialized by " -"the constructor, and should not be modified directly." +msgid ":class:`DocTest` defines the following attributes. They are initialized by the constructor, and should not be modified directly." msgstr "" -#: ../../library/doctest.rst:1271 -msgid "" -"A list of :class:`Example` objects encoding the individual interactive " -"Python examples that should be run by this test." +msgid "A list of :class:`Example` objects encoding the individual interactive Python examples that should be run by this test." msgstr "" -#: ../../library/doctest.rst:1277 -msgid "" -"The namespace (aka globals) that the examples should be run in. This is a " -"dictionary mapping names to values. Any changes to the namespace made by " -"the examples (such as binding new variables) will be reflected " -"in :attr:`globs` after the test is run." +msgid "The namespace (aka globals) that the examples should be run in. This is a dictionary mapping names to values. Any changes to the namespace made by the examples (such as binding new variables) will be reflected in :attr:`globs` after the test is run." msgstr "" -#: ../../library/doctest.rst:1285 -msgid "" -"A string name identifying the :class:`DocTest`. Typically, this is the name " -"of the object or file that the test was extracted from." +msgid "A string name identifying the :class:`DocTest`. Typically, this is the name of the object or file that the test was extracted from." msgstr "" -#: ../../library/doctest.rst:1291 -msgid "" -"The name of the file that this :class:`DocTest` was extracted from; or " -"``None`` if the filename is unknown, or if the :class:`!DocTest` was not " -"extracted from a file." +msgid "The name of the file that this :class:`DocTest` was extracted from; or ``None`` if the filename is unknown, or if the :class:`!DocTest` was not extracted from a file." msgstr "" -#: ../../library/doctest.rst:1298 -msgid "" -"The line number within :attr:`filename` where this :class:`DocTest` begins, " -"or ``None`` if the line number is unavailable. This line number is zero-" -"based with respect to the beginning of the file." +msgid "The line number within :attr:`filename` where this :class:`DocTest` begins, or ``None`` if the line number is unavailable. This line number is zero-based with respect to the beginning of the file." msgstr "" -#: ../../library/doctest.rst:1305 -msgid "" -"The string that the test was extracted from, or ``None`` if the string is " -"unavailable, or if the test was not extracted from a string." +msgid "The string that the test was extracted from, or ``None`` if the string is unavailable, or if the test was not extracted from a string." msgstr "" -#: ../../library/doctest.rst:1312 msgid "Example Objects" msgstr "" -#: ../../library/doctest.rst:1317 -msgid "" -"A single interactive example, consisting of a Python statement and its " -"expected output. The constructor arguments are used to initialize the " -"attributes of the same names." +msgid "A single interactive example, consisting of a Python statement and its expected output. The constructor arguments are used to initialize the attributes of the same names." msgstr "" -#: ../../library/doctest.rst:1322 -msgid "" -":class:`Example` defines the following attributes. They are initialized by " -"the constructor, and should not be modified directly." +msgid ":class:`Example` defines the following attributes. They are initialized by the constructor, and should not be modified directly." msgstr "" -#: ../../library/doctest.rst:1328 -msgid "" -"A string containing the example's source code. This source code consists of " -"a single Python statement, and always ends with a newline; the constructor " -"adds a newline when necessary." +msgid "A string containing the example's source code. This source code consists of a single Python statement, and always ends with a newline; the constructor adds a newline when necessary." msgstr "" -#: ../../library/doctest.rst:1335 -msgid "" -"The expected output from running the example's source code (either from " -"stdout, or a traceback in case of exception). :attr:`want` ends with a " -"newline unless no output is expected, in which case it's an empty string. " -"The constructor adds a newline when necessary." +msgid "The expected output from running the example's source code (either from stdout, or a traceback in case of exception). :attr:`want` ends with a newline unless no output is expected, in which case it's an empty string. The constructor adds a newline when necessary." msgstr "" -#: ../../library/doctest.rst:1343 -msgid "" -"The exception message generated by the example, if the example is expected " -"to generate an exception; or ``None`` if it is not expected to generate an " -"exception. This exception message is compared against the return value " -"of :func:`traceback.format_exception_only`. :attr:`exc_msg` ends with a " -"newline unless it's ``None``. The constructor adds a newline if needed." +msgid "The exception message generated by the example, if the example is expected to generate an exception; or ``None`` if it is not expected to generate an exception. This exception message is compared against the return value of :func:`traceback.format_exception_only`. :attr:`exc_msg` ends with a newline unless it's ``None``. The constructor adds a newline if needed." msgstr "" -#: ../../library/doctest.rst:1352 -msgid "" -"The line number within the string containing this example where the example " -"begins. This line number is zero-based with respect to the beginning of the " -"containing string." +msgid "The line number within the string containing this example where the example begins. This line number is zero-based with respect to the beginning of the containing string." msgstr "" -#: ../../library/doctest.rst:1359 -msgid "" -"The example's indentation in the containing string, i.e., the number of " -"space characters that precede the example's first prompt." +msgid "The example's indentation in the containing string, i.e., the number of space characters that precede the example's first prompt." msgstr "" -#: ../../library/doctest.rst:1365 -msgid "" -"A dictionary mapping from option flags to ``True`` or ``False``, which is " -"used to override default options for this example. Any option flags not " -"contained in this dictionary are left at their default value (as specified " -"by the :class:`DocTestRunner`'s :ref:`optionflags `). By " -"default, no options are set." +msgid "A dictionary mapping from option flags to ``True`` or ``False``, which is used to override default options for this example. Any option flags not contained in this dictionary are left at their default value (as specified by the :class:`DocTestRunner`'s :ref:`optionflags `). By default, no options are set." msgstr "" -#: ../../library/doctest.rst:1375 msgid "DocTestFinder objects" msgstr "" -#: ../../library/doctest.rst:1380 -msgid "" -"A processing class used to extract the :class:`DocTest`\\ s that are " -"relevant to a given object, from its docstring and the docstrings of its " -"contained objects. :class:`DocTest`\\ s can be extracted from modules, " -"classes, functions, methods, staticmethods, classmethods, and properties." +msgid "A processing class used to extract the :class:`DocTest`\\ s that are relevant to a given object, from its docstring and the docstrings of its contained objects. :class:`DocTest`\\ s can be extracted from modules, classes, functions, methods, staticmethods, classmethods, and properties." msgstr "" -#: ../../library/doctest.rst:1385 -msgid "" -"The optional argument *verbose* can be used to display the objects searched " -"by the finder. It defaults to ``False`` (no output)." +msgid "The optional argument *verbose* can be used to display the objects searched by the finder. It defaults to ``False`` (no output)." msgstr "" -#: ../../library/doctest.rst:1388 -msgid "" -"The optional argument *parser* specifies the :class:`DocTestParser` object " -"(or a drop-in replacement) that is used to extract doctests from docstrings." +msgid "The optional argument *parser* specifies the :class:`DocTestParser` object (or a drop-in replacement) that is used to extract doctests from docstrings." msgstr "" -#: ../../library/doctest.rst:1391 -msgid "" -"If the optional argument *recurse* is false, then :meth:`DocTestFinder.find` " -"will only examine the given object, and not any contained objects." +msgid "If the optional argument *recurse* is false, then :meth:`DocTestFinder.find` will only examine the given object, and not any contained objects." msgstr "" -#: ../../library/doctest.rst:1394 -msgid "" -"If the optional argument *exclude_empty* is false, " -"then :meth:`DocTestFinder.find` will include tests for objects with empty " -"docstrings." +msgid "If the optional argument *exclude_empty* is false, then :meth:`DocTestFinder.find` will include tests for objects with empty docstrings." msgstr "" -#: ../../library/doctest.rst:1398 msgid ":class:`DocTestFinder` defines the following method:" msgstr "" -#: ../../library/doctest.rst:1403 -msgid "" -"Return a list of the :class:`DocTest`\\ s that are defined by *obj*'s " -"docstring, or by any of its contained objects' docstrings." +msgid "Return a list of the :class:`DocTest`\\ s that are defined by *obj*'s docstring, or by any of its contained objects' docstrings." msgstr "" -#: ../../library/doctest.rst:1406 -msgid "" -"The optional argument *name* specifies the object's name; this name will be " -"used to construct names for the returned :class:`DocTest`\\ s. If *name* is " -"not specified, then ``obj.__name__`` is used." +msgid "The optional argument *name* specifies the object's name; this name will be used to construct names for the returned :class:`DocTest`\\ s. If *name* is not specified, then ``obj.__name__`` is used." msgstr "" -#: ../../library/doctest.rst:1410 -msgid "" -"The optional parameter *module* is the module that contains the given " -"object. If the module is not specified or is ``None``, then the test finder " -"will attempt to automatically determine the correct module. The object's " -"module is used:" +msgid "The optional parameter *module* is the module that contains the given object. If the module is not specified or is ``None``, then the test finder will attempt to automatically determine the correct module. The object's module is used:" msgstr "" -#: ../../library/doctest.rst:1414 msgid "As a default namespace, if *globs* is not specified." msgstr "" -#: ../../library/doctest.rst:1416 -msgid "" -"To prevent the DocTestFinder from extracting DocTests from objects that are " -"imported from other modules. (Contained objects with modules other than " -"*module* are ignored.)" +msgid "To prevent the DocTestFinder from extracting DocTests from objects that are imported from other modules. (Contained objects with modules other than *module* are ignored.)" msgstr "" -#: ../../library/doctest.rst:1420 msgid "To find the name of the file containing the object." msgstr "" -#: ../../library/doctest.rst:1422 msgid "To help find the line number of the object within its file." msgstr "" -#: ../../library/doctest.rst:1424 -msgid "" -"If *module* is ``False``, no attempt to find the module will be made. This " -"is obscure, of use mostly in testing doctest itself: if *module* is " -"``False``, or is ``None`` but cannot be found automatically, then all " -"objects are considered to belong to the (non-existent) module, so all " -"contained objects will (recursively) be searched for doctests." +msgid "If *module* is ``False``, no attempt to find the module will be made. This is obscure, of use mostly in testing doctest itself: if *module* is ``False``, or is ``None`` but cannot be found automatically, then all objects are considered to belong to the (non-existent) module, so all contained objects will (recursively) be searched for doctests." msgstr "" -#: ../../library/doctest.rst:1430 -msgid "" -"The globals for each :class:`DocTest` is formed by combining *globs* and " -"*extraglobs* (bindings in *extraglobs* override bindings in *globs*). A new " -"shallow copy of the globals dictionary is created for each :class:`!" -"DocTest`. If *globs* is not specified, then it defaults to the " -"module's :attr:`~module.__dict__`, if specified, or ``{}`` otherwise. If " -"*extraglobs* is not specified, then it defaults to ``{}``." +msgid "The globals for each :class:`DocTest` is formed by combining *globs* and *extraglobs* (bindings in *extraglobs* override bindings in *globs*). A new shallow copy of the globals dictionary is created for each :class:`!DocTest`. If *globs* is not specified, then it defaults to the module's :attr:`~module.__dict__`, if specified, or ``{}`` otherwise. If *extraglobs* is not specified, then it defaults to ``{}``." msgstr "" -#: ../../library/doctest.rst:1441 msgid "DocTestParser objects" msgstr "" -#: ../../library/doctest.rst:1446 -msgid "" -"A processing class used to extract interactive examples from a string, and " -"use them to create a :class:`DocTest` object." +msgid "A processing class used to extract interactive examples from a string, and use them to create a :class:`DocTest` object." msgstr "" -#: ../../library/doctest.rst:1450 msgid ":class:`DocTestParser` defines the following methods:" msgstr "" -#: ../../library/doctest.rst:1455 -msgid "" -"Extract all doctest examples from the given string, and collect them into " -"a :class:`DocTest` object." +msgid "Extract all doctest examples from the given string, and collect them into a :class:`DocTest` object." msgstr "" -#: ../../library/doctest.rst:1458 -msgid "" -"*globs*, *name*, *filename*, and *lineno* are attributes for the " -"new :class:`!DocTest` object. See the documentation for :class:`DocTest` " -"for more information." +msgid "*globs*, *name*, *filename*, and *lineno* are attributes for the new :class:`!DocTest` object. See the documentation for :class:`DocTest` for more information." msgstr "" -#: ../../library/doctest.rst:1465 -msgid "" -"Extract all doctest examples from the given string, and return them as a " -"list of :class:`Example` objects. Line numbers are 0-based. The optional " -"argument *name* is a name identifying this string, and is only used for " -"error messages." +msgid "Extract all doctest examples from the given string, and return them as a list of :class:`Example` objects. Line numbers are 0-based. The optional argument *name* is a name identifying this string, and is only used for error messages." msgstr "" -#: ../../library/doctest.rst:1472 -msgid "" -"Divide the given string into examples and intervening text, and return them " -"as a list of alternating :class:`Example`\\ s and strings. Line numbers for " -"the :class:`!Example`\\ s are 0-based. The optional argument *name* is a " -"name identifying this string, and is only used for error messages." +msgid "Divide the given string into examples and intervening text, and return them as a list of alternating :class:`Example`\\ s and strings. Line numbers for the :class:`!Example`\\ s are 0-based. The optional argument *name* is a name identifying this string, and is only used for error messages." msgstr "" -#: ../../library/doctest.rst:1479 msgid "TestResults objects" msgstr "" -#: ../../library/doctest.rst:1486 msgid "Number of failed tests." msgstr "" -#: ../../library/doctest.rst:1490 msgid "Number of attempted tests." msgstr "" -#: ../../library/doctest.rst:1494 msgid "Number of skipped tests." msgstr "" -#: ../../library/doctest.rst:1502 msgid "DocTestRunner objects" msgstr "" -#: ../../library/doctest.rst:1507 -msgid "" -"A processing class used to execute and verify the interactive examples in " -"a :class:`DocTest`." +msgid "A processing class used to execute and verify the interactive examples in a :class:`DocTest`." msgstr "" -#: ../../library/doctest.rst:1510 -msgid "" -"The comparison between expected outputs and actual outputs is done by " -"an :class:`OutputChecker`. This comparison may be customized with a number " -"of option flags; see section :ref:`doctest-options` for more information. " -"If the option flags are insufficient, then the comparison may also be " -"customized by passing a subclass of :class:`!OutputChecker` to the " -"constructor." +msgid "The comparison between expected outputs and actual outputs is done by an :class:`OutputChecker`. This comparison may be customized with a number of option flags; see section :ref:`doctest-options` for more information. If the option flags are insufficient, then the comparison may also be customized by passing a subclass of :class:`!OutputChecker` to the constructor." msgstr "" -#: ../../library/doctest.rst:1516 -msgid "" -"The test runner's display output can be controlled in two ways. First, an " -"output function can be passed to :meth:`run`; this function will be called " -"with strings that should be displayed. It defaults to " -"``sys.stdout.write``. If capturing the output is not sufficient, then the " -"display output can be also customized by subclassing DocTestRunner, and " -"overriding the " -"methods :meth:`report_start`, :meth:`report_success`, :meth:`report_unexpected_exception`, " -"and :meth:`report_failure`." +msgid "The test runner's display output can be controlled in two ways. First, an output function can be passed to :meth:`run`; this function will be called with strings that should be displayed. It defaults to ``sys.stdout.write``. If capturing the output is not sufficient, then the display output can be also customized by subclassing DocTestRunner, and overriding the methods :meth:`report_start`, :meth:`report_success`, :meth:`report_unexpected_exception`, and :meth:`report_failure`." msgstr "" -#: ../../library/doctest.rst:1524 -msgid "" -"The optional keyword argument *checker* specifies the :class:`OutputChecker` " -"object (or drop-in replacement) that should be used to compare the expected " -"outputs to the actual outputs of doctest examples." +msgid "The optional keyword argument *checker* specifies the :class:`OutputChecker` object (or drop-in replacement) that should be used to compare the expected outputs to the actual outputs of doctest examples." msgstr "" -#: ../../library/doctest.rst:1528 -msgid "" -"The optional keyword argument *verbose* controls " -"the :class:`DocTestRunner`'s verbosity. If *verbose* is ``True``, then " -"information is printed about each example, as it is run. If *verbose* is " -"``False``, then only failures are printed. If *verbose* is unspecified, or " -"``None``, then verbose output is used iff the command-line switch ``-v`` is " -"used." +msgid "The optional keyword argument *verbose* controls the :class:`DocTestRunner`'s verbosity. If *verbose* is ``True``, then information is printed about each example, as it is run. If *verbose* is ``False``, then only failures are printed. If *verbose* is unspecified, or ``None``, then verbose output is used iff the command-line switch ``-v`` is used." msgstr "" -#: ../../library/doctest.rst:1534 -msgid "" -"The optional keyword argument *optionflags* can be used to control how the " -"test runner compares expected output to actual output, and how it displays " -"failures. For more information, see section :ref:`doctest-options`." +msgid "The optional keyword argument *optionflags* can be used to control how the test runner compares expected output to actual output, and how it displays failures. For more information, see section :ref:`doctest-options`." msgstr "" -#: ../../library/doctest.rst:1538 -msgid "" -"The test runner accumulates statistics. The aggregated number of attempted, " -"failed and skipped examples is also available via " -"the :attr:`tries`, :attr:`failures` and :attr:`skips` attributes. " -"The :meth:`run` and :meth:`summarize` methods return a :class:`TestResults` " -"instance." +msgid "The test runner accumulates statistics. The aggregated number of attempted, failed and skipped examples is also available via the :attr:`tries`, :attr:`failures` and :attr:`skips` attributes. The :meth:`run` and :meth:`summarize` methods return a :class:`TestResults` instance." msgstr "" -#: ../../library/doctest.rst:1543 msgid ":class:`DocTestRunner` defines the following methods:" msgstr "" -#: ../../library/doctest.rst:1548 -msgid "" -"Report that the test runner is about to process the given example. This " -"method is provided to allow subclasses of :class:`DocTestRunner` to " -"customize their output; it should not be called directly." +msgid "Report that the test runner is about to process the given example. This method is provided to allow subclasses of :class:`DocTestRunner` to customize their output; it should not be called directly." msgstr "" -#: ../../library/doctest.rst:1552 -msgid "" -"*example* is the example about to be processed. *test* is the test " -"containing *example*. *out* is the output function that was passed " -"to :meth:`DocTestRunner.run`." +msgid "*example* is the example about to be processed. *test* is the test containing *example*. *out* is the output function that was passed to :meth:`DocTestRunner.run`." msgstr "" -#: ../../library/doctest.rst:1559 -msgid "" -"Report that the given example ran successfully. This method is provided to " -"allow subclasses of :class:`DocTestRunner` to customize their output; it " -"should not be called directly." +msgid "Report that the given example ran successfully. This method is provided to allow subclasses of :class:`DocTestRunner` to customize their output; it should not be called directly." msgstr "" -#: ../../library/doctest.rst:1563 ../../library/doctest.rst:1574 -msgid "" -"*example* is the example about to be processed. *got* is the actual output " -"from the example. *test* is the test containing *example*. *out* is the " -"output function that was passed to :meth:`DocTestRunner.run`." +msgid "*example* is the example about to be processed. *got* is the actual output from the example. *test* is the test containing *example*. *out* is the output function that was passed to :meth:`DocTestRunner.run`." msgstr "" -#: ../../library/doctest.rst:1570 -msgid "" -"Report that the given example failed. This method is provided to allow " -"subclasses of :class:`DocTestRunner` to customize their output; it should " -"not be called directly." +msgid "Report that the given example failed. This method is provided to allow subclasses of :class:`DocTestRunner` to customize their output; it should not be called directly." msgstr "" -#: ../../library/doctest.rst:1581 -msgid "" -"Report that the given example raised an unexpected exception. This method is " -"provided to allow subclasses of :class:`DocTestRunner` to customize their " -"output; it should not be called directly." +msgid "Report that the given example raised an unexpected exception. This method is provided to allow subclasses of :class:`DocTestRunner` to customize their output; it should not be called directly." msgstr "" -#: ../../library/doctest.rst:1585 -msgid "" -"*example* is the example about to be processed. *exc_info* is a tuple " -"containing information about the unexpected exception (as returned " -"by :func:`sys.exc_info`). *test* is the test containing *example*. *out* is " -"the output function that was passed to :meth:`DocTestRunner.run`." +msgid "*example* is the example about to be processed. *exc_info* is a tuple containing information about the unexpected exception (as returned by :func:`sys.exc_info`). *test* is the test containing *example*. *out* is the output function that was passed to :meth:`DocTestRunner.run`." msgstr "" -#: ../../library/doctest.rst:1593 -msgid "" -"Run the examples in *test* (a :class:`DocTest` object), and display the " -"results using the writer function *out*. Return a :class:`TestResults` " -"instance." +msgid "Run the examples in *test* (a :class:`DocTest` object), and display the results using the writer function *out*. Return a :class:`TestResults` instance." msgstr "" -#: ../../library/doctest.rst:1597 -msgid "" -"The examples are run in the namespace ``test.globs``. If *clear_globs* is " -"true (the default), then this namespace will be cleared after the test runs, " -"to help with garbage collection. If you would like to examine the namespace " -"after the test completes, then use *clear_globs=False*." +msgid "The examples are run in the namespace ``test.globs``. If *clear_globs* is true (the default), then this namespace will be cleared after the test runs, to help with garbage collection. If you would like to examine the namespace after the test completes, then use *clear_globs=False*." msgstr "" -#: ../../library/doctest.rst:1602 -msgid "" -"*compileflags* gives the set of flags that should be used by the Python " -"compiler when running the examples. If not specified, then it will default " -"to the set of future-import flags that apply to *globs*." +msgid "*compileflags* gives the set of flags that should be used by the Python compiler when running the examples. If not specified, then it will default to the set of future-import flags that apply to *globs*." msgstr "" -#: ../../library/doctest.rst:1606 -msgid "" -"The output of each example is checked using the :class:`DocTestRunner`'s " -"output checker, and the results are formatted by the :meth:`!" -"DocTestRunner.report_\\*` methods." +msgid "The output of each example is checked using the :class:`DocTestRunner`'s output checker, and the results are formatted by the :meth:`!DocTestRunner.report_\\*` methods." msgstr "" -#: ../../library/doctest.rst:1613 -msgid "" -"Print a summary of all the test cases that have been run by this " -"DocTestRunner, and return a :class:`TestResults` instance." +msgid "Print a summary of all the test cases that have been run by this DocTestRunner, and return a :class:`TestResults` instance." msgstr "" -#: ../../library/doctest.rst:1616 -msgid "" -"The optional *verbose* argument controls how detailed the summary is. If " -"the verbosity is not specified, then the :class:`DocTestRunner`'s verbosity " -"is used." +msgid "The optional *verbose* argument controls how detailed the summary is. If the verbosity is not specified, then the :class:`DocTestRunner`'s verbosity is used." msgstr "" -#: ../../library/doctest.rst:1620 msgid ":class:`DocTestParser` has the following attributes:" msgstr "" -#: ../../library/doctest.rst:1624 msgid "Number of attempted examples." msgstr "" -#: ../../library/doctest.rst:1628 msgid "Number of failed examples." msgstr "" -#: ../../library/doctest.rst:1632 msgid "Number of skipped examples." msgstr "" -#: ../../library/doctest.rst:1640 msgid "OutputChecker objects" msgstr "" -#: ../../library/doctest.rst:1645 -msgid "" -"A class used to check the whether the actual output from a doctest example " -"matches the expected output. :class:`OutputChecker` defines two " -"methods: :meth:`check_output`, which compares a given pair of outputs, and " -"returns ``True`` if they match; and :meth:`output_difference`, which returns " -"a string describing the differences between two outputs." +msgid "A class used to check the whether the actual output from a doctest example matches the expected output. :class:`OutputChecker` defines two methods: :meth:`check_output`, which compares a given pair of outputs, and returns ``True`` if they match; and :meth:`output_difference`, which returns a string describing the differences between two outputs." msgstr "" -#: ../../library/doctest.rst:1652 msgid ":class:`OutputChecker` defines the following methods:" msgstr "" -#: ../../library/doctest.rst:1656 -msgid "" -"Return ``True`` iff the actual output from an example (*got*) matches the " -"expected output (*want*). These strings are always considered to match if " -"they are identical; but depending on what option flags the test runner is " -"using, several non-exact match types are also possible. See " -"section :ref:`doctest-options` for more information about option flags." +msgid "Return ``True`` iff the actual output from an example (*got*) matches the expected output (*want*). These strings are always considered to match if they are identical; but depending on what option flags the test runner is using, several non-exact match types are also possible. See section :ref:`doctest-options` for more information about option flags." msgstr "" -#: ../../library/doctest.rst:1665 -msgid "" -"Return a string describing the differences between the expected output for a " -"given example (*example*) and the actual output (*got*). *optionflags* is " -"the set of option flags used to compare *want* and *got*." +msgid "Return a string describing the differences between the expected output for a given example (*example*) and the actual output (*got*). *optionflags* is the set of option flags used to compare *want* and *got*." msgstr "" -#: ../../library/doctest.rst:1673 msgid "Debugging" msgstr "" -#: ../../library/doctest.rst:1675 msgid "Doctest provides several mechanisms for debugging doctest examples:" msgstr "" -#: ../../library/doctest.rst:1677 -msgid "" -"Several functions convert doctests to executable Python programs, which can " -"be run under the Python debugger, :mod:`pdb`." +msgid "Several functions convert doctests to executable Python programs, which can be run under the Python debugger, :mod:`pdb`." msgstr "" -#: ../../library/doctest.rst:1680 -msgid "" -"The :class:`DebugRunner` class is a subclass of :class:`DocTestRunner` that " -"raises an exception for the first failing example, containing information " -"about that example. This information can be used to perform post-mortem " -"debugging on the example." +msgid "The :class:`DebugRunner` class is a subclass of :class:`DocTestRunner` that raises an exception for the first failing example, containing information about that example. This information can be used to perform post-mortem debugging on the example." msgstr "" -#: ../../library/doctest.rst:1685 -msgid "" -"The :mod:`unittest` cases generated by :func:`DocTestSuite` support " -"the :meth:`debug` method defined by :class:`unittest.TestCase`." +msgid "The :mod:`unittest` cases generated by :func:`DocTestSuite` support the :meth:`debug` method defined by :class:`unittest.TestCase`." msgstr "" -#: ../../library/doctest.rst:1688 -msgid "" -"You can add a call to :func:`pdb.set_trace` in a doctest example, and you'll " -"drop into the Python debugger when that line is executed. Then you can " -"inspect current values of variables, and so on. For example, " -"suppose :file:`a.py` contains just this module docstring::" +msgid "You can add a call to :func:`pdb.set_trace` in a doctest example, and you'll drop into the Python debugger when that line is executed. Then you can inspect current values of variables, and so on. For example, suppose :file:`a.py` contains just this module docstring::" msgstr "" -#: ../../library/doctest.rst:1693 msgid "" "\"\"\"\n" ">>> def f(x):\n" @@ -2284,11 +1227,9 @@ msgid "" "\"\"\"" msgstr "" -#: ../../library/doctest.rst:1703 msgid "Then an interactive Python session may look like this::" msgstr "" -#: ../../library/doctest.rst:1705 msgid "" ">>> import a, doctest\n" ">>> doctest.testmod(a)\n" @@ -2321,25 +1262,15 @@ msgid "" ">>>" msgstr "" -#: ../../library/doctest.rst:1736 -msgid "" -"Functions that convert doctests to Python code, and possibly run the " -"synthesized code under the debugger:" +msgid "Functions that convert doctests to Python code, and possibly run the synthesized code under the debugger:" msgstr "" -#: ../../library/doctest.rst:1742 msgid "Convert text with examples to a script." msgstr "" -#: ../../library/doctest.rst:1744 -msgid "" -"Argument *s* is a string containing doctest examples. The string is " -"converted to a Python script, where doctest examples in *s* are converted to " -"regular code, and everything else is converted to Python comments. The " -"generated script is returned as a string. For example, ::" +msgid "Argument *s* is a string containing doctest examples. The string is converted to a Python script, where doctest examples in *s* are converted to regular code, and everything else is converted to Python comments. The generated script is returned as a string. For example, ::" msgstr "" -#: ../../library/doctest.rst:1749 msgid "" "import doctest\n" "print(doctest.script_from_examples(r\"\"\"\n" @@ -2352,11 +1283,9 @@ msgid "" "\"\"\"))" msgstr "" -#: ../../library/doctest.rst:1759 msgid "displays::" msgstr "" -#: ../../library/doctest.rst:1761 msgid "" "# Set x and y to 1 and 2.\n" "x, y = 1, 2\n" @@ -2367,262 +1296,122 @@ msgid "" "## 3" msgstr "" -#: ../../library/doctest.rst:1769 -msgid "" -"This function is used internally by other functions (see below), but can " -"also be useful when you want to transform an interactive Python session into " -"a Python script." +msgid "This function is used internally by other functions (see below), but can also be useful when you want to transform an interactive Python session into a Python script." msgstr "" -#: ../../library/doctest.rst:1776 msgid "Convert the doctest for an object to a script." msgstr "" -#: ../../library/doctest.rst:1778 -msgid "" -"Argument *module* is a module object, or dotted name of a module, containing " -"the object whose doctests are of interest. Argument *name* is the name " -"(within the module) of the object with the doctests of interest. The result " -"is a string, containing the object's docstring converted to a Python script, " -"as described for :func:`script_from_examples` above. For example, if " -"module :file:`a.py` contains a top-level function :func:`!f`, then ::" +msgid "Argument *module* is a module object, or dotted name of a module, containing the object whose doctests are of interest. Argument *name* is the name (within the module) of the object with the doctests of interest. The result is a string, containing the object's docstring converted to a Python script, as described for :func:`script_from_examples` above. For example, if module :file:`a.py` contains a top-level function :func:`!f`, then ::" msgstr "" -#: ../../library/doctest.rst:1785 msgid "" "import a, doctest\n" "print(doctest.testsource(a, \"a.f\"))" msgstr "" -#: ../../library/doctest.rst:1788 -msgid "" -"prints a script version of function :func:`!f`'s docstring, with doctests " -"converted to code, and the rest placed in comments." +msgid "prints a script version of function :func:`!f`'s docstring, with doctests converted to code, and the rest placed in comments." msgstr "" -#: ../../library/doctest.rst:1794 msgid "Debug the doctests for an object." msgstr "" -#: ../../library/doctest.rst:1796 -msgid "" -"The *module* and *name* arguments are the same as for " -"function :func:`testsource` above. The synthesized Python script for the " -"named object's docstring is written to a temporary file, and then that file " -"is run under the control of the Python debugger, :mod:`pdb`." +msgid "The *module* and *name* arguments are the same as for function :func:`testsource` above. The synthesized Python script for the named object's docstring is written to a temporary file, and then that file is run under the control of the Python debugger, :mod:`pdb`." msgstr "" -#: ../../library/doctest.rst:1801 -msgid "" -"A shallow copy of ``module.__dict__`` is used for both local and global " -"execution context." +msgid "A shallow copy of ``module.__dict__`` is used for both local and global execution context." msgstr "" -#: ../../library/doctest.rst:1804 -msgid "" -"Optional argument *pm* controls whether post-mortem debugging is used. If " -"*pm* has a true value, the script file is run directly, and the debugger " -"gets involved only if the script terminates via raising an unhandled " -"exception. If it does, then post-mortem debugging is invoked, " -"via :func:`pdb.post_mortem`, passing the traceback object from the unhandled " -"exception. If *pm* is not specified, or is false, the script is run under " -"the debugger from the start, via passing an appropriate :func:`exec` call " -"to :func:`pdb.run`." +msgid "Optional argument *pm* controls whether post-mortem debugging is used. If *pm* has a true value, the script file is run directly, and the debugger gets involved only if the script terminates via raising an unhandled exception. If it does, then post-mortem debugging is invoked, via :func:`pdb.post_mortem`, passing the traceback object from the unhandled exception. If *pm* is not specified, or is false, the script is run under the debugger from the start, via passing an appropriate :func:`exec` call to :func:`pdb.run`." msgstr "" -#: ../../library/doctest.rst:1815 msgid "Debug the doctests in a string." msgstr "" -#: ../../library/doctest.rst:1817 -msgid "" -"This is like function :func:`debug` above, except that a string containing " -"doctest examples is specified directly, via the *src* argument." +msgid "This is like function :func:`debug` above, except that a string containing doctest examples is specified directly, via the *src* argument." msgstr "" -#: ../../library/doctest.rst:1820 -msgid "" -"Optional argument *pm* has the same meaning as in function :func:`debug` " -"above." +msgid "Optional argument *pm* has the same meaning as in function :func:`debug` above." msgstr "" -#: ../../library/doctest.rst:1822 -msgid "" -"Optional argument *globs* gives a dictionary to use as both local and global " -"execution context. If not specified, or ``None``, an empty dictionary is " -"used. If specified, a shallow copy of the dictionary is used." +msgid "Optional argument *globs* gives a dictionary to use as both local and global execution context. If not specified, or ``None``, an empty dictionary is used. If specified, a shallow copy of the dictionary is used." msgstr "" -#: ../../library/doctest.rst:1827 -msgid "" -"The :class:`DebugRunner` class, and the special exceptions it may raise, are " -"of most interest to testing framework authors, and will only be sketched " -"here. See the source code, and especially :class:`DebugRunner`'s docstring " -"(which is a doctest!) for more details:" +msgid "The :class:`DebugRunner` class, and the special exceptions it may raise, are of most interest to testing framework authors, and will only be sketched here. See the source code, and especially :class:`DebugRunner`'s docstring (which is a doctest!) for more details:" msgstr "" -#: ../../library/doctest.rst:1835 -msgid "" -"A subclass of :class:`DocTestRunner` that raises an exception as soon as a " -"failure is encountered. If an unexpected exception occurs, " -"an :exc:`UnexpectedException` exception is raised, containing the test, the " -"example, and the original exception. If the output doesn't match, then " -"a :exc:`DocTestFailure` exception is raised, containing the test, the " -"example, and the actual output." +msgid "A subclass of :class:`DocTestRunner` that raises an exception as soon as a failure is encountered. If an unexpected exception occurs, an :exc:`UnexpectedException` exception is raised, containing the test, the example, and the original exception. If the output doesn't match, then a :exc:`DocTestFailure` exception is raised, containing the test, the example, and the actual output." msgstr "" -#: ../../library/doctest.rst:1842 -msgid "" -"For information about the constructor parameters and methods, see the " -"documentation for :class:`DocTestRunner` in section :ref:`doctest-advanced-" -"api`." +msgid "For information about the constructor parameters and methods, see the documentation for :class:`DocTestRunner` in section :ref:`doctest-advanced-api`." msgstr "" -#: ../../library/doctest.rst:1845 -msgid "" -"There are two exceptions that may be raised by :class:`DebugRunner` " -"instances:" +msgid "There are two exceptions that may be raised by :class:`DebugRunner` instances:" msgstr "" -#: ../../library/doctest.rst:1850 -msgid "" -"An exception raised by :class:`DocTestRunner` to signal that a doctest " -"example's actual output did not match its expected output. The constructor " -"arguments are used to initialize the attributes of the same names." +msgid "An exception raised by :class:`DocTestRunner` to signal that a doctest example's actual output did not match its expected output. The constructor arguments are used to initialize the attributes of the same names." msgstr "" -#: ../../library/doctest.rst:1854 msgid ":exc:`DocTestFailure` defines the following attributes:" msgstr "" -#: ../../library/doctest.rst:1859 ../../library/doctest.rst:1883 msgid "The :class:`DocTest` object that was being run when the example failed." msgstr "" -#: ../../library/doctest.rst:1864 ../../library/doctest.rst:1888 msgid "The :class:`Example` that failed." msgstr "" -#: ../../library/doctest.rst:1869 msgid "The example's actual output." msgstr "" -#: ../../library/doctest.rst:1874 -msgid "" -"An exception raised by :class:`DocTestRunner` to signal that a doctest " -"example raised an unexpected exception. The constructor arguments are used " -"to initialize the attributes of the same names." +msgid "An exception raised by :class:`DocTestRunner` to signal that a doctest example raised an unexpected exception. The constructor arguments are used to initialize the attributes of the same names." msgstr "" -#: ../../library/doctest.rst:1878 msgid ":exc:`UnexpectedException` defines the following attributes:" msgstr "" -#: ../../library/doctest.rst:1893 -msgid "" -"A tuple containing information about the unexpected exception, as returned " -"by :func:`sys.exc_info`." +msgid "A tuple containing information about the unexpected exception, as returned by :func:`sys.exc_info`." msgstr "" -#: ../../library/doctest.rst:1900 msgid "Soapbox" msgstr "" -#: ../../library/doctest.rst:1902 -msgid "" -"As mentioned in the introduction, :mod:`!doctest` has grown to have three " -"primary uses:" +msgid "As mentioned in the introduction, :mod:`!doctest` has grown to have three primary uses:" msgstr "" -#: ../../library/doctest.rst:1905 msgid "Checking examples in docstrings." msgstr "" -#: ../../library/doctest.rst:1907 msgid "Regression testing." msgstr "" -#: ../../library/doctest.rst:1909 msgid "Executable documentation / literate testing." msgstr "" -#: ../../library/doctest.rst:1911 -msgid "" -"These uses have different requirements, and it is important to distinguish " -"them. In particular, filling your docstrings with obscure test cases makes " -"for bad documentation." +msgid "These uses have different requirements, and it is important to distinguish them. In particular, filling your docstrings with obscure test cases makes for bad documentation." msgstr "" -#: ../../library/doctest.rst:1915 -msgid "" -"When writing a docstring, choose docstring examples with care. There's an " -"art to this that needs to be learned---it may not be natural at first. " -"Examples should add genuine value to the documentation. A good example can " -"often be worth many words. If done with care, the examples will be " -"invaluable for your users, and will pay back the time it takes to collect " -"them many times over as the years go by and things change. I'm still amazed " -"at how often one of my :mod:`!doctest` examples stops working after a " -"\"harmless\" change." +msgid "When writing a docstring, choose docstring examples with care. There's an art to this that needs to be learned---it may not be natural at first. Examples should add genuine value to the documentation. A good example can often be worth many words. If done with care, the examples will be invaluable for your users, and will pay back the time it takes to collect them many times over as the years go by and things change. I'm still amazed at how often one of my :mod:`!doctest` examples stops working after a \"harmless\" change." msgstr "" -#: ../../library/doctest.rst:1923 -msgid "" -"Doctest also makes an excellent tool for regression testing, especially if " -"you don't skimp on explanatory text. By interleaving prose and examples, it " -"becomes much easier to keep track of what's actually being tested, and why. " -"When a test fails, good prose can make it much easier to figure out what the " -"problem is, and how it should be fixed. It's true that you could write " -"extensive comments in code-based testing, but few programmers do. Many have " -"found that using doctest approaches instead leads to much clearer tests. " -"Perhaps this is simply because doctest makes writing prose a little easier " -"than writing code, while writing comments in code is a little harder. I " -"think it goes deeper than just that: the natural attitude when writing a " -"doctest-based test is that you want to explain the fine points of your " -"software, and illustrate them with examples. This in turn naturally leads to " -"test files that start with the simplest features, and logically progress to " -"complications and edge cases. A coherent narrative is the result, instead " -"of a collection of isolated functions that test isolated bits of " -"functionality seemingly at random. It's a different attitude, and produces " -"different results, blurring the distinction between testing and explaining." -msgstr "" - -#: ../../library/doctest.rst:1941 -msgid "" -"Regression testing is best confined to dedicated objects or files. There " -"are several options for organizing tests:" +msgid "Doctest also makes an excellent tool for regression testing, especially if you don't skimp on explanatory text. By interleaving prose and examples, it becomes much easier to keep track of what's actually being tested, and why. When a test fails, good prose can make it much easier to figure out what the problem is, and how it should be fixed. It's true that you could write extensive comments in code-based testing, but few programmers do. Many have found that using doctest approaches instead leads to much clearer tests. Perhaps this is simply because doctest makes writing prose a little easier than writing code, while writing comments in code is a little harder. I think it goes deeper than just that: the natural attitude when writing a doctest-based test is that you want to explain the fine points of your software, and illustrate them with examples. This in turn naturally leads to test files that start with the simplest features, and logically progress to complications and edge cases. A coherent narrative is the result, instead of a collection of isolated functions that test isolated bits of functionality seemingly at random. It's a different attitude, and produces different results, blurring the distinction between testing and explaining." msgstr "" -#: ../../library/doctest.rst:1944 -msgid "" -"Write text files containing test cases as interactive examples, and test the " -"files using :func:`testfile` or :func:`DocFileSuite`. This is recommended, " -"although is easiest to do for new projects, designed from the start to use " -"doctest." +msgid "Regression testing is best confined to dedicated objects or files. There are several options for organizing tests:" msgstr "" -#: ../../library/doctest.rst:1949 -msgid "" -"Define functions named ``_regrtest_topic`` that consist of single " -"docstrings, containing test cases for the named topics. These functions can " -"be included in the same file as the module, or separated out into a separate " -"test file." +msgid "Write text files containing test cases as interactive examples, and test the files using :func:`testfile` or :func:`DocFileSuite`. This is recommended, although is easiest to do for new projects, designed from the start to use doctest." msgstr "" -#: ../../library/doctest.rst:1953 -msgid "" -"Define a :attr:`~module.__test__` dictionary mapping from regression test " -"topics to docstrings containing test cases." +msgid "Define functions named ``_regrtest_topic`` that consist of single docstrings, containing test cases for the named topics. These functions can be included in the same file as the module, or separated out into a separate test file." msgstr "" -#: ../../library/doctest.rst:1956 -msgid "" -"When you have placed your tests in a module, the module can itself be the " -"test runner. When a test fails, you can arrange for your test runner to re-" -"run only the failing doctest while you debug the problem. Here is a minimal " -"example of such a test runner::" +msgid "Define a :attr:`~module.__test__` dictionary mapping from regression test topics to docstrings containing test cases." +msgstr "" + +msgid "When you have placed your tests in a module, the module can itself be the test runner. When a test fails, you can arrange for your test runner to re-run only the failing doctest while you debug the problem. Here is a minimal example of such a test runner::" msgstr "" -#: ../../library/doctest.rst:1961 msgid "" "if __name__ == '__main__':\n" " import doctest\n" @@ -2640,53 +1429,38 @@ msgid "" " print(f\"{fail} failures out of {total} tests\")" msgstr "" -#: ../../library/doctest.rst:1978 msgid "Footnotes" msgstr "" -#: ../../library/doctest.rst:1979 -msgid "" -"Examples containing both expected output and an exception are not supported. " -"Trying to guess where one ends and the other begins is too error-prone, and " -"that also makes for a confusing test." +msgid "Examples containing both expected output and an exception are not supported. Trying to guess where one ends and the other begins is too error-prone, and that also makes for a confusing test." msgstr "" -#: ../../library/doctest.rst:387 msgid ">>>" msgstr "" -#: ../../library/doctest.rst:387 msgid "interpreter prompt" msgstr "" -#: ../../library/doctest.rst:387 ../../library/doctest.rst:622 msgid "..." msgstr "" -#: ../../library/doctest.rst:553 msgid "^ (caret)" msgstr "" -#: ../../library/doctest.rst:553 msgid "marker" msgstr "" -#: ../../library/doctest.rst:602 msgid "" msgstr "" -#: ../../library/doctest.rst:622 ../../library/doctest.rst:747 msgid "in doctests" msgstr "" -#: ../../library/doctest.rst:747 msgid "# (hash)" msgstr "" -#: ../../library/doctest.rst:747 msgid "+ (plus)" msgstr "" -#: ../../library/doctest.rst:747 msgid "- (minus)" msgstr "" diff --git a/library/email.charset.po b/library/email.charset.po index 8762b039..8158c99a 100644 --- a/library/email.charset.po +++ b/library/email.charset.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:04+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,278 +23,134 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/email.charset.rst:2 msgid ":mod:`!email.charset`: Representing character sets" msgstr "" -#: ../../library/email.charset.rst:7 msgid "**Source code:** :source:`Lib/email/charset.py`" msgstr "" -#: ../../library/email.charset.rst:11 -msgid "" -"This module is part of the legacy (``Compat32``) email API. In the new API " -"only the aliases table is used." +msgid "This module is part of the legacy (``Compat32``) email API. In the new API only the aliases table is used." msgstr "" -#: ../../library/email.charset.rst:14 -msgid "" -"The remaining text in this section is the original documentation of the " -"module." +msgid "The remaining text in this section is the original documentation of the module." msgstr "" -#: ../../library/email.charset.rst:16 -msgid "" -"This module provides a class :class:`Charset` for representing character " -"sets and character set conversions in email messages, as well as a character " -"set registry and several convenience methods for manipulating this registry. " -"Instances of :class:`Charset` are used in several other modules within " -"the :mod:`email` package." +msgid "This module provides a class :class:`Charset` for representing character sets and character set conversions in email messages, as well as a character set registry and several convenience methods for manipulating this registry. Instances of :class:`Charset` are used in several other modules within the :mod:`email` package." msgstr "" -#: ../../library/email.charset.rst:22 msgid "Import this class from the :mod:`!email.charset` module." msgstr "" -#: ../../library/email.charset.rst:27 msgid "Map character sets to their email properties." msgstr "" -#: ../../library/email.charset.rst:29 -msgid "" -"This class provides information about the requirements imposed on email for " -"a specific character set. It also provides convenience routines for " -"converting between character sets, given the availability of the applicable " -"codecs. Given a character set, it will do its best to provide information " -"on how to use that character set in an email message in an RFC-compliant way." +msgid "This class provides information about the requirements imposed on email for a specific character set. It also provides convenience routines for converting between character sets, given the availability of the applicable codecs. Given a character set, it will do its best to provide information on how to use that character set in an email message in an RFC-compliant way." msgstr "" -#: ../../library/email.charset.rst:35 -msgid "" -"Certain character sets must be encoded with quoted-printable or base64 when " -"used in email headers or bodies. Certain character sets must be converted " -"outright, and are not allowed in email." +msgid "Certain character sets must be encoded with quoted-printable or base64 when used in email headers or bodies. Certain character sets must be converted outright, and are not allowed in email." +msgstr "" + +msgid "Optional *input_charset* is as described below; it is always coerced to lower case. After being alias normalized it is also used as a lookup into the registry of character sets to find out the header encoding, body encoding, and output conversion codec to be used for the character set. For example, if *input_charset* is ``iso-8859-1``, then headers and bodies will be encoded using quoted-printable and no output conversion codec is necessary. If *input_charset* is ``euc-jp``, then headers will be encoded with base64, bodies will not be encoded, but output text will be converted from the ``euc-jp`` character set to the ``iso-2022-jp`` character set." msgstr "" -#: ../../library/email.charset.rst:39 -msgid "" -"Optional *input_charset* is as described below; it is always coerced to " -"lower case. After being alias normalized it is also used as a lookup into " -"the registry of character sets to find out the header encoding, body " -"encoding, and output conversion codec to be used for the character set. For " -"example, if *input_charset* is ``iso-8859-1``, then headers and bodies will " -"be encoded using quoted-printable and no output conversion codec is " -"necessary. If *input_charset* is ``euc-jp``, then headers will be encoded " -"with base64, bodies will not be encoded, but output text will be converted " -"from the ``euc-jp`` character set to the ``iso-2022-jp`` character set." -msgstr "" - -#: ../../library/email.charset.rst:49 msgid ":class:`Charset` instances have the following data attributes:" msgstr "" -#: ../../library/email.charset.rst:53 -msgid "" -"The initial character set specified. Common aliases are converted to their " -"*official* email names (e.g. ``latin_1`` is converted to ``iso-8859-1``). " -"Defaults to 7-bit ``us-ascii``." +msgid "The initial character set specified. Common aliases are converted to their *official* email names (e.g. ``latin_1`` is converted to ``iso-8859-1``). Defaults to 7-bit ``us-ascii``." msgstr "" -#: ../../library/email.charset.rst:60 -msgid "" -"If the character set must be encoded before it can be used in an email " -"header, this attribute will be set to ``charset.QP`` (for quoted-printable), " -"``charset.BASE64`` (for base64 encoding), or ``charset.SHORTEST`` for the " -"shortest of QP or BASE64 encoding. Otherwise, it will be ``None``." +msgid "If the character set must be encoded before it can be used in an email header, this attribute will be set to ``charset.QP`` (for quoted-printable), ``charset.BASE64`` (for base64 encoding), or ``charset.SHORTEST`` for the shortest of QP or BASE64 encoding. Otherwise, it will be ``None``." msgstr "" -#: ../../library/email.charset.rst:69 -msgid "" -"Same as *header_encoding*, but describes the encoding for the mail message's " -"body, which indeed may be different than the header encoding. " -"``charset.SHORTEST`` is not allowed for *body_encoding*." +msgid "Same as *header_encoding*, but describes the encoding for the mail message's body, which indeed may be different than the header encoding. ``charset.SHORTEST`` is not allowed for *body_encoding*." msgstr "" -#: ../../library/email.charset.rst:76 -msgid "" -"Some character sets must be converted before they can be used in email " -"headers or bodies. If the *input_charset* is one of them, this attribute " -"will contain the name of the character set output will be converted to. " -"Otherwise, it will be ``None``." +msgid "Some character sets must be converted before they can be used in email headers or bodies. If the *input_charset* is one of them, this attribute will contain the name of the character set output will be converted to. Otherwise, it will be ``None``." msgstr "" -#: ../../library/email.charset.rst:84 -msgid "" -"The name of the Python codec used to convert the *input_charset* to " -"Unicode. If no conversion codec is necessary, this attribute will be " -"``None``." +msgid "The name of the Python codec used to convert the *input_charset* to Unicode. If no conversion codec is necessary, this attribute will be ``None``." msgstr "" -#: ../../library/email.charset.rst:91 -msgid "" -"The name of the Python codec used to convert Unicode to the " -"*output_charset*. If no conversion codec is necessary, this attribute will " -"have the same value as the *input_codec*." +msgid "The name of the Python codec used to convert Unicode to the *output_charset*. If no conversion codec is necessary, this attribute will have the same value as the *input_codec*." msgstr "" -#: ../../library/email.charset.rst:96 msgid ":class:`Charset` instances also have the following methods:" msgstr "" -#: ../../library/email.charset.rst:100 msgid "Return the content transfer encoding used for body encoding." msgstr "" -#: ../../library/email.charset.rst:102 -msgid "" -"This is either the string ``quoted-printable`` or ``base64`` depending on " -"the encoding used, or it is a function, in which case you should call the " -"function with a single argument, the Message object being encoded. The " -"function should then set the :mailheader:`Content-Transfer-Encoding` header " -"itself to whatever is appropriate." +msgid "This is either the string ``quoted-printable`` or ``base64`` depending on the encoding used, or it is a function, in which case you should call the function with a single argument, the Message object being encoded. The function should then set the :mailheader:`Content-Transfer-Encoding` header itself to whatever is appropriate." msgstr "" -#: ../../library/email.charset.rst:108 -msgid "" -"Returns the string ``quoted-printable`` if *body_encoding* is ``QP``, " -"returns the string ``base64`` if *body_encoding* is ``BASE64``, and returns " -"the string ``7bit`` otherwise." +msgid "Returns the string ``quoted-printable`` if *body_encoding* is ``QP``, returns the string ``base64`` if *body_encoding* is ``BASE64``, and returns the string ``7bit`` otherwise." msgstr "" -#: ../../library/email.charset.rst:115 msgid "Return the output character set." msgstr "" -#: ../../library/email.charset.rst:117 -msgid "" -"This is the *output_charset* attribute if that is not ``None``, otherwise it " -"is *input_charset*." +msgid "This is the *output_charset* attribute if that is not ``None``, otherwise it is *input_charset*." msgstr "" -#: ../../library/email.charset.rst:123 msgid "Header-encode the string *string*." msgstr "" -#: ../../library/email.charset.rst:125 -msgid "" -"The type of encoding (base64 or quoted-printable) will be based on the " -"*header_encoding* attribute." +msgid "The type of encoding (base64 or quoted-printable) will be based on the *header_encoding* attribute." msgstr "" -#: ../../library/email.charset.rst:131 msgid "Header-encode a *string* by converting it first to bytes." msgstr "" -#: ../../library/email.charset.rst:133 -msgid "" -"This is similar to :meth:`header_encode` except that the string is fit into " -"maximum line lengths as given by the argument *maxlengths*, which must be an " -"iterator: each element returned from this iterator will provide the next " -"maximum line length." +msgid "This is similar to :meth:`header_encode` except that the string is fit into maximum line lengths as given by the argument *maxlengths*, which must be an iterator: each element returned from this iterator will provide the next maximum line length." msgstr "" -#: ../../library/email.charset.rst:141 msgid "Body-encode the string *string*." msgstr "" -#: ../../library/email.charset.rst:143 -msgid "" -"The type of encoding (base64 or quoted-printable) will be based on the " -"*body_encoding* attribute." +msgid "The type of encoding (base64 or quoted-printable) will be based on the *body_encoding* attribute." msgstr "" -#: ../../library/email.charset.rst:146 -msgid "" -"The :class:`Charset` class also provides a number of methods to support " -"standard operations and built-in functions." +msgid "The :class:`Charset` class also provides a number of methods to support standard operations and built-in functions." msgstr "" -#: ../../library/email.charset.rst:152 -msgid "" -"Returns *input_charset* as a string coerced to lower case. :meth:`!__repr__` " -"is an alias for :meth:`!__str__`." +msgid "Returns *input_charset* as a string coerced to lower case. :meth:`!__repr__` is an alias for :meth:`!__str__`." msgstr "" -#: ../../library/email.charset.rst:158 -msgid "" -"This method allows you to compare two :class:`Charset` instances for " -"equality." +msgid "This method allows you to compare two :class:`Charset` instances for equality." msgstr "" -#: ../../library/email.charset.rst:164 -msgid "" -"This method allows you to compare two :class:`Charset` instances for " -"inequality." +msgid "This method allows you to compare two :class:`Charset` instances for inequality." msgstr "" -#: ../../library/email.charset.rst:167 -msgid "" -"The :mod:`!email.charset` module also provides the following functions for " -"adding new entries to the global character set, alias, and codec registries:" +msgid "The :mod:`!email.charset` module also provides the following functions for adding new entries to the global character set, alias, and codec registries:" msgstr "" -#: ../../library/email.charset.rst:173 msgid "Add character properties to the global registry." msgstr "" -#: ../../library/email.charset.rst:175 -msgid "" -"*charset* is the input character set, and must be the canonical name of a " -"character set." +msgid "*charset* is the input character set, and must be the canonical name of a character set." msgstr "" -#: ../../library/email.charset.rst:178 -msgid "" -"Optional *header_enc* and *body_enc* is either ``charset.QP`` for quoted-" -"printable, ``charset.BASE64`` for base64 encoding, ``charset.SHORTEST`` for " -"the shortest of quoted-printable or base64 encoding, or ``None`` for no " -"encoding. ``SHORTEST`` is only valid for *header_enc*. The default is " -"``None`` for no encoding." +msgid "Optional *header_enc* and *body_enc* is either ``charset.QP`` for quoted-printable, ``charset.BASE64`` for base64 encoding, ``charset.SHORTEST`` for the shortest of quoted-printable or base64 encoding, or ``None`` for no encoding. ``SHORTEST`` is only valid for *header_enc*. The default is ``None`` for no encoding." msgstr "" -#: ../../library/email.charset.rst:184 -msgid "" -"Optional *output_charset* is the character set that the output should be in. " -"Conversions will proceed from input charset, to Unicode, to the output " -"charset when the method :meth:`Charset.convert` is called. The default is " -"to output in the same character set as the input." +msgid "Optional *output_charset* is the character set that the output should be in. Conversions will proceed from input charset, to Unicode, to the output charset when the method :meth:`Charset.convert` is called. The default is to output in the same character set as the input." msgstr "" -#: ../../library/email.charset.rst:189 -msgid "" -"Both *input_charset* and *output_charset* must have Unicode codec entries in " -"the module's character set-to-codec mapping; use :func:`add_codec` to add " -"codecs the module does not know about. See the :mod:`codecs` module's " -"documentation for more information." +msgid "Both *input_charset* and *output_charset* must have Unicode codec entries in the module's character set-to-codec mapping; use :func:`add_codec` to add codecs the module does not know about. See the :mod:`codecs` module's documentation for more information." msgstr "" -#: ../../library/email.charset.rst:194 -msgid "" -"The global character set registry is kept in the module global dictionary " -"``CHARSETS``." +msgid "The global character set registry is kept in the module global dictionary ``CHARSETS``." msgstr "" -#: ../../library/email.charset.rst:200 -msgid "" -"Add a character set alias. *alias* is the alias name, e.g. ``latin-1``. " -"*canonical* is the character set's canonical name, e.g. ``iso-8859-1``." +msgid "Add a character set alias. *alias* is the alias name, e.g. ``latin-1``. *canonical* is the character set's canonical name, e.g. ``iso-8859-1``." msgstr "" -#: ../../library/email.charset.rst:203 -msgid "" -"The global charset alias registry is kept in the module global dictionary " -"``ALIASES``." +msgid "The global charset alias registry is kept in the module global dictionary ``ALIASES``." msgstr "" -#: ../../library/email.charset.rst:209 -msgid "" -"Add a codec that map characters in the given character set to and from " -"Unicode." +msgid "Add a codec that map characters in the given character set to and from Unicode." msgstr "" -#: ../../library/email.charset.rst:211 -msgid "" -"*charset* is the canonical name of a character set. *codecname* is the name " -"of a Python codec, as appropriate for the second argument to " -"the :class:`str`'s :meth:`~str.encode` method." +msgid "*charset* is the canonical name of a character set. *codecname* is the name of a Python codec, as appropriate for the second argument to the :class:`str`'s :meth:`~str.encode` method." msgstr "" diff --git a/library/email.compat32-message.po b/library/email.compat32-message.po index 53cf325e..cb869e9a 100644 --- a/library/email.compat32-message.po +++ b/library/email.compat32-message.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:04+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,121 +21,45 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/email.compat32-message.rst:4 -msgid "" -":mod:`email.message.Message`: Representing an email message using " -"the :data:`~email.policy.compat32` API" +msgid ":mod:`email.message.Message`: Representing an email message using the :data:`~email.policy.compat32` API" msgstr "" -#: ../../library/email.compat32-message.rst:13 -msgid "" -"The :class:`Message` class is very similar to " -"the :class:`~email.message.EmailMessage` class, without the methods added by " -"that class, and with the default behavior of certain other methods being " -"slightly different. We also document here some methods that, while " -"supported by the :class:`~email.message.EmailMessage` class, are not " -"recommended unless you are dealing with legacy code." +msgid "The :class:`Message` class is very similar to the :class:`~email.message.EmailMessage` class, without the methods added by that class, and with the default behavior of certain other methods being slightly different. We also document here some methods that, while supported by the :class:`~email.message.EmailMessage` class, are not recommended unless you are dealing with legacy code." msgstr "" -#: ../../library/email.compat32-message.rst:20 msgid "The philosophy and structure of the two classes is otherwise the same." msgstr "" -#: ../../library/email.compat32-message.rst:22 -msgid "" -"This document describes the behavior under the default " -"(for :class:`Message`) policy :attr:`~email.policy.Compat32`. If you are " -"going to use another policy, you should be using " -"the :class:`~email.message.EmailMessage` class instead." +msgid "This document describes the behavior under the default (for :class:`Message`) policy :attr:`~email.policy.Compat32`. If you are going to use another policy, you should be using the :class:`~email.message.EmailMessage` class instead." msgstr "" -#: ../../library/email.compat32-message.rst:26 -msgid "" -"An email message consists of *headers* and a *payload*. Headers must " -"be :rfc:`5322` style names and values, where the field name and value are " -"separated by a colon. The colon is not part of either the field name or the " -"field value. The payload may be a simple text message, or a binary object, " -"or a structured sequence of sub-messages each with their own set of headers " -"and their own payload. The latter type of payload is indicated by the " -"message having a MIME type such as :mimetype:`multipart/\\*` " -"or :mimetype:`message/rfc822`." +msgid "An email message consists of *headers* and a *payload*. Headers must be :rfc:`5322` style names and values, where the field name and value are separated by a colon. The colon is not part of either the field name or the field value. The payload may be a simple text message, or a binary object, or a structured sequence of sub-messages each with their own set of headers and their own payload. The latter type of payload is indicated by the message having a MIME type such as :mimetype:`multipart/\\*` or :mimetype:`message/rfc822`." msgstr "" -#: ../../library/email.compat32-message.rst:35 -msgid "" -"The conceptual model provided by a :class:`Message` object is that of an " -"ordered dictionary of headers with additional methods for accessing both " -"specialized information from the headers, for accessing the payload, for " -"generating a serialized version of the message, and for recursively walking " -"over the object tree. Note that duplicate headers are supported but special " -"methods must be used to access them." +msgid "The conceptual model provided by a :class:`Message` object is that of an ordered dictionary of headers with additional methods for accessing both specialized information from the headers, for accessing the payload, for generating a serialized version of the message, and for recursively walking over the object tree. Note that duplicate headers are supported but special methods must be used to access them." +msgstr "" + +msgid "The :class:`Message` pseudo-dictionary is indexed by the header names, which must be ASCII values. The values of the dictionary are strings that are supposed to contain only ASCII characters; there is some special handling for non-ASCII input, but it doesn't always produce the correct results. Headers are stored and returned in case-preserving form, but field names are matched case-insensitively. There may also be a single envelope header, also known as the *Unix-From* header or the ``From_`` header. The *payload* is either a string or bytes, in the case of simple message objects, or a list of :class:`Message` objects, for MIME container documents (e.g. :mimetype:`multipart/\\*` and :mimetype:`message/rfc822`)." msgstr "" -#: ../../library/email.compat32-message.rst:42 -msgid "" -"The :class:`Message` pseudo-dictionary is indexed by the header names, which " -"must be ASCII values. The values of the dictionary are strings that are " -"supposed to contain only ASCII characters; there is some special handling " -"for non-ASCII input, but it doesn't always produce the correct results. " -"Headers are stored and returned in case-preserving form, but field names are " -"matched case-insensitively. There may also be a single envelope header, " -"also known as the *Unix-From* header or the ``From_`` header. The *payload* " -"is either a string or bytes, in the case of simple message objects, or a " -"list of :class:`Message` objects, for MIME container documents " -"(e.g. :mimetype:`multipart/\\*` and :mimetype:`message/rfc822`)." -msgstr "" - -#: ../../library/email.compat32-message.rst:53 msgid "Here are the methods of the :class:`Message` class:" msgstr "" -#: ../../library/email.compat32-message.rst:58 -msgid "" -"If *policy* is specified (it must be an instance of a :mod:`~email.policy` " -"class) use the rules it specifies to update and serialize the representation " -"of the message. If *policy* is not set, use the :class:`compat32 " -"` policy, which maintains backward compatibility with " -"the Python 3.2 version of the email package. For more information see " -"the :mod:`~email.policy` documentation." +msgid "If *policy* is specified (it must be an instance of a :mod:`~email.policy` class) use the rules it specifies to update and serialize the representation of the message. If *policy* is not set, use the :class:`compat32 ` policy, which maintains backward compatibility with the Python 3.2 version of the email package. For more information see the :mod:`~email.policy` documentation." msgstr "" -#: ../../library/email.compat32-message.rst:65 msgid "The *policy* keyword argument was added." msgstr "" -#: ../../library/email.compat32-message.rst:70 -msgid "" -"Return the entire message flattened as a string. When optional *unixfrom* " -"is true, the envelope header is included in the returned string. *unixfrom* " -"defaults to ``False``. For backward compatibility reasons, *maxheaderlen* " -"defaults to ``0``, so if you want a different value you must override it " -"explicitly (the value specified for *max_line_length* in the policy will be " -"ignored by this method). The *policy* argument may be used to override the " -"default policy obtained from the message instance. This can be used to " -"control some of the formatting produced by the method, since the specified " -"*policy* will be passed to the ``Generator``." -msgstr "" - -#: ../../library/email.compat32-message.rst:80 -#: ../../library/email.compat32-message.rst:122 -msgid "" -"Flattening the message may trigger changes to the :class:`Message` if " -"defaults need to be filled in to complete the transformation to a string " -"(for example, MIME boundaries may be generated or modified)." +msgid "Return the entire message flattened as a string. When optional *unixfrom* is true, the envelope header is included in the returned string. *unixfrom* defaults to ``False``. For backward compatibility reasons, *maxheaderlen* defaults to ``0``, so if you want a different value you must override it explicitly (the value specified for *max_line_length* in the policy will be ignored by this method). The *policy* argument may be used to override the default policy obtained from the message instance. This can be used to control some of the formatting produced by the method, since the specified *policy* will be passed to the ``Generator``." msgstr "" -#: ../../library/email.compat32-message.rst:84 -msgid "" -"Note that this method is provided as a convenience and may not always format " -"the message the way you want. For example, by default it does not do the " -"mangling of lines that begin with ``From`` that is required by the Unix mbox " -"format. For more flexibility, instantiate " -"a :class:`~email.generator.Generator` instance and use " -"its :meth:`~email.generator.Generator.flatten` method directly. For " -"example::" +msgid "Flattening the message may trigger changes to the :class:`Message` if defaults need to be filled in to complete the transformation to a string (for example, MIME boundaries may be generated or modified)." +msgstr "" + +msgid "Note that this method is provided as a convenience and may not always format the message the way you want. For example, by default it does not do the mangling of lines that begin with ``From`` that is required by the Unix mbox format. For more flexibility, instantiate a :class:`~email.generator.Generator` instance and use its :meth:`~email.generator.Generator.flatten` method directly. For example::" msgstr "" -#: ../../library/email.compat32-message.rst:91 msgid "" "from io import StringIO\n" "from email.generator import Generator\n" @@ -145,46 +69,21 @@ msgid "" "text = fp.getvalue()" msgstr "" -#: ../../library/email.compat32-message.rst:98 -msgid "" -"If the message object contains binary data that is not encoded according to " -"RFC standards, the non-compliant data will be replaced by unicode \"unknown " -"character\" code points. (See also :meth:`.as_bytes` " -"and :class:`~email.generator.BytesGenerator`.)" +msgid "If the message object contains binary data that is not encoded according to RFC standards, the non-compliant data will be replaced by unicode \"unknown character\" code points. (See also :meth:`.as_bytes` and :class:`~email.generator.BytesGenerator`.)" msgstr "" -#: ../../library/email.compat32-message.rst:103 msgid "the *policy* keyword argument was added." msgstr "" -#: ../../library/email.compat32-message.rst:108 -msgid "" -"Equivalent to :meth:`.as_string`. Allows ``str(msg)`` to produce a string " -"containing the formatted message." +msgid "Equivalent to :meth:`.as_string`. Allows ``str(msg)`` to produce a string containing the formatted message." msgstr "" -#: ../../library/email.compat32-message.rst:114 -msgid "" -"Return the entire message flattened as a bytes object. When optional " -"*unixfrom* is true, the envelope header is included in the returned string. " -"*unixfrom* defaults to ``False``. The *policy* argument may be used to " -"override the default policy obtained from the message instance. This can be " -"used to control some of the formatting produced by the method, since the " -"specified *policy* will be passed to the ``BytesGenerator``." +msgid "Return the entire message flattened as a bytes object. When optional *unixfrom* is true, the envelope header is included in the returned string. *unixfrom* defaults to ``False``. The *policy* argument may be used to override the default policy obtained from the message instance. This can be used to control some of the formatting produced by the method, since the specified *policy* will be passed to the ``BytesGenerator``." msgstr "" -#: ../../library/email.compat32-message.rst:126 -msgid "" -"Note that this method is provided as a convenience and may not always format " -"the message the way you want. For example, by default it does not do the " -"mangling of lines that begin with ``From`` that is required by the Unix mbox " -"format. For more flexibility, instantiate " -"a :class:`~email.generator.BytesGenerator` instance and use " -"its :meth:`~email.generator.BytesGenerator.flatten` method directly. For " -"example::" +msgid "Note that this method is provided as a convenience and may not always format the message the way you want. For example, by default it does not do the mangling of lines that begin with ``From`` that is required by the Unix mbox format. For more flexibility, instantiate a :class:`~email.generator.BytesGenerator` instance and use its :meth:`~email.generator.BytesGenerator.flatten` method directly. For example::" msgstr "" -#: ../../library/email.compat32-message.rst:134 msgid "" "from io import BytesIO\n" "from email.generator import BytesGenerator\n" @@ -194,638 +93,266 @@ msgid "" "text = fp.getvalue()" msgstr "" -#: ../../library/email.compat32-message.rst:146 -msgid "" -"Equivalent to :meth:`.as_bytes`. Allows ``bytes(msg)`` to produce a bytes " -"object containing the formatted message." +msgid "Equivalent to :meth:`.as_bytes`. Allows ``bytes(msg)`` to produce a bytes object containing the formatted message." msgstr "" -#: ../../library/email.compat32-message.rst:154 -msgid "" -"Return ``True`` if the message's payload is a list of sub-" -"\\ :class:`Message` objects, otherwise return ``False``. " -"When :meth:`is_multipart` returns ``False``, the payload should be a string " -"object (which might be a CTE encoded binary payload). (Note " -"that :meth:`is_multipart` returning ``True`` does not necessarily mean that " -"\"msg.get_content_maintype() == 'multipart'\" will return the ``True``. For " -"example, ``is_multipart`` will return ``True`` when the :class:`Message` is " -"of type ``message/rfc822``.)" +msgid "Return ``True`` if the message's payload is a list of sub-\\ :class:`Message` objects, otherwise return ``False``. When :meth:`is_multipart` returns ``False``, the payload should be a string object (which might be a CTE encoded binary payload). (Note that :meth:`is_multipart` returning ``True`` does not necessarily mean that \"msg.get_content_maintype() == 'multipart'\" will return the ``True``. For example, ``is_multipart`` will return ``True`` when the :class:`Message` is of type ``message/rfc822``.)" msgstr "" -#: ../../library/email.compat32-message.rst:166 -msgid "" -"Set the message's envelope header to *unixfrom*, which should be a string." +msgid "Set the message's envelope header to *unixfrom*, which should be a string." msgstr "" -#: ../../library/email.compat32-message.rst:171 -msgid "" -"Return the message's envelope header. Defaults to ``None`` if the envelope " -"header was never set." +msgid "Return the message's envelope header. Defaults to ``None`` if the envelope header was never set." msgstr "" -#: ../../library/email.compat32-message.rst:177 -msgid "" -"Add the given *payload* to the current payload, which must be ``None`` or a " -"list of :class:`Message` objects before the call. After the call, the " -"payload will always be a list of :class:`Message` objects. If you want to " -"set the payload to a scalar object (e.g. a string), use :meth:`set_payload` " -"instead." +msgid "Add the given *payload* to the current payload, which must be ``None`` or a list of :class:`Message` objects before the call. After the call, the payload will always be a list of :class:`Message` objects. If you want to set the payload to a scalar object (e.g. a string), use :meth:`set_payload` instead." msgstr "" -#: ../../library/email.compat32-message.rst:183 -msgid "" -"This is a legacy method. On the :class:`~email.message.EmailMessage` class " -"its functionality is replaced " -"by :meth:`~email.message.EmailMessage.set_content` and the related ``make`` " -"and ``add`` methods." +msgid "This is a legacy method. On the :class:`~email.message.EmailMessage` class its functionality is replaced by :meth:`~email.message.EmailMessage.set_content` and the related ``make`` and ``add`` methods." msgstr "" -#: ../../library/email.compat32-message.rst:191 -msgid "" -"Return the current payload, which will be a list of :class:`Message` objects " -"when :meth:`is_multipart` is ``True``, or a string when :meth:`is_multipart` " -"is ``False``. If the payload is a list and you mutate the list object, you " -"modify the message's payload in place." +msgid "Return the current payload, which will be a list of :class:`Message` objects when :meth:`is_multipart` is ``True``, or a string when :meth:`is_multipart` is ``False``. If the payload is a list and you mutate the list object, you modify the message's payload in place." msgstr "" -#: ../../library/email.compat32-message.rst:196 -msgid "" -"With optional argument *i*, :meth:`get_payload` will return the *i*-th " -"element of the payload, counting from zero, if :meth:`is_multipart` is " -"``True``. An :exc:`IndexError` will be raised if *i* is less than 0 or " -"greater than or equal to the number of items in the payload. If the payload " -"is a string (i.e. :meth:`is_multipart` is ``False``) and *i* is given, " -"a :exc:`TypeError` is raised." +msgid "With optional argument *i*, :meth:`get_payload` will return the *i*-th element of the payload, counting from zero, if :meth:`is_multipart` is ``True``. An :exc:`IndexError` will be raised if *i* is less than 0 or greater than or equal to the number of items in the payload. If the payload is a string (i.e. :meth:`is_multipart` is ``False``) and *i* is given, a :exc:`TypeError` is raised." msgstr "" -#: ../../library/email.compat32-message.rst:203 -msgid "" -"Optional *decode* is a flag indicating whether the payload should be decoded " -"or not, according to the :mailheader:`Content-Transfer-Encoding` header. " -"When ``True`` and the message is not a multipart, the payload will be " -"decoded if this header's value is ``quoted-printable`` or ``base64``. If " -"some other encoding is used, or :mailheader:`Content-Transfer-Encoding` " -"header is missing, the payload is returned as-is (undecoded). In all cases " -"the returned value is binary data. If the message is a multipart and the " -"*decode* flag is ``True``, then ``None`` is returned. If the payload is " -"base64 and it was not perfectly formed (missing padding, characters outside " -"the base64 alphabet), then an appropriate defect will be added to the " -"message's defect property (:class:`~email.errors.InvalidBase64PaddingDefect` " -"or :class:`~email.errors.InvalidBase64CharactersDefect`, respectively)." -msgstr "" - -#: ../../library/email.compat32-message.rst:217 -msgid "" -"When *decode* is ``False`` (the default) the body is returned as a string " -"without decoding the :mailheader:`Content-Transfer-Encoding`. However, for " -"a :mailheader:`Content-Transfer-Encoding` of 8bit, an attempt is made to " -"decode the original bytes using the ``charset`` specified by " -"the :mailheader:`Content-Type` header, using the ``replace`` error handler. " -"If no ``charset`` is specified, or if the ``charset`` given is not " -"recognized by the email package, the body is decoded using the default ASCII " -"charset." +msgid "Optional *decode* is a flag indicating whether the payload should be decoded or not, according to the :mailheader:`Content-Transfer-Encoding` header. When ``True`` and the message is not a multipart, the payload will be decoded if this header's value is ``quoted-printable`` or ``base64``. If some other encoding is used, or :mailheader:`Content-Transfer-Encoding` header is missing, the payload is returned as-is (undecoded). In all cases the returned value is binary data. If the message is a multipart and the *decode* flag is ``True``, then ``None`` is returned. If the payload is base64 and it was not perfectly formed (missing padding, characters outside the base64 alphabet), then an appropriate defect will be added to the message's defect property (:class:`~email.errors.InvalidBase64PaddingDefect` or :class:`~email.errors.InvalidBase64CharactersDefect`, respectively)." msgstr "" -#: ../../library/email.compat32-message.rst:226 -msgid "" -"This is a legacy method. On the :class:`~email.message.EmailMessage` class " -"its functionality is replaced " -"by :meth:`~email.message.EmailMessage.get_content` " -"and :meth:`~email.message.EmailMessage.iter_parts`." +msgid "When *decode* is ``False`` (the default) the body is returned as a string without decoding the :mailheader:`Content-Transfer-Encoding`. However, for a :mailheader:`Content-Transfer-Encoding` of 8bit, an attempt is made to decode the original bytes using the ``charset`` specified by the :mailheader:`Content-Type` header, using the ``replace`` error handler. If no ``charset`` is specified, or if the ``charset`` given is not recognized by the email package, the body is decoded using the default ASCII charset." msgstr "" -#: ../../library/email.compat32-message.rst:234 -msgid "" -"Set the entire message object's payload to *payload*. It is the client's " -"responsibility to ensure the payload invariants. Optional *charset* sets " -"the message's default character set; see :meth:`set_charset` for details." +msgid "This is a legacy method. On the :class:`~email.message.EmailMessage` class its functionality is replaced by :meth:`~email.message.EmailMessage.get_content` and :meth:`~email.message.EmailMessage.iter_parts`." msgstr "" -#: ../../library/email.compat32-message.rst:238 -msgid "" -"This is a legacy method. On the :class:`~email.message.EmailMessage` class " -"its functionality is replaced " -"by :meth:`~email.message.EmailMessage.set_content`." +msgid "Set the entire message object's payload to *payload*. It is the client's responsibility to ensure the payload invariants. Optional *charset* sets the message's default character set; see :meth:`set_charset` for details." msgstr "" -#: ../../library/email.compat32-message.rst:245 -msgid "" -"Set the character set of the payload to *charset*, which can either be " -"a :class:`~email.charset.Charset` instance (see :mod:`email.charset`), a " -"string naming a character set, or ``None``. If it is a string, it will be " -"converted to a :class:`~email.charset.Charset` instance. If *charset* is " -"``None``, the ``charset`` parameter will be removed from " -"the :mailheader:`Content-Type` header (the message will not be otherwise " -"modified). Anything else will generate a :exc:`TypeError`." +msgid "This is a legacy method. On the :class:`~email.message.EmailMessage` class its functionality is replaced by :meth:`~email.message.EmailMessage.set_content`." msgstr "" -#: ../../library/email.compat32-message.rst:253 -msgid "" -"If there is no existing :mailheader:`MIME-Version` header one will be " -"added. If there is no existing :mailheader:`Content-Type` header, one will " -"be added with a value of :mimetype:`text/plain`. Whether " -"the :mailheader:`Content-Type` header already exists or not, its ``charset`` " -"parameter will be set to *charset.output_charset*. If " -"*charset.input_charset* and *charset.output_charset* differ, the payload " -"will be re-encoded to the *output_charset*. If there is no " -"existing :mailheader:`Content-Transfer-Encoding` header, then the payload " -"will be transfer-encoded, if needed, using the " -"specified :class:`~email.charset.Charset`, and a header with the appropriate " -"value will be added. If a :mailheader:`Content-Transfer-Encoding` header " -"already exists, the payload is assumed to already be correctly encoded using " -"that :mailheader:`Content-Transfer-Encoding` and is not modified." -msgstr "" - -#: ../../library/email.compat32-message.rst:267 -msgid "" -"This is a legacy method. On the :class:`~email.message.EmailMessage` class " -"its functionality is replaced by the *charset* parameter of " -"the :meth:`email.message.EmailMessage.set_content` method." +msgid "Set the character set of the payload to *charset*, which can either be a :class:`~email.charset.Charset` instance (see :mod:`email.charset`), a string naming a character set, or ``None``. If it is a string, it will be converted to a :class:`~email.charset.Charset` instance. If *charset* is ``None``, the ``charset`` parameter will be removed from the :mailheader:`Content-Type` header (the message will not be otherwise modified). Anything else will generate a :exc:`TypeError`." msgstr "" -#: ../../library/email.compat32-message.rst:275 -msgid "" -"Return the :class:`~email.charset.Charset` instance associated with the " -"message's payload." +msgid "If there is no existing :mailheader:`MIME-Version` header one will be added. If there is no existing :mailheader:`Content-Type` header, one will be added with a value of :mimetype:`text/plain`. Whether the :mailheader:`Content-Type` header already exists or not, its ``charset`` parameter will be set to *charset.output_charset*. If *charset.input_charset* and *charset.output_charset* differ, the payload will be re-encoded to the *output_charset*. If there is no existing :mailheader:`Content-Transfer-Encoding` header, then the payload will be transfer-encoded, if needed, using the specified :class:`~email.charset.Charset`, and a header with the appropriate value will be added. If a :mailheader:`Content-Transfer-Encoding` header already exists, the payload is assumed to already be correctly encoded using that :mailheader:`Content-Transfer-Encoding` and is not modified." msgstr "" -#: ../../library/email.compat32-message.rst:278 -msgid "" -"This is a legacy method. On the :class:`~email.message.EmailMessage` class " -"it always returns ``None``." +msgid "This is a legacy method. On the :class:`~email.message.EmailMessage` class its functionality is replaced by the *charset* parameter of the :meth:`email.message.EmailMessage.set_content` method." msgstr "" -#: ../../library/email.compat32-message.rst:283 -msgid "" -"The following methods implement a mapping-like interface for accessing the " -"message's :rfc:`2822` headers. Note that there are some semantic " -"differences between these methods and a normal mapping (i.e. dictionary) " -"interface. For example, in a dictionary there are no duplicate keys, but " -"here there may be duplicate message headers. Also, in dictionaries there is " -"no guaranteed order to the keys returned by :meth:`keys`, but in " -"a :class:`Message` object, headers are always returned in the order they " -"appeared in the original message, or were added to the message later. Any " -"header deleted and then re-added are always appended to the end of the " -"header list." -msgstr "" - -#: ../../library/email.compat32-message.rst:293 -msgid "" -"These semantic differences are intentional and are biased toward maximal " -"convenience." +msgid "Return the :class:`~email.charset.Charset` instance associated with the message's payload." msgstr "" -#: ../../library/email.compat32-message.rst:296 -msgid "" -"Note that in all cases, any envelope header present in the message is not " -"included in the mapping interface." +msgid "This is a legacy method. On the :class:`~email.message.EmailMessage` class it always returns ``None``." msgstr "" -#: ../../library/email.compat32-message.rst:299 -msgid "" -"In a model generated from bytes, any header values that (in contravention of " -"the RFCs) contain non-ASCII bytes will, when retrieved through this " -"interface, be represented as :class:`~email.header.Header` objects with a " -"charset of ``unknown-8bit``." +msgid "The following methods implement a mapping-like interface for accessing the message's :rfc:`2822` headers. Note that there are some semantic differences between these methods and a normal mapping (i.e. dictionary) interface. For example, in a dictionary there are no duplicate keys, but here there may be duplicate message headers. Also, in dictionaries there is no guaranteed order to the keys returned by :meth:`keys`, but in a :class:`Message` object, headers are always returned in the order they appeared in the original message, or were added to the message later. Any header deleted and then re-added are always appended to the end of the header list." +msgstr "" + +msgid "These semantic differences are intentional and are biased toward maximal convenience." +msgstr "" + +msgid "Note that in all cases, any envelope header present in the message is not included in the mapping interface." +msgstr "" + +msgid "In a model generated from bytes, any header values that (in contravention of the RFCs) contain non-ASCII bytes will, when retrieved through this interface, be represented as :class:`~email.header.Header` objects with a charset of ``unknown-8bit``." msgstr "" -#: ../../library/email.compat32-message.rst:307 msgid "Return the total number of headers, including duplicates." msgstr "" -#: ../../library/email.compat32-message.rst:312 -msgid "" -"Return ``True`` if the message object has a field named *name*. Matching is " -"done case-insensitively and *name* should not include the trailing colon. " -"Used for the ``in`` operator, e.g.::" +msgid "Return ``True`` if the message object has a field named *name*. Matching is done case-insensitively and *name* should not include the trailing colon. Used for the ``in`` operator, e.g.::" msgstr "" -#: ../../library/email.compat32-message.rst:316 msgid "" "if 'message-id' in myMessage:\n" " print('Message-ID:', myMessage['message-id'])" msgstr "" -#: ../../library/email.compat32-message.rst:322 -msgid "" -"Return the value of the named header field. *name* should not include the " -"colon field separator. If the header is missing, ``None`` is returned; " -"a :exc:`KeyError` is never raised." +msgid "Return the value of the named header field. *name* should not include the colon field separator. If the header is missing, ``None`` is returned; a :exc:`KeyError` is never raised." msgstr "" -#: ../../library/email.compat32-message.rst:326 -msgid "" -"Note that if the named field appears more than once in the message's " -"headers, exactly which of those field values will be returned is undefined. " -"Use the :meth:`get_all` method to get the values of all the extant named " -"headers." +msgid "Note that if the named field appears more than once in the message's headers, exactly which of those field values will be returned is undefined. Use the :meth:`get_all` method to get the values of all the extant named headers." msgstr "" -#: ../../library/email.compat32-message.rst:334 -msgid "" -"Add a header to the message with field name *name* and value *val*. The " -"field is appended to the end of the message's existing fields." +msgid "Add a header to the message with field name *name* and value *val*. The field is appended to the end of the message's existing fields." msgstr "" -#: ../../library/email.compat32-message.rst:337 -msgid "" -"Note that this does *not* overwrite or delete any existing header with the " -"same name. If you want to ensure that the new header is the only one " -"present in the message with field name *name*, delete the field first, e.g.::" +msgid "Note that this does *not* overwrite or delete any existing header with the same name. If you want to ensure that the new header is the only one present in the message with field name *name*, delete the field first, e.g.::" msgstr "" -#: ../../library/email.compat32-message.rst:341 msgid "" "del msg['subject']\n" "msg['subject'] = 'Python roolz!'" msgstr "" -#: ../../library/email.compat32-message.rst:347 -msgid "" -"Delete all occurrences of the field with name *name* from the message's " -"headers. No exception is raised if the named field isn't present in the " -"headers." +msgid "Delete all occurrences of the field with name *name* from the message's headers. No exception is raised if the named field isn't present in the headers." msgstr "" -#: ../../library/email.compat32-message.rst:354 msgid "Return a list of all the message's header field names." msgstr "" -#: ../../library/email.compat32-message.rst:359 msgid "Return a list of all the message's field values." msgstr "" -#: ../../library/email.compat32-message.rst:364 -msgid "" -"Return a list of 2-tuples containing all the message's field headers and " -"values." +msgid "Return a list of 2-tuples containing all the message's field headers and values." msgstr "" -#: ../../library/email.compat32-message.rst:370 -msgid "" -"Return the value of the named header field. This is identical " -"to :meth:`~object.__getitem__` except that optional *failobj* is returned if " -"the named header is missing (defaults to ``None``)." +msgid "Return the value of the named header field. This is identical to :meth:`~object.__getitem__` except that optional *failobj* is returned if the named header is missing (defaults to ``None``)." msgstr "" -#: ../../library/email.compat32-message.rst:374 msgid "Here are some additional useful methods:" msgstr "" -#: ../../library/email.compat32-message.rst:379 -msgid "" -"Return a list of all the values for the field named *name*. If there are no " -"such named headers in the message, *failobj* is returned (defaults to " -"``None``)." +msgid "Return a list of all the values for the field named *name*. If there are no such named headers in the message, *failobj* is returned (defaults to ``None``)." msgstr "" -#: ../../library/email.compat32-message.rst:386 -msgid "" -"Extended header setting. This method is similar to :meth:`__setitem__` " -"except that additional header parameters can be provided as keyword " -"arguments. *_name* is the header field to add and *_value* is the *primary* " -"value for the header." +msgid "Extended header setting. This method is similar to :meth:`__setitem__` except that additional header parameters can be provided as keyword arguments. *_name* is the header field to add and *_value* is the *primary* value for the header." +msgstr "" + +msgid "For each item in the keyword argument dictionary *_params*, the key is taken as the parameter name, with underscores converted to dashes (since dashes are illegal in Python identifiers). Normally, the parameter will be added as ``key=\"value\"`` unless the value is ``None``, in which case only the key will be added. If the value contains non-ASCII characters, it can be specified as a three tuple in the format ``(CHARSET, LANGUAGE, VALUE)``, where ``CHARSET`` is a string naming the charset to be used to encode the value, ``LANGUAGE`` can usually be set to ``None`` or the empty string (see :rfc:`2231` for other possibilities), and ``VALUE`` is the string value containing non-ASCII code points. If a three tuple is not passed and the value contains non-ASCII characters, it is automatically encoded in :rfc:`2231` format using a ``CHARSET`` of ``utf-8`` and a ``LANGUAGE`` of ``None``." msgstr "" -#: ../../library/email.compat32-message.rst:391 -msgid "" -"For each item in the keyword argument dictionary *_params*, the key is taken " -"as the parameter name, with underscores converted to dashes (since dashes " -"are illegal in Python identifiers). Normally, the parameter will be added " -"as ``key=\"value\"`` unless the value is ``None``, in which case only the " -"key will be added. If the value contains non-ASCII characters, it can be " -"specified as a three tuple in the format ``(CHARSET, LANGUAGE, VALUE)``, " -"where ``CHARSET`` is a string naming the charset to be used to encode the " -"value, ``LANGUAGE`` can usually be set to ``None`` or the empty string " -"(see :rfc:`2231` for other possibilities), and ``VALUE`` is the string value " -"containing non-ASCII code points. If a three tuple is not passed and the " -"value contains non-ASCII characters, it is automatically encoded " -"in :rfc:`2231` format using a ``CHARSET`` of ``utf-8`` and a ``LANGUAGE`` of " -"``None``." -msgstr "" - -#: ../../library/email.compat32-message.rst:405 msgid "Here's an example::" msgstr "" -#: ../../library/email.compat32-message.rst:407 msgid "msg.add_header('Content-Disposition', 'attachment', filename='bud.gif')" msgstr "" -#: ../../library/email.compat32-message.rst:409 msgid "This will add a header that looks like ::" msgstr "" -#: ../../library/email.compat32-message.rst:411 msgid "Content-Disposition: attachment; filename=\"bud.gif\"" msgstr "" -#: ../../library/email.compat32-message.rst:413 msgid "An example with non-ASCII characters::" msgstr "" -#: ../../library/email.compat32-message.rst:415 msgid "" "msg.add_header('Content-Disposition', 'attachment',\n" " filename=('iso-8859-1', '', 'Fußballer.ppt'))" msgstr "" -#: ../../library/email.compat32-message.rst:418 msgid "Which produces ::" msgstr "" -#: ../../library/email.compat32-message.rst:420 -msgid "" -"Content-Disposition: attachment; filename*=\"iso-8859-1''Fu%DFballer.ppt\"" +msgid "Content-Disposition: attachment; filename*=\"iso-8859-1''Fu%DFballer.ppt\"" msgstr "" -#: ../../library/email.compat32-message.rst:425 -msgid "" -"Replace a header. Replace the first header found in the message that " -"matches *_name*, retaining header order and field name case. If no matching " -"header was found, a :exc:`KeyError` is raised." +msgid "Replace a header. Replace the first header found in the message that matches *_name*, retaining header order and field name case. If no matching header was found, a :exc:`KeyError` is raised." msgstr "" -#: ../../library/email.compat32-message.rst:432 -msgid "" -"Return the message's content type. The returned string is coerced to lower " -"case of the form :mimetype:`maintype/subtype`. If there was " -"no :mailheader:`Content-Type` header in the message the default type as " -"given by :meth:`get_default_type` will be returned. Since according " -"to :rfc:`2045`, messages always have a default " -"type, :meth:`get_content_type` will always return a value." +msgid "Return the message's content type. The returned string is coerced to lower case of the form :mimetype:`maintype/subtype`. If there was no :mailheader:`Content-Type` header in the message the default type as given by :meth:`get_default_type` will be returned. Since according to :rfc:`2045`, messages always have a default type, :meth:`get_content_type` will always return a value." msgstr "" -#: ../../library/email.compat32-message.rst:439 -msgid "" -":rfc:`2045` defines a message's default type to be :mimetype:`text/plain` " -"unless it appears inside a :mimetype:`multipart/digest` container, in which " -"case it would be :mimetype:`message/rfc822`. If the :mailheader:`Content-" -"Type` header has an invalid type specification, :rfc:`2045` mandates that " -"the default type be :mimetype:`text/plain`." +msgid ":rfc:`2045` defines a message's default type to be :mimetype:`text/plain` unless it appears inside a :mimetype:`multipart/digest` container, in which case it would be :mimetype:`message/rfc822`. If the :mailheader:`Content-Type` header has an invalid type specification, :rfc:`2045` mandates that the default type be :mimetype:`text/plain`." msgstr "" -#: ../../library/email.compat32-message.rst:448 -msgid "" -"Return the message's main content type. This is the :mimetype:`maintype` " -"part of the string returned by :meth:`get_content_type`." +msgid "Return the message's main content type. This is the :mimetype:`maintype` part of the string returned by :meth:`get_content_type`." msgstr "" -#: ../../library/email.compat32-message.rst:454 -msgid "" -"Return the message's sub-content type. This is the :mimetype:`subtype` part " -"of the string returned by :meth:`get_content_type`." +msgid "Return the message's sub-content type. This is the :mimetype:`subtype` part of the string returned by :meth:`get_content_type`." msgstr "" -#: ../../library/email.compat32-message.rst:460 -msgid "" -"Return the default content type. Most messages have a default content type " -"of :mimetype:`text/plain`, except for messages that are subparts " -"of :mimetype:`multipart/digest` containers. Such subparts have a default " -"content type of :mimetype:`message/rfc822`." +msgid "Return the default content type. Most messages have a default content type of :mimetype:`text/plain`, except for messages that are subparts of :mimetype:`multipart/digest` containers. Such subparts have a default content type of :mimetype:`message/rfc822`." msgstr "" -#: ../../library/email.compat32-message.rst:468 -msgid "" -"Set the default content type. *ctype* should either be :mimetype:`text/" -"plain` or :mimetype:`message/rfc822`, although this is not enforced. The " -"default content type is not stored in the :mailheader:`Content-Type` header." +msgid "Set the default content type. *ctype* should either be :mimetype:`text/plain` or :mimetype:`message/rfc822`, although this is not enforced. The default content type is not stored in the :mailheader:`Content-Type` header." msgstr "" -#: ../../library/email.compat32-message.rst:476 -msgid "" -"Return the message's :mailheader:`Content-Type` parameters, as a list. The " -"elements of the returned list are 2-tuples of key/value pairs, as split on " -"the ``'='`` sign. The left hand side of the ``'='`` is the key, while the " -"right hand side is the value. If there is no ``'='`` sign in the parameter " -"the value is the empty string, otherwise the value is as described " -"in :meth:`get_param` and is unquoted if optional *unquote* is ``True`` (the " -"default)." +msgid "Return the message's :mailheader:`Content-Type` parameters, as a list. The elements of the returned list are 2-tuples of key/value pairs, as split on the ``'='`` sign. The left hand side of the ``'='`` is the key, while the right hand side is the value. If there is no ``'='`` sign in the parameter the value is the empty string, otherwise the value is as described in :meth:`get_param` and is unquoted if optional *unquote* is ``True`` (the default)." msgstr "" -#: ../../library/email.compat32-message.rst:484 -msgid "" -"Optional *failobj* is the object to return if there is " -"no :mailheader:`Content-Type` header. Optional *header* is the header to " -"search instead of :mailheader:`Content-Type`." +msgid "Optional *failobj* is the object to return if there is no :mailheader:`Content-Type` header. Optional *header* is the header to search instead of :mailheader:`Content-Type`." msgstr "" -#: ../../library/email.compat32-message.rst:488 -#: ../../library/email.compat32-message.rst:526 -msgid "" -"This is a legacy method. On the :class:`~email.message.EmailMessage` class " -"its functionality is replaced by the *params* property of the individual " -"header objects returned by the header access methods." +msgid "This is a legacy method. On the :class:`~email.message.EmailMessage` class its functionality is replaced by the *params* property of the individual header objects returned by the header access methods." msgstr "" -#: ../../library/email.compat32-message.rst:496 -msgid "" -"Return the value of the :mailheader:`Content-Type` header's parameter " -"*param* as a string. If the message has no :mailheader:`Content-Type` " -"header or if there is no such parameter, then *failobj* is returned " -"(defaults to ``None``)." +msgid "Return the value of the :mailheader:`Content-Type` header's parameter *param* as a string. If the message has no :mailheader:`Content-Type` header or if there is no such parameter, then *failobj* is returned (defaults to ``None``)." msgstr "" -#: ../../library/email.compat32-message.rst:501 -msgid "" -"Optional *header* if given, specifies the message header to use instead " -"of :mailheader:`Content-Type`." +msgid "Optional *header* if given, specifies the message header to use instead of :mailheader:`Content-Type`." msgstr "" -#: ../../library/email.compat32-message.rst:504 -msgid "" -"Parameter keys are always compared case insensitively. The return value can " -"either be a string, or a 3-tuple if the parameter was :rfc:`2231` encoded. " -"When it's a 3-tuple, the elements of the value are of the form ``(CHARSET, " -"LANGUAGE, VALUE)``. Note that both ``CHARSET`` and ``LANGUAGE`` can be " -"``None``, in which case you should consider ``VALUE`` to be encoded in the " -"``us-ascii`` charset. You can usually ignore ``LANGUAGE``." +msgid "Parameter keys are always compared case insensitively. The return value can either be a string, or a 3-tuple if the parameter was :rfc:`2231` encoded. When it's a 3-tuple, the elements of the value are of the form ``(CHARSET, LANGUAGE, VALUE)``. Note that both ``CHARSET`` and ``LANGUAGE`` can be ``None``, in which case you should consider ``VALUE`` to be encoded in the ``us-ascii`` charset. You can usually ignore ``LANGUAGE``." msgstr "" -#: ../../library/email.compat32-message.rst:512 -msgid "" -"If your application doesn't care whether the parameter was encoded as " -"in :rfc:`2231`, you can collapse the parameter value by " -"calling :func:`email.utils.collapse_rfc2231_value`, passing in the return " -"value from :meth:`get_param`. This will return a suitably decoded Unicode " -"string when the value is a tuple, or the original string unquoted if it " -"isn't. For example::" +msgid "If your application doesn't care whether the parameter was encoded as in :rfc:`2231`, you can collapse the parameter value by calling :func:`email.utils.collapse_rfc2231_value`, passing in the return value from :meth:`get_param`. This will return a suitably decoded Unicode string when the value is a tuple, or the original string unquoted if it isn't. For example::" msgstr "" -#: ../../library/email.compat32-message.rst:519 msgid "" "rawparam = msg.get_param('foo')\n" "param = email.utils.collapse_rfc2231_value(rawparam)" msgstr "" -#: ../../library/email.compat32-message.rst:522 -msgid "" -"In any case, the parameter value (either the returned string, or the " -"``VALUE`` item in the 3-tuple) is always unquoted, unless *unquote* is set " -"to ``False``." +msgid "In any case, the parameter value (either the returned string, or the ``VALUE`` item in the 3-tuple) is always unquoted, unless *unquote* is set to ``False``." msgstr "" -#: ../../library/email.compat32-message.rst:535 -msgid "" -"Set a parameter in the :mailheader:`Content-Type` header. If the parameter " -"already exists in the header, its value will be replaced with *value*. If " -"the :mailheader:`Content-Type` header as not yet been defined for this " -"message, it will be set to :mimetype:`text/plain` and the new parameter " -"value will be appended as per :rfc:`2045`." +msgid "Set a parameter in the :mailheader:`Content-Type` header. If the parameter already exists in the header, its value will be replaced with *value*. If the :mailheader:`Content-Type` header as not yet been defined for this message, it will be set to :mimetype:`text/plain` and the new parameter value will be appended as per :rfc:`2045`." msgstr "" -#: ../../library/email.compat32-message.rst:541 -msgid "" -"Optional *header* specifies an alternative header to :mailheader:`Content-" -"Type`, and all parameters will be quoted as necessary unless optional " -"*requote* is ``False`` (the default is ``True``)." +msgid "Optional *header* specifies an alternative header to :mailheader:`Content-Type`, and all parameters will be quoted as necessary unless optional *requote* is ``False`` (the default is ``True``)." msgstr "" -#: ../../library/email.compat32-message.rst:545 -msgid "" -"If optional *charset* is specified, the parameter will be encoded according " -"to :rfc:`2231`. Optional *language* specifies the RFC 2231 language, " -"defaulting to the empty string. Both *charset* and *language* should be " -"strings." +msgid "If optional *charset* is specified, the parameter will be encoded according to :rfc:`2231`. Optional *language* specifies the RFC 2231 language, defaulting to the empty string. Both *charset* and *language* should be strings." msgstr "" -#: ../../library/email.compat32-message.rst:550 -msgid "" -"If *replace* is ``False`` (the default) the header is moved to the end of " -"the list of headers. If *replace* is ``True``, the header will be updated " -"in place." +msgid "If *replace* is ``False`` (the default) the header is moved to the end of the list of headers. If *replace* is ``True``, the header will be updated in place." msgstr "" -#: ../../library/email.compat32-message.rst:554 msgid "``replace`` keyword was added." msgstr "" -#: ../../library/email.compat32-message.rst:559 -msgid "" -"Remove the given parameter completely from the :mailheader:`Content-Type` " -"header. The header will be re-written in place without the parameter or its " -"value. All values will be quoted as necessary unless *requote* is ``False`` " -"(the default is ``True``). Optional *header* specifies an alternative " -"to :mailheader:`Content-Type`." +msgid "Remove the given parameter completely from the :mailheader:`Content-Type` header. The header will be re-written in place without the parameter or its value. All values will be quoted as necessary unless *requote* is ``False`` (the default is ``True``). Optional *header* specifies an alternative to :mailheader:`Content-Type`." msgstr "" -#: ../../library/email.compat32-message.rst:568 -msgid "" -"Set the main type and subtype for the :mailheader:`Content-Type` header. " -"*type* must be a string in the form :mimetype:`maintype/subtype`, otherwise " -"a :exc:`ValueError` is raised." +msgid "Set the main type and subtype for the :mailheader:`Content-Type` header. *type* must be a string in the form :mimetype:`maintype/subtype`, otherwise a :exc:`ValueError` is raised." msgstr "" -#: ../../library/email.compat32-message.rst:572 -msgid "" -"This method replaces the :mailheader:`Content-Type` header, keeping all the " -"parameters in place. If *requote* is ``False``, this leaves the existing " -"header's quoting as is, otherwise the parameters will be quoted (the " -"default)." +msgid "This method replaces the :mailheader:`Content-Type` header, keeping all the parameters in place. If *requote* is ``False``, this leaves the existing header's quoting as is, otherwise the parameters will be quoted (the default)." msgstr "" -#: ../../library/email.compat32-message.rst:577 -msgid "" -"An alternative header can be specified in the *header* argument. When " -"the :mailheader:`Content-Type` header is set a :mailheader:`MIME-Version` " -"header is also added." +msgid "An alternative header can be specified in the *header* argument. When the :mailheader:`Content-Type` header is set a :mailheader:`MIME-Version` header is also added." msgstr "" -#: ../../library/email.compat32-message.rst:581 -msgid "" -"This is a legacy method. On the :class:`~email.message.EmailMessage` class " -"its functionality is replaced by the ``make_`` and ``add_`` methods." +msgid "This is a legacy method. On the :class:`~email.message.EmailMessage` class its functionality is replaced by the ``make_`` and ``add_`` methods." msgstr "" -#: ../../library/email.compat32-message.rst:588 -msgid "" -"Return the value of the ``filename`` parameter of the :mailheader:`Content-" -"Disposition` header of the message. If the header does not have a " -"``filename`` parameter, this method falls back to looking for the ``name`` " -"parameter on the :mailheader:`Content-Type` header. If neither is found, or " -"the header is missing, then *failobj* is returned. The returned string will " -"always be unquoted as per :func:`email.utils.unquote`." +msgid "Return the value of the ``filename`` parameter of the :mailheader:`Content-Disposition` header of the message. If the header does not have a ``filename`` parameter, this method falls back to looking for the ``name`` parameter on the :mailheader:`Content-Type` header. If neither is found, or the header is missing, then *failobj* is returned. The returned string will always be unquoted as per :func:`email.utils.unquote`." msgstr "" -#: ../../library/email.compat32-message.rst:599 -msgid "" -"Return the value of the ``boundary`` parameter of the :mailheader:`Content-" -"Type` header of the message, or *failobj* if either the header is missing, " -"or has no ``boundary`` parameter. The returned string will always be " -"unquoted as per :func:`email.utils.unquote`." +msgid "Return the value of the ``boundary`` parameter of the :mailheader:`Content-Type` header of the message, or *failobj* if either the header is missing, or has no ``boundary`` parameter. The returned string will always be unquoted as per :func:`email.utils.unquote`." msgstr "" -#: ../../library/email.compat32-message.rst:607 -msgid "" -"Set the ``boundary`` parameter of the :mailheader:`Content-Type` header to " -"*boundary*. :meth:`set_boundary` will always quote *boundary* if " -"necessary. A :exc:`~email.errors.HeaderParseError` is raised if the message " -"object has no :mailheader:`Content-Type` header." +msgid "Set the ``boundary`` parameter of the :mailheader:`Content-Type` header to *boundary*. :meth:`set_boundary` will always quote *boundary* if necessary. A :exc:`~email.errors.HeaderParseError` is raised if the message object has no :mailheader:`Content-Type` header." msgstr "" -#: ../../library/email.compat32-message.rst:612 -msgid "" -"Note that using this method is subtly different than deleting the " -"old :mailheader:`Content-Type` header and adding a new one with the new " -"boundary via :meth:`add_header`, because :meth:`set_boundary` preserves the " -"order of the :mailheader:`Content-Type` header in the list of headers. " -"However, it does *not* preserve any continuation lines which may have been " -"present in the original :mailheader:`Content-Type` header." +msgid "Note that using this method is subtly different than deleting the old :mailheader:`Content-Type` header and adding a new one with the new boundary via :meth:`add_header`, because :meth:`set_boundary` preserves the order of the :mailheader:`Content-Type` header in the list of headers. However, it does *not* preserve any continuation lines which may have been present in the original :mailheader:`Content-Type` header." msgstr "" -#: ../../library/email.compat32-message.rst:622 -msgid "" -"Return the ``charset`` parameter of the :mailheader:`Content-Type` header, " -"coerced to lower case. If there is no :mailheader:`Content-Type` header, or " -"if that header has no ``charset`` parameter, *failobj* is returned." +msgid "Return the ``charset`` parameter of the :mailheader:`Content-Type` header, coerced to lower case. If there is no :mailheader:`Content-Type` header, or if that header has no ``charset`` parameter, *failobj* is returned." msgstr "" -#: ../../library/email.compat32-message.rst:626 -msgid "" -"Note that this method differs from :meth:`get_charset` which returns " -"the :class:`~email.charset.Charset` instance for the default encoding of the " -"message body." +msgid "Note that this method differs from :meth:`get_charset` which returns the :class:`~email.charset.Charset` instance for the default encoding of the message body." msgstr "" -#: ../../library/email.compat32-message.rst:632 -msgid "" -"Return a list containing the character set names in the message. If the " -"message is a :mimetype:`multipart`, then the list will contain one element " -"for each subpart in the payload, otherwise, it will be a list of length 1." +msgid "Return a list containing the character set names in the message. If the message is a :mimetype:`multipart`, then the list will contain one element for each subpart in the payload, otherwise, it will be a list of length 1." msgstr "" -#: ../../library/email.compat32-message.rst:636 -msgid "" -"Each item in the list will be a string which is the value of the ``charset`` " -"parameter in the :mailheader:`Content-Type` header for the represented " -"subpart. However, if the subpart has no :mailheader:`Content-Type` header, " -"no ``charset`` parameter, or is not of the :mimetype:`text` main MIME type, " -"then that item in the returned list will be *failobj*." +msgid "Each item in the list will be a string which is the value of the ``charset`` parameter in the :mailheader:`Content-Type` header for the represented subpart. However, if the subpart has no :mailheader:`Content-Type` header, no ``charset`` parameter, or is not of the :mimetype:`text` main MIME type, then that item in the returned list will be *failobj*." msgstr "" -#: ../../library/email.compat32-message.rst:646 -msgid "" -"Return the lowercased value (without parameters) of the " -"message's :mailheader:`Content-Disposition` header if it has one, or " -"``None``. The possible values for this method are *inline*, *attachment* or " -"``None`` if the message follows :rfc:`2183`." +msgid "Return the lowercased value (without parameters) of the message's :mailheader:`Content-Disposition` header if it has one, or ``None``. The possible values for this method are *inline*, *attachment* or ``None`` if the message follows :rfc:`2183`." msgstr "" -#: ../../library/email.compat32-message.rst:655 -msgid "" -"The :meth:`walk` method is an all-purpose generator which can be used to " -"iterate over all the parts and subparts of a message object tree, in depth-" -"first traversal order. You will typically use :meth:`walk` as the iterator " -"in a ``for`` loop; each iteration returns the next subpart." +msgid "The :meth:`walk` method is an all-purpose generator which can be used to iterate over all the parts and subparts of a message object tree, in depth-first traversal order. You will typically use :meth:`walk` as the iterator in a ``for`` loop; each iteration returns the next subpart." msgstr "" -#: ../../library/email.compat32-message.rst:660 -msgid "" -"Here's an example that prints the MIME type of every part of a multipart " -"message structure:" +msgid "Here's an example that prints the MIME type of every part of a multipart message structure:" msgstr "" -#: ../../library/email.compat32-message.rst:674 msgid "" ">>> for part in msg.walk():\n" "... print(part.get_content_type())\n" @@ -838,15 +365,9 @@ msgid "" "text/plain" msgstr "" -#: ../../library/email.compat32-message.rst:686 -msgid "" -"``walk`` iterates over the subparts of any part where :meth:`is_multipart` " -"returns ``True``, even though ``msg.get_content_maintype() == 'multipart'`` " -"may return ``False``. We can see this in our example by making use of the " -"``_structure`` debug helper function:" +msgid "``walk`` iterates over the subparts of any part where :meth:`is_multipart` returns ``True``, even though ``msg.get_content_maintype() == 'multipart'`` may return ``False``. We can see this in our example by making use of the ``_structure`` debug helper function:" msgstr "" -#: ../../library/email.compat32-message.rst:692 msgid "" ">>> for part in msg.walk():\n" "... print(part.get_content_maintype() == 'multipart',\n" @@ -868,66 +389,26 @@ msgid "" " text/plain" msgstr "" -#: ../../library/email.compat32-message.rst:713 -msgid "" -"Here the ``message`` parts are not ``multiparts``, but they do contain " -"subparts. ``is_multipart()`` returns ``True`` and ``walk`` descends into the " -"subparts." +msgid "Here the ``message`` parts are not ``multiparts``, but they do contain subparts. ``is_multipart()`` returns ``True`` and ``walk`` descends into the subparts." msgstr "" -#: ../../library/email.compat32-message.rst:718 -msgid "" -":class:`Message` objects can also optionally contain two instance " -"attributes, which can be used when generating the plain text of a MIME " -"message." +msgid ":class:`Message` objects can also optionally contain two instance attributes, which can be used when generating the plain text of a MIME message." msgstr "" -#: ../../library/email.compat32-message.rst:724 -msgid "" -"The format of a MIME document allows for some text between the blank line " -"following the headers, and the first multipart boundary string. Normally, " -"this text is never visible in a MIME-aware mail reader because it falls " -"outside the standard MIME armor. However, when viewing the raw text of the " -"message, or when viewing the message in a non-MIME aware reader, this text " -"can become visible." +msgid "The format of a MIME document allows for some text between the blank line following the headers, and the first multipart boundary string. Normally, this text is never visible in a MIME-aware mail reader because it falls outside the standard MIME armor. However, when viewing the raw text of the message, or when viewing the message in a non-MIME aware reader, this text can become visible." msgstr "" -#: ../../library/email.compat32-message.rst:731 -msgid "" -"The *preamble* attribute contains this leading extra-armor text for MIME " -"documents. When the :class:`~email.parser.Parser` discovers some text after " -"the headers but before the first boundary string, it assigns this text to " -"the message's *preamble* attribute. When " -"the :class:`~email.generator.Generator` is writing out the plain text " -"representation of a MIME message, and it finds the message has a *preamble* " -"attribute, it will write this text in the area between the headers and the " -"first boundary. See :mod:`email.parser` and :mod:`email.generator` for " -"details." -msgstr "" - -#: ../../library/email.compat32-message.rst:741 -msgid "" -"Note that if the message object has no preamble, the *preamble* attribute " -"will be ``None``." +msgid "The *preamble* attribute contains this leading extra-armor text for MIME documents. When the :class:`~email.parser.Parser` discovers some text after the headers but before the first boundary string, it assigns this text to the message's *preamble* attribute. When the :class:`~email.generator.Generator` is writing out the plain text representation of a MIME message, and it finds the message has a *preamble* attribute, it will write this text in the area between the headers and the first boundary. See :mod:`email.parser` and :mod:`email.generator` for details." msgstr "" -#: ../../library/email.compat32-message.rst:747 -msgid "" -"The *epilogue* attribute acts the same way as the *preamble* attribute, " -"except that it contains text that appears between the last boundary and the " -"end of the message." +msgid "Note that if the message object has no preamble, the *preamble* attribute will be ``None``." msgstr "" -#: ../../library/email.compat32-message.rst:751 -msgid "" -"You do not need to set the epilogue to the empty string in order for " -"the :class:`~email.generator.Generator` to print a newline at the end of the " -"file." +msgid "The *epilogue* attribute acts the same way as the *preamble* attribute, except that it contains text that appears between the last boundary and the end of the message." msgstr "" -#: ../../library/email.compat32-message.rst:758 -msgid "" -"The *defects* attribute contains a list of all the problems found when " -"parsing this message. See :mod:`email.errors` for a detailed description of " -"the possible parsing defects." +msgid "You do not need to set the epilogue to the empty string in order for the :class:`~email.generator.Generator` to print a newline at the end of the file." +msgstr "" + +msgid "The *defects* attribute contains a list of all the problems found when parsing this message. See :mod:`email.errors` for a detailed description of the possible parsing defects." msgstr "" diff --git a/library/email.contentmanager.po b/library/email.contentmanager.po index 412bf3c0..fd82902e 100644 --- a/library/email.contentmanager.po +++ b/library/email.contentmanager.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:04+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,275 +23,128 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/email.contentmanager.rst:2 msgid ":mod:`!email.contentmanager`: Managing MIME Content" msgstr "" -#: ../../library/email.contentmanager.rst:10 msgid "**Source code:** :source:`Lib/email/contentmanager.py`" msgstr "" -#: ../../library/email.contentmanager.rst:14 msgid "[1]_" msgstr "" -#: ../../library/email.contentmanager.rst:19 -msgid "" -"Base class for content managers. Provides the standard registry mechanisms " -"to register converters between MIME content and other representations, as " -"well as the ``get_content`` and ``set_content`` dispatch methods." +msgid "Base class for content managers. Provides the standard registry mechanisms to register converters between MIME content and other representations, as well as the ``get_content`` and ``set_content`` dispatch methods." msgstr "" -#: ../../library/email.contentmanager.rst:26 -msgid "" -"Look up a handler function based on the ``mimetype`` of *msg* (see next " -"paragraph), call it, passing through all arguments, and return the result of " -"the call. The expectation is that the handler will extract the payload from " -"*msg* and return an object that encodes information about the extracted data." +msgid "Look up a handler function based on the ``mimetype`` of *msg* (see next paragraph), call it, passing through all arguments, and return the result of the call. The expectation is that the handler will extract the payload from *msg* and return an object that encodes information about the extracted data." msgstr "" -#: ../../library/email.contentmanager.rst:32 -msgid "" -"To find the handler, look for the following keys in the registry, stopping " -"with the first one found:" +msgid "To find the handler, look for the following keys in the registry, stopping with the first one found:" msgstr "" -#: ../../library/email.contentmanager.rst:35 msgid "the string representing the full MIME type (``maintype/subtype``)" msgstr "" -#: ../../library/email.contentmanager.rst:36 msgid "the string representing the ``maintype``" msgstr "" -#: ../../library/email.contentmanager.rst:37 msgid "the empty string" msgstr "" -#: ../../library/email.contentmanager.rst:39 -msgid "" -"If none of these keys produce a handler, raise a :exc:`KeyError` for the " -"full MIME type." +msgid "If none of these keys produce a handler, raise a :exc:`KeyError` for the full MIME type." msgstr "" -#: ../../library/email.contentmanager.rst:45 -msgid "" -"If the ``maintype`` is ``multipart``, raise a :exc:`TypeError`; otherwise " -"look up a handler function based on the type of *obj* (see next paragraph), " -"call :meth:`~email.message.EmailMessage.clear_content` on the *msg*, and " -"call the handler function, passing through all arguments. The expectation " -"is that the handler will transform and store *obj* into *msg*, possibly " -"making other changes to *msg* as well, such as adding various MIME headers " -"to encode information needed to interpret the stored data." +msgid "If the ``maintype`` is ``multipart``, raise a :exc:`TypeError`; otherwise look up a handler function based on the type of *obj* (see next paragraph), call :meth:`~email.message.EmailMessage.clear_content` on the *msg*, and call the handler function, passing through all arguments. The expectation is that the handler will transform and store *obj* into *msg*, possibly making other changes to *msg* as well, such as adding various MIME headers to encode information needed to interpret the stored data." msgstr "" -#: ../../library/email.contentmanager.rst:54 -msgid "" -"To find the handler, obtain the type of *obj* (``typ = type(obj)``), and " -"look for the following keys in the registry, stopping with the first one " -"found:" +msgid "To find the handler, obtain the type of *obj* (``typ = type(obj)``), and look for the following keys in the registry, stopping with the first one found:" msgstr "" -#: ../../library/email.contentmanager.rst:58 msgid "the type itself (``typ``)" msgstr "" -#: ../../library/email.contentmanager.rst:59 -msgid "" -"the type's fully qualified name (``typ.__module__ + '.' + " -"typ.__qualname__``)." +msgid "the type's fully qualified name (``typ.__module__ + '.' + typ.__qualname__``)." msgstr "" -#: ../../library/email.contentmanager.rst:61 msgid "the type's :attr:`qualname ` (``typ.__qualname__``)" msgstr "" -#: ../../library/email.contentmanager.rst:62 msgid "the type's :attr:`name ` (``typ.__name__``)." msgstr "" -#: ../../library/email.contentmanager.rst:64 -msgid "" -"If none of the above match, repeat all of the checks above for each of the " -"types in the :term:`MRO` (:attr:`typ.__mro__ `). Finally, if " -"no other key yields a handler, check for a handler for the key ``None``. If " -"there is no handler for ``None``, raise a :exc:`KeyError` for the fully " -"qualified name of the type." +msgid "If none of the above match, repeat all of the checks above for each of the types in the :term:`MRO` (:attr:`typ.__mro__ `). Finally, if no other key yields a handler, check for a handler for the key ``None``. If there is no handler for ``None``, raise a :exc:`KeyError` for the fully qualified name of the type." msgstr "" -#: ../../library/email.contentmanager.rst:71 -msgid "" -"Also add a :mailheader:`MIME-Version` header if one is not present (see " -"also :class:`.MIMEPart`)." +msgid "Also add a :mailheader:`MIME-Version` header if one is not present (see also :class:`.MIMEPart`)." msgstr "" -#: ../../library/email.contentmanager.rst:77 -msgid "" -"Record the function *handler* as the handler for *key*. For the possible " -"values of *key*, see :meth:`get_content`." +msgid "Record the function *handler* as the handler for *key*. For the possible values of *key*, see :meth:`get_content`." msgstr "" -#: ../../library/email.contentmanager.rst:83 -msgid "" -"Record *handler* as the function to call when an object of a type matching " -"*typekey* is passed to :meth:`set_content`. For the possible values of " -"*typekey*, see :meth:`set_content`." +msgid "Record *handler* as the function to call when an object of a type matching *typekey* is passed to :meth:`set_content`. For the possible values of *typekey*, see :meth:`set_content`." msgstr "" -#: ../../library/email.contentmanager.rst:89 msgid "Content Manager Instances" msgstr "" -#: ../../library/email.contentmanager.rst:91 -msgid "" -"Currently the email package provides only one concrete content " -"manager, :data:`raw_data_manager`, although more may be added in the " -"future. :data:`raw_data_manager` is " -"the :attr:`~email.policy.EmailPolicy.content_manager` provided " -"by :attr:`~email.policy.EmailPolicy` and its derivatives." +msgid "Currently the email package provides only one concrete content manager, :data:`raw_data_manager`, although more may be added in the future. :data:`raw_data_manager` is the :attr:`~email.policy.EmailPolicy.content_manager` provided by :attr:`~email.policy.EmailPolicy` and its derivatives." msgstr "" -#: ../../library/email.contentmanager.rst:100 -msgid "" -"This content manager provides only a minimum interface beyond that provided " -"by :class:`~email.message.Message` itself: it deals only with text, raw " -"byte strings, and :class:`~email.message.Message` objects. Nevertheless, it " -"provides significant advantages compared to the base API: ``get_content`` on " -"a text part will return a unicode string without the application needing to " -"manually decode it, ``set_content`` provides a rich set of options for " -"controlling the headers added to a part and controlling the content transfer " -"encoding, and it enables the use of the various ``add_`` methods, thereby " -"simplifying the creation of multipart messages." -msgstr "" - -#: ../../library/email.contentmanager.rst:112 -msgid "" -"Return the payload of the part as either a string (for ``text`` parts), " -"an :class:`~email.message.EmailMessage` object (for ``message/rfc822`` " -"parts), or a ``bytes`` object (for all other non-multipart types). Raise " -"a :exc:`KeyError` if called on a ``multipart``. If the part is a ``text`` " -"part and *errors* is specified, use it as the error handler when decoding " -"the payload to unicode. The default error handler is ``replace``." +msgid "This content manager provides only a minimum interface beyond that provided by :class:`~email.message.Message` itself: it deals only with text, raw byte strings, and :class:`~email.message.Message` objects. Nevertheless, it provides significant advantages compared to the base API: ``get_content`` on a text part will return a unicode string without the application needing to manually decode it, ``set_content`` provides a rich set of options for controlling the headers added to a part and controlling the content transfer encoding, and it enables the use of the various ``add_`` methods, thereby simplifying the creation of multipart messages." +msgstr "" + +msgid "Return the payload of the part as either a string (for ``text`` parts), an :class:`~email.message.EmailMessage` object (for ``message/rfc822`` parts), or a ``bytes`` object (for all other non-multipart types). Raise a :exc:`KeyError` if called on a ``multipart``. If the part is a ``text`` part and *errors* is specified, use it as the error handler when decoding the payload to unicode. The default error handler is ``replace``." msgstr "" -#: ../../library/email.contentmanager.rst:131 msgid "Add headers and payload to *msg*:" msgstr "" -#: ../../library/email.contentmanager.rst:133 -msgid "" -"Add a :mailheader:`Content-Type` header with a ``maintype/subtype`` value." +msgid "Add a :mailheader:`Content-Type` header with a ``maintype/subtype`` value." msgstr "" -#: ../../library/email.contentmanager.rst:136 -msgid "" -"For ``str``, set the MIME ``maintype`` to ``text``, and set the subtype to " -"*subtype* if it is specified, or ``plain`` if it is not." +msgid "For ``str``, set the MIME ``maintype`` to ``text``, and set the subtype to *subtype* if it is specified, or ``plain`` if it is not." msgstr "" -#: ../../library/email.contentmanager.rst:138 -msgid "" -"For ``bytes``, use the specified *maintype* and *subtype*, or raise " -"a :exc:`TypeError` if they are not specified." +msgid "For ``bytes``, use the specified *maintype* and *subtype*, or raise a :exc:`TypeError` if they are not specified." msgstr "" -#: ../../library/email.contentmanager.rst:140 -msgid "" -"For :class:`~email.message.EmailMessage` objects, set the maintype to " -"``message``, and set the subtype to *subtype* if it is specified or " -"``rfc822`` if it is not. If *subtype* is ``partial``, raise an error " -"(``bytes`` objects must be used to construct ``message/partial`` parts)." +msgid "For :class:`~email.message.EmailMessage` objects, set the maintype to ``message``, and set the subtype to *subtype* if it is specified or ``rfc822`` if it is not. If *subtype* is ``partial``, raise an error (``bytes`` objects must be used to construct ``message/partial`` parts)." msgstr "" -#: ../../library/email.contentmanager.rst:146 -msgid "" -"If *charset* is provided (which is valid only for ``str``), encode the " -"string to bytes using the specified character set. The default is " -"``utf-8``. If the specified *charset* is a known alias for a standard MIME " -"charset name, use the standard charset instead." +msgid "If *charset* is provided (which is valid only for ``str``), encode the string to bytes using the specified character set. The default is ``utf-8``. If the specified *charset* is a known alias for a standard MIME charset name, use the standard charset instead." msgstr "" -#: ../../library/email.contentmanager.rst:151 -msgid "" -"If *cte* is set, encode the payload using the specified content transfer " -"encoding, and set the :mailheader:`Content-Transfer-Encoding` header to that " -"value. Possible values for *cte* are ``quoted-printable``, ``base64``, " -"``7bit``, ``8bit``, and ``binary``. If the input cannot be encoded in the " -"specified encoding (for example, specifying a *cte* of ``7bit`` for an input " -"that contains non-ASCII values), raise a :exc:`ValueError`." +msgid "If *cte* is set, encode the payload using the specified content transfer encoding, and set the :mailheader:`Content-Transfer-Encoding` header to that value. Possible values for *cte* are ``quoted-printable``, ``base64``, ``7bit``, ``8bit``, and ``binary``. If the input cannot be encoded in the specified encoding (for example, specifying a *cte* of ``7bit`` for an input that contains non-ASCII values), raise a :exc:`ValueError`." msgstr "" -#: ../../library/email.contentmanager.rst:159 -msgid "" -"For ``str`` objects, if *cte* is not set use heuristics to determine the " -"most compact encoding. Prior to encoding, :meth:`str.splitlines` is used to " -"normalize all line boundaries, ensuring that each line of the payload is " -"terminated by the current policy's :data:`~email.policy.Policy.linesep` " -"property (even if the original string did not end with one)." +msgid "For ``str`` objects, if *cte* is not set use heuristics to determine the most compact encoding. Prior to encoding, :meth:`str.splitlines` is used to normalize all line boundaries, ensuring that each line of the payload is terminated by the current policy's :data:`~email.policy.Policy.linesep` property (even if the original string did not end with one)." msgstr "" -#: ../../library/email.contentmanager.rst:165 -msgid "" -"For ``bytes`` objects, *cte* is taken to be base64 if not set, and the " -"aforementioned newline translation is not performed." +msgid "For ``bytes`` objects, *cte* is taken to be base64 if not set, and the aforementioned newline translation is not performed." msgstr "" -#: ../../library/email.contentmanager.rst:167 -msgid "" -"For :class:`~email.message.EmailMessage`, per :rfc:`2046`, raise an error if " -"a *cte* of ``quoted-printable`` or ``base64`` is requested for *subtype* " -"``rfc822``, and for any *cte* other than ``7bit`` for *subtype* ``external-" -"body``. For ``message/rfc822``, use ``8bit`` if *cte* is not specified. " -"For all other values of *subtype*, use ``7bit``." +msgid "For :class:`~email.message.EmailMessage`, per :rfc:`2046`, raise an error if a *cte* of ``quoted-printable`` or ``base64`` is requested for *subtype* ``rfc822``, and for any *cte* other than ``7bit`` for *subtype* ``external-body``. For ``message/rfc822``, use ``8bit`` if *cte* is not specified. For all other values of *subtype*, use ``7bit``." msgstr "" -#: ../../library/email.contentmanager.rst:174 -msgid "" -"A *cte* of ``binary`` does not actually work correctly yet. The " -"``EmailMessage`` object as modified by ``set_content`` is correct, " -"but :class:`~email.generator.BytesGenerator` does not serialize it correctly." +msgid "A *cte* of ``binary`` does not actually work correctly yet. The ``EmailMessage`` object as modified by ``set_content`` is correct, but :class:`~email.generator.BytesGenerator` does not serialize it correctly." msgstr "" -#: ../../library/email.contentmanager.rst:179 -msgid "" -"If *disposition* is set, use it as the value of the :mailheader:`Content-" -"Disposition` header. If not specified, and *filename* is specified, add the " -"header with the value ``attachment``. If *disposition* is not specified and " -"*filename* is also not specified, do not add the header. The only valid " -"values for *disposition* are ``attachment`` and ``inline``." +msgid "If *disposition* is set, use it as the value of the :mailheader:`Content-Disposition` header. If not specified, and *filename* is specified, add the header with the value ``attachment``. If *disposition* is not specified and *filename* is also not specified, do not add the header. The only valid values for *disposition* are ``attachment`` and ``inline``." msgstr "" -#: ../../library/email.contentmanager.rst:186 -msgid "" -"If *filename* is specified, use it as the value of the ``filename`` " -"parameter of the :mailheader:`Content-Disposition` header." +msgid "If *filename* is specified, use it as the value of the ``filename`` parameter of the :mailheader:`Content-Disposition` header." msgstr "" -#: ../../library/email.contentmanager.rst:189 -msgid "" -"If *cid* is specified, add a :mailheader:`Content-ID` header with *cid* as " -"its value." +msgid "If *cid* is specified, add a :mailheader:`Content-ID` header with *cid* as its value." msgstr "" -#: ../../library/email.contentmanager.rst:192 -msgid "" -"If *params* is specified, iterate its ``items`` method and use the resulting " -"``(key, value)`` pairs to set additional parameters on " -"the :mailheader:`Content-Type` header." +msgid "If *params* is specified, iterate its ``items`` method and use the resulting ``(key, value)`` pairs to set additional parameters on the :mailheader:`Content-Type` header." msgstr "" -#: ../../library/email.contentmanager.rst:196 -msgid "" -"If *headers* is specified and is a list of strings of the form ``headername: " -"headervalue`` or a list of ``header`` objects (distinguished from strings by " -"having a ``name`` attribute), add the headers to *msg*." +msgid "If *headers* is specified and is a list of strings of the form ``headername: headervalue`` or a list of ``header`` objects (distinguished from strings by having a ``name`` attribute), add the headers to *msg*." msgstr "" -#: ../../library/email.contentmanager.rst:203 msgid "Footnotes" msgstr "" -#: ../../library/email.contentmanager.rst:204 -msgid "" -"Originally added in 3.4 as a :term:`provisional module `" +msgid "Originally added in 3.4 as a :term:`provisional module `" msgstr "" diff --git a/library/email.encoders.po b/library/email.encoders.po index c82d27fe..8dfdd5f2 100644 --- a/library/email.encoders.po +++ b/library/email.encoders.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:04+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,102 +23,47 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/email.encoders.rst:2 msgid ":mod:`!email.encoders`: Encoders" msgstr "" -#: ../../library/email.encoders.rst:7 msgid "**Source code:** :source:`Lib/email/encoders.py`" msgstr "" -#: ../../library/email.encoders.rst:11 -msgid "" -"This module is part of the legacy (``Compat32``) email API. In the new API " -"the functionality is provided by the *cte* parameter of " -"the :meth:`~email.message.EmailMessage.set_content` method." +msgid "This module is part of the legacy (``Compat32``) email API. In the new API the functionality is provided by the *cte* parameter of the :meth:`~email.message.EmailMessage.set_content` method." msgstr "" -#: ../../library/email.encoders.rst:15 -msgid "" -"This module is deprecated in Python 3. The functions provided here should " -"not be called explicitly since the :class:`~email.mime.text.MIMEText` class " -"sets the content type and CTE header using the *_subtype* and *_charset* " -"values passed during the instantiation of that class." +msgid "This module is deprecated in Python 3. The functions provided here should not be called explicitly since the :class:`~email.mime.text.MIMEText` class sets the content type and CTE header using the *_subtype* and *_charset* values passed during the instantiation of that class." msgstr "" -#: ../../library/email.encoders.rst:20 -msgid "" -"The remaining text in this section is the original documentation of the " -"module." +msgid "The remaining text in this section is the original documentation of the module." msgstr "" -#: ../../library/email.encoders.rst:22 -msgid "" -"When creating :class:`~email.message.Message` objects from scratch, you " -"often need to encode the payloads for transport through compliant mail " -"servers. This is especially true for :mimetype:`image/\\*` " -"and :mimetype:`text/\\*` type messages containing binary data." +msgid "When creating :class:`~email.message.Message` objects from scratch, you often need to encode the payloads for transport through compliant mail servers. This is especially true for :mimetype:`image/\\*` and :mimetype:`text/\\*` type messages containing binary data." msgstr "" -#: ../../library/email.encoders.rst:27 -msgid "" -"The :mod:`email` package provides some convenient encoders in its :mod:`!" -"encoders` module. These encoders are actually used by " -"the :class:`~email.mime.audio.MIMEAudio` " -"and :class:`~email.mime.image.MIMEImage` class constructors to provide " -"default encodings. All encoder functions take exactly one argument, the " -"message object to encode. They usually extract the payload, encode it, and " -"reset the payload to this newly encoded value. They should also set " -"the :mailheader:`Content-Transfer-Encoding` header as appropriate." +msgid "The :mod:`email` package provides some convenient encoders in its :mod:`!encoders` module. These encoders are actually used by the :class:`~email.mime.audio.MIMEAudio` and :class:`~email.mime.image.MIMEImage` class constructors to provide default encodings. All encoder functions take exactly one argument, the message object to encode. They usually extract the payload, encode it, and reset the payload to this newly encoded value. They should also set the :mailheader:`Content-Transfer-Encoding` header as appropriate." msgstr "" -#: ../../library/email.encoders.rst:35 -msgid "" -"Note that these functions are not meaningful for a multipart message. They " -"must be applied to individual subparts instead, and will raise " -"a :exc:`TypeError` if passed a message whose type is multipart." +msgid "Note that these functions are not meaningful for a multipart message. They must be applied to individual subparts instead, and will raise a :exc:`TypeError` if passed a message whose type is multipart." msgstr "" -#: ../../library/email.encoders.rst:39 msgid "Here are the encoding functions provided:" msgstr "" -#: ../../library/email.encoders.rst:44 -msgid "" -"Encodes the payload into quoted-printable form and sets " -"the :mailheader:`Content-Transfer-Encoding` header to ``quoted-printable`` " -"[#]_. This is a good encoding to use when most of your payload is normal " -"printable data, but contains a few unprintable characters." +msgid "Encodes the payload into quoted-printable form and sets the :mailheader:`Content-Transfer-Encoding` header to ``quoted-printable`` [#]_. This is a good encoding to use when most of your payload is normal printable data, but contains a few unprintable characters." msgstr "" -#: ../../library/email.encoders.rst:52 -msgid "" -"Encodes the payload into base64 form and sets the :mailheader:`Content-" -"Transfer-Encoding` header to ``base64``. This is a good encoding to use " -"when most of your payload is unprintable data since it is a more compact " -"form than quoted-printable. The drawback of base64 encoding is that it " -"renders the text non-human readable." +msgid "Encodes the payload into base64 form and sets the :mailheader:`Content-Transfer-Encoding` header to ``base64``. This is a good encoding to use when most of your payload is unprintable data since it is a more compact form than quoted-printable. The drawback of base64 encoding is that it renders the text non-human readable." msgstr "" -#: ../../library/email.encoders.rst:61 -msgid "" -"This doesn't actually modify the message's payload, but it does set " -"the :mailheader:`Content-Transfer-Encoding` header to either ``7bit`` or " -"``8bit`` as appropriate, based on the payload data." +msgid "This doesn't actually modify the message's payload, but it does set the :mailheader:`Content-Transfer-Encoding` header to either ``7bit`` or ``8bit`` as appropriate, based on the payload data." msgstr "" -#: ../../library/email.encoders.rst:68 -msgid "" -"This does nothing; it doesn't even set the :mailheader:`Content-Transfer-" -"Encoding` header." +msgid "This does nothing; it doesn't even set the :mailheader:`Content-Transfer-Encoding` header." msgstr "" -#: ../../library/email.encoders.rst:72 msgid "Footnotes" msgstr "" -#: ../../library/email.encoders.rst:73 -msgid "" -"Note that encoding with :meth:`encode_quopri` also encodes all tabs and " -"space characters in the data." +msgid "Note that encoding with :meth:`encode_quopri` also encodes all tabs and space characters in the data." msgstr "" diff --git a/library/email.errors.po b/library/email.errors.po index 2e88ad9c..fd9f8164 100644 --- a/library/email.errors.po +++ b/library/email.errors.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:05+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,166 +21,80 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/email.errors.rst:2 msgid ":mod:`!email.errors`: Exception and Defect classes" msgstr "" -#: ../../library/email.errors.rst:7 msgid "**Source code:** :source:`Lib/email/errors.py`" msgstr "" -#: ../../library/email.errors.rst:11 -msgid "" -"The following exception classes are defined in the :mod:`!email.errors` " -"module:" +msgid "The following exception classes are defined in the :mod:`!email.errors` module:" msgstr "" -#: ../../library/email.errors.rst:16 -msgid "" -"This is the base class for all exceptions that the :mod:`email` package can " -"raise. It is derived from the standard :exc:`Exception` class and defines " -"no additional methods." +msgid "This is the base class for all exceptions that the :mod:`email` package can raise. It is derived from the standard :exc:`Exception` class and defines no additional methods." msgstr "" -#: ../../library/email.errors.rst:23 -msgid "" -"This is the base class for exceptions raised by " -"the :class:`~email.parser.Parser` class. It is derived " -"from :exc:`MessageError`. This class is also used internally by the parser " -"used by :mod:`~email.headerregistry`." +msgid "This is the base class for exceptions raised by the :class:`~email.parser.Parser` class. It is derived from :exc:`MessageError`. This class is also used internally by the parser used by :mod:`~email.headerregistry`." +msgstr "" + +msgid "Raised under some error conditions when parsing the :rfc:`5322` headers of a message, this class is derived from :exc:`MessageParseError`. The :meth:`~email.message.EmailMessage.set_boundary` method will raise this error if the content type is unknown when the method is called. :class:`~email.header.Header` may raise this error for certain base64 decoding errors, and when an attempt is made to create a header that appears to contain an embedded header (that is, there is what is supposed to be a continuation line that has no leading whitespace and looks like a header)." msgstr "" -#: ../../library/email.errors.rst:31 -msgid "" -"Raised under some error conditions when parsing the :rfc:`5322` headers of a " -"message, this class is derived from :exc:`MessageParseError`. " -"The :meth:`~email.message.EmailMessage.set_boundary` method will raise this " -"error if the content type is unknown when the method is " -"called. :class:`~email.header.Header` may raise this error for certain " -"base64 decoding errors, and when an attempt is made to create a header that " -"appears to contain an embedded header (that is, there is what is supposed to " -"be a continuation line that has no leading whitespace and looks like a " -"header)." -msgstr "" - -#: ../../library/email.errors.rst:43 msgid "Deprecated and no longer used." msgstr "" -#: ../../library/email.errors.rst:48 -msgid "" -"Raised if the :meth:`~email.message.Message.attach` method is called on an " -"instance of a class derived " -"from :class:`~email.mime.nonmultipart.MIMENonMultipart` " -"(e.g. :class:`~email.mime.image.MIMEImage`). :exc:`MultipartConversionError` " -"multiply inherits from :exc:`MessageError` and the built-in :exc:`TypeError`." +msgid "Raised if the :meth:`~email.message.Message.attach` method is called on an instance of a class derived from :class:`~email.mime.nonmultipart.MIMENonMultipart` (e.g. :class:`~email.mime.image.MIMEImage`). :exc:`MultipartConversionError` multiply inherits from :exc:`MessageError` and the built-in :exc:`TypeError`." msgstr "" -#: ../../library/email.errors.rst:58 -msgid "" -"Raised when an error occurs when the :mod:`~email.generator` outputs headers." +msgid "Raised when an error occurs when the :mod:`~email.generator` outputs headers." msgstr "" -#: ../../library/email.errors.rst:64 -msgid "" -"This is the base class for all defects found when parsing email messages. It " -"is derived from :exc:`ValueError`." +msgid "This is the base class for all defects found when parsing email messages. It is derived from :exc:`ValueError`." msgstr "" -#: ../../library/email.errors.rst:69 -msgid "" -"This is the base class for all defects found when parsing email headers. It " -"is derived from :exc:`MessageDefect`." +msgid "This is the base class for all defects found when parsing email headers. It is derived from :exc:`MessageDefect`." msgstr "" -#: ../../library/email.errors.rst:72 -msgid "" -"Here is the list of the defects that the :class:`~email.parser.FeedParser` " -"can find while parsing messages. Note that the defects are added to the " -"message where the problem was found, so for example, if a message nested " -"inside a :mimetype:`multipart/alternative` had a malformed header, that " -"nested message object would have a defect, but the containing messages would " -"not." +msgid "Here is the list of the defects that the :class:`~email.parser.FeedParser` can find while parsing messages. Note that the defects are added to the message where the problem was found, so for example, if a message nested inside a :mimetype:`multipart/alternative` had a malformed header, that nested message object would have a defect, but the containing messages would not." msgstr "" -#: ../../library/email.errors.rst:78 -msgid "" -"All defect classes are subclassed from :class:`email.errors.MessageDefect`." +msgid "All defect classes are subclassed from :class:`email.errors.MessageDefect`." msgstr "" -#: ../../library/email.errors.rst:82 -msgid "" -"A message claimed to be a multipart, but had no :mimetype:`boundary` " -"parameter." +msgid "A message claimed to be a multipart, but had no :mimetype:`boundary` parameter." msgstr "" -#: ../../library/email.errors.rst:87 -msgid "" -"The start boundary claimed in the :mailheader:`Content-Type` header was " -"never found." +msgid "The start boundary claimed in the :mailheader:`Content-Type` header was never found." msgstr "" -#: ../../library/email.errors.rst:92 -msgid "" -"A start boundary was found, but no corresponding close boundary was ever " -"found." +msgid "A start boundary was found, but no corresponding close boundary was ever found." msgstr "" -#: ../../library/email.errors.rst:99 msgid "The message had a continuation line as its first header line." msgstr "" -#: ../../library/email.errors.rst:103 msgid "A \"Unix From\" header was found in the middle of a header block." msgstr "" -#: ../../library/email.errors.rst:107 -msgid "" -"A line was found while parsing headers that had no leading white space but " -"contained no ':'. Parsing continues assuming that the line represents the " -"first line of the body." +msgid "A line was found while parsing headers that had no leading white space but contained no ':'. Parsing continues assuming that the line represents the first line of the body." msgstr "" -#: ../../library/email.errors.rst:115 -msgid "" -"A header was found that was missing a colon, or was otherwise malformed." +msgid "A header was found that was missing a colon, or was otherwise malformed." msgstr "" -#: ../../library/email.errors.rst:117 msgid "This defect has not been used for several Python versions." msgstr "" -#: ../../library/email.errors.rst:122 -msgid "" -"A message claimed to be a :mimetype:`multipart`, but no subparts were found. " -"Note that when a message has this defect, " -"its :meth:`~email.message.Message.is_multipart` method may return ``False`` " -"even though its content type claims to be :mimetype:`multipart`." +msgid "A message claimed to be a :mimetype:`multipart`, but no subparts were found. Note that when a message has this defect, its :meth:`~email.message.Message.is_multipart` method may return ``False`` even though its content type claims to be :mimetype:`multipart`." msgstr "" -#: ../../library/email.errors.rst:129 -msgid "" -"When decoding a block of base64 encoded bytes, the padding was not correct. " -"Enough padding is added to perform the decode, but the resulting decoded " -"bytes may be invalid." +msgid "When decoding a block of base64 encoded bytes, the padding was not correct. Enough padding is added to perform the decode, but the resulting decoded bytes may be invalid." msgstr "" -#: ../../library/email.errors.rst:135 -msgid "" -"When decoding a block of base64 encoded bytes, characters outside the base64 " -"alphabet were encountered. The characters are ignored, but the resulting " -"decoded bytes may be invalid." +msgid "When decoding a block of base64 encoded bytes, characters outside the base64 alphabet were encountered. The characters are ignored, but the resulting decoded bytes may be invalid." msgstr "" -#: ../../library/email.errors.rst:141 -msgid "" -"When decoding a block of base64 encoded bytes, the number of non-padding " -"base64 characters was invalid (1 more than a multiple of 4). The encoded " -"block was kept as-is." +msgid "When decoding a block of base64 encoded bytes, the number of non-padding base64 characters was invalid (1 more than a multiple of 4). The encoded block was kept as-is." msgstr "" -#: ../../library/email.errors.rst:147 -msgid "" -"When decoding an invalid or unparsable date field. The original value is " -"kept as-is." +msgid "When decoding an invalid or unparsable date field. The original value is kept as-is." msgstr "" diff --git a/library/email.examples.po b/library/email.examples.po index 03d48440..44197932 100644 --- a/library/email.examples.po +++ b/library/email.examples.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:05+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,23 +23,15 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/email.examples.rst:4 msgid ":mod:`email`: Examples" msgstr "" -#: ../../library/email.examples.rst:6 -msgid "" -"Here are a few examples of how to use the :mod:`email` package to read, " -"write, and send simple email messages, as well as more complex MIME messages." +msgid "Here are a few examples of how to use the :mod:`email` package to read, write, and send simple email messages, as well as more complex MIME messages." msgstr "" -#: ../../library/email.examples.rst:9 -msgid "" -"First, let's see how to create and send a simple text message (both the text " -"content and the addresses may contain unicode characters):" +msgid "First, let's see how to create and send a simple text message (both the text content and the addresses may contain unicode characters):" msgstr "" -#: ../../library/email.examples.rst:12 msgid "" "# Import smtplib for the actual sending function\n" "import smtplib\n" @@ -65,13 +57,9 @@ msgid "" "s.quit()\n" msgstr "" -#: ../../library/email.examples.rst:15 -msgid "" -"Parsing :rfc:`822` headers can easily be done by the using the classes from " -"the :mod:`~email.parser` module:" +msgid "Parsing :rfc:`822` headers can easily be done by the using the classes from the :mod:`~email.parser` module:" msgstr "" -#: ../../library/email.examples.rst:18 msgid "" "# Import the email modules we'll need\n" "#from email.parser import BytesParser\n" @@ -100,13 +88,9 @@ msgid "" "print('Sender name: {}'.format(headers['from'].addresses[0].display_name))\n" msgstr "" -#: ../../library/email.examples.rst:21 -msgid "" -"Here's an example of how to send a MIME message containing a bunch of family " -"pictures that may be residing in a directory:" +msgid "Here's an example of how to send a MIME message containing a bunch of family pictures that may be residing in a directory:" msgstr "" -#: ../../library/email.examples.rst:24 msgid "" "# Import smtplib for the actual sending function.\n" "import smtplib\n" @@ -136,13 +120,9 @@ msgid "" " s.send_message(msg)\n" msgstr "" -#: ../../library/email.examples.rst:27 -msgid "" -"Here's an example of how to send the entire contents of a directory as an " -"email message: [1]_" +msgid "Here's an example of how to send the entire contents of a directory as an email message: [1]_" msgstr "" -#: ../../library/email.examples.rst:30 msgid "" "#!/usr/bin/env python3\n" "\n" @@ -162,24 +142,18 @@ msgid "" "def main():\n" " parser = ArgumentParser(description=\"\"\"\\\n" "Send the contents of a directory as a MIME message.\n" -"Unless the -o option is given, the email is sent by forwarding to your " -"local\n" -"SMTP server, which then does the normal delivery process. Your local " -"machine\n" +"Unless the -o option is given, the email is sent by forwarding to your local\n" +"SMTP server, which then does the normal delivery process. Your local machine\n" "must be running an SMTP server.\n" "\"\"\")\n" " parser.add_argument('-d', '--directory',\n" -" help=\"\"\"Mail the contents of the specified " -"directory,\n" -" otherwise use the current directory. Only the " -"regular\n" -" files in the directory are sent, and we don't " -"recurse to\n" +" help=\"\"\"Mail the contents of the specified directory,\n" +" otherwise use the current directory. Only the regular\n" +" files in the directory are sent, and we don't recurse to\n" " subdirectories.\"\"\")\n" " parser.add_argument('-o', '--output',\n" " metavar='FILE',\n" -" help=\"\"\"Print the composed message to FILE " -"instead of\n" +" help=\"\"\"Print the composed message to FILE instead of\n" " sending the message to the SMTP server.\"\"\")\n" " parser.add_argument('-s', '--sender', required=True,\n" " help='The value of the From: header (required)')\n" @@ -207,8 +181,7 @@ msgid "" " # gzip'd or compressed files.\n" " ctype, encoding = mimetypes.guess_file_type(path)\n" " if ctype is None or encoding is not None:\n" -" # No guess could be made, or the file is encoded (compressed), " -"so\n" +" # No guess could be made, or the file is encoded (compressed), so\n" " # use a generic bag-of-bits type.\n" " ctype = 'application/octet-stream'\n" " maintype, subtype = ctype.split('/', 1)\n" @@ -230,13 +203,9 @@ msgid "" " main()\n" msgstr "" -#: ../../library/email.examples.rst:33 -msgid "" -"Here's an example of how to unpack a MIME message like the one above, into a " -"directory of files:" +msgid "Here's an example of how to unpack a MIME message like the one above, into a directory of files:" msgstr "" -#: ../../library/email.examples.rst:36 msgid "" "#!/usr/bin/env python3\n" "\n" @@ -257,8 +226,7 @@ msgid "" "\"\"\")\n" " parser.add_argument('-d', '--directory', required=True,\n" " help=\"\"\"Unpack the MIME message into the named\n" -" directory, which will be created if it doesn't " -"already\n" +" directory, which will be created if it doesn't already\n" " exist.\"\"\")\n" " parser.add_argument('msgfile')\n" " args = parser.parse_args()\n" @@ -294,15 +262,9 @@ msgid "" " main()\n" msgstr "" -#: ../../library/email.examples.rst:39 -msgid "" -"Here's an example of how to create an HTML message with an alternative plain " -"text version. To make things a bit more interesting, we include a related " -"image in the html part, and we save a copy of what we are going to send to " -"disk, as well as sending it." +msgid "Here's an example of how to create an HTML message with an alternative plain text version. To make things a bit more interesting, we include a related image in the html part, and we save a copy of what we are going to send to disk, as well as sending it." msgstr "" -#: ../../library/email.examples.rst:44 msgid "" "#!/usr/bin/env python3\n" "\n" @@ -328,10 +290,8 @@ msgid "" "--Pepé\n" "\"\"\")\n" "\n" -"# Add the html version. This converts the message into a multipart/" -"alternative\n" -"# container, with the original text message as the first part and the new " -"html\n" +"# Add the html version. This converts the message into a multipart/alternative\n" +"# container, with the original text message as the first part and the new html\n" "# message as the second part.\n" "asparagus_cid = make_msgid()\n" "msg.add_alternative(\"\"\"\\\n" @@ -340,8 +300,7 @@ msgid "" " \n" "

Salut!

\n" "

Cette\n" -" \n" +" \n" " recette\n" " sera sûrement un très bon repas.\n" "

\n" @@ -365,13 +324,9 @@ msgid "" " s.send_message(msg)\n" msgstr "" -#: ../../library/email.examples.rst:47 -msgid "" -"If we were sent the message from the last example, here is one way we could " -"process it:" +msgid "If we were sent the message from the last example, here is one way we could process it:" msgstr "" -#: ../../library/email.examples.rst:50 msgid "" "import os\n" "import sys\n" @@ -387,8 +342,7 @@ msgid "" "def magic_html_parser(html_text, partfiles):\n" " \"\"\"Return safety-sanitized html linked to partfiles.\n" "\n" -" Rewrite the href=\"cid:....\" attributes to point to the filenames in " -"partfiles.\n" +" Rewrite the href=\"cid:....\" attributes to point to the filenames in partfiles.\n" " Though not trivial, this should be possible using html.parser.\n" " \"\"\"\n" " raise NotImplementedError(\"Add the magic needed\")\n" @@ -398,19 +352,15 @@ msgid "" "with open('outgoing.msg', 'rb') as fp:\n" " msg = BytesParser(policy=policy.default).parse(fp)\n" "\n" -"# Now the header items can be accessed as a dictionary, and any non-ASCII " -"will\n" +"# Now the header items can be accessed as a dictionary, and any non-ASCII will\n" "# be converted to unicode:\n" "print('To:', msg['to'])\n" "print('From:', msg['from'])\n" "print('Subject:', msg['subject'])\n" "\n" -"# If we want to print a preview of the message content, we can extract " -"whatever\n" -"# the least formatted payload is and print the first three lines. Of " -"course,\n" -"# if the message has no plain text part printing the first three lines of " -"html\n" +"# If we want to print a preview of the message content, we can extract whatever\n" +"# the least formatted payload is and print the first three lines. Of course,\n" +"# if the message has no plain text part printing the first three lines of html\n" "# is probably useless, but this is just a conceptual example.\n" "simplest = msg.get_body(preferencelist=('plain', 'html'))\n" "print()\n" @@ -431,8 +381,7 @@ msgid "" " elif richest['content-type'].subtype == 'html':\n" " body = richest\n" " else:\n" -" print(\"Don't know how to display {}" -"\".format(richest.get_content_type()))\n" +" print(\"Don't know how to display {}\".format(richest.get_content_type()))\n" " sys.exit()\n" "elif richest['content-type'].content_type == 'multipart/related':\n" " body = richest.get_body(preferencelist=('html'))\n" @@ -442,14 +391,12 @@ msgid "" " extension = os.path.splitext(part.get_filename())[1]\n" " else:\n" " extension = mimetypes.guess_extension(part.get_content_type())\n" -" with tempfile.NamedTemporaryFile(suffix=extension, delete=False) as " -"f:\n" +" with tempfile.NamedTemporaryFile(suffix=extension, delete=False) as f:\n" " f.write(part.get_content())\n" " # again strip the <> to go from email form of cid to html form.\n" " partfiles[part['content-id'][1:-1]] = f.name\n" "else:\n" -" print(\"Don't know how to display {}" -"\".format(richest.get_content_type()))\n" +" print(\"Don't know how to display {}\".format(richest.get_content_type()))\n" " sys.exit()\n" "with tempfile.NamedTemporaryFile(mode='w', delete=False) as f:\n" " f.write(magic_html_parser(body.get_content(), partfiles))\n" @@ -462,14 +409,11 @@ msgid "" "# minded program, but it will handle the most common ones.\n" msgstr "" -#: ../../library/email.examples.rst:52 msgid "Up to the prompt, the output from the above is:" msgstr "" -#: ../../library/email.examples.rst:54 msgid "" -"To: Penelope Pussycat , Fabrette Pussycat " -"\n" +"To: Penelope Pussycat , Fabrette Pussycat \n" "From: Pepé Le Pew \n" "Subject: Pourquoi pas des asperges pour ce midi ?\n" "\n" @@ -478,11 +422,8 @@ msgid "" "Cette recette [1] sera sûrement un très bon repas." msgstr "" -#: ../../library/email.examples.rst:66 msgid "Footnotes" msgstr "" -#: ../../library/email.examples.rst:67 -msgid "" -"Thanks to Matthew Dixon Cowles for the original inspiration and examples." +msgid "Thanks to Matthew Dixon Cowles for the original inspiration and examples." msgstr "" diff --git a/library/email.generator.po b/library/email.generator.po index a5fbeb25..17f1c5cd 100644 --- a/library/email.generator.po +++ b/library/email.generator.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:05+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,316 +23,125 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/email.generator.rst:2 msgid ":mod:`!email.generator`: Generating MIME documents" msgstr "" -#: ../../library/email.generator.rst:7 msgid "**Source code:** :source:`Lib/email/generator.py`" msgstr "" -#: ../../library/email.generator.rst:11 -msgid "" -"One of the most common tasks is to generate the flat (serialized) version of " -"the email message represented by a message object structure. You will need " -"to do this if you want to send your message " -"via :meth:`smtplib.SMTP.sendmail`, or print the message on the console. " -"Taking a message object structure and producing a serialized representation " -"is the job of the generator classes." +msgid "One of the most common tasks is to generate the flat (serialized) version of the email message represented by a message object structure. You will need to do this if you want to send your message via :meth:`smtplib.SMTP.sendmail`, or print the message on the console. Taking a message object structure and producing a serialized representation is the job of the generator classes." msgstr "" -#: ../../library/email.generator.rst:18 -msgid "" -"As with the :mod:`email.parser` module, you aren't limited to the " -"functionality of the bundled generator; you could write one from scratch " -"yourself. However the bundled generator knows how to generate most email in " -"a standards-compliant way, should handle MIME and non-MIME email messages " -"just fine, and is designed so that the bytes-oriented parsing and generation " -"operations are inverses, assuming the same non-" -"transforming :mod:`~email.policy` is used for both. That is, parsing the " -"serialized byte stream via the :class:`~email.parser.BytesParser` class and " -"then regenerating the serialized byte stream using :class:`BytesGenerator` " -"should produce output identical to the input [#]_. (On the other hand, " -"using the generator on an :class:`~email.message.EmailMessage` constructed " -"by program may result in changes to the :class:`~email.message.EmailMessage` " -"object as defaults are filled in.)" -msgstr "" - -#: ../../library/email.generator.rst:32 -msgid "" -"The :class:`Generator` class can be used to flatten a message into a text " -"(as opposed to binary) serialized representation, but since Unicode cannot " -"represent binary data directly, the message is of necessity transformed into " -"something that contains only ASCII characters, using the standard email RFC " -"Content Transfer Encoding techniques for encoding email messages for " -"transport over channels that are not \"8 bit clean\"." +msgid "As with the :mod:`email.parser` module, you aren't limited to the functionality of the bundled generator; you could write one from scratch yourself. However the bundled generator knows how to generate most email in a standards-compliant way, should handle MIME and non-MIME email messages just fine, and is designed so that the bytes-oriented parsing and generation operations are inverses, assuming the same non-transforming :mod:`~email.policy` is used for both. That is, parsing the serialized byte stream via the :class:`~email.parser.BytesParser` class and then regenerating the serialized byte stream using :class:`BytesGenerator` should produce output identical to the input [#]_. (On the other hand, using the generator on an :class:`~email.message.EmailMessage` constructed by program may result in changes to the :class:`~email.message.EmailMessage` object as defaults are filled in.)" msgstr "" -#: ../../library/email.generator.rst:39 -msgid "" -"To accommodate reproducible processing of SMIME-signed " -"messages :class:`Generator` disables header folding for message parts of " -"type ``multipart/signed`` and all subparts." +msgid "The :class:`Generator` class can be used to flatten a message into a text (as opposed to binary) serialized representation, but since Unicode cannot represent binary data directly, the message is of necessity transformed into something that contains only ASCII characters, using the standard email RFC Content Transfer Encoding techniques for encoding email messages for transport over channels that are not \"8 bit clean\"." msgstr "" -#: ../../library/email.generator.rst:47 -msgid "" -"Return a :class:`BytesGenerator` object that will write any message provided " -"to the :meth:`flatten` method, or any surrogateescape encoded text provided " -"to the :meth:`write` method, to the :term:`file-like object` *outfp*. " -"*outfp* must support a ``write`` method that accepts binary data." +msgid "To accommodate reproducible processing of SMIME-signed messages :class:`Generator` disables header folding for message parts of type ``multipart/signed`` and all subparts." msgstr "" -#: ../../library/email.generator.rst:52 ../../library/email.generator.rst:153 -msgid "" -"If optional *mangle_from_* is ``True``, put a ``>`` character in front of " -"any line in the body that starts with the exact string ``\"From \"``, that " -"is ``From`` followed by a space at the beginning of a line. *mangle_from_* " -"defaults to the value of the :attr:`~email.policy.Policy.mangle_from_` " -"setting of the *policy* (which is ``True`` for " -"the :data:`~email.policy.compat32` policy and ``False`` for all others). " -"*mangle_from_* is intended for use when messages are stored in Unix mbox " -"format (see :mod:`mailbox` and `WHY THE CONTENT-LENGTH FORMAT IS BAD " -"`_)." -msgstr "" - -#: ../../library/email.generator.rst:62 ../../library/email.generator.rst:163 -msgid "" -"If *maxheaderlen* is not ``None``, refold any header lines that are longer " -"than *maxheaderlen*, or if ``0``, do not rewrap any headers. If " -"*manheaderlen* is ``None`` (the default), wrap headers and other message " -"lines according to the *policy* settings." +msgid "Return a :class:`BytesGenerator` object that will write any message provided to the :meth:`flatten` method, or any surrogateescape encoded text provided to the :meth:`write` method, to the :term:`file-like object` *outfp*. *outfp* must support a ``write`` method that accepts binary data." msgstr "" -#: ../../library/email.generator.rst:67 ../../library/email.generator.rst:168 -msgid "" -"If *policy* is specified, use that policy to control message generation. If " -"*policy* is ``None`` (the default), use the policy associated with " -"the :class:`~email.message.Message` or :class:`~email.message.EmailMessage` " -"object passed to ``flatten`` to control the message generation. " -"See :mod:`email.policy` for details on what *policy* controls." +msgid "If optional *mangle_from_* is ``True``, put a ``>`` character in front of any line in the body that starts with the exact string ``\"From \"``, that is ``From`` followed by a space at the beginning of a line. *mangle_from_* defaults to the value of the :attr:`~email.policy.Policy.mangle_from_` setting of the *policy* (which is ``True`` for the :data:`~email.policy.compat32` policy and ``False`` for all others). *mangle_from_* is intended for use when messages are stored in Unix mbox format (see :mod:`mailbox` and `WHY THE CONTENT-LENGTH FORMAT IS BAD `_)." +msgstr "" + +msgid "If *maxheaderlen* is not ``None``, refold any header lines that are longer than *maxheaderlen*, or if ``0``, do not rewrap any headers. If *manheaderlen* is ``None`` (the default), wrap headers and other message lines according to the *policy* settings." +msgstr "" + +msgid "If *policy* is specified, use that policy to control message generation. If *policy* is ``None`` (the default), use the policy associated with the :class:`~email.message.Message` or :class:`~email.message.EmailMessage` object passed to ``flatten`` to control the message generation. See :mod:`email.policy` for details on what *policy* controls." msgstr "" -#: ../../library/email.generator.rst:75 ../../library/email.generator.rst:174 msgid "Added the *policy* keyword." msgstr "" -#: ../../library/email.generator.rst:77 ../../library/email.generator.rst:176 -msgid "" -"The default behavior of the *mangle_from_* and *maxheaderlen* parameters is " -"to follow the policy." +msgid "The default behavior of the *mangle_from_* and *maxheaderlen* parameters is to follow the policy." msgstr "" -#: ../../library/email.generator.rst:83 -msgid "" -"Print the textual representation of the message object structure rooted at " -"*msg* to the output file specified when the :class:`BytesGenerator` instance " -"was created." +msgid "Print the textual representation of the message object structure rooted at *msg* to the output file specified when the :class:`BytesGenerator` instance was created." msgstr "" -#: ../../library/email.generator.rst:87 -msgid "" -"If the :mod:`~email.policy` option :attr:`~email.policy.Policy.cte_type` is " -"``8bit`` (the default), copy any headers in the original parsed message that " -"have not been modified to the output with any bytes with the high bit set " -"reproduced as in the original, and preserve the non-" -"ASCII :mailheader:`Content-Transfer-Encoding` of any body parts that have " -"them. If ``cte_type`` is ``7bit``, convert the bytes with the high bit set " -"as needed using an ASCII-compatible :mailheader:`Content-Transfer-Encoding`. " -"That is, transform parts with non-ASCII :mailheader:`Content-Transfer-" -"Encoding` (:mailheader:`Content-Transfer-Encoding: 8bit`) to an ASCII " -"compatible :mailheader:`Content-Transfer-Encoding`, and encode RFC-invalid " -"non-ASCII bytes in headers using the MIME ``unknown-8bit`` character set, " -"thus rendering them RFC-compliant." -msgstr "" - -#: ../../library/email.generator.rst:104 ../../library/email.generator.rst:197 -msgid "" -"If *unixfrom* is ``True``, print the envelope header delimiter used by the " -"Unix mailbox format (see :mod:`mailbox`) before the first of the :rfc:`5322` " -"headers of the root message object. If the root object has no envelope " -"header, craft a standard one. The default is ``False``. Note that for " -"subparts, no envelope header is ever printed." +msgid "If the :mod:`~email.policy` option :attr:`~email.policy.Policy.cte_type` is ``8bit`` (the default), copy any headers in the original parsed message that have not been modified to the output with any bytes with the high bit set reproduced as in the original, and preserve the non-ASCII :mailheader:`Content-Transfer-Encoding` of any body parts that have them. If ``cte_type`` is ``7bit``, convert the bytes with the high bit set as needed using an ASCII-compatible :mailheader:`Content-Transfer-Encoding`. That is, transform parts with non-ASCII :mailheader:`Content-Transfer-Encoding` (:mailheader:`Content-Transfer-Encoding: 8bit`) to an ASCII compatible :mailheader:`Content-Transfer-Encoding`, and encode RFC-invalid non-ASCII bytes in headers using the MIME ``unknown-8bit`` character set, thus rendering them RFC-compliant." msgstr "" -#: ../../library/email.generator.rst:110 ../../library/email.generator.rst:203 -msgid "" -"If *linesep* is not ``None``, use it as the separator character between all " -"the lines of the flattened message. If *linesep* is ``None`` (the default), " -"use the value specified in the *policy*." +msgid "If *unixfrom* is ``True``, print the envelope header delimiter used by the Unix mailbox format (see :mod:`mailbox`) before the first of the :rfc:`5322` headers of the root message object. If the root object has no envelope header, craft a standard one. The default is ``False``. Note that for subparts, no envelope header is ever printed." msgstr "" -#: ../../library/email.generator.rst:119 -msgid "" -"Return an independent clone of this :class:`BytesGenerator` instance with " -"the exact same option settings, and *fp* as the new *outfp*." +msgid "If *linesep* is not ``None``, use it as the separator character between all the lines of the flattened message. If *linesep* is ``None`` (the default), use the value specified in the *policy*." msgstr "" -#: ../../library/email.generator.rst:125 -msgid "" -"Encode *s* using the ``ASCII`` codec and the ``surrogateescape`` error " -"handler, and pass it to the *write* method of the *outfp* passed to " -"the :class:`BytesGenerator`'s constructor." +msgid "Return an independent clone of this :class:`BytesGenerator` instance with the exact same option settings, and *fp* as the new *outfp*." msgstr "" -#: ../../library/email.generator.rst:130 -msgid "" -"As a convenience, :class:`~email.message.EmailMessage` provides the " -"methods :meth:`~email.message.EmailMessage.as_bytes` and ``bytes(aMessage)`` " -"(a.k.a. :meth:`~email.message.EmailMessage.__bytes__`), which simplify the " -"generation of a serialized binary representation of a message object. For " -"more detail, see :mod:`email.message`." +msgid "Encode *s* using the ``ASCII`` codec and the ``surrogateescape`` error handler, and pass it to the *write* method of the *outfp* passed to the :class:`BytesGenerator`'s constructor." msgstr "" -#: ../../library/email.generator.rst:137 -msgid "" -"Because strings cannot represent binary data, the :class:`Generator` class " -"must convert any binary data in any message it flattens to an ASCII " -"compatible format, by converting them to an ASCII " -"compatible :mailheader:`Content-Transfer_Encoding`. Using the terminology " -"of the email RFCs, you can think of this as :class:`Generator` serializing " -"to an I/O stream that is not \"8 bit clean\". In other words, most " -"applications will want to be using :class:`BytesGenerator`, and " -"not :class:`Generator`." +msgid "As a convenience, :class:`~email.message.EmailMessage` provides the methods :meth:`~email.message.EmailMessage.as_bytes` and ``bytes(aMessage)`` (a.k.a. :meth:`~email.message.EmailMessage.__bytes__`), which simplify the generation of a serialized binary representation of a message object. For more detail, see :mod:`email.message`." msgstr "" -#: ../../library/email.generator.rst:148 -msgid "" -"Return a :class:`Generator` object that will write any message provided to " -"the :meth:`flatten` method, or any text provided to the :meth:`write` " -"method, to the :term:`file-like object` *outfp*. *outfp* must support a " -"``write`` method that accepts string data." +msgid "Because strings cannot represent binary data, the :class:`Generator` class must convert any binary data in any message it flattens to an ASCII compatible format, by converting them to an ASCII compatible :mailheader:`Content-Transfer_Encoding`. Using the terminology of the email RFCs, you can think of this as :class:`Generator` serializing to an I/O stream that is not \"8 bit clean\". In other words, most applications will want to be using :class:`BytesGenerator`, and not :class:`Generator`." msgstr "" -#: ../../library/email.generator.rst:182 -msgid "" -"Print the textual representation of the message object structure rooted at " -"*msg* to the output file specified when the :class:`Generator` instance was " -"created." +msgid "Return a :class:`Generator` object that will write any message provided to the :meth:`flatten` method, or any text provided to the :meth:`write` method, to the :term:`file-like object` *outfp*. *outfp* must support a ``write`` method that accepts string data." msgstr "" -#: ../../library/email.generator.rst:186 -msgid "" -"If the :mod:`~email.policy` option :attr:`~email.policy.Policy.cte_type` is " -"``8bit``, generate the message as if the option were set to ``7bit``. (This " -"is required because strings cannot represent non-ASCII bytes.) Convert any " -"bytes with the high bit set as needed using an ASCII-" -"compatible :mailheader:`Content-Transfer-Encoding`. That is, transform " -"parts with non-ASCII :mailheader:`Content-Transfer-Encoding` " -"(:mailheader:`Content-Transfer-Encoding: 8bit`) to an ASCII " -"compatible :mailheader:`Content-Transfer-Encoding`, and encode RFC-invalid " -"non-ASCII bytes in headers using the MIME ``unknown-8bit`` character set, " -"thus rendering them RFC-compliant." -msgstr "" - -#: ../../library/email.generator.rst:209 -msgid "" -"Added support for re-encoding ``8bit`` message bodies, and the *linesep* " -"argument." +msgid "Print the textual representation of the message object structure rooted at *msg* to the output file specified when the :class:`Generator` instance was created." msgstr "" -#: ../../library/email.generator.rst:216 -msgid "" -"Return an independent clone of this :class:`Generator` instance with the " -"exact same options, and *fp* as the new *outfp*." +msgid "If the :mod:`~email.policy` option :attr:`~email.policy.Policy.cte_type` is ``8bit``, generate the message as if the option were set to ``7bit``. (This is required because strings cannot represent non-ASCII bytes.) Convert any bytes with the high bit set as needed using an ASCII-compatible :mailheader:`Content-Transfer-Encoding`. That is, transform parts with non-ASCII :mailheader:`Content-Transfer-Encoding` (:mailheader:`Content-Transfer-Encoding: 8bit`) to an ASCII compatible :mailheader:`Content-Transfer-Encoding`, and encode RFC-invalid non-ASCII bytes in headers using the MIME ``unknown-8bit`` character set, thus rendering them RFC-compliant." msgstr "" -#: ../../library/email.generator.rst:222 -msgid "" -"Write *s* to the *write* method of the *outfp* passed to " -"the :class:`Generator`'s constructor. This provides just enough file-like " -"API for :class:`Generator` instances to be used in the :func:`print` " -"function." +msgid "Added support for re-encoding ``8bit`` message bodies, and the *linesep* argument." msgstr "" -#: ../../library/email.generator.rst:228 -msgid "" -"As a convenience, :class:`~email.message.EmailMessage` provides the " -"methods :meth:`~email.message.EmailMessage.as_string` and ``str(aMessage)`` " -"(a.k.a. :meth:`~email.message.EmailMessage.__str__`), which simplify the " -"generation of a formatted string representation of a message object. For " -"more detail, see :mod:`email.message`." +msgid "Return an independent clone of this :class:`Generator` instance with the exact same options, and *fp* as the new *outfp*." msgstr "" -#: ../../library/email.generator.rst:235 -msgid "" -"The :mod:`!email.generator` module also provides a derived " -"class, :class:`DecodedGenerator`, which is like the :class:`Generator` base " -"class, except that non-\\ :mimetype:`text` parts are not serialized, but are " -"instead represented in the output stream by a string derived from a template " -"filled in with information about the part." +msgid "Write *s* to the *write* method of the *outfp* passed to the :class:`Generator`'s constructor. This provides just enough file-like API for :class:`Generator` instances to be used in the :func:`print` function." msgstr "" -#: ../../library/email.generator.rst:244 -msgid "" -"Act like :class:`Generator`, except that for any subpart of the message " -"passed to :meth:`Generator.flatten`, if the subpart is of main " -"type :mimetype:`text`, print the decoded payload of the subpart, and if the " -"main type is not :mimetype:`text`, instead of printing it fill in the string " -"*fmt* using information from the part and print the resulting filled-in " -"string." +msgid "As a convenience, :class:`~email.message.EmailMessage` provides the methods :meth:`~email.message.EmailMessage.as_string` and ``str(aMessage)`` (a.k.a. :meth:`~email.message.EmailMessage.__str__`), which simplify the generation of a formatted string representation of a message object. For more detail, see :mod:`email.message`." msgstr "" -#: ../../library/email.generator.rst:251 -msgid "" -"To fill in *fmt*, execute ``fmt % part_info``, where ``part_info`` is a " -"dictionary composed of the following keys and values:" +msgid "The :mod:`!email.generator` module also provides a derived class, :class:`DecodedGenerator`, which is like the :class:`Generator` base class, except that non-\\ :mimetype:`text` parts are not serialized, but are instead represented in the output stream by a string derived from a template filled in with information about the part." +msgstr "" + +msgid "Act like :class:`Generator`, except that for any subpart of the message passed to :meth:`Generator.flatten`, if the subpart is of main type :mimetype:`text`, print the decoded payload of the subpart, and if the main type is not :mimetype:`text`, instead of printing it fill in the string *fmt* using information from the part and print the resulting filled-in string." +msgstr "" + +msgid "To fill in *fmt*, execute ``fmt % part_info``, where ``part_info`` is a dictionary composed of the following keys and values:" msgstr "" -#: ../../library/email.generator.rst:254 msgid "``type`` -- Full MIME type of the non-\\ :mimetype:`text` part" msgstr "" -#: ../../library/email.generator.rst:256 msgid "``maintype`` -- Main MIME type of the non-\\ :mimetype:`text` part" msgstr "" -#: ../../library/email.generator.rst:258 msgid "``subtype`` -- Sub-MIME type of the non-\\ :mimetype:`text` part" msgstr "" -#: ../../library/email.generator.rst:260 msgid "``filename`` -- Filename of the non-\\ :mimetype:`text` part" msgstr "" -#: ../../library/email.generator.rst:262 -msgid "" -"``description`` -- Description associated with the non-\\ :mimetype:`text` " -"part" +msgid "``description`` -- Description associated with the non-\\ :mimetype:`text` part" msgstr "" -#: ../../library/email.generator.rst:264 -msgid "" -"``encoding`` -- Content transfer encoding of the non-\\ :mimetype:`text` part" +msgid "``encoding`` -- Content transfer encoding of the non-\\ :mimetype:`text` part" msgstr "" -#: ../../library/email.generator.rst:266 msgid "If *fmt* is ``None``, use the following default *fmt*:" msgstr "" -#: ../../library/email.generator.rst:268 -msgid "" -"\"[Non-text (%(type)s) part of message omitted, filename %(filename)s]\"" +msgid "\"[Non-text (%(type)s) part of message omitted, filename %(filename)s]\"" msgstr "" -#: ../../library/email.generator.rst:270 -msgid "" -"Optional *_mangle_from_* and *maxheaderlen* are as with " -"the :class:`Generator` base class." +msgid "Optional *_mangle_from_* and *maxheaderlen* are as with the :class:`Generator` base class." msgstr "" -#: ../../library/email.generator.rst:275 msgid "Footnotes" msgstr "" -#: ../../library/email.generator.rst:276 -msgid "" -"This statement assumes that you use the appropriate setting for " -"``unixfrom``, and that there are no :mod:`email.policy` settings calling for " -"automatic adjustments (for " -"example, :attr:`~email.policy.EmailPolicy.refold_source` must be ``none``, " -"which is *not* the default). It is also not 100% true, since if the message " -"does not conform to the RFC standards occasionally information about the " -"exact original text is lost during parsing error recovery. It is a goal to " -"fix these latter edge cases when possible." +msgid "This statement assumes that you use the appropriate setting for ``unixfrom``, and that there are no :mod:`email.policy` settings calling for automatic adjustments (for example, :attr:`~email.policy.EmailPolicy.refold_source` must be ``none``, which is *not* the default). It is also not 100% true, since if the message does not conform to the RFC standards occasionally information about the exact original text is lost during parsing error recovery. It is a goal to fix these latter edge cases when possible." msgstr "" diff --git a/library/email.header.po b/library/email.header.po index 001a2de3..6a5574c6 100644 --- a/library/email.header.po +++ b/library/email.header.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:05+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,63 +23,27 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/email.header.rst:2 msgid ":mod:`!email.header`: Internationalized headers" msgstr "" -#: ../../library/email.header.rst:7 msgid "**Source code:** :source:`Lib/email/header.py`" msgstr "" -#: ../../library/email.header.rst:11 -msgid "" -"This module is part of the legacy (``Compat32``) email API. In the current " -"API encoding and decoding of headers is handled transparently by the " -"dictionary-like API of the :class:`~email.message.EmailMessage` class. In " -"addition to uses in legacy code, this module can be useful in applications " -"that need to completely control the character sets used when encoding " -"headers." +msgid "This module is part of the legacy (``Compat32``) email API. In the current API encoding and decoding of headers is handled transparently by the dictionary-like API of the :class:`~email.message.EmailMessage` class. In addition to uses in legacy code, this module can be useful in applications that need to completely control the character sets used when encoding headers." msgstr "" -#: ../../library/email.header.rst:17 -msgid "" -"The remaining text in this section is the original documentation of the " -"module." +msgid "The remaining text in this section is the original documentation of the module." msgstr "" -#: ../../library/email.header.rst:19 -msgid "" -":rfc:`2822` is the base standard that describes the format of email " -"messages. It derives from the older :rfc:`822` standard which came into " -"widespread use at a time when most email was composed of ASCII characters " -"only. :rfc:`2822` is a specification written assuming email contains only 7-" -"bit ASCII characters." +msgid ":rfc:`2822` is the base standard that describes the format of email messages. It derives from the older :rfc:`822` standard which came into widespread use at a time when most email was composed of ASCII characters only. :rfc:`2822` is a specification written assuming email contains only 7-bit ASCII characters." msgstr "" -#: ../../library/email.header.rst:24 -msgid "" -"Of course, as email has been deployed worldwide, it has become " -"internationalized, such that language specific character sets can now be " -"used in email messages. The base standard still requires email messages to " -"be transferred using only 7-bit ASCII characters, so a slew of RFCs have " -"been written describing how to encode email containing non-ASCII characters " -"into :rfc:`2822`\\ -compliant format. These RFCs " -"include :rfc:`2045`, :rfc:`2046`, :rfc:`2047`, and :rfc:`2231`. " -"The :mod:`email` package supports these standards in its :mod:`!" -"email.header` and :mod:`email.charset` modules." -msgstr "" - -#: ../../library/email.header.rst:33 -msgid "" -"If you want to include non-ASCII characters in your email headers, say in " -"the :mailheader:`Subject` or :mailheader:`To` fields, you should use " -"the :class:`Header` class and assign the field in " -"the :class:`~email.message.Message` object to an instance of :class:`Header` " -"instead of using a string for the header value. Import the :class:`Header` " -"class from the :mod:`!email.header` module. For example::" +msgid "Of course, as email has been deployed worldwide, it has become internationalized, such that language specific character sets can now be used in email messages. The base standard still requires email messages to be transferred using only 7-bit ASCII characters, so a slew of RFCs have been written describing how to encode email containing non-ASCII characters into :rfc:`2822`\\ -compliant format. These RFCs include :rfc:`2045`, :rfc:`2046`, :rfc:`2047`, and :rfc:`2231`. The :mod:`email` package supports these standards in its :mod:`!email.header` and :mod:`email.charset` modules." +msgstr "" + +msgid "If you want to include non-ASCII characters in your email headers, say in the :mailheader:`Subject` or :mailheader:`To` fields, you should use the :class:`Header` class and assign the field in the :class:`~email.message.Message` object to an instance of :class:`Header` instead of using a string for the header value. Import the :class:`Header` class from the :mod:`!email.header` module. For example::" msgstr "" -#: ../../library/email.header.rst:40 msgid "" ">>> from email.message import Message\n" ">>> from email.header import Header\n" @@ -90,252 +54,116 @@ msgid "" "'Subject: =?iso-8859-1?q?p=F6stal?=\\n\\n'" msgstr "" -#: ../../library/email.header.rst:50 -msgid "" -"Notice here how we wanted the :mailheader:`Subject` field to contain a non-" -"ASCII character? We did this by creating a :class:`Header` instance and " -"passing in the character set that the byte string was encoded in. When the " -"subsequent :class:`~email.message.Message` instance was flattened, " -"the :mailheader:`Subject` field was properly :rfc:`2047` encoded. MIME-" -"aware mail readers would show this header using the embedded ISO-8859-1 " -"character." +msgid "Notice here how we wanted the :mailheader:`Subject` field to contain a non-ASCII character? We did this by creating a :class:`Header` instance and passing in the character set that the byte string was encoded in. When the subsequent :class:`~email.message.Message` instance was flattened, the :mailheader:`Subject` field was properly :rfc:`2047` encoded. MIME-aware mail readers would show this header using the embedded ISO-8859-1 character." msgstr "" -#: ../../library/email.header.rst:57 msgid "Here is the :class:`Header` class description:" msgstr "" -#: ../../library/email.header.rst:62 -msgid "" -"Create a MIME-compliant header that can contain strings in different " -"character sets." +msgid "Create a MIME-compliant header that can contain strings in different character sets." msgstr "" -#: ../../library/email.header.rst:65 -msgid "" -"Optional *s* is the initial header value. If ``None`` (the default), the " -"initial header value is not set. You can later append to the header " -"with :meth:`append` method calls. *s* may be an instance of :class:`bytes` " -"or :class:`str`, but see the :meth:`append` documentation for semantics." +msgid "Optional *s* is the initial header value. If ``None`` (the default), the initial header value is not set. You can later append to the header with :meth:`append` method calls. *s* may be an instance of :class:`bytes` or :class:`str`, but see the :meth:`append` documentation for semantics." msgstr "" -#: ../../library/email.header.rst:70 -msgid "" -"Optional *charset* serves two purposes: it has the same meaning as the " -"*charset* argument to the :meth:`append` method. It also sets the default " -"character set for all subsequent :meth:`append` calls that omit the " -"*charset* argument. If *charset* is not provided in the constructor (the " -"default), the ``us-ascii`` character set is used both as *s*'s initial " -"charset and as the default for subsequent :meth:`append` calls." +msgid "Optional *charset* serves two purposes: it has the same meaning as the *charset* argument to the :meth:`append` method. It also sets the default character set for all subsequent :meth:`append` calls that omit the *charset* argument. If *charset* is not provided in the constructor (the default), the ``us-ascii`` character set is used both as *s*'s initial charset and as the default for subsequent :meth:`append` calls." msgstr "" -#: ../../library/email.header.rst:77 -msgid "" -"The maximum line length can be specified explicitly via *maxlinelen*. For " -"splitting the first line to a shorter value (to account for the field header " -"which isn't included in *s*, e.g. :mailheader:`Subject`) pass in the name of " -"the field in *header_name*. The default *maxlinelen* is 78, and the default " -"value for *header_name* is ``None``, meaning it is not taken into account " -"for the first line of a long, split header." +msgid "The maximum line length can be specified explicitly via *maxlinelen*. For splitting the first line to a shorter value (to account for the field header which isn't included in *s*, e.g. :mailheader:`Subject`) pass in the name of the field in *header_name*. The default *maxlinelen* is 78, and the default value for *header_name* is ``None``, meaning it is not taken into account for the first line of a long, split header." msgstr "" -#: ../../library/email.header.rst:84 -msgid "" -"Optional *continuation_ws* must be :rfc:`2822`\\ -compliant folding " -"whitespace, and is usually either a space or a hard tab character. This " -"character will be prepended to continuation lines. *continuation_ws* " -"defaults to a single space character." +msgid "Optional *continuation_ws* must be :rfc:`2822`\\ -compliant folding whitespace, and is usually either a space or a hard tab character. This character will be prepended to continuation lines. *continuation_ws* defaults to a single space character." msgstr "" -#: ../../library/email.header.rst:89 -msgid "" -"Optional *errors* is passed straight through to the :meth:`append` method." +msgid "Optional *errors* is passed straight through to the :meth:`append` method." msgstr "" -#: ../../library/email.header.rst:94 msgid "Append the string *s* to the MIME header." msgstr "" -#: ../../library/email.header.rst:96 -msgid "" -"Optional *charset*, if given, should be a :class:`~email.charset.Charset` " -"instance (see :mod:`email.charset`) or the name of a character set, which " -"will be converted to a :class:`~email.charset.Charset` instance. A value of " -"``None`` (the default) means that the *charset* given in the constructor is " -"used." +msgid "Optional *charset*, if given, should be a :class:`~email.charset.Charset` instance (see :mod:`email.charset`) or the name of a character set, which will be converted to a :class:`~email.charset.Charset` instance. A value of ``None`` (the default) means that the *charset* given in the constructor is used." msgstr "" -#: ../../library/email.header.rst:102 -msgid "" -"*s* may be an instance of :class:`bytes` or :class:`str`. If it is an " -"instance of :class:`bytes`, then *charset* is the encoding of that byte " -"string, and a :exc:`UnicodeError` will be raised if the string cannot be " -"decoded with that character set." +msgid "*s* may be an instance of :class:`bytes` or :class:`str`. If it is an instance of :class:`bytes`, then *charset* is the encoding of that byte string, and a :exc:`UnicodeError` will be raised if the string cannot be decoded with that character set." msgstr "" -#: ../../library/email.header.rst:107 -msgid "" -"If *s* is an instance of :class:`str`, then *charset* is a hint specifying " -"the character set of the characters in the string." +msgid "If *s* is an instance of :class:`str`, then *charset* is a hint specifying the character set of the characters in the string." msgstr "" -#: ../../library/email.header.rst:110 -msgid "" -"In either case, when producing an :rfc:`2822`\\ -compliant header " -"using :rfc:`2047` rules, the string will be encoded using the output codec " -"of the charset. If the string cannot be encoded using the output codec, a " -"UnicodeError will be raised." +msgid "In either case, when producing an :rfc:`2822`\\ -compliant header using :rfc:`2047` rules, the string will be encoded using the output codec of the charset. If the string cannot be encoded using the output codec, a UnicodeError will be raised." msgstr "" -#: ../../library/email.header.rst:115 -msgid "" -"Optional *errors* is passed as the errors argument to the decode call if *s* " -"is a byte string." +msgid "Optional *errors* is passed as the errors argument to the decode call if *s* is a byte string." msgstr "" -#: ../../library/email.header.rst:121 -msgid "" -"Encode a message header into an RFC-compliant format, possibly wrapping long " -"lines and encapsulating non-ASCII parts in base64 or quoted-printable " -"encodings." +msgid "Encode a message header into an RFC-compliant format, possibly wrapping long lines and encapsulating non-ASCII parts in base64 or quoted-printable encodings." msgstr "" -#: ../../library/email.header.rst:125 -msgid "" -"Optional *splitchars* is a string containing characters which should be " -"given extra weight by the splitting algorithm during normal header " -"wrapping. This is in very rough support of :RFC:`2822`\\'s 'higher level " -"syntactic breaks': split points preceded by a splitchar are preferred " -"during line splitting, with the characters preferred in the order in which " -"they appear in the string. Space and tab may be included in the string to " -"indicate whether preference should be given to one over the other as a split " -"point when other split chars do not appear in the line being split. " -"Splitchars does not affect :RFC:`2047` encoded lines." -msgstr "" - -#: ../../library/email.header.rst:135 -msgid "" -"*maxlinelen*, if given, overrides the instance's value for the maximum line " -"length." +msgid "Optional *splitchars* is a string containing characters which should be given extra weight by the splitting algorithm during normal header wrapping. This is in very rough support of :RFC:`2822`\\'s 'higher level syntactic breaks': split points preceded by a splitchar are preferred during line splitting, with the characters preferred in the order in which they appear in the string. Space and tab may be included in the string to indicate whether preference should be given to one over the other as a split point when other split chars do not appear in the line being split. Splitchars does not affect :RFC:`2047` encoded lines." msgstr "" -#: ../../library/email.header.rst:138 -msgid "" -"*linesep* specifies the characters used to separate the lines of the folded " -"header. It defaults to the most useful value for Python application code " -"(``\\n``), but ``\\r\\n`` can be specified in order to produce headers with " -"RFC-compliant line separators." +msgid "*maxlinelen*, if given, overrides the instance's value for the maximum line length." +msgstr "" + +msgid "*linesep* specifies the characters used to separate the lines of the folded header. It defaults to the most useful value for Python application code (``\\n``), but ``\\r\\n`` can be specified in order to produce headers with RFC-compliant line separators." msgstr "" -#: ../../library/email.header.rst:143 msgid "Added the *linesep* argument." msgstr "" -#: ../../library/email.header.rst:147 -msgid "" -"The :class:`Header` class also provides a number of methods to support " -"standard operators and built-in functions." +msgid "The :class:`Header` class also provides a number of methods to support standard operators and built-in functions." msgstr "" -#: ../../library/email.header.rst:152 -msgid "" -"Returns an approximation of the :class:`Header` as a string, using an " -"unlimited line length. All pieces are converted to unicode using the " -"specified encoding and joined together appropriately. Any pieces with a " -"charset of ``'unknown-8bit'`` are decoded as ASCII using the ``'replace'`` " -"error handler." +msgid "Returns an approximation of the :class:`Header` as a string, using an unlimited line length. All pieces are converted to unicode using the specified encoding and joined together appropriately. Any pieces with a charset of ``'unknown-8bit'`` are decoded as ASCII using the ``'replace'`` error handler." msgstr "" -#: ../../library/email.header.rst:158 msgid "Added handling for the ``'unknown-8bit'`` charset." msgstr "" -#: ../../library/email.header.rst:164 -msgid "" -"This method allows you to compare two :class:`Header` instances for equality." +msgid "This method allows you to compare two :class:`Header` instances for equality." msgstr "" -#: ../../library/email.header.rst:170 -msgid "" -"This method allows you to compare two :class:`Header` instances for " -"inequality." +msgid "This method allows you to compare two :class:`Header` instances for inequality." msgstr "" -#: ../../library/email.header.rst:173 -msgid "" -"The :mod:`!email.header` module also provides the following convenient " -"functions." +msgid "The :mod:`!email.header` module also provides the following convenient functions." msgstr "" -#: ../../library/email.header.rst:178 -msgid "" -"Decode a message header value without converting the character set. The " -"header value is in *header*." +msgid "Decode a message header value without converting the character set. The header value is in *header*." msgstr "" -#: ../../library/email.header.rst:181 msgid "For historical reasons, this function may return either:" msgstr "" -#: ../../library/email.header.rst:183 -msgid "" -"A list of pairs containing each of the decoded parts of the header, " -"``(decoded_bytes, charset)``, where *decoded_bytes* is always an instance " -"of :class:`bytes`, and *charset* is either:" +msgid "A list of pairs containing each of the decoded parts of the header, ``(decoded_bytes, charset)``, where *decoded_bytes* is always an instance of :class:`bytes`, and *charset* is either:" msgstr "" -#: ../../library/email.header.rst:187 msgid "A lower case string containing the name of the character set specified." msgstr "" -#: ../../library/email.header.rst:189 msgid "``None`` for non-encoded parts of the header." msgstr "" -#: ../../library/email.header.rst:191 -msgid "" -"A list of length 1 containing a pair ``(string, None)``, where *string* is " -"always an instance of :class:`str`." +msgid "A list of length 1 containing a pair ``(string, None)``, where *string* is always an instance of :class:`str`." msgstr "" -#: ../../library/email.header.rst:194 -msgid "" -"An :exc:`email.errors.HeaderParseError` may be raised when certain decoding " -"errors occur (e.g. a base64 decoding exception)." +msgid "An :exc:`email.errors.HeaderParseError` may be raised when certain decoding errors occur (e.g. a base64 decoding exception)." msgstr "" -#: ../../library/email.header.rst:197 msgid "Here are examples:" msgstr "" -#: ../../library/email.header.rst:209 -msgid "" -"This function exists for backwards compatibility only. For new code, we " -"recommend using :class:`email.headerregistry.HeaderRegistry`." +msgid "This function exists for backwards compatibility only. For new code, we recommend using :class:`email.headerregistry.HeaderRegistry`." msgstr "" -#: ../../library/email.header.rst:215 -msgid "" -"Create a :class:`Header` instance from a sequence of pairs as returned " -"by :func:`decode_header`." +msgid "Create a :class:`Header` instance from a sequence of pairs as returned by :func:`decode_header`." msgstr "" -#: ../../library/email.header.rst:218 -msgid "" -":func:`decode_header` takes a header value string and returns a sequence of " -"pairs of the format ``(decoded_string, charset)`` where *charset* is the " -"name of the character set." +msgid ":func:`decode_header` takes a header value string and returns a sequence of pairs of the format ``(decoded_string, charset)`` where *charset* is the name of the character set." msgstr "" -#: ../../library/email.header.rst:222 -msgid "" -"This function takes one of those sequence of pairs and returns " -"a :class:`Header` instance. Optional *maxlinelen*, *header_name*, and " -"*continuation_ws* are as in the :class:`Header` constructor." +msgid "This function takes one of those sequence of pairs and returns a :class:`Header` instance. Optional *maxlinelen*, *header_name*, and *continuation_ws* are as in the :class:`Header` constructor." msgstr "" -#: ../../library/email.header.rst:228 -msgid "" -"This function exists for backwards compatibility only, and is not " -"recommended for use in new code." +msgid "This function exists for backwards compatibility only, and is not recommended for use in new code." msgstr "" diff --git a/library/email.headerregistry.po b/library/email.headerregistry.po index d839091b..f27d4d19 100644 --- a/library/email.headerregistry.po +++ b/library/email.headerregistry.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:05+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,669 +24,338 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/email.headerregistry.rst:2 msgid ":mod:`!email.headerregistry`: Custom Header Objects" msgstr "" -#: ../../library/email.headerregistry.rst:10 msgid "**Source code:** :source:`Lib/email/headerregistry.py`" msgstr "" -#: ../../library/email.headerregistry.rst:14 msgid "[1]_" msgstr "" -#: ../../library/email.headerregistry.rst:16 -msgid "" -"Headers are represented by customized subclasses of :class:`str`. The " -"particular class used to represent a given header is determined by " -"the :attr:`~email.policy.EmailPolicy.header_factory` of " -"the :mod:`~email.policy` in effect when the headers are created. This " -"section documents the particular ``header_factory`` implemented by the email " -"package for handling :RFC:`5322` compliant email messages, which not only " -"provides customized header objects for various header types, but also " -"provides an extension mechanism for applications to add their own custom " -"header types." -msgstr "" - -#: ../../library/email.headerregistry.rst:25 -msgid "" -"When using any of the policy objects derived " -"from :data:`~email.policy.EmailPolicy`, all headers are produced " -"by :class:`.HeaderRegistry` and have :class:`.BaseHeader` as their last base " -"class. Each header class has an additional base class that is determined by " -"the type of the header. For example, many headers have the " -"class :class:`.UnstructuredHeader` as their other base class. The " -"specialized second class for a header is determined by the name of the " -"header, using a lookup table stored in the :class:`.HeaderRegistry`. All of " -"this is managed transparently for the typical application program, but " -"interfaces are provided for modifying the default behavior for use by more " -"complex applications." -msgstr "" - -#: ../../library/email.headerregistry.rst:36 -msgid "" -"The sections below first document the header base classes and their " -"attributes, followed by the API for modifying the behavior " -"of :class:`.HeaderRegistry`, and finally the support classes used to " -"represent the data parsed from structured headers." +msgid "Headers are represented by customized subclasses of :class:`str`. The particular class used to represent a given header is determined by the :attr:`~email.policy.EmailPolicy.header_factory` of the :mod:`~email.policy` in effect when the headers are created. This section documents the particular ``header_factory`` implemented by the email package for handling :RFC:`5322` compliant email messages, which not only provides customized header objects for various header types, but also provides an extension mechanism for applications to add their own custom header types." msgstr "" -#: ../../library/email.headerregistry.rst:44 -msgid "" -"*name* and *value* are passed to ``BaseHeader`` from " -"the :attr:`~email.policy.EmailPolicy.header_factory` call. The string value " -"of any header object is the *value* fully decoded to unicode." +msgid "When using any of the policy objects derived from :data:`~email.policy.EmailPolicy`, all headers are produced by :class:`.HeaderRegistry` and have :class:`.BaseHeader` as their last base class. Each header class has an additional base class that is determined by the type of the header. For example, many headers have the class :class:`.UnstructuredHeader` as their other base class. The specialized second class for a header is determined by the name of the header, using a lookup table stored in the :class:`.HeaderRegistry`. All of this is managed transparently for the typical application program, but interfaces are provided for modifying the default behavior for use by more complex applications." +msgstr "" + +msgid "The sections below first document the header base classes and their attributes, followed by the API for modifying the behavior of :class:`.HeaderRegistry`, and finally the support classes used to represent the data parsed from structured headers." +msgstr "" + +msgid "*name* and *value* are passed to ``BaseHeader`` from the :attr:`~email.policy.EmailPolicy.header_factory` call. The string value of any header object is the *value* fully decoded to unicode." msgstr "" -#: ../../library/email.headerregistry.rst:48 msgid "This base class defines the following read-only properties:" msgstr "" -#: ../../library/email.headerregistry.rst:53 -msgid "" -"The name of the header (the portion of the field before the ':'). This is " -"exactly the value passed in " -"the :attr:`~email.policy.EmailPolicy.header_factory` call for *name*; that " -"is, case is preserved." +msgid "The name of the header (the portion of the field before the ':'). This is exactly the value passed in the :attr:`~email.policy.EmailPolicy.header_factory` call for *name*; that is, case is preserved." msgstr "" -#: ../../library/email.headerregistry.rst:61 -msgid "" -"A tuple of :exc:`~email.errors.HeaderDefect` instances reporting any RFC " -"compliance problems found during parsing. The email package tries to be " -"complete about detecting compliance issues. See the :mod:`~email.errors` " -"module for a discussion of the types of defects that may be reported." +msgid "A tuple of :exc:`~email.errors.HeaderDefect` instances reporting any RFC compliance problems found during parsing. The email package tries to be complete about detecting compliance issues. See the :mod:`~email.errors` module for a discussion of the types of defects that may be reported." msgstr "" -#: ../../library/email.headerregistry.rst:69 -msgid "" -"The maximum number of headers of this type that can have the same ``name``. " -"A value of ``None`` means unlimited. The ``BaseHeader`` value for this " -"attribute is ``None``; it is expected that specialized header classes will " -"override this value as needed." +msgid "The maximum number of headers of this type that can have the same ``name``. A value of ``None`` means unlimited. The ``BaseHeader`` value for this attribute is ``None``; it is expected that specialized header classes will override this value as needed." msgstr "" -#: ../../library/email.headerregistry.rst:74 -msgid "" -"``BaseHeader`` also provides the following method, which is called by the " -"email library code and should not in general be called by application " -"programs:" +msgid "``BaseHeader`` also provides the following method, which is called by the email library code and should not in general be called by application programs:" msgstr "" -#: ../../library/email.headerregistry.rst:80 -msgid "" -"Return a string containing :attr:`~email.policy.Policy.linesep` characters " -"as required to correctly fold the header according to *policy*. " -"A :attr:`~email.policy.Policy.cte_type` of ``8bit`` will be treated as if it " -"were ``7bit``, since headers may not contain arbitrary binary data. " -"If :attr:`~email.policy.EmailPolicy.utf8` is ``False``, non-ASCII data will " -"be :rfc:`2047` encoded." +msgid "Return a string containing :attr:`~email.policy.Policy.linesep` characters as required to correctly fold the header according to *policy*. A :attr:`~email.policy.Policy.cte_type` of ``8bit`` will be treated as if it were ``7bit``, since headers may not contain arbitrary binary data. If :attr:`~email.policy.EmailPolicy.utf8` is ``False``, non-ASCII data will be :rfc:`2047` encoded." msgstr "" -#: ../../library/email.headerregistry.rst:88 -msgid "" -"``BaseHeader`` by itself cannot be used to create a header object. It " -"defines a protocol that each specialized header cooperates with in order to " -"produce the header object. Specifically, ``BaseHeader`` requires that the " -"specialized class provide a :func:`classmethod` named ``parse``. This " -"method is called as follows::" +msgid "``BaseHeader`` by itself cannot be used to create a header object. It defines a protocol that each specialized header cooperates with in order to produce the header object. Specifically, ``BaseHeader`` requires that the specialized class provide a :func:`classmethod` named ``parse``. This method is called as follows::" msgstr "" -#: ../../library/email.headerregistry.rst:94 msgid "parse(string, kwds)" msgstr "" -#: ../../library/email.headerregistry.rst:96 -msgid "" -"``kwds`` is a dictionary containing one pre-initialized key, ``defects``. " -"``defects`` is an empty list. The parse method should append any detected " -"defects to this list. On return, the ``kwds`` dictionary *must* contain " -"values for at least the keys ``decoded``, ``defects`` and ``parse_tree``. " -"``decoded`` should be the string value for the header (that is, the header " -"value fully decoded to unicode). ``parse_tree`` is set to the parse tree " -"obtained from parsing the header. The parse method should assume that " -"*string* may contain content-transfer-encoded parts, but should correctly " -"handle all valid unicode characters as well so that it can parse un-encoded " -"header values." -msgstr "" - -#: ../../library/email.headerregistry.rst:106 -msgid "" -"``BaseHeader``'s ``__new__`` then creates the header instance, and calls its " -"``init`` method. The specialized class only needs to provide an ``init`` " -"method if it wishes to set additional attributes beyond those provided by " -"``BaseHeader`` itself. Such an ``init`` method should look like this::" +msgid "``kwds`` is a dictionary containing one pre-initialized key, ``defects``. ``defects`` is an empty list. The parse method should append any detected defects to this list. On return, the ``kwds`` dictionary *must* contain values for at least the keys ``decoded``, ``defects`` and ``parse_tree``. ``decoded`` should be the string value for the header (that is, the header value fully decoded to unicode). ``parse_tree`` is set to the parse tree obtained from parsing the header. The parse method should assume that *string* may contain content-transfer-encoded parts, but should correctly handle all valid unicode characters as well so that it can parse un-encoded header values." +msgstr "" + +msgid "``BaseHeader``'s ``__new__`` then creates the header instance, and calls its ``init`` method. The specialized class only needs to provide an ``init`` method if it wishes to set additional attributes beyond those provided by ``BaseHeader`` itself. Such an ``init`` method should look like this::" msgstr "" -#: ../../library/email.headerregistry.rst:111 msgid "" "def init(self, /, *args, **kw):\n" " self._myattr = kw.pop('myattr')\n" " super().init(*args, **kw)" msgstr "" -#: ../../library/email.headerregistry.rst:115 -msgid "" -"That is, anything extra that the specialized class puts in to the ``kwds`` " -"dictionary should be removed and handled, and the remaining contents of " -"``kw`` (and ``args``) passed to the ``BaseHeader`` ``init`` method." +msgid "That is, anything extra that the specialized class puts in to the ``kwds`` dictionary should be removed and handled, and the remaining contents of ``kw`` (and ``args``) passed to the ``BaseHeader`` ``init`` method." msgstr "" -#: ../../library/email.headerregistry.rst:122 -msgid "" -"An \"unstructured\" header is the default type of header in :rfc:`5322`. Any " -"header that does not have a specified syntax is treated as unstructured. " -"The classic example of an unstructured header is the :mailheader:`Subject` " -"header." +msgid "An \"unstructured\" header is the default type of header in :rfc:`5322`. Any header that does not have a specified syntax is treated as unstructured. The classic example of an unstructured header is the :mailheader:`Subject` header." +msgstr "" + +msgid "In :rfc:`5322`, an unstructured header is a run of arbitrary text in the ASCII character set. :rfc:`2047`, however, has an :rfc:`5322` compatible mechanism for encoding non-ASCII text as ASCII characters within a header value. When a *value* containing encoded words is passed to the constructor, the ``UnstructuredHeader`` parser converts such encoded words into unicode, following the :rfc:`2047` rules for unstructured text. The parser uses heuristics to attempt to decode certain non-compliant encoded words. Defects are registered in such cases, as well as defects for issues such as invalid characters within the encoded words or the non-encoded text." msgstr "" -#: ../../library/email.headerregistry.rst:127 -msgid "" -"In :rfc:`5322`, an unstructured header is a run of arbitrary text in the " -"ASCII character set. :rfc:`2047`, however, has an :rfc:`5322` compatible " -"mechanism for encoding non-ASCII text as ASCII characters within a header " -"value. When a *value* containing encoded words is passed to the " -"constructor, the ``UnstructuredHeader`` parser converts such encoded words " -"into unicode, following the :rfc:`2047` rules for unstructured text. The " -"parser uses heuristics to attempt to decode certain non-compliant encoded " -"words. Defects are registered in such cases, as well as defects for issues " -"such as invalid characters within the encoded words or the non-encoded text." -msgstr "" - -#: ../../library/email.headerregistry.rst:137 msgid "This header type provides no additional attributes." msgstr "" -#: ../../library/email.headerregistry.rst:142 -msgid "" -":rfc:`5322` specifies a very specific format for dates within email headers. " -"The ``DateHeader`` parser recognizes that date format, as well as " -"recognizing a number of variant forms that are sometimes found \"in the " -"wild\"." +msgid ":rfc:`5322` specifies a very specific format for dates within email headers. The ``DateHeader`` parser recognizes that date format, as well as recognizing a number of variant forms that are sometimes found \"in the wild\"." msgstr "" -#: ../../library/email.headerregistry.rst:147 -#: ../../library/email.headerregistry.rst:189 msgid "This header type provides the following additional attributes:" msgstr "" -#: ../../library/email.headerregistry.rst:151 -msgid "" -"If the header value can be recognized as a valid date of one form or " -"another, this attribute will contain a :class:`~datetime.datetime` instance " -"representing that date. If the timezone of the input date is specified as " -"``-0000`` (indicating it is in UTC but contains no information about the " -"source timezone), then :attr:`.datetime` will be a " -"naive :class:`~datetime.datetime`. If a specific timezone offset is found " -"(including ``+0000``), then :attr:`.datetime` will contain an aware " -"``datetime`` that uses :class:`datetime.timezone` to record the timezone " -"offset." -msgstr "" - -#: ../../library/email.headerregistry.rst:161 -msgid "" -"The ``decoded`` value of the header is determined by formatting the " -"``datetime`` according to the :rfc:`5322` rules; that is, it is set to::" +msgid "If the header value can be recognized as a valid date of one form or another, this attribute will contain a :class:`~datetime.datetime` instance representing that date. If the timezone of the input date is specified as ``-0000`` (indicating it is in UTC but contains no information about the source timezone), then :attr:`.datetime` will be a naive :class:`~datetime.datetime`. If a specific timezone offset is found (including ``+0000``), then :attr:`.datetime` will contain an aware ``datetime`` that uses :class:`datetime.timezone` to record the timezone offset." +msgstr "" + +msgid "The ``decoded`` value of the header is determined by formatting the ``datetime`` according to the :rfc:`5322` rules; that is, it is set to::" msgstr "" -#: ../../library/email.headerregistry.rst:164 msgid "email.utils.format_datetime(self.datetime)" msgstr "" -#: ../../library/email.headerregistry.rst:166 -msgid "" -"When creating a ``DateHeader``, *value* may be :class:`~datetime.datetime` " -"instance. This means, for example, that the following code is valid and " -"does what one would expect::" +msgid "When creating a ``DateHeader``, *value* may be :class:`~datetime.datetime` instance. This means, for example, that the following code is valid and does what one would expect::" msgstr "" -#: ../../library/email.headerregistry.rst:170 msgid "msg['Date'] = datetime(2011, 7, 15, 21)" msgstr "" -#: ../../library/email.headerregistry.rst:172 -msgid "" -"Because this is a naive ``datetime`` it will be interpreted as a UTC " -"timestamp, and the resulting value will have a timezone of ``-0000``. Much " -"more useful is to use the :func:`~email.utils.localtime` function from " -"the :mod:`~email.utils` module::" +msgid "Because this is a naive ``datetime`` it will be interpreted as a UTC timestamp, and the resulting value will have a timezone of ``-0000``. Much more useful is to use the :func:`~email.utils.localtime` function from the :mod:`~email.utils` module::" msgstr "" -#: ../../library/email.headerregistry.rst:177 msgid "msg['Date'] = utils.localtime()" msgstr "" -#: ../../library/email.headerregistry.rst:179 -msgid "" -"This example sets the date header to the current time and date using the " -"current timezone offset." +msgid "This example sets the date header to the current time and date using the current timezone offset." msgstr "" -#: ../../library/email.headerregistry.rst:185 -msgid "" -"Address headers are one of the most complex structured header types. The " -"``AddressHeader`` class provides a generic interface to any address header." +msgid "Address headers are one of the most complex structured header types. The ``AddressHeader`` class provides a generic interface to any address header." msgstr "" -#: ../../library/email.headerregistry.rst:194 -msgid "" -"A tuple of :class:`.Group` objects encoding the addresses and groups found " -"in the header value. Addresses that are not part of a group are represented " -"in this list as single-address ``Groups`` whose :attr:`~.Group.display_name` " -"is ``None``." +msgid "A tuple of :class:`.Group` objects encoding the addresses and groups found in the header value. Addresses that are not part of a group are represented in this list as single-address ``Groups`` whose :attr:`~.Group.display_name` is ``None``." msgstr "" -#: ../../library/email.headerregistry.rst:202 -msgid "" -"A tuple of :class:`.Address` objects encoding all of the individual " -"addresses from the header value. If the header value contains any groups, " -"the individual addresses from the group are included in the list at the " -"point where the group occurs in the value (that is, the list of addresses is " -"\"flattened\" into a one dimensional list)." +msgid "A tuple of :class:`.Address` objects encoding all of the individual addresses from the header value. If the header value contains any groups, the individual addresses from the group are included in the list at the point where the group occurs in the value (that is, the list of addresses is \"flattened\" into a one dimensional list)." msgstr "" -#: ../../library/email.headerregistry.rst:208 -msgid "" -"The ``decoded`` value of the header will have all encoded words decoded to " -"unicode. :class:`~encodings.idna` encoded domain names are also decoded to " -"unicode. The ``decoded`` value is set by :ref:`joining ` " -"the :class:`str` value of the elements of the ``groups`` attribute with ``', " -"'``." +msgid "The ``decoded`` value of the header will have all encoded words decoded to unicode. :class:`~encodings.idna` encoded domain names are also decoded to unicode. The ``decoded`` value is set by :ref:`joining ` the :class:`str` value of the elements of the ``groups`` attribute with ``', '``." msgstr "" -#: ../../library/email.headerregistry.rst:214 -msgid "" -"A list of :class:`.Address` and :class:`.Group` objects in any combination " -"may be used to set the value of an address header. ``Group`` objects whose " -"``display_name`` is ``None`` will be interpreted as single addresses, which " -"allows an address list to be copied with groups intact by using the list " -"obtained from the ``groups`` attribute of the source header." +msgid "A list of :class:`.Address` and :class:`.Group` objects in any combination may be used to set the value of an address header. ``Group`` objects whose ``display_name`` is ``None`` will be interpreted as single addresses, which allows an address list to be copied with groups intact by using the list obtained from the ``groups`` attribute of the source header." msgstr "" -#: ../../library/email.headerregistry.rst:223 -msgid "" -"A subclass of :class:`.AddressHeader` that adds one additional attribute:" +msgid "A subclass of :class:`.AddressHeader` that adds one additional attribute:" msgstr "" -#: ../../library/email.headerregistry.rst:229 -msgid "" -"The single address encoded by the header value. If the header value " -"actually contains more than one address (which would be a violation of the " -"RFC under the default :mod:`~email.policy`), accessing this attribute will " -"result in a :exc:`ValueError`." +msgid "The single address encoded by the header value. If the header value actually contains more than one address (which would be a violation of the RFC under the default :mod:`~email.policy`), accessing this attribute will result in a :exc:`ValueError`." msgstr "" -#: ../../library/email.headerregistry.rst:235 -msgid "" -"Many of the above classes also have a ``Unique`` variant (for example, " -"``UniqueUnstructuredHeader``). The only difference is that in the " -"``Unique`` variant, :attr:`~.BaseHeader.max_count` is set to 1." +msgid "Many of the above classes also have a ``Unique`` variant (for example, ``UniqueUnstructuredHeader``). The only difference is that in the ``Unique`` variant, :attr:`~.BaseHeader.max_count` is set to 1." msgstr "" -#: ../../library/email.headerregistry.rst:242 -msgid "" -"There is really only one valid value for the :mailheader:`MIME-Version` " -"header, and that is ``1.0``. For future proofing, this header class " -"supports other valid version numbers. If a version number has a valid value " -"per :rfc:`2045`, then the header object will have non-``None`` values for " -"the following attributes:" +msgid "There is really only one valid value for the :mailheader:`MIME-Version` header, and that is ``1.0``. For future proofing, this header class supports other valid version numbers. If a version number has a valid value per :rfc:`2045`, then the header object will have non-``None`` values for the following attributes:" msgstr "" -#: ../../library/email.headerregistry.rst:250 -msgid "" -"The version number as a string, with any whitespace and/or comments removed." +msgid "The version number as a string, with any whitespace and/or comments removed." msgstr "" -#: ../../library/email.headerregistry.rst:255 msgid "The major version number as an integer" msgstr "" -#: ../../library/email.headerregistry.rst:259 msgid "The minor version number as an integer" msgstr "" -#: ../../library/email.headerregistry.rst:264 -msgid "" -"MIME headers all start with the prefix 'Content-'. Each specific header has " -"a certain value, described under the class for that header. Some can also " -"take a list of supplemental parameters, which have a common format. This " -"class serves as a base for all the MIME headers that take parameters." +msgid "MIME headers all start with the prefix 'Content-'. Each specific header has a certain value, described under the class for that header. Some can also take a list of supplemental parameters, which have a common format. This class serves as a base for all the MIME headers that take parameters." msgstr "" -#: ../../library/email.headerregistry.rst:271 msgid "A dictionary mapping parameter names to parameter values." msgstr "" -#: ../../library/email.headerregistry.rst:276 -msgid "" -"A :class:`ParameterizedMIMEHeader` class that handles " -"the :mailheader:`Content-Type` header." +msgid "A :class:`ParameterizedMIMEHeader` class that handles the :mailheader:`Content-Type` header." msgstr "" -#: ../../library/email.headerregistry.rst:281 msgid "The content type string, in the form ``maintype/subtype``." msgstr "" -#: ../../library/email.headerregistry.rst:290 -msgid "" -"A :class:`ParameterizedMIMEHeader` class that handles " -"the :mailheader:`Content-Disposition` header." +msgid "A :class:`ParameterizedMIMEHeader` class that handles the :mailheader:`Content-Disposition` header." msgstr "" -#: ../../library/email.headerregistry.rst:295 msgid "``inline`` and ``attachment`` are the only valid values in common use." msgstr "" -#: ../../library/email.headerregistry.rst:300 msgid "Handles the :mailheader:`Content-Transfer-Encoding` header." msgstr "" -#: ../../library/email.headerregistry.rst:304 -msgid "" -"Valid values are ``7bit``, ``8bit``, ``base64``, and ``quoted-printable``. " -"See :rfc:`2045` for more information." +msgid "Valid values are ``7bit``, ``8bit``, ``base64``, and ``quoted-printable``. See :rfc:`2045` for more information." +msgstr "" + +msgid "This is the factory used by :class:`~email.policy.EmailPolicy` by default. ``HeaderRegistry`` builds the class used to create a header instance dynamically, using *base_class* and a specialized class retrieved from a registry that it holds. When a given header name does not appear in the registry, the class specified by *default_class* is used as the specialized class. When *use_default_map* is ``True`` (the default), the standard mapping of header names to classes is copied in to the registry during initialization. *base_class* is always the last class in the generated class's :class:`~type.__bases__` list." msgstr "" -#: ../../library/email.headerregistry.rst:313 -msgid "" -"This is the factory used by :class:`~email.policy.EmailPolicy` by default. " -"``HeaderRegistry`` builds the class used to create a header instance " -"dynamically, using *base_class* and a specialized class retrieved from a " -"registry that it holds. When a given header name does not appear in the " -"registry, the class specified by *default_class* is used as the specialized " -"class. When *use_default_map* is ``True`` (the default), the standard " -"mapping of header names to classes is copied in to the registry during " -"initialization. *base_class* is always the last class in the generated " -"class's :class:`~type.__bases__` list." -msgstr "" - -#: ../../library/email.headerregistry.rst:323 msgid "The default mappings are:" msgstr "" -#: ../../library/email.headerregistry.rst:0 msgid "subject" msgstr "" -#: ../../library/email.headerregistry.rst:325 msgid "UniqueUnstructuredHeader" msgstr "" -#: ../../library/email.headerregistry.rst:0 msgid "date" msgstr "" -#: ../../library/email.headerregistry.rst:326 -#: ../../library/email.headerregistry.rst:328 msgid "UniqueDateHeader" msgstr "" -#: ../../library/email.headerregistry.rst:0 msgid "resent-date" msgstr "" -#: ../../library/email.headerregistry.rst:327 msgid "DateHeader" msgstr "" -#: ../../library/email.headerregistry.rst:0 msgid "orig-date" msgstr "" -#: ../../library/email.headerregistry.rst:0 msgid "sender" msgstr "" -#: ../../library/email.headerregistry.rst:329 msgid "UniqueSingleAddressHeader" msgstr "" -#: ../../library/email.headerregistry.rst:0 msgid "resent-sender" msgstr "" -#: ../../library/email.headerregistry.rst:330 msgid "SingleAddressHeader" msgstr "" -#: ../../library/email.headerregistry.rst:0 msgid "to" msgstr "" -#: ../../library/email.headerregistry.rst:331 -#: ../../library/email.headerregistry.rst:333 -#: ../../library/email.headerregistry.rst:335 -#: ../../library/email.headerregistry.rst:337 -#: ../../library/email.headerregistry.rst:339 msgid "UniqueAddressHeader" msgstr "" -#: ../../library/email.headerregistry.rst:0 msgid "resent-to" msgstr "" -#: ../../library/email.headerregistry.rst:332 -#: ../../library/email.headerregistry.rst:334 -#: ../../library/email.headerregistry.rst:336 -#: ../../library/email.headerregistry.rst:338 msgid "AddressHeader" msgstr "" -#: ../../library/email.headerregistry.rst:0 msgid "cc" msgstr "" -#: ../../library/email.headerregistry.rst:0 msgid "resent-cc" msgstr "" -#: ../../library/email.headerregistry.rst:0 msgid "bcc" msgstr "" -#: ../../library/email.headerregistry.rst:0 msgid "resent-bcc" msgstr "" -#: ../../library/email.headerregistry.rst:0 msgid "from" msgstr "" -#: ../../library/email.headerregistry.rst:0 msgid "resent-from" msgstr "" -#: ../../library/email.headerregistry.rst:0 msgid "reply-to" msgstr "" -#: ../../library/email.headerregistry.rst:0 msgid "mime-version" msgstr "" -#: ../../library/email.headerregistry.rst:340 msgid "MIMEVersionHeader" msgstr "" -#: ../../library/email.headerregistry.rst:0 msgid "content-type" msgstr "" -#: ../../library/email.headerregistry.rst:341 msgid "ContentTypeHeader" msgstr "" -#: ../../library/email.headerregistry.rst:0 msgid "content-disposition" msgstr "" -#: ../../library/email.headerregistry.rst:342 msgid "ContentDispositionHeader" msgstr "" -#: ../../library/email.headerregistry.rst:0 msgid "content-transfer-encoding" msgstr "" -#: ../../library/email.headerregistry.rst:343 msgid "ContentTransferEncodingHeader" msgstr "" -#: ../../library/email.headerregistry.rst:0 msgid "message-id" msgstr "" -#: ../../library/email.headerregistry.rst:344 msgid "MessageIDHeader" msgstr "" -#: ../../library/email.headerregistry.rst:346 msgid "``HeaderRegistry`` has the following methods:" msgstr "" -#: ../../library/email.headerregistry.rst:351 -msgid "" -"*name* is the name of the header to be mapped. It will be converted to " -"lower case in the registry. *cls* is the specialized class to be used, " -"along with *base_class*, to create the class used to instantiate headers " -"that match *name*." +msgid "*name* is the name of the header to be mapped. It will be converted to lower case in the registry. *cls* is the specialized class to be used, along with *base_class*, to create the class used to instantiate headers that match *name*." msgstr "" -#: ../../library/email.headerregistry.rst:359 msgid "Construct and return a class to handle creating a *name* header." msgstr "" -#: ../../library/email.headerregistry.rst:364 -msgid "" -"Retrieves the specialized header associated with *name* from the registry " -"(using *default_class* if *name* does not appear in the registry) and " -"composes it with *base_class* to produce a class, calls the constructed " -"class's constructor, passing it the same argument list, and finally returns " -"the class instance created thereby." +msgid "Retrieves the specialized header associated with *name* from the registry (using *default_class* if *name* does not appear in the registry) and composes it with *base_class* to produce a class, calls the constructed class's constructor, passing it the same argument list, and finally returns the class instance created thereby." msgstr "" -#: ../../library/email.headerregistry.rst:371 -msgid "" -"The following classes are the classes used to represent data parsed from " -"structured headers and can, in general, be used by an application program to " -"construct structured values to assign to specific headers." +msgid "The following classes are the classes used to represent data parsed from structured headers and can, in general, be used by an application program to construct structured values to assign to specific headers." msgstr "" -#: ../../library/email.headerregistry.rst:378 -msgid "" -"The class used to represent an email address. The general form of an " -"address is::" +msgid "The class used to represent an email address. The general form of an address is::" msgstr "" -#: ../../library/email.headerregistry.rst:381 msgid "[display_name] " msgstr "" -#: ../../library/email.headerregistry.rst:383 msgid "or::" msgstr "" -#: ../../library/email.headerregistry.rst:385 msgid "username@domain" msgstr "" -#: ../../library/email.headerregistry.rst:387 -msgid "" -"where each part must conform to specific syntax rules spelled out " -"in :rfc:`5322`." +msgid "where each part must conform to specific syntax rules spelled out in :rfc:`5322`." msgstr "" -#: ../../library/email.headerregistry.rst:390 -msgid "" -"As a convenience *addr_spec* can be specified instead of *username* and " -"*domain*, in which case *username* and *domain* will be parsed from the " -"*addr_spec*. An *addr_spec* must be a properly RFC quoted string; if it is " -"not ``Address`` will raise an error. Unicode characters are allowed and " -"will be property encoded when serialized. However, per the RFCs, unicode is " -"*not* allowed in the username portion of the address." +msgid "As a convenience *addr_spec* can be specified instead of *username* and *domain*, in which case *username* and *domain* will be parsed from the *addr_spec*. An *addr_spec* must be a properly RFC quoted string; if it is not ``Address`` will raise an error. Unicode characters are allowed and will be property encoded when serialized. However, per the RFCs, unicode is *not* allowed in the username portion of the address." msgstr "" -#: ../../library/email.headerregistry.rst:399 -msgid "" -"The display name portion of the address, if any, with all quoting removed. " -"If the address does not have a display name, this attribute will be an empty " -"string." +msgid "The display name portion of the address, if any, with all quoting removed. If the address does not have a display name, this attribute will be an empty string." msgstr "" -#: ../../library/email.headerregistry.rst:405 msgid "The ``username`` portion of the address, with all quoting removed." msgstr "" -#: ../../library/email.headerregistry.rst:409 msgid "The ``domain`` portion of the address." msgstr "" -#: ../../library/email.headerregistry.rst:413 -msgid "" -"The ``username@domain`` portion of the address, correctly quoted for use as " -"a bare address (the second form shown above). This attribute is not mutable." +msgid "The ``username@domain`` portion of the address, correctly quoted for use as a bare address (the second form shown above). This attribute is not mutable." msgstr "" -#: ../../library/email.headerregistry.rst:419 -msgid "" -"The ``str`` value of the object is the address quoted according " -"to :rfc:`5322` rules, but with no Content Transfer Encoding of any non-ASCII " -"characters." +msgid "The ``str`` value of the object is the address quoted according to :rfc:`5322` rules, but with no Content Transfer Encoding of any non-ASCII characters." msgstr "" -#: ../../library/email.headerregistry.rst:423 -msgid "" -"To support SMTP (:rfc:`5321`), ``Address`` handles one special case: if " -"``username`` and ``domain`` are both the empty string (or ``None``), then " -"the string value of the ``Address`` is ``<>``." +msgid "To support SMTP (:rfc:`5321`), ``Address`` handles one special case: if ``username`` and ``domain`` are both the empty string (or ``None``), then the string value of the ``Address`` is ``<>``." msgstr "" -#: ../../library/email.headerregistry.rst:430 -msgid "" -"The class used to represent an address group. The general form of an " -"address group is::" +msgid "The class used to represent an address group. The general form of an address group is::" msgstr "" -#: ../../library/email.headerregistry.rst:433 msgid "display_name: [address-list];" msgstr "" -#: ../../library/email.headerregistry.rst:435 -msgid "" -"As a convenience for processing lists of addresses that consist of a mixture " -"of groups and single addresses, a ``Group`` may also be used to represent " -"single addresses that are not part of a group by setting *display_name* to " -"``None`` and providing a list of the single address as *addresses*." +msgid "As a convenience for processing lists of addresses that consist of a mixture of groups and single addresses, a ``Group`` may also be used to represent single addresses that are not part of a group by setting *display_name* to ``None`` and providing a list of the single address as *addresses*." msgstr "" -#: ../../library/email.headerregistry.rst:442 -msgid "" -"The ``display_name`` of the group. If it is ``None`` and there is exactly " -"one ``Address`` in ``addresses``, then the ``Group`` represents a single " -"address that is not in a group." +msgid "The ``display_name`` of the group. If it is ``None`` and there is exactly one ``Address`` in ``addresses``, then the ``Group`` represents a single address that is not in a group." msgstr "" -#: ../../library/email.headerregistry.rst:448 -msgid "" -"A possibly empty tuple of :class:`.Address` objects representing the " -"addresses in the group." +msgid "A possibly empty tuple of :class:`.Address` objects representing the addresses in the group." msgstr "" -#: ../../library/email.headerregistry.rst:453 -msgid "" -"The ``str`` value of a ``Group`` is formatted according to :rfc:`5322`, but " -"with no Content Transfer Encoding of any non-ASCII characters. If " -"``display_name`` is none and there is a single ``Address`` in the " -"``addresses`` list, the ``str`` value will be the same as the ``str`` of " -"that single ``Address``." +msgid "The ``str`` value of a ``Group`` is formatted according to :rfc:`5322`, but with no Content Transfer Encoding of any non-ASCII characters. If ``display_name`` is none and there is a single ``Address`` in the ``addresses`` list, the ``str`` value will be the same as the ``str`` of that single ``Address``." msgstr "" -#: ../../library/email.headerregistry.rst:461 msgid "Footnotes" msgstr "" -#: ../../library/email.headerregistry.rst:462 -msgid "" -"Originally added in 3.3 as a :term:`provisional module `" +msgid "Originally added in 3.3 as a :term:`provisional module `" msgstr "" diff --git a/library/email.iterators.po b/library/email.iterators.po index 83abd727..ab251ef0 100644 --- a/library/email.iterators.po +++ b/library/email.iterators.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:05+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,70 +21,36 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/email.iterators.rst:2 msgid ":mod:`!email.iterators`: Iterators" msgstr "" -#: ../../library/email.iterators.rst:7 msgid "**Source code:** :source:`Lib/email/iterators.py`" msgstr "" -#: ../../library/email.iterators.rst:11 -msgid "" -"Iterating over a message object tree is fairly easy with " -"the :meth:`Message.walk ` method. The :mod:`!" -"email.iterators` module provides some useful higher level iterations over " -"message object trees." +msgid "Iterating over a message object tree is fairly easy with the :meth:`Message.walk ` method. The :mod:`!email.iterators` module provides some useful higher level iterations over message object trees." msgstr "" -#: ../../library/email.iterators.rst:19 -msgid "" -"This iterates over all the payloads in all the subparts of *msg*, returning " -"the string payloads line-by-line. It skips over all the subpart headers, " -"and it skips over any subpart with a payload that isn't a Python string. " -"This is somewhat equivalent to reading the flat text representation of the " -"message from a file using :meth:`~io.TextIOBase.readline`, skipping over all " -"the intervening headers." +msgid "This iterates over all the payloads in all the subparts of *msg*, returning the string payloads line-by-line. It skips over all the subpart headers, and it skips over any subpart with a payload that isn't a Python string. This is somewhat equivalent to reading the flat text representation of the message from a file using :meth:`~io.TextIOBase.readline`, skipping over all the intervening headers." msgstr "" -#: ../../library/email.iterators.rst:26 -msgid "" -"Optional *decode* is passed through to :meth:`Message.get_payload " -"`." +msgid "Optional *decode* is passed through to :meth:`Message.get_payload `." msgstr "" -#: ../../library/email.iterators.rst:32 -msgid "" -"This iterates over all the subparts of *msg*, returning only those subparts " -"that match the MIME type specified by *maintype* and *subtype*." +msgid "This iterates over all the subparts of *msg*, returning only those subparts that match the MIME type specified by *maintype* and *subtype*." msgstr "" -#: ../../library/email.iterators.rst:35 -msgid "" -"Note that *subtype* is optional; if omitted, then subpart MIME type matching " -"is done only with the main type. *maintype* is optional too; it defaults " -"to :mimetype:`text`." +msgid "Note that *subtype* is optional; if omitted, then subpart MIME type matching is done only with the main type. *maintype* is optional too; it defaults to :mimetype:`text`." msgstr "" -#: ../../library/email.iterators.rst:39 -msgid "" -"Thus, by default :func:`typed_subpart_iterator` returns each subpart that " -"has a MIME type of :mimetype:`text/\\*`." +msgid "Thus, by default :func:`typed_subpart_iterator` returns each subpart that has a MIME type of :mimetype:`text/\\*`." msgstr "" -#: ../../library/email.iterators.rst:43 -msgid "" -"The following function has been added as a useful debugging tool. It should " -"*not* be considered part of the supported public interface for the package." +msgid "The following function has been added as a useful debugging tool. It should *not* be considered part of the supported public interface for the package." msgstr "" -#: ../../library/email.iterators.rst:48 -msgid "" -"Prints an indented representation of the content types of the message object " -"structure. For example:" +msgid "Prints an indented representation of the content types of the message object structure. For example:" msgstr "" -#: ../../library/email.iterators.rst:57 msgid "" ">>> msg = email.message_from_file(somefile)\n" ">>> _structure(msg)\n" @@ -105,9 +71,5 @@ msgid "" " text/plain" msgstr "" -#: ../../library/email.iterators.rst:81 -msgid "" -"Optional *fp* is a file-like object to print the output to. It must be " -"suitable for Python's :func:`print` function. *level* is used internally. " -"*include_default*, if true, prints the default type as well." +msgid "Optional *fp* is a file-like object to print the output to. It must be suitable for Python's :func:`print` function. *level* is used internally. *include_default*, if true, prints the default type as well." msgstr "" diff --git a/library/email.message.po b/library/email.message.po index 3222c642..e87498cd 100644 --- a/library/email.message.po +++ b/library/email.message.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:05+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,576 +23,243 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/email.message.rst:2 msgid ":mod:`!email.message`: Representing an email message" msgstr "" -#: ../../library/email.message.rst:10 msgid "**Source code:** :source:`Lib/email/message.py`" msgstr "" -#: ../../library/email.message.rst:14 msgid "[1]_" msgstr "" -#: ../../library/email.message.rst:16 -msgid "" -"The central class in the :mod:`email` package is the :class:`EmailMessage` " -"class, imported from the :mod:`!email.message` module. It is the base class " -"for the :mod:`email` object model. :class:`EmailMessage` provides the core " -"functionality for setting and querying header fields, for accessing message " -"bodies, and for creating or modifying structured messages." +msgid "The central class in the :mod:`email` package is the :class:`EmailMessage` class, imported from the :mod:`!email.message` module. It is the base class for the :mod:`email` object model. :class:`EmailMessage` provides the core functionality for setting and querying header fields, for accessing message bodies, and for creating or modifying structured messages." msgstr "" -#: ../../library/email.message.rst:22 -msgid "" -"An email message consists of *headers* and a *payload* (which is also " -"referred to as the *content*). Headers are :rfc:`5322` or :rfc:`6532` style " -"field names and values, where the field name and value are separated by a " -"colon. The colon is not part of either the field name or the field value. " -"The payload may be a simple text message, or a binary object, or a " -"structured sequence of sub-messages each with their own set of headers and " -"their own payload. The latter type of payload is indicated by the message " -"having a MIME type such as :mimetype:`multipart/\\*` or :mimetype:`message/" -"rfc822`." -msgstr "" - -#: ../../library/email.message.rst:31 -msgid "" -"The conceptual model provided by an :class:`EmailMessage` object is that of " -"an ordered dictionary of headers coupled with a *payload* that represents " -"the :rfc:`5322` body of the message, which might be a list of sub-" -"``EmailMessage`` objects. In addition to the normal dictionary methods for " -"accessing the header names and values, there are methods for accessing " -"specialized information from the headers (for example the MIME content " -"type), for operating on the payload, for generating a serialized version of " -"the message, and for recursively walking over the object tree." +msgid "An email message consists of *headers* and a *payload* (which is also referred to as the *content*). Headers are :rfc:`5322` or :rfc:`6532` style field names and values, where the field name and value are separated by a colon. The colon is not part of either the field name or the field value. The payload may be a simple text message, or a binary object, or a structured sequence of sub-messages each with their own set of headers and their own payload. The latter type of payload is indicated by the message having a MIME type such as :mimetype:`multipart/\\*` or :mimetype:`message/rfc822`." msgstr "" -#: ../../library/email.message.rst:40 -msgid "" -"The :class:`EmailMessage` dictionary-like interface is indexed by the header " -"names, which must be ASCII values. The values of the dictionary are strings " -"with some extra methods. Headers are stored and returned in case-preserving " -"form, but field names are matched case-insensitively. The keys are ordered, " -"but unlike a real dict, there can be duplicates. Additional methods are " -"provided for working with headers that have duplicate keys." +msgid "The conceptual model provided by an :class:`EmailMessage` object is that of an ordered dictionary of headers coupled with a *payload* that represents the :rfc:`5322` body of the message, which might be a list of sub-``EmailMessage`` objects. In addition to the normal dictionary methods for accessing the header names and values, there are methods for accessing specialized information from the headers (for example the MIME content type), for operating on the payload, for generating a serialized version of the message, and for recursively walking over the object tree." msgstr "" -#: ../../library/email.message.rst:47 -msgid "" -"The *payload* is either a string or bytes object, in the case of simple " -"message objects, or a list of :class:`EmailMessage` objects, for MIME " -"container documents such as :mimetype:`multipart/\\*` and :mimetype:`message/" -"rfc822` message objects." +msgid "The :class:`EmailMessage` dictionary-like interface is indexed by the header names, which must be ASCII values. The values of the dictionary are strings with some extra methods. Headers are stored and returned in case-preserving form, but field names are matched case-insensitively. The keys are ordered, but unlike a real dict, there can be duplicates. Additional methods are provided for working with headers that have duplicate keys." msgstr "" -#: ../../library/email.message.rst:55 -msgid "" -"If *policy* is specified use the rules it specifies to update and serialize " -"the representation of the message. If *policy* is not set, use " -"the :class:`~email.policy.default` policy, which follows the rules of the " -"email RFCs except for line endings (instead of the RFC mandated ``\\r\\n``, " -"it uses the Python standard ``\\n`` line endings). For more information see " -"the :mod:`~email.policy` documentation. [2]_" +msgid "The *payload* is either a string or bytes object, in the case of simple message objects, or a list of :class:`EmailMessage` objects, for MIME container documents such as :mimetype:`multipart/\\*` and :mimetype:`message/rfc822` message objects." msgstr "" -#: ../../library/email.message.rst:64 -msgid "" -"Return the entire message flattened as a string. When optional *unixfrom* " -"is true, the envelope header is included in the returned string. *unixfrom* " -"defaults to ``False``. For backward compatibility with the " -"base :class:`~email.message.Message` class *maxheaderlen* is accepted, but " -"defaults to ``None``, which means that by default the line length is " -"controlled by the :attr:`~email.policy.Policy.max_line_length` of the " -"policy. The *policy* argument may be used to override the default policy " -"obtained from the message instance. This can be used to control some of the " -"formatting produced by the method, since the specified *policy* will be " -"passed to the :class:`~email.generator.Generator`." -msgstr "" - -#: ../../library/email.message.rst:76 ../../library/email.message.rst:114 -msgid "" -"Flattening the message may trigger changes to the :class:`EmailMessage` if " -"defaults need to be filled in to complete the transformation to a string " -"(for example, MIME boundaries may be generated or modified)." +msgid "If *policy* is specified use the rules it specifies to update and serialize the representation of the message. If *policy* is not set, use the :class:`~email.policy.default` policy, which follows the rules of the email RFCs except for line endings (instead of the RFC mandated ``\\r\\n``, it uses the Python standard ``\\n`` line endings). For more information see the :mod:`~email.policy` documentation. [2]_" msgstr "" -#: ../../library/email.message.rst:80 -msgid "" -"Note that this method is provided as a convenience and may not be the most " -"useful way to serialize messages in your application, especially if you are " -"dealing with multiple messages. See :class:`email.generator.Generator` for " -"a more flexible API for serializing messages. Note also that this method is " -"restricted to producing messages serialized as \"7 bit clean\" " -"when :attr:`~email.policy.EmailPolicy.utf8` is ``False``, which is the " -"default." +msgid "Return the entire message flattened as a string. When optional *unixfrom* is true, the envelope header is included in the returned string. *unixfrom* defaults to ``False``. For backward compatibility with the base :class:`~email.message.Message` class *maxheaderlen* is accepted, but defaults to ``None``, which means that by default the line length is controlled by the :attr:`~email.policy.Policy.max_line_length` of the policy. The *policy* argument may be used to override the default policy obtained from the message instance. This can be used to control some of the formatting produced by the method, since the specified *policy* will be passed to the :class:`~email.generator.Generator`." msgstr "" -#: ../../library/email.message.rst:88 -msgid "" -"the default behavior when *maxheaderlen* is not specified was changed from " -"defaulting to 0 to defaulting to the value of *max_line_length* from the " -"policy." +msgid "Flattening the message may trigger changes to the :class:`EmailMessage` if defaults need to be filled in to complete the transformation to a string (for example, MIME boundaries may be generated or modified)." msgstr "" -#: ../../library/email.message.rst:95 -msgid "" -"Equivalent to ``as_string(policy=self.policy.clone(utf8=True))``. Allows " -"``str(msg)`` to produce a string containing the serialized message in a " -"readable format." +msgid "Note that this method is provided as a convenience and may not be the most useful way to serialize messages in your application, especially if you are dealing with multiple messages. See :class:`email.generator.Generator` for a more flexible API for serializing messages. Note also that this method is restricted to producing messages serialized as \"7 bit clean\" when :attr:`~email.policy.EmailPolicy.utf8` is ``False``, which is the default." msgstr "" -#: ../../library/email.message.rst:99 -msgid "" -"the method was changed to use ``utf8=True``, thus producing an :rfc:`6531`-" -"like message representation, instead of being a direct alias " -"for :meth:`as_string`." +msgid "the default behavior when *maxheaderlen* is not specified was changed from defaulting to 0 to defaulting to the value of *max_line_length* from the policy." msgstr "" -#: ../../library/email.message.rst:106 -msgid "" -"Return the entire message flattened as a bytes object. When optional " -"*unixfrom* is true, the envelope header is included in the returned string. " -"*unixfrom* defaults to ``False``. The *policy* argument may be used to " -"override the default policy obtained from the message instance. This can be " -"used to control some of the formatting produced by the method, since the " -"specified *policy* will be passed to " -"the :class:`~email.generator.BytesGenerator`." +msgid "Equivalent to ``as_string(policy=self.policy.clone(utf8=True))``. Allows ``str(msg)`` to produce a string containing the serialized message in a readable format." msgstr "" -#: ../../library/email.message.rst:118 -msgid "" -"Note that this method is provided as a convenience and may not be the most " -"useful way to serialize messages in your application, especially if you are " -"dealing with multiple messages. See :class:`email.generator.BytesGenerator` " -"for a more flexible API for serializing messages." +msgid "the method was changed to use ``utf8=True``, thus producing an :rfc:`6531`-like message representation, instead of being a direct alias for :meth:`as_string`." msgstr "" -#: ../../library/email.message.rst:127 -msgid "" -"Equivalent to :meth:`.as_bytes`. Allows ``bytes(msg)`` to produce a bytes " -"object containing the serialized message." +msgid "Return the entire message flattened as a bytes object. When optional *unixfrom* is true, the envelope header is included in the returned string. *unixfrom* defaults to ``False``. The *policy* argument may be used to override the default policy obtained from the message instance. This can be used to control some of the formatting produced by the method, since the specified *policy* will be passed to the :class:`~email.generator.BytesGenerator`." msgstr "" -#: ../../library/email.message.rst:133 -msgid "" -"Return ``True`` if the message's payload is a list of sub-" -"\\ :class:`EmailMessage` objects, otherwise return ``False``. " -"When :meth:`is_multipart` returns ``False``, the payload should be a string " -"object (which might be a CTE encoded binary payload). Note " -"that :meth:`is_multipart` returning ``True`` does not necessarily mean that " -"\"msg.get_content_maintype() == 'multipart'\" will return the ``True``. For " -"example, ``is_multipart`` will return ``True`` when " -"the :class:`EmailMessage` is of type ``message/rfc822``." +msgid "Note that this method is provided as a convenience and may not be the most useful way to serialize messages in your application, especially if you are dealing with multiple messages. See :class:`email.generator.BytesGenerator` for a more flexible API for serializing messages." msgstr "" -#: ../../library/email.message.rst:145 -msgid "" -"Set the message's envelope header to *unixfrom*, which should be a string. " -"(See :class:`~mailbox.mboxMessage` for a brief description of this header.)" +msgid "Equivalent to :meth:`.as_bytes`. Allows ``bytes(msg)`` to produce a bytes object containing the serialized message." msgstr "" -#: ../../library/email.message.rst:152 -msgid "" -"Return the message's envelope header. Defaults to ``None`` if the envelope " -"header was never set." +msgid "Return ``True`` if the message's payload is a list of sub-\\ :class:`EmailMessage` objects, otherwise return ``False``. When :meth:`is_multipart` returns ``False``, the payload should be a string object (which might be a CTE encoded binary payload). Note that :meth:`is_multipart` returning ``True`` does not necessarily mean that \"msg.get_content_maintype() == 'multipart'\" will return the ``True``. For example, ``is_multipart`` will return ``True`` when the :class:`EmailMessage` is of type ``message/rfc822``." msgstr "" -#: ../../library/email.message.rst:156 -msgid "" -"The following methods implement the mapping-like interface for accessing the " -"message's headers. Note that there are some semantic differences between " -"these methods and a normal mapping (i.e. dictionary) interface. For " -"example, in a dictionary there are no duplicate keys, but here there may be " -"duplicate message headers. Also, in dictionaries there is no guaranteed " -"order to the keys returned by :meth:`keys`, but in an :class:`EmailMessage` " -"object, headers are always returned in the order they appeared in the " -"original message, or in which they were added to the message later. Any " -"header deleted and then re-added is always appended to the end of the header " -"list." -msgstr "" - -#: ../../library/email.message.rst:167 -msgid "" -"These semantic differences are intentional and are biased toward convenience " -"in the most common use cases." +msgid "Set the message's envelope header to *unixfrom*, which should be a string. (See :class:`~mailbox.mboxMessage` for a brief description of this header.)" msgstr "" -#: ../../library/email.message.rst:170 -msgid "" -"Note that in all cases, any envelope header present in the message is not " -"included in the mapping interface." +msgid "Return the message's envelope header. Defaults to ``None`` if the envelope header was never set." +msgstr "" + +msgid "The following methods implement the mapping-like interface for accessing the message's headers. Note that there are some semantic differences between these methods and a normal mapping (i.e. dictionary) interface. For example, in a dictionary there are no duplicate keys, but here there may be duplicate message headers. Also, in dictionaries there is no guaranteed order to the keys returned by :meth:`keys`, but in an :class:`EmailMessage` object, headers are always returned in the order they appeared in the original message, or in which they were added to the message later. Any header deleted and then re-added is always appended to the end of the header list." +msgstr "" + +msgid "These semantic differences are intentional and are biased toward convenience in the most common use cases." +msgstr "" + +msgid "Note that in all cases, any envelope header present in the message is not included in the mapping interface." msgstr "" -#: ../../library/email.message.rst:176 msgid "Return the total number of headers, including duplicates." msgstr "" -#: ../../library/email.message.rst:181 -msgid "" -"Return ``True`` if the message object has a field named *name*. Matching is " -"done without regard to case and *name* does not include the trailing colon. " -"Used for the ``in`` operator. For example::" +msgid "Return ``True`` if the message object has a field named *name*. Matching is done without regard to case and *name* does not include the trailing colon. Used for the ``in`` operator. For example::" msgstr "" -#: ../../library/email.message.rst:185 msgid "" "if 'message-id' in myMessage:\n" " print('Message-ID:', myMessage['message-id'])" msgstr "" -#: ../../library/email.message.rst:191 -msgid "" -"Return the value of the named header field. *name* does not include the " -"colon field separator. If the header is missing, ``None`` is returned; " -"a :exc:`KeyError` is never raised." +msgid "Return the value of the named header field. *name* does not include the colon field separator. If the header is missing, ``None`` is returned; a :exc:`KeyError` is never raised." msgstr "" -#: ../../library/email.message.rst:195 -msgid "" -"Note that if the named field appears more than once in the message's " -"headers, exactly which of those field values will be returned is undefined. " -"Use the :meth:`get_all` method to get the values of all the extant headers " -"named *name*." +msgid "Note that if the named field appears more than once in the message's headers, exactly which of those field values will be returned is undefined. Use the :meth:`get_all` method to get the values of all the extant headers named *name*." msgstr "" -#: ../../library/email.message.rst:200 -msgid "" -"Using the standard (non-``compat32``) policies, the returned value is an " -"instance of a subclass of :class:`email.headerregistry.BaseHeader`." +msgid "Using the standard (non-``compat32``) policies, the returned value is an instance of a subclass of :class:`email.headerregistry.BaseHeader`." msgstr "" -#: ../../library/email.message.rst:206 -msgid "" -"Add a header to the message with field name *name* and value *val*. The " -"field is appended to the end of the message's existing headers." +msgid "Add a header to the message with field name *name* and value *val*. The field is appended to the end of the message's existing headers." msgstr "" -#: ../../library/email.message.rst:209 -msgid "" -"Note that this does *not* overwrite or delete any existing header with the " -"same name. If you want to ensure that the new header is the only one " -"present in the message with field name *name*, delete the field first, e.g.::" +msgid "Note that this does *not* overwrite or delete any existing header with the same name. If you want to ensure that the new header is the only one present in the message with field name *name*, delete the field first, e.g.::" msgstr "" -#: ../../library/email.message.rst:213 msgid "" "del msg['subject']\n" "msg['subject'] = 'Python roolz!'" msgstr "" -#: ../../library/email.message.rst:216 -msgid "" -"If the :mod:`policy ` defines certain headers to be unique (as " -"the standard policies do), this method may raise a :exc:`ValueError` when an " -"attempt is made to assign a value to such a header when one already exists. " -"This behavior is intentional for consistency's sake, but do not depend on it " -"as we may choose to make such assignments do an automatic deletion of the " -"existing header in the future." +msgid "If the :mod:`policy ` defines certain headers to be unique (as the standard policies do), this method may raise a :exc:`ValueError` when an attempt is made to assign a value to such a header when one already exists. This behavior is intentional for consistency's sake, but do not depend on it as we may choose to make such assignments do an automatic deletion of the existing header in the future." msgstr "" -#: ../../library/email.message.rst:226 -msgid "" -"Delete all occurrences of the field with name *name* from the message's " -"headers. No exception is raised if the named field isn't present in the " -"headers." +msgid "Delete all occurrences of the field with name *name* from the message's headers. No exception is raised if the named field isn't present in the headers." msgstr "" -#: ../../library/email.message.rst:233 msgid "Return a list of all the message's header field names." msgstr "" -#: ../../library/email.message.rst:238 msgid "Return a list of all the message's field values." msgstr "" -#: ../../library/email.message.rst:243 -msgid "" -"Return a list of 2-tuples containing all the message's field headers and " -"values." +msgid "Return a list of 2-tuples containing all the message's field headers and values." msgstr "" -#: ../../library/email.message.rst:249 -msgid "" -"Return the value of the named header field. This is identical " -"to :meth:`~object.__getitem__` except that optional *failobj* is returned if " -"the named header is missing (*failobj* defaults to ``None``)." +msgid "Return the value of the named header field. This is identical to :meth:`~object.__getitem__` except that optional *failobj* is returned if the named header is missing (*failobj* defaults to ``None``)." msgstr "" -#: ../../library/email.message.rst:254 msgid "Here are some additional useful header related methods:" msgstr "" -#: ../../library/email.message.rst:259 -msgid "" -"Return a list of all the values for the field named *name*. If there are no " -"such named headers in the message, *failobj* is returned (defaults to " -"``None``)." +msgid "Return a list of all the values for the field named *name*. If there are no such named headers in the message, *failobj* is returned (defaults to ``None``)." msgstr "" -#: ../../library/email.message.rst:266 -msgid "" -"Extended header setting. This method is similar to :meth:`__setitem__` " -"except that additional header parameters can be provided as keyword " -"arguments. *_name* is the header field to add and *_value* is the *primary* " -"value for the header." +msgid "Extended header setting. This method is similar to :meth:`__setitem__` except that additional header parameters can be provided as keyword arguments. *_name* is the header field to add and *_value* is the *primary* value for the header." msgstr "" -#: ../../library/email.message.rst:271 -msgid "" -"For each item in the keyword argument dictionary *_params*, the key is taken " -"as the parameter name, with underscores converted to dashes (since dashes " -"are illegal in Python identifiers). Normally, the parameter will be added " -"as ``key=\"value\"`` unless the value is ``None``, in which case only the " -"key will be added." +msgid "For each item in the keyword argument dictionary *_params*, the key is taken as the parameter name, with underscores converted to dashes (since dashes are illegal in Python identifiers). Normally, the parameter will be added as ``key=\"value\"`` unless the value is ``None``, in which case only the key will be added." +msgstr "" + +msgid "If the value contains non-ASCII characters, the charset and language may be explicitly controlled by specifying the value as a three tuple in the format ``(CHARSET, LANGUAGE, VALUE)``, where ``CHARSET`` is a string naming the charset to be used to encode the value, ``LANGUAGE`` can usually be set to ``None`` or the empty string (see :rfc:`2231` for other possibilities), and ``VALUE`` is the string value containing non-ASCII code points. If a three tuple is not passed and the value contains non-ASCII characters, it is automatically encoded in :rfc:`2231` format using a ``CHARSET`` of ``utf-8`` and a ``LANGUAGE`` of ``None``." msgstr "" -#: ../../library/email.message.rst:277 -msgid "" -"If the value contains non-ASCII characters, the charset and language may be " -"explicitly controlled by specifying the value as a three tuple in the format " -"``(CHARSET, LANGUAGE, VALUE)``, where ``CHARSET`` is a string naming the " -"charset to be used to encode the value, ``LANGUAGE`` can usually be set to " -"``None`` or the empty string (see :rfc:`2231` for other possibilities), and " -"``VALUE`` is the string value containing non-ASCII code points. If a three " -"tuple is not passed and the value contains non-ASCII characters, it is " -"automatically encoded in :rfc:`2231` format using a ``CHARSET`` of ``utf-8`` " -"and a ``LANGUAGE`` of ``None``." -msgstr "" - -#: ../../library/email.message.rst:287 msgid "Here is an example::" msgstr "" -#: ../../library/email.message.rst:289 msgid "msg.add_header('Content-Disposition', 'attachment', filename='bud.gif')" msgstr "" -#: ../../library/email.message.rst:291 msgid "This will add a header that looks like ::" msgstr "" -#: ../../library/email.message.rst:293 msgid "Content-Disposition: attachment; filename=\"bud.gif\"" msgstr "" -#: ../../library/email.message.rst:295 msgid "An example of the extended interface with non-ASCII characters::" msgstr "" -#: ../../library/email.message.rst:297 msgid "" "msg.add_header('Content-Disposition', 'attachment',\n" " filename=('iso-8859-1', '', 'Fußballer.ppt'))" msgstr "" -#: ../../library/email.message.rst:303 -msgid "" -"Replace a header. Replace the first header found in the message that " -"matches *_name*, retaining header order and field name case of the original " -"header. If no matching header is found, raise a :exc:`KeyError`." +msgid "Replace a header. Replace the first header found in the message that matches *_name*, retaining header order and field name case of the original header. If no matching header is found, raise a :exc:`KeyError`." msgstr "" -#: ../../library/email.message.rst:311 -msgid "" -"Return the message's content type, coerced to lower case of the " -"form :mimetype:`maintype/subtype`. If there is no :mailheader:`Content-" -"Type` header in the message return the value returned " -"by :meth:`get_default_type`. If the :mailheader:`Content-Type` header is " -"invalid, return ``text/plain``." +msgid "Return the message's content type, coerced to lower case of the form :mimetype:`maintype/subtype`. If there is no :mailheader:`Content-Type` header in the message return the value returned by :meth:`get_default_type`. If the :mailheader:`Content-Type` header is invalid, return ``text/plain``." msgstr "" -#: ../../library/email.message.rst:317 -msgid "" -"(According to :rfc:`2045`, messages always have a default " -"type, :meth:`get_content_type` will always return a value. :rfc:`2045` " -"defines a message's default type to be :mimetype:`text/plain` unless it " -"appears inside a :mimetype:`multipart/digest` container, in which case it " -"would be :mimetype:`message/rfc822`. If the :mailheader:`Content-Type` " -"header has an invalid type specification, :rfc:`2045` mandates that the " -"default type be :mimetype:`text/plain`.)" +msgid "(According to :rfc:`2045`, messages always have a default type, :meth:`get_content_type` will always return a value. :rfc:`2045` defines a message's default type to be :mimetype:`text/plain` unless it appears inside a :mimetype:`multipart/digest` container, in which case it would be :mimetype:`message/rfc822`. If the :mailheader:`Content-Type` header has an invalid type specification, :rfc:`2045` mandates that the default type be :mimetype:`text/plain`.)" msgstr "" -#: ../../library/email.message.rst:328 -msgid "" -"Return the message's main content type. This is the :mimetype:`maintype` " -"part of the string returned by :meth:`get_content_type`." +msgid "Return the message's main content type. This is the :mimetype:`maintype` part of the string returned by :meth:`get_content_type`." msgstr "" -#: ../../library/email.message.rst:334 -msgid "" -"Return the message's sub-content type. This is the :mimetype:`subtype` part " -"of the string returned by :meth:`get_content_type`." +msgid "Return the message's sub-content type. This is the :mimetype:`subtype` part of the string returned by :meth:`get_content_type`." msgstr "" -#: ../../library/email.message.rst:340 -msgid "" -"Return the default content type. Most messages have a default content type " -"of :mimetype:`text/plain`, except for messages that are subparts " -"of :mimetype:`multipart/digest` containers. Such subparts have a default " -"content type of :mimetype:`message/rfc822`." +msgid "Return the default content type. Most messages have a default content type of :mimetype:`text/plain`, except for messages that are subparts of :mimetype:`multipart/digest` containers. Such subparts have a default content type of :mimetype:`message/rfc822`." msgstr "" -#: ../../library/email.message.rst:348 -msgid "" -"Set the default content type. *ctype* should either be :mimetype:`text/" -"plain` or :mimetype:`message/rfc822`, although this is not enforced. The " -"default content type is not stored in the :mailheader:`Content-Type` header, " -"so it only affects the return value of the ``get_content_type`` methods when " -"no :mailheader:`Content-Type` header is present in the message." +msgid "Set the default content type. *ctype* should either be :mimetype:`text/plain` or :mimetype:`message/rfc822`, although this is not enforced. The default content type is not stored in the :mailheader:`Content-Type` header, so it only affects the return value of the ``get_content_type`` methods when no :mailheader:`Content-Type` header is present in the message." msgstr "" -#: ../../library/email.message.rst:359 -msgid "" -"Set a parameter in the :mailheader:`Content-Type` header. If the parameter " -"already exists in the header, replace its value with *value*. When *header* " -"is ``Content-Type`` (the default) and the header does not yet exist in the " -"message, add it, set its value to :mimetype:`text/plain`, and append the new " -"parameter value. Optional *header* specifies an alternative header " -"to :mailheader:`Content-Type`." +msgid "Set a parameter in the :mailheader:`Content-Type` header. If the parameter already exists in the header, replace its value with *value*. When *header* is ``Content-Type`` (the default) and the header does not yet exist in the message, add it, set its value to :mimetype:`text/plain`, and append the new parameter value. Optional *header* specifies an alternative header to :mailheader:`Content-Type`." msgstr "" -#: ../../library/email.message.rst:366 -msgid "" -"If the value contains non-ASCII characters, the charset and language may be " -"explicitly specified using the optional *charset* and *language* " -"parameters. Optional *language* specifies the :rfc:`2231` language, " -"defaulting to the empty string. Both *charset* and *language* should be " -"strings. The default is to use the ``utf8`` *charset* and ``None`` for the " -"*language*." +msgid "If the value contains non-ASCII characters, the charset and language may be explicitly specified using the optional *charset* and *language* parameters. Optional *language* specifies the :rfc:`2231` language, defaulting to the empty string. Both *charset* and *language* should be strings. The default is to use the ``utf8`` *charset* and ``None`` for the *language*." msgstr "" -#: ../../library/email.message.rst:373 -msgid "" -"If *replace* is ``False`` (the default) the header is moved to the end of " -"the list of headers. If *replace* is ``True``, the header will be updated " -"in place." +msgid "If *replace* is ``False`` (the default) the header is moved to the end of the list of headers. If *replace* is ``True``, the header will be updated in place." msgstr "" -#: ../../library/email.message.rst:377 ../../library/email.message.rst:394 -msgid "" -"Use of the *requote* parameter with :class:`EmailMessage` objects is " -"deprecated." +msgid "Use of the *requote* parameter with :class:`EmailMessage` objects is deprecated." msgstr "" -#: ../../library/email.message.rst:380 -msgid "" -"Note that existing parameter values of headers may be accessed through " -"the :attr:`~email.headerregistry.ParameterizedMIMEHeader.params` attribute " -"of the header value (for example, ``msg['Content-Type'].params['charset']``)." +msgid "Note that existing parameter values of headers may be accessed through the :attr:`~email.headerregistry.ParameterizedMIMEHeader.params` attribute of the header value (for example, ``msg['Content-Type'].params['charset']``)." msgstr "" -#: ../../library/email.message.rst:384 msgid "``replace`` keyword was added." msgstr "" -#: ../../library/email.message.rst:389 -msgid "" -"Remove the given parameter completely from the :mailheader:`Content-Type` " -"header. The header will be re-written in place without the parameter or its " -"value. Optional *header* specifies an alternative to :mailheader:`Content-" -"Type`." +msgid "Remove the given parameter completely from the :mailheader:`Content-Type` header. The header will be re-written in place without the parameter or its value. Optional *header* specifies an alternative to :mailheader:`Content-Type`." msgstr "" -#: ../../library/email.message.rst:400 -msgid "" -"Return the value of the ``filename`` parameter of the :mailheader:`Content-" -"Disposition` header of the message. If the header does not have a " -"``filename`` parameter, this method falls back to looking for the ``name`` " -"parameter on the :mailheader:`Content-Type` header. If neither is found, or " -"the header is missing, then *failobj* is returned. The returned string will " -"always be unquoted as per :func:`email.utils.unquote`." +msgid "Return the value of the ``filename`` parameter of the :mailheader:`Content-Disposition` header of the message. If the header does not have a ``filename`` parameter, this method falls back to looking for the ``name`` parameter on the :mailheader:`Content-Type` header. If neither is found, or the header is missing, then *failobj* is returned. The returned string will always be unquoted as per :func:`email.utils.unquote`." msgstr "" -#: ../../library/email.message.rst:411 -msgid "" -"Return the value of the ``boundary`` parameter of the :mailheader:`Content-" -"Type` header of the message, or *failobj* if either the header is missing, " -"or has no ``boundary`` parameter. The returned string will always be " -"unquoted as per :func:`email.utils.unquote`." +msgid "Return the value of the ``boundary`` parameter of the :mailheader:`Content-Type` header of the message, or *failobj* if either the header is missing, or has no ``boundary`` parameter. The returned string will always be unquoted as per :func:`email.utils.unquote`." msgstr "" -#: ../../library/email.message.rst:419 -msgid "" -"Set the ``boundary`` parameter of the :mailheader:`Content-Type` header to " -"*boundary*. :meth:`set_boundary` will always quote *boundary* if " -"necessary. A :exc:`~email.errors.HeaderParseError` is raised if the message " -"object has no :mailheader:`Content-Type` header." +msgid "Set the ``boundary`` parameter of the :mailheader:`Content-Type` header to *boundary*. :meth:`set_boundary` will always quote *boundary* if necessary. A :exc:`~email.errors.HeaderParseError` is raised if the message object has no :mailheader:`Content-Type` header." msgstr "" -#: ../../library/email.message.rst:424 -msgid "" -"Note that using this method is subtly different from deleting the " -"old :mailheader:`Content-Type` header and adding a new one with the new " -"boundary via :meth:`add_header`, because :meth:`set_boundary` preserves the " -"order of the :mailheader:`Content-Type` header in the list of headers." +msgid "Note that using this method is subtly different from deleting the old :mailheader:`Content-Type` header and adding a new one with the new boundary via :meth:`add_header`, because :meth:`set_boundary` preserves the order of the :mailheader:`Content-Type` header in the list of headers." msgstr "" -#: ../../library/email.message.rst:433 -msgid "" -"Return the ``charset`` parameter of the :mailheader:`Content-Type` header, " -"coerced to lower case. If there is no :mailheader:`Content-Type` header, or " -"if that header has no ``charset`` parameter, *failobj* is returned." +msgid "Return the ``charset`` parameter of the :mailheader:`Content-Type` header, coerced to lower case. If there is no :mailheader:`Content-Type` header, or if that header has no ``charset`` parameter, *failobj* is returned." msgstr "" -#: ../../library/email.message.rst:440 -msgid "" -"Return a list containing the character set names in the message. If the " -"message is a :mimetype:`multipart`, then the list will contain one element " -"for each subpart in the payload, otherwise, it will be a list of length 1." +msgid "Return a list containing the character set names in the message. If the message is a :mimetype:`multipart`, then the list will contain one element for each subpart in the payload, otherwise, it will be a list of length 1." msgstr "" -#: ../../library/email.message.rst:444 -msgid "" -"Each item in the list will be a string which is the value of the ``charset`` " -"parameter in the :mailheader:`Content-Type` header for the represented " -"subpart. If the subpart has no :mailheader:`Content-Type` header, no " -"``charset`` parameter, or is not of the :mimetype:`text` main MIME type, " -"then that item in the returned list will be *failobj*." +msgid "Each item in the list will be a string which is the value of the ``charset`` parameter in the :mailheader:`Content-Type` header for the represented subpart. If the subpart has no :mailheader:`Content-Type` header, no ``charset`` parameter, or is not of the :mimetype:`text` main MIME type, then that item in the returned list will be *failobj*." msgstr "" -#: ../../library/email.message.rst:453 -msgid "" -"Return ``True`` if there is a :mailheader:`Content-Disposition` header and " -"its (case insensitive) value is ``attachment``, ``False`` otherwise." +msgid "Return ``True`` if there is a :mailheader:`Content-Disposition` header and its (case insensitive) value is ``attachment``, ``False`` otherwise." msgstr "" -#: ../../library/email.message.rst:456 -msgid "" -"is_attachment is now a method instead of a property, for consistency " -"with :meth:`~email.message.Message.is_multipart`." +msgid "is_attachment is now a method instead of a property, for consistency with :meth:`~email.message.Message.is_multipart`." msgstr "" -#: ../../library/email.message.rst:463 -msgid "" -"Return the lowercased value (without parameters) of the " -"message's :mailheader:`Content-Disposition` header if it has one, or " -"``None``. The possible values for this method are *inline*, *attachment* or " -"``None`` if the message follows :rfc:`2183`." +msgid "Return the lowercased value (without parameters) of the message's :mailheader:`Content-Disposition` header if it has one, or ``None``. The possible values for this method are *inline*, *attachment* or ``None`` if the message follows :rfc:`2183`." msgstr "" -#: ../../library/email.message.rst:471 -msgid "" -"The following methods relate to interrogating and manipulating the content " -"(payload) of the message." +msgid "The following methods relate to interrogating and manipulating the content (payload) of the message." msgstr "" -#: ../../library/email.message.rst:477 -msgid "" -"The :meth:`walk` method is an all-purpose generator which can be used to " -"iterate over all the parts and subparts of a message object tree, in depth-" -"first traversal order. You will typically use :meth:`walk` as the iterator " -"in a ``for`` loop; each iteration returns the next subpart." +msgid "The :meth:`walk` method is an all-purpose generator which can be used to iterate over all the parts and subparts of a message object tree, in depth-first traversal order. You will typically use :meth:`walk` as the iterator in a ``for`` loop; each iteration returns the next subpart." msgstr "" -#: ../../library/email.message.rst:482 -msgid "" -"Here's an example that prints the MIME type of every part of a multipart " -"message structure:" +msgid "Here's an example that prints the MIME type of every part of a multipart message structure:" msgstr "" -#: ../../library/email.message.rst:491 msgid "" ">>> for part in msg.walk():\n" "... print(part.get_content_type())\n" @@ -605,15 +272,9 @@ msgid "" "text/plain" msgstr "" -#: ../../library/email.message.rst:503 -msgid "" -"``walk`` iterates over the subparts of any part where :meth:`is_multipart` " -"returns ``True``, even though ``msg.get_content_maintype() == 'multipart'`` " -"may return ``False``. We can see this in our example by making use of the " -"``_structure`` debug helper function:" +msgid "``walk`` iterates over the subparts of any part where :meth:`is_multipart` returns ``True``, even though ``msg.get_content_maintype() == 'multipart'`` may return ``False``. We can see this in our example by making use of the ``_structure`` debug helper function:" msgstr "" -#: ../../library/email.message.rst:509 msgid "" ">>> from email.iterators import _structure\n" ">>> for part in msg.walk():\n" @@ -636,264 +297,95 @@ msgid "" " text/plain" msgstr "" -#: ../../library/email.message.rst:531 -msgid "" -"Here the ``message`` parts are not ``multiparts``, but they do contain " -"subparts. ``is_multipart()`` returns ``True`` and ``walk`` descends into the " -"subparts." +msgid "Here the ``message`` parts are not ``multiparts``, but they do contain subparts. ``is_multipart()`` returns ``True`` and ``walk`` descends into the subparts." msgstr "" -#: ../../library/email.message.rst:538 -msgid "" -"Return the MIME part that is the best candidate to be the \"body\" of the " -"message." +msgid "Return the MIME part that is the best candidate to be the \"body\" of the message." msgstr "" -#: ../../library/email.message.rst:541 -msgid "" -"*preferencelist* must be a sequence of strings from the set ``related``, " -"``html``, and ``plain``, and indicates the order of preference for the " -"content type of the part returned." +msgid "*preferencelist* must be a sequence of strings from the set ``related``, ``html``, and ``plain``, and indicates the order of preference for the content type of the part returned." msgstr "" -#: ../../library/email.message.rst:545 -msgid "" -"Start looking for candidate matches with the object on which the " -"``get_body`` method is called." +msgid "Start looking for candidate matches with the object on which the ``get_body`` method is called." msgstr "" -#: ../../library/email.message.rst:548 -msgid "" -"If ``related`` is not included in *preferencelist*, consider the root part " -"(or subpart of the root part) of any related encountered as a candidate if " -"the (sub-)part matches a preference." +msgid "If ``related`` is not included in *preferencelist*, consider the root part (or subpart of the root part) of any related encountered as a candidate if the (sub-)part matches a preference." msgstr "" -#: ../../library/email.message.rst:552 -msgid "" -"When encountering a ``multipart/related``, check the ``start`` parameter and " -"if a part with a matching :mailheader:`Content-ID` is found, consider only " -"it when looking for candidate matches. Otherwise consider only the first " -"(default root) part of the ``multipart/related``." +msgid "When encountering a ``multipart/related``, check the ``start`` parameter and if a part with a matching :mailheader:`Content-ID` is found, consider only it when looking for candidate matches. Otherwise consider only the first (default root) part of the ``multipart/related``." msgstr "" -#: ../../library/email.message.rst:557 -msgid "" -"If a part has a :mailheader:`Content-Disposition` header, only consider the " -"part a candidate match if the value of the header is ``inline``." +msgid "If a part has a :mailheader:`Content-Disposition` header, only consider the part a candidate match if the value of the header is ``inline``." msgstr "" -#: ../../library/email.message.rst:560 -msgid "" -"If none of the candidates matches any of the preferences in " -"*preferencelist*, return ``None``." +msgid "If none of the candidates matches any of the preferences in *preferencelist*, return ``None``." msgstr "" -#: ../../library/email.message.rst:563 -msgid "" -"Notes: (1) For most applications the only *preferencelist* combinations that " -"really make sense are ``('plain',)``, ``('html', 'plain')``, and the default " -"``('related', 'html', 'plain')``. (2) Because matching starts with the " -"object on which ``get_body`` is called, calling ``get_body`` on a " -"``multipart/related`` will return the object itself unless *preferencelist* " -"has a non-default value. (3) Messages (or message parts) that do not specify " -"a :mailheader:`Content-Type` or whose :mailheader:`Content-Type` header is " -"invalid will be treated as if they are of type ``text/plain``, which may " -"occasionally cause ``get_body`` to return unexpected results." -msgstr "" - -#: ../../library/email.message.rst:577 -msgid "" -"Return an iterator over all of the immediate sub-parts of the message that " -"are not candidate \"body\" parts. That is, skip the first occurrence of " -"each of ``text/plain``, ``text/html``, ``multipart/related``, or ``multipart/" -"alternative`` (unless they are explicitly marked as attachments " -"via :mailheader:`Content-Disposition: attachment`), and return all remaining " -"parts. When applied directly to a ``multipart/related``, return an iterator " -"over the all the related parts except the root part (ie: the part pointed to " -"by the ``start`` parameter, or the first part if there is no ``start`` " -"parameter or the ``start`` parameter doesn't match the :mailheader:`Content-" -"ID` of any of the parts). When applied directly to a ``multipart/" -"alternative`` or a non-``multipart``, return an empty iterator." -msgstr "" - -#: ../../library/email.message.rst:593 -msgid "" -"Return an iterator over all of the immediate sub-parts of the message, which " -"will be empty for a non-``multipart``. (See " -"also :meth:`~email.message.EmailMessage.walk`.)" +msgid "Notes: (1) For most applications the only *preferencelist* combinations that really make sense are ``('plain',)``, ``('html', 'plain')``, and the default ``('related', 'html', 'plain')``. (2) Because matching starts with the object on which ``get_body`` is called, calling ``get_body`` on a ``multipart/related`` will return the object itself unless *preferencelist* has a non-default value. (3) Messages (or message parts) that do not specify a :mailheader:`Content-Type` or whose :mailheader:`Content-Type` header is invalid will be treated as if they are of type ``text/plain``, which may occasionally cause ``get_body`` to return unexpected results." msgstr "" -#: ../../library/email.message.rst:600 -msgid "" -"Call the :meth:`~email.contentmanager.ContentManager.get_content` method of " -"the *content_manager*, passing self as the message object, and passing along " -"any other arguments or keywords as additional arguments. If " -"*content_manager* is not specified, use the ``content_manager`` specified by " -"the current :mod:`~email.policy`." +msgid "Return an iterator over all of the immediate sub-parts of the message that are not candidate \"body\" parts. That is, skip the first occurrence of each of ``text/plain``, ``text/html``, ``multipart/related``, or ``multipart/alternative`` (unless they are explicitly marked as attachments via :mailheader:`Content-Disposition: attachment`), and return all remaining parts. When applied directly to a ``multipart/related``, return an iterator over the all the related parts except the root part (ie: the part pointed to by the ``start`` parameter, or the first part if there is no ``start`` parameter or the ``start`` parameter doesn't match the :mailheader:`Content-ID` of any of the parts). When applied directly to a ``multipart/alternative`` or a non-``multipart``, return an empty iterator." msgstr "" -#: ../../library/email.message.rst:609 -msgid "" -"Call the :meth:`~email.contentmanager.ContentManager.set_content` method of " -"the *content_manager*, passing self as the message object, and passing along " -"any other arguments or keywords as additional arguments. If " -"*content_manager* is not specified, use the ``content_manager`` specified by " -"the current :mod:`~email.policy`." +msgid "Return an iterator over all of the immediate sub-parts of the message, which will be empty for a non-``multipart``. (See also :meth:`~email.message.EmailMessage.walk`.)" msgstr "" -#: ../../library/email.message.rst:618 -msgid "" -"Convert a non-``multipart`` message into a ``multipart/related`` message, " -"moving any existing :mailheader:`Content-` headers and payload into a (new) " -"first part of the ``multipart``. If *boundary* is specified, use it as the " -"boundary string in the multipart, otherwise leave the boundary to be " -"automatically created when it is needed (for example, when the message is " -"serialized)." +msgid "Call the :meth:`~email.contentmanager.ContentManager.get_content` method of the *content_manager*, passing self as the message object, and passing along any other arguments or keywords as additional arguments. If *content_manager* is not specified, use the ``content_manager`` specified by the current :mod:`~email.policy`." msgstr "" -#: ../../library/email.message.rst:628 -msgid "" -"Convert a non-``multipart`` or a ``multipart/related`` into a ``multipart/" -"alternative``, moving any existing :mailheader:`Content-` headers and " -"payload into a (new) first part of the ``multipart``. If *boundary* is " -"specified, use it as the boundary string in the multipart, otherwise leave " -"the boundary to be automatically created when it is needed (for example, " -"when the message is serialized)." +msgid "Call the :meth:`~email.contentmanager.ContentManager.set_content` method of the *content_manager*, passing self as the message object, and passing along any other arguments or keywords as additional arguments. If *content_manager* is not specified, use the ``content_manager`` specified by the current :mod:`~email.policy`." msgstr "" -#: ../../library/email.message.rst:638 -msgid "" -"Convert a non-``multipart``, a ``multipart/related``, or a ``multipart-" -"alternative`` into a ``multipart/mixed``, moving any " -"existing :mailheader:`Content-` headers and payload into a (new) first part " -"of the ``multipart``. If *boundary* is specified, use it as the boundary " -"string in the multipart, otherwise leave the boundary to be automatically " -"created when it is needed (for example, when the message is serialized)." +msgid "Convert a non-``multipart`` message into a ``multipart/related`` message, moving any existing :mailheader:`Content-` headers and payload into a (new) first part of the ``multipart``. If *boundary* is specified, use it as the boundary string in the multipart, otherwise leave the boundary to be automatically created when it is needed (for example, when the message is serialized)." msgstr "" -#: ../../library/email.message.rst:648 -msgid "" -"If the message is a ``multipart/related``, create a new message object, pass " -"all of the arguments to its :meth:`set_content` method, " -"and :meth:`~email.message.Message.attach` it to the ``multipart``. If the " -"message is a non-``multipart``, call :meth:`make_related` and then proceed " -"as above. If the message is any other type of ``multipart``, raise " -"a :exc:`TypeError`. If *content_manager* is not specified, use the " -"``content_manager`` specified by the current :mod:`~email.policy`. If the " -"added part has no :mailheader:`Content-Disposition` header, add one with the " -"value ``inline``." -msgstr "" - -#: ../../library/email.message.rst:661 -msgid "" -"If the message is a ``multipart/alternative``, create a new message object, " -"pass all of the arguments to its :meth:`set_content` method, " -"and :meth:`~email.message.Message.attach` it to the ``multipart``. If the " -"message is a non-``multipart`` or ``multipart/related``, " -"call :meth:`make_alternative` and then proceed as above. If the message is " -"any other type of ``multipart``, raise a :exc:`TypeError`. If " -"*content_manager* is not specified, use the ``content_manager`` specified by " -"the current :mod:`~email.policy`." +msgid "Convert a non-``multipart`` or a ``multipart/related`` into a ``multipart/alternative``, moving any existing :mailheader:`Content-` headers and payload into a (new) first part of the ``multipart``. If *boundary* is specified, use it as the boundary string in the multipart, otherwise leave the boundary to be automatically created when it is needed (for example, when the message is serialized)." +msgstr "" + +msgid "Convert a non-``multipart``, a ``multipart/related``, or a ``multipart-alternative`` into a ``multipart/mixed``, moving any existing :mailheader:`Content-` headers and payload into a (new) first part of the ``multipart``. If *boundary* is specified, use it as the boundary string in the multipart, otherwise leave the boundary to be automatically created when it is needed (for example, when the message is serialized)." +msgstr "" + +msgid "If the message is a ``multipart/related``, create a new message object, pass all of the arguments to its :meth:`set_content` method, and :meth:`~email.message.Message.attach` it to the ``multipart``. If the message is a non-``multipart``, call :meth:`make_related` and then proceed as above. If the message is any other type of ``multipart``, raise a :exc:`TypeError`. If *content_manager* is not specified, use the ``content_manager`` specified by the current :mod:`~email.policy`. If the added part has no :mailheader:`Content-Disposition` header, add one with the value ``inline``." +msgstr "" + +msgid "If the message is a ``multipart/alternative``, create a new message object, pass all of the arguments to its :meth:`set_content` method, and :meth:`~email.message.Message.attach` it to the ``multipart``. If the message is a non-``multipart`` or ``multipart/related``, call :meth:`make_alternative` and then proceed as above. If the message is any other type of ``multipart``, raise a :exc:`TypeError`. If *content_manager* is not specified, use the ``content_manager`` specified by the current :mod:`~email.policy`." +msgstr "" + +msgid "If the message is a ``multipart/mixed``, create a new message object, pass all of the arguments to its :meth:`set_content` method, and :meth:`~email.message.Message.attach` it to the ``multipart``. If the message is a non-``multipart``, ``multipart/related``, or ``multipart/alternative``, call :meth:`make_mixed` and then proceed as above. If *content_manager* is not specified, use the ``content_manager`` specified by the current :mod:`~email.policy`. If the added part has no :mailheader:`Content-Disposition` header, add one with the value ``attachment``. This method can be used both for explicit attachments (:mailheader:`Content-Disposition: attachment`) and ``inline`` attachments (:mailheader:`Content-Disposition: inline`), by passing appropriate options to the ``content_manager``." msgstr "" -#: ../../library/email.message.rst:673 -msgid "" -"If the message is a ``multipart/mixed``, create a new message object, pass " -"all of the arguments to its :meth:`set_content` method, " -"and :meth:`~email.message.Message.attach` it to the ``multipart``. If the " -"message is a non-``multipart``, ``multipart/related``, or ``multipart/" -"alternative``, call :meth:`make_mixed` and then proceed as above. If " -"*content_manager* is not specified, use the ``content_manager`` specified by " -"the current :mod:`~email.policy`. If the added part has " -"no :mailheader:`Content-Disposition` header, add one with the value " -"``attachment``. This method can be used both for explicit attachments " -"(:mailheader:`Content-Disposition: attachment`) and ``inline`` attachments " -"(:mailheader:`Content-Disposition: inline`), by passing appropriate options " -"to the ``content_manager``." -msgstr "" - -#: ../../library/email.message.rst:689 msgid "Remove the payload and all of the headers." msgstr "" -#: ../../library/email.message.rst:694 -msgid "" -"Remove the payload and all of the :mailheader:`!Content-` headers, leaving " -"all other headers intact and in their original order." +msgid "Remove the payload and all of the :mailheader:`!Content-` headers, leaving all other headers intact and in their original order." msgstr "" -#: ../../library/email.message.rst:698 msgid ":class:`EmailMessage` objects have the following instance attributes:" msgstr "" -#: ../../library/email.message.rst:703 -msgid "" -"The format of a MIME document allows for some text between the blank line " -"following the headers, and the first multipart boundary string. Normally, " -"this text is never visible in a MIME-aware mail reader because it falls " -"outside the standard MIME armor. However, when viewing the raw text of the " -"message, or when viewing the message in a non-MIME aware reader, this text " -"can become visible." +msgid "The format of a MIME document allows for some text between the blank line following the headers, and the first multipart boundary string. Normally, this text is never visible in a MIME-aware mail reader because it falls outside the standard MIME armor. However, when viewing the raw text of the message, or when viewing the message in a non-MIME aware reader, this text can become visible." msgstr "" -#: ../../library/email.message.rst:710 -msgid "" -"The *preamble* attribute contains this leading extra-armor text for MIME " -"documents. When the :class:`~email.parser.Parser` discovers some text after " -"the headers but before the first boundary string, it assigns this text to " -"the message's *preamble* attribute. When " -"the :class:`~email.generator.Generator` is writing out the plain text " -"representation of a MIME message, and it finds the message has a *preamble* " -"attribute, it will write this text in the area between the headers and the " -"first boundary. See :mod:`email.parser` and :mod:`email.generator` for " -"details." -msgstr "" - -#: ../../library/email.message.rst:720 -msgid "" -"Note that if the message object has no preamble, the *preamble* attribute " -"will be ``None``." +msgid "The *preamble* attribute contains this leading extra-armor text for MIME documents. When the :class:`~email.parser.Parser` discovers some text after the headers but before the first boundary string, it assigns this text to the message's *preamble* attribute. When the :class:`~email.generator.Generator` is writing out the plain text representation of a MIME message, and it finds the message has a *preamble* attribute, it will write this text in the area between the headers and the first boundary. See :mod:`email.parser` and :mod:`email.generator` for details." msgstr "" -#: ../../library/email.message.rst:726 -msgid "" -"The *epilogue* attribute acts the same way as the *preamble* attribute, " -"except that it contains text that appears between the last boundary and the " -"end of the message. As with the :attr:`~EmailMessage.preamble`, if there is " -"no epilog text this attribute will be ``None``." +msgid "Note that if the message object has no preamble, the *preamble* attribute will be ``None``." msgstr "" -#: ../../library/email.message.rst:734 -msgid "" -"The *defects* attribute contains a list of all the problems found when " -"parsing this message. See :mod:`email.errors` for a detailed description of " -"the possible parsing defects." +msgid "The *epilogue* attribute acts the same way as the *preamble* attribute, except that it contains text that appears between the last boundary and the end of the message. As with the :attr:`~EmailMessage.preamble`, if there is no epilog text this attribute will be ``None``." msgstr "" -#: ../../library/email.message.rst:741 -msgid "" -"This class represents a subpart of a MIME message. It is identical " -"to :class:`EmailMessage`, except that no :mailheader:`MIME-Version` headers " -"are added when :meth:`~EmailMessage.set_content` is called, since sub-parts " -"do not need their own :mailheader:`MIME-Version` headers." +msgid "The *defects* attribute contains a list of all the problems found when parsing this message. See :mod:`email.errors` for a detailed description of the possible parsing defects." +msgstr "" + +msgid "This class represents a subpart of a MIME message. It is identical to :class:`EmailMessage`, except that no :mailheader:`MIME-Version` headers are added when :meth:`~EmailMessage.set_content` is called, since sub-parts do not need their own :mailheader:`MIME-Version` headers." msgstr "" -#: ../../library/email.message.rst:748 msgid "Footnotes" msgstr "" -#: ../../library/email.message.rst:749 -msgid "" -"Originally added in 3.4 as a :term:`provisional module `. Docs for legacy message class moved to :ref:`compat32_message`." +msgid "Originally added in 3.4 as a :term:`provisional module `. Docs for legacy message class moved to :ref:`compat32_message`." msgstr "" -#: ../../library/email.message.rst:753 -msgid "" -"The :class:`EmailMessage` class requires a policy that provides a " -"``content_manager`` attribute for content management methods like " -"``set_content()`` and ``get_content()`` to work. The " -"legacy :const:`~email.policy.compat32` policy does not support these methods " -"and should not be used with :class:`EmailMessage`." +msgid "The :class:`EmailMessage` class requires a policy that provides a ``content_manager`` attribute for content management methods like ``set_content()`` and ``get_content()`` to work. The legacy :const:`~email.policy.compat32` policy does not support these methods and should not be used with :class:`EmailMessage`." msgstr "" diff --git a/library/email.mime.po b/library/email.mime.po index 58c11f85..be03bc78 100644 --- a/library/email.mime.po +++ b/library/email.mime.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:05+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,293 +21,116 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/email.mime.rst:2 msgid ":mod:`!email.mime`: Creating email and MIME objects from scratch" msgstr "" -#: ../../library/email.mime.rst:7 msgid "**Source code:** :source:`Lib/email/mime/`" msgstr "" -#: ../../library/email.mime.rst:11 -msgid "" -"This module is part of the legacy (``Compat32``) email API. Its " -"functionality is partially replaced by the :mod:`~email.contentmanager` in " -"the new API, but in certain applications these classes may still be useful, " -"even in non-legacy code." +msgid "This module is part of the legacy (``Compat32``) email API. Its functionality is partially replaced by the :mod:`~email.contentmanager` in the new API, but in certain applications these classes may still be useful, even in non-legacy code." msgstr "" -#: ../../library/email.mime.rst:16 -msgid "" -"Ordinarily, you get a message object structure by passing a file or some " -"text to a parser, which parses the text and returns the root message " -"object. However you can also build a complete message structure from " -"scratch, or even individual :class:`~email.message.Message` objects by " -"hand. In fact, you can also take an existing structure and add " -"new :class:`~email.message.Message` objects, move them around, etc. This " -"makes a very convenient interface for slicing-and-dicing MIME messages." +msgid "Ordinarily, you get a message object structure by passing a file or some text to a parser, which parses the text and returns the root message object. However you can also build a complete message structure from scratch, or even individual :class:`~email.message.Message` objects by hand. In fact, you can also take an existing structure and add new :class:`~email.message.Message` objects, move them around, etc. This makes a very convenient interface for slicing-and-dicing MIME messages." msgstr "" -#: ../../library/email.mime.rst:24 -msgid "" -"You can create a new object structure by " -"creating :class:`~email.message.Message` instances, adding attachments and " -"all the appropriate headers manually. For MIME messages though, " -"the :mod:`email` package provides some convenient subclasses to make things " -"easier." +msgid "You can create a new object structure by creating :class:`~email.message.Message` instances, adding attachments and all the appropriate headers manually. For MIME messages though, the :mod:`email` package provides some convenient subclasses to make things easier." msgstr "" -#: ../../library/email.mime.rst:29 msgid "Here are the classes:" msgstr "" -#: ../../library/email.mime.rst:35 msgid "Module: :mod:`email.mime.base`" msgstr "" -#: ../../library/email.mime.rst:37 -msgid "" -"This is the base class for all the MIME-specific subclasses " -"of :class:`~email.message.Message`. Ordinarily you won't create instances " -"specifically of :class:`MIMEBase`, although you could. :class:`MIMEBase` is " -"provided primarily as a convenient base class for more specific MIME-aware " -"subclasses." +msgid "This is the base class for all the MIME-specific subclasses of :class:`~email.message.Message`. Ordinarily you won't create instances specifically of :class:`MIMEBase`, although you could. :class:`MIMEBase` is provided primarily as a convenient base class for more specific MIME-aware subclasses." msgstr "" -#: ../../library/email.mime.rst:43 -msgid "" -"*_maintype* is the :mailheader:`Content-Type` major type " -"(e.g. :mimetype:`text` or :mimetype:`image`), and *_subtype* is " -"the :mailheader:`Content-Type` minor type (e.g. :mimetype:`plain` " -"or :mimetype:`gif`). *_params* is a parameter key/value dictionary and is " -"passed directly to :meth:`Message.add_header " -"`." +msgid "*_maintype* is the :mailheader:`Content-Type` major type (e.g. :mimetype:`text` or :mimetype:`image`), and *_subtype* is the :mailheader:`Content-Type` minor type (e.g. :mimetype:`plain` or :mimetype:`gif`). *_params* is a parameter key/value dictionary and is passed directly to :meth:`Message.add_header `." msgstr "" -#: ../../library/email.mime.rst:49 -msgid "" -"If *policy* is specified, (defaults to the :class:`compat32 " -"` policy) it will be passed " -"to :class:`~email.message.Message`." +msgid "If *policy* is specified, (defaults to the :class:`compat32 ` policy) it will be passed to :class:`~email.message.Message`." msgstr "" -#: ../../library/email.mime.rst:53 -msgid "" -"The :class:`MIMEBase` class always adds a :mailheader:`Content-Type` header " -"(based on *_maintype*, *_subtype*, and *_params*), and a :mailheader:`MIME-" -"Version` header (always set to ``1.0``)." +msgid "The :class:`MIMEBase` class always adds a :mailheader:`Content-Type` header (based on *_maintype*, *_subtype*, and *_params*), and a :mailheader:`MIME-Version` header (always set to ``1.0``)." msgstr "" -#: ../../library/email.mime.rst:57 ../../library/email.mime.rst:104 -#: ../../library/email.mime.rst:135 ../../library/email.mime.rst:169 -#: ../../library/email.mime.rst:205 ../../library/email.mime.rst:225 -#: ../../library/email.mime.rst:259 msgid "Added *policy* keyword-only parameter." msgstr "" -#: ../../library/email.mime.rst:65 msgid "Module: :mod:`email.mime.nonmultipart`" msgstr "" -#: ../../library/email.mime.rst:67 -msgid "" -"A subclass of :class:`~email.mime.base.MIMEBase`, this is an intermediate " -"base class for MIME messages that are not :mimetype:`multipart`. The " -"primary purpose of this class is to prevent the use of " -"the :meth:`~email.message.Message.attach` method, which only makes sense " -"for :mimetype:`multipart` messages. " -"If :meth:`~email.message.Message.attach` is called, " -"a :exc:`~email.errors.MultipartConversionError` exception is raised." +msgid "A subclass of :class:`~email.mime.base.MIMEBase`, this is an intermediate base class for MIME messages that are not :mimetype:`multipart`. The primary purpose of this class is to prevent the use of the :meth:`~email.message.Message.attach` method, which only makes sense for :mimetype:`multipart` messages. If :meth:`~email.message.Message.attach` is called, a :exc:`~email.errors.MultipartConversionError` exception is raised." msgstr "" -#: ../../library/email.mime.rst:80 msgid "Module: :mod:`email.mime.multipart`" msgstr "" -#: ../../library/email.mime.rst:82 -msgid "" -"A subclass of :class:`~email.mime.base.MIMEBase`, this is an intermediate " -"base class for MIME messages that are :mimetype:`multipart`. Optional " -"*_subtype* defaults to :mimetype:`mixed`, but can be used to specify the " -"subtype of the message. A :mailheader:`Content-Type` header " -"of :mimetype:`multipart/_subtype` will be added to the message object. " -"A :mailheader:`MIME-Version` header will also be added." +msgid "A subclass of :class:`~email.mime.base.MIMEBase`, this is an intermediate base class for MIME messages that are :mimetype:`multipart`. Optional *_subtype* defaults to :mimetype:`mixed`, but can be used to specify the subtype of the message. A :mailheader:`Content-Type` header of :mimetype:`multipart/_subtype` will be added to the message object. A :mailheader:`MIME-Version` header will also be added." msgstr "" -#: ../../library/email.mime.rst:89 -msgid "" -"Optional *boundary* is the multipart boundary string. When ``None`` (the " -"default), the boundary is calculated when needed (for example, when the " -"message is serialized)." +msgid "Optional *boundary* is the multipart boundary string. When ``None`` (the default), the boundary is calculated when needed (for example, when the message is serialized)." msgstr "" -#: ../../library/email.mime.rst:93 -msgid "" -"*_subparts* is a sequence of initial subparts for the payload. It must be " -"possible to convert this sequence to a list. You can always attach new " -"subparts to the message by using the :meth:`Message.attach " -"` method." +msgid "*_subparts* is a sequence of initial subparts for the payload. It must be possible to convert this sequence to a list. You can always attach new subparts to the message by using the :meth:`Message.attach ` method." msgstr "" -#: ../../library/email.mime.rst:98 ../../library/email.mime.rst:131 -#: ../../library/email.mime.rst:165 ../../library/email.mime.rst:200 -#: ../../library/email.mime.rst:223 ../../library/email.mime.rst:254 -msgid "" -"Optional *policy* argument defaults to :class:`compat32 " -"`." +msgid "Optional *policy* argument defaults to :class:`compat32 `." msgstr "" -#: ../../library/email.mime.rst:100 -msgid "" -"Additional parameters for the :mailheader:`Content-Type` header are taken " -"from the keyword arguments, or passed into the *_params* argument, which is " -"a keyword dictionary." +msgid "Additional parameters for the :mailheader:`Content-Type` header are taken from the keyword arguments, or passed into the *_params* argument, which is a keyword dictionary." msgstr "" -#: ../../library/email.mime.rst:113 msgid "Module: :mod:`email.mime.application`" msgstr "" -#: ../../library/email.mime.rst:115 -msgid "" -"A subclass of :class:`~email.mime.nonmultipart.MIMENonMultipart`, " -"the :class:`MIMEApplication` class is used to represent MIME message objects " -"of major type :mimetype:`application`. *_data* contains the bytes for the " -"raw application data. Optional *_subtype* specifies the MIME subtype and " -"defaults to :mimetype:`octet-stream`." +msgid "A subclass of :class:`~email.mime.nonmultipart.MIMENonMultipart`, the :class:`MIMEApplication` class is used to represent MIME message objects of major type :mimetype:`application`. *_data* contains the bytes for the raw application data. Optional *_subtype* specifies the MIME subtype and defaults to :mimetype:`octet-stream`." +msgstr "" + +msgid "Optional *_encoder* is a callable (i.e. function) which will perform the actual encoding of the data for transport. This callable takes one argument, which is the :class:`MIMEApplication` instance. It should use :meth:`~email.message.Message.get_payload` and :meth:`~email.message.Message.set_payload` to change the payload to encoded form. It should also add any :mailheader:`Content-Transfer-Encoding` or other headers to the message object as necessary. The default encoding is base64. See the :mod:`email.encoders` module for a list of the built-in encoders." msgstr "" -#: ../../library/email.mime.rst:121 -msgid "" -"Optional *_encoder* is a callable (i.e. function) which will perform the " -"actual encoding of the data for transport. This callable takes one " -"argument, which is the :class:`MIMEApplication` instance. It should " -"use :meth:`~email.message.Message.get_payload` " -"and :meth:`~email.message.Message.set_payload` to change the payload to " -"encoded form. It should also add any :mailheader:`Content-Transfer-" -"Encoding` or other headers to the message object as necessary. The default " -"encoding is base64. See the :mod:`email.encoders` module for a list of the " -"built-in encoders." -msgstr "" - -#: ../../library/email.mime.rst:133 ../../library/email.mime.rst:167 msgid "*_params* are passed straight through to the base class constructor." msgstr "" -#: ../../library/email.mime.rst:144 msgid "Module: :mod:`email.mime.audio`" msgstr "" -#: ../../library/email.mime.rst:146 -msgid "" -"A subclass of :class:`~email.mime.nonmultipart.MIMENonMultipart`, " -"the :class:`MIMEAudio` class is used to create MIME message objects of major " -"type :mimetype:`audio`. *_audiodata* contains the bytes for the raw audio " -"data. If this data can be decoded as au, wav, aiff, or aifc, then the " -"subtype will be automatically included in the :mailheader:`Content-Type` " -"header. Otherwise you can explicitly specify the audio subtype via the " -"*_subtype* argument. If the minor type could not be guessed and *_subtype* " -"was not given, then :exc:`TypeError` is raised." +msgid "A subclass of :class:`~email.mime.nonmultipart.MIMENonMultipart`, the :class:`MIMEAudio` class is used to create MIME message objects of major type :mimetype:`audio`. *_audiodata* contains the bytes for the raw audio data. If this data can be decoded as au, wav, aiff, or aifc, then the subtype will be automatically included in the :mailheader:`Content-Type` header. Otherwise you can explicitly specify the audio subtype via the *_subtype* argument. If the minor type could not be guessed and *_subtype* was not given, then :exc:`TypeError` is raised." +msgstr "" + +msgid "Optional *_encoder* is a callable (i.e. function) which will perform the actual encoding of the audio data for transport. This callable takes one argument, which is the :class:`MIMEAudio` instance. It should use :meth:`~email.message.Message.get_payload` and :meth:`~email.message.Message.set_payload` to change the payload to encoded form. It should also add any :mailheader:`Content-Transfer-Encoding` or other headers to the message object as necessary. The default encoding is base64. See the :mod:`email.encoders` module for a list of the built-in encoders." msgstr "" -#: ../../library/email.mime.rst:155 -msgid "" -"Optional *_encoder* is a callable (i.e. function) which will perform the " -"actual encoding of the audio data for transport. This callable takes one " -"argument, which is the :class:`MIMEAudio` instance. It should " -"use :meth:`~email.message.Message.get_payload` " -"and :meth:`~email.message.Message.set_payload` to change the payload to " -"encoded form. It should also add any :mailheader:`Content-Transfer-" -"Encoding` or other headers to the message object as necessary. The default " -"encoding is base64. See the :mod:`email.encoders` module for a list of the " -"built-in encoders." -msgstr "" - -#: ../../library/email.mime.rst:178 msgid "Module: :mod:`email.mime.image`" msgstr "" -#: ../../library/email.mime.rst:180 -msgid "" -"A subclass of :class:`~email.mime.nonmultipart.MIMENonMultipart`, " -"the :class:`MIMEImage` class is used to create MIME message objects of major " -"type :mimetype:`image`. *_imagedata* contains the bytes for the raw image " -"data. If this data type can be detected (jpeg, png, gif, tiff, rgb, pbm, " -"pgm, ppm, rast, xbm, bmp, webp, and exr attempted), then the subtype will be " -"automatically included in the :mailheader:`Content-Type` header. Otherwise " -"you can explicitly specify the image subtype via the *_subtype* argument. If " -"the minor type could not be guessed and *_subtype* was not given, " -"then :exc:`TypeError` is raised." -msgstr "" - -#: ../../library/email.mime.rst:190 -msgid "" -"Optional *_encoder* is a callable (i.e. function) which will perform the " -"actual encoding of the image data for transport. This callable takes one " -"argument, which is the :class:`MIMEImage` instance. It should " -"use :meth:`~email.message.Message.get_payload` " -"and :meth:`~email.message.Message.set_payload` to change the payload to " -"encoded form. It should also add any :mailheader:`Content-Transfer-" -"Encoding` or other headers to the message object as necessary. The default " -"encoding is base64. See the :mod:`email.encoders` module for a list of the " -"built-in encoders." -msgstr "" - -#: ../../library/email.mime.rst:202 -msgid "" -"*_params* are passed straight through to " -"the :class:`~email.mime.base.MIMEBase` constructor." +msgid "A subclass of :class:`~email.mime.nonmultipart.MIMENonMultipart`, the :class:`MIMEImage` class is used to create MIME message objects of major type :mimetype:`image`. *_imagedata* contains the bytes for the raw image data. If this data type can be detected (jpeg, png, gif, tiff, rgb, pbm, pgm, ppm, rast, xbm, bmp, webp, and exr attempted), then the subtype will be automatically included in the :mailheader:`Content-Type` header. Otherwise you can explicitly specify the image subtype via the *_subtype* argument. If the minor type could not be guessed and *_subtype* was not given, then :exc:`TypeError` is raised." +msgstr "" + +msgid "Optional *_encoder* is a callable (i.e. function) which will perform the actual encoding of the image data for transport. This callable takes one argument, which is the :class:`MIMEImage` instance. It should use :meth:`~email.message.Message.get_payload` and :meth:`~email.message.Message.set_payload` to change the payload to encoded form. It should also add any :mailheader:`Content-Transfer-Encoding` or other headers to the message object as necessary. The default encoding is base64. See the :mod:`email.encoders` module for a list of the built-in encoders." +msgstr "" + +msgid "*_params* are passed straight through to the :class:`~email.mime.base.MIMEBase` constructor." msgstr "" -#: ../../library/email.mime.rst:212 msgid "Module: :mod:`email.mime.message`" msgstr "" -#: ../../library/email.mime.rst:214 -msgid "" -"A subclass of :class:`~email.mime.nonmultipart.MIMENonMultipart`, " -"the :class:`MIMEMessage` class is used to create MIME objects of main " -"type :mimetype:`message`. *_msg* is used as the payload, and must be an " -"instance of class :class:`~email.message.Message` (or a subclass thereof), " -"otherwise a :exc:`TypeError` is raised." +msgid "A subclass of :class:`~email.mime.nonmultipart.MIMENonMultipart`, the :class:`MIMEMessage` class is used to create MIME objects of main type :mimetype:`message`. *_msg* is used as the payload, and must be an instance of class :class:`~email.message.Message` (or a subclass thereof), otherwise a :exc:`TypeError` is raised." msgstr "" -#: ../../library/email.mime.rst:220 -msgid "" -"Optional *_subtype* sets the subtype of the message; it defaults " -"to :mimetype:`rfc822`." +msgid "Optional *_subtype* sets the subtype of the message; it defaults to :mimetype:`rfc822`." msgstr "" -#: ../../library/email.mime.rst:232 msgid "Module: :mod:`email.mime.text`" msgstr "" -#: ../../library/email.mime.rst:234 -msgid "" -"A subclass of :class:`~email.mime.nonmultipart.MIMENonMultipart`, " -"the :class:`MIMEText` class is used to create MIME objects of major " -"type :mimetype:`text`. *_text* is the string for the payload. *_subtype* is " -"the minor type and defaults to :mimetype:`plain`. *_charset* is the " -"character set of the text and is passed as an argument to " -"the :class:`~email.mime.nonmultipart.MIMENonMultipart` constructor; it " -"defaults to ``us-ascii`` if the string contains only ``ascii`` code points, " -"and ``utf-8`` otherwise. The *_charset* parameter accepts either a string " -"or a :class:`~email.charset.Charset` instance." -msgstr "" - -#: ../../library/email.mime.rst:244 -msgid "" -"Unless the *_charset* argument is explicitly set to ``None``, the MIMEText " -"object created will have both a :mailheader:`Content-Type` header with a " -"``charset`` parameter, and a :mailheader:`Content-Transfer-Encoding` " -"header. This means that a subsequent ``set_payload`` call will not result " -"in an encoded payload, even if a charset is passed in the ``set_payload`` " -"command. You can \"reset\" this behavior by deleting the ``Content-Transfer-" -"Encoding`` header, after which a ``set_payload`` call will automatically " -"encode the new payload (and add a new :mailheader:`Content-Transfer-" -"Encoding` header)." -msgstr "" - -#: ../../library/email.mime.rst:256 +msgid "A subclass of :class:`~email.mime.nonmultipart.MIMENonMultipart`, the :class:`MIMEText` class is used to create MIME objects of major type :mimetype:`text`. *_text* is the string for the payload. *_subtype* is the minor type and defaults to :mimetype:`plain`. *_charset* is the character set of the text and is passed as an argument to the :class:`~email.mime.nonmultipart.MIMENonMultipart` constructor; it defaults to ``us-ascii`` if the string contains only ``ascii`` code points, and ``utf-8`` otherwise. The *_charset* parameter accepts either a string or a :class:`~email.charset.Charset` instance." +msgstr "" + +msgid "Unless the *_charset* argument is explicitly set to ``None``, the MIMEText object created will have both a :mailheader:`Content-Type` header with a ``charset`` parameter, and a :mailheader:`Content-Transfer-Encoding` header. This means that a subsequent ``set_payload`` call will not result in an encoded payload, even if a charset is passed in the ``set_payload`` command. You can \"reset\" this behavior by deleting the ``Content-Transfer-Encoding`` header, after which a ``set_payload`` call will automatically encode the new payload (and add a new :mailheader:`Content-Transfer-Encoding` header)." +msgstr "" + msgid "*_charset* also accepts :class:`~email.charset.Charset` instances." msgstr "" diff --git a/library/email.parser.po b/library/email.parser.po index 1a443ca7..9c9dd91c 100644 --- a/library/email.parser.po +++ b/library/email.parser.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:05+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,367 +23,148 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/email.parser.rst:2 msgid ":mod:`!email.parser`: Parsing email messages" msgstr "" -#: ../../library/email.parser.rst:7 msgid "**Source code:** :source:`Lib/email/parser.py`" msgstr "" -#: ../../library/email.parser.rst:11 -msgid "" -"Message object structures can be created in one of two ways: they can be " -"created from whole cloth by creating an :class:`~email.message.EmailMessage` " -"object, adding headers using the dictionary interface, and adding payload(s) " -"using :meth:`~email.message.EmailMessage.set_content` and related methods, " -"or they can be created by parsing a serialized representation of the email " -"message." +msgid "Message object structures can be created in one of two ways: they can be created from whole cloth by creating an :class:`~email.message.EmailMessage` object, adding headers using the dictionary interface, and adding payload(s) using :meth:`~email.message.EmailMessage.set_content` and related methods, or they can be created by parsing a serialized representation of the email message." msgstr "" -#: ../../library/email.parser.rst:18 -msgid "" -"The :mod:`email` package provides a standard parser that understands most " -"email document structures, including MIME documents. You can pass the " -"parser a bytes, string or file object, and the parser will return to you the " -"root :class:`~email.message.EmailMessage` instance of the object structure. " -"For simple, non-MIME messages the payload of this root object will likely be " -"a string containing the text of the message. For MIME messages, the root " -"object will return ``True`` from " -"its :meth:`~email.message.EmailMessage.is_multipart` method, and the " -"subparts can be accessed via the payload manipulation methods, such " -"as :meth:`~email.message.EmailMessage.get_body`, :meth:`~email.message.EmailMessage.iter_parts`, " -"and :meth:`~email.message.EmailMessage.walk`." -msgstr "" - -#: ../../library/email.parser.rst:30 -msgid "" -"There are actually two parser interfaces available for use, " -"the :class:`Parser` API and the incremental :class:`FeedParser` API. " -"The :class:`Parser` API is most useful if you have the entire text of the " -"message in memory, or if the entire message lives in a file on the file " -"system. :class:`FeedParser` is more appropriate when you are reading the " -"message from a stream which might block waiting for more input (such as " -"reading an email message from a socket). The :class:`FeedParser` can " -"consume and parse the message incrementally, and only returns the root " -"object when you close the parser." -msgstr "" - -#: ../../library/email.parser.rst:39 -msgid "" -"Note that the parser can be extended in limited ways, and of course you can " -"implement your own parser completely from scratch. All of the logic that " -"connects the :mod:`email` package's bundled parser and " -"the :class:`~email.message.EmailMessage` class is embodied in " -"the :class:`~email.policy.Policy` class, so a custom parser can create " -"message object trees any way it finds necessary by implementing custom " -"versions of the appropriate :class:`!Policy` methods." +msgid "The :mod:`email` package provides a standard parser that understands most email document structures, including MIME documents. You can pass the parser a bytes, string or file object, and the parser will return to you the root :class:`~email.message.EmailMessage` instance of the object structure. For simple, non-MIME messages the payload of this root object will likely be a string containing the text of the message. For MIME messages, the root object will return ``True`` from its :meth:`~email.message.EmailMessage.is_multipart` method, and the subparts can be accessed via the payload manipulation methods, such as :meth:`~email.message.EmailMessage.get_body`, :meth:`~email.message.EmailMessage.iter_parts`, and :meth:`~email.message.EmailMessage.walk`." +msgstr "" + +msgid "There are actually two parser interfaces available for use, the :class:`Parser` API and the incremental :class:`FeedParser` API. The :class:`Parser` API is most useful if you have the entire text of the message in memory, or if the entire message lives in a file on the file system. :class:`FeedParser` is more appropriate when you are reading the message from a stream which might block waiting for more input (such as reading an email message from a socket). The :class:`FeedParser` can consume and parse the message incrementally, and only returns the root object when you close the parser." +msgstr "" + +msgid "Note that the parser can be extended in limited ways, and of course you can implement your own parser completely from scratch. All of the logic that connects the :mod:`email` package's bundled parser and the :class:`~email.message.EmailMessage` class is embodied in the :class:`~email.policy.Policy` class, so a custom parser can create message object trees any way it finds necessary by implementing custom versions of the appropriate :class:`!Policy` methods." msgstr "" -#: ../../library/email.parser.rst:49 msgid "FeedParser API" msgstr "" -#: ../../library/email.parser.rst:51 -msgid "" -"The :class:`BytesFeedParser`, imported from the :mod:`email.feedparser` " -"module, provides an API that is conducive to incremental parsing of email " -"messages, such as would be necessary when reading the text of an email " -"message from a source that can block (such as a socket). " -"The :class:`BytesFeedParser` can of course be used to parse an email message " -"fully contained in a :term:`bytes-like object`, string, or file, but " -"the :class:`BytesParser` API may be more convenient for such use cases. The " -"semantics and results of the two parser APIs are identical." +msgid "The :class:`BytesFeedParser`, imported from the :mod:`email.feedparser` module, provides an API that is conducive to incremental parsing of email messages, such as would be necessary when reading the text of an email message from a source that can block (such as a socket). The :class:`BytesFeedParser` can of course be used to parse an email message fully contained in a :term:`bytes-like object`, string, or file, but the :class:`BytesParser` API may be more convenient for such use cases. The semantics and results of the two parser APIs are identical." +msgstr "" + +msgid "The :class:`BytesFeedParser`'s API is simple; you create an instance, feed it a bunch of bytes until there's no more to feed it, then close the parser to retrieve the root message object. The :class:`BytesFeedParser` is extremely accurate when parsing standards-compliant messages, and it does a very good job of parsing non-compliant messages, providing information about how a message was deemed broken. It will populate a message object's :attr:`~email.message.EmailMessage.defects` attribute with a list of any problems it found in a message. See the :mod:`email.errors` module for the list of defects that it can find." msgstr "" -#: ../../library/email.parser.rst:60 -msgid "" -"The :class:`BytesFeedParser`'s API is simple; you create an instance, feed " -"it a bunch of bytes until there's no more to feed it, then close the parser " -"to retrieve the root message object. The :class:`BytesFeedParser` is " -"extremely accurate when parsing standards-compliant messages, and it does a " -"very good job of parsing non-compliant messages, providing information about " -"how a message was deemed broken. It will populate a message " -"object's :attr:`~email.message.EmailMessage.defects` attribute with a list " -"of any problems it found in a message. See the :mod:`email.errors` module " -"for the list of defects that it can find." -msgstr "" - -#: ../../library/email.parser.rst:70 msgid "Here is the API for the :class:`BytesFeedParser`:" msgstr "" -#: ../../library/email.parser.rst:75 -msgid "" -"Create a :class:`BytesFeedParser` instance. Optional *_factory* is a no-" -"argument callable; if not specified use " -"the :attr:`~email.policy.Policy.message_factory` from the *policy*. Call " -"*_factory* whenever a new message object is needed." +msgid "Create a :class:`BytesFeedParser` instance. Optional *_factory* is a no-argument callable; if not specified use the :attr:`~email.policy.Policy.message_factory` from the *policy*. Call *_factory* whenever a new message object is needed." msgstr "" -#: ../../library/email.parser.rst:80 -msgid "" -"If *policy* is specified use the rules it specifies to update the " -"representation of the message. If *policy* is not set, use " -"the :class:`compat32 ` policy, which maintains " -"backward compatibility with the Python 3.2 version of the email package and " -"provides :class:`~email.message.Message` as the default factory. All other " -"policies provide :class:`~email.message.EmailMessage` as the default " -"*_factory*. For more information on what else *policy* controls, see " -"the :mod:`~email.policy` documentation." +msgid "If *policy* is specified use the rules it specifies to update the representation of the message. If *policy* is not set, use the :class:`compat32 ` policy, which maintains backward compatibility with the Python 3.2 version of the email package and provides :class:`~email.message.Message` as the default factory. All other policies provide :class:`~email.message.EmailMessage` as the default *_factory*. For more information on what else *policy* controls, see the :mod:`~email.policy` documentation." msgstr "" -#: ../../library/email.parser.rst:89 ../../library/email.parser.rst:145 -msgid "" -"Note: **The policy keyword should always be specified**; The default will " -"change to :data:`email.policy.default` in a future version of Python." +msgid "Note: **The policy keyword should always be specified**; The default will change to :data:`email.policy.default` in a future version of Python." msgstr "" -#: ../../library/email.parser.rst:94 ../../library/email.parser.rst:122 msgid "Added the *policy* keyword." msgstr "" -#: ../../library/email.parser.rst:95 msgid "*_factory* defaults to the policy ``message_factory``." msgstr "" -#: ../../library/email.parser.rst:100 -msgid "" -"Feed the parser some more data. *data* should be a :term:`bytes-like " -"object` containing one or more lines. The lines can be partial and the " -"parser will stitch such partial lines together properly. The lines can have " -"any of the three common line endings: carriage return, newline, or carriage " -"return and newline (they can even be mixed)." +msgid "Feed the parser some more data. *data* should be a :term:`bytes-like object` containing one or more lines. The lines can be partial and the parser will stitch such partial lines together properly. The lines can have any of the three common line endings: carriage return, newline, or carriage return and newline (they can even be mixed)." msgstr "" -#: ../../library/email.parser.rst:109 -msgid "" -"Complete the parsing of all previously fed data and return the root message " -"object. It is undefined what happens if :meth:`~feed` is called after this " -"method has been called." +msgid "Complete the parsing of all previously fed data and return the root message object. It is undefined what happens if :meth:`~feed` is called after this method has been called." msgstr "" -#: ../../library/email.parser.rst:116 -msgid "" -"Works like :class:`BytesFeedParser` except that the input to " -"the :meth:`~BytesFeedParser.feed` method must be a string. This is of " -"limited utility, since the only way for such a message to be valid is for it " -"to contain only ASCII text or, if :attr:`~email.policy.EmailPolicy.utf8` is " -"``True``, no binary attachments." +msgid "Works like :class:`BytesFeedParser` except that the input to the :meth:`~BytesFeedParser.feed` method must be a string. This is of limited utility, since the only way for such a message to be valid is for it to contain only ASCII text or, if :attr:`~email.policy.EmailPolicy.utf8` is ``True``, no binary attachments." msgstr "" -#: ../../library/email.parser.rst:126 msgid "Parser API" msgstr "" -#: ../../library/email.parser.rst:128 -msgid "" -"The :class:`BytesParser` class, imported from the :mod:`!email.parser` " -"module, provides an API that can be used to parse a message when the " -"complete contents of the message are available in a :term:`bytes-like " -"object` or file. The :mod:`!email.parser` module also " -"provides :class:`Parser` for parsing strings, and header-only " -"parsers, :class:`BytesHeaderParser` and :class:`HeaderParser`, which can be " -"used if you're only interested in the headers of the " -"message. :class:`BytesHeaderParser` and :class:`HeaderParser` can be much " -"faster in these situations, since they do not attempt to parse the message " -"body, instead setting the payload to the raw body." -msgstr "" - -#: ../../library/email.parser.rst:141 -msgid "" -"Create a :class:`BytesParser` instance. The *_class* and *policy* arguments " -"have the same meaning and semantics as the *_factory* and *policy* arguments " -"of :class:`BytesFeedParser`." +msgid "The :class:`BytesParser` class, imported from the :mod:`!email.parser` module, provides an API that can be used to parse a message when the complete contents of the message are available in a :term:`bytes-like object` or file. The :mod:`!email.parser` module also provides :class:`Parser` for parsing strings, and header-only parsers, :class:`BytesHeaderParser` and :class:`HeaderParser`, which can be used if you're only interested in the headers of the message. :class:`BytesHeaderParser` and :class:`HeaderParser` can be much faster in these situations, since they do not attempt to parse the message body, instead setting the payload to the raw body." msgstr "" -#: ../../library/email.parser.rst:148 -msgid "" -"Removed the *strict* argument that was deprecated in 2.4. Added the " -"*policy* keyword." +msgid "Create a :class:`BytesParser` instance. The *_class* and *policy* arguments have the same meaning and semantics as the *_factory* and *policy* arguments of :class:`BytesFeedParser`." +msgstr "" + +msgid "Removed the *strict* argument that was deprecated in 2.4. Added the *policy* keyword." msgstr "" -#: ../../library/email.parser.rst:151 ../../library/email.parser.rst:200 -#: ../../library/email.parser.rst:280 msgid "*_class* defaults to the policy ``message_factory``." msgstr "" -#: ../../library/email.parser.rst:156 -msgid "" -"Read all the data from the binary file-like object *fp*, parse the resulting " -"bytes, and return the message object. *fp* must support both " -"the :meth:`~io.IOBase.readline` and the :meth:`~io.BufferedIOBase.read` " -"methods." +msgid "Read all the data from the binary file-like object *fp*, parse the resulting bytes, and return the message object. *fp* must support both the :meth:`~io.IOBase.readline` and the :meth:`~io.BufferedIOBase.read` methods." msgstr "" -#: ../../library/email.parser.rst:161 -msgid "" -"The bytes contained in *fp* must be formatted as a block of :rfc:`5322` (or, " -"if :attr:`~email.policy.EmailPolicy.utf8` is ``True``, :rfc:`6532`) style " -"headers and header continuation lines, optionally preceded by an envelope " -"header. The header block is terminated either by the end of the data or by " -"a blank line. Following the header block is the body of the message (which " -"may contain MIME-encoded subparts, including subparts with " -"a :mailheader:`Content-Transfer-Encoding` of ``8bit``)." +msgid "The bytes contained in *fp* must be formatted as a block of :rfc:`5322` (or, if :attr:`~email.policy.EmailPolicy.utf8` is ``True``, :rfc:`6532`) style headers and header continuation lines, optionally preceded by an envelope header. The header block is terminated either by the end of the data or by a blank line. Following the header block is the body of the message (which may contain MIME-encoded subparts, including subparts with a :mailheader:`Content-Transfer-Encoding` of ``8bit``)." msgstr "" -#: ../../library/email.parser.rst:169 -msgid "" -"Optional *headersonly* is a flag specifying whether to stop parsing after " -"reading the headers or not. The default is ``False``, meaning it parses the " -"entire contents of the file." +msgid "Optional *headersonly* is a flag specifying whether to stop parsing after reading the headers or not. The default is ``False``, meaning it parses the entire contents of the file." msgstr "" -#: ../../library/email.parser.rst:176 -msgid "" -"Similar to the :meth:`parse` method, except it takes a :term:`bytes-like " -"object` instead of a file-like object. Calling this method on " -"a :term:`bytes-like object` is equivalent to wrapping *bytes* in " -"a :class:`~io.BytesIO` instance first and calling :meth:`parse`." +msgid "Similar to the :meth:`parse` method, except it takes a :term:`bytes-like object` instead of a file-like object. Calling this method on a :term:`bytes-like object` is equivalent to wrapping *bytes* in a :class:`~io.BytesIO` instance first and calling :meth:`parse`." msgstr "" -#: ../../library/email.parser.rst:181 ../../library/email.parser.rst:221 msgid "Optional *headersonly* is as with the :meth:`parse` method." msgstr "" -#: ../../library/email.parser.rst:188 -msgid "" -"Exactly like :class:`BytesParser`, except that *headersonly* defaults to " -"``True``." +msgid "Exactly like :class:`BytesParser`, except that *headersonly* defaults to ``True``." msgstr "" -#: ../../library/email.parser.rst:196 -msgid "" -"This class is parallel to :class:`BytesParser`, but handles string input." +msgid "This class is parallel to :class:`BytesParser`, but handles string input." msgstr "" -#: ../../library/email.parser.rst:198 ../../library/email.parser.rst:245 -#: ../../library/email.parser.rst:258 ../../library/email.parser.rst:268 -#: ../../library/email.parser.rst:278 msgid "Removed the *strict* argument. Added the *policy* keyword." msgstr "" -#: ../../library/email.parser.rst:205 -msgid "" -"Read all the data from the text-mode file-like object *fp*, parse the " -"resulting text, and return the root message object. *fp* must support both " -"the :meth:`~io.TextIOBase.readline` and the :meth:`~io.TextIOBase.read` " -"methods on file-like objects." +msgid "Read all the data from the text-mode file-like object *fp*, parse the resulting text, and return the root message object. *fp* must support both the :meth:`~io.TextIOBase.readline` and the :meth:`~io.TextIOBase.read` methods on file-like objects." msgstr "" -#: ../../library/email.parser.rst:210 -msgid "" -"Other than the text mode requirement, this method operates " -"like :meth:`BytesParser.parse`." +msgid "Other than the text mode requirement, this method operates like :meth:`BytesParser.parse`." msgstr "" -#: ../../library/email.parser.rst:216 -msgid "" -"Similar to the :meth:`parse` method, except it takes a string object instead " -"of a file-like object. Calling this method on a string is equivalent to " -"wrapping *text* in a :class:`~io.StringIO` instance first and " -"calling :meth:`parse`." +msgid "Similar to the :meth:`parse` method, except it takes a string object instead of a file-like object. Calling this method on a string is equivalent to wrapping *text* in a :class:`~io.StringIO` instance first and calling :meth:`parse`." msgstr "" -#: ../../library/email.parser.rst:226 -msgid "" -"Exactly like :class:`Parser`, except that *headersonly* defaults to ``True``." +msgid "Exactly like :class:`Parser`, except that *headersonly* defaults to ``True``." msgstr "" -#: ../../library/email.parser.rst:230 -msgid "" -"Since creating a message object structure from a string or a file object is " -"such a common task, four functions are provided as a convenience. They are " -"available in the top-level :mod:`email` package namespace." +msgid "Since creating a message object structure from a string or a file object is such a common task, four functions are provided as a convenience. They are available in the top-level :mod:`email` package namespace." msgstr "" -#: ../../library/email.parser.rst:239 -msgid "" -"Return a message object structure from a :term:`bytes-like object`. This is " -"equivalent to ``BytesParser().parsebytes(s)``. Optional *_class* and " -"*policy* are interpreted as with the :class:`~email.parser.BytesParser` " -"class constructor." +msgid "Return a message object structure from a :term:`bytes-like object`. This is equivalent to ``BytesParser().parsebytes(s)``. Optional *_class* and *policy* are interpreted as with the :class:`~email.parser.BytesParser` class constructor." msgstr "" -#: ../../library/email.parser.rst:252 -msgid "" -"Return a message object structure tree from an open binary :term:`file " -"object`. This is equivalent to ``BytesParser().parse(fp)``. *_class* and " -"*policy* are interpreted as with the :class:`~email.parser.BytesParser` " -"class constructor." +msgid "Return a message object structure tree from an open binary :term:`file object`. This is equivalent to ``BytesParser().parse(fp)``. *_class* and *policy* are interpreted as with the :class:`~email.parser.BytesParser` class constructor." msgstr "" -#: ../../library/email.parser.rst:264 -msgid "" -"Return a message object structure from a string. This is equivalent to " -"``Parser().parsestr(s)``. *_class* and *policy* are interpreted as with " -"the :class:`~email.parser.Parser` class constructor." +msgid "Return a message object structure from a string. This is equivalent to ``Parser().parsestr(s)``. *_class* and *policy* are interpreted as with the :class:`~email.parser.Parser` class constructor." msgstr "" -#: ../../library/email.parser.rst:274 -msgid "" -"Return a message object structure tree from an open :term:`file object`. " -"This is equivalent to ``Parser().parse(fp)``. *_class* and *policy* are " -"interpreted as with the :class:`~email.parser.Parser` class constructor." +msgid "Return a message object structure tree from an open :term:`file object`. This is equivalent to ``Parser().parse(fp)``. *_class* and *policy* are interpreted as with the :class:`~email.parser.Parser` class constructor." msgstr "" -#: ../../library/email.parser.rst:283 -msgid "" -"Here's an example of how you might use :func:`message_from_bytes` at an " -"interactive Python prompt::" +msgid "Here's an example of how you might use :func:`message_from_bytes` at an interactive Python prompt::" msgstr "" -#: ../../library/email.parser.rst:286 msgid "" ">>> import email\n" ">>> msg = email.message_from_bytes(myBytes)" msgstr "" -#: ../../library/email.parser.rst:291 msgid "Additional notes" msgstr "" -#: ../../library/email.parser.rst:293 msgid "Here are some notes on the parsing semantics:" msgstr "" -#: ../../library/email.parser.rst:295 -msgid "" -"Most non-\\ :mimetype:`multipart` type messages are parsed as a single " -"message object with a string payload. These objects will return ``False`` " -"for :meth:`~email.message.EmailMessage.is_multipart`, " -"and :meth:`~email.message.EmailMessage.iter_parts` will yield an empty list." +msgid "Most non-\\ :mimetype:`multipart` type messages are parsed as a single message object with a string payload. These objects will return ``False`` for :meth:`~email.message.EmailMessage.is_multipart`, and :meth:`~email.message.EmailMessage.iter_parts` will yield an empty list." msgstr "" -#: ../../library/email.parser.rst:300 -msgid "" -"All :mimetype:`multipart` type messages will be parsed as a container " -"message object with a list of sub-message objects for their payload. The " -"outer container message will return ``True`` " -"for :meth:`~email.message.EmailMessage.is_multipart`, " -"and :meth:`~email.message.EmailMessage.iter_parts` will yield a list of " -"subparts." +msgid "All :mimetype:`multipart` type messages will be parsed as a container message object with a list of sub-message objects for their payload. The outer container message will return ``True`` for :meth:`~email.message.EmailMessage.is_multipart`, and :meth:`~email.message.EmailMessage.iter_parts` will yield a list of subparts." msgstr "" -#: ../../library/email.parser.rst:306 -msgid "" -"Most messages with a content type of :mimetype:`message/\\*` (such " -"as :mimetype:`message/delivery-status` and :mimetype:`message/rfc822`) will " -"also be parsed as container object containing a list payload of length 1. " -"Their :meth:`~email.message.EmailMessage.is_multipart` method will return " -"``True``. The single element yielded " -"by :meth:`~email.message.EmailMessage.iter_parts` will be a sub-message " -"object." +msgid "Most messages with a content type of :mimetype:`message/\\*` (such as :mimetype:`message/delivery-status` and :mimetype:`message/rfc822`) will also be parsed as container object containing a list payload of length 1. Their :meth:`~email.message.EmailMessage.is_multipart` method will return ``True``. The single element yielded by :meth:`~email.message.EmailMessage.iter_parts` will be a sub-message object." msgstr "" -#: ../../library/email.parser.rst:313 -msgid "" -"Some non-standards-compliant messages may not be internally consistent about " -"their :mimetype:`multipart`\\ -edness. Such messages may have " -"a :mailheader:`Content-Type` header of type :mimetype:`multipart`, but " -"their :meth:`~email.message.EmailMessage.is_multipart` method may return " -"``False``. If such messages were parsed with " -"the :class:`~email.parser.FeedParser`, they will have an instance of " -"the :class:`~email.errors.MultipartInvariantViolationDefect` class in their " -"*defects* attribute list. See :mod:`email.errors` for details." +msgid "Some non-standards-compliant messages may not be internally consistent about their :mimetype:`multipart`\\ -edness. Such messages may have a :mailheader:`Content-Type` header of type :mimetype:`multipart`, but their :meth:`~email.message.EmailMessage.is_multipart` method may return ``False``. If such messages were parsed with the :class:`~email.parser.FeedParser`, they will have an instance of the :class:`~email.errors.MultipartInvariantViolationDefect` class in their *defects* attribute list. See :mod:`email.errors` for details." msgstr "" diff --git a/library/email.po b/library/email.po index 9580be6a..20ecb798 100644 --- a/library/email.po +++ b/library/email.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:05+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,176 +21,71 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/email.rst:2 msgid ":mod:`!email` --- An email and MIME handling package" msgstr "" -#: ../../library/email.rst:11 msgid "**Source code:** :source:`Lib/email/__init__.py`" msgstr "" -#: ../../library/email.rst:15 -msgid "" -"The :mod:`!email` package is a library for managing email messages. It is " -"specifically *not* designed to do any sending of email messages to SMTP " -"(:rfc:`2821`), NNTP, or other servers; those are functions of modules such " -"as :mod:`smtplib`. The :mod:`!email` package attempts to be as RFC-" -"compliant as possible, supporting :rfc:`5322` and :rfc:`6532`, as well as " -"such MIME-related RFCs " -"as :rfc:`2045`, :rfc:`2046`, :rfc:`2047`, :rfc:`2183`, and :rfc:`2231`." +msgid "The :mod:`!email` package is a library for managing email messages. It is specifically *not* designed to do any sending of email messages to SMTP (:rfc:`2821`), NNTP, or other servers; those are functions of modules such as :mod:`smtplib`. The :mod:`!email` package attempts to be as RFC-compliant as possible, supporting :rfc:`5322` and :rfc:`6532`, as well as such MIME-related RFCs as :rfc:`2045`, :rfc:`2046`, :rfc:`2047`, :rfc:`2183`, and :rfc:`2231`." msgstr "" -#: ../../library/email.rst:23 -msgid "" -"The overall structure of the email package can be divided into three major " -"components, plus a fourth component that controls the behavior of the other " -"components." +msgid "The overall structure of the email package can be divided into three major components, plus a fourth component that controls the behavior of the other components." msgstr "" -#: ../../library/email.rst:27 -msgid "" -"The central component of the package is an \"object model\" that represents " -"email messages. An application interacts with the package primarily through " -"the object model interface defined in the :mod:`~email.message` sub-module. " -"The application can use this API to ask questions about an existing email, " -"to construct a new email, or to add or remove email subcomponents that " -"themselves use the same object model interface. That is, following the " -"nature of email messages and their MIME subcomponents, the email object " -"model is a tree structure of objects that all provide " -"the :class:`~email.message.EmailMessage` API." -msgstr "" - -#: ../../library/email.rst:37 -msgid "" -"The other two major components of the package are the :mod:`~email.parser` " -"and the :mod:`~email.generator`. The parser takes the serialized version of " -"an email message (a stream of bytes) and converts it into a tree " -"of :class:`~email.message.EmailMessage` objects. The generator takes " -"an :class:`~email.message.EmailMessage` and turns it back into a serialized " -"byte stream. (The parser and generator also handle streams of text " -"characters, but this usage is discouraged as it is too easy to end up with " -"messages that are not valid in one way or another.)" +msgid "The central component of the package is an \"object model\" that represents email messages. An application interacts with the package primarily through the object model interface defined in the :mod:`~email.message` sub-module. The application can use this API to ask questions about an existing email, to construct a new email, or to add or remove email subcomponents that themselves use the same object model interface. That is, following the nature of email messages and their MIME subcomponents, the email object model is a tree structure of objects that all provide the :class:`~email.message.EmailMessage` API." msgstr "" -#: ../../library/email.rst:46 -msgid "" -"The control component is the :mod:`~email.policy` module. " -"Every :class:`~email.message.EmailMessage`, every :mod:`~email.generator`, " -"and every :mod:`~email.parser` has an associated :mod:`~email.policy` object " -"that controls its behavior. Usually an application only needs to specify " -"the policy when an :class:`~email.message.EmailMessage` is created, either " -"by directly instantiating an :class:`~email.message.EmailMessage` to create " -"a new email, or by parsing an input stream using a :mod:`~email.parser`. " -"But the policy can be changed when the message is serialized using " -"a :mod:`~email.generator`. This allows, for example, a generic email message " -"to be parsed from disk, but to serialize it using standard SMTP settings " -"when sending it to an email server." -msgstr "" - -#: ../../library/email.rst:58 -msgid "" -"The email package does its best to hide the details of the various governing " -"RFCs from the application. Conceptually the application should be able to " -"treat the email message as a structured tree of unicode text and binary " -"attachments, without having to worry about how these are represented when " -"serialized. In practice, however, it is often necessary to be aware of at " -"least some of the rules governing MIME messages and their structure, " -"specifically the names and nature of the MIME \"content types\" and how they " -"identify multipart documents. For the most part this knowledge should only " -"be required for more complex applications, and even then it should only be " -"the high level structure in question, and not the details of how those " -"structures are represented. Since MIME content types are used widely in " -"modern internet software (not just email), this will be a familiar concept " -"to many programmers." -msgstr "" - -#: ../../library/email.rst:71 -msgid "" -"The following sections describe the functionality of the :mod:`!email` " -"package. We start with the :mod:`~email.message` object model, which is the " -"primary interface an application will use, and follow that with " -"the :mod:`~email.parser` and :mod:`~email.generator` components. Then we " -"cover the :mod:`~email.policy` controls, which completes the treatment of " -"the main components of the library." +msgid "The other two major components of the package are the :mod:`~email.parser` and the :mod:`~email.generator`. The parser takes the serialized version of an email message (a stream of bytes) and converts it into a tree of :class:`~email.message.EmailMessage` objects. The generator takes an :class:`~email.message.EmailMessage` and turns it back into a serialized byte stream. (The parser and generator also handle streams of text characters, but this usage is discouraged as it is too easy to end up with messages that are not valid in one way or another.)" msgstr "" -#: ../../library/email.rst:78 -msgid "" -"The next three sections cover the exceptions the package may raise and the " -"defects (non-compliance with the RFCs) that the :mod:`~email.parser` may " -"detect. Then we cover the :mod:`~email.headerregistry` and " -"the :mod:`~email.contentmanager` sub-components, which provide tools for " -"doing more detailed manipulation of headers and payloads, respectively. " -"Both of these components contain features relevant to consuming and " -"producing non-trivial messages, but also document their extensibility APIs, " -"which will be of interest to advanced applications." +msgid "The control component is the :mod:`~email.policy` module. Every :class:`~email.message.EmailMessage`, every :mod:`~email.generator`, and every :mod:`~email.parser` has an associated :mod:`~email.policy` object that controls its behavior. Usually an application only needs to specify the policy when an :class:`~email.message.EmailMessage` is created, either by directly instantiating an :class:`~email.message.EmailMessage` to create a new email, or by parsing an input stream using a :mod:`~email.parser`. But the policy can be changed when the message is serialized using a :mod:`~email.generator`. This allows, for example, a generic email message to be parsed from disk, but to serialize it using standard SMTP settings when sending it to an email server." msgstr "" -#: ../../library/email.rst:87 -msgid "" -"Following those is a set of examples of using the fundamental parts of the " -"APIs covered in the preceding sections." +msgid "The email package does its best to hide the details of the various governing RFCs from the application. Conceptually the application should be able to treat the email message as a structured tree of unicode text and binary attachments, without having to worry about how these are represented when serialized. In practice, however, it is often necessary to be aware of at least some of the rules governing MIME messages and their structure, specifically the names and nature of the MIME \"content types\" and how they identify multipart documents. For the most part this knowledge should only be required for more complex applications, and even then it should only be the high level structure in question, and not the details of how those structures are represented. Since MIME content types are used widely in modern internet software (not just email), this will be a familiar concept to many programmers." msgstr "" -#: ../../library/email.rst:90 -msgid "" -"The foregoing represent the modern (unicode friendly) API of the email " -"package. The remaining sections, starting with " -"the :class:`~email.message.Message` class, cover the " -"legacy :data:`~email.policy.compat32` API that deals much more directly with " -"the details of how email messages are represented. " -"The :data:`~email.policy.compat32` API does *not* hide the details of the " -"RFCs from the application, but for applications that need to operate at that " -"level, they can be useful tools. This documentation is also relevant for " -"applications that are still using the :mod:`~email.policy.compat32` API for " -"backward compatibility reasons." -msgstr "" - -#: ../../library/email.rst:100 -msgid "" -"Docs reorganized and rewritten to promote the " -"new :class:`~email.message.EmailMessage`/:class:`~email.policy.EmailPolicy` " -"API." +msgid "The following sections describe the functionality of the :mod:`!email` package. We start with the :mod:`~email.message` object model, which is the primary interface an application will use, and follow that with the :mod:`~email.parser` and :mod:`~email.generator` components. Then we cover the :mod:`~email.policy` controls, which completes the treatment of the main components of the library." +msgstr "" + +msgid "The next three sections cover the exceptions the package may raise and the defects (non-compliance with the RFCs) that the :mod:`~email.parser` may detect. Then we cover the :mod:`~email.headerregistry` and the :mod:`~email.contentmanager` sub-components, which provide tools for doing more detailed manipulation of headers and payloads, respectively. Both of these components contain features relevant to consuming and producing non-trivial messages, but also document their extensibility APIs, which will be of interest to advanced applications." +msgstr "" + +msgid "Following those is a set of examples of using the fundamental parts of the APIs covered in the preceding sections." +msgstr "" + +msgid "The foregoing represent the modern (unicode friendly) API of the email package. The remaining sections, starting with the :class:`~email.message.Message` class, cover the legacy :data:`~email.policy.compat32` API that deals much more directly with the details of how email messages are represented. The :data:`~email.policy.compat32` API does *not* hide the details of the RFCs from the application, but for applications that need to operate at that level, they can be useful tools. This documentation is also relevant for applications that are still using the :mod:`~email.policy.compat32` API for backward compatibility reasons." +msgstr "" + +msgid "Docs reorganized and rewritten to promote the new :class:`~email.message.EmailMessage`/:class:`~email.policy.EmailPolicy` API." msgstr "" -#: ../../library/email.rst:105 msgid "Contents of the :mod:`!email` package documentation:" msgstr "" -#: ../../library/email.rst:120 msgid "Legacy API:" msgstr "" -#: ../../library/email.rst:135 msgid "Module :mod:`smtplib`" msgstr "" -#: ../../library/email.rst:136 msgid "SMTP (Simple Mail Transport Protocol) client" msgstr "" -#: ../../library/email.rst:138 msgid "Module :mod:`poplib`" msgstr "" -#: ../../library/email.rst:139 msgid "POP (Post Office Protocol) client" msgstr "" -#: ../../library/email.rst:141 msgid "Module :mod:`imaplib`" msgstr "" -#: ../../library/email.rst:142 msgid "IMAP (Internet Message Access Protocol) client" msgstr "" -#: ../../library/email.rst:144 msgid "Module :mod:`mailbox`" msgstr "" -#: ../../library/email.rst:145 -msgid "" -"Tools for creating, reading, and managing collections of messages on disk " -"using a variety standard formats." +msgid "Tools for creating, reading, and managing collections of messages on disk using a variety standard formats." msgstr "" diff --git a/library/email.policy.po b/library/email.policy.po index aac98e2c..4dc22f58 100644 --- a/library/email.policy.po +++ b/library/email.policy.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:05+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,112 +23,42 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/email.policy.rst:2 msgid ":mod:`!email.policy`: Policy Objects" msgstr "" -#: ../../library/email.policy.rst:12 msgid "**Source code:** :source:`Lib/email/policy.py`" msgstr "" -#: ../../library/email.policy.rst:16 -msgid "" -"The :mod:`email` package's prime focus is the handling of email messages as " -"described by the various email and MIME RFCs. However, the general format " -"of email messages (a block of header fields each consisting of a name " -"followed by a colon followed by a value, the whole block followed by a blank " -"line and an arbitrary 'body'), is a format that has found utility outside of " -"the realm of email. Some of these uses conform fairly closely to the main " -"email RFCs, some do not. Even when working with email, there are times when " -"it is desirable to break strict compliance with the RFCs, such as generating " -"emails that interoperate with email servers that do not themselves follow " -"the standards, or that implement extensions you want to use in ways that " -"violate the standards." -msgstr "" - -#: ../../library/email.policy.rst:28 -msgid "" -"Policy objects give the email package the flexibility to handle all these " -"disparate use cases." +msgid "The :mod:`email` package's prime focus is the handling of email messages as described by the various email and MIME RFCs. However, the general format of email messages (a block of header fields each consisting of a name followed by a colon followed by a value, the whole block followed by a blank line and an arbitrary 'body'), is a format that has found utility outside of the realm of email. Some of these uses conform fairly closely to the main email RFCs, some do not. Even when working with email, there are times when it is desirable to break strict compliance with the RFCs, such as generating emails that interoperate with email servers that do not themselves follow the standards, or that implement extensions you want to use in ways that violate the standards." msgstr "" -#: ../../library/email.policy.rst:31 -msgid "" -"A :class:`Policy` object encapsulates a set of attributes and methods that " -"control the behavior of various components of the email package during " -"use. :class:`Policy` instances can be passed to various classes and methods " -"in the email package to alter the default behavior. The settable values and " -"their defaults are described below." +msgid "Policy objects give the email package the flexibility to handle all these disparate use cases." msgstr "" -#: ../../library/email.policy.rst:37 -msgid "" -"There is a default policy used by all classes in the email package. For all " -"of the :mod:`~email.parser` classes and the related convenience functions, " -"and for the :class:`~email.message.Message` class, this is " -"the :class:`Compat32` policy, via its corresponding pre-defined " -"instance :const:`compat32`. This policy provides for complete backward " -"compatibility (in some cases, including bug compatibility) with the pre-" -"Python3.3 version of the email package." +msgid "A :class:`Policy` object encapsulates a set of attributes and methods that control the behavior of various components of the email package during use. :class:`Policy` instances can be passed to various classes and methods in the email package to alter the default behavior. The settable values and their defaults are described below." msgstr "" -#: ../../library/email.policy.rst:44 -msgid "" -"This default value for the *policy* keyword " -"to :class:`~email.message.EmailMessage` is the :class:`EmailPolicy` policy, " -"via its pre-defined instance :data:`~default`." +msgid "There is a default policy used by all classes in the email package. For all of the :mod:`~email.parser` classes and the related convenience functions, and for the :class:`~email.message.Message` class, this is the :class:`Compat32` policy, via its corresponding pre-defined instance :const:`compat32`. This policy provides for complete backward compatibility (in some cases, including bug compatibility) with the pre-Python3.3 version of the email package." msgstr "" -#: ../../library/email.policy.rst:48 -msgid "" -"When a :class:`~email.message.Message` " -"or :class:`~email.message.EmailMessage` object is created, it acquires a " -"policy. If the message is created by a :mod:`~email.parser`, a policy " -"passed to the parser will be the policy used by the message it creates. If " -"the message is created by the program, then the policy can be specified when " -"it is created. When a message is passed to a :mod:`~email.generator`, the " -"generator uses the policy from the message by default, but you can also pass " -"a specific policy to the generator that will override the one stored on the " -"message object." -msgstr "" - -#: ../../library/email.policy.rst:57 -msgid "" -"The default value for the *policy* keyword for the :mod:`email.parser` " -"classes and the parser convenience functions **will be changing** in a " -"future version of Python. Therefore you should **always specify explicitly " -"which policy you want to use** when calling any of the classes and functions " -"described in the :mod:`~email.parser` module." +msgid "This default value for the *policy* keyword to :class:`~email.message.EmailMessage` is the :class:`EmailPolicy` policy, via its pre-defined instance :data:`~default`." msgstr "" -#: ../../library/email.policy.rst:63 -msgid "" -"The first part of this documentation covers the features of :class:`Policy`, " -"an :term:`abstract base class` that defines the features that are common to " -"all policy objects, including :const:`compat32`. This includes certain hook " -"methods that are called internally by the email package, which a custom " -"policy could override to obtain different behavior. The second part " -"describes the concrete classes :class:`EmailPolicy` and :class:`Compat32`, " -"which implement the hooks that provide the standard behavior and the " -"backward compatible behavior and features, respectively." +msgid "When a :class:`~email.message.Message` or :class:`~email.message.EmailMessage` object is created, it acquires a policy. If the message is created by a :mod:`~email.parser`, a policy passed to the parser will be the policy used by the message it creates. If the message is created by the program, then the policy can be specified when it is created. When a message is passed to a :mod:`~email.generator`, the generator uses the policy from the message by default, but you can also pass a specific policy to the generator that will override the one stored on the message object." msgstr "" -#: ../../library/email.policy.rst:72 -msgid "" -":class:`Policy` instances are immutable, but they can be cloned, accepting " -"the same keyword arguments as the class constructor and returning a " -"new :class:`Policy` instance that is a copy of the original but with the " -"specified attributes values changed." +msgid "The default value for the *policy* keyword for the :mod:`email.parser` classes and the parser convenience functions **will be changing** in a future version of Python. Therefore you should **always specify explicitly which policy you want to use** when calling any of the classes and functions described in the :mod:`~email.parser` module." msgstr "" -#: ../../library/email.policy.rst:77 -msgid "" -"As an example, the following code could be used to read an email message " -"from a file on disk and pass it to the system ``sendmail`` program on a Unix " -"system:" +msgid "The first part of this documentation covers the features of :class:`Policy`, an :term:`abstract base class` that defines the features that are common to all policy objects, including :const:`compat32`. This includes certain hook methods that are called internally by the email package, which a custom policy could override to obtain different behavior. The second part describes the concrete classes :class:`EmailPolicy` and :class:`Compat32`, which implement the hooks that provide the standard behavior and the backward compatible behavior and features, respectively." +msgstr "" + +msgid ":class:`Policy` instances are immutable, but they can be cloned, accepting the same keyword arguments as the class constructor and returning a new :class:`Policy` instance that is a copy of the original but with the specified attributes values changed." +msgstr "" + +msgid "As an example, the following code could be used to read an email message from a file on disk and pass it to the system ``sendmail`` program on a Unix system:" msgstr "" -#: ../../library/email.policy.rst:92 msgid "" ">>> from email import message_from_binary_file\n" ">>> from email.generator import BytesGenerator\n" @@ -144,24 +74,12 @@ msgid "" ">>> rc = p.wait()" msgstr "" -#: ../../library/email.policy.rst:114 -msgid "" -"Here we are telling :class:`~email.generator.BytesGenerator` to use the RFC " -"correct line separator characters when creating the binary string to feed " -"into ``sendmail's`` ``stdin``, where the default policy would use ``\\n`` " -"line separators." +msgid "Here we are telling :class:`~email.generator.BytesGenerator` to use the RFC correct line separator characters when creating the binary string to feed into ``sendmail's`` ``stdin``, where the default policy would use ``\\n`` line separators." msgstr "" -#: ../../library/email.policy.rst:119 -msgid "" -"Some email package methods accept a *policy* keyword argument, allowing the " -"policy to be overridden for that method. For example, the following code " -"uses the :meth:`~email.message.Message.as_bytes` method of the *msg* object " -"from the previous example and writes the message to a file using the native " -"line separators for the platform on which it is running::" +msgid "Some email package methods accept a *policy* keyword argument, allowing the policy to be overridden for that method. For example, the following code uses the :meth:`~email.message.Message.as_bytes` method of the *msg* object from the previous example and writes the message to a file using the native line separators for the platform on which it is running::" msgstr "" -#: ../../library/email.policy.rst:125 msgid "" ">>> import os\n" ">>> with open('converted.txt', 'wb') as f:\n" @@ -169,27 +87,18 @@ msgid "" "17" msgstr "" -#: ../../library/email.policy.rst:130 -msgid "" -"Policy objects can also be combined using the addition operator, producing a " -"policy object whose settings are a combination of the non-default values of " -"the summed objects::" +msgid "Policy objects can also be combined using the addition operator, producing a policy object whose settings are a combination of the non-default values of the summed objects::" msgstr "" -#: ../../library/email.policy.rst:134 msgid "" ">>> compat_SMTP = policy.compat32.clone(linesep='\\r\\n')\n" ">>> compat_strict = policy.compat32.clone(raise_on_defect=True)\n" ">>> compat_strict_SMTP = compat_SMTP + compat_strict" msgstr "" -#: ../../library/email.policy.rst:138 -msgid "" -"This operation is not commutative; that is, the order in which the objects " -"are added matters. To illustrate::" +msgid "This operation is not commutative; that is, the order in which the objects are added matters. To illustrate::" msgstr "" -#: ../../library/email.policy.rst:141 msgid "" ">>> policy100 = policy.compat32.clone(max_line_length=100)\n" ">>> policy80 = policy.compat32.clone(max_line_length=80)\n" @@ -201,613 +110,266 @@ msgid "" "100" msgstr "" -#: ../../library/email.policy.rst:153 -msgid "" -"This is the :term:`abstract base class` for all policy classes. It provides " -"default implementations for a couple of trivial methods, as well as the " -"implementation of the immutability property, the :meth:`clone` method, and " -"the constructor semantics." +msgid "This is the :term:`abstract base class` for all policy classes. It provides default implementations for a couple of trivial methods, as well as the implementation of the immutability property, the :meth:`clone` method, and the constructor semantics." msgstr "" -#: ../../library/email.policy.rst:158 -msgid "" -"The constructor of a policy class can be passed various keyword arguments. " -"The arguments that may be specified are any non-method properties on this " -"class, plus any additional non-method properties on the concrete class. A " -"value specified in the constructor will override the default value for the " -"corresponding attribute." +msgid "The constructor of a policy class can be passed various keyword arguments. The arguments that may be specified are any non-method properties on this class, plus any additional non-method properties on the concrete class. A value specified in the constructor will override the default value for the corresponding attribute." msgstr "" -#: ../../library/email.policy.rst:164 -msgid "" -"This class defines the following properties, and thus values for the " -"following may be passed in the constructor of any policy class:" +msgid "This class defines the following properties, and thus values for the following may be passed in the constructor of any policy class:" msgstr "" -#: ../../library/email.policy.rst:170 -msgid "" -"The maximum length of any line in the serialized output, not counting the " -"end of line character(s). Default is 78, per :rfc:`5322`. A value of ``0`` " -"or :const:`None` indicates that no line wrapping should be done at all." +msgid "The maximum length of any line in the serialized output, not counting the end of line character(s). Default is 78, per :rfc:`5322`. A value of ``0`` or :const:`None` indicates that no line wrapping should be done at all." msgstr "" -#: ../../library/email.policy.rst:178 -msgid "" -"The string to be used to terminate lines in serialized output. The default " -"is ``\\n`` because that's the internal end-of-line discipline used by " -"Python, though ``\\r\\n`` is required by the RFCs." +msgid "The string to be used to terminate lines in serialized output. The default is ``\\n`` because that's the internal end-of-line discipline used by Python, though ``\\r\\n`` is required by the RFCs." msgstr "" -#: ../../library/email.policy.rst:185 -msgid "" -"Controls the type of Content Transfer Encodings that may be or are required " -"to be used. The possible values are:" +msgid "Controls the type of Content Transfer Encodings that may be or are required to be used. The possible values are:" msgstr "" -#: ../../library/email.policy.rst:191 msgid "``7bit``" msgstr "" -#: ../../library/email.policy.rst:191 -msgid "" -"all data must be \"7 bit clean\" (ASCII-only). This means that where " -"necessary data will be encoded using either quoted-printable or base64 " -"encoding." +msgid "all data must be \"7 bit clean\" (ASCII-only). This means that where necessary data will be encoded using either quoted-printable or base64 encoding." msgstr "" -#: ../../library/email.policy.rst:195 msgid "``8bit``" msgstr "" -#: ../../library/email.policy.rst:195 -msgid "" -"data is not constrained to be 7 bit clean. Data in headers is still " -"required to be ASCII-only and so will be encoded (see :meth:`fold_binary` " -"and :attr:`~EmailPolicy.utf8` below for exceptions), but body parts may use " -"the ``8bit`` CTE." +msgid "data is not constrained to be 7 bit clean. Data in headers is still required to be ASCII-only and so will be encoded (see :meth:`fold_binary` and :attr:`~EmailPolicy.utf8` below for exceptions), but body parts may use the ``8bit`` CTE." msgstr "" -#: ../../library/email.policy.rst:201 -msgid "" -"A ``cte_type`` value of ``8bit`` only works with ``BytesGenerator``, not " -"``Generator``, because strings cannot contain binary data. If a " -"``Generator`` is operating under a policy that specifies ``cte_type=8bit``, " -"it will act as if ``cte_type`` is ``7bit``." +msgid "A ``cte_type`` value of ``8bit`` only works with ``BytesGenerator``, not ``Generator``, because strings cannot contain binary data. If a ``Generator`` is operating under a policy that specifies ``cte_type=8bit``, it will act as if ``cte_type`` is ``7bit``." msgstr "" -#: ../../library/email.policy.rst:209 -msgid "" -"If :const:`True`, any defects encountered will be raised as errors. " -"If :const:`False` (the default), defects will be passed to " -"the :meth:`register_defect` method." +msgid "If :const:`True`, any defects encountered will be raised as errors. If :const:`False` (the default), defects will be passed to the :meth:`register_defect` method." msgstr "" -#: ../../library/email.policy.rst:216 -msgid "" -"If :const:`True`, lines starting with *\"From \"* in the body are escaped by " -"putting a ``>`` in front of them. This parameter is used when the message is " -"being serialized by a generator. Default: :const:`False`." +msgid "If :const:`True`, lines starting with *\"From \"* in the body are escaped by putting a ``>`` in front of them. This parameter is used when the message is being serialized by a generator. Default: :const:`False`." msgstr "" -#: ../../library/email.policy.rst:226 -msgid "" -"A factory function for constructing a new empty message object. Used by the " -"parser when building messages. Defaults to ``None``, in which " -"case :class:`~email.message.Message` is used." +msgid "A factory function for constructing a new empty message object. Used by the parser when building messages. Defaults to ``None``, in which case :class:`~email.message.Message` is used." msgstr "" -#: ../../library/email.policy.rst:235 -msgid "" -"If ``True`` (the default), the generator will " -"raise :exc:`~email.errors.HeaderWriteError` instead of writing a header that " -"is improperly folded or delimited, such that it would be parsed as multiple " -"headers or joined with adjacent data. Such headers can be generated by " -"custom header classes or bugs in the ``email`` module." +msgid "If ``True`` (the default), the generator will raise :exc:`~email.errors.HeaderWriteError` instead of writing a header that is improperly folded or delimited, such that it would be parsed as multiple headers or joined with adjacent data. Such headers can be generated by custom header classes or bugs in the ``email`` module." msgstr "" -#: ../../library/email.policy.rst:242 -msgid "" -"As it's a security feature, this defaults to ``True`` even in " -"the :class:`~email.policy.Compat32` policy. For backwards compatible, but " -"unsafe, behavior, it must be set to ``False`` explicitly." +msgid "As it's a security feature, this defaults to ``True`` even in the :class:`~email.policy.Compat32` policy. For backwards compatible, but unsafe, behavior, it must be set to ``False`` explicitly." msgstr "" -#: ../../library/email.policy.rst:250 -msgid "" -"The following :class:`Policy` method is intended to be called by code using " -"the email library to create policy instances with custom settings:" +msgid "The following :class:`Policy` method is intended to be called by code using the email library to create policy instances with custom settings:" msgstr "" -#: ../../library/email.policy.rst:256 -msgid "" -"Return a new :class:`Policy` instance whose attributes have the same values " -"as the current instance, except where those attributes are given new values " -"by the keyword arguments." +msgid "Return a new :class:`Policy` instance whose attributes have the same values as the current instance, except where those attributes are given new values by the keyword arguments." msgstr "" -#: ../../library/email.policy.rst:261 -msgid "" -"The remaining :class:`Policy` methods are called by the email package code, " -"and are not intended to be called by an application using the email package. " -"A custom policy must implement all of these methods." +msgid "The remaining :class:`Policy` methods are called by the email package code, and are not intended to be called by an application using the email package. A custom policy must implement all of these methods." msgstr "" -#: ../../library/email.policy.rst:268 -msgid "" -"Handle a *defect* found on *obj*. When the email package calls this method, " -"*defect* will always be a subclass of :class:`~email.errors.MessageDefect`." +msgid "Handle a *defect* found on *obj*. When the email package calls this method, *defect* will always be a subclass of :class:`~email.errors.MessageDefect`." msgstr "" -#: ../../library/email.policy.rst:272 -msgid "" -"The default implementation checks the :attr:`raise_on_defect` flag. If it " -"is ``True``, *defect* is raised as an exception. If it is ``False`` (the " -"default), *obj* and *defect* are passed to :meth:`register_defect`." +msgid "The default implementation checks the :attr:`raise_on_defect` flag. If it is ``True``, *defect* is raised as an exception. If it is ``False`` (the default), *obj* and *defect* are passed to :meth:`register_defect`." msgstr "" -#: ../../library/email.policy.rst:279 -msgid "" -"Register a *defect* on *obj*. In the email package, *defect* will always be " -"a subclass of :class:`~email.errors.MessageDefect`." +msgid "Register a *defect* on *obj*. In the email package, *defect* will always be a subclass of :class:`~email.errors.MessageDefect`." msgstr "" -#: ../../library/email.policy.rst:282 -msgid "" -"The default implementation calls the ``append`` method of the ``defects`` " -"attribute of *obj*. When the email package calls :attr:`handle_defect`, " -"*obj* will normally have a ``defects`` attribute that has an ``append`` " -"method. Custom object types used with the email package (for example, " -"custom ``Message`` objects) should also provide such an attribute, otherwise " -"defects in parsed messages will raise unexpected errors." +msgid "The default implementation calls the ``append`` method of the ``defects`` attribute of *obj*. When the email package calls :attr:`handle_defect`, *obj* will normally have a ``defects`` attribute that has an ``append`` method. Custom object types used with the email package (for example, custom ``Message`` objects) should also provide such an attribute, otherwise defects in parsed messages will raise unexpected errors." msgstr "" -#: ../../library/email.policy.rst:292 msgid "Return the maximum allowed number of headers named *name*." msgstr "" -#: ../../library/email.policy.rst:294 -msgid "" -"Called when a header is added to an :class:`~email.message.EmailMessage` " -"or :class:`~email.message.Message` object. If the returned value is not " -"``0`` or ``None``, and there are already a number of headers with the name " -"*name* greater than or equal to the value returned, a :exc:`ValueError` is " -"raised." +msgid "Called when a header is added to an :class:`~email.message.EmailMessage` or :class:`~email.message.Message` object. If the returned value is not ``0`` or ``None``, and there are already a number of headers with the name *name* greater than or equal to the value returned, a :exc:`ValueError` is raised." msgstr "" -#: ../../library/email.policy.rst:300 -msgid "" -"Because the default behavior of ``Message.__setitem__`` is to append the " -"value to the list of headers, it is easy to create duplicate headers without " -"realizing it. This method allows certain headers to be limited in the " -"number of instances of that header that may be added to a ``Message`` " -"programmatically. (The limit is not observed by the parser, which will " -"faithfully produce as many headers as exist in the message being parsed.)" +msgid "Because the default behavior of ``Message.__setitem__`` is to append the value to the list of headers, it is easy to create duplicate headers without realizing it. This method allows certain headers to be limited in the number of instances of that header that may be added to a ``Message`` programmatically. (The limit is not observed by the parser, which will faithfully produce as many headers as exist in the message being parsed.)" msgstr "" -#: ../../library/email.policy.rst:308 msgid "The default implementation returns ``None`` for all header names." msgstr "" -#: ../../library/email.policy.rst:313 -msgid "" -"The email package calls this method with a list of strings, each string " -"ending with the line separation characters found in the source being " -"parsed. The first line includes the field header name and separator. All " -"whitespace in the source is preserved. The method should return the " -"``(name, value)`` tuple that is to be stored in the ``Message`` to represent " -"the parsed header." +msgid "The email package calls this method with a list of strings, each string ending with the line separation characters found in the source being parsed. The first line includes the field header name and separator. All whitespace in the source is preserved. The method should return the ``(name, value)`` tuple that is to be stored in the ``Message`` to represent the parsed header." msgstr "" -#: ../../library/email.policy.rst:320 -msgid "" -"If an implementation wishes to retain compatibility with the existing email " -"package policies, *name* should be the case preserved name (all characters " -"up to the '``:``' separator), while *value* should be the unfolded value " -"(all line separator characters removed, but whitespace kept intact), " -"stripped of leading whitespace." +msgid "If an implementation wishes to retain compatibility with the existing email package policies, *name* should be the case preserved name (all characters up to the '``:``' separator), while *value* should be the unfolded value (all line separator characters removed, but whitespace kept intact), stripped of leading whitespace." msgstr "" -#: ../../library/email.policy.rst:326 msgid "*sourcelines* may contain surrogateescaped binary data." msgstr "" -#: ../../library/email.policy.rst:328 ../../library/email.policy.rst:344 -#: ../../library/email.policy.rst:360 msgid "There is no default implementation" msgstr "" -#: ../../library/email.policy.rst:333 -msgid "" -"The email package calls this method with the name and value provided by the " -"application program when the application program is modifying a ``Message`` " -"programmatically (as opposed to a ``Message`` created by a parser). The " -"method should return the ``(name, value)`` tuple that is to be stored in the " -"``Message`` to represent the header." +msgid "The email package calls this method with the name and value provided by the application program when the application program is modifying a ``Message`` programmatically (as opposed to a ``Message`` created by a parser). The method should return the ``(name, value)`` tuple that is to be stored in the ``Message`` to represent the header." msgstr "" -#: ../../library/email.policy.rst:339 -msgid "" -"If an implementation wishes to retain compatibility with the existing email " -"package policies, the *name* and *value* should be strings or string " -"subclasses that do not change the content of the passed in arguments." +msgid "If an implementation wishes to retain compatibility with the existing email package policies, the *name* and *value* should be strings or string subclasses that do not change the content of the passed in arguments." msgstr "" -#: ../../library/email.policy.rst:349 -msgid "" -"The email package calls this method with the *name* and *value* currently " -"stored in the ``Message`` when that header is requested by the application " -"program, and whatever the method returns is what is passed back to the " -"application as the value of the header being retrieved. Note that there may " -"be more than one header with the same name stored in the ``Message``; the " -"method is passed the specific name and value of the header destined to be " -"returned to the application." +msgid "The email package calls this method with the *name* and *value* currently stored in the ``Message`` when that header is requested by the application program, and whatever the method returns is what is passed back to the application as the value of the header being retrieved. Note that there may be more than one header with the same name stored in the ``Message``; the method is passed the specific name and value of the header destined to be returned to the application." msgstr "" -#: ../../library/email.policy.rst:357 -msgid "" -"*value* may contain surrogateescaped binary data. There should be no " -"surrogateescaped binary data in the value returned by the method." +msgid "*value* may contain surrogateescaped binary data. There should be no surrogateescaped binary data in the value returned by the method." msgstr "" -#: ../../library/email.policy.rst:365 -msgid "" -"The email package calls this method with the *name* and *value* currently " -"stored in the ``Message`` for a given header. The method should return a " -"string that represents that header \"folded\" correctly (according to the " -"policy settings) by composing the *name* with the *value* and " -"inserting :attr:`linesep` characters at the appropriate places. " -"See :rfc:`5322` for a discussion of the rules for folding email headers." +msgid "The email package calls this method with the *name* and *value* currently stored in the ``Message`` for a given header. The method should return a string that represents that header \"folded\" correctly (according to the policy settings) by composing the *name* with the *value* and inserting :attr:`linesep` characters at the appropriate places. See :rfc:`5322` for a discussion of the rules for folding email headers." msgstr "" -#: ../../library/email.policy.rst:372 -msgid "" -"*value* may contain surrogateescaped binary data. There should be no " -"surrogateescaped binary data in the string returned by the method." +msgid "*value* may contain surrogateescaped binary data. There should be no surrogateescaped binary data in the string returned by the method." msgstr "" -#: ../../library/email.policy.rst:378 -msgid "" -"The same as :meth:`fold`, except that the returned value should be a bytes " -"object rather than a string." +msgid "The same as :meth:`fold`, except that the returned value should be a bytes object rather than a string." msgstr "" -#: ../../library/email.policy.rst:381 -msgid "" -"*value* may contain surrogateescaped binary data. These could be converted " -"back into binary data in the returned bytes object." +msgid "*value* may contain surrogateescaped binary data. These could be converted back into binary data in the returned bytes object." msgstr "" -#: ../../library/email.policy.rst:388 -msgid "" -"This concrete :class:`Policy` provides behavior that is intended to be fully " -"compliant with the current email RFCs. These include (but are not limited " -"to) :rfc:`5322`, :rfc:`2047`, and the current MIME RFCs." +msgid "This concrete :class:`Policy` provides behavior that is intended to be fully compliant with the current email RFCs. These include (but are not limited to) :rfc:`5322`, :rfc:`2047`, and the current MIME RFCs." msgstr "" -#: ../../library/email.policy.rst:392 -msgid "" -"This policy adds new header parsing and folding algorithms. Instead of " -"simple strings, headers are ``str`` subclasses with attributes that depend " -"on the type of the field. The parsing and folding algorithm fully " -"implement :rfc:`2047` and :rfc:`5322`." +msgid "This policy adds new header parsing and folding algorithms. Instead of simple strings, headers are ``str`` subclasses with attributes that depend on the type of the field. The parsing and folding algorithm fully implement :rfc:`2047` and :rfc:`5322`." msgstr "" -#: ../../library/email.policy.rst:397 -msgid "" -"The default value for the :attr:`~email.policy.Policy.message_factory` " -"attribute is :class:`~email.message.EmailMessage`." +msgid "The default value for the :attr:`~email.policy.Policy.message_factory` attribute is :class:`~email.message.EmailMessage`." msgstr "" -#: ../../library/email.policy.rst:400 -msgid "" -"In addition to the settable attributes listed above that apply to all " -"policies, this policy adds the following additional attributes:" +msgid "In addition to the settable attributes listed above that apply to all policies, this policy adds the following additional attributes:" msgstr "" -#: ../../library/email.policy.rst:403 msgid "[1]_" msgstr "" -#: ../../library/email.policy.rst:408 -msgid "" -"If ``False``, follow :rfc:`5322`, supporting non-ASCII characters in headers " -"by encoding them as \"encoded words\". If ``True``, follow :rfc:`6532` and " -"use ``utf-8`` encoding for headers. Messages formatted in this way may be " -"passed to SMTP servers that support the ``SMTPUTF8`` extension (:rfc:`6531`)." +msgid "If ``False``, follow :rfc:`5322`, supporting non-ASCII characters in headers by encoding them as \"encoded words\". If ``True``, follow :rfc:`6532` and use ``utf-8`` encoding for headers. Messages formatted in this way may be passed to SMTP servers that support the ``SMTPUTF8`` extension (:rfc:`6531`)." msgstr "" -#: ../../library/email.policy.rst:417 -msgid "" -"If the value for a header in the ``Message`` object originated from " -"a :mod:`~email.parser` (as opposed to being set by a program), this " -"attribute indicates whether or not a generator should refold that value when " -"transforming the message back into serialized form. The possible values are:" +msgid "If the value for a header in the ``Message`` object originated from a :mod:`~email.parser` (as opposed to being set by a program), this attribute indicates whether or not a generator should refold that value when transforming the message back into serialized form. The possible values are:" msgstr "" -#: ../../library/email.policy.rst:424 msgid "``none``" msgstr "" -#: ../../library/email.policy.rst:424 msgid "all source values use original folding" msgstr "" -#: ../../library/email.policy.rst:426 msgid "``long``" msgstr "" -#: ../../library/email.policy.rst:426 -msgid "" -"source values that have any line that is longer than ``max_line_length`` " -"will be refolded" +msgid "source values that have any line that is longer than ``max_line_length`` will be refolded" msgstr "" -#: ../../library/email.policy.rst:429 msgid "``all``" msgstr "" -#: ../../library/email.policy.rst:429 msgid "all values are refolded." msgstr "" -#: ../../library/email.policy.rst:432 msgid "The default is ``long``." msgstr "" -#: ../../library/email.policy.rst:437 -msgid "" -"A callable that takes two arguments, ``name`` and ``value``, where ``name`` " -"is a header field name and ``value`` is an unfolded header field value, and " -"returns a string subclass that represents that header. A default " -"``header_factory`` (see :mod:`~email.headerregistry`) is provided that " -"supports custom parsing for the various address and date :RFC:`5322` header " -"field types, and the major MIME header field stypes. Support for additional " -"custom parsing will be added in the future." +msgid "A callable that takes two arguments, ``name`` and ``value``, where ``name`` is a header field name and ``value`` is an unfolded header field value, and returns a string subclass that represents that header. A default ``header_factory`` (see :mod:`~email.headerregistry`) is provided that supports custom parsing for the various address and date :RFC:`5322` header field types, and the major MIME header field stypes. Support for additional custom parsing will be added in the future." msgstr "" -#: ../../library/email.policy.rst:448 -msgid "" -"An object with at least two methods: get_content and set_content. When " -"the :meth:`~email.message.EmailMessage.get_content` " -"or :meth:`~email.message.EmailMessage.set_content` method of " -"an :class:`~email.message.EmailMessage` object is called, it calls the " -"corresponding method of this object, passing it the message object as its " -"first argument, and any arguments or keywords that were passed to it as " -"additional arguments. By default ``content_manager`` is set " -"to :data:`~email.contentmanager.raw_data_manager`." +msgid "An object with at least two methods: get_content and set_content. When the :meth:`~email.message.EmailMessage.get_content` or :meth:`~email.message.EmailMessage.set_content` method of an :class:`~email.message.EmailMessage` object is called, it calls the corresponding method of this object, passing it the message object as its first argument, and any arguments or keywords that were passed to it as additional arguments. By default ``content_manager`` is set to :data:`~email.contentmanager.raw_data_manager`." msgstr "" -#: ../../library/email.policy.rst:460 ../../library/email.policy.rst:618 -msgid "" -"The class provides the following concrete implementations of the abstract " -"methods of :class:`Policy`:" +msgid "The class provides the following concrete implementations of the abstract methods of :class:`Policy`:" msgstr "" -#: ../../library/email.policy.rst:466 -msgid "" -"Returns the value of the :attr:`~email.headerregistry.BaseHeader.max_count` " -"attribute of the specialized class used to represent the header with the " -"given name." +msgid "Returns the value of the :attr:`~email.headerregistry.BaseHeader.max_count` attribute of the specialized class used to represent the header with the given name." msgstr "" -#: ../../library/email.policy.rst:474 ../../library/email.policy.rst:624 -msgid "" -"The name is parsed as everything up to the '``:``' and returned unmodified. " -"The value is determined by stripping leading whitespace off the remainder of " -"the first line, joining all subsequent lines together, and stripping any " -"trailing carriage return or linefeed characters." +msgid "The name is parsed as everything up to the '``:``' and returned unmodified. The value is determined by stripping leading whitespace off the remainder of the first line, joining all subsequent lines together, and stripping any trailing carriage return or linefeed characters." msgstr "" -#: ../../library/email.policy.rst:482 -msgid "" -"The name is returned unchanged. If the input value has a ``name`` attribute " -"and it matches *name* ignoring case, the value is returned unchanged. " -"Otherwise the *name* and *value* are passed to ``header_factory``, and the " -"resulting header object is returned as the value. In this case a " -"``ValueError`` is raised if the input value contains CR or LF characters." +msgid "The name is returned unchanged. If the input value has a ``name`` attribute and it matches *name* ignoring case, the value is returned unchanged. Otherwise the *name* and *value* are passed to ``header_factory``, and the resulting header object is returned as the value. In this case a ``ValueError`` is raised if the input value contains CR or LF characters." msgstr "" -#: ../../library/email.policy.rst:492 -msgid "" -"If the value has a ``name`` attribute, it is returned to unmodified. " -"Otherwise the *name*, and the *value* with any CR or LF characters removed, " -"are passed to the ``header_factory``, and the resulting header object is " -"returned. Any surrogateescaped bytes get turned into the unicode unknown-" -"character glyph." +msgid "If the value has a ``name`` attribute, it is returned to unmodified. Otherwise the *name*, and the *value* with any CR or LF characters removed, are passed to the ``header_factory``, and the resulting header object is returned. Any surrogateescaped bytes get turned into the unicode unknown-character glyph." msgstr "" -#: ../../library/email.policy.rst:501 -msgid "" -"Header folding is controlled by the :attr:`refold_source` policy setting. A " -"value is considered to be a 'source value' if and only if it does not have a " -"``name`` attribute (having a ``name`` attribute means it is a header object " -"of some sort). If a source value needs to be refolded according to the " -"policy, it is converted into a header object by passing the *name* and the " -"*value* with any CR and LF characters removed to the ``header_factory``. " -"Folding of a header object is done by calling its ``fold`` method with the " -"current policy." +msgid "Header folding is controlled by the :attr:`refold_source` policy setting. A value is considered to be a 'source value' if and only if it does not have a ``name`` attribute (having a ``name`` attribute means it is a header object of some sort). If a source value needs to be refolded according to the policy, it is converted into a header object by passing the *name* and the *value* with any CR and LF characters removed to the ``header_factory``. Folding of a header object is done by calling its ``fold`` method with the current policy." msgstr "" -#: ../../library/email.policy.rst:510 -msgid "" -"Source values are split into lines using :meth:`~str.splitlines`. If the " -"value is not to be refolded, the lines are rejoined using the ``linesep`` " -"from the policy and returned. The exception is lines containing non-ascii " -"binary data. In that case the value is refolded regardless of the " -"``refold_source`` setting, which causes the binary data to be CTE encoded " -"using the ``unknown-8bit`` charset." +msgid "Source values are split into lines using :meth:`~str.splitlines`. If the value is not to be refolded, the lines are rejoined using the ``linesep`` from the policy and returned. The exception is lines containing non-ascii binary data. In that case the value is refolded regardless of the ``refold_source`` setting, which causes the binary data to be CTE encoded using the ``unknown-8bit`` charset." msgstr "" -#: ../../library/email.policy.rst:520 -msgid "" -"The same as :meth:`fold` if :attr:`~Policy.cte_type` is ``7bit``, except " -"that the returned value is bytes." +msgid "The same as :meth:`fold` if :attr:`~Policy.cte_type` is ``7bit``, except that the returned value is bytes." msgstr "" -#: ../../library/email.policy.rst:523 -msgid "" -"If :attr:`~Policy.cte_type` is ``8bit``, non-ASCII binary data is converted " -"back into bytes. Headers with binary data are not refolded, regardless of " -"the ``refold_header`` setting, since there is no way to know whether the " -"binary data consists of single byte characters or multibyte characters." +msgid "If :attr:`~Policy.cte_type` is ``8bit``, non-ASCII binary data is converted back into bytes. Headers with binary data are not refolded, regardless of the ``refold_header`` setting, since there is no way to know whether the binary data consists of single byte characters or multibyte characters." msgstr "" -#: ../../library/email.policy.rst:530 -msgid "" -"The following instances of :class:`EmailPolicy` provide defaults suitable " -"for specific application domains. Note that in the future the behavior of " -"these instances (in particular the ``HTTP`` instance) may be adjusted to " -"conform even more closely to the RFCs relevant to their domains." +msgid "The following instances of :class:`EmailPolicy` provide defaults suitable for specific application domains. Note that in the future the behavior of these instances (in particular the ``HTTP`` instance) may be adjusted to conform even more closely to the RFCs relevant to their domains." msgstr "" -#: ../../library/email.policy.rst:538 -msgid "" -"An instance of ``EmailPolicy`` with all defaults unchanged. This policy " -"uses the standard Python ``\\n`` line endings rather than the RFC-correct " -"``\\r\\n``." +msgid "An instance of ``EmailPolicy`` with all defaults unchanged. This policy uses the standard Python ``\\n`` line endings rather than the RFC-correct ``\\r\\n``." msgstr "" -#: ../../library/email.policy.rst:545 -msgid "" -"Suitable for serializing messages in conformance with the email RFCs. Like " -"``default``, but with ``linesep`` set to ``\\r\\n``, which is RFC compliant." +msgid "Suitable for serializing messages in conformance with the email RFCs. Like ``default``, but with ``linesep`` set to ``\\r\\n``, which is RFC compliant." msgstr "" -#: ../../library/email.policy.rst:552 -msgid "" -"The same as ``SMTP`` except that :attr:`~EmailPolicy.utf8` is ``True``. " -"Useful for serializing messages to a message store without using encoded " -"words in the headers. Should only be used for SMTP transmission if the " -"sender or recipient addresses have non-ASCII characters " -"(the :meth:`smtplib.SMTP.send_message` method handles this automatically)." +msgid "The same as ``SMTP`` except that :attr:`~EmailPolicy.utf8` is ``True``. Useful for serializing messages to a message store without using encoded words in the headers. Should only be used for SMTP transmission if the sender or recipient addresses have non-ASCII characters (the :meth:`smtplib.SMTP.send_message` method handles this automatically)." msgstr "" -#: ../../library/email.policy.rst:561 -msgid "" -"Suitable for serializing headers with for use in HTTP traffic. Like " -"``SMTP`` except that ``max_line_length`` is set to ``None`` (unlimited)." +msgid "Suitable for serializing headers with for use in HTTP traffic. Like ``SMTP`` except that ``max_line_length`` is set to ``None`` (unlimited)." msgstr "" -#: ../../library/email.policy.rst:567 -msgid "" -"Convenience instance. The same as ``default`` except that " -"``raise_on_defect`` is set to ``True``. This allows any policy to be made " -"strict by writing::" +msgid "Convenience instance. The same as ``default`` except that ``raise_on_defect`` is set to ``True``. This allows any policy to be made strict by writing::" msgstr "" -#: ../../library/email.policy.rst:571 msgid "somepolicy + policy.strict" msgstr "" -#: ../../library/email.policy.rst:574 -msgid "" -"With all of these :class:`EmailPolicies <.EmailPolicy>`, the effective API " -"of the email package is changed from the Python 3.2 API in the following " -"ways:" +msgid "With all of these :class:`EmailPolicies <.EmailPolicy>`, the effective API of the email package is changed from the Python 3.2 API in the following ways:" msgstr "" -#: ../../library/email.policy.rst:577 -msgid "" -"Setting a header on a :class:`~email.message.Message` results in that header " -"being parsed and a header object created." +msgid "Setting a header on a :class:`~email.message.Message` results in that header being parsed and a header object created." msgstr "" -#: ../../library/email.policy.rst:580 -msgid "" -"Fetching a header value from a :class:`~email.message.Message` results in " -"that header being parsed and a header object created and returned." +msgid "Fetching a header value from a :class:`~email.message.Message` results in that header being parsed and a header object created and returned." msgstr "" -#: ../../library/email.policy.rst:584 -msgid "" -"Any header object, or any header that is refolded due to the policy " -"settings, is folded using an algorithm that fully implements the RFC folding " -"algorithms, including knowing where encoded words are required and allowed." +msgid "Any header object, or any header that is refolded due to the policy settings, is folded using an algorithm that fully implements the RFC folding algorithms, including knowing where encoded words are required and allowed." msgstr "" -#: ../../library/email.policy.rst:589 -msgid "" -"From the application view, this means that any header obtained through " -"the :class:`~email.message.EmailMessage` is a header object with extra " -"attributes, whose string value is the fully decoded unicode value of the " -"header. Likewise, a header may be assigned a new value, or a new header " -"created, using a unicode string, and the policy will take care of converting " -"the unicode string into the correct RFC encoded form." +msgid "From the application view, this means that any header obtained through the :class:`~email.message.EmailMessage` is a header object with extra attributes, whose string value is the fully decoded unicode value of the header. Likewise, a header may be assigned a new value, or a new header created, using a unicode string, and the policy will take care of converting the unicode string into the correct RFC encoded form." msgstr "" -#: ../../library/email.policy.rst:596 -msgid "" -"The header objects and their attributes are described " -"in :mod:`~email.headerregistry`." +msgid "The header objects and their attributes are described in :mod:`~email.headerregistry`." msgstr "" -#: ../../library/email.policy.rst:603 -msgid "" -"This concrete :class:`Policy` is the backward compatibility policy. It " -"replicates the behavior of the email package in Python 3.2. The :mod:`!" -"policy` module also defines an instance of this class, :const:`compat32`, " -"that is used as the default policy. Thus the default behavior of the email " -"package is to maintain compatibility with Python 3.2." +msgid "This concrete :class:`Policy` is the backward compatibility policy. It replicates the behavior of the email package in Python 3.2. The :mod:`!policy` module also defines an instance of this class, :const:`compat32`, that is used as the default policy. Thus the default behavior of the email package is to maintain compatibility with Python 3.2." msgstr "" -#: ../../library/email.policy.rst:609 -msgid "" -"The following attributes have values that are different from " -"the :class:`Policy` default:" +msgid "The following attributes have values that are different from the :class:`Policy` default:" msgstr "" -#: ../../library/email.policy.rst:615 msgid "The default is ``True``." msgstr "" -#: ../../library/email.policy.rst:632 msgid "The name and value are returned unmodified." msgstr "" -#: ../../library/email.policy.rst:637 -msgid "" -"If the value contains binary data, it is converted into " -"a :class:`~email.header.Header` object using the ``unknown-8bit`` charset. " -"Otherwise it is returned unmodified." +msgid "If the value contains binary data, it is converted into a :class:`~email.header.Header` object using the ``unknown-8bit`` charset. Otherwise it is returned unmodified." msgstr "" -#: ../../library/email.policy.rst:644 -msgid "" -"Headers are folded using the :class:`~email.header.Header` folding " -"algorithm, which preserves existing line breaks in the value, and wraps each " -"resulting line to the ``max_line_length``. Non-ASCII binary data are CTE " -"encoded using the ``unknown-8bit`` charset." +msgid "Headers are folded using the :class:`~email.header.Header` folding algorithm, which preserves existing line breaks in the value, and wraps each resulting line to the ``max_line_length``. Non-ASCII binary data are CTE encoded using the ``unknown-8bit`` charset." msgstr "" -#: ../../library/email.policy.rst:652 -msgid "" -"Headers are folded using the :class:`~email.header.Header` folding " -"algorithm, which preserves existing line breaks in the value, and wraps each " -"resulting line to the ``max_line_length``. If ``cte_type`` is ``7bit``, non-" -"ascii binary data is CTE encoded using the ``unknown-8bit`` charset. " -"Otherwise the original source header is used, with its existing line breaks " -"and any (RFC invalid) binary data it may contain." +msgid "Headers are folded using the :class:`~email.header.Header` folding algorithm, which preserves existing line breaks in the value, and wraps each resulting line to the ``max_line_length``. If ``cte_type`` is ``7bit``, non-ascii binary data is CTE encoded using the ``unknown-8bit`` charset. Otherwise the original source header is used, with its existing line breaks and any (RFC invalid) binary data it may contain." msgstr "" -#: ../../library/email.policy.rst:662 -msgid "" -"An instance of :class:`Compat32`, providing backward compatibility with the " -"behavior of the email package in Python 3.2." +msgid "An instance of :class:`Compat32`, providing backward compatibility with the behavior of the email package in Python 3.2." msgstr "" -#: ../../library/email.policy.rst:667 -msgid "" -"The :const:`compat32` policy should not be used as a policy " -"for :class:`~email.message.EmailMessage` objects, and should only be used to " -"serialize messages that were created using the :const:`compat32` policy." +msgid "The :const:`compat32` policy should not be used as a policy for :class:`~email.message.EmailMessage` objects, and should only be used to serialize messages that were created using the :const:`compat32` policy." msgstr "" -#: ../../library/email.policy.rst:674 msgid "Footnotes" msgstr "" -#: ../../library/email.policy.rst:675 -msgid "" -"Originally added in 3.3 as a :term:`provisional feature `." +msgid "Originally added in 3.3 as a :term:`provisional feature `." msgstr "" diff --git a/library/email.utils.po b/library/email.utils.po index a603f209..78b475fa 100644 --- a/library/email.utils.po +++ b/library/email.utils.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:05+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,118 +23,60 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/email.utils.rst:2 msgid ":mod:`!email.utils`: Miscellaneous utilities" msgstr "" -#: ../../library/email.utils.rst:7 msgid "**Source code:** :source:`Lib/email/utils.py`" msgstr "" -#: ../../library/email.utils.rst:11 -msgid "" -"There are a couple of useful utilities provided in the :mod:`!email.utils` " -"module:" +msgid "There are a couple of useful utilities provided in the :mod:`!email.utils` module:" msgstr "" -#: ../../library/email.utils.rst:16 -msgid "" -"Return local time as an aware datetime object. If called without arguments, " -"return current time. Otherwise *dt* argument should be " -"a :class:`~datetime.datetime` instance, and it is converted to the local " -"time zone according to the system time zone database. If *dt* is naive " -"(that is, ``dt.tzinfo`` is ``None``), it is assumed to be in local time." +msgid "Return local time as an aware datetime object. If called without arguments, return current time. Otherwise *dt* argument should be a :class:`~datetime.datetime` instance, and it is converted to the local time zone according to the system time zone database. If *dt* is naive (that is, ``dt.tzinfo`` is ``None``), it is assumed to be in local time." msgstr "" -#: ../../library/email.utils.rst:24 msgid "The *isdst* parameter." msgstr "" -#: ../../library/email.utils.rst:29 -msgid "" -"Returns a string suitable for an :rfc:`2822`\\ " -"-compliant :mailheader:`Message-ID` header. Optional *idstring* if given, " -"is a string used to strengthen the uniqueness of the message id. Optional " -"*domain* if given provides the portion of the msgid after the '@'. The " -"default is the local hostname. It is not normally necessary to override " -"this default, but may be useful certain cases, such as a constructing " -"distributed system that uses a consistent domain name across multiple hosts." +msgid "Returns a string suitable for an :rfc:`2822`\\ -compliant :mailheader:`Message-ID` header. Optional *idstring* if given, is a string used to strengthen the uniqueness of the message id. Optional *domain* if given provides the portion of the msgid after the '@'. The default is the local hostname. It is not normally necessary to override this default, but may be useful certain cases, such as a constructing distributed system that uses a consistent domain name across multiple hosts." msgstr "" -#: ../../library/email.utils.rst:37 msgid "Added the *domain* keyword." msgstr "" -#: ../../library/email.utils.rst:41 -msgid "" -"The remaining functions are part of the legacy (``Compat32``) email API. " -"There is no need to directly use these with the new API, since the parsing " -"and formatting they provide is done automatically by the header parsing " -"machinery of the new API." +msgid "The remaining functions are part of the legacy (``Compat32``) email API. There is no need to directly use these with the new API, since the parsing and formatting they provide is done automatically by the header parsing machinery of the new API." msgstr "" -#: ../../library/email.utils.rst:49 -msgid "" -"Return a new string with backslashes in *str* replaced by two backslashes, " -"and double quotes replaced by backslash-double quote." +msgid "Return a new string with backslashes in *str* replaced by two backslashes, and double quotes replaced by backslash-double quote." msgstr "" -#: ../../library/email.utils.rst:55 -msgid "" -"Return a new string which is an *unquoted* version of *str*. If *str* ends " -"and begins with double quotes, they are stripped off. Likewise if *str* " -"ends and begins with angle brackets, they are stripped off." +msgid "Return a new string which is an *unquoted* version of *str*. If *str* ends and begins with double quotes, they are stripped off. Likewise if *str* ends and begins with angle brackets, they are stripped off." msgstr "" -#: ../../library/email.utils.rst:62 -msgid "" -"Parse address -- which should be the value of some address-containing field " -"such as :mailheader:`To` or :mailheader:`Cc` -- into its constituent " -"*realname* and *email address* parts. Returns a tuple of that information, " -"unless the parse fails, in which case a 2-tuple of ``('', '')`` is returned." +msgid "Parse address -- which should be the value of some address-containing field such as :mailheader:`To` or :mailheader:`Cc` -- into its constituent *realname* and *email address* parts. Returns a tuple of that information, unless the parse fails, in which case a 2-tuple of ``('', '')`` is returned." msgstr "" -#: ../../library/email.utils.rst:67 ../../library/email.utils.rst:95 -msgid "" -"If *strict* is true, use a strict parser which rejects malformed inputs." +msgid "If *strict* is true, use a strict parser which rejects malformed inputs." msgstr "" -#: ../../library/email.utils.rst:69 ../../library/email.utils.rst:107 msgid "Add *strict* optional parameter and reject malformed inputs by default." msgstr "" -#: ../../library/email.utils.rst:75 -msgid "" -"The inverse of :meth:`parseaddr`, this takes a 2-tuple of the form " -"``(realname, email_address)`` and returns the string value suitable for " -"a :mailheader:`To` or :mailheader:`Cc` header. If the first element of " -"*pair* is false, then the second element is returned unmodified." +msgid "The inverse of :meth:`parseaddr`, this takes a 2-tuple of the form ``(realname, email_address)`` and returns the string value suitable for a :mailheader:`To` or :mailheader:`Cc` header. If the first element of *pair* is false, then the second element is returned unmodified." msgstr "" -#: ../../library/email.utils.rst:80 -msgid "" -"Optional *charset* is the character set that will be used in the :rfc:`2047` " -"encoding of the ``realname`` if the ``realname`` contains non-ASCII " -"characters. Can be an instance of :class:`str` or " -"a :class:`~email.charset.Charset`. Defaults to ``utf-8``." +msgid "Optional *charset* is the character set that will be used in the :rfc:`2047` encoding of the ``realname`` if the ``realname`` contains non-ASCII characters. Can be an instance of :class:`str` or a :class:`~email.charset.Charset`. Defaults to ``utf-8``." msgstr "" -#: ../../library/email.utils.rst:85 msgid "Added the *charset* option." msgstr "" -#: ../../library/email.utils.rst:91 -msgid "" -"This method returns a list of 2-tuples of the form returned by " -"``parseaddr()``. *fieldvalues* is a sequence of header field values as might " -"be returned by :meth:`Message.get_all `." +msgid "This method returns a list of 2-tuples of the form returned by ``parseaddr()``. *fieldvalues* is a sequence of header field values as might be returned by :meth:`Message.get_all `." msgstr "" -#: ../../library/email.utils.rst:97 msgid "Here's a simple example that gets all the recipients of a message::" msgstr "" -#: ../../library/email.utils.rst:99 msgid "" "from email.utils import getaddresses\n" "\n" @@ -145,136 +87,53 @@ msgid "" "all_recipients = getaddresses(tos + ccs + resent_tos + resent_ccs)" msgstr "" -#: ../../library/email.utils.rst:113 -msgid "" -"Attempts to parse a date according to the rules in :rfc:`2822`. however, " -"some mailers don't follow that format as specified, so :func:`parsedate` " -"tries to guess correctly in such cases. *date* is a string containing " -"an :rfc:`2822` date, such as ``\"Mon, 20 Nov 1995 19:12:08 -0500\"``. If " -"it succeeds in parsing the date, :func:`parsedate` returns a 9-tuple that " -"can be passed directly to :func:`time.mktime`; otherwise ``None`` will be " -"returned. Note that indexes 6, 7, and 8 of the result tuple are not usable." +msgid "Attempts to parse a date according to the rules in :rfc:`2822`. however, some mailers don't follow that format as specified, so :func:`parsedate` tries to guess correctly in such cases. *date* is a string containing an :rfc:`2822` date, such as ``\"Mon, 20 Nov 1995 19:12:08 -0500\"``. If it succeeds in parsing the date, :func:`parsedate` returns a 9-tuple that can be passed directly to :func:`time.mktime`; otherwise ``None`` will be returned. Note that indexes 6, 7, and 8 of the result tuple are not usable." msgstr "" -#: ../../library/email.utils.rst:124 -msgid "" -"Performs the same function as :func:`parsedate`, but returns either ``None`` " -"or a 10-tuple; the first 9 elements make up a tuple that can be passed " -"directly to :func:`time.mktime`, and the tenth is the offset of the date's " -"timezone from UTC (which is the official term for Greenwich Mean Time) " -"[#]_. If the input string has no timezone, the last element of the tuple " -"returned is ``0``, which represents UTC. Note that indexes 6, 7, and 8 of " -"the result tuple are not usable." +msgid "Performs the same function as :func:`parsedate`, but returns either ``None`` or a 10-tuple; the first 9 elements make up a tuple that can be passed directly to :func:`time.mktime`, and the tenth is the offset of the date's timezone from UTC (which is the official term for Greenwich Mean Time) [#]_. If the input string has no timezone, the last element of the tuple returned is ``0``, which represents UTC. Note that indexes 6, 7, and 8 of the result tuple are not usable." msgstr "" -#: ../../library/email.utils.rst:134 -msgid "" -"The inverse of :func:`format_datetime`. Performs the same function " -"as :func:`parsedate`, but on success returns a :mod:`~datetime.datetime`; " -"otherwise ``ValueError`` is raised if *date* contains an invalid value such " -"as an hour greater than 23 or a timezone offset not between -24 and 24 " -"hours. If the input date has a timezone of ``-0000``, the ``datetime`` will " -"be a naive ``datetime``, and if the date is conforming to the RFCs it will " -"represent a time in UTC but with no indication of the actual source timezone " -"of the message the date comes from. If the input date has any other valid " -"timezone offset, the ``datetime`` will be an aware ``datetime`` with the " -"corresponding a :class:`~datetime.timezone` :class:`~datetime.tzinfo`." -msgstr "" - -#: ../../library/email.utils.rst:150 -msgid "" -"Turn a 10-tuple as returned by :func:`parsedate_tz` into a UTC timestamp " -"(seconds since the Epoch). If the timezone item in the tuple is ``None``, " -"assume local time." +msgid "The inverse of :func:`format_datetime`. Performs the same function as :func:`parsedate`, but on success returns a :mod:`~datetime.datetime`; otherwise ``ValueError`` is raised if *date* contains an invalid value such as an hour greater than 23 or a timezone offset not between -24 and 24 hours. If the input date has a timezone of ``-0000``, the ``datetime`` will be a naive ``datetime``, and if the date is conforming to the RFCs it will represent a time in UTC but with no indication of the actual source timezone of the message the date comes from. If the input date has any other valid timezone offset, the ``datetime`` will be an aware ``datetime`` with the corresponding a :class:`~datetime.timezone` :class:`~datetime.tzinfo`." +msgstr "" + +msgid "Turn a 10-tuple as returned by :func:`parsedate_tz` into a UTC timestamp (seconds since the Epoch). If the timezone item in the tuple is ``None``, assume local time." msgstr "" -#: ../../library/email.utils.rst:157 msgid "Returns a date string as per :rfc:`2822`, e.g.::" msgstr "" -#: ../../library/email.utils.rst:159 msgid "Fri, 09 Nov 2001 01:08:47 -0000" msgstr "" -#: ../../library/email.utils.rst:161 -msgid "" -"Optional *timeval* if given is a floating-point time value as accepted " -"by :func:`time.gmtime` and :func:`time.localtime`, otherwise the current " -"time is used." +msgid "Optional *timeval* if given is a floating-point time value as accepted by :func:`time.gmtime` and :func:`time.localtime`, otherwise the current time is used." msgstr "" -#: ../../library/email.utils.rst:165 -msgid "" -"Optional *localtime* is a flag that when ``True``, interprets *timeval*, and " -"returns a date relative to the local timezone instead of UTC, properly " -"taking daylight savings time into account. The default is ``False`` meaning " -"UTC is used." +msgid "Optional *localtime* is a flag that when ``True``, interprets *timeval*, and returns a date relative to the local timezone instead of UTC, properly taking daylight savings time into account. The default is ``False`` meaning UTC is used." msgstr "" -#: ../../library/email.utils.rst:170 -msgid "" -"Optional *usegmt* is a flag that when ``True``, outputs a date string with " -"the timezone as an ascii string ``GMT``, rather than a numeric ``-0000``. " -"This is needed for some protocols (such as HTTP). This only applies when " -"*localtime* is ``False``. The default is ``False``." +msgid "Optional *usegmt* is a flag that when ``True``, outputs a date string with the timezone as an ascii string ``GMT``, rather than a numeric ``-0000``. This is needed for some protocols (such as HTTP). This only applies when *localtime* is ``False``. The default is ``False``." msgstr "" -#: ../../library/email.utils.rst:178 -msgid "" -"Like ``formatdate``, but the input is a :mod:`datetime` instance. If it is " -"a naive datetime, it is assumed to be \"UTC with no information about the " -"source timezone\", and the conventional ``-0000`` is used for the timezone. " -"If it is an aware ``datetime``, then the numeric timezone offset is used. If " -"it is an aware timezone with offset zero, then *usegmt* may be set to " -"``True``, in which case the string ``GMT`` is used instead of the numeric " -"timezone offset. This provides a way to generate standards conformant HTTP " -"date headers." +msgid "Like ``formatdate``, but the input is a :mod:`datetime` instance. If it is a naive datetime, it is assumed to be \"UTC with no information about the source timezone\", and the conventional ``-0000`` is used for the timezone. If it is an aware ``datetime``, then the numeric timezone offset is used. If it is an aware timezone with offset zero, then *usegmt* may be set to ``True``, in which case the string ``GMT`` is used instead of the numeric timezone offset. This provides a way to generate standards conformant HTTP date headers." msgstr "" -#: ../../library/email.utils.rst:192 msgid "Decode the string *s* according to :rfc:`2231`." msgstr "" -#: ../../library/email.utils.rst:197 -msgid "" -"Encode the string *s* according to :rfc:`2231`. Optional *charset* and " -"*language*, if given is the character set name and language name to use. If " -"neither is given, *s* is returned as-is. If *charset* is given but " -"*language* is not, the string is encoded using the empty string for " -"*language*." +msgid "Encode the string *s* according to :rfc:`2231`. Optional *charset* and *language*, if given is the character set name and language name to use. If neither is given, *s* is returned as-is. If *charset* is given but *language* is not, the string is encoded using the empty string for *language*." msgstr "" -#: ../../library/email.utils.rst:205 -msgid "" -"When a header parameter is encoded in :rfc:`2231` " -"format, :meth:`Message.get_param ` may " -"return a 3-tuple containing the character set, language, and " -"value. :func:`collapse_rfc2231_value` turns this into a unicode string. " -"Optional *errors* is passed to the *errors* argument " -"of :class:`str`'s :func:`~str.encode` method; it defaults to ``'replace'``. " -"Optional *fallback_charset* specifies the character set to use if the one in " -"the :rfc:`2231` header is not known by Python; it defaults to ``'us-ascii'``." +msgid "When a header parameter is encoded in :rfc:`2231` format, :meth:`Message.get_param ` may return a 3-tuple containing the character set, language, and value. :func:`collapse_rfc2231_value` turns this into a unicode string. Optional *errors* is passed to the *errors* argument of :class:`str`'s :func:`~str.encode` method; it defaults to ``'replace'``. Optional *fallback_charset* specifies the character set to use if the one in the :rfc:`2231` header is not known by Python; it defaults to ``'us-ascii'``." msgstr "" -#: ../../library/email.utils.rst:214 -msgid "" -"For convenience, if the *value* passed to :func:`collapse_rfc2231_value` is " -"not a tuple, it should be a string and it is returned unquoted." +msgid "For convenience, if the *value* passed to :func:`collapse_rfc2231_value` is not a tuple, it should be a string and it is returned unquoted." msgstr "" -#: ../../library/email.utils.rst:220 -msgid "" -"Decode parameters list according to :rfc:`2231`. *params* is a sequence of " -"2-tuples containing elements of the form ``(content-type, string-value)``." +msgid "Decode parameters list according to :rfc:`2231`. *params* is a sequence of 2-tuples containing elements of the form ``(content-type, string-value)``." msgstr "" -#: ../../library/email.utils.rst:225 msgid "Footnotes" msgstr "" -#: ../../library/email.utils.rst:226 -msgid "" -"Note that the sign of the timezone offset is the opposite of the sign of the " -"``time.timezone`` variable for the same timezone; the latter variable " -"follows the POSIX standard while this module follows :rfc:`2822`." +msgid "Note that the sign of the timezone offset is the opposite of the sign of the ``time.timezone`` variable for the same timezone; the latter variable follows the POSIX standard while this module follows :rfc:`2822`." msgstr "" diff --git a/library/ensurepip.po b/library/ensurepip.po index df24407d..d787ccbb 100644 --- a/library/ensurepip.po +++ b/library/ensurepip.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:05+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,228 +23,122 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/ensurepip.rst:2 msgid ":mod:`!ensurepip` --- Bootstrapping the ``pip`` installer" msgstr "" -#: ../../library/ensurepip.rst:10 msgid "**Source code:** :source:`Lib/ensurepip`" msgstr "" -#: ../../library/ensurepip.rst:14 -msgid "" -"The :mod:`!ensurepip` package provides support for bootstrapping the ``pip`` " -"installer into an existing Python installation or virtual environment. This " -"bootstrapping approach reflects the fact that ``pip`` is an independent " -"project with its own release cycle, and the latest available stable version " -"is bundled with maintenance and feature releases of the CPython reference " -"interpreter." +msgid "The :mod:`!ensurepip` package provides support for bootstrapping the ``pip`` installer into an existing Python installation or virtual environment. This bootstrapping approach reflects the fact that ``pip`` is an independent project with its own release cycle, and the latest available stable version is bundled with maintenance and feature releases of the CPython reference interpreter." msgstr "" -#: ../../library/ensurepip.rst:21 -msgid "" -"In most cases, end users of Python shouldn't need to invoke this module " -"directly (as ``pip`` should be bootstrapped by default), but it may be " -"needed if installing ``pip`` was skipped when installing Python (or when " -"creating a virtual environment) or after explicitly uninstalling ``pip``." +msgid "In most cases, end users of Python shouldn't need to invoke this module directly (as ``pip`` should be bootstrapped by default), but it may be needed if installing ``pip`` was skipped when installing Python (or when creating a virtual environment) or after explicitly uninstalling ``pip``." msgstr "" -#: ../../library/ensurepip.rst:29 -msgid "" -"This module *does not* access the internet. All of the components needed to " -"bootstrap ``pip`` are included as internal parts of the package." +msgid "This module *does not* access the internet. All of the components needed to bootstrap ``pip`` are included as internal parts of the package." msgstr "" -#: ../../includes/optional-module.rst:1 -msgid "" -"This is an :term:`optional module`. If it is missing from your copy of " -"CPython, look for documentation from your distributor (that is, whoever " -"provided Python to you). If you are the distributor, see :ref:`optional-" -"module-requirements`." +msgid "This is an :term:`optional module`. If it is missing from your copy of CPython, look for documentation from your distributor (that is, whoever provided Python to you). If you are the distributor, see :ref:`optional-module-requirements`." msgstr "" -#: ../../library/ensurepip.rst:37 msgid ":ref:`installing-index`" msgstr "" -#: ../../library/ensurepip.rst:38 msgid "The end user guide for installing Python packages" msgstr "" -#: ../../library/ensurepip.rst:40 msgid ":pep:`453`: Explicit bootstrapping of pip in Python installations" msgstr "" -#: ../../library/ensurepip.rst:41 msgid "The original rationale and specification for this module." msgstr "" -#: ../../includes/wasm-mobile-notavail.rst:3 msgid "Availability" msgstr "" -#: ../../includes/wasm-mobile-notavail.rst:5 -msgid "" -"This module is not supported on :ref:`mobile platforms ` or :ref:`WebAssembly platforms `." +msgid "This module is not supported on :ref:`mobile platforms ` or :ref:`WebAssembly platforms `." msgstr "" -#: ../../library/ensurepip.rst:48 msgid "Command-line interface" msgstr "" -#: ../../library/ensurepip.rst:52 -msgid "" -"The command line interface is invoked using the interpreter's ``-m`` switch." +msgid "The command line interface is invoked using the interpreter's ``-m`` switch." msgstr "" -#: ../../library/ensurepip.rst:54 msgid "The simplest possible invocation is::" msgstr "" -#: ../../library/ensurepip.rst:56 msgid "python -m ensurepip" msgstr "" -#: ../../library/ensurepip.rst:58 -msgid "" -"This invocation will install ``pip`` if it is not already installed, but " -"otherwise does nothing. To ensure the installed version of ``pip`` is at " -"least as recent as the one available in ``ensurepip``, pass the ``--" -"upgrade`` option::" +msgid "This invocation will install ``pip`` if it is not already installed, but otherwise does nothing. To ensure the installed version of ``pip`` is at least as recent as the one available in ``ensurepip``, pass the ``--upgrade`` option::" msgstr "" -#: ../../library/ensurepip.rst:63 msgid "python -m ensurepip --upgrade" msgstr "" -#: ../../library/ensurepip.rst:65 -msgid "" -"By default, ``pip`` is installed into the current virtual environment (if " -"one is active) or into the system site packages (if there is no active " -"virtual environment). The installation location can be controlled through " -"two additional command line options:" +msgid "By default, ``pip`` is installed into the current virtual environment (if one is active) or into the system site packages (if there is no active virtual environment). The installation location can be controlled through two additional command line options:" msgstr "" -#: ../../library/ensurepip.rst:72 -msgid "" -"Installs ``pip`` relative to the given root directory rather than the root " -"of the currently active virtual environment (if any) or the default root for " -"the current Python installation." +msgid "Installs ``pip`` relative to the given root directory rather than the root of the currently active virtual environment (if any) or the default root for the current Python installation." msgstr "" -#: ../../library/ensurepip.rst:78 -msgid "" -"Installs ``pip`` into the user site packages directory rather than globally " -"for the current Python installation (this option is not permitted inside an " -"active virtual environment)." +msgid "Installs ``pip`` into the user site packages directory rather than globally for the current Python installation (this option is not permitted inside an active virtual environment)." msgstr "" -#: ../../library/ensurepip.rst:82 -msgid "" -"By default, the scripts ``pipX`` and ``pipX.Y`` will be installed (where X.Y " -"stands for the version of Python used to invoke ``ensurepip``). The scripts " -"installed can be controlled through two additional command line options:" +msgid "By default, the scripts ``pipX`` and ``pipX.Y`` will be installed (where X.Y stands for the version of Python used to invoke ``ensurepip``). The scripts installed can be controlled through two additional command line options:" msgstr "" -#: ../../library/ensurepip.rst:89 -msgid "" -"If an alternate installation is requested, the ``pipX`` script will *not* be " -"installed." +msgid "If an alternate installation is requested, the ``pipX`` script will *not* be installed." msgstr "" -#: ../../library/ensurepip.rst:94 -msgid "" -"If a \"default pip\" installation is requested, the ``pip`` script will be " -"installed in addition to the two regular scripts." +msgid "If a \"default pip\" installation is requested, the ``pip`` script will be installed in addition to the two regular scripts." msgstr "" -#: ../../library/ensurepip.rst:97 -msgid "" -"Providing both of the script selection options will trigger an exception." +msgid "Providing both of the script selection options will trigger an exception." msgstr "" -#: ../../library/ensurepip.rst:100 msgid "Module API" msgstr "" -#: ../../library/ensurepip.rst:102 msgid ":mod:`!ensurepip` exposes two functions for programmatic use:" msgstr "" -#: ../../library/ensurepip.rst:106 -msgid "" -"Returns a string specifying the available version of pip that will be " -"installed when bootstrapping an environment." +msgid "Returns a string specifying the available version of pip that will be installed when bootstrapping an environment." msgstr "" -#: ../../library/ensurepip.rst:113 msgid "Bootstraps ``pip`` into the current or designated environment." msgstr "" -#: ../../library/ensurepip.rst:115 -msgid "" -"*root* specifies an alternative root directory to install relative to. If " -"*root* is ``None``, then installation uses the default install location for " -"the current environment." +msgid "*root* specifies an alternative root directory to install relative to. If *root* is ``None``, then installation uses the default install location for the current environment." msgstr "" -#: ../../library/ensurepip.rst:119 -msgid "" -"*upgrade* indicates whether or not to upgrade an existing installation of an " -"earlier version of ``pip`` to the available version." +msgid "*upgrade* indicates whether or not to upgrade an existing installation of an earlier version of ``pip`` to the available version." msgstr "" -#: ../../library/ensurepip.rst:122 -msgid "" -"*user* indicates whether to use the user scheme rather than installing " -"globally." +msgid "*user* indicates whether to use the user scheme rather than installing globally." msgstr "" -#: ../../library/ensurepip.rst:125 -msgid "" -"By default, the scripts ``pipX`` and ``pipX.Y`` will be installed (where X.Y " -"stands for the current version of Python)." +msgid "By default, the scripts ``pipX`` and ``pipX.Y`` will be installed (where X.Y stands for the current version of Python)." msgstr "" -#: ../../library/ensurepip.rst:128 msgid "If *altinstall* is set, then ``pipX`` will *not* be installed." msgstr "" -#: ../../library/ensurepip.rst:130 -msgid "" -"If *default_pip* is set, then ``pip`` will be installed in addition to the " -"two regular scripts." +msgid "If *default_pip* is set, then ``pip`` will be installed in addition to the two regular scripts." msgstr "" -#: ../../library/ensurepip.rst:133 -msgid "" -"Setting both *altinstall* and *default_pip* will trigger :exc:`ValueError`." +msgid "Setting both *altinstall* and *default_pip* will trigger :exc:`ValueError`." msgstr "" -#: ../../library/ensurepip.rst:136 -msgid "" -"*verbosity* controls the level of output to :data:`sys.stdout` from the " -"bootstrapping operation." +msgid "*verbosity* controls the level of output to :data:`sys.stdout` from the bootstrapping operation." msgstr "" -#: ../../library/ensurepip.rst:139 -msgid "" -"Raises an :ref:`auditing event ` ``ensurepip.bootstrap`` with " -"argument ``root``." +msgid "Raises an :ref:`auditing event ` ``ensurepip.bootstrap`` with argument ``root``." msgstr "" -#: ../../library/ensurepip.rst:143 -msgid "" -"The bootstrapping process has side effects on both ``sys.path`` and " -"``os.environ``. Invoking the command line interface in a subprocess instead " -"allows these side effects to be avoided." +msgid "The bootstrapping process has side effects on both ``sys.path`` and ``os.environ``. Invoking the command line interface in a subprocess instead allows these side effects to be avoided." msgstr "" -#: ../../library/ensurepip.rst:149 -msgid "" -"The bootstrapping process may install additional modules required by " -"``pip``, but other software should not assume those dependencies will always " -"be present by default (as the dependencies may be removed in a future " -"version of ``pip``)." +msgid "The bootstrapping process may install additional modules required by ``pip``, but other software should not assume those dependencies will always be present by default (as the dependencies may be removed in a future version of ``pip``)." msgstr "" diff --git a/library/enum.po b/library/enum.po index 260b85d5..dc0988ff 100644 --- a/library/enum.po +++ b/library/enum.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:05+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,61 +24,42 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/enum.rst:2 msgid ":mod:`!enum` --- Support for enumerations" msgstr "" -#: ../../library/enum.rst:14 msgid "**Source code:** :source:`Lib/enum.py`" msgstr "" -#: ../../library/enum.rst:18 -msgid "" -"This page contains the API reference information. For tutorial information " -"and discussion of more advanced topics, see" +msgid "This page contains the API reference information. For tutorial information and discussion of more advanced topics, see" msgstr "" -#: ../../library/enum.rst:21 msgid ":ref:`Basic Tutorial `" msgstr "" -#: ../../library/enum.rst:22 msgid ":ref:`Advanced Tutorial `" msgstr "" -#: ../../library/enum.rst:23 msgid ":ref:`Enum Cookbook `" msgstr "" -#: ../../library/enum.rst:27 msgid "An enumeration:" msgstr "" -#: ../../library/enum.rst:29 msgid "is a set of symbolic names (members) bound to unique values" msgstr "" -#: ../../library/enum.rst:30 -msgid "" -"can be iterated over to return its canonical (i.e. non-alias) members in " -"definition order" +msgid "can be iterated over to return its canonical (i.e. non-alias) members in definition order" msgstr "" -#: ../../library/enum.rst:32 msgid "uses *call* syntax to return members by value" msgstr "" -#: ../../library/enum.rst:33 msgid "uses *index* syntax to return members by name" msgstr "" -#: ../../library/enum.rst:35 -msgid "" -"Enumerations are created either by using :keyword:`class` syntax, or by " -"using function-call syntax::" +msgid "Enumerations are created either by using :keyword:`class` syntax, or by using function-call syntax::" msgstr "" -#: ../../library/enum.rst:38 msgid "" ">>> from enum import Enum\n" "\n" @@ -92,349 +73,222 @@ msgid "" ">>> Color = Enum('Color', [('RED', 1), ('GREEN', 2), ('BLUE', 3)])" msgstr "" -#: ../../library/enum.rst:49 -msgid "" -"Even though we can use :keyword:`class` syntax to create Enums, Enums are " -"not normal Python classes. See :ref:`How are Enums different? ` for more details." +msgid "Even though we can use :keyword:`class` syntax to create Enums, Enums are not normal Python classes. See :ref:`How are Enums different? ` for more details." msgstr "" -#: ../../library/enum.rst:53 msgid "Nomenclature" msgstr "" -#: ../../library/enum.rst:55 msgid "The class :class:`!Color` is an *enumeration* (or *enum*)" msgstr "" -#: ../../library/enum.rst:56 -msgid "" -"The attributes :attr:`!Color.RED`, :attr:`!Color.GREEN`, etc., are " -"*enumeration members* (or *members*) and are functionally constants." +msgid "The attributes :attr:`!Color.RED`, :attr:`!Color.GREEN`, etc., are *enumeration members* (or *members*) and are functionally constants." msgstr "" -#: ../../library/enum.rst:58 -msgid "" -"The enum members have *names* and *values* (the name of :attr:`!Color.RED` " -"is ``RED``, the value of :attr:`!Color.BLUE` is ``3``, etc.)" +msgid "The enum members have *names* and *values* (the name of :attr:`!Color.RED` is ``RED``, the value of :attr:`!Color.BLUE` is ``3``, etc.)" msgstr "" -#: ../../library/enum.rst:65 msgid "Module contents" msgstr "" -#: ../../library/enum.rst:67 msgid ":class:`EnumType`" msgstr "" -#: ../../library/enum.rst:69 msgid "The ``type`` for Enum and its subclasses." msgstr "" -#: ../../library/enum.rst:71 msgid ":class:`Enum`" msgstr "" -#: ../../library/enum.rst:73 msgid "Base class for creating enumerated constants." msgstr "" -#: ../../library/enum.rst:75 msgid ":class:`IntEnum`" msgstr "" -#: ../../library/enum.rst:77 -msgid "" -"Base class for creating enumerated constants that are also subclasses " -"of :class:`int`. (`Notes`_)" +msgid "Base class for creating enumerated constants that are also subclasses of :class:`int`. (`Notes`_)" msgstr "" -#: ../../library/enum.rst:80 msgid ":class:`StrEnum`" msgstr "" -#: ../../library/enum.rst:82 -msgid "" -"Base class for creating enumerated constants that are also subclasses " -"of :class:`str`. (`Notes`_)" +msgid "Base class for creating enumerated constants that are also subclasses of :class:`str`. (`Notes`_)" msgstr "" -#: ../../library/enum.rst:85 msgid ":class:`Flag`" msgstr "" -#: ../../library/enum.rst:87 -msgid "" -"Base class for creating enumerated constants that can be combined using the " -"bitwise operations without losing their :class:`Flag` membership." +msgid "Base class for creating enumerated constants that can be combined using the bitwise operations without losing their :class:`Flag` membership." msgstr "" -#: ../../library/enum.rst:90 msgid ":class:`IntFlag`" msgstr "" -#: ../../library/enum.rst:92 -msgid "" -"Base class for creating enumerated constants that can be combined using the " -"bitwise operators without losing their :class:`IntFlag` " -"membership. :class:`IntFlag` members are also subclasses of :class:`int`. " -"(`Notes`_)" +msgid "Base class for creating enumerated constants that can be combined using the bitwise operators without losing their :class:`IntFlag` membership. :class:`IntFlag` members are also subclasses of :class:`int`. (`Notes`_)" msgstr "" -#: ../../library/enum.rst:96 msgid ":class:`ReprEnum`" msgstr "" -#: ../../library/enum.rst:98 -msgid "" -"Used by :class:`IntEnum`, :class:`StrEnum`, and :class:`IntFlag` to keep " -"the :class:`str() ` of the mixed-in type." +msgid "Used by :class:`IntEnum`, :class:`StrEnum`, and :class:`IntFlag` to keep the :class:`str() ` of the mixed-in type." msgstr "" -#: ../../library/enum.rst:101 msgid ":class:`EnumCheck`" msgstr "" -#: ../../library/enum.rst:103 -msgid "" -"An enumeration with the values ``CONTINUOUS``, ``NAMED_FLAGS``, and " -"``UNIQUE``, for use with :func:`verify` to ensure various constraints are " -"met by a given enumeration." +msgid "An enumeration with the values ``CONTINUOUS``, ``NAMED_FLAGS``, and ``UNIQUE``, for use with :func:`verify` to ensure various constraints are met by a given enumeration." msgstr "" -#: ../../library/enum.rst:107 msgid ":class:`FlagBoundary`" msgstr "" -#: ../../library/enum.rst:109 -msgid "" -"An enumeration with the values ``STRICT``, ``CONFORM``, ``EJECT``, and " -"``KEEP`` which allows for more fine-grained control over how invalid values " -"are dealt with in an enumeration." +msgid "An enumeration with the values ``STRICT``, ``CONFORM``, ``EJECT``, and ``KEEP`` which allows for more fine-grained control over how invalid values are dealt with in an enumeration." msgstr "" -#: ../../library/enum.rst:113 msgid ":class:`EnumDict`" msgstr "" -#: ../../library/enum.rst:115 msgid "A subclass of :class:`dict` for use when subclassing :class:`EnumType`." msgstr "" -#: ../../library/enum.rst:117 msgid ":class:`auto`" msgstr "" -#: ../../library/enum.rst:119 -msgid "" -"Instances are replaced with an appropriate value for Enum " -"members. :class:`StrEnum` defaults to the lower-cased version of the member " -"name, while other Enums default to 1 and increase from there." +msgid "Instances are replaced with an appropriate value for Enum members. :class:`StrEnum` defaults to the lower-cased version of the member name, while other Enums default to 1 and increase from there." msgstr "" -#: ../../library/enum.rst:123 msgid ":deco:`~enum.property`" msgstr "" -#: ../../library/enum.rst:125 -msgid "" -"Allows :class:`Enum` members to have attributes without conflicting with " -"member names. The ``value`` and ``name`` attributes are implemented this " -"way." +msgid "Allows :class:`Enum` members to have attributes without conflicting with member names. The ``value`` and ``name`` attributes are implemented this way." msgstr "" -#: ../../library/enum.rst:129 msgid ":deco:`unique`" msgstr "" -#: ../../library/enum.rst:131 -msgid "" -"Enum class decorator that ensures only one name is bound to any one value." +msgid "Enum class decorator that ensures only one name is bound to any one value." msgstr "" -#: ../../library/enum.rst:133 msgid ":deco:`verify`" msgstr "" -#: ../../library/enum.rst:135 -msgid "" -"Enum class decorator that checks user-selectable constraints on an " -"enumeration." +msgid "Enum class decorator that checks user-selectable constraints on an enumeration." msgstr "" -#: ../../library/enum.rst:138 msgid ":deco:`member`" msgstr "" -#: ../../library/enum.rst:140 msgid "Make ``obj`` a member. Can be used as a decorator." msgstr "" -#: ../../library/enum.rst:142 msgid ":deco:`nonmember`" msgstr "" -#: ../../library/enum.rst:144 msgid "Do not make ``obj`` a member. Can be used as a decorator." msgstr "" -#: ../../library/enum.rst:146 msgid ":deco:`global_enum`" msgstr "" -#: ../../library/enum.rst:148 -msgid "" -"Modify the :class:`str() ` and :func:`repr` of an enum to show its " -"members as belonging to the module instead of its class, and export the enum " -"members to the global namespace." +msgid "Modify the :class:`str() ` and :func:`repr` of an enum to show its members as belonging to the module instead of its class, and export the enum members to the global namespace." msgstr "" -#: ../../library/enum.rst:152 msgid ":func:`show_flag_values`" msgstr "" -#: ../../library/enum.rst:154 msgid "Return a list of all power-of-two integers contained in a flag." msgstr "" -#: ../../library/enum.rst:156 msgid ":func:`enum.bin`" msgstr "" -#: ../../library/enum.rst:158 ../../library/enum.rst:1081 -msgid "" -"Like built-in :func:`bin`, except negative values are represented in two's " -"complement, and the leading bit always indicates sign (``0`` implies " -"positive, ``1`` implies negative)." +msgid "Like built-in :func:`bin`, except negative values are represented in two's complement, and the leading bit always indicates sign (``0`` implies positive, ``1`` implies negative)." msgstr "" -#: ../../library/enum.rst:163 msgid "``Flag``, ``IntFlag``, ``auto``" msgstr "" -#: ../../library/enum.rst:164 -msgid "" -"``StrEnum``, ``EnumCheck``, ``ReprEnum``, ``FlagBoundary``, ``property``, " -"``member``, ``nonmember``, ``global_enum``, ``show_flag_values``" +msgid "``StrEnum``, ``EnumCheck``, ``ReprEnum``, ``FlagBoundary``, ``property``, ``member``, ``nonmember``, ``global_enum``, ``show_flag_values``" msgstr "" -#: ../../library/enum.rst:165 msgid "``EnumDict``" msgstr "" -#: ../../library/enum.rst:170 msgid "Data types" msgstr "" -#: ../../library/enum.rst:175 -msgid "" -"*EnumType* is the :term:`metaclass` for *enum* enumerations. It is possible " -"to subclass *EnumType* -- see :ref:`Subclassing EnumType ` for details." +msgid "*EnumType* is the :term:`metaclass` for *enum* enumerations. It is possible to subclass *EnumType* -- see :ref:`Subclassing EnumType ` for details." msgstr "" -#: ../../library/enum.rst:179 -msgid "" -"``EnumType`` is responsible for setting the correct :meth:`!" -"__repr__`, :meth:`!__str__`, :meth:`!__format__`, and :meth:`!__reduce__` " -"methods on the final *enum*, as well as creating the enum members, properly " -"handling duplicates, providing iteration over the enum class, etc." +msgid "``EnumType`` is responsible for setting the correct :meth:`!__repr__`, :meth:`!__str__`, :meth:`!__format__`, and :meth:`!__reduce__` methods on the final *enum*, as well as creating the enum members, properly handling duplicates, providing iteration over the enum class, etc." msgstr "" -#: ../../library/enum.rst:186 -msgid "" -"Before 3.11 ``EnumType`` was called ``EnumMeta``, which is still available " -"as an alias." +msgid "Before 3.11 ``EnumType`` was called ``EnumMeta``, which is still available as an alias." msgstr "" -#: ../../library/enum.rst:190 msgid "This method is called in two different ways:" msgstr "" -#: ../../library/enum.rst:192 msgid "to look up an existing member:" msgstr "" -#: ../../library/enum.rst:0 msgid "cls" msgstr "" -#: ../../library/enum.rst:194 ../../library/enum.rst:200 msgid "The enum class being called." msgstr "" -#: ../../library/enum.rst:0 msgid "value" msgstr "" -#: ../../library/enum.rst:195 msgid "The value to lookup." msgstr "" -#: ../../library/enum.rst:197 -msgid "" -"to use the ``cls`` enum to create a new enum (only if the existing enum does " -"not have any members):" +msgid "to use the ``cls`` enum to create a new enum (only if the existing enum does not have any members):" msgstr "" -#: ../../library/enum.rst:201 msgid "The name of the new Enum to create." msgstr "" -#: ../../library/enum.rst:0 msgid "names" msgstr "" -#: ../../library/enum.rst:202 msgid "The names/values of the members for the new Enum." msgstr "" -#: ../../library/enum.rst:0 msgid "module" msgstr "" -#: ../../library/enum.rst:203 msgid "The name of the module the new Enum is created in." msgstr "" -#: ../../library/enum.rst:0 msgid "qualname" msgstr "" -#: ../../library/enum.rst:204 msgid "The actual location in the module where this Enum can be found." msgstr "" -#: ../../library/enum.rst:0 msgid "type" msgstr "" -#: ../../library/enum.rst:205 msgid "A mix-in type for the new Enum." msgstr "" -#: ../../library/enum.rst:0 msgid "start" msgstr "" -#: ../../library/enum.rst:206 msgid "The first integer value for the Enum (used by :class:`auto`)." msgstr "" -#: ../../library/enum.rst:0 msgid "boundary" msgstr "" -#: ../../library/enum.rst:207 -msgid "" -"How to handle out-of-range values from bit operations (:class:`Flag` only)." +msgid "How to handle out-of-range values from bit operations (:class:`Flag` only)." msgstr "" -#: ../../library/enum.rst:211 msgid "Returns ``True`` if member belongs to the ``cls``::" msgstr "" -#: ../../library/enum.rst:213 msgid "" ">>> some_var = Color.RED\n" ">>> some_var in Color\n" @@ -443,137 +297,92 @@ msgid "" "True" msgstr "" -#: ../../library/enum.rst:221 -msgid "" -"Before Python 3.12, a ``TypeError`` is raised if a non-Enum-member is used " -"in a containment check." +msgid "Before Python 3.12, a ``TypeError`` is raised if a non-Enum-member is used in a containment check." msgstr "" -#: ../../library/enum.rst:226 -msgid "" -"Returns ``['__class__', '__doc__', '__members__', '__module__']`` and the " -"names of the members in *cls*::" +msgid "Returns ``['__class__', '__doc__', '__members__', '__module__']`` and the names of the members in *cls*::" msgstr "" -#: ../../library/enum.rst:229 msgid "" ">>> dir(Color)\n" -"['BLUE', 'GREEN', 'RED', '__class__', '__contains__', '__doc__', " -"'__getitem__', '__init_subclass__', '__iter__', '__len__', '__members__', " -"'__module__', '__name__', '__qualname__']" +"['BLUE', 'GREEN', 'RED', '__class__', '__contains__', '__doc__', '__getitem__', '__init_subclass__', '__iter__', '__len__', '__members__', '__module__', '__name__', '__qualname__']" msgstr "" -#: ../../library/enum.rst:234 -msgid "" -"Returns the Enum member in *cls* matching *name*, or raises " -"a :exc:`KeyError`::" +msgid "Returns the Enum member in *cls* matching *name*, or raises a :exc:`KeyError`::" msgstr "" -#: ../../library/enum.rst:236 msgid "" ">>> Color['BLUE']\n" "" msgstr "" -#: ../../library/enum.rst:241 msgid "Returns each member in *cls* in definition order::" msgstr "" -#: ../../library/enum.rst:243 msgid "" ">>> list(Color)\n" "[, , ]" msgstr "" -#: ../../library/enum.rst:248 msgid "Returns the number of members in *cls*::" msgstr "" -#: ../../library/enum.rst:250 msgid "" ">>> len(Color)\n" "3" msgstr "" -#: ../../library/enum.rst:255 msgid "Returns a mapping of every enum name to its member, including aliases" msgstr "" -#: ../../library/enum.rst:259 msgid "Returns each member in *cls* in reverse definition order::" msgstr "" -#: ../../library/enum.rst:261 msgid "" ">>> list(reversed(Color))\n" "[, , ]" msgstr "" -#: ../../library/enum.rst:267 msgid "*Enum* is the base class for all *enum* enumerations." msgstr "" -#: ../../library/enum.rst:271 msgid "The name used to define the ``Enum`` member::" msgstr "" -#: ../../library/enum.rst:273 msgid "" ">>> Color.BLUE.name\n" "'BLUE'" msgstr "" -#: ../../library/enum.rst:278 msgid "The value given to the ``Enum`` member::" msgstr "" -#: ../../library/enum.rst:280 msgid "" ">>> Color.RED.value\n" "1" msgstr "" -#: ../../library/enum.rst:283 ../../library/enum.rst:303 msgid "Value of the member, can be set in :meth:`~Enum.__new__`." msgstr "" -#: ../../library/enum.rst:285 msgid "Enum member values" msgstr "" -#: ../../library/enum.rst:287 -msgid "" -"Member values can be anything: :class:`int`, :class:`str`, etc. If the " -"exact value is unimportant you may use :class:`auto` instances and an " -"appropriate value will be chosen for you. See :class:`auto` for the details." +msgid "Member values can be anything: :class:`int`, :class:`str`, etc. If the exact value is unimportant you may use :class:`auto` instances and an appropriate value will be chosen for you. See :class:`auto` for the details." msgstr "" -#: ../../library/enum.rst:292 -msgid "" -"While mutable/unhashable values, such as :class:`dict`, :class:`list` or a " -"mutable :class:`~dataclasses.dataclass`, can be used, they will have a " -"quadratic performance impact during creation relative to the total number of " -"mutable/unhashable values in the enum." +msgid "While mutable/unhashable values, such as :class:`dict`, :class:`list` or a mutable :class:`~dataclasses.dataclass`, can be used, they will have a quadratic performance impact during creation relative to the total number of mutable/unhashable values in the enum." msgstr "" -#: ../../library/enum.rst:299 msgid "Name of the member." msgstr "" -#: ../../library/enum.rst:307 -msgid "" -"No longer used, kept for backward compatibility. (class attribute, removed " -"during class creation)." +msgid "No longer used, kept for backward compatibility. (class attribute, removed during class creation)." msgstr "" -#: ../../library/enum.rst:310 -msgid "" -"The :attr:`~Enum._order_` attribute can be provided to help keep Python 2 / " -"Python 3 code in sync. It will be checked against the actual order of the " -"enumeration and raise an error if the two do not match::" +msgid "The :attr:`~Enum._order_` attribute can be provided to help keep Python 2 / Python 3 code in sync. It will be checked against the actual order of the enumeration and raise an error if the two do not match::" msgstr "" -#: ../../library/enum.rst:313 msgid "" ">>> class Color(Enum):\n" "... _order_ = 'RED GREEN BLUE'\n" @@ -588,32 +397,18 @@ msgid "" " ['RED', 'GREEN', 'BLUE']" msgstr "" -#: ../../library/enum.rst:327 -msgid "" -"In Python 2 code the :attr:`~Enum._order_` attribute is necessary as " -"definition order is lost before it can be recorded." +msgid "In Python 2 code the :attr:`~Enum._order_` attribute is necessary as definition order is lost before it can be recorded." msgstr "" -#: ../../library/enum.rst:334 -msgid "" -"``_ignore_`` is only used during creation and is removed from the " -"enumeration once creation is complete." +msgid "``_ignore_`` is only used during creation and is removed from the enumeration once creation is complete." msgstr "" -#: ../../library/enum.rst:337 -msgid "" -"``_ignore_`` is a list of names that will not become members, and whose " -"names will also be removed from the completed enumeration. " -"See :ref:`TimePeriod ` for an example." +msgid "``_ignore_`` is a list of names that will not become members, and whose names will also be removed from the completed enumeration. See :ref:`TimePeriod ` for an example." msgstr "" -#: ../../library/enum.rst:345 -msgid "" -"Returns ``['__class__', '__doc__', '__module__', 'name', 'value']`` and any " -"public methods defined on *self.__class__*::" +msgid "Returns ``['__class__', '__doc__', '__module__', 'name', 'value']`` and any public methods defined on *self.__class__*::" msgstr "" -#: ../../library/enum.rst:348 msgid "" ">>> from enum import Enum\n" ">>> import datetime as dt\n" @@ -630,61 +425,42 @@ msgid "" "... print(f'today is {cls(dt.date.today().isoweekday()).name}')\n" "...\n" ">>> dir(Weekday.SATURDAY)\n" -"['__class__', '__doc__', '__eq__', '__hash__', '__module__', 'name', " -"'today', 'value']" +"['__class__', '__doc__', '__eq__', '__hash__', '__module__', 'name', 'today', 'value']" msgstr "" -#: ../../library/enum.rst:0 msgid "name" msgstr "" -#: ../../library/enum.rst:367 msgid "The name of the member being defined (e.g. 'RED')." msgstr "" -#: ../../library/enum.rst:368 msgid "The start value for the Enum; the default is 1." msgstr "" -#: ../../library/enum.rst:0 msgid "count" msgstr "" -#: ../../library/enum.rst:369 msgid "The number of members currently defined, not including this one." msgstr "" -#: ../../library/enum.rst:0 msgid "last_values" msgstr "" -#: ../../library/enum.rst:370 msgid "A list of the previous values." msgstr "" -#: ../../library/enum.rst:372 -msgid "" -"A *staticmethod* that is used to determine the next value returned " -"by :class:`auto`." +msgid "A *staticmethod* that is used to determine the next value returned by :class:`auto`." msgstr "" -#: ../../library/enum.rst:376 -msgid "" -"For standard :class:`Enum` classes the next value chosen is the highest " -"value seen incremented by one." +msgid "For standard :class:`Enum` classes the next value chosen is the highest value seen incremented by one." msgstr "" -#: ../../library/enum.rst:379 -msgid "" -"For :class:`Flag` classes the next value chosen will be the next highest " -"power-of-two." +msgid "For :class:`Flag` classes the next value chosen will be the next highest power-of-two." msgstr "" -#: ../../library/enum.rst:382 msgid "This method may be overridden, e.g.::" msgstr "" -#: ../../library/enum.rst:384 msgid "" ">>> from enum import auto, Enum\n" ">>> class PowersOfThree(Enum):\n" @@ -698,36 +474,21 @@ msgid "" "9" msgstr "" -#: ../../library/enum.rst:396 -msgid "" -"Prior versions would use the last seen value instead of the highest value." +msgid "Prior versions would use the last seen value instead of the highest value." msgstr "" -#: ../../library/enum.rst:401 -msgid "" -"By default, does nothing. If multiple values are given in the member " -"assignment, those values become separate arguments to ``__init__``; e.g." +msgid "By default, does nothing. If multiple values are given in the member assignment, those values become separate arguments to ``__init__``; e.g." msgstr "" -#: ../../library/enum.rst:408 -msgid "" -"``Weekday.__init__()`` would be called as ``Weekday.__init__(self, 1, " -"'Mon')``" +msgid "``Weekday.__init__()`` would be called as ``Weekday.__init__(self, 1, 'Mon')``" msgstr "" -#: ../../library/enum.rst:412 -msgid "" -"A *classmethod* that is used to further configure subsequent subclasses. By " -"default, does nothing." +msgid "A *classmethod* that is used to further configure subsequent subclasses. By default, does nothing." msgstr "" -#: ../../library/enum.rst:417 -msgid "" -"A *classmethod* for looking up values not found in *cls*. By default it " -"does nothing, but can be overridden to implement custom search behavior::" +msgid "A *classmethod* for looking up values not found in *cls*. By default it does nothing, but can be overridden to implement custom search behavior::" msgstr "" -#: ../../library/enum.rst:420 msgid "" ">>> from enum import auto, StrEnum\n" ">>> class Build(StrEnum):\n" @@ -747,31 +508,18 @@ msgid "" "" msgstr "" -#: ../../library/enum.rst:441 -msgid "" -"By default, doesn't exist. If specified, either in the enum class " -"definition or in a mixin class (such as ``int``), all values given in the " -"member assignment will be passed; e.g." +msgid "By default, doesn't exist. If specified, either in the enum class definition or in a mixin class (such as ``int``), all values given in the member assignment will be passed; e.g." msgstr "" -#: ../../library/enum.rst:449 -msgid "" -"results in the call ``int('1a', 16)`` and a value of ``26`` for the member." +msgid "results in the call ``int('1a', 16)`` and a value of ``26`` for the member." msgstr "" -#: ../../library/enum.rst:453 -msgid "" -"When writing a custom ``__new__``, do not use ``super().__new__`` -- call " -"the appropriate ``__new__`` instead." +msgid "When writing a custom ``__new__``, do not use ``super().__new__`` -- call the appropriate ``__new__`` instead." msgstr "" -#: ../../library/enum.rst:458 -msgid "" -"Returns the string used for *repr()* calls. By default, returns the *Enum* " -"name, member name, and value, but can be overridden::" +msgid "Returns the string used for *repr()* calls. By default, returns the *Enum* name, member name, and value, but can be overridden::" msgstr "" -#: ../../library/enum.rst:461 msgid "" ">>> from enum import auto, Enum\n" ">>> class OtherStyle(Enum):\n" @@ -782,18 +530,13 @@ msgid "" "... cls_name = self.__class__.__name__\n" "... return f'{cls_name}.{self.name}'\n" "...\n" -">>> OtherStyle.ALTERNATE, str(OtherStyle.ALTERNATE), " -"f\"{OtherStyle.ALTERNATE}\"\n" +">>> OtherStyle.ALTERNATE, str(OtherStyle.ALTERNATE), f\"{OtherStyle.ALTERNATE}\"\n" "(OtherStyle.ALTERNATE, 'OtherStyle.ALTERNATE', 'OtherStyle.ALTERNATE')" msgstr "" -#: ../../library/enum.rst:475 -msgid "" -"Returns the string used for *str()* calls. By default, returns the *Enum* " -"name and member name, but can be overridden::" +msgid "Returns the string used for *str()* calls. By default, returns the *Enum* name and member name, but can be overridden::" msgstr "" -#: ../../library/enum.rst:478 msgid "" ">>> from enum import auto, Enum\n" ">>> class OtherStyle(Enum):\n" @@ -803,18 +546,13 @@ msgid "" "... def __str__(self):\n" "... return f'{self.name}'\n" "...\n" -">>> OtherStyle.ALTERNATE, str(OtherStyle.ALTERNATE), " -"f\"{OtherStyle.ALTERNATE}\"\n" +">>> OtherStyle.ALTERNATE, str(OtherStyle.ALTERNATE), f\"{OtherStyle.ALTERNATE}\"\n" "(, 'ALTERNATE', 'ALTERNATE')" msgstr "" -#: ../../library/enum.rst:491 -msgid "" -"Returns the string used for *format()* and *f-string* calls. By default, " -"returns :meth:`__str__` return value, but can be overridden::" +msgid "Returns the string used for *format()* and *f-string* calls. By default, returns :meth:`__str__` return value, but can be overridden::" msgstr "" -#: ../../library/enum.rst:494 msgid "" ">>> from enum import auto, Enum\n" ">>> class OtherStyle(Enum):\n" @@ -824,121 +562,70 @@ msgid "" "... def __format__(self, spec):\n" "... return f'{self.name}'\n" "...\n" -">>> OtherStyle.ALTERNATE, str(OtherStyle.ALTERNATE), " -"f\"{OtherStyle.ALTERNATE}\"\n" +">>> OtherStyle.ALTERNATE, str(OtherStyle.ALTERNATE), f\"{OtherStyle.ALTERNATE}\"\n" "(, 'OtherStyle.ALTERNATE', 'ALTERNATE')" msgstr "" -#: ../../library/enum.rst:507 -msgid "" -"Using :class:`auto` with :class:`Enum` results in integers of increasing " -"value, starting with ``1``." +msgid "Using :class:`auto` with :class:`Enum` results in integers of increasing value, starting with ``1``." msgstr "" -#: ../../library/enum.rst:510 msgid "Added :ref:`enum-dataclass-support`" msgstr "" -#: ../../library/enum.rst:514 msgid "Adds a new name as an alias to an existing member::" msgstr "" -#: ../../library/enum.rst:516 msgid "" ">>> Color.RED._add_alias_(\"ERROR\")\n" ">>> Color.ERROR\n" "" msgstr "" -#: ../../library/enum.rst:520 -msgid "" -"Raises a :exc:`NameError` if the name is already assigned to a different " -"member." +msgid "Raises a :exc:`NameError` if the name is already assigned to a different member." msgstr "" -#: ../../library/enum.rst:526 msgid "Adds a new value as an alias to an existing member::" msgstr "" -#: ../../library/enum.rst:528 msgid "" ">>> Color.RED._add_value_alias_(42)\n" ">>> Color(42)\n" "" msgstr "" -#: ../../library/enum.rst:532 -msgid "" -"Raises a :exc:`ValueError` if the value is already linked with a different " -"member." +msgid "Raises a :exc:`ValueError` if the value is already linked with a different member." msgstr "" -#: ../../library/enum.rst:533 msgid "See :ref:`multi-value-enum` for an example." msgstr "" -#: ../../library/enum.rst:540 -msgid "" -"*IntEnum* is the same as :class:`Enum`, but its members are also integers " -"and can be used anywhere that an integer can be used. If any integer " -"operation is performed with an *IntEnum* member, the resulting value loses " -"its enumeration status." +msgid "*IntEnum* is the same as :class:`Enum`, but its members are also integers and can be used anywhere that an integer can be used. If any integer operation is performed with an *IntEnum* member, the resulting value loses its enumeration status." msgstr "" -#: ../../library/enum.rst:561 -msgid "" -"Using :class:`auto` with :class:`IntEnum` results in integers of increasing " -"value, starting with ``1``." +msgid "Using :class:`auto` with :class:`IntEnum` results in integers of increasing value, starting with ``1``." msgstr "" -#: ../../library/enum.rst:564 -msgid "" -":meth:`~object.__str__` is now :meth:`!int.__str__` to better support the " -"*replacement of existing constants* use-case. :meth:`~object.__format__` was " -"already :meth:`!int.__format__` for that same reason." +msgid ":meth:`~object.__str__` is now :meth:`!int.__str__` to better support the *replacement of existing constants* use-case. :meth:`~object.__format__` was already :meth:`!int.__format__` for that same reason." msgstr "" -#: ../../library/enum.rst:571 -msgid "" -"*StrEnum* is the same as :class:`Enum`, but its members are also strings and " -"can be used in most of the same places that a string can be used. The result " -"of any string operation performed on or with a *StrEnum* member is not part " -"of the enumeration." +msgid "*StrEnum* is the same as :class:`Enum`, but its members are also strings and can be used in most of the same places that a string can be used. The result of any string operation performed on or with a *StrEnum* member is not part of the enumeration." msgstr "" -#: ../../library/enum.rst:592 -msgid "" -"There are places in the stdlib that check for an exact :class:`str` instead " -"of a :class:`str` subclass (i.e. ``type(unknown) == str`` instead of " -"``isinstance(unknown, str)``), and in those locations you will need to use " -"``str(MyStrEnum.MY_MEMBER)``." +msgid "There are places in the stdlib that check for an exact :class:`str` instead of a :class:`str` subclass (i.e. ``type(unknown) == str`` instead of ``isinstance(unknown, str)``), and in those locations you will need to use ``str(MyStrEnum.MY_MEMBER)``." msgstr "" -#: ../../library/enum.rst:599 -msgid "" -"Using :class:`auto` with :class:`StrEnum` results in the lower-cased member " -"name as the value." +msgid "Using :class:`auto` with :class:`StrEnum` results in the lower-cased member name as the value." msgstr "" -#: ../../library/enum.rst:604 -msgid "" -":meth:`~object.__str__` is :meth:`!str.__str__` to better support the " -"*replacement of existing constants* use-case. :meth:`~object.__format__` is " -"likewise :meth:`!str.__format__` for that same reason." +msgid ":meth:`~object.__str__` is :meth:`!str.__str__` to better support the *replacement of existing constants* use-case. :meth:`~object.__format__` is likewise :meth:`!str.__format__` for that same reason." msgstr "" -#: ../../library/enum.rst:612 -msgid "" -"``Flag`` is the same as :class:`Enum`, but its members support the bitwise " -"operators ``&`` (*AND*), ``|`` (*OR*), ``^`` (*XOR*), and ``~`` (*INVERT*); " -"the results of those operations are (aliases of) members of the enumeration." +msgid "``Flag`` is the same as :class:`Enum`, but its members support the bitwise operators ``&`` (*AND*), ``|`` (*OR*), ``^`` (*XOR*), and ``~`` (*INVERT*); the results of those operations are (aliases of) members of the enumeration." msgstr "" -#: ../../library/enum.rst:618 msgid "Returns *True* if value is in self::" msgstr "" -#: ../../library/enum.rst:620 msgid "" ">>> from enum import Flag, auto\n" ">>> class Color(Flag):\n" @@ -958,11 +645,9 @@ msgid "" "False" msgstr "" -#: ../../library/enum.rst:639 msgid "Returns all contained non-alias members::" msgstr "" -#: ../../library/enum.rst:641 msgid "" ">>> list(Color.RED)\n" "[]\n" @@ -970,11 +655,9 @@ msgid "" "[, ]" msgstr "" -#: ../../library/enum.rst:650 msgid "Returns number of members in flag::" msgstr "" -#: ../../library/enum.rst:652 msgid "" ">>> len(Color.GREEN)\n" "1\n" @@ -982,11 +665,9 @@ msgid "" "3" msgstr "" -#: ../../library/enum.rst:661 msgid "Returns *True* if any members in flag, *False* otherwise::" msgstr "" -#: ../../library/enum.rst:663 msgid "" ">>> bool(Color.GREEN)\n" "True\n" @@ -997,21 +678,17 @@ msgid "" "False" msgstr "" -#: ../../library/enum.rst:673 msgid "Returns current flag binary or'ed with other::" msgstr "" -#: ../../library/enum.rst:675 msgid "" ">>> Color.RED | Color.GREEN\n" "" msgstr "" -#: ../../library/enum.rst:680 msgid "Returns current flag binary and'ed with other::" msgstr "" -#: ../../library/enum.rst:682 msgid "" ">>> purple & white\n" "\n" @@ -1019,11 +696,9 @@ msgid "" "" msgstr "" -#: ../../library/enum.rst:689 msgid "Returns current flag binary xor'ed with other::" msgstr "" -#: ../../library/enum.rst:691 msgid "" ">>> purple ^ white\n" "\n" @@ -1031,11 +706,9 @@ msgid "" "" msgstr "" -#: ../../library/enum.rst:698 msgid "Returns all the flags in *type(self)* that are not in *self*::" msgstr "" -#: ../../library/enum.rst:700 msgid "" ">>> ~white\n" "\n" @@ -1045,116 +718,70 @@ msgid "" "" msgstr "" -#: ../../library/enum.rst:709 -msgid "" -"Function used to format any remaining unnamed numeric values. Default is " -"the value's repr; common choices are :func:`hex` and :func:`oct`." +msgid "Function used to format any remaining unnamed numeric values. Default is the value's repr; common choices are :func:`hex` and :func:`oct`." msgstr "" -#: ../../library/enum.rst:714 -msgid "" -"Using :class:`auto` with :class:`Flag` results in integers that are powers " -"of two, starting with ``1``." +msgid "Using :class:`auto` with :class:`Flag` results in integers that are powers of two, starting with ``1``." msgstr "" -#: ../../library/enum.rst:717 msgid "The *repr()* of zero-valued flags has changed. It is now:" msgstr "" -#: ../../library/enum.rst:725 -msgid "" -"``IntFlag`` is the same as :class:`Flag`, but its members are also integers " -"and can be used anywhere that an integer can be used." +msgid "``IntFlag`` is the same as :class:`Flag`, but its members are also integers and can be used anywhere that an integer can be used." msgstr "" -#: ../../library/enum.rst:739 -msgid "" -"If any integer operation is performed with an *IntFlag* member, the result " -"is not an *IntFlag*::" +msgid "If any integer operation is performed with an *IntFlag* member, the result is not an *IntFlag*::" msgstr "" -#: ../../library/enum.rst:742 msgid "" ">>> Color.RED + 2\n" "3" msgstr "" -#: ../../library/enum.rst:745 msgid "If a :class:`Flag` operation is performed with an *IntFlag* member and:" msgstr "" -#: ../../library/enum.rst:747 msgid "the result is a valid *IntFlag*: an *IntFlag* is returned" msgstr "" -#: ../../library/enum.rst:748 -msgid "" -"the result is not a valid *IntFlag*: the result depends on " -"the :class:`FlagBoundary` setting" +msgid "the result is not a valid *IntFlag*: the result depends on the :class:`FlagBoundary` setting" msgstr "" -#: ../../library/enum.rst:750 msgid "The :func:`repr` of unnamed zero-valued flags has changed. It is now::" msgstr "" -#: ../../library/enum.rst:752 msgid "" ">>> Color(0)\n" "" msgstr "" -#: ../../library/enum.rst:757 -msgid "" -"Using :class:`auto` with :class:`IntFlag` results in integers that are " -"powers of two, starting with ``1``." +msgid "Using :class:`auto` with :class:`IntFlag` results in integers that are powers of two, starting with ``1``." msgstr "" -#: ../../library/enum.rst:762 -msgid "" -":meth:`~object.__str__` is now :meth:`!int.__str__` to better support the " -"*replacement of existing constants* use-case. :meth:`~object.__format__` " -"was already :meth:`!int.__format__` for that same reason." +msgid ":meth:`~object.__str__` is now :meth:`!int.__str__` to better support the *replacement of existing constants* use-case. :meth:`~object.__format__` was already :meth:`!int.__format__` for that same reason." msgstr "" -#: ../../library/enum.rst:766 -msgid "" -"Inversion of an :class:`!IntFlag` now returns a positive value that is the " -"union of all flags not in the given flag, rather than a negative value. This " -"matches the existing :class:`Flag` behavior." +msgid "Inversion of an :class:`!IntFlag` now returns a positive value that is the union of all flags not in the given flag, rather than a negative value. This matches the existing :class:`Flag` behavior." msgstr "" -#: ../../library/enum.rst:772 -msgid "" -":class:`!ReprEnum` uses the :meth:`repr() ` of :class:`Enum`, " -"but the :class:`str() ` of the mixed-in data type:" +msgid ":class:`!ReprEnum` uses the :meth:`repr() ` of :class:`Enum`, but the :class:`str() ` of the mixed-in data type:" msgstr "" -#: ../../library/enum.rst:775 msgid ":meth:`!int.__str__` for :class:`IntEnum` and :class:`IntFlag`" msgstr "" -#: ../../library/enum.rst:776 msgid ":meth:`!str.__str__` for :class:`StrEnum`" msgstr "" -#: ../../library/enum.rst:778 -msgid "" -"Inherit from :class:`!ReprEnum` to keep the :class:`str() " -"` / :func:`format` of the mixed-in data type instead of using " -"the :class:`Enum`-default :meth:`str() `." +msgid "Inherit from :class:`!ReprEnum` to keep the :class:`str() ` / :func:`format` of the mixed-in data type instead of using the :class:`Enum`-default :meth:`str() `." msgstr "" -#: ../../library/enum.rst:787 -msgid "" -"*EnumCheck* contains the options used by the :func:`verify` decorator to " -"ensure various constraints; failed constraints result in a :exc:`ValueError`." +msgid "*EnumCheck* contains the options used by the :func:`verify` decorator to ensure various constraints; failed constraints result in a :exc:`ValueError`." msgstr "" -#: ../../library/enum.rst:792 msgid "Ensure that each value has only one name::" msgstr "" -#: ../../library/enum.rst:794 msgid "" ">>> from enum import Enum, verify, UNIQUE\n" ">>> @verify(UNIQUE)\n" @@ -1168,13 +795,9 @@ msgid "" "ValueError: aliases found in : CRIMSON -> RED" msgstr "" -#: ../../library/enum.rst:808 -msgid "" -"Ensure that there are no missing values between the lowest-valued member and " -"the highest-valued member::" +msgid "Ensure that there are no missing values between the lowest-valued member and the highest-valued member::" msgstr "" -#: ../../library/enum.rst:811 msgid "" ">>> from enum import Enum, verify, CONTINUOUS\n" ">>> @verify(CONTINUOUS)\n" @@ -1187,13 +810,9 @@ msgid "" "ValueError: invalid enum 'Color': missing values 3, 4" msgstr "" -#: ../../library/enum.rst:823 -msgid "" -"Ensure that any flag groups/masks contain only named flags -- useful when " -"values are specified instead of being generated by :func:`auto`::" +msgid "Ensure that any flag groups/masks contain only named flags -- useful when values are specified instead of being generated by :func:`auto`::" msgstr "" -#: ../../library/enum.rst:826 msgid "" ">>> from enum import Flag, verify, NAMED_FLAGS\n" ">>> @verify(NAMED_FLAGS)\n" @@ -1205,28 +824,18 @@ msgid "" "... NEON = 31\n" "Traceback (most recent call last):\n" "...\n" -"ValueError: invalid Flag 'Color': aliases WHITE and NEON are missing " -"combined values of 0x18 [use enum.show_flag_values(value) for details]" +"ValueError: invalid Flag 'Color': aliases WHITE and NEON are missing combined values of 0x18 [use enum.show_flag_values(value) for details]" msgstr "" -#: ../../library/enum.rst:840 -msgid "" -"CONTINUOUS and NAMED_FLAGS are designed to work with integer-valued members." +msgid "CONTINUOUS and NAMED_FLAGS are designed to work with integer-valued members." msgstr "" -#: ../../library/enum.rst:846 -msgid "" -"``FlagBoundary`` controls how out-of-range values are handled " -"in :class:`Flag` and its subclasses." +msgid "``FlagBoundary`` controls how out-of-range values are handled in :class:`Flag` and its subclasses." msgstr "" -#: ../../library/enum.rst:851 -msgid "" -"Out-of-range values cause a :exc:`ValueError` to be raised. This is the " -"default for :class:`Flag`::" +msgid "Out-of-range values cause a :exc:`ValueError` to be raised. This is the default for :class:`Flag`::" msgstr "" -#: ../../library/enum.rst:854 msgid "" ">>> from enum import Flag, STRICT, auto\n" ">>> class StrictFlag(Flag, boundary=STRICT):\n" @@ -1242,13 +851,9 @@ msgid "" " allowed 0b0 00111" msgstr "" -#: ../../library/enum.rst:869 -msgid "" -"Out-of-range values have invalid values removed, leaving a " -"valid :class:`Flag` value::" +msgid "Out-of-range values have invalid values removed, leaving a valid :class:`Flag` value::" msgstr "" -#: ../../library/enum.rst:872 msgid "" ">>> from enum import Flag, CONFORM, auto\n" ">>> class ConformFlag(Flag, boundary=CONFORM):\n" @@ -1260,19 +865,12 @@ msgid "" "" msgstr "" -#: ../../library/enum.rst:883 -msgid "" -"Out-of-range values lose their :class:`Flag` membership and revert " -"to :class:`int`." +msgid "Out-of-range values lose their :class:`Flag` membership and revert to :class:`int`." msgstr "" -#: ../../library/enum.rst:896 -msgid "" -"Out-of-range values are kept, and the :class:`Flag` membership is kept. This " -"is the default for :class:`IntFlag`::" +msgid "Out-of-range values are kept, and the :class:`Flag` membership is kept. This is the default for :class:`IntFlag`::" msgstr "" -#: ../../library/enum.rst:899 msgid "" ">>> from enum import Flag, KEEP, auto\n" ">>> class KeepFlag(Flag, boundary=KEEP):\n" @@ -1284,198 +882,102 @@ msgid "" "" msgstr "" -#: ../../library/enum.rst:912 -msgid "" -"*EnumDict* is a subclass of :class:`dict` that is used as the namespace for " -"defining enum classes (see :ref:`prepare`). It is exposed to allow " -"subclasses of :class:`EnumType` with advanced behavior like having multiple " -"values per member. It should be called with the name of the enum class being " -"created, otherwise private names and internal classes will not be handled " -"correctly." +msgid "*EnumDict* is a subclass of :class:`dict` that is used as the namespace for defining enum classes (see :ref:`prepare`). It is exposed to allow subclasses of :class:`EnumType` with advanced behavior like having multiple values per member. It should be called with the name of the enum class being created, otherwise private names and internal classes will not be handled correctly." msgstr "" -#: ../../library/enum.rst:919 -msgid "" -"Note that only the :class:`~collections.abc.MutableMapping` interface " -"(:meth:`~object.__setitem__` and :meth:`~dict.update`) is overridden. It may " -"be possible to bypass the checks using other :class:`!dict` operations " -"like :meth:`|= `." +msgid "Note that only the :class:`~collections.abc.MutableMapping` interface (:meth:`~object.__setitem__` and :meth:`~dict.update`) is overridden. It may be possible to bypass the checks using other :class:`!dict` operations like :meth:`|= `." msgstr "" -#: ../../library/enum.rst:926 msgid "A list of member names." msgstr "" -#: ../../library/enum.rst:935 msgid "Supported ``__dunder__`` names" msgstr "" -#: ../../library/enum.rst:937 -msgid "" -":attr:`~EnumType.__members__` is a read-only ordered mapping of " -"``member_name``:``member`` items. It is only available on the class." +msgid ":attr:`~EnumType.__members__` is a read-only ordered mapping of ``member_name``:``member`` items. It is only available on the class." msgstr "" -#: ../../library/enum.rst:940 -msgid "" -":meth:`~Enum.__new__`, if specified, must create and return the enum " -"members; it is also a very good idea to set the " -"member's :attr:`~Enum._value_` appropriately. Once all the members are " -"created it is no longer used." +msgid ":meth:`~Enum.__new__`, if specified, must create and return the enum members; it is also a very good idea to set the member's :attr:`~Enum._value_` appropriately. Once all the members are created it is no longer used." msgstr "" -#: ../../library/enum.rst:946 msgid "Supported ``_sunder_`` names" msgstr "" -#: ../../library/enum.rst:948 msgid ":attr:`~Enum._name_` -- name of the member" msgstr "" -#: ../../library/enum.rst:949 msgid ":attr:`~Enum._value_` -- value of the member; can be set in ``__new__``" msgstr "" -#: ../../library/enum.rst:950 -msgid "" -":meth:`~Enum._missing_` -- a lookup function used when a value is not found; " -"may be overridden" +msgid ":meth:`~Enum._missing_` -- a lookup function used when a value is not found; may be overridden" msgstr "" -#: ../../library/enum.rst:952 -msgid "" -":attr:`~Enum._ignore_` -- a list of names, either as a :class:`list` or " -"a :class:`str`, that will not be transformed into members, and will be " -"removed from the final class" +msgid ":attr:`~Enum._ignore_` -- a list of names, either as a :class:`list` or a :class:`str`, that will not be transformed into members, and will be removed from the final class" msgstr "" -#: ../../library/enum.rst:955 -msgid "" -":attr:`~Enum._order_` -- no longer used, kept for backward compatibility " -"(class attribute, removed during class creation)" +msgid ":attr:`~Enum._order_` -- no longer used, kept for backward compatibility (class attribute, removed during class creation)" msgstr "" -#: ../../library/enum.rst:958 -msgid "" -":meth:`~Enum._generate_next_value_` -- used to get an appropriate value for " -"an enum member; may be overridden" +msgid ":meth:`~Enum._generate_next_value_` -- used to get an appropriate value for an enum member; may be overridden" msgstr "" -#: ../../library/enum.rst:961 -msgid "" -":meth:`~Enum._add_alias_` -- adds a new name as an alias to an existing " -"member." +msgid ":meth:`~Enum._add_alias_` -- adds a new name as an alias to an existing member." msgstr "" -#: ../../library/enum.rst:963 -msgid "" -":meth:`~Enum._add_value_alias_` -- adds a new value as an alias to an " -"existing member." +msgid ":meth:`~Enum._add_value_alias_` -- adds a new value as an alias to an existing member." msgstr "" -#: ../../library/enum.rst:966 -msgid "" -"While ``_sunder_`` names are generally reserved for the further development " -"of the :class:`Enum` class and can not be used, some are explicitly allowed:" +msgid "While ``_sunder_`` names are generally reserved for the further development of the :class:`Enum` class and can not be used, some are explicitly allowed:" msgstr "" -#: ../../library/enum.rst:969 -msgid "" -"``_repr_*`` (e.g. ``_repr_html_``), as used in `IPython's rich display`_" +msgid "``_repr_*`` (e.g. ``_repr_html_``), as used in `IPython's rich display`_" msgstr "" -#: ../../library/enum.rst:971 msgid "``_missing_``, ``_order_``, ``_generate_next_value_``" msgstr "" -#: ../../library/enum.rst:972 msgid "``_ignore_``" msgstr "" -#: ../../library/enum.rst:973 msgid "``_add_alias_``, ``_add_value_alias_``, ``_repr_*``" msgstr "" -#: ../../library/enum.rst:979 msgid "Utilities and decorators" msgstr "" -#: ../../library/enum.rst:983 -msgid "" -"*auto* can be used in place of a value. If used, the *Enum* machinery will " -"call an :class:`Enum`'s :meth:`~Enum._generate_next_value_` to get an " -"appropriate value. For :class:`Enum` and :class:`IntEnum` that appropriate " -"value will be the last value plus one; for :class:`Flag` " -"and :class:`IntFlag` it will be the first power-of-two greater than the " -"highest value; for :class:`StrEnum` it will be the lower-cased version of " -"the member's name. Care must be taken if mixing *auto()* with manually " -"specified values." +msgid "*auto* can be used in place of a value. If used, the *Enum* machinery will call an :class:`Enum`'s :meth:`~Enum._generate_next_value_` to get an appropriate value. For :class:`Enum` and :class:`IntEnum` that appropriate value will be the last value plus one; for :class:`Flag` and :class:`IntFlag` it will be the first power-of-two greater than the highest value; for :class:`StrEnum` it will be the lower-cased version of the member's name. Care must be taken if mixing *auto()* with manually specified values." msgstr "" -#: ../../library/enum.rst:991 -msgid "" -"*auto* instances are only resolved when at the top level of an assignment, " -"either by itself or as part of a tuple:" +msgid "*auto* instances are only resolved when at the top level of an assignment, either by itself or as part of a tuple:" msgstr "" -#: ../../library/enum.rst:994 msgid "``FIRST = auto()`` will work (auto() is replaced with ``1``);" msgstr "" -#: ../../library/enum.rst:995 -msgid "" -"``SECOND = auto(), -2`` will work (auto is replaced with ``2``, so ``2, -2`` " -"is used to create the ``SECOND`` enum member;" +msgid "``SECOND = auto(), -2`` will work (auto is replaced with ``2``, so ``2, -2`` is used to create the ``SECOND`` enum member;" msgstr "" -#: ../../library/enum.rst:997 -msgid "" -"``THREE = [auto(), -3]`` will *not* work (``[, -3]`` is used " -"to create the ``THREE`` enum member)" +msgid "``THREE = [auto(), -3]`` will *not* work (``[, -3]`` is used to create the ``THREE`` enum member)" msgstr "" -#: ../../library/enum.rst:1002 -msgid "" -"In prior versions, ``auto()`` had to be the only thing on the assignment " -"line to work properly." +msgid "In prior versions, ``auto()`` had to be the only thing on the assignment line to work properly." msgstr "" -#: ../../library/enum.rst:1005 -msgid "" -"``_generate_next_value_`` can be overridden to customize the values used by " -"*auto*." +msgid "``_generate_next_value_`` can be overridden to customize the values used by *auto*." msgstr "" -#: ../../library/enum.rst:1008 -msgid "" -"in 3.13 the default ``_generate_next_value_`` will always return the highest " -"member value incremented by 1, and will fail if any member is an " -"incompatible type." +msgid "in 3.13 the default ``_generate_next_value_`` will always return the highest member value incremented by 1, and will fail if any member is an incompatible type." msgstr "" -#: ../../library/enum.rst:1014 -msgid "" -"A decorator similar to the built-in :deco:`property`, but specifically for " -"enumerations. It allows member attributes to have the same names as members " -"themselves." +msgid "A decorator similar to the built-in :deco:`property`, but specifically for enumerations. It allows member attributes to have the same names as members themselves." msgstr "" -#: ../../library/enum.rst:1018 -msgid "" -"the *property* and the member must be defined in separate classes; for " -"example, the *value* and *name* attributes are defined in the *Enum* class, " -"and *Enum* subclasses can define members with the names ``value`` and " -"``name``." +msgid "the *property* and the member must be defined in separate classes; for example, the *value* and *name* attributes are defined in the *Enum* class, and *Enum* subclasses can define members with the names ``value`` and ``name``." msgstr "" -#: ../../library/enum.rst:1027 -msgid "" -"A :keyword:`class` decorator specifically for enumerations. It searches an " -"enumeration's :attr:`~EnumType.__members__`, gathering any aliases it finds; " -"if any are found :exc:`ValueError` is raised with the details::" +msgid "A :keyword:`class` decorator specifically for enumerations. It searches an enumeration's :attr:`~EnumType.__members__`, gathering any aliases it finds; if any are found :exc:`ValueError` is raised with the details::" msgstr "" -#: ../../library/enum.rst:1031 msgid "" ">>> from enum import Enum, unique\n" ">>> @unique\n" @@ -1490,75 +992,48 @@ msgid "" "ValueError: duplicate values found in : FOUR -> THREE" msgstr "" -#: ../../library/enum.rst:1045 -msgid "" -"A :keyword:`class` decorator specifically for enumerations. Members " -"from :class:`EnumCheck` are used to specify which constraints should be " -"checked on the decorated enumeration." +msgid "A :keyword:`class` decorator specifically for enumerations. Members from :class:`EnumCheck` are used to specify which constraints should be checked on the decorated enumeration." msgstr "" -#: ../../library/enum.rst:1053 msgid "A decorator for use in enums: its target will become a member." msgstr "" -#: ../../library/enum.rst:1059 msgid "A decorator for use in enums: its target will not become a member." msgstr "" -#: ../../library/enum.rst:1065 -msgid "" -"A decorator to change the :class:`str() ` and :func:`repr` of an enum " -"to show its members as belonging to the module instead of its class. Should " -"only be used when the enum members are exported to the module global " -"namespace (see :class:`re.RegexFlag` for an example)." +msgid "A decorator to change the :class:`str() ` and :func:`repr` of an enum to show its members as belonging to the module instead of its class. Should only be used when the enum members are exported to the module global namespace (see :class:`re.RegexFlag` for an example)." msgstr "" -#: ../../library/enum.rst:1075 msgid "Return a list of all power-of-two integers contained in a flag *value*." msgstr "" -#: ../../library/enum.rst:1096 msgid "Notes" msgstr "" -#: ../../library/enum.rst:1098 msgid ":class:`IntEnum`, :class:`StrEnum`, and :class:`IntFlag`" msgstr "" -#: ../../library/enum.rst:1100 -msgid "" -"These three enum types are designed to be drop-in replacements for existing " -"integer- and string-based values; as such, they have extra limitations:" +msgid "These three enum types are designed to be drop-in replacements for existing integer- and string-based values; as such, they have extra limitations:" msgstr "" -#: ../../library/enum.rst:1103 msgid "``__str__`` uses the value and not the name of the enum member" msgstr "" -#: ../../library/enum.rst:1105 -msgid "" -"``__format__``, because it uses ``__str__``, will also use the value of the " -"enum member instead of its name" +msgid "``__format__``, because it uses ``__str__``, will also use the value of the enum member instead of its name" msgstr "" -#: ../../library/enum.rst:1108 -msgid "" -"If you do not need/want those limitations, you can either create your own " -"base class by mixing in the ``int`` or ``str`` type yourself::" +msgid "If you do not need/want those limitations, you can either create your own base class by mixing in the ``int`` or ``str`` type yourself::" msgstr "" -#: ../../library/enum.rst:1111 msgid "" ">>> from enum import Enum\n" ">>> class MyIntEnum(int, Enum):\n" "... pass" msgstr "" -#: ../../library/enum.rst:1115 msgid "or you can reassign the appropriate :meth:`str`, etc., in your enum::" msgstr "" -#: ../../library/enum.rst:1117 msgid "" ">>> from enum import Enum, IntEnum\n" ">>> class MyIntEnum(IntEnum):\n" diff --git a/library/errno.po b/library/errno.po index 47441e6c..3ff7c71e 100644 --- a/library/errno.po +++ b/library/errno.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:05+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,695 +21,485 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/errno.rst:2 msgid ":mod:`!errno` --- Standard errno system symbols" msgstr "" -#: ../../library/errno.rst:9 -msgid "" -"This module makes available standard ``errno`` system symbols. The value of " -"each symbol is the corresponding integer value. The names and descriptions " -"are borrowed from :file:`linux/include/errno.h`, which should be all-" -"inclusive." +msgid "This module makes available standard ``errno`` system symbols. The value of each symbol is the corresponding integer value. The names and descriptions are borrowed from :file:`linux/include/errno.h`, which should be all-inclusive." msgstr "" -#: ../../library/errno.rst:17 -msgid "" -"Dictionary providing a mapping from the errno value to the string name in " -"the underlying system. For instance, ``errno.errorcode[errno.EPERM]`` maps " -"to ``'EPERM'``." +msgid "Dictionary providing a mapping from the errno value to the string name in the underlying system. For instance, ``errno.errorcode[errno.EPERM]`` maps to ``'EPERM'``." msgstr "" -#: ../../library/errno.rst:21 -msgid "" -"To translate a numeric error code to an error message, " -"use :func:`os.strerror`." +msgid "To translate a numeric error code to an error message, use :func:`os.strerror`." msgstr "" -#: ../../library/errno.rst:23 -msgid "" -"Of the following list, symbols that are not used on the current platform are " -"not defined by the module. The specific list of defined symbols is " -"available as ``errno.errorcode.keys()``. Symbols available can include:" +msgid "Of the following list, symbols that are not used on the current platform are not defined by the module. The specific list of defined symbols is available as ``errno.errorcode.keys()``. Symbols available can include:" msgstr "" -#: ../../library/errno.rst:30 -msgid "" -"Operation not permitted. This error is mapped to the " -"exception :exc:`PermissionError`." +msgid "Operation not permitted. This error is mapped to the exception :exc:`PermissionError`." msgstr "" -#: ../../library/errno.rst:36 -msgid "" -"No such file or directory. This error is mapped to the " -"exception :exc:`FileNotFoundError`." +msgid "No such file or directory. This error is mapped to the exception :exc:`FileNotFoundError`." msgstr "" -#: ../../library/errno.rst:42 -msgid "" -"No such process. This error is mapped to the " -"exception :exc:`ProcessLookupError`." +msgid "No such process. This error is mapped to the exception :exc:`ProcessLookupError`." msgstr "" -#: ../../library/errno.rst:48 -msgid "" -"Interrupted system call. This error is mapped to the " -"exception :exc:`InterruptedError`." +msgid "Interrupted system call. This error is mapped to the exception :exc:`InterruptedError`." msgstr "" -#: ../../library/errno.rst:54 msgid "I/O error" msgstr "" -#: ../../library/errno.rst:59 msgid "No such device or address" msgstr "" -#: ../../library/errno.rst:64 msgid "Arg list too long" msgstr "" -#: ../../library/errno.rst:69 msgid "Exec format error" msgstr "" -#: ../../library/errno.rst:74 msgid "Bad file number" msgstr "" -#: ../../library/errno.rst:79 -msgid "" -"No child processes. This error is mapped to the " -"exception :exc:`ChildProcessError`." +msgid "No child processes. This error is mapped to the exception :exc:`ChildProcessError`." msgstr "" -#: ../../library/errno.rst:85 -msgid "" -"Try again. This error is mapped to the exception :exc:`BlockingIOError`." +msgid "Try again. This error is mapped to the exception :exc:`BlockingIOError`." msgstr "" -#: ../../library/errno.rst:90 msgid "Out of memory" msgstr "" -#: ../../library/errno.rst:95 -msgid "" -"Permission denied. This error is mapped to the " -"exception :exc:`PermissionError`." +msgid "Permission denied. This error is mapped to the exception :exc:`PermissionError`." msgstr "" -#: ../../library/errno.rst:101 msgid "Bad address" msgstr "" -#: ../../library/errno.rst:106 msgid "Block device required" msgstr "" -#: ../../library/errno.rst:111 msgid "Device or resource busy" msgstr "" -#: ../../library/errno.rst:116 -msgid "" -"File exists. This error is mapped to the exception :exc:`FileExistsError`." +msgid "File exists. This error is mapped to the exception :exc:`FileExistsError`." msgstr "" -#: ../../library/errno.rst:122 msgid "Cross-device link" msgstr "" -#: ../../library/errno.rst:127 msgid "No such device" msgstr "" -#: ../../library/errno.rst:132 -msgid "" -"Not a directory. This error is mapped to the " -"exception :exc:`NotADirectoryError`." +msgid "Not a directory. This error is mapped to the exception :exc:`NotADirectoryError`." msgstr "" -#: ../../library/errno.rst:138 -msgid "" -"Is a directory. This error is mapped to the " -"exception :exc:`IsADirectoryError`." +msgid "Is a directory. This error is mapped to the exception :exc:`IsADirectoryError`." msgstr "" -#: ../../library/errno.rst:144 msgid "Invalid argument" msgstr "" -#: ../../library/errno.rst:149 msgid "File table overflow" msgstr "" -#: ../../library/errno.rst:154 msgid "Too many open files" msgstr "" -#: ../../library/errno.rst:159 msgid "Not a typewriter" msgstr "" -#: ../../library/errno.rst:164 msgid "Text file busy" msgstr "" -#: ../../library/errno.rst:169 msgid "File too large" msgstr "" -#: ../../library/errno.rst:174 msgid "No space left on device" msgstr "" -#: ../../library/errno.rst:179 msgid "Illegal seek" msgstr "" -#: ../../library/errno.rst:184 msgid "Read-only file system" msgstr "" -#: ../../library/errno.rst:189 msgid "Too many links" msgstr "" -#: ../../library/errno.rst:194 -msgid "" -"Broken pipe. This error is mapped to the exception :exc:`BrokenPipeError`." +msgid "Broken pipe. This error is mapped to the exception :exc:`BrokenPipeError`." msgstr "" -#: ../../library/errno.rst:200 msgid "Math argument out of domain of func" msgstr "" -#: ../../library/errno.rst:205 msgid "Math result not representable" msgstr "" -#: ../../library/errno.rst:210 msgid "Resource deadlock would occur" msgstr "" -#: ../../library/errno.rst:215 msgid "File name too long" msgstr "" -#: ../../library/errno.rst:220 msgid "No record locks available" msgstr "" -#: ../../library/errno.rst:225 msgid "Function not implemented" msgstr "" -#: ../../library/errno.rst:230 msgid "Directory not empty" msgstr "" -#: ../../library/errno.rst:235 msgid "Too many symbolic links encountered" msgstr "" -#: ../../library/errno.rst:240 -msgid "" -"Operation would block. This error is mapped to the " -"exception :exc:`BlockingIOError`." +msgid "Operation would block. This error is mapped to the exception :exc:`BlockingIOError`." msgstr "" -#: ../../library/errno.rst:246 msgid "No message of desired type" msgstr "" -#: ../../library/errno.rst:251 msgid "Identifier removed" msgstr "" -#: ../../library/errno.rst:256 msgid "Channel number out of range" msgstr "" -#: ../../library/errno.rst:261 msgid "Level 2 not synchronized" msgstr "" -#: ../../library/errno.rst:266 msgid "Level 3 halted" msgstr "" -#: ../../library/errno.rst:271 msgid "Level 3 reset" msgstr "" -#: ../../library/errno.rst:276 msgid "Link number out of range" msgstr "" -#: ../../library/errno.rst:281 msgid "Protocol driver not attached" msgstr "" -#: ../../library/errno.rst:286 msgid "No CSI structure available" msgstr "" -#: ../../library/errno.rst:291 msgid "Level 2 halted" msgstr "" -#: ../../library/errno.rst:296 msgid "Invalid exchange" msgstr "" -#: ../../library/errno.rst:301 msgid "Invalid request descriptor" msgstr "" -#: ../../library/errno.rst:306 msgid "Exchange full" msgstr "" -#: ../../library/errno.rst:311 msgid "No anode" msgstr "" -#: ../../library/errno.rst:316 msgid "Invalid request code" msgstr "" -#: ../../library/errno.rst:321 msgid "Invalid slot" msgstr "" -#: ../../library/errno.rst:326 msgid "File locking deadlock error" msgstr "" -#: ../../library/errno.rst:331 msgid "Bad font file format" msgstr "" -#: ../../library/errno.rst:336 msgid "Device not a stream" msgstr "" -#: ../../library/errno.rst:341 msgid "No data available" msgstr "" -#: ../../library/errno.rst:346 msgid "Timer expired" msgstr "" -#: ../../library/errno.rst:351 msgid "Out of streams resources" msgstr "" -#: ../../library/errno.rst:356 msgid "Machine is not on the network" msgstr "" -#: ../../library/errno.rst:361 msgid "Package not installed" msgstr "" -#: ../../library/errno.rst:366 msgid "Object is remote" msgstr "" -#: ../../library/errno.rst:371 msgid "Link has been severed" msgstr "" -#: ../../library/errno.rst:376 msgid "Advertise error" msgstr "" -#: ../../library/errno.rst:381 msgid "Srmount error" msgstr "" -#: ../../library/errno.rst:386 msgid "Communication error on send" msgstr "" -#: ../../library/errno.rst:391 msgid "Protocol error" msgstr "" -#: ../../library/errno.rst:396 msgid "Multihop attempted" msgstr "" -#: ../../library/errno.rst:401 msgid "RFS specific error" msgstr "" -#: ../../library/errno.rst:406 msgid "Not a data message" msgstr "" -#: ../../library/errno.rst:411 msgid "Value too large for defined data type" msgstr "" -#: ../../library/errno.rst:416 msgid "Name not unique on network" msgstr "" -#: ../../library/errno.rst:421 msgid "File descriptor in bad state" msgstr "" -#: ../../library/errno.rst:426 msgid "Remote address changed" msgstr "" -#: ../../library/errno.rst:431 msgid "Can not access a needed shared library" msgstr "" -#: ../../library/errno.rst:436 msgid "Accessing a corrupted shared library" msgstr "" -#: ../../library/errno.rst:441 msgid ".lib section in a.out corrupted" msgstr "" -#: ../../library/errno.rst:446 msgid "Attempting to link in too many shared libraries" msgstr "" -#: ../../library/errno.rst:451 msgid "Cannot exec a shared library directly" msgstr "" -#: ../../library/errno.rst:456 msgid "Illegal byte sequence" msgstr "" -#: ../../library/errno.rst:461 msgid "Interrupted system call should be restarted" msgstr "" -#: ../../library/errno.rst:466 msgid "Streams pipe error" msgstr "" -#: ../../library/errno.rst:471 msgid "Too many users" msgstr "" -#: ../../library/errno.rst:476 msgid "Socket operation on non-socket" msgstr "" -#: ../../library/errno.rst:481 msgid "Destination address required" msgstr "" -#: ../../library/errno.rst:486 msgid "Message too long" msgstr "" -#: ../../library/errno.rst:491 msgid "Protocol wrong type for socket" msgstr "" -#: ../../library/errno.rst:496 msgid "Protocol not available" msgstr "" -#: ../../library/errno.rst:501 msgid "Protocol not supported" msgstr "" -#: ../../library/errno.rst:506 msgid "Socket type not supported" msgstr "" -#: ../../library/errno.rst:511 msgid "Operation not supported on transport endpoint" msgstr "" -#: ../../library/errno.rst:516 msgid "Operation not supported" msgstr "" -#: ../../library/errno.rst:523 msgid "Protocol family not supported" msgstr "" -#: ../../library/errno.rst:528 msgid "Address family not supported by protocol" msgstr "" -#: ../../library/errno.rst:533 msgid "Address already in use" msgstr "" -#: ../../library/errno.rst:538 msgid "Cannot assign requested address" msgstr "" -#: ../../library/errno.rst:543 msgid "Network is down" msgstr "" -#: ../../library/errno.rst:548 msgid "Network is unreachable" msgstr "" -#: ../../library/errno.rst:553 msgid "Network dropped connection because of reset" msgstr "" -#: ../../library/errno.rst:558 -msgid "" -"Software caused connection abort. This error is mapped to the " -"exception :exc:`ConnectionAbortedError`." +msgid "Software caused connection abort. This error is mapped to the exception :exc:`ConnectionAbortedError`." msgstr "" -#: ../../library/errno.rst:564 -msgid "" -"Connection reset by peer. This error is mapped to the " -"exception :exc:`ConnectionResetError`." +msgid "Connection reset by peer. This error is mapped to the exception :exc:`ConnectionResetError`." msgstr "" -#: ../../library/errno.rst:570 msgid "No buffer space available" msgstr "" -#: ../../library/errno.rst:575 msgid "Transport endpoint is already connected" msgstr "" -#: ../../library/errno.rst:580 msgid "Transport endpoint is not connected" msgstr "" -#: ../../library/errno.rst:585 -msgid "" -"Cannot send after transport endpoint shutdown. This error is mapped to the " -"exception :exc:`BrokenPipeError`." +msgid "Cannot send after transport endpoint shutdown. This error is mapped to the exception :exc:`BrokenPipeError`." msgstr "" -#: ../../library/errno.rst:591 msgid "Too many references: cannot splice" msgstr "" -#: ../../library/errno.rst:596 -msgid "" -"Connection timed out. This error is mapped to the " -"exception :exc:`TimeoutError`." +msgid "Connection timed out. This error is mapped to the exception :exc:`TimeoutError`." msgstr "" -#: ../../library/errno.rst:602 -msgid "" -"Connection refused. This error is mapped to the " -"exception :exc:`ConnectionRefusedError`." +msgid "Connection refused. This error is mapped to the exception :exc:`ConnectionRefusedError`." msgstr "" -#: ../../library/errno.rst:608 msgid "Host is down" msgstr "" -#: ../../library/errno.rst:613 msgid "No route to host" msgstr "" -#: ../../library/errno.rst:618 msgid "Memory page has hardware error." msgstr "" -#: ../../library/errno.rst:625 -msgid "" -"Operation already in progress. This error is mapped to the " -"exception :exc:`BlockingIOError`." +msgid "Operation already in progress. This error is mapped to the exception :exc:`BlockingIOError`." msgstr "" -#: ../../library/errno.rst:631 -msgid "" -"Operation now in progress. This error is mapped to the " -"exception :exc:`BlockingIOError`." +msgid "Operation now in progress. This error is mapped to the exception :exc:`BlockingIOError`." msgstr "" -#: ../../library/errno.rst:637 msgid "Stale NFS file handle" msgstr "" -#: ../../library/errno.rst:642 msgid "Structure needs cleaning" msgstr "" -#: ../../library/errno.rst:647 msgid "Not a XENIX named type file" msgstr "" -#: ../../library/errno.rst:652 msgid "No XENIX semaphores available" msgstr "" -#: ../../library/errno.rst:657 msgid "Is a named type file" msgstr "" -#: ../../library/errno.rst:662 msgid "Remote I/O error" msgstr "" -#: ../../library/errno.rst:667 msgid "Quota exceeded" msgstr "" -#: ../../library/errno.rst:671 msgid "Interface output queue is full" msgstr "" -#: ../../library/errno.rst:678 msgid "No medium found" msgstr "" -#: ../../library/errno.rst:683 msgid "Wrong medium type" msgstr "" -#: ../../library/errno.rst:688 msgid "Required key not available" msgstr "" -#: ../../library/errno.rst:693 msgid "Key has expired" msgstr "" -#: ../../library/errno.rst:698 msgid "Key has been revoked" msgstr "" -#: ../../library/errno.rst:703 msgid "Key was rejected by service" msgstr "" -#: ../../library/errno.rst:708 msgid "Operation not possible due to RF-kill" msgstr "" -#: ../../library/errno.rst:713 msgid "Locked lock was unmapped" msgstr "" -#: ../../library/errno.rst:718 msgid "Facility is not active" msgstr "" -#: ../../library/errno.rst:723 msgid "Authentication error" msgstr "" -#: ../../library/errno.rst:730 msgid "Bad CPU type in executable" msgstr "" -#: ../../library/errno.rst:737 msgid "Bad executable (or shared library)" msgstr "" -#: ../../library/errno.rst:744 msgid "Malformed Mach-o file" msgstr "" -#: ../../library/errno.rst:751 msgid "Device error" msgstr "" -#: ../../library/errno.rst:758 msgid "Inappropriate file type or format" msgstr "" -#: ../../library/errno.rst:765 msgid "Need authenticator" msgstr "" -#: ../../library/errno.rst:772 msgid "Attribute not found" msgstr "" -#: ../../library/errno.rst:779 msgid "Policy not found" msgstr "" -#: ../../library/errno.rst:786 msgid "Too many processes" msgstr "" -#: ../../library/errno.rst:793 msgid "Bad procedure for program" msgstr "" -#: ../../library/errno.rst:800 msgid "Program version wrong" msgstr "" -#: ../../library/errno.rst:807 msgid "RPC prog. not avail" msgstr "" -#: ../../library/errno.rst:814 msgid "Device power is off" msgstr "" -#: ../../library/errno.rst:821 msgid "RPC struct is bad" msgstr "" -#: ../../library/errno.rst:828 msgid "RPC version wrong" msgstr "" -#: ../../library/errno.rst:835 msgid "Shared library version mismatch" msgstr "" -#: ../../library/errno.rst:842 -msgid "" -"Capabilities insufficient. This error is mapped to the " -"exception :exc:`PermissionError`." +msgid "Capabilities insufficient. This error is mapped to the exception :exc:`PermissionError`." msgstr "" -#: ../../library/errno.rst:845 msgid "Availability" msgstr "" -#: ../../library/errno.rst:852 msgid "Operation canceled" msgstr "" -#: ../../library/errno.rst:859 msgid "Owner died" msgstr "" -#: ../../library/errno.rst:866 msgid "State not recoverable" msgstr "" diff --git a/library/exceptions.po b/library/exceptions.po index 58ab30e3..09ae5339 100644 --- a/library/exceptions.po +++ b/library/exceptions.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 07:47+0330\n" "PO-Revision-Date: 2021-06-28 01:05+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -22,169 +22,69 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/exceptions.rst:4 msgid "Built-in Exceptions" msgstr "" -#: ../../library/exceptions.rst:10 -msgid "" -"In Python, all exceptions must be instances of a class that derives " -"from :class:`BaseException`. In a :keyword:`try` statement with " -"an :keyword:`except` clause that mentions a particular class, that clause " -"also handles any exception classes derived from that class (but not " -"exception classes from which *it* is derived). Two exception classes that " -"are not related via subclassing are never equivalent, even if they have the " -"same name." +msgid "In Python, all exceptions must be instances of a class that derives from :class:`BaseException`. In a :keyword:`try` statement with an :keyword:`except` clause that mentions a particular class, that clause also handles any exception classes derived from that class (but not exception classes from which *it* is derived). Two exception classes that are not related via subclassing are never equivalent, even if they have the same name." msgstr "" -#: ../../library/exceptions.rst:19 -msgid "" -"The built-in exceptions listed in this chapter can be generated by the " -"interpreter or built-in functions. Except where mentioned, they have an " -"\"associated value\" indicating the detailed cause of the error. This may " -"be a string or a tuple of several items of information (e.g., an error code " -"and a string explaining the code). The associated value is usually passed " -"as arguments to the exception class's constructor." +msgid "The built-in exceptions listed in this chapter can be generated by the interpreter or built-in functions. Except where mentioned, they have an \"associated value\" indicating the detailed cause of the error. This may be a string or a tuple of several items of information (e.g., an error code and a string explaining the code). The associated value is usually passed as arguments to the exception class's constructor." msgstr "" -#: ../../library/exceptions.rst:26 -msgid "" -"User code can raise built-in exceptions. This can be used to test an " -"exception handler or to report an error condition \"just like\" the " -"situation in which the interpreter raises the same exception; but beware " -"that there is nothing to prevent user code from raising an inappropriate " -"error." +msgid "User code can raise built-in exceptions. This can be used to test an exception handler or to report an error condition \"just like\" the situation in which the interpreter raises the same exception; but beware that there is nothing to prevent user code from raising an inappropriate error." msgstr "" -#: ../../library/exceptions.rst:31 -msgid "" -"The built-in exception classes can be subclassed to define new exceptions; " -"programmers are encouraged to derive new exceptions from " -"the :exc:`Exception` class or one of its subclasses, and not " -"from :exc:`BaseException`. More information on defining exceptions is " -"available in the Python Tutorial under :ref:`tut-userexceptions`." +msgid "The built-in exception classes can be subclassed to define new exceptions; programmers are encouraged to derive new exceptions from the :exc:`Exception` class or one of its subclasses, and not from :exc:`BaseException`. More information on defining exceptions is available in the Python Tutorial under :ref:`tut-userexceptions`." msgstr "" -#: ../../library/exceptions.rst:39 msgid "Exception context" msgstr "" -#: ../../library/exceptions.rst:46 -msgid "" -"Three attributes on exception objects provide information about the context " -"in which the exception was raised:" +msgid "Three attributes on exception objects provide information about the context in which the exception was raised:" msgstr "" -#: ../../library/exceptions.rst:53 -msgid "" -"When raising a new exception while another exception is already being " -"handled, the new exception's :attr:`!__context__` attribute is automatically " -"set to the handled exception. An exception may be handled when " -"an :keyword:`except` or :keyword:`finally` clause, or a :keyword:`with` " -"statement, is used." +msgid "When raising a new exception while another exception is already being handled, the new exception's :attr:`!__context__` attribute is automatically set to the handled exception. An exception may be handled when an :keyword:`except` or :keyword:`finally` clause, or a :keyword:`with` statement, is used." msgstr "" -#: ../../library/exceptions.rst:59 -msgid "" -"This implicit exception context can be supplemented with an explicit cause " -"by using :keyword:`!from` with :keyword:`raise`::" +msgid "This implicit exception context can be supplemented with an explicit cause by using :keyword:`!from` with :keyword:`raise`::" msgstr "" -#: ../../library/exceptions.rst:63 msgid "raise new_exc from original_exc" msgstr "" -#: ../../library/exceptions.rst:65 -msgid "" -"The expression following :keyword:`from` must be an exception or " -"``None``. It will be set as :attr:`!__cause__` on the raised exception. " -"Setting :attr:`!__cause__` also implicitly sets the :attr:`!" -"__suppress_context__` attribute to ``True``, so that using ``raise new_exc " -"from None`` effectively replaces the old exception with the new one for " -"display purposes (e.g. converting :exc:`KeyError` to :exc:`AttributeError`), " -"while leaving the old exception available in :attr:`!__context__` for " -"introspection when debugging." +msgid "The expression following :keyword:`from` must be an exception or ``None``. It will be set as :attr:`!__cause__` on the raised exception. Setting :attr:`!__cause__` also implicitly sets the :attr:`!__suppress_context__` attribute to ``True``, so that using ``raise new_exc from None`` effectively replaces the old exception with the new one for display purposes (e.g. converting :exc:`KeyError` to :exc:`AttributeError`), while leaving the old exception available in :attr:`!__context__` for introspection when debugging." msgstr "" -#: ../../library/exceptions.rst:74 -msgid "" -"The default traceback display code shows these chained exceptions in " -"addition to the traceback for the exception itself. An explicitly chained " -"exception in :attr:`!__cause__` is always shown when present. An implicitly " -"chained exception in :attr:`!__context__` is shown only if :attr:`!" -"__cause__` is :const:`None` and :attr:`!__suppress_context__` is false." +msgid "The default traceback display code shows these chained exceptions in addition to the traceback for the exception itself. An explicitly chained exception in :attr:`!__cause__` is always shown when present. An implicitly chained exception in :attr:`!__context__` is shown only if :attr:`!__cause__` is :const:`None` and :attr:`!__suppress_context__` is false." msgstr "" -#: ../../library/exceptions.rst:80 -msgid "" -"In either case, the exception itself is always shown after any chained " -"exceptions so that the final line of the traceback always shows the last " -"exception that was raised." +msgid "In either case, the exception itself is always shown after any chained exceptions so that the final line of the traceback always shows the last exception that was raised." msgstr "" -#: ../../library/exceptions.rst:86 msgid "Inheriting from built-in exceptions" msgstr "" -#: ../../library/exceptions.rst:88 -msgid "" -"User code can create subclasses that inherit from an exception type. It's " -"recommended to only subclass one exception type at a time to avoid any " -"possible conflicts between how the bases handle the ``args`` attribute, as " -"well as due to possible memory layout incompatibilities." +msgid "User code can create subclasses that inherit from an exception type. It's recommended to only subclass one exception type at a time to avoid any possible conflicts between how the bases handle the ``args`` attribute, as well as due to possible memory layout incompatibilities." msgstr "" -#: ../../library/exceptions.rst:95 -msgid "" -"Most built-in exceptions are implemented in C for efficiency, " -"see: :source:`Objects/exceptions.c`. Some have custom memory layouts which " -"makes it impossible to create a subclass that inherits from multiple " -"exception types. The memory layout of a type is an implementation detail and " -"might change between Python versions, leading to new conflicts in the " -"future. Therefore, it's recommended to avoid subclassing multiple exception " -"types altogether." +msgid "Most built-in exceptions are implemented in C for efficiency, see: :source:`Objects/exceptions.c`. Some have custom memory layouts which makes it impossible to create a subclass that inherits from multiple exception types. The memory layout of a type is an implementation detail and might change between Python versions, leading to new conflicts in the future. Therefore, it's recommended to avoid subclassing multiple exception types altogether." msgstr "" -#: ../../library/exceptions.rst:105 msgid "Base classes" msgstr "" -#: ../../library/exceptions.rst:107 -msgid "" -"The following exceptions are used mostly as base classes for other " -"exceptions." +msgid "The following exceptions are used mostly as base classes for other exceptions." msgstr "" -#: ../../library/exceptions.rst:111 -msgid "" -"The base class for all built-in exceptions. It is not meant to be directly " -"inherited by user-defined classes (for that, use :exc:`Exception`). " -"If :func:`str` is called on an instance of this class, the representation of " -"the argument(s) to the instance are returned, or the empty string when there " -"were no arguments." +msgid "The base class for all built-in exceptions. It is not meant to be directly inherited by user-defined classes (for that, use :exc:`Exception`). If :func:`str` is called on an instance of this class, the representation of the argument(s) to the instance are returned, or the empty string when there were no arguments." msgstr "" -#: ../../library/exceptions.rst:119 -msgid "" -"The tuple of arguments given to the exception constructor. Some built-in " -"exceptions (like :exc:`OSError`) expect a certain number of arguments and " -"assign a special meaning to the elements of this tuple, while others are " -"usually called only with a single string giving an error message." +msgid "The tuple of arguments given to the exception constructor. Some built-in exceptions (like :exc:`OSError`) expect a certain number of arguments and assign a special meaning to the elements of this tuple, while others are usually called only with a single string giving an error message." msgstr "" -#: ../../library/exceptions.rst:126 -msgid "" -"This method sets *tb* as the new traceback for the exception and returns the " -"exception object. It was more commonly used before the exception chaining " -"features of :pep:`3134` became available. The following example shows how " -"we can convert an instance of ``SomeException`` into an instance of " -"``OtherException`` while preserving the traceback. Once raised, the current " -"frame is pushed onto the traceback of the ``OtherException``, as would have " -"happened to the traceback of the original ``SomeException`` had we allowed " -"it to propagate to the caller. ::" +msgid "This method sets *tb* as the new traceback for the exception and returns the exception object. It was more commonly used before the exception chaining features of :pep:`3134` became available. The following example shows how we can convert an instance of ``SomeException`` into an instance of ``OtherException`` while preserving the traceback. Once raised, the current frame is pushed onto the traceback of the ``OtherException``, as would have happened to the traceback of the original ``SomeException`` had we allowed it to propagate to the caller. ::" msgstr "" -#: ../../library/exceptions.rst:135 msgid "" "try:\n" " ...\n" @@ -193,1027 +93,495 @@ msgid "" " raise OtherException(...).with_traceback(tb)" msgstr "" -#: ../../library/exceptions.rst:143 -msgid "" -"A writable field that holds the :ref:`traceback object ` " -"associated with this exception. See also: :ref:`raise`." +msgid "A writable field that holds the :ref:`traceback object ` associated with this exception. See also: :ref:`raise`." msgstr "" -#: ../../library/exceptions.rst:149 -msgid "" -"Add the string ``note`` to the exception's notes which appear in the " -"standard traceback after the exception string. A :exc:`TypeError` is raised " -"if ``note`` is not a string." +msgid "Add the string ``note`` to the exception's notes which appear in the standard traceback after the exception string. A :exc:`TypeError` is raised if ``note`` is not a string." msgstr "" -#: ../../library/exceptions.rst:157 -msgid "" -"A list of the notes of this exception, which were added " -"with :meth:`add_note`. This attribute is created when :meth:`add_note` is " -"called." +msgid "A list of the notes of this exception, which were added with :meth:`add_note`. This attribute is created when :meth:`add_note` is called." msgstr "" -#: ../../library/exceptions.rst:165 -msgid "" -"All built-in, non-system-exiting exceptions are derived from this class. " -"All user-defined exceptions should also be derived from this class." +msgid "All built-in, non-system-exiting exceptions are derived from this class. All user-defined exceptions should also be derived from this class." msgstr "" -#: ../../library/exceptions.rst:171 -msgid "" -"The base class for those built-in exceptions that are raised for various " -"arithmetic " -"errors: :exc:`OverflowError`, :exc:`ZeroDivisionError`, :exc:`FloatingPointError`." +msgid "The base class for those built-in exceptions that are raised for various arithmetic errors: :exc:`OverflowError`, :exc:`ZeroDivisionError`, :exc:`FloatingPointError`." msgstr "" -#: ../../library/exceptions.rst:178 -msgid "" -"Raised when a :ref:`buffer ` related operation cannot be " -"performed." +msgid "Raised when a :ref:`buffer ` related operation cannot be performed." msgstr "" -#: ../../library/exceptions.rst:184 -msgid "" -"The base class for the exceptions that are raised when a key or index used " -"on a mapping or sequence is invalid: :exc:`IndexError`, :exc:`KeyError`. " -"This can be raised directly by :func:`codecs.lookup`." +msgid "The base class for the exceptions that are raised when a key or index used on a mapping or sequence is invalid: :exc:`IndexError`, :exc:`KeyError`. This can be raised directly by :func:`codecs.lookup`." msgstr "" -#: ../../library/exceptions.rst:190 msgid "Concrete exceptions" msgstr "" -#: ../../library/exceptions.rst:192 msgid "The following exceptions are the exceptions that are usually raised." msgstr "" -#: ../../library/exceptions.rst:198 msgid "Raised when an :keyword:`assert` statement fails." msgstr "" -#: ../../library/exceptions.rst:203 -msgid "" -"Raised when an attribute reference (see :ref:`attribute-references`) or " -"assignment fails. (When an object does not support attribute references or " -"attribute assignments at all, :exc:`TypeError` is raised.)" +msgid "Raised when an attribute reference (see :ref:`attribute-references`) or assignment fails. (When an object does not support attribute references or attribute assignments at all, :exc:`TypeError` is raised.)" msgstr "" -#: ../../library/exceptions.rst:207 -msgid "" -"The optional *name* and *obj* keyword-only arguments set the corresponding " -"attributes:" +msgid "The optional *name* and *obj* keyword-only arguments set the corresponding attributes:" msgstr "" -#: ../../library/exceptions.rst:212 msgid "The name of the attribute that was attempted to be accessed." msgstr "" -#: ../../library/exceptions.rst:216 msgid "The object that was accessed for the named attribute." msgstr "" -#: ../../library/exceptions.rst:218 msgid "Added the :attr:`name` and :attr:`obj` attributes." msgstr "" -#: ../../library/exceptions.rst:223 -msgid "" -"Raised when the :func:`input` function hits an end-of-file condition (EOF) " -"without reading any data. (Note: the :meth:`io.TextIOBase.read` " -"and :meth:`io.IOBase.readline` methods return an empty string when they hit " -"EOF.)" +msgid "Raised when the :func:`input` function hits an end-of-file condition (EOF) without reading any data. (Note: the :meth:`io.TextIOBase.read` and :meth:`io.IOBase.readline` methods return an empty string when they hit EOF.)" msgstr "" -#: ../../library/exceptions.rst:230 msgid "Not currently used." msgstr "" -#: ../../library/exceptions.rst:235 -msgid "" -"Raised when a :term:`generator` or :term:`coroutine` is closed; " -"see :meth:`generator.close` and :meth:`coroutine.close`. It directly " -"inherits from :exc:`BaseException` instead of :exc:`Exception` since it is " -"technically not an error." +msgid "Raised when a :term:`generator` or :term:`coroutine` is closed; see :meth:`generator.close` and :meth:`coroutine.close`. It directly inherits from :exc:`BaseException` instead of :exc:`Exception` since it is technically not an error." msgstr "" -#: ../../library/exceptions.rst:243 -msgid "" -"Raised when the :keyword:`import` statement has troubles trying to load a " -"module. Also raised when the \"from list\" in ``from ... import`` has a " -"name that cannot be found." +msgid "Raised when the :keyword:`import` statement has troubles trying to load a module. Also raised when the \"from list\" in ``from ... import`` has a name that cannot be found." msgstr "" -#: ../../library/exceptions.rst:247 -msgid "" -"The optional *name* and *path* keyword-only arguments set the corresponding " -"attributes:" +msgid "The optional *name* and *path* keyword-only arguments set the corresponding attributes:" msgstr "" -#: ../../library/exceptions.rst:252 msgid "The name of the module that was attempted to be imported." msgstr "" -#: ../../library/exceptions.rst:256 msgid "The path to any file which triggered the exception." msgstr "" -#: ../../library/exceptions.rst:258 msgid "Added the :attr:`name` and :attr:`path` attributes." msgstr "" -#: ../../library/exceptions.rst:263 -msgid "" -"A subclass of :exc:`ImportError` which is raised by :keyword:`import` when a " -"module could not be located. It is also raised when ``None`` is found " -"in :data:`sys.modules`." +msgid "A subclass of :exc:`ImportError` which is raised by :keyword:`import` when a module could not be located. It is also raised when ``None`` is found in :data:`sys.modules`." msgstr "" -#: ../../library/exceptions.rst:272 -msgid "" -"Raised when a sequence subscript is out of range. (Slice indices are " -"silently truncated to fall in the allowed range; if an index is not an " -"integer, :exc:`TypeError` is raised.)" +msgid "Raised when a sequence subscript is out of range. (Slice indices are silently truncated to fall in the allowed range; if an index is not an integer, :exc:`TypeError` is raised.)" msgstr "" -#: ../../library/exceptions.rst:281 -msgid "" -"Raised when a mapping (dictionary) key is not found in the set of existing " -"keys." +msgid "Raised when a mapping (dictionary) key is not found in the set of existing keys." msgstr "" -#: ../../library/exceptions.rst:288 -msgid "" -"Raised when the user hits the interrupt key (normally :kbd:`Control-C` " -"or :kbd:`Delete`). During execution, a check for interrupts is made " -"regularly. The exception inherits from :exc:`BaseException` so as to not be " -"accidentally caught by code that catches :exc:`Exception` and thus prevent " -"the interpreter from exiting." +msgid "Raised when the user hits the interrupt key (normally :kbd:`Control-C` or :kbd:`Delete`). During execution, a check for interrupts is made regularly. The exception inherits from :exc:`BaseException` so as to not be accidentally caught by code that catches :exc:`Exception` and thus prevent the interpreter from exiting." msgstr "" -#: ../../library/exceptions.rst:296 -msgid "" -"Catching a :exc:`KeyboardInterrupt` requires special consideration. Because " -"it can be raised at unpredictable points, it may, in some circumstances, " -"leave the running program in an inconsistent state. It is generally best to " -"allow :exc:`KeyboardInterrupt` to end the program as quickly as possible or " -"avoid raising it entirely. (See :ref:`handlers-and-exceptions`.)" +msgid "Catching a :exc:`KeyboardInterrupt` requires special consideration. Because it can be raised at unpredictable points, it may, in some circumstances, leave the running program in an inconsistent state. It is generally best to allow :exc:`KeyboardInterrupt` to end the program as quickly as possible or avoid raising it entirely. (See :ref:`handlers-and-exceptions`.)" msgstr "" -#: ../../library/exceptions.rst:306 -msgid "" -"Raised when an operation runs out of memory but the situation may still be " -"rescued (by deleting some objects). The associated value is a string " -"indicating what kind of (internal) operation ran out of memory. Note that " -"because of the underlying memory management architecture " -"(C's :c:func:`malloc` function), the interpreter may not always be able to " -"completely recover from this situation; it nevertheless raises an exception " -"so that a stack traceback can be printed, in case a run-away program was the " -"cause." +msgid "Raised when an operation runs out of memory but the situation may still be rescued (by deleting some objects). The associated value is a string indicating what kind of (internal) operation ran out of memory. Note that because of the underlying memory management architecture (C's :c:func:`malloc` function), the interpreter may not always be able to completely recover from this situation; it nevertheless raises an exception so that a stack traceback can be printed, in case a run-away program was the cause." msgstr "" -#: ../../library/exceptions.rst:317 -msgid "" -"Raised when a local or global name is not found. This applies only to " -"unqualified names. The associated value is an error message that includes " -"the name that could not be found." +msgid "Raised when a local or global name is not found. This applies only to unqualified names. The associated value is an error message that includes the name that could not be found." msgstr "" -#: ../../library/exceptions.rst:321 msgid "The optional *name* keyword-only argument sets the attribute:" msgstr "" -#: ../../library/exceptions.rst:325 msgid "The name of the variable that was attempted to be accessed." msgstr "" -#: ../../library/exceptions.rst:327 msgid "Added the :attr:`name` attribute." msgstr "" -#: ../../library/exceptions.rst:333 -msgid "" -"This exception is derived from :exc:`RuntimeError`. In user defined base " -"classes, abstract methods should raise this exception when they require " -"derived classes to override the method, or while the class is being " -"developed to indicate that the real implementation still needs to be added." +msgid "This exception is derived from :exc:`RuntimeError`. In user defined base classes, abstract methods should raise this exception when they require derived classes to override the method, or while the class is being developed to indicate that the real implementation still needs to be added." msgstr "" -#: ../../library/exceptions.rst:340 -msgid "" -"It should not be used to indicate that an operator or method is not meant to " -"be supported at all -- in that case either leave the operator / method " -"undefined or, if a subclass, set it to :data:`None`." +msgid "It should not be used to indicate that an operator or method is not meant to be supported at all -- in that case either leave the operator / method undefined or, if a subclass, set it to :data:`None`." msgstr "" -#: ../../library/exceptions.rst:346 -msgid "" -":exc:`!NotImplementedError` and :data:`!NotImplemented` are not " -"interchangeable. This exception should only be used as described above; " -"see :data:`NotImplemented` for details on correct usage of the built-in " -"constant." +msgid ":exc:`!NotImplementedError` and :data:`!NotImplemented` are not interchangeable. This exception should only be used as described above; see :data:`NotImplemented` for details on correct usage of the built-in constant." msgstr "" -#: ../../library/exceptions.rst:357 -msgid "" -"This exception is raised when a system function returns a system-related " -"error, including I/O failures such as \"file not found\" or \"disk full\" " -"(not for illegal argument types or other incidental errors)." +msgid "This exception is raised when a system function returns a system-related error, including I/O failures such as \"file not found\" or \"disk full\" (not for illegal argument types or other incidental errors)." msgstr "" -#: ../../library/exceptions.rst:361 -msgid "" -"The second form of the constructor sets the corresponding attributes, " -"described below. The attributes default to :const:`None` if not specified. " -"For backwards compatibility, if three arguments are passed, " -"the :attr:`~BaseException.args` attribute contains only a 2-tuple of the " -"first two constructor arguments." +msgid "The second form of the constructor sets the corresponding attributes, described below. The attributes default to :const:`None` if not specified. For backwards compatibility, if three arguments are passed, the :attr:`~BaseException.args` attribute contains only a 2-tuple of the first two constructor arguments." msgstr "" -#: ../../library/exceptions.rst:367 -msgid "" -"The constructor often actually returns a subclass of :exc:`OSError`, as " -"described in `OS exceptions`_ below. The particular subclass depends on the " -"final :attr:`.errno` value. This behaviour only occurs when " -"constructing :exc:`OSError` directly or via an alias, and is not inherited " -"when subclassing." +msgid "The constructor often actually returns a subclass of :exc:`OSError`, as described in `OS exceptions`_ below. The particular subclass depends on the final :attr:`.errno` value. This behaviour only occurs when constructing :exc:`OSError` directly or via an alias, and is not inherited when subclassing." msgstr "" -#: ../../library/exceptions.rst:375 msgid "A numeric error code from the C variable :c:data:`errno`." msgstr "" -#: ../../library/exceptions.rst:379 -msgid "" -"Under Windows, this gives you the native Windows error code. " -"The :attr:`.errno` attribute is then an approximate translation, in POSIX " -"terms, of that native error code." +msgid "Under Windows, this gives you the native Windows error code. The :attr:`.errno` attribute is then an approximate translation, in POSIX terms, of that native error code." msgstr "" -#: ../../library/exceptions.rst:383 -msgid "" -"Under Windows, if the *winerror* constructor argument is an integer, " -"the :attr:`.errno` attribute is determined from the Windows error code, and " -"the *errno* argument is ignored. On other platforms, the *winerror* " -"argument is ignored, and the :attr:`winerror` attribute does not exist." +msgid "Under Windows, if the *winerror* constructor argument is an integer, the :attr:`.errno` attribute is determined from the Windows error code, and the *errno* argument is ignored. On other platforms, the *winerror* argument is ignored, and the :attr:`winerror` attribute does not exist." msgstr "" -#: ../../library/exceptions.rst:391 -msgid "" -"The corresponding error message, as provided by the operating system. It is " -"formatted by the C functions :c:func:`!perror` under POSIX, and :c:func:`!" -"FormatMessage` under Windows." +msgid "The corresponding error message, as provided by the operating system. It is formatted by the C functions :c:func:`!perror` under POSIX, and :c:func:`!FormatMessage` under Windows." msgstr "" -#: ../../library/exceptions.rst:399 -msgid "" -"For exceptions that involve a file system path (such as :func:`open` " -"or :func:`os.unlink`), :attr:`filename` is the file name passed to the " -"function. For functions that involve two file system paths (such " -"as :func:`os.rename`), :attr:`filename2` corresponds to the second file name " -"passed to the function." +msgid "For exceptions that involve a file system path (such as :func:`open` or :func:`os.unlink`), :attr:`filename` is the file name passed to the function. For functions that involve two file system paths (such as :func:`os.rename`), :attr:`filename2` corresponds to the second file name passed to the function." msgstr "" -#: ../../library/exceptions.rst:406 -msgid "" -":exc:`EnvironmentError`, :exc:`IOError`, :exc:`WindowsError`, :exc:`socket.error`, :exc:`select.error` " -"and :exc:`!mmap.error` have been merged into :exc:`OSError`, and the " -"constructor may return a subclass." +msgid ":exc:`EnvironmentError`, :exc:`IOError`, :exc:`WindowsError`, :exc:`socket.error`, :exc:`select.error` and :exc:`!mmap.error` have been merged into :exc:`OSError`, and the constructor may return a subclass." msgstr "" -#: ../../library/exceptions.rst:412 -msgid "" -"The :attr:`filename` attribute is now the original file name passed to the " -"function, instead of the name encoded to or decoded from " -"the :term:`filesystem encoding and error handler`. Also, the *filename2* " -"constructor argument and attribute was added." +msgid "The :attr:`filename` attribute is now the original file name passed to the function, instead of the name encoded to or decoded from the :term:`filesystem encoding and error handler`. Also, the *filename2* constructor argument and attribute was added." msgstr "" -#: ../../library/exceptions.rst:421 -msgid "" -"Raised when the result of an arithmetic operation is too large to be " -"represented. This cannot occur for integers (which would rather " -"raise :exc:`MemoryError` than give up). However, for historical reasons, " -"OverflowError is sometimes raised for integers that are outside a required " -"range. Because of the lack of standardization of floating-point exception " -"handling in C, most floating-point operations are not checked." +msgid "Raised when the result of an arithmetic operation is too large to be represented. This cannot occur for integers (which would rather raise :exc:`MemoryError` than give up). However, for historical reasons, OverflowError is sometimes raised for integers that are outside a required range. Because of the lack of standardization of floating-point exception handling in C, most floating-point operations are not checked." msgstr "" -#: ../../library/exceptions.rst:431 -msgid "" -"This exception is derived from :exc:`RuntimeError`. It is raised when an " -"operation is blocked during interpreter shutdown also known as :term:`Python " -"finalization `." +msgid "This exception is derived from :exc:`RuntimeError`. It is raised when an operation is blocked during interpreter shutdown also known as :term:`Python finalization `." msgstr "" -#: ../../library/exceptions.rst:435 -msgid "" -"Examples of operations which can be blocked with " -"a :exc:`PythonFinalizationError` during the Python finalization:" +msgid "Examples of operations which can be blocked with a :exc:`PythonFinalizationError` during the Python finalization:" msgstr "" -#: ../../library/exceptions.rst:438 msgid "Creating a new Python thread." msgstr "" -#: ../../library/exceptions.rst:439 msgid ":meth:`Joining ` a running daemon thread." msgstr "" -#: ../../library/exceptions.rst:440 msgid ":func:`os.fork`." msgstr "" -#: ../../library/exceptions.rst:442 msgid "See also the :func:`sys.is_finalizing` function." msgstr "" -#: ../../library/exceptions.rst:444 ../../library/exceptions.rst:457 msgid "Previously, a plain :exc:`RuntimeError` was raised." msgstr "" -#: ../../library/exceptions.rst:449 msgid ":meth:`threading.Thread.join` can now raise this exception." msgstr "" -#: ../../library/exceptions.rst:453 -msgid "" -"This exception is derived from :exc:`RuntimeError`. It is raised when the " -"interpreter detects that the maximum recursion depth " -"(see :func:`sys.getrecursionlimit`) is exceeded." +msgid "This exception is derived from :exc:`RuntimeError`. It is raised when the interpreter detects that the maximum recursion depth (see :func:`sys.getrecursionlimit`) is exceeded." msgstr "" -#: ../../library/exceptions.rst:463 -msgid "" -"This exception is raised when a weak reference proxy, created by " -"the :func:`weakref.proxy` function, is used to access an attribute of the " -"referent after it has been garbage collected. For more information on weak " -"references, see the :mod:`weakref` module." +msgid "This exception is raised when a weak reference proxy, created by the :func:`weakref.proxy` function, is used to access an attribute of the referent after it has been garbage collected. For more information on weak references, see the :mod:`weakref` module." msgstr "" -#: ../../library/exceptions.rst:471 -msgid "" -"Raised when an error is detected that doesn't fall in any of the other " -"categories. The associated value is a string indicating what precisely went " -"wrong." +msgid "Raised when an error is detected that doesn't fall in any of the other categories. The associated value is a string indicating what precisely went wrong." msgstr "" -#: ../../library/exceptions.rst:478 -msgid "" -"Raised by built-in function :func:`next` and " -"an :term:`iterator`\\'s :meth:`~iterator.__next__` method to signal that " -"there are no further items produced by the iterator." +msgid "Raised by built-in function :func:`next` and an :term:`iterator`\\'s :meth:`~iterator.__next__` method to signal that there are no further items produced by the iterator." msgstr "" -#: ../../library/exceptions.rst:484 -msgid "" -"The exception object has a single attribute :attr:`!value`, which is given " -"as an argument when constructing the exception, and defaults " -"to :const:`None`." +msgid "The exception object has a single attribute :attr:`!value`, which is given as an argument when constructing the exception, and defaults to :const:`None`." msgstr "" -#: ../../library/exceptions.rst:488 -msgid "" -"When a :term:`generator` or :term:`coroutine` function returns, a " -"new :exc:`StopIteration` instance is raised, and the value returned by the " -"function is used as the :attr:`value` parameter to the constructor of the " -"exception." +msgid "When a :term:`generator` or :term:`coroutine` function returns, a new :exc:`StopIteration` instance is raised, and the value returned by the function is used as the :attr:`value` parameter to the constructor of the exception." msgstr "" -#: ../../library/exceptions.rst:493 -msgid "" -"If a generator code directly or indirectly raises :exc:`StopIteration`, it " -"is converted into a :exc:`RuntimeError` (retaining the :exc:`StopIteration` " -"as the new exception's cause)." +msgid "If a generator code directly or indirectly raises :exc:`StopIteration`, it is converted into a :exc:`RuntimeError` (retaining the :exc:`StopIteration` as the new exception's cause)." msgstr "" -#: ../../library/exceptions.rst:497 -msgid "" -"Added ``value`` attribute and the ability for generator functions to use it " -"to return a value." +msgid "Added ``value`` attribute and the ability for generator functions to use it to return a value." msgstr "" -#: ../../library/exceptions.rst:501 -msgid "" -"Introduced the RuntimeError transformation via ``from __future__ import " -"generator_stop``, see :pep:`479`." +msgid "Introduced the RuntimeError transformation via ``from __future__ import generator_stop``, see :pep:`479`." msgstr "" -#: ../../library/exceptions.rst:505 -msgid "" -"Enable :pep:`479` for all code by default: a :exc:`StopIteration` error " -"raised in a generator is transformed into a :exc:`RuntimeError`." +msgid "Enable :pep:`479` for all code by default: a :exc:`StopIteration` error raised in a generator is transformed into a :exc:`RuntimeError`." msgstr "" -#: ../../library/exceptions.rst:511 -msgid "" -"Must be raised by :meth:`~object.__anext__` method of an :term:`asynchronous " -"iterator` object to stop the iteration." +msgid "Must be raised by :meth:`~object.__anext__` method of an :term:`asynchronous iterator` object to stop the iteration." msgstr "" -#: ../../library/exceptions.rst:518 -msgid "" -"Raised when the parser encounters a syntax error. This may occur in " -"an :keyword:`import` statement, in a call to the built-in " -"functions :func:`compile`, :func:`exec`, or :func:`eval`, or when reading " -"the initial script or standard input (also interactively)." +msgid "Raised when the parser encounters a syntax error. This may occur in an :keyword:`import` statement, in a call to the built-in functions :func:`compile`, :func:`exec`, or :func:`eval`, or when reading the initial script or standard input (also interactively)." msgstr "" -#: ../../library/exceptions.rst:524 -msgid "" -"The :func:`str` of the exception instance returns only the error message. " -"Details is a tuple whose members are also available as separate attributes." +msgid "The :func:`str` of the exception instance returns only the error message. Details is a tuple whose members are also available as separate attributes." msgstr "" -#: ../../library/exceptions.rst:529 msgid "The name of the file the syntax error occurred in." msgstr "" -#: ../../library/exceptions.rst:533 -msgid "" -"Which line number in the file the error occurred in. This is 1-indexed: the " -"first line in the file has a ``lineno`` of 1." +msgid "Which line number in the file the error occurred in. This is 1-indexed: the first line in the file has a ``lineno`` of 1." msgstr "" -#: ../../library/exceptions.rst:538 -msgid "" -"The column in the line where the error occurred. This is 1-indexed: the " -"first character in the line has an ``offset`` of 1." +msgid "The column in the line where the error occurred. This is 1-indexed: the first character in the line has an ``offset`` of 1." msgstr "" -#: ../../library/exceptions.rst:543 msgid "The source code text involved in the error." msgstr "" -#: ../../library/exceptions.rst:547 -msgid "" -"Which line number in the file the error occurred ends in. This is 1-indexed: " -"the first line in the file has a ``lineno`` of 1." +msgid "Which line number in the file the error occurred ends in. This is 1-indexed: the first line in the file has a ``lineno`` of 1." msgstr "" -#: ../../library/exceptions.rst:552 -msgid "" -"The column in the end line where the error occurred finishes. This is 1-" -"indexed: the first character in the line has an ``offset`` of 1." +msgid "The column in the end line where the error occurred finishes. This is 1-indexed: the first character in the line has an ``offset`` of 1." msgstr "" -#: ../../library/exceptions.rst:555 -msgid "" -"For errors in f-string fields, the message is prefixed by \"f-string: \" and " -"the offsets are offsets in a text constructed from the replacement " -"expression. For example, compiling f'Bad {a b} field' results in this args " -"attribute: ('f-string: ...', ('', 1, 2, '(a b)\\n', 1, 5))." +msgid "For errors in f-string fields, the message is prefixed by \"f-string: \" and the offsets are offsets in a text constructed from the replacement expression. For example, compiling f'Bad {a b} field' results in this args attribute: ('f-string: ...', ('', 1, 2, '(a b)\\n', 1, 5))." msgstr "" -#: ../../library/exceptions.rst:560 msgid "Added the :attr:`end_lineno` and :attr:`end_offset` attributes." msgstr "" -#: ../../library/exceptions.rst:565 -msgid "" -"Base class for syntax errors related to incorrect indentation. This is a " -"subclass of :exc:`SyntaxError`." +msgid "Base class for syntax errors related to incorrect indentation. This is a subclass of :exc:`SyntaxError`." msgstr "" -#: ../../library/exceptions.rst:571 -msgid "" -"Raised when indentation contains an inconsistent use of tabs and spaces. " -"This is a subclass of :exc:`IndentationError`." +msgid "Raised when indentation contains an inconsistent use of tabs and spaces. This is a subclass of :exc:`IndentationError`." msgstr "" -#: ../../library/exceptions.rst:577 -msgid "" -"Raised when the interpreter finds an internal error, but the situation does " -"not look so serious to cause it to abandon all hope. The associated value is " -"a string indicating what went wrong (in low-level terms). " -"In :term:`CPython`, this could be raised by incorrectly using Python's C " -"API, such as returning a ``NULL`` value without an exception set." +msgid "Raised when the interpreter finds an internal error, but the situation does not look so serious to cause it to abandon all hope. The associated value is a string indicating what went wrong (in low-level terms). In :term:`CPython`, this could be raised by incorrectly using Python's C API, such as returning a ``NULL`` value without an exception set." msgstr "" -#: ../../library/exceptions.rst:583 -msgid "" -"If you're confident that this exception wasn't your fault, or the fault of a " -"package you're using, you should report this to the author or maintainer of " -"your Python interpreter. Be sure to report the version of the Python " -"interpreter (``sys.version``; it is also printed at the start of an " -"interactive Python session), the exact error message (the exception's " -"associated value) and if possible the source of the program that triggered " -"the error." +msgid "If you're confident that this exception wasn't your fault, or the fault of a package you're using, you should report this to the author or maintainer of your Python interpreter. Be sure to report the version of the Python interpreter (``sys.version``; it is also printed at the start of an interactive Python session), the exact error message (the exception's associated value) and if possible the source of the program that triggered the error." msgstr "" -#: ../../library/exceptions.rst:594 -msgid "" -"This exception is raised by the :func:`sys.exit` function. It inherits " -"from :exc:`BaseException` instead of :exc:`Exception` so that it is not " -"accidentally caught by code that catches :exc:`Exception`. This allows the " -"exception to properly propagate up and cause the interpreter to exit. When " -"it is not handled, the Python interpreter exits; no stack traceback is " -"printed. The constructor accepts the same optional argument passed " -"to :func:`sys.exit`. If the value is an integer, it specifies the system " -"exit status (passed to C's :c:func:`!exit` function); if it is ``None``, the " -"exit status is zero; if it has another type (such as a string), the object's " -"value is printed and the exit status is one." -msgstr "" - -#: ../../library/exceptions.rst:605 -msgid "" -"A call to :func:`sys.exit` is translated into an exception so that clean-up " -"handlers (:keyword:`finally` clauses of :keyword:`try` statements) can be " -"executed, and so that a debugger can execute a script without running the " -"risk of losing control. The :func:`os._exit` function can be used if it is " -"absolutely positively necessary to exit immediately (for example, in the " -"child process after a call to :func:`os.fork`)." +msgid "This exception is raised by the :func:`sys.exit` function. It inherits from :exc:`BaseException` instead of :exc:`Exception` so that it is not accidentally caught by code that catches :exc:`Exception`. This allows the exception to properly propagate up and cause the interpreter to exit. When it is not handled, the Python interpreter exits; no stack traceback is printed. The constructor accepts the same optional argument passed to :func:`sys.exit`. If the value is an integer, it specifies the system exit status (passed to C's :c:func:`!exit` function); if it is ``None``, the exit status is zero; if it has another type (such as a string), the object's value is printed and the exit status is one." msgstr "" -#: ../../library/exceptions.rst:614 -msgid "" -"The exit status or error message that is passed to the constructor. " -"(Defaults to ``None``.)" +msgid "A call to :func:`sys.exit` is translated into an exception so that clean-up handlers (:keyword:`finally` clauses of :keyword:`try` statements) can be executed, and so that a debugger can execute a script without running the risk of losing control. The :func:`os._exit` function can be used if it is absolutely positively necessary to exit immediately (for example, in the child process after a call to :func:`os.fork`)." msgstr "" -#: ../../library/exceptions.rst:620 -msgid "" -"Raised when an operation or function is applied to an object of " -"inappropriate type. The associated value is a string giving details about " -"the type mismatch." +msgid "The exit status or error message that is passed to the constructor. (Defaults to ``None``.)" msgstr "" -#: ../../library/exceptions.rst:623 -msgid "" -"This exception may be raised by user code to indicate that an attempted " -"operation on an object is not supported, and is not meant to be. If an " -"object is meant to support a given operation but has not yet provided an " -"implementation, :exc:`NotImplementedError` is the proper exception to raise." +msgid "Raised when an operation or function is applied to an object of inappropriate type. The associated value is a string giving details about the type mismatch." msgstr "" -#: ../../library/exceptions.rst:628 -msgid "" -"Passing arguments of the wrong type (e.g. passing a :class:`list` when " -"an :class:`int` is expected) should result in a :exc:`TypeError`, but " -"passing arguments with the wrong value (e.g. a number outside expected " -"boundaries) should result in a :exc:`ValueError`." +msgid "This exception may be raised by user code to indicate that an attempted operation on an object is not supported, and is not meant to be. If an object is meant to support a given operation but has not yet provided an implementation, :exc:`NotImplementedError` is the proper exception to raise." msgstr "" -#: ../../library/exceptions.rst:635 -msgid "" -"Raised when a reference is made to a local variable in a function or method, " -"but no value has been bound to that variable. This is a subclass " -"of :exc:`NameError`." +msgid "Passing arguments of the wrong type (e.g. passing a :class:`list` when an :class:`int` is expected) should result in a :exc:`TypeError`, but passing arguments with the wrong value (e.g. a number outside expected boundaries) should result in a :exc:`ValueError`." msgstr "" -#: ../../library/exceptions.rst:642 -msgid "" -"Raised when a Unicode-related encoding or decoding error occurs. It is a " -"subclass of :exc:`ValueError`." +msgid "Raised when a reference is made to a local variable in a function or method, but no value has been bound to that variable. This is a subclass of :exc:`NameError`." msgstr "" -#: ../../library/exceptions.rst:645 -msgid "" -":exc:`UnicodeError` has attributes that describe the encoding or decoding " -"error. For example, ``err.object[err.start:err.end]`` gives the particular " -"invalid input that the codec failed on." +msgid "Raised when a Unicode-related encoding or decoding error occurs. It is a subclass of :exc:`ValueError`." +msgstr "" + +msgid ":exc:`UnicodeError` has attributes that describe the encoding or decoding error. For example, ``err.object[err.start:err.end]`` gives the particular invalid input that the codec failed on." msgstr "" -#: ../../library/exceptions.rst:651 msgid "The name of the encoding that raised the error." msgstr "" -#: ../../library/exceptions.rst:655 msgid "A string describing the specific codec error." msgstr "" -#: ../../library/exceptions.rst:659 msgid "The object the codec was attempting to encode or decode." msgstr "" -#: ../../library/exceptions.rst:663 msgid "The first index of invalid data in :attr:`object`." msgstr "" -#: ../../library/exceptions.rst:665 ../../library/exceptions.rst:672 -msgid "" -"This value should not be negative as it is interpreted as an absolute offset " -"but this constraint is not enforced at runtime." +msgid "This value should not be negative as it is interpreted as an absolute offset but this constraint is not enforced at runtime." msgstr "" -#: ../../library/exceptions.rst:670 msgid "The index after the last invalid data in :attr:`object`." msgstr "" -#: ../../library/exceptions.rst:678 -msgid "" -"Raised when a Unicode-related error occurs during encoding. It is a " -"subclass of :exc:`UnicodeError`." +msgid "Raised when a Unicode-related error occurs during encoding. It is a subclass of :exc:`UnicodeError`." msgstr "" -#: ../../library/exceptions.rst:684 -msgid "" -"Raised when a Unicode-related error occurs during decoding. It is a " -"subclass of :exc:`UnicodeError`." +msgid "Raised when a Unicode-related error occurs during decoding. It is a subclass of :exc:`UnicodeError`." msgstr "" -#: ../../library/exceptions.rst:690 -msgid "" -"Raised when a Unicode-related error occurs during translating. It is a " -"subclass of :exc:`UnicodeError`." +msgid "Raised when a Unicode-related error occurs during translating. It is a subclass of :exc:`UnicodeError`." msgstr "" -#: ../../library/exceptions.rst:696 -msgid "" -"Raised when an operation or function receives an argument that has the right " -"type but an inappropriate value, and the situation is not described by a " -"more precise exception such as :exc:`IndexError`." +msgid "Raised when an operation or function receives an argument that has the right type but an inappropriate value, and the situation is not described by a more precise exception such as :exc:`IndexError`." msgstr "" -#: ../../library/exceptions.rst:703 -msgid "" -"Raised when the second argument of a division or modulo operation is zero. " -"The associated value is a string indicating the type of the operands and the " -"operation." +msgid "Raised when the second argument of a division or modulo operation is zero. The associated value is a string indicating the type of the operands and the operation." msgstr "" -#: ../../library/exceptions.rst:708 -msgid "" -"The following exceptions are kept for compatibility with previous versions; " -"starting from Python 3.3, they are aliases of :exc:`OSError`." +msgid "The following exceptions are kept for compatibility with previous versions; starting from Python 3.3, they are aliases of :exc:`OSError`." msgstr "" -#: ../../library/exceptions.rst:717 msgid "Only available on Windows." msgstr "" -#: ../../library/exceptions.rst:721 msgid "OS exceptions" msgstr "" -#: ../../library/exceptions.rst:723 -msgid "" -"The following exceptions are subclasses of :exc:`OSError`, they get raised " -"depending on the system error code." +msgid "The following exceptions are subclasses of :exc:`OSError`, they get raised depending on the system error code." msgstr "" -#: ../../library/exceptions.rst:728 -msgid "" -"Raised when an operation would block on an object (e.g. socket) set for non-" -"blocking operation. Corresponds " -"to :c:data:`errno` :py:const:`~errno.EAGAIN`, :py:const:`~errno.EALREADY`, :py:const:`~errno.EWOULDBLOCK` " -"and :py:const:`~errno.EINPROGRESS`." +msgid "Raised when an operation would block on an object (e.g. socket) set for non-blocking operation. Corresponds to :c:data:`errno` :py:const:`~errno.EAGAIN`, :py:const:`~errno.EALREADY`, :py:const:`~errno.EWOULDBLOCK` and :py:const:`~errno.EINPROGRESS`." msgstr "" -#: ../../library/exceptions.rst:733 -msgid "" -"In addition to those of :exc:`OSError`, :exc:`BlockingIOError` can have one " -"more attribute:" +msgid "In addition to those of :exc:`OSError`, :exc:`BlockingIOError` can have one more attribute:" msgstr "" -#: ../../library/exceptions.rst:738 -msgid "" -"An integer containing the number of **bytes** written to the stream before " -"it blocked. This attribute is available when using the buffered I/O classes " -"from the :mod:`io` module." +msgid "An integer containing the number of **bytes** written to the stream before it blocked. This attribute is available when using the buffered I/O classes from the :mod:`io` module." msgstr "" -#: ../../library/exceptions.rst:744 -msgid "" -"Raised when an operation on a child process failed. Corresponds " -"to :c:data:`errno` :py:const:`~errno.ECHILD`." +msgid "Raised when an operation on a child process failed. Corresponds to :c:data:`errno` :py:const:`~errno.ECHILD`." msgstr "" -#: ../../library/exceptions.rst:749 msgid "A base class for connection-related issues." msgstr "" -#: ../../library/exceptions.rst:751 -msgid "" -"Subclasses " -"are :exc:`BrokenPipeError`, :exc:`ConnectionAbortedError`, :exc:`ConnectionRefusedError` " -"and :exc:`ConnectionResetError`." +msgid "Subclasses are :exc:`BrokenPipeError`, :exc:`ConnectionAbortedError`, :exc:`ConnectionRefusedError` and :exc:`ConnectionResetError`." msgstr "" -#: ../../library/exceptions.rst:756 -msgid "" -"A subclass of :exc:`ConnectionError`, raised when trying to write on a pipe " -"while the other end has been closed, or trying to write on a socket which " -"has been shutdown for writing. Corresponds " -"to :c:data:`errno` :py:const:`~errno.EPIPE` and :py:const:`~errno.ESHUTDOWN`." +msgid "A subclass of :exc:`ConnectionError`, raised when trying to write on a pipe while the other end has been closed, or trying to write on a socket which has been shutdown for writing. Corresponds to :c:data:`errno` :py:const:`~errno.EPIPE` and :py:const:`~errno.ESHUTDOWN`." msgstr "" -#: ../../library/exceptions.rst:763 -msgid "" -"A subclass of :exc:`ConnectionError`, raised when a connection attempt is " -"aborted by the peer. Corresponds " -"to :c:data:`errno` :py:const:`~errno.ECONNABORTED`." +msgid "A subclass of :exc:`ConnectionError`, raised when a connection attempt is aborted by the peer. Corresponds to :c:data:`errno` :py:const:`~errno.ECONNABORTED`." msgstr "" -#: ../../library/exceptions.rst:769 -msgid "" -"A subclass of :exc:`ConnectionError`, raised when a connection attempt is " -"refused by the peer. Corresponds " -"to :c:data:`errno` :py:const:`~errno.ECONNREFUSED`." +msgid "A subclass of :exc:`ConnectionError`, raised when a connection attempt is refused by the peer. Corresponds to :c:data:`errno` :py:const:`~errno.ECONNREFUSED`." msgstr "" -#: ../../library/exceptions.rst:775 -msgid "" -"A subclass of :exc:`ConnectionError`, raised when a connection is reset by " -"the peer. Corresponds to :c:data:`errno` :py:const:`~errno.ECONNRESET`." +msgid "A subclass of :exc:`ConnectionError`, raised when a connection is reset by the peer. Corresponds to :c:data:`errno` :py:const:`~errno.ECONNRESET`." msgstr "" -#: ../../library/exceptions.rst:781 -msgid "" -"Raised when trying to create a file or directory which already exists. " -"Corresponds to :c:data:`errno` :py:const:`~errno.EEXIST`." +msgid "Raised when trying to create a file or directory which already exists. Corresponds to :c:data:`errno` :py:const:`~errno.EEXIST`." msgstr "" -#: ../../library/exceptions.rst:786 -msgid "" -"Raised when a file or directory is requested but doesn't exist. Corresponds " -"to :c:data:`errno` :py:const:`~errno.ENOENT`." +msgid "Raised when a file or directory is requested but doesn't exist. Corresponds to :c:data:`errno` :py:const:`~errno.ENOENT`." msgstr "" -#: ../../library/exceptions.rst:791 -msgid "" -"Raised when a system call is interrupted by an incoming signal. Corresponds " -"to :c:data:`errno` :py:const:`~errno.EINTR`." +msgid "Raised when a system call is interrupted by an incoming signal. Corresponds to :c:data:`errno` :py:const:`~errno.EINTR`." msgstr "" -#: ../../library/exceptions.rst:794 -msgid "" -"Python now retries system calls when a syscall is interrupted by a signal, " -"except if the signal handler raises an exception (see :pep:`475` for the " -"rationale), instead of raising :exc:`InterruptedError`." +msgid "Python now retries system calls when a syscall is interrupted by a signal, except if the signal handler raises an exception (see :pep:`475` for the rationale), instead of raising :exc:`InterruptedError`." msgstr "" -#: ../../library/exceptions.rst:801 -msgid "" -"Raised when a file operation (such as :func:`os.remove`) is requested on a " -"directory. Corresponds to :c:data:`errno` :py:const:`~errno.EISDIR`." +msgid "Raised when a file operation (such as :func:`os.remove`) is requested on a directory. Corresponds to :c:data:`errno` :py:const:`~errno.EISDIR`." msgstr "" -#: ../../library/exceptions.rst:807 -msgid "" -"Raised when a directory operation (such as :func:`os.listdir`) is requested " -"on something which is not a directory. On most POSIX platforms, it may also " -"be raised if an operation attempts to open or traverse a non-directory file " -"as if it were a directory. Corresponds " -"to :c:data:`errno` :py:const:`~errno.ENOTDIR`." +msgid "Raised when a directory operation (such as :func:`os.listdir`) is requested on something which is not a directory. On most POSIX platforms, it may also be raised if an operation attempts to open or traverse a non-directory file as if it were a directory. Corresponds to :c:data:`errno` :py:const:`~errno.ENOTDIR`." msgstr "" -#: ../../library/exceptions.rst:815 -msgid "" -"Raised when trying to run an operation without the adequate access rights - " -"for example filesystem permissions. Corresponds " -"to :c:data:`errno` :py:const:`~errno.EACCES`, :py:const:`~errno.EPERM`, " -"and :py:const:`~errno.ENOTCAPABLE`." +msgid "Raised when trying to run an operation without the adequate access rights - for example filesystem permissions. Corresponds to :c:data:`errno` :py:const:`~errno.EACCES`, :py:const:`~errno.EPERM`, and :py:const:`~errno.ENOTCAPABLE`." msgstr "" -#: ../../library/exceptions.rst:820 -msgid "" -"WASI's :py:const:`~errno.ENOTCAPABLE` is now mapped " -"to :exc:`PermissionError`." +msgid "WASI's :py:const:`~errno.ENOTCAPABLE` is now mapped to :exc:`PermissionError`." msgstr "" -#: ../../library/exceptions.rst:826 -msgid "" -"Raised when a given process doesn't exist. Corresponds " -"to :c:data:`errno` :py:const:`~errno.ESRCH`." +msgid "Raised when a given process doesn't exist. Corresponds to :c:data:`errno` :py:const:`~errno.ESRCH`." msgstr "" -#: ../../library/exceptions.rst:831 -msgid "" -"Raised when a system function timed out at the system level. Corresponds " -"to :c:data:`errno` :py:const:`~errno.ETIMEDOUT`." +msgid "Raised when a system function timed out at the system level. Corresponds to :c:data:`errno` :py:const:`~errno.ETIMEDOUT`." msgstr "" -#: ../../library/exceptions.rst:834 msgid "All the above :exc:`OSError` subclasses were added." msgstr "" -#: ../../library/exceptions.rst:840 msgid ":pep:`3151` - Reworking the OS and IO exception hierarchy" msgstr "" -#: ../../library/exceptions.rst:846 msgid "Warnings" msgstr "" -#: ../../library/exceptions.rst:848 -msgid "" -"The following exceptions are used as warning categories; see " -"the :ref:`warning-categories` documentation for more details." +msgid "The following exceptions are used as warning categories; see the :ref:`warning-categories` documentation for more details." msgstr "" -#: ../../library/exceptions.rst:853 msgid "Base class for warning categories." msgstr "" -#: ../../library/exceptions.rst:858 msgid "Base class for warnings generated by user code." msgstr "" -#: ../../library/exceptions.rst:863 -msgid "" -"Base class for warnings about deprecated features when those warnings are " -"intended for other Python developers." +msgid "Base class for warnings about deprecated features when those warnings are intended for other Python developers." msgstr "" -#: ../../library/exceptions.rst:866 -msgid "" -"Ignored by the default warning filters, except in the ``__main__`` module " -"(:pep:`565`). Enabling the :ref:`Python Development Mode ` shows " -"this warning." +msgid "Ignored by the default warning filters, except in the ``__main__`` module (:pep:`565`). Enabling the :ref:`Python Development Mode ` shows this warning." msgstr "" -#: ../../library/exceptions.rst:870 ../../library/exceptions.rst:886 msgid "The deprecation policy is described in :pep:`387`." msgstr "" -#: ../../library/exceptions.rst:875 -msgid "" -"Base class for warnings about features which are obsolete and expected to be " -"deprecated in the future, but are not deprecated at the moment." +msgid "Base class for warnings about features which are obsolete and expected to be deprecated in the future, but are not deprecated at the moment." msgstr "" -#: ../../library/exceptions.rst:879 -msgid "" -"This class is rarely used as emitting a warning about a possible upcoming " -"deprecation is unusual, and :exc:`DeprecationWarning` is preferred for " -"already active deprecations." +msgid "This class is rarely used as emitting a warning about a possible upcoming deprecation is unusual, and :exc:`DeprecationWarning` is preferred for already active deprecations." msgstr "" -#: ../../library/exceptions.rst:883 ../../library/exceptions.rst:912 -#: ../../library/exceptions.rst:939 -msgid "" -"Ignored by the default warning filters. Enabling the :ref:`Python " -"Development Mode ` shows this warning." +msgid "Ignored by the default warning filters. Enabling the :ref:`Python Development Mode ` shows this warning." msgstr "" -#: ../../library/exceptions.rst:891 msgid "Base class for warnings about dubious syntax." msgstr "" -#: ../../library/exceptions.rst:893 -msgid "" -"This warning is typically emitted when compiling Python source code, and " -"usually won't be reported when running already compiled code." +msgid "This warning is typically emitted when compiling Python source code, and usually won't be reported when running already compiled code." msgstr "" -#: ../../library/exceptions.rst:899 msgid "Base class for warnings about dubious runtime behavior." msgstr "" -#: ../../library/exceptions.rst:904 -msgid "" -"Base class for warnings about deprecated features when those warnings are " -"intended for end users of applications that are written in Python." +msgid "Base class for warnings about deprecated features when those warnings are intended for end users of applications that are written in Python." msgstr "" -#: ../../library/exceptions.rst:910 msgid "Base class for warnings about probable mistakes in module imports." msgstr "" -#: ../../library/exceptions.rst:918 msgid "Base class for warnings related to Unicode." msgstr "" -#: ../../library/exceptions.rst:923 msgid "Base class for warnings related to encodings." msgstr "" -#: ../../library/exceptions.rst:925 msgid "See :ref:`io-encoding-warning` for details." msgstr "" -#: ../../library/exceptions.rst:932 -msgid "" -"Base class for warnings related to :class:`bytes` and :class:`bytearray`." +msgid "Base class for warnings related to :class:`bytes` and :class:`bytearray`." msgstr "" -#: ../../library/exceptions.rst:937 msgid "Base class for warnings related to resource usage." msgstr "" -#: ../../library/exceptions.rst:948 msgid "Exception groups" msgstr "" -#: ../../library/exceptions.rst:950 -msgid "" -"The following are used when it is necessary to raise multiple unrelated " -"exceptions. They are part of the exception hierarchy so they can be handled " -"with :keyword:`except` like all other exceptions. In addition, they are " -"recognised by :keyword:`except*`, which matches their subgroups " -"based on the types of the contained exceptions." +msgid "The following are used when it is necessary to raise multiple unrelated exceptions. They are part of the exception hierarchy so they can be handled with :keyword:`except` like all other exceptions. In addition, they are recognised by :keyword:`except*`, which matches their subgroups based on the types of the contained exceptions." msgstr "" -#: ../../library/exceptions.rst:959 -msgid "" -"Both of these exception types wrap the exceptions in the sequence ``excs``. " -"The ``msg`` parameter must be a string. The difference between the two " -"classes is that :exc:`BaseExceptionGroup` extends :exc:`BaseException` and " -"it can wrap any exception, while :exc:`ExceptionGroup` " -"extends :exc:`Exception` and it can only wrap subclasses " -"of :exc:`Exception`. This design is so that ``except Exception`` catches " -"an :exc:`ExceptionGroup` but not :exc:`BaseExceptionGroup`." +msgid "Both of these exception types wrap the exceptions in the sequence ``excs``. The ``msg`` parameter must be a string. The difference between the two classes is that :exc:`BaseExceptionGroup` extends :exc:`BaseException` and it can wrap any exception, while :exc:`ExceptionGroup` extends :exc:`Exception` and it can only wrap subclasses of :exc:`Exception`. This design is so that ``except Exception`` catches an :exc:`ExceptionGroup` but not :exc:`BaseExceptionGroup`." msgstr "" -#: ../../library/exceptions.rst:967 -msgid "" -"The :exc:`BaseExceptionGroup` constructor returns an :exc:`ExceptionGroup` " -"rather than a :exc:`BaseExceptionGroup` if all contained exceptions " -"are :exc:`Exception` instances, so it can be used to make the selection " -"automatic. The :exc:`ExceptionGroup` constructor, on the other hand, raises " -"a :exc:`TypeError` if any contained exception is not an :exc:`Exception` " -"subclass." +msgid "The :exc:`BaseExceptionGroup` constructor returns an :exc:`ExceptionGroup` rather than a :exc:`BaseExceptionGroup` if all contained exceptions are :exc:`Exception` instances, so it can be used to make the selection automatic. The :exc:`ExceptionGroup` constructor, on the other hand, raises a :exc:`TypeError` if any contained exception is not an :exc:`Exception` subclass." msgstr "" -#: ../../library/exceptions.rst:974 -msgid "" -"Exception groups are :ref:`generic ` over the type of their " -"contained exceptions." +msgid "Exception groups are :ref:`generic ` over the type of their contained exceptions." msgstr "" -#: ../../library/exceptions.rst:979 -msgid "" -"The ``excs`` parameter may be any sequence, but lists and tuples are " -"specifically processed more efficiently here. For optimal performance, pass " -"a tuple as ``excs``." +msgid "The ``excs`` parameter may be any sequence, but lists and tuples are specifically processed more efficiently here. For optimal performance, pass a tuple as ``excs``." msgstr "" -#: ../../library/exceptions.rst:985 msgid "The ``msg`` argument to the constructor. This is a read-only attribute." msgstr "" -#: ../../library/exceptions.rst:989 -msgid "" -"A tuple of the exceptions in the ``excs`` sequence given to the constructor. " -"This is a read-only attribute." +msgid "A tuple of the exceptions in the ``excs`` sequence given to the constructor. This is a read-only attribute." msgstr "" -#: ../../library/exceptions.rst:994 -msgid "" -"Returns an exception group that contains only the exceptions from the " -"current group that match *condition*, or ``None`` if the result is empty." +msgid "Returns an exception group that contains only the exceptions from the current group that match *condition*, or ``None`` if the result is empty." msgstr "" -#: ../../library/exceptions.rst:997 -msgid "" -"The condition can be an exception type or tuple of exception types, in which " -"case each exception is checked for a match using the same check that is used " -"in an ``except`` clause. The condition can also be a callable (other than a " -"type object) that accepts an exception as its single argument and returns " -"true for the exceptions that should be in the subgroup." +msgid "The condition can be an exception type or tuple of exception types, in which case each exception is checked for a match using the same check that is used in an ``except`` clause. The condition can also be a callable (other than a type object) that accepts an exception as its single argument and returns true for the exceptions that should be in the subgroup." msgstr "" -#: ../../library/exceptions.rst:1003 -msgid "" -"The nesting structure of the current exception is preserved in the result, " -"as are the values of " -"its :attr:`message`, :attr:`~BaseException.__traceback__`, :attr:`~BaseException.__cause__`, :attr:`~BaseException.__context__` " -"and :attr:`~BaseException.__notes__` fields. Empty nested groups are omitted " -"from the result." +msgid "The nesting structure of the current exception is preserved in the result, as are the values of its :attr:`message`, :attr:`~BaseException.__traceback__`, :attr:`~BaseException.__cause__`, :attr:`~BaseException.__context__` and :attr:`~BaseException.__notes__` fields. Empty nested groups are omitted from the result." msgstr "" -#: ../../library/exceptions.rst:1010 -msgid "" -"The condition is checked for all exceptions in the nested exception group, " -"including the top-level and any nested exception groups. If the condition is " -"true for such an exception group, it is included in the result in full." +msgid "The condition is checked for all exceptions in the nested exception group, including the top-level and any nested exception groups. If the condition is true for such an exception group, it is included in the result in full." msgstr "" -#: ../../library/exceptions.rst:1014 msgid "``condition`` can be any callable which is not a type object." msgstr "" -#: ../../library/exceptions.rst:1019 -msgid "" -"Like :meth:`subgroup`, but returns the pair ``(match, rest)`` where " -"``match`` is ``subgroup(condition)`` and ``rest`` is the remaining non-" -"matching part." +msgid "Like :meth:`subgroup`, but returns the pair ``(match, rest)`` where ``match`` is ``subgroup(condition)`` and ``rest`` is the remaining non-matching part." msgstr "" -#: ../../library/exceptions.rst:1025 -msgid "" -"Returns an exception group with the same :attr:`message`, but which wraps " -"the exceptions in ``excs``." +msgid "Returns an exception group with the same :attr:`message`, but which wraps the exceptions in ``excs``." msgstr "" -#: ../../library/exceptions.rst:1028 -msgid "" -"This method is used by :meth:`subgroup` and :meth:`split`, which are used in " -"various contexts to break up an exception group. A subclass needs to " -"override it in order to make :meth:`subgroup` and :meth:`split` return " -"instances of the subclass rather than :exc:`ExceptionGroup`." +msgid "This method is used by :meth:`subgroup` and :meth:`split`, which are used in various contexts to break up an exception group. A subclass needs to override it in order to make :meth:`subgroup` and :meth:`split` return instances of the subclass rather than :exc:`ExceptionGroup`." msgstr "" -#: ../../library/exceptions.rst:1034 -msgid "" -":meth:`subgroup` and :meth:`split` copy " -"the :attr:`~BaseException.__traceback__`, :attr:`~BaseException.__cause__`, :attr:`~BaseException.__context__` " -"and :attr:`~BaseException.__notes__` fields from the original exception " -"group to the one returned by :meth:`derive`, so these fields do not need to " -"be updated by :meth:`derive`." +msgid ":meth:`subgroup` and :meth:`split` copy the :attr:`~BaseException.__traceback__`, :attr:`~BaseException.__cause__`, :attr:`~BaseException.__context__` and :attr:`~BaseException.__notes__` fields from the original exception group to the one returned by :meth:`derive`, so these fields do not need to be updated by :meth:`derive`." msgstr "" -#: ../../library/exceptions.rst:1041 msgid "" ">>> class MyGroup(ExceptionGroup):\n" "... def derive(self, excs):\n" @@ -1230,28 +598,18 @@ msgid "" "...\n" ">>> match, rest = exc.split(ValueError)\n" ">>> exc, exc.__context__, exc.__cause__, exc.__notes__\n" -"(MyGroup('eg', [ValueError(1), TypeError(2)]), Exception('context'), " -"Exception('cause'), ['a note'])\n" +"(MyGroup('eg', [ValueError(1), TypeError(2)]), Exception('context'), Exception('cause'), ['a note'])\n" ">>> match, match.__context__, match.__cause__, match.__notes__\n" -"(MyGroup('eg', [ValueError(1)]), Exception('context'), Exception('cause'), " -"['a note'])\n" +"(MyGroup('eg', [ValueError(1)]), Exception('context'), Exception('cause'), ['a note'])\n" ">>> rest, rest.__context__, rest.__cause__, rest.__notes__\n" -"(MyGroup('eg', [TypeError(2)]), Exception('context'), Exception('cause'), " -"['a note'])\n" +"(MyGroup('eg', [TypeError(2)]), Exception('context'), Exception('cause'), ['a note'])\n" ">>> exc.__traceback__ is match.__traceback__ is rest.__traceback__\n" "True" msgstr "" -#: ../../library/exceptions.rst:1067 -msgid "" -"Note that :exc:`BaseExceptionGroup` defines :meth:`~object.__new__`, so " -"subclasses that need a different constructor signature need to override that " -"rather than :meth:`~object.__init__`. For example, the following defines an " -"exception group subclass which accepts an exit_code and constructs the " -"group's message from it. ::" +msgid "Note that :exc:`BaseExceptionGroup` defines :meth:`~object.__new__`, so subclasses that need a different constructor signature need to override that rather than :meth:`~object.__init__`. For example, the following defines an exception group subclass which accepts an exit_code and constructs the group's message from it. ::" msgstr "" -#: ../../library/exceptions.rst:1073 msgid "" "class Errors(ExceptionGroup):\n" " def __new__(cls, errors, exit_code):\n" @@ -1263,22 +621,15 @@ msgid "" " return Errors(excs, self.exit_code)" msgstr "" -#: ../../library/exceptions.rst:1082 -msgid "" -"Like :exc:`ExceptionGroup`, any subclass of :exc:`BaseExceptionGroup` which " -"is also a subclass of :exc:`Exception` can only wrap instances " -"of :exc:`Exception`." +msgid "Like :exc:`ExceptionGroup`, any subclass of :exc:`BaseExceptionGroup` which is also a subclass of :exc:`Exception` can only wrap instances of :exc:`Exception`." msgstr "" -#: ../../library/exceptions.rst:1090 msgid "Exception hierarchy" msgstr "" -#: ../../library/exceptions.rst:1092 msgid "The class hierarchy for built-in exceptions is:" msgstr "" -#: ../../library/exceptions.rst:1094 msgid "" "BaseException\n" " ├── BaseExceptionGroup\n" @@ -1350,51 +701,38 @@ msgid "" " └── UserWarning\n" msgstr "" -#: ../../library/exceptions.rst:6 ../../library/exceptions.rst:17 -#: ../../library/exceptions.rst:196 msgid "statement" msgstr "" -#: ../../library/exceptions.rst:6 msgid "try" msgstr "" -#: ../../library/exceptions.rst:6 msgid "except" msgstr "" -#: ../../library/exceptions.rst:17 msgid "raise" msgstr "" -#: ../../library/exceptions.rst:41 msgid "exception" msgstr "" -#: ../../library/exceptions.rst:41 msgid "chaining" msgstr "" -#: ../../library/exceptions.rst:41 msgid "__cause__ (exception attribute)" msgstr "" -#: ../../library/exceptions.rst:41 msgid "__context__ (exception attribute)" msgstr "" -#: ../../library/exceptions.rst:41 msgid "__suppress_context__ (exception attribute)" msgstr "" -#: ../../library/exceptions.rst:196 msgid "assert" msgstr "" -#: ../../library/exceptions.rst:355 msgid "module" msgstr "" -#: ../../library/exceptions.rst:355 msgid "errno" msgstr "" diff --git a/library/faulthandler.po b/library/faulthandler.po index 1bc8b65a..1b3fcf19 100644 --- a/library/faulthandler.po +++ b/library/faulthandler.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:05+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,301 +24,162 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/faulthandler.rst:2 msgid ":mod:`!faulthandler` --- Dump the Python traceback" msgstr "" -#: ../../library/faulthandler.rst:11 -msgid "" -"This module contains functions to dump Python tracebacks explicitly, on a " -"fault, after a timeout, or on a user signal. " -"Call :func:`faulthandler.enable` to install fault handlers for " -"the :const:`~signal.SIGSEGV`, :const:`~signal.SIGFPE`, :const:`~signal.SIGABRT`, :const:`~signal.SIGBUS`, " -"and :const:`~signal.SIGILL` signals. You can also enable them at startup by " -"setting the :envvar:`PYTHONFAULTHANDLER` environment variable or by using " -"the :option:`-X` ``faulthandler`` command line option." +msgid "This module contains functions to dump Python tracebacks explicitly, on a fault, after a timeout, or on a user signal. Call :func:`faulthandler.enable` to install fault handlers for the :const:`~signal.SIGSEGV`, :const:`~signal.SIGFPE`, :const:`~signal.SIGABRT`, :const:`~signal.SIGBUS`, and :const:`~signal.SIGILL` signals. You can also enable them at startup by setting the :envvar:`PYTHONFAULTHANDLER` environment variable or by using the :option:`-X` ``faulthandler`` command line option." msgstr "" -#: ../../library/faulthandler.rst:19 -msgid "" -"The fault handler is compatible with system fault handlers like Apport or " -"the Windows fault handler. The module uses an alternative stack for signal " -"handlers if the :c:func:`!sigaltstack` function is available. This allows it " -"to dump the traceback even on a stack overflow." +msgid "The fault handler is compatible with system fault handlers like Apport or the Windows fault handler. The module uses an alternative stack for signal handlers if the :c:func:`!sigaltstack` function is available. This allows it to dump the traceback even on a stack overflow." msgstr "" -#: ../../library/faulthandler.rst:24 -msgid "" -"The fault handler is called on catastrophic cases and therefore can only use " -"signal-safe functions (e.g. it cannot allocate memory on the heap). Because " -"of this limitation traceback dumping is minimal compared to normal Python " -"tracebacks:" +msgid "The fault handler is called on catastrophic cases and therefore can only use signal-safe functions (e.g. it cannot allocate memory on the heap). Because of this limitation traceback dumping is minimal compared to normal Python tracebacks:" msgstr "" -#: ../../library/faulthandler.rst:29 -msgid "" -"Only ASCII is supported. The ``backslashreplace`` error handler is used on " -"encoding." +msgid "Only ASCII is supported. The ``backslashreplace`` error handler is used on encoding." msgstr "" -#: ../../library/faulthandler.rst:31 msgid "Each string is limited to 500 characters." msgstr "" -#: ../../library/faulthandler.rst:32 -msgid "" -"Only the filename, the function name and the line number are displayed. (no " -"source code)" +msgid "Only the filename, the function name and the line number are displayed. (no source code)" msgstr "" -#: ../../library/faulthandler.rst:34 msgid "It is limited to 100 frames and 100 threads." msgstr "" -#: ../../library/faulthandler.rst:35 msgid "The order is reversed: the most recent call is shown first." msgstr "" -#: ../../library/faulthandler.rst:37 -msgid "" -"By default, the Python traceback is written to :data:`sys.stderr`. To see " -"tracebacks, applications must be run in the terminal. A log file can " -"alternatively be passed to :func:`faulthandler.enable`." +msgid "By default, the Python traceback is written to :data:`sys.stderr`. To see tracebacks, applications must be run in the terminal. A log file can alternatively be passed to :func:`faulthandler.enable`." msgstr "" -#: ../../library/faulthandler.rst:41 -msgid "" -"The module is implemented in C, so tracebacks can be dumped on a crash or " -"when Python is deadlocked." +msgid "The module is implemented in C, so tracebacks can be dumped on a crash or when Python is deadlocked." msgstr "" -#: ../../library/faulthandler.rst:44 -msgid "" -"The :ref:`Python Development Mode ` " -"calls :func:`faulthandler.enable` at Python startup." +msgid "The :ref:`Python Development Mode ` calls :func:`faulthandler.enable` at Python startup." msgstr "" -#: ../../library/faulthandler.rst:49 msgid "Module :mod:`pdb`" msgstr "" -#: ../../library/faulthandler.rst:50 msgid "Interactive source code debugger for Python programs." msgstr "" -#: ../../library/faulthandler.rst:52 msgid "Module :mod:`traceback`" msgstr "" -#: ../../library/faulthandler.rst:53 -msgid "" -"Standard interface to extract, format and print stack traces of Python " -"programs." +msgid "Standard interface to extract, format and print stack traces of Python programs." msgstr "" -#: ../../library/faulthandler.rst:56 msgid "Dumping the traceback" msgstr "" -#: ../../library/faulthandler.rst:60 -msgid "" -"Dump the tracebacks of all threads into *file*. If *all_threads* is " -"``False``, dump only the current thread." +msgid "Dump the tracebacks of all threads into *file*. If *all_threads* is ``False``, dump only the current thread." msgstr "" -#: ../../library/faulthandler.rst:63 -msgid "" -":func:`traceback.print_tb`, which can be used to print a traceback object." +msgid ":func:`traceback.print_tb`, which can be used to print a traceback object." msgstr "" -#: ../../library/faulthandler.rst:65 ../../library/faulthandler.rst:119 -#: ../../library/faulthandler.rst:165 ../../library/faulthandler.rst:190 msgid "Added support for passing file descriptor to this function." msgstr "" -#: ../../library/faulthandler.rst:70 msgid "Dumping the C stack" msgstr "" -#: ../../library/faulthandler.rst:76 msgid "Dump the C stack trace of the current thread into *file*." msgstr "" -#: ../../library/faulthandler.rst:78 -msgid "" -"If the Python build does not support it or the operating system does not " -"provide a stack trace, then this prints an error in place of a dumped C " -"stack." +msgid "If the Python build does not support it or the operating system does not provide a stack trace, then this prints an error in place of a dumped C stack." msgstr "" -#: ../../library/faulthandler.rst:85 msgid "C Stack Compatibility" msgstr "" -#: ../../library/faulthandler.rst:87 -msgid "" -"If the system does not support the C-level :manpage:`backtrace(3)` " -"or :manpage:`dladdr1(3)`, then C stack dumps will not work. An error will be " -"printed instead of the stack." +msgid "If the system does not support the C-level :manpage:`backtrace(3)` or :manpage:`dladdr1(3)`, then C stack dumps will not work. An error will be printed instead of the stack." msgstr "" -#: ../../library/faulthandler.rst:91 -msgid "" -"Additionally, some compilers do not support :term:`CPython's ` " -"implementation of C stack dumps. As a result, a different error may be " -"printed instead of the stack, even if the operating system supports dumping " -"stacks." +msgid "Additionally, some compilers do not support :term:`CPython's ` implementation of C stack dumps. As a result, a different error may be printed instead of the stack, even if the operating system supports dumping stacks." msgstr "" -#: ../../library/faulthandler.rst:97 -msgid "" -"Dumping C stacks can be arbitrarily slow, depending on the DWARF level of " -"the binaries in the call stack." +msgid "Dumping C stacks can be arbitrarily slow, depending on the DWARF level of the binaries in the call stack." msgstr "" -#: ../../library/faulthandler.rst:101 msgid "Fault handler state" msgstr "" -#: ../../library/faulthandler.rst:105 -msgid "" -"Enable the fault handler: install handlers for " -"the :const:`~signal.SIGSEGV`, :const:`~signal.SIGFPE`, :const:`~signal.SIGABRT`, :const:`~signal.SIGBUS` " -"and :const:`~signal.SIGILL` signals to dump the Python traceback. If " -"*all_threads* is ``True``, produce tracebacks for every running thread. " -"Otherwise, dump only the current thread." +msgid "Enable the fault handler: install handlers for the :const:`~signal.SIGSEGV`, :const:`~signal.SIGFPE`, :const:`~signal.SIGABRT`, :const:`~signal.SIGBUS` and :const:`~signal.SIGILL` signals to dump the Python traceback. If *all_threads* is ``True``, produce tracebacks for every running thread. Otherwise, dump only the current thread." msgstr "" -#: ../../library/faulthandler.rst:112 -msgid "" -"The *file* must be kept open until the fault handler is disabled: " -"see :ref:`issue with file descriptors `." +msgid "The *file* must be kept open until the fault handler is disabled: see :ref:`issue with file descriptors `." msgstr "" -#: ../../library/faulthandler.rst:115 -msgid "" -"If *c_stack* is ``True``, then the C stack trace is printed after the Python " -"traceback, unless the system does not support it. See :func:`dump_c_stack` " -"for more information on compatibility." +msgid "If *c_stack* is ``True``, then the C stack trace is printed after the Python traceback, unless the system does not support it. See :func:`dump_c_stack` for more information on compatibility." msgstr "" -#: ../../library/faulthandler.rst:122 msgid "On Windows, a handler for Windows exception is also installed." msgstr "" -#: ../../library/faulthandler.rst:125 -msgid "" -"The dump now mentions if a garbage collector collection is running if " -"*all_threads* is true." +msgid "The dump now mentions if a garbage collector collection is running if *all_threads* is true." msgstr "" -#: ../../library/faulthandler.rst:129 -msgid "" -"Only the current thread is dumped if the :term:`GIL` is disabled to prevent " -"the risk of data races." +msgid "Only the current thread is dumped if the :term:`GIL` is disabled to prevent the risk of data races." msgstr "" -#: ../../library/faulthandler.rst:133 msgid "The dump now displays the C stack trace if *c_stack* is true." msgstr "" -#: ../../library/faulthandler.rst:138 -msgid "" -"Disable the fault handler: uninstall the signal handlers installed " -"by :func:`enable`." +msgid "Disable the fault handler: uninstall the signal handlers installed by :func:`enable`." msgstr "" -#: ../../library/faulthandler.rst:143 msgid "Check if the fault handler is enabled." msgstr "" -#: ../../library/faulthandler.rst:147 msgid "Dumping the tracebacks after a timeout" msgstr "" -#: ../../library/faulthandler.rst:151 -msgid "" -"Dump the tracebacks of all threads, after a timeout of *timeout* seconds, or " -"every *timeout* seconds if *repeat* is ``True``. If *exit* is ``True``, " -"call :c:func:`!_exit` with status=1 after dumping the tracebacks. " -"(Note :c:func:`!_exit` exits the process immediately, which means it doesn't " -"do any cleanup like flushing file buffers.) If the function is called twice, " -"the new call replaces previous parameters and resets the timeout. The timer " -"has a sub-second resolution." +msgid "Dump the tracebacks of all threads, after a timeout of *timeout* seconds, or every *timeout* seconds if *repeat* is ``True``. If *exit* is ``True``, call :c:func:`!_exit` with status=1 after dumping the tracebacks. (Note :c:func:`!_exit` exits the process immediately, which means it doesn't do any cleanup like flushing file buffers.) If the function is called twice, the new call replaces previous parameters and resets the timeout. The timer has a sub-second resolution." msgstr "" -#: ../../library/faulthandler.rst:159 -msgid "" -"The *file* must be kept open until the traceback is dumped " -"or :func:`cancel_dump_traceback_later` is called: see :ref:`issue with file " -"descriptors `." +msgid "The *file* must be kept open until the traceback is dumped or :func:`cancel_dump_traceback_later` is called: see :ref:`issue with file descriptors `." msgstr "" -#: ../../library/faulthandler.rst:163 msgid "This function is implemented using a watchdog thread." msgstr "" -#: ../../library/faulthandler.rst:168 msgid "This function is now always available." msgstr "" -#: ../../library/faulthandler.rst:173 msgid "Cancel the last call to :func:`dump_traceback_later`." msgstr "" -#: ../../library/faulthandler.rst:177 msgid "Dumping the traceback on a user signal" msgstr "" -#: ../../library/faulthandler.rst:181 -msgid "" -"Register a user signal: install a handler for the *signum* signal to dump " -"the traceback of all threads, or of the current thread if *all_threads* is " -"``False``, into *file*. Call the previous handler if chain is ``True``." +msgid "Register a user signal: install a handler for the *signum* signal to dump the traceback of all threads, or of the current thread if *all_threads* is ``False``, into *file*. Call the previous handler if chain is ``True``." msgstr "" -#: ../../library/faulthandler.rst:185 -msgid "" -"The *file* must be kept open until the signal is unregistered " -"by :func:`unregister`: see :ref:`issue with file descriptors `." +msgid "The *file* must be kept open until the signal is unregistered by :func:`unregister`: see :ref:`issue with file descriptors `." msgstr "" -#: ../../library/faulthandler.rst:188 ../../library/faulthandler.rst:199 msgid "Not available on Windows." msgstr "" -#: ../../library/faulthandler.rst:195 -msgid "" -"Unregister a user signal: uninstall the handler of the *signum* signal " -"installed by :func:`register`. Return ``True`` if the signal was registered, " -"``False`` otherwise." +msgid "Unregister a user signal: uninstall the handler of the *signum* signal installed by :func:`register`. Return ``True`` if the signal was registered, ``False`` otherwise." msgstr "" -#: ../../library/faulthandler.rst:205 msgid "Issue with file descriptors" msgstr "" -#: ../../library/faulthandler.rst:207 -msgid "" -":func:`enable`, :func:`dump_traceback_later` and :func:`register` keep the " -"file descriptor of their *file* argument. If the file is closed and its file " -"descriptor is reused by a new file, or if :func:`os.dup2` is used to replace " -"the file descriptor, the traceback will be written into a different file. " -"Call these functions again each time that the file is replaced." +msgid ":func:`enable`, :func:`dump_traceback_later` and :func:`register` keep the file descriptor of their *file* argument. If the file is closed and its file descriptor is reused by a new file, or if :func:`os.dup2` is used to replace the file descriptor, the traceback will be written into a different file. Call these functions again each time that the file is replaced." msgstr "" -#: ../../library/faulthandler.rst:215 msgid "Example" msgstr "" -#: ../../library/faulthandler.rst:217 -msgid "" -"Example of a segmentation fault on Linux with and without enabling the fault " -"handler:" +msgid "Example of a segmentation fault on Linux with and without enabling the fault handler:" msgstr "" -#: ../../library/faulthandler.rst:220 msgid "" "$ python -c \"import ctypes; ctypes.string_at(0)\"\n" "Segmentation fault\n" @@ -333,45 +194,34 @@ msgid "" " File \"\", line 1 in \n" "\n" "Current thread's C stack trace (most recent call first):\n" -" Binary file \"/opt/python/python\", at _Py_DumpStack+0x42 " -"[0x5b27f7d7147e]\n" +" Binary file \"/opt/python/python\", at _Py_DumpStack+0x42 [0x5b27f7d7147e]\n" " Binary file \"/opt/python/python\", at +0x32dcbd [0x5b27f7d85cbd]\n" " Binary file \"/opt/python/python\", at +0x32df8a [0x5b27f7d85f8a]\n" " Binary file \"/usr/lib/libc.so.6\", at +0x3def0 [0x77b73226bef0]\n" " Binary file \"/usr/lib/libc.so.6\", at +0x17ef9c [0x77b7323acf9c]\n" -" Binary file \"/opt/python/build/lib.linux-x86_64-3.14/_ctypes.cpython-314d-" -"x86_64-linux-gnu.so\", at +0xcdf6 [0x77b7315dddf6]\n" +" Binary file \"/opt/python/build/lib.linux-x86_64-3.14/_ctypes.cpython-314d-x86_64-linux-gnu.so\", at +0xcdf6 [0x77b7315dddf6]\n" " Binary file \"/usr/lib/libffi.so.8\", at +0x7976 [0x77b73158f976]\n" " Binary file \"/usr/lib/libffi.so.8\", at +0x413c [0x77b73158c13c]\n" " Binary file \"/usr/lib/libffi.so.8\", at ffi_call+0x12e [0x77b73158ef0e]\n" -" Binary file \"/opt/python/build/lib.linux-x86_64-3.14/_ctypes.cpython-314d-" -"x86_64-linux-gnu.so\", at +0x15a33 [0x77b7315e6a33]\n" -" Binary file \"/opt/python/build/lib.linux-x86_64-3.14/_ctypes.cpython-314d-" -"x86_64-linux-gnu.so\", at +0x164fa [0x77b7315e74fa]\n" -" Binary file \"/opt/python/build/lib.linux-x86_64-3.14/_ctypes.cpython-314d-" -"x86_64-linux-gnu.so\", at +0xc624 [0x77b7315dd624]\n" -" Binary file \"/opt/python/python\", at _PyObject_MakeTpCall+0xce " -"[0x5b27f7b73883]\n" +" Binary file \"/opt/python/build/lib.linux-x86_64-3.14/_ctypes.cpython-314d-x86_64-linux-gnu.so\", at +0x15a33 [0x77b7315e6a33]\n" +" Binary file \"/opt/python/build/lib.linux-x86_64-3.14/_ctypes.cpython-314d-x86_64-linux-gnu.so\", at +0x164fa [0x77b7315e74fa]\n" +" Binary file \"/opt/python/build/lib.linux-x86_64-3.14/_ctypes.cpython-314d-x86_64-linux-gnu.so\", at +0xc624 [0x77b7315dd624]\n" +" Binary file \"/opt/python/python\", at _PyObject_MakeTpCall+0xce [0x5b27f7b73883]\n" " Binary file \"/opt/python/python\", at +0x11bab6 [0x5b27f7b73ab6]\n" -" Binary file \"/opt/python/python\", at PyObject_Vectorcall+0x23 " -"[0x5b27f7b73b04]\n" -" Binary file \"/opt/python/python\", at _PyEval_EvalFrameDefault+0x490c " -"[0x5b27f7cbb302]\n" +" Binary file \"/opt/python/python\", at PyObject_Vectorcall+0x23 [0x5b27f7b73b04]\n" +" Binary file \"/opt/python/python\", at _PyEval_EvalFrameDefault+0x490c [0x5b27f7cbb302]\n" " Binary file \"/opt/python/python\", at +0x2818e6 [0x5b27f7cd98e6]\n" " Binary file \"/opt/python/python\", at +0x281aab [0x5b27f7cd9aab]\n" -" Binary file \"/opt/python/python\", at PyEval_EvalCode+0xc5 " -"[0x5b27f7cd9ba3]\n" +" Binary file \"/opt/python/python\", at PyEval_EvalCode+0xc5 [0x5b27f7cd9ba3]\n" " Binary file \"/opt/python/python\", at +0x255957 [0x5b27f7cad957]\n" " Binary file \"/opt/python/python\", at +0x255ab4 [0x5b27f7cadab4]\n" -" Binary file \"/opt/python/python\", at _PyEval_EvalFrameDefault+0x6c3e " -"[0x5b27f7cbd634]\n" +" Binary file \"/opt/python/python\", at _PyEval_EvalFrameDefault+0x6c3e [0x5b27f7cbd634]\n" " Binary file \"/opt/python/python\", at +0x2818e6 [0x5b27f7cd98e6]\n" " Binary file \"/opt/python/python\", at +0x281aab [0x5b27f7cd9aab]\n" " Binary file \"/opt/python/python\", at +0x11b6e1 [0x5b27f7b736e1]\n" " Binary file \"/opt/python/python\", at +0x11d348 [0x5b27f7b75348]\n" " Binary file \"/opt/python/python\", at +0x11d626 [0x5b27f7b75626]\n" -" Binary file \"/opt/python/python\", at PyObject_Call+0x20 " -"[0x5b27f7b7565e]\n" +" Binary file \"/opt/python/python\", at PyObject_Call+0x20 [0x5b27f7b7565e]\n" " Binary file \"/opt/python/python\", at +0x32a67a [0x5b27f7d8267a]\n" " Binary file \"/opt/python/python\", at +0x32a7f8 [0x5b27f7d827f8]\n" " Binary file \"/opt/python/python\", at +0x32ac1b [0x5b27f7d82c1b]\n" diff --git a/library/fcntl.po b/library/fcntl.po index e6254c5b..9d795bba 100644 --- a/library/fcntl.po +++ b/library/fcntl.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:06+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,219 +23,90 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/fcntl.rst:2 msgid ":mod:`!fcntl` --- The ``fcntl`` and ``ioctl`` system calls" msgstr "" -#: ../../library/fcntl.rst:15 -msgid "" -"This module performs file and I/O control on file descriptors. It is an " -"interface to the :c:func:`fcntl` and :c:func:`ioctl` Unix routines. See " -"the :manpage:`fcntl(2)` and :manpage:`ioctl(2)` Unix manual pages for full " -"details." +msgid "This module performs file and I/O control on file descriptors. It is an interface to the :c:func:`fcntl` and :c:func:`ioctl` Unix routines. See the :manpage:`fcntl(2)` and :manpage:`ioctl(2)` Unix manual pages for full details." msgstr "" -#: ../../library/fcntl.rst:20 msgid "Availability" msgstr "" -#: ../../library/fcntl.rst:22 -msgid "" -"All functions in this module take a file descriptor *fd* as their first " -"argument. This can be an integer file descriptor, such as returned by " -"``sys.stdin.fileno()``, or an :class:`io.IOBase` object, such as " -"``sys.stdin`` itself, which provides a :meth:`~io.IOBase.fileno` that " -"returns a genuine file descriptor." +msgid "All functions in this module take a file descriptor *fd* as their first argument. This can be an integer file descriptor, such as returned by ``sys.stdin.fileno()``, or an :class:`io.IOBase` object, such as ``sys.stdin`` itself, which provides a :meth:`~io.IOBase.fileno` that returns a genuine file descriptor." msgstr "" -#: ../../library/fcntl.rst:28 -msgid "" -"Operations in this module used to raise an :exc:`IOError` where they now " -"raise an :exc:`OSError`." +msgid "Operations in this module used to raise an :exc:`IOError` where they now raise an :exc:`OSError`." msgstr "" -#: ../../library/fcntl.rst:32 -msgid "" -"The :mod:`!fcntl` module now contains ``F_ADD_SEALS``, ``F_GET_SEALS``, and " -"``F_SEAL_*`` constants for sealing of :func:`os.memfd_create` file " -"descriptors." +msgid "The :mod:`!fcntl` module now contains ``F_ADD_SEALS``, ``F_GET_SEALS``, and ``F_SEAL_*`` constants for sealing of :func:`os.memfd_create` file descriptors." msgstr "" -#: ../../library/fcntl.rst:37 -msgid "" -"On macOS, the :mod:`!fcntl` module exposes the ``F_GETPATH`` constant, which " -"obtains the path of a file from a file descriptor. On Linux(>=3.15), " -"the :mod:`!fcntl` module exposes the ``F_OFD_GETLK``, ``F_OFD_SETLK`` and " -"``F_OFD_SETLKW`` constants, which are used when working with open file " -"description locks." +msgid "On macOS, the :mod:`!fcntl` module exposes the ``F_GETPATH`` constant, which obtains the path of a file from a file descriptor. On Linux(>=3.15), the :mod:`!fcntl` module exposes the ``F_OFD_GETLK``, ``F_OFD_SETLK`` and ``F_OFD_SETLKW`` constants, which are used when working with open file description locks." msgstr "" -#: ../../library/fcntl.rst:44 -msgid "" -"On Linux >= 2.6.11, the :mod:`!fcntl` module exposes the ``F_GETPIPE_SZ`` " -"and ``F_SETPIPE_SZ`` constants, which allow to check and modify a pipe's " -"size respectively." +msgid "On Linux >= 2.6.11, the :mod:`!fcntl` module exposes the ``F_GETPIPE_SZ`` and ``F_SETPIPE_SZ`` constants, which allow to check and modify a pipe's size respectively." msgstr "" -#: ../../library/fcntl.rst:49 -msgid "" -"On FreeBSD, the :mod:`!fcntl` module exposes the ``F_DUP2FD`` and " -"``F_DUP2FD_CLOEXEC`` constants, which allow to duplicate a file descriptor, " -"the latter setting ``FD_CLOEXEC`` flag in addition." +msgid "On FreeBSD, the :mod:`!fcntl` module exposes the ``F_DUP2FD`` and ``F_DUP2FD_CLOEXEC`` constants, which allow to duplicate a file descriptor, the latter setting ``FD_CLOEXEC`` flag in addition." msgstr "" -#: ../../library/fcntl.rst:54 -msgid "" -"On Linux >= 4.5, the :mod:`!fcntl` module exposes the ``FICLONE`` and " -"``FICLONERANGE`` constants, which allow to share some data of one file with " -"another file by reflinking on some filesystems (e.g., btrfs, OCFS2, and " -"XFS). This behavior is commonly referred to as \"copy-on-write\"." +msgid "On Linux >= 4.5, the :mod:`!fcntl` module exposes the ``FICLONE`` and ``FICLONERANGE`` constants, which allow to share some data of one file with another file by reflinking on some filesystems (e.g., btrfs, OCFS2, and XFS). This behavior is commonly referred to as \"copy-on-write\"." msgstr "" -#: ../../library/fcntl.rst:60 -msgid "" -"On Linux >= 2.6.32, the :mod:`!fcntl` module exposes the ``F_GETOWN_EX``, " -"``F_SETOWN_EX``, ``F_OWNER_TID``, ``F_OWNER_PID``, ``F_OWNER_PGRP`` " -"constants, which allow to direct I/O availability signals to a specific " -"thread, process, or process group. On Linux >= 4.13, the :mod:`!fcntl` " -"module exposes the ``F_GET_RW_HINT``, ``F_SET_RW_HINT``, " -"``F_GET_FILE_RW_HINT``, ``F_SET_FILE_RW_HINT``, and ``RWH_WRITE_LIFE_*`` " -"constants, which allow to inform the kernel about the relative expected " -"lifetime of writes on a given inode or via a particular open file " -"description. On Linux >= 5.1 and NetBSD, the :mod:`!fcntl` module exposes " -"the ``F_SEAL_FUTURE_WRITE`` constant for use with ``F_ADD_SEALS`` and " -"``F_GET_SEALS`` operations. On FreeBSD, the :mod:`!fcntl` module exposes the " -"``F_READAHEAD``, ``F_ISUNIONSTACK``, and ``F_KINFO`` constants. On macOS and " -"FreeBSD, the :mod:`!fcntl` module exposes the ``F_RDAHEAD`` constant. On " -"NetBSD and AIX, the :mod:`!fcntl` module exposes the ``F_CLOSEM`` constant. " -"On NetBSD, the :mod:`!fcntl` module exposes the ``F_MAXFD`` constant. On " -"macOS and NetBSD, the :mod:`!fcntl` module exposes the ``F_GETNOSIGPIPE`` " -"and ``F_SETNOSIGPIPE`` constant." -msgstr "" - -#: ../../library/fcntl.rst:81 -msgid "" -"On Linux >= 6.1, the :mod:`!fcntl` module exposes the ``F_DUPFD_QUERY`` to " -"query a file descriptor pointing to the same file." +msgid "On Linux >= 2.6.32, the :mod:`!fcntl` module exposes the ``F_GETOWN_EX``, ``F_SETOWN_EX``, ``F_OWNER_TID``, ``F_OWNER_PID``, ``F_OWNER_PGRP`` constants, which allow to direct I/O availability signals to a specific thread, process, or process group. On Linux >= 4.13, the :mod:`!fcntl` module exposes the ``F_GET_RW_HINT``, ``F_SET_RW_HINT``, ``F_GET_FILE_RW_HINT``, ``F_SET_FILE_RW_HINT``, and ``RWH_WRITE_LIFE_*`` constants, which allow to inform the kernel about the relative expected lifetime of writes on a given inode or via a particular open file description. On Linux >= 5.1 and NetBSD, the :mod:`!fcntl` module exposes the ``F_SEAL_FUTURE_WRITE`` constant for use with ``F_ADD_SEALS`` and ``F_GET_SEALS`` operations. On FreeBSD, the :mod:`!fcntl` module exposes the ``F_READAHEAD``, ``F_ISUNIONSTACK``, and ``F_KINFO`` constants. On macOS and FreeBSD, the :mod:`!fcntl` module exposes the ``F_RDAHEAD`` constant. On NetBSD and AIX, the :mod:`!fcntl` module exposes the ``F_CLOSEM`` constant. On NetBSD, the :mod:`!fcntl` module exposes the ``F_MAXFD`` constant. On macOS and NetBSD, the :mod:`!fcntl` module exposes the ``F_GETNOSIGPIPE`` and ``F_SETNOSIGPIPE`` constant." +msgstr "" + +msgid "On Linux >= 6.1, the :mod:`!fcntl` module exposes the ``F_DUPFD_QUERY`` to query a file descriptor pointing to the same file." msgstr "" -#: ../../library/fcntl.rst:85 msgid "The module defines the following functions:" msgstr "" -#: ../../library/fcntl.rst:90 -msgid "" -"Perform the operation *cmd* on file descriptor *fd* (file objects providing " -"a :meth:`~io.IOBase.fileno` method are accepted as well). The values used " -"for *cmd* are operating system dependent, and are available as constants in " -"the :mod:`!fcntl` module, using the same names as used in the relevant C " -"header files. The argument *arg* can either be an integer value, " -"a :term:`bytes-like object`, or a string. The type and size of *arg* must " -"match the type and size of the argument of the operation as specified in the " -"relevant C documentation." +msgid "Perform the operation *cmd* on file descriptor *fd* (file objects providing a :meth:`~io.IOBase.fileno` method are accepted as well). The values used for *cmd* are operating system dependent, and are available as constants in the :mod:`!fcntl` module, using the same names as used in the relevant C header files. The argument *arg* can either be an integer value, a :term:`bytes-like object`, or a string. The type and size of *arg* must match the type and size of the argument of the operation as specified in the relevant C documentation." msgstr "" -#: ../../library/fcntl.rst:99 -msgid "" -"When *arg* is an integer, the function returns the integer return value of " -"the C :c:func:`fcntl` call." +msgid "When *arg* is an integer, the function returns the integer return value of the C :c:func:`fcntl` call." msgstr "" -#: ../../library/fcntl.rst:102 -msgid "" -"When the argument is bytes-like object, it represents a binary structure, " -"for example, created by :func:`struct.pack`. A string value is encoded to " -"binary using the UTF-8 encoding. The binary data is copied to a buffer whose " -"address is passed to the C :c:func:`fcntl` call. The return value after a " -"successful call is the contents of the buffer, converted to a :class:`bytes` " -"object. The length of the returned object will be the same as the length of " -"the *arg* argument. This is limited to 1024 bytes." +msgid "When the argument is bytes-like object, it represents a binary structure, for example, created by :func:`struct.pack`. A string value is encoded to binary using the UTF-8 encoding. The binary data is copied to a buffer whose address is passed to the C :c:func:`fcntl` call. The return value after a successful call is the contents of the buffer, converted to a :class:`bytes` object. The length of the returned object will be the same as the length of the *arg* argument. This is limited to 1024 bytes." msgstr "" -#: ../../library/fcntl.rst:111 msgid "If the :c:func:`fcntl` call fails, an :exc:`OSError` is raised." msgstr "" -#: ../../library/fcntl.rst:114 -msgid "" -"If the type or the size of *arg* does not match the type or size of the " -"argument of the operation (for example, if an integer is passed when a " -"pointer is expected, or the information returned in the buffer by the " -"operating system is larger than 1024 bytes), this is most likely to result " -"in a segmentation violation or a more subtle data corruption." +msgid "If the type or the size of *arg* does not match the type or size of the argument of the operation (for example, if an integer is passed when a pointer is expected, or the information returned in the buffer by the operating system is larger than 1024 bytes), this is most likely to result in a segmentation violation or a more subtle data corruption." msgstr "" -#: ../../library/fcntl.rst:121 -msgid "" -"Raises an :ref:`auditing event ` ``fcntl.fcntl`` with arguments " -"``fd``, ``cmd``, ``arg``." +msgid "Raises an :ref:`auditing event ` ``fcntl.fcntl`` with arguments ``fd``, ``cmd``, ``arg``." msgstr "" -#: ../../library/fcntl.rst:123 -msgid "" -"Add support of arbitrary :term:`bytes-like objects `, not " -"only :class:`bytes`." +msgid "Add support of arbitrary :term:`bytes-like objects `, not only :class:`bytes`." msgstr "" -#: ../../library/fcntl.rst:130 -msgid "" -"This function is identical to the :func:`~fcntl.fcntl` function, except that " -"the argument handling is even more complicated." +msgid "This function is identical to the :func:`~fcntl.fcntl` function, except that the argument handling is even more complicated." msgstr "" -#: ../../library/fcntl.rst:133 -msgid "" -"The *request* parameter is limited to values that can fit in 32-bits or 64-" -"bits, depending on the platform. Additional constants of interest for use as " -"the *request* argument can be found in the :mod:`termios` module, under the " -"same names as used in the relevant C header files." +msgid "The *request* parameter is limited to values that can fit in 32-bits or 64-bits, depending on the platform. Additional constants of interest for use as the *request* argument can be found in the :mod:`termios` module, under the same names as used in the relevant C header files." msgstr "" -#: ../../library/fcntl.rst:139 -msgid "" -"The parameter *arg* can be an integer, a :term:`bytes-like object`, or a " -"string. The type and size of *arg* must match the type and size of the " -"argument of the operation as specified in the relevant C documentation." +msgid "The parameter *arg* can be an integer, a :term:`bytes-like object`, or a string. The type and size of *arg* must match the type and size of the argument of the operation as specified in the relevant C documentation." msgstr "" -#: ../../library/fcntl.rst:144 -msgid "" -"If *arg* does not support the read-write buffer interface or the " -"*mutate_flag* is false, behavior is as for the :func:`~fcntl.fcntl` function." +msgid "If *arg* does not support the read-write buffer interface or the *mutate_flag* is false, behavior is as for the :func:`~fcntl.fcntl` function." msgstr "" -#: ../../library/fcntl.rst:148 -msgid "" -"If *arg* supports the read-write buffer interface (like :class:`bytearray`) " -"and *mutate_flag* is true (the default), then the buffer is (in effect) " -"passed to the underlying :c:func:`!ioctl` system call, the latter's return " -"code is passed back to the calling Python, and the buffer's new contents " -"reflect the action of the :c:func:`ioctl`. This is a slight simplification, " -"because if the supplied buffer is less than 1024 bytes long it is first " -"copied into a static buffer 1024 bytes long which is then passed " -"to :func:`ioctl` and copied back into the supplied buffer." +msgid "If *arg* supports the read-write buffer interface (like :class:`bytearray`) and *mutate_flag* is true (the default), then the buffer is (in effect) passed to the underlying :c:func:`!ioctl` system call, the latter's return code is passed back to the calling Python, and the buffer's new contents reflect the action of the :c:func:`ioctl`. This is a slight simplification, because if the supplied buffer is less than 1024 bytes long it is first copied into a static buffer 1024 bytes long which is then passed to :func:`ioctl` and copied back into the supplied buffer." msgstr "" -#: ../../library/fcntl.rst:157 -msgid "" -"If the :c:func:`ioctl` call fails, an :exc:`OSError` exception is raised." +msgid "If the :c:func:`ioctl` call fails, an :exc:`OSError` exception is raised." msgstr "" -#: ../../library/fcntl.rst:160 -msgid "" -"If the type or size of *arg* does not match the type or size of the " -"operation's argument (for example, if an integer is passed when a pointer is " -"expected, or the information returned in the buffer by the operating system " -"is larger than 1024 bytes, or the size of the mutable bytes-like object is " -"too small), this is most likely to result in a segmentation violation or a " -"more subtle data corruption." +msgid "If the type or size of *arg* does not match the type or size of the operation's argument (for example, if an integer is passed when a pointer is expected, or the information returned in the buffer by the operating system is larger than 1024 bytes, or the size of the mutable bytes-like object is too small), this is most likely to result in a segmentation violation or a more subtle data corruption." msgstr "" -#: ../../library/fcntl.rst:168 msgid "An example::" msgstr "" -#: ../../library/fcntl.rst:170 msgid "" ">>> import array, fcntl, struct, termios, os\n" ">>> os.getpgrp()\n" @@ -249,110 +120,60 @@ msgid "" "array('h', [13341])" msgstr "" -#: ../../library/fcntl.rst:181 -msgid "" -"Raises an :ref:`auditing event ` ``fcntl.ioctl`` with arguments " -"``fd``, ``request``, ``arg``." +msgid "Raises an :ref:`auditing event ` ``fcntl.ioctl`` with arguments ``fd``, ``request``, ``arg``." msgstr "" -#: ../../library/fcntl.rst:183 -msgid "" -"The GIL is always released during a system call. System calls failing with " -"EINTR are automatically retried." +msgid "The GIL is always released during a system call. System calls failing with EINTR are automatically retried." msgstr "" -#: ../../library/fcntl.rst:189 -msgid "" -"Perform the lock operation *operation* on file descriptor *fd* (file objects " -"providing a :meth:`~io.IOBase.fileno` method are accepted as well). See the " -"Unix manual :manpage:`flock(2)` for details. (On some systems, this " -"function is emulated using :c:func:`fcntl`.)" +msgid "Perform the lock operation *operation* on file descriptor *fd* (file objects providing a :meth:`~io.IOBase.fileno` method are accepted as well). See the Unix manual :manpage:`flock(2)` for details. (On some systems, this function is emulated using :c:func:`fcntl`.)" msgstr "" -#: ../../library/fcntl.rst:194 -msgid "" -"If the :c:func:`flock` call fails, an :exc:`OSError` exception is raised." +msgid "If the :c:func:`flock` call fails, an :exc:`OSError` exception is raised." msgstr "" -#: ../../library/fcntl.rst:196 -msgid "" -"Raises an :ref:`auditing event ` ``fcntl.flock`` with arguments " -"``fd``, ``operation``." +msgid "Raises an :ref:`auditing event ` ``fcntl.flock`` with arguments ``fd``, ``operation``." msgstr "" -#: ../../library/fcntl.rst:201 -msgid "" -"This is essentially a wrapper around the :func:`~fcntl.fcntl` locking calls. " -"*fd* is the file descriptor (file objects providing " -"a :meth:`~io.IOBase.fileno` method are accepted as well) of the file to lock " -"or unlock, and *cmd* is one of the following values:" +msgid "This is essentially a wrapper around the :func:`~fcntl.fcntl` locking calls. *fd* is the file descriptor (file objects providing a :meth:`~io.IOBase.fileno` method are accepted as well) of the file to lock or unlock, and *cmd* is one of the following values:" msgstr "" -#: ../../library/fcntl.rst:208 msgid "Release an existing lock." msgstr "" -#: ../../library/fcntl.rst:212 msgid "Acquire a shared lock." msgstr "" -#: ../../library/fcntl.rst:216 msgid "Acquire an exclusive lock." msgstr "" -#: ../../library/fcntl.rst:220 -msgid "" -"Bitwise OR with any of the other three ``LOCK_*`` constants to make the " -"request non-blocking." +msgid "Bitwise OR with any of the other three ``LOCK_*`` constants to make the request non-blocking." msgstr "" -#: ../../library/fcntl.rst:223 -msgid "" -"If :const:`!LOCK_NB` is used and the lock cannot be acquired, " -"an :exc:`OSError` will be raised and the exception will have an *errno* " -"attribute set to :const:`~errno.EACCES` or :const:`~errno.EAGAIN` (depending " -"on the operating system; for portability, check for both values). On at " -"least some systems, :const:`!LOCK_EX` can only be used if the file " -"descriptor refers to a file opened for writing." +msgid "If :const:`!LOCK_NB` is used and the lock cannot be acquired, an :exc:`OSError` will be raised and the exception will have an *errno* attribute set to :const:`~errno.EACCES` or :const:`~errno.EAGAIN` (depending on the operating system; for portability, check for both values). On at least some systems, :const:`!LOCK_EX` can only be used if the file descriptor refers to a file opened for writing." msgstr "" -#: ../../library/fcntl.rst:230 -msgid "" -"*len* is the number of bytes to lock, *start* is the byte offset at which " -"the lock starts, relative to *whence*, and *whence* is as " -"with :func:`io.IOBase.seek`, specifically:" +msgid "*len* is the number of bytes to lock, *start* is the byte offset at which the lock starts, relative to *whence*, and *whence* is as with :func:`io.IOBase.seek`, specifically:" msgstr "" -#: ../../library/fcntl.rst:234 msgid "``0`` -- relative to the start of the file (:const:`os.SEEK_SET`)" msgstr "" -#: ../../library/fcntl.rst:235 msgid "``1`` -- relative to the current buffer position (:const:`os.SEEK_CUR`)" msgstr "" -#: ../../library/fcntl.rst:236 msgid "``2`` -- relative to the end of the file (:const:`os.SEEK_END`)" msgstr "" -#: ../../library/fcntl.rst:238 -msgid "" -"The default for *start* is 0, which means to start at the beginning of the " -"file. The default for *len* is 0 which means to lock to the end of the " -"file. The default for *whence* is also 0." +msgid "The default for *start* is 0, which means to start at the beginning of the file. The default for *len* is 0 which means to lock to the end of the file. The default for *whence* is also 0." msgstr "" -#: ../../library/fcntl.rst:242 -msgid "" -"Raises an :ref:`auditing event ` ``fcntl.lockf`` with arguments " -"``fd``, ``cmd``, ``len``, ``start``, ``whence``." +msgid "Raises an :ref:`auditing event ` ``fcntl.lockf`` with arguments ``fd``, ``cmd``, ``len``, ``start``, ``whence``." msgstr "" -#: ../../library/fcntl.rst:244 msgid "Examples (all on a SVR4 compliant system)::" msgstr "" -#: ../../library/fcntl.rst:246 msgid "" "import struct, fcntl, os\n" "\n" @@ -363,33 +184,20 @@ msgid "" "rv = fcntl.fcntl(f, fcntl.F_SETLKW, lockdata)" msgstr "" -#: ../../library/fcntl.rst:254 -msgid "" -"Note that in the first example the return value variable *rv* will hold an " -"integer value; in the second example it will hold a :class:`bytes` object. " -"The structure lay-out for the *lockdata* variable is system dependent --- " -"therefore using the :func:`flock` call may be better." +msgid "Note that in the first example the return value variable *rv* will hold an integer value; in the second example it will hold a :class:`bytes` object. The structure lay-out for the *lockdata* variable is system dependent --- therefore using the :func:`flock` call may be better." msgstr "" -#: ../../library/fcntl.rst:262 msgid "Module :mod:`os`" msgstr "" -#: ../../library/fcntl.rst:263 -msgid "" -"If the locking flags :const:`~os.O_SHLOCK` and :const:`~os.O_EXLOCK` are " -"present in the :mod:`os` module (on BSD only), the :func:`os.open` function " -"provides an alternative to the :func:`lockf` and :func:`flock` functions." +msgid "If the locking flags :const:`~os.O_SHLOCK` and :const:`~os.O_EXLOCK` are present in the :mod:`os` module (on BSD only), the :func:`os.open` function provides an alternative to the :func:`lockf` and :func:`flock` functions." msgstr "" -#: ../../library/fcntl.rst:9 msgid "UNIX" msgstr "" -#: ../../library/fcntl.rst:9 msgid "file control" msgstr "" -#: ../../library/fcntl.rst:9 msgid "I/O control" msgstr "" diff --git a/library/filecmp.po b/library/filecmp.po index 0afb6a45..c3512348 100644 --- a/library/filecmp.po +++ b/library/filecmp.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:06+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,230 +21,129 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/filecmp.rst:2 msgid ":mod:`!filecmp` --- File and Directory Comparisons" msgstr "" -#: ../../library/filecmp.rst:9 msgid "**Source code:** :source:`Lib/filecmp.py`" msgstr "" -#: ../../library/filecmp.rst:13 -msgid "" -"The :mod:`!filecmp` module defines functions to compare files and " -"directories, with various optional time/correctness trade-offs. For " -"comparing files, see also the :mod:`difflib` module." +msgid "The :mod:`!filecmp` module defines functions to compare files and directories, with various optional time/correctness trade-offs. For comparing files, see also the :mod:`difflib` module." msgstr "" -#: ../../library/filecmp.rst:17 msgid "The :mod:`!filecmp` module defines the following functions:" msgstr "" -#: ../../library/filecmp.rst:22 -msgid "" -"Compare the files named *f1* and *f2*, returning ``True`` if they seem " -"equal, ``False`` otherwise." +msgid "Compare the files named *f1* and *f2*, returning ``True`` if they seem equal, ``False`` otherwise." msgstr "" -#: ../../library/filecmp.rst:25 -msgid "" -"If *shallow* is true and the :func:`os.stat` signatures (file type, size, " -"and modification time) of both files are identical, the files are taken to " -"be equal." +msgid "If *shallow* is true and the :func:`os.stat` signatures (file type, size, and modification time) of both files are identical, the files are taken to be equal." msgstr "" -#: ../../library/filecmp.rst:29 -msgid "" -"Otherwise, the files are treated as different if their sizes or contents " -"differ." +msgid "Otherwise, the files are treated as different if their sizes or contents differ." msgstr "" -#: ../../library/filecmp.rst:31 -msgid "" -"Note that no external programs are called from this function, giving it " -"portability and efficiency." +msgid "Note that no external programs are called from this function, giving it portability and efficiency." msgstr "" -#: ../../library/filecmp.rst:34 -msgid "" -"This function uses a cache for past comparisons and the results, with cache " -"entries invalidated if the :func:`os.stat` information for the file " -"changes. The entire cache may be cleared using :func:`clear_cache`." +msgid "This function uses a cache for past comparisons and the results, with cache entries invalidated if the :func:`os.stat` information for the file changes. The entire cache may be cleared using :func:`clear_cache`." msgstr "" -#: ../../library/filecmp.rst:41 -msgid "" -"Compare the files in the two directories *a* and *b* whose names are given " -"by *common*." +msgid "Compare the files in the two directories *a* and *b* whose names are given by *common*." msgstr "" -#: ../../library/filecmp.rst:44 -msgid "" -"Returns three lists of file names: *match*, *mismatch*, *errors*. *match* " -"contains the list of files that match, *mismatch* contains the names of " -"those that don't, and *errors* lists the names of files which could not be " -"compared. Files are listed in *errors* if they don't exist in one of the " -"directories, the user lacks permission to read them or if the comparison " -"could not be done for some other reason." +msgid "Returns three lists of file names: *match*, *mismatch*, *errors*. *match* contains the list of files that match, *mismatch* contains the names of those that don't, and *errors* lists the names of files which could not be compared. Files are listed in *errors* if they don't exist in one of the directories, the user lacks permission to read them or if the comparison could not be done for some other reason." msgstr "" -#: ../../library/filecmp.rst:51 -msgid "" -"The *shallow* parameter has the same meaning and default value as " -"for :func:`filecmp.cmp`." +msgid "The *shallow* parameter has the same meaning and default value as for :func:`filecmp.cmp`." msgstr "" -#: ../../library/filecmp.rst:54 -msgid "" -"For example, ``cmpfiles('a', 'b', ['c', 'd/e'])`` will compare ``a/c`` with " -"``b/c`` and ``a/d/e`` with ``b/d/e``. ``'c'`` and ``'d/e'`` will each be in " -"one of the three returned lists." +msgid "For example, ``cmpfiles('a', 'b', ['c', 'd/e'])`` will compare ``a/c`` with ``b/c`` and ``a/d/e`` with ``b/d/e``. ``'c'`` and ``'d/e'`` will each be in one of the three returned lists." msgstr "" -#: ../../library/filecmp.rst:61 -msgid "" -"Clear the filecmp cache. This may be useful if a file is compared so quickly " -"after it is modified that it is within the mtime resolution of the " -"underlying filesystem." +msgid "Clear the filecmp cache. This may be useful if a file is compared so quickly after it is modified that it is within the mtime resolution of the underlying filesystem." msgstr "" -#: ../../library/filecmp.rst:71 msgid "The :class:`dircmp` class" msgstr "" -#: ../../library/filecmp.rst:75 -msgid "" -"Construct a new directory comparison object, to compare the directories *a* " -"and *b*. *ignore* is a list of names to ignore, and defaults " -"to :const:`filecmp.DEFAULT_IGNORES`. *hide* is a list of names to hide, and " -"defaults to ``[os.curdir, os.pardir]``." +msgid "Construct a new directory comparison object, to compare the directories *a* and *b*. *ignore* is a list of names to ignore, and defaults to :const:`filecmp.DEFAULT_IGNORES`. *hide* is a list of names to hide, and defaults to ``[os.curdir, os.pardir]``." msgstr "" -#: ../../library/filecmp.rst:80 -msgid "" -"The :class:`dircmp` class compares files by doing *shallow* comparisons as " -"described for :func:`filecmp.cmp` by default using the *shallow* parameter." +msgid "The :class:`dircmp` class compares files by doing *shallow* comparisons as described for :func:`filecmp.cmp` by default using the *shallow* parameter." msgstr "" -#: ../../library/filecmp.rst:86 msgid "Added the *shallow* parameter." msgstr "" -#: ../../library/filecmp.rst:88 msgid "The :class:`dircmp` class provides the following methods:" msgstr "" -#: ../../library/filecmp.rst:92 msgid "Print (to :data:`sys.stdout`) a comparison between *a* and *b*." msgstr "" -#: ../../library/filecmp.rst:96 -msgid "" -"Print a comparison between *a* and *b* and common immediate subdirectories." +msgid "Print a comparison between *a* and *b* and common immediate subdirectories." msgstr "" -#: ../../library/filecmp.rst:101 -msgid "" -"Print a comparison between *a* and *b* and common subdirectories " -"(recursively)." +msgid "Print a comparison between *a* and *b* and common subdirectories (recursively)." msgstr "" -#: ../../library/filecmp.rst:104 -msgid "" -"The :class:`dircmp` class offers a number of interesting attributes that may " -"be used to get various bits of information about the directory trees being " -"compared." +msgid "The :class:`dircmp` class offers a number of interesting attributes that may be used to get various bits of information about the directory trees being compared." msgstr "" -#: ../../library/filecmp.rst:108 -msgid "" -"Note that via :meth:`~object.__getattr__` hooks, all attributes are computed " -"lazily, so there is no speed penalty if only those attributes which are " -"lightweight to compute are used." +msgid "Note that via :meth:`~object.__getattr__` hooks, all attributes are computed lazily, so there is no speed penalty if only those attributes which are lightweight to compute are used." msgstr "" -#: ../../library/filecmp.rst:115 msgid "The directory *a*." msgstr "" -#: ../../library/filecmp.rst:120 msgid "The directory *b*." msgstr "" -#: ../../library/filecmp.rst:125 msgid "Files and subdirectories in *a*, filtered by *hide* and *ignore*." msgstr "" -#: ../../library/filecmp.rst:130 msgid "Files and subdirectories in *b*, filtered by *hide* and *ignore*." msgstr "" -#: ../../library/filecmp.rst:135 msgid "Files and subdirectories in both *a* and *b*." msgstr "" -#: ../../library/filecmp.rst:140 msgid "Files and subdirectories only in *a*." msgstr "" -#: ../../library/filecmp.rst:145 msgid "Files and subdirectories only in *b*." msgstr "" -#: ../../library/filecmp.rst:150 msgid "Subdirectories in both *a* and *b*." msgstr "" -#: ../../library/filecmp.rst:155 msgid "Files in both *a* and *b*." msgstr "" -#: ../../library/filecmp.rst:160 -msgid "" -"Names in both *a* and *b*, such that the type differs between the " -"directories, or names for which :func:`os.stat` reports an error." +msgid "Names in both *a* and *b*, such that the type differs between the directories, or names for which :func:`os.stat` reports an error." msgstr "" -#: ../../library/filecmp.rst:166 -msgid "" -"Files which are identical in both *a* and *b*, using the class's file " -"comparison operator." +msgid "Files which are identical in both *a* and *b*, using the class's file comparison operator." msgstr "" -#: ../../library/filecmp.rst:172 -msgid "" -"Files which are in both *a* and *b*, whose contents differ according to the " -"class's file comparison operator." +msgid "Files which are in both *a* and *b*, whose contents differ according to the class's file comparison operator." msgstr "" -#: ../../library/filecmp.rst:178 msgid "Files which are in both *a* and *b*, but could not be compared." msgstr "" -#: ../../library/filecmp.rst:183 -msgid "" -"A dictionary mapping names in :attr:`common_dirs` to :class:`dircmp` " -"instances (or MyDirCmp instances if this instance is of type MyDirCmp, a " -"subclass of :class:`dircmp`)." +msgid "A dictionary mapping names in :attr:`common_dirs` to :class:`dircmp` instances (or MyDirCmp instances if this instance is of type MyDirCmp, a subclass of :class:`dircmp`)." msgstr "" -#: ../../library/filecmp.rst:187 -msgid "" -"Previously entries were always :class:`dircmp` instances. Now entries are " -"the same type as *self*, if *self* is a subclass of :class:`dircmp`." +msgid "Previously entries were always :class:`dircmp` instances. Now entries are the same type as *self*, if *self* is a subclass of :class:`dircmp`." msgstr "" -#: ../../library/filecmp.rst:196 msgid "List of directories ignored by :class:`dircmp` by default." msgstr "" -#: ../../library/filecmp.rst:199 -msgid "" -"Here is a simplified example of using the ``subdirs`` attribute to search " -"recursively through two directories to show common different files::" +msgid "Here is a simplified example of using the ``subdirs`` attribute to search recursively through two directories to show common different files::" msgstr "" -#: ../../library/filecmp.rst:202 msgid "" ">>> from filecmp import dircmp\n" ">>> def print_diff_files(dcmp):\n" diff --git a/library/fileformats.po b/library/fileformats.po index b4e40f39..a931f5a2 100644 --- a/library/fileformats.po +++ b/library/fileformats.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:06+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,12 +21,8 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/fileformats.rst:5 msgid "File Formats" msgstr "" -#: ../../library/fileformats.rst:7 -msgid "" -"The modules described in this chapter parse various miscellaneous file " -"formats that aren't markup languages and are not related to e-mail." +msgid "The modules described in this chapter parse various miscellaneous file formats that aren't markup languages and are not related to e-mail." msgstr "" diff --git a/library/fileinput.po b/library/fileinput.po index a1e725d1..1fd61d28 100644 --- a/library/fileinput.po +++ b/library/fileinput.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:06+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,301 +21,148 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/fileinput.rst:2 msgid ":mod:`!fileinput` --- Iterate over lines from multiple input streams" msgstr "" -#: ../../library/fileinput.rst:10 msgid "**Source code:** :source:`Lib/fileinput.py`" msgstr "" -#: ../../library/fileinput.rst:14 -msgid "" -"This module implements a helper class and functions to quickly write a loop " -"over standard input or a list of files. If you just want to read or write " -"one file see :func:`open`." +msgid "This module implements a helper class and functions to quickly write a loop over standard input or a list of files. If you just want to read or write one file see :func:`open`." msgstr "" -#: ../../library/fileinput.rst:18 msgid "The typical use is::" msgstr "" -#: ../../library/fileinput.rst:20 msgid "" "import fileinput\n" "for line in fileinput.input(encoding=\"utf-8\"):\n" " process(line)" msgstr "" -#: ../../library/fileinput.rst:24 -msgid "" -"This iterates over the lines of all files listed in ``sys.argv[1:]``, " -"defaulting to ``sys.stdin`` if the list is empty. If a filename is ``'-'``, " -"it is also replaced by ``sys.stdin`` and the optional arguments *mode* and " -"*openhook* are ignored. To specify an alternative list of filenames, pass " -"it as the first argument to :func:`.input`. A single file name is also " -"allowed." +msgid "This iterates over the lines of all files listed in ``sys.argv[1:]``, defaulting to ``sys.stdin`` if the list is empty. If a filename is ``'-'``, it is also replaced by ``sys.stdin`` and the optional arguments *mode* and *openhook* are ignored. To specify an alternative list of filenames, pass it as the first argument to :func:`.input`. A single file name is also allowed." msgstr "" -#: ../../library/fileinput.rst:30 -msgid "" -"All files are opened in text mode by default, but you can override this by " -"specifying the *mode* parameter in the call to :func:`.input` " -"or :class:`FileInput`. If an I/O error occurs during opening or reading a " -"file, :exc:`OSError` is raised." +msgid "All files are opened in text mode by default, but you can override this by specifying the *mode* parameter in the call to :func:`.input` or :class:`FileInput`. If an I/O error occurs during opening or reading a file, :exc:`OSError` is raised." msgstr "" -#: ../../library/fileinput.rst:35 msgid ":exc:`IOError` used to be raised; it is now an alias of :exc:`OSError`." msgstr "" -#: ../../library/fileinput.rst:38 -msgid "" -"If ``sys.stdin`` is used more than once, the second and further use will " -"return no lines, except perhaps for interactive use, or if it has been " -"explicitly reset (e.g. using ``sys.stdin.seek(0)``)." +msgid "If ``sys.stdin`` is used more than once, the second and further use will return no lines, except perhaps for interactive use, or if it has been explicitly reset (e.g. using ``sys.stdin.seek(0)``)." msgstr "" -#: ../../library/fileinput.rst:42 -msgid "" -"Empty files are opened and immediately closed; the only time their presence " -"in the list of filenames is noticeable at all is when the last file opened " -"is empty." +msgid "Empty files are opened and immediately closed; the only time their presence in the list of filenames is noticeable at all is when the last file opened is empty." msgstr "" -#: ../../library/fileinput.rst:46 -msgid "" -"Lines are returned with any newlines intact, which means that the last line " -"in a file may not have one." +msgid "Lines are returned with any newlines intact, which means that the last line in a file may not have one." msgstr "" -#: ../../library/fileinput.rst:49 -msgid "" -"You can control how files are opened by providing an opening hook via the " -"*openhook* parameter to :func:`fileinput.input` or :func:`FileInput`. The " -"hook must be a function that takes two arguments, *filename* and *mode*, and " -"returns an accordingly opened file-like object. If *encoding* and/or " -"*errors* are specified, they will be passed to the hook as additional " -"keyword arguments. This module provides a :func:`hook_compressed` to support " -"compressed files." +msgid "You can control how files are opened by providing an opening hook via the *openhook* parameter to :func:`fileinput.input` or :func:`FileInput`. The hook must be a function that takes two arguments, *filename* and *mode*, and returns an accordingly opened file-like object. If *encoding* and/or *errors* are specified, they will be passed to the hook as additional keyword arguments. This module provides a :func:`hook_compressed` to support compressed files." msgstr "" -#: ../../library/fileinput.rst:56 msgid "The following function is the primary interface of this module:" msgstr "" -#: ../../library/fileinput.rst:61 -msgid "" -"Create an instance of the :class:`FileInput` class. The instance will be " -"used as global state for the functions of this module, and is also returned " -"to use during iteration. The parameters to this function will be passed " -"along to the constructor of the :class:`FileInput` class." +msgid "Create an instance of the :class:`FileInput` class. The instance will be used as global state for the functions of this module, and is also returned to use during iteration. The parameters to this function will be passed along to the constructor of the :class:`FileInput` class." msgstr "" -#: ../../library/fileinput.rst:66 -msgid "" -"The :class:`FileInput` instance can be used as a context manager in " -"the :keyword:`with` statement. In this example, *input* is closed after " -"the :keyword:`!with` statement is exited, even if an exception occurs::" +msgid "The :class:`FileInput` instance can be used as a context manager in the :keyword:`with` statement. In this example, *input* is closed after the :keyword:`!with` statement is exited, even if an exception occurs::" msgstr "" -#: ../../library/fileinput.rst:70 msgid "" -"with fileinput.input(files=('spam.txt', 'eggs.txt'), encoding=\"utf-8\") as " -"f:\n" +"with fileinput.input(files=('spam.txt', 'eggs.txt'), encoding=\"utf-8\") as f:\n" " for line in f:\n" " process(line)" msgstr "" -#: ../../library/fileinput.rst:74 ../../library/fileinput.rst:170 msgid "Can be used as a context manager." msgstr "" -#: ../../library/fileinput.rst:77 msgid "The keyword parameters *mode* and *openhook* are now keyword-only." msgstr "" -#: ../../library/fileinput.rst:80 ../../library/fileinput.rst:176 -#: ../../library/fileinput.rst:210 msgid "The keyword-only parameter *encoding* and *errors* are added." msgstr "" -#: ../../library/fileinput.rst:84 -msgid "" -"The following functions use the global state created " -"by :func:`fileinput.input`; if there is no active state, :exc:`RuntimeError` " -"is raised." +msgid "The following functions use the global state created by :func:`fileinput.input`; if there is no active state, :exc:`RuntimeError` is raised." msgstr "" -#: ../../library/fileinput.rst:90 -msgid "" -"Return the name of the file currently being read. Before the first line has " -"been read, returns ``None``." +msgid "Return the name of the file currently being read. Before the first line has been read, returns ``None``." msgstr "" -#: ../../library/fileinput.rst:96 -msgid "" -"Return the integer \"file descriptor\" for the current file. When no file is " -"opened (before the first line and between files), returns ``-1``." +msgid "Return the integer \"file descriptor\" for the current file. When no file is opened (before the first line and between files), returns ``-1``." msgstr "" -#: ../../library/fileinput.rst:102 -msgid "" -"Return the cumulative line number of the line that has just been read. " -"Before the first line has been read, returns ``0``. After the last line of " -"the last file has been read, returns the line number of that line." +msgid "Return the cumulative line number of the line that has just been read. Before the first line has been read, returns ``0``. After the last line of the last file has been read, returns the line number of that line." msgstr "" -#: ../../library/fileinput.rst:109 -msgid "" -"Return the line number in the current file. Before the first line has been " -"read, returns ``0``. After the last line of the last file has been read, " -"returns the line number of that line within the file." +msgid "Return the line number in the current file. Before the first line has been read, returns ``0``. After the last line of the last file has been read, returns the line number of that line within the file." msgstr "" -#: ../../library/fileinput.rst:116 -msgid "" -"Return ``True`` if the line just read is the first line of its file, " -"otherwise return ``False``." +msgid "Return ``True`` if the line just read is the first line of its file, otherwise return ``False``." msgstr "" -#: ../../library/fileinput.rst:122 -msgid "" -"Return ``True`` if the last line was read from ``sys.stdin``, otherwise " -"return ``False``." +msgid "Return ``True`` if the last line was read from ``sys.stdin``, otherwise return ``False``." msgstr "" -#: ../../library/fileinput.rst:128 -msgid "" -"Close the current file so that the next iteration will read the first line " -"from the next file (if any); lines not read from the file will not count " -"towards the cumulative line count. The filename is not changed until after " -"the first line of the next file has been read. Before the first line has " -"been read, this function has no effect; it cannot be used to skip the first " -"file. After the last line of the last file has been read, this function has " -"no effect." +msgid "Close the current file so that the next iteration will read the first line from the next file (if any); lines not read from the file will not count towards the cumulative line count. The filename is not changed until after the first line of the next file has been read. Before the first line has been read, this function has no effect; it cannot be used to skip the first file. After the last line of the last file has been read, this function has no effect." msgstr "" -#: ../../library/fileinput.rst:138 msgid "Close the sequence." msgstr "" -#: ../../library/fileinput.rst:140 -msgid "" -"The class which implements the sequence behavior provided by the module is " -"available for subclassing as well:" +msgid "The class which implements the sequence behavior provided by the module is available for subclassing as well:" msgstr "" -#: ../../library/fileinput.rst:146 -msgid "" -"Class :class:`FileInput` is the implementation; its " -"methods :meth:`filename`, :meth:`fileno`, :meth:`lineno`, :meth:`filelineno`, :meth:`isfirstline`, :meth:`isstdin`, :meth:`nextfile` " -"and :meth:`close` correspond to the functions of the same name in the " -"module. In addition it is :term:`iterable` and has " -"a :meth:`~io.TextIOBase.readline` method which returns the next input line. " -"The sequence must be accessed in strictly sequential order; random access " -"and :meth:`~io.TextIOBase.readline` cannot be mixed." +msgid "Class :class:`FileInput` is the implementation; its methods :meth:`filename`, :meth:`fileno`, :meth:`lineno`, :meth:`filelineno`, :meth:`isfirstline`, :meth:`isstdin`, :meth:`nextfile` and :meth:`close` correspond to the functions of the same name in the module. In addition it is :term:`iterable` and has a :meth:`~io.TextIOBase.readline` method which returns the next input line. The sequence must be accessed in strictly sequential order; random access and :meth:`~io.TextIOBase.readline` cannot be mixed." msgstr "" -#: ../../library/fileinput.rst:154 -msgid "" -"With *mode* you can specify which file mode will be passed to :func:`open`. " -"It must be one of ``'r'`` and ``'rb'``." +msgid "With *mode* you can specify which file mode will be passed to :func:`open`. It must be one of ``'r'`` and ``'rb'``." msgstr "" -#: ../../library/fileinput.rst:157 -msgid "" -"The *openhook*, when given, must be a function that takes two arguments, " -"*filename* and *mode*, and returns an accordingly opened file-like object. " -"You cannot use *inplace* and *openhook* together." +msgid "The *openhook*, when given, must be a function that takes two arguments, *filename* and *mode*, and returns an accordingly opened file-like object. You cannot use *inplace* and *openhook* together." msgstr "" -#: ../../library/fileinput.rst:161 -msgid "" -"You can specify *encoding* and *errors* that is passed to :func:`open` or " -"*openhook*." +msgid "You can specify *encoding* and *errors* that is passed to :func:`open` or *openhook*." msgstr "" -#: ../../library/fileinput.rst:163 -msgid "" -"A :class:`FileInput` instance can be used as a context manager in " -"the :keyword:`with` statement. In this example, *input* is closed after " -"the :keyword:`!with` statement is exited, even if an exception occurs::" +msgid "A :class:`FileInput` instance can be used as a context manager in the :keyword:`with` statement. In this example, *input* is closed after the :keyword:`!with` statement is exited, even if an exception occurs::" msgstr "" -#: ../../library/fileinput.rst:167 msgid "" "with FileInput(files=('spam.txt', 'eggs.txt')) as input:\n" " process(input)" msgstr "" -#: ../../library/fileinput.rst:173 msgid "The keyword parameter *mode* and *openhook* are now keyword-only." msgstr "" -#: ../../library/fileinput.rst:179 -msgid "" -"The ``'rU'`` and ``'U'`` modes and the :meth:`!__getitem__` method have been " -"removed." +msgid "The ``'rU'`` and ``'U'`` modes and the :meth:`!__getitem__` method have been removed." +msgstr "" + +msgid "**Optional in-place filtering:** if the keyword argument ``inplace=True`` is passed to :func:`fileinput.input` or to the :class:`FileInput` constructor, the file is moved to a backup file and standard output is directed to the input file (if a file of the same name as the backup file already exists, it will be replaced silently). This makes it possible to write a filter that rewrites its input file in place. If the *backup* parameter is given (typically as ``backup='.'``), it specifies the extension for the backup file, and the backup file remains around; by default, the extension is ``'.bak'`` and it is deleted when the output file is closed. In-place filtering is disabled when standard input is read." msgstr "" -#: ../../library/fileinput.rst:184 -msgid "" -"**Optional in-place filtering:** if the keyword argument ``inplace=True`` is " -"passed to :func:`fileinput.input` or to the :class:`FileInput` constructor, " -"the file is moved to a backup file and standard output is directed to the " -"input file (if a file of the same name as the backup file already exists, it " -"will be replaced silently). This makes it possible to write a filter that " -"rewrites its input file in place. If the *backup* parameter is given " -"(typically as ``backup='.'``), it specifies the extension " -"for the backup file, and the backup file remains around; by default, the " -"extension is ``'.bak'`` and it is deleted when the output file is closed. " -"In-place filtering is disabled when standard input is read." -msgstr "" - -#: ../../library/fileinput.rst:196 msgid "The two following opening hooks are provided by this module:" msgstr "" -#: ../../library/fileinput.rst:200 -msgid "" -"Transparently opens files compressed with gzip and bzip2 (recognized by the " -"extensions ``'.gz'`` and ``'.bz2'``) using the :mod:`gzip` and :mod:`bz2` " -"modules. If the filename extension is not ``'.gz'`` or ``'.bz2'``, the file " -"is opened normally (ie, using :func:`open` without any decompression)." +msgid "Transparently opens files compressed with gzip and bzip2 (recognized by the extensions ``'.gz'`` and ``'.bz2'``) using the :mod:`gzip` and :mod:`bz2` modules. If the filename extension is not ``'.gz'`` or ``'.bz2'``, the file is opened normally (ie, using :func:`open` without any decompression)." msgstr "" -#: ../../library/fileinput.rst:205 -msgid "" -"The *encoding* and *errors* values are passed to :class:`io.TextIOWrapper` " -"for compressed files and open for normal files." +msgid "The *encoding* and *errors* values are passed to :class:`io.TextIOWrapper` for compressed files and open for normal files." msgstr "" -#: ../../library/fileinput.rst:208 -msgid "" -"Usage example: ``fi = " -"fileinput.FileInput(openhook=fileinput.hook_compressed, encoding=\"utf-8\")``" +msgid "Usage example: ``fi = fileinput.FileInput(openhook=fileinput.hook_compressed, encoding=\"utf-8\")``" msgstr "" -#: ../../library/fileinput.rst:216 -msgid "" -"Returns a hook which opens each file with :func:`open`, using the given " -"*encoding* and *errors* to read the file." +msgid "Returns a hook which opens each file with :func:`open`, using the given *encoding* and *errors* to read the file." msgstr "" -#: ../../library/fileinput.rst:219 -msgid "" -"Usage example: ``fi = " -"fileinput.FileInput(openhook=fileinput.hook_encoded(\"utf-8\", " -"\"surrogateescape\"))``" +msgid "Usage example: ``fi = fileinput.FileInput(openhook=fileinput.hook_encoded(\"utf-8\", \"surrogateescape\"))``" msgstr "" -#: ../../library/fileinput.rst:223 msgid "Added the optional *errors* parameter." msgstr "" -#: ../../library/fileinput.rst:226 -msgid "" -"This function is deprecated since :func:`fileinput.input` " -"and :class:`FileInput` now have *encoding* and *errors* parameters." +msgid "This function is deprecated since :func:`fileinput.input` and :class:`FileInput` now have *encoding* and *errors* parameters." msgstr "" diff --git a/library/filesys.po b/library/filesys.po index ffd07015..136f703d 100644 --- a/library/filesys.po +++ b/library/filesys.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:06+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,42 +21,26 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/filesys.rst:5 msgid "File and Directory Access" msgstr "" -#: ../../library/filesys.rst:7 -msgid "" -"The modules described in this chapter deal with disk files and directories. " -"For example, there are modules for reading the properties of files, " -"manipulating paths in a portable way, and creating temporary files. The " -"full list of modules in this chapter is:" +msgid "The modules described in this chapter deal with disk files and directories. For example, there are modules for reading the properties of files, manipulating paths in a portable way, and creating temporary files. The full list of modules in this chapter is:" msgstr "" -#: ../../library/filesys.rst:28 msgid "Module :mod:`os`" msgstr "" -#: ../../library/filesys.rst:29 -msgid "" -"Operating system interfaces, including functions to work with files at a " -"lower level than Python :term:`file objects `." +msgid "Operating system interfaces, including functions to work with files at a lower level than Python :term:`file objects `." msgstr "" -#: ../../library/filesys.rst:32 msgid "Module :mod:`io`" msgstr "" -#: ../../library/filesys.rst:33 -msgid "" -"Python's built-in I/O library, including both abstract classes and some " -"concrete classes such as file I/O." +msgid "Python's built-in I/O library, including both abstract classes and some concrete classes such as file I/O." msgstr "" -#: ../../library/filesys.rst:36 msgid "Built-in function :func:`open`" msgstr "" -#: ../../library/filesys.rst:37 msgid "The standard way to open files for reading and writing with Python." msgstr "" diff --git a/library/fnmatch.po b/library/fnmatch.po index 9f04ea1d..8d96b43e 100644 --- a/library/fnmatch.po +++ b/library/fnmatch.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:06+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,107 +23,63 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/fnmatch.rst:2 msgid ":mod:`!fnmatch` --- Unix filename pattern matching" msgstr "" -#: ../../library/fnmatch.rst:7 msgid "**Source code:** :source:`Lib/fnmatch.py`" msgstr "" -#: ../../library/fnmatch.rst:15 -msgid "" -"This module provides support for Unix shell-style wildcards, which are *not* " -"the same as regular expressions (which are documented in the :mod:`re` " -"module). The special characters used in shell-style wildcards are:" +msgid "This module provides support for Unix shell-style wildcards, which are *not* the same as regular expressions (which are documented in the :mod:`re` module). The special characters used in shell-style wildcards are:" msgstr "" -#: ../../library/fnmatch.rst:27 msgid "Pattern" msgstr "" -#: ../../library/fnmatch.rst:27 msgid "Meaning" msgstr "" -#: ../../library/fnmatch.rst:29 msgid "``*``" msgstr "" -#: ../../library/fnmatch.rst:29 msgid "matches everything" msgstr "" -#: ../../library/fnmatch.rst:31 msgid "``?``" msgstr "" -#: ../../library/fnmatch.rst:31 msgid "matches any single character" msgstr "" -#: ../../library/fnmatch.rst:33 msgid "``[seq]``" msgstr "" -#: ../../library/fnmatch.rst:33 msgid "matches any character in *seq*" msgstr "" -#: ../../library/fnmatch.rst:35 msgid "``[!seq]``" msgstr "" -#: ../../library/fnmatch.rst:35 msgid "matches any character not in *seq*" msgstr "" -#: ../../library/fnmatch.rst:38 -msgid "" -"For a literal match, wrap the meta-characters in brackets. For example, " -"``'[?]'`` matches the character ``'?'``." +msgid "For a literal match, wrap the meta-characters in brackets. For example, ``'[?]'`` matches the character ``'?'``." msgstr "" -#: ../../library/fnmatch.rst:43 -msgid "" -"Note that the filename separator (``'/'`` on Unix) is *not* special to this " -"module. See module :mod:`glob` for pathname expansion (:mod:`glob` " -"uses :func:`.filter` to match pathname segments). Similarly, filenames " -"starting with a period are not special for this module, and are matched by " -"the ``*`` and ``?`` patterns." +msgid "Note that the filename separator (``'/'`` on Unix) is *not* special to this module. See module :mod:`glob` for pathname expansion (:mod:`glob` uses :func:`.filter` to match pathname segments). Similarly, filenames starting with a period are not special for this module, and are matched by the ``*`` and ``?`` patterns." msgstr "" -#: ../../library/fnmatch.rst:49 -msgid "" -"Unless stated otherwise, \"filename string\" and \"pattern string\" either " -"refer to :class:`str` or ``ISO-8859-1`` encoded :class:`bytes` objects. Note " -"that the functions documented below do not allow to mix a :class:`!bytes` " -"pattern with a :class:`!str` filename, and vice-versa." +msgid "Unless stated otherwise, \"filename string\" and \"pattern string\" either refer to :class:`str` or ``ISO-8859-1`` encoded :class:`bytes` objects. Note that the functions documented below do not allow to mix a :class:`!bytes` pattern with a :class:`!str` filename, and vice-versa." msgstr "" -#: ../../library/fnmatch.rst:54 -msgid "" -"Finally, note that :deco:`functools.lru_cache` with a *maxsize* of 32768 is " -"used to cache the (typed) compiled regex patterns in the following " -"functions: :func:`fnmatch`, :func:`fnmatchcase`, :func:`.filter`, :func:`.filterfalse`." +msgid "Finally, note that :deco:`functools.lru_cache` with a *maxsize* of 32768 is used to cache the (typed) compiled regex patterns in the following functions: :func:`fnmatch`, :func:`fnmatchcase`, :func:`.filter`, :func:`.filterfalse`." msgstr "" -#: ../../library/fnmatch.rst:61 -msgid "" -"Test whether the filename string *name* matches the pattern string *pat*, " -"returning ``True`` or ``False``. Both parameters are case-normalized " -"using :func:`os.path.normcase`. :func:`fnmatchcase` can be used to perform a " -"case-sensitive comparison, regardless of whether that's standard for the " -"operating system." +msgid "Test whether the filename string *name* matches the pattern string *pat*, returning ``True`` or ``False``. Both parameters are case-normalized using :func:`os.path.normcase`. :func:`fnmatchcase` can be used to perform a case-sensitive comparison, regardless of whether that's standard for the operating system." msgstr "" -#: ../../library/fnmatch.rst:67 -msgid "" -"This example will print all file names in the current directory with the " -"extension ``.txt``::" +msgid "This example will print all file names in the current directory with the extension ``.txt``::" msgstr "" -#: ../../library/fnmatch.rst:70 msgid "" "import fnmatch\n" "import os\n" @@ -133,86 +89,56 @@ msgid "" " print(file)" msgstr "" -#: ../../library/fnmatch.rst:80 -msgid "" -"Test whether the filename string *name* matches the pattern string *pat*, " -"returning ``True`` or ``False``; the comparison is case-sensitive and does " -"not apply :func:`os.path.normcase`." +msgid "Test whether the filename string *name* matches the pattern string *pat*, returning ``True`` or ``False``; the comparison is case-sensitive and does not apply :func:`os.path.normcase`." msgstr "" -#: ../../library/fnmatch.rst:87 -msgid "" -"Construct a list from those elements of the :term:`iterable` of filename " -"strings *names* that match the pattern string *pat*. It is the same as ``[n " -"for n in names if fnmatch(n, pat)]``, but implemented more efficiently." +msgid "Construct a list from those elements of the :term:`iterable` of filename strings *names* that match the pattern string *pat*. It is the same as ``[n for n in names if fnmatch(n, pat)]``, but implemented more efficiently." msgstr "" -#: ../../library/fnmatch.rst:95 -msgid "" -"Construct a list from those elements of the :term:`iterable` of filename " -"strings *names* that do not match the pattern string *pat*. It is the same " -"as ``[n for n in names if not fnmatch(n, pat)]``, but implemented more " -"efficiently." +msgid "Construct a list from those elements of the :term:`iterable` of filename strings *names* that do not match the pattern string *pat*. It is the same as ``[n for n in names if not fnmatch(n, pat)]``, but implemented more efficiently." msgstr "" -#: ../../library/fnmatch.rst:105 -msgid "" -"Return the shell-style pattern *pat* converted to a regular expression for " -"using with :func:`re.match`. The pattern is expected to be a :class:`str`." +msgid "Return the shell-style pattern *pat* converted to a regular expression for using with :func:`re.match`. The pattern is expected to be a :class:`str`." msgstr "" -#: ../../library/fnmatch.rst:108 msgid "Example:" msgstr "" -#: ../../library/fnmatch.rst:122 msgid "Module :mod:`glob`" msgstr "" -#: ../../library/fnmatch.rst:123 msgid "Unix shell-style path expansion." msgstr "" -#: ../../library/fnmatch.rst:9 msgid "filenames" msgstr "" -#: ../../library/fnmatch.rst:9 msgid "wildcard expansion" msgstr "" -#: ../../library/fnmatch.rst:11 ../../library/fnmatch.rst:41 msgid "module" msgstr "" -#: ../../library/fnmatch.rst:11 msgid "re" msgstr "" -#: ../../library/fnmatch.rst:19 msgid "* (asterisk)" msgstr "" -#: ../../library/fnmatch.rst:19 msgid "in glob-style wildcards" msgstr "" -#: ../../library/fnmatch.rst:19 msgid "? (question mark)" msgstr "" -#: ../../library/fnmatch.rst:19 msgid "[] (square brackets)" msgstr "" -#: ../../library/fnmatch.rst:19 msgid "! (exclamation)" msgstr "" -#: ../../library/fnmatch.rst:19 msgid "- (minus)" msgstr "" -#: ../../library/fnmatch.rst:41 msgid "glob" msgstr "" diff --git a/library/fractions.po b/library/fractions.po index 5c2d451a..c0d198fe 100644 --- a/library/fractions.po +++ b/library/fractions.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:06+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,69 +23,33 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/fractions.rst:2 msgid ":mod:`!fractions` --- Rational numbers" msgstr "" -#: ../../library/fractions.rst:10 msgid "**Source code:** :source:`Lib/fractions.py`" msgstr "" -#: ../../library/fractions.rst:14 -msgid "" -"The :mod:`!fractions` module provides support for rational number arithmetic." +msgid "The :mod:`!fractions` module provides support for rational number arithmetic." msgstr "" -#: ../../library/fractions.rst:17 -msgid "" -"A Fraction instance can be constructed from a pair of rational numbers, from " -"a single number, or from a string." +msgid "A Fraction instance can be constructed from a pair of rational numbers, from a single number, or from a string." msgstr "" -#: ../../library/fractions.rst:26 -msgid "" -"The first version requires that *numerator* and *denominator* are instances " -"of :class:`numbers.Rational` and returns a new :class:`Fraction` instance " -"with a value equal to ``numerator/denominator``. If *denominator* is zero, " -"it raises a :exc:`ZeroDivisionError`." +msgid "The first version requires that *numerator* and *denominator* are instances of :class:`numbers.Rational` and returns a new :class:`Fraction` instance with a value equal to ``numerator/denominator``. If *denominator* is zero, it raises a :exc:`ZeroDivisionError`." msgstr "" -#: ../../library/fractions.rst:31 -msgid "" -"The second version requires that *number* is an instance " -"of :class:`numbers.Rational` or has the :meth:`!as_integer_ratio` method " -"(this includes :class:`float` and :class:`decimal.Decimal`). It returns " -"a :class:`Fraction` instance with exactly the same value. Assumed, that " -"the :meth:`!as_integer_ratio` method returns a pair of coprime integers and " -"last one is positive. Note that due to the usual issues with binary point " -"(see :ref:`tut-fp-issues`), the argument to ``Fraction(1.1)`` is not exactly " -"equal to 11/10, and so ``Fraction(1.1)`` does *not* return ``Fraction(11, " -"10)`` as one might expect. (But see the documentation for " -"the :meth:`limit_denominator` method below.)" -msgstr "" - -#: ../../library/fractions.rst:43 -msgid "" -"The last version of the constructor expects a string. The usual form for " -"this instance is::" +msgid "The second version requires that *number* is an instance of :class:`numbers.Rational` or has the :meth:`!as_integer_ratio` method (this includes :class:`float` and :class:`decimal.Decimal`). It returns a :class:`Fraction` instance with exactly the same value. Assumed, that the :meth:`!as_integer_ratio` method returns a pair of coprime integers and last one is positive. Note that due to the usual issues with binary point (see :ref:`tut-fp-issues`), the argument to ``Fraction(1.1)`` is not exactly equal to 11/10, and so ``Fraction(1.1)`` does *not* return ``Fraction(11, 10)`` as one might expect. (But see the documentation for the :meth:`limit_denominator` method below.)" +msgstr "" + +msgid "The last version of the constructor expects a string. The usual form for this instance is::" msgstr "" -#: ../../library/fractions.rst:46 msgid "[sign] numerator ['/' denominator]" msgstr "" -#: ../../library/fractions.rst:48 -msgid "" -"where the optional ``sign`` may be either '+' or '-' and ``numerator`` and " -"``denominator`` (if present) are strings of decimal digits (underscores may " -"be used to delimit digits as with integral literals in code). In addition, " -"any string that represents a finite value and is accepted by " -"the :class:`float` constructor is also accepted by the :class:`Fraction` " -"constructor. In either form the input string may also have leading and/or " -"trailing whitespace. Here are some examples::" +msgid "where the optional ``sign`` may be either '+' or '-' and ``numerator`` and ``denominator`` (if present) are strings of decimal digits (underscores may be used to delimit digits as with integral literals in code). In addition, any string that represents a finite value and is accepted by the :class:`float` constructor is also accepted by the :class:`Fraction` constructor. In either form the input string may also have leading and/or trailing whitespace. Here are some examples::" msgstr "" -#: ../../library/fractions.rst:57 msgid "" ">>> from fractions import Fraction\n" ">>> Fraction(16, -10)\n" @@ -113,179 +77,87 @@ msgid "" "Fraction(11, 10)" msgstr "" -#: ../../library/fractions.rst:83 -msgid "" -"The :class:`Fraction` class inherits from the abstract base " -"class :class:`numbers.Rational`, and implements all of the methods and " -"operations from that class. :class:`Fraction` instances " -"are :term:`hashable`, and should be treated as immutable. In " -"addition, :class:`Fraction` has the following properties and methods:" +msgid "The :class:`Fraction` class inherits from the abstract base class :class:`numbers.Rational`, and implements all of the methods and operations from that class. :class:`Fraction` instances are :term:`hashable`, and should be treated as immutable. In addition, :class:`Fraction` has the following properties and methods:" msgstr "" -#: ../../library/fractions.rst:89 -msgid "" -"The :class:`Fraction` constructor now accepts :class:`float` " -"and :class:`decimal.Decimal` instances." +msgid "The :class:`Fraction` constructor now accepts :class:`float` and :class:`decimal.Decimal` instances." msgstr "" -#: ../../library/fractions.rst:93 -msgid "" -"The :func:`math.gcd` function is now used to normalize the *numerator* and " -"*denominator*. :func:`math.gcd` always returns an :class:`int` type. " -"Previously, the GCD type depended on *numerator* and *denominator*." +msgid "The :func:`math.gcd` function is now used to normalize the *numerator* and *denominator*. :func:`math.gcd` always returns an :class:`int` type. Previously, the GCD type depended on *numerator* and *denominator*." msgstr "" -#: ../../library/fractions.rst:98 -msgid "" -"Underscores are now permitted when creating a :class:`Fraction` instance " -"from a string, following :PEP:`515` rules." +msgid "Underscores are now permitted when creating a :class:`Fraction` instance from a string, following :PEP:`515` rules." msgstr "" -#: ../../library/fractions.rst:102 -msgid "" -":class:`Fraction` implements ``__int__`` now to satisfy " -"``typing.SupportsInt`` instance checks." +msgid ":class:`Fraction` implements ``__int__`` now to satisfy ``typing.SupportsInt`` instance checks." msgstr "" -#: ../../library/fractions.rst:106 -msgid "" -"Space is allowed around the slash for string inputs: ``Fraction('2 / 3')``." +msgid "Space is allowed around the slash for string inputs: ``Fraction('2 / 3')``." msgstr "" -#: ../../library/fractions.rst:109 -msgid "" -":class:`Fraction` instances now support float-style formatting, with " -"presentation types ``\"e\"``, ``\"E\"``, ``\"f\"``, ``\"F\"``, ``\"g\"``, " -"``\"G\"`` and ``\"%\"\"``." +msgid ":class:`Fraction` instances now support float-style formatting, with presentation types ``\"e\"``, ``\"E\"``, ``\"f\"``, ``\"F\"``, ``\"g\"``, ``\"G\"`` and ``\"%\"\"``." msgstr "" -#: ../../library/fractions.rst:114 -msgid "" -"Formatting of :class:`Fraction` instances without a presentation type now " -"supports fill, alignment, sign handling, minimum width and grouping." +msgid "Formatting of :class:`Fraction` instances without a presentation type now supports fill, alignment, sign handling, minimum width and grouping." msgstr "" -#: ../../library/fractions.rst:118 -msgid "" -"The :class:`Fraction` constructor now accepts any objects with the :meth:`!" -"as_integer_ratio` method." +msgid "The :class:`Fraction` constructor now accepts any objects with the :meth:`!as_integer_ratio` method." msgstr "" -#: ../../library/fractions.rst:124 msgid "Numerator of the Fraction in lowest term." msgstr "" -#: ../../library/fractions.rst:128 msgid "Denominator of the Fraction in lowest terms. Guaranteed to be positive." msgstr "" -#: ../../library/fractions.rst:134 -msgid "" -"Return a tuple of two integers, whose ratio is equal to the original " -"Fraction. The ratio is in lowest terms and has a positive denominator." +msgid "Return a tuple of two integers, whose ratio is equal to the original Fraction. The ratio is in lowest terms and has a positive denominator." msgstr "" -#: ../../library/fractions.rst:142 msgid "Return ``True`` if the Fraction is an integer." msgstr "" -#: ../../library/fractions.rst:148 -msgid "" -"Alternative constructor which only accepts instances of :class:`float` " -"or :class:`numbers.Integral`. Beware that ``Fraction.from_float(0.3)`` is " -"not the same value as ``Fraction(3, 10)``." +msgid "Alternative constructor which only accepts instances of :class:`float` or :class:`numbers.Integral`. Beware that ``Fraction.from_float(0.3)`` is not the same value as ``Fraction(3, 10)``." msgstr "" -#: ../../library/fractions.rst:154 -msgid "" -"From Python 3.2 onwards, you can also construct a :class:`Fraction` instance " -"directly from a :class:`float`." +msgid "From Python 3.2 onwards, you can also construct a :class:`Fraction` instance directly from a :class:`float`." msgstr "" -#: ../../library/fractions.rst:160 -msgid "" -"Alternative constructor which only accepts instances " -"of :class:`decimal.Decimal` or :class:`numbers.Integral`." +msgid "Alternative constructor which only accepts instances of :class:`decimal.Decimal` or :class:`numbers.Integral`." msgstr "" -#: ../../library/fractions.rst:165 -msgid "" -"From Python 3.2 onwards, you can also construct a :class:`Fraction` instance " -"directly from a :class:`decimal.Decimal` instance." +msgid "From Python 3.2 onwards, you can also construct a :class:`Fraction` instance directly from a :class:`decimal.Decimal` instance." msgstr "" -#: ../../library/fractions.rst:172 -msgid "" -"Alternative constructor which only accepts instances " -"of :class:`numbers.Integral`, :class:`numbers.Rational`, :class:`float` " -"or :class:`decimal.Decimal`, and objects with the :meth:`!as_integer_ratio` " -"method, but not strings." +msgid "Alternative constructor which only accepts instances of :class:`numbers.Integral`, :class:`numbers.Rational`, :class:`float` or :class:`decimal.Decimal`, and objects with the :meth:`!as_integer_ratio` method, but not strings." msgstr "" -#: ../../library/fractions.rst:182 -msgid "" -"Finds and returns the closest :class:`Fraction` to ``self`` that has " -"denominator at most max_denominator. This method is useful for finding " -"rational approximations to a given floating-point number:" +msgid "Finds and returns the closest :class:`Fraction` to ``self`` that has denominator at most max_denominator. This method is useful for finding rational approximations to a given floating-point number:" msgstr "" -#: ../../library/fractions.rst:190 msgid "or for recovering a rational number that's represented as a float:" msgstr "" -#: ../../library/fractions.rst:203 -msgid "" -"Returns the greatest :class:`int` ``<= self``. This method can also be " -"accessed through the :func:`math.floor` function:" +msgid "Returns the greatest :class:`int` ``<= self``. This method can also be accessed through the :func:`math.floor` function:" msgstr "" -#: ../../library/fractions.rst:213 -msgid "" -"Returns the least :class:`int` ``>= self``. This method can also be " -"accessed through the :func:`math.ceil` function." +msgid "Returns the least :class:`int` ``>= self``. This method can also be accessed through the :func:`math.ceil` function." msgstr "" -#: ../../library/fractions.rst:220 -msgid "" -"The first version returns the nearest :class:`int` to ``self``, rounding " -"half to even. The second version rounds ``self`` to the nearest multiple of " -"``Fraction(1, 10**ndigits)`` (logically, if ``ndigits`` is negative), again " -"rounding half toward even. This method can also be accessed through " -"the :func:`round` function." +msgid "The first version returns the nearest :class:`int` to ``self``, rounding half to even. The second version rounds ``self`` to the nearest multiple of ``Fraction(1, 10**ndigits)`` (logically, if ``ndigits`` is negative), again rounding half toward even. This method can also be accessed through the :func:`round` function." msgstr "" -#: ../../library/fractions.rst:228 -msgid "" -"Provides support for formatting of :class:`Fraction` instances via " -"the :meth:`str.format` method, the :func:`format` built-in function, " -"or :ref:`Formatted string literals `." +msgid "Provides support for formatting of :class:`Fraction` instances via the :meth:`str.format` method, the :func:`format` built-in function, or :ref:`Formatted string literals `." msgstr "" -#: ../../library/fractions.rst:232 -msgid "" -"If the ``format_spec`` format specification string does not end with one of " -"the presentation types ``'e'``, ``'E'``, ``'f'``, ``'F'``, ``'g'``, ``'G'`` " -"or ``'%'`` then formatting follows the general rules for fill, alignment, " -"sign handling, minimum width, and grouping as described in the :ref:`format " -"specification mini-language `. The \"alternate form\" flag " -"``'#'`` is supported: if present, it forces the output string to always " -"include an explicit denominator, even when the value being formatted is an " -"exact integer. The zero-fill flag ``'0'`` is not supported." +msgid "If the ``format_spec`` format specification string does not end with one of the presentation types ``'e'``, ``'E'``, ``'f'``, ``'F'``, ``'g'``, ``'G'`` or ``'%'`` then formatting follows the general rules for fill, alignment, sign handling, minimum width, and grouping as described in the :ref:`format specification mini-language `. The \"alternate form\" flag ``'#'`` is supported: if present, it forces the output string to always include an explicit denominator, even when the value being formatted is an exact integer. The zero-fill flag ``'0'`` is not supported." msgstr "" -#: ../../library/fractions.rst:242 -msgid "" -"If the ``format_spec`` format specification string ends with one of the " -"presentation types ``'e'``, ``'E'``, ``'f'``, ``'F'``, ``'g'``, ``'G'`` or " -"``'%'`` then formatting follows the rules outlined for the :class:`float` " -"type in the :ref:`formatspec` section." +msgid "If the ``format_spec`` format specification string ends with one of the presentation types ``'e'``, ``'E'``, ``'f'``, ``'F'``, ``'g'``, ``'G'`` or ``'%'`` then formatting follows the rules outlined for the :class:`float` type in the :ref:`formatspec` section." msgstr "" -#: ../../library/fractions.rst:247 msgid "Here are some examples::" msgstr "" -#: ../../library/fractions.rst:249 msgid "" ">>> from fractions import Fraction\n" ">>> format(Fraction(103993, 33102), '_')\n" @@ -307,14 +179,11 @@ msgid "" "'34.67% price increase'" msgstr "" -#: ../../library/fractions.rst:271 msgid "Module :mod:`numbers`" msgstr "" -#: ../../library/fractions.rst:272 msgid "The abstract base classes making up the numeric tower." msgstr "" -#: ../../library/fractions.rst:20 msgid "as_integer_ratio()" msgstr "" diff --git a/library/frameworks.po b/library/frameworks.po index 6017aabb..c62d6520 100644 --- a/library/frameworks.po +++ b/library/frameworks.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:06+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,24 +21,17 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/frameworks.rst:7 msgid "Program frameworks" msgstr "" -#: ../../library/frameworks.rst:9 -msgid "" -"This chapter is no longer maintained, and the modules it contained have been " -"moved to their respective topical documentation." +msgid "This chapter is no longer maintained, and the modules it contained have been moved to their respective topical documentation." msgstr "" -#: ../../library/frameworks.rst:11 msgid ":mod:`cmd` — :doc:`Command Line Interface Libraries <./cmdlinelibs>`" msgstr "" -#: ../../library/frameworks.rst:12 msgid ":mod:`shlex` — :doc:`Unix Specific Services <./unix>`" msgstr "" -#: ../../library/frameworks.rst:13 msgid ":mod:`turtle` — :doc:`Graphical User Interfaces with Tk <./tk>`" msgstr "" diff --git a/library/ftplib.po b/library/ftplib.po index 16249b30..67d70034 100644 --- a/library/ftplib.po +++ b/library/ftplib.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:06+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,43 +23,27 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/ftplib.rst:2 msgid ":mod:`!ftplib` --- FTP protocol client" msgstr "" -#: ../../library/ftplib.rst:7 msgid "**Source code:** :source:`Lib/ftplib.py`" msgstr "" -#: ../../library/ftplib.rst:15 -msgid "" -"This module defines the class :class:`FTP` and a few related items. " -"The :class:`FTP` class implements the client side of the FTP protocol. You " -"can use this to write Python programs that perform a variety of automated " -"FTP jobs, such as mirroring other FTP servers. It is also used by the " -"module :mod:`urllib.request` to handle URLs that use FTP. For more " -"information on FTP (File Transfer Protocol), see internet :rfc:`959`." +msgid "This module defines the class :class:`FTP` and a few related items. The :class:`FTP` class implements the client side of the FTP protocol. You can use this to write Python programs that perform a variety of automated FTP jobs, such as mirroring other FTP servers. It is also used by the module :mod:`urllib.request` to handle URLs that use FTP. For more information on FTP (File Transfer Protocol), see internet :rfc:`959`." msgstr "" -#: ../../library/ftplib.rst:22 msgid "The default encoding is UTF-8, following :rfc:`2640`." msgstr "" -#: ../../includes/wasm-notavail.rst:3 msgid "Availability" msgstr "" -#: ../../includes/wasm-notavail.rst:5 -msgid "" -"This module does not work or is not available on WebAssembly. See :ref:`wasm-" -"availability` for more information." +msgid "This module does not work or is not available on WebAssembly. See :ref:`wasm-availability` for more information." msgstr "" -#: ../../library/ftplib.rst:26 msgid "Here's a sample session using the :mod:`!ftplib` module::" msgstr "" -#: ../../library/ftplib.rst:28 msgid "" ">>> from ftplib import FTP\n" ">>> ftp = FTP('ftp.us.debian.org') # connect to host, default port\n" @@ -81,438 +65,222 @@ msgid "" "'221 Goodbye.'" msgstr "" -#: ../../library/ftplib.rst:51 msgid "Reference" msgstr "" -#: ../../library/ftplib.rst:56 msgid "FTP objects" msgstr "" -#: ../../library/ftplib.rst:87 msgid "Return a new instance of the :class:`FTP` class." msgstr "" -#: ../../library/ftplib.rst:0 msgid "Parameters" msgstr "" -#: ../../library/ftplib.rst:89 ../../library/ftplib.rst:461 -msgid "" -"The hostname to connect to. If given, :code:`connect(host)` is implicitly " -"called by the constructor." +msgid "The hostname to connect to. If given, :code:`connect(host)` is implicitly called by the constructor." msgstr "" -#: ../../library/ftplib.rst:93 ../../library/ftplib.rst:465 -msgid "" -"|param_doc_user| If given, :code:`login(host, passwd, acct)` is implicitly " -"called by the constructor." +msgid "|param_doc_user| If given, :code:`login(host, passwd, acct)` is implicitly called by the constructor." msgstr "" -#: ../../library/ftplib.rst:98 ../../library/ftplib.rst:212 -#: ../../library/ftplib.rst:470 msgid "|param_doc_passwd|" msgstr "" -#: ../../library/ftplib.rst:101 ../../library/ftplib.rst:215 -#: ../../library/ftplib.rst:473 msgid "|param_doc_acct|" msgstr "" -#: ../../library/ftplib.rst:104 -msgid "" -"A timeout in seconds for blocking operations like :meth:`connect` (default: " -"the global default timeout setting)." +msgid "A timeout in seconds for blocking operations like :meth:`connect` (default: the global default timeout setting)." msgstr "" -#: ../../library/ftplib.rst:109 ../../library/ftplib.rst:183 -#: ../../library/ftplib.rst:488 msgid "|param_doc_source_address|" msgstr "" -#: ../../library/ftplib.rst:113 ../../library/ftplib.rst:492 msgid "|param_doc_encoding|" msgstr "" -#: ../../library/ftplib.rst:116 msgid "The :class:`FTP` class supports the :keyword:`with` statement, e.g.:" msgstr "" -#: ../../library/ftplib.rst:130 msgid "Support for the :keyword:`with` statement was added." msgstr "" -#: ../../library/ftplib.rst:133 ../../library/ftplib.rst:189 msgid "*source_address* parameter was added." msgstr "" -#: ../../library/ftplib.rst:136 ../../library/ftplib.rst:505 -msgid "" -"If the *timeout* parameter is set to be zero, it will raise " -"a :class:`ValueError` to prevent the creation of a non-blocking socket. The " -"*encoding* parameter was added, and the default was changed from Latin-1 to " -"UTF-8 to follow :rfc:`2640`." +msgid "If the *timeout* parameter is set to be zero, it will raise a :class:`ValueError` to prevent the creation of a non-blocking socket. The *encoding* parameter was added, and the default was changed from Latin-1 to UTF-8 to follow :rfc:`2640`." msgstr "" -#: ../../library/ftplib.rst:142 -msgid "" -"Several :class:`!FTP` methods are available in two flavors: one for handling " -"text files and another for binary files. The methods are named for the " -"command which is used followed by ``lines`` for the text version or " -"``binary`` for the binary version." +msgid "Several :class:`!FTP` methods are available in two flavors: one for handling text files and another for binary files. The methods are named for the command which is used followed by ``lines`` for the text version or ``binary`` for the binary version." msgstr "" -#: ../../library/ftplib.rst:147 msgid ":class:`FTP` instances have the following methods:" msgstr "" -#: ../../library/ftplib.rst:151 -msgid "" -"Set the instance's debugging level as an :class:`int`. This controls the " -"amount of debugging output printed. The debug levels are:" +msgid "Set the instance's debugging level as an :class:`int`. This controls the amount of debugging output printed. The debug levels are:" msgstr "" -#: ../../library/ftplib.rst:155 msgid "``0`` (default): No debug output." msgstr "" -#: ../../library/ftplib.rst:156 -msgid "" -"``1``: Produce a moderate amount of debug output, generally a single line " -"per request." +msgid "``1``: Produce a moderate amount of debug output, generally a single line per request." msgstr "" -#: ../../library/ftplib.rst:158 -msgid "" -"``2`` or higher: Produce the maximum amount of debugging output, logging " -"each line sent and received on the control connection." +msgid "``2`` or higher: Produce the maximum amount of debugging output, logging each line sent and received on the control connection." msgstr "" -#: ../../library/ftplib.rst:163 -msgid "" -"Connect to the given host and port. This function should be called only once " -"for each instance; it should not be called if a *host* argument was given " -"when the :class:`FTP` instance was created. All other :class:`!FTP` methods " -"can only be called after a connection has successfully been made." +msgid "Connect to the given host and port. This function should be called only once for each instance; it should not be called if a *host* argument was given when the :class:`FTP` instance was created. All other :class:`!FTP` methods can only be called after a connection has successfully been made." msgstr "" -#: ../../library/ftplib.rst:170 msgid "The host to connect to." msgstr "" -#: ../../library/ftplib.rst:173 -msgid "" -"The TCP port to connect to (default: ``21``, as specified by the FTP " -"protocol specification). It is rarely needed to specify a different port " -"number." +msgid "The TCP port to connect to (default: ``21``, as specified by the FTP protocol specification). It is rarely needed to specify a different port number." msgstr "" -#: ../../library/ftplib.rst:178 -msgid "" -"A timeout in seconds for the connection attempt (default: the global default " -"timeout setting)." +msgid "A timeout in seconds for the connection attempt (default: the global default timeout setting)." msgstr "" -#: ../../library/ftplib.rst:187 -msgid "" -"Raises an :ref:`auditing event ` ``ftplib.connect`` with arguments " -"``self``, ``host``, ``port``." +msgid "Raises an :ref:`auditing event ` ``ftplib.connect`` with arguments ``self``, ``host``, ``port``." msgstr "" -#: ../../library/ftplib.rst:195 -msgid "" -"Return the welcome message sent by the server in reply to the initial " -"connection. (This message sometimes contains disclaimers or help " -"information that may be relevant to the user.)" +msgid "Return the welcome message sent by the server in reply to the initial connection. (This message sometimes contains disclaimers or help information that may be relevant to the user.)" msgstr "" -#: ../../library/ftplib.rst:202 -msgid "" -"Log on to the connected FTP server. This function should be called only once " -"for each instance, after a connection has been established; it should not be " -"called if the *host* and *user* arguments were given when the :class:`FTP` " -"instance was created. Most FTP commands are only allowed after the client " -"has logged in." +msgid "Log on to the connected FTP server. This function should be called only once for each instance, after a connection has been established; it should not be called if the *host* and *user* arguments were given when the :class:`FTP` instance was created. Most FTP commands are only allowed after the client has logged in." msgstr "" -#: ../../library/ftplib.rst:209 msgid "|param_doc_user|" msgstr "" -#: ../../library/ftplib.rst:221 -msgid "" -"Abort a file transfer that is in progress. Using this does not always work, " -"but it's worth a try." +msgid "Abort a file transfer that is in progress. Using this does not always work, but it's worth a try." msgstr "" -#: ../../library/ftplib.rst:227 -msgid "" -"Send a simple command string to the server and return the response string." +msgid "Send a simple command string to the server and return the response string." msgstr "" -#: ../../library/ftplib.rst:229 ../../library/ftplib.rst:238 -msgid "" -"Raises an :ref:`auditing event ` ``ftplib.sendcmd`` with arguments " -"``self``, ``cmd``." +msgid "Raises an :ref:`auditing event ` ``ftplib.sendcmd`` with arguments ``self``, ``cmd``." msgstr "" -#: ../../library/ftplib.rst:234 -msgid "" -"Send a simple command string to the server and handle the response. Return " -"the response string if the response code corresponds to success (codes in " -"the range 200--299). Raise :exc:`error_reply` otherwise." +msgid "Send a simple command string to the server and handle the response. Return the response string if the response code corresponds to success (codes in the range 200--299). Raise :exc:`error_reply` otherwise." msgstr "" -#: ../../library/ftplib.rst:243 msgid "Retrieve a file in binary transfer mode." msgstr "" -#: ../../library/ftplib.rst:245 msgid "An appropriate ``RETR`` command: :samp:`\"RETR {filename}\"`." msgstr "" -#: ../../library/ftplib.rst:248 -msgid "" -"A single parameter callable that is called for each block of data received, " -"with its single argument being the data as :class:`bytes`." +msgid "A single parameter callable that is called for each block of data received, with its single argument being the data as :class:`bytes`." msgstr "" -#: ../../library/ftplib.rst:254 -msgid "" -"The maximum chunk size to read on the low-level :class:`~socket.socket` " -"object created to do the actual transfer. This also corresponds to the " -"largest size of data that will be passed to *callback*. Defaults to ``8192``." +msgid "The maximum chunk size to read on the low-level :class:`~socket.socket` object created to do the actual transfer. This also corresponds to the largest size of data that will be passed to *callback*. Defaults to ``8192``." msgstr "" -#: ../../library/ftplib.rst:261 ../../library/ftplib.rst:308 -msgid "" -"A ``REST`` command to be sent to the server. See the documentation for the " -"*rest* parameter of the :meth:`transfercmd` method." +msgid "A ``REST`` command to be sent to the server. See the documentation for the *rest* parameter of the :meth:`transfercmd` method." msgstr "" -#: ../../library/ftplib.rst:268 -msgid "" -"Retrieve a file or directory listing in the encoding specified by the " -"*encoding* parameter at initialization. *cmd* should be an appropriate " -"``RETR`` command (see :meth:`retrbinary`) or a command such as ``LIST`` or " -"``NLST`` (usually just the string ``'LIST'``). ``LIST`` retrieves a list of " -"files and information about those files. ``NLST`` retrieves a list of file " -"names. The *callback* function is called for each line with a string " -"argument containing the line with the trailing CRLF stripped. The default " -"*callback* prints the line to :data:`sys.stdout`." +msgid "Retrieve a file or directory listing in the encoding specified by the *encoding* parameter at initialization. *cmd* should be an appropriate ``RETR`` command (see :meth:`retrbinary`) or a command such as ``LIST`` or ``NLST`` (usually just the string ``'LIST'``). ``LIST`` retrieves a list of files and information about those files. ``NLST`` retrieves a list of file names. The *callback* function is called for each line with a string argument containing the line with the trailing CRLF stripped. The default *callback* prints the line to :data:`sys.stdout`." msgstr "" -#: ../../library/ftplib.rst:281 -msgid "" -"Enable \"passive\" mode if *val* is true, otherwise disable passive mode. " -"Passive mode is on by default." +msgid "Enable \"passive\" mode if *val* is true, otherwise disable passive mode. Passive mode is on by default." msgstr "" -#: ../../library/ftplib.rst:287 msgid "Store a file in binary transfer mode." msgstr "" -#: ../../library/ftplib.rst:289 msgid "An appropriate ``STOR`` command: :samp:`\"STOR {filename}\"`." msgstr "" -#: ../../library/ftplib.rst:292 -msgid "" -"A file object (opened in binary mode) which is read until EOF, using " -"its :meth:`~io.RawIOBase.read` method in blocks of size *blocksize* to " -"provide the data to be stored." +msgid "A file object (opened in binary mode) which is read until EOF, using its :meth:`~io.RawIOBase.read` method in blocks of size *blocksize* to provide the data to be stored." msgstr "" -#: ../../library/ftplib.rst:298 msgid "The read block size. Defaults to ``8192``." msgstr "" -#: ../../library/ftplib.rst:302 -msgid "" -"A single parameter callable that is called for each block of data sent, with " -"its single argument being the data as :class:`bytes`." +msgid "A single parameter callable that is called for each block of data sent, with its single argument being the data as :class:`bytes`." msgstr "" -#: ../../library/ftplib.rst:312 msgid "The *rest* parameter was added." msgstr "" -#: ../../library/ftplib.rst:318 -msgid "" -"Store a file in line mode. *cmd* should be an appropriate ``STOR`` command " -"(see :meth:`storbinary`). Lines are read until EOF from the :term:`file " -"object` *fp* (opened in binary mode) using its :meth:`~io.IOBase.readline` " -"method to provide the data to be stored. *callback* is an optional single " -"parameter callable that is called on each line after it is sent." +msgid "Store a file in line mode. *cmd* should be an appropriate ``STOR`` command (see :meth:`storbinary`). Lines are read until EOF from the :term:`file object` *fp* (opened in binary mode) using its :meth:`~io.IOBase.readline` method to provide the data to be stored. *callback* is an optional single parameter callable that is called on each line after it is sent." msgstr "" -#: ../../library/ftplib.rst:327 -msgid "" -"Initiate a transfer over the data connection. If the transfer is active, " -"send an ``EPRT`` or ``PORT`` command and the transfer command specified by " -"*cmd*, and accept the connection. If the server is passive, send an " -"``EPSV`` or ``PASV`` command, connect to it, and start the transfer " -"command. Either way, return the socket for the connection." +msgid "Initiate a transfer over the data connection. If the transfer is active, send an ``EPRT`` or ``PORT`` command and the transfer command specified by *cmd*, and accept the connection. If the server is passive, send an ``EPSV`` or ``PASV`` command, connect to it, and start the transfer command. Either way, return the socket for the connection." msgstr "" -#: ../../library/ftplib.rst:333 -msgid "" -"If optional *rest* is given, a ``REST`` command is sent to the server, " -"passing *rest* as an argument. *rest* is usually a byte offset into the " -"requested file, telling the server to restart sending the file's bytes at " -"the requested offset, skipping over the initial bytes. Note however that " -"the :meth:`transfercmd` method converts *rest* to a string with the " -"*encoding* parameter specified at initialization, but no check is performed " -"on the string's contents. If the server does not recognize the ``REST`` " -"command, an :exc:`error_reply` exception will be raised. If this happens, " -"simply call :meth:`transfercmd` without a *rest* argument." -msgstr "" - -#: ../../library/ftplib.rst:346 -msgid "" -"Like :meth:`transfercmd`, but returns a tuple of the data connection and the " -"expected size of the data. If the expected size could not be computed, " -"``None`` will be returned as the expected size. *cmd* and *rest* means the " -"same thing as in :meth:`transfercmd`." +msgid "If optional *rest* is given, a ``REST`` command is sent to the server, passing *rest* as an argument. *rest* is usually a byte offset into the requested file, telling the server to restart sending the file's bytes at the requested offset, skipping over the initial bytes. Note however that the :meth:`transfercmd` method converts *rest* to a string with the *encoding* parameter specified at initialization, but no check is performed on the string's contents. If the server does not recognize the ``REST`` command, an :exc:`error_reply` exception will be raised. If this happens, simply call :meth:`transfercmd` without a *rest* argument." msgstr "" -#: ../../library/ftplib.rst:354 -msgid "" -"List a directory in a standardized format by using ``MLSD`` command " -"(:rfc:`3659`). If *path* is omitted the current directory is assumed. " -"*facts* is a list of strings representing the type of information desired " -"(e.g. ``[\"type\", \"size\", \"perm\"]``). Return a generator object " -"yielding a tuple of two elements for every file found in path. First " -"element is the file name, the second one is a dictionary containing facts " -"about the file name. Content of this dictionary might be limited by the " -"*facts* argument but server is not guaranteed to return all requested facts." +msgid "Like :meth:`transfercmd`, but returns a tuple of the data connection and the expected size of the data. If the expected size could not be computed, ``None`` will be returned as the expected size. *cmd* and *rest* means the same thing as in :meth:`transfercmd`." msgstr "" -#: ../../library/ftplib.rst:368 -msgid "" -"Return a list of file names as returned by the ``NLST`` command. The " -"optional *argument* is a directory to list (default is the current server " -"directory). Multiple arguments can be used to pass non-standard options to " -"the ``NLST`` command." +msgid "List a directory in a standardized format by using ``MLSD`` command (:rfc:`3659`). If *path* is omitted the current directory is assumed. *facts* is a list of strings representing the type of information desired (e.g. ``[\"type\", \"size\", \"perm\"]``). Return a generator object yielding a tuple of two elements for every file found in path. First element is the file name, the second one is a dictionary containing facts about the file name. Content of this dictionary might be limited by the *facts* argument but server is not guaranteed to return all requested facts." +msgstr "" + +msgid "Return a list of file names as returned by the ``NLST`` command. The optional *argument* is a directory to list (default is the current server directory). Multiple arguments can be used to pass non-standard options to the ``NLST`` command." msgstr "" -#: ../../library/ftplib.rst:373 ../../library/ftplib.rst:385 msgid "If your server supports the command, :meth:`mlsd` offers a better API." msgstr "" -#: ../../library/ftplib.rst:378 -msgid "" -"Produce a directory listing as returned by the ``LIST`` command, printing it " -"to standard output. The optional *argument* is a directory to list (default " -"is the current server directory). Multiple arguments can be used to pass " -"non-standard options to the ``LIST`` command. If the last argument is a " -"function, it is used as a *callback* function as for :meth:`retrlines`; the " -"default prints to :data:`sys.stdout`. This method returns ``None``." +msgid "Produce a directory listing as returned by the ``LIST`` command, printing it to standard output. The optional *argument* is a directory to list (default is the current server directory). Multiple arguments can be used to pass non-standard options to the ``LIST`` command. If the last argument is a function, it is used as a *callback* function as for :meth:`retrlines`; the default prints to :data:`sys.stdout`. This method returns ``None``." msgstr "" -#: ../../library/ftplib.rst:390 msgid "Rename file *fromname* on the server to *toname*." msgstr "" -#: ../../library/ftplib.rst:395 -msgid "" -"Remove the file named *filename* from the server. If successful, returns " -"the text of the response, otherwise raises :exc:`error_perm` on permission " -"errors or :exc:`error_reply` on other errors." +msgid "Remove the file named *filename* from the server. If successful, returns the text of the response, otherwise raises :exc:`error_perm` on permission errors or :exc:`error_reply` on other errors." msgstr "" -#: ../../library/ftplib.rst:402 msgid "Set the current directory on the server." msgstr "" -#: ../../library/ftplib.rst:407 msgid "Create a new directory on the server." msgstr "" -#: ../../library/ftplib.rst:412 msgid "Return the pathname of the current directory on the server." msgstr "" -#: ../../library/ftplib.rst:417 msgid "Remove the directory named *dirname* on the server." msgstr "" -#: ../../library/ftplib.rst:422 -msgid "" -"Request the size of the file named *filename* on the server. On success, " -"the size of the file is returned as an integer, otherwise ``None`` is " -"returned. Note that the ``SIZE`` command is not standardized, but is " -"supported by many common server implementations." +msgid "Request the size of the file named *filename* on the server. On success, the size of the file is returned as an integer, otherwise ``None`` is returned. Note that the ``SIZE`` command is not standardized, but is supported by many common server implementations." msgstr "" -#: ../../library/ftplib.rst:430 -msgid "" -"Send a ``QUIT`` command to the server and close the connection. This is the " -"\"polite\" way to close a connection, but it may raise an exception if the " -"server responds with an error to the ``QUIT`` command. This implies a call " -"to the :meth:`close` method which renders the :class:`FTP` instance useless " -"for subsequent calls (see below)." +msgid "Send a ``QUIT`` command to the server and close the connection. This is the \"polite\" way to close a connection, but it may raise an exception if the server responds with an error to the ``QUIT`` command. This implies a call to the :meth:`close` method which renders the :class:`FTP` instance useless for subsequent calls (see below)." msgstr "" -#: ../../library/ftplib.rst:439 -msgid "" -"Close the connection unilaterally. This should not be applied to an already " -"closed connection such as after a successful call to :meth:`~FTP.quit`. " -"After this call the :class:`FTP` instance should not be used any more (after " -"a call to :meth:`close` or :meth:`~FTP.quit` you cannot reopen the " -"connection by issuing another :meth:`login` method)." +msgid "Close the connection unilaterally. This should not be applied to an already closed connection such as after a successful call to :meth:`~FTP.quit`. After this call the :class:`FTP` instance should not be used any more (after a call to :meth:`close` or :meth:`~FTP.quit` you cannot reopen the connection by issuing another :meth:`login` method)." msgstr "" -#: ../../library/ftplib.rst:447 msgid "FTP_TLS objects" msgstr "" -#: ../../library/ftplib.rst:452 -msgid "" -"An :class:`FTP` subclass which adds TLS support to FTP as described " -"in :rfc:`4217`. Connect to port 21 implicitly securing the FTP control " -"connection before authenticating." +msgid "An :class:`FTP` subclass which adds TLS support to FTP as described in :rfc:`4217`. Connect to port 21 implicitly securing the FTP control connection before authenticating." msgstr "" -#: ../../library/ftplib.rst:458 -msgid "" -"The user must explicitly secure the data connection by calling " -"the :meth:`prot_p` method." +msgid "The user must explicitly secure the data connection by calling the :meth:`prot_p` method." msgstr "" -#: ../../library/ftplib.rst:476 -msgid "" -"An SSL context object which allows bundling SSL configuration options, " -"certificates and private keys into a single, potentially long-lived, " -"structure. Please read :ref:`ssl-security` for best practices." +msgid "An SSL context object which allows bundling SSL configuration options, certificates and private keys into a single, potentially long-lived, structure. Please read :ref:`ssl-security` for best practices." msgstr "" -#: ../../library/ftplib.rst:483 -msgid "" -"A timeout in seconds for blocking operations like :meth:`~FTP.connect` " -"(default: the global default timeout setting)." +msgid "A timeout in seconds for blocking operations like :meth:`~FTP.connect` (default: the global default timeout setting)." msgstr "" -#: ../../library/ftplib.rst:497 msgid "Added the *source_address* parameter." msgstr "" -#: ../../library/ftplib.rst:500 -msgid "" -"The class now supports hostname check " -"with :attr:`ssl.SSLContext.check_hostname` and *Server Name Indication* " -"(see :const:`ssl.HAS_SNI`)." +msgid "The class now supports hostname check with :attr:`ssl.SSLContext.check_hostname` and *Server Name Indication* (see :const:`ssl.HAS_SNI`)." msgstr "" -#: ../../library/ftplib.rst:511 msgid "The deprecated *keyfile* and *certfile* parameters have been removed." msgstr "" -#: ../../library/ftplib.rst:514 msgid "Here's a sample session using the :class:`FTP_TLS` class::" msgstr "" -#: ../../library/ftplib.rst:516 msgid "" ">>> ftps = FTP_TLS('ftp.pureftpd.org')\n" ">>> ftps.login()\n" @@ -520,107 +288,59 @@ msgid "" ">>> ftps.prot_p()\n" "'200 Data protection level set to \"private\"'\n" ">>> ftps.nlst()\n" -"['6jack', 'OpenBSD', 'antilink', 'blogbench', 'bsdcam', 'clockspeed', " -"'djbdns-jedi', 'docs', 'eaccelerator-jedi', 'favicon.ico', 'francotone', " -"'fugu', 'ignore', 'libpuzzle', 'metalog', 'minidentd', 'misc', 'mysql-udf-" -"global-user-variables', 'php-jenkins-hash', 'php-skein-hash', 'php-webdav', " -"'phpaudit', 'phpbench', 'pincaster', 'ping', 'posto', 'pub', 'public', " -"'public_keys', 'pure-ftpd', 'qscan', 'qtc', 'sharedance', 'skycache', " -"'sound', 'tmp', 'ucarp']" +"['6jack', 'OpenBSD', 'antilink', 'blogbench', 'bsdcam', 'clockspeed', 'djbdns-jedi', 'docs', 'eaccelerator-jedi', 'favicon.ico', 'francotone', 'fugu', 'ignore', 'libpuzzle', 'metalog', 'minidentd', 'misc', 'mysql-udf-global-user-variables', 'php-jenkins-hash', 'php-skein-hash', 'php-webdav', 'phpaudit', 'phpbench', 'pincaster', 'ping', 'posto', 'pub', 'public', 'public_keys', 'pure-ftpd', 'qscan', 'qtc', 'sharedance', 'skycache', 'sound', 'tmp', 'ucarp']" msgstr "" -#: ../../library/ftplib.rst:524 -msgid "" -":class:`!FTP_TLS` class inherits from :class:`FTP`, defining these " -"additional methods and attributes:" +msgid ":class:`!FTP_TLS` class inherits from :class:`FTP`, defining these additional methods and attributes:" msgstr "" -#: ../../library/ftplib.rst:529 msgid "The SSL version to use (defaults to :data:`ssl.PROTOCOL_SSLv23`)." msgstr "" -#: ../../library/ftplib.rst:533 -msgid "" -"Set up a secure control connection by using TLS or SSL, depending on what is " -"specified in the :attr:`ssl_version` attribute." +msgid "Set up a secure control connection by using TLS or SSL, depending on what is specified in the :attr:`ssl_version` attribute." msgstr "" -#: ../../library/ftplib.rst:536 -msgid "" -"The method now supports hostname check " -"with :attr:`ssl.SSLContext.check_hostname` and *Server Name Indication* " -"(see :const:`ssl.HAS_SNI`)." +msgid "The method now supports hostname check with :attr:`ssl.SSLContext.check_hostname` and *Server Name Indication* (see :const:`ssl.HAS_SNI`)." msgstr "" -#: ../../library/ftplib.rst:543 -msgid "" -"Revert control channel back to plaintext. This can be useful to take " -"advantage of firewalls that know how to handle NAT with non-secure FTP " -"without opening fixed ports." +msgid "Revert control channel back to plaintext. This can be useful to take advantage of firewalls that know how to handle NAT with non-secure FTP without opening fixed ports." msgstr "" -#: ../../library/ftplib.rst:551 msgid "Set up secure data connection." msgstr "" -#: ../../library/ftplib.rst:555 msgid "Set up clear text data connection." msgstr "" -#: ../../library/ftplib.rst:559 msgid "Module variables" msgstr "" -#: ../../library/ftplib.rst:563 msgid "Exception raised when an unexpected reply is received from the server." msgstr "" -#: ../../library/ftplib.rst:568 -msgid "" -"Exception raised when an error code signifying a temporary error (response " -"codes in the range 400--499) is received." +msgid "Exception raised when an error code signifying a temporary error (response codes in the range 400--499) is received." msgstr "" -#: ../../library/ftplib.rst:574 -msgid "" -"Exception raised when an error code signifying a permanent error (response " -"codes in the range 500--599) is received." +msgid "Exception raised when an error code signifying a permanent error (response codes in the range 500--599) is received." msgstr "" -#: ../../library/ftplib.rst:580 -msgid "" -"Exception raised when a reply is received from the server that does not fit " -"the response specifications of the File Transfer Protocol, i.e. begin with a " -"digit in the range 1--5." +msgid "Exception raised when a reply is received from the server that does not fit the response specifications of the File Transfer Protocol, i.e. begin with a digit in the range 1--5." msgstr "" -#: ../../library/ftplib.rst:587 -msgid "" -"The set of all exceptions (as a tuple) that methods of :class:`FTP` " -"instances may raise as a result of problems with the FTP connection (as " -"opposed to programming errors made by the caller). This set includes the " -"four exceptions listed above as well as :exc:`OSError` and :exc:`EOFError`." +msgid "The set of all exceptions (as a tuple) that methods of :class:`FTP` instances may raise as a result of problems with the FTP connection (as opposed to programming errors made by the caller). This set includes the four exceptions listed above as well as :exc:`OSError` and :exc:`EOFError`." msgstr "" -#: ../../library/ftplib.rst:595 msgid "Module :mod:`netrc`" msgstr "" -#: ../../library/ftplib.rst:596 -msgid "" -"Parser for the :file:`.netrc` file format. The file :file:`.netrc` is " -"typically used by FTP clients to load user authentication information before " -"prompting the user." +msgid "Parser for the :file:`.netrc` file format. The file :file:`.netrc` is typically used by FTP clients to load user authentication information before prompting the user." msgstr "" -#: ../../library/ftplib.rst:9 msgid "FTP" msgstr "" -#: ../../library/ftplib.rst:9 msgid "protocol" msgstr "" -#: ../../library/ftplib.rst:9 msgid "ftplib (standard module)" msgstr "" diff --git a/library/functional.po b/library/functional.po index ea7e2e9a..5f085d1d 100644 --- a/library/functional.po +++ b/library/functional.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:06+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,16 +21,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/functional.rst:3 msgid "Functional Programming Modules" msgstr "" -#: ../../library/functional.rst:5 -msgid "" -"The modules described in this chapter provide functions and classes that " -"support a functional programming style, and general operations on callables." +msgid "The modules described in this chapter provide functions and classes that support a functional programming style, and general operations on callables." msgstr "" -#: ../../library/functional.rst:8 msgid "The following modules are documented in this chapter:" msgstr "" diff --git a/library/functions.po b/library/functions.po index d6ddb4f0..f108687f 100644 --- a/library/functions.po +++ b/library/functions.po @@ -17,7 +17,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2026-08-26 06:41+0330\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/)\n" @@ -28,404 +28,297 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Poedit 3.6\n" -#: ../../library/functions.rst:5 ../../library/functions.rst:11 msgid "Built-in Functions" msgstr "توابع توکار" -#: ../../library/functions.rst:7 -msgid "" -"The Python interpreter has a number of functions and types built into it that are always available. They are listed here " -"in alphabetical order." -msgstr "" -"مفسر پایتون دارای تعدادی تابع و نوع داده (type) است که در آن بصورت توکار (built-in) همیشه در دسترس می‌باشند. آن‌ها در اینجا " -"به ترتیب حروف الفبا فهرست شده‌اند." +msgid "The Python interpreter has a number of functions and types built into it that are always available. They are listed here in alphabetical order." +msgstr "مفسر پایتون دارای تعدادی تابع و نوع داده (type) است که در آن بصورت توکار (built-in) همیشه در دسترس می‌باشند. آن‌ها در اینجا به ترتیب حروف الفبا فهرست شده‌اند." -#: ../../library/functions.rst:0 msgid "**A**" msgstr "**A**" -#: ../../library/functions.rst:0 msgid ":func:`abs`" msgstr ":func:`abs`" -#: ../../library/functions.rst:0 msgid ":func:`aiter`" msgstr ":func:`aiter`" -#: ../../library/functions.rst:0 msgid ":func:`all`" msgstr ":func:`all`" -#: ../../library/functions.rst:0 msgid ":func:`anext`" msgstr ":func:`anext`" -#: ../../library/functions.rst:0 msgid ":func:`any`" msgstr ":func:`any`" -#: ../../library/functions.rst:0 msgid ":func:`ascii`" msgstr ":func:`ascii`" -#: ../../library/functions.rst:0 msgid "**B**" msgstr "**B**" -#: ../../library/functions.rst:0 msgid ":func:`bin`" msgstr ":func:`bin`" -#: ../../library/functions.rst:0 msgid ":func:`bool`" msgstr ":func:`bool`" -#: ../../library/functions.rst:0 msgid ":func:`breakpoint`" msgstr ":func:`breakpoint`" -#: ../../library/functions.rst:0 msgid "|func-bytearray|_" msgstr "|func-bytearray|_" -#: ../../library/functions.rst:0 msgid "|func-bytes|_" msgstr "|func-bytes|_" -#: ../../library/functions.rst:0 msgid "**C**" msgstr "**C**" -#: ../../library/functions.rst:0 msgid ":func:`callable`" msgstr ":func:`callable`" -#: ../../library/functions.rst:0 msgid ":func:`chr`" msgstr ":func:`chr`" -#: ../../library/functions.rst:0 msgid ":func:`classmethod`" msgstr ":func:`classmethod`" -#: ../../library/functions.rst:0 msgid ":func:`compile`" msgstr ":func:`compile`" -#: ../../library/functions.rst:0 msgid ":func:`complex`" msgstr ":func:`complex`" -#: ../../library/functions.rst:0 msgid "**D**" msgstr "**D**" -#: ../../library/functions.rst:0 msgid ":func:`delattr`" msgstr ":func:`delattr`" -#: ../../library/functions.rst:0 msgid "|func-dict|_" msgstr "|func-dict|_" -#: ../../library/functions.rst:0 msgid ":func:`dir`" msgstr ":func:`dir`" -#: ../../library/functions.rst:0 msgid ":func:`divmod`" msgstr ":func:`divmod`" -#: ../../library/functions.rst:0 msgid "**E**" msgstr "**E**" -#: ../../library/functions.rst:0 msgid ":func:`enumerate`" msgstr ":func:`enumerate`" -#: ../../library/functions.rst:0 msgid ":func:`eval`" msgstr ":func:`eval`" -#: ../../library/functions.rst:0 msgid ":func:`exec`" msgstr ":func:`exec`" -#: ../../library/functions.rst:0 msgid "**F**" msgstr "**F**" -#: ../../library/functions.rst:0 msgid ":func:`filter`" msgstr ":func:`filter`" -#: ../../library/functions.rst:0 msgid ":func:`float`" msgstr ":func:`float`" -#: ../../library/functions.rst:0 msgid ":func:`format`" msgstr ":func:`format`" -#: ../../library/functions.rst:0 msgid "|func-frozenset|_" msgstr "|func-frozenset|_" -#: ../../library/functions.rst:0 msgid "**G**" msgstr "**G**" -#: ../../library/functions.rst:0 msgid ":func:`getattr`" msgstr ":func:`getattr`" -#: ../../library/functions.rst:0 msgid ":func:`globals`" msgstr ":func:`globals`" -#: ../../library/functions.rst:0 msgid "**H**" msgstr "**H**" -#: ../../library/functions.rst:0 msgid ":func:`hasattr`" msgstr ":func:`hasattr`" -#: ../../library/functions.rst:0 msgid ":func:`hash`" msgstr ":func:`hash`" -#: ../../library/functions.rst:0 msgid ":func:`help`" msgstr ":func:`help`" -#: ../../library/functions.rst:0 msgid ":func:`hex`" msgstr ":func:`hex`" -#: ../../library/functions.rst:0 msgid "**I**" msgstr "**I**" -#: ../../library/functions.rst:0 msgid ":func:`id`" msgstr ":func:`id`" -#: ../../library/functions.rst:0 msgid ":func:`input`" msgstr ":func:`input`" -#: ../../library/functions.rst:0 msgid ":func:`int`" msgstr ":func:`int`" -#: ../../library/functions.rst:0 msgid ":func:`isinstance`" msgstr ":func:`isinstance`" -#: ../../library/functions.rst:0 msgid ":func:`issubclass`" msgstr ":func:`issubclass`" -#: ../../library/functions.rst:0 msgid ":func:`iter`" msgstr ":func:`iter`" -#: ../../library/functions.rst:0 msgid "**L**" msgstr "**L**" -#: ../../library/functions.rst:0 msgid ":func:`len`" msgstr ":func:`len`" -#: ../../library/functions.rst:0 msgid "|func-list|_" msgstr "|func-list|_" -#: ../../library/functions.rst:0 msgid ":func:`locals`" msgstr ":func:`locals`" -#: ../../library/functions.rst:0 msgid "**M**" msgstr "**M**" -#: ../../library/functions.rst:0 msgid ":func:`map`" msgstr ":func:`map`" -#: ../../library/functions.rst:0 msgid ":func:`max`" msgstr ":func:`max`" -#: ../../library/functions.rst:0 msgid "|func-memoryview|_" msgstr "|func-memoryview|_" -#: ../../library/functions.rst:0 msgid ":func:`min`" msgstr ":func:`min`" -#: ../../library/functions.rst:0 msgid "**N**" msgstr "**N**" -#: ../../library/functions.rst:0 msgid ":func:`next`" msgstr ":func:`next`" -#: ../../library/functions.rst:0 msgid "**O**" msgstr "**O**" -#: ../../library/functions.rst:0 msgid ":func:`object`" msgstr ":func:`object`" -#: ../../library/functions.rst:0 msgid ":func:`oct`" msgstr ":func:`oct`" -#: ../../library/functions.rst:0 msgid ":func:`open`" msgstr ":func:`open`" -#: ../../library/functions.rst:0 msgid ":func:`ord`" msgstr ":func:`ord`" -#: ../../library/functions.rst:0 msgid "**P**" msgstr "**P**" -#: ../../library/functions.rst:0 msgid ":func:`pow`" msgstr ":func:`pow`" -#: ../../library/functions.rst:0 msgid ":func:`print`" msgstr ":func:`print`" -#: ../../library/functions.rst:0 msgid ":func:`property`" msgstr ":func:`property`" -#: ../../library/functions.rst:0 msgid "**R**" msgstr "**R**" -#: ../../library/functions.rst:0 msgid "|func-range|_" msgstr "|func-range|_" -#: ../../library/functions.rst:0 msgid ":func:`repr`" msgstr ":func:`repr`" -#: ../../library/functions.rst:0 msgid ":func:`reversed`" msgstr ":func:`reversed`" -#: ../../library/functions.rst:0 msgid ":func:`round`" msgstr ":func:`round`" -#: ../../library/functions.rst:0 msgid "**S**" msgstr "**S**" -#: ../../library/functions.rst:0 msgid "|func-set|_" msgstr "|func-set|_" -#: ../../library/functions.rst:0 msgid ":func:`setattr`" msgstr ":func:`setattr`" -#: ../../library/functions.rst:0 msgid ":func:`slice`" msgstr ":func:`slice`" -#: ../../library/functions.rst:0 msgid ":func:`sorted`" msgstr ":func:`sorted`" -#: ../../library/functions.rst:0 msgid ":func:`staticmethod`" msgstr ":func:`staticmethod`" -#: ../../library/functions.rst:0 msgid "|func-str|_" msgstr "|func-str|_" -#: ../../library/functions.rst:0 msgid ":func:`sum`" msgstr ":func:`sum`" -#: ../../library/functions.rst:0 msgid ":func:`super`" msgstr ":func:`super`" -#: ../../library/functions.rst:0 msgid "**T**" msgstr "**T**" -#: ../../library/functions.rst:0 msgid "|func-tuple|_" msgstr "|func-tuple|_" -#: ../../library/functions.rst:0 msgid ":func:`type`" msgstr ":func:`type`" -#: ../../library/functions.rst:0 msgid "**V**" msgstr "**V**" -#: ../../library/functions.rst:0 msgid ":func:`vars`" msgstr ":func:`vars`" -#: ../../library/functions.rst:0 msgid "**Z**" msgstr "**Z**" -#: ../../library/functions.rst:0 msgid ":func:`zip`" msgstr ":func:`zip`" -#: ../../library/functions.rst:0 msgid "**_**" msgstr "**_**" -#: ../../library/functions.rst:0 msgid ":func:`__import__`" msgstr ":func:`__import__`" -#: ../../library/functions.rst:59 -msgid "" -"Return the absolute value of a number. The argument may be an integer, a floating-point number, or an object " -"implementing :meth:`~object.__abs__`. If the argument is a complex number, its magnitude is returned." -msgstr "" -"مقدار قدر مطلق یک عدد را برمی‌گرداند. آرگومان می تواند یک عدد صحیح، یک عدد اعشاری، یا یک شیء که :meth:`~object.__abs__` را " -"پیاده‌سازی می‌کند، باشد. اگر ارگومان یک عدد مختلط باشد، بزرگی آن بازگردانده می‌شود." +msgid "Return the absolute value of a number. The argument may be an integer, a floating-point number, or an object implementing :meth:`~object.__abs__`. If the argument is a complex number, its magnitude is returned." +msgstr "مقدار قدر مطلق یک عدد را برمی‌گرداند. آرگومان می تواند یک عدد صحیح، یک عدد اعشاری، یا یک شیء که :meth:`~object.__abs__` را پیاده‌سازی می‌کند، باشد. اگر ارگومان یک عدد مختلط باشد، بزرگی آن بازگردانده می‌شود." -#: ../../library/functions.rst:67 msgid "Return an :term:`asynchronous iterator` for an :term:`asynchronous iterable`. Equivalent to calling ``x.__aiter__()``." -msgstr "" -"بازگرداندن یک :term:`asynchronous iterator` برای یک :term:`asynchronous iterable` معادل فراخوانی ``x.__aiter__()`` است." +msgstr "بازگرداندن یک :term:`asynchronous iterator` برای یک :term:`asynchronous iterable` معادل فراخوانی ``x.__aiter__()`` است." -#: ../../library/functions.rst:70 msgid "Note: Unlike :func:`iter`, :func:`aiter` has no 2-argument variant." msgstr "توجه: برخلاف :func:`iter`، :func:`aiter` نسخه دو آرگومانی ندارد." -#: ../../library/functions.rst:76 msgid "Return ``True`` if all elements of the *iterable* are true (or if the iterable is empty). Equivalent to::" msgstr "در صورتی که تمام عناصر *iterable* درست باشند (یا اگر iterable خالی باشد)، ``True`` را برمی گرداند. معادل با::" -#: ../../library/functions.rst:79 msgid "" "def all(iterable):\n" " for element in iterable:\n" @@ -439,35 +332,18 @@ msgstr "" " return False\n" " return True" -#: ../../library/functions.rst:89 -msgid "" -"When awaited, return the next item from the given :term:`asynchronous iterator`, or *default* if given and the iterator is " -"exhausted." -msgstr "" -"هنگام اِنتظار (await)، عنصر بعدی را از :term:`asynchronous iterator` داده شده برمی‌گرداند، یا اگر آرگومان *default* ارائه شده " -"و تکرارکننده به پایان رسیده باشد، مقدار *default* را برمی‌گرداند." +msgid "When awaited, return the next item from the given :term:`asynchronous iterator`, or *default* if given and the iterator is exhausted." +msgstr "هنگام اِنتظار (await)، عنصر بعدی را از :term:`asynchronous iterator` داده شده برمی‌گرداند، یا اگر آرگومان *default* ارائه شده و تکرارکننده به پایان رسیده باشد، مقدار *default* را برمی‌گرداند." -#: ../../library/functions.rst:92 msgid "This is the async variant of the :func:`next` builtin, and behaves similarly." msgstr "این، نسخه ناهمگامِ تابع توکار :func:`next` است و به طور مشابه عمل می‌کند." -#: ../../library/functions.rst:95 -msgid "" -"This calls the :meth:`~object.__anext__` method of *async_iterator*, returning an :term:`awaitable`. Awaiting this returns " -"the next value of the iterator. If *default* is given, it is returned if the iterator is exhausted, " -"otherwise :exc:`StopAsyncIteration` is raised." -msgstr "" -"این متد :meth:`~object.__anext__` از *async_iterator* را فراخوانی می کند و یک :term:`awaitable` را برمی گرداند. در انتظار " -"این مقدار بعدی تکرارگر را برمی گرداند. اگر *default* داده شود، اگر تکرارگر تمام شده باشد، برگردانده می شود، در غیر " -"این صورت :exc:`StopAsyncIteration` پرتاب میشود." +msgid "This calls the :meth:`~object.__anext__` method of *async_iterator*, returning an :term:`awaitable`. Awaiting this returns the next value of the iterator. If *default* is given, it is returned if the iterator is exhausted, otherwise :exc:`StopAsyncIteration` is raised." +msgstr "این متد :meth:`~object.__anext__` از *async_iterator* را فراخوانی می کند و یک :term:`awaitable` را برمی گرداند. در انتظار این مقدار بعدی تکرارگر را برمی گرداند. اگر *default* داده شود، اگر تکرارگر تمام شده باشد، برگردانده می شود، در غیر این صورت :exc:`StopAsyncIteration` پرتاب میشود." -#: ../../library/functions.rst:104 -msgid "" -"Return ``True`` if any element of the *iterable* is true. If the iterable is empty, return ``False``. Equivalent to::" -msgstr "" -"اگر هر عنصری از *iterable* درست باشد، ``True`` را برگردانید. اگر iterable خالی باشد، ``False`` را برگردانید. معادل با::" +msgid "Return ``True`` if any element of the *iterable* is true. If the iterable is empty, return ``False``. Equivalent to::" +msgstr "اگر هر عنصری از *iterable* درست باشد، ``True`` را برگردانید. اگر iterable خالی باشد، ``False`` را برگردانید. معادل با::" -#: ../../library/functions.rst:107 msgid "" "def any(iterable):\n" " for element in iterable:\n" @@ -481,204 +357,93 @@ msgstr "" " return True\n" " return False" -#: ../../library/functions.rst:116 -msgid "" -"As :func:`repr`, return a string containing a printable representation of an object, but escape the non-ASCII characters in " -"the string returned by :func:`repr` using ``\\x``, ``\\u``, or ``\\U`` escapes. This generates a string similar to that " -"returned by :func:`repr` in Python 2." -msgstr "" -"مانند تابع :func:`repr`، رشته‌ای حاوی نمایش قابل چاپ یک شیء را برمی‌گرداند، اما نویسه‌های غیر اَسکی (non-ASCII) را در رشته‌ی " -"بازگردانده‌شده توسط تابع :func:`repr`، با استفاده از توالی‌های گریز (escapes) ``\\x``، ``\\u`` یا ``\\U`` اِسکِیپ (escape) " -"می‌کند. این عمل، رشته‌ای مشابه آنچه تابع :func:`repr` در پایتون ۲ بازمی‌گرداند، تولید می‌کند." +msgid "As :func:`repr`, return a string containing a printable representation of an object, but escape the non-ASCII characters in the string returned by :func:`repr` using ``\\x``, ``\\u``, or ``\\U`` escapes. This generates a string similar to that returned by :func:`repr` in Python 2." +msgstr "مانند تابع :func:`repr`، رشته‌ای حاوی نمایش قابل چاپ یک شیء را برمی‌گرداند، اما نویسه‌های غیر اَسکی (non-ASCII) را در رشته‌ی بازگردانده‌شده توسط تابع :func:`repr`، با استفاده از توالی‌های گریز (escapes) ``\\x``، ``\\u`` یا ``\\U`` اِسکِیپ (escape) می‌کند. این عمل، رشته‌ای مشابه آنچه تابع :func:`repr` در پایتون ۲ بازمی‌گرداند، تولید می‌کند." -#: ../../library/functions.rst:124 -msgid "" -"Convert an integer number to a binary string prefixed with \"0b\". The result is a valid Python expression. If *integer* is " -"not a Python :class:`int` object, it has to define an :meth:`~object.__index__` method that returns an integer. Some " -"examples:" -msgstr "" -"تبدیل یک عدد صحیح به یک رشته باینری که با \"0b\" پیشوند شده است. نتیجه یک عبارت معتبر پایتون خواهد بود. اگر *integer* یک " -"شیء پایتون :class:`int` نباشد، لازم است یک متد :meth:`~object.__index__` تعریف کند که یک عدد صحیح برگرداند. برخی مثال ها:" +msgid "Convert an integer number to a binary string prefixed with \"0b\". The result is a valid Python expression. If *integer* is not a Python :class:`int` object, it has to define an :meth:`~object.__index__` method that returns an integer. Some examples:" +msgstr "تبدیل یک عدد صحیح به یک رشته باینری که با \"0b\" پیشوند شده است. نتیجه یک عبارت معتبر پایتون خواهد بود. اگر *integer* یک شیء پایتون :class:`int` نباشد، لازم است یک متد :meth:`~object.__index__` تعریف کند که یک عدد صحیح برگرداند. برخی مثال ها:" -#: ../../library/functions.rst:134 msgid "If the prefix \"0b\" is desired or not, you can use either of the following ways." msgstr "چنانچه پیشوند \"0b\" مطلوب باشد یا نباشد، می‌توانید از یکی از روش‌های زیر استفاده کنید." -#: ../../library/functions.rst:141 msgid "See also :func:`enum.bin` to represent negative values as twos-complement." msgstr "همچنین برای نمایش مقادیر منفی به‌صورت مکمل دو، به :func:`enum.bin` مراجعه کنید." -#: ../../library/functions.rst:143 ../../library/functions.rst:956 ../../library/functions.rst:1340 msgid "See also :func:`format` for more information." msgstr "همچنین برای اطلاعات بیشتر، به تابع :func:`format` مراجعه کنید." -#: ../../library/functions.rst:148 -msgid "" -"Return a Boolean value, i.e. one of ``True`` or ``False``. The argument is converted using the standard :ref:`truth " -"testing procedure `. If the argument is false or omitted, this returns ``False``; otherwise, it returns ``True``. " -"The :class:`bool` class is a subclass of :class:`int` (see :ref:`typesnumeric`). It cannot be subclassed further. Its only " -"instances are ``False`` and ``True`` (see :ref:`typebool`)." -msgstr "" -"یک مقدار بولی، یعنی یکی از ``True`` یا ``False`` را بر می‌گرداند. آرگومان با استفاده از استاندارد :ref:`truth testing " -"procedure ` تبدیل می شود. اگر آرگومان نادرست یا حذف شده باشد، ``False`` را برمی گرداند. در غیر این صورت، ``True`` را " -"برمی گرداند. کلاس :class:`bool` یک زیر کلاس از :class:`int` است (به :ref:`typesnumeric` مراجعه کنید). این کلاس دیگر قابل " -"زیرکلاس‌بندی نیست. تنها نمونه های آن ``False`` و ``True`` هستند (به :ref:`typebool` مراجعه کنید)." +msgid "Return a Boolean value, i.e. one of ``True`` or ``False``. The argument is converted using the standard :ref:`truth testing procedure `. If the argument is false or omitted, this returns ``False``; otherwise, it returns ``True``. The :class:`bool` class is a subclass of :class:`int` (see :ref:`typesnumeric`). It cannot be subclassed further. Its only instances are ``False`` and ``True`` (see :ref:`typebool`)." +msgstr "یک مقدار بولی، یعنی یکی از ``True`` یا ``False`` را بر می‌گرداند. آرگومان با استفاده از استاندارد :ref:`truth testing procedure ` تبدیل می شود. اگر آرگومان نادرست یا حذف شده باشد، ``False`` را برمی گرداند. در غیر این صورت، ``True`` را برمی گرداند. کلاس :class:`bool` یک زیر کلاس از :class:`int` است (به :ref:`typesnumeric` مراجعه کنید). این کلاس دیگر قابل زیرکلاس‌بندی نیست. تنها نمونه های آن ``False`` و ``True`` هستند (به :ref:`typebool` مراجعه کنید)." -#: ../../library/functions.rst:158 ../../library/functions.rst:821 msgid "The parameter is now positional-only." msgstr "این آرگومان اکنون فقط‌جایگاهی (positional-only) است." -#: ../../library/functions.rst:163 -msgid "" -"This function drops you into the debugger at the call site. Specifically, it calls :func:`sys.breakpointhook`, passing " -"``args`` and ``kws`` straight through. By default, ``sys.breakpointhook()`` calls :func:`pdb.set_trace` expecting no " -"arguments. In this case, it is purely a convenience function so you don't have to explicitly import :mod:`pdb` or type as " -"much code to enter the debugger. However, :func:`sys.breakpointhook` can be set to some other function " -"and :func:`breakpoint` will automatically call that, allowing you to drop into the debugger of choice. " -"If :func:`sys.breakpointhook` is not accessible, this function will raise :exc:`RuntimeError`." -msgstr "" -"این تابع، اجرای برنامه را در محل فراخوانی متوقف کرده و شما را وارد محیط اشکال‌زدا (debugger) می‌کند. به طور خاص، این " -"تابع، :func:`sys.breakpointhook` را فراخوانی کرده و مقادیر ``args`` و ``kws`` مستقیماً به آن ارسال (pass) می‌کند. به طور " -"پیش‌فرض، تابع ``sys.breakpointhook()`` بدون نیاز به هیچ آرگومانی :func:`pdb.set_trace` را فراخوانی می کند. در این حالت، این " -"صرفاً یک تابع کمکی (convenience function) است تا مجبور نباشید ماژول :mod:`pdb` را به صراحت ایمپورت (import) کنید یا برای " -"ورود به اشکال‌زدا، کد زیادی بنویسید. با این حال، می‌توان :func:`sys.breakpointhook` را روی تابع دیگری تنظیم کرد و در این " -"صورت، :func:`breakpoint` به طور خودکار آن را فراخوانی می کند و به شما این امکان را می دهد که به اشکال‌زدای مورد نظر خود وارد " -"شوید. اگر :func:`sys.breakpointhook` قابل دسترسی نباشد، این تابع، استثنای :exc:`RuntimeError` را پرتاب خواهد کرد." - -#: ../../library/functions.rst:175 -msgid "" -"By default, the behavior of :func:`breakpoint` can be changed with the :envvar:`PYTHONBREAKPOINT` environment variable. " -"See :func:`sys.breakpointhook` for usage details." -msgstr "" -"به طور پیش‌فرض، رفتار تابع :func:`breakpoint` را می‌توان با متغیر محیطی :envvar:`PYTHONBREAKPOINT` تغییر داد. برای جزئیات " -"استفاده، به تابع :func:`sys.breakpointhook` مراجعه کنید." +msgid "This function drops you into the debugger at the call site. Specifically, it calls :func:`sys.breakpointhook`, passing ``args`` and ``kws`` straight through. By default, ``sys.breakpointhook()`` calls :func:`pdb.set_trace` expecting no arguments. In this case, it is purely a convenience function so you don't have to explicitly import :mod:`pdb` or type as much code to enter the debugger. However, :func:`sys.breakpointhook` can be set to some other function and :func:`breakpoint` will automatically call that, allowing you to drop into the debugger of choice. If :func:`sys.breakpointhook` is not accessible, this function will raise :exc:`RuntimeError`." +msgstr "این تابع، اجرای برنامه را در محل فراخوانی متوقف کرده و شما را وارد محیط اشکال‌زدا (debugger) می‌کند. به طور خاص، این تابع، :func:`sys.breakpointhook` را فراخوانی کرده و مقادیر ``args`` و ``kws`` مستقیماً به آن ارسال (pass) می‌کند. به طور پیش‌فرض، تابع ``sys.breakpointhook()`` بدون نیاز به هیچ آرگومانی :func:`pdb.set_trace` را فراخوانی می کند. در این حالت، این صرفاً یک تابع کمکی (convenience function) است تا مجبور نباشید ماژول :mod:`pdb` را به صراحت ایمپورت (import) کنید یا برای ورود به اشکال‌زدا، کد زیادی بنویسید. با این حال، می‌توان :func:`sys.breakpointhook` را روی تابع دیگری تنظیم کرد و در این صورت، :func:`breakpoint` به طور خودکار آن را فراخوانی می کند و به شما این امکان را می دهد که به اشکال‌زدای مورد نظر خود وارد شوید. اگر :func:`sys.breakpointhook` قابل دسترسی نباشد، این تابع، استثنای :exc:`RuntimeError` را پرتاب خواهد کرد." + +msgid "By default, the behavior of :func:`breakpoint` can be changed with the :envvar:`PYTHONBREAKPOINT` environment variable. See :func:`sys.breakpointhook` for usage details." +msgstr "به طور پیش‌فرض، رفتار تابع :func:`breakpoint` را می‌توان با متغیر محیطی :envvar:`PYTHONBREAKPOINT` تغییر داد. برای جزئیات استفاده، به تابع :func:`sys.breakpointhook` مراجعه کنید." -#: ../../library/functions.rst:179 msgid "Note that this is not guaranteed if :func:`sys.breakpointhook` has been replaced." msgstr "توجه داشته باشید که این امر تضمین نمی‌شود اگر تابع :func:`sys.breakpointhook` جایگزین شده باشد." -#: ../../library/functions.rst:182 msgid "Raises an :ref:`auditing event ` ``builtins.breakpoint`` with argument ``breakpointhook``." msgstr "یک :ref:`رویداد ممیزی ` ``builtins.breakpoint`` با آرگومان ``breakpointhook`` پرتاب می‌کند." -#: ../../library/functions.rst:191 -msgid "" -"Return a new array of bytes. The :class:`bytearray` class is a mutable sequence of integers in the range 0 <= x < 256. It " -"has most of the usual methods of mutable sequences, described in :ref:`typesseq-mutable`, as well as most methods that " -"the :class:`bytes` type has, see :ref:`bytes-methods`." -msgstr "" -"یک آرایهٔ جدید از بایت‌ها را برمی‌گرداند. کلاس :class:`bytearray` دنباله‌ای قابل‌تغییر از اعداد صحیح در بازهٔ 0 <= x < 256 است. " -"این کلاس بیشتر متدهای معمول دنباله‌های قابل‌تغییر را دارد که در :ref:`typesseq-mutable` شرح داده شده‌اند، و همچنین بیشتر " -"متدهایی را دارد که نوع :class:`bytes` دارد؛ به :ref:`bytes-methods` مراجعه کنید." +msgid "Return a new array of bytes. The :class:`bytearray` class is a mutable sequence of integers in the range 0 <= x < 256. It has most of the usual methods of mutable sequences, described in :ref:`typesseq-mutable`, as well as most methods that the :class:`bytes` type has, see :ref:`bytes-methods`." +msgstr "یک آرایهٔ جدید از بایت‌ها را برمی‌گرداند. کلاس :class:`bytearray` دنباله‌ای قابل‌تغییر از اعداد صحیح در بازهٔ 0 <= x < 256 است. این کلاس بیشتر متدهای معمول دنباله‌های قابل‌تغییر را دارد که در :ref:`typesseq-mutable` شرح داده شده‌اند، و همچنین بیشتر متدهایی را دارد که نوع :class:`bytes` دارد؛ به :ref:`bytes-methods` مراجعه کنید." -#: ../../library/functions.rst:196 msgid "The optional *source* parameter can be used to initialize the array in a few different ways:" msgstr "از پارامتر اختیاری *source* می‌توان برای مقداردهی اولیه آرایه به چند روش مختلف استفاده کرد:" -#: ../../library/functions.rst:199 -msgid "" -"If it is a *string*, you must also give the *encoding* (and optionally, *errors*) parameters; :func:`bytearray` then " -"converts the string to bytes using :meth:`str.encode`." -msgstr "" -"اگر *source* یک *رشته* «*string*» باشد، باید پارامترهای *encoding* و (به‌صورت اختیاری) *errors* را نیز مشخص کنید؛ سپس " -"تابع :func:`bytearray` آن رشته را با استفاده از متد :meth:`str.encode` به بایت‌ها تبدیل می‌کند." +msgid "If it is a *string*, you must also give the *encoding* (and optionally, *errors*) parameters; :func:`bytearray` then converts the string to bytes using :meth:`str.encode`." +msgstr "اگر *source* یک *رشته* «*string*» باشد، باید پارامترهای *encoding* و (به‌صورت اختیاری) *errors* را نیز مشخص کنید؛ سپس تابع :func:`bytearray` آن رشته را با استفاده از متد :meth:`str.encode` به بایت‌ها تبدیل می‌کند." -#: ../../library/functions.rst:203 msgid "If it is an *integer*, the array will have that size and will be initialized with null bytes." -msgstr "" -"اگر «*source*» یک *عدد صحیح* «integer» باشد، آرایه به اندازه همان عدد ایجاد شده و با بایت‌های تهی «null byte» مقداردهی اولیه " -"خواهد شد." +msgstr "اگر «*source*» یک *عدد صحیح* «integer» باشد، آرایه به اندازه همان عدد ایجاد شده و با بایت‌های تهی «null byte» مقداردهی اولیه خواهد شد." -#: ../../library/functions.rst:206 -msgid "" -"If it is an object conforming to the :ref:`buffer interface `, a read-only buffer of the object will be used " -"to initialize the bytes array." -msgstr "" -"اگر آرگومان، شیئی سازگار با :ref:`رابط بافر ` باشد، از یک بافر فقط‌خواندنیِ آن شیء برای مقداردهی اولیهٔ آرایهٔ " -"بایت‌ها استفاده خواهد شد." +msgid "If it is an object conforming to the :ref:`buffer interface `, a read-only buffer of the object will be used to initialize the bytes array." +msgstr "اگر آرگومان، شیئی سازگار با :ref:`رابط بافر ` باشد، از یک بافر فقط‌خواندنیِ آن شیء برای مقداردهی اولیهٔ آرایهٔ بایت‌ها استفاده خواهد شد." -#: ../../library/functions.rst:209 -msgid "" -"If it is an *iterable*, it must be an iterable of integers in the range ``0 <= x < 256``, which are used as the initial " -"contents of the array." -msgstr "" -"اگر «*source*» یک *تکرارپذیر* «iterable» باشد، باید یک تکرارپذیر از اعداد صحیح در بازه ``0 <= x < 256`` باشد، که این اعداد " -"به‌عنوان محتویات اولیه آرایه استفاده می‌شوند." +msgid "If it is an *iterable*, it must be an iterable of integers in the range ``0 <= x < 256``, which are used as the initial contents of the array." +msgstr "اگر «*source*» یک *تکرارپذیر* «iterable» باشد، باید یک تکرارپذیر از اعداد صحیح در بازه ``0 <= x < 256`` باشد، که این اعداد به‌عنوان محتویات اولیه آرایه استفاده می‌شوند." -#: ../../library/functions.rst:212 msgid "Without an argument, an array of size 0 is created." msgstr "بدون آرگومان، یک آرایه با اندازه صفر «0» ایجاد می شود." -#: ../../library/functions.rst:214 msgid "See also :ref:`binaryseq` and :ref:`typebytearray`." msgstr "همچنین به :ref:`binaryseq` و :ref:`typebytearray` مراجعه کنید." -#: ../../library/functions.rst:222 -msgid "" -"Return a new \"bytes\" object which is an immutable sequence of integers in the range ``0 <= x < 256``. :class:`bytes` is " -"an immutable version of :class:`bytearray` -- it has the same non-mutating methods and the same indexing and slicing " -"behavior." -msgstr "" -"یک شیء «bytes» جدید را برمی‌گرداند که دنباله‌ای تغییرناپذیر از اعداد صحیح در بازهٔ ``0 <= x < 256`` است. :class:`bytes` نسخهٔ " -"تغییرناپذیر :class:`bytearray` است؛ همان متدهای غیرتغییردهنده و همان رفتار اندیس‌گذاری و برش (slicing) را دارد." +msgid "Return a new \"bytes\" object which is an immutable sequence of integers in the range ``0 <= x < 256``. :class:`bytes` is an immutable version of :class:`bytearray` -- it has the same non-mutating methods and the same indexing and slicing behavior." +msgstr "یک شیء «bytes» جدید را برمی‌گرداند که دنباله‌ای تغییرناپذیر از اعداد صحیح در بازهٔ ``0 <= x < 256`` است. :class:`bytes` نسخهٔ تغییرناپذیر :class:`bytearray` است؛ همان متدهای غیرتغییردهنده و همان رفتار اندیس‌گذاری و برش (slicing) را دارد." -#: ../../library/functions.rst:227 msgid "Accordingly, constructor arguments are interpreted as for :func:`bytearray`." msgstr "بر این اساس، آرگومان‌های سازنده همانند :func:`bytearray` تفسیر می‌شوند." -#: ../../library/functions.rst:229 msgid "Bytes objects can also be created with literals, see :ref:`strings`." msgstr "اشیای bytes را می‌توان با استفاده از ثابت‌های متنی نیز ایجاد کرد؛ برای اطلاعات بیشتر، :ref:`strings` را ببینید." -#: ../../library/functions.rst:231 msgid "See also :ref:`binaryseq`, :ref:`typebytes`, and :ref:`bytes-methods`." msgstr "همچنین به :ref:`binaryseq`، :ref:`typebytes` و :ref:`bytes-methods` مراجعه کنید." -#: ../../library/functions.rst:236 -msgid "" -"Return :const:`True` if the *object* argument appears callable, :const:`False` if not. If this returns ``True``, it is " -"still possible that a call fails, but if it is ``False``, calling *object* will never succeed. Note that classes are " -"callable (calling a class returns a new instance); instances are callable if their class has a :meth:`~object.__call__` " -"method." -msgstr "" -"اگر آرگومان *object* فراخوانی‌پذیر باشد، مقدار :const:`True` و در غیر این صورت مقدار :const:`False` را برمی‌گرداند. اگر نتیجه " -"``True`` باشد، همچنان ممکن است فراخوانی با شکست مواجه شود؛ اما اگر ``False`` باشد، فراخوانی *object* هرگز موفق نخواهد شد. " -"توجه داشته باشید که کلاس‌ها فراخوانی‌پذیر هستند (فراخوانی یک کلاس یک نمونهٔ جدید برمی‌گرداند) و نمونه‌ها نیز در صورتی " -"فراخوانی‌پذیر هستند که کلاس آن‌ها متد :meth:`~object.__call__` را داشته باشد." +msgid "Return :const:`True` if the *object* argument appears callable, :const:`False` if not. If this returns ``True``, it is still possible that a call fails, but if it is ``False``, calling *object* will never succeed. Note that classes are callable (calling a class returns a new instance); instances are callable if their class has a :meth:`~object.__call__` method." +msgstr "اگر آرگومان *object* فراخوانی‌پذیر باشد، مقدار :const:`True` و در غیر این صورت مقدار :const:`False` را برمی‌گرداند. اگر نتیجه ``True`` باشد، همچنان ممکن است فراخوانی با شکست مواجه شود؛ اما اگر ``False`` باشد، فراخوانی *object* هرگز موفق نخواهد شد. توجه داشته باشید که کلاس‌ها فراخوانی‌پذیر هستند (فراخوانی یک کلاس یک نمونهٔ جدید برمی‌گرداند) و نمونه‌ها نیز در صورتی فراخوانی‌پذیر هستند که کلاس آن‌ها متد :meth:`~object.__call__` را داشته باشد." -#: ../../library/functions.rst:242 msgid "This function was first removed in Python 3.0 and then brought back in Python 3.2." msgstr "این تابع ابتدا در پایتون ۳٫۰ حذف شد و سپس در پایتون ۳٫۲ دوباره بازگردانده شد." -#: ../../library/functions.rst:249 -msgid "" -"Return the string representing a character with the specified Unicode code point. For example, ``chr(97)`` returns the " -"string ``'a'``, while ``chr(8364)`` returns the string ``'€'``. This is the inverse of :func:`ord`." -msgstr "" -"رشته‌ای را که نویسهٔ متناظر با نقطهٔ کد یونی‌کد مشخص‌شده را نمایش می‌دهد، برمی‌گرداند. برای مثال، ``chr(97)`` رشتهٔ ``'a'`` و " -"``chr(8364)`` رشتهٔ ``'€'`` را برمی‌گرداند. این تابع معکوس :func:`ord` است." +msgid "Return the string representing a character with the specified Unicode code point. For example, ``chr(97)`` returns the string ``'a'``, while ``chr(8364)`` returns the string ``'€'``. This is the inverse of :func:`ord`." +msgstr "رشته‌ای را که نویسهٔ متناظر با نقطهٔ کد یونی‌کد مشخص‌شده را نمایش می‌دهد، برمی‌گرداند. برای مثال، ``chr(97)`` رشتهٔ ``'a'`` و ``chr(8364)`` رشتهٔ ``'€'`` را برمی‌گرداند. این تابع معکوس :func:`ord` است." -#: ../../library/functions.rst:253 -msgid "" -"The valid range for the argument is from 0 through 1,114,111 (0x10FFFF in base 16). :exc:`ValueError` will be raised if it " -"is outside that range." -msgstr "" -"بازهٔ معتبر برای این آرگومان از ۰ تا ۱٬۱۱۴٬۱۱۱ (برابر با 0x10FFFF در مبنای ۱۶) است. اگر مقدار خارج از این بازه باشد، " -"استثنای :exc:`ValueError` پرتاب خواهد شد." +msgid "The valid range for the argument is from 0 through 1,114,111 (0x10FFFF in base 16). :exc:`ValueError` will be raised if it is outside that range." +msgstr "بازهٔ معتبر برای این آرگومان از ۰ تا ۱٬۱۱۴٬۱۱۱ (برابر با 0x10FFFF در مبنای ۱۶) است. اگر مقدار خارج از این بازه باشد، استثنای :exc:`ValueError` پرتاب خواهد شد." -#: ../../library/functions.rst:259 msgid "Transform a method into a class method." msgstr "یک متد را به متد کلاسی تبدیل می‌کند." -#: ../../library/functions.rst:261 -msgid "" -"A class method receives the class as an implicit first argument, just like an instance method receives the instance. To " -"declare a class method, use this idiom::" -msgstr "" -"یک متد کلاس، همان‌طور که متد نمونه، نمونه را به‌عنوان نخستین آرگومان ضمنی دریافت می‌کند، کلاس را به‌عنوان نخستین آرگومان ضمنی " -"دریافت می‌کند. برای تعریف یک متد کلاس، از الگوی زیر استفاده کنید::" +msgid "A class method receives the class as an implicit first argument, just like an instance method receives the instance. To declare a class method, use this idiom::" +msgstr "یک متد کلاس، همان‌طور که متد نمونه، نمونه را به‌عنوان نخستین آرگومان ضمنی دریافت می‌کند، کلاس را به‌عنوان نخستین آرگومان ضمنی دریافت می‌کند. برای تعریف یک متد کلاس، از الگوی زیر استفاده کنید::" -#: ../../library/functions.rst:265 msgid "" "class C:\n" " @classmethod\n" @@ -688,174 +453,72 @@ msgstr "" " @classmethod\n" " def f(cls, arg1, arg2): ..." -#: ../../library/functions.rst:269 msgid "The ``@classmethod`` form is a function :term:`decorator` -- see :ref:`function` for details." msgstr "شکل ``@classmethod`` یک :term:`تزئین‌کننده ` تابع است؛ برای جزئیات به :ref:`function` مراجعه کنید." -#: ../../library/functions.rst:272 -msgid "" -"A class method can be called either on the class (such as ``C.f()``) or on an instance (such as ``C().f()``). The instance " -"is ignored except for its class. If a class method is called for a derived class, the derived class object is passed as the " -"implied first argument." -msgstr "" -"یک متد کلاس را می‌توان هم روی خود کلاس (مانند ``C.f()``) و هم روی یک نمونه (مانند ``C().f()``) فراخوانی کرد. در حالت دوم، " -"نمونه نادیده گرفته می‌شود و فقط کلاس آن در نظر گرفته می‌شود. اگر متد کلاس برای یک کلاس مشتق‌شده فراخوانی شود، شیء کلاس مشتق‌شده " -"به‌عنوان نخستین آرگومان ضمنی ارسال می‌شود." +msgid "A class method can be called either on the class (such as ``C.f()``) or on an instance (such as ``C().f()``). The instance is ignored except for its class. If a class method is called for a derived class, the derived class object is passed as the implied first argument." +msgstr "یک متد کلاس را می‌توان هم روی خود کلاس (مانند ``C.f()``) و هم روی یک نمونه (مانند ``C().f()``) فراخوانی کرد. در حالت دوم، نمونه نادیده گرفته می‌شود و فقط کلاس آن در نظر گرفته می‌شود. اگر متد کلاس برای یک کلاس مشتق‌شده فراخوانی شود، شیء کلاس مشتق‌شده به‌عنوان نخستین آرگومان ضمنی ارسال می‌شود." -#: ../../library/functions.rst:277 -msgid "" -"Class methods are different than C++ or Java static methods. If you want those, see :func:`staticmethod` in this section. " -"For more information on class methods, see :ref:`types`." -msgstr "" -"متدهای کلاس با متدهای ایستای زبان‌های ++C یا Java تفاوت دارند. اگر به آن نوع متدها نیاز دارید، به :func:`staticmethod` در " -"همین بخش مراجعه کنید. برای اطلاعات بیشتر دربارهٔ متدهای کلاس، :ref:`types` را ببینید." +msgid "Class methods are different than C++ or Java static methods. If you want those, see :func:`staticmethod` in this section. For more information on class methods, see :ref:`types`." +msgstr "متدهای کلاس با متدهای ایستای زبان‌های ++C یا Java تفاوت دارند. اگر به آن نوع متدها نیاز دارید، به :func:`staticmethod` در همین بخش مراجعه کنید. برای اطلاعات بیشتر دربارهٔ متدهای کلاس، :ref:`types` را ببینید." -#: ../../library/functions.rst:281 msgid "Class methods can now wrap other :term:`descriptors ` such as :func:`property`." msgstr "اکنون متدهای کلاس می‌توانند سایر :term:`توصیفگرها `، مانند :func:`property`، را دربر بگیرند." -#: ../../library/functions.rst:285 -msgid "" -"Class methods now inherit the method attributes " -"(:attr:`~function.__module__`, :attr:`~function.__name__`, :attr:`~function.__qualname__`, :attr:`~function.__doc__` " -"and :attr:`~function.__annotations__`) and have a new ``__wrapped__`` attribute." -msgstr "" -"اکنون متدهای کلاس ویژگی‌های متد " -"(:attr:`~function.__module__`، :attr:`~function.__name__`، :attr:`~function.__qualname__`، :attr:`~function.__doc__` " -"و :attr:`~function.__annotations__`) را به ارث می‌برند و همچنین دارای ویژگی جدید ``__wrapped__`` هستند." +msgid "Class methods now inherit the method attributes (:attr:`~function.__module__`, :attr:`~function.__name__`, :attr:`~function.__qualname__`, :attr:`~function.__doc__` and :attr:`~function.__annotations__`) and have a new ``__wrapped__`` attribute." +msgstr "اکنون متدهای کلاس ویژگی‌های متد (:attr:`~function.__module__`، :attr:`~function.__name__`، :attr:`~function.__qualname__`، :attr:`~function.__doc__` و :attr:`~function.__annotations__`) را به ارث می‌برند و همچنین دارای ویژگی جدید ``__wrapped__`` هستند." -#: ../../library/functions.rst:292 msgid "Class methods can no longer wrap other :term:`descriptors ` such as :func:`property`." msgstr "دیگر متدهای کلاس نمی‌توانند سایر :term:`توصیفگرها `، مانند :func:`property`، را دربر بگیرند." -#: ../../library/functions.rst:299 -msgid "" -"Compile the *source* into a code or AST object. Code objects can be executed by :func:`exec` or :func:`eval`. *source* " -"can either be a normal string, a byte string, or an AST object. Refer to the :mod:`ast` module documentation for " -"information on how to work with AST objects." -msgstr "" -"*source* را به یک شیء کد یا AST کامپایل می‌کند. اشیای کد را می‌توان با :func:`exec` یا :func:`eval` اجرا کرد. *source* " -"می‌تواند یک رشتهٔ معمولی، یک رشتهٔ بایتی یا یک شیء AST باشد. برای اطلاعات بیشتر دربارهٔ کار با اشیای AST، به مستندات " -"ماژول :mod:`ast` مراجعه کنید." +msgid "Compile the *source* into a code or AST object. Code objects can be executed by :func:`exec` or :func:`eval`. *source* can either be a normal string, a byte string, or an AST object. Refer to the :mod:`ast` module documentation for information on how to work with AST objects." +msgstr "*source* را به یک شیء کد یا AST کامپایل می‌کند. اشیای کد را می‌توان با :func:`exec` یا :func:`eval` اجرا کرد. *source* می‌تواند یک رشتهٔ معمولی، یک رشتهٔ بایتی یا یک شیء AST باشد. برای اطلاعات بیشتر دربارهٔ کار با اشیای AST، به مستندات ماژول :mod:`ast` مراجعه کنید." -#: ../../library/functions.rst:304 -msgid "" -"The *filename* argument should give the file from which the code was read; pass some recognizable value if it wasn't read " -"from a file (``''`` is commonly used)." -msgstr "" -"آرگومان *filename* باید نام پرونده‌ای را مشخص کند که کد از آن خوانده شده است؛ اگر کد از پرونده خوانده نشده، مقدار قابل " -"تشخیصی را ارسال کنید (معمولاً از ``''`` استفاده می‌شود)." +msgid "The *filename* argument should give the file from which the code was read; pass some recognizable value if it wasn't read from a file (``''`` is commonly used)." +msgstr "آرگومان *filename* باید نام پرونده‌ای را مشخص کند که کد از آن خوانده شده است؛ اگر کد از پرونده خوانده نشده، مقدار قابل تشخیصی را ارسال کنید (معمولاً از ``''`` استفاده می‌شود)." -#: ../../library/functions.rst:308 -msgid "" -"The *mode* argument specifies what kind of code must be compiled; it can be ``'exec'`` if *source* consists of a sequence " -"of statements, ``'eval'`` if it consists of a single expression, or ``'single'`` if it consists of a single interactive " -"statement (in the latter case, expression statements that evaluate to something other than ``None`` will be printed)." -msgstr "" -"آرگومان *mode* مشخص می‌کند که چه نوع کدی باید کامپایل شود؛ اگر *source* شامل دنباله‌ای از دستورها باشد، می‌تواند ``'exec'`` " -"باشد؛ اگر شامل تنها یک عبارت باشد، ``'eval'``؛ و اگر شامل تنها یک دستور تعاملی باشد، ``'single'`` (در حالت آخر، اگر عبارت " -"مقداری غیر از ``None`` تولید کند، آن مقدار چاپ خواهد شد)." +msgid "The *mode* argument specifies what kind of code must be compiled; it can be ``'exec'`` if *source* consists of a sequence of statements, ``'eval'`` if it consists of a single expression, or ``'single'`` if it consists of a single interactive statement (in the latter case, expression statements that evaluate to something other than ``None`` will be printed)." +msgstr "آرگومان *mode* مشخص می‌کند که چه نوع کدی باید کامپایل شود؛ اگر *source* شامل دنباله‌ای از دستورها باشد، می‌تواند ``'exec'`` باشد؛ اگر شامل تنها یک عبارت باشد، ``'eval'``؛ و اگر شامل تنها یک دستور تعاملی باشد، ``'single'`` (در حالت آخر، اگر عبارت مقداری غیر از ``None`` تولید کند، آن مقدار چاپ خواهد شد)." -#: ../../library/functions.rst:314 -msgid "" -"The optional arguments *flags* and *dont_inherit* control which :ref:`compiler options ` should be " -"activated and which :ref:`future features ` should be allowed. If neither is present (or both are zero) the code is " -"compiled with the same flags that affect the code that is calling :func:`compile`. If the *flags* argument is given and " -"*dont_inherit* is not (or is zero) then the compiler options and the future statements specified by the *flags* argument " -"are used in addition to those that would be used anyway. If *dont_inherit* is a non-zero integer then the *flags* argument " -"is it -- the flags (future features and compiler options) in the surrounding code are ignored." -msgstr "" -"آرگومان‌های اختیاری *flags* و *dont_inherit* تعیین می‌کنند که کدام :ref:`گزینه‌های کامپایلر ` فعال شوند و " -"کدام :ref:`قابلیت‌های آینده ` مجاز باشند. اگر هیچ‌یک از آن‌ها ارائه نشوند (یا هر دو صفر باشند)، کد با همان پرچم‌هایی " -"کامپایل می‌شود که بر کدی که :func:`compile` را فراخوانی کرده است اعمال می‌شوند. اگر آرگومان *flags* ارائه شود و " -"*dont_inherit* ارائه نشود (یا صفر باشد)، گزینه‌های کامپایلر و دستورهای future مشخص‌شده توسط *flags* علاوه بر مواردی که به‌طور " -"معمول اعمال می‌شوند، استفاده خواهند شد. اگر *dont_inherit* یک عدد صحیح ناصفر باشد، تنها از *flags* استفاده می‌شود و پرچم‌های " -"(قابلیت‌های future و گزینه‌های کامپایلر) موجود در کد پیرامون نادیده گرفته می‌شوند." - -#: ../../library/functions.rst:325 -msgid "" -"Compiler options and future statements are specified by bits which can be bitwise ORed together to specify multiple " -"options. The bitfield required to specify a given future feature can be found as " -"the :attr:`~__future__._Feature.compiler_flag` attribute on the :class:`~__future__._Feature` instance in " -"the :mod:`__future__` module. :ref:`Compiler flags ` can be found in :mod:`ast` module, with ``PyCF_`` " -"prefix." -msgstr "" -"گزینه‌های کامپایلر و دستورهای future با استفاده از بیت‌هایی مشخص می‌شوند که می‌توان آن‌ها را با عملگر OR بیتی با یکدیگر ترکیب " -"کرد تا چندین گزینه به‌طور هم‌زمان مشخص شوند. بیت‌فیلد لازم برای مشخص کردن هر قابلیت future را می‌توان در " -"ویژگی :attr:`~__future__._Feature.compiler_flag` از نمونهٔ :class:`~__future__._Feature` در ماژول :mod:`__future__` " -"یافت. :ref:`پرچم‌های کامپایلر ` نیز با پیشوند ``PyCF_`` در ماژول :mod:`ast` موجود هستند." +msgid "The optional arguments *flags* and *dont_inherit* control which :ref:`compiler options ` should be activated and which :ref:`future features ` should be allowed. If neither is present (or both are zero) the code is compiled with the same flags that affect the code that is calling :func:`compile`. If the *flags* argument is given and *dont_inherit* is not (or is zero) then the compiler options and the future statements specified by the *flags* argument are used in addition to those that would be used anyway. If *dont_inherit* is a non-zero integer then the *flags* argument is it -- the flags (future features and compiler options) in the surrounding code are ignored." +msgstr "آرگومان‌های اختیاری *flags* و *dont_inherit* تعیین می‌کنند که کدام :ref:`گزینه‌های کامپایلر ` فعال شوند و کدام :ref:`قابلیت‌های آینده ` مجاز باشند. اگر هیچ‌یک از آن‌ها ارائه نشوند (یا هر دو صفر باشند)، کد با همان پرچم‌هایی کامپایل می‌شود که بر کدی که :func:`compile` را فراخوانی کرده است اعمال می‌شوند. اگر آرگومان *flags* ارائه شود و *dont_inherit* ارائه نشود (یا صفر باشد)، گزینه‌های کامپایلر و دستورهای future مشخص‌شده توسط *flags* علاوه بر مواردی که به‌طور معمول اعمال می‌شوند، استفاده خواهند شد. اگر *dont_inherit* یک عدد صحیح ناصفر باشد، تنها از *flags* استفاده می‌شود و پرچم‌های (قابلیت‌های future و گزینه‌های کامپایلر) موجود در کد پیرامون نادیده گرفته می‌شوند." -#: ../../library/functions.rst:333 -msgid "" -"The argument *optimize* specifies the optimization level of the compiler; the default value of ``-1`` selects the " -"optimization level of the interpreter as given by :option:`-O` options. Explicit levels are ``0`` (no optimization; " -"``__debug__`` is true), ``1`` (asserts are removed, ``__debug__`` is false) or ``2`` (docstrings are removed too)." -msgstr "" -"آرگومان *optimize* سطح بهینه‌سازی کامپایلر را مشخص می‌کند؛ مقدار پیش‌فرض ``-1`` سطح بهینه‌سازی مفسر را مطابق گزینه‌های :option:`-" -"O` انتخاب می‌کند. سطوح صریح عبارت‌اند از: ``0`` (بدون بهینه‌سازی؛ ``__debug__`` برابر با true است)، ``1`` (دستورهای assert حذف " -"می‌شوند و ``__debug__`` برابر false است)، و ``2`` (علاوه بر آن، docstringها نیز حذف می‌شوند)." +msgid "Compiler options and future statements are specified by bits which can be bitwise ORed together to specify multiple options. The bitfield required to specify a given future feature can be found as the :attr:`~__future__._Feature.compiler_flag` attribute on the :class:`~__future__._Feature` instance in the :mod:`__future__` module. :ref:`Compiler flags ` can be found in :mod:`ast` module, with ``PyCF_`` prefix." +msgstr "گزینه‌های کامپایلر و دستورهای future با استفاده از بیت‌هایی مشخص می‌شوند که می‌توان آن‌ها را با عملگر OR بیتی با یکدیگر ترکیب کرد تا چندین گزینه به‌طور هم‌زمان مشخص شوند. بیت‌فیلد لازم برای مشخص کردن هر قابلیت future را می‌توان در ویژگی :attr:`~__future__._Feature.compiler_flag` از نمونهٔ :class:`~__future__._Feature` در ماژول :mod:`__future__` یافت. :ref:`پرچم‌های کامپایلر ` نیز با پیشوند ``PyCF_`` در ماژول :mod:`ast` موجود هستند." + +msgid "The argument *optimize* specifies the optimization level of the compiler; the default value of ``-1`` selects the optimization level of the interpreter as given by :option:`-O` options. Explicit levels are ``0`` (no optimization; ``__debug__`` is true), ``1`` (asserts are removed, ``__debug__`` is false) or ``2`` (docstrings are removed too)." +msgstr "آرگومان *optimize* سطح بهینه‌سازی کامپایلر را مشخص می‌کند؛ مقدار پیش‌فرض ``-1`` سطح بهینه‌سازی مفسر را مطابق گزینه‌های :option:`-O` انتخاب می‌کند. سطوح صریح عبارت‌اند از: ``0`` (بدون بهینه‌سازی؛ ``__debug__`` برابر با true است)، ``1`` (دستورهای assert حذف می‌شوند و ``__debug__`` برابر false است)، و ``2`` (علاوه بر آن، docstringها نیز حذف می‌شوند)." -#: ../../library/functions.rst:339 msgid "This function raises :exc:`SyntaxError` or :exc:`ValueError` if the compiled source is invalid." msgstr "اگر کد منبع کامپایل‌شده نامعتبر باشد، این تابع استثنای :exc:`SyntaxError` یا :exc:`ValueError` پرتاب می‌کند." -#: ../../library/functions.rst:342 msgid "If you want to parse Python code into its AST representation, see :func:`ast.parse`." msgstr "اگر می‌خواهید کد پایتون را به نمایش AST آن تجزیه کنید، به :func:`ast.parse` مراجعه کنید." -#: ../../library/functions.rst:345 ../../library/functions.rst:347 -msgid "" -"Raises an :ref:`auditing event ` ``compile`` with arguments ``source`` and ``filename``. This event may also be " -"raised by implicit compilation." -msgstr "" -"یک :ref:`رویداد ممیزی ` با نام ``compile`` و آرگومان‌های ``source`` و ``filename`` پرتاب می‌کند. این رویداد ممکن " -"است در نتیجهٔ کامپایل ضمنی نیز پرتاب شود." +msgid "Raises an :ref:`auditing event ` ``compile`` with arguments ``source`` and ``filename``. This event may also be raised by implicit compilation." +msgstr "یک :ref:`رویداد ممیزی ` با نام ``compile`` و آرگومان‌های ``source`` و ``filename`` پرتاب می‌کند. این رویداد ممکن است در نتیجهٔ کامپایل ضمنی نیز پرتاب شود." -#: ../../library/functions.rst:353 -msgid "" -"When compiling a string with multi-line code in ``'single'`` or ``'eval'`` mode, input must be terminated by at least one " -"newline character. This is to facilitate detection of incomplete and complete statements in the :mod:`code` module." -msgstr "" -"هنگام کامپایل یک رشته شامل کد چندخطی در حالت ``'single'`` یا ``'eval'``، ورودی باید دست‌کم با یک نویسهٔ پایان خط خاتمه یابد. " -"این کار تشخیص دستورات ناقص و کامل را در ماژول :mod:`code` تسهیل می‌کند." +msgid "When compiling a string with multi-line code in ``'single'`` or ``'eval'`` mode, input must be terminated by at least one newline character. This is to facilitate detection of incomplete and complete statements in the :mod:`code` module." +msgstr "هنگام کامپایل یک رشته شامل کد چندخطی در حالت ``'single'`` یا ``'eval'``، ورودی باید دست‌کم با یک نویسهٔ پایان خط خاتمه یابد. این کار تشخیص دستورات ناقص و کامل را در ماژول :mod:`code` تسهیل می‌کند." -#: ../../library/functions.rst:360 -msgid "" -"It is possible to crash the Python interpreter with a sufficiently large/complex string when compiling to an AST object due " -"to stack depth limitations in Python's AST compiler." -msgstr "" -"به دلیل محدودیت عمق پشته (stack depth) در کامپایلر AST پایتون، کامپایل یک رشتهٔ به‌اندازهٔ کافی بزرگ یا پیچیده به یک شیء AST " -"ممکن است باعث ازکارافتادن (crash) مفسر پایتون شود." +msgid "It is possible to crash the Python interpreter with a sufficiently large/complex string when compiling to an AST object due to stack depth limitations in Python's AST compiler." +msgstr "به دلیل محدودیت عمق پشته (stack depth) در کامپایلر AST پایتون، کامپایل یک رشتهٔ به‌اندازهٔ کافی بزرگ یا پیچیده به یک شیء AST ممکن است باعث ازکارافتادن (crash) مفسر پایتون شود." -#: ../../library/functions.rst:364 -msgid "" -"Allowed use of Windows and Mac newlines. Also, input in ``'exec'`` mode does not have to end in a newline anymore. Added " -"the *optimize* parameter." -msgstr "" -"استفاده از نویسه‌های پایان خط ویندوز و مک مجاز شد. همچنین، ورودی در حالت ``'exec'`` دیگر لازم نیست با یک نویسهٔ پایان خط " -"خاتمه یابد. پارامتر *optimize* نیز اضافه شد." +msgid "Allowed use of Windows and Mac newlines. Also, input in ``'exec'`` mode does not have to end in a newline anymore. Added the *optimize* parameter." +msgstr "استفاده از نویسه‌های پایان خط ویندوز و مک مجاز شد. همچنین، ورودی در حالت ``'exec'`` دیگر لازم نیست با یک نویسهٔ پایان خط خاتمه یابد. پارامتر *optimize* نیز اضافه شد." -#: ../../library/functions.rst:368 msgid "Previously, :exc:`TypeError` was raised when null bytes were encountered in *source*." msgstr "پیش از این، هنگام برخورد با بایت‌های تهی در *source*، استثنای :exc:`TypeError` پرتاب می‌شد." -#: ../../library/functions.rst:372 -msgid "" -"``ast.PyCF_ALLOW_TOP_LEVEL_AWAIT`` can now be passed in flags to enable support for top-level ``await``, ``async for``, and " -"``async with``." -msgstr "" -"اکنون می‌توان ``ast.PyCF_ALLOW_TOP_LEVEL_AWAIT`` را در پرچم‌ها ارسال کرد تا از ``await``، ``async for`` و ``async with`` در " -"سطح بالای کد (top-level) پشتیبانی شود." +msgid "``ast.PyCF_ALLOW_TOP_LEVEL_AWAIT`` can now be passed in flags to enable support for top-level ``await``, ``async for``, and ``async with``." +msgstr "اکنون می‌توان ``ast.PyCF_ALLOW_TOP_LEVEL_AWAIT`` را در پرچم‌ها ارسال کرد تا از ``await``، ``async for`` و ``async with`` در سطح بالای کد (top-level) پشتیبانی شود." -#: ../../library/functions.rst:381 msgid "Convert a single string or number to a complex number, or create a complex number from real and imaginary parts." msgstr "تبدیل یک رشته یا عدد به یک عدد مختلط، یا ایجاد یک عدد مختلط از بخش‌های حقیقی و موهومی یک عدد." -#: ../../library/functions.rst:384 ../../library/functions.rst:764 ../../library/functions.rst:1012 msgid "Examples:" msgstr "مثال‌ها:" -#: ../../library/functions.rst:386 msgid "" ">>> complex('+1.23')\n" "(1.23+0j)\n" @@ -891,201 +554,78 @@ msgstr "" ">>> complex(-1.23, 4.5)\n" "(-1.23+4.5j)" -#: ../../library/functions.rst:405 -msgid "" -"If the argument is a string, it must contain either a real part (in the same format as for :func:`float`) or an imaginary " -"part (in the same format but with a ``'j'`` or ``'J'`` suffix), or both real and imaginary parts (the sign of the imaginary " -"part is mandatory in this case). The string can optionally be surrounded by whitespaces and the round parentheses ``'('`` " -"and ``')'``, which are ignored. The string must not contain whitespace between ``'+'``, ``'-'``, the ``'j'`` or ``'J'`` " -"suffix, and the decimal number. For example, ``complex('1+2j')`` is fine, but ``complex('1 + 2j')`` " -"raises :exc:`ValueError`. More precisely, the input must conform to the :token:`~float:complexvalue` production rule in the " -"following grammar, after parentheses and leading and trailing whitespace characters are removed:" -msgstr "" -"اگر آرگومان یک رشته باشد، باید شامل بخش حقیقی (با همان قالبی که برای :func:`float` استفاده می‌شود)، یا بخش موهومی (با همان " -"قالب اما همراه با پسوند ``'j'`` یا ``'J'``)، یا هر دو بخش حقیقی و موهومی باشد (در این حالت، وجود علامت بخش موهومی الزامی " -"است). رشته می‌تواند به‌صورت اختیاری با نویسه‌های فاصلهٔ سفید و پرانتزهای گرد ``'('`` و ``')'`` احاطه شده باشد که نادیده گرفته " -"می‌شوند. همچنین، نباید بین ``'+'``، ``'-'``، پسوند ``'j'`` یا ``'J'`` و عدد ده‌دهی فاصلهٔ سفید وجود داشته باشد. برای مثال، " -"``complex('1+2j')`` معتبر است، اما ``complex('1 + 2j')`` باعث پرتاب استثنای :exc:`ValueError` می‌شود. به‌طور دقیق‌تر، پس از " -"حذف پرانتزها و نویسه‌های فاصلهٔ سفید ابتدا و انتهای رشته، ورودی باید با قاعدهٔ تولید :token:`~float:complexvalue` در دستور " -"زبان زیر مطابقت داشته باشد:" - -#: ../../library/functions.rst:424 -msgid "" -"If the argument is a number, the constructor serves as a numeric conversion like :class:`int` and :class:`float`. For a " -"general Python object ``x``, ``complex(x)`` delegates to ``x.__complex__()``. If :meth:`~object.__complex__` is not defined " -"then it falls back to :meth:`~object.__float__`. If :meth:`!__float__` is not defined then it falls back " -"to :meth:`~object.__index__`." -msgstr "" -"اگر آرگومان یک عدد باشد، سازنده مانند :class:`int` و :class:`float` به‌عنوان یک تبدیل عددی عمل می‌کند. برای یک شیء عمومی " -"پایتون به نام ``x``، تابع ``complex(x)`` فراخوانی را به ``x.__complex__()`` واگذار می‌کند. اگر :meth:`~object.__complex__` " -"تعریف نشده باشد، به :meth:`~object.__float__` بازمی‌گردد. اگر :meth:`!__float__` نیز تعریف نشده باشد، " -"به :meth:`~object.__index__` بازمی‌گردد." +msgid "If the argument is a string, it must contain either a real part (in the same format as for :func:`float`) or an imaginary part (in the same format but with a ``'j'`` or ``'J'`` suffix), or both real and imaginary parts (the sign of the imaginary part is mandatory in this case). The string can optionally be surrounded by whitespaces and the round parentheses ``'('`` and ``')'``, which are ignored. The string must not contain whitespace between ``'+'``, ``'-'``, the ``'j'`` or ``'J'`` suffix, and the decimal number. For example, ``complex('1+2j')`` is fine, but ``complex('1 + 2j')`` raises :exc:`ValueError`. More precisely, the input must conform to the :token:`~float:complexvalue` production rule in the following grammar, after parentheses and leading and trailing whitespace characters are removed:" +msgstr "اگر آرگومان یک رشته باشد، باید شامل بخش حقیقی (با همان قالبی که برای :func:`float` استفاده می‌شود)، یا بخش موهومی (با همان قالب اما همراه با پسوند ``'j'`` یا ``'J'``)، یا هر دو بخش حقیقی و موهومی باشد (در این حالت، وجود علامت بخش موهومی الزامی است). رشته می‌تواند به‌صورت اختیاری با نویسه‌های فاصلهٔ سفید و پرانتزهای گرد ``'('`` و ``')'`` احاطه شده باشد که نادیده گرفته می‌شوند. همچنین، نباید بین ``'+'``، ``'-'``، پسوند ``'j'`` یا ``'J'`` و عدد ده‌دهی فاصلهٔ سفید وجود داشته باشد. برای مثال، ``complex('1+2j')`` معتبر است، اما ``complex('1 + 2j')`` باعث پرتاب استثنای :exc:`ValueError` می‌شود. به‌طور دقیق‌تر، پس از حذف پرانتزها و نویسه‌های فاصلهٔ سفید ابتدا و انتهای رشته، ورودی باید با قاعدهٔ تولید :token:`~float:complexvalue` در دستور زبان زیر مطابقت داشته باشد:" -#: ../../library/functions.rst:433 -msgid "" -"If two arguments are provided or keyword arguments are used, each argument may be any numeric type (including complex). If " -"both arguments are real numbers, return a complex number with the real component *real* and the imaginary component *imag*. " -"If both arguments are complex numbers, return a complex number with the real component ``real.real-imag.imag`` and the " -"imaginary component ``real.imag+imag.real``. If one of arguments is a real number, only its real component is used in the " -"above expressions." -msgstr "" -"اگر دو آرگومان ارائه شوند یا از آرگومان‌های کلیدواژه‌ای استفاده شود، هر آرگومان می‌تواند از هر نوع عددی (از جمله اعداد مختلط) " -"باشد. اگر هر دو آرگومان عدد حقیقی باشند، یک عدد مختلط با بخش حقیقی *real* و بخش موهومی *imag* برگردانده می‌شود. اگر هر دو " -"آرگومان عدد مختلط باشند، عدد مختلطی با بخش حقیقی ``real.real-imag.imag`` و بخش موهومی ``real.imag+imag.real`` برگردانده " -"می‌شود. اگر یکی از آرگومان‌ها عدد حقیقی باشد، فقط بخش حقیقی آن در عبارت‌های بالا استفاده می‌شود." +msgid "If the argument is a number, the constructor serves as a numeric conversion like :class:`int` and :class:`float`. For a general Python object ``x``, ``complex(x)`` delegates to ``x.__complex__()``. If :meth:`~object.__complex__` is not defined then it falls back to :meth:`~object.__float__`. If :meth:`!__float__` is not defined then it falls back to :meth:`~object.__index__`." +msgstr "اگر آرگومان یک عدد باشد، سازنده مانند :class:`int` و :class:`float` به‌عنوان یک تبدیل عددی عمل می‌کند. برای یک شیء عمومی پایتون به نام ``x``، تابع ``complex(x)`` فراخوانی را به ``x.__complex__()`` واگذار می‌کند. اگر :meth:`~object.__complex__` تعریف نشده باشد، به :meth:`~object.__float__` بازمی‌گردد. اگر :meth:`!__float__` نیز تعریف نشده باشد، به :meth:`~object.__index__` بازمی‌گردد." + +msgid "If two arguments are provided or keyword arguments are used, each argument may be any numeric type (including complex). If both arguments are real numbers, return a complex number with the real component *real* and the imaginary component *imag*. If both arguments are complex numbers, return a complex number with the real component ``real.real-imag.imag`` and the imaginary component ``real.imag+imag.real``. If one of arguments is a real number, only its real component is used in the above expressions." +msgstr "اگر دو آرگومان ارائه شوند یا از آرگومان‌های کلیدواژه‌ای استفاده شود، هر آرگومان می‌تواند از هر نوع عددی (از جمله اعداد مختلط) باشد. اگر هر دو آرگومان عدد حقیقی باشند، یک عدد مختلط با بخش حقیقی *real* و بخش موهومی *imag* برگردانده می‌شود. اگر هر دو آرگومان عدد مختلط باشند، عدد مختلطی با بخش حقیقی ``real.real-imag.imag`` و بخش موهومی ``real.imag+imag.real`` برگردانده می‌شود. اگر یکی از آرگومان‌ها عدد حقیقی باشد، فقط بخش حقیقی آن در عبارت‌های بالا استفاده می‌شود." -#: ../../library/functions.rst:443 msgid "See also :meth:`complex.from_number` which only accepts a single numeric argument." msgstr "همچنین به :meth:`complex.from_number` مراجعه کنید که فقط یک آرگومان عددی را می‌پذیرد." -#: ../../library/functions.rst:445 msgid "If all arguments are omitted, returns ``0j``." msgstr "اگر همهٔ آرگومان‌ها حذف شوند، مقدار ``0j`` برگردانده می‌شود." -#: ../../library/functions.rst:447 msgid "The complex type is described in :ref:`typesnumeric`." msgstr "نوع مختلط در :ref:`typesnumeric` توضیح داده شده است." -#: ../../library/functions.rst:449 ../../library/functions.rst:818 ../../library/functions.rst:1060 msgid "Grouping digits with underscores as in code literals is allowed." msgstr "گروه‌بندی رقم‌ها با استفاده از زیرخط، همانند ثابت‌های عددی در کد، مجاز است." -#: ../../library/functions.rst:452 msgid "Falls back to :meth:`~object.__index__` if :meth:`~object.__complex__` and :meth:`~object.__float__` are not defined." msgstr "اگر :meth:`~object.__complex__` و :meth:`~object.__float__` تعریف نشده باشند، به :meth:`~object.__index__` بازمی‌گردد." -#: ../../library/functions.rst:456 -msgid "" -"Passing a complex number as the *real* or *imag* argument is now deprecated; it should only be passed as a single " -"positional argument." -msgstr "" -"ارسال یک عدد مختلط به‌عنوان آرگومان *real* یا *imag* اکنون منسوخ شده است؛ عدد مختلط باید فقط به‌صورت یک آرگومان مکانی ارسال " -"شود." +msgid "Passing a complex number as the *real* or *imag* argument is now deprecated; it should only be passed as a single positional argument." +msgstr "ارسال یک عدد مختلط به‌عنوان آرگومان *real* یا *imag* اکنون منسوخ شده است؛ عدد مختلط باید فقط به‌صورت یک آرگومان مکانی ارسال شود." -#: ../../library/functions.rst:463 -msgid "" -"This is a relative of :func:`setattr`. The arguments are an object and a string. The string must be the name of one of " -"the object's attributes. The function deletes the named attribute, provided the object allows it. For example, " -"``delattr(x, 'foobar')`` is equivalent to ``del x.foobar``. *name* need not be a Python identifier (see :func:`setattr`)." -msgstr "" -"این تابع همتای :func:`setattr` است. آرگومان‌های آن یک شیء و یک رشته هستند. رشته باید نام یکی از ویژگی‌های شیء باشد. در صورت " -"مجاز بودن، این تابع ویژگی نام‌برده را حذف می‌کند. برای مثال، ``delattr(x, 'foobar')`` معادل ``del x.foobar`` است. *name* " -"الزامی ندارد که یک شناسهٔ معتبر پایتون باشد (به :func:`setattr` مراجعه کنید)." +msgid "This is a relative of :func:`setattr`. The arguments are an object and a string. The string must be the name of one of the object's attributes. The function deletes the named attribute, provided the object allows it. For example, ``delattr(x, 'foobar')`` is equivalent to ``del x.foobar``. *name* need not be a Python identifier (see :func:`setattr`)." +msgstr "این تابع همتای :func:`setattr` است. آرگومان‌های آن یک شیء و یک رشته هستند. رشته باید نام یکی از ویژگی‌های شیء باشد. در صورت مجاز بودن، این تابع ویژگی نام‌برده را حذف می‌کند. برای مثال، ``delattr(x, 'foobar')`` معادل ``del x.foobar`` است. *name* الزامی ندارد که یک شناسهٔ معتبر پایتون باشد (به :func:`setattr` مراجعه کنید)." -#: ../../library/functions.rst:476 -msgid "" -"Create a new dictionary. The :class:`dict` object is the dictionary class. See also :ref:`typesmapping` for documentation " -"about this class." +msgid "Create a new dictionary. The :class:`dict` object is the dictionary class. See also :ref:`typesmapping` for documentation about this class." msgstr "ایجاد یک دیکشنری جدید. شیء :class:`dict` کلاس دیکشنری است. برای مستندات این کلاس، به :ref:`typesmapping` مراجعه کنید." -#: ../../library/functions.rst:479 -msgid "" -"For other containers see the built-in :class:`list`, :class:`set`, and :class:`tuple` classes, as well as " -"the :mod:`collections` module." -msgstr "" -"برای سایر انواع محفظه‌ها، به کلاس‌های توکار :class:`list`، :class:`set` و :class:`tuple`، و همچنین ماژول :mod:`collections` " -"مراجعه کنید." +msgid "For other containers see the built-in :class:`list`, :class:`set`, and :class:`tuple` classes, as well as the :mod:`collections` module." +msgstr "برای سایر انواع محفظه‌ها، به کلاس‌های توکار :class:`list`، :class:`set` و :class:`tuple`، و همچنین ماژول :mod:`collections` مراجعه کنید." -#: ../../library/functions.rst:486 -msgid "" -"Without arguments, return the list of names in the current local scope. With an argument, attempt to return a list of " -"valid attributes for that object." -msgstr "" -"بدون آرگومان، فهرست نام‌های موجود در دامنهٔ محلیِ فعلی را بازمی‌گرداند. با ارسال یک آرگومان، تلاش می‌کند فهرستی از ویژگی‌های " -"معتبر آن شیء را بازگرداند." +msgid "Without arguments, return the list of names in the current local scope. With an argument, attempt to return a list of valid attributes for that object." +msgstr "بدون آرگومان، فهرست نام‌های موجود در دامنهٔ محلیِ فعلی را بازمی‌گرداند. با ارسال یک آرگومان، تلاش می‌کند فهرستی از ویژگی‌های معتبر آن شیء را بازگرداند." -#: ../../library/functions.rst:489 -msgid "" -"If the object has a method named :meth:`~object.__dir__`, this method will be called and must return the list of " -"attributes. This allows objects that implement a custom :func:`~object.__getattr__` or :func:`~object.__getattribute__` " -"function to customize the way :func:`dir` reports their attributes." -msgstr "" -"اگر شیء متدی با نام :meth:`~object.__dir__` داشته باشد، این متد فراخوانی می‌شود و باید فهرستی از ویژگی‌ها را برگرداند. این " -"امکان را فراهم می‌کند که اشیایی که :func:`~object.__getattr__` یا :func:`~object.__getattribute__` سفارشی را پیاده‌سازی " -"کرده‌اند، نحوهٔ گزارش ویژگی‌های خود توسط :func:`dir` را سفارشی‌سازی کنند." +msgid "If the object has a method named :meth:`~object.__dir__`, this method will be called and must return the list of attributes. This allows objects that implement a custom :func:`~object.__getattr__` or :func:`~object.__getattribute__` function to customize the way :func:`dir` reports their attributes." +msgstr "اگر شیء متدی با نام :meth:`~object.__dir__` داشته باشد، این متد فراخوانی می‌شود و باید فهرستی از ویژگی‌ها را برگرداند. این امکان را فراهم می‌کند که اشیایی که :func:`~object.__getattr__` یا :func:`~object.__getattribute__` سفارشی را پیاده‌سازی کرده‌اند، نحوهٔ گزارش ویژگی‌های خود توسط :func:`dir` را سفارشی‌سازی کنند." -#: ../../library/functions.rst:496 -msgid "" -"If the object does not provide :meth:`~object.__dir__`, the function tries its best to gather information from the " -"object's :attr:`~object.__dict__` attribute, if defined, and from its type object. The resulting list is not necessarily " -"complete and may be inaccurate when the object has a custom :func:`~object.__getattr__`." -msgstr "" -"اگر شیء متد :meth:`~object.__dir__` را ارائه نکند، این تابع در صورت تعریف شدن، تلاش می‌کند تا حد امکان اطلاعات را از " -"ویژگی :attr:`~object.__dict__` شیء و همچنین از شیء نوع (type object) آن جمع‌آوری کند. فهرست حاصل لزوماً کامل نیست و اگر شیء " -"دارای :func:`~object.__getattr__` سفارشی باشد، ممکن است دقیق هم نباشد." +msgid "If the object does not provide :meth:`~object.__dir__`, the function tries its best to gather information from the object's :attr:`~object.__dict__` attribute, if defined, and from its type object. The resulting list is not necessarily complete and may be inaccurate when the object has a custom :func:`~object.__getattr__`." +msgstr "اگر شیء متد :meth:`~object.__dir__` را ارائه نکند، این تابع در صورت تعریف شدن، تلاش می‌کند تا حد امکان اطلاعات را از ویژگی :attr:`~object.__dict__` شیء و همچنین از شیء نوع (type object) آن جمع‌آوری کند. فهرست حاصل لزوماً کامل نیست و اگر شیء دارای :func:`~object.__getattr__` سفارشی باشد، ممکن است دقیق هم نباشد." -#: ../../library/functions.rst:502 -msgid "" -"The default :func:`dir` mechanism behaves differently with different types of objects, as it attempts to produce the most " -"relevant, rather than complete, information:" -msgstr "" -"سازوکار پیش‌فرض :func:`dir` بسته به نوع شیء رفتار متفاوتی دارد، زیرا تلاش می‌کند به‌جای ارائهٔ اطلاعات کامل، مرتبط‌ترین اطلاعات " -"را ارائه دهد:" +msgid "The default :func:`dir` mechanism behaves differently with different types of objects, as it attempts to produce the most relevant, rather than complete, information:" +msgstr "سازوکار پیش‌فرض :func:`dir` بسته به نوع شیء رفتار متفاوتی دارد، زیرا تلاش می‌کند به‌جای ارائهٔ اطلاعات کامل، مرتبط‌ترین اطلاعات را ارائه دهد:" -#: ../../library/functions.rst:506 msgid "If the object is a module object, the list contains the names of the module's attributes." msgstr "اگر شیء یک ماژول باشد، فهرست شامل نام ویژگی‌های آن ماژول خواهد بود." -#: ../../library/functions.rst:509 -msgid "" -"If the object is a type or class object, the list contains the names of its attributes, and recursively of the attributes " -"of its bases." -msgstr "" -"اگر شیء یک نوع (type) یا کلاس باشد، فهرست شامل نام ویژگی‌های آن و همچنین، به‌صورت بازگشتی، نام ویژگی‌های کلاس‌های پایهٔ آن خواهد " -"بود." +msgid "If the object is a type or class object, the list contains the names of its attributes, and recursively of the attributes of its bases." +msgstr "اگر شیء یک نوع (type) یا کلاس باشد، فهرست شامل نام ویژگی‌های آن و همچنین، به‌صورت بازگشتی، نام ویژگی‌های کلاس‌های پایهٔ آن خواهد بود." -#: ../../library/functions.rst:512 -msgid "" -"Otherwise, the list contains the object's attributes' names, the names of its class's attributes, and recursively of the " -"attributes of its class's base classes." -msgstr "" -"در غیر این صورت، فهرست شامل نام ویژگی‌های شیء، نام ویژگی‌های کلاس آن، و همچنین به‌صورت بازگشتی، نام ویژگی‌های کلاس‌های پایهٔ آن " -"خواهد بود." +msgid "Otherwise, the list contains the object's attributes' names, the names of its class's attributes, and recursively of the attributes of its class's base classes." +msgstr "در غیر این صورت، فهرست شامل نام ویژگی‌های شیء، نام ویژگی‌های کلاس آن، و همچنین به‌صورت بازگشتی، نام ویژگی‌های کلاس‌های پایهٔ آن خواهد بود." -#: ../../library/functions.rst:516 msgid "The resulting list is sorted alphabetically. For example:" msgstr "فهرست حاصل به‌ترتیب الفبایی مرتب می‌شود. برای مثال:" -#: ../../library/functions.rst:536 -msgid "" -"Because :func:`dir` is supplied primarily as a convenience for use at an interactive prompt, it tries to supply an " -"interesting set of names more than it tries to supply a rigorously or consistently defined set of names, and its detailed " -"behavior may change across releases. For example, metaclass attributes are not in the result list when the argument is a " -"class." -msgstr "" -"از آنجا که :func:`dir` در درجهٔ اول برای سهولت استفاده در اعلان تعاملی طراحی شده است، بیشتر تلاش می‌کند مجموعه‌ای مفید از " -"نام‌ها را ارائه دهد تا مجموعه‌ای با تعریف دقیق و سازگار. بنابراین، رفتار دقیق آن ممکن است بین نسخه‌های مختلف تغییر کند. برای " -"مثال، اگر آرگومان یک کلاس باشد، ویژگی‌های فراداده در فهرست نتایج قرار نمی‌گیرند." +msgid "Because :func:`dir` is supplied primarily as a convenience for use at an interactive prompt, it tries to supply an interesting set of names more than it tries to supply a rigorously or consistently defined set of names, and its detailed behavior may change across releases. For example, metaclass attributes are not in the result list when the argument is a class." +msgstr "از آنجا که :func:`dir` در درجهٔ اول برای سهولت استفاده در اعلان تعاملی طراحی شده است، بیشتر تلاش می‌کند مجموعه‌ای مفید از نام‌ها را ارائه دهد تا مجموعه‌ای با تعریف دقیق و سازگار. بنابراین، رفتار دقیق آن ممکن است بین نسخه‌های مختلف تغییر کند. برای مثال، اگر آرگومان یک کلاس باشد، ویژگی‌های فراداده در فهرست نتایج قرار نمی‌گیرند." -#: ../../library/functions.rst:546 -msgid "" -"Take two (non-complex) numbers as arguments and return a pair of numbers consisting of their quotient and remainder when " -"using integer division. With mixed operand types, the rules for binary arithmetic operators apply. For integers, the " -"result is the same as ``(a // b, a % b)``. For floating-point numbers the result is ``(q, a % b)``, where *q* is usually " -"``math.floor(a / b)`` but may be 1 less than that. In any case ``q * b + a % b`` is very close to *a*, if ``a % b`` is non-" -"zero it has the same sign as *b*, and ``0 <= abs(a % b) < abs(b)``." -msgstr "" -"دو عدد (غیرمختلط) را به‌عنوان آرگومان می‌گیرد و جفتی از اعداد شامل خارج‌قسمت و باقیماندهٔ تقسیم صحیح آن‌ها را برمی‌گرداند. در " -"صورت متفاوت بودن نوع عملوندها، قواعد عملگرهای حسابی دودویی اعمال می‌شود. برای اعداد صحیح، نتیجه برابر با ``(a // b, a % b)`` " -"است. برای اعداد ممیز شناور، نتیجه ``(q, a % b)`` است که در آن *q* معمولاً برابر ``math.floor(a / b)`` است، اما ممکن است یک " -"واحد کمتر از آن باشد. در هر صورت، مقدار ``q * b + a % b`` بسیار به *a* نزدیک است، و اگر ``a % b`` صفر نباشد، هم‌علامت با *b* " -"خواهد بود و همچنین ``0 <= abs(a % b) < abs(b)`` برقرار است." +msgid "Take two (non-complex) numbers as arguments and return a pair of numbers consisting of their quotient and remainder when using integer division. With mixed operand types, the rules for binary arithmetic operators apply. For integers, the result is the same as ``(a // b, a % b)``. For floating-point numbers the result is ``(q, a % b)``, where *q* is usually ``math.floor(a / b)`` but may be 1 less than that. In any case ``q * b + a % b`` is very close to *a*, if ``a % b`` is non-zero it has the same sign as *b*, and ``0 <= abs(a % b) < abs(b)``." +msgstr "دو عدد (غیرمختلط) را به‌عنوان آرگومان می‌گیرد و جفتی از اعداد شامل خارج‌قسمت و باقیماندهٔ تقسیم صحیح آن‌ها را برمی‌گرداند. در صورت متفاوت بودن نوع عملوندها، قواعد عملگرهای حسابی دودویی اعمال می‌شود. برای اعداد صحیح، نتیجه برابر با ``(a // b, a % b)`` است. برای اعداد ممیز شناور، نتیجه ``(q, a % b)`` است که در آن *q* معمولاً برابر ``math.floor(a / b)`` است، اما ممکن است یک واحد کمتر از آن باشد. در هر صورت، مقدار ``q * b + a % b`` بسیار به *a* نزدیک است، و اگر ``a % b`` صفر نباشد، هم‌علامت با *b* خواهد بود و همچنین ``0 <= abs(a % b) < abs(b)`` برقرار است." -#: ../../library/functions.rst:558 -msgid "" -"Return an enumerate object. *iterable* must be a sequence, an :term:`iterator`, or some other object which supports " -"iteration. The :meth:`~iterator.__next__` method of the iterator returned by :func:`enumerate` returns a tuple containing a " -"count (from *start* which defaults to 0) and the values obtained from iterating over *iterable*." -msgstr "" -"یک شیء enumerate را برمی‌گرداند. *iterable* باید یک دنباله، یک :term:`تکرارگر ` یا هر شیء دیگری باشد که از پیمایش " -"پشتیبانی می‌کند. متد :meth:`~iterator.__next__` تکرارگر بازگردانده‌شده توسط :func:`enumerate`، تاپلی شامل یک شمارنده (که از " -"*start* آغاز می‌شود و مقدار پیش‌فرض آن 0 است) و مقادیر به‌دست‌آمده از پیمایش *iterable* را برمی‌گرداند." +msgid "Return an enumerate object. *iterable* must be a sequence, an :term:`iterator`, or some other object which supports iteration. The :meth:`~iterator.__next__` method of the iterator returned by :func:`enumerate` returns a tuple containing a count (from *start* which defaults to 0) and the values obtained from iterating over *iterable*." +msgstr "یک شیء enumerate را برمی‌گرداند. *iterable* باید یک دنباله، یک :term:`تکرارگر ` یا هر شیء دیگری باشد که از پیمایش پشتیبانی می‌کند. متد :meth:`~iterator.__next__` تکرارگر بازگردانده‌شده توسط :func:`enumerate`، تاپلی شامل یک شمارنده (که از *start* آغاز می‌شود و مقدار پیش‌فرض آن 0 است) و مقادیر به‌دست‌آمده از پیمایش *iterable* را برمی‌گرداند." -#: ../../library/functions.rst:570 msgid "Equivalent to::" msgstr "مساوی است با::" -#: ../../library/functions.rst:572 msgid "" "def enumerate(iterable, start=0):\n" " n = start\n" @@ -1099,226 +639,96 @@ msgstr "" " yield n, elem\n" " n += 1" -#: ../../library/functions.rst:0 msgid "Parameters" msgstr "پارامترها" -#: ../../library/functions.rst:582 msgid "A Python expression." msgstr "یک عبارت پایتون." -#: ../../library/functions.rst:586 msgid "The global namespace (default: ``None``)." msgstr "فضای نام سراسری (پیش‌فرض: ``None``)." -#: ../../library/functions.rst:590 msgid "The local namespace (default: ``None``)." msgstr "فضای نام محلی (پیش‌فرض: ``None``)." -#: ../../library/functions.rst:0 msgid "Returns" msgstr "بازمیگرداند" -#: ../../library/functions.rst:594 msgid "The result of the evaluated expression." msgstr "نتیجهٔ عبارت ارزیابی‌شده." -#: ../../library/functions.rst:0 msgid "raises" msgstr "پرتاب می‌کند" -#: ../../library/functions.rst:595 msgid "Syntax errors are reported as exceptions." msgstr "خطاهای نحوی به‌صورت استثنا گزارش می‌شوند." -#: ../../library/functions.rst:599 ../../library/functions.rst:665 -msgid "" -"This function executes arbitrary code. Calling it with untrusted user-supplied input will lead to security vulnerabilities." -msgstr "" -"این تابع کد دلخواه را اجرا می‌کند. فراخوانی آن با ورودیِ تأمین‌شده از سوی کاربر که قابل اعتماد نیست، منجر به آسیب‌پذیری‌های " -"امنیتی خواهد شد." +msgid "This function executes arbitrary code. Calling it with untrusted user-supplied input will lead to security vulnerabilities." +msgstr "این تابع کد دلخواه را اجرا می‌کند. فراخوانی آن با ورودیِ تأمین‌شده از سوی کاربر که قابل اعتماد نیست، منجر به آسیب‌پذیری‌های امنیتی خواهد شد." + +msgid "The *source* argument is parsed and evaluated as a Python expression (technically speaking, an :ref:`expression list `) using the *globals* and *locals* mappings as global and local namespace. If the *globals* dictionary is present and does not contain a value for the key ``__builtins__``, a reference to the dictionary of the built-in module :mod:`builtins` is inserted under that key before *source* is parsed. Overriding ``__builtins__`` can be used to restrict or change the available names, but this is **not** a security mechanism: the executed code can still access all builtins. If the *locals* mapping is omitted it defaults to the *globals* dictionary. If both mappings are omitted, the source is executed with the *globals* and *locals* in the environment where :func:`eval` is called. Note, *eval()* will only have access to the :term:`nested scopes ` (non-locals) in the enclosing environment if they are already referenced in the scope that is calling :func:`eval` (e.g. via a :keyword:`nonlocal` statement)." +msgstr "آرگومان *source* به‌عنوان یک عبارت پایتون (از نظر فنی، یک :ref:`فهرست عبارات `) با استفاده از نگاشت‌های *globals* و *locals* به‌ترتیب به‌عنوان فضای نام سراسری و محلی، تجزیه و ارزیابی می‌شود. اگر دیکشنری *globals* وجود داشته باشد اما کلید ``__builtins__`` را نداشته باشد، پیش از تجزیهٔ *source*، ارجاعی به دیکشنری ماژول توکار :mod:`builtins` تحت این کلید درج می‌شود. بازنویسی ``__builtins__`` می‌تواند برای محدود کردن یا تغییر نام‌های در دسترس استفاده شود، اما این **یک سازوکار امنیتی نیست**؛ زیرا کد اجراشده همچنان می‌تواند به تمام توابع و اشیای توکار دسترسی داشته باشد. اگر نگاشت *locals* ارائه نشود، به‌طور پیش‌فرض از دیکشنری *globals* استفاده می‌شود. اگر هر دو نگاشت حذف شوند، *source* با استفاده از *globals* و *locals* محیطی که :func:`eval` در آن فراخوانی شده اجرا می‌شود. توجه داشته باشید که *eval()* تنها در صورتی به :term:`دامنه‌های تو‌در‌تو ` (متغیرهای nonlocal) محیط پیرامون دسترسی خواهد داشت که آن‌ها از قبل در دامنه‌ای که :func:`eval` را فراخوانی می‌کند ارجاع داده شده باشند (برای مثال، از طریق دستور :keyword:`nonlocal`)." -#: ../../library/functions.rst:602 -msgid "" -"The *source* argument is parsed and evaluated as a Python expression (technically speaking, an :ref:`expression list " -"`) using the *globals* and *locals* mappings as global and local namespace. If the *globals* dictionary is " -"present and does not contain a value for the key ``__builtins__``, a reference to the dictionary of the built-in " -"module :mod:`builtins` is inserted under that key before *source* is parsed. Overriding ``__builtins__`` can be used to " -"restrict or change the available names, but this is **not** a security mechanism: the executed code can still access all " -"builtins. If the *locals* mapping is omitted it defaults to the *globals* dictionary. If both mappings are omitted, the " -"source is executed with the *globals* and *locals* in the environment where :func:`eval` is called. Note, *eval()* will " -"only have access to the :term:`nested scopes ` (non-locals) in the enclosing environment if they are already " -"referenced in the scope that is calling :func:`eval` (e.g. via a :keyword:`nonlocal` statement)." -msgstr "" -"آرگومان *source* به‌عنوان یک عبارت پایتون (از نظر فنی، یک :ref:`فهرست عبارات `) با استفاده از نگاشت‌های *globals* " -"و *locals* به‌ترتیب به‌عنوان فضای نام سراسری و محلی، تجزیه و ارزیابی می‌شود. اگر دیکشنری *globals* وجود داشته باشد اما کلید " -"``__builtins__`` را نداشته باشد، پیش از تجزیهٔ *source*، ارجاعی به دیکشنری ماژول توکار :mod:`builtins` تحت این کلید درج " -"می‌شود. بازنویسی ``__builtins__`` می‌تواند برای محدود کردن یا تغییر نام‌های در دسترس استفاده شود، اما این **یک سازوکار امنیتی " -"نیست**؛ زیرا کد اجراشده همچنان می‌تواند به تمام توابع و اشیای توکار دسترسی داشته باشد. اگر نگاشت *locals* ارائه نشود، به‌طور " -"پیش‌فرض از دیکشنری *globals* استفاده می‌شود. اگر هر دو نگاشت حذف شوند، *source* با استفاده از *globals* و *locals* محیطی " -"که :func:`eval` در آن فراخوانی شده اجرا می‌شود. توجه داشته باشید که *eval()* تنها در صورتی به :term:`دامنه‌های تو‌در‌تو ` (متغیرهای nonlocal) محیط پیرامون دسترسی خواهد داشت که آن‌ها از قبل در دامنه‌ای که :func:`eval` را فراخوانی می‌کند " -"ارجاع داده شده باشند (برای مثال، از طریق دستور :keyword:`nonlocal`)." - -#: ../../library/functions.rst:620 msgid "Example:" msgstr "مثال:" -#: ../../library/functions.rst:629 -msgid "" -"This function can also be used to execute arbitrary code objects (such as those created by :func:`compile`). In this case, " -"pass a code object instead of a string. If the code object has been compiled with ``'exec'`` as the *mode* " -"argument, :func:`eval`\\'s return value will be ``None``." -msgstr "" -"از این تابع همچنین می‌توان برای اجرای اشیای کد دلخواه (مانند اشیایی که توسط :func:`compile` ایجاد شده‌اند) استفاده کرد. در " -"این حالت، به‌جای رشته، یک شیء کد ارسال کنید. اگر شیء کد با آرگومان *mode* برابر ``'exec'`` کامپایل شده باشد، مقدار " -"بازگشتی :func:`eval` برابر ``None`` خواهد بود." +msgid "This function can also be used to execute arbitrary code objects (such as those created by :func:`compile`). In this case, pass a code object instead of a string. If the code object has been compiled with ``'exec'`` as the *mode* argument, :func:`eval`\\'s return value will be ``None``." +msgstr "از این تابع همچنین می‌توان برای اجرای اشیای کد دلخواه (مانند اشیایی که توسط :func:`compile` ایجاد شده‌اند) استفاده کرد. در این حالت، به‌جای رشته، یک شیء کد ارسال کنید. اگر شیء کد با آرگومان *mode* برابر ``'exec'`` کامپایل شده باشد، مقدار بازگشتی :func:`eval` برابر ``None`` خواهد بود." -#: ../../library/functions.rst:634 -msgid "" -"Hints: dynamic execution of statements is supported by the :func:`exec` function. The :func:`globals` and :func:`locals` " -"functions return the current global and local dictionary, respectively, which may be useful to pass around for use " -"by :func:`eval` or :func:`exec`." -msgstr "" -"راهنمایی: اجرای پویای دستورها توسط تابع :func:`exec` پشتیبانی می‌شود. توابع :func:`globals` و :func:`locals` به‌ترتیب دیکشنری " -"سراسری و محلی فعلی را برمی‌گردانند که می‌توان آن‌ها را برای استفاده در :func:`eval` یا :func:`exec` به توابع دیگر ارسال کرد." +msgid "Hints: dynamic execution of statements is supported by the :func:`exec` function. The :func:`globals` and :func:`locals` functions return the current global and local dictionary, respectively, which may be useful to pass around for use by :func:`eval` or :func:`exec`." +msgstr "راهنمایی: اجرای پویای دستورها توسط تابع :func:`exec` پشتیبانی می‌شود. توابع :func:`globals` و :func:`locals` به‌ترتیب دیکشنری سراسری و محلی فعلی را برمی‌گردانند که می‌توان آن‌ها را برای استفاده در :func:`eval` یا :func:`exec` به توابع دیگر ارسال کرد." -#: ../../library/functions.rst:639 msgid "If the given source is a string, then leading and trailing spaces and tabs are stripped." msgstr "اگر کد منبع داده‌شده یک رشته باشد، فاصله‌ها و نویسه‌های تب ابتدا و انتهای آن حذف می‌شوند." -#: ../../library/functions.rst:642 msgid "See :func:`ast.literal_eval` for a function to evaluate strings with expressions containing only literals." -msgstr "" -"برای تابعی که رشته‌های حاوی عبارت‌هایی متشکل فقط از مقادیر ثابت را ارزیابی می‌کند، به :func:`ast.literal_eval` مراجعه کنید." +msgstr "برای تابعی که رشته‌های حاوی عبارت‌هایی متشکل فقط از مقادیر ثابت را ارزیابی می‌کند، به :func:`ast.literal_eval` مراجعه کنید." -#: ../../library/functions.rst:645 ../../library/functions.rst:647 ../../library/functions.rst:708 -#: ../../library/functions.rst:710 -msgid "" -"Raises an :ref:`auditing event ` ``exec`` with the code object as the argument. Code compilation events may also " -"be raised." -msgstr "" -"یک :ref:`رویداد ممیزی ` با نام ``exec`` و شیء کد به‌عنوان آرگومان پرتاب می‌کند. رویدادهای مربوط به کامپایل کد نیز " -"ممکن است پرتاب شوند." +msgid "Raises an :ref:`auditing event ` ``exec`` with the code object as the argument. Code compilation events may also be raised." +msgstr "یک :ref:`رویداد ممیزی ` با نام ``exec`` و شیء کد به‌عنوان آرگومان پرتاب می‌کند. رویدادهای مربوط به کامپایل کد نیز ممکن است پرتاب شوند." -#: ../../library/functions.rst:652 ../../library/functions.rst:730 msgid "The *globals* and *locals* arguments can now be passed as keywords." msgstr "آرگومان‌های *globals* و *locals* اکنون می‌توانند به‌صورت آرگومان کلیدواژه‌ای نیز ارسال شوند." -#: ../../library/functions.rst:656 ../../library/functions.rst:734 msgid "The semantics of the default *locals* namespace have been adjusted as described for the :func:`locals` builtin." msgstr "معنای فضای نام پیش‌فرض *locals* مطابق توضیحات ارائه‌شده برای تابع توکار :func:`locals` تنظیم شده است." -#: ../../library/functions.rst:668 -msgid "" -"This function supports dynamic execution of Python code. *source* must be either a string or a code object. If it is a " -"string, the string is parsed as a suite of Python statements which is then executed (unless a syntax error occurs). [#]_ If " -"it is a code object, it is simply executed. In all cases, the code that's executed is expected to be valid as file input " -"(see the section :ref:`file-input` in the Reference Manual). Be aware that the :keyword:`nonlocal`, :keyword:`yield`, " -"and :keyword:`return` statements may not be used outside of function definitions even within the context of code passed to " -"the :func:`exec` function. The return value is ``None``." -msgstr "" -"این تابع از اجرای پویای کد پایتون پشتیبانی می‌کند. *source* باید یا یک رشته باشد یا یک شیء کد. اگر رشته باشد، به‌عنوان " -"مجموعه‌ای از دستورهای پایتون تجزیه و سپس اجرا می‌شود (مگر اینکه خطای نحوی رخ دهد). [#]_ اگر یک شیء کد باشد، مستقیماً اجرا " -"می‌شود. در همهٔ موارد، انتظار می‌رود کد اجراشده به‌عنوان ورودی فایل معتبر باشد (به بخش :ref:`file-input` در راهنمای مرجع مراجعه " -"کنید). توجه داشته باشید که دستورهای :keyword:`nonlocal`، :keyword:`yield` و :keyword:`return` حتی در کدی که از " -"طریق :func:`exec` اجرا می‌شود نیز خارج از تعریف تابع قابل استفاده نیستند. مقدار بازگشتی ``None`` است." +msgid "This function supports dynamic execution of Python code. *source* must be either a string or a code object. If it is a string, the string is parsed as a suite of Python statements which is then executed (unless a syntax error occurs). [#]_ If it is a code object, it is simply executed. In all cases, the code that's executed is expected to be valid as file input (see the section :ref:`file-input` in the Reference Manual). Be aware that the :keyword:`nonlocal`, :keyword:`yield`, and :keyword:`return` statements may not be used outside of function definitions even within the context of code passed to the :func:`exec` function. The return value is ``None``." +msgstr "این تابع از اجرای پویای کد پایتون پشتیبانی می‌کند. *source* باید یا یک رشته باشد یا یک شیء کد. اگر رشته باشد، به‌عنوان مجموعه‌ای از دستورهای پایتون تجزیه و سپس اجرا می‌شود (مگر اینکه خطای نحوی رخ دهد). [#]_ اگر یک شیء کد باشد، مستقیماً اجرا می‌شود. در همهٔ موارد، انتظار می‌رود کد اجراشده به‌عنوان ورودی فایل معتبر باشد (به بخش :ref:`file-input` در راهنمای مرجع مراجعه کنید). توجه داشته باشید که دستورهای :keyword:`nonlocal`، :keyword:`yield` و :keyword:`return` حتی در کدی که از طریق :func:`exec` اجرا می‌شود نیز خارج از تعریف تابع قابل استفاده نیستند. مقدار بازگشتی ``None`` است." -#: ../../library/functions.rst:679 -msgid "" -"In all cases, if the optional parts are omitted, the code is executed in the current scope. If only *globals* is provided, " -"it must be a dictionary (and not a subclass of dictionary), which will be used for both the global and the local " -"variables. If *globals* and *locals* are given, they are used for the global and local variables, respectively. If " -"provided, *locals* can be any mapping object. Remember that at the module level, globals and locals are the same " -"dictionary." -msgstr "" -"در همهٔ حالت‌ها، اگر بخش‌های اختیاری حذف شوند، کد در محدوده فعلی اجرا می‌شود. اگر فقط *globals* ارائه شود، باید یک دیکشنری باشد " -"(و نه یک زیرکلاس از دیکشنری) که هم برای متغیرهای سراسری و هم برای متغیرهای محلی استفاده خواهد شد. اگر هر دو *globals* و " -"*locals* ارائه شوند، به‌ترتیب برای متغیرهای سراسری و محلی استفاده می‌شوند. در صورت ارائه، *locals* می‌تواند هر شیء نگاشتی " -"باشد. به خاطر داشته باشید که در سطح ماژول، globals و locals همان دیکشنری یکسان هستند." +msgid "In all cases, if the optional parts are omitted, the code is executed in the current scope. If only *globals* is provided, it must be a dictionary (and not a subclass of dictionary), which will be used for both the global and the local variables. If *globals* and *locals* are given, they are used for the global and local variables, respectively. If provided, *locals* can be any mapping object. Remember that at the module level, globals and locals are the same dictionary." +msgstr "در همهٔ حالت‌ها، اگر بخش‌های اختیاری حذف شوند، کد در محدوده فعلی اجرا می‌شود. اگر فقط *globals* ارائه شود، باید یک دیکشنری باشد (و نه یک زیرکلاس از دیکشنری) که هم برای متغیرهای سراسری و هم برای متغیرهای محلی استفاده خواهد شد. اگر هر دو *globals* و *locals* ارائه شوند، به‌ترتیب برای متغیرهای سراسری و محلی استفاده می‌شوند. در صورت ارائه، *locals* می‌تواند هر شیء نگاشتی باشد. به خاطر داشته باشید که در سطح ماژول، globals و locals همان دیکشنری یکسان هستند." -#: ../../library/functions.rst:689 -msgid "" -"When ``exec`` gets two separate objects as *globals* and *locals*, the code will be executed as if it were embedded in a " -"class definition. This means functions and classes defined in the executed code will not be able to access variables " -"assigned at the top level (as the \"top level\" variables are treated as class variables in a class definition)." -msgstr "" -"وقتی ``exec`` دو شیء جداگانه را به‌عنوان *globals* و *locals* دریافت می‌کند، کد به‌گونه‌ای اجرا می‌شود که گویی درون یک تعریف " -"کلاس قرار دارد. این بدان معناست که توابع و کلاس‌های تعریف‌شده در کد اجراشده نمی‌توانند به متغیرهای اختصاص‌یافته در سطح بالا " -"دسترسی داشته باشند (زیرا متغیرهای «سطح بالا» در تعریف کلاس به‌عنوان متغیرهای کلاس در نظر گرفته می‌شوند)." +msgid "When ``exec`` gets two separate objects as *globals* and *locals*, the code will be executed as if it were embedded in a class definition. This means functions and classes defined in the executed code will not be able to access variables assigned at the top level (as the \"top level\" variables are treated as class variables in a class definition)." +msgstr "وقتی ``exec`` دو شیء جداگانه را به‌عنوان *globals* و *locals* دریافت می‌کند، کد به‌گونه‌ای اجرا می‌شود که گویی درون یک تعریف کلاس قرار دارد. این بدان معناست که توابع و کلاس‌های تعریف‌شده در کد اجراشده نمی‌توانند به متغیرهای اختصاص‌یافته در سطح بالا دسترسی داشته باشند (زیرا متغیرهای «سطح بالا» در تعریف کلاس به‌عنوان متغیرهای کلاس در نظر گرفته می‌شوند)." -#: ../../library/functions.rst:695 -msgid "" -"If the *globals* dictionary does not contain a value for the key ``__builtins__``, a reference to the dictionary of the " -"built-in module :mod:`builtins` is inserted under that key. Overriding ``__builtins__`` can be used to restrict or change " -"the available names, but this is **not** a security mechanism: the executed code can still access all builtins." -msgstr "" -"اگر دیکشنری *globals* مقداری برای کلید ``__builtins__`` نداشته باشد، ارجاعی به دیکشنری ماژول توکار :mod:`builtins` با همان " -"کلید در آن درج می‌شود. بازنویسی ``__builtins__`` می‌تواند برای محدود کردن یا تغییر نام‌های در دسترس استفاده شود، اما این **یک " -"سازوکار امنیتی نیست**؛ زیرا کدی که اجرا می‌شود همچنان می‌تواند به تمام اشیای توکار دسترسی داشته باشد." +msgid "If the *globals* dictionary does not contain a value for the key ``__builtins__``, a reference to the dictionary of the built-in module :mod:`builtins` is inserted under that key. Overriding ``__builtins__`` can be used to restrict or change the available names, but this is **not** a security mechanism: the executed code can still access all builtins." +msgstr "اگر دیکشنری *globals* مقداری برای کلید ``__builtins__`` نداشته باشد، ارجاعی به دیکشنری ماژول توکار :mod:`builtins` با همان کلید در آن درج می‌شود. بازنویسی ``__builtins__`` می‌تواند برای محدود کردن یا تغییر نام‌های در دسترس استفاده شود، اما این **یک سازوکار امنیتی نیست**؛ زیرا کدی که اجرا می‌شود همچنان می‌تواند به تمام اشیای توکار دسترسی داشته باشد." -#: ../../library/functions.rst:702 -msgid "" -"The *closure* argument specifies a closure--a tuple of cellvars. It's only valid when the *object* is a code object " -"containing :term:`free (closure) variables `. The length of the tuple must exactly match the length of " -"the code object's :attr:`~codeobject.co_freevars` attribute." -msgstr "" -"آرگومان *closure* یک closure را مشخص می‌کند؛ یعنی یک تاپل از cellvarها. این آرگومان تنها زمانی معتبر است که *object* یک شیء " -"کد باشد که شامل :term:`متغیرهای آزاد (closure) ` باشد. طول این تاپل باید دقیقاً با طول " -"ویژگی :attr:`~codeobject.co_freevars` شیء کد برابر باشد." +msgid "The *closure* argument specifies a closure--a tuple of cellvars. It's only valid when the *object* is a code object containing :term:`free (closure) variables `. The length of the tuple must exactly match the length of the code object's :attr:`~codeobject.co_freevars` attribute." +msgstr "آرگومان *closure* یک closure را مشخص می‌کند؛ یعنی یک تاپل از cellvarها. این آرگومان تنها زمانی معتبر است که *object* یک شیء کد باشد که شامل :term:`متغیرهای آزاد (closure) ` باشد. طول این تاپل باید دقیقاً با طول ویژگی :attr:`~codeobject.co_freevars` شیء کد برابر باشد." -#: ../../library/functions.rst:715 -msgid "" -"The built-in functions :func:`globals` and :func:`locals` return the current global and local namespace, respectively, " -"which may be useful to pass around for use as the second and third argument to :func:`exec`." -msgstr "" -"توابع توکار :func:`globals` و :func:`locals` به‌ترتیب فضای نام سراسری و محلی فعلی را برمی‌گردانند که می‌توانند برای ارسال " -"به‌عنوان آرگومان دوم و سوم تابع :func:`exec` مفید باشند." +msgid "The built-in functions :func:`globals` and :func:`locals` return the current global and local namespace, respectively, which may be useful to pass around for use as the second and third argument to :func:`exec`." +msgstr "توابع توکار :func:`globals` و :func:`locals` به‌ترتیب فضای نام سراسری و محلی فعلی را برمی‌گردانند که می‌توانند برای ارسال به‌عنوان آرگومان دوم و سوم تابع :func:`exec` مفید باشند." -#: ../../library/functions.rst:721 -msgid "" -"The default *locals* act as described for function :func:`locals` below. Pass an explicit *locals* dictionary if you need " -"to see effects of the code on *locals* after function :func:`exec` returns." -msgstr "" -"*locals* پیش‌فرض همان‌گونه عمل می‌کند که در ادامه برای تابع :func:`locals` توضیح داده شده است. اگر لازم است پس از بازگشت " -"تابع :func:`exec` تغییرات اعمال‌شده روی *locals* را مشاهده کنید، یک دیکشنری *locals* صریح ارسال کنید." +msgid "The default *locals* act as described for function :func:`locals` below. Pass an explicit *locals* dictionary if you need to see effects of the code on *locals* after function :func:`exec` returns." +msgstr "*locals* پیش‌فرض همان‌گونه عمل می‌کند که در ادامه برای تابع :func:`locals` توضیح داده شده است. اگر لازم است پس از بازگشت تابع :func:`exec` تغییرات اعمال‌شده روی *locals* را مشاهده کنید، یک دیکشنری *locals* صریح ارسال کنید." -#: ../../library/functions.rst:725 msgid "Added the *closure* parameter." msgstr "پارامتر *closure* اضافه شد." -#: ../../library/functions.rst:740 -msgid "" -"Construct an iterator from those elements of *iterable* for which *function* is true. *iterable* may be either a sequence, " -"a container which supports iteration, or an iterator. If *function* is ``None``, the identity function is assumed, that " -"is, all elements of *iterable* that are false are removed." -msgstr "" -"از میان عناصر *iterable*، آن‌هایی را که *function* برایشان مقدار True برمی‌گرداند، انتخاب کرده و یک تکرارگر می‌سازد. " -"*iterable* می‌تواند یک دنباله، یک محفظهٔ تکرارپذیر، یا یک تکرارگر باشد. اگر *function* برابر ``None`` باشد، تابع همانی در نظر " -"گرفته می‌شود؛ یعنی تمام عناصری از *iterable* که نادرست (False) هستند، حذف می‌شوند." +msgid "Construct an iterator from those elements of *iterable* for which *function* is true. *iterable* may be either a sequence, a container which supports iteration, or an iterator. If *function* is ``None``, the identity function is assumed, that is, all elements of *iterable* that are false are removed." +msgstr "از میان عناصر *iterable*، آن‌هایی را که *function* برایشان مقدار True برمی‌گرداند، انتخاب کرده و یک تکرارگر می‌سازد. *iterable* می‌تواند یک دنباله، یک محفظهٔ تکرارپذیر، یا یک تکرارگر باشد. اگر *function* برابر ``None`` باشد، تابع همانی در نظر گرفته می‌شود؛ یعنی تمام عناصری از *iterable* که نادرست (False) هستند، حذف می‌شوند." -#: ../../library/functions.rst:746 -msgid "" -"Note that ``filter(function, iterable)`` is equivalent to the generator expression ``(item for item in iterable if " -"function(item))`` if function is not ``None`` and ``(item for item in iterable if item)`` if function is ``None``." -msgstr "" -"توجه داشته باشید که اگر *function* برابر ``None`` نباشد، ``filter(function, iterable)`` معادل عبارت تولیدگر ``(item for " -"item in iterable if function(item))`` است، و اگر *function* برابر ``None`` باشد، معادل ``(item for item in iterable if " -"item)`` خواهد بود." +msgid "Note that ``filter(function, iterable)`` is equivalent to the generator expression ``(item for item in iterable if function(item))`` if function is not ``None`` and ``(item for item in iterable if item)`` if function is ``None``." +msgstr "توجه داشته باشید که اگر *function* برابر ``None`` نباشد، ``filter(function, iterable)`` معادل عبارت تولیدگر ``(item for item in iterable if function(item))`` است، و اگر *function* برابر ``None`` باشد، معادل ``(item for item in iterable if item)`` خواهد بود." -#: ../../library/functions.rst:751 -msgid "" -"See :func:`itertools.filterfalse` for the complementary function that returns elements of *iterable* for which *function* " -"is false." -msgstr "" -"برای تابع مکملی که عناصر *iterable* را که *function* برای آن‌ها مقدار نادرست (false) برمی‌گرداند، بازمی‌گرداند، " -"به :func:`itertools.filterfalse` مراجعه کنید." +msgid "See :func:`itertools.filterfalse` for the complementary function that returns elements of *iterable* for which *function* is false." +msgstr "برای تابع مکملی که عناصر *iterable* را که *function* برای آن‌ها مقدار نادرست (false) برمی‌گرداند، بازمی‌گرداند، به :func:`itertools.filterfalse` مراجعه کنید." -#: ../../library/functions.rst:762 msgid "Return a floating-point number constructed from a number or a string." msgstr "یک عدد ممیز شناور که از یک عدد یا یک رشته ساخته شده است را برمی‌گرداند." -#: ../../library/functions.rst:766 msgid "" ">>> float('+1.23')\n" "1.23\n" @@ -1342,248 +752,102 @@ msgstr "" ">>> float('-Infinity')\n" "-inf" -#: ../../library/functions.rst:779 -msgid "" -"If the argument is a string, it should contain a decimal number, optionally preceded by a sign, and optionally embedded in " -"whitespace. The optional sign may be ``'+'`` or ``'-'``; a ``'+'`` sign has no effect on the value produced. The argument " -"may also be a string representing a NaN (not-a-number), or positive or negative infinity. More precisely, the input must " -"conform to the :token:`~float:floatvalue` production rule in the following grammar, after leading and trailing whitespace " -"characters are removed:" -msgstr "" -"اگر آرگومان یک رشته باشد، باید شامل یک عدد ده‌دهی باشد که به‌صورت اختیاری با یک علامت و همچنین با فاصلهٔ سفید احاطه شده باشد. " -"علامت اختیاری می‌تواند ``'+'`` یا ``'-'`` باشد؛ علامت ``'+'`` تأثیری بر مقدار تولیدشده ندارد. آرگومان همچنین می‌تواند رشته‌ای " -"باشد که یک NaN (عدد نیست) یا بی‌نهایت مثبت یا منفی را نمایش می‌دهد. به‌طور دقیق‌تر، پس از حذف نویسه‌های فاصلهٔ سفید ابتدا و " -"انتهای رشته، ورودی باید با قاعدهٔ تولید :token:`~float:floatvalue` در دستور زبان زیر مطابقت داشته باشد:" +msgid "If the argument is a string, it should contain a decimal number, optionally preceded by a sign, and optionally embedded in whitespace. The optional sign may be ``'+'`` or ``'-'``; a ``'+'`` sign has no effect on the value produced. The argument may also be a string representing a NaN (not-a-number), or positive or negative infinity. More precisely, the input must conform to the :token:`~float:floatvalue` production rule in the following grammar, after leading and trailing whitespace characters are removed:" +msgstr "اگر آرگومان یک رشته باشد، باید شامل یک عدد ده‌دهی باشد که به‌صورت اختیاری با یک علامت و همچنین با فاصلهٔ سفید احاطه شده باشد. علامت اختیاری می‌تواند ``'+'`` یا ``'-'`` باشد؛ علامت ``'+'`` تأثیری بر مقدار تولیدشده ندارد. آرگومان همچنین می‌تواند رشته‌ای باشد که یک NaN (عدد نیست) یا بی‌نهایت مثبت یا منفی را نمایش می‌دهد. به‌طور دقیق‌تر، پس از حذف نویسه‌های فاصلهٔ سفید ابتدا و انتهای رشته، ورودی باید با قاعدهٔ تولید :token:`~float:floatvalue` در دستور زبان زیر مطابقت داشته باشد:" -#: ../../library/functions.rst:800 -msgid "" -"Case is not significant, so, for example, \"inf\", \"Inf\", \"INFINITY\", and \"iNfINity\" are all acceptable spellings for " -"positive infinity." -msgstr "" -"بزرگی و کوچکی حروف (case) اهمیتی ندارد؛ بنابراین، برای مثال، «inf»، «Inf»، «INFINITY» و «iNfINity» همگی برای نمایش بی‌نهایت " -"مثبت معتبر هستند." +msgid "Case is not significant, so, for example, \"inf\", \"Inf\", \"INFINITY\", and \"iNfINity\" are all acceptable spellings for positive infinity." +msgstr "بزرگی و کوچکی حروف (case) اهمیتی ندارد؛ بنابراین، برای مثال، «inf»، «Inf»، «INFINITY» و «iNfINity» همگی برای نمایش بی‌نهایت مثبت معتبر هستند." -#: ../../library/functions.rst:803 -msgid "" -"Otherwise, if the argument is an integer or a floating-point number, a floating-point number with the same value (within " -"Python's floating-point precision) is returned. If the argument is outside the range of a Python float, " -"an :exc:`OverflowError` will be raised." -msgstr "" -"در غیر این صورت، اگر آرگومان یک عدد صحیح یا یک عدد ممیز شناور باشد، یک عدد ممیز شناور با همان مقدار (در محدودهٔ دقت اعداد " -"ممیز شناور پایتون) برگردانده می‌شود. اگر آرگومان خارج از محدودهٔ یک عدد ممیز شناور در پایتون باشد، " -"استثنای :exc:`OverflowError` پرتاب خواهد شد." +msgid "Otherwise, if the argument is an integer or a floating-point number, a floating-point number with the same value (within Python's floating-point precision) is returned. If the argument is outside the range of a Python float, an :exc:`OverflowError` will be raised." +msgstr "در غیر این صورت، اگر آرگومان یک عدد صحیح یا یک عدد ممیز شناور باشد، یک عدد ممیز شناور با همان مقدار (در محدودهٔ دقت اعداد ممیز شناور پایتون) برگردانده می‌شود. اگر آرگومان خارج از محدودهٔ یک عدد ممیز شناور در پایتون باشد، استثنای :exc:`OverflowError` پرتاب خواهد شد." -#: ../../library/functions.rst:808 -msgid "" -"For a general Python object ``x``, ``float(x)`` delegates to ``x.__float__()``. If :meth:`~object.__float__` is not " -"defined then it falls back to :meth:`~object.__index__`." -msgstr "" -"برای یک شیء عمومی پایتون به نام ``x``، تابع ``float(x)`` فراخوانی را به ``x.__float__()`` واگذار می‌کند. " -"اگر :meth:`~object.__float__` تعریف نشده باشد، به :meth:`~object.__index__` بازمی‌گردد." +msgid "For a general Python object ``x``, ``float(x)`` delegates to ``x.__float__()``. If :meth:`~object.__float__` is not defined then it falls back to :meth:`~object.__index__`." +msgstr "برای یک شیء عمومی پایتون به نام ``x``، تابع ``float(x)`` فراخوانی را به ``x.__float__()`` واگذار می‌کند. اگر :meth:`~object.__float__` تعریف نشده باشد، به :meth:`~object.__index__` بازمی‌گردد." -#: ../../library/functions.rst:812 msgid "See also :meth:`float.from_number` which only accepts a numeric argument." msgstr "همچنین به :meth:`float.from_number` مراجعه کنید که فقط یک آرگومان عددی را می‌پذیرد." -#: ../../library/functions.rst:814 msgid "If no argument is given, ``0.0`` is returned." msgstr "اگر هیچ آرگومانی ارائه نشود، مقدار ``0.0`` برگردانده می‌شود." -#: ../../library/functions.rst:816 msgid "The float type is described in :ref:`typesnumeric`." msgstr "نوع ممیز شناور در :ref:`typesnumeric` توضیح داده شده است." -#: ../../library/functions.rst:824 msgid "Falls back to :meth:`~object.__index__` if :meth:`~object.__float__` is not defined." msgstr "اگر :meth:`~object.__float__` تعریف نشده باشد، به :meth:`~object.__index__` بازمی‌گردد." -#: ../../library/functions.rst:834 -msgid "" -"Convert a *value* to a \"formatted\" representation, as controlled by *format_spec*. The interpretation of *format_spec* " -"will depend on the type of the *value* argument; however, there is a standard formatting syntax that is used by most built-" -"in types: :ref:`formatspec`." -msgstr "" -"*value* را مطابق با *format_spec* به یک نمایش قالب‌بندی‌شده تبدیل می‌کند. نحوهٔ تفسیر *format_spec* به نوع آرگومان *value* " -"بستگی دارد؛ با این حال، یک نحو استاندارد برای قالب‌بندی وجود دارد که بیشتر انواع توکار از آن استفاده " -"می‌کنند: :ref:`formatspec`." +msgid "Convert a *value* to a \"formatted\" representation, as controlled by *format_spec*. The interpretation of *format_spec* will depend on the type of the *value* argument; however, there is a standard formatting syntax that is used by most built-in types: :ref:`formatspec`." +msgstr "*value* را مطابق با *format_spec* به یک نمایش قالب‌بندی‌شده تبدیل می‌کند. نحوهٔ تفسیر *format_spec* به نوع آرگومان *value* بستگی دارد؛ با این حال، یک نحو استاندارد برای قالب‌بندی وجود دارد که بیشتر انواع توکار از آن استفاده می‌کنند: :ref:`formatspec`." -#: ../../library/functions.rst:839 msgid "The default *format_spec* is an empty string which usually gives the same effect as calling :func:`str(value) `." -msgstr "" -"مقدار پیش‌فرض *format_spec* یک رشتهٔ خالی است که معمولاً همان اثری را دارد که فراخوانی :func:`str(value) ` ایجاد می‌کند." +msgstr "مقدار پیش‌فرض *format_spec* یک رشتهٔ خالی است که معمولاً همان اثری را دارد که فراخوانی :func:`str(value) ` ایجاد می‌کند." -#: ../../library/functions.rst:842 -msgid "" -"A call to ``format(value, format_spec)`` is translated to ``type(value).__format__(value, format_spec)`` which bypasses the " -"instance dictionary when searching for the value's :meth:`~object.__format__` method. A :exc:`TypeError` exception is " -"raised if the method search reaches :mod:`object` and the *format_spec* is non-empty, or if either the *format_spec* or the " -"return value are not strings." -msgstr "" -"فراخوانی ``format(value, format_spec)`` به ``type(value).__format__(value, format_spec)`` تبدیل می‌شود که هنگام جست‌وجوی " -"متد :meth:`~object.__format__` مربوط به *value*، دیکشنری نمونه را نادیده می‌گیرد. اگر جست‌وجوی متد به :mod:`object` برسد و " -"*format_spec* خالی نباشد، یا اگر *format_spec* یا مقدار بازگشتی رشته نباشند، استثنای :exc:`TypeError` پرتاب می‌شود." +msgid "A call to ``format(value, format_spec)`` is translated to ``type(value).__format__(value, format_spec)`` which bypasses the instance dictionary when searching for the value's :meth:`~object.__format__` method. A :exc:`TypeError` exception is raised if the method search reaches :mod:`object` and the *format_spec* is non-empty, or if either the *format_spec* or the return value are not strings." +msgstr "فراخوانی ``format(value, format_spec)`` به ``type(value).__format__(value, format_spec)`` تبدیل می‌شود که هنگام جست‌وجوی متد :meth:`~object.__format__` مربوط به *value*، دیکشنری نمونه را نادیده می‌گیرد. اگر جست‌وجوی متد به :mod:`object` برسد و *format_spec* خالی نباشد، یا اگر *format_spec* یا مقدار بازگشتی رشته نباشند، استثنای :exc:`TypeError` پرتاب می‌شود." -#: ../../library/functions.rst:849 msgid "``object().__format__(format_spec)`` raises :exc:`TypeError` if *format_spec* is not an empty string." msgstr "اگر *format_spec* یک رشتهٔ خالی نباشد، ``object().__format__(format_spec)`` استثنای :exc:`TypeError` پرتاب می‌کند." -#: ../../library/functions.rst:858 -msgid "" -"Return a new :class:`frozenset` object, optionally with elements taken from *iterable*. :class:`frozenset` is a built-in " -"class. See also :ref:`types-set` for documentation about this class." -msgstr "" -"یک شیء جدید از نوع :class:`frozenset` را برمی‌گرداند که در صورت ارائه، عناصر آن از *iterable* گرفته " -"می‌شوند. :class:`frozenset` یک کلاس توکار است. برای مستندات این کلاس، به :ref:`types-set` مراجعه کنید." +msgid "Return a new :class:`frozenset` object, optionally with elements taken from *iterable*. :class:`frozenset` is a built-in class. See also :ref:`types-set` for documentation about this class." +msgstr "یک شیء جدید از نوع :class:`frozenset` را برمی‌گرداند که در صورت ارائه، عناصر آن از *iterable* گرفته می‌شوند. :class:`frozenset` یک کلاس توکار است. برای مستندات این کلاس، به :ref:`types-set` مراجعه کنید." -#: ../../library/functions.rst:862 -msgid "" -"For other containers see the built-in :class:`set`, :class:`list`, :class:`tuple`, and :class:`dict` classes, as well as " -"the :mod:`collections` module." -msgstr "" -"برای سایر انواع محفظه‌ها، به کلاس‌های توکار :class:`set`، :class:`list`، :class:`tuple` و :class:`dict`، و همچنین " -"ماژول :mod:`collections` مراجعه کنید." +msgid "For other containers see the built-in :class:`set`, :class:`list`, :class:`tuple`, and :class:`dict` classes, as well as the :mod:`collections` module." +msgstr "برای سایر انواع محفظه‌ها، به کلاس‌های توکار :class:`set`، :class:`list`، :class:`tuple` و :class:`dict`، و همچنین ماژول :mod:`collections` مراجعه کنید." -#: ../../library/functions.rst:870 -msgid "" -"Return the value of the named attribute of *object*. *name* must be a string. If the string is the name of one of the " -"object's attributes, the result is the value of that attribute. For example, ``getattr(x, 'foobar')`` is equivalent to " -"``x.foobar``. If the named attribute does not exist, *default* is returned if provided, otherwise :exc:`AttributeError` is " -"raised. *name* need not be a Python identifier (see :func:`setattr`)." -msgstr "" -"مقدار ویژگیِ نام‌گذاری‌شدهٔ *object* را برمی‌گرداند. *name* باید یک رشته باشد. اگر رشته، نام یکی از ویژگی‌های شیء باشد، نتیجه " -"مقدار آن ویژگی خواهد بود. برای مثال، ``getattr(x, 'foobar')`` معادل ``x.foobar`` است. اگر ویژگیِ نام‌گذاری‌شده وجود نداشته " -"باشد، در صورت ارائه، *default* برگردانده می‌شود؛ در غیر این صورت، استثنای :exc:`AttributeError` پرتاب می‌شود. لازم نیست " -"*name* یک شناسهٔ معتبر پایتون باشد (به :func:`setattr` مراجعه کنید)." +msgid "Return the value of the named attribute of *object*. *name* must be a string. If the string is the name of one of the object's attributes, the result is the value of that attribute. For example, ``getattr(x, 'foobar')`` is equivalent to ``x.foobar``. If the named attribute does not exist, *default* is returned if provided, otherwise :exc:`AttributeError` is raised. *name* need not be a Python identifier (see :func:`setattr`)." +msgstr "مقدار ویژگیِ نام‌گذاری‌شدهٔ *object* را برمی‌گرداند. *name* باید یک رشته باشد. اگر رشته، نام یکی از ویژگی‌های شیء باشد، نتیجه مقدار آن ویژگی خواهد بود. برای مثال، ``getattr(x, 'foobar')`` معادل ``x.foobar`` است. اگر ویژگیِ نام‌گذاری‌شده وجود نداشته باشد، در صورت ارائه، *default* برگردانده می‌شود؛ در غیر این صورت، استثنای :exc:`AttributeError` پرتاب می‌شود. لازم نیست *name* یک شناسهٔ معتبر پایتون باشد (به :func:`setattr` مراجعه کنید)." -#: ../../library/functions.rst:879 -msgid "" -"Since :ref:`private name mangling ` happens at compilation time, one must manually mangle a private " -"attribute's (attributes with two leading underscores) name in order to retrieve it with :func:`getattr`." -msgstr "" -"از آنجا که :ref:`تغییر نام خصوصی ` در زمان کامپایل انجام می‌شود، برای بازیابی یک ویژگی خصوصی " -"(ویژگی‌هایی که با دو زیرخط آغاز می‌شوند) با استفاده از :func:`getattr`، باید نام آن را به‌صورت دستی تغییر دهید." +msgid "Since :ref:`private name mangling ` happens at compilation time, one must manually mangle a private attribute's (attributes with two leading underscores) name in order to retrieve it with :func:`getattr`." +msgstr "از آنجا که :ref:`تغییر نام خصوصی ` در زمان کامپایل انجام می‌شود، برای بازیابی یک ویژگی خصوصی (ویژگی‌هایی که با دو زیرخط آغاز می‌شوند) با استفاده از :func:`getattr`، باید نام آن را به‌صورت دستی تغییر دهید." -#: ../../library/functions.rst:887 -msgid "" -"Return the dictionary implementing the current module namespace. For code within functions, this is set when the function " -"is defined and remains the same regardless of where the function is called." -msgstr "" -"دیکشنریی را که فضای نام ماژول فعلی را پیاده‌سازی می‌کند، برمی‌گرداند. برای کدهای داخل توابع، این مقدار هنگام تعریف تابع تنظیم " -"می‌شود و بدون توجه به این‌که تابع از کجا فراخوانی شود، ثابت باقی می‌ماند." +msgid "Return the dictionary implementing the current module namespace. For code within functions, this is set when the function is defined and remains the same regardless of where the function is called." +msgstr "دیکشنریی را که فضای نام ماژول فعلی را پیاده‌سازی می‌کند، برمی‌گرداند. برای کدهای داخل توابع، این مقدار هنگام تعریف تابع تنظیم می‌شود و بدون توجه به این‌که تابع از کجا فراخوانی شود، ثابت باقی می‌ماند." -#: ../../library/functions.rst:894 -msgid "" -"The arguments are an object and a string. The result is ``True`` if the string is the name of one of the object's " -"attributes, ``False`` if not. (This is implemented by calling ``getattr(object, name)`` and seeing whether it raises " -"an :exc:`AttributeError` or not.)" -msgstr "" -"آرگومان‌ها شامل یک شیء و یک رشته هستند. اگر رشته نام یکی از ویژگی‌های آن شیء باشد، نتیجه ``True`` و در غیر این صورت ``False`` " -"خواهد بود. (این کار با فراخوانی ``getattr(object, name)`` و بررسی اینکه آیا استثنای :exc:`AttributeError` پرتاب می‌شود یا " -"نه، پیاده‌سازی شده است.)" +msgid "The arguments are an object and a string. The result is ``True`` if the string is the name of one of the object's attributes, ``False`` if not. (This is implemented by calling ``getattr(object, name)`` and seeing whether it raises an :exc:`AttributeError` or not.)" +msgstr "آرگومان‌ها شامل یک شیء و یک رشته هستند. اگر رشته نام یکی از ویژگی‌های آن شیء باشد، نتیجه ``True`` و در غیر این صورت ``False`` خواهد بود. (این کار با فراخوانی ``getattr(object, name)`` و بررسی اینکه آیا استثنای :exc:`AttributeError` پرتاب می‌شود یا نه، پیاده‌سازی شده است.)" -#: ../../library/functions.rst:902 -msgid "" -"Return the hash value of the object (if it has one). Hash values are integers. They are used to quickly compare " -"dictionary keys during a dictionary lookup. Numeric values that compare equal have the same hash value (even if they are " -"of different types, as is the case for 1 and 1.0)." -msgstr "" -"مقدار هش شیء را (در صورتی که داشته باشد) برمی‌گرداند. مقادیر هش اعداد صحیح هستند. از آن‌ها برای مقایسهٔ سریع کلیدهای دیکشنری " -"هنگام جست‌وجو در دیکشنری استفاده می‌شود. مقادیر عددی که با یکدیگر برابر مقایسه می‌شوند، مقدار هش یکسانی دارند (حتی اگر از " -"نوع‌های متفاوتی باشند، مانند 1 و 1.0)." +msgid "Return the hash value of the object (if it has one). Hash values are integers. They are used to quickly compare dictionary keys during a dictionary lookup. Numeric values that compare equal have the same hash value (even if they are of different types, as is the case for 1 and 1.0)." +msgstr "مقدار هش شیء را (در صورتی که داشته باشد) برمی‌گرداند. مقادیر هش اعداد صحیح هستند. از آن‌ها برای مقایسهٔ سریع کلیدهای دیکشنری هنگام جست‌وجو در دیکشنری استفاده می‌شود. مقادیر عددی که با یکدیگر برابر مقایسه می‌شوند، مقدار هش یکسانی دارند (حتی اگر از نوع‌های متفاوتی باشند، مانند 1 و 1.0)." -#: ../../library/functions.rst:909 -msgid "" -"For objects with custom :meth:`~object.__hash__` methods, note that :func:`hash` truncates the return value based on the " -"bit width of the host machine." -msgstr "" -"برای اشیایی که متد :meth:`~object.__hash__` سفارشی دارند، توجه داشته باشید که :func:`hash` مقدار بازگشتی را بر اساس پهنای " -"بیت ماشین میزبان کوتاه می‌کند." +msgid "For objects with custom :meth:`~object.__hash__` methods, note that :func:`hash` truncates the return value based on the bit width of the host machine." +msgstr "برای اشیایی که متد :meth:`~object.__hash__` سفارشی دارند، توجه داشته باشید که :func:`hash` مقدار بازگشتی را بر اساس پهنای بیت ماشین میزبان کوتاه می‌کند." -#: ../../library/functions.rst:916 -msgid "" -"Invoke the built-in help system. (This function is intended for interactive use.) If no argument is given, the " -"interactive help system starts on the interpreter console. If the argument is a string, then the string is looked up as " -"the name of a module, function, class, method, keyword, or documentation topic, and a help page is printed on the console. " -"If the argument is any other kind of object, a help page on the object is generated." -msgstr "" -"سامانهٔ راهنمای توکار را فراخوانی می‌کند. (این تابع برای استفادهٔ تعاملی طراحی شده است.) اگر هیچ آرگومانی ارائه نشود، سامانهٔ " -"راهنمای تعاملی در کنسول مفسر آغاز می‌شود. اگر آرگومان یک رشته باشد، آن رشته به‌عنوان نام یک ماژول، تابع، کلاس، متد، کلیدواژه " -"یا موضوع مستندات جست‌وجو می‌شود و صفحهٔ راهنمای آن در کنسول نمایش داده می‌شود. اگر آرگومان هر نوع شیء دیگری باشد، صفحهٔ راهنمای " -"مربوط به آن شیء تولید می‌شود." +msgid "Invoke the built-in help system. (This function is intended for interactive use.) If no argument is given, the interactive help system starts on the interpreter console. If the argument is a string, then the string is looked up as the name of a module, function, class, method, keyword, or documentation topic, and a help page is printed on the console. If the argument is any other kind of object, a help page on the object is generated." +msgstr "سامانهٔ راهنمای توکار را فراخوانی می‌کند. (این تابع برای استفادهٔ تعاملی طراحی شده است.) اگر هیچ آرگومانی ارائه نشود، سامانهٔ راهنمای تعاملی در کنسول مفسر آغاز می‌شود. اگر آرگومان یک رشته باشد، آن رشته به‌عنوان نام یک ماژول، تابع، کلاس، متد، کلیدواژه یا موضوع مستندات جست‌وجو می‌شود و صفحهٔ راهنمای آن در کنسول نمایش داده می‌شود. اگر آرگومان هر نوع شیء دیگری باشد، صفحهٔ راهنمای مربوط به آن شیء تولید می‌شود." -#: ../../library/functions.rst:923 -msgid "" -"Note that if a slash(/) appears in the parameter list of a function when invoking :func:`help`, it means that the " -"parameters prior to the slash are positional-only. For more info, see :ref:`the FAQ entry on positional-only parameters " -"`." -msgstr "" -"توجه داشته باشید که اگر هنگام فراخوانی :func:`help` یک اسلش (/) در فهرست پارامترهای یک تابع ظاهر شود، به این معناست که " -"پارامترهای قبل از اسلش فقط به‌صورت مکانی قابل ارسال هستند. برای اطلاعات بیشتر، به :ref:`پرسش متداول مربوط به پارامترهای فقط " -"مکانی ` مراجعه کنید." +msgid "Note that if a slash(/) appears in the parameter list of a function when invoking :func:`help`, it means that the parameters prior to the slash are positional-only. For more info, see :ref:`the FAQ entry on positional-only parameters `." +msgstr "توجه داشته باشید که اگر هنگام فراخوانی :func:`help` یک اسلش (/) در فهرست پارامترهای یک تابع ظاهر شود، به این معناست که پارامترهای قبل از اسلش فقط به‌صورت مکانی قابل ارسال هستند. برای اطلاعات بیشتر، به :ref:`پرسش متداول مربوط به پارامترهای فقط مکانی ` مراجعه کنید." -#: ../../library/functions.rst:928 msgid "This function is added to the built-in namespace by the :mod:`site` module." msgstr "این تابع توسط ماژول :mod:`site` به فضای نام توکار (built-in namespace) اضافه می‌شود." -#: ../../library/functions.rst:930 -msgid "" -"Changes to :mod:`pydoc` and :mod:`inspect` mean that the reported signatures for callables are now more comprehensive and " -"consistent." -msgstr "" -"تغییرات اعمال‌شده در :mod:`pydoc` و :mod:`inspect` باعث شده‌اند امضاهای گزارش‌شده برای اشیای فراخوانی‌پذیر اکنون کامل‌تر و " -"سازگارتر باشند." +msgid "Changes to :mod:`pydoc` and :mod:`inspect` mean that the reported signatures for callables are now more comprehensive and consistent." +msgstr "تغییرات اعمال‌شده در :mod:`pydoc` و :mod:`inspect` باعث شده‌اند امضاهای گزارش‌شده برای اشیای فراخوانی‌پذیر اکنون کامل‌تر و سازگارتر باشند." -#: ../../library/functions.rst:937 -msgid "" -"Convert an integer number to a lowercase hexadecimal string prefixed with \"0x\". If *integer* is not a Python :class:`int` " -"object, it has to define an :meth:`~object.__index__` method that returns an integer. Some examples:" -msgstr "" -"یک عدد صحیح را به یک رشتهٔ شانزده‌شانزدهی کوچک‌حرف با پیشوند «0x» تبدیل می‌کند. اگر *integer* یک شیء از نوع :class:`int` پایتون " -"نباشد، باید متدی به نام :meth:`~object.__index__` تعریف کند که یک عدد صحیح برمی‌گرداند. چند نمونه:" +msgid "Convert an integer number to a lowercase hexadecimal string prefixed with \"0x\". If *integer* is not a Python :class:`int` object, it has to define an :meth:`~object.__index__` method that returns an integer. Some examples:" +msgstr "یک عدد صحیح را به یک رشتهٔ شانزده‌شانزدهی کوچک‌حرف با پیشوند «0x» تبدیل می‌کند. اگر *integer* یک شیء از نوع :class:`int` پایتون نباشد، باید متدی به نام :meth:`~object.__index__` تعریف کند که یک عدد صحیح برمی‌گرداند. چند نمونه:" -#: ../../library/functions.rst:946 -msgid "" -"If you want to convert an integer number to an uppercase or lower hexadecimal string with prefix or not, you can use either " -"of the following ways:" -msgstr "" -"اگر می‌خواهید یک عدد صحیح را به یک رشتهٔ شانزده‌شانزدهی با حروف بزرگ یا کوچک، با پیشوند یا بدون آن، تبدیل کنید، می‌توانید از هر " -"یک از روش‌های زیر استفاده کنید:" +msgid "If you want to convert an integer number to an uppercase or lower hexadecimal string with prefix or not, you can use either of the following ways:" +msgstr "اگر می‌خواهید یک عدد صحیح را به یک رشتهٔ شانزده‌شانزدهی با حروف بزرگ یا کوچک، با پیشوند یا بدون آن، تبدیل کنید، می‌توانید از هر یک از روش‌های زیر استفاده کنید:" -#: ../../library/functions.rst:958 msgid "See also :func:`int` for converting a hexadecimal string to an integer using a base of 16." msgstr "همچنین برای تبدیل یک رشتهٔ شانزده‌شانزدهی به یک عدد صحیح با استفاده از مبنای 16، به :func:`int` مراجعه کنید." -#: ../../library/functions.rst:963 msgid "To obtain a hexadecimal string representation for a float, use the :meth:`float.hex` method." msgstr "برای به‌دست‌آوردن نمایش شانزدهی یک عدد ممیز شناور، از متد :meth:`float.hex` استفاده کنید." -#: ../../library/functions.rst:969 -msgid "" -"Return the \"identity\" of an object. This is an integer which is guaranteed to be unique and constant for this object " -"during its lifetime. Two objects with non-overlapping lifetimes may have the same :func:`id` value." -msgstr "" -"«شناسه» یک شیء را برمی‌گرداند. این مقدار یک عدد صحیح است که در طول عمر آن شیء، یکتا و ثابت بودنش تضمین شده است. دو شیء که " -"طول عمر آن‌ها با یکدیگر هم‌پوشانی ندارد، ممکن است مقدار یکسانی از :func:`id` داشته باشند." +msgid "Return the \"identity\" of an object. This is an integer which is guaranteed to be unique and constant for this object during its lifetime. Two objects with non-overlapping lifetimes may have the same :func:`id` value." +msgstr "«شناسه» یک شیء را برمی‌گرداند. این مقدار یک عدد صحیح است که در طول عمر آن شیء، یکتا و ثابت بودنش تضمین شده است. دو شیء که طول عمر آن‌ها با یکدیگر هم‌پوشانی ندارد، ممکن است مقدار یکسانی از :func:`id` داشته باشند." -#: ../../library/functions.rst:974 msgid "This is the address of the object in memory." msgstr "این، آدرس شیء در حافظه است." -#: ../../library/functions.rst:976 msgid "Raises an :ref:`auditing event ` ``builtins.id`` with argument ``id``." msgstr "یک :ref:`رویداد ممیزی ` با نام ``builtins.id`` و آرگومان ``id`` پرتاب می‌کند." -#: ../../library/functions.rst:982 -msgid "" -"If the *prompt* argument is present, it is written to standard output without a trailing newline. The function then reads " -"a line from input, converts it to a string (stripping a trailing newline), and returns that. When EOF is " -"read, :exc:`EOFError` is raised. Example::" -msgstr "" -"اگر آرگومان *prompt* ارائه شود، بدون افزودن نویسهٔ پایان خط در خروجی استاندارد نوشته می‌شود. سپس تابع یک خط از ورودی می‌خواند، " -"آن را به یک رشته تبدیل می‌کند (با حذف نویسهٔ پایان خط انتهایی) و همان را برمی‌گرداند. اگر به انتهای فایل (EOF) برسد، " -"استثنای :exc:`EOFError` پرتاب می‌شود. مثال::" +msgid "If the *prompt* argument is present, it is written to standard output without a trailing newline. The function then reads a line from input, converts it to a string (stripping a trailing newline), and returns that. When EOF is read, :exc:`EOFError` is raised. Example::" +msgstr "اگر آرگومان *prompt* ارائه شود، بدون افزودن نویسهٔ پایان خط در خروجی استاندارد نوشته می‌شود. سپس تابع یک خط از ورودی می‌خواند، آن را به یک رشته تبدیل می‌کند (با حذف نویسهٔ پایان خط انتهایی) و همان را برمی‌گرداند. اگر به انتهای فایل (EOF) برسد، استثنای :exc:`EOFError` پرتاب می‌شود. مثال::" -#: ../../library/functions.rst:987 msgid "" ">>> s = input('--> ')\n" "--> Monty Python's Flying Circus\n" @@ -1595,31 +859,18 @@ msgstr "" ">>> s\n" "\"Monty Python's Flying Circus\"" -#: ../../library/functions.rst:992 -msgid "" -"If the :mod:`readline` module was loaded, then :func:`input` will use it to provide elaborate line editing and history " -"features." -msgstr "" -"اگر ماژول :mod:`readline` بارگذاری شده باشد، :func:`input` از آن برای فراهم کردن امکانات پیشرفتهٔ ویرایش خط و تاریخچهٔ ورودی " -"استفاده می‌کند." +msgid "If the :mod:`readline` module was loaded, then :func:`input` will use it to provide elaborate line editing and history features." +msgstr "اگر ماژول :mod:`readline` بارگذاری شده باشد، :func:`input` از آن برای فراهم کردن امکانات پیشرفتهٔ ویرایش خط و تاریخچهٔ ورودی استفاده می‌کند." -#: ../../library/functions.rst:995 ../../library/functions.rst:997 msgid "Raises an :ref:`auditing event ` ``builtins.input`` with argument ``prompt`` before reading input" msgstr "پیش از خواندن ورودی، یک :ref:`رویداد ممیزی ` با نام ``builtins.input`` و آرگومان ``prompt`` پرتاب می‌کند" -#: ../../library/functions.rst:1000 ../../library/functions.rst:1002 msgid "Raises an :ref:`auditing event ` ``builtins.input/result`` with the result after successfully reading input." -msgstr "" -"پس از خواندن موفقیت‌آمیز ورودی، یک :ref:`رویداد ممیزی ` با نام ``builtins.input/result`` و نتیجهٔ خوانده‌شده پرتاب " -"می‌کند." +msgstr "پس از خواندن موفقیت‌آمیز ورودی، یک :ref:`رویداد ممیزی ` با نام ``builtins.input/result`` و نتیجهٔ خوانده‌شده پرتاب می‌کند." -#: ../../library/functions.rst:1009 msgid "Return an integer object constructed from a number or a string, or return ``0`` if no arguments are given." -msgstr "" -"یک شیء عدد صحیح را که از یک عدد یا یک رشته ساخته شده است برمی‌گرداند، یا اگر هیچ آرگومانی داده نشده باشد، مقدار ``0`` را " -"برمی‌گرداند." +msgstr "یک شیء عدد صحیح را که از یک عدد یا یک رشته ساخته شده است برمی‌گرداند، یا اگر هیچ آرگومانی داده نشده باشد، مقدار ``0`` را برمی‌گرداند." -#: ../../library/functions.rst:1014 msgid "" ">>> int(123.45)\n" "123\n" @@ -1647,144 +898,51 @@ msgstr "" ">>> int('01110011', base=2)\n" "115" -#: ../../library/functions.rst:1029 -msgid "" -"If the argument defines :meth:`~object.__int__`, ``int(x)`` returns ``x.__int__()``. If the argument " -"defines :meth:`~object.__index__`, it returns ``x.__index__()``. For floating-point numbers, this truncates towards zero." -msgstr "" -"اگر آرگومان متد :meth:`~object.__int__` را تعریف کرده باشد، ``int(x)`` مقدار ``x.__int__()`` را برمی‌گرداند. اگر آرگومان " -"متد :meth:`~object.__index__` را تعریف کرده باشد، مقدار ``x.__index__()`` برگردانده می‌شود. برای اعداد ممیز شناور، این تبدیل " -"بخش اعشاری را در جهت صفر حذف می‌کند." +msgid "If the argument defines :meth:`~object.__int__`, ``int(x)`` returns ``x.__int__()``. If the argument defines :meth:`~object.__index__`, it returns ``x.__index__()``. For floating-point numbers, this truncates towards zero." +msgstr "اگر آرگومان متد :meth:`~object.__int__` را تعریف کرده باشد، ``int(x)`` مقدار ``x.__int__()`` را برمی‌گرداند. اگر آرگومان متد :meth:`~object.__index__` را تعریف کرده باشد، مقدار ``x.__index__()`` برگردانده می‌شود. برای اعداد ممیز شناور، این تبدیل بخش اعشاری را در جهت صفر حذف می‌کند." -#: ../../library/functions.rst:1034 -msgid "" -"If the argument is not a number or if *base* is given, then it must be a string, :class:`bytes`, or :class:`bytearray` " -"instance representing an integer in radix *base*. Optionally, the string can be preceded by ``+`` or ``-`` (with no space " -"in between), have leading zeros, be surrounded by whitespace, and have single underscores interspersed between digits." -msgstr "" -"اگر آرگومان یک عدد نباشد یا *base* مشخص شده باشد، باید نمونه‌ای از :class:`bytes` یا :class:`bytearray` باشد که یک عدد صحیح " -"در مبنای *base* را نمایش می‌دهد. به‌صورت اختیاری، رشته می‌تواند با ``+`` یا ``-`` (بدون فاصله بین آن‌ها و عدد) آغاز شود، دارای " -"صفرهای ابتدایی باشد، با فاصلهٔ سفید احاطه شده باشد و بین رقم‌های آن زیرخط‌های تکی قرار گرفته باشند." +msgid "If the argument is not a number or if *base* is given, then it must be a string, :class:`bytes`, or :class:`bytearray` instance representing an integer in radix *base*. Optionally, the string can be preceded by ``+`` or ``-`` (with no space in between), have leading zeros, be surrounded by whitespace, and have single underscores interspersed between digits." +msgstr "اگر آرگومان یک عدد نباشد یا *base* مشخص شده باشد، باید نمونه‌ای از :class:`bytes` یا :class:`bytearray` باشد که یک عدد صحیح در مبنای *base* را نمایش می‌دهد. به‌صورت اختیاری، رشته می‌تواند با ``+`` یا ``-`` (بدون فاصله بین آن‌ها و عدد) آغاز شود، دارای صفرهای ابتدایی باشد، با فاصلهٔ سفید احاطه شده باشد و بین رقم‌های آن زیرخط‌های تکی قرار گرفته باشند." + +msgid "A base-n integer string contains digits, each representing a value from 0 to n-1. The values 0--9 can be represented by any Unicode decimal digit. The values 10--35 can be represented by ``a`` to ``z`` (or ``A`` to ``Z``). The default *base* is 10. The allowed bases are 0 and 2--36. Base-2, -8, and -16 strings can be optionally prefixed with ``0b``/``0B``, ``0o``/``0O``, or ``0x``/``0X``, as with integer literals in code. For base 0, the string is interpreted in a similar way to an :ref:`integer literal in code `, in that the actual base is 2, 8, 10, or 16 as determined by the prefix. Base 0 also disallows leading zeros: ``int('010', 0)`` is not legal, while ``int('010')`` and ``int('010', 8)`` are." +msgstr "یک رشتهٔ عدد صحیح در مبنای n شامل رقم‌هایی است که هر یک مقداری بین 0 تا n-1 را نمایش می‌دهند. مقادیر 0 تا 9 را می‌توان با هر رقم ده‌دهی یونیکد نمایش داد. مقادیر 10 تا 35 را می‌توان با نویسه‌های ``a`` تا ``z`` (یا ``A`` تا ``Z``) نمایش داد. مقدار پیش‌فرض *base* برابر 10 است. مبناهای مجاز عبارت‌اند از 0 و 2 تا 36. رشته‌های مبنای 2، 8 و 16 می‌توانند، همانند ثابت‌های عدد صحیح در کد، به‌ترتیب با پیشوندهای ``0b``/``0B``، ``0o``/``0O`` یا ``0x``/``0X`` آغاز شوند. برای مبنای 0، رشته مشابه یک :ref:`ثابت عدد صحیح در کد ` تفسیر می‌شود؛ یعنی مبنای واقعی بر اساس پیشوند، یکی از 2، 8، 10 یا 16 خواهد بود. همچنین در مبنای 0 استفاده از صفرهای ابتدایی مجاز نیست؛ بنابراین ``int('010', 0)`` معتبر نیست، در حالی که ``int('010')`` و ``int('010', 8)`` معتبر هستند." -#: ../../library/functions.rst:1040 -msgid "" -"A base-n integer string contains digits, each representing a value from 0 to n-1. The values 0--9 can be represented by any " -"Unicode decimal digit. The values 10--35 can be represented by ``a`` to ``z`` (or ``A`` to ``Z``). The default *base* is " -"10. The allowed bases are 0 and 2--36. Base-2, -8, and -16 strings can be optionally prefixed with ``0b``/``0B``, ``0o``/" -"``0O``, or ``0x``/``0X``, as with integer literals in code. For base 0, the string is interpreted in a similar way to " -"an :ref:`integer literal in code `, in that the actual base is 2, 8, 10, or 16 as determined by the prefix. Base " -"0 also disallows leading zeros: ``int('010', 0)`` is not legal, while ``int('010')`` and ``int('010', 8)`` are." -msgstr "" -"یک رشتهٔ عدد صحیح در مبنای n شامل رقم‌هایی است که هر یک مقداری بین 0 تا n-1 را نمایش می‌دهند. مقادیر 0 تا 9 را می‌توان با هر " -"رقم ده‌دهی یونیکد نمایش داد. مقادیر 10 تا 35 را می‌توان با نویسه‌های ``a`` تا ``z`` (یا ``A`` تا ``Z``) نمایش داد. مقدار " -"پیش‌فرض *base* برابر 10 است. مبناهای مجاز عبارت‌اند از 0 و 2 تا 36. رشته‌های مبنای 2، 8 و 16 می‌توانند، همانند ثابت‌های عدد صحیح " -"در کد، به‌ترتیب با پیشوندهای ``0b``/``0B``، ``0o``/``0O`` یا ``0x``/``0X`` آغاز شوند. برای مبنای 0، رشته مشابه یک :ref:`ثابت " -"عدد صحیح در کد ` تفسیر می‌شود؛ یعنی مبنای واقعی بر اساس پیشوند، یکی از 2، 8، 10 یا 16 خواهد بود. همچنین در مبنای 0 " -"استفاده از صفرهای ابتدایی مجاز نیست؛ بنابراین ``int('010', 0)`` معتبر نیست، در حالی که ``int('010')`` و ``int('010', 8)`` " -"معتبر هستند." - -#: ../../library/functions.rst:1051 msgid "The integer type is described in :ref:`typesnumeric`." msgstr "نوع عدد صحیح (integer) در :ref:`typesnumeric` توضیح داده شده است." -#: ../../library/functions.rst:1053 -msgid "" -"If *base* is not an instance of :class:`int` and the *base* object has a :meth:`base.__index__ ` method, " -"that method is called to obtain an integer for the base. Previous versions used :meth:`base.__int__ ` " -"instead of :meth:`base.__index__ `." -msgstr "" -"اگر *base* نمونه‌ای از :class:`int` نباشد و شیء *base* متد :meth:`base.__index__ ` را تعریف کرده باشد، آن " -"متد برای به‌دست آوردن یک عدد صحیح به‌عنوان مبنا فراخوانی می‌شود. در نسخه‌های پیشین، به‌جای :meth:`base.__index__ " -"` از :meth:`base.__int__ ` استفاده می‌شد." +msgid "If *base* is not an instance of :class:`int` and the *base* object has a :meth:`base.__index__ ` method, that method is called to obtain an integer for the base. Previous versions used :meth:`base.__int__ ` instead of :meth:`base.__index__ `." +msgstr "اگر *base* نمونه‌ای از :class:`int` نباشد و شیء *base* متد :meth:`base.__index__ ` را تعریف کرده باشد، آن متد برای به‌دست آوردن یک عدد صحیح به‌عنوان مبنا فراخوانی می‌شود. در نسخه‌های پیشین، به‌جای :meth:`base.__index__ ` از :meth:`base.__int__ ` استفاده می‌شد." -#: ../../library/functions.rst:1063 msgid "The first parameter is now positional-only." msgstr "پارامتر اول اکنون فقط به‌صورت فقط‌جایگاهی قابل ارسال است." -#: ../../library/functions.rst:1066 msgid "Falls back to :meth:`~object.__index__` if :meth:`~object.__int__` is not defined." msgstr "اگر :meth:`~object.__int__` تعریف نشده باشد، به :meth:`~object.__index__` بازمی‌گردد." -#: ../../library/functions.rst:1069 -msgid "" -":class:`int` string inputs and string representations can be limited to help avoid denial of service attacks. " -"A :exc:`ValueError` is raised when the limit is exceeded while converting a string to an :class:`int` or when converting " -"an :class:`int` into a string would exceed the limit. See the :ref:`integer string conversion length limitation " -"` documentation." -msgstr "" -"ورودی‌های رشته‌ای :class:`int` و نمایش‌های رشته‌ای آن را می‌توان برای کمک به جلوگیری از حملات منع سرویس (Denial of Service) " -"محدود کرد. اگر هنگام تبدیل یک رشته به :class:`int` از این محدودیت فراتر رود، یا تبدیل یک :class:`int` به رشته باعث عبور از " -"این محدودیت شود، استثنای :exc:`ValueError` پرتاب می‌شود. برای اطلاعات بیشتر، مستندات :ref:`محدودیت طول تبدیل رشته‌ای اعداد " -"صحیح ` را ببینید." +msgid ":class:`int` string inputs and string representations can be limited to help avoid denial of service attacks. A :exc:`ValueError` is raised when the limit is exceeded while converting a string to an :class:`int` or when converting an :class:`int` into a string would exceed the limit. See the :ref:`integer string conversion length limitation ` documentation." +msgstr "ورودی‌های رشته‌ای :class:`int` و نمایش‌های رشته‌ای آن را می‌توان برای کمک به جلوگیری از حملات منع سرویس (Denial of Service) محدود کرد. اگر هنگام تبدیل یک رشته به :class:`int` از این محدودیت فراتر رود، یا تبدیل یک :class:`int` به رشته باعث عبور از این محدودیت شود، استثنای :exc:`ValueError` پرتاب می‌شود. برای اطلاعات بیشتر، مستندات :ref:`محدودیت طول تبدیل رشته‌ای اعداد صحیح ` را ببینید." -#: ../../library/functions.rst:1077 msgid ":func:`int` no longer delegates to the :meth:`~object.__trunc__` method." msgstr ":func:`int` دیگر فراخوانی را به متد :meth:`~object.__trunc__` واگذار نمی‌کند." -#: ../../library/functions.rst:1082 -msgid "" -"Return ``True`` if the *object* argument is an instance of the *classinfo* argument, or of a (direct, indirect, " -"or :term:`virtual `) subclass thereof. If *object* is not an object of the given type, the function " -"always returns ``False``. If *classinfo* is a tuple of type objects (or recursively, other such tuples) or a :ref:`types-" -"union` of multiple types, return ``True`` if *object* is an instance of any of the types. If *classinfo* is not a type or " -"tuple of types and such tuples, a :exc:`TypeError` exception is raised. :exc:`TypeError` may not be raised for an invalid " -"type if an earlier check succeeds." -msgstr "" -"اگر آرگومان *object* نمونه‌ای از *classinfo* یا از یکی از زیرکلاس‌های آن (مستقیم، غیرمستقیم یا :term:`مجازی `) باشد، مقدار ``True`` را برمی‌گرداند. اگر *object* از نوع داده‌شده نباشد، این تابع همیشه ``False`` برمی‌گرداند. اگر " -"*classinfo* یک تاپل از نوع‌ها (یا به‌صورت بازگشتی، تاپل‌هایی از این نوع) یا یک :ref:`types-union` از چندین نوع باشد، در صورتی " -"که *object* نمونه‌ای از هر یک از آن نوع‌ها باشد، مقدار ``True`` برگردانده می‌شود. اگر *classinfo* یک نوع، یا تاپلی از نوع‌ها و " -"تاپل‌های مشابه نباشد، استثنای :exc:`TypeError` پرتاب می‌شود. با این حال، اگر یک بررسیِ زودتر با موفقیت انجام شود، ممکن است " -"برای یک نوع نامعتبر استثنای :exc:`TypeError` پرتاب نشود." - -#: ../../library/functions.rst:1093 ../../library/functions.rst:1107 +msgid "Return ``True`` if the *object* argument is an instance of the *classinfo* argument, or of a (direct, indirect, or :term:`virtual `) subclass thereof. If *object* is not an object of the given type, the function always returns ``False``. If *classinfo* is a tuple of type objects (or recursively, other such tuples) or a :ref:`types-union` of multiple types, return ``True`` if *object* is an instance of any of the types. If *classinfo* is not a type or tuple of types and such tuples, a :exc:`TypeError` exception is raised. :exc:`TypeError` may not be raised for an invalid type if an earlier check succeeds." +msgstr "اگر آرگومان *object* نمونه‌ای از *classinfo* یا از یکی از زیرکلاس‌های آن (مستقیم، غیرمستقیم یا :term:`مجازی `) باشد، مقدار ``True`` را برمی‌گرداند. اگر *object* از نوع داده‌شده نباشد، این تابع همیشه ``False`` برمی‌گرداند. اگر *classinfo* یک تاپل از نوع‌ها (یا به‌صورت بازگشتی، تاپل‌هایی از این نوع) یا یک :ref:`types-union` از چندین نوع باشد، در صورتی که *object* نمونه‌ای از هر یک از آن نوع‌ها باشد، مقدار ``True`` برگردانده می‌شود. اگر *classinfo* یک نوع، یا تاپلی از نوع‌ها و تاپل‌های مشابه نباشد، استثنای :exc:`TypeError` پرتاب می‌شود. با این حال، اگر یک بررسیِ زودتر با موفقیت انجام شود، ممکن است برای یک نوع نامعتبر استثنای :exc:`TypeError` پرتاب نشود." + msgid "*classinfo* can be a :ref:`types-union`." msgstr "*classinfo* می‌تواند یک :ref:`types-union` باشد." -#: ../../library/functions.rst:1099 -msgid "" -"Return ``True`` if *class* is a subclass (direct, indirect, or :term:`virtual `) of *classinfo*. A " -"class is considered a subclass of itself. *classinfo* may be a tuple of class objects (or recursively, other such tuples) " -"or a :ref:`types-union`, in which case return ``True`` if *class* is a subclass of any entry in *classinfo*. In any other " -"case, a :exc:`TypeError` exception is raised." -msgstr "" -"اگر *class* زیرکلاس (مستقیم، غیرمستقیم یا :term:`مجازی `) *classinfo* باشد، مقدار ``True`` را " -"برمی‌گرداند. هر کلاس، زیرکلاس خودش نیز در نظر گرفته می‌شود. *classinfo* می‌تواند یک تاپل از اشیای کلاس (یا به‌صورت بازگشتی، " -"تاپل‌هایی از این نوع) یا یک :ref:`types-union` باشد؛ در این صورت، اگر *class* زیرکلاس هر یک از اعضای *classinfo* باشد، مقدار " -"``True`` برگردانده می‌شود. در هر حالت دیگر، استثنای :exc:`TypeError` پرتاب می‌شود." +msgid "Return ``True`` if *class* is a subclass (direct, indirect, or :term:`virtual `) of *classinfo*. A class is considered a subclass of itself. *classinfo* may be a tuple of class objects (or recursively, other such tuples) or a :ref:`types-union`, in which case return ``True`` if *class* is a subclass of any entry in *classinfo*. In any other case, a :exc:`TypeError` exception is raised." +msgstr "اگر *class* زیرکلاس (مستقیم، غیرمستقیم یا :term:`مجازی `) *classinfo* باشد، مقدار ``True`` را برمی‌گرداند. هر کلاس، زیرکلاس خودش نیز در نظر گرفته می‌شود. *classinfo* می‌تواند یک تاپل از اشیای کلاس (یا به‌صورت بازگشتی، تاپل‌هایی از این نوع) یا یک :ref:`types-union` باشد؛ در این صورت، اگر *class* زیرکلاس هر یک از اعضای *classinfo* باشد، مقدار ``True`` برگردانده می‌شود. در هر حالت دیگر، استثنای :exc:`TypeError` پرتاب می‌شود." + +msgid "Return an :term:`iterator` object. The first argument is interpreted very differently depending on the presence of the second argument. Without a second argument, the single argument must be a collection object which supports the :term:`iterable` protocol (the :meth:`~object.__iter__` method), or it must support the sequence protocol (the :meth:`~object.__getitem__` method with integer arguments starting at ``0``). If it does not support either of those protocols, :exc:`TypeError` is raised. If the second argument, *sentinel*, is given, then the first argument must be a callable object. The iterator created in this case will call *callable* with no arguments for each call to its :meth:`~iterator.__next__` method; if the value returned is equal to *sentinel*, :exc:`StopIteration` will be raised, otherwise the value will be returned." +msgstr "یک شیء :term:`تکرارگر ` را برمی‌گرداند. تفسیر آرگومان اول به وجود یا عدم وجود آرگومان دوم بستگی دارد. اگر آرگومان دومی وجود نداشته باشد، آرگومان اول باید یک شیء مجموعه باشد که از پروتکل :term:`تکرارپذیر ` (متد :meth:`~object.__iter__`) پشتیبانی کند، یا از پروتکل دنباله (متد :meth:`~object.__getitem__` با آرگومان‌های صحیح که از ``0`` شروع می‌شوند) پشتیبانی کند. اگر از هیچ‌یک از این پروتکل‌ها پشتیبانی نکند، استثنای :exc:`TypeError` پرتاب می‌شود. اگر آرگومان دوم، یعنی *sentinel*، ارائه شود، آرگومان اول باید یک شیء فراخوانی‌پذیر باشد. تکرارگر ایجادشده در این حالت، در هر فراخوانی متد :meth:`~iterator.__next__`، *callable* را بدون آرگومان فراخوانی می‌کند؛ اگر مقدار بازگردانده‌شده برابر *sentinel* باشد، استثنای :exc:`StopIteration` پرتاب می‌شود؛ در غیر این صورت، همان مقدار برگردانده می‌شود." -#: ../../library/functions.rst:1114 -msgid "" -"Return an :term:`iterator` object. The first argument is interpreted very differently depending on the presence of the " -"second argument. Without a second argument, the single argument must be a collection object which supports " -"the :term:`iterable` protocol (the :meth:`~object.__iter__` method), or it must support the sequence protocol " -"(the :meth:`~object.__getitem__` method with integer arguments starting at ``0``). If it does not support either of those " -"protocols, :exc:`TypeError` is raised. If the second argument, *sentinel*, is given, then the first argument must be a " -"callable object. The iterator created in this case will call *callable* with no arguments for each call to " -"its :meth:`~iterator.__next__` method; if the value returned is equal to *sentinel*, :exc:`StopIteration` will be raised, " -"otherwise the value will be returned." -msgstr "" -"یک شیء :term:`تکرارگر ` را برمی‌گرداند. تفسیر آرگومان اول به وجود یا عدم وجود آرگومان دوم بستگی دارد. اگر آرگومان " -"دومی وجود نداشته باشد، آرگومان اول باید یک شیء مجموعه باشد که از پروتکل :term:`تکرارپذیر ` " -"(متد :meth:`~object.__iter__`) پشتیبانی کند، یا از پروتکل دنباله (متد :meth:`~object.__getitem__` با آرگومان‌های صحیح که از " -"``0`` شروع می‌شوند) پشتیبانی کند. اگر از هیچ‌یک از این پروتکل‌ها پشتیبانی نکند، استثنای :exc:`TypeError` پرتاب می‌شود. اگر " -"آرگومان دوم، یعنی *sentinel*، ارائه شود، آرگومان اول باید یک شیء فراخوانی‌پذیر باشد. تکرارگر ایجادشده در این حالت، در هر " -"فراخوانی متد :meth:`~iterator.__next__`، *callable* را بدون آرگومان فراخوانی می‌کند؛ اگر مقدار بازگردانده‌شده برابر " -"*sentinel* باشد، استثنای :exc:`StopIteration` پرتاب می‌شود؛ در غیر این صورت، همان مقدار برگردانده می‌شود." - -#: ../../library/functions.rst:1128 msgid "See also :ref:`typeiter`." msgstr "همچنین به :ref:`typeiter` مراجعه کنید." -#: ../../library/functions.rst:1130 -msgid "" -"One useful application of the second form of :func:`iter` is to build a block-reader. For example, reading fixed-width " -"blocks from a binary database file until the end of file is reached::" -msgstr "" -"یکی از کاربردهای مفید شکل دوم :func:`iter`، ساختن یک خوانندهٔ بلوکی (block reader) است. برای مثال، خواندن بلوک‌هایی با اندازهٔ " -"ثابت از یک پروندهٔ پایگاه دادهٔ دودویی تا رسیدن به انتهای پرونده::" +msgid "One useful application of the second form of :func:`iter` is to build a block-reader. For example, reading fixed-width blocks from a binary database file until the end of file is reached::" +msgstr "یکی از کاربردهای مفید شکل دوم :func:`iter`، ساختن یک خوانندهٔ بلوکی (block reader) است. برای مثال، خواندن بلوک‌هایی با اندازهٔ ثابت از یک پروندهٔ پایگاه دادهٔ دودویی تا رسیدن به انتهای پرونده::" -#: ../../library/functions.rst:1134 msgid "" "from functools import partial\n" "with open('mydata.db', 'rb') as f:\n" @@ -1796,530 +954,219 @@ msgstr "" " for block in iter(partial(f.read, 64), b''):\n" " process_block(block)" -#: ../../library/functions.rst:1142 -msgid "" -"Return the length (the number of items) of an object. The argument may be a sequence (such as a string, bytes, tuple, " -"list, or range) or a collection (such as a dictionary, set, or frozen set)." -msgstr "" -"طول یک شیء (تعداد عناصر آن) را برمی‌گرداند. آرگومان می‌تواند یک دنباله (مانند رشته، bytes، تاپل، فهرست یا range) یا یک مجموعه " -"(مانند دیکشنری، set یا frozenset) باشد." +msgid "Return the length (the number of items) of an object. The argument may be a sequence (such as a string, bytes, tuple, list, or range) or a collection (such as a dictionary, set, or frozen set)." +msgstr "طول یک شیء (تعداد عناصر آن) را برمی‌گرداند. آرگومان می‌تواند یک دنباله (مانند رشته، bytes، تاپل، فهرست یا range) یا یک مجموعه (مانند دیکشنری، set یا frozenset) باشد." -#: ../../library/functions.rst:1148 -msgid "" -"``len`` raises :exc:`OverflowError` on lengths larger than :data:`sys.maxsize`, such as :class:`range(2 ** 100) `." -msgstr "" -"``len`` برای طول‌هایی بزرگ‌تر از :data:`sys.maxsize`، مانند :class:`range(2 ** 100) `، استثنای :exc:`OverflowError` " -"پرتاب می‌کند." +msgid "``len`` raises :exc:`OverflowError` on lengths larger than :data:`sys.maxsize`, such as :class:`range(2 ** 100) `." +msgstr "``len`` برای طول‌هایی بزرگ‌تر از :data:`sys.maxsize`، مانند :class:`range(2 ** 100) `، استثنای :exc:`OverflowError` پرتاب می‌کند." -#: ../../library/functions.rst:1156 -msgid "" -"Rather than being a function, :class:`list` is actually a mutable sequence type, as documented in :ref:`typesseq-list` " -"and :ref:`typesseq`." -msgstr "" -":class:`list` در واقع یک نوع دنبالهٔ تغییرپذیر است، نه یک تابع؛ همان‌گونه که در :ref:`typesseq-list` و :ref:`typesseq` مستند " -"شده است." +msgid "Rather than being a function, :class:`list` is actually a mutable sequence type, as documented in :ref:`typesseq-list` and :ref:`typesseq`." +msgstr ":class:`list` در واقع یک نوع دنبالهٔ تغییرپذیر است، نه یک تابع؛ همان‌گونه که در :ref:`typesseq-list` و :ref:`typesseq` مستند شده است." -#: ../../library/functions.rst:1162 -msgid "" -"Return a mapping object representing the current local symbol table, with variable names as the keys, and their currently " -"bound references as the values." -msgstr "" -"یک شیء نگاشتی را برمی‌گرداند که جدول نمادهای محلی فعلی را نمایش می‌دهد؛ در آن، نام متغیرها کلیدها و ارجاع‌های فعلی آن‌ها مقادیر " -"هستند." +msgid "Return a mapping object representing the current local symbol table, with variable names as the keys, and their currently bound references as the values." +msgstr "یک شیء نگاشتی را برمی‌گرداند که جدول نمادهای محلی فعلی را نمایش می‌دهد؛ در آن، نام متغیرها کلیدها و ارجاع‌های فعلی آن‌ها مقادیر هستند." -#: ../../library/functions.rst:1166 -msgid "" -"At module scope, as well as when using :func:`exec` or :func:`eval` with a single namespace, this function returns the same " -"namespace as :func:`globals`." -msgstr "" -"در محدوده‌ی ماژول، و همچنین هنگام استفاده از :func:`exec` یا :func:`eval` با یک فضای نام واحد، این تابع همان فضای نامی را " -"برمی‌گرداند که :func:`globals` برمی‌گرداند." +msgid "At module scope, as well as when using :func:`exec` or :func:`eval` with a single namespace, this function returns the same namespace as :func:`globals`." +msgstr "در محدوده‌ی ماژول، و همچنین هنگام استفاده از :func:`exec` یا :func:`eval` با یک فضای نام واحد، این تابع همان فضای نامی را برمی‌گرداند که :func:`globals` برمی‌گرداند." -#: ../../library/functions.rst:1170 msgid "At class scope, it returns the namespace that will be passed to the metaclass constructor." msgstr "در محدوده‌ی کلاس، این تابع فضای نامی را برمی‌گرداند که به سازندهٔ فراداده ارسال خواهد شد." -#: ../../library/functions.rst:1173 -msgid "" -"When using ``exec()`` or ``eval()`` with separate local and global arguments, it returns the local namespace passed in to " -"the function call." -msgstr "" -"هنگام استفاده از ``exec()`` یا ``eval()`` با آرگومان‌های محلی و سراسریِ جداگانه، این تابع فضای نام محلیِ ارسال‌شده به فراخوانی " -"تابع را بازمی‌گرداند." +msgid "When using ``exec()`` or ``eval()`` with separate local and global arguments, it returns the local namespace passed in to the function call." +msgstr "هنگام استفاده از ``exec()`` یا ``eval()`` با آرگومان‌های محلی و سراسریِ جداگانه، این تابع فضای نام محلیِ ارسال‌شده به فراخوانی تابع را بازمی‌گرداند." -#: ../../library/functions.rst:1176 -msgid "" -"In all of the above cases, each call to ``locals()`` in a given frame of execution will return the *same* mapping object. " -"Changes made through the mapping object returned from ``locals()`` will be visible as assigned, reassigned, or deleted " -"local variables, and assigning, reassigning, or deleting local variables will immediately affect the contents of the " -"returned mapping object." -msgstr "" -"در همهٔ حالت‌های بالا، هر فراخوانی ``locals()`` در یک قاب (frame) مشخص از اجرا، *همان* شیء نگاشتی را برمی‌گرداند. تغییراتی که " -"از طریق شیء نگاشتیِ بازگردانده‌شده توسط ``locals()`` اعمال شوند، به‌صورت انتساب، انتساب مجدد یا حذف متغیرهای محلی قابل مشاهده " -"خواهند بود، و انتساب، انتساب مجدد یا حذف متغیرهای محلی نیز بلافاصله محتوای شیء نگاشتیِ بازگردانده‌شده را تغییر می‌دهد." +msgid "In all of the above cases, each call to ``locals()`` in a given frame of execution will return the *same* mapping object. Changes made through the mapping object returned from ``locals()`` will be visible as assigned, reassigned, or deleted local variables, and assigning, reassigning, or deleting local variables will immediately affect the contents of the returned mapping object." +msgstr "در همهٔ حالت‌های بالا، هر فراخوانی ``locals()`` در یک قاب (frame) مشخص از اجرا، *همان* شیء نگاشتی را برمی‌گرداند. تغییراتی که از طریق شیء نگاشتیِ بازگردانده‌شده توسط ``locals()`` اعمال شوند، به‌صورت انتساب، انتساب مجدد یا حذف متغیرهای محلی قابل مشاهده خواهند بود، و انتساب، انتساب مجدد یا حذف متغیرهای محلی نیز بلافاصله محتوای شیء نگاشتیِ بازگردانده‌شده را تغییر می‌دهد." -#: ../../library/functions.rst:1183 -msgid "" -"In an :term:`optimized scope` (including functions, generators, and coroutines), each call to ``locals()`` instead returns " -"a fresh dictionary containing the current bindings of the function's local variables and any nonlocal cell references. In " -"this case, name binding changes made via the returned dict are *not* written back to the corresponding local variables or " -"nonlocal cell references, and assigning, reassigning, or deleting local variables and nonlocal cell references does *not* " -"affect the contents of previously returned dictionaries." -msgstr "" -"در یک :term:`محدوده‌ی بهینه‌شده ` (از جمله توابع، تولیدگرها و هم‌روال‌ها)، هر فراخوانی ``locals()`` یک دیکشنری " -"جدید برمی‌گرداند که شامل انتساب‌های فعلی متغیرهای محلی تابع و هرگونه ارجاع به سلول‌های غیرمحلی است. در این حالت، تغییرات " -"انتساب نام که از طریق دیکشنری بازگردانده‌شده انجام شوند، به متغیرهای محلی یا ارجاع‌های سلول‌های غیرمحلی متناظر بازنویسی " -"*نمی‌شوند*، و انتساب، انتساب مجدد یا حذف متغیرهای محلی و ارجاع‌های سلول‌های غیرمحلی نیز بر محتوای دیکشنری‌های بازگردانده‌شدهٔ " -"قبلی تأثیری *ندارد*." +msgid "In an :term:`optimized scope` (including functions, generators, and coroutines), each call to ``locals()`` instead returns a fresh dictionary containing the current bindings of the function's local variables and any nonlocal cell references. In this case, name binding changes made via the returned dict are *not* written back to the corresponding local variables or nonlocal cell references, and assigning, reassigning, or deleting local variables and nonlocal cell references does *not* affect the contents of previously returned dictionaries." +msgstr "در یک :term:`محدوده‌ی بهینه‌شده ` (از جمله توابع، تولیدگرها و هم‌روال‌ها)، هر فراخوانی ``locals()`` یک دیکشنری جدید برمی‌گرداند که شامل انتساب‌های فعلی متغیرهای محلی تابع و هرگونه ارجاع به سلول‌های غیرمحلی است. در این حالت، تغییرات انتساب نام که از طریق دیکشنری بازگردانده‌شده انجام شوند، به متغیرهای محلی یا ارجاع‌های سلول‌های غیرمحلی متناظر بازنویسی *نمی‌شوند*، و انتساب، انتساب مجدد یا حذف متغیرهای محلی و ارجاع‌های سلول‌های غیرمحلی نیز بر محتوای دیکشنری‌های بازگردانده‌شدهٔ قبلی تأثیری *ندارد*." -#: ../../library/functions.rst:1192 -msgid "" -"Calling ``locals()`` as part of a comprehension in a function, generator, or coroutine is equivalent to calling it in the " -"containing scope, except that the comprehension's initialised iteration variables will be included. In other scopes, it " -"behaves as if the comprehension were running as a nested function." -msgstr "" -"فراخوانی ``locals()`` درون یک comprehension در یک تابع، تولیدگر یا هم‌روال، معادل فراخوانی آن در محدوده‌ی دربرگیرنده است، با " -"این تفاوت که متغیرهای پیمایشِ مقداردهی‌شدهٔ comprehension نیز در آن گنجانده می‌شوند. در سایر محدوده‌ها رفتار آن به‌گونه‌ای است که " -"گویی comprehension به‌صورت یک تابع تو‌در‌تو اجرا می‌شود." +msgid "Calling ``locals()`` as part of a comprehension in a function, generator, or coroutine is equivalent to calling it in the containing scope, except that the comprehension's initialised iteration variables will be included. In other scopes, it behaves as if the comprehension were running as a nested function." +msgstr "فراخوانی ``locals()`` درون یک comprehension در یک تابع، تولیدگر یا هم‌روال، معادل فراخوانی آن در محدوده‌ی دربرگیرنده است، با این تفاوت که متغیرهای پیمایشِ مقداردهی‌شدهٔ comprehension نیز در آن گنجانده می‌شوند. در سایر محدوده‌ها رفتار آن به‌گونه‌ای است که گویی comprehension به‌صورت یک تابع تو‌در‌تو اجرا می‌شود." -#: ../../library/functions.rst:1198 msgid "Calling ``locals()`` as part of a generator expression is equivalent to calling it in a nested generator function." msgstr "فراخوانی ``locals()`` درون یک عبارت تولیدگر معادل فراخوانی آن در یک تابع تولیدگر تو‌در‌تو است." -#: ../../library/functions.rst:1201 msgid "The behaviour of ``locals()`` in a comprehension has been updated as described in :pep:`709`." msgstr "رفتار ``locals()`` در comprehensionها مطابق :pep:`709` به‌روزرسانی شده است." -#: ../../library/functions.rst:1205 -msgid "" -"As part of :pep:`667`, the semantics of mutating the mapping objects returned from this function are now defined. The " -"behavior in :term:`optimized scopes ` is now as described above. Aside from being defined, the behaviour " -"in other scopes remains unchanged from previous versions." -msgstr "" -"به‌عنوان بخشی از :pep:`667`، اکنون معناشناسی تغییر دادن اشیای نگاشتی که این تابع برمی‌گرداند، تعریف شده است. رفتار این تابع " -"در :term:`محدوده‌های بهینه‌شده ` اکنون همان‌گونه است که در بالا توضیح داده شد. به‌جز تعریف رسمی این رفتار، " -"عملکرد آن در سایر محدوده‌ها نسبت به نسخه‌های پیشین تغییری نکرده است." +msgid "As part of :pep:`667`, the semantics of mutating the mapping objects returned from this function are now defined. The behavior in :term:`optimized scopes ` is now as described above. Aside from being defined, the behaviour in other scopes remains unchanged from previous versions." +msgstr "به‌عنوان بخشی از :pep:`667`، اکنون معناشناسی تغییر دادن اشیای نگاشتی که این تابع برمی‌گرداند، تعریف شده است. رفتار این تابع در :term:`محدوده‌های بهینه‌شده ` اکنون همان‌گونه است که در بالا توضیح داده شد. به‌جز تعریف رسمی این رفتار، عملکرد آن در سایر محدوده‌ها نسبت به نسخه‌های پیشین تغییری نکرده است." -#: ../../library/functions.rst:1215 -msgid "" -"Return an iterator that applies *function* to every item of *iterable*, yielding the results. If additional *iterables* " -"arguments are passed, *function* must take that many arguments and is applied to the items from all iterables in parallel. " -"With multiple iterables, the iterator stops when the shortest iterable is exhausted. If *strict* is ``True`` and one of " -"the iterables is exhausted before the others, a :exc:`ValueError` is raised. For cases where the function inputs are " -"already arranged into argument tuples, see :func:`itertools.starmap`." -msgstr "" -"تکرارگری را برمی‌گرداند که *function* را روی هر عنصر *iterable* اعمال کرده و نتایج را تولید می‌کند. اگر آرگومان‌های " -"*iterables* اضافی ارائه شوند، *function* باید به همان تعداد آرگومان بپذیرد و به‌طور هم‌زمان روی عناصر همهٔ تکرارپذیرها اعمال " -"شود. در صورت وجود چند تکرارپذیر، تکرارگر زمانی متوقف می‌شود که کوتاه‌ترین تکرارپذیر به پایان برسد. اگر *strict* برابر " -"``True`` باشد و یکی از تکرارپذیرها زودتر از بقیه به پایان برسد، استثنای :exc:`ValueError` پرتاب می‌شود. در مواردی که " -"ورودی‌های تابع از پیش به‌صورت تاپل‌های آرگومان مرتب شده‌اند، به :func:`itertools.starmap` مراجعه کنید." +msgid "Return an iterator that applies *function* to every item of *iterable*, yielding the results. If additional *iterables* arguments are passed, *function* must take that many arguments and is applied to the items from all iterables in parallel. With multiple iterables, the iterator stops when the shortest iterable is exhausted. If *strict* is ``True`` and one of the iterables is exhausted before the others, a :exc:`ValueError` is raised. For cases where the function inputs are already arranged into argument tuples, see :func:`itertools.starmap`." +msgstr "تکرارگری را برمی‌گرداند که *function* را روی هر عنصر *iterable* اعمال کرده و نتایج را تولید می‌کند. اگر آرگومان‌های *iterables* اضافی ارائه شوند، *function* باید به همان تعداد آرگومان بپذیرد و به‌طور هم‌زمان روی عناصر همهٔ تکرارپذیرها اعمال شود. در صورت وجود چند تکرارپذیر، تکرارگر زمانی متوقف می‌شود که کوتاه‌ترین تکرارپذیر به پایان برسد. اگر *strict* برابر ``True`` باشد و یکی از تکرارپذیرها زودتر از بقیه به پایان برسد، استثنای :exc:`ValueError` پرتاب می‌شود. در مواردی که ورودی‌های تابع از پیش به‌صورت تاپل‌های آرگومان مرتب شده‌اند، به :func:`itertools.starmap` مراجعه کنید." -#: ../../library/functions.rst:1224 msgid "Added the *strict* parameter." msgstr "پارامتر *strict* اضافه شد." -#: ../../library/functions.rst:1232 msgid "Return the largest item in an iterable or the largest of two or more arguments." msgstr "بزرگ‌ترین عنصر یک تکرارپذیر، یا بزرگ‌ترین مقدار از میان دو یا چند آرگومان را برمی‌گرداند." -#: ../../library/functions.rst:1235 -msgid "" -"If one positional argument is provided, it should be an :term:`iterable`. The largest item in the iterable is returned. If " -"two or more positional arguments are provided, the largest of the positional arguments is returned." -msgstr "" -"اگر یک آرگومان مکانی ارائه شود، باید یک :term:`تکرارپذیر ` باشد. در این صورت، بزرگ‌ترین عنصر آن تکرارپذیر " -"برگردانده می‌شود. اگر دو یا چند آرگومان مکانی ارائه شوند، بزرگ‌ترین آرگومان مکانی برگردانده می‌شود." +msgid "If one positional argument is provided, it should be an :term:`iterable`. The largest item in the iterable is returned. If two or more positional arguments are provided, the largest of the positional arguments is returned." +msgstr "اگر یک آرگومان مکانی ارائه شود، باید یک :term:`تکرارپذیر ` باشد. در این صورت، بزرگ‌ترین عنصر آن تکرارپذیر برگردانده می‌شود. اگر دو یا چند آرگومان مکانی ارائه شوند، بزرگ‌ترین آرگومان مکانی برگردانده می‌شود." -#: ../../library/functions.rst:1240 ../../library/functions.rst:1278 -msgid "" -"There are two optional keyword-only arguments. The *key* argument specifies a one-argument ordering function like that used " -"for :meth:`list.sort`. The *default* argument specifies an object to return if the provided iterable is empty. If the " -"iterable is empty and *default* is not provided, a :exc:`ValueError` is raised." -msgstr "" -"دو آرگومان اختیاریِ فقط-کلیدواژه‌ای (keyword-only) وجود دارد. آرگومان *key* یک تابع مرتب‌سازی تک‌آرگومانی، مشابه آنچه " -"در :meth:`list.sort` استفاده می‌شود، مشخص می‌کند. آرگومان *default* شی‌ءای را مشخص می‌کند که در صورت خالی بودن تکرارپذیر " -"بازگردانده شود. اگر تکرارپذیر خالی باشد و *default* ارائه نشده باشد، استثنای :exc:`ValueError` پرتاب می‌شود." +msgid "There are two optional keyword-only arguments. The *key* argument specifies a one-argument ordering function like that used for :meth:`list.sort`. The *default* argument specifies an object to return if the provided iterable is empty. If the iterable is empty and *default* is not provided, a :exc:`ValueError` is raised." +msgstr "دو آرگومان اختیاریِ فقط-کلیدواژه‌ای (keyword-only) وجود دارد. آرگومان *key* یک تابع مرتب‌سازی تک‌آرگومانی، مشابه آنچه در :meth:`list.sort` استفاده می‌شود، مشخص می‌کند. آرگومان *default* شی‌ءای را مشخص می‌کند که در صورت خالی بودن تکرارپذیر بازگردانده شود. اگر تکرارپذیر خالی باشد و *default* ارائه نشده باشد، استثنای :exc:`ValueError` پرتاب می‌شود." -#: ../../library/functions.rst:1246 -msgid "" -"If multiple items are maximal, the function returns the first one encountered. This is consistent with other sort-" -"stability preserving tools such as ``sorted(iterable, key=keyfunc, reverse=True)[0]`` and ``heapq.nlargest(1, iterable, " -"key=keyfunc)``." -msgstr "" -"اگر چندین عنصر دارای بیشترین مقدار باشند، تابع نخستین موردی را که با آن برخورد کند برمی‌گرداند. این رفتار با سایر ابزارهایی " -"که پایداری مرتب‌سازی را حفظ می‌کنند، مانند ``sorted(iterable, key=keyfunc, reverse=True)[0]`` و ``heapq.nlargest(1, iterable, " -"key=keyfunc)``، سازگار است." +msgid "If multiple items are maximal, the function returns the first one encountered. This is consistent with other sort-stability preserving tools such as ``sorted(iterable, key=keyfunc, reverse=True)[0]`` and ``heapq.nlargest(1, iterable, key=keyfunc)``." +msgstr "اگر چندین عنصر دارای بیشترین مقدار باشند، تابع نخستین موردی را که با آن برخورد کند برمی‌گرداند. این رفتار با سایر ابزارهایی که پایداری مرتب‌سازی را حفظ می‌کنند، مانند ``sorted(iterable, key=keyfunc, reverse=True)[0]`` و ``heapq.nlargest(1, iterable, key=keyfunc)``، سازگار است." -#: ../../library/functions.rst:1251 ../../library/functions.rst:1289 msgid "Added the *default* keyword-only parameter." msgstr "پارامتر فقط-کلیدواژهٔ *default* اضافه شد." -#: ../../library/functions.rst:1254 ../../library/functions.rst:1292 msgid "The *key* can be ``None``." msgstr "*key* می‌تواند ``None`` باشد." -#: ../../library/functions.rst:1262 msgid "Return a \"memory view\" object created from the given argument. See :ref:`typememoryview` for more information." -msgstr "" -"یک شیء «memory view» ایجادشده از آرگومان داده‌شده را برمی‌گرداند. برای اطلاعات بیشتر، به :ref:`typememoryview` مراجعه کنید." +msgstr "یک شیء «memory view» ایجادشده از آرگومان داده‌شده را برمی‌گرداند. برای اطلاعات بیشتر، به :ref:`typememoryview` مراجعه کنید." -#: ../../library/functions.rst:1270 msgid "Return the smallest item in an iterable or the smallest of two or more arguments." msgstr "کوچک‌ترین عنصر یک تکرارپذیر، یا کوچک‌ترین مقدار از میان دو یا چند آرگومان را برمی‌گرداند." -#: ../../library/functions.rst:1273 -msgid "" -"If one positional argument is provided, it should be an :term:`iterable`. The smallest item in the iterable is returned. " -"If two or more positional arguments are provided, the smallest of the positional arguments is returned." -msgstr "" -"اگر یک آرگومان مکانی ارائه شود، باید یک :term:`تکرارپذیر ` باشد. در این صورت، کوچک‌ترین عنصر آن تکرارپذیر " -"برگردانده می‌شود. اگر دو یا چند آرگومان مکانی ارائه شوند، کوچک‌ترین آرگومان مکانی برگردانده می‌شود." +msgid "If one positional argument is provided, it should be an :term:`iterable`. The smallest item in the iterable is returned. If two or more positional arguments are provided, the smallest of the positional arguments is returned." +msgstr "اگر یک آرگومان مکانی ارائه شود، باید یک :term:`تکرارپذیر ` باشد. در این صورت، کوچک‌ترین عنصر آن تکرارپذیر برگردانده می‌شود. اگر دو یا چند آرگومان مکانی ارائه شوند، کوچک‌ترین آرگومان مکانی برگردانده می‌شود." -#: ../../library/functions.rst:1284 -msgid "" -"If multiple items are minimal, the function returns the first one encountered. This is consistent with other sort-" -"stability preserving tools such as ``sorted(iterable, key=keyfunc)[0]`` and ``heapq.nsmallest(1, iterable, key=keyfunc)``." -msgstr "" -"اگر چندین عنصر دارای کمترین مقدار باشند، تابع نخستین موردی را که با آن برخورد کند برمی‌گرداند. این رفتار با سایر ابزارهایی " -"که پایداری مرتب‌سازی را حفظ می‌کنند، مانند ``sorted(iterable, key=keyfunc)[0]`` و ``heapq.nsmallest(1, iterable, " -"key=keyfunc)``، سازگار است." +msgid "If multiple items are minimal, the function returns the first one encountered. This is consistent with other sort-stability preserving tools such as ``sorted(iterable, key=keyfunc)[0]`` and ``heapq.nsmallest(1, iterable, key=keyfunc)``." +msgstr "اگر چندین عنصر دارای کمترین مقدار باشند، تابع نخستین موردی را که با آن برخورد کند برمی‌گرداند. این رفتار با سایر ابزارهایی که پایداری مرتب‌سازی را حفظ می‌کنند، مانند ``sorted(iterable, key=keyfunc)[0]`` و ``heapq.nsmallest(1, iterable, key=keyfunc)``، سازگار است." -#: ../../library/functions.rst:1299 -msgid "" -"Retrieve the next item from the :term:`iterator` by calling its :meth:`~iterator.__next__` method. If *default* is given, " -"it is returned if the iterator is exhausted, otherwise :exc:`StopIteration` is raised." -msgstr "" -"با فراخوانی متد :meth:`~iterator.__next__`، عنصر بعدی را از :term:`تکرارگر ` دریافت می‌کند. اگر *default* مشخص شده " -"باشد، در صورت پایان یافتن تکرارگر همان مقدار برگردانده می‌شود؛ در غیر این صورت، استثنای :exc:`StopIteration` پرتاب می‌شود." +msgid "Retrieve the next item from the :term:`iterator` by calling its :meth:`~iterator.__next__` method. If *default* is given, it is returned if the iterator is exhausted, otherwise :exc:`StopIteration` is raised." +msgstr "با فراخوانی متد :meth:`~iterator.__next__`، عنصر بعدی را از :term:`تکرارگر ` دریافت می‌کند. اگر *default* مشخص شده باشد، در صورت پایان یافتن تکرارگر همان مقدار برگردانده می‌شود؛ در غیر این صورت، استثنای :exc:`StopIteration` پرتاب می‌شود." -#: ../../library/functions.rst:1306 -msgid "" -"This is the ultimate base class of all other classes. It has methods that are common to all instances of Python classes. " -"When the constructor is called, it returns a new featureless object. The constructor does not accept any arguments." -msgstr "" -"این، کلاس پایهٔ نهایی همهٔ کلاس‌های دیگر است. این کلاس متدهایی را در اختیار دارد که میان تمام نمونه‌های کلاس‌های پایتون مشترک " -"هستند. هنگام فراخوانی سازندهٔ آن، یک شیء جدید و بدون ویژگی ایجاد می‌شود. این سازنده هیچ آرگومانی را نمی‌پذیرد." +msgid "This is the ultimate base class of all other classes. It has methods that are common to all instances of Python classes. When the constructor is called, it returns a new featureless object. The constructor does not accept any arguments." +msgstr "این، کلاس پایهٔ نهایی همهٔ کلاس‌های دیگر است. این کلاس متدهایی را در اختیار دارد که میان تمام نمونه‌های کلاس‌های پایتون مشترک هستند. هنگام فراخوانی سازندهٔ آن، یک شیء جدید و بدون ویژگی ایجاد می‌شود. این سازنده هیچ آرگومانی را نمی‌پذیرد." -#: ../../library/functions.rst:1313 -msgid "" -":class:`object` instances do *not* have :attr:`~object.__dict__` attributes, so you can't assign arbitrary attributes to an " -"instance of :class:`object`." -msgstr "" -"نمونه‌های :class:`object` دارای ویژگی :attr:`~object.__dict__` *نیستند*؛ بنابراین نمی‌توانید ویژگی‌های دلخواهی را به یک نمونه " -"از :class:`object` اختصاص دهید." +msgid ":class:`object` instances do *not* have :attr:`~object.__dict__` attributes, so you can't assign arbitrary attributes to an instance of :class:`object`." +msgstr "نمونه‌های :class:`object` دارای ویژگی :attr:`~object.__dict__` *نیستند*؛ بنابراین نمی‌توانید ویژگی‌های دلخواهی را به یک نمونه از :class:`object` اختصاص دهید." -#: ../../library/functions.rst:1320 -msgid "" -"Convert an integer number to an octal string prefixed with \"0o\". The result is a valid Python expression. If *integer* " -"is not a Python :class:`int` object, it has to define an :meth:`~object.__index__` method that returns an integer. For " -"example:" -msgstr "" -"یک عدد صحیح را به یک رشتهٔ هشت‌هشتی با پیشوند «0o» تبدیل کنید. نتیجه یک عبارت معتبر پایتون است. اگر *integer* یک " -"شیء :class:`int` پایتون نباشد، باید متد :meth:`~object.__index__` را تعریف کند که یک عدد صحیح بازمی‌گرداند. برای مثال:" +msgid "Convert an integer number to an octal string prefixed with \"0o\". The result is a valid Python expression. If *integer* is not a Python :class:`int` object, it has to define an :meth:`~object.__index__` method that returns an integer. For example:" +msgstr "یک عدد صحیح را به یک رشتهٔ هشت‌هشتی با پیشوند «0o» تبدیل کنید. نتیجه یک عبارت معتبر پایتون است. اگر *integer* یک شیء :class:`int` پایتون نباشد، باید متد :meth:`~object.__index__` را تعریف کند که یک عدد صحیح بازمی‌گرداند. برای مثال:" -#: ../../library/functions.rst:1330 -msgid "" -"If you want to convert an integer number to an octal string either with the prefix \"0o\" or not, you can use either of the " -"following ways." -msgstr "" -"اگر می‌خواهید یک عدد صحیح را به یک رشتهٔ هشت‌هشتی، با پیشوند «0o» یا بدون آن، تبدیل کنید، می‌توانید از هر یک از روش‌های زیر " -"استفاده کنید." +msgid "If you want to convert an integer number to an octal string either with the prefix \"0o\" or not, you can use either of the following ways." +msgstr "اگر می‌خواهید یک عدد صحیح را به یک رشتهٔ هشت‌هشتی، با پیشوند «0o» یا بدون آن، تبدیل کنید، می‌توانید از هر یک از روش‌های زیر استفاده کنید." -#: ../../library/functions.rst:1347 -msgid "" -"Open *file* and return a corresponding :term:`file object`. If the file cannot be opened, an :exc:`OSError` is raised. " -"See :ref:`tut-files` for more examples of how to use this function." -msgstr "" -"*file* را باز کرده و :term:`شیء پرونده ` متناظر با آن را برمی‌گرداند. اگر پرونده قابل باز شدن نباشد، " -"استثنای :exc:`OSError` پرتاب می‌شود. برای مثال‌های بیشتر دربارهٔ نحوهٔ استفاده از این تابع، به :ref:`tut-files` مراجعه کنید." +msgid "Open *file* and return a corresponding :term:`file object`. If the file cannot be opened, an :exc:`OSError` is raised. See :ref:`tut-files` for more examples of how to use this function." +msgstr "*file* را باز کرده و :term:`شیء پرونده ` متناظر با آن را برمی‌گرداند. اگر پرونده قابل باز شدن نباشد، استثنای :exc:`OSError` پرتاب می‌شود. برای مثال‌های بیشتر دربارهٔ نحوهٔ استفاده از این تابع، به :ref:`tut-files` مراجعه کنید." -#: ../../library/functions.rst:1351 -msgid "" -"*file* is a :term:`path-like object` giving the pathname (absolute or relative to the current working directory) of the " -"file to be opened or an integer file descriptor of the file to be wrapped. (If a file descriptor is given, it is closed " -"when the returned I/O object is closed unless *closefd* is set to ``False``.)" -msgstr "" -"*file* یک :term:`شیء مسیرمانند ` است که مسیر پرونده (مطلق یا نسبی نسبت به پوشهٔ کاری فعلی) را برای باز شدن " -"مشخص می‌کند، یا یک توصیفگر عددی پرونده مربوط به پرونده‌ای است که باید در یک شیء ورودی/خروجی بسته‌بندی شود. (اگر یک توصیفگر " -"پرونده ارائه شود، هنگام بسته شدن شیء ورودی/خروجیِ بازگشتی نیز بسته خواهد شد، مگر اینکه *closefd* برابر ``False`` تنظیم شده " -"باشد.)" +msgid "*file* is a :term:`path-like object` giving the pathname (absolute or relative to the current working directory) of the file to be opened or an integer file descriptor of the file to be wrapped. (If a file descriptor is given, it is closed when the returned I/O object is closed unless *closefd* is set to ``False``.)" +msgstr "*file* یک :term:`شیء مسیرمانند ` است که مسیر پرونده (مطلق یا نسبی نسبت به پوشهٔ کاری فعلی) را برای باز شدن مشخص می‌کند، یا یک توصیفگر عددی پرونده مربوط به پرونده‌ای است که باید در یک شیء ورودی/خروجی بسته‌بندی شود. (اگر یک توصیفگر پرونده ارائه شود، هنگام بسته شدن شیء ورودی/خروجیِ بازگشتی نیز بسته خواهد شد، مگر اینکه *closefd* برابر ``False`` تنظیم شده باشد.)" + +msgid "*mode* is an optional string that specifies the mode in which the file is opened. It defaults to ``'r'`` which means open for reading in text mode. Other common values are ``'w'`` for writing (truncating the file if it already exists), ``'x'`` for exclusive creation, and ``'a'`` for appending (which on *some* Unix systems, means that *all* writes append to the end of the file regardless of the current seek position). In text mode, if *encoding* is not specified the encoding used is platform-dependent: :func:`locale.getencoding` is called to get the current locale encoding. (For reading and writing raw bytes use binary mode and leave *encoding* unspecified.) The available modes are:" +msgstr "*mode* یک رشتهٔ اختیاری است که حالت باز شدن پرونده را مشخص می‌کند. مقدار پیش‌فرض آن ``'r'`` است که به معنای باز کردن پرونده برای خواندن در حالت متنی است. مقادیر رایج دیگر عبارت‌اند از ``'w'`` برای نوشتن (که اگر پرونده از قبل وجود داشته باشد، محتوای آن را حذف می‌کند)، ``'x'`` برای ایجاد انحصاری، و ``'a'`` برای افزودن به انتهای پرونده (که در *برخی* از سیستم‌های یونیکس به این معناست که *تمام* عملیات نوشتن، صرف‌نظر از موقعیت فعلی نشانگر، به انتهای پرونده افزوده می‌شوند). در حالت متنی، اگر *encoding* مشخص نشده باشد، کدگذاری مورد استفاده به سکو بستگی دارد؛ در این حالت، :func:`locale.getencoding` برای دریافت کدگذاری محلی (locale) فعلی فراخوانی می‌شود. (برای خواندن و نوشتن بایت‌های خام، از حالت دودویی استفاده کنید و *encoding* را مشخص نکنید.) حالت‌های موجود عبارت‌اند از:" -#: ../../library/functions.rst:1357 -msgid "" -"*mode* is an optional string that specifies the mode in which the file is opened. It defaults to ``'r'`` which means open " -"for reading in text mode. Other common values are ``'w'`` for writing (truncating the file if it already exists), ``'x'`` " -"for exclusive creation, and ``'a'`` for appending (which on *some* Unix systems, means that *all* writes append to the end " -"of the file regardless of the current seek position). In text mode, if *encoding* is not specified the encoding used is " -"platform-dependent: :func:`locale.getencoding` is called to get the current locale encoding. (For reading and writing raw " -"bytes use binary mode and leave *encoding* unspecified.) The available modes are:" -msgstr "" -"*mode* یک رشتهٔ اختیاری است که حالت باز شدن پرونده را مشخص می‌کند. مقدار پیش‌فرض آن ``'r'`` است که به معنای باز کردن پرونده " -"برای خواندن در حالت متنی است. مقادیر رایج دیگر عبارت‌اند از ``'w'`` برای نوشتن (که اگر پرونده از قبل وجود داشته باشد، محتوای " -"آن را حذف می‌کند)، ``'x'`` برای ایجاد انحصاری، و ``'a'`` برای افزودن به انتهای پرونده (که در *برخی* از سیستم‌های یونیکس به " -"این معناست که *تمام* عملیات نوشتن، صرف‌نظر از موقعیت فعلی نشانگر، به انتهای پرونده افزوده می‌شوند). در حالت متنی، اگر " -"*encoding* مشخص نشده باشد، کدگذاری مورد استفاده به سکو بستگی دارد؛ در این حالت، :func:`locale.getencoding` برای دریافت " -"کدگذاری محلی (locale) فعلی فراخوانی می‌شود. (برای خواندن و نوشتن بایت‌های خام، از حالت دودویی استفاده کنید و *encoding* را " -"مشخص نکنید.) حالت‌های موجود عبارت‌اند از:" - -#: ../../library/functions.rst:1374 msgid "Character" msgstr "نویسه" -#: ../../library/functions.rst:1374 msgid "Meaning" msgstr "به معنی" -#: ../../library/functions.rst:1376 msgid "``'r'``" msgstr "``'r'``" -#: ../../library/functions.rst:1376 msgid "open for reading (default)" msgstr "باز کردن برای خواندن (پیش‌فرض)" -#: ../../library/functions.rst:1377 msgid "``'w'``" msgstr "``'w'``" -#: ../../library/functions.rst:1377 msgid "open for writing, truncating the file first" msgstr "باز کردن برای نوشتن؛ ابتدا محتوای پرونده حذف می‌شود." -#: ../../library/functions.rst:1378 msgid "``'x'``" msgstr "``'x'``" -#: ../../library/functions.rst:1378 msgid "open for exclusive creation, failing if the file already exists" msgstr "باز کردن برای ایجاد انحصاری؛ در صورتی که پرونده از قبل وجود داشته باشد، عملیات شکست می‌خورد" -#: ../../library/functions.rst:1379 msgid "``'a'``" msgstr "``'a'``" -#: ../../library/functions.rst:1379 msgid "open for writing, appending to the end of file if it exists" msgstr "باز کردن برای نوشتن؛ اگر پرونده وجود داشته باشد، داده‌ها به انتهای آن افزوده می‌شوند" -#: ../../library/functions.rst:1380 msgid "``'b'``" msgstr "``'b'``" -#: ../../library/functions.rst:1380 ../../library/functions.rst:1524 msgid "binary mode" msgstr "حالت دودویی" -#: ../../library/functions.rst:1381 msgid "``'t'``" msgstr "``'t'``" -#: ../../library/functions.rst:1381 msgid "text mode (default)" msgstr "حالت متن (پیشفرض)" -#: ../../library/functions.rst:1382 msgid "``'+'``" msgstr "``'+'``" -#: ../../library/functions.rst:1382 msgid "open for updating (reading and writing)" msgstr "باز کردن برای به‌روزرسانی (خواندن و نوشتن)" -#: ../../library/functions.rst:1385 -msgid "" -"The default mode is ``'r'`` (open for reading text, a synonym of ``'rt'``). Modes ``'w+'`` and ``'w+b'`` open and truncate " -"the file. Modes ``'r+'`` and ``'r+b'`` open the file with no truncation." -msgstr "" -"حالت پیش‌فرض ``'r'`` است (باز کردن پرونده برای خواندن متن، که معادل ``'rt'`` است). حالت‌های ``'w+'`` و ``'w+b'`` پرونده را " -"باز کرده و محتوای آن را حذف می‌کنند. حالت‌های ``'r+'`` و ``'r+b'`` پرونده را بدون حذف محتوا باز می‌کنند." +msgid "The default mode is ``'r'`` (open for reading text, a synonym of ``'rt'``). Modes ``'w+'`` and ``'w+b'`` open and truncate the file. Modes ``'r+'`` and ``'r+b'`` open the file with no truncation." +msgstr "حالت پیش‌فرض ``'r'`` است (باز کردن پرونده برای خواندن متن، که معادل ``'rt'`` است). حالت‌های ``'w+'`` و ``'w+b'`` پرونده را باز کرده و محتوای آن را حذف می‌کنند. حالت‌های ``'r+'`` و ``'r+b'`` پرونده را بدون حذف محتوا باز می‌کنند." -#: ../../library/functions.rst:1389 -msgid "" -"As mentioned in the :ref:`io-overview`, Python distinguishes between binary and text I/O. Files opened in binary mode " -"(including ``'b'`` in the *mode* argument) return contents as :class:`bytes` objects without any decoding. In text mode " -"(the default, or when ``'t'`` is included in the *mode* argument), the contents of the file are returned as :class:`str`, " -"the bytes having been first decoded using a platform-dependent encoding or using the specified *encoding* if given." -msgstr "" -"همان‌طور که در :ref:`io-overview` اشاره شد، پایتون بین ورودی/خروجی دودویی و متنی تفاوت قائل می‌شود. پرونده‌هایی که در حالت " -"دودویی باز می‌شوند (یعنی *mode* شامل ``'b'`` باشد)، محتوا را بدون هیچ کدگشایی به‌صورت اشیای :class:`bytes` برمی‌گردانند. در " -"حالت متنی (حالت پیش‌فرض، یا زمانی که *mode* شامل ``'t'`` باشد)، محتوای پرونده به‌صورت :class:`str` برگردانده می‌شود؛ در این " -"حالت، بایت‌ها ابتدا با استفاده از کدگذاری وابسته به سکو یا، در صورت مشخص شدن، با استفاده از *encoding* داده‌شده کدگشایی " -"می‌شوند." +msgid "As mentioned in the :ref:`io-overview`, Python distinguishes between binary and text I/O. Files opened in binary mode (including ``'b'`` in the *mode* argument) return contents as :class:`bytes` objects without any decoding. In text mode (the default, or when ``'t'`` is included in the *mode* argument), the contents of the file are returned as :class:`str`, the bytes having been first decoded using a platform-dependent encoding or using the specified *encoding* if given." +msgstr "همان‌طور که در :ref:`io-overview` اشاره شد، پایتون بین ورودی/خروجی دودویی و متنی تفاوت قائل می‌شود. پرونده‌هایی که در حالت دودویی باز می‌شوند (یعنی *mode* شامل ``'b'`` باشد)، محتوا را بدون هیچ کدگشایی به‌صورت اشیای :class:`bytes` برمی‌گردانند. در حالت متنی (حالت پیش‌فرض، یا زمانی که *mode* شامل ``'t'`` باشد)، محتوای پرونده به‌صورت :class:`str` برگردانده می‌شود؛ در این حالت، بایت‌ها ابتدا با استفاده از کدگذاری وابسته به سکو یا، در صورت مشخص شدن، با استفاده از *encoding* داده‌شده کدگشایی می‌شوند." -#: ../../library/functions.rst:1399 -msgid "" -"Python doesn't depend on the underlying operating system's notion of text files; all the processing is done by Python " -"itself, and is therefore platform-independent." -msgstr "" -"پایتون به مفهوم پروندهٔ متنی در سیستم‌عامل زیربنایی وابسته نیست؛ تمام پردازش‌ها توسط خود پایتون انجام می‌شوند و بنابراین مستقل " -"از سکو هستند." +msgid "Python doesn't depend on the underlying operating system's notion of text files; all the processing is done by Python itself, and is therefore platform-independent." +msgstr "پایتون به مفهوم پروندهٔ متنی در سیستم‌عامل زیربنایی وابسته نیست؛ تمام پردازش‌ها توسط خود پایتون انجام می‌شوند و بنابراین مستقل از سکو هستند." -#: ../../library/functions.rst:1403 -msgid "" -"*buffering* is an optional integer used to set the buffering policy. Pass 0 to switch buffering off (only allowed in " -"binary mode), 1 to select line buffering (only usable when writing in text mode), and an integer > 1 to indicate the size " -"in bytes of a fixed-size chunk buffer. Note that specifying a buffer size this way applies for binary buffered I/O, but " -"``TextIOWrapper`` (i.e., files opened with ``mode='r+'``) would have another buffering. To disable buffering in " -"``TextIOWrapper``, consider using the ``write_through`` flag for :func:`io.TextIOWrapper.reconfigure`. When no *buffering* " -"argument is given, the default buffering policy works as follows:" -msgstr "" -"آرگومان *buffering* یک عدد صحیح اختیاری است که برای تعیین سیاست بافرگذاری استفاده می‌شود. برای غیرفعال کردن بافرگذاری مقدار " -"0 را وارد کنید (که فقط در حالت دودویی مجاز است)، برای انتخاب بافرگذاری خطی مقدار 1 را وارد کنید (که فقط هنگام نوشتن در حالت " -"متنی قابل استفاده است)، و یک عدد صحیح بزرگ‌تر از 1 را برای تعیین اندازهٔ یک بافر با اندازهٔ ثابت (بر حسب بایت) مشخص کنید. توجه " -"داشته باشید که تعیین اندازهٔ بافر به این روش فقط برای ورودی/خروجی دودوییِ بافرشده اعمال می‌شود، اما ``TextIOWrapper`` (یعنی " -"پرونده‌هایی که با ``mode='r+'`` باز می‌شوند) از بافرگذاری دیگری استفاده می‌کند. برای غیرفعال کردن بافرگذاری در " -"``TextIOWrapper``، استفاده از پرچم ``write_through`` برای :func:`io.TextIOWrapper.reconfigure` را در نظر بگیرید. اگر " -"آرگومان *buffering* مشخص نشود، سیاست پیش‌فرض بافرگذاری به صورت زیر عمل می‌کند:" - -#: ../../library/functions.rst:1413 -msgid "" -"Binary files are buffered in fixed-size chunks; the size of the buffer is ``max(min(blocksize, 8 MiB), " -"DEFAULT_BUFFER_SIZE)`` when the device block size is available. On most systems, the buffer will typically be 128 kilobytes " -"long." -msgstr "" -"پرونده‌های دودویی در قطعه‌هایی با اندازهٔ ثابت بافر می‌شوند؛ اگر اندازهٔ بلوک دستگاه در دسترس باشد، اندازهٔ بافر برابر با " -"``max(min(blocksize, 8 MiB), DEFAULT_BUFFER_SIZE)`` خواهد بود. در بیشتر سیستم‌ها، اندازهٔ بافر معمولاً ۱۲۸ کیلوبایت است." +msgid "*buffering* is an optional integer used to set the buffering policy. Pass 0 to switch buffering off (only allowed in binary mode), 1 to select line buffering (only usable when writing in text mode), and an integer > 1 to indicate the size in bytes of a fixed-size chunk buffer. Note that specifying a buffer size this way applies for binary buffered I/O, but ``TextIOWrapper`` (i.e., files opened with ``mode='r+'``) would have another buffering. To disable buffering in ``TextIOWrapper``, consider using the ``write_through`` flag for :func:`io.TextIOWrapper.reconfigure`. When no *buffering* argument is given, the default buffering policy works as follows:" +msgstr "آرگومان *buffering* یک عدد صحیح اختیاری است که برای تعیین سیاست بافرگذاری استفاده می‌شود. برای غیرفعال کردن بافرگذاری مقدار 0 را وارد کنید (که فقط در حالت دودویی مجاز است)، برای انتخاب بافرگذاری خطی مقدار 1 را وارد کنید (که فقط هنگام نوشتن در حالت متنی قابل استفاده است)، و یک عدد صحیح بزرگ‌تر از 1 را برای تعیین اندازهٔ یک بافر با اندازهٔ ثابت (بر حسب بایت) مشخص کنید. توجه داشته باشید که تعیین اندازهٔ بافر به این روش فقط برای ورودی/خروجی دودوییِ بافرشده اعمال می‌شود، اما ``TextIOWrapper`` (یعنی پرونده‌هایی که با ``mode='r+'`` باز می‌شوند) از بافرگذاری دیگری استفاده می‌کند. برای غیرفعال کردن بافرگذاری در ``TextIOWrapper``، استفاده از پرچم ``write_through`` برای :func:`io.TextIOWrapper.reconfigure` را در نظر بگیرید. اگر آرگومان *buffering* مشخص نشود، سیاست پیش‌فرض بافرگذاری به صورت زیر عمل می‌کند:" -#: ../../library/functions.rst:1418 -msgid "" -"\"Interactive\" text files (files for which :meth:`~io.IOBase.isatty` returns ``True``) use line buffering. Other text " -"files use the policy described above for binary files." -msgstr "" -"پرونده‌های متنی «تعاملی» (پرونده‌هایی که :meth:`~io.IOBase.isatty` برای آن‌ها مقدار ``True`` برمی‌گرداند) از بافرگذاری خطی " -"استفاده می‌کنند. سایر پرونده‌های متنی از سیاستی که در بالا برای پرونده‌های دودویی توضیح داده شده است، پیروی می‌کنند." +msgid "Binary files are buffered in fixed-size chunks; the size of the buffer is ``max(min(blocksize, 8 MiB), DEFAULT_BUFFER_SIZE)`` when the device block size is available. On most systems, the buffer will typically be 128 kilobytes long." +msgstr "پرونده‌های دودویی در قطعه‌هایی با اندازهٔ ثابت بافر می‌شوند؛ اگر اندازهٔ بلوک دستگاه در دسترس باشد، اندازهٔ بافر برابر با ``max(min(blocksize, 8 MiB), DEFAULT_BUFFER_SIZE)`` خواهد بود. در بیشتر سیستم‌ها، اندازهٔ بافر معمولاً ۱۲۸ کیلوبایت است." -#: ../../library/functions.rst:1422 -msgid "" -"*encoding* is the name of the encoding used to decode or encode the file. This should only be used in text mode. The " -"default encoding is platform dependent (whatever :func:`locale.getencoding` returns), but any :term:`text encoding` " -"supported by Python can be used. See the :mod:`codecs` module for the list of supported encodings." -msgstr "" -"*encoding* نام کدگذاری مورد استفاده برای کدگشایی یا کدگذاری پرونده است. این گزینه فقط باید در حالت متنی استفاده شود. " -"کدگذاری پیش‌فرض به سکو بستگی دارد (هر مقداری که :func:`locale.getencoding` برگرداند)، اما می‌توان از هر :term:`کدگذاری متنی " -"` که توسط پایتون پشتیبانی می‌شود استفاده کرد. برای مشاهدهٔ فهرست کدگذاری‌های پشتیبانی‌شده، به " -"ماژول :mod:`codecs` مراجعه کنید." +msgid "\"Interactive\" text files (files for which :meth:`~io.IOBase.isatty` returns ``True``) use line buffering. Other text files use the policy described above for binary files." +msgstr "پرونده‌های متنی «تعاملی» (پرونده‌هایی که :meth:`~io.IOBase.isatty` برای آن‌ها مقدار ``True`` برمی‌گرداند) از بافرگذاری خطی استفاده می‌کنند. سایر پرونده‌های متنی از سیاستی که در بالا برای پرونده‌های دودویی توضیح داده شده است، پیروی می‌کنند." -#: ../../library/functions.rst:1428 -msgid "" -"*errors* is an optional string that specifies how encoding and decoding errors are to be handled—this cannot be used in " -"binary mode. A variety of standard error handlers are available (listed under :ref:`error-handlers`), though any error " -"handling name that has been registered with :func:`codecs.register_error` is also valid. The standard names include:" -msgstr "" -"*errors* یک رشتهٔ اختیاری است که مشخص می‌کند خطاهای کدگذاری و کدگشایی چگونه مدیریت شوند؛ این گزینه در حالت دودویی قابل " -"استفاده نیست. مجموعه‌ای از مدیریت‌کننده‌های استاندارد خطا (که در :ref:`error-handlers` فهرست شده‌اند) در دسترس هستند، با این " -"حال هر نام مدیریت خطایی که با :func:`codecs.register_error` ثبت شده باشد نیز معتبر است. نام‌های استاندارد شامل موارد زیر " -"هستند:" +msgid "*encoding* is the name of the encoding used to decode or encode the file. This should only be used in text mode. The default encoding is platform dependent (whatever :func:`locale.getencoding` returns), but any :term:`text encoding` supported by Python can be used. See the :mod:`codecs` module for the list of supported encodings." +msgstr "*encoding* نام کدگذاری مورد استفاده برای کدگشایی یا کدگذاری پرونده است. این گزینه فقط باید در حالت متنی استفاده شود. کدگذاری پیش‌فرض به سکو بستگی دارد (هر مقداری که :func:`locale.getencoding` برگرداند)، اما می‌توان از هر :term:`کدگذاری متنی ` که توسط پایتون پشتیبانی می‌شود استفاده کرد. برای مشاهدهٔ فهرست کدگذاری‌های پشتیبانی‌شده، به ماژول :mod:`codecs` مراجعه کنید." -#: ../../library/functions.rst:1436 -msgid "" -"``'strict'`` to raise a :exc:`ValueError` exception if there is an encoding error. The default value of ``None`` has the " -"same effect." -msgstr "" -"``'strict'`` در صورت بروز خطای کدگذاری، استثنای :exc:`ValueError` پرتاب می‌کند. مقدار پیش‌فرض ``None`` نیز همین رفتار را دارد." +msgid "*errors* is an optional string that specifies how encoding and decoding errors are to be handled—this cannot be used in binary mode. A variety of standard error handlers are available (listed under :ref:`error-handlers`), though any error handling name that has been registered with :func:`codecs.register_error` is also valid. The standard names include:" +msgstr "*errors* یک رشتهٔ اختیاری است که مشخص می‌کند خطاهای کدگذاری و کدگشایی چگونه مدیریت شوند؛ این گزینه در حالت دودویی قابل استفاده نیست. مجموعه‌ای از مدیریت‌کننده‌های استاندارد خطا (که در :ref:`error-handlers` فهرست شده‌اند) در دسترس هستند، با این حال هر نام مدیریت خطایی که با :func:`codecs.register_error` ثبت شده باشد نیز معتبر است. نام‌های استاندارد شامل موارد زیر هستند:" + +msgid "``'strict'`` to raise a :exc:`ValueError` exception if there is an encoding error. The default value of ``None`` has the same effect." +msgstr "``'strict'`` در صورت بروز خطای کدگذاری، استثنای :exc:`ValueError` پرتاب می‌کند. مقدار پیش‌فرض ``None`` نیز همین رفتار را دارد." -#: ../../library/functions.rst:1440 msgid "``'ignore'`` ignores errors. Note that ignoring encoding errors can lead to data loss." -msgstr "" -"``'ignore'`` خطاها را نادیده می‌گیرد. توجه داشته باشید که نادیده گرفتن خطاهای کدگذاری ممکن است به از دست رفتن داده‌ها منجر " -"شود." +msgstr "``'ignore'`` خطاها را نادیده می‌گیرد. توجه داشته باشید که نادیده گرفتن خطاهای کدگذاری ممکن است به از دست رفتن داده‌ها منجر شود." -#: ../../library/functions.rst:1443 msgid "``'replace'`` causes a replacement marker (such as ``'?'``) to be inserted where there is malformed data." msgstr "``'replace'`` باعث می‌شود در محل داده‌های نادرست، یک نویسهٔ جایگزین (مانند ``'?'``) درج شود." -#: ../../library/functions.rst:1446 -msgid "" -"``'surrogateescape'`` will represent any incorrect bytes as low surrogate code units ranging from U+DC80 to U+DCFF. These " -"surrogate code units will then be turned back into the same bytes when the ``surrogateescape`` error handler is used when " -"writing data. This is useful for processing files in an unknown encoding." -msgstr "" -"``'surrogateescape'`` هر بایت نادرست را به‌صورت واحدهای کد جانشین پایینی در بازهٔ U+DC80 تا U+DCFF نمایش می‌دهد. سپس، هنگام " -"نوشتن داده‌ها و استفاده از مدیریت‌کنندهٔ خطای ``surrogateescape``، این واحدهای کد جانشین دوباره به همان بایت‌ها تبدیل می‌شوند. " -"این قابلیت برای پردازش پرونده‌هایی با کدگذاری نامشخص مفید است." +msgid "``'surrogateescape'`` will represent any incorrect bytes as low surrogate code units ranging from U+DC80 to U+DCFF. These surrogate code units will then be turned back into the same bytes when the ``surrogateescape`` error handler is used when writing data. This is useful for processing files in an unknown encoding." +msgstr "``'surrogateescape'`` هر بایت نادرست را به‌صورت واحدهای کد جانشین پایینی در بازهٔ U+DC80 تا U+DCFF نمایش می‌دهد. سپس، هنگام نوشتن داده‌ها و استفاده از مدیریت‌کنندهٔ خطای ``surrogateescape``، این واحدهای کد جانشین دوباره به همان بایت‌ها تبدیل می‌شوند. این قابلیت برای پردازش پرونده‌هایی با کدگذاری نامشخص مفید است." -#: ../../library/functions.rst:1453 -msgid "" -"``'xmlcharrefreplace'`` is only supported when writing to a file. Characters not supported by the encoding are replaced " -"with the appropriate XML character reference :samp:`&#{nnn};`." -msgstr "" -"``'xmlcharrefreplace'`` فقط هنگام نوشتن در یک پرونده پشتیبانی می‌شود. نویسه‌هایی که توسط کدگذاری پشتیبانی نمی‌شوند، با ارجاع " -"نویسهٔ XML متناظر آن‌ها به صورت :samp:`&#{nnn};` جایگزین می‌شوند." +msgid "``'xmlcharrefreplace'`` is only supported when writing to a file. Characters not supported by the encoding are replaced with the appropriate XML character reference :samp:`&#{nnn};`." +msgstr "``'xmlcharrefreplace'`` فقط هنگام نوشتن در یک پرونده پشتیبانی می‌شود. نویسه‌هایی که توسط کدگذاری پشتیبانی نمی‌شوند، با ارجاع نویسهٔ XML متناظر آن‌ها به صورت :samp:`&#{nnn};` جایگزین می‌شوند." -#: ../../library/functions.rst:1457 msgid "``'backslashreplace'`` replaces malformed data by Python's backslashed escape sequences." msgstr "``'backslashreplace'`` داده‌های نادرست را با توالی‌های گریز دارای بک‌اسلش در پایتون جایگزین می‌کند." -#: ../../library/functions.rst:1460 -msgid "" -"``'namereplace'`` (also only supported when writing) replaces unsupported characters with ``\\N{...}`` escape sequences." -msgstr "" -"``'namereplace'`` (که آن هم فقط هنگام نوشتن پشتیبانی می‌شود) نویسه‌های پشتیبانی‌نشده را با توالی‌های گریز ``\\N{...}`` جایگزین " -"می‌کند." +msgid "``'namereplace'`` (also only supported when writing) replaces unsupported characters with ``\\N{...}`` escape sequences." +msgstr "``'namereplace'`` (که آن هم فقط هنگام نوشتن پشتیبانی می‌شود) نویسه‌های پشتیبانی‌نشده را با توالی‌های گریز ``\\N{...}`` جایگزین می‌کند." -#: ../../library/functions.rst:1468 -msgid "" -"*newline* determines how to parse newline characters from the stream. It can be ``None``, ``''``, ``'\\n'``, ``'\\r'``, and " -"``'\\r\\n'``. It works as follows:" -msgstr "" -"*newline* مشخص می‌کند که نویسه‌های پایان خط در جریان داده چگونه تجزیه شوند. این مقدار می‌تواند ``None``، ``''``، ``'\\n'``، " -"``'\\r'`` یا ``'\\r\\n'`` باشد. عملکرد آن به صورت زیر است:" +msgid "*newline* determines how to parse newline characters from the stream. It can be ``None``, ``''``, ``'\\n'``, ``'\\r'``, and ``'\\r\\n'``. It works as follows:" +msgstr "*newline* مشخص می‌کند که نویسه‌های پایان خط در جریان داده چگونه تجزیه شوند. این مقدار می‌تواند ``None``، ``''``، ``'\\n'``، ``'\\r'`` یا ``'\\r\\n'`` باشد. عملکرد آن به صورت زیر است:" -#: ../../library/functions.rst:1472 -msgid "" -"When reading input from the stream, if *newline* is ``None``, universal newlines mode is enabled. Lines in the input can " -"end in ``'\\n'``, ``'\\r'``, or ``'\\r\\n'``, and these are translated into ``'\\n'`` before being returned to the caller. " -"If it is ``''``, universal newlines mode is enabled, but line endings are returned to the caller untranslated. If it has " -"any of the other legal values, input lines are only terminated by the given string, and the line ending is returned to the " -"caller untranslated." -msgstr "" -"هنگام خواندن ورودی از جریان، اگر *newline* برابر ``None`` باشد، حالت پایان‌خط‌های همگانی فعال می‌شود. در این حالت، خطوط ورودی " -"می‌توانند با ``'\\n'``، ``'\\r'`` یا ``'\\r\\n'`` پایان یابند و پیش از بازگردانده شدن به فراخواننده، همگی به ``'\\n'`` تبدیل " -"می‌شوند. اگر مقدار آن ``''`` باشد، حالت پایان‌خط‌های همگانی همچنان فعال است، اما نویسه‌های پایان خط بدون تبدیل به فراخواننده " -"بازگردانده می‌شوند. اگر *newline* یکی از مقادیر مجاز دیگر را داشته باشد، خطوط ورودی فقط با همان رشته خاتمه می‌یابند و نویسهٔ " -"پایان خط بدون تبدیل بازگردانده می‌شود." +msgid "When reading input from the stream, if *newline* is ``None``, universal newlines mode is enabled. Lines in the input can end in ``'\\n'``, ``'\\r'``, or ``'\\r\\n'``, and these are translated into ``'\\n'`` before being returned to the caller. If it is ``''``, universal newlines mode is enabled, but line endings are returned to the caller untranslated. If it has any of the other legal values, input lines are only terminated by the given string, and the line ending is returned to the caller untranslated." +msgstr "هنگام خواندن ورودی از جریان، اگر *newline* برابر ``None`` باشد، حالت پایان‌خط‌های همگانی فعال می‌شود. در این حالت، خطوط ورودی می‌توانند با ``'\\n'``، ``'\\r'`` یا ``'\\r\\n'`` پایان یابند و پیش از بازگردانده شدن به فراخواننده، همگی به ``'\\n'`` تبدیل می‌شوند. اگر مقدار آن ``''`` باشد، حالت پایان‌خط‌های همگانی همچنان فعال است، اما نویسه‌های پایان خط بدون تبدیل به فراخواننده بازگردانده می‌شوند. اگر *newline* یکی از مقادیر مجاز دیگر را داشته باشد، خطوط ورودی فقط با همان رشته خاتمه می‌یابند و نویسهٔ پایان خط بدون تبدیل بازگردانده می‌شود." -#: ../../library/functions.rst:1480 -msgid "" -"When writing output to the stream, if *newline* is ``None``, any ``'\\n'`` characters written are translated to the system " -"default line separator, :data:`os.linesep`. If *newline* is ``''`` or ``'\\n'``, no translation takes place. If *newline* " -"is any of the other legal values, any ``'\\n'`` characters written are translated to the given string." -msgstr "" -"هنگام نوشتن خروجی در جریان، اگر *newline* برابر ``None`` باشد، هر نویسهٔ ``'\\n'`` نوشته‌شده به جداکنندهٔ پیش‌فرض پایان خط " -"سیستم، یعنی :data:`os.linesep`، تبدیل می‌شود. اگر *newline* برابر ``''`` یا ``'\\n'`` باشد، هیچ تبدیلی انجام نمی‌شود. اگر " -"*newline* یکی از مقادیر مجاز دیگر را داشته باشد، هر ``'\\n'`` نوشته‌شده به همان رشتهٔ مشخص‌شده تبدیل خواهد شد." +msgid "When writing output to the stream, if *newline* is ``None``, any ``'\\n'`` characters written are translated to the system default line separator, :data:`os.linesep`. If *newline* is ``''`` or ``'\\n'``, no translation takes place. If *newline* is any of the other legal values, any ``'\\n'`` characters written are translated to the given string." +msgstr "هنگام نوشتن خروجی در جریان، اگر *newline* برابر ``None`` باشد، هر نویسهٔ ``'\\n'`` نوشته‌شده به جداکنندهٔ پیش‌فرض پایان خط سیستم، یعنی :data:`os.linesep`، تبدیل می‌شود. اگر *newline* برابر ``''`` یا ``'\\n'`` باشد، هیچ تبدیلی انجام نمی‌شود. اگر *newline* یکی از مقادیر مجاز دیگر را داشته باشد، هر ``'\\n'`` نوشته‌شده به همان رشتهٔ مشخص‌شده تبدیل خواهد شد." -#: ../../library/functions.rst:1486 -msgid "" -"If *closefd* is ``False`` and a file descriptor rather than a filename was given, the underlying file descriptor will be " -"kept open when the file is closed. If a filename is given *closefd* must be ``True`` (the default); otherwise, an error " -"will be raised." -msgstr "" -"اگر *closefd* برابر ``False`` باشد و به‌جای نام پرونده یک توصیفگر پرونده ارائه شده باشد، هنگام بسته شدن پرونده، توصیفگر " -"پروندهٔ زیربنایی باز خواهد ماند. اگر نام پرونده ارائه شود، *closefd* باید برابر ``True`` (مقدار پیش‌فرض) باشد؛ در غیر این " -"صورت، خطا پرتاب خواهد شد." +msgid "If *closefd* is ``False`` and a file descriptor rather than a filename was given, the underlying file descriptor will be kept open when the file is closed. If a filename is given *closefd* must be ``True`` (the default); otherwise, an error will be raised." +msgstr "اگر *closefd* برابر ``False`` باشد و به‌جای نام پرونده یک توصیفگر پرونده ارائه شده باشد، هنگام بسته شدن پرونده، توصیفگر پروندهٔ زیربنایی باز خواهد ماند. اگر نام پرونده ارائه شود، *closefd* باید برابر ``True`` (مقدار پیش‌فرض) باشد؛ در غیر این صورت، خطا پرتاب خواهد شد." -#: ../../library/functions.rst:1491 -msgid "" -"A custom opener can be used by passing a callable as *opener*. The underlying file descriptor for the file object is then " -"obtained by calling *opener* with (*file*, *flags*). *opener* must return an open file descriptor (passing :mod:`os.open` " -"as *opener* results in functionality similar to passing ``None``)." -msgstr "" -"با ارسال یک شیء فراخوانی‌پذیر به‌عنوان *opener* می‌توان از یک بازکنندهٔ سفارشی استفاده کرد. در این صورت، توصیفگر پروندهٔ " -"زیربناییِ شیء پرونده با فراخوانی *opener* و ارسال (*file*, *flags*) به آن به‌دست می‌آید. *opener* باید یک توصیفگر پروندهٔ باز " -"برگرداند (ارسال :mod:`os.open` به‌عنوان *opener* رفتاری مشابه ارسال ``None`` خواهد داشت)." +msgid "A custom opener can be used by passing a callable as *opener*. The underlying file descriptor for the file object is then obtained by calling *opener* with (*file*, *flags*). *opener* must return an open file descriptor (passing :mod:`os.open` as *opener* results in functionality similar to passing ``None``)." +msgstr "با ارسال یک شیء فراخوانی‌پذیر به‌عنوان *opener* می‌توان از یک بازکنندهٔ سفارشی استفاده کرد. در این صورت، توصیفگر پروندهٔ زیربناییِ شیء پرونده با فراخوانی *opener* و ارسال (*file*, *flags*) به آن به‌دست می‌آید. *opener* باید یک توصیفگر پروندهٔ باز برگرداند (ارسال :mod:`os.open` به‌عنوان *opener* رفتاری مشابه ارسال ``None`` خواهد داشت)." -#: ../../library/functions.rst:1497 msgid "The newly created file is :ref:`non-inheritable `." msgstr "پروندهٔ تازه ایجادشده :ref:`غیرقابل‌وراثت ` است." -#: ../../library/functions.rst:1499 -msgid "" -"The following example uses the :ref:`dir_fd ` parameter of the :func:`os.open` function to open a file relative to " -"a given directory::" -msgstr "" -"مثال زیر از پارامتر :ref:`dir_fd ` تابع :func:`os.open` برای باز کردن پرونده‌ای نسبت به یک پوشه مشخص استفاده می‌کند::" +msgid "The following example uses the :ref:`dir_fd ` parameter of the :func:`os.open` function to open a file relative to a given directory::" +msgstr "مثال زیر از پارامتر :ref:`dir_fd ` تابع :func:`os.open` برای باز کردن پرونده‌ای نسبت به یک پوشه مشخص استفاده می‌کند::" -#: ../../library/functions.rst:1502 msgid "" ">>> import os\n" ">>> dir_fd = os.open('somedir', os.O_RDONLY)\n" @@ -2341,149 +1188,69 @@ msgstr "" "...\n" ">>> os.close(dir_fd) # don't leak a file descriptor" -#: ../../library/functions.rst:1512 -msgid "" -"The type of :term:`file object` returned by the :func:`open` function depends on the mode. When :func:`open` is used to " -"open a file in a text mode (``'w'``, ``'r'``, ``'wt'``, ``'rt'``, etc.), it returns a subclass of :class:`io.TextIOBase` " -"(specifically :class:`io.TextIOWrapper`). When used to open a file in a binary mode with buffering, the returned class is " -"a subclass of :class:`io.BufferedIOBase`. The exact class varies: in read binary mode, it returns " -"an :class:`io.BufferedReader`; in write binary and append binary modes, it returns an :class:`io.BufferedWriter`, and in " -"read/write mode, it returns an :class:`io.BufferedRandom`. When buffering is disabled, the raw stream, a subclass " -"of :class:`io.RawIOBase`, :class:`io.FileIO`, is returned." -msgstr "" -"نوع :term:`شیء فایل ` بازگردانده‌شده توسط تابع :func:`open` به حالت (mode) بستگی دارد. هنگامی که :func:`open` " -"برای باز کردن پرونده در حالت متنی (مانند ``'w'``، ``'r'``، ``'wt'``، ``'rt'`` و غیره) استفاده شود، زیرکلاسی " -"از :class:`io.TextIOBase` (به‌طور مشخص :class:`io.TextIOWrapper`) را بازمی‌گرداند. هنگام باز کردن پرونده در حالت دودویی همراه " -"با بافر، کلاس بازگردانده‌شده زیرکلاسی از :class:`io.BufferedIOBase` خواهد بود. کلاس دقیق بسته به حالت متفاوت است: در حالت " -"خواندن دودویی، :class:`io.BufferedReader`؛ در حالت‌های نوشتن دودویی و افزودن به انتهای پرونده، :class:`io.BufferedWriter`؛ و " -"در حالت خواندن/نوشتن، :class:`io.BufferedRandom` بازگردانده می‌شود. اگر بافر غیرفعال باشد، جریان خام (raw stream)، " -"یعنی :class:`io.FileIO` که زیرکلاسی از :class:`io.RawIOBase` است، بازگردانده می‌شود." - -#: ../../library/functions.rst:1533 -msgid "" -"See also the file handling modules, such as :mod:`fileinput`, :mod:`io` (where :func:`open` is " -"declared), :mod:`os`, :mod:`os.path`, :mod:`tempfile`, and :mod:`shutil`." -msgstr "" -"همچنین به ماژول‌های مربوط به کار با پرونده‌ها، مانند :mod:`fileinput`، :mod:`io` (که :func:`open` در آن تعریف شده " -"است)، :mod:`os`، :mod:`os.path`، :mod:`tempfile` و :mod:`shutil` مراجعه کنید." +msgid "The type of :term:`file object` returned by the :func:`open` function depends on the mode. When :func:`open` is used to open a file in a text mode (``'w'``, ``'r'``, ``'wt'``, ``'rt'``, etc.), it returns a subclass of :class:`io.TextIOBase` (specifically :class:`io.TextIOWrapper`). When used to open a file in a binary mode with buffering, the returned class is a subclass of :class:`io.BufferedIOBase`. The exact class varies: in read binary mode, it returns an :class:`io.BufferedReader`; in write binary and append binary modes, it returns an :class:`io.BufferedWriter`, and in read/write mode, it returns an :class:`io.BufferedRandom`. When buffering is disabled, the raw stream, a subclass of :class:`io.RawIOBase`, :class:`io.FileIO`, is returned." +msgstr "نوع :term:`شیء فایل ` بازگردانده‌شده توسط تابع :func:`open` به حالت (mode) بستگی دارد. هنگامی که :func:`open` برای باز کردن پرونده در حالت متنی (مانند ``'w'``، ``'r'``، ``'wt'``، ``'rt'`` و غیره) استفاده شود، زیرکلاسی از :class:`io.TextIOBase` (به‌طور مشخص :class:`io.TextIOWrapper`) را بازمی‌گرداند. هنگام باز کردن پرونده در حالت دودویی همراه با بافر، کلاس بازگردانده‌شده زیرکلاسی از :class:`io.BufferedIOBase` خواهد بود. کلاس دقیق بسته به حالت متفاوت است: در حالت خواندن دودویی، :class:`io.BufferedReader`؛ در حالت‌های نوشتن دودویی و افزودن به انتهای پرونده، :class:`io.BufferedWriter`؛ و در حالت خواندن/نوشتن، :class:`io.BufferedRandom` بازگردانده می‌شود. اگر بافر غیرفعال باشد، جریان خام (raw stream)، یعنی :class:`io.FileIO` که زیرکلاسی از :class:`io.RawIOBase` است، بازگردانده می‌شود." + +msgid "See also the file handling modules, such as :mod:`fileinput`, :mod:`io` (where :func:`open` is declared), :mod:`os`, :mod:`os.path`, :mod:`tempfile`, and :mod:`shutil`." +msgstr "همچنین به ماژول‌های مربوط به کار با پرونده‌ها، مانند :mod:`fileinput`، :mod:`io` (که :func:`open` در آن تعریف شده است)، :mod:`os`، :mod:`os.path`، :mod:`tempfile` و :mod:`shutil` مراجعه کنید." -#: ../../library/functions.rst:1537 msgid "Raises an :ref:`auditing event ` ``open`` with arguments ``path``, ``mode``, ``flags``." msgstr "یک :ref:`رویداد ممیزی ` با نام ``open`` و آرگومان‌های ``path``، ``mode`` و ``flags`` پرتاب می‌کند." -#: ../../library/functions.rst:1539 msgid "The ``mode`` and ``flags`` arguments may have been modified or inferred from the original call." msgstr "آرگومان‌های ``mode`` و ``flags`` ممکن است بر اساس فراخوانی اولیه تغییر داده شده یا مقدار آن‌ها استنباط شده باشند." -#: ../../library/functions.rst:1544 msgid "The *opener* parameter was added." msgstr "پارامتر *opener* اضافه شده است." -#: ../../library/functions.rst:1545 msgid "The ``'x'`` mode was added." msgstr "حالت ``'x'`` اضافه شده است." -#: ../../library/functions.rst:1546 msgid ":exc:`IOError` used to be raised, it is now an alias of :exc:`OSError`." msgstr "در گذشته استثنای :exc:`IOError` پرتاب می‌شد؛ اکنون این استثنا نام مستعاری برای :exc:`OSError` است." -#: ../../library/functions.rst:1547 msgid ":exc:`FileExistsError` is now raised if the file opened in exclusive creation mode (``'x'``) already exists." -msgstr "" -"اگر فایلی که در حالت ایجاد انحصاری (``'x'``) باز می‌شود از قبل وجود داشته باشد، اکنون استثنای :exc:`FileExistsError` پرتاب " -"می‌شود." +msgstr "اگر فایلی که در حالت ایجاد انحصاری (``'x'``) باز می‌شود از قبل وجود داشته باشد، اکنون استثنای :exc:`FileExistsError` پرتاب می‌شود." -#: ../../library/functions.rst:1552 msgid "The file is now non-inheritable." msgstr "اکنون این پرونده غیرقابل‌وراثت است." -#: ../../library/functions.rst:1556 -msgid "" -"If the system call is interrupted and the signal handler does not raise an exception, the function now retries the system " -"call instead of raising an :exc:`InterruptedError` exception (see :pep:`475` for the rationale)." -msgstr "" -"اگر فراخوانی سیستمی متوقف شود و مدیریت‌کنندهٔ سیگنال استثنایی پرتاب نکند، اکنون این تابع به‌جای پرتاب " -"استثنای :exc:`InterruptedError`، فراخوانی سیستمی را دوباره امتحان می‌کند (برای دلیل این تغییر، :pep:`475` را ببینید)." +msgid "If the system call is interrupted and the signal handler does not raise an exception, the function now retries the system call instead of raising an :exc:`InterruptedError` exception (see :pep:`475` for the rationale)." +msgstr "اگر فراخوانی سیستمی متوقف شود و مدیریت‌کنندهٔ سیگنال استثنایی پرتاب نکند، اکنون این تابع به‌جای پرتاب استثنای :exc:`InterruptedError`، فراخوانی سیستمی را دوباره امتحان می‌کند (برای دلیل این تغییر، :pep:`475` را ببینید)." -#: ../../library/functions.rst:1559 msgid "The ``'namereplace'`` error handler was added." msgstr "مدیر خطای ``'namereplace'`` اضافه شده است." -#: ../../library/functions.rst:1563 msgid "Support added to accept objects implementing :class:`os.PathLike`." msgstr "پشتیبانی از پذیرش اشیایی که :class:`os.PathLike` را پیاده‌سازی می‌کنند، اضافه شده است." -#: ../../library/functions.rst:1564 msgid "On Windows, opening a console buffer may return a subclass of :class:`io.RawIOBase` other than :class:`io.FileIO`." msgstr "در ویندوز، باز کردن یک بافر کنسول ممکن است زیرکلاسی از :class:`io.RawIOBase` غیر از :class:`io.FileIO` را برگرداند." -#: ../../library/functions.rst:1567 msgid "The ``'U'`` mode has been removed." msgstr "حالت ``'U'`` حذف شده است." -#: ../../library/functions.rst:1572 msgid "Return the ordinal value of a character." msgstr "مقدار ترتیبی (ordinal) یک نویسه را برمی‌گرداند." -#: ../../library/functions.rst:1574 -msgid "" -"If the argument is a one-character string, return the Unicode code point of that character. For example, ``ord('a')`` " -"returns the integer ``97`` and ``ord('€')`` (Euro sign) returns ``8364``. This is the inverse of :func:`chr`." -msgstr "" -"اگر آرگومان یک رشتهٔ تک‌نویسه‌ای باشد، نقطهٔ کد یونیکد آن نویسه برگردانده می‌شود. برای مثال، ``ord('a')`` عدد صحیح ``97`` و " -"``ord('€')`` (نماد یورو) عدد ``8364`` را برمی‌گرداند. این تابع معکوس :func:`chr` است." +msgid "If the argument is a one-character string, return the Unicode code point of that character. For example, ``ord('a')`` returns the integer ``97`` and ``ord('€')`` (Euro sign) returns ``8364``. This is the inverse of :func:`chr`." +msgstr "اگر آرگومان یک رشتهٔ تک‌نویسه‌ای باشد، نقطهٔ کد یونیکد آن نویسه برگردانده می‌شود. برای مثال، ``ord('a')`` عدد صحیح ``97`` و ``ord('€')`` (نماد یورو) عدد ``8364`` را برمی‌گرداند. این تابع معکوس :func:`chr` است." -#: ../../library/functions.rst:1579 -msgid "" -"If the argument is a :class:`bytes` or :class:`bytearray` object of length 1, return its single byte value. For example, " -"``ord(b'a')`` returns the integer ``97``." -msgstr "" -"اگر آرگومان یک شیء :class:`bytes` یا :class:`bytearray` با طول ۱ باشد، مقدار تنها بایت آن برگردانده می‌شود. برای مثال، " -"``ord(b'a')`` عدد صحیح ``97`` را برمی‌گرداند." +msgid "If the argument is a :class:`bytes` or :class:`bytearray` object of length 1, return its single byte value. For example, ``ord(b'a')`` returns the integer ``97``." +msgstr "اگر آرگومان یک شیء :class:`bytes` یا :class:`bytearray` با طول ۱ باشد، مقدار تنها بایت آن برگردانده می‌شود. برای مثال، ``ord(b'a')`` عدد صحیح ``97`` را برمی‌گرداند." -#: ../../library/functions.rst:1586 -msgid "" -"Return *base* to the power *exp*; if *mod* is present, return *base* to the power *exp*, modulo *mod* (computed more " -"efficiently than ``pow(base, exp) % mod``). The two-argument form ``pow(base, exp)`` is equivalent to using the power " -"operator: ``base**exp``." -msgstr "" -"*base* را به توان *exp* می‌رساند؛ اگر *mod* مشخص شده باشد، مقدار *base* به توان *exp* را به پیمانهٔ *mod* برمی‌گرداند (که " -"کارآمدتر از ``pow(base, exp) % mod`` محاسبه می‌شود). شکل دوآرگومانی ``pow(base, exp)`` معادل استفاده از عملگر توان، یعنی " -"``base**exp``، است." +msgid "Return *base* to the power *exp*; if *mod* is present, return *base* to the power *exp*, modulo *mod* (computed more efficiently than ``pow(base, exp) % mod``). The two-argument form ``pow(base, exp)`` is equivalent to using the power operator: ``base**exp``." +msgstr "*base* را به توان *exp* می‌رساند؛ اگر *mod* مشخص شده باشد، مقدار *base* به توان *exp* را به پیمانهٔ *mod* برمی‌گرداند (که کارآمدتر از ``pow(base, exp) % mod`` محاسبه می‌شود). شکل دوآرگومانی ``pow(base, exp)`` معادل استفاده از عملگر توان، یعنی ``base**exp``، است." -#: ../../library/functions.rst:1591 -msgid "" -"When arguments are builtin numeric types with mixed operand types, the coercion rules for binary arithmetic operators " -"apply. For :class:`int` operands, the result has the same type as the operands (after coercion) unless the second argument " -"is negative; in that case, all arguments are converted to float and a float result is delivered. For example, ``pow(10, " -"2)`` returns ``100``, but ``pow(10, -2)`` returns ``0.01``. For a negative base of type :class:`int` or :class:`float` and " -"a non-integral exponent, a complex result is delivered. For example, ``pow(-9, 0.5)`` returns a value close to ``3j``. " -"Whereas, for a negative base of type :class:`int` or :class:`float` with an integral exponent, a float result is delivered. " -"For example, ``pow(-9, 2.0)`` returns ``81.0``." -msgstr "" -"وقتی آرگومان‌ها از انواع عددی توکار با انواع عملوند متفاوت باشند، قواعد تبدیل (coercion) عملگرهای حسابی دودویی اعمال می‌شود. " -"برای عملوندهای :class:`int`، نتیجه پس از اعمال تبدیل، همان نوع عملوندها را خواهد داشت؛ مگر اینکه آرگومان دوم منفی باشد که " -"در این صورت همهٔ آرگومان‌ها به float تبدیل شده و نتیجه نیز از نوع float خواهد بود. برای مثال، ``pow(10, 2)`` مقدار ``100`` را " -"برمی‌گرداند، اما ``pow(10, -2)`` مقدار ``0.01`` را بازمی‌گرداند. اگر پایهٔ منفی از نوع :class:`int` یا :class:`float` باشد و " -"توان عددی غیرصحیح باشد، نتیجه از نوع مختلط خواهد بود. برای مثال، ``pow(-9, 0.5)`` مقداری نزدیک به ``3j`` را برمی‌گرداند. در " -"مقابل، اگر پایهٔ منفی از نوع :class:`int` یا :class:`float` باشد و توان عددی صحیح باشد، نتیجه از نوع float خواهد بود. برای " -"مثال، ``pow(-9, 2.0)`` مقدار ``81.0`` را برمی‌گرداند." - -#: ../../library/functions.rst:1603 -msgid "" -"For :class:`int` operands *base* and *exp*, if *mod* is present, *mod* must also be of integer type and *mod* must be " -"nonzero. If *mod* is present and *exp* is negative, *base* must be relatively prime to *mod*. In that case, ``pow(inv_base, " -"-exp, mod)`` is returned, where *inv_base* is an inverse to *base* modulo *mod*." -msgstr "" -"برای عملوندهای :class:`int` یعنی *base* و *exp*، اگر *mod* ارائه شود، باید از نوع عدد صحیح باشد و مقدار آن نیز نباید صفر " -"باشد. اگر *mod* ارائه شده باشد و *exp* منفی باشد، *base* و *mod* باید نسبت به هم اول باشند. در این حالت، ``pow(inv_base, " -"-exp, mod)`` برگردانده می‌شود که در آن *inv_base* وارونِ *base* به پیمانهٔ *mod* است." +msgid "When arguments are builtin numeric types with mixed operand types, the coercion rules for binary arithmetic operators apply. For :class:`int` operands, the result has the same type as the operands (after coercion) unless the second argument is negative; in that case, all arguments are converted to float and a float result is delivered. For example, ``pow(10, 2)`` returns ``100``, but ``pow(10, -2)`` returns ``0.01``. For a negative base of type :class:`int` or :class:`float` and a non-integral exponent, a complex result is delivered. For example, ``pow(-9, 0.5)`` returns a value close to ``3j``. Whereas, for a negative base of type :class:`int` or :class:`float` with an integral exponent, a float result is delivered. For example, ``pow(-9, 2.0)`` returns ``81.0``." +msgstr "وقتی آرگومان‌ها از انواع عددی توکار با انواع عملوند متفاوت باشند، قواعد تبدیل (coercion) عملگرهای حسابی دودویی اعمال می‌شود. برای عملوندهای :class:`int`، نتیجه پس از اعمال تبدیل، همان نوع عملوندها را خواهد داشت؛ مگر اینکه آرگومان دوم منفی باشد که در این صورت همهٔ آرگومان‌ها به float تبدیل شده و نتیجه نیز از نوع float خواهد بود. برای مثال، ``pow(10, 2)`` مقدار ``100`` را برمی‌گرداند، اما ``pow(10, -2)`` مقدار ``0.01`` را بازمی‌گرداند. اگر پایهٔ منفی از نوع :class:`int` یا :class:`float` باشد و توان عددی غیرصحیح باشد، نتیجه از نوع مختلط خواهد بود. برای مثال، ``pow(-9, 0.5)`` مقداری نزدیک به ``3j`` را برمی‌گرداند. در مقابل، اگر پایهٔ منفی از نوع :class:`int` یا :class:`float` باشد و توان عددی صحیح باشد، نتیجه از نوع float خواهد بود. برای مثال، ``pow(-9, 2.0)`` مقدار ``81.0`` را برمی‌گرداند." + +msgid "For :class:`int` operands *base* and *exp*, if *mod* is present, *mod* must also be of integer type and *mod* must be nonzero. If *mod* is present and *exp* is negative, *base* must be relatively prime to *mod*. In that case, ``pow(inv_base, -exp, mod)`` is returned, where *inv_base* is an inverse to *base* modulo *mod*." +msgstr "برای عملوندهای :class:`int` یعنی *base* و *exp*، اگر *mod* ارائه شود، باید از نوع عدد صحیح باشد و مقدار آن نیز نباید صفر باشد. اگر *mod* ارائه شده باشد و *exp* منفی باشد، *base* و *mod* باید نسبت به هم اول باشند. در این حالت، ``pow(inv_base, -exp, mod)`` برگردانده می‌شود که در آن *inv_base* وارونِ *base* به پیمانهٔ *mod* است." -#: ../../library/functions.rst:1609 msgid "Here's an example of computing an inverse for ``38`` modulo ``97``::" msgstr "در اینجا مثالی از محاسبهٔ وارون پیمانه‌ایِ ``38`` به پیمانهٔ ``97`` آورده شده است::" -#: ../../library/functions.rst:1611 msgid "" ">>> pow(38, -1, mod=97)\n" "23\n" @@ -2495,72 +1262,36 @@ msgstr "" ">>> 23 * 38 % 97 == 1\n" "True" -#: ../../library/functions.rst:1616 -msgid "" -"For :class:`int` operands, the three-argument form of ``pow`` now allows the second argument to be negative, permitting " -"computation of modular inverses." -msgstr "" -"برای عملوندهای :class:`int`، شکل سه‌آرگومانی ``pow`` اکنون اجازه می‌دهد آرگومان دوم منفی باشد و در نتیجه امکان محاسبهٔ وارون " -"پیمانه‌ای را فراهم می‌کند." +msgid "For :class:`int` operands, the three-argument form of ``pow`` now allows the second argument to be negative, permitting computation of modular inverses." +msgstr "برای عملوندهای :class:`int`، شکل سه‌آرگومانی ``pow`` اکنون اجازه می‌دهد آرگومان دوم منفی باشد و در نتیجه امکان محاسبهٔ وارون پیمانه‌ای را فراهم می‌کند." -#: ../../library/functions.rst:1621 msgid "Allow keyword arguments. Formerly, only positional arguments were supported." msgstr "امکان استفاده از آرگومان‌های کلیدواژه‌ای اضافه شد. پیش از این، فقط آرگومان‌های مکانی پشتیبانی می‌شدند." -#: ../../library/functions.rst:1628 -msgid "" -"Print *objects* to the text stream *file*, separated by *sep* and followed by *end*. *sep*, *end*, *file*, and *flush*, if " -"present, must be given as keyword arguments." -msgstr "" -"*objects* را با جداکنندهٔ *sep* و در انتها با *end* در جریان متنی *file* چاپ می‌کند. اگر *sep*، *end*، *file* یا *flush* مشخص " -"شوند، باید به‌صورت آرگومان‌های کلیدواژه‌ای ارائه شوند." +msgid "Print *objects* to the text stream *file*, separated by *sep* and followed by *end*. *sep*, *end*, *file*, and *flush*, if present, must be given as keyword arguments." +msgstr "*objects* را با جداکنندهٔ *sep* و در انتها با *end* در جریان متنی *file* چاپ می‌کند. اگر *sep*، *end*، *file* یا *flush* مشخص شوند، باید به‌صورت آرگومان‌های کلیدواژه‌ای ارائه شوند." -#: ../../library/functions.rst:1632 -msgid "" -"All non-keyword arguments are converted to strings like :func:`str` does and written to the stream, separated by *sep* and " -"followed by *end*. Both *sep* and *end* must be strings; they can also be ``None``, which means to use the default " -"values. If no *objects* are given, :func:`print` will just write *end*." -msgstr "" -"همهٔ آرگومان‌های غیرکلیدواژه‌ای، همانند :func:`str`، به رشته تبدیل شده و با جداکنندهٔ *sep* از یکدیگر جدا شده و سپس همراه با " -"*end* در جریان (stream) نوشته می‌شوند. هر دو مقدار *sep* و *end* باید رشته باشند؛ همچنین می‌توانند ``None`` باشند که در این " -"صورت از مقادیر پیش‌فرض استفاده می‌شود. اگر هیچ *objects*\\ ی ارائه نشود، :func:`print` فقط مقدار *end* را خواهد نوشت." +msgid "All non-keyword arguments are converted to strings like :func:`str` does and written to the stream, separated by *sep* and followed by *end*. Both *sep* and *end* must be strings; they can also be ``None``, which means to use the default values. If no *objects* are given, :func:`print` will just write *end*." +msgstr "همهٔ آرگومان‌های غیرکلیدواژه‌ای، همانند :func:`str`، به رشته تبدیل شده و با جداکنندهٔ *sep* از یکدیگر جدا شده و سپس همراه با *end* در جریان (stream) نوشته می‌شوند. هر دو مقدار *sep* و *end* باید رشته باشند؛ همچنین می‌توانند ``None`` باشند که در این صورت از مقادیر پیش‌فرض استفاده می‌شود. اگر هیچ *objects*\\ ی ارائه نشود، :func:`print` فقط مقدار *end* را خواهد نوشت." -#: ../../library/functions.rst:1638 -msgid "" -"The *file* argument must be an object with a ``write(string)`` method; if it is not present or ``None``, :data:`sys.stdout` " -"will be used. Since printed arguments are converted to text strings, :func:`print` cannot be used with binary mode file " -"objects. For these, use ``file.write(...)`` instead." -msgstr "" -"آرگومان *file* باید شی‌ءای باشد که متد ``write(string)`` را داشته باشد؛ اگر این آرگومان ارائه نشود یا ``None`` باشد، " -"از :data:`sys.stdout` استفاده خواهد شد. از آنجا که آرگومان‌های چاپ‌شده به رشتهٔ متنی تبدیل می‌شوند، :func:`print` را نمی‌توان با " -"اشیای فایل در حالت دودویی استفاده کرد. برای چنین مواردی، به‌جای آن از ``file.write(...)`` استفاده کنید." +msgid "The *file* argument must be an object with a ``write(string)`` method; if it is not present or ``None``, :data:`sys.stdout` will be used. Since printed arguments are converted to text strings, :func:`print` cannot be used with binary mode file objects. For these, use ``file.write(...)`` instead." +msgstr "آرگومان *file* باید شی‌ءای باشد که متد ``write(string)`` را داشته باشد؛ اگر این آرگومان ارائه نشود یا ``None`` باشد، از :data:`sys.stdout` استفاده خواهد شد. از آنجا که آرگومان‌های چاپ‌شده به رشتهٔ متنی تبدیل می‌شوند، :func:`print` را نمی‌توان با اشیای فایل در حالت دودویی استفاده کرد. برای چنین مواردی، به‌جای آن از ``file.write(...)`` استفاده کنید." -#: ../../library/functions.rst:1643 msgid "Output buffering is usually determined by *file*. However, if *flush* is true, the stream is forcibly flushed." -msgstr "" -"بافرگذاری خروجی معمولاً توسط *file* تعیین می‌شود. با این حال، اگر *flush* برابر True باشد، جریان داده به‌اجبار تخلیه می‌شود." +msgstr "بافرگذاری خروجی معمولاً توسط *file* تعیین می‌شود. با این حال، اگر *flush* برابر True باشد، جریان داده به‌اجبار تخلیه می‌شود." -#: ../../library/functions.rst:1647 msgid "Added the *flush* keyword argument." msgstr "آرگومان کلیدواژه‌ای *flush* اضافه شد." -#: ../../library/functions.rst:1653 msgid "Return a property attribute." msgstr "یک ویژگی از نوع property را برمی‌گرداند." -#: ../../library/functions.rst:1655 -msgid "" -"*fget* is a function for getting an attribute value. *fset* is a function for setting an attribute value. *fdel* is a " -"function for deleting an attribute value. And *doc* creates a docstring for the attribute." -msgstr "" -"*fget* تابعی برای دریافت مقدار یک ویژگی است. *fset* تابعی برای تنظیم مقدار یک ویژگی است. *fdel* تابعی برای حذف مقدار یک " -"ویژگی است. همچنین *doc* یک رشتهٔ مستندات برای آن ویژگی ایجاد می‌کند." +msgid "*fget* is a function for getting an attribute value. *fset* is a function for setting an attribute value. *fdel* is a function for deleting an attribute value. And *doc* creates a docstring for the attribute." +msgstr "*fget* تابعی برای دریافت مقدار یک ویژگی است. *fset* تابعی برای تنظیم مقدار یک ویژگی است. *fdel* تابعی برای حذف مقدار یک ویژگی است. همچنین *doc* یک رشتهٔ مستندات برای آن ویژگی ایجاد می‌کند." -#: ../../library/functions.rst:1659 msgid "A typical use is to define a managed attribute ``x``::" msgstr "یک کاربرد رایج، تعریف ویژگی مدیریت‌شدهٔ ``x`` به‌صورت زیر است::" -#: ../../library/functions.rst:1661 msgid "" "class C:\n" " def __init__(self):\n" @@ -2592,24 +1323,12 @@ msgstr "" "\n" " x = property(getx, setx, delx, \"I'm the 'x' property.\")" -#: ../../library/functions.rst:1676 -msgid "" -"If *c* is an instance of *C*, ``c.x`` will invoke the getter, ``c.x = value`` will invoke the setter, and ``del c.x`` the " -"deleter." -msgstr "" -"اگر *c* نمونه‌ای از *C* باشد، عبارت ``c.x`` فراخوانی‌کنندهٔ getter، عبارت ``c.x = value`` فراخوانی‌کنندهٔ setter، و عبارت ``del " -"c.x`` فراخوانی‌کنندهٔ deleter خواهد بود." +msgid "If *c* is an instance of *C*, ``c.x`` will invoke the getter, ``c.x = value`` will invoke the setter, and ``del c.x`` the deleter." +msgstr "اگر *c* نمونه‌ای از *C* باشد، عبارت ``c.x`` فراخوانی‌کنندهٔ getter، عبارت ``c.x = value`` فراخوانی‌کنندهٔ setter، و عبارت ``del c.x`` فراخوانی‌کنندهٔ deleter خواهد بود." -#: ../../library/functions.rst:1679 -msgid "" -"If given, *doc* will be the docstring of the property attribute. Otherwise, the property will copy *fget*'s docstring (if " -"it exists). This makes it possible to create read-only properties easily using :deco:`property` as a :term:`decorator`::" -msgstr "" -"اگر *doc* مشخص شده باشد، به‌عنوان docstring ویژگی property استفاده خواهد شد. در غیر این صورت، property، docstring مربوط به " -"*fget* را (در صورت وجود) کپی می‌کند. این امکان را فراهم می‌کند که با استفاده از :deco:`property` به‌عنوان یک :term:`دکوراتور " -"`، به‌سادگی ویژگی‌های فقط‌خواندنی ایجاد شوند::" +msgid "If given, *doc* will be the docstring of the property attribute. Otherwise, the property will copy *fget*'s docstring (if it exists). This makes it possible to create read-only properties easily using :deco:`property` as a :term:`decorator`::" +msgstr "اگر *doc* مشخص شده باشد، به‌عنوان docstring ویژگی property استفاده خواهد شد. در غیر این صورت، property، docstring مربوط به *fget* را (در صورت وجود) کپی می‌کند. این امکان را فراهم می‌کند که با استفاده از :deco:`property` به‌عنوان یک :term:`دکوراتور `، به‌سادگی ویژگی‌های فقط‌خواندنی ایجاد شوند::" -#: ../../library/functions.rst:1683 msgid "" "class Parrot:\n" " def __init__(self):\n" @@ -2629,24 +1348,12 @@ msgstr "" " \"\"\"Get the current voltage.\"\"\"\n" " return self._voltage" -#: ../../library/functions.rst:1692 -msgid "" -"The ``@property`` decorator turns the :meth:`!voltage` method into a \"getter\" for a read-only attribute with the same " -"name, and it sets the docstring for *voltage* to \"Get the current voltage.\"" -msgstr "" -"تزئین‌کنندهٔ ``@property`` متد :meth:`!voltage` را به یک «getter» برای ویژگی فقط‌خواندنی‌ای با همان نام تبدیل می‌کند و docstring " -"ویژگی *voltage* را روی «Get the current voltage.» تنظیم می‌کند." +msgid "The ``@property`` decorator turns the :meth:`!voltage` method into a \"getter\" for a read-only attribute with the same name, and it sets the docstring for *voltage* to \"Get the current voltage.\"" +msgstr "تزئین‌کنندهٔ ``@property`` متد :meth:`!voltage` را به یک «getter» برای ویژگی فقط‌خواندنی‌ای با همان نام تبدیل می‌کند و docstring ویژگی *voltage* را روی «Get the current voltage.» تنظیم می‌کند." -#: ../../library/functions.rst:1700 -msgid "" -"A property object has ``getter``, ``setter``, and ``deleter`` methods usable as decorators that create a copy of the " -"property with the corresponding accessor function set to the decorated function. This is best explained with an example:" -msgstr "" -"یک شیء property دارای متدهای ``getter``، ``setter`` و ``deleter`` است که می‌توان از آن‌ها به‌عنوان دکوراتور استفاده کرد. این " -"متدها نسخه‌ای از property را ایجاد می‌کنند که تابع دسترسی متناظر آن با تابع دکوراتورشده جایگزین شده است. این موضوع با یک مثال " -"بهتر توضیح داده می‌شود:" +msgid "A property object has ``getter``, ``setter``, and ``deleter`` methods usable as decorators that create a copy of the property with the corresponding accessor function set to the decorated function. This is best explained with an example:" +msgstr "یک شیء property دارای متدهای ``getter``، ``setter`` و ``deleter`` است که می‌توان از آن‌ها به‌عنوان دکوراتور استفاده کرد. این متدها نسخه‌ای از property را ایجاد می‌کنند که تابع دسترسی متناظر آن با تابع دکوراتورشده جایگزین شده است. این موضوع با یک مثال بهتر توضیح داده می‌شود:" -#: ../../library/functions.rst:1705 msgid "" "class C:\n" " def __init__(self):\n" @@ -2682,55 +1389,27 @@ msgstr "" " def x(self):\n" " del self._x" -#: ../../library/functions.rst:1724 -msgid "" -"This code is exactly equivalent to the first example. Be sure to give the additional functions the same name as the " -"original property (``x`` in this case.)" -msgstr "" -"این کد دقیقاً معادل مثال اول است. دقت کنید که توابع اضافی نیز همان نام property اصلی (در این مثال ``x``) را داشته باشند." +msgid "This code is exactly equivalent to the first example. Be sure to give the additional functions the same name as the original property (``x`` in this case.)" +msgstr "این کد دقیقاً معادل مثال اول است. دقت کنید که توابع اضافی نیز همان نام property اصلی (در این مثال ``x``) را داشته باشند." -#: ../../library/functions.rst:1728 -msgid "" -"The returned property object also has the attributes ``fget``, ``fset``, and ``fdel`` corresponding to the constructor " -"arguments." +msgid "The returned property object also has the attributes ``fget``, ``fset``, and ``fdel`` corresponding to the constructor arguments." msgstr "شیء property بازگردانده‌شده همچنین دارای ویژگی‌های ``fget``، ``fset`` و ``fdel`` متناظر با آرگومان‌های سازنده است." -#: ../../library/functions.rst:1731 msgid "The docstrings of property objects are now writeable." msgstr "اکنون docstring اشیای property قابل‌ویرایش است." -#: ../../library/functions.rst:1736 msgid "Attribute holding the name of the property. The name of the property can be changed at runtime." msgstr "ویژگی‌ای که نام property را نگه می‌دارد. نام property را می‌توان در زمان اجرا تغییر داد." -#: ../../library/functions.rst:1747 -msgid "" -"Rather than being a function, :class:`range` is actually an immutable sequence type, as documented in :ref:`typesseq-range` " -"and :ref:`typesseq`." -msgstr "" -":class:`range` در واقع یک نوع دنبالهٔ تغییرناپذیر است، نه یک تابع؛ همان‌گونه که در :ref:`typesseq-range` و :ref:`typesseq` " -"مستند شده است." +msgid "Rather than being a function, :class:`range` is actually an immutable sequence type, as documented in :ref:`typesseq-range` and :ref:`typesseq`." +msgstr ":class:`range` در واقع یک نوع دنبالهٔ تغییرناپذیر است، نه یک تابع؛ همان‌گونه که در :ref:`typesseq-range` و :ref:`typesseq` مستند شده است." -#: ../../library/functions.rst:1753 -msgid "" -"Return a string containing a printable representation of an object. For many types, this function makes an attempt to " -"return a string that would yield an object with the same value when passed to :func:`eval`; otherwise, the representation " -"is a string enclosed in angle brackets that contains the name of the type of the object together with additional " -"information often including the name and address of the object. A class can control what this function returns for its " -"instances by defining a :meth:`~object.__repr__` method. If :func:`sys.displayhook` is not accessible, this function will " -"raise :exc:`RuntimeError`." -msgstr "" -"رشته‌ای را برمی‌گرداند که نمایش قابل چاپی از یک شیء را در بر دارد. برای بسیاری از نوع‌ها، این تابع تلاش می‌کند رشته‌ای برگرداند " -"که اگر به :func:`eval` داده شود، شی‌ءای با همان مقدار تولید کند؛ در غیر این صورت، نمایش به‌صورت رشته‌ای درون کروشه‌های زاویه‌دار " -"خواهد بود که نام نوع شیء و اطلاعات اضافی، که معمولاً شامل نام و نشانی شیء است، در آن قرار دارد. یک کلاس می‌تواند با تعریف " -"متد :meth:`~object.__repr__` مشخص کند که این تابع برای نمونه‌های آن چه مقداری برگرداند. اگر :func:`sys.displayhook` در دسترس " -"نباشد، این تابع استثنای :exc:`RuntimeError` پرتاب می‌کند." +msgid "Return a string containing a printable representation of an object. For many types, this function makes an attempt to return a string that would yield an object with the same value when passed to :func:`eval`; otherwise, the representation is a string enclosed in angle brackets that contains the name of the type of the object together with additional information often including the name and address of the object. A class can control what this function returns for its instances by defining a :meth:`~object.__repr__` method. If :func:`sys.displayhook` is not accessible, this function will raise :exc:`RuntimeError`." +msgstr "رشته‌ای را برمی‌گرداند که نمایش قابل چاپی از یک شیء را در بر دارد. برای بسیاری از نوع‌ها، این تابع تلاش می‌کند رشته‌ای برگرداند که اگر به :func:`eval` داده شود، شی‌ءای با همان مقدار تولید کند؛ در غیر این صورت، نمایش به‌صورت رشته‌ای درون کروشه‌های زاویه‌دار خواهد بود که نام نوع شیء و اطلاعات اضافی، که معمولاً شامل نام و نشانی شیء است، در آن قرار دارد. یک کلاس می‌تواند با تعریف متد :meth:`~object.__repr__` مشخص کند که این تابع برای نمونه‌های آن چه مقداری برگرداند. اگر :func:`sys.displayhook` در دسترس نباشد، این تابع استثنای :exc:`RuntimeError` پرتاب می‌کند." -#: ../../library/functions.rst:1764 msgid "This class has a custom representation that can be evaluated::" msgstr "این کلاس یک نمایش (representation) سفارشی دارد که قابل ارزیابی است::" -#: ../../library/functions.rst:1766 msgid "" "class Person:\n" " def __init__(self, name, age):\n" @@ -2748,196 +1427,81 @@ msgstr "" " def __repr__(self):\n" " return f\"Person('{self.name}', {self.age})\"" -#: ../../library/functions.rst:1777 -msgid "" -"Return a reverse :term:`iterator`. The argument must be an object which has a :meth:`~object.__reversed__` method or " -"supports the sequence protocol (the :meth:`~object.__len__` method and the :meth:`~object.__getitem__` method with integer " -"arguments starting at ``0``)." -msgstr "" -"یک :term:`تکرارگر ` معکوس را برمی‌گرداند. آرگومان باید شی‌ءای باشد که متد :meth:`~object.__reversed__` را داشته " -"باشد یا از پروتکل دنباله (متد :meth:`~object.__len__` و متد :meth:`~object.__getitem__` با آرگومان‌های صحیح که از ``0`` شروع " -"می‌شوند) پشتیبانی کند." +msgid "Return a reverse :term:`iterator`. The argument must be an object which has a :meth:`~object.__reversed__` method or supports the sequence protocol (the :meth:`~object.__len__` method and the :meth:`~object.__getitem__` method with integer arguments starting at ``0``)." +msgstr "یک :term:`تکرارگر ` معکوس را برمی‌گرداند. آرگومان باید شی‌ءای باشد که متد :meth:`~object.__reversed__` را داشته باشد یا از پروتکل دنباله (متد :meth:`~object.__len__` و متد :meth:`~object.__getitem__` با آرگومان‌های صحیح که از ``0`` شروع می‌شوند) پشتیبانی کند." -#: ../../library/functions.rst:1785 -msgid "" -"Return *number* rounded to *ndigits* precision after the decimal point. If *ndigits* is omitted or is ``None``, it returns " -"the nearest integer to its input." -msgstr "" -"*number* را با دقت *ndigits* رقم پس از ممیز گرد می‌کند. اگر *ndigits* حذف شده باشد یا برابر ``None`` باشد، نزدیک‌ترین عدد " -"صحیح به ورودی را برمی‌گرداند." +msgid "Return *number* rounded to *ndigits* precision after the decimal point. If *ndigits* is omitted or is ``None``, it returns the nearest integer to its input." +msgstr "*number* را با دقت *ndigits* رقم پس از ممیز گرد می‌کند. اگر *ndigits* حذف شده باشد یا برابر ``None`` باشد، نزدیک‌ترین عدد صحیح به ورودی را برمی‌گرداند." -#: ../../library/functions.rst:1789 -msgid "" -"For the built-in types supporting :func:`round`, values are rounded to the closest multiple of 10 to the power minus " -"*ndigits*; if two multiples are equally close, rounding is done toward the even choice (so, for example, both " -"``round(0.5)`` and ``round(-0.5)`` are ``0``, and ``round(1.5)`` is ``2``). Any integer value is valid for *ndigits* " -"(positive, zero, or negative). The return value is an integer if *ndigits* is omitted or ``None``. Otherwise, the return " -"value has the same type as *number*." -msgstr "" -"برای انواع توکاری که از :func:`round` پشتیبانی می‌کنند، مقادیر به نزدیک‌ترین مضرب 10 به توان منفی *ndigits* گرد می‌شوند. اگر " -"دو مضرب به یک اندازه نزدیک باشند، گرد کردن به سمت مقدار زوج انجام می‌شود (برای مثال، هر دو عبارت ``round(0.5)`` و " -"``round(-0.5)`` برابر ``0`` هستند و ``round(1.5)`` برابر ``2`` است). هر مقدار صحیحی (مثبت، صفر یا منفی) برای *ndigits* " -"معتبر است. اگر *ndigits* حذف شود یا ``None`` باشد، مقدار بازگشتی یک عدد صحیح خواهد بود. در غیر این صورت، مقدار بازگشتی همان " -"نوع *number* را خواهد داشت." +msgid "For the built-in types supporting :func:`round`, values are rounded to the closest multiple of 10 to the power minus *ndigits*; if two multiples are equally close, rounding is done toward the even choice (so, for example, both ``round(0.5)`` and ``round(-0.5)`` are ``0``, and ``round(1.5)`` is ``2``). Any integer value is valid for *ndigits* (positive, zero, or negative). The return value is an integer if *ndigits* is omitted or ``None``. Otherwise, the return value has the same type as *number*." +msgstr "برای انواع توکاری که از :func:`round` پشتیبانی می‌کنند، مقادیر به نزدیک‌ترین مضرب 10 به توان منفی *ndigits* گرد می‌شوند. اگر دو مضرب به یک اندازه نزدیک باشند، گرد کردن به سمت مقدار زوج انجام می‌شود (برای مثال، هر دو عبارت ``round(0.5)`` و ``round(-0.5)`` برابر ``0`` هستند و ``round(1.5)`` برابر ``2`` است). هر مقدار صحیحی (مثبت، صفر یا منفی) برای *ndigits* معتبر است. اگر *ndigits* حذف شود یا ``None`` باشد، مقدار بازگشتی یک عدد صحیح خواهد بود. در غیر این صورت، مقدار بازگشتی همان نوع *number* را خواهد داشت." -#: ../../library/functions.rst:1798 msgid "For a general Python object ``number``, ``round`` delegates to ``number.__round__``." msgstr "برای یک شیء عمومی پایتون به نام ``number``، تابع ``round`` فراخوانی را به ``number.__round__`` واگذار می‌کند." -#: ../../library/functions.rst:1803 -msgid "" -"The behavior of :func:`round` for floats can be surprising: for example, ``round(2.675, 2)`` gives ``2.67`` instead of the " -"expected ``2.68``. This is not a bug: it's a result of the fact that most decimal fractions can't be represented exactly as " -"a float. See :ref:`tut-fp-issues` for more information." -msgstr "" -"رفتار :func:`round` برای اعداد ممیز شناور ممکن است غافلگیرکننده باشد؛ برای مثال، ``round(2.675, 2)`` به‌جای ``2.68`` مقدار " -"``2.67`` را برمی‌گرداند. این یک باگ نیست؛ بلکه نتیجهٔ این واقعیت است که بیشتر کسرهای ده‌دهی را نمی‌توان به‌طور دقیق به‌صورت عدد " -"ممیز شناور نمایش داد. برای اطلاعات بیشتر به :ref:`tut-fp-issues` مراجعه کنید." +msgid "The behavior of :func:`round` for floats can be surprising: for example, ``round(2.675, 2)`` gives ``2.67`` instead of the expected ``2.68``. This is not a bug: it's a result of the fact that most decimal fractions can't be represented exactly as a float. See :ref:`tut-fp-issues` for more information." +msgstr "رفتار :func:`round` برای اعداد ممیز شناور ممکن است غافلگیرکننده باشد؛ برای مثال، ``round(2.675, 2)`` به‌جای ``2.68`` مقدار ``2.67`` را برمی‌گرداند. این یک باگ نیست؛ بلکه نتیجهٔ این واقعیت است که بیشتر کسرهای ده‌دهی را نمی‌توان به‌طور دقیق به‌صورت عدد ممیز شناور نمایش داد. برای اطلاعات بیشتر به :ref:`tut-fp-issues` مراجعه کنید." -#: ../../library/functions.rst:1814 -msgid "" -"Return a new :class:`set` object, optionally with elements taken from *iterable*. :class:`set` is a built-in class. See " -"also :ref:`types-set` for documentation about this class." -msgstr "" -"یک شیء جدید از نوع :class:`set` را برمی‌گرداند و به صورت اختیاری، عناصر آن از *iterable* گرفته می‌شوند. :class:`set` یک کلاس " -"توکار است. برای مستندات این کلاس، به :ref:`types-set` مراجعه کنید." +msgid "Return a new :class:`set` object, optionally with elements taken from *iterable*. :class:`set` is a built-in class. See also :ref:`types-set` for documentation about this class." +msgstr "یک شیء جدید از نوع :class:`set` را برمی‌گرداند و به صورت اختیاری، عناصر آن از *iterable* گرفته می‌شوند. :class:`set` یک کلاس توکار است. برای مستندات این کلاس، به :ref:`types-set` مراجعه کنید." -#: ../../library/functions.rst:1818 -msgid "" -"For other containers see the built-in :class:`frozenset`, :class:`list`, :class:`tuple`, and :class:`dict` classes, as well " -"as the :mod:`collections` module." -msgstr "" -"برای سایر انواع محفظه‌ها، به کلاس‌های توکار :class:`frozenset`، :class:`list`، :class:`tuple` و :class:`dict`، و همچنین " -"ماژول :mod:`collections` مراجعه کنید." +msgid "For other containers see the built-in :class:`frozenset`, :class:`list`, :class:`tuple`, and :class:`dict` classes, as well as the :mod:`collections` module." +msgstr "برای سایر انواع محفظه‌ها، به کلاس‌های توکار :class:`frozenset`، :class:`list`، :class:`tuple` و :class:`dict`، و همچنین ماژول :mod:`collections` مراجعه کنید." -#: ../../library/functions.rst:1825 -msgid "" -"This is the counterpart of :func:`getattr`. The arguments are an object, a string, and an arbitrary value. The string may " -"name an existing attribute or a new attribute. The function assigns the value to the attribute, provided the object allows " -"it. For example, ``setattr(x, 'foobar', 123)`` is equivalent to ``x.foobar = 123``." -msgstr "" -"این تابع همتای :func:`getattr` است. آرگومان‌های آن یک شیء، یک رشته و یک مقدار دلخواه هستند. رشته می‌تواند نام یک ویژگی موجود " -"یا یک ویژگی جدید باشد. در صورت مجاز بودن، تابع مقدار را به آن ویژگی اختصاص می‌دهد. برای مثال، ``setattr(x, 'foobar', 123)`` " -"معادل ``x.foobar = 123`` است." +msgid "This is the counterpart of :func:`getattr`. The arguments are an object, a string, and an arbitrary value. The string may name an existing attribute or a new attribute. The function assigns the value to the attribute, provided the object allows it. For example, ``setattr(x, 'foobar', 123)`` is equivalent to ``x.foobar = 123``." +msgstr "این تابع همتای :func:`getattr` است. آرگومان‌های آن یک شیء، یک رشته و یک مقدار دلخواه هستند. رشته می‌تواند نام یک ویژگی موجود یا یک ویژگی جدید باشد. در صورت مجاز بودن، تابع مقدار را به آن ویژگی اختصاص می‌دهد. برای مثال، ``setattr(x, 'foobar', 123)`` معادل ``x.foobar = 123`` است." -#: ../../library/functions.rst:1831 -msgid "" -"*name* need not be a Python identifier as defined in :ref:`identifiers` unless the object chooses to enforce that, for " -"example in a custom :meth:`~object.__getattribute__` or via :attr:`~object.__slots__`. An attribute whose name is not an " -"identifier will not be accessible using the dot notation, but is accessible through :func:`getattr` etc.." -msgstr "" -"*name* لازم نیست یک شناسهٔ پایتون، مطابق تعریف :ref:`identifiers`، باشد؛ مگر اینکه خود شیء این موضوع را اعمال کند، برای مثال " -"در یک :meth:`~object.__getattribute__` سفارشی یا از طریق :attr:`~object.__slots__`. ویژگی‌ای که نام آن یک شناسه نباشد، با " -"استفاده از نماد نقطه قابل دسترسی نیست، اما از طریق :func:`getattr` و توابع مشابه قابل دسترسی خواهد بود." +msgid "*name* need not be a Python identifier as defined in :ref:`identifiers` unless the object chooses to enforce that, for example in a custom :meth:`~object.__getattribute__` or via :attr:`~object.__slots__`. An attribute whose name is not an identifier will not be accessible using the dot notation, but is accessible through :func:`getattr` etc.." +msgstr "*name* لازم نیست یک شناسهٔ پایتون، مطابق تعریف :ref:`identifiers`، باشد؛ مگر اینکه خود شیء این موضوع را اعمال کند، برای مثال در یک :meth:`~object.__getattribute__` سفارشی یا از طریق :attr:`~object.__slots__`. ویژگی‌ای که نام آن یک شناسه نباشد، با استفاده از نماد نقطه قابل دسترسی نیست، اما از طریق :func:`getattr` و توابع مشابه قابل دسترسی خواهد بود." -#: ../../library/functions.rst:1839 -msgid "" -"Since :ref:`private name mangling ` happens at compilation time, one must manually mangle a private " -"attribute's (attributes with two leading underscores) name in order to set it with :func:`setattr`." -msgstr "" -"از آنجا که :ref:`تغییر نام خصوصی ` در زمان کامپایل انجام می‌شود، برای تنظیم مقدار یک ویژگی خصوصی " -"(ویژگی‌هایی که با دو زیرخط آغاز می‌شوند) با استفاده از :func:`setattr`، باید نام آن را به‌صورت دستی تغییر دهید." +msgid "Since :ref:`private name mangling ` happens at compilation time, one must manually mangle a private attribute's (attributes with two leading underscores) name in order to set it with :func:`setattr`." +msgstr "از آنجا که :ref:`تغییر نام خصوصی ` در زمان کامپایل انجام می‌شود، برای تنظیم مقدار یک ویژگی خصوصی (ویژگی‌هایی که با دو زیرخط آغاز می‌شوند) با استفاده از :func:`setattr`، باید نام آن را به‌صورت دستی تغییر دهید." -#: ../../library/functions.rst:1848 -msgid "" -"Return a :term:`slice` object representing the set of indices specified by ``range(start, stop, step)``. The *start* and " -"*step* arguments default to ``None``." -msgstr "" -"یک شیء :term:`slice` را برمی‌گرداند که مجموعهٔ اندیس‌های مشخص‌شده توسط ``range(start, stop, step)`` را نمایش می‌دهد. آرگومان‌های " -"*start* و *step* به‌طور پیش‌فرض برابر ``None`` هستند." +msgid "Return a :term:`slice` object representing the set of indices specified by ``range(start, stop, step)``. The *start* and *step* arguments default to ``None``." +msgstr "یک شیء :term:`slice` را برمی‌گرداند که مجموعهٔ اندیس‌های مشخص‌شده توسط ``range(start, stop, step)`` را نمایش می‌دهد. آرگومان‌های *start* و *step* به‌طور پیش‌فرض برابر ``None`` هستند." -#: ../../library/functions.rst:1852 -msgid "" -"Slice objects are also generated when :ref:`slicing syntax ` is used. For example: ``a[start:stop:step]`` or " -"``a[start:stop, i]``." -msgstr "" -"اشیای slice هنگام استفاده از :ref:`نحو برش ` نیز ایجاد می‌شوند. برای مثال: ``a[start:stop:step]`` یا " -"``a[start:stop, i]``." +msgid "Slice objects are also generated when :ref:`slicing syntax ` is used. For example: ``a[start:stop:step]`` or ``a[start:stop, i]``." +msgstr "اشیای slice هنگام استفاده از :ref:`نحو برش ` نیز ایجاد می‌شوند. برای مثال: ``a[start:stop:step]`` یا ``a[start:stop, i]``." -#: ../../library/functions.rst:1855 msgid "See :func:`itertools.islice` for an alternate version that returns an :term:`iterator`." msgstr "برای نسخهٔ جایگزینی که یک :term:`تکرارگر ` برمی‌گرداند، به :func:`itertools.islice` مراجعه کنید." -#: ../../library/functions.rst:1862 -msgid "" -"These read-only attributes are set to the argument values (or their default). They have no other explicit functionality; " -"however, they are used by NumPy and other third-party packages." -msgstr "" -"این ویژگی‌های فقط‌خواندنی بر اساس مقادیر آرگومان‌ها (یا مقادیر پیش‌فرض آن‌ها) تنظیم می‌شوند. خود آن‌ها قابلیت صریح دیگری ندارند؛ " -"بااین‌حال، توسط NumPy و سایر بسته‌های شخص ثالث استفاده می‌شوند." +msgid "These read-only attributes are set to the argument values (or their default). They have no other explicit functionality; however, they are used by NumPy and other third-party packages." +msgstr "این ویژگی‌های فقط‌خواندنی بر اساس مقادیر آرگومان‌ها (یا مقادیر پیش‌فرض آن‌ها) تنظیم می‌شوند. خود آن‌ها قابلیت صریح دیگری ندارند؛ بااین‌حال، توسط NumPy و سایر بسته‌های شخص ثالث استفاده می‌شوند." -#: ../../library/functions.rst:1866 -msgid "" -"Slice objects are now :term:`hashable` (provided :attr:`~slice.start`, :attr:`~slice.stop`, and :attr:`~slice.step` are " -"hashable)." -msgstr "" -"اشیای slice اکنون :term:`هش‌پذیر ` هستند (به شرطی که :attr:`~slice.start`، :attr:`~slice.stop` " -"و :attr:`~slice.step` نیز هش‌پذیر باشند)." +msgid "Slice objects are now :term:`hashable` (provided :attr:`~slice.start`, :attr:`~slice.stop`, and :attr:`~slice.step` are hashable)." +msgstr "اشیای slice اکنون :term:`هش‌پذیر ` هستند (به شرطی که :attr:`~slice.start`، :attr:`~slice.stop` و :attr:`~slice.step` نیز هش‌پذیر باشند)." -#: ../../library/functions.rst:1872 msgid "Return a new sorted list from the items in *iterable*." msgstr "یک فهرست مرتب‌شدهٔ جدید از عناصر *iterable* را برمی‌گرداند." -#: ../../library/functions.rst:1874 msgid "Has two optional arguments which must be specified as keyword arguments." msgstr "دارای دو آرگومان اختیاری است که باید به‌صورت آرگومان‌های کلیدواژه‌ای مشخص شوند." -#: ../../library/functions.rst:1876 -msgid "" -"*key* specifies a function of one argument that is used to extract a comparison key from each element in *iterable* (for " -"example, ``key=str.lower``). The default value is ``None`` (compare the elements directly)." -msgstr "" -"*key* تابعی با یک آرگومان را مشخص می‌کند که برای استخراج یک کلید مقایسه از هر عنصر در *iterable* استفاده می‌شود (برای مثال، " -"``key=str.lower``). مقدار پیش‌فرض آن ``None`` است (در این حالت، عناصر مستقیماً با یکدیگر مقایسه می‌شوند)." +msgid "*key* specifies a function of one argument that is used to extract a comparison key from each element in *iterable* (for example, ``key=str.lower``). The default value is ``None`` (compare the elements directly)." +msgstr "*key* تابعی با یک آرگومان را مشخص می‌کند که برای استخراج یک کلید مقایسه از هر عنصر در *iterable* استفاده می‌شود (برای مثال، ``key=str.lower``). مقدار پیش‌فرض آن ``None`` است (در این حالت، عناصر مستقیماً با یکدیگر مقایسه می‌شوند)." -#: ../../library/functions.rst:1880 -msgid "" -"*reverse* is a boolean value. If set to ``True``, then the list elements are sorted as if each comparison were reversed." -msgstr "" -"*reverse* یک مقدار بولی است. اگر برابر ``True`` باشد، عناصر فهرست به گونه‌ای مرتب می‌شوند که گویی نتیجهٔ هر مقایسه معکوس شده " -"است." +msgid "*reverse* is a boolean value. If set to ``True``, then the list elements are sorted as if each comparison were reversed." +msgstr "*reverse* یک مقدار بولی است. اگر برابر ``True`` باشد، عناصر فهرست به گونه‌ای مرتب می‌شوند که گویی نتیجهٔ هر مقایسه معکوس شده است." -#: ../../library/functions.rst:1883 msgid "Use :func:`functools.cmp_to_key` to convert an old-style *cmp* function to a *key* function." msgstr "برای تبدیل یک تابع *cmp* به سبک قدیمی به یک تابع *key*، از :func:`functools.cmp_to_key` استفاده کنید." -#: ../../library/functions.rst:1886 -msgid "" -"The built-in :func:`sorted` function is guaranteed to be stable. A sort is stable if it guarantees not to change the " -"relative order of elements that compare equal --- this is helpful for sorting in multiple passes (for example, sort by " -"department, then by salary grade)." -msgstr "" -"تابع توکار :func:`sorted` تضمین می‌کند که مرتب‌سازی پایدار باشد. مرتب‌سازی پایدار به این معناست که ترتیب نسبی عناصری که با هم " -"برابر مقایسه می‌شوند تغییر نمی‌کند؛ این ویژگی برای مرتب‌سازی چندمرحله‌ای (برای مثال، ابتدا بر اساس دپارتمان و سپس بر اساس ردهٔ " -"حقوق) مفید است." +msgid "The built-in :func:`sorted` function is guaranteed to be stable. A sort is stable if it guarantees not to change the relative order of elements that compare equal --- this is helpful for sorting in multiple passes (for example, sort by department, then by salary grade)." +msgstr "تابع توکار :func:`sorted` تضمین می‌کند که مرتب‌سازی پایدار باشد. مرتب‌سازی پایدار به این معناست که ترتیب نسبی عناصری که با هم برابر مقایسه می‌شوند تغییر نمی‌کند؛ این ویژگی برای مرتب‌سازی چندمرحله‌ای (برای مثال، ابتدا بر اساس دپارتمان و سپس بر اساس ردهٔ حقوق) مفید است." -#: ../../library/functions.rst:1891 -msgid "" -"The sort algorithm uses only ``<`` comparisons between items. While defining an :meth:`~object.__lt__` method will suffice " -"for sorting, :PEP:`8` recommends that all six :ref:`rich comparisons ` be implemented. This will help avoid " -"bugs when using the same data with other ordering tools such as :func:`max` that rely on a different underlying method. " -"Implementing all six comparisons also helps avoid confusion for mixed type comparisons which can call the " -"reflected :meth:`~object.__gt__` method." -msgstr "" -"الگوریتم مرتب‌سازی تنها از مقایسه‌های ``<`` بین عناصر استفاده می‌کند. هرچند تعریف متد :meth:`~object.__lt__` برای مرتب‌سازی " -"کافی است، :PEP:`8` توصیه می‌کند که هر شش عملگر :ref:`مقایسهٔ غنی ` پیاده‌سازی شوند. این کار به جلوگیری از بروز " -"خطا هنگام استفاده از همان داده‌ها با ابزارهای مرتب‌سازی دیگری مانند :func:`max` که به متد زیربنایی متفاوتی متکی هستند کمک " -"می‌کند. همچنین، پیاده‌سازی هر شش مقایسه از سردرگمی در مقایسهٔ انواع مختلف که ممکن است متد بازتابی :meth:`~object.__gt__` را " -"فراخوانی کنند جلوگیری می‌کند." +msgid "The sort algorithm uses only ``<`` comparisons between items. While defining an :meth:`~object.__lt__` method will suffice for sorting, :PEP:`8` recommends that all six :ref:`rich comparisons ` be implemented. This will help avoid bugs when using the same data with other ordering tools such as :func:`max` that rely on a different underlying method. Implementing all six comparisons also helps avoid confusion for mixed type comparisons which can call the reflected :meth:`~object.__gt__` method." +msgstr "الگوریتم مرتب‌سازی تنها از مقایسه‌های ``<`` بین عناصر استفاده می‌کند. هرچند تعریف متد :meth:`~object.__lt__` برای مرتب‌سازی کافی است، :PEP:`8` توصیه می‌کند که هر شش عملگر :ref:`مقایسهٔ غنی ` پیاده‌سازی شوند. این کار به جلوگیری از بروز خطا هنگام استفاده از همان داده‌ها با ابزارهای مرتب‌سازی دیگری مانند :func:`max` که به متد زیربنایی متفاوتی متکی هستند کمک می‌کند. همچنین، پیاده‌سازی هر شش مقایسه از سردرگمی در مقایسهٔ انواع مختلف که ممکن است متد بازتابی :meth:`~object.__gt__` را فراخوانی کنند جلوگیری می‌کند." -#: ../../library/functions.rst:1900 msgid "For sorting examples and a brief sorting tutorial, see :ref:`sortinghowto`." msgstr "برای مثال‌هایی از مرتب‌سازی و یک آموزش کوتاه دربارهٔ آن، به :ref:`sortinghowto` مراجعه کنید." -#: ../../library/functions.rst:1904 msgid "Transform a method into a static method." msgstr "یک متد را به متد ایستا تبدیل می‌کند." -#: ../../library/functions.rst:1906 msgid "A static method does not receive an implicit first argument. To declare a static method, use this idiom::" msgstr "یک متد ایستا نخستین آرگومان ضمنی دریافت نمی‌کند. برای تعریف یک متد ایستا، از الگوی زیر استفاده کنید::" -#: ../../library/functions.rst:1909 msgid "" "class C:\n" " @staticmethod\n" @@ -2947,38 +1511,18 @@ msgstr "" " @staticmethod\n" " def f(arg1, arg2, argN): ..." -#: ../../library/functions.rst:1913 msgid "The ``@staticmethod`` form is a function :term:`decorator` -- see :ref:`function` for details." msgstr "شکل ``@staticmethod`` یک :term:`تزئین‌کننده ` تابع است؛ برای جزئیات به :ref:`function` مراجعه کنید." -#: ../../library/functions.rst:1916 -msgid "" -"A static method can be called either on the class (such as ``C.f()``) or on an instance (such as ``C().f()``). Moreover, " -"the static method :term:`descriptor` is also callable, so it can be used in the class definition (such as ``f()``)." -msgstr "" -"یک متد ایستا را می‌توان هم روی خود کلاس (مانند ``C.f()``) و هم روی یک نمونه (مانند ``C().f()``) فراخوانی کرد. علاوه بر " -"این، :term:`توصیفگر ` متد ایستا نیز فراخوانی‌پذیر است؛ بنابراین می‌توان از آن در تعریف کلاس (مانند ``f()``) " -"استفاده کرد." +msgid "A static method can be called either on the class (such as ``C.f()``) or on an instance (such as ``C().f()``). Moreover, the static method :term:`descriptor` is also callable, so it can be used in the class definition (such as ``f()``)." +msgstr "یک متد ایستا را می‌توان هم روی خود کلاس (مانند ``C.f()``) و هم روی یک نمونه (مانند ``C().f()``) فراخوانی کرد. علاوه بر این، :term:`توصیفگر ` متد ایستا نیز فراخوانی‌پذیر است؛ بنابراین می‌توان از آن در تعریف کلاس (مانند ``f()``) استفاده کرد." -#: ../../library/functions.rst:1921 -msgid "" -"Static methods in Python are similar to those found in Java or C++. Also, see :deco:`classmethod` for a variant that is " -"useful for creating alternate class constructors." -msgstr "" -"متدهای ایستا در پایتون مشابه متدهای ایستای موجود در جاوا یا ++C هستند. همچنین، برای گونه‌ای که در ایجاد سازنده‌های جایگزین " -"برای کلاس مفید است، به :deco:`classmethod` مراجعه کنید." +msgid "Static methods in Python are similar to those found in Java or C++. Also, see :deco:`classmethod` for a variant that is useful for creating alternate class constructors." +msgstr "متدهای ایستا در پایتون مشابه متدهای ایستای موجود در جاوا یا ++C هستند. همچنین، برای گونه‌ای که در ایجاد سازنده‌های جایگزین برای کلاس مفید است، به :deco:`classmethod` مراجعه کنید." -#: ../../library/functions.rst:1925 -msgid "" -"Like all decorators, it is also possible to call ``staticmethod`` as a regular function and do something with its result. " -"This is needed in some cases where you need a reference to a function from a class body and you want to avoid the automatic " -"transformation to instance method. For these cases, use this idiom::" -msgstr "" -"مانند همهٔ دکوراتورها، می‌توان ``staticmethod`` را نیز به‌صورت یک تابع معمولی فراخوانی کرد و از نتیجهٔ آن استفاده نمود. این کار " -"در برخی موارد که به ارجاعی به یک تابع از درون بدنهٔ کلاس نیاز دارید و می‌خواهید از تبدیل خودکار آن به متد نمونه جلوگیری کنید، " -"ضروری است. در چنین مواردی، از الگوی زیر استفاده کنید::" +msgid "Like all decorators, it is also possible to call ``staticmethod`` as a regular function and do something with its result. This is needed in some cases where you need a reference to a function from a class body and you want to avoid the automatic transformation to instance method. For these cases, use this idiom::" +msgstr "مانند همهٔ دکوراتورها، می‌توان ``staticmethod`` را نیز به‌صورت یک تابع معمولی فراخوانی کرد و از نتیجهٔ آن استفاده نمود. این کار در برخی موارد که به ارجاعی به یک تابع از درون بدنهٔ کلاس نیاز دارید و می‌خواهید از تبدیل خودکار آن به متد نمونه جلوگیری کنید، ضروری است. در چنین مواردی، از الگوی زیر استفاده کنید::" -#: ../../library/functions.rst:1931 msgid "" "def regular_function():\n" " ...\n" @@ -2992,147 +1536,60 @@ msgstr "" "class C:\n" " method = staticmethod(regular_function)" -#: ../../library/functions.rst:1937 msgid "For more information on static methods, see :ref:`types`." msgstr "برای اطلاعات بیشتر دربارهٔ متدهای ایستا، به :ref:`types` مراجعه کنید." -#: ../../library/functions.rst:1939 -msgid "" -"Static methods now inherit the method attributes " -"(:attr:`~function.__module__`, :attr:`~function.__name__`, :attr:`~function.__qualname__`, :attr:`~function.__doc__` " -"and :attr:`~function.__annotations__`), have a new ``__wrapped__`` attribute, and are now callable as regular functions." -msgstr "" -"متدهای ایستا اکنون ویژگی‌های متد " -"(:attr:`~function.__module__`، :attr:`~function.__name__`، :attr:`~function.__qualname__`، :attr:`~function.__doc__` " -"و :attr:`~function.__annotations__`) را به ارث می‌برند، دارای ویژگی جدید ``__wrapped__`` هستند و همچنین اکنون مانند توابع " -"معمولی قابل فراخوانی‌اند." +msgid "Static methods now inherit the method attributes (:attr:`~function.__module__`, :attr:`~function.__name__`, :attr:`~function.__qualname__`, :attr:`~function.__doc__` and :attr:`~function.__annotations__`), have a new ``__wrapped__`` attribute, and are now callable as regular functions." +msgstr "متدهای ایستا اکنون ویژگی‌های متد (:attr:`~function.__module__`، :attr:`~function.__name__`، :attr:`~function.__qualname__`، :attr:`~function.__doc__` و :attr:`~function.__annotations__`) را به ارث می‌برند، دارای ویژگی جدید ``__wrapped__`` هستند و همچنین اکنون مانند توابع معمولی قابل فراخوانی‌اند." -#: ../../library/functions.rst:1957 msgid "Return a :class:`str` version of *object*. See :func:`str` for details." msgstr "نسخه‌ای از *object* از نوع :class:`str` را برمی‌گرداند. برای جزئیات بیشتر، به :func:`str` مراجعه کنید." -#: ../../library/functions.rst:1959 msgid "``str`` is the built-in string :term:`class`. For general information about strings, see :ref:`textseq`." msgstr "``str`` :term:`کلاس ` رشتهٔ توکار پایتون است. برای اطلاعات کلی دربارهٔ رشته‌ها، :ref:`textseq` را ببینید." -#: ../../library/functions.rst:1965 -msgid "" -"Sums *start* and the items of an *iterable* from left to right and returns the total. The *iterable*'s items are normally " -"numbers, and the start value is not allowed to be a string." -msgstr "" -"*start* و عناصر *iterable* را از چپ به راست با هم جمع می‌کند و مجموع را برمی‌گرداند. عناصر *iterable* معمولاً عدد هستند و " -"مقدار *start* مجاز نیست رشته باشد." +msgid "Sums *start* and the items of an *iterable* from left to right and returns the total. The *iterable*'s items are normally numbers, and the start value is not allowed to be a string." +msgstr "*start* و عناصر *iterable* را از چپ به راست با هم جمع می‌کند و مجموع را برمی‌گرداند. عناصر *iterable* معمولاً عدد هستند و مقدار *start* مجاز نیست رشته باشد." -#: ../../library/functions.rst:1969 -msgid "" -"For some use cases, there are good alternatives to :func:`sum`. The preferred, fast way to concatenate a sequence of " -"strings is by calling ``''.join(sequence)``. To add floating-point values with extended precision, " -"see :func:`math.fsum`\\. To concatenate a series of iterables, consider using :func:`itertools.chain`." -msgstr "" -"برای برخی کاربردها، جایگزین‌های مناسبی برای :func:`sum` وجود دارد. روش ترجیحی و سریع برای به‌هم‌چسباندن یک دنباله از رشته‌ها، " -"فراخوانی ``''.join(sequence)`` است. برای جمع کردن اعداد ممیز شناور با دقت بیشتر، به :func:`math.fsum` مراجعه کنید. همچنین " -"برای به‌هم‌پیوستن مجموعه‌ای از تکرارپذیرها، استفاده از :func:`itertools.chain` را در نظر بگیرید." +msgid "For some use cases, there are good alternatives to :func:`sum`. The preferred, fast way to concatenate a sequence of strings is by calling ``''.join(sequence)``. To add floating-point values with extended precision, see :func:`math.fsum`\\. To concatenate a series of iterables, consider using :func:`itertools.chain`." +msgstr "برای برخی کاربردها، جایگزین‌های مناسبی برای :func:`sum` وجود دارد. روش ترجیحی و سریع برای به‌هم‌چسباندن یک دنباله از رشته‌ها، فراخوانی ``''.join(sequence)`` است. برای جمع کردن اعداد ممیز شناور با دقت بیشتر، به :func:`math.fsum` مراجعه کنید. همچنین برای به‌هم‌پیوستن مجموعه‌ای از تکرارپذیرها، استفاده از :func:`itertools.chain` را در نظر بگیرید." -#: ../../library/functions.rst:1975 msgid "The *start* parameter can be specified as a keyword argument." msgstr "پارامتر *start* را می‌توان به‌صورت آرگومان کلیدواژه‌ای مشخص کرد." -#: ../../library/functions.rst:1978 msgid "Summation of floats switched to an algorithm that gives higher accuracy and better commutativity on most builds." -msgstr "" -"الگوریتم جمع اعداد ممیز شناور به الگوریتمی تغییر یافته است که در بیشتر نسخه‌های ساخت (buildها)، دقت بیشتر و جابجاپذیری بهتری " -"فراهم می‌کند." +msgstr "الگوریتم جمع اعداد ممیز شناور به الگوریتمی تغییر یافته است که در بیشتر نسخه‌های ساخت (buildها)، دقت بیشتر و جابجاپذیری بهتری فراهم می‌کند." -#: ../../library/functions.rst:1981 msgid "Added specialization for summation of complexes, using same algorithm as for summation of floats." msgstr "بهینه‌سازی ویژه‌ای برای جمع اعداد مختلط، با استفاده از همان الگوریتم جمع اعداد اعشاری، اضافه شد." -#: ../../library/functions.rst:1989 -msgid "" -"Return a proxy object that delegates method calls to a parent or sibling class of *type*. This is useful for accessing " -"inherited methods that have been overridden in a class." -msgstr "" -"یک شیء واسط را برمی‌گرداند که فراخوانی متدها را به یک کلاس والد یا هم‌ردهٔ *type* واگذار می‌کند. این قابلیت برای دسترسی به " -"متدهای به‌ارث‌رسیده‌ای که در یک کلاس بازنویسی شده‌اند، مفید است." +msgid "Return a proxy object that delegates method calls to a parent or sibling class of *type*. This is useful for accessing inherited methods that have been overridden in a class." +msgstr "یک شیء واسط را برمی‌گرداند که فراخوانی متدها را به یک کلاس والد یا هم‌ردهٔ *type* واگذار می‌کند. این قابلیت برای دسترسی به متدهای به‌ارث‌رسیده‌ای که در یک کلاس بازنویسی شده‌اند، مفید است." -#: ../../library/functions.rst:1993 -msgid "" -"The *object_or_type* determines the :term:`method resolution order` to be searched. The search starts from the class right " -"after the *type*." -msgstr "" -"*object_or_type* ترتیب :term:`حل متد ` را که باید جست‌وجو شود تعیین می‌کند. جست‌وجو از کلاسی که " -"بلافاصله پس از *type* قرار دارد آغاز می‌شود." +msgid "The *object_or_type* determines the :term:`method resolution order` to be searched. The search starts from the class right after the *type*." +msgstr "*object_or_type* ترتیب :term:`حل متد ` را که باید جست‌وجو شود تعیین می‌کند. جست‌وجو از کلاسی که بلافاصله پس از *type* قرار دارد آغاز می‌شود." -#: ../../library/functions.rst:1997 -msgid "" -"For example, if :attr:`~type.__mro__` of *object_or_type* is ``D -> B -> C -> A -> object`` and the value of *type* is " -"``B``, then :func:`super` searches ``C -> A -> object``." -msgstr "" -"برای مثال، اگر :attr:`~type.__mro__` مربوط به *object_or_type* برابر با ``D -> B -> C -> A -> object`` باشد و مقدار *type* " -"برابر ``B`` باشد، در این صورت :func:`super` در مسیر ``C -> A -> object`` جست‌وجو می‌کند." +msgid "For example, if :attr:`~type.__mro__` of *object_or_type* is ``D -> B -> C -> A -> object`` and the value of *type* is ``B``, then :func:`super` searches ``C -> A -> object``." +msgstr "برای مثال، اگر :attr:`~type.__mro__` مربوط به *object_or_type* برابر با ``D -> B -> C -> A -> object`` باشد و مقدار *type* برابر ``B`` باشد، در این صورت :func:`super` در مسیر ``C -> A -> object`` جست‌وجو می‌کند." -#: ../../library/functions.rst:2001 -msgid "" -"The :attr:`~type.__mro__` attribute of the class corresponding to *object_or_type* lists the method resolution search order " -"used by both :func:`getattr` and :func:`super`. The attribute is dynamic and can change whenever the inheritance hierarchy " -"is updated." -msgstr "" -"ویژگی :attr:`~type.__mro__` کلاس متناظر با *object_or_type* ترتیب جست‌وجوی حل متد را که هم توسط :func:`getattr` و هم " -"توسط :func:`super` استفاده می‌شود، فهرست می‌کند. این ویژگی پویا است و هر زمان که سلسله‌مراتب وراثت تغییر کند، ممکن است تغییر " -"یابد." +msgid "The :attr:`~type.__mro__` attribute of the class corresponding to *object_or_type* lists the method resolution search order used by both :func:`getattr` and :func:`super`. The attribute is dynamic and can change whenever the inheritance hierarchy is updated." +msgstr "ویژگی :attr:`~type.__mro__` کلاس متناظر با *object_or_type* ترتیب جست‌وجوی حل متد را که هم توسط :func:`getattr` و هم توسط :func:`super` استفاده می‌شود، فهرست می‌کند. این ویژگی پویا است و هر زمان که سلسله‌مراتب وراثت تغییر کند، ممکن است تغییر یابد." -#: ../../library/functions.rst:2006 -msgid "" -"If the second argument is omitted, the super object returned is unbound. If the second argument is an object, " -"``isinstance(obj, type)`` must be true. If the second argument is a type, ``issubclass(type2, type)`` must be true (this " -"is useful for classmethods)." -msgstr "" -"اگر آرگومان دوم حذف شود، شیء super بازگردانده‌شده بدون اتصال (unbound) خواهد بود. اگر آرگومان دوم یک شیء باشد، باید " -"``isinstance(obj, type)`` برقرار باشد. اگر آرگومان دوم یک نوع (type) باشد، باید ``issubclass(type2, type)`` برقرار باشد " -"(این مورد برای متدهای کلاس مفید است)." +msgid "If the second argument is omitted, the super object returned is unbound. If the second argument is an object, ``isinstance(obj, type)`` must be true. If the second argument is a type, ``issubclass(type2, type)`` must be true (this is useful for classmethods)." +msgstr "اگر آرگومان دوم حذف شود، شیء super بازگردانده‌شده بدون اتصال (unbound) خواهد بود. اگر آرگومان دوم یک شیء باشد، باید ``isinstance(obj, type)`` برقرار باشد. اگر آرگومان دوم یک نوع (type) باشد، باید ``issubclass(type2, type)`` برقرار باشد (این مورد برای متدهای کلاس مفید است)." -#: ../../library/functions.rst:2011 -msgid "" -"When called directly within an ordinary method of a class, both arguments may be omitted (\"zero-argument :func:`!" -"super`\"). In this case, *type* will be the enclosing class, and *obj* will be the first argument of the immediately " -"enclosing function (typically ``self``). (This means that zero-argument :func:`!super` will not work as expected within " -"nested functions, including generator expressions, which implicitly create nested functions.)" -msgstr "" -"هنگامی که این تابع مستقیماً درون یک متد معمولیِ یک کلاس فراخوانی شود، هر دو آرگومان را می‌توان حذف کرد («:func:`!super` بدون " -"آرگومان»). در این حالت، *type* همان کلاسِ محصورکننده خواهد بود و *obj* اولین آرگومانِ تابعِ بلافاصله محصورکننده (معمولاً " -"``self``) خواهد بود. (این بدان معناست که :func:`!super` بدون آرگومان در توابع تو‌در‌تو، از جمله عبارت‌های تولیدگر که به‌طور " -"ضمنی توابع تو‌در‌تو ایجاد می‌کنند، مطابق انتظار عمل نخواهد کرد.)" +msgid "When called directly within an ordinary method of a class, both arguments may be omitted (\"zero-argument :func:`!super`\"). In this case, *type* will be the enclosing class, and *obj* will be the first argument of the immediately enclosing function (typically ``self``). (This means that zero-argument :func:`!super` will not work as expected within nested functions, including generator expressions, which implicitly create nested functions.)" +msgstr "هنگامی که این تابع مستقیماً درون یک متد معمولیِ یک کلاس فراخوانی شود، هر دو آرگومان را می‌توان حذف کرد («:func:`!super` بدون آرگومان»). در این حالت، *type* همان کلاسِ محصورکننده خواهد بود و *obj* اولین آرگومانِ تابعِ بلافاصله محصورکننده (معمولاً ``self``) خواهد بود. (این بدان معناست که :func:`!super` بدون آرگومان در توابع تو‌در‌تو، از جمله عبارت‌های تولیدگر که به‌طور ضمنی توابع تو‌در‌تو ایجاد می‌کنند، مطابق انتظار عمل نخواهد کرد.)" -#: ../../library/functions.rst:2018 -msgid "" -"There are two typical use cases for *super*. In a class hierarchy with single inheritance, *super* can be used to refer to " -"parent classes without naming them explicitly, thus making the code more maintainable. This use closely parallels the use " -"of *super* in other programming languages." -msgstr "" -"دو کاربرد متداول برای *super* وجود دارد. در سلسله‌مراتب کلاسی با وراثت تکی، می‌توان از *super* برای ارجاع به کلاس‌های والد " -"بدون نام بردن صریح از آن‌ها استفاده کرد و در نتیجه نگهداری کد را آسان‌تر ساخت. این کاربرد بسیار مشابه استفاده از *super* در " -"سایر زبان‌های برنامه‌نویسی است." +msgid "There are two typical use cases for *super*. In a class hierarchy with single inheritance, *super* can be used to refer to parent classes without naming them explicitly, thus making the code more maintainable. This use closely parallels the use of *super* in other programming languages." +msgstr "دو کاربرد متداول برای *super* وجود دارد. در سلسله‌مراتب کلاسی با وراثت تکی، می‌توان از *super* برای ارجاع به کلاس‌های والد بدون نام بردن صریح از آن‌ها استفاده کرد و در نتیجه نگهداری کد را آسان‌تر ساخت. این کاربرد بسیار مشابه استفاده از *super* در سایر زبان‌های برنامه‌نویسی است." -#: ../../library/functions.rst:2023 -msgid "" -"The second use case is to support cooperative multiple inheritance in a dynamic execution environment. This use case is " -"unique to Python and is not found in statically compiled languages or languages that only support single inheritance. This " -"makes it possible to implement \"diamond diagrams\" where multiple base classes implement the same method. Good design " -"dictates that such implementations have the same calling signature in every case (because the order of calls is determined " -"at runtime, because that order adapts to changes in the class hierarchy, and because that order can include sibling classes " -"that are unknown prior to runtime)." -msgstr "" -"کاربرد متداول دوم، پشتیبانی از وراثت چندگانهٔ مشارکتی در یک محیط اجرای پویا است. این کاربرد مختص پایتون است و در زبان‌های " -"کامپایل‌شوندهٔ ایستا یا زبان‌هایی که فقط از وراثت تکی پشتیبانی می‌کنند وجود ندارد. این قابلیت امکان پیاده‌سازی «الگوهای الماسی» " -"را فراهم می‌کند؛ جایی که چندین کلاس پایه یک متد یکسان را پیاده‌سازی می‌کنند. طراحی مناسب ایجاب می‌کند که چنین پیاده‌سازی‌هایی در " -"همهٔ موارد امضای فراخوانی یکسانی داشته باشند (زیرا ترتیب فراخوانی‌ها در زمان اجرا تعیین می‌شود، با تغییرات سلسله‌مراتب کلاس " -"تطبیق می‌یابد و ممکن است شامل کلاس‌های هم‌سطحی باشد که پیش از زمان اجرا ناشناخته هستند)." +msgid "The second use case is to support cooperative multiple inheritance in a dynamic execution environment. This use case is unique to Python and is not found in statically compiled languages or languages that only support single inheritance. This makes it possible to implement \"diamond diagrams\" where multiple base classes implement the same method. Good design dictates that such implementations have the same calling signature in every case (because the order of calls is determined at runtime, because that order adapts to changes in the class hierarchy, and because that order can include sibling classes that are unknown prior to runtime)." +msgstr "کاربرد متداول دوم، پشتیبانی از وراثت چندگانهٔ مشارکتی در یک محیط اجرای پویا است. این کاربرد مختص پایتون است و در زبان‌های کامپایل‌شوندهٔ ایستا یا زبان‌هایی که فقط از وراثت تکی پشتیبانی می‌کنند وجود ندارد. این قابلیت امکان پیاده‌سازی «الگوهای الماسی» را فراهم می‌کند؛ جایی که چندین کلاس پایه یک متد یکسان را پیاده‌سازی می‌کنند. طراحی مناسب ایجاب می‌کند که چنین پیاده‌سازی‌هایی در همهٔ موارد امضای فراخوانی یکسانی داشته باشند (زیرا ترتیب فراخوانی‌ها در زمان اجرا تعیین می‌شود، با تغییرات سلسله‌مراتب کلاس تطبیق می‌یابد و ممکن است شامل کلاس‌های هم‌سطحی باشد که پیش از زمان اجرا ناشناخته هستند)." -#: ../../library/functions.rst:2033 msgid "For both use cases, a typical superclass call looks like this::" msgstr "در هر دو مورد استفاده، یک فراخوانی معمول به ابرکلاس به صورت زیر است::" -#: ../../library/functions.rst:2035 msgid "" "class C(B):\n" " def method(self, arg):\n" @@ -3144,169 +1601,75 @@ msgstr "" " super().method(arg) # This does the same thing as:\n" " # super(C, self).method(arg)" -#: ../../library/functions.rst:2040 -msgid "" -"In addition to method lookups, :func:`super` also works for attribute lookups. One possible use case for this is " -"calling :term:`descriptors ` in a parent or sibling class." -msgstr "" -"علاوه بر جست‌وجوی متدها، :func:`super` برای جست‌وجوی ویژگی‌ها نیز عمل می‌کند. یکی از کاربردهای ممکن آن، " -"فراخوانی :term:`توصیفگرها ` در یک کلاس والد یا هم‌رده است." +msgid "In addition to method lookups, :func:`super` also works for attribute lookups. One possible use case for this is calling :term:`descriptors ` in a parent or sibling class." +msgstr "علاوه بر جست‌وجوی متدها، :func:`super` برای جست‌وجوی ویژگی‌ها نیز عمل می‌کند. یکی از کاربردهای ممکن آن، فراخوانی :term:`توصیفگرها ` در یک کلاس والد یا هم‌رده است." -#: ../../library/functions.rst:2044 -msgid "" -"Note that :func:`super` is implemented as part of the binding process for explicit dotted attribute lookups such as " -"``super().__getitem__(name)``. It does so by implementing its own :meth:`~object.__getattribute__` method for searching " -"classes in a predictable order that supports cooperative multiple inheritance. Accordingly, :func:`super` is undefined for " -"implicit lookups using statements or operators such as ``super()[name]``." -msgstr "" -"توجه داشته باشید که :func:`super` به‌عنوان بخشی از فرایند اتصال برای جست‌وجوی صریح ویژگی‌ها با نماد نقطه، مانند " -"``super().__getitem__(name)``, پیاده‌سازی شده است. این کار از طریق پیاده‌سازی متد :meth:`~object.__getattribute__` خودش انجام " -"می‌شود تا کلاس‌ها را با ترتیبی قابل پیش‌بینی جست‌وجو کند؛ ترتیبی که از وراثت چندگانهٔ مشارکتی (cooperative multiple inheritance) " -"پشتیبانی می‌کند. بر این اساس، رفتار :func:`super` برای جست‌وجوهای ضمنی که با دستورها یا عملگرهایی مانند ``super()[name]`` " -"انجام می‌شوند، تعریف نشده است." +msgid "Note that :func:`super` is implemented as part of the binding process for explicit dotted attribute lookups such as ``super().__getitem__(name)``. It does so by implementing its own :meth:`~object.__getattribute__` method for searching classes in a predictable order that supports cooperative multiple inheritance. Accordingly, :func:`super` is undefined for implicit lookups using statements or operators such as ``super()[name]``." +msgstr "توجه داشته باشید که :func:`super` به‌عنوان بخشی از فرایند اتصال برای جست‌وجوی صریح ویژگی‌ها با نماد نقطه، مانند ``super().__getitem__(name)``, پیاده‌سازی شده است. این کار از طریق پیاده‌سازی متد :meth:`~object.__getattribute__` خودش انجام می‌شود تا کلاس‌ها را با ترتیبی قابل پیش‌بینی جست‌وجو کند؛ ترتیبی که از وراثت چندگانهٔ مشارکتی (cooperative multiple inheritance) پشتیبانی می‌کند. بر این اساس، رفتار :func:`super` برای جست‌وجوهای ضمنی که با دستورها یا عملگرهایی مانند ``super()[name]`` انجام می‌شوند، تعریف نشده است." -#: ../../library/functions.rst:2052 -msgid "" -"Also note that, aside from the zero argument form, :func:`super` is not limited to use inside methods. The two argument " -"form specifies the arguments exactly and makes the appropriate references. The zero argument form only works inside a " -"class definition, as the compiler fills in the necessary details to correctly retrieve the class being defined, as well as " -"accessing the current instance for ordinary methods." -msgstr "" -"همچنین توجه داشته باشید که، به‌جز حالت بدون آرگومان، :func:`super` محدود به استفاده درون متدها نیست. شکل دوآرگومانی، " -"آرگومان‌ها را دقیقاً همان‌گونه که داده شده‌اند استفاده کرده و ارجاعات مناسب را ایجاد می‌کند. شکل بدون آرگومان فقط درون تعریف یک " -"کلاس کار می‌کند، زیرا کامپایلر جزئیات لازم را برای بازیابی صحیح کلاس در حال تعریف و همچنین دسترسی به نمونهٔ فعلی در متدهای " -"معمولی به‌طور خودکار فراهم می‌کند." +msgid "Also note that, aside from the zero argument form, :func:`super` is not limited to use inside methods. The two argument form specifies the arguments exactly and makes the appropriate references. The zero argument form only works inside a class definition, as the compiler fills in the necessary details to correctly retrieve the class being defined, as well as accessing the current instance for ordinary methods." +msgstr "همچنین توجه داشته باشید که، به‌جز حالت بدون آرگومان، :func:`super` محدود به استفاده درون متدها نیست. شکل دوآرگومانی، آرگومان‌ها را دقیقاً همان‌گونه که داده شده‌اند استفاده کرده و ارجاعات مناسب را ایجاد می‌کند. شکل بدون آرگومان فقط درون تعریف یک کلاس کار می‌کند، زیرا کامپایلر جزئیات لازم را برای بازیابی صحیح کلاس در حال تعریف و همچنین دسترسی به نمونهٔ فعلی در متدهای معمولی به‌طور خودکار فراهم می‌کند." -#: ../../library/functions.rst:2059 -msgid "" -"For practical suggestions on how to design cooperative classes using :func:`super`, see `guide to using super() `_." -msgstr "" -"برای پیشنهادهای کاربردی دربارهٔ طراحی کلاس‌های مشارکتی با استفاده از :func:`super`، به `راهنمای استفاده از super() `_ مراجعه کنید." +msgid "For practical suggestions on how to design cooperative classes using :func:`super`, see `guide to using super() `_." +msgstr "برای پیشنهادهای کاربردی دربارهٔ طراحی کلاس‌های مشارکتی با استفاده از :func:`super`، به `راهنمای استفاده از super() `_ مراجعه کنید." -#: ../../library/functions.rst:2063 msgid ":class:`super` objects are now :mod:`pickleable ` and :mod:`copyable `." msgstr "اکنون اشیای :class:`super` از :mod:`سریال‌سازی با pickle ` و :mod:`کپی شدن ` پشتیبانی می‌کنند." -#: ../../library/functions.rst:2072 -msgid "" -"Rather than being a function, :class:`tuple` is actually an immutable sequence type, as documented in :ref:`typesseq-tuple` " -"and :ref:`typesseq`." -msgstr "" -":class:`tuple` در واقع یک نوع دنبالهٔ تغییرناپذیر است، نه یک تابع؛ همان‌گونه که در :ref:`typesseq-tuple` و :ref:`typesseq` " -"مستند شده است." +msgid "Rather than being a function, :class:`tuple` is actually an immutable sequence type, as documented in :ref:`typesseq-tuple` and :ref:`typesseq`." +msgstr ":class:`tuple` در واقع یک نوع دنبالهٔ تغییرناپذیر است، نه یک تابع؛ همان‌گونه که در :ref:`typesseq-tuple` و :ref:`typesseq` مستند شده است." -#: ../../library/functions.rst:2081 -msgid "" -"With one argument, return the type of an *object*. The return value is a type object and generally the same object as " -"returned by :attr:`object.__class__`." -msgstr "" -"در صورت ارسال یک آرگومان، نوعِ یک *object* را بازمی‌گرداند. مقدار بازگشتی یک شیء از نوع type است و معمولاً همان شی‌ءای است که " -"توسط :attr:`object.__class__` بازگردانده می‌شود." +msgid "With one argument, return the type of an *object*. The return value is a type object and generally the same object as returned by :attr:`object.__class__`." +msgstr "در صورت ارسال یک آرگومان، نوعِ یک *object* را بازمی‌گرداند. مقدار بازگشتی یک شیء از نوع type است و معمولاً همان شی‌ءای است که توسط :attr:`object.__class__` بازگردانده می‌شود." -#: ../../library/functions.rst:2085 -msgid "" -"The :func:`isinstance` built-in function is recommended for testing the type of an object, because it takes subclasses into " -"account." +msgid "The :func:`isinstance` built-in function is recommended for testing the type of an object, because it takes subclasses into account." msgstr "برای بررسی نوع یک شیء، استفاده از تابع توکار :func:`isinstance` توصیه می‌شود، زیرا زیرکلاس‌ها را نیز در نظر می‌گیرد." -#: ../../library/functions.rst:2088 -msgid "" -"With three arguments, return a new type object. This is essentially a dynamic form of the :keyword:`class` statement. The " -"*name* string is the class name and becomes the :attr:`~type.__name__` attribute. The *bases* tuple contains the base " -"classes and becomes the :attr:`~type.__bases__` attribute; if empty, :class:`object`, the ultimate base of all classes, is " -"added. The *dict* dictionary contains attribute and method definitions for the class body; it may be copied or wrapped " -"before becoming the :attr:`~type.__dict__` attribute. The following two statements create identical :class:`!type` objects:" -msgstr "" -"در صورت ارسال سه آرگومان، یک شیء type جدید بازمی‌گرداند. این در واقع شکل پویای دستور :keyword:`class` است. رشتهٔ *name* نام " -"کلاس را مشخص می‌کند و به ویژگی :attr:`~type.__name__` تبدیل می‌شود. تاپل *bases* کلاس‌های پایه را در خود نگه می‌دارد و به " -"ویژگی :attr:`~type.__bases__` تبدیل می‌شود؛ اگر خالی باشد، :class:`object`، که کلاس پایهٔ نهایی همهٔ کلاس‌ها است، به آن افزوده " -"می‌شود. دیکشنری *dict* شامل تعریف ویژگی‌ها و متدهای بدنهٔ کلاس است؛ این دیکشنری ممکن است پیش از تبدیل شدن به " -"ویژگی :attr:`~type.__dict__` کپی یا در یک wrapper قرار داده شود. دو دستور زیر اشیای :class:`!type` یکسانی ایجاد می‌کنند:" +msgid "With three arguments, return a new type object. This is essentially a dynamic form of the :keyword:`class` statement. The *name* string is the class name and becomes the :attr:`~type.__name__` attribute. The *bases* tuple contains the base classes and becomes the :attr:`~type.__bases__` attribute; if empty, :class:`object`, the ultimate base of all classes, is added. The *dict* dictionary contains attribute and method definitions for the class body; it may be copied or wrapped before becoming the :attr:`~type.__dict__` attribute. The following two statements create identical :class:`!type` objects:" +msgstr "در صورت ارسال سه آرگومان، یک شیء type جدید بازمی‌گرداند. این در واقع شکل پویای دستور :keyword:`class` است. رشتهٔ *name* نام کلاس را مشخص می‌کند و به ویژگی :attr:`~type.__name__` تبدیل می‌شود. تاپل *bases* کلاس‌های پایه را در خود نگه می‌دارد و به ویژگی :attr:`~type.__bases__` تبدیل می‌شود؛ اگر خالی باشد، :class:`object`، که کلاس پایهٔ نهایی همهٔ کلاس‌ها است، به آن افزوده می‌شود. دیکشنری *dict* شامل تعریف ویژگی‌ها و متدهای بدنهٔ کلاس است؛ این دیکشنری ممکن است پیش از تبدیل شدن به ویژگی :attr:`~type.__dict__` کپی یا در یک wrapper قرار داده شود. دو دستور زیر اشیای :class:`!type` یکسانی ایجاد می‌کنند:" -#: ../../library/functions.rst:2103 msgid "See also:" msgstr "همچنین ببینید:" -#: ../../library/functions.rst:2105 msgid ":ref:`Documentation on attributes and methods on classes `." msgstr ":ref:`مستندات ویژگی‌ها و متدهای کلاس‌ها `." -#: ../../library/functions.rst:2106 msgid ":ref:`bltin-type-objects`" msgstr ":ref:`bltin-type-objects`" -#: ../../library/functions.rst:2108 -msgid "" -"Keyword arguments provided to the three argument form are passed to the appropriate metaclass machinery " -"(usually :meth:`~object.__init_subclass__`) in the same way that keywords in a class definition (besides *metaclass*) would." -msgstr "" -"آرگومان‌های کلیدواژه‌ای که به شکل سه‌آرگومانی ارسال می‌شوند، همانند کلیدواژه‌های موجود در تعریف یک کلاس (به‌جز *فراکلاس*) به " -"سازوکار مناسب فراداده (معمولاً :meth:`~object.__init_subclass__`) ارسال می‌شوند." +msgid "Keyword arguments provided to the three argument form are passed to the appropriate metaclass machinery (usually :meth:`~object.__init_subclass__`) in the same way that keywords in a class definition (besides *metaclass*) would." +msgstr "آرگومان‌های کلیدواژه‌ای که به شکل سه‌آرگومانی ارسال می‌شوند، همانند کلیدواژه‌های موجود در تعریف یک کلاس (به‌جز *فراکلاس*) به سازوکار مناسب فراداده (معمولاً :meth:`~object.__init_subclass__`) ارسال می‌شوند." -#: ../../library/functions.rst:2113 -msgid "" -"Unlike a :keyword:`class` statement, the three argument form does not call the metaclass ``__prepare__`` method " -"(see :ref:`prepare`). Use :func:`types.new_class` to dynamically create a class using the appropriate metaclass." -msgstr "" -"برخلاف دستور :keyword:`class`، فرم سه‌آرگومانی متد ``__prepare__`` فراکلاس را فراخوانی نمی‌کند (به :ref:`prepare` مراجعه " -"کنید). برای ایجاد پویای یک کلاس با استفاده از فراکلاس مناسب، از :func:`types.new_class` استفاده کنید." +msgid "Unlike a :keyword:`class` statement, the three argument form does not call the metaclass ``__prepare__`` method (see :ref:`prepare`). Use :func:`types.new_class` to dynamically create a class using the appropriate metaclass." +msgstr "برخلاف دستور :keyword:`class`، فرم سه‌آرگومانی متد ``__prepare__`` فراکلاس را فراخوانی نمی‌کند (به :ref:`prepare` مراجعه کنید). برای ایجاد پویای یک کلاس با استفاده از فراکلاس مناسب، از :func:`types.new_class` استفاده کنید." -#: ../../library/functions.rst:2118 msgid "See also :ref:`class-customization`." msgstr "همچنین به :ref:`class-customization` مراجعه کنید." -#: ../../library/functions.rst:2120 -msgid "" -"Subclasses of :class:`!type` which don't override ``type.__new__`` may no longer use the one-argument form to get the type " -"of an object." -msgstr "" -"زیرکلاس‌های :class:`!type` که ``type.__new__`` را بازنویسی نمی‌کنند، دیگر نمی‌توانند از شکل تک‌آرگومانی برای دریافت نوع یک شیء " -"استفاده کنند." +msgid "Subclasses of :class:`!type` which don't override ``type.__new__`` may no longer use the one-argument form to get the type of an object." +msgstr "زیرکلاس‌های :class:`!type` که ``type.__new__`` را بازنویسی نمی‌کنند، دیگر نمی‌توانند از شکل تک‌آرگومانی برای دریافت نوع یک شیء استفاده کنند." -#: ../../library/functions.rst:2127 -msgid "" -"Return the :attr:`~object.__dict__` attribute for a module, class, instance, or any other object with a :attr:`!__dict__` " -"attribute." -msgstr "" -"ویژگی :attr:`~object.__dict__` یک ماژول، کلاس، نمونه یا هر شیء دیگری که دارای ویژگی :attr:`!__dict__` باشد را برمی‌گرداند." +msgid "Return the :attr:`~object.__dict__` attribute for a module, class, instance, or any other object with a :attr:`!__dict__` attribute." +msgstr "ویژگی :attr:`~object.__dict__` یک ماژول، کلاس، نمونه یا هر شیء دیگری که دارای ویژگی :attr:`!__dict__` باشد را برمی‌گرداند." -#: ../../library/functions.rst:2130 -msgid "" -"Objects such as modules and instances have an updateable :attr:`~object.__dict__` attribute; however, other objects may " -"have write restrictions on their :attr:`!__dict__` attributes (for example, classes use a :class:`types.MappingProxyType` " -"to prevent direct dictionary updates)." -msgstr "" -"اشیایی مانند ماژول‌ها و نمونه‌ها دارای ویژگی :attr:`~object.__dict__` قابل‌به‌روزرسانی هستند؛ با این حال، برخی اشیای دیگر ممکن " -"است محدودیت‌هایی برای نوشتن در ویژگی :attr:`!__dict__` خود داشته باشند (برای مثال، کلاس‌ها از :class:`types.MappingProxyType` " -"برای جلوگیری از به‌روزرسانی مستقیم دیکشنری استفاده می‌کنند)." +msgid "Objects such as modules and instances have an updateable :attr:`~object.__dict__` attribute; however, other objects may have write restrictions on their :attr:`!__dict__` attributes (for example, classes use a :class:`types.MappingProxyType` to prevent direct dictionary updates)." +msgstr "اشیایی مانند ماژول‌ها و نمونه‌ها دارای ویژگی :attr:`~object.__dict__` قابل‌به‌روزرسانی هستند؛ با این حال، برخی اشیای دیگر ممکن است محدودیت‌هایی برای نوشتن در ویژگی :attr:`!__dict__` خود داشته باشند (برای مثال، کلاس‌ها از :class:`types.MappingProxyType` برای جلوگیری از به‌روزرسانی مستقیم دیکشنری استفاده می‌کنند)." -#: ../../library/functions.rst:2135 msgid "Without an argument, :func:`vars` acts like :func:`locals`." msgstr "در صورت نداشتن آرگومان، :func:`vars` همانند :func:`locals` عمل می‌کند." -#: ../../library/functions.rst:2137 -msgid "" -"A :exc:`TypeError` exception is raised if an object is specified but it doesn't have a :attr:`~object.__dict__` attribute " -"(for example, if its class defines the :attr:`~object.__slots__` attribute)." -msgstr "" -"اگر شی‌ءای مشخص شود اما دارای ویژگی :attr:`~object.__dict__` نباشد (برای مثال، اگر کلاس آن ویژگی :attr:`~object.__slots__` " -"را تعریف کرده باشد)، استثنای :exc:`TypeError` پرتاب می‌شود." +msgid "A :exc:`TypeError` exception is raised if an object is specified but it doesn't have a :attr:`~object.__dict__` attribute (for example, if its class defines the :attr:`~object.__slots__` attribute)." +msgstr "اگر شی‌ءای مشخص شود اما دارای ویژگی :attr:`~object.__dict__` نباشد (برای مثال، اگر کلاس آن ویژگی :attr:`~object.__slots__` را تعریف کرده باشد)، استثنای :exc:`TypeError` پرتاب می‌شود." -#: ../../library/functions.rst:2143 msgid "The result of calling this function without an argument has been updated as described for the :func:`locals` builtin." msgstr "نتیجهٔ فراخوانی این تابع بدون آرگومان، مطابق توضیحات ارائه‌شده برای تابع توکار :func:`locals` به‌روزرسانی شده است." -#: ../../library/functions.rst:2149 msgid "Iterate over several iterables in parallel, producing tuples with an item from each one." msgstr "روی چندین تکرارپذیر به‌طور هم‌زمان پیمایش می‌کند و تاپل‌هایی تولید می‌کند که هر یک شامل یک عنصر از هر تکرارپذیر هستند." -#: ../../library/functions.rst:2152 msgid "Example::" msgstr "مثال::" -#: ../../library/functions.rst:2154 msgid "" ">>> for item in zip([1, 2, 3], ['sugar', 'spice', 'everything nice']):\n" "... print(item)\n" @@ -3322,49 +1685,21 @@ msgstr "" "(2, 'spice')\n" "(3, 'everything nice')" -#: ../../library/functions.rst:2161 -msgid "" -"More formally: :func:`zip` returns an iterator of tuples, where the *i*-th tuple contains the *i*-th element from each of " -"the argument iterables." -msgstr "" -"به‌طور دقیق‌تر، :func:`zip` یک تکرارگر از تاپل‌ها برمی‌گرداند که در آن، تاپل *i*\\ ام شامل عنصر *i*\\ ام از هر یک از " -"تکرارپذیرهای آرگومان‌ها است." +msgid "More formally: :func:`zip` returns an iterator of tuples, where the *i*-th tuple contains the *i*-th element from each of the argument iterables." +msgstr "به‌طور دقیق‌تر، :func:`zip` یک تکرارگر از تاپل‌ها برمی‌گرداند که در آن، تاپل *i*\\ ام شامل عنصر *i*\\ ام از هر یک از تکرارپذیرهای آرگومان‌ها است." -#: ../../library/functions.rst:2164 -msgid "" -"Another way to think of :func:`zip` is that it turns rows into columns, and columns into rows. This is similar to " -"`transposing a matrix `_." -msgstr "" -"راه دیگری برای درک :func:`zip` این است که سطرها را به ستون‌ها و ستون‌ها را به سطرها تبدیل می‌کند. این کار مشابه `ترانهادهٔ یک " -"ماتریس `_ است." +msgid "Another way to think of :func:`zip` is that it turns rows into columns, and columns into rows. This is similar to `transposing a matrix `_." +msgstr "راه دیگری برای درک :func:`zip` این است که سطرها را به ستون‌ها و ستون‌ها را به سطرها تبدیل می‌کند. این کار مشابه `ترانهادهٔ یک ماتریس `_ است." -#: ../../library/functions.rst:2168 -msgid "" -":func:`zip` is lazy: The elements won't be processed until the iterable is iterated on, e.g. by a :keyword:`!for` loop or " -"by wrapping in a :class:`list`." -msgstr "" -":func:`zip` تنبل است؛ عناصر تا زمانی که روی تکرارپذیر پیمایش انجام نشود، پردازش نمی‌شوند؛ برای مثال، با یک حلقهٔ :keyword:`!" -"for` یا با قرار دادن آن در :class:`list`." +msgid ":func:`zip` is lazy: The elements won't be processed until the iterable is iterated on, e.g. by a :keyword:`!for` loop or by wrapping in a :class:`list`." +msgstr ":func:`zip` تنبل است؛ عناصر تا زمانی که روی تکرارپذیر پیمایش انجام نشود، پردازش نمی‌شوند؛ برای مثال، با یک حلقهٔ :keyword:`!for` یا با قرار دادن آن در :class:`list`." -#: ../../library/functions.rst:2172 -msgid "" -"One thing to consider is that the iterables passed to :func:`zip` could have different lengths; sometimes by design, and " -"sometimes because of a bug in the code that prepared these iterables. Python offers three different approaches to dealing " -"with this issue:" -msgstr "" -"یکی از نکاتی که باید در نظر داشت این است که تکرارپذیرهای ارسال‌شده به :func:`zip` ممکن است طول‌های متفاوتی داشته باشند؛ گاهی " -"این موضوع عمدی است و گاهی به دلیل وجود یک باگ در کدی است که این تکرارپذیرها را آماده کرده است. پایتون سه روش مختلف برای " -"برخورد با این مسئله ارائه می‌دهد:" +msgid "One thing to consider is that the iterables passed to :func:`zip` could have different lengths; sometimes by design, and sometimes because of a bug in the code that prepared these iterables. Python offers three different approaches to dealing with this issue:" +msgstr "یکی از نکاتی که باید در نظر داشت این است که تکرارپذیرهای ارسال‌شده به :func:`zip` ممکن است طول‌های متفاوتی داشته باشند؛ گاهی این موضوع عمدی است و گاهی به دلیل وجود یک باگ در کدی است که این تکرارپذیرها را آماده کرده است. پایتون سه روش مختلف برای برخورد با این مسئله ارائه می‌دهد:" -#: ../../library/functions.rst:2177 -msgid "" -"By default, :func:`zip` stops when the shortest iterable is exhausted. It will ignore the remaining items in the longer " -"iterables, cutting off the result to the length of the shortest iterable::" -msgstr "" -"به‌طور پیش‌فرض، :func:`zip` زمانی متوقف می‌شود که کوتاه‌ترین تکرارپذیر به پایان برسد. در این حالت، عناصر باقی‌مانده در " -"تکرارپذیرهای بلندتر نادیده گرفته می‌شوند و طول نتیجه برابر با طول کوتاه‌ترین تکرارپذیر خواهد بود::" +msgid "By default, :func:`zip` stops when the shortest iterable is exhausted. It will ignore the remaining items in the longer iterables, cutting off the result to the length of the shortest iterable::" +msgstr "به‌طور پیش‌فرض، :func:`zip` زمانی متوقف می‌شود که کوتاه‌ترین تکرارپذیر به پایان برسد. در این حالت، عناصر باقی‌مانده در تکرارپذیرهای بلندتر نادیده گرفته می‌شوند و طول نتیجه برابر با طول کوتاه‌ترین تکرارپذیر خواهد بود::" -#: ../../library/functions.rst:2181 msgid "" ">>> list(zip(range(3), ['fee', 'fi', 'fo', 'fum']))\n" "[(0, 'fee'), (1, 'fi'), (2, 'fo')]" @@ -3372,15 +1707,9 @@ msgstr "" ">>> list(zip(range(3), ['fee', 'fi', 'fo', 'fum']))\n" "[(0, 'fee'), (1, 'fi'), (2, 'fo')]" -#: ../../library/functions.rst:2184 -msgid "" -":func:`zip` is often used in cases where the iterables are assumed to be of equal length. In such cases, it's recommended " -"to use the ``strict=True`` option. Its output is the same as regular :func:`zip`::" -msgstr "" -"از :func:`zip` اغلب در مواردی استفاده می‌شود که فرض بر این است تکرارپذیرها طول یکسانی دارند. در چنین مواردی، توصیه می‌شود از " -"گزینهٔ ``strict=True`` استفاده کنید. خروجی آن با :func:`zip` معمولی یکسان است::" +msgid ":func:`zip` is often used in cases where the iterables are assumed to be of equal length. In such cases, it's recommended to use the ``strict=True`` option. Its output is the same as regular :func:`zip`::" +msgstr "از :func:`zip` اغلب در مواردی استفاده می‌شود که فرض بر این است تکرارپذیرها طول یکسانی دارند. در چنین مواردی، توصیه می‌شود از گزینهٔ ``strict=True`` استفاده کنید. خروجی آن با :func:`zip` معمولی یکسان است::" -#: ../../library/functions.rst:2188 msgid "" ">>> list(zip(('a', 'b', 'c'), (1, 2, 3), strict=True))\n" "[('a', 1), ('b', 2), ('c', 3)]" @@ -3388,54 +1717,27 @@ msgstr "" ">>> list(zip(('a', 'b', 'c'), (1, 2, 3), strict=True))\n" "[('a', 1), ('b', 2), ('c', 3)]" -#: ../../library/functions.rst:2191 msgid "Unlike the default behavior, it raises a :exc:`ValueError` if one iterable is exhausted before the others:" msgstr "برخلاف رفتار پیش‌فرض، اگر یکی از تکرارپذیرها پیش از بقیه به پایان برسد، استثنای :exc:`ValueError` پرتاب می‌کند:" -#: ../../library/functions.rst:2209 -msgid "" -"Without the ``strict=True`` argument, any bug that results in iterables of different lengths will be silenced, possibly " -"manifesting as a hard-to-find bug in another part of the program." -msgstr "" -"بدون آرگومان ``strict=True``، هر اشکالی که باعث شود تکرارشونده‌ها طول‌های متفاوتی داشته باشند، بی‌صدا نادیده گرفته می‌شود و " -"ممکن است در بخش دیگری از برنامه به‌صورت یک باگ دشوار برای یافتن ظاهر شود." +msgid "Without the ``strict=True`` argument, any bug that results in iterables of different lengths will be silenced, possibly manifesting as a hard-to-find bug in another part of the program." +msgstr "بدون آرگومان ``strict=True``، هر اشکالی که باعث شود تکرارشونده‌ها طول‌های متفاوتی داشته باشند، بی‌صدا نادیده گرفته می‌شود و ممکن است در بخش دیگری از برنامه به‌صورت یک باگ دشوار برای یافتن ظاهر شود." -#: ../../library/functions.rst:2213 -msgid "" -"Shorter iterables can be padded with a constant value to make all the iterables have the same length. This is done " -"by :func:`itertools.zip_longest`." -msgstr "" -"می‌توان تکرارپذیرهای کوتاه‌تر را با یک مقدار ثابت پُر کرد تا همهٔ تکرارپذیرها طول یکسانی داشته باشند. این کار " -"توسط :func:`itertools.zip_longest` انجام می‌شود." +msgid "Shorter iterables can be padded with a constant value to make all the iterables have the same length. This is done by :func:`itertools.zip_longest`." +msgstr "می‌توان تکرارپذیرهای کوتاه‌تر را با یک مقدار ثابت پُر کرد تا همهٔ تکرارپذیرها طول یکسانی داشته باشند. این کار توسط :func:`itertools.zip_longest` انجام می‌شود." -#: ../../library/functions.rst:2217 -msgid "" -"Edge cases: With a single iterable argument, :func:`zip` returns an iterator of 1-tuples. With no arguments, it returns an " -"empty iterator." -msgstr "" -"حالت‌های خاص: اگر فقط یک آرگومان تکرارپذیر به :func:`zip` داده شود، یک تکرارگر از تاپل‌های تک‌عضوی برمی‌گرداند. اگر هیچ " -"آرگومانی داده نشود، یک تکرارگر خالی برمی‌گرداند." +msgid "Edge cases: With a single iterable argument, :func:`zip` returns an iterator of 1-tuples. With no arguments, it returns an empty iterator." +msgstr "حالت‌های خاص: اگر فقط یک آرگومان تکرارپذیر به :func:`zip` داده شود، یک تکرارگر از تاپل‌های تک‌عضوی برمی‌گرداند. اگر هیچ آرگومانی داده نشود، یک تکرارگر خالی برمی‌گرداند." -#: ../../library/functions.rst:2220 msgid "Tips and tricks:" msgstr "نکته‌ها و ترفندها:" -#: ../../library/functions.rst:2222 -msgid "" -"The left-to-right evaluation order of the iterables is guaranteed. This makes possible an idiom for clustering a data " -"series into n-length groups using ``zip(*[iter(s)]*n, strict=True)``. This repeats the *same* iterator ``n`` times so that " -"each output tuple has the result of ``n`` calls to the iterator. This has the effect of dividing the input into n-length " -"chunks." -msgstr "" -"ترتیب ارزیابی تکرارپذیرها از چپ به راست تضمین شده است. این موضوع امکان استفاده از الگوی ``zip(*[iter(s)]*n, strict=True)`` " -"را برای گروه‌بندی یک دنبالهٔ داده به گروه‌هایی با طول n فراهم می‌کند. در این روش، *همان* تکرارگر ``n`` بار تکرار می‌شود تا هر " -"تاپل خروجی حاصل ``n`` فراخوانی از همان تکرارگر باشد. نتیجهٔ این کار تقسیم ورودی به قطعاتی با طول n است." +msgid "The left-to-right evaluation order of the iterables is guaranteed. This makes possible an idiom for clustering a data series into n-length groups using ``zip(*[iter(s)]*n, strict=True)``. This repeats the *same* iterator ``n`` times so that each output tuple has the result of ``n`` calls to the iterator. This has the effect of dividing the input into n-length chunks." +msgstr "ترتیب ارزیابی تکرارپذیرها از چپ به راست تضمین شده است. این موضوع امکان استفاده از الگوی ``zip(*[iter(s)]*n, strict=True)`` را برای گروه‌بندی یک دنبالهٔ داده به گروه‌هایی با طول n فراهم می‌کند. در این روش، *همان* تکرارگر ``n`` بار تکرار می‌شود تا هر تاپل خروجی حاصل ``n`` فراخوانی از همان تکرارگر باشد. نتیجهٔ این کار تقسیم ورودی به قطعاتی با طول n است." -#: ../../library/functions.rst:2228 msgid ":func:`zip` in conjunction with the ``*`` operator can be used to unzip a list::" msgstr "می‌توان از :func:`zip` همراه با عملگر ``*`` برای بازکردن یک فهرست استفاده کرد::" -#: ../../library/functions.rst:2231 msgid "" ">>> x = [1, 2, 3]\n" ">>> y = [4, 5, 6]\n" @@ -3453,92 +1755,42 @@ msgstr "" ">>> x == list(x2) and y == list(y2)\n" "True" -#: ../../library/functions.rst:2239 msgid "Added the ``strict`` argument." msgstr "آرگومان ``strict`` اضافه شد." -#: ../../library/functions.rst:2251 -msgid "" -"This is an advanced function that is not needed in everyday Python programming, unlike :func:`importlib.import_module`." -msgstr "" -"این تابع پیشرفته‌ای است که برخلاف :func:`importlib.import_module` در برنامه‌نویسی روزمرهٔ پایتون معمولاً به آن نیازی نخواهید " -"داشت." +msgid "This is an advanced function that is not needed in everyday Python programming, unlike :func:`importlib.import_module`." +msgstr "این تابع پیشرفته‌ای است که برخلاف :func:`importlib.import_module` در برنامه‌نویسی روزمرهٔ پایتون معمولاً به آن نیازی نخواهید داشت." -#: ../../library/functions.rst:2254 -msgid "" -"This function is invoked by the :keyword:`import` statement. It can be replaced (by importing the :mod:`builtins` module " -"and assigning to ``builtins.__import__``) in order to change semantics of the :keyword:`!import` statement, but doing so is " -"**strongly** discouraged as it is usually simpler to use import hooks (see :pep:`302`) to attain the same goals and does " -"not cause issues with code which assumes the default import implementation is in use. Direct use of :func:`__import__` is " -"also discouraged in favor of :func:`importlib.import_module`." -msgstr "" -"این تابع توسط دستور :keyword:`import` فراخوانی می‌شود. برای تغییر معنای دستور :keyword:`!import` می‌توان آن را (با وارد کردن " -"ماژول :mod:`builtins` و انتساب به ``builtins.__import__``) جایگزین کرد، اما انجام این کار **اکیداً توصیه نمی‌شود**، زیرا " -"معمولاً استفاده از import hookها (به :pep:`302` مراجعه کنید) برای دستیابی به همان هدف ساده‌تر است و با کدی که فرض می‌کند " -"پیاده‌سازی پیش‌فرض import در حال استفاده است نیز مشکلی ایجاد نمی‌کند. همچنین استفادهٔ مستقیم از :func:`__import__` به " -"نفع :func:`importlib.import_module` توصیه نمی‌شود." +msgid "This function is invoked by the :keyword:`import` statement. It can be replaced (by importing the :mod:`builtins` module and assigning to ``builtins.__import__``) in order to change semantics of the :keyword:`!import` statement, but doing so is **strongly** discouraged as it is usually simpler to use import hooks (see :pep:`302`) to attain the same goals and does not cause issues with code which assumes the default import implementation is in use. Direct use of :func:`__import__` is also discouraged in favor of :func:`importlib.import_module`." +msgstr "این تابع توسط دستور :keyword:`import` فراخوانی می‌شود. برای تغییر معنای دستور :keyword:`!import` می‌توان آن را (با وارد کردن ماژول :mod:`builtins` و انتساب به ``builtins.__import__``) جایگزین کرد، اما انجام این کار **اکیداً توصیه نمی‌شود**، زیرا معمولاً استفاده از import hookها (به :pep:`302` مراجعه کنید) برای دستیابی به همان هدف ساده‌تر است و با کدی که فرض می‌کند پیاده‌سازی پیش‌فرض import در حال استفاده است نیز مشکلی ایجاد نمی‌کند. همچنین استفادهٔ مستقیم از :func:`__import__` به نفع :func:`importlib.import_module` توصیه نمی‌شود." -#: ../../library/functions.rst:2263 -msgid "" -"The function imports the module *name*, potentially using the given *globals* and *locals* to determine how to interpret " -"the name in a package context. The *fromlist* gives the names of objects or submodules that should be imported from the " -"module given by *name*. The standard implementation does not use its *locals* argument at all and uses its *globals* only " -"to determine the package context of the :keyword:`import` statement." -msgstr "" -"این تابع ماژول *name* را ایمپورت می‌کند و در صورت نیاز از *globals* و *locals* داده‌شده برای تعیین نحوهٔ تفسیر نام در زمینهٔ یک " -"بسته استفاده می‌کند. آرگومان *fromlist* نام اشیا یا زیرماژول‌هایی را مشخص می‌کند که باید از ماژول مشخص‌شده توسط *name* وارد " -"شوند. پیاده‌سازی استاندارد اصلاً از آرگومان *locals* استفاده نمی‌کند و از *globals* تنها برای تعیین زمینهٔ بسته در " -"دستور :keyword:`import` بهره می‌برد." +msgid "The function imports the module *name*, potentially using the given *globals* and *locals* to determine how to interpret the name in a package context. The *fromlist* gives the names of objects or submodules that should be imported from the module given by *name*. The standard implementation does not use its *locals* argument at all and uses its *globals* only to determine the package context of the :keyword:`import` statement." +msgstr "این تابع ماژول *name* را ایمپورت می‌کند و در صورت نیاز از *globals* و *locals* داده‌شده برای تعیین نحوهٔ تفسیر نام در زمینهٔ یک بسته استفاده می‌کند. آرگومان *fromlist* نام اشیا یا زیرماژول‌هایی را مشخص می‌کند که باید از ماژول مشخص‌شده توسط *name* وارد شوند. پیاده‌سازی استاندارد اصلاً از آرگومان *locals* استفاده نمی‌کند و از *globals* تنها برای تعیین زمینهٔ بسته در دستور :keyword:`import` بهره می‌برد." -#: ../../library/functions.rst:2270 -msgid "" -"*level* specifies whether to use absolute or relative imports. ``0`` (the default) means only perform absolute imports. " -"Positive values for *level* indicate the number of parent directories to search relative to the directory of the module " -"calling :func:`__import__` (see :pep:`328` for the details)." -msgstr "" -"*level* مشخص می‌کند که از ایمپورت مطلق استفاده شود یا نسبی. مقدار ``0`` (که مقدار پیش‌فرض است) به این معناست که فقط ایمپورت " -"مطلق انجام شود. مقادیر مثبت برای *level* تعداد پوشه‌های والد را مشخص می‌کنند که باید نسبت به پوشهٔ ماژولی " -"که :func:`__import__` را فراخوانی کرده است جست‌وجو شوند (برای جزئیات، :pep:`328` را ببینید)." +msgid "*level* specifies whether to use absolute or relative imports. ``0`` (the default) means only perform absolute imports. Positive values for *level* indicate the number of parent directories to search relative to the directory of the module calling :func:`__import__` (see :pep:`328` for the details)." +msgstr "*level* مشخص می‌کند که از ایمپورت مطلق استفاده شود یا نسبی. مقدار ``0`` (که مقدار پیش‌فرض است) به این معناست که فقط ایمپورت مطلق انجام شود. مقادیر مثبت برای *level* تعداد پوشه‌های والد را مشخص می‌کنند که باید نسبت به پوشهٔ ماژولی که :func:`__import__` را فراخوانی کرده است جست‌وجو شوند (برای جزئیات، :pep:`328` را ببینید)." -#: ../../library/functions.rst:2276 -msgid "" -"When the *name* variable is of the form ``package.module``, normally, the top-level package (the name up till the first " -"dot) is returned, *not* the module named by *name*. However, when a non-empty *fromlist* argument is given, the module " -"named by *name* is returned." -msgstr "" -"وقتی متغیر *name* به شکل ``package.module`` باشد، به‌طور معمول بستهٔ سطح بالا (بخشی از نام تا اولین نقطه) بازگردانده می‌شود، " -"نه ماژولی که *name* به آن اشاره می‌کند. با این حال، اگر آرگومان *fromlist* ناتهی باشد، ماژول مشخص‌شده توسط *name* بازگردانده " -"می‌شود." +msgid "When the *name* variable is of the form ``package.module``, normally, the top-level package (the name up till the first dot) is returned, *not* the module named by *name*. However, when a non-empty *fromlist* argument is given, the module named by *name* is returned." +msgstr "وقتی متغیر *name* به شکل ``package.module`` باشد، به‌طور معمول بستهٔ سطح بالا (بخشی از نام تا اولین نقطه) بازگردانده می‌شود، نه ماژولی که *name* به آن اشاره می‌کند. با این حال، اگر آرگومان *fromlist* ناتهی باشد، ماژول مشخص‌شده توسط *name* بازگردانده می‌شود." -#: ../../library/functions.rst:2281 msgid "For example, the statement ``import spam`` results in bytecode resembling the following code::" msgstr "برای مثال، دستور ``import spam`` به بایت‌کدی مشابه کد زیر تبدیل می‌شود::" -#: ../../library/functions.rst:2284 msgid "spam = __import__('spam', globals(), locals(), [], 0)" msgstr "spam = __import__('spam', globals(), locals(), [], 0)" -#: ../../library/functions.rst:2286 msgid "The statement ``import spam.ham`` results in this call::" msgstr "دستور ``import spam.ham`` منجر به این فراخوانی می‌شود::" -#: ../../library/functions.rst:2288 msgid "spam = __import__('spam.ham', globals(), locals(), [], 0)" msgstr "spam = __import__('spam.ham', globals(), locals(), [], 0)" -#: ../../library/functions.rst:2290 -msgid "" -"Note how :func:`__import__` returns the toplevel module here because this is the object that is bound to a name by " -"the :keyword:`import` statement." -msgstr "" -"توجه داشته باشید که :func:`__import__` در اینجا ماژول سطح بالا را برمی‌گرداند، زیرا این همان شی‌ءای است که توسط " -"دستور :keyword:`import` به یک نام منتسب می‌شود." +msgid "Note how :func:`__import__` returns the toplevel module here because this is the object that is bound to a name by the :keyword:`import` statement." +msgstr "توجه داشته باشید که :func:`__import__` در اینجا ماژول سطح بالا را برمی‌گرداند، زیرا این همان شی‌ءای است که توسط دستور :keyword:`import` به یک نام منتسب می‌شود." -#: ../../library/functions.rst:2293 msgid "On the other hand, the statement ``from spam.ham import eggs, sausage as saus`` results in ::" msgstr "از سوی دیگر، دستور ``from spam.ham import eggs, sausage as saus`` به نتیجهٔ زیر منجر می‌شود::" -#: ../../library/functions.rst:2296 msgid "" "_temp = __import__('spam.ham', globals(), locals(), ['eggs', 'sausage'], 0)\n" "eggs = _temp.eggs\n" @@ -3548,148 +1800,101 @@ msgstr "" "eggs = _temp.eggs\n" "saus = _temp.sausage" -#: ../../library/functions.rst:2300 -msgid "" -"Here, the ``spam.ham`` module is returned from :func:`__import__`. From this object, the names to import are retrieved and " -"assigned to their respective names." -msgstr "" -"در اینجا، ماژول ``spam.ham`` از :func:`__import__` بازگردانده می‌شود. سپس، نام‌هایی که باید ایمپورت شوند از این شیء استخراج " -"شده و به نام‌های متناظر خود اختصاص داده می‌شوند." +msgid "Here, the ``spam.ham`` module is returned from :func:`__import__`. From this object, the names to import are retrieved and assigned to their respective names." +msgstr "در اینجا، ماژول ``spam.ham`` از :func:`__import__` بازگردانده می‌شود. سپس، نام‌هایی که باید ایمپورت شوند از این شیء استخراج شده و به نام‌های متناظر خود اختصاص داده می‌شوند." -#: ../../library/functions.rst:2304 msgid "If you simply want to import a module (potentially within a package) by name, use :func:`importlib.import_module`." -msgstr "" -"اگر فقط می‌خواهید یک ماژول (احتمالاً درون یک بسته) را بر اساس نام آن ایمپورت کنید، از :func:`importlib.import_module` استفاده " -"کنید." +msgstr "اگر فقط می‌خواهید یک ماژول (احتمالاً درون یک بسته) را بر اساس نام آن ایمپورت کنید، از :func:`importlib.import_module` استفاده کنید." -#: ../../library/functions.rst:2307 msgid "Negative values for *level* are no longer supported (which also changes the default value to 0)." msgstr "مقادیر منفی برای *level* دیگر پشتیبانی نمی‌شوند (در نتیجه، مقدار پیش‌فرض آن نیز به 0 تغییر کرده است)." -#: ../../library/functions.rst:2311 -msgid "" -"When the command line options :option:`-E` or :option:`-I` are being used, the environment variable :envvar:`PYTHONCASEOK` " -"is now ignored." -msgstr "" -"هنگامی که گزینه‌های خط فرمان :option:`-E` یا :option:`-I` استفاده شوند، متغیر محیطی :envvar:`PYTHONCASEOK` نادیده گرفته " -"می‌شود." +msgid "When the command line options :option:`-E` or :option:`-I` are being used, the environment variable :envvar:`PYTHONCASEOK` is now ignored." +msgstr "هنگامی که گزینه‌های خط فرمان :option:`-E` یا :option:`-I` استفاده شوند، متغیر محیطی :envvar:`PYTHONCASEOK` نادیده گرفته می‌شود." -#: ../../library/functions.rst:2316 msgid "Footnotes" msgstr "پاورقی‌ها" -#: ../../library/functions.rst:2317 -msgid "" -"Note that the parser only accepts the Unix-style end of line convention. If you are reading the code from a file, make sure " -"to use newline conversion mode to convert Windows or Mac-style newlines." -msgstr "" -"توجه داشته باشید که تجزیه‌کننده (parser) فقط قرارداد پایان خط به سبک یونیکس را می‌پذیرد. اگر کد را از یک پرونده می‌خوانید، " -"مطمئن شوید که از حالت تبدیل نویسهٔ پایان خط برای تبدیل پایان خط‌های ویندوز یا مک استفاده می‌کنید." +msgid "Note that the parser only accepts the Unix-style end of line convention. If you are reading the code from a file, make sure to use newline conversion mode to convert Windows or Mac-style newlines." +msgstr "توجه داشته باشید که تجزیه‌کننده (parser) فقط قرارداد پایان خط به سبک یونیکس را می‌پذیرد. اگر کد را از یک پرونده می‌خوانید، مطمئن شوید که از حالت تبدیل نویسهٔ پایان خط برای تبدیل پایان خط‌های ویندوز یا مک استفاده می‌کنید." -#: ../../library/functions.rst:156 msgid "Boolean" msgstr "بولی" -#: ../../library/functions.rst:156 ../../library/functions.rst:2079 msgid "type" msgstr "نوع" -#: ../../library/functions.rst:659 msgid "built-in function" msgstr "تابع توکار" -#: ../../library/functions.rst:659 msgid "exec" msgstr "exec" -#: ../../library/functions.rst:758 msgid "NaN" msgstr "NaN" -#: ../../library/functions.rst:758 msgid "Infinity" msgstr "بی‌نهایت" -#: ../../library/functions.rst:828 msgid "__format__" msgstr "__format__" -#: ../../library/functions.rst:828 ../../library/functions.rst:1947 msgid "string" msgstr "رشته" -#: ../../library/functions.rst:828 msgid "format() (built-in function)" msgstr "format() (تابع توکار)" -#: ../../library/functions.rst:1342 msgid "file object" msgstr "شیء پرونده" -#: ../../library/functions.rst:1342 ../../library/functions.rst:1463 msgid "open() built-in function" msgstr "تابع توکار open()" -#: ../../library/functions.rst:1370 msgid "file" msgstr "پرونده" -#: ../../library/functions.rst:1370 msgid "modes" msgstr "حالات" -#: ../../library/functions.rst:1463 msgid "universal newlines" msgstr "پایان‌خط‌های همگانی" -#: ../../library/functions.rst:1524 msgid "line-buffered I/O" msgstr "ورودی/خروجی با بافرگذاری خطی" -#: ../../library/functions.rst:1524 msgid "unbuffered I/O" msgstr "ورودی/خروجی بافرگذاری‌نشده" -#: ../../library/functions.rst:1524 msgid "buffer size, I/O" msgstr "اندازهٔ بافر، ورودی/خروجی" -#: ../../library/functions.rst:1524 msgid "I/O control" msgstr "کنترل ورودی/خروجی" -#: ../../library/functions.rst:1524 msgid "buffering" msgstr "بافرگذاری" -#: ../../library/functions.rst:1524 msgid "text mode" msgstr "حالت متن" -#: ../../library/functions.rst:1524 ../../library/functions.rst:2245 msgid "module" msgstr "ماژول" -#: ../../library/functions.rst:1524 msgid "sys" msgstr "sys" -#: ../../library/functions.rst:1947 msgid "str() (built-in function)" msgstr "str() (تابع توکار)" -#: ../../library/functions.rst:2079 msgid "object" msgstr "شیء" -#: ../../library/functions.rst:2245 msgid "statement" msgstr "دستور" -#: ../../library/functions.rst:2245 msgid "import" msgstr "ایمپورت" -#: ../../library/functions.rst:2245 msgid "builtins" msgstr "توکار‌ها" diff --git a/library/functools.po b/library/functools.po index 625d1502..9bb54a60 100644 --- a/library/functools.po +++ b/library/functools.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:06+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,46 +23,27 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/functools.rst:2 -msgid "" -":mod:`!functools` --- Higher-order functions and operations on callable " -"objects" +msgid ":mod:`!functools` --- Higher-order functions and operations on callable objects" msgstr "" -#: ../../library/functools.rst:14 msgid "**Source code:** :source:`Lib/functools.py`" msgstr "" -#: ../../library/functools.rst:23 -msgid "" -"The :mod:`!functools` module is for higher-order functions: functions that " -"act on or return other functions. In general, any callable object can be " -"treated as a function for the purposes of this module." +msgid "The :mod:`!functools` module is for higher-order functions: functions that act on or return other functions. In general, any callable object can be treated as a function for the purposes of this module." msgstr "" -#: ../../library/functools.rst:27 msgid "The :mod:`!functools` module defines the following functions:" msgstr "" -#: ../../library/functools.rst:31 -msgid "" -"Simple lightweight unbounded function cache. Sometimes called `\"memoize\" " -"`_." +msgid "Simple lightweight unbounded function cache. Sometimes called `\"memoize\" `_." msgstr "" -#: ../../library/functools.rst:34 -msgid "" -"Returns the same as ``lru_cache(maxsize=None)``, creating a thin wrapper " -"around a dictionary lookup for the function arguments. Because it never " -"needs to evict old values, this is smaller and faster than :deco:`lru_cache` " -"with a size limit." +msgid "Returns the same as ``lru_cache(maxsize=None)``, creating a thin wrapper around a dictionary lookup for the function arguments. Because it never needs to evict old values, this is smaller and faster than :deco:`lru_cache` with a size limit." msgstr "" -#: ../../library/functools.rst:39 ../../library/functools.rst:297 msgid "For example::" msgstr "" -#: ../../library/functools.rst:41 msgid "" "@cache\n" "def factorial(n):\n" @@ -76,34 +57,18 @@ msgid "" "479001600" msgstr "" -#: ../../library/functools.rst:52 ../../library/functools.rst:158 -msgid "" -"The cache is threadsafe so that the wrapped function can be used in multiple " -"threads. This means that the underlying data structure will remain coherent " -"during concurrent updates." +msgid "The cache is threadsafe so that the wrapped function can be used in multiple threads. This means that the underlying data structure will remain coherent during concurrent updates." msgstr "" -#: ../../library/functools.rst:56 ../../library/functools.rst:162 -msgid "" -"It is possible for the wrapped function to be called more than once if " -"another thread makes an additional call before the initial call has been " -"completed and cached." +msgid "It is possible for the wrapped function to be called more than once if another thread makes an additional call before the initial call has been completed and cached." msgstr "" -#: ../../library/functools.rst:65 -msgid "" -"Transform a method of a class into a property whose value is computed once " -"and then cached as a normal attribute for the life of the instance. Similar " -"to :deco:`property`, with the addition of caching. Useful for expensive " -"computed properties of instances that are otherwise effectively immutable." +msgid "Transform a method of a class into a property whose value is computed once and then cached as a normal attribute for the life of the instance. Similar to :deco:`property`, with the addition of caching. Useful for expensive computed properties of instances that are otherwise effectively immutable." msgstr "" -#: ../../library/functools.rst:70 ../../library/functools.rst:142 -#: ../../library/functools.rst:438 msgid "Example::" msgstr "" -#: ../../library/functools.rst:72 msgid "" "class DataSet:\n" "\n" @@ -115,224 +80,96 @@ msgid "" " return statistics.stdev(self._data)" msgstr "" -#: ../../library/functools.rst:81 -msgid "" -"The mechanics of :deco:`cached_property` are somewhat different " -"from :deco:`property`. A regular property blocks attribute writes unless a " -"setter is defined. In contrast, a *cached_property* allows writes." +msgid "The mechanics of :deco:`cached_property` are somewhat different from :deco:`property`. A regular property blocks attribute writes unless a setter is defined. In contrast, a *cached_property* allows writes." msgstr "" -#: ../../library/functools.rst:85 -msgid "" -"The *cached_property* decorator only runs on lookups and only when an " -"attribute of the same name doesn't exist. When it does run, the " -"*cached_property* writes to the attribute with the same name. Subsequent " -"attribute reads and writes take precedence over the *cached_property* method " -"and it works like a normal attribute." +msgid "The *cached_property* decorator only runs on lookups and only when an attribute of the same name doesn't exist. When it does run, the *cached_property* writes to the attribute with the same name. Subsequent attribute reads and writes take precedence over the *cached_property* method and it works like a normal attribute." msgstr "" -#: ../../library/functools.rst:91 -msgid "" -"The cached value can be cleared by deleting the attribute. This allows the " -"*cached_property* method to run again." +msgid "The cached value can be cleared by deleting the attribute. This allows the *cached_property* method to run again." msgstr "" -#: ../../library/functools.rst:94 -msgid "" -"The *cached_property* does not prevent a possible race condition in multi-" -"threaded usage. The getter function could run more than once on the same " -"instance, with the latest run setting the cached value. If the cached " -"property is idempotent or otherwise not harmful to run more than once on an " -"instance, this is fine. If synchronization is needed, implement the " -"necessary locking inside the decorated getter function or around the cached " -"property access." +msgid "The *cached_property* does not prevent a possible race condition in multi-threaded usage. The getter function could run more than once on the same instance, with the latest run setting the cached value. If the cached property is idempotent or otherwise not harmful to run more than once on an instance, this is fine. If synchronization is needed, implement the necessary locking inside the decorated getter function or around the cached property access." msgstr "" -#: ../../library/functools.rst:102 -msgid "" -"Note, this decorator interferes with the operation of :pep:`412` key-sharing " -"dictionaries. This means that instance dictionaries can take more space " -"than usual." +msgid "Note, this decorator interferes with the operation of :pep:`412` key-sharing dictionaries. This means that instance dictionaries can take more space than usual." msgstr "" -#: ../../library/functools.rst:106 -msgid "" -"Also, this decorator requires that the ``__dict__`` attribute on each " -"instance be a mutable mapping. This means it will not work with some types, " -"such as metaclasses (since the ``__dict__`` attributes on type instances are " -"read-only proxies for the class namespace), and those that specify " -"``__slots__`` without including ``__dict__`` as one of the defined slots (as " -"such classes don't provide a ``__dict__`` attribute at all)." +msgid "Also, this decorator requires that the ``__dict__`` attribute on each instance be a mutable mapping. This means it will not work with some types, such as metaclasses (since the ``__dict__`` attributes on type instances are read-only proxies for the class namespace), and those that specify ``__slots__`` without including ``__dict__`` as one of the defined slots (as such classes don't provide a ``__dict__`` attribute at all)." msgstr "" -#: ../../library/functools.rst:113 -msgid "" -"If a mutable mapping is not available or if space-efficient key sharing is " -"desired, an effect similar to :deco:`cached_property` can also be achieved " -"by stacking :deco:`property` on top of :deco:`lru_cache`. See :ref:`faq-" -"cache-method-calls` for more details on how this differs " -"from :deco:`cached_property`." +msgid "If a mutable mapping is not available or if space-efficient key sharing is desired, an effect similar to :deco:`cached_property` can also be achieved by stacking :deco:`property` on top of :deco:`lru_cache`. See :ref:`faq-cache-method-calls` for more details on how this differs from :deco:`cached_property`." msgstr "" -#: ../../library/functools.rst:120 -msgid "" -"Prior to Python 3.12, :deco:`!cached_property` included an undocumented lock " -"to ensure that in multi-threaded usage the getter function was guaranteed to " -"run only once per instance. However, the lock was per-property, not per-" -"instance, which could result in unacceptably high lock contention. In Python " -"3.12+ this locking is removed." +msgid "Prior to Python 3.12, :deco:`!cached_property` included an undocumented lock to ensure that in multi-threaded usage the getter function was guaranteed to run only once per instance. However, the lock was per-property, not per-instance, which could result in unacceptably high lock contention. In Python 3.12+ this locking is removed." msgstr "" -#: ../../library/functools.rst:130 -msgid "" -"Transform an old-style comparison function to a :term:`key function`. Used " -"with tools that accept key functions (such " -"as :func:`sorted`, :func:`min`, :func:`max`, :func:`heapq.nlargest`, :func:`heapq.nsmallest`, :func:`itertools.groupby`). " -"This function is primarily used as a transition tool for programs being " -"converted from Python 2 which supported the use of comparison functions." +msgid "Transform an old-style comparison function to a :term:`key function`. Used with tools that accept key functions (such as :func:`sorted`, :func:`min`, :func:`max`, :func:`heapq.nlargest`, :func:`heapq.nsmallest`, :func:`itertools.groupby`). This function is primarily used as a transition tool for programs being converted from Python 2 which supported the use of comparison functions." msgstr "" -#: ../../library/functools.rst:137 -msgid "" -"A comparison function is any callable that accepts two arguments, compares " -"them, and returns a negative number for less-than, zero for equality, or a " -"positive number for greater-than. A key function is a callable that accepts " -"one argument and returns another value to be used as the sort key." +msgid "A comparison function is any callable that accepts two arguments, compares them, and returns a negative number for less-than, zero for equality, or a positive number for greater-than. A key function is a callable that accepts one argument and returns another value to be used as the sort key." msgstr "" -#: ../../library/functools.rst:144 -msgid "" -"sorted(iterable, key=cmp_to_key(locale.strcoll)) # locale-aware sort order" +msgid "sorted(iterable, key=cmp_to_key(locale.strcoll)) # locale-aware sort order" msgstr "" -#: ../../library/functools.rst:146 -msgid "" -"For sorting examples and a brief sorting tutorial, see :ref:`sortinghowto`." +msgid "For sorting examples and a brief sorting tutorial, see :ref:`sortinghowto`." msgstr "" -#: ../../library/functools.rst:154 -msgid "" -"Decorator to wrap a function with a memoizing callable that saves up to the " -"*maxsize* most recent calls. It can save time when an expensive or I/O " -"bound function is periodically called with the same arguments." +msgid "Decorator to wrap a function with a memoizing callable that saves up to the *maxsize* most recent calls. It can save time when an expensive or I/O bound function is periodically called with the same arguments." msgstr "" -#: ../../library/functools.rst:166 -msgid "" -"Since a dictionary is used to cache results, the positional and keyword " -"arguments to the function must be :term:`hashable`." +msgid "Since a dictionary is used to cache results, the positional and keyword arguments to the function must be :term:`hashable`." msgstr "" -#: ../../library/functools.rst:169 -msgid "" -"Distinct argument patterns may be considered to be distinct calls with " -"separate cache entries. For example, ``f(a=1, b=2)`` and ``f(b=2, a=1)`` " -"differ in their keyword argument order and may have two separate cache " -"entries." +msgid "Distinct argument patterns may be considered to be distinct calls with separate cache entries. For example, ``f(a=1, b=2)`` and ``f(b=2, a=1)`` differ in their keyword argument order and may have two separate cache entries." msgstr "" -#: ../../library/functools.rst:174 -msgid "" -"If *user_function* is specified, it must be a callable. This allows the " -"*lru_cache* decorator to be applied directly to a user function, leaving the " -"*maxsize* at its default value of 128::" +msgid "If *user_function* is specified, it must be a callable. This allows the *lru_cache* decorator to be applied directly to a user function, leaving the *maxsize* at its default value of 128::" msgstr "" -#: ../../library/functools.rst:178 msgid "" "@lru_cache\n" "def count_vowels(sentence):\n" " return sum(sentence.count(vowel) for vowel in 'AEIOUaeiou')" msgstr "" -#: ../../library/functools.rst:182 -msgid "" -"If *maxsize* is set to ``None``, the LRU feature is disabled and the cache " -"can grow without bound." +msgid "If *maxsize* is set to ``None``, the LRU feature is disabled and the cache can grow without bound." msgstr "" -#: ../../library/functools.rst:185 -msgid "" -"If *typed* is set to true, function arguments of different types will be " -"cached separately. If *typed* is false, the implementation will usually " -"regard them as equivalent calls and only cache a single result. (Some types " -"such as *str* and *int* may be cached separately even when *typed* is false.)" +msgid "If *typed* is set to true, function arguments of different types will be cached separately. If *typed* is false, the implementation will usually regard them as equivalent calls and only cache a single result. (Some types such as *str* and *int* may be cached separately even when *typed* is false.)" msgstr "" -#: ../../library/functools.rst:191 -msgid "" -"Note, type specificity applies only to the function's immediate arguments " -"rather than their contents. The scalar arguments, ``Decimal(42)`` and " -"``Fraction(42)`` are treated as distinct calls with distinct results. In " -"contrast, the tuple arguments ``('answer', Decimal(42))`` and ``('answer', " -"Fraction(42))`` are treated as equivalent." +msgid "Note, type specificity applies only to the function's immediate arguments rather than their contents. The scalar arguments, ``Decimal(42)`` and ``Fraction(42)`` are treated as distinct calls with distinct results. In contrast, the tuple arguments ``('answer', Decimal(42))`` and ``('answer', Fraction(42))`` are treated as equivalent." msgstr "" -#: ../../library/functools.rst:197 -msgid "" -"The wrapped function is instrumented with a :func:`!cache_parameters` " -"function that returns a new :class:`dict` showing the values for *maxsize* " -"and *typed*. This is for information purposes only. Mutating the values " -"has no effect." +msgid "The wrapped function is instrumented with a :func:`!cache_parameters` function that returns a new :class:`dict` showing the values for *maxsize* and *typed*. This is for information purposes only. Mutating the values has no effect." msgstr "" -#: ../../library/functools.rst:205 -msgid "" -"To help measure the effectiveness of the cache and tune the *maxsize* " -"parameter, the wrapped function is instrumented with a :func:`!cache_info` " -"function that returns a :term:`named tuple` showing *hits*, *misses*, " -"*maxsize* and *currsize*." +msgid "To help measure the effectiveness of the cache and tune the *maxsize* parameter, the wrapped function is instrumented with a :func:`!cache_info` function that returns a :term:`named tuple` showing *hits*, *misses*, *maxsize* and *currsize*." msgstr "" -#: ../../library/functools.rst:213 -msgid "" -"The decorator also provides a :func:`!cache_clear` function for clearing or " -"invalidating the cache." +msgid "The decorator also provides a :func:`!cache_clear` function for clearing or invalidating the cache." msgstr "" -#: ../../library/functools.rst:216 -msgid "" -"The original underlying function is accessible through " -"the :attr:`__wrapped__` attribute. This is useful for introspection, for " -"bypassing the cache, or for rewrapping the function with a different cache." +msgid "The original underlying function is accessible through the :attr:`__wrapped__` attribute. This is useful for introspection, for bypassing the cache, or for rewrapping the function with a different cache." msgstr "" -#: ../../library/functools.rst:220 -msgid "" -"The cache keeps references to the arguments and return values until they age " -"out of the cache or until the cache is cleared." +msgid "The cache keeps references to the arguments and return values until they age out of the cache or until the cache is cleared." msgstr "" -#: ../../library/functools.rst:223 -msgid "" -"If a method is cached, the ``self`` instance argument is included in the " -"cache. See :ref:`faq-cache-method-calls`" +msgid "If a method is cached, the ``self`` instance argument is included in the cache. See :ref:`faq-cache-method-calls`" msgstr "" -#: ../../library/functools.rst:226 -msgid "" -"An `LRU (least recently used) cache `_ works best when the " -"most recent calls are the best predictors of upcoming calls (for example, " -"the most popular articles on a news server tend to change each day). The " -"cache's size limit assures that the cache does not grow without bound on " -"long-running processes such as web servers." +msgid "An `LRU (least recently used) cache `_ works best when the most recent calls are the best predictors of upcoming calls (for example, the most popular articles on a news server tend to change each day). The cache's size limit assures that the cache does not grow without bound on long-running processes such as web servers." msgstr "" -#: ../../library/functools.rst:233 -msgid "" -"In general, the LRU cache should only be used when you want to reuse " -"previously computed values. Accordingly, it doesn't make sense to cache " -"functions with side-effects, functions that need to create distinct mutable " -"objects on each call (such as generators and async functions), or impure " -"functions such as time() or random()." +msgid "In general, the LRU cache should only be used when you want to reuse previously computed values. Accordingly, it doesn't make sense to cache functions with side-effects, functions that need to create distinct mutable objects on each call (such as generators and async functions), or impure functions such as time() or random()." msgstr "" -#: ../../library/functools.rst:239 msgid "Example of an LRU cache for static web content::" msgstr "" -#: ../../library/functools.rst:241 msgid "" "@lru_cache(maxsize=32)\n" "def get_pep(num):\n" @@ -352,15 +189,9 @@ msgid "" "CacheInfo(hits=3, misses=8, maxsize=32, currsize=8)" msgstr "" -#: ../../library/functools.rst:258 -msgid "" -"Example of efficiently computing `Fibonacci numbers `_ using a cache to implement a " -"`dynamic programming `_ " -"technique::" +msgid "Example of efficiently computing `Fibonacci numbers `_ using a cache to implement a `dynamic programming `_ technique::" msgstr "" -#: ../../library/functools.rst:264 msgid "" "@lru_cache(maxsize=None)\n" "def fib(n):\n" @@ -375,34 +206,21 @@ msgid "" "CacheInfo(hits=28, misses=16, maxsize=None, currsize=16)" msgstr "" -#: ../../library/functools.rst:278 msgid "Added the *typed* option." msgstr "" -#: ../../library/functools.rst:281 msgid "Added the *user_function* option." msgstr "" -#: ../../library/functools.rst:284 msgid "Added the function :func:`!cache_parameters`" msgstr "" -#: ../../library/functools.rst:289 -msgid "" -"Given a class defining one or more rich comparison ordering methods, this " -"class decorator supplies the rest. This simplifies the effort involved in " -"specifying all of the possible rich comparison operations:" +msgid "Given a class defining one or more rich comparison ordering methods, this class decorator supplies the rest. This simplifies the effort involved in specifying all of the possible rich comparison operations:" msgstr "" -#: ../../library/functools.rst:293 -msgid "" -"The class must define one " -"of :meth:`~object.__lt__`, :meth:`~object.__le__`, :meth:`~object.__gt__`, " -"or :meth:`~object.__ge__`. In addition, the class should supply " -"an :meth:`~object.__eq__` method." +msgid "The class must define one of :meth:`~object.__lt__`, :meth:`~object.__le__`, :meth:`~object.__gt__`, or :meth:`~object.__ge__`. In addition, the class should supply an :meth:`~object.__eq__` method." msgstr "" -#: ../../library/functools.rst:299 msgid "" "@total_ordering\n" "class Student:\n" @@ -421,45 +239,21 @@ msgid "" " (other.lastname.lower(), other.firstname.lower()))" msgstr "" -#: ../../library/functools.rst:317 -msgid "" -"While this decorator makes it easy to create well behaved totally ordered " -"types, it *does* come at the cost of slower execution and more complex stack " -"traces for the derived comparison methods. If performance benchmarking " -"indicates this is a bottleneck for a given application, implementing all six " -"rich comparison methods instead is likely to provide an easy speed boost." +msgid "While this decorator makes it easy to create well behaved totally ordered types, it *does* come at the cost of slower execution and more complex stack traces for the derived comparison methods. If performance benchmarking indicates this is a bottleneck for a given application, implementing all six rich comparison methods instead is likely to provide an easy speed boost." msgstr "" -#: ../../library/functools.rst:326 -msgid "" -"This decorator makes no attempt to override methods that have been declared " -"in the class *or its superclasses*. Meaning that if a superclass defines a " -"comparison operator, *total_ordering* will not implement it again, even if " -"the original method is abstract." +msgid "This decorator makes no attempt to override methods that have been declared in the class *or its superclasses*. Meaning that if a superclass defines a comparison operator, *total_ordering* will not implement it again, even if the original method is abstract." msgstr "" -#: ../../library/functools.rst:333 -msgid "" -"Returning ``NotImplemented`` from the underlying comparison function for " -"unrecognised types is now supported." +msgid "Returning ``NotImplemented`` from the underlying comparison function for unrecognised types is now supported." msgstr "" -#: ../../library/functools.rst:339 -msgid "" -"A singleton object used as a sentinel to reserve a place for positional " -"arguments when calling :func:`partial` and :func:`partialmethod`." +msgid "A singleton object used as a sentinel to reserve a place for positional arguments when calling :func:`partial` and :func:`partialmethod`." msgstr "" -#: ../../library/functools.rst:347 -msgid "" -"Return a new :ref:`partial object` which when called will " -"behave like *func* called with the positional arguments *args* and keyword " -"arguments *keywords*. If more arguments are supplied to the call, they are " -"appended to *args*. If additional keyword arguments are supplied, they " -"extend and override *keywords*. Roughly equivalent to::" +msgid "Return a new :ref:`partial object` which when called will behave like *func* called with the positional arguments *args* and keyword arguments *keywords*. If more arguments are supplied to the call, they are appended to *args*. If additional keyword arguments are supplied, they extend and override *keywords*. Roughly equivalent to::" msgstr "" -#: ../../library/functools.rst:354 msgid "" "def partial(func, /, *args, **keywords):\n" " def newfunc(*more_args, **more_keywords):\n" @@ -470,16 +264,9 @@ msgid "" " return newfunc" msgstr "" -#: ../../library/functools.rst:362 -msgid "" -"The :func:`!partial` function is used for partial function application which " -"\"freezes\" some portion of a function's arguments and/or keywords resulting " -"in a new object with a simplified signature. For example, :func:`partial` " -"can be used to create a callable that behaves like the :func:`int` function " -"where the *base* argument defaults to ``2``:" +msgid "The :func:`!partial` function is used for partial function application which \"freezes\" some portion of a function's arguments and/or keywords resulting in a new object with a simplified signature. For example, :func:`partial` can be used to create a callable that behaves like the :func:`int` function where the *base* argument defaults to ``2``:" msgstr "" -#: ../../library/functools.rst:368 msgid "" ">>> basetwo = partial(int, base=2)\n" ">>> basetwo.__doc__ = 'Convert base 2 string to an int.'\n" @@ -487,45 +274,24 @@ msgid "" "18" msgstr "" -#: ../../library/functools.rst:375 -msgid "" -"If :data:`Placeholder` sentinels are present in *args*, they will be filled " -"first when :func:`!partial` is called. This makes it possible to pre-fill " -"any positional argument with a call to :func:`!partial`; without :data:`!" -"Placeholder`, only the chosen number of leading positional arguments can be " -"pre-filled." +msgid "If :data:`Placeholder` sentinels are present in *args*, they will be filled first when :func:`!partial` is called. This makes it possible to pre-fill any positional argument with a call to :func:`!partial`; without :data:`!Placeholder`, only the chosen number of leading positional arguments can be pre-filled." msgstr "" -#: ../../library/functools.rst:380 -msgid "" -"If any :data:`!Placeholder` sentinels are present, all must be filled at " -"call time:" +msgid "If any :data:`!Placeholder` sentinels are present, all must be filled at call time:" msgstr "" -#: ../../library/functools.rst:382 msgid "" ">>> say_to_world = partial(print, Placeholder, Placeholder, \"world!\")\n" ">>> say_to_world('Hello', 'dear')\n" "Hello dear world!" msgstr "" -#: ../../library/functools.rst:388 -msgid "" -"Calling ``say_to_world('Hello')`` raises a :exc:`TypeError`, because only " -"one positional argument is provided, but there are two placeholders that " -"must be filled in." +msgid "Calling ``say_to_world('Hello')`` raises a :exc:`TypeError`, because only one positional argument is provided, but there are two placeholders that must be filled in." msgstr "" -#: ../../library/functools.rst:392 -msgid "" -"If :func:`!partial` is applied to an existing :ref:`partial object `, :data:`!Placeholder` sentinels of the input object are filled in " -"with new positional arguments. A placeholder can be retained by inserting a " -"new :data:`!Placeholder` sentinel to the place held by a previous :data:`!" -"Placeholder`:" +msgid "If :func:`!partial` is applied to an existing :ref:`partial object `, :data:`!Placeholder` sentinels of the input object are filled in with new positional arguments. A placeholder can be retained by inserting a new :data:`!Placeholder` sentinel to the place held by a previous :data:`!Placeholder`:" msgstr "" -#: ../../library/functools.rst:398 msgid "" ">>> from functools import partial, Placeholder as _\n" ">>> remove = partial(str.replace, _, _, '')\n" @@ -540,48 +306,24 @@ msgid "" "'Hello, dear world!'" msgstr "" -#: ../../library/functools.rst:412 -msgid "" -":data:`!Placeholder` cannot be passed to :func:`!partial` as a keyword " -"argument." +msgid ":data:`!Placeholder` cannot be passed to :func:`!partial` as a keyword argument." msgstr "" -#: ../../library/functools.rst:414 msgid "Added support for :data:`Placeholder` in positional arguments." msgstr "" -#: ../../library/functools.rst:419 -msgid "" -"Return a new :class:`partialmethod` descriptor which behaves " -"like :class:`partial` except that it is designed to be used as a method " -"definition rather than being directly callable." +msgid "Return a new :class:`partialmethod` descriptor which behaves like :class:`partial` except that it is designed to be used as a method definition rather than being directly callable." msgstr "" -#: ../../library/functools.rst:423 -msgid "" -"*func* must be a :term:`descriptor` or a callable (objects which are both, " -"like normal functions, are handled as descriptors)." +msgid "*func* must be a :term:`descriptor` or a callable (objects which are both, like normal functions, are handled as descriptors)." msgstr "" -#: ../../library/functools.rst:426 -msgid "" -"When *func* is a descriptor (such as a normal Python " -"function, :func:`classmethod`, :func:`staticmethod`, :func:`~abc.abstractmethod` " -"or another instance of :class:`partialmethod`), calls to ``__get__`` are " -"delegated to the underlying descriptor, and an appropriate :ref:`partial " -"object` returned as the result." +msgid "When *func* is a descriptor (such as a normal Python function, :func:`classmethod`, :func:`staticmethod`, :func:`~abc.abstractmethod` or another instance of :class:`partialmethod`), calls to ``__get__`` are delegated to the underlying descriptor, and an appropriate :ref:`partial object` returned as the result." msgstr "" -#: ../../library/functools.rst:432 -msgid "" -"When *func* is a non-descriptor callable, an appropriate bound method is " -"created dynamically. This behaves like a normal Python function when used as " -"a method: the *self* argument will be inserted as the first positional " -"argument, even before the *args* and *keywords* supplied to " -"the :class:`partialmethod` constructor." +msgid "When *func* is a non-descriptor callable, an appropriate bound method is created dynamically. This behaves like a normal Python function when used as a method: the *self* argument will be inserted as the first positional argument, even before the *args* and *keywords* supplied to the :class:`partialmethod` constructor." msgstr "" -#: ../../library/functools.rst:440 msgid "" ">>> class Cell:\n" "... def __init__(self):\n" @@ -602,24 +344,12 @@ msgid "" "True" msgstr "" -#: ../../library/functools.rst:463 -msgid "" -"Apply *function* of two arguments cumulatively to the items of *iterable*, " -"from left to right, so as to reduce the iterable to a single value. For " -"example, ``reduce(lambda x, y: x+y, [1, 2, 3, 4, 5])`` calculates " -"``((((1+2)+3)+4)+5)``. The left argument, *x*, is the accumulated value and " -"the right argument, *y*, is the update value from the *iterable*. If the " -"optional *initial* is present, it is placed before the items of the iterable " -"in the calculation, and serves as a default when the iterable is empty. If " -"*initial* is not given and *iterable* contains only one item, the first item " -"is returned." -msgstr "" - -#: ../../library/functools.rst:472 +msgid "Apply *function* of two arguments cumulatively to the items of *iterable*, from left to right, so as to reduce the iterable to a single value. For example, ``reduce(lambda x, y: x+y, [1, 2, 3, 4, 5])`` calculates ``((((1+2)+3)+4)+5)``. The left argument, *x*, is the accumulated value and the right argument, *y*, is the update value from the *iterable*. If the optional *initial* is present, it is placed before the items of the iterable in the calculation, and serves as a default when the iterable is empty. If *initial* is not given and *iterable* contains only one item, the first item is returned." +msgstr "" + msgid "Roughly equivalent to::" msgstr "" -#: ../../library/functools.rst:474 msgid "" "initial_missing = object()\n" "\n" @@ -634,30 +364,18 @@ msgid "" " return value" msgstr "" -#: ../../library/functools.rst:486 -msgid "" -"See :func:`itertools.accumulate` for an iterator that yields all " -"intermediate values." +msgid "See :func:`itertools.accumulate` for an iterator that yields all intermediate values." msgstr "" -#: ../../library/functools.rst:489 msgid "*initial* is now supported as a keyword argument." msgstr "" -#: ../../library/functools.rst:494 -msgid "" -"Transform a function into a :term:`single-dispatch ` :term:`generic function`." +msgid "Transform a function into a :term:`single-dispatch ` :term:`generic function`." msgstr "" -#: ../../library/functools.rst:497 -msgid "" -"To define a generic function, decorate it with the ``@singledispatch`` " -"decorator. When defining a function using ``@singledispatch``, note that the " -"dispatch happens on the type of the first argument::" +msgid "To define a generic function, decorate it with the ``@singledispatch`` decorator. When defining a function using ``@singledispatch``, note that the dispatch happens on the type of the first argument::" msgstr "" -#: ../../library/functools.rst:501 msgid "" ">>> from functools import singledispatch\n" ">>> @singledispatch\n" @@ -667,15 +385,9 @@ msgid "" "... print(arg)" msgstr "" -#: ../../library/functools.rst:511 -msgid "" -"To add overloaded implementations to the function, use the :func:`!register` " -"attribute of the generic function, which can be used as a decorator. For " -"functions annotated with types, the decorator will infer the type of the " -"first argument automatically::" +msgid "To add overloaded implementations to the function, use the :func:`!register` attribute of the generic function, which can be used as a decorator. For functions annotated with types, the decorator will infer the type of the first argument automatically::" msgstr "" -#: ../../library/functools.rst:516 msgid "" ">>> @fun.register\n" "... def _(arg: int, verbose=False):\n" @@ -691,11 +403,9 @@ msgid "" "... print(i, elem)" msgstr "" -#: ../../library/functools.rst:529 msgid ":class:`typing.Union` can also be used::" msgstr "" -#: ../../library/functools.rst:531 msgid "" ">>> @fun.register\n" "... def _(arg: int | float, verbose=False):\n" @@ -713,13 +423,9 @@ msgid "" "..." msgstr "" -#: ../../library/functools.rst:546 -msgid "" -"For code which doesn't use type annotations, the appropriate type argument " -"can be passed explicitly to the decorator itself::" +msgid "For code which doesn't use type annotations, the appropriate type argument can be passed explicitly to the decorator itself::" msgstr "" -#: ../../library/functools.rst:549 msgid "" ">>> @fun.register(complex)\n" "... def _(arg, verbose=False):\n" @@ -729,15 +435,9 @@ msgid "" "..." msgstr "" -#: ../../library/functools.rst:556 -msgid "" -"For code that dispatches on a collections type (e.g., ``list``), but wants " -"to typehint the items of the collection (e.g., ``list[int]``), the dispatch " -"type should be passed explicitly to the decorator itself with the typehint " -"going into the function definition::" +msgid "For code that dispatches on a collections type (e.g., ``list``), but wants to typehint the items of the collection (e.g., ``list[int]``), the dispatch type should be passed explicitly to the decorator itself with the typehint going into the function definition::" msgstr "" -#: ../../library/functools.rst:561 msgid "" ">>> @fun.register(list)\n" "... def _(arg: list[int], verbose=False):\n" @@ -747,22 +447,12 @@ msgid "" "... print(i, elem)" msgstr "" -#: ../../library/functools.rst:570 -msgid "" -"At runtime the function will dispatch on an instance of a list regardless of " -"the type contained within the list i.e. ``[1,2,3]`` will be dispatched the " -"same as ``[\"foo\", \"bar\", \"baz\"]``. The annotation provided in this " -"example is for static type checkers only and has no runtime impact." +msgid "At runtime the function will dispatch on an instance of a list regardless of the type contained within the list i.e. ``[1,2,3]`` will be dispatched the same as ``[\"foo\", \"bar\", \"baz\"]``. The annotation provided in this example is for static type checkers only and has no runtime impact." msgstr "" -#: ../../library/functools.rst:576 -msgid "" -"To enable registering :term:`lambdas` and pre-existing functions, " -"the :func:`~singledispatch.register` attribute can also be used in a " -"functional form::" +msgid "To enable registering :term:`lambdas` and pre-existing functions, the :func:`~singledispatch.register` attribute can also be used in a functional form::" msgstr "" -#: ../../library/functools.rst:579 msgid "" ">>> def nothing(arg, verbose=False):\n" "... print(\"Nothing.\")\n" @@ -770,14 +460,9 @@ msgid "" ">>> fun.register(type(None), nothing)" msgstr "" -#: ../../library/functools.rst:584 -msgid "" -"The :func:`~singledispatch.register` attribute returns the undecorated " -"function. This enables decorator stacking, :mod:`pickling`, and the " -"creation of unit tests for each variant independently::" +msgid "The :func:`~singledispatch.register` attribute returns the undecorated function. This enables decorator stacking, :mod:`pickling`, and the creation of unit tests for each variant independently::" msgstr "" -#: ../../library/functools.rst:588 msgid "" ">>> @fun.register(float)\n" "... @fun.register(Decimal)\n" @@ -790,13 +475,9 @@ msgid "" "False" msgstr "" -#: ../../library/functools.rst:598 -msgid "" -"When called, the generic function dispatches on the type of the first " -"argument::" +msgid "When called, the generic function dispatches on the type of the first argument::" msgstr "" -#: ../../library/functools.rst:601 msgid "" ">>> fun(\"Hello, world.\")\n" "Hello, world.\n" @@ -816,23 +497,12 @@ msgid "" "0.615" msgstr "" -#: ../../library/functools.rst:618 -msgid "" -"Where there is no registered implementation for a specific type, its method " -"resolution order is used to find a more generic implementation. The original " -"function decorated with ``@singledispatch`` is registered for the " -"base :class:`object` type, which means it is used if no better " -"implementation is found." +msgid "Where there is no registered implementation for a specific type, its method resolution order is used to find a more generic implementation. The original function decorated with ``@singledispatch`` is registered for the base :class:`object` type, which means it is used if no better implementation is found." msgstr "" -#: ../../library/functools.rst:624 -msgid "" -"If an implementation is registered to an :term:`abstract base class`, " -"virtual subclasses of the base class will be dispatched to that " -"implementation::" +msgid "If an implementation is registered to an :term:`abstract base class`, virtual subclasses of the base class will be dispatched to that implementation::" msgstr "" -#: ../../library/functools.rst:628 msgid "" ">>> from collections.abc import Mapping\n" ">>> @fun.register\n" @@ -846,13 +516,9 @@ msgid "" "a => b" msgstr "" -#: ../../library/functools.rst:639 -msgid "" -"To check which implementation the generic function will choose for a given " -"type, use the ``dispatch()`` attribute::" +msgid "To check which implementation the generic function will choose for a given type, use the ``dispatch()`` attribute::" msgstr "" -#: ../../library/functools.rst:642 msgid "" ">>> fun.dispatch(float)\n" "\n" @@ -860,13 +526,9 @@ msgid "" "" msgstr "" -#: ../../library/functools.rst:647 -msgid "" -"To access all registered implementations, use the read-only ``registry`` " -"attribute::" +msgid "To access all registered implementations, use the read-only ``registry`` attribute::" msgstr "" -#: ../../library/functools.rst:650 msgid "" ">>> fun.registry.keys()\n" "dict_keys([, , ,\n" @@ -878,33 +540,18 @@ msgid "" "" msgstr "" -#: ../../library/functools.rst:661 -msgid "" -"The :func:`~singledispatch.register` attribute now supports using type " -"annotations." +msgid "The :func:`~singledispatch.register` attribute now supports using type annotations." msgstr "" -#: ../../library/functools.rst:664 -msgid "" -"The :func:`~singledispatch.register` attribute now " -"supports :class:`typing.Union` as a type annotation." +msgid "The :func:`~singledispatch.register` attribute now supports :class:`typing.Union` as a type annotation." msgstr "" -#: ../../library/functools.rst:671 -msgid "" -"Transform a method into a :term:`single-dispatch ` :term:`generic function`." +msgid "Transform a method into a :term:`single-dispatch ` :term:`generic function`." msgstr "" -#: ../../library/functools.rst:674 -msgid "" -"To define a generic method, decorate it with the ``@singledispatchmethod`` " -"decorator. When defining a method using ``@singledispatchmethod``, note that " -"the dispatch happens on the type of the first non-*self* or non-*cls* " -"argument::" +msgid "To define a generic method, decorate it with the ``@singledispatchmethod`` decorator. When defining a method using ``@singledispatchmethod``, note that the dispatch happens on the type of the first non-*self* or non-*cls* argument::" msgstr "" -#: ../../library/functools.rst:679 msgid "" "class Negator:\n" " @singledispatchmethod\n" @@ -920,16 +567,9 @@ msgid "" " return not arg" msgstr "" -#: ../../library/functools.rst:692 -msgid "" -"``@singledispatchmethod`` supports nesting with other decorators such " -"as :deco:`classmethod`. Note that to allow for ``dispatcher.register``, " -"``singledispatchmethod`` must be the *outer most* decorator. Here is the " -"``Negator`` class with the ``neg`` methods bound to the class, rather than " -"an instance of the class::" +msgid "``@singledispatchmethod`` supports nesting with other decorators such as :deco:`classmethod`. Note that to allow for ``dispatcher.register``, ``singledispatchmethod`` must be the *outer most* decorator. Here is the ``Negator`` class with the ``neg`` methods bound to the class, rather than an instance of the class::" msgstr "" -#: ../../library/functools.rst:698 msgid "" "class Negator:\n" " @singledispatchmethod\n" @@ -948,81 +588,33 @@ msgid "" " return not arg" msgstr "" -#: ../../library/functools.rst:714 -msgid "" -"The same pattern can be used for other similar " -"decorators: :deco:`staticmethod`, :deco:`~abc.abstractmethod`, and others." +msgid "The same pattern can be used for other similar decorators: :deco:`staticmethod`, :deco:`~abc.abstractmethod`, and others." msgstr "" -#: ../../library/functools.rst:722 -msgid "" -"Update a *wrapper* function to look like the *wrapped* function. The " -"optional arguments are tuples to specify which attributes of the original " -"function are assigned directly to the matching attributes on the wrapper " -"function and which attributes of the wrapper function are updated with the " -"corresponding attributes from the original function. The default values for " -"these arguments are the module level constants ``WRAPPER_ASSIGNMENTS`` " -"(which assigns to the wrapper " -"function's :attr:`~function.__module__`, :attr:`~function.__name__`, :attr:`~function.__qualname__`, :attr:`~function.__annotations__`, :attr:`~function.__type_params__`, " -"and :attr:`~function.__doc__`, the documentation string) and " -"``WRAPPER_UPDATES`` (which updates the wrapper " -"function's :attr:`~function.__dict__`, i.e. the instance dictionary)." -msgstr "" - -#: ../../library/functools.rst:734 -msgid "" -"To allow access to the original function for introspection and other " -"purposes (e.g. bypassing a caching decorator such as :deco:`lru_cache`), " -"this function automatically adds a ``__wrapped__`` attribute to the wrapper " -"that refers to the function being wrapped." +msgid "Update a *wrapper* function to look like the *wrapped* function. The optional arguments are tuples to specify which attributes of the original function are assigned directly to the matching attributes on the wrapper function and which attributes of the wrapper function are updated with the corresponding attributes from the original function. The default values for these arguments are the module level constants ``WRAPPER_ASSIGNMENTS`` (which assigns to the wrapper function's :attr:`~function.__module__`, :attr:`~function.__name__`, :attr:`~function.__qualname__`, :attr:`~function.__annotations__`, :attr:`~function.__type_params__`, and :attr:`~function.__doc__`, the documentation string) and ``WRAPPER_UPDATES`` (which updates the wrapper function's :attr:`~function.__dict__`, i.e. the instance dictionary)." msgstr "" -#: ../../library/functools.rst:739 -msgid "" -"The main intended use for this function is in :term:`decorator` functions " -"which wrap the decorated function and return the wrapper. If the wrapper " -"function is not updated, the metadata of the returned function will reflect " -"the wrapper definition rather than the original function definition, which " -"is typically less than helpful." +msgid "To allow access to the original function for introspection and other purposes (e.g. bypassing a caching decorator such as :deco:`lru_cache`), this function automatically adds a ``__wrapped__`` attribute to the wrapper that refers to the function being wrapped." msgstr "" -#: ../../library/functools.rst:745 -msgid "" -":func:`update_wrapper` may be used with callables other than functions. Any " -"attributes named in *assigned* or *updated* that are missing from the object " -"being wrapped are ignored (i.e. this function will not attempt to set them " -"on the wrapper function). :exc:`AttributeError` is still raised if the " -"wrapper function itself is missing any attributes named in *updated*." +msgid "The main intended use for this function is in :term:`decorator` functions which wrap the decorated function and return the wrapper. If the wrapper function is not updated, the metadata of the returned function will reflect the wrapper definition rather than the original function definition, which is typically less than helpful." msgstr "" -#: ../../library/functools.rst:751 -msgid "" -"The ``__wrapped__`` attribute is now automatically added. " -"The :attr:`~function.__annotations__` attribute is now copied by default. " -"Missing attributes no longer trigger an :exc:`AttributeError`." +msgid ":func:`update_wrapper` may be used with callables other than functions. Any attributes named in *assigned* or *updated* that are missing from the object being wrapped are ignored (i.e. this function will not attempt to set them on the wrapper function). :exc:`AttributeError` is still raised if the wrapper function itself is missing any attributes named in *updated*." msgstr "" -#: ../../library/functools.rst:756 -msgid "" -"The ``__wrapped__`` attribute now always refers to the wrapped function, " -"even if that function defined a ``__wrapped__`` attribute. " -"(see :issue:`17482`)" +msgid "The ``__wrapped__`` attribute is now automatically added. The :attr:`~function.__annotations__` attribute is now copied by default. Missing attributes no longer trigger an :exc:`AttributeError`." msgstr "" -#: ../../library/functools.rst:761 -msgid "" -"The :attr:`~function.__type_params__` attribute is now copied by default." +msgid "The ``__wrapped__`` attribute now always refers to the wrapped function, even if that function defined a ``__wrapped__`` attribute. (see :issue:`17482`)" msgstr "" -#: ../../library/functools.rst:767 -msgid "" -"This is a convenience function for invoking :func:`update_wrapper` as a " -"function decorator when defining a wrapper function. It is equivalent to " -"``partial(update_wrapper, wrapped=wrapped, assigned=assigned, " -"updated=updated)``. For example::" +msgid "The :attr:`~function.__type_params__` attribute is now copied by default." +msgstr "" + +msgid "This is a convenience function for invoking :func:`update_wrapper` as a function decorator when defining a wrapper function. It is equivalent to ``partial(update_wrapper, wrapped=wrapped, assigned=assigned, updated=updated)``. For example::" msgstr "" -#: ../../library/functools.rst:772 msgid "" ">>> from functools import wraps\n" ">>> def my_decorator(f):\n" @@ -1046,46 +638,23 @@ msgid "" "'Docstring'" msgstr "" -#: ../../library/functools.rst:793 -msgid "" -"Without the use of this decorator factory, the name of the example function " -"would have been ``'wrapper'``, and the docstring of the original :func:`!" -"example` would have been lost." +msgid "Without the use of this decorator factory, the name of the example function would have been ``'wrapper'``, and the docstring of the original :func:`!example` would have been lost." msgstr "" -#: ../../library/functools.rst:801 msgid ":class:`partial` Objects" msgstr "" -#: ../../library/functools.rst:803 -msgid "" -":class:`partial` objects are callable objects created by :func:`partial`. " -"They have three read-only attributes:" +msgid ":class:`partial` objects are callable objects created by :func:`partial`. They have three read-only attributes:" msgstr "" -#: ../../library/functools.rst:809 -msgid "" -"A callable object or function. Calls to the :class:`partial` object will be " -"forwarded to :attr:`func` with new arguments and keywords." +msgid "A callable object or function. Calls to the :class:`partial` object will be forwarded to :attr:`func` with new arguments and keywords." msgstr "" -#: ../../library/functools.rst:815 -msgid "" -"The leftmost positional arguments that will be prepended to the positional " -"arguments provided to a :class:`partial` object call." +msgid "The leftmost positional arguments that will be prepended to the positional arguments provided to a :class:`partial` object call." msgstr "" -#: ../../library/functools.rst:821 -msgid "" -"The keyword arguments that will be supplied when the :class:`partial` object " -"is called." +msgid "The keyword arguments that will be supplied when the :class:`partial` object is called." msgstr "" -#: ../../library/functools.rst:824 -msgid "" -":class:`partial` objects are like :ref:`function objects ` in that they are callable, weak referenceable, and can have " -"attributes. There are some important differences. For instance, " -"the :attr:`~definition.__name__` and :attr:`~definition.__doc__` attributes " -"are not created automatically." +msgid ":class:`partial` objects are like :ref:`function objects ` in that they are callable, weak referenceable, and can have attributes. There are some important differences. For instance, the :attr:`~definition.__name__` and :attr:`~definition.__doc__` attributes are not created automatically." msgstr "" diff --git a/library/gc.po b/library/gc.po index 54c0d0e9..6c9eb47d 100644 --- a/library/gc.po +++ b/library/gc.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:06+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,250 +21,117 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/gc.rst:2 msgid ":mod:`!gc` --- Garbage Collector interface" msgstr "" -#: ../../library/gc.rst:12 -msgid "" -"This module provides an interface to the optional garbage collector. It " -"provides the ability to disable the collector, tune the collection " -"frequency, and set debugging options. It also provides access to " -"unreachable objects that the collector found but cannot free. Since the " -"collector supplements the reference counting already used in Python, you can " -"disable the collector if you are sure your program does not create reference " -"cycles. Automatic collection can be disabled by calling ``gc.disable()``. " -"To debug a leaking program call ``gc.set_debug(gc.DEBUG_LEAK)``. Notice that " -"this includes ``gc.DEBUG_SAVEALL``, causing garbage-collected objects to be " -"saved in gc.garbage for inspection." -msgstr "" - -#: ../../library/gc.rst:23 +msgid "This module provides an interface to the optional garbage collector. It provides the ability to disable the collector, tune the collection frequency, and set debugging options. It also provides access to unreachable objects that the collector found but cannot free. Since the collector supplements the reference counting already used in Python, you can disable the collector if you are sure your program does not create reference cycles. Automatic collection can be disabled by calling ``gc.disable()``. To debug a leaking program call ``gc.set_debug(gc.DEBUG_LEAK)``. Notice that this includes ``gc.DEBUG_SAVEALL``, causing garbage-collected objects to be saved in gc.garbage for inspection." +msgstr "" + msgid "The :mod:`!gc` module provides the following functions:" msgstr "" -#: ../../library/gc.rst:28 msgid "Enable automatic garbage collection." msgstr "" -#: ../../library/gc.rst:33 msgid "Disable automatic garbage collection." msgstr "" -#: ../../library/gc.rst:38 msgid "Return ``True`` if automatic collection is enabled." msgstr "" -#: ../../library/gc.rst:43 -msgid "" -"With no arguments, run a full collection. The optional argument " -"*generation* may be an integer specifying which generation to collect (from " -"0 to 2). A :exc:`ValueError` is raised if the generation number is invalid. " -"The sum of collected objects and uncollectable objects is returned." +msgid "With no arguments, run a full collection. The optional argument *generation* may be an integer specifying which generation to collect (from 0 to 2). A :exc:`ValueError` is raised if the generation number is invalid. The sum of collected objects and uncollectable objects is returned." msgstr "" -#: ../../library/gc.rst:48 -msgid "" -"The free lists maintained for a number of built-in types are cleared " -"whenever a full collection or collection of the highest generation (2) is " -"run. Not all items in some free lists may be freed due to the particular " -"implementation, in particular :class:`float`." +msgid "The free lists maintained for a number of built-in types are cleared whenever a full collection or collection of the highest generation (2) is run. Not all items in some free lists may be freed due to the particular implementation, in particular :class:`float`." msgstr "" -#: ../../library/gc.rst:53 -msgid "" -"The effect of calling ``gc.collect()`` while the interpreter is already " -"performing a collection is undefined." +msgid "The effect of calling ``gc.collect()`` while the interpreter is already performing a collection is undefined." msgstr "" -#: ../../library/gc.rst:56 msgid "``generation=1`` performs an increment of collection." msgstr "" -#: ../../library/gc.rst:59 msgid "``generation=1`` performs collection of the middle generation." msgstr "" -#: ../../library/gc.rst:65 -msgid "" -"Set the garbage collection debugging flags. Debugging information will be " -"written to ``sys.stderr``. See below for a list of debugging flags which " -"can be combined using bit operations to control debugging." +msgid "Set the garbage collection debugging flags. Debugging information will be written to ``sys.stderr``. See below for a list of debugging flags which can be combined using bit operations to control debugging." msgstr "" -#: ../../library/gc.rst:72 msgid "Return the debugging flags currently set." msgstr "" -#: ../../library/gc.rst:77 -msgid "" -"Returns a list of all objects tracked by the collector, excluding the list " -"returned. If *generation* is not ``None``, return only the objects tracked " -"by the collector that are in that generation." +msgid "Returns a list of all objects tracked by the collector, excluding the list returned. If *generation* is not ``None``, return only the objects tracked by the collector that are in that generation." msgstr "" -#: ../../library/gc.rst:81 msgid "New *generation* parameter." msgstr "" -#: ../../library/gc.rst:84 msgid "Generation 1 is removed" msgstr "" -#: ../../library/gc.rst:87 msgid "Generation 1 is reintroduced to maintain GC behavior from 3.13." msgstr "" -#: ../../library/gc.rst:90 -msgid "" -"Raises an :ref:`auditing event ` ``gc.get_objects`` with argument " -"``generation``." +msgid "Raises an :ref:`auditing event ` ``gc.get_objects`` with argument ``generation``." msgstr "" -#: ../../library/gc.rst:94 -msgid "" -"Return a list of three per-generation dictionaries containing collection " -"statistics since interpreter start. The number of keys may change in the " -"future, but currently each dictionary will contain the following items:" +msgid "Return a list of three per-generation dictionaries containing collection statistics since interpreter start. The number of keys may change in the future, but currently each dictionary will contain the following items:" msgstr "" -#: ../../library/gc.rst:99 msgid "``collections`` is the number of times this generation was collected;" msgstr "" -#: ../../library/gc.rst:101 -msgid "" -"``collected`` is the total number of objects collected inside this " -"generation;" +msgid "``collected`` is the total number of objects collected inside this generation;" msgstr "" -#: ../../library/gc.rst:104 -msgid "" -"``uncollectable`` is the total number of objects which were found to be " -"uncollectable (and were therefore moved to the :data:`garbage` list) inside " -"this generation." +msgid "``uncollectable`` is the total number of objects which were found to be uncollectable (and were therefore moved to the :data:`garbage` list) inside this generation." msgstr "" -#: ../../library/gc.rst:113 -msgid "" -"Set the garbage collection thresholds (the collection frequency). Setting " -"*threshold0* to zero disables collection." +msgid "Set the garbage collection thresholds (the collection frequency). Setting *threshold0* to zero disables collection." msgstr "" -#: ../../library/gc.rst:116 -msgid "" -"The GC classifies objects into three generations depending on how many " -"collection sweeps they have survived. New objects are placed in the " -"youngest generation (generation ``0``). If an object survives a collection " -"it is moved into the next older generation. Since generation ``2`` is the " -"oldest generation, objects in that generation remain there after a " -"collection. In order to decide when to run, the collector keeps track of " -"the number object allocations and deallocations since the last collection. " -"When the number of allocations minus the number of deallocations exceeds " -"*threshold0*, collection starts. Initially only generation ``0`` is " -"examined. If generation ``0`` has been examined more than *threshold1* " -"times since generation ``1`` has been examined, then generation ``1`` is " -"examined as well. With the third generation, things are a bit more " -"complicated, see `Collecting the oldest generation `_ for more " -"information." -msgstr "" - -#: ../../library/gc.rst:130 -msgid "" -"In the free-threaded build, the increase in process memory usage is also " -"checked before running the collector. If the memory usage has not increased " -"by 10% since the last collection and the net number of object allocations " -"has not exceeded 40 times *threshold0*, the collection is not run." +msgid "The GC classifies objects into three generations depending on how many collection sweeps they have survived. New objects are placed in the youngest generation (generation ``0``). If an object survives a collection it is moved into the next older generation. Since generation ``2`` is the oldest generation, objects in that generation remain there after a collection. In order to decide when to run, the collector keeps track of the number object allocations and deallocations since the last collection. When the number of allocations minus the number of deallocations exceeds *threshold0*, collection starts. Initially only generation ``0`` is examined. If generation ``0`` has been examined more than *threshold1* times since generation ``1`` has been examined, then generation ``1`` is examined as well. With the third generation, things are a bit more complicated, see `Collecting the oldest generation `_ for more information." msgstr "" -#: ../../library/gc.rst:135 -msgid "" -"See `Garbage collector design `_ for more information." +msgid "In the free-threaded build, the increase in process memory usage is also checked before running the collector. If the memory usage has not increased by 10% since the last collection and the net number of object allocations has not exceeded 40 times *threshold0*, the collection is not run." +msgstr "" + +msgid "See `Garbage collector design `_ for more information." msgstr "" -#: ../../library/gc.rst:137 msgid "*threshold2* is ignored" msgstr "" -#: ../../library/gc.rst:140 msgid "*threshold2* is restored to match Python 3.13 behavior." msgstr "" -#: ../../library/gc.rst:146 -msgid "" -"Return the current collection counts as a tuple of ``(count0, count1, " -"count2)``." +msgid "Return the current collection counts as a tuple of ``(count0, count1, count2)``." msgstr "" -#: ../../library/gc.rst:152 -msgid "" -"Return the current collection thresholds as a tuple of ``(threshold0, " -"threshold1, threshold2)``." +msgid "Return the current collection thresholds as a tuple of ``(threshold0, threshold1, threshold2)``." msgstr "" -#: ../../library/gc.rst:158 -msgid "" -"Return the list of objects that directly refer to any of objs. This function " -"will only locate those containers which support garbage collection; " -"extension types which do refer to other objects but do not support garbage " -"collection will not be found." +msgid "Return the list of objects that directly refer to any of objs. This function will only locate those containers which support garbage collection; extension types which do refer to other objects but do not support garbage collection will not be found." msgstr "" -#: ../../library/gc.rst:163 -msgid "" -"Note that objects which have already been dereferenced, but which live in " -"cycles and have not yet been collected by the garbage collector can be " -"listed among the resulting referrers. To get only currently live objects, " -"call :func:`collect` before calling :func:`get_referrers`." +msgid "Note that objects which have already been dereferenced, but which live in cycles and have not yet been collected by the garbage collector can be listed among the resulting referrers. To get only currently live objects, call :func:`collect` before calling :func:`get_referrers`." msgstr "" -#: ../../library/gc.rst:169 -msgid "" -"Care must be taken when using objects returned by :func:`get_referrers` " -"because some of them could still be under construction and hence in a " -"temporarily invalid state. Avoid using :func:`get_referrers` for any purpose " -"other than debugging." +msgid "Care must be taken when using objects returned by :func:`get_referrers` because some of them could still be under construction and hence in a temporarily invalid state. Avoid using :func:`get_referrers` for any purpose other than debugging." msgstr "" -#: ../../library/gc.rst:174 -msgid "" -"Raises an :ref:`auditing event ` ``gc.get_referrers`` with " -"argument ``objs``." +msgid "Raises an :ref:`auditing event ` ``gc.get_referrers`` with argument ``objs``." msgstr "" -#: ../../library/gc.rst:179 -msgid "" -"Return a list of objects directly referred to by any of the arguments. The " -"referents returned are those objects visited by the arguments' C-" -"level :c:member:`~PyTypeObject.tp_traverse` methods (if any), and may not be " -"all objects actually directly " -"reachable. :c:member:`~PyTypeObject.tp_traverse` methods are supported only " -"by objects that support garbage collection, and are only required to visit " -"objects that may be involved in a cycle. So, for example, if an integer is " -"directly reachable from an argument, that integer object may or may not " -"appear in the result list." -msgstr "" - -#: ../../library/gc.rst:187 -msgid "" -"Raises an :ref:`auditing event ` ``gc.get_referents`` with " -"argument ``objs``." +msgid "Return a list of objects directly referred to by any of the arguments. The referents returned are those objects visited by the arguments' C-level :c:member:`~PyTypeObject.tp_traverse` methods (if any), and may not be all objects actually directly reachable. :c:member:`~PyTypeObject.tp_traverse` methods are supported only by objects that support garbage collection, and are only required to visit objects that may be involved in a cycle. So, for example, if an integer is directly reachable from an argument, that integer object may or may not appear in the result list." msgstr "" -#: ../../library/gc.rst:191 -msgid "" -"Returns ``True`` if the object is currently tracked by the garbage " -"collector, ``False`` otherwise. As a general rule, instances of atomic " -"types aren't tracked and instances of non-atomic types (containers, user-" -"defined objects...) are. However, some type-specific optimizations can be " -"present in order to suppress the garbage collector footprint of simple " -"instances (e.g. dicts containing only atomic keys and values)::" +msgid "Raises an :ref:`auditing event ` ``gc.get_referents`` with argument ``objs``." +msgstr "" + +msgid "Returns ``True`` if the object is currently tracked by the garbage collector, ``False`` otherwise. As a general rule, instances of atomic types aren't tracked and instances of non-atomic types (containers, user-defined objects...) are. However, some type-specific optimizations can be present in order to suppress the garbage collector footprint of simple instances (e.g. dicts containing only atomic keys and values)::" msgstr "" -#: ../../library/gc.rst:198 msgid "" ">>> gc.is_tracked(0)\n" "False\n" @@ -278,13 +145,9 @@ msgid "" "True" msgstr "" -#: ../../library/gc.rst:214 -msgid "" -"Returns ``True`` if the given object has been finalized by the garbage " -"collector, ``False`` otherwise. ::" +msgid "Returns ``True`` if the given object has been finalized by the garbage collector, ``False`` otherwise. ::" msgstr "" -#: ../../library/gc.rst:217 msgid "" ">>> x = None\n" ">>> class Lazarus:\n" @@ -300,163 +163,83 @@ msgid "" "True" msgstr "" -#: ../../library/gc.rst:235 -msgid "" -"Freeze all the objects tracked by the garbage collector; move them to a " -"permanent generation and ignore them in all the future collections." +msgid "Freeze all the objects tracked by the garbage collector; move them to a permanent generation and ignore them in all the future collections." msgstr "" -#: ../../library/gc.rst:238 -msgid "" -"If a process will ``fork()`` without ``exec()``, avoiding unnecessary copy-" -"on-write in child processes will maximize memory sharing and reduce overall " -"memory usage. This requires both avoiding creation of freed \"holes\" in " -"memory pages in the parent process and ensuring that GC collections in child " -"processes won't touch the ``gc_refs`` counter of long-lived objects " -"originating in the parent process. To accomplish both, call ``gc.disable()`` " -"early in the parent process, ``gc.freeze()`` right before ``fork()``, and " -"``gc.enable()`` early in child processes." +msgid "If a process will ``fork()`` without ``exec()``, avoiding unnecessary copy-on-write in child processes will maximize memory sharing and reduce overall memory usage. This requires both avoiding creation of freed \"holes\" in memory pages in the parent process and ensuring that GC collections in child processes won't touch the ``gc_refs`` counter of long-lived objects originating in the parent process. To accomplish both, call ``gc.disable()`` early in the parent process, ``gc.freeze()`` right before ``fork()``, and ``gc.enable()`` early in child processes." msgstr "" -#: ../../library/gc.rst:252 -msgid "" -"Unfreeze the objects in the permanent generation, put them back into the " -"oldest generation." +msgid "Unfreeze the objects in the permanent generation, put them back into the oldest generation." msgstr "" -#: ../../library/gc.rst:260 msgid "Return the number of objects in the permanent generation." msgstr "" -#: ../../library/gc.rst:265 -msgid "" -"The following variables are provided for read-only access (you can mutate " -"the values but should not rebind them):" +msgid "The following variables are provided for read-only access (you can mutate the values but should not rebind them):" msgstr "" -#: ../../library/gc.rst:270 -msgid "" -"A list of objects which the collector found to be unreachable but could not " -"be freed (uncollectable objects). Starting with Python 3.4, this list " -"should be empty most of the time, except when using instances of C extension " -"types with a non-``NULL`` ``tp_del`` slot." +msgid "A list of objects which the collector found to be unreachable but could not be freed (uncollectable objects). Starting with Python 3.4, this list should be empty most of the time, except when using instances of C extension types with a non-``NULL`` ``tp_del`` slot." msgstr "" -#: ../../library/gc.rst:275 -msgid "" -"If :const:`DEBUG_SAVEALL` is set, then all unreachable objects will be added " -"to this list rather than freed." +msgid "If :const:`DEBUG_SAVEALL` is set, then all unreachable objects will be added to this list rather than freed." msgstr "" -#: ../../library/gc.rst:278 -msgid "" -"If this list is non-empty at :term:`interpreter shutdown`, " -"a :exc:`ResourceWarning` is emitted, which is silent by default. " -"If :const:`DEBUG_UNCOLLECTABLE` is set, in addition all uncollectable " -"objects are printed." +msgid "If this list is non-empty at :term:`interpreter shutdown`, a :exc:`ResourceWarning` is emitted, which is silent by default. If :const:`DEBUG_UNCOLLECTABLE` is set, in addition all uncollectable objects are printed." msgstr "" -#: ../../library/gc.rst:284 -msgid "" -"Following :pep:`442`, objects with a :meth:`~object.__del__` method don't " -"end up in :data:`gc.garbage` anymore." +msgid "Following :pep:`442`, objects with a :meth:`~object.__del__` method don't end up in :data:`gc.garbage` anymore." msgstr "" -#: ../../library/gc.rst:290 -msgid "" -"A list of callbacks that will be invoked by the garbage collector before and " -"after collection. The callbacks will be called with two arguments, *phase* " -"and *info*." +msgid "A list of callbacks that will be invoked by the garbage collector before and after collection. The callbacks will be called with two arguments, *phase* and *info*." msgstr "" -#: ../../library/gc.rst:294 msgid "*phase* can be one of two values:" msgstr "" -#: ../../library/gc.rst:296 msgid "\"start\": The garbage collection is about to start." msgstr "" -#: ../../library/gc.rst:298 msgid "\"stop\": The garbage collection has finished." msgstr "" -#: ../../library/gc.rst:300 -msgid "" -"*info* is a dict providing more information for the callback. The following " -"keys are currently defined:" +msgid "*info* is a dict providing more information for the callback. The following keys are currently defined:" msgstr "" -#: ../../library/gc.rst:303 msgid "\"generation\": The oldest generation being collected." msgstr "" -#: ../../library/gc.rst:305 -msgid "" -"\"collected\": When *phase* is \"stop\", the number of objects successfully " -"collected." +msgid "\"collected\": When *phase* is \"stop\", the number of objects successfully collected." msgstr "" -#: ../../library/gc.rst:308 -msgid "" -"\"uncollectable\": When *phase* is \"stop\", the number of objects that " -"could not be collected and were put in :data:`garbage`." +msgid "\"uncollectable\": When *phase* is \"stop\", the number of objects that could not be collected and were put in :data:`garbage`." msgstr "" -#: ../../library/gc.rst:311 -msgid "" -"Applications can add their own callbacks to this list. The primary use " -"cases are:" +msgid "Applications can add their own callbacks to this list. The primary use cases are:" msgstr "" -#: ../../library/gc.rst:314 -msgid "" -"Gathering statistics about garbage collection, such as how often various " -"generations are collected, and how long the collection takes." +msgid "Gathering statistics about garbage collection, such as how often various generations are collected, and how long the collection takes." msgstr "" -#: ../../library/gc.rst:318 -msgid "" -"Allowing applications to identify and clear their own uncollectable types " -"when they appear in :data:`garbage`." +msgid "Allowing applications to identify and clear their own uncollectable types when they appear in :data:`garbage`." msgstr "" -#: ../../library/gc.rst:324 msgid "The following constants are provided for use with :func:`set_debug`:" msgstr "" -#: ../../library/gc.rst:329 -msgid "" -"Print statistics during collection. This information can be useful when " -"tuning the collection frequency." +msgid "Print statistics during collection. This information can be useful when tuning the collection frequency." msgstr "" -#: ../../library/gc.rst:335 msgid "Print information on collectable objects found." msgstr "" -#: ../../library/gc.rst:340 -msgid "" -"Print information of uncollectable objects found (objects which are not " -"reachable but cannot be freed by the collector). These objects will be " -"added to the ``garbage`` list." +msgid "Print information of uncollectable objects found (objects which are not reachable but cannot be freed by the collector). These objects will be added to the ``garbage`` list." msgstr "" -#: ../../library/gc.rst:344 -msgid "" -"Also print the contents of the :data:`garbage` list at :term:`interpreter " -"shutdown`, if it isn't empty." +msgid "Also print the contents of the :data:`garbage` list at :term:`interpreter shutdown`, if it isn't empty." msgstr "" -#: ../../library/gc.rst:350 -msgid "" -"When set, all unreachable objects found will be appended to *garbage* rather " -"than being freed. This can be useful for debugging a leaking program." +msgid "When set, all unreachable objects found will be appended to *garbage* rather than being freed. This can be useful for debugging a leaking program." msgstr "" -#: ../../library/gc.rst:356 -msgid "" -"The debugging flags necessary for the collector to print information about a " -"leaking program (equal to ``DEBUG_COLLECTABLE | DEBUG_UNCOLLECTABLE | " -"DEBUG_SAVEALL``)." +msgid "The debugging flags necessary for the collector to print information about a leaking program (equal to ``DEBUG_COLLECTABLE | DEBUG_UNCOLLECTABLE | DEBUG_SAVEALL``)." msgstr "" diff --git a/library/getopt.po b/library/getopt.po index 6f3b1c7c..fd927934 100644 --- a/library/getopt.po +++ b/library/getopt.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:06+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,150 +21,63 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/getopt.rst:2 msgid ":mod:`!getopt` --- C-style parser for command line options" msgstr "" -#: ../../library/getopt.rst:8 msgid "**Source code:** :source:`Lib/getopt.py`" msgstr "" -#: ../../library/getopt.rst:12 -msgid "" -"This module is considered feature complete. A more declarative and " -"extensible alternative to this API is provided in the :mod:`optparse` " -"module. Further functional enhancements for command line parameter " -"processing are provided either as third party modules on PyPI, or else as " -"features in the :mod:`argparse` module." +msgid "This module is considered feature complete. A more declarative and extensible alternative to this API is provided in the :mod:`optparse` module. Further functional enhancements for command line parameter processing are provided either as third party modules on PyPI, or else as features in the :mod:`argparse` module." msgstr "" -#: ../../library/getopt.rst:20 -msgid "" -"This module helps scripts to parse the command line arguments in " -"``sys.argv``. It supports the same conventions as the Unix :c:func:`!getopt` " -"function (including the special meanings of arguments of the form '``-``' " -"and '``--``'). Long options similar to those supported by GNU software may " -"be used as well via an optional third argument." +msgid "This module helps scripts to parse the command line arguments in ``sys.argv``. It supports the same conventions as the Unix :c:func:`!getopt` function (including the special meanings of arguments of the form '``-``' and '``--``'). Long options similar to those supported by GNU software may be used as well via an optional third argument." msgstr "" -#: ../../library/getopt.rst:26 -msgid "" -"Users who are unfamiliar with the Unix :c:func:`!getopt` function should " -"consider using the :mod:`argparse` module instead. Users who are familiar " -"with the Unix :c:func:`!getopt` function, but would like to get equivalent " -"behavior while writing less code and getting better help and error messages " -"should consider using the :mod:`optparse` module. See :ref:`choosing-an-" -"argument-parser` for additional details." +msgid "Users who are unfamiliar with the Unix :c:func:`!getopt` function should consider using the :mod:`argparse` module instead. Users who are familiar with the Unix :c:func:`!getopt` function, but would like to get equivalent behavior while writing less code and getting better help and error messages should consider using the :mod:`optparse` module. See :ref:`choosing-an-argument-parser` for additional details." msgstr "" -#: ../../library/getopt.rst:33 msgid "This module provides two functions and an exception:" msgstr "" -#: ../../library/getopt.rst:39 -msgid "" -"Parses command line options and parameter list. *args* is the argument list " -"to be parsed, without the leading reference to the running program. " -"Typically, this means ``sys.argv[1:]``. *shortopts* is the string of option " -"letters that the script wants to recognize, with options that require an " -"argument followed by a colon (``':'``) and options that accept an optional " -"argument followed by two colons (``'::'``); i.e., the same format that " -"Unix :c:func:`!getopt` uses." +msgid "Parses command line options and parameter list. *args* is the argument list to be parsed, without the leading reference to the running program. Typically, this means ``sys.argv[1:]``. *shortopts* is the string of option letters that the script wants to recognize, with options that require an argument followed by a colon (``':'``) and options that accept an optional argument followed by two colons (``'::'``); i.e., the same format that Unix :c:func:`!getopt` uses." msgstr "" -#: ../../library/getopt.rst:48 -msgid "" -"Unlike GNU :c:func:`!getopt`, after a non-option argument, all further " -"arguments are considered also non-options. This is similar to the way non-" -"GNU Unix systems work." +msgid "Unlike GNU :c:func:`!getopt`, after a non-option argument, all further arguments are considered also non-options. This is similar to the way non-GNU Unix systems work." msgstr "" -#: ../../library/getopt.rst:52 -msgid "" -"*longopts*, if specified, must be a list of strings with the names of the " -"long options which should be supported. The leading ``'--'`` characters " -"should not be included in the option name. Long options which require an " -"argument should be followed by an equal sign (``'='``). Long options which " -"accept an optional argument should be followed by an equal sign and question " -"mark (``'=?'``). To accept only long options, *shortopts* should be an empty " -"string. Long options on the command line can be recognized so long as they " -"provide a prefix of the option name that matches exactly one of the accepted " -"options. For example, if *longopts* is ``['foo', 'frob']``, the option ``--" -"fo`` will match as ``--foo``, but ``--f`` will not match uniquely, " -"so :exc:`GetoptError` will be raised." -msgstr "" - -#: ../../library/getopt.rst:65 -msgid "" -"If *longopts* is a string it gets treated as a list of a single element." +msgid "*longopts*, if specified, must be a list of strings with the names of the long options which should be supported. The leading ``'--'`` characters should not be included in the option name. Long options which require an argument should be followed by an equal sign (``'='``). Long options which accept an optional argument should be followed by an equal sign and question mark (``'=?'``). To accept only long options, *shortopts* should be an empty string. Long options on the command line can be recognized so long as they provide a prefix of the option name that matches exactly one of the accepted options. For example, if *longopts* is ``['foo', 'frob']``, the option ``--fo`` will match as ``--foo``, but ``--f`` will not match uniquely, so :exc:`GetoptError` will be raised." +msgstr "" + +msgid "If *longopts* is a string it gets treated as a list of a single element." +msgstr "" + +msgid "The return value consists of two elements: the first is a list of ``(option, value)`` pairs; the second is the list of program arguments left after the option list was stripped (this is a trailing slice of *args*). Each option-and-value pair returned has the option as its first element, prefixed with a hyphen for short options (e.g., ``'-x'``) or two hyphens for long options (e.g., ``'--long-option'``), and the option argument as its second element, or an empty string if the option has no argument. The options occur in the list in the same order in which they were found, thus allowing multiple occurrences. Long and short options may be mixed." msgstr "" -#: ../../library/getopt.rst:67 -msgid "" -"The return value consists of two elements: the first is a list of ``(option, " -"value)`` pairs; the second is the list of program arguments left after the " -"option list was stripped (this is a trailing slice of *args*). Each option-" -"and-value pair returned has the option as its first element, prefixed with a " -"hyphen for short options (e.g., ``'-x'``) or two hyphens for long options " -"(e.g., ``'--long-option'``), and the option argument as its second element, " -"or an empty string if the option has no argument. The options occur in the " -"list in the same order in which they were found, thus allowing multiple " -"occurrences. Long and short options may be mixed." -msgstr "" - -#: ../../library/getopt.rst:77 msgid "Optional arguments are supported." msgstr "" -#: ../../library/getopt.rst:83 -msgid "" -"This function works like :func:`getopt`, except that GNU style scanning mode " -"is used by default. This means that option and non-option arguments may be " -"intermixed. The :func:`getopt` function stops processing options as soon as " -"a non-option argument is encountered." +msgid "This function works like :func:`getopt`, except that GNU style scanning mode is used by default. This means that option and non-option arguments may be intermixed. The :func:`getopt` function stops processing options as soon as a non-option argument is encountered." msgstr "" -#: ../../library/getopt.rst:88 -msgid "" -"If the first character of the option string is ``'+'``, or if the " -"environment variable :envvar:`!POSIXLY_CORRECT` is set, then option " -"processing stops as soon as a non-option argument is encountered." +msgid "If the first character of the option string is ``'+'``, or if the environment variable :envvar:`!POSIXLY_CORRECT` is set, then option processing stops as soon as a non-option argument is encountered." msgstr "" -#: ../../library/getopt.rst:92 -msgid "" -"If the first character of the option string is ``'-'``, non-option arguments " -"that are followed by options are added to the list of option-and-value pairs " -"as a pair that has ``None`` as its first element and the list of non-option " -"arguments as its second element. The second element of the :func:`!" -"gnu_getopt` result is a list of program arguments after the last option." +msgid "If the first character of the option string is ``'-'``, non-option arguments that are followed by options are added to the list of option-and-value pairs as a pair that has ``None`` as its first element and the list of non-option arguments as its second element. The second element of the :func:`!gnu_getopt` result is a list of program arguments after the last option." msgstr "" -#: ../../library/getopt.rst:99 -msgid "" -"Support for returning intermixed options and non-option arguments in order." +msgid "Support for returning intermixed options and non-option arguments in order." msgstr "" -#: ../../library/getopt.rst:105 -msgid "" -"This is raised when an unrecognized option is found in the argument list or " -"when an option requiring an argument is given none. The argument to the " -"exception is a string indicating the cause of the error. For long options, " -"an argument given to an option which does not require one will also cause " -"this exception to be raised. The attributes :attr:`!msg` and :attr:`!opt` " -"give the error message and related option; if there is no specific option to " -"which the exception relates, :attr:`!opt` is an empty string." +msgid "This is raised when an unrecognized option is found in the argument list or when an option requiring an argument is given none. The argument to the exception is a string indicating the cause of the error. For long options, an argument given to an option which does not require one will also cause this exception to be raised. The attributes :attr:`!msg` and :attr:`!opt` give the error message and related option; if there is no specific option to which the exception relates, :attr:`!opt` is an empty string." msgstr "" -#: ../../library/getopt.rst:116 msgid "Alias for :exc:`GetoptError`; for backward compatibility." msgstr "" -#: ../../library/getopt.rst:118 msgid "An example using only Unix style options:" msgstr "" -#: ../../library/getopt.rst:120 msgid "" ">>> import getopt\n" ">>> args = '-a -b -cfoo -d bar a1 a2'.split()\n" @@ -177,31 +90,25 @@ msgid "" "['a1', 'a2']" msgstr "" -#: ../../library/getopt.rst:132 msgid "Using long option names is equally easy:" msgstr "" -#: ../../library/getopt.rst:134 msgid "" ">>> s = '--condition=foo --testing --output-file abc.def -x a1 a2'\n" ">>> args = s.split()\n" ">>> args\n" -"['--condition=foo', '--testing', '--output-file', 'abc.def', '-x', 'a1', " -"'a2']\n" +"['--condition=foo', '--testing', '--output-file', 'abc.def', '-x', 'a1', 'a2']\n" ">>> optlist, args = getopt.getopt(args, 'x', [\n" "... 'condition=', 'output-file=', 'testing'])\n" ">>> optlist\n" -"[('--condition', 'foo'), ('--testing', ''), ('--output-file', 'abc.def'), ('-" -"x', '')]\n" +"[('--condition', 'foo'), ('--testing', ''), ('--output-file', 'abc.def'), ('-x', '')]\n" ">>> args\n" "['a1', 'a2']" msgstr "" -#: ../../library/getopt.rst:147 msgid "Optional arguments should be specified explicitly:" msgstr "" -#: ../../library/getopt.rst:149 msgid "" ">>> s = '-Con -C --color=off --color a1 a2'\n" ">>> args = s.split()\n" @@ -214,11 +121,9 @@ msgid "" "['a1', 'a2']" msgstr "" -#: ../../library/getopt.rst:161 msgid "The order of options and non-option arguments can be preserved:" msgstr "" -#: ../../library/getopt.rst:163 msgid "" ">>> s = 'a1 -x a2 a3 a4 --long a5 a6'\n" ">>> args = s.split()\n" @@ -231,22 +136,18 @@ msgid "" "['a6']" msgstr "" -#: ../../library/getopt.rst:175 msgid "In a script, typical usage is something like this:" msgstr "" -#: ../../library/getopt.rst:177 msgid "" "import getopt, sys\n" "\n" "def main():\n" " try:\n" -" opts, args = getopt.getopt(sys.argv[1:], \"ho:v\", [\"help\", " -"\"output=\"])\n" +" opts, args = getopt.getopt(sys.argv[1:], \"ho:v\", [\"help\", \"output=\"])\n" " except getopt.GetoptError as err:\n" " # print help information and exit:\n" -" print(err) # will print something like \"option -a not " -"recognized\"\n" +" print(err) # will print something like \"option -a not recognized\"\n" " usage()\n" " sys.exit(2)\n" " output = None\n" @@ -267,14 +168,9 @@ msgid "" " main()" msgstr "" -#: ../../library/getopt.rst:206 -msgid "" -"Note that an equivalent command line interface could be produced with less " -"code and more informative help and error messages by using " -"the :mod:`optparse` module:" +msgid "Note that an equivalent command line interface could be produced with less code and more informative help and error messages by using the :mod:`optparse` module:" msgstr "" -#: ../../library/getopt.rst:209 msgid "" "import optparse\n" "\n" @@ -286,13 +182,9 @@ msgid "" " process(args, output=opts.output, verbose=opts.verbose)" msgstr "" -#: ../../library/getopt.rst:220 -msgid "" -"A roughly equivalent command line interface for this case can also be " -"produced by using the :mod:`argparse` module:" +msgid "A roughly equivalent command line interface for this case can also be produced by using the :mod:`argparse` module:" msgstr "" -#: ../../library/getopt.rst:223 msgid "" "import argparse\n" "\n" @@ -305,25 +197,17 @@ msgid "" " process(args.rest, output=args.output, verbose=args.verbose)" msgstr "" -#: ../../library/getopt.rst:235 -msgid "" -"See :ref:`choosing-an-argument-parser` for details on how the ``argparse`` " -"version of this code differs in behaviour from the ``optparse`` (and " -"``getopt``) version." +msgid "See :ref:`choosing-an-argument-parser` for details on how the ``argparse`` version of this code differs in behaviour from the ``optparse`` (and ``getopt``) version." msgstr "" -#: ../../library/getopt.rst:241 msgid "Module :mod:`optparse`" msgstr "" -#: ../../library/getopt.rst:242 msgid "Declarative command line option parsing." msgstr "" -#: ../../library/getopt.rst:244 msgid "Module :mod:`argparse`" msgstr "" -#: ../../library/getopt.rst:245 msgid "More opinionated command line option and argument parsing library." msgstr "" diff --git a/library/getpass.po b/library/getpass.po index eaf47c63..b4c94eff 100644 --- a/library/getpass.po +++ b/library/getpass.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:06+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,95 +21,50 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/getpass.rst:2 msgid ":mod:`!getpass` --- Portable password input" msgstr "" -#: ../../library/getpass.rst:11 msgid "**Source code:** :source:`Lib/getpass.py`" msgstr "" -#: ../../includes/wasm-notavail.rst:3 msgid "Availability" msgstr "" -#: ../../includes/wasm-notavail.rst:5 -msgid "" -"This module does not work or is not available on WebAssembly. See :ref:`wasm-" -"availability` for more information." +msgid "This module does not work or is not available on WebAssembly. See :ref:`wasm-availability` for more information." msgstr "" -#: ../../library/getpass.rst:17 msgid "The :mod:`!getpass` module provides two functions:" msgstr "" -#: ../../library/getpass.rst:21 -msgid "" -"Prompt the user for a password without echoing. The user is prompted using " -"the string *prompt*, which defaults to ``'Password: '``. On Unix, the " -"prompt is written to the file-like object *stream* using the replace error " -"handler if needed. *stream* defaults to the controlling terminal (:file:`/" -"dev/tty`) or if that is unavailable to ``sys.stderr`` (this argument is " -"ignored on Windows)." +msgid "Prompt the user for a password without echoing. The user is prompted using the string *prompt*, which defaults to ``'Password: '``. On Unix, the prompt is written to the file-like object *stream* using the replace error handler if needed. *stream* defaults to the controlling terminal (:file:`/dev/tty`) or if that is unavailable to ``sys.stderr`` (this argument is ignored on Windows)." msgstr "" -#: ../../library/getpass.rst:28 -msgid "" -"The *echo_char* argument controls how user input is displayed while typing. " -"If *echo_char* is ``None`` (default), input remains hidden. Otherwise, " -"*echo_char* must be a single printable ASCII character and each typed " -"character is replaced by it. For example, ``echo_char='*'`` will display " -"asterisks instead of the actual input." +msgid "The *echo_char* argument controls how user input is displayed while typing. If *echo_char* is ``None`` (default), input remains hidden. Otherwise, *echo_char* must be a single printable ASCII character and each typed character is replaced by it. For example, ``echo_char='*'`` will display asterisks instead of the actual input." msgstr "" -#: ../../library/getpass.rst:34 -msgid "" -"If echo free input is unavailable getpass() falls back to printing a warning " -"message to *stream* and reading from ``sys.stdin`` and issuing " -"a :exc:`GetPassWarning`." +msgid "If echo free input is unavailable getpass() falls back to printing a warning message to *stream* and reading from ``sys.stdin`` and issuing a :exc:`GetPassWarning`." msgstr "" -#: ../../library/getpass.rst:39 -msgid "" -"If you call getpass from within IDLE, the input may be done in the terminal " -"you launched IDLE from rather than the idle window itself." +msgid "If you call getpass from within IDLE, the input may be done in the terminal you launched IDLE from rather than the idle window itself." msgstr "" -#: ../../library/getpass.rst:43 -msgid "" -"On Unix systems, when *echo_char* is set, the terminal will be configured to " -"operate in :manpage:`noncanonical mode " -"`. In particular, this means " -"that line editing shortcuts such as :kbd:`Ctrl+U` will not work and may " -"insert unexpected characters into the input." +msgid "On Unix systems, when *echo_char* is set, the terminal will be configured to operate in :manpage:`noncanonical mode `. In particular, this means that line editing shortcuts such as :kbd:`Ctrl+U` will not work and may insert unexpected characters into the input." msgstr "" -#: ../../library/getpass.rst:50 msgid "Added the *echo_char* parameter for keyboard feedback." msgstr "" -#: ../../library/getpass.rst:55 msgid "A :exc:`UserWarning` subclass issued when password input may be echoed." msgstr "" -#: ../../library/getpass.rst:60 msgid "Return the \"login name\" of the user." msgstr "" -#: ../../library/getpass.rst:62 -msgid "" -"This function checks the environment " -"variables :envvar:`LOGNAME`, :envvar:`USER`, :envvar:`!LNAME` " -"and :envvar:`USERNAME`, in order, and returns the value of the first one " -"which is set to a non-empty string. If none are set, the login name from " -"the password database is returned on systems which support the :mod:`pwd` " -"module, otherwise, an :exc:`OSError` is raised." +msgid "This function checks the environment variables :envvar:`LOGNAME`, :envvar:`USER`, :envvar:`!LNAME` and :envvar:`USERNAME`, in order, and returns the value of the first one which is set to a non-empty string. If none are set, the login name from the password database is returned on systems which support the :mod:`pwd` module, otherwise, an :exc:`OSError` is raised." msgstr "" -#: ../../library/getpass.rst:69 msgid "In general, this function should be preferred over :func:`os.getlogin`." msgstr "" -#: ../../library/getpass.rst:71 msgid "Previously, various exceptions beyond just :exc:`OSError` were raised." msgstr "" diff --git a/library/gettext.po b/library/gettext.po index d46cd93d..4a9e77c1 100644 --- a/library/gettext.po +++ b/library/gettext.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:06+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,122 +23,57 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/gettext.rst:2 msgid ":mod:`!gettext` --- Multilingual internationalization services" msgstr "" -#: ../../library/gettext.rst:10 msgid "**Source code:** :source:`Lib/gettext.py`" msgstr "" -#: ../../library/gettext.rst:14 -msgid "" -"The :mod:`!gettext` module provides internationalization (I18N) and " -"localization (L10N) services for your Python modules and applications. It " -"supports both the GNU :program:`gettext` message catalog API and a higher " -"level, class-based API that may be more appropriate for Python files. The " -"interface described below allows you to write your module and application " -"messages in one natural language, and provide a catalog of translated " -"messages for running under different natural languages." +msgid "The :mod:`!gettext` module provides internationalization (I18N) and localization (L10N) services for your Python modules and applications. It supports both the GNU :program:`gettext` message catalog API and a higher level, class-based API that may be more appropriate for Python files. The interface described below allows you to write your module and application messages in one natural language, and provide a catalog of translated messages for running under different natural languages." msgstr "" -#: ../../library/gettext.rst:22 -msgid "" -"Some hints on localizing your Python modules and applications are also given." +msgid "Some hints on localizing your Python modules and applications are also given." msgstr "" -#: ../../library/gettext.rst:26 msgid "GNU :program:`gettext` API" msgstr "" -#: ../../library/gettext.rst:28 -msgid "" -"The :mod:`!gettext` module defines the following API, which is very similar " -"to the GNU :program:`gettext` API. If you use this API you will affect the " -"translation of your entire application globally. Often this is what you " -"want if your application is monolingual, with the choice of language " -"dependent on the locale of your user. If you are localizing a Python " -"module, or if your application needs to switch languages on the fly, you " -"probably want to use the class-based API instead." +msgid "The :mod:`!gettext` module defines the following API, which is very similar to the GNU :program:`gettext` API. If you use this API you will affect the translation of your entire application globally. Often this is what you want if your application is monolingual, with the choice of language dependent on the locale of your user. If you are localizing a Python module, or if your application needs to switch languages on the fly, you probably want to use the class-based API instead." msgstr "" -#: ../../library/gettext.rst:39 -msgid "" -"Bind the *domain* to the locale directory *localedir*. More " -"concretely, :mod:`!gettext` will look for binary :file:`.mo` files for the " -"given domain using the path (on Unix): :file:`{localedir}/{language}/" -"LC_MESSAGES/{domain}.mo`, where *language* is searched for in the " -"environment " -"variables :envvar:`LANGUAGE`, :envvar:`LC_ALL`, :envvar:`LC_MESSAGES`, " -"and :envvar:`LANG` respectively." +msgid "Bind the *domain* to the locale directory *localedir*. More concretely, :mod:`!gettext` will look for binary :file:`.mo` files for the given domain using the path (on Unix): :file:`{localedir}/{language}/LC_MESSAGES/{domain}.mo`, where *language* is searched for in the environment variables :envvar:`LANGUAGE`, :envvar:`LC_ALL`, :envvar:`LC_MESSAGES`, and :envvar:`LANG` respectively." msgstr "" -#: ../../library/gettext.rst:45 -msgid "" -"If *localedir* is omitted or ``None``, then the current binding for *domain* " -"is returned. [#]_" +msgid "If *localedir* is omitted or ``None``, then the current binding for *domain* is returned. [#]_" msgstr "" -#: ../../library/gettext.rst:51 -msgid "" -"Change or query the current global domain. If *domain* is ``None``, then " -"the current global domain is returned, otherwise the global domain is set to " -"*domain*, which is returned." +msgid "Change or query the current global domain. If *domain* is ``None``, then the current global domain is returned, otherwise the global domain is set to *domain*, which is returned." msgstr "" -#: ../../library/gettext.rst:59 -msgid "" -"Return the localized translation of *message*, based on the current global " -"domain, language, and locale directory. This function is usually aliased " -"as :func:`!_` in the local namespace (see examples below)." +msgid "Return the localized translation of *message*, based on the current global domain, language, and locale directory. This function is usually aliased as :func:`!_` in the local namespace (see examples below)." msgstr "" -#: ../../library/gettext.rst:66 -msgid "" -"Like :func:`.gettext`, but look the message up in the specified *domain*." +msgid "Like :func:`.gettext`, but look the message up in the specified *domain*." msgstr "" -#: ../../library/gettext.rst:71 -msgid "" -"Like :func:`.gettext`, but consider plural forms. If a translation is found, " -"apply the plural formula to *n*, and return the resulting message (some " -"languages have more than two plural forms). If no translation is found, " -"return *singular* if *n* is 1; return *plural* otherwise." +msgid "Like :func:`.gettext`, but consider plural forms. If a translation is found, apply the plural formula to *n*, and return the resulting message (some languages have more than two plural forms). If no translation is found, return *singular* if *n* is 1; return *plural* otherwise." msgstr "" -#: ../../library/gettext.rst:76 -msgid "" -"The Plural formula is taken from the catalog header. It is a C or Python " -"expression that has a free variable *n*; the expression evaluates to the " -"index of the plural in the catalog. See `the GNU gettext documentation " -"`__ for the " -"precise syntax to be used in :file:`.po` files and the formulas for a " -"variety of languages." +msgid "The Plural formula is taken from the catalog header. It is a C or Python expression that has a free variable *n*; the expression evaluates to the index of the plural in the catalog. See `the GNU gettext documentation `__ for the precise syntax to be used in :file:`.po` files and the formulas for a variety of languages." msgstr "" -#: ../../library/gettext.rst:86 -msgid "" -"Like :func:`ngettext`, but look the message up in the specified *domain*." +msgid "Like :func:`ngettext`, but look the message up in the specified *domain*." msgstr "" -#: ../../library/gettext.rst:94 -msgid "" -"Similar to the corresponding functions without the ``p`` in the prefix (that " -"is, :func:`gettext`, :func:`dgettext`, :func:`ngettext`, :func:`dngettext`), " -"but the translation is restricted to the given message *context*." +msgid "Similar to the corresponding functions without the ``p`` in the prefix (that is, :func:`gettext`, :func:`dgettext`, :func:`ngettext`, :func:`dngettext`), but the translation is restricted to the given message *context*." msgstr "" -#: ../../library/gettext.rst:101 -msgid "" -"Note that GNU :program:`gettext` also defines a :func:`!dcgettext` method, " -"but this was deemed not useful and so it is currently unimplemented." +msgid "Note that GNU :program:`gettext` also defines a :func:`!dcgettext` method, but this was deemed not useful and so it is currently unimplemented." msgstr "" -#: ../../library/gettext.rst:104 msgid "Here's an example of typical usage for this API::" msgstr "" -#: ../../library/gettext.rst:106 msgid "" "import gettext\n" "gettext.bindtextdomain('myapplication', '/path/to/my/language/directory')\n" @@ -148,317 +83,147 @@ msgid "" "print(_('This is a translatable string.'))" msgstr "" -#: ../../library/gettext.rst:115 msgid "Class-based API" msgstr "" -#: ../../library/gettext.rst:117 -msgid "" -"The class-based API of the :mod:`!gettext` module gives you more flexibility " -"and greater convenience than the GNU :program:`gettext` API. It is the " -"recommended way of localizing your Python applications and modules. :mod:`!" -"gettext` defines a :class:`GNUTranslations` class which implements the " -"parsing of GNU :file:`.mo` format files, and has methods for returning " -"strings. Instances of this class can also install themselves in the built-in " -"namespace as the function :func:`!_`." +msgid "The class-based API of the :mod:`!gettext` module gives you more flexibility and greater convenience than the GNU :program:`gettext` API. It is the recommended way of localizing your Python applications and modules. :mod:`!gettext` defines a :class:`GNUTranslations` class which implements the parsing of GNU :file:`.mo` format files, and has methods for returning strings. Instances of this class can also install themselves in the built-in namespace as the function :func:`!_`." msgstr "" -#: ../../library/gettext.rst:127 -msgid "" -"This function implements the standard :file:`.mo` file search algorithm. It " -"takes a *domain*, identical to what :func:`textdomain` takes. Optional " -"*localedir* is as in :func:`bindtextdomain`. Optional *languages* is a list " -"of strings, where each string is a language code." +msgid "This function implements the standard :file:`.mo` file search algorithm. It takes a *domain*, identical to what :func:`textdomain` takes. Optional *localedir* is as in :func:`bindtextdomain`. Optional *languages* is a list of strings, where each string is a language code." msgstr "" -#: ../../library/gettext.rst:132 -msgid "" -"If *localedir* is not given, then the default system locale directory is " -"used. [#]_ If *languages* is not given, then the following environment " -"variables are " -"searched: :envvar:`LANGUAGE`, :envvar:`LC_ALL`, :envvar:`LC_MESSAGES`, " -"and :envvar:`LANG`. The first one returning a non-empty value is used for " -"the *languages* variable. The environment variables should contain a colon " -"separated list of languages, which will be split on the colon to produce the " -"expected list of language code strings." +msgid "If *localedir* is not given, then the default system locale directory is used. [#]_ If *languages* is not given, then the following environment variables are searched: :envvar:`LANGUAGE`, :envvar:`LC_ALL`, :envvar:`LC_MESSAGES`, and :envvar:`LANG`. The first one returning a non-empty value is used for the *languages* variable. The environment variables should contain a colon separated list of languages, which will be split on the colon to produce the expected list of language code strings." msgstr "" -#: ../../library/gettext.rst:140 -msgid "" -":func:`find` then expands and normalizes the languages, and then iterates " -"through them, searching for an existing file built of these components:" +msgid ":func:`find` then expands and normalizes the languages, and then iterates through them, searching for an existing file built of these components:" msgstr "" -#: ../../library/gettext.rst:143 msgid ":file:`{localedir}/{language}/LC_MESSAGES/{domain}.mo`" msgstr "" -#: ../../library/gettext.rst:145 -msgid "" -"The first such file name that exists is returned by :func:`find`. If no such " -"file is found, then ``None`` is returned. If *all* is given, it returns a " -"list of all file names, in the order in which they appear in the languages " -"list or the environment variables." +msgid "The first such file name that exists is returned by :func:`find`. If no such file is found, then ``None`` is returned. If *all* is given, it returns a list of all file names, in the order in which they appear in the languages list or the environment variables." msgstr "" -#: ../../library/gettext.rst:153 -msgid "" -"Return a ``*Translations`` instance based on the *domain*, *localedir*, and " -"*languages*, which are first passed to :func:`find` to get a list of the " -"associated :file:`.mo` file paths. Instances with identical :file:`.mo` " -"file names are cached. The actual class instantiated is *class_* if " -"provided, otherwise :class:`GNUTranslations`. The class's constructor must " -"take a single :term:`file object` argument." +msgid "Return a ``*Translations`` instance based on the *domain*, *localedir*, and *languages*, which are first passed to :func:`find` to get a list of the associated :file:`.mo` file paths. Instances with identical :file:`.mo` file names are cached. The actual class instantiated is *class_* if provided, otherwise :class:`GNUTranslations`. The class's constructor must take a single :term:`file object` argument." msgstr "" -#: ../../library/gettext.rst:160 -msgid "" -"If multiple files are found, later files are used as fallbacks for earlier " -"ones. To allow setting the fallback, :func:`copy.copy` is used to clone each " -"translation object from the cache; the actual instance data is still shared " -"with the cache." +msgid "If multiple files are found, later files are used as fallbacks for earlier ones. To allow setting the fallback, :func:`copy.copy` is used to clone each translation object from the cache; the actual instance data is still shared with the cache." msgstr "" -#: ../../library/gettext.rst:165 -msgid "" -"If no :file:`.mo` file is found, this function raises :exc:`OSError` if " -"*fallback* is false (which is the default), and returns " -"a :class:`NullTranslations` instance if *fallback* is true." +msgid "If no :file:`.mo` file is found, this function raises :exc:`OSError` if *fallback* is false (which is the default), and returns a :class:`NullTranslations` instance if *fallback* is true." msgstr "" -#: ../../library/gettext.rst:169 msgid ":exc:`IOError` used to be raised, it is now an alias of :exc:`OSError`." msgstr "" -#: ../../library/gettext.rst:172 msgid "*codeset* parameter is removed." msgstr "" -#: ../../library/gettext.rst:177 -msgid "" -"This installs the function :func:`!_` in Python's builtins namespace, based " -"on *domain* and *localedir* which are passed to the " -"function :func:`translation`." +msgid "This installs the function :func:`!_` in Python's builtins namespace, based on *domain* and *localedir* which are passed to the function :func:`translation`." msgstr "" -#: ../../library/gettext.rst:180 -msgid "" -"For the *names* parameter, please see the description of the translation " -"object's :meth:`~NullTranslations.install` method." +msgid "For the *names* parameter, please see the description of the translation object's :meth:`~NullTranslations.install` method." msgstr "" -#: ../../library/gettext.rst:183 -msgid "" -"As seen below, you usually mark the strings in your application that are " -"candidates for translation, by wrapping them in a call to the :func:`!_` " -"function, like this::" +msgid "As seen below, you usually mark the strings in your application that are candidates for translation, by wrapping them in a call to the :func:`!_` function, like this::" msgstr "" -#: ../../library/gettext.rst:187 msgid "print(_('This string will be translated.'))" msgstr "" -#: ../../library/gettext.rst:189 -msgid "" -"For convenience, you want the :func:`!_` function to be installed in " -"Python's builtins namespace, so it is easily accessible in all modules of " -"your application." +msgid "For convenience, you want the :func:`!_` function to be installed in Python's builtins namespace, so it is easily accessible in all modules of your application." msgstr "" -#: ../../library/gettext.rst:193 msgid "*names* is now a keyword-only parameter." msgstr "" -#: ../../library/gettext.rst:197 msgid "The :class:`NullTranslations` class" msgstr "" -#: ../../library/gettext.rst:199 -msgid "" -"Translation classes are what actually implement the translation of original " -"source file message strings to translated message strings. The base class " -"used by all translation classes is :class:`NullTranslations`; this provides " -"the basic interface you can use to write your own specialized translation " -"classes. Here are the methods of :class:`!NullTranslations`:" +msgid "Translation classes are what actually implement the translation of original source file message strings to translated message strings. The base class used by all translation classes is :class:`NullTranslations`; this provides the basic interface you can use to write your own specialized translation classes. Here are the methods of :class:`!NullTranslations`:" msgstr "" -#: ../../library/gettext.rst:208 -msgid "" -"Takes an optional :term:`file object` *fp*, which is ignored by the base " -"class. Initializes \"protected\" instance variables *_info* and *_charset* " -"which are set by derived classes, as well as *_fallback*, which is set " -"through :meth:`add_fallback`. It then calls ``self._parse(fp)`` if *fp* is " -"not ``None``." +msgid "Takes an optional :term:`file object` *fp*, which is ignored by the base class. Initializes \"protected\" instance variables *_info* and *_charset* which are set by derived classes, as well as *_fallback*, which is set through :meth:`add_fallback`. It then calls ``self._parse(fp)`` if *fp* is not ``None``." msgstr "" -#: ../../library/gettext.rst:216 -msgid "" -"No-op in the base class, this method takes file object *fp*, and reads the " -"data from the file, initializing its message catalog. If you have an " -"unsupported message catalog file format, you should override this method to " -"parse your format." +msgid "No-op in the base class, this method takes file object *fp*, and reads the data from the file, initializing its message catalog. If you have an unsupported message catalog file format, you should override this method to parse your format." msgstr "" -#: ../../library/gettext.rst:224 -msgid "" -"Add *fallback* as the fallback object for the current translation object. A " -"translation object should consult the fallback if it cannot provide a " -"translation for a given message." +msgid "Add *fallback* as the fallback object for the current translation object. A translation object should consult the fallback if it cannot provide a translation for a given message." msgstr "" -#: ../../library/gettext.rst:231 -msgid "" -"If a fallback has been set, forward :meth:`!gettext` to the fallback. " -"Otherwise, return *message*. Overridden in derived classes." +msgid "If a fallback has been set, forward :meth:`!gettext` to the fallback. Otherwise, return *message*. Overridden in derived classes." msgstr "" -#: ../../library/gettext.rst:237 -msgid "" -"If a fallback has been set, forward :meth:`!ngettext` to the fallback. " -"Otherwise, return *singular* if *n* is 1; return *plural* otherwise. " -"Overridden in derived classes." +msgid "If a fallback has been set, forward :meth:`!ngettext` to the fallback. Otherwise, return *singular* if *n* is 1; return *plural* otherwise. Overridden in derived classes." msgstr "" -#: ../../library/gettext.rst:244 -msgid "" -"If a fallback has been set, forward :meth:`pgettext` to the fallback. " -"Otherwise, return the translated message. Overridden in derived classes." +msgid "If a fallback has been set, forward :meth:`pgettext` to the fallback. Otherwise, return the translated message. Overridden in derived classes." msgstr "" -#: ../../library/gettext.rst:252 -msgid "" -"If a fallback has been set, forward :meth:`npgettext` to the fallback. " -"Otherwise, return the translated message. Overridden in derived classes." +msgid "If a fallback has been set, forward :meth:`npgettext` to the fallback. Otherwise, return the translated message. Overridden in derived classes." msgstr "" -#: ../../library/gettext.rst:260 -msgid "" -"Return a dictionary containing the metadata found in the message catalog " -"file." +msgid "Return a dictionary containing the metadata found in the message catalog file." msgstr "" -#: ../../library/gettext.rst:266 msgid "Return the encoding of the message catalog file." msgstr "" -#: ../../library/gettext.rst:271 -msgid "" -"This method installs :meth:`.gettext` into the built-in namespace, binding " -"it to ``_``." +msgid "This method installs :meth:`.gettext` into the built-in namespace, binding it to ``_``." msgstr "" -#: ../../library/gettext.rst:274 -msgid "" -"If the *names* parameter is given, it must be a sequence containing the " -"names of functions you want to install in the builtins namespace in addition " -"to :func:`!_`. Supported names are ``'gettext'``, ``'ngettext'``, " -"``'pgettext'``, and ``'npgettext'``." +msgid "If the *names* parameter is given, it must be a sequence containing the names of functions you want to install in the builtins namespace in addition to :func:`!_`. Supported names are ``'gettext'``, ``'ngettext'``, ``'pgettext'``, and ``'npgettext'``." msgstr "" -#: ../../library/gettext.rst:279 -msgid "" -"Note that this is only one way, albeit the most convenient way, to make " -"the :func:`!_` function available to your application. Because it affects " -"the entire application globally, and specifically the built-in namespace, " -"localized modules should never install :func:`!_`. Instead, they should use " -"this code to make :func:`!_` available to their module::" +msgid "Note that this is only one way, albeit the most convenient way, to make the :func:`!_` function available to your application. Because it affects the entire application globally, and specifically the built-in namespace, localized modules should never install :func:`!_`. Instead, they should use this code to make :func:`!_` available to their module::" msgstr "" -#: ../../library/gettext.rst:285 msgid "" "import gettext\n" "t = gettext.translation('mymodule', ...)\n" "_ = t.gettext" msgstr "" -#: ../../library/gettext.rst:289 -msgid "" -"This puts :func:`!_` only in the module's global namespace and so only " -"affects calls within this module." +msgid "This puts :func:`!_` only in the module's global namespace and so only affects calls within this module." msgstr "" -#: ../../library/gettext.rst:292 msgid "Added ``'pgettext'`` and ``'npgettext'``." msgstr "" -#: ../../library/gettext.rst:297 msgid "The :class:`GNUTranslations` class" msgstr "" -#: ../../library/gettext.rst:299 -msgid "" -"The :mod:`!gettext` module provides one additional class derived " -"from :class:`NullTranslations`: :class:`GNUTranslations`. This class " -"overrides :meth:`!_parse` to enable reading GNU :program:`gettext` " -"format :file:`.mo` files in both big-endian and little-endian format." +msgid "The :mod:`!gettext` module provides one additional class derived from :class:`NullTranslations`: :class:`GNUTranslations`. This class overrides :meth:`!_parse` to enable reading GNU :program:`gettext` format :file:`.mo` files in both big-endian and little-endian format." msgstr "" -#: ../../library/gettext.rst:304 -msgid "" -":class:`GNUTranslations` parses optional metadata out of the translation " -"catalog. It is convention with GNU :program:`gettext` to include metadata as " -"the translation for the empty string. This metadata is in :rfc:`822`\\ " -"-style ``key: value`` pairs, and should contain the ``Project-Id-Version`` " -"key. If the key ``Content-Type`` is found, then the ``charset`` property is " -"used to initialize the \"protected\" :attr:`!_charset` instance variable, " -"defaulting to ``None`` if not found. If the charset encoding is specified, " -"then all message ids and message strings read from the catalog are converted " -"to Unicode using this encoding, else ASCII is assumed." -msgstr "" - -#: ../../library/gettext.rst:314 -msgid "" -"Since message ids are read as Unicode strings too, all ``*gettext()`` " -"methods will assume message ids as Unicode strings, not byte strings." +msgid ":class:`GNUTranslations` parses optional metadata out of the translation catalog. It is convention with GNU :program:`gettext` to include metadata as the translation for the empty string. This metadata is in :rfc:`822`\\ -style ``key: value`` pairs, and should contain the ``Project-Id-Version`` key. If the key ``Content-Type`` is found, then the ``charset`` property is used to initialize the \"protected\" :attr:`!_charset` instance variable, defaulting to ``None`` if not found. If the charset encoding is specified, then all message ids and message strings read from the catalog are converted to Unicode using this encoding, else ASCII is assumed." msgstr "" -#: ../../library/gettext.rst:317 -msgid "" -"The entire set of key/value pairs are placed into a dictionary and set as " -"the \"protected\" :attr:`!_info` instance variable." +msgid "Since message ids are read as Unicode strings too, all ``*gettext()`` methods will assume message ids as Unicode strings, not byte strings." msgstr "" -#: ../../library/gettext.rst:320 -msgid "" -"If the :file:`.mo` file's magic number is invalid, the major version number " -"is unexpected, or if other problems occur while reading the file, " -"instantiating a :class:`GNUTranslations` class can raise :exc:`OSError`." +msgid "The entire set of key/value pairs are placed into a dictionary and set as the \"protected\" :attr:`!_info` instance variable." msgstr "" -#: ../../library/gettext.rst:326 -msgid "" -"The following methods are overridden from the base class implementation:" +msgid "If the :file:`.mo` file's magic number is invalid, the major version number is unexpected, or if other problems occur while reading the file, instantiating a :class:`GNUTranslations` class can raise :exc:`OSError`." msgstr "" -#: ../../library/gettext.rst:330 -msgid "" -"Look up the *message* id in the catalog and return the corresponding message " -"string, as a Unicode string. If there is no entry in the catalog for the " -"*message* id, and a fallback has been set, the look up is forwarded to the " -"fallback's :meth:`~NullTranslations.gettext` method. Otherwise, the " -"*message* id is returned." +msgid "The following methods are overridden from the base class implementation:" msgstr "" -#: ../../library/gettext.rst:339 -msgid "" -"Do a plural-forms lookup of a message id. *singular* is used as the message " -"id for purposes of lookup in the catalog, while *n* is used to determine " -"which plural form to use. The returned message string is a Unicode string." +msgid "Look up the *message* id in the catalog and return the corresponding message string, as a Unicode string. If there is no entry in the catalog for the *message* id, and a fallback has been set, the look up is forwarded to the fallback's :meth:`~NullTranslations.gettext` method. Otherwise, the *message* id is returned." msgstr "" -#: ../../library/gettext.rst:343 -msgid "" -"If the message id is not found in the catalog, and a fallback is specified, " -"the request is forwarded to the " -"fallback's :meth:`~NullTranslations.ngettext` method. Otherwise, when *n* " -"is 1 *singular* is returned, and *plural* is returned in all other cases." +msgid "Do a plural-forms lookup of a message id. *singular* is used as the message id for purposes of lookup in the catalog, while *n* is used to determine which plural form to use. The returned message string is a Unicode string." +msgstr "" + +msgid "If the message id is not found in the catalog, and a fallback is specified, the request is forwarded to the fallback's :meth:`~NullTranslations.ngettext` method. Otherwise, when *n* is 1 *singular* is returned, and *plural* is returned in all other cases." msgstr "" -#: ../../library/gettext.rst:348 msgid "Here is an example::" msgstr "" -#: ../../library/gettext.rst:350 msgid "" "n = len(os.listdir('.'))\n" "cat = GNUTranslations(somefile)\n" @@ -468,52 +233,27 @@ msgid "" " n) % {'num': n}" msgstr "" -#: ../../library/gettext.rst:360 -msgid "" -"Look up the *context* and *message* id in the catalog and return the " -"corresponding message string, as a Unicode string. If there is no entry in " -"the catalog for the *message* id and *context*, and a fallback has been set, " -"the look up is forwarded to the fallback's :meth:`pgettext` method. " -"Otherwise, the *message* id is returned." +msgid "Look up the *context* and *message* id in the catalog and return the corresponding message string, as a Unicode string. If there is no entry in the catalog for the *message* id and *context*, and a fallback has been set, the look up is forwarded to the fallback's :meth:`pgettext` method. Otherwise, the *message* id is returned." msgstr "" -#: ../../library/gettext.rst:371 -msgid "" -"Do a plural-forms lookup of a message id. *singular* is used as the message " -"id for purposes of lookup in the catalog, while *n* is used to determine " -"which plural form to use." +msgid "Do a plural-forms lookup of a message id. *singular* is used as the message id for purposes of lookup in the catalog, while *n* is used to determine which plural form to use." msgstr "" -#: ../../library/gettext.rst:375 -msgid "" -"If the message id for *context* is not found in the catalog, and a fallback " -"is specified, the request is forwarded to the fallback's :meth:`npgettext` " -"method. Otherwise, when *n* is 1 *singular* is returned, and *plural* is " -"returned in all other cases." +msgid "If the message id for *context* is not found in the catalog, and a fallback is specified, the request is forwarded to the fallback's :meth:`npgettext` method. Otherwise, when *n* is 1 *singular* is returned, and *plural* is returned in all other cases." msgstr "" -#: ../../library/gettext.rst:384 msgid "Solaris message catalog support" msgstr "" -#: ../../library/gettext.rst:386 -msgid "" -"The Solaris operating system defines its own binary :file:`.mo` file format, " -"but since no documentation can be found on this format, it is not supported " -"at this time." +msgid "The Solaris operating system defines its own binary :file:`.mo` file format, but since no documentation can be found on this format, it is not supported at this time." msgstr "" -#: ../../library/gettext.rst:392 msgid "The Catalog constructor" msgstr "" -#: ../../library/gettext.rst:396 -msgid "" -"GNOME uses a version of the :mod:`!gettext` module by James Henstridge, but " -"this version has a slightly different API. Its documented usage was::" +msgid "GNOME uses a version of the :mod:`!gettext` module by James Henstridge, but this version has a slightly different API. Its documented usage was::" msgstr "" -#: ../../library/gettext.rst:399 msgid "" "import gettext\n" "cat = gettext.Catalog(domain, localedir)\n" @@ -521,61 +261,33 @@ msgid "" "print(_('hello world'))" msgstr "" -#: ../../library/gettext.rst:404 -msgid "" -"For compatibility with this older module, the function :func:`!Catalog` is " -"an alias for the :func:`translation` function described above." +msgid "For compatibility with this older module, the function :func:`!Catalog` is an alias for the :func:`translation` function described above." msgstr "" -#: ../../library/gettext.rst:407 -msgid "" -"One difference between this module and Henstridge's: his catalog objects " -"supported access through a mapping API, but this appears to be unused and so " -"is not currently supported." +msgid "One difference between this module and Henstridge's: his catalog objects supported access through a mapping API, but this appears to be unused and so is not currently supported." msgstr "" -#: ../../library/gettext.rst:414 msgid "Internationalizing your programs and modules" msgstr "" -#: ../../library/gettext.rst:416 -msgid "" -"Internationalization (I18N) refers to the operation by which a program is " -"made aware of multiple languages. Localization (L10N) refers to the " -"adaptation of your program, once internationalized, to the local language " -"and cultural habits. In order to provide multilingual messages for your " -"Python programs, you need to take the following steps:" +msgid "Internationalization (I18N) refers to the operation by which a program is made aware of multiple languages. Localization (L10N) refers to the adaptation of your program, once internationalized, to the local language and cultural habits. In order to provide multilingual messages for your Python programs, you need to take the following steps:" msgstr "" -#: ../../library/gettext.rst:422 -msgid "" -"prepare your program or module by specially marking translatable strings" +msgid "prepare your program or module by specially marking translatable strings" msgstr "" -#: ../../library/gettext.rst:424 -msgid "" -"run a suite of tools over your marked files to generate raw messages catalogs" +msgid "run a suite of tools over your marked files to generate raw messages catalogs" msgstr "" -#: ../../library/gettext.rst:426 msgid "create language-specific translations of the message catalogs" msgstr "" -#: ../../library/gettext.rst:428 -msgid "" -"use the :mod:`!gettext` module so that message strings are properly " -"translated" +msgid "use the :mod:`!gettext` module so that message strings are properly translated" msgstr "" -#: ../../library/gettext.rst:430 -msgid "" -"In order to prepare your code for I18N, you need to look at all the strings " -"in your files. Any string that needs to be translated should be marked by " -"wrapping it in ``_('...')`` --- that is, a call to the function :func:`_ " -"`. For example::" +msgid "In order to prepare your code for I18N, you need to look at all the strings in your files. Any string that needs to be translated should be marked by wrapping it in ``_('...')`` --- that is, a call to the function :func:`_ `. For example::" msgstr "" -#: ../../library/gettext.rst:434 msgid "" "filename = 'mylog.txt'\n" "message = _('writing a log message')\n" @@ -583,140 +295,67 @@ msgid "" " fp.write(message)" msgstr "" -#: ../../library/gettext.rst:439 -msgid "" -"In this example, the string ``'writing a log message'`` is marked as a " -"candidate for translation, while the strings ``'mylog.txt'`` and ``'w'`` are " -"not." +msgid "In this example, the string ``'writing a log message'`` is marked as a candidate for translation, while the strings ``'mylog.txt'`` and ``'w'`` are not." msgstr "" -#: ../../library/gettext.rst:442 -msgid "" -"There are a few tools to extract the strings meant for translation. The " -"original GNU :program:`gettext` only supported C or C++ source code but its " -"extended version :program:`xgettext` scans code written in a number of " -"languages, including Python, to find strings marked as translatable. `Babel " -"`__ is a Python internationalization library that " -"includes a :file:`pybabel` script to extract and compile message catalogs. " -"François Pinard's program called :program:`xpot` does a similar job and is " -"available as part of his `po-utils package `__." -msgstr "" - -#: ../../library/gettext.rst:452 -msgid "" -"(Python also includes pure-Python versions of these programs, " -"called :program:`pygettext.py` and :program:`msgfmt.py`; some Python " -"distributions will install them for you. :program:`pygettext.py` is similar " -"to :program:`xgettext`, but only understands Python source code and cannot " -"handle other programming languages such as C or C++. :program:`pygettext.py` " -"supports a command-line interface similar to :program:`xgettext`; for " -"details on its use, run ``pygettext.py --help``. :program:`msgfmt.py` is " -"binary compatible with GNU :program:`msgfmt`. With these two programs, you " -"may not need the GNU :program:`gettext` package to internationalize your " -"Python applications.)" -msgstr "" - -#: ../../library/gettext.rst:464 -msgid "" -":program:`xgettext`, :program:`pygettext`, and similar tools " -"generate :file:`.po` files that are message catalogs. They are structured " -"human-readable files that contain every marked string in the source code, " -"along with a placeholder for the translated versions of these strings." +msgid "There are a few tools to extract the strings meant for translation. The original GNU :program:`gettext` only supported C or C++ source code but its extended version :program:`xgettext` scans code written in a number of languages, including Python, to find strings marked as translatable. `Babel `__ is a Python internationalization library that includes a :file:`pybabel` script to extract and compile message catalogs. François Pinard's program called :program:`xpot` does a similar job and is available as part of his `po-utils package `__." msgstr "" -#: ../../library/gettext.rst:470 -msgid "" -"Copies of these :file:`.po` files are then handed over to the individual " -"human translators who write translations for every supported natural " -"language. They send back the completed language-specific versions as " -"a :file:`.po` file that's compiled into a machine-" -"readable :file:`.mo` binary catalog file using the :program:`msgfmt` " -"program. The :file:`.mo` files are used by the :mod:`!gettext` module for " -"the actual translation processing at run-time." +msgid "(Python also includes pure-Python versions of these programs, called :program:`pygettext.py` and :program:`msgfmt.py`; some Python distributions will install them for you. :program:`pygettext.py` is similar to :program:`xgettext`, but only understands Python source code and cannot handle other programming languages such as C or C++. :program:`pygettext.py` supports a command-line interface similar to :program:`xgettext`; for details on its use, run ``pygettext.py --help``. :program:`msgfmt.py` is binary compatible with GNU :program:`msgfmt`. With these two programs, you may not need the GNU :program:`gettext` package to internationalize your Python applications.)" msgstr "" -#: ../../library/gettext.rst:479 -msgid "" -"How you use the :mod:`!gettext` module in your code depends on whether you " -"are internationalizing a single module or your entire application. The next " -"two sections will discuss each case." +msgid ":program:`xgettext`, :program:`pygettext`, and similar tools generate :file:`.po` files that are message catalogs. They are structured human-readable files that contain every marked string in the source code, along with a placeholder for the translated versions of these strings." +msgstr "" + +msgid "Copies of these :file:`.po` files are then handed over to the individual human translators who write translations for every supported natural language. They send back the completed language-specific versions as a :file:`.po` file that's compiled into a machine-readable :file:`.mo` binary catalog file using the :program:`msgfmt` program. The :file:`.mo` files are used by the :mod:`!gettext` module for the actual translation processing at run-time." +msgstr "" + +msgid "How you use the :mod:`!gettext` module in your code depends on whether you are internationalizing a single module or your entire application. The next two sections will discuss each case." msgstr "" -#: ../../library/gettext.rst:485 msgid "Localizing your module" msgstr "" -#: ../../library/gettext.rst:487 -msgid "" -"If you are localizing your module, you must take care not to make global " -"changes, e.g. to the built-in namespace. You should not use the " -"GNU :program:`gettext` API but instead the class-based API." +msgid "If you are localizing your module, you must take care not to make global changes, e.g. to the built-in namespace. You should not use the GNU :program:`gettext` API but instead the class-based API." msgstr "" -#: ../../library/gettext.rst:491 -msgid "" -"Let's say your module is called \"spam\" and the module's various natural " -"language translation :file:`.mo` files reside in :file:`/usr/share/locale` " -"in GNU :program:`gettext` format. Here's what you would put at the top of " -"your module::" +msgid "Let's say your module is called \"spam\" and the module's various natural language translation :file:`.mo` files reside in :file:`/usr/share/locale` in GNU :program:`gettext` format. Here's what you would put at the top of your module::" msgstr "" -#: ../../library/gettext.rst:496 msgid "" "import gettext\n" "t = gettext.translation('spam', '/usr/share/locale')\n" "_ = t.gettext" msgstr "" -#: ../../library/gettext.rst:502 msgid "Localizing your application" msgstr "" -#: ../../library/gettext.rst:504 -msgid "" -"If you are localizing your application, you can install the :func:`!_` " -"function globally into the built-in namespace, usually in the main driver " -"file of your application. This will let all your application-specific files " -"just use ``_('...')`` without having to explicitly install it in each file." +msgid "If you are localizing your application, you can install the :func:`!_` function globally into the built-in namespace, usually in the main driver file of your application. This will let all your application-specific files just use ``_('...')`` without having to explicitly install it in each file." msgstr "" -#: ../../library/gettext.rst:509 -msgid "" -"In the simple case then, you need only add the following bit of code to the " -"main driver file of your application::" +msgid "In the simple case then, you need only add the following bit of code to the main driver file of your application::" msgstr "" -#: ../../library/gettext.rst:512 msgid "" "import gettext\n" "gettext.install('myapplication')" msgstr "" -#: ../../library/gettext.rst:515 -msgid "" -"If you need to set the locale directory, you can pass it into " -"the :func:`install` function::" +msgid "If you need to set the locale directory, you can pass it into the :func:`install` function::" msgstr "" -#: ../../library/gettext.rst:518 msgid "" "import gettext\n" "gettext.install('myapplication', '/usr/share/locale')" msgstr "" -#: ../../library/gettext.rst:523 msgid "Changing languages on the fly" msgstr "" -#: ../../library/gettext.rst:525 -msgid "" -"If your program needs to support many languages at the same time, you may " -"want to create multiple translation instances and then switch between them " -"explicitly, like so::" +msgid "If your program needs to support many languages at the same time, you may want to create multiple translation instances and then switch between them explicitly, like so::" msgstr "" -#: ../../library/gettext.rst:529 msgid "" "import gettext\n" "\n" @@ -734,18 +373,12 @@ msgid "" "lang3.install()" msgstr "" -#: ../../library/gettext.rst:546 msgid "Deferred translations" msgstr "" -#: ../../library/gettext.rst:548 -msgid "" -"In most coding situations, strings are translated where they are coded. " -"Occasionally however, you need to mark strings for translation, but defer " -"actual translation until later. A classic example is::" +msgid "In most coding situations, strings are translated where they are coded. Occasionally however, you need to mark strings for translation, but defer actual translation until later. A classic example is::" msgstr "" -#: ../../library/gettext.rst:552 msgid "" "animals = ['mollusk',\n" " 'albatross',\n" @@ -757,18 +390,12 @@ msgid "" " print(a)" msgstr "" -#: ../../library/gettext.rst:561 -msgid "" -"Here, you want to mark the strings in the ``animals`` list as being " -"translatable, but you don't actually want to translate them until they are " -"printed." +msgid "Here, you want to mark the strings in the ``animals`` list as being translatable, but you don't actually want to translate them until they are printed." msgstr "" -#: ../../library/gettext.rst:565 msgid "Here is one way you can handle this situation::" msgstr "" -#: ../../library/gettext.rst:567 msgid "" "def _(message): return message\n" "\n" @@ -785,27 +412,15 @@ msgid "" " print(_(a))" msgstr "" -#: ../../library/gettext.rst:581 -msgid "" -"This works because the dummy definition of :func:`!_` simply returns the " -"string unchanged. And this dummy definition will temporarily override any " -"definition of :func:`!_` in the built-in namespace (until the :keyword:`del` " -"command). Take care, though if you have a previous definition of :func:`!_` " -"in the local namespace." +msgid "This works because the dummy definition of :func:`!_` simply returns the string unchanged. And this dummy definition will temporarily override any definition of :func:`!_` in the built-in namespace (until the :keyword:`del` command). Take care, though if you have a previous definition of :func:`!_` in the local namespace." msgstr "" -#: ../../library/gettext.rst:587 -msgid "" -"Note that the second use of :func:`!_` will not identify \"a\" as being " -"translatable to the :program:`gettext` program, because the parameter is not " -"a string literal." +msgid "Note that the second use of :func:`!_` will not identify \"a\" as being translatable to the :program:`gettext` program, because the parameter is not a string literal." msgstr "" -#: ../../library/gettext.rst:591 msgid "Another way to handle this is with the following example::" msgstr "" -#: ../../library/gettext.rst:593 msgid "" "def N_(message): return message\n" "\n" @@ -820,88 +435,53 @@ msgid "" " print(_(a))" msgstr "" -#: ../../library/gettext.rst:605 -msgid "" -"In this case, you are marking translatable strings with the function :func:`!" -"N_`, which won't conflict with any definition of :func:`!_`. However, you " -"will need to teach your message extraction program to look for translatable " -"strings marked with :func:`!N_`. :program:`xgettext`, :program:`pygettext`, " -"``pybabel extract``, and :program:`xpot` all support this through the use of " -"the :option:`!-k` command-line switch. The choice of :func:`!N_` here is " -"totally arbitrary; it could have just as easily been :func:`!" -"MarkThisStringForTranslation`." +msgid "In this case, you are marking translatable strings with the function :func:`!N_`, which won't conflict with any definition of :func:`!_`. However, you will need to teach your message extraction program to look for translatable strings marked with :func:`!N_`. :program:`xgettext`, :program:`pygettext`, ``pybabel extract``, and :program:`xpot` all support this through the use of the :option:`!-k` command-line switch. The choice of :func:`!N_` here is totally arbitrary; it could have just as easily been :func:`!MarkThisStringForTranslation`." msgstr "" -#: ../../library/gettext.rst:616 msgid "Acknowledgements" msgstr "" -#: ../../library/gettext.rst:618 -msgid "" -"The following people contributed code, feedback, design suggestions, " -"previous implementations, and valuable experience to the creation of this " -"module:" +msgid "The following people contributed code, feedback, design suggestions, previous implementations, and valuable experience to the creation of this module:" msgstr "" -#: ../../library/gettext.rst:621 msgid "Peter Funk" msgstr "" -#: ../../library/gettext.rst:623 msgid "James Henstridge" msgstr "" -#: ../../library/gettext.rst:625 msgid "Juan David Ibáñez Palomar" msgstr "" -#: ../../library/gettext.rst:627 msgid "Marc-André Lemburg" msgstr "" -#: ../../library/gettext.rst:629 msgid "Martin von Löwis" msgstr "" -#: ../../library/gettext.rst:631 msgid "François Pinard" msgstr "" -#: ../../library/gettext.rst:633 msgid "Barry Warsaw" msgstr "" -#: ../../library/gettext.rst:635 msgid "Gustavo Niemeyer" msgstr "" -#: ../../library/gettext.rst:638 msgid "Footnotes" msgstr "" -#: ../../library/gettext.rst:639 -msgid "" -"The default locale directory is system dependent; for example, on Red Hat " -"Linux it is :file:`/usr/share/locale`, but on Solaris it is :file:`/usr/lib/" -"locale`. The :mod:`!gettext` module does not try to support these system " -"dependent defaults; instead its default is :file:`{sys.base_prefix}/share/" -"locale` (see :data:`sys.base_prefix`). For this reason, it is always best to " -"call :func:`bindtextdomain` with an explicit absolute path at the start of " -"your application." +msgid "The default locale directory is system dependent; for example, on Red Hat Linux it is :file:`/usr/share/locale`, but on Solaris it is :file:`/usr/lib/locale`. The :mod:`!gettext` module does not try to support these system dependent defaults; instead its default is :file:`{sys.base_prefix}/share/locale` (see :data:`sys.base_prefix`). For this reason, it is always best to call :func:`bindtextdomain` with an explicit absolute path at the start of your application." msgstr "" -#: ../../library/gettext.rst:647 msgid "See the footnote for :func:`bindtextdomain` above." msgstr "" -#: ../../library/gettext.rst:56 msgid "_ (underscore)" msgstr "" -#: ../../library/gettext.rst:56 msgid "gettext" msgstr "" -#: ../../library/gettext.rst:394 msgid "GNOME" msgstr "" diff --git a/library/glob.po b/library/glob.po index ee1ddcbf..21cae670 100644 --- a/library/glob.po +++ b/library/glob.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:06+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,201 +24,99 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/glob.rst:2 msgid ":mod:`!glob` --- Unix style pathname pattern expansion" msgstr "" -#: ../../library/glob.rst:7 msgid "**Source code:** :source:`Lib/glob.py`" msgstr "" -#: ../../library/glob.rst:21 -msgid "" -"The :mod:`!glob` module finds pathnames using pattern matching rules similar " -"to the Unix shell. No tilde expansion is done, but ``*``, ``?``, and " -"character ranges expressed with ``[]`` will be correctly matched. This is " -"done by using the :func:`os.scandir` and :func:`fnmatch.fnmatch` functions " -"in concert, and not by actually invoking a subshell." +msgid "The :mod:`!glob` module finds pathnames using pattern matching rules similar to the Unix shell. No tilde expansion is done, but ``*``, ``?``, and character ranges expressed with ``[]`` will be correctly matched. This is done by using the :func:`os.scandir` and :func:`fnmatch.fnmatch` functions in concert, and not by actually invoking a subshell." msgstr "" -#: ../../library/glob.rst:29 -msgid "" -"The pathnames are returned in no particular order. If you need a specific " -"order, sort the results." +msgid "The pathnames are returned in no particular order. If you need a specific order, sort the results." msgstr "" -#: ../../library/glob.rst:32 -msgid "" -"By default, files beginning with a dot (``.``) can only be matched by " -"patterns that also start with a dot, unlike :func:`fnmatch.fnmatch` " -"or :func:`pathlib.Path.glob`. For tilde and shell variable expansion, " -"use :func:`os.path.expanduser` and :func:`os.path.expandvars`." +msgid "By default, files beginning with a dot (``.``) can only be matched by patterns that also start with a dot, unlike :func:`fnmatch.fnmatch` or :func:`pathlib.Path.glob`. For tilde and shell variable expansion, use :func:`os.path.expanduser` and :func:`os.path.expandvars`." msgstr "" -#: ../../library/glob.rst:38 -msgid "" -"For a literal match, wrap the meta-characters in brackets. For example, " -"``'[?]'`` matches the character ``'?'``." +msgid "For a literal match, wrap the meta-characters in brackets. For example, ``'[?]'`` matches the character ``'?'``." msgstr "" -#: ../../library/glob.rst:41 msgid "The :mod:`!glob` module defines the following functions:" msgstr "" -#: ../../library/glob.rst:47 -msgid "" -"Return a possibly empty list of path names that match *pathname*, which must " -"be a string containing a path specification. *pathname* can be either " -"absolute (like :file:`/usr/src/Python-1.5/Makefile`) or relative " -"(like :file:`../../Tools/\\*/\\*.gif`), and can contain shell-style " -"wildcards. Broken symlinks are included in the results (as in the shell). " -"Whether or not the results are sorted depends on the file system. If a file " -"that satisfies conditions is removed or added during the call of this " -"function, whether a path name for that file will be included is unspecified." +msgid "Return a possibly empty list of path names that match *pathname*, which must be a string containing a path specification. *pathname* can be either absolute (like :file:`/usr/src/Python-1.5/Makefile`) or relative (like :file:`../../Tools/\\*/\\*.gif`), and can contain shell-style wildcards. Broken symlinks are included in the results (as in the shell). Whether or not the results are sorted depends on the file system. If a file that satisfies conditions is removed or added during the call of this function, whether a path name for that file will be included is unspecified." msgstr "" -#: ../../library/glob.rst:56 -msgid "" -"If *root_dir* is not ``None``, it should be a :term:`path-like object` " -"specifying the root directory for searching. It has the same effect " -"on :func:`!glob` as changing the current directory before calling it. If " -"*pathname* is relative, the result will contain paths relative to *root_dir*." +msgid "If *root_dir* is not ``None``, it should be a :term:`path-like object` specifying the root directory for searching. It has the same effect on :func:`!glob` as changing the current directory before calling it. If *pathname* is relative, the result will contain paths relative to *root_dir*." msgstr "" -#: ../../library/glob.rst:62 -msgid "" -"This function can support :ref:`paths relative to directory descriptors " -"` with the *dir_fd* parameter." +msgid "This function can support :ref:`paths relative to directory descriptors ` with the *dir_fd* parameter." msgstr "" -#: ../../library/glob.rst:68 -msgid "" -"If *recursive* is true, the pattern \"``**``\" will match any files and zero " -"or more directories, subdirectories and symbolic links to directories. If " -"the pattern is followed by an :data:`os.sep` or :data:`os.altsep` then files " -"will not match." +msgid "If *recursive* is true, the pattern \"``**``\" will match any files and zero or more directories, subdirectories and symbolic links to directories. If the pattern is followed by an :data:`os.sep` or :data:`os.altsep` then files will not match." msgstr "" -#: ../../library/glob.rst:73 -msgid "" -"If *include_hidden* is true, wildcards can match path segments that begin " -"with a dot (``.``)." +msgid "If *include_hidden* is true, wildcards can match path segments that begin with a dot (``.``)." msgstr "" -#: ../../library/glob.rst:76 ../../library/glob.rst:108 -msgid "" -"Raises an :ref:`auditing event ` ``glob.glob`` with arguments " -"``pathname``, ``recursive``." +msgid "Raises an :ref:`auditing event ` ``glob.glob`` with arguments ``pathname``, ``recursive``." msgstr "" -#: ../../library/glob.rst:77 ../../library/glob.rst:109 -msgid "" -"Raises an :ref:`auditing event ` ``glob.glob/2`` with arguments " -"``pathname``, ``recursive``, ``root_dir``, ``dir_fd``." +msgid "Raises an :ref:`auditing event ` ``glob.glob/2`` with arguments ``pathname``, ``recursive``, ``root_dir``, ``dir_fd``." msgstr "" -#: ../../library/glob.rst:80 -msgid "" -"Using the \"``**``\" pattern in large directory trees may consume an " -"inordinate amount of time." +msgid "Using the \"``**``\" pattern in large directory trees may consume an inordinate amount of time." msgstr "" -#: ../../library/glob.rst:84 ../../library/glob.rst:112 -msgid "" -"This function may return duplicate path names if *pathname* contains " -"multiple \"``**``\" patterns and *recursive* is true." +msgid "This function may return duplicate path names if *pathname* contains multiple \"``**``\" patterns and *recursive* is true." msgstr "" -#: ../../library/glob.rst:88 ../../library/glob.rst:116 -msgid "" -"Any :exc:`OSError` exceptions raised from scanning the filesystem are " -"suppressed. This includes :exc:`PermissionError` when accessing directories " -"without read permission." +msgid "Any :exc:`OSError` exceptions raised from scanning the filesystem are suppressed. This includes :exc:`PermissionError` when accessing directories without read permission." msgstr "" -#: ../../library/glob.rst:92 ../../library/glob.rst:120 msgid "Support for recursive globs using \"``**``\"." msgstr "" -#: ../../library/glob.rst:95 ../../library/glob.rst:123 msgid "Added the *root_dir* and *dir_fd* parameters." msgstr "" -#: ../../library/glob.rst:98 ../../library/glob.rst:126 msgid "Added the *include_hidden* parameter." msgstr "" -#: ../../library/glob.rst:105 -msgid "" -"Return an :term:`iterator` which yields the same values as :func:`glob` " -"without actually storing them all simultaneously." +msgid "Return an :term:`iterator` which yields the same values as :func:`glob` without actually storing them all simultaneously." msgstr "" -#: ../../library/glob.rst:132 -msgid "" -"Escape all special characters (``'?'``, ``'*'`` and ``'['``). This is useful " -"if you want to match an arbitrary literal string that may have special " -"characters in it. Special characters in drive/UNC sharepoints are not " -"escaped, for example on Windows ``escape('//?/c:/Quo vadis?.txt')`` returns " -"``'//?/c:/Quo vadis[?].txt'``." +msgid "Escape all special characters (``'?'``, ``'*'`` and ``'['``). This is useful if you want to match an arbitrary literal string that may have special characters in it. Special characters in drive/UNC sharepoints are not escaped, for example on Windows ``escape('//?/c:/Quo vadis?.txt')`` returns ``'//?/c:/Quo vadis[?].txt'``." msgstr "" -#: ../../library/glob.rst:143 -msgid "" -"Convert the given path specification to a regular expression for use " -"with :func:`re.match`. The path specification can contain shell-style " -"wildcards." +msgid "Convert the given path specification to a regular expression for use with :func:`re.match`. The path specification can contain shell-style wildcards." msgstr "" -#: ../../library/glob.rst:146 msgid "For example:" msgstr "" -#: ../../library/glob.rst:157 -msgid "" -"Path separators and segments are meaningful to this function, " -"unlike :func:`fnmatch.translate`. By default wildcards do not match path " -"separators, and ``*`` pattern segments match precisely one path segment." +msgid "Path separators and segments are meaningful to this function, unlike :func:`fnmatch.translate`. By default wildcards do not match path separators, and ``*`` pattern segments match precisely one path segment." msgstr "" -#: ../../library/glob.rst:161 -msgid "" -"If *recursive* is true, the pattern segment \"``**``\" will match any number " -"of path segments." +msgid "If *recursive* is true, the pattern segment \"``**``\" will match any number of path segments." msgstr "" -#: ../../library/glob.rst:164 -msgid "" -"If *include_hidden* is true, wildcards can match path segments that start " -"with a dot (``.``)." +msgid "If *include_hidden* is true, wildcards can match path segments that start with a dot (``.``)." msgstr "" -#: ../../library/glob.rst:167 -msgid "" -"A sequence of path separators may be supplied to the *seps* argument. If not " -"given, :data:`os.sep` and :data:`~os.altsep` (if available) are used." +msgid "A sequence of path separators may be supplied to the *seps* argument. If not given, :data:`os.sep` and :data:`~os.altsep` (if available) are used." msgstr "" -#: ../../library/glob.rst:172 -msgid "" -":meth:`pathlib.PurePath.full_match` and :meth:`pathlib.Path.glob` methods, " -"which call this function to implement pattern matching and globbing." +msgid ":meth:`pathlib.PurePath.full_match` and :meth:`pathlib.Path.glob` methods, which call this function to implement pattern matching and globbing." msgstr "" -#: ../../library/glob.rst:180 msgid "Examples" msgstr "" -#: ../../library/glob.rst:182 -msgid "" -"Consider a directory containing the following " -"files: :file:`1.gif`, :file:`2.txt`, :file:`card.gif` and a " -"subdirectory :file:`sub` which contains only the " -"file :file:`3.txt`. :func:`glob` will produce the following results. " -"Notice how any leading components of the path are preserved. ::" +msgid "Consider a directory containing the following files: :file:`1.gif`, :file:`2.txt`, :file:`card.gif` and a subdirectory :file:`sub` which contains only the file :file:`3.txt`. :func:`glob` will produce the following results. Notice how any leading components of the path are preserved. ::" msgstr "" -#: ../../library/glob.rst:188 msgid "" ">>> import glob\n" ">>> glob.glob('./[0-9].*')\n" @@ -233,14 +131,9 @@ msgid "" "['./', './sub/']" msgstr "" -#: ../../library/glob.rst:200 -msgid "" -"If the directory contains files starting with ``.`` they won't be matched by " -"default. For example, consider a directory containing :file:`card.gif` " -"and :file:`.card.gif`::" +msgid "If the directory contains files starting with ``.`` they won't be matched by default. For example, consider a directory containing :file:`card.gif` and :file:`.card.gif`::" msgstr "" -#: ../../library/glob.rst:204 msgid "" ">>> import glob\n" ">>> glob.glob('*.gif')\n" @@ -249,51 +142,38 @@ msgid "" "['.card.gif']" msgstr "" -#: ../../library/glob.rst:211 -msgid "" -"The :mod:`fnmatch` module offers shell-style filename (not path) expansion." +msgid "The :mod:`fnmatch` module offers shell-style filename (not path) expansion." msgstr "" -#: ../../library/glob.rst:214 msgid "The :mod:`pathlib` module offers high-level path objects." msgstr "" -#: ../../library/glob.rst:9 msgid "filenames" msgstr "" -#: ../../library/glob.rst:9 msgid "pathname expansion" msgstr "" -#: ../../library/glob.rst:13 msgid "* (asterisk)" msgstr "" -#: ../../library/glob.rst:13 ../../library/glob.rst:65 msgid "in glob-style wildcards" msgstr "" -#: ../../library/glob.rst:13 msgid "? (question mark)" msgstr "" -#: ../../library/glob.rst:13 msgid "[] (square brackets)" msgstr "" -#: ../../library/glob.rst:13 msgid "! (exclamation)" msgstr "" -#: ../../library/glob.rst:13 msgid "- (minus)" msgstr "" -#: ../../library/glob.rst:13 msgid ". (dot)" msgstr "" -#: ../../library/glob.rst:65 msgid "**" msgstr "" diff --git a/library/graphlib.po b/library/graphlib.po index 07ade5ea..1c72571f 100644 --- a/library/graphlib.po +++ b/library/graphlib.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:06+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,77 +23,39 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/graphlib.rst:2 -msgid "" -":mod:`!graphlib` --- Functionality to operate with graph-like structures" +msgid ":mod:`!graphlib` --- Functionality to operate with graph-like structures" msgstr "" -#: ../../library/graphlib.rst:8 msgid "**Source code:** :source:`Lib/graphlib.py`" msgstr "" -#: ../../library/graphlib.rst:20 -msgid "" -"Provides functionality to topologically sort a graph of :term:`hashable` " -"nodes." +msgid "Provides functionality to topologically sort a graph of :term:`hashable` nodes." msgstr "" -#: ../../library/graphlib.rst:22 -msgid "" -"A topological order is a linear ordering of the vertices in a graph such " -"that for every directed edge u -> v from vertex u to vertex v, vertex u " -"comes before vertex v in the ordering. For instance, the vertices of the " -"graph may represent tasks to be performed, and the edges may represent " -"constraints that one task must be performed before another; in this example, " -"a topological ordering is just a valid sequence for the tasks. A complete " -"topological ordering is possible if and only if the graph has no directed " -"cycles, that is, if it is a directed acyclic graph." +msgid "A topological order is a linear ordering of the vertices in a graph such that for every directed edge u -> v from vertex u to vertex v, vertex u comes before vertex v in the ordering. For instance, the vertices of the graph may represent tasks to be performed, and the edges may represent constraints that one task must be performed before another; in this example, a topological ordering is just a valid sequence for the tasks. A complete topological ordering is possible if and only if the graph has no directed cycles, that is, if it is a directed acyclic graph." msgstr "" -#: ../../library/graphlib.rst:31 -msgid "" -"If the optional *graph* argument is provided it must be a dictionary " -"representing a directed acyclic graph where the keys are nodes and the " -"values are iterables of all predecessors of that node in the graph (the " -"nodes that have edges that point to the value in the key). Additional nodes " -"can be added to the graph using the :meth:`~TopologicalSorter.add` method." +msgid "If the optional *graph* argument is provided it must be a dictionary representing a directed acyclic graph where the keys are nodes and the values are iterables of all predecessors of that node in the graph (the nodes that have edges that point to the value in the key). Additional nodes can be added to the graph using the :meth:`~TopologicalSorter.add` method." msgstr "" -#: ../../library/graphlib.rst:37 -msgid "" -"In the general case, the steps required to perform the sorting of a given " -"graph are as follows:" +msgid "In the general case, the steps required to perform the sorting of a given graph are as follows:" msgstr "" -#: ../../library/graphlib.rst:40 -msgid "" -"Create an instance of the :class:`TopologicalSorter` with an optional " -"initial graph." +msgid "Create an instance of the :class:`TopologicalSorter` with an optional initial graph." msgstr "" -#: ../../library/graphlib.rst:42 msgid "Add additional nodes to the graph." msgstr "" -#: ../../library/graphlib.rst:43 msgid "Call :meth:`~TopologicalSorter.prepare` on the graph." msgstr "" -#: ../../library/graphlib.rst:44 -msgid "" -"While :meth:`~TopologicalSorter.is_active` is ``True``, iterate over the " -"nodes returned by :meth:`~TopologicalSorter.get_ready` and process them. " -"Call :meth:`~TopologicalSorter.done` on each node as it finishes processing." +msgid "While :meth:`~TopologicalSorter.is_active` is ``True``, iterate over the nodes returned by :meth:`~TopologicalSorter.get_ready` and process them. Call :meth:`~TopologicalSorter.done` on each node as it finishes processing." msgstr "" -#: ../../library/graphlib.rst:49 -msgid "" -"In case just an immediate sorting of the nodes in the graph is required and " -"no parallelism is involved, the convenience " -"method :meth:`TopologicalSorter.static_order` can be used directly:" +msgid "In case just an immediate sorting of the nodes in the graph is required and no parallelism is involved, the convenience method :meth:`TopologicalSorter.static_order` can be used directly:" msgstr "" -#: ../../library/graphlib.rst:53 msgid "" ">>> graph = {\"D\": {\"B\", \"C\"}, \"C\": {\"A\"}, \"B\": {\"A\"}}\n" ">>> ts = TopologicalSorter(graph)\n" @@ -101,13 +63,9 @@ msgid "" "('A', 'C', 'B', 'D')" msgstr "" -#: ../../library/graphlib.rst:60 -msgid "" -"The class is designed to easily support parallel processing of the nodes as " -"they become ready. For instance::" +msgid "The class is designed to easily support parallel processing of the nodes as they become ready. For instance::" msgstr "" -#: ../../library/graphlib.rst:63 msgid "" "topological_sorter = TopologicalSorter()\n" "\n" @@ -132,125 +90,61 @@ msgid "" " topological_sorter.done(node)" msgstr "" -#: ../../library/graphlib.rst:87 -msgid "" -"Add a new node and its predecessors to the graph. Both the *node* and all " -"elements in *predecessors* must be :term:`hashable`." +msgid "Add a new node and its predecessors to the graph. Both the *node* and all elements in *predecessors* must be :term:`hashable`." msgstr "" -#: ../../library/graphlib.rst:90 -msgid "" -"If called multiple times with the same node argument, the set of " -"dependencies will be the union of all dependencies passed in." +msgid "If called multiple times with the same node argument, the set of dependencies will be the union of all dependencies passed in." msgstr "" -#: ../../library/graphlib.rst:93 -msgid "" -"It is possible to add a node with no dependencies (*predecessors* is not " -"provided) or to provide a dependency twice. If a node that has not been " -"provided before is included among *predecessors* it will be automatically " -"added to the graph with no predecessors of its own." +msgid "It is possible to add a node with no dependencies (*predecessors* is not provided) or to provide a dependency twice. If a node that has not been provided before is included among *predecessors* it will be automatically added to the graph with no predecessors of its own." msgstr "" -#: ../../library/graphlib.rst:98 -msgid "" -"Raises :exc:`ValueError` if called after :meth:`~TopologicalSorter.prepare`." +msgid "Raises :exc:`ValueError` if called after :meth:`~TopologicalSorter.prepare`." msgstr "" -#: ../../library/graphlib.rst:102 -msgid "" -"Mark the graph as finished and check for cycles in the graph. If any cycle " -"is detected, :exc:`CycleError` will be raised, " -"but :meth:`~TopologicalSorter.get_ready` can still be used to obtain as many " -"nodes as possible until cycles block more progress. After a call to this " -"function, the graph cannot be modified, and therefore no more nodes can be " -"added using :meth:`~TopologicalSorter.add`." +msgid "Mark the graph as finished and check for cycles in the graph. If any cycle is detected, :exc:`CycleError` will be raised, but :meth:`~TopologicalSorter.get_ready` can still be used to obtain as many nodes as possible until cycles block more progress. After a call to this function, the graph cannot be modified, and therefore no more nodes can be added using :meth:`~TopologicalSorter.add`." msgstr "" -#: ../../library/graphlib.rst:109 -msgid "" -"A :exc:`ValueError` will be raised if the sort has been started " -"by :meth:`~.static_order` or :meth:`~.get_ready`." +msgid "A :exc:`ValueError` will be raised if the sort has been started by :meth:`~.static_order` or :meth:`~.get_ready`." msgstr "" -#: ../../library/graphlib.rst:114 -msgid "" -"``prepare()`` can now be called more than once as long as the sort has not " -"started. Previously this raised :exc:`ValueError`." +msgid "``prepare()`` can now be called more than once as long as the sort has not started. Previously this raised :exc:`ValueError`." msgstr "" -#: ../../library/graphlib.rst:119 -msgid "" -"Returns ``True`` if more progress can be made and ``False`` otherwise. " -"Progress can be made if cycles do not block the resolution and either there " -"are still nodes ready that haven't yet been returned " -"by :meth:`TopologicalSorter.get_ready` or the number of nodes " -"marked :meth:`TopologicalSorter.done` is less than the number that have been " -"returned by :meth:`TopologicalSorter.get_ready`." +msgid "Returns ``True`` if more progress can be made and ``False`` otherwise. Progress can be made if cycles do not block the resolution and either there are still nodes ready that haven't yet been returned by :meth:`TopologicalSorter.get_ready` or the number of nodes marked :meth:`TopologicalSorter.done` is less than the number that have been returned by :meth:`TopologicalSorter.get_ready`." msgstr "" -#: ../../library/graphlib.rst:126 -msgid "" -"The :meth:`~object.__bool__` method of this class defers to this function, " -"so instead of::" +msgid "The :meth:`~object.__bool__` method of this class defers to this function, so instead of::" msgstr "" -#: ../../library/graphlib.rst:129 msgid "" "if ts.is_active():\n" " ..." msgstr "" -#: ../../library/graphlib.rst:132 msgid "it is possible to simply do::" msgstr "" -#: ../../library/graphlib.rst:134 msgid "" "if ts:\n" " ..." msgstr "" -#: ../../library/graphlib.rst:137 ../../library/graphlib.rst:160 -msgid "" -"Raises :exc:`ValueError` if called without " -"calling :meth:`~TopologicalSorter.prepare` previously." +msgid "Raises :exc:`ValueError` if called without calling :meth:`~TopologicalSorter.prepare` previously." msgstr "" -#: ../../library/graphlib.rst:142 -msgid "" -"Marks a set of nodes returned by :meth:`TopologicalSorter.get_ready` as " -"processed, unblocking any successor of each node in *nodes* for being " -"returned in the future by a call to :meth:`TopologicalSorter.get_ready`." +msgid "Marks a set of nodes returned by :meth:`TopologicalSorter.get_ready` as processed, unblocking any successor of each node in *nodes* for being returned in the future by a call to :meth:`TopologicalSorter.get_ready`." msgstr "" -#: ../../library/graphlib.rst:146 -msgid "" -"Raises :exc:`ValueError` if any node in *nodes* has already been marked as " -"processed by a previous call to this method or if a node was not added to " -"the graph by using :meth:`TopologicalSorter.add`, if called without " -"calling :meth:`~TopologicalSorter.prepare` or if node has not yet been " -"returned by :meth:`~TopologicalSorter.get_ready`." +msgid "Raises :exc:`ValueError` if any node in *nodes* has already been marked as processed by a previous call to this method or if a node was not added to the graph by using :meth:`TopologicalSorter.add`, if called without calling :meth:`~TopologicalSorter.prepare` or if node has not yet been returned by :meth:`~TopologicalSorter.get_ready`." msgstr "" -#: ../../library/graphlib.rst:154 -msgid "" -"Returns a ``tuple`` with all the nodes that are ready. Initially it returns " -"all nodes with no predecessors, and once those are marked as processed by " -"calling :meth:`TopologicalSorter.done`, further calls will return all new " -"nodes that have all their predecessors already processed. Once no more " -"progress can be made, empty tuples are returned." +msgid "Returns a ``tuple`` with all the nodes that are ready. Initially it returns all nodes with no predecessors, and once those are marked as processed by calling :meth:`TopologicalSorter.done`, further calls will return all new nodes that have all their predecessors already processed. Once no more progress can be made, empty tuples are returned." msgstr "" -#: ../../library/graphlib.rst:165 -msgid "" -"Returns an iterator object which will iterate over nodes in a topological " -"order. When using this method, :meth:`~TopologicalSorter.prepare` " -"and :meth:`~TopologicalSorter.done` should not be called. This method is " -"equivalent to::" +msgid "Returns an iterator object which will iterate over nodes in a topological order. When using this method, :meth:`~TopologicalSorter.prepare` and :meth:`~TopologicalSorter.done` should not be called. This method is equivalent to::" msgstr "" -#: ../../library/graphlib.rst:170 msgid "" "def static_order(self):\n" " self.prepare()\n" @@ -260,13 +154,9 @@ msgid "" " self.done(*node_group)" msgstr "" -#: ../../library/graphlib.rst:177 -msgid "" -"The particular order that is returned may depend on the specific order in " -"which the items were inserted in the graph. For example:" +msgid "The particular order that is returned may depend on the specific order in which the items were inserted in the graph. For example:" msgstr "" -#: ../../library/graphlib.rst:180 msgid "" ">>> ts = TopologicalSorter()\n" ">>> ts.add(3, 2, 1)\n" @@ -281,39 +171,20 @@ msgid "" "[0, 2, 1, 3]" msgstr "" -#: ../../library/graphlib.rst:194 -msgid "" -"This is due to the fact that \"0\" and \"2\" are in the same level in the " -"graph (they would have been returned in the same call " -"to :meth:`~TopologicalSorter.get_ready`) and the order between them is " -"determined by the order of insertion." +msgid "This is due to the fact that \"0\" and \"2\" are in the same level in the graph (they would have been returned in the same call to :meth:`~TopologicalSorter.get_ready`) and the order between them is determined by the order of insertion." msgstr "" -#: ../../library/graphlib.rst:200 msgid "If any cycle is detected, :exc:`CycleError` will be raised." msgstr "" -#: ../../library/graphlib.rst:206 msgid "Exceptions" msgstr "" -#: ../../library/graphlib.rst:207 msgid "The :mod:`!graphlib` module defines the following exception classes:" msgstr "" -#: ../../library/graphlib.rst:211 -msgid "" -"Subclass of :exc:`ValueError` raised by :meth:`TopologicalSorter.prepare` if " -"cycles exist in the working graph. If multiple cycles exist, only one " -"undefined choice among them will be reported and included in the exception." +msgid "Subclass of :exc:`ValueError` raised by :meth:`TopologicalSorter.prepare` if cycles exist in the working graph. If multiple cycles exist, only one undefined choice among them will be reported and included in the exception." msgstr "" -#: ../../library/graphlib.rst:215 -msgid "" -"The detected cycle can be accessed via the second element in " -"the :attr:`~BaseException.args` attribute of the exception instance and " -"consists in a list of nodes, such that each node is, in the graph, an " -"immediate predecessor of the next node in the list. In the reported list, " -"the first and the last node will be the same, to make it clear that it is " -"cyclic." +msgid "The detected cycle can be accessed via the second element in the :attr:`~BaseException.args` attribute of the exception instance and consists in a list of nodes, such that each node is, in the graph, an immediate predecessor of the next node in the list. In the reported list, the first and the last node will be the same, to make it clear that it is cyclic." msgstr "" diff --git a/library/grp.po b/library/grp.po index 31ee617a..f8f37161 100644 --- a/library/grp.po +++ b/library/grp.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:07+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,127 +24,83 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/grp.rst:2 msgid ":mod:`!grp` --- The group database" msgstr "" -#: ../../library/grp.rst:9 -msgid "" -"This module provides access to the Unix group database. It is available on " -"all Unix versions." +msgid "This module provides access to the Unix group database. It is available on all Unix versions." msgstr "" -#: ../../library/grp.rst:12 msgid "Availability" msgstr "" -#: ../../library/grp.rst:14 -msgid "" -"Group database entries are reported as a tuple-like object, whose attributes " -"correspond to the members of the ``group`` structure (Attribute field below, " -"see ````):" +msgid "Group database entries are reported as a tuple-like object, whose attributes correspond to the members of the ``group`` structure (Attribute field below, see ````):" msgstr "" -#: ../../library/grp.rst:19 msgid "Index" msgstr "" -#: ../../library/grp.rst:19 msgid "Attribute" msgstr "" -#: ../../library/grp.rst:19 msgid "Meaning" msgstr "" -#: ../../library/grp.rst:21 msgid "0" msgstr "" -#: ../../library/grp.rst:21 msgid "gr_name" msgstr "" -#: ../../library/grp.rst:21 msgid "the name of the group" msgstr "" -#: ../../library/grp.rst:23 msgid "1" msgstr "" -#: ../../library/grp.rst:23 msgid "gr_passwd" msgstr "" -#: ../../library/grp.rst:23 msgid "the (encrypted) group password; often empty" msgstr "" -#: ../../library/grp.rst:26 msgid "2" msgstr "" -#: ../../library/grp.rst:26 msgid "gr_gid" msgstr "" -#: ../../library/grp.rst:26 msgid "the numerical group ID" msgstr "" -#: ../../library/grp.rst:28 msgid "3" msgstr "" -#: ../../library/grp.rst:28 msgid "gr_mem" msgstr "" -#: ../../library/grp.rst:28 msgid "all the group member's user names" msgstr "" -#: ../../library/grp.rst:32 -msgid "" -"The gid is an integer, name and password are strings, and the member list is " -"a list of strings. (Note that most users are not explicitly listed as " -"members of the group they are in according to the password database. Check " -"both databases to get complete membership information. Also note that a " -"``gr_name`` that starts with a ``+`` or ``-`` is likely to be a YP/NIS " -"reference and may not be accessible via :func:`getgrnam` " -"or :func:`getgrgid`.)" +msgid "The gid is an integer, name and password are strings, and the member list is a list of strings. (Note that most users are not explicitly listed as members of the group they are in according to the password database. Check both databases to get complete membership information. Also note that a ``gr_name`` that starts with a ``+`` or ``-`` is likely to be a YP/NIS reference and may not be accessible via :func:`getgrnam` or :func:`getgrgid`.)" msgstr "" -#: ../../library/grp.rst:39 msgid "It defines the following items:" msgstr "" -#: ../../library/grp.rst:44 -msgid "" -"Return the group database entry for the given numeric group " -"ID. :exc:`KeyError` is raised if the entry asked for cannot be found." +msgid "Return the group database entry for the given numeric group ID. :exc:`KeyError` is raised if the entry asked for cannot be found." msgstr "" -#: ../../library/grp.rst:47 -msgid "" -":exc:`TypeError` is raised for non-integer arguments like floats or strings." +msgid ":exc:`TypeError` is raised for non-integer arguments like floats or strings." msgstr "" -#: ../../library/grp.rst:52 -msgid "" -"Return the group database entry for the given group name. :exc:`KeyError` is " -"raised if the entry asked for cannot be found." +msgid "Return the group database entry for the given group name. :exc:`KeyError` is raised if the entry asked for cannot be found." msgstr "" -#: ../../library/grp.rst:58 msgid "Return a list of all available group entries, in arbitrary order." msgstr "" -#: ../../library/grp.rst:63 msgid "Module :mod:`pwd`" msgstr "" -#: ../../library/grp.rst:64 msgid "An interface to the user database, similar to this." msgstr "" diff --git a/library/gzip.po b/library/gzip.po index 45e67590..42cfb036 100644 --- a/library/gzip.po +++ b/library/gzip.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:07+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,338 +23,168 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/gzip.rst:2 msgid ":mod:`!gzip` --- Support for :program:`gzip` files" msgstr "" -#: ../../library/gzip.rst:7 msgid "**Source code:** :source:`Lib/gzip.py`" msgstr "" -#: ../../library/gzip.rst:11 -msgid "" -"This module provides a simple interface to compress and decompress files " -"just like the GNU programs :program:`gzip` and :program:`gunzip` would." +msgid "This module provides a simple interface to compress and decompress files just like the GNU programs :program:`gzip` and :program:`gunzip` would." msgstr "" -#: ../../includes/optional-module.rst:1 -msgid "" -"This is an :term:`optional module`. If it is missing from your copy of " -"CPython, look for documentation from your distributor (that is, whoever " -"provided Python to you). If you are the distributor, see :ref:`optional-" -"module-requirements`." +msgid "This is an :term:`optional module`. If it is missing from your copy of CPython, look for documentation from your distributor (that is, whoever provided Python to you). If you are the distributor, see :ref:`optional-module-requirements`." msgstr "" -#: ../../library/gzip.rst:16 msgid "The data compression is provided by the :mod:`zlib` module." msgstr "" -#: ../../library/gzip.rst:18 -msgid "" -"The :mod:`!gzip` module provides the :class:`GzipFile` class, as well as " -"the :func:`.open`, :func:`compress` and :func:`decompress` convenience " -"functions. The :class:`GzipFile` class reads and writes :program:`gzip`\\ " -"-format files, automatically compressing or decompressing the data so that " -"it looks like an ordinary :term:`file object`." +msgid "The :mod:`!gzip` module provides the :class:`GzipFile` class, as well as the :func:`.open`, :func:`compress` and :func:`decompress` convenience functions. The :class:`GzipFile` class reads and writes :program:`gzip`\\ -format files, automatically compressing or decompressing the data so that it looks like an ordinary :term:`file object`." msgstr "" -#: ../../library/gzip.rst:24 -msgid "" -"Note that additional file formats which can be decompressed by " -"the :program:`gzip` and :program:`gunzip` programs, such as those produced " -"by :program:`compress` and :program:`pack`, are not supported by this module." +msgid "Note that additional file formats which can be decompressed by the :program:`gzip` and :program:`gunzip` programs, such as those produced by :program:`compress` and :program:`pack`, are not supported by this module." msgstr "" -#: ../../library/gzip.rst:28 msgid "The module defines the following items:" msgstr "" -#: ../../library/gzip.rst:33 -msgid "" -"Open a gzip-compressed file in binary or text mode, returning a :term:`file " -"object`." +msgid "Open a gzip-compressed file in binary or text mode, returning a :term:`file object`." msgstr "" -#: ../../library/gzip.rst:36 -msgid "" -"The *filename* argument can be an actual filename (a :class:`str` " -"or :class:`bytes` object), or an existing file object to read from or write " -"to." +msgid "The *filename* argument can be an actual filename (a :class:`str` or :class:`bytes` object), or an existing file object to read from or write to." msgstr "" -#: ../../library/gzip.rst:39 -msgid "" -"The *mode* argument can be any of ``'r'``, ``'rb'``, ``'a'``, ``'ab'``, " -"``'w'``, ``'wb'``, ``'x'`` or ``'xb'`` for binary mode, or ``'rt'``, " -"``'at'``, ``'wt'``, or ``'xt'`` for text mode. The default is ``'rb'``." +msgid "The *mode* argument can be any of ``'r'``, ``'rb'``, ``'a'``, ``'ab'``, ``'w'``, ``'wb'``, ``'x'`` or ``'xb'`` for binary mode, or ``'rt'``, ``'at'``, ``'wt'``, or ``'xt'`` for text mode. The default is ``'rb'``." msgstr "" -#: ../../library/gzip.rst:43 -msgid "" -"The *compresslevel* argument is an integer from 0 to 9, as for " -"the :class:`GzipFile` constructor." +msgid "The *compresslevel* argument is an integer from 0 to 9, as for the :class:`GzipFile` constructor." msgstr "" -#: ../../library/gzip.rst:46 -msgid "" -"For binary mode, this function is equivalent to the :class:`GzipFile` " -"constructor: ``GzipFile(filename, mode, compresslevel)``. In this case, the " -"*encoding*, *errors* and *newline* arguments must not be provided." +msgid "For binary mode, this function is equivalent to the :class:`GzipFile` constructor: ``GzipFile(filename, mode, compresslevel)``. In this case, the *encoding*, *errors* and *newline* arguments must not be provided." msgstr "" -#: ../../library/gzip.rst:50 -msgid "" -"For text mode, a :class:`GzipFile` object is created, and wrapped in " -"an :class:`io.TextIOWrapper` instance with the specified encoding, error " -"handling behavior, and line ending(s)." +msgid "For text mode, a :class:`GzipFile` object is created, and wrapped in an :class:`io.TextIOWrapper` instance with the specified encoding, error handling behavior, and line ending(s)." msgstr "" -#: ../../library/gzip.rst:54 -msgid "" -"Added support for *filename* being a file object, support for text mode, and " -"the *encoding*, *errors* and *newline* arguments." +msgid "Added support for *filename* being a file object, support for text mode, and the *encoding*, *errors* and *newline* arguments." msgstr "" -#: ../../library/gzip.rst:58 msgid "Added support for the ``'x'``, ``'xb'`` and ``'xt'`` modes." msgstr "" -#: ../../library/gzip.rst:61 ../../library/gzip.rst:175 msgid "Accepts a :term:`path-like object`." msgstr "" -#: ../../library/gzip.rst:66 -msgid "" -"An exception raised for invalid gzip files. It inherits " -"from :exc:`OSError`. :exc:`EOFError` and :exc:`zlib.error` can also be " -"raised for invalid gzip files." +msgid "An exception raised for invalid gzip files. It inherits from :exc:`OSError`. :exc:`EOFError` and :exc:`zlib.error` can also be raised for invalid gzip files." msgstr "" -#: ../../library/gzip.rst:74 -msgid "" -"Constructor for the :class:`GzipFile` class, which simulates most of the " -"methods of a :term:`file object`, with the exception of " -"the :meth:`~io.IOBase.truncate` method. At least one of *fileobj* and " -"*filename* must be given a non-trivial value." +msgid "Constructor for the :class:`GzipFile` class, which simulates most of the methods of a :term:`file object`, with the exception of the :meth:`~io.IOBase.truncate` method. At least one of *fileobj* and *filename* must be given a non-trivial value." msgstr "" -#: ../../library/gzip.rst:79 -msgid "" -"The new class instance is based on *fileobj*, which can be a regular file, " -"an :class:`io.BytesIO` object, or any other object which simulates a file. " -"It defaults to ``None``, in which case *filename* is opened to provide a " -"file object." +msgid "The new class instance is based on *fileobj*, which can be a regular file, an :class:`io.BytesIO` object, or any other object which simulates a file. It defaults to ``None``, in which case *filename* is opened to provide a file object." msgstr "" -#: ../../library/gzip.rst:84 -msgid "" -"When *fileobj* is not ``None``, the *filename* argument is only used to be " -"included in the :program:`gzip` file header, which may include the original " -"filename of the uncompressed file. It defaults to the filename of " -"*fileobj*, if discernible; otherwise, it defaults to the empty string, and " -"in this case the original filename is not included in the header." +msgid "When *fileobj* is not ``None``, the *filename* argument is only used to be included in the :program:`gzip` file header, which may include the original filename of the uncompressed file. It defaults to the filename of *fileobj*, if discernible; otherwise, it defaults to the empty string, and in this case the original filename is not included in the header." msgstr "" -#: ../../library/gzip.rst:90 -msgid "" -"The *mode* argument can be any of ``'r'``, ``'rb'``, ``'a'``, ``'ab'``, " -"``'w'``, ``'wb'``, ``'x'``, or ``'xb'``, depending on whether the file will " -"be read or written. The default is the mode of *fileobj* if discernible; " -"otherwise, the default is ``'rb'``. In future Python releases the mode of " -"*fileobj* will not be used. It is better to always specify *mode* for " -"writing." +msgid "The *mode* argument can be any of ``'r'``, ``'rb'``, ``'a'``, ``'ab'``, ``'w'``, ``'wb'``, ``'x'``, or ``'xb'``, depending on whether the file will be read or written. The default is the mode of *fileobj* if discernible; otherwise, the default is ``'rb'``. In future Python releases the mode of *fileobj* will not be used. It is better to always specify *mode* for writing." msgstr "" -#: ../../library/gzip.rst:96 -msgid "" -"Note that the file is always opened in binary mode. To open a compressed " -"file in text mode, use :func:`.open` (or wrap your :class:`GzipFile` with " -"an :class:`io.TextIOWrapper`)." +msgid "Note that the file is always opened in binary mode. To open a compressed file in text mode, use :func:`.open` (or wrap your :class:`GzipFile` with an :class:`io.TextIOWrapper`)." msgstr "" -#: ../../library/gzip.rst:100 -msgid "" -"The *compresslevel* argument is an integer from ``0`` to ``9`` controlling " -"the level of compression; ``1`` is fastest and produces the least " -"compression, and ``9`` is slowest and produces the most compression. ``0`` " -"is no compression. The default is ``9``." +msgid "The *compresslevel* argument is an integer from ``0`` to ``9`` controlling the level of compression; ``1`` is fastest and produces the least compression, and ``9`` is slowest and produces the most compression. ``0`` is no compression. The default is ``9``." msgstr "" -#: ../../library/gzip.rst:105 -msgid "" -"The optional *mtime* argument is the timestamp requested by gzip. The time " -"is in Unix format, i.e., seconds since 00:00:00 UTC, January 1, 1970. If " -"*mtime* is omitted or ``None``, the current time is used. Use *mtime* = 0 to " -"generate a compressed stream that does not depend on creation time." +msgid "The optional *mtime* argument is the timestamp requested by gzip. The time is in Unix format, i.e., seconds since 00:00:00 UTC, January 1, 1970. If *mtime* is omitted or ``None``, the current time is used. Use *mtime* = 0 to generate a compressed stream that does not depend on creation time." msgstr "" -#: ../../library/gzip.rst:110 -msgid "" -"See below for the :attr:`mtime` attribute that is set when decompressing." +msgid "See below for the :attr:`mtime` attribute that is set when decompressing." msgstr "" -#: ../../library/gzip.rst:112 -msgid "" -"Calling a :class:`GzipFile` object's :meth:`!close` method does not close " -"*fileobj*, since you might wish to append more material after the compressed " -"data. This also allows you to pass an :class:`io.BytesIO` object opened for " -"writing as *fileobj*, and retrieve the resulting memory buffer using " -"the :class:`io.BytesIO` object's :meth:`~io.BytesIO.getvalue` method." +msgid "Calling a :class:`GzipFile` object's :meth:`!close` method does not close *fileobj*, since you might wish to append more material after the compressed data. This also allows you to pass an :class:`io.BytesIO` object opened for writing as *fileobj*, and retrieve the resulting memory buffer using the :class:`io.BytesIO` object's :meth:`~io.BytesIO.getvalue` method." msgstr "" -#: ../../library/gzip.rst:118 -msgid "" -":class:`GzipFile` supports the :class:`io.BufferedIOBase` interface, " -"including iteration and the :keyword:`with` statement. Only " -"the :meth:`~io.IOBase.truncate` method isn't implemented." +msgid ":class:`GzipFile` supports the :class:`io.BufferedIOBase` interface, including iteration and the :keyword:`with` statement. Only the :meth:`~io.IOBase.truncate` method isn't implemented." msgstr "" -#: ../../library/gzip.rst:122 msgid ":class:`GzipFile` also provides the following method and attribute:" msgstr "" -#: ../../library/gzip.rst:126 -msgid "" -"Read *n* uncompressed bytes without advancing the file position. The number " -"of bytes returned may be more or less than requested." +msgid "Read *n* uncompressed bytes without advancing the file position. The number of bytes returned may be more or less than requested." msgstr "" -#: ../../library/gzip.rst:129 -msgid "" -"While calling :meth:`peek` does not change the file position of " -"the :class:`GzipFile`, it may change the position of the underlying file " -"object (e.g. if the :class:`GzipFile` was constructed with the *fileobj* " -"parameter)." +msgid "While calling :meth:`peek` does not change the file position of the :class:`GzipFile`, it may change the position of the underlying file object (e.g. if the :class:`GzipFile` was constructed with the *fileobj* parameter)." msgstr "" -#: ../../library/gzip.rst:138 msgid "``'rb'`` for reading and ``'wb'`` for writing." msgstr "" -#: ../../library/gzip.rst:140 msgid "In previous versions it was an integer ``1`` or ``2``." msgstr "" -#: ../../library/gzip.rst:145 -msgid "" -"When decompressing, this attribute is set to the last timestamp in the most " -"recently read header. It is an integer, holding the number of seconds since " -"the Unix epoch (00:00:00 UTC, January 1, 1970). The initial value before " -"reading any headers is ``None``." +msgid "When decompressing, this attribute is set to the last timestamp in the most recently read header. It is an integer, holding the number of seconds since the Unix epoch (00:00:00 UTC, January 1, 1970). The initial value before reading any headers is ``None``." msgstr "" -#: ../../library/gzip.rst:152 -msgid "" -"The path to the gzip file on disk, as a :class:`str` or :class:`bytes`. " -"Equivalent to the output of :func:`os.fspath` on the original input path, " -"with no other normalization, resolution or expansion." +msgid "The path to the gzip file on disk, as a :class:`str` or :class:`bytes`. Equivalent to the output of :func:`os.fspath` on the original input path, with no other normalization, resolution or expansion." msgstr "" -#: ../../library/gzip.rst:156 -msgid "" -"Support for the :keyword:`with` statement was added, along with the *mtime* " -"constructor argument and :attr:`mtime` attribute." +msgid "Support for the :keyword:`with` statement was added, along with the *mtime* constructor argument and :attr:`mtime` attribute." msgstr "" -#: ../../library/gzip.rst:160 msgid "Support for zero-padded and unseekable files was added." msgstr "" -#: ../../library/gzip.rst:163 msgid "The :meth:`io.BufferedIOBase.read1` method is now implemented." msgstr "" -#: ../../library/gzip.rst:166 msgid "Added support for the ``'x'`` and ``'xb'`` modes." msgstr "" -#: ../../library/gzip.rst:169 -msgid "" -"Added support for writing arbitrary :term:`bytes-like objects `. The :meth:`~io.BufferedIOBase.read` method now accepts an argument " -"of ``None``." +msgid "Added support for writing arbitrary :term:`bytes-like objects `. The :meth:`~io.BufferedIOBase.read` method now accepts an argument of ``None``." msgstr "" -#: ../../library/gzip.rst:178 -msgid "" -"Opening :class:`GzipFile` for writing without specifying the *mode* argument " -"is deprecated." +msgid "Opening :class:`GzipFile` for writing without specifying the *mode* argument is deprecated." msgstr "" -#: ../../library/gzip.rst:182 -msgid "" -"Remove the ``filename`` attribute, use the :attr:`~GzipFile.name` attribute " -"instead." +msgid "Remove the ``filename`` attribute, use the :attr:`~GzipFile.name` attribute instead." msgstr "" -#: ../../library/gzip.rst:189 -msgid "" -"Compress the *data*, returning a :class:`bytes` object containing the " -"compressed data. *compresslevel* and *mtime* have the same meaning as in " -"the :class:`GzipFile` constructor above, but *mtime* defaults to 0 for " -"reproducible output." +msgid "Compress the *data*, returning a :class:`bytes` object containing the compressed data. *compresslevel* and *mtime* have the same meaning as in the :class:`GzipFile` constructor above, but *mtime* defaults to 0 for reproducible output." msgstr "" -#: ../../library/gzip.rst:195 msgid "Added the *mtime* parameter for reproducible output." msgstr "" -#: ../../library/gzip.rst:197 -msgid "" -"Speed is improved by compressing all data at once instead of in a streamed " -"fashion. Calls with *mtime* set to ``0`` are delegated " -"to :func:`zlib.compress` for better speed. In this situation the output may " -"contain a gzip header \"OS\" byte value other than 255 \"unknown\" as " -"supplied by the underlying zlib implementation." +msgid "Speed is improved by compressing all data at once instead of in a streamed fashion. Calls with *mtime* set to ``0`` are delegated to :func:`zlib.compress` for better speed. In this situation the output may contain a gzip header \"OS\" byte value other than 255 \"unknown\" as supplied by the underlying zlib implementation." msgstr "" -#: ../../library/gzip.rst:204 -msgid "" -"The gzip header OS byte is guaranteed to be set to 255 when this function is " -"used as was the case in 3.10 and earlier." +msgid "The gzip header OS byte is guaranteed to be set to 255 when this function is used as was the case in 3.10 and earlier." msgstr "" -#: ../../library/gzip.rst:207 -msgid "" -"The *mtime* parameter now defaults to 0 for reproducible output. For the " -"previous behaviour of using the current time, pass ``None`` to *mtime*." +msgid "The *mtime* parameter now defaults to 0 for reproducible output. For the previous behaviour of using the current time, pass ``None`` to *mtime*." msgstr "" -#: ../../library/gzip.rst:214 -msgid "" -"Decompress the *data*, returning a :class:`bytes` object containing the " -"uncompressed data. This function is capable of decompressing multi-member " -"gzip data (multiple gzip blocks concatenated together). When the data is " -"certain to contain only one member the :func:`zlib.decompress` function with " -"*wbits* set to 31 is faster." +msgid "Decompress the *data*, returning a :class:`bytes` object containing the uncompressed data. This function is capable of decompressing multi-member gzip data (multiple gzip blocks concatenated together). When the data is certain to contain only one member the :func:`zlib.decompress` function with *wbits* set to 31 is faster." msgstr "" -#: ../../library/gzip.rst:221 -msgid "" -"Speed is improved by decompressing members at once in memory instead of in a " -"streamed fashion." +msgid "Speed is improved by decompressing members at once in memory instead of in a streamed fashion." msgstr "" -#: ../../library/gzip.rst:228 msgid "Examples of usage" msgstr "" -#: ../../library/gzip.rst:230 msgid "Example of how to read a compressed file::" msgstr "" -#: ../../library/gzip.rst:232 msgid "" "import gzip\n" "with gzip.open('/home/joe/file.txt.gz', 'rb') as f:\n" " file_content = f.read()" msgstr "" -#: ../../library/gzip.rst:236 msgid "Example of how to create a compressed GZIP file::" msgstr "" -#: ../../library/gzip.rst:238 msgid "" "import gzip\n" "content = b\"Lots of content here\"\n" @@ -362,11 +192,9 @@ msgid "" " f.write(content)" msgstr "" -#: ../../library/gzip.rst:243 msgid "Example of how to GZIP compress an existing file::" msgstr "" -#: ../../library/gzip.rst:245 msgid "" "import gzip\n" "import shutil\n" @@ -375,73 +203,50 @@ msgid "" " shutil.copyfileobj(f_in, f_out)" msgstr "" -#: ../../library/gzip.rst:251 msgid "Example of how to GZIP compress a binary string::" msgstr "" -#: ../../library/gzip.rst:253 msgid "" "import gzip\n" "s_in = b\"Lots of content here\"\n" "s_out = gzip.compress(s_in)" msgstr "" -#: ../../library/gzip.rst:259 msgid "Module :mod:`zlib`" msgstr "" -#: ../../library/gzip.rst:260 -msgid "" -"The basic data compression module needed to support the :program:`gzip` file " -"format." +msgid "The basic data compression module needed to support the :program:`gzip` file format." msgstr "" -#: ../../library/gzip.rst:263 -msgid "" -"In case gzip (de)compression is a bottleneck, the `python-isal`_ package " -"speeds up (de)compression with a mostly compatible API." +msgid "In case gzip (de)compression is a bottleneck, the `python-isal`_ package speeds up (de)compression with a mostly compatible API." msgstr "" -#: ../../library/gzip.rst:273 msgid "Command-line interface" msgstr "" -#: ../../library/gzip.rst:275 -msgid "" -"The :mod:`!gzip` module provides a simple command line interface to compress " -"or decompress files." +msgid "The :mod:`!gzip` module provides a simple command line interface to compress or decompress files." msgstr "" -#: ../../library/gzip.rst:278 msgid "Once executed the :mod:`!gzip` module keeps the input file(s)." msgstr "" -#: ../../library/gzip.rst:282 -msgid "" -"Add a new command line interface with a usage. By default, when you will " -"execute the CLI, the default compression level is 6." +msgid "Add a new command line interface with a usage. By default, when you will execute the CLI, the default compression level is 6." msgstr "" -#: ../../library/gzip.rst:286 msgid "Command-line options" msgstr "" -#: ../../library/gzip.rst:290 msgid "If *file* is not specified, read from :data:`sys.stdin`." msgstr "" -#: ../../library/gzip.rst:294 msgid "Indicates the fastest compression method (less compression)." msgstr "" -#: ../../library/gzip.rst:298 msgid "Indicates the slowest compression method (best compression)." msgstr "" -#: ../../library/gzip.rst:302 msgid "Decompress the given file." msgstr "" -#: ../../library/gzip.rst:306 msgid "Show the help message." msgstr "" diff --git a/library/hashlib.po b/library/hashlib.po index e569ee31..9b0ac8c1 100644 --- a/library/hashlib.po +++ b/library/hashlib.po @@ -16,7 +16,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:07+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -26,677 +26,362 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/hashlib.rst:2 msgid ":mod:`!hashlib` --- Secure hashes and message digests" msgstr "" -#: ../../library/hashlib.rst:10 msgid "**Source code:** :source:`Lib/hashlib.py`" msgstr "" -#: ../../library/hashlib.rst:23 -msgid "" -"This module implements a common interface to many different hash algorithms. " -"Included are the FIPS secure hash algorithms SHA224, SHA256, SHA384, SHA512, " -"(defined in `the FIPS 180-4 standard`_), the SHA-3 series (defined in `the " -"FIPS 202 standard`_) as well as the legacy algorithms SHA1 (`formerly part " -"of FIPS`_) and the MD5 algorithm (defined in internet :rfc:`1321`)." +msgid "This module implements a common interface to many different hash algorithms. Included are the FIPS secure hash algorithms SHA224, SHA256, SHA384, SHA512, (defined in `the FIPS 180-4 standard`_), the SHA-3 series (defined in `the FIPS 202 standard`_) as well as the legacy algorithms SHA1 (`formerly part of FIPS`_) and the MD5 algorithm (defined in internet :rfc:`1321`)." msgstr "" -#: ../../library/hashlib.rst:31 -msgid "" -"If you want the adler32 or crc32 hash functions, they are available in " -"the :mod:`zlib` module." +msgid "If you want the adler32 or crc32 hash functions, they are available in the :mod:`zlib` module." msgstr "" -#: ../../library/hashlib.rst:38 msgid "Hash algorithms" msgstr "" -#: ../../library/hashlib.rst:40 -msgid "" -"There is one constructor method named for each type of :dfn:`hash`. All " -"return a hash object with the same simple interface. For example: " -"use :func:`sha256` to create a SHA-256 hash object. You can now feed this " -"object with :term:`bytes-like objects ` " -"(normally :class:`bytes`) using the :meth:`update` method. At " -"any point you can ask it for the :dfn:`digest` of the concatenation of the " -"data fed to it so far using the :meth:`digest()` " -"or :meth:`hexdigest()` methods." +msgid "There is one constructor method named for each type of :dfn:`hash`. All return a hash object with the same simple interface. For example: use :func:`sha256` to create a SHA-256 hash object. You can now feed this object with :term:`bytes-like objects ` (normally :class:`bytes`) using the :meth:`update` method. At any point you can ask it for the :dfn:`digest` of the concatenation of the data fed to it so far using the :meth:`digest()` or :meth:`hexdigest()` methods." msgstr "" -#: ../../library/hashlib.rst:48 -msgid "" -"To allow multithreading, the Python :term:`GIL` is released while computing " -"a hash supplied more than 2047 bytes of data at once in its constructor " -"or :meth:`.update` method." +msgid "To allow multithreading, the Python :term:`GIL` is released while computing a hash supplied more than 2047 bytes of data at once in its constructor or :meth:`.update` method." msgstr "" -#: ../../library/hashlib.rst:55 -msgid "" -"Constructors for hash algorithms that are always present in this module " -"are :func:`sha1`, :func:`sha224`, :func:`sha256`, :func:`sha384`, :func:`sha512`, :func:`sha3_224`, :func:`sha3_256`, :func:`sha3_384`, :func:`sha3_512`, :func:`shake_128`, :func:`shake_256`, :func:`blake2b`, " -"and :func:`blake2s`. :func:`md5` is normally available as well, though it " -"may be missing or blocked if you are using a rare \"FIPS compliant\" build " -"of Python. These correspond to :data:`algorithms_guaranteed`." +msgid "Constructors for hash algorithms that are always present in this module are :func:`sha1`, :func:`sha224`, :func:`sha256`, :func:`sha384`, :func:`sha512`, :func:`sha3_224`, :func:`sha3_256`, :func:`sha3_384`, :func:`sha3_512`, :func:`shake_128`, :func:`shake_256`, :func:`blake2b`, and :func:`blake2s`. :func:`md5` is normally available as well, though it may be missing or blocked if you are using a rare \"FIPS compliant\" build of Python. These correspond to :data:`algorithms_guaranteed`." msgstr "" -#: ../../library/hashlib.rst:63 -msgid "" -"Additional algorithms may also be available if your Python " -"distribution's :mod:`!hashlib` was linked against a build of OpenSSL that " -"provides others. Others *are not guaranteed available* on all installations " -"and will only be accessible by name via :func:`new`. " -"See :data:`algorithms_available`." +msgid "Additional algorithms may also be available if your Python distribution's :mod:`!hashlib` was linked against a build of OpenSSL that provides others. Others *are not guaranteed available* on all installations and will only be accessible by name via :func:`new`. See :data:`algorithms_available`." msgstr "" -#: ../../library/hashlib.rst:70 -msgid "" -"Some algorithms have known hash collision weaknesses (including MD5 and " -"SHA1). Refer to `Attacks on cryptographic hash algorithms`_ and the `hashlib-" -"seealso`_ section at the end of this document." +msgid "Some algorithms have known hash collision weaknesses (including MD5 and SHA1). Refer to `Attacks on cryptographic hash algorithms`_ and the `hashlib-seealso`_ section at the end of this document." msgstr "" -#: ../../library/hashlib.rst:74 -msgid "" -"SHA3 (Keccak) and SHAKE " -"constructors :func:`sha3_224`, :func:`sha3_256`, :func:`sha3_384`, :func:`sha3_512`, :func:`shake_128`, :func:`shake_256` " -"were added. :func:`blake2b` and :func:`blake2s` were added." +msgid "SHA3 (Keccak) and SHAKE constructors :func:`sha3_224`, :func:`sha3_256`, :func:`sha3_384`, :func:`sha3_512`, :func:`shake_128`, :func:`shake_256` were added. :func:`blake2b` and :func:`blake2s` were added." msgstr "" -#: ../../library/hashlib.rst:82 -msgid "" -"All hashlib constructors take a keyword-only argument *usedforsecurity* with " -"default value ``True``. A false value allows the use of insecure and blocked " -"hashing algorithms in restricted environments. ``False`` indicates that the " -"hashing algorithm is not used in a security context, e.g. as a non-" -"cryptographic one-way compression function." +msgid "All hashlib constructors take a keyword-only argument *usedforsecurity* with default value ``True``. A false value allows the use of insecure and blocked hashing algorithms in restricted environments. ``False`` indicates that the hashing algorithm is not used in a security context, e.g. as a non-cryptographic one-way compression function." msgstr "" -#: ../../library/hashlib.rst:89 msgid "Hashlib now uses SHA3 and SHAKE from OpenSSL if it provides it." msgstr "" -#: ../../library/hashlib.rst:92 -msgid "" -"For any of the MD5, SHA1, SHA2, or SHA3 algorithms that the linked OpenSSL " -"does not provide we fall back to a verified implementation from the `HACL\\* " -"project`_." +msgid "For any of the MD5, SHA1, SHA2, or SHA3 algorithms that the linked OpenSSL does not provide we fall back to a verified implementation from the `HACL\\* project`_." msgstr "" -#: ../../library/hashlib.rst:98 msgid "Usage" msgstr "" -#: ../../library/hashlib.rst:100 -msgid "" -"To obtain the digest of the byte string ``b\"Nobody inspects the spammish " -"repetition\"``::" +msgid "To obtain the digest of the byte string ``b\"Nobody inspects the spammish repetition\"``::" msgstr "" -#: ../../library/hashlib.rst:103 msgid "" ">>> import hashlib\n" ">>> m = hashlib.sha256()\n" ">>> m.update(b\"Nobody inspects\")\n" ">>> m.update(b\" the spammish repetition\")\n" ">>> m.digest()\n" -"b'\\x03\\x1e\\xdd}Ae\\x15\\x93\\xc5\\xfe\\\\" -"\\x00o\\xa5u+7\\xfd\\xdf\\xf7\\xbcN\\x84:\\xa6\\xaf\\x0c\\x95\\x0fK\\x94\\x06'\n" +"b'\\x03\\x1e\\xdd}Ae\\x15\\x93\\xc5\\xfe\\\\\\x00o\\xa5u+7\\xfd\\xdf\\xf7\\xbcN\\x84:\\xa6\\xaf\\x0c\\x95\\x0fK\\x94\\x06'\n" ">>> m.hexdigest()\n" "'031edd7d41651593c5fe5c006fa5752b37fddff7bc4e843aa6af0c950f4b9406'" msgstr "" -#: ../../library/hashlib.rst:112 msgid "More condensed:" msgstr "" -#: ../../library/hashlib.rst:118 msgid "Constructors" msgstr "" -#: ../../library/hashlib.rst:122 -msgid "" -"Is a generic constructor that takes the string *name* of the desired " -"algorithm as its first parameter. It also exists to allow access to the " -"above listed hashes as well as any other algorithms that your OpenSSL " -"library may offer." +msgid "Is a generic constructor that takes the string *name* of the desired algorithm as its first parameter. It also exists to allow access to the above listed hashes as well as any other algorithms that your OpenSSL library may offer." msgstr "" -#: ../../library/hashlib.rst:127 msgid "Using :func:`new` with an algorithm name:" msgstr "" -#: ../../library/hashlib.rst:146 -msgid "" -"Named constructors such as these are faster than passing an algorithm name " -"to :func:`new`." +msgid "Named constructors such as these are faster than passing an algorithm name to :func:`new`." msgstr "" -#: ../../library/hashlib.rst:150 msgid "Attributes" msgstr "" -#: ../../library/hashlib.rst:152 msgid "Hashlib provides the following constant module attributes:" msgstr "" -#: ../../library/hashlib.rst:156 -msgid "" -"A set containing the names of the hash algorithms guaranteed to be supported " -"by this module on all platforms. Note that 'md5' is in this list despite " -"some upstream vendors offering an odd \"FIPS compliant\" Python build that " -"excludes it." +msgid "A set containing the names of the hash algorithms guaranteed to be supported by this module on all platforms. Note that 'md5' is in this list despite some upstream vendors offering an odd \"FIPS compliant\" Python build that excludes it." msgstr "" -#: ../../library/hashlib.rst:165 -msgid "" -"A set containing the names of the hash algorithms that are available in the " -"running Python interpreter. These names will be recognized when passed " -"to :func:`new`. :attr:`algorithms_guaranteed` will always be a subset. The " -"same algorithm may appear multiple times in this set under different names " -"(thanks to OpenSSL)." +msgid "A set containing the names of the hash algorithms that are available in the running Python interpreter. These names will be recognized when passed to :func:`new`. :attr:`algorithms_guaranteed` will always be a subset. The same algorithm may appear multiple times in this set under different names (thanks to OpenSSL)." msgstr "" -#: ../../library/hashlib.rst:174 msgid "Hash Objects" msgstr "" -#: ../../library/hashlib.rst:176 -msgid "" -"The following values are provided as constant attributes of the hash objects " -"returned by the constructors:" +msgid "The following values are provided as constant attributes of the hash objects returned by the constructors:" msgstr "" -#: ../../library/hashlib.rst:181 msgid "The size of the resulting hash in bytes." msgstr "" -#: ../../library/hashlib.rst:185 msgid "The internal block size of the hash algorithm in bytes." msgstr "" -#: ../../library/hashlib.rst:187 msgid "A hash object has the following attributes:" msgstr "" -#: ../../library/hashlib.rst:191 -msgid "" -"The canonical name of this hash, always lowercase and always suitable as a " -"parameter to :func:`new` to create another hash of this type." +msgid "The canonical name of this hash, always lowercase and always suitable as a parameter to :func:`new` to create another hash of this type." msgstr "" -#: ../../library/hashlib.rst:194 -msgid "" -"The name attribute has been present in CPython since its inception, but " -"until Python 3.4 was not formally specified, so may not exist on some " -"platforms." +msgid "The name attribute has been present in CPython since its inception, but until Python 3.4 was not formally specified, so may not exist on some platforms." msgstr "" -#: ../../library/hashlib.rst:199 msgid "A hash object has the following methods:" msgstr "" -#: ../../library/hashlib.rst:204 -msgid "" -"Update the hash object with the :term:`bytes-like object`. Repeated calls " -"are equivalent to a single call with the concatenation of all the arguments: " -"``m.update(a); m.update(b)`` is equivalent to ``m.update(a+b)``." +msgid "Update the hash object with the :term:`bytes-like object`. Repeated calls are equivalent to a single call with the concatenation of all the arguments: ``m.update(a); m.update(b)`` is equivalent to ``m.update(a+b)``." msgstr "" -#: ../../library/hashlib.rst:212 -msgid "" -"Return the digest of the data passed to the :meth:`update` method so far. " -"This is a bytes object of size :attr:`digest_size` which may contain bytes " -"in the whole range from 0 to 255." +msgid "Return the digest of the data passed to the :meth:`update` method so far. This is a bytes object of size :attr:`digest_size` which may contain bytes in the whole range from 0 to 255." msgstr "" -#: ../../library/hashlib.rst:219 -msgid "" -"Like :meth:`digest` except the digest is returned as a string object of " -"double length, containing only hexadecimal digits. This may be used to " -"exchange the value safely in email or other non-binary environments." +msgid "Like :meth:`digest` except the digest is returned as a string object of double length, containing only hexadecimal digits. This may be used to exchange the value safely in email or other non-binary environments." msgstr "" -#: ../../library/hashlib.rst:226 -msgid "" -"Return a copy (\"clone\") of the hash object. This can be used to " -"efficiently compute the digests of data sharing a common initial substring." +msgid "Return a copy (\"clone\") of the hash object. This can be used to efficiently compute the digests of data sharing a common initial substring." msgstr "" -#: ../../library/hashlib.rst:231 msgid "SHAKE variable length digests" msgstr "" -#: ../../library/hashlib.rst:236 -msgid "" -"The :func:`shake_128` and :func:`shake_256` algorithms provide variable " -"length digests with length_in_bits//2 up to 128 or 256 bits of security. As " -"such, their digest methods require a length. Maximum length is not limited " -"by the SHAKE algorithm." +msgid "The :func:`shake_128` and :func:`shake_256` algorithms provide variable length digests with length_in_bits//2 up to 128 or 256 bits of security. As such, their digest methods require a length. Maximum length is not limited by the SHAKE algorithm." msgstr "" -#: ../../library/hashlib.rst:243 -msgid "" -"Return the digest of the data passed to the :meth:`~hash.update` method so " -"far. This is a bytes object of size *length* which may contain bytes in the " -"whole range from 0 to 255." +msgid "Return the digest of the data passed to the :meth:`~hash.update` method so far. This is a bytes object of size *length* which may contain bytes in the whole range from 0 to 255." msgstr "" -#: ../../library/hashlib.rst:250 -msgid "" -"Like :meth:`digest` except the digest is returned as a string object of " -"double length, containing only hexadecimal digits. This may be used to " -"exchange the value in email or other non-binary environments." +msgid "Like :meth:`digest` except the digest is returned as a string object of double length, containing only hexadecimal digits. This may be used to exchange the value in email or other non-binary environments." msgstr "" -#: ../../library/hashlib.rst:254 msgid "Example use:" msgstr "" -#: ../../library/hashlib.rst:261 msgid "File hashing" msgstr "" -#: ../../library/hashlib.rst:263 -msgid "" -"The hashlib module provides a helper function for efficient hashing of a " -"file or file-like object." +msgid "The hashlib module provides a helper function for efficient hashing of a file or file-like object." msgstr "" -#: ../../library/hashlib.rst:268 -msgid "" -"Return a digest object that has been updated with contents of file object." +msgid "Return a digest object that has been updated with contents of file object." msgstr "" -#: ../../library/hashlib.rst:270 -msgid "" -"*fileobj* must be a file-like object opened for reading in binary mode. It " -"accepts file objects from builtin :func:`open`, :class:`~io.BytesIO` " -"instances, SocketIO objects from :meth:`socket.socket.makefile`, and " -"similar. *fileobj* must be opened in blocking mode, otherwise " -"a :exc:`BlockingIOError` may be raised." +msgid "*fileobj* must be a file-like object opened for reading in binary mode. It accepts file objects from builtin :func:`open`, :class:`~io.BytesIO` instances, SocketIO objects from :meth:`socket.socket.makefile`, and similar. *fileobj* must be opened in blocking mode, otherwise a :exc:`BlockingIOError` may be raised." msgstr "" -#: ../../library/hashlib.rst:276 -msgid "" -"The function may bypass Python's I/O and use the file descriptor " -"from :meth:`~io.IOBase.fileno` directly. *fileobj* must be assumed to be in " -"an unknown state after this function returns or raises. It is up to the " -"caller to close *fileobj*." +msgid "The function may bypass Python's I/O and use the file descriptor from :meth:`~io.IOBase.fileno` directly. *fileobj* must be assumed to be in an unknown state after this function returns or raises. It is up to the caller to close *fileobj*." msgstr "" -#: ../../library/hashlib.rst:281 -msgid "" -"*digest* must either be a hash algorithm name as a *str*, a hash " -"constructor, or a callable that returns a hash object." +msgid "*digest* must either be a hash algorithm name as a *str*, a hash constructor, or a callable that returns a hash object." msgstr "" -#: ../../library/hashlib.rst:284 msgid "Example:" msgstr "" -#: ../../library/hashlib.rst:305 -msgid "" -"Now raises a :exc:`BlockingIOError` if the file is opened in non-blocking " -"mode. Previously, spurious null bytes were added to the digest." +msgid "Now raises a :exc:`BlockingIOError` if the file is opened in non-blocking mode. Previously, spurious null bytes were added to the digest." msgstr "" -#: ../../library/hashlib.rst:311 msgid "Key derivation" msgstr "" -#: ../../library/hashlib.rst:313 -msgid "" -"Key derivation and key stretching algorithms are designed for secure " -"password hashing. Naive algorithms such as ``sha1(password)`` are not " -"resistant against brute-force attacks. A good password hashing function must " -"be tunable, slow, and include a `salt `_." +msgid "Key derivation and key stretching algorithms are designed for secure password hashing. Naive algorithms such as ``sha1(password)`` are not resistant against brute-force attacks. A good password hashing function must be tunable, slow, and include a `salt `_." msgstr "" -#: ../../library/hashlib.rst:321 -msgid "" -"The function provides PKCS#5 password-based key derivation function 2. It " -"uses HMAC as pseudorandom function." +msgid "The function provides PKCS#5 password-based key derivation function 2. It uses HMAC as pseudorandom function." msgstr "" -#: ../../library/hashlib.rst:324 -msgid "" -"The string *hash_name* is the desired name of the hash digest algorithm for " -"HMAC, e.g. 'sha1' or 'sha256'. *password* and *salt* are interpreted as " -"buffers of bytes. Applications and libraries should limit *password* to a " -"sensible length (e.g. 1024). *salt* should be about 16 or more bytes from a " -"proper source, e.g. :func:`os.urandom`." +msgid "The string *hash_name* is the desired name of the hash digest algorithm for HMAC, e.g. 'sha1' or 'sha256'. *password* and *salt* are interpreted as buffers of bytes. Applications and libraries should limit *password* to a sensible length (e.g. 1024). *salt* should be about 16 or more bytes from a proper source, e.g. :func:`os.urandom`." msgstr "" -#: ../../library/hashlib.rst:330 -msgid "" -"The number of *iterations* should be chosen based on the hash algorithm and " -"computing power. As of 2022, hundreds of thousands of iterations of SHA-256 " -"are suggested. For rationale as to why and how to choose what is best for " -"your application, read *Appendix A.2.2* of NIST-SP-800-132_. The answers on " -"the `stackexchange pbkdf2 iterations question`_ explain in detail." +msgid "The number of *iterations* should be chosen based on the hash algorithm and computing power. As of 2022, hundreds of thousands of iterations of SHA-256 are suggested. For rationale as to why and how to choose what is best for your application, read *Appendix A.2.2* of NIST-SP-800-132_. The answers on the `stackexchange pbkdf2 iterations question`_ explain in detail." msgstr "" -#: ../../library/hashlib.rst:336 -msgid "" -"*dklen* is the length of the derived key in bytes. If *dklen* is ``None`` " -"then the digest size of the hash algorithm *hash_name* is used, e.g. 64 for " -"SHA-512." +msgid "*dklen* is the length of the derived key in bytes. If *dklen* is ``None`` then the digest size of the hash algorithm *hash_name* is used, e.g. 64 for SHA-512." msgstr "" -#: ../../library/hashlib.rst:345 msgid "Function only available when Python is compiled with OpenSSL." msgstr "" -#: ../../library/hashlib.rst:349 -msgid "" -"Function now only available when Python is built with OpenSSL. The slow pure " -"Python implementation has been removed." +msgid "Function now only available when Python is built with OpenSSL. The slow pure Python implementation has been removed." msgstr "" -#: ../../library/hashlib.rst:355 -msgid "" -"The function provides scrypt password-based key derivation function as " -"defined in :rfc:`7914`." +msgid "The function provides scrypt password-based key derivation function as defined in :rfc:`7914`." msgstr "" -#: ../../library/hashlib.rst:358 -msgid "" -"*password* and *salt* must be :term:`bytes-like objects `. Applications and libraries should limit *password* to a sensible " -"length (e.g. 1024). *salt* should be about 16 or more bytes from a proper " -"source, e.g. :func:`os.urandom`." +msgid "*password* and *salt* must be :term:`bytes-like objects `. Applications and libraries should limit *password* to a sensible length (e.g. 1024). *salt* should be about 16 or more bytes from a proper source, e.g. :func:`os.urandom`." msgstr "" -#: ../../library/hashlib.rst:363 -msgid "" -"*n* is the CPU/Memory cost factor, *r* the block size, *p* parallelization " -"factor and *maxmem* limits memory (OpenSSL 1.1.0 defaults to 32 MiB). " -"*dklen* is the length of the derived key in bytes." +msgid "*n* is the CPU/Memory cost factor, *r* the block size, *p* parallelization factor and *maxmem* limits memory (OpenSSL 1.1.0 defaults to 32 MiB). *dklen* is the length of the derived key in bytes." msgstr "" -#: ../../library/hashlib.rst:373 msgid "BLAKE2" msgstr "" -#: ../../library/hashlib.rst:380 -msgid "" -"BLAKE2_ is a cryptographic hash function defined in :rfc:`7693` that comes " -"in two flavors:" +msgid "BLAKE2_ is a cryptographic hash function defined in :rfc:`7693` that comes in two flavors:" msgstr "" -#: ../../library/hashlib.rst:383 -msgid "" -"**BLAKE2b**, optimized for 64-bit platforms and produces digests of any size " -"between 1 and 64 bytes," +msgid "**BLAKE2b**, optimized for 64-bit platforms and produces digests of any size between 1 and 64 bytes," msgstr "" -#: ../../library/hashlib.rst:386 -msgid "" -"**BLAKE2s**, optimized for 8- to 32-bit platforms and produces digests of " -"any size between 1 and 32 bytes." +msgid "**BLAKE2s**, optimized for 8- to 32-bit platforms and produces digests of any size between 1 and 32 bytes." msgstr "" -#: ../../library/hashlib.rst:389 -msgid "" -"BLAKE2 supports **keyed mode** (a faster and simpler replacement for HMAC_), " -"**salted hashing**, **personalization**, and **tree hashing**." +msgid "BLAKE2 supports **keyed mode** (a faster and simpler replacement for HMAC_), **salted hashing**, **personalization**, and **tree hashing**." msgstr "" -#: ../../library/hashlib.rst:392 -msgid "" -"Hash objects from this module follow the API of standard library's :mod:`!" -"hashlib` objects." +msgid "Hash objects from this module follow the API of standard library's :mod:`!hashlib` objects." msgstr "" -#: ../../library/hashlib.rst:397 msgid "Creating hash objects" msgstr "" -#: ../../library/hashlib.rst:399 msgid "New hash objects are created by calling constructor functions:" msgstr "" -#: ../../library/hashlib.rst:413 -msgid "" -"These functions return the corresponding hash objects for calculating " -"BLAKE2b or BLAKE2s. They optionally take these general parameters:" +msgid "These functions return the corresponding hash objects for calculating BLAKE2b or BLAKE2s. They optionally take these general parameters:" msgstr "" -#: ../../library/hashlib.rst:416 -msgid "" -"*data*: initial chunk of data to hash, which must be :term:`bytes-like " -"object`. It can be passed only as positional argument." +msgid "*data*: initial chunk of data to hash, which must be :term:`bytes-like object`. It can be passed only as positional argument." msgstr "" -#: ../../library/hashlib.rst:419 msgid "*digest_size*: size of output digest in bytes." msgstr "" -#: ../../library/hashlib.rst:421 -msgid "" -"*key*: key for keyed hashing (up to 64 bytes for BLAKE2b, up to 32 bytes for " -"BLAKE2s)." +msgid "*key*: key for keyed hashing (up to 64 bytes for BLAKE2b, up to 32 bytes for BLAKE2s)." msgstr "" -#: ../../library/hashlib.rst:424 -msgid "" -"*salt*: salt for randomized hashing (up to 16 bytes for BLAKE2b, up to 8 " -"bytes for BLAKE2s)." +msgid "*salt*: salt for randomized hashing (up to 16 bytes for BLAKE2b, up to 8 bytes for BLAKE2s)." msgstr "" -#: ../../library/hashlib.rst:427 -msgid "" -"*person*: personalization string (up to 16 bytes for BLAKE2b, up to 8 bytes " -"for BLAKE2s)." +msgid "*person*: personalization string (up to 16 bytes for BLAKE2b, up to 8 bytes for BLAKE2s)." msgstr "" -#: ../../library/hashlib.rst:430 msgid "The following table shows limits for general parameters (in bytes):" msgstr "" -#: ../../library/hashlib.rst:433 msgid "Hash" msgstr "" -#: ../../library/hashlib.rst:433 msgid "digest_size" msgstr "" -#: ../../library/hashlib.rst:433 msgid "len(key)" msgstr "" -#: ../../library/hashlib.rst:433 msgid "len(salt)" msgstr "" -#: ../../library/hashlib.rst:433 msgid "len(person)" msgstr "" -#: ../../library/hashlib.rst:435 msgid "BLAKE2b" msgstr "" -#: ../../library/hashlib.rst:435 msgid "64" msgstr "" -#: ../../library/hashlib.rst:435 msgid "16" msgstr "" -#: ../../library/hashlib.rst:436 msgid "BLAKE2s" msgstr "" -#: ../../library/hashlib.rst:436 msgid "32" msgstr "" -#: ../../library/hashlib.rst:436 msgid "8" msgstr "" -#: ../../library/hashlib.rst:441 -msgid "" -"BLAKE2 specification defines constant lengths for salt and personalization " -"parameters, however, for convenience, this implementation accepts byte " -"strings of any size up to the specified length. If the length of the " -"parameter is less than specified, it is padded with zeros, thus, for " -"example, ``b'salt'`` and ``b'salt\\x00'`` is the same value. (This is not " -"the case for *key*.)" +msgid "BLAKE2 specification defines constant lengths for salt and personalization parameters, however, for convenience, this implementation accepts byte strings of any size up to the specified length. If the length of the parameter is less than specified, it is padded with zeros, thus, for example, ``b'salt'`` and ``b'salt\\x00'`` is the same value. (This is not the case for *key*.)" msgstr "" -#: ../../library/hashlib.rst:448 msgid "These sizes are available as module `constants`_ described below." msgstr "" -#: ../../library/hashlib.rst:450 -msgid "" -"Constructor functions also accept the following tree hashing parameters:" +msgid "Constructor functions also accept the following tree hashing parameters:" msgstr "" -#: ../../library/hashlib.rst:452 msgid "*fanout*: fanout (0 to 255, 0 if unlimited, 1 in sequential mode)." msgstr "" -#: ../../library/hashlib.rst:454 -msgid "" -"*depth*: maximal depth of tree (1 to 255, 255 if unlimited, 1 in sequential " -"mode)." +msgid "*depth*: maximal depth of tree (1 to 255, 255 if unlimited, 1 in sequential mode)." msgstr "" -#: ../../library/hashlib.rst:457 -msgid "" -"*leaf_size*: maximal byte length of leaf (0 to ``2**32-1``, 0 if unlimited " -"or in sequential mode)." +msgid "*leaf_size*: maximal byte length of leaf (0 to ``2**32-1``, 0 if unlimited or in sequential mode)." msgstr "" -#: ../../library/hashlib.rst:460 -msgid "" -"*node_offset*: node offset (0 to ``2**64-1`` for BLAKE2b, 0 to ``2**48-1`` " -"for BLAKE2s, 0 for the first, leftmost, leaf, or in sequential mode)." +msgid "*node_offset*: node offset (0 to ``2**64-1`` for BLAKE2b, 0 to ``2**48-1`` for BLAKE2s, 0 for the first, leftmost, leaf, or in sequential mode)." msgstr "" -#: ../../library/hashlib.rst:463 -msgid "" -"*node_depth*: node depth (0 to 255, 0 for leaves, or in sequential mode)." +msgid "*node_depth*: node depth (0 to 255, 0 for leaves, or in sequential mode)." msgstr "" -#: ../../library/hashlib.rst:465 -msgid "" -"*inner_size*: inner digest size (0 to 64 for BLAKE2b, 0 to 32 for BLAKE2s, 0 " -"in sequential mode)." +msgid "*inner_size*: inner digest size (0 to 64 for BLAKE2b, 0 to 32 for BLAKE2s, 0 in sequential mode)." msgstr "" -#: ../../library/hashlib.rst:468 -msgid "" -"*last_node*: boolean indicating whether the processed node is the last one " -"(``False`` for sequential mode)." +msgid "*last_node*: boolean indicating whether the processed node is the last one (``False`` for sequential mode)." msgstr "" -#: ../../library/hashlib.rst:471 msgid "Explanation of tree mode parameters." msgstr "" -#: ../../library/hashlib.rst:475 -msgid "" -"See section 2.10 in `BLAKE2 specification `_ for comprehensive review of tree hashing." +msgid "See section 2.10 in `BLAKE2 specification `_ for comprehensive review of tree hashing." msgstr "" -#: ../../library/hashlib.rst:481 msgid "Constants" msgstr "" -#: ../../library/hashlib.rst:486 msgid "Salt length (maximum length accepted by constructors)." msgstr "" -#: ../../library/hashlib.rst:492 -msgid "" -"Personalization string length (maximum length accepted by constructors)." +msgid "Personalization string length (maximum length accepted by constructors)." msgstr "" -#: ../../library/hashlib.rst:498 msgid "Maximum key size." msgstr "" -#: ../../library/hashlib.rst:504 msgid "Maximum digest size that the hash function can output." msgstr "" -#: ../../library/hashlib.rst:508 msgid "Examples" msgstr "" -#: ../../library/hashlib.rst:511 msgid "Simple hashing" msgstr "" -#: ../../library/hashlib.rst:513 -msgid "" -"To calculate hash of some data, you should first construct a hash object by " -"calling the appropriate constructor function (:func:`blake2b` " -"or :func:`blake2s`), then update it with the data by " -"calling :meth:`~hash.update` on the object, and, finally, get the digest out " -"of the object by calling :meth:`~hash.digest` (or :meth:`~hash.hexdigest` " -"for hex-encoded string)." +msgid "To calculate hash of some data, you should first construct a hash object by calling the appropriate constructor function (:func:`blake2b` or :func:`blake2s`), then update it with the data by calling :meth:`~hash.update` on the object, and, finally, get the digest out of the object by calling :meth:`~hash.digest` (or :meth:`~hash.hexdigest` for hex-encoded string)." msgstr "" -#: ../../library/hashlib.rst:526 -msgid "" -"As a shortcut, you can pass the first chunk of data to update directly to " -"the constructor as the positional argument:" +msgid "As a shortcut, you can pass the first chunk of data to update directly to the constructor as the positional argument:" msgstr "" -#: ../../library/hashlib.rst:533 -msgid "" -"You can call :meth:`hash.update` as many times as you need to iteratively " -"update the hash:" +msgid "You can call :meth:`hash.update` as many times as you need to iteratively update the hash:" msgstr "" -#: ../../library/hashlib.rst:547 msgid "Using different digest sizes" msgstr "" -#: ../../library/hashlib.rst:549 -msgid "" -"BLAKE2 has configurable size of digests up to 64 bytes for BLAKE2b and up to " -"32 bytes for BLAKE2s. For example, to replace SHA-1 with BLAKE2b without " -"changing the size of output, we can tell BLAKE2b to produce 20-byte digests:" +msgid "BLAKE2 has configurable size of digests up to 64 bytes for BLAKE2b and up to 32 bytes for BLAKE2s. For example, to replace SHA-1 with BLAKE2b without changing the size of output, we can tell BLAKE2b to produce 20-byte digests:" msgstr "" -#: ../../library/hashlib.rst:563 -msgid "" -"Hash objects with different digest sizes have completely different outputs " -"(shorter hashes are *not* prefixes of longer hashes); BLAKE2b and BLAKE2s " -"produce different outputs even if the output length is the same:" +msgid "Hash objects with different digest sizes have completely different outputs (shorter hashes are *not* prefixes of longer hashes); BLAKE2b and BLAKE2s produce different outputs even if the output length is the same:" msgstr "" -#: ../../library/hashlib.rst:579 msgid "Keyed hashing" msgstr "" -#: ../../library/hashlib.rst:581 -msgid "" -"Keyed hashing can be used for authentication as a faster and simpler " -"replacement for `Hash-based message authentication code `_ (HMAC). BLAKE2 can be securely used in prefix-" -"MAC mode thanks to the indifferentiability property inherited from BLAKE." +msgid "Keyed hashing can be used for authentication as a faster and simpler replacement for `Hash-based message authentication code `_ (HMAC). BLAKE2 can be securely used in prefix-MAC mode thanks to the indifferentiability property inherited from BLAKE." msgstr "" -#: ../../library/hashlib.rst:587 -msgid "" -"This example shows how to get a (hex-encoded) 128-bit authentication code " -"for message ``b'message data'`` with key ``b'pseudorandom key'``::" +msgid "This example shows how to get a (hex-encoded) 128-bit authentication code for message ``b'message data'`` with key ``b'pseudorandom key'``::" msgstr "" -#: ../../library/hashlib.rst:590 msgid "" ">>> from hashlib import blake2b\n" ">>> h = blake2b(key=b'pseudorandom key', digest_size=16)\n" @@ -705,13 +390,9 @@ msgid "" "'3d363ff7401e02026f4a4687d4863ced'" msgstr "" -#: ../../library/hashlib.rst:597 -msgid "" -"As a practical example, a web application can symmetrically sign cookies " -"sent to users and later verify them to make sure they weren't tampered with::" +msgid "As a practical example, a web application can symmetrically sign cookies sent to users and later verify them to make sure they weren't tampered with::" msgstr "" -#: ../../library/hashlib.rst:600 msgid "" ">>> from hashlib import blake2b\n" ">>> from hmac import compare_digest\n" @@ -740,13 +421,9 @@ msgid "" "False" msgstr "" -#: ../../library/hashlib.rst:626 -msgid "" -"Even though there's a native keyed hashing mode, BLAKE2 can, of course, be " -"used in HMAC construction with :mod:`hmac` module::" +msgid "Even though there's a native keyed hashing mode, BLAKE2 can, of course, be used in HMAC construction with :mod:`hmac` module::" msgstr "" -#: ../../library/hashlib.rst:629 msgid "" ">>> import hmac, hashlib\n" ">>> m = hmac.new(b'secret key', digestmod=hashlib.blake2s)\n" @@ -755,90 +432,39 @@ msgid "" "'e3c8102868d28b5ff85fc35dda07329970d1a01e273c37481326fe0c861c8142'" msgstr "" -#: ../../library/hashlib.rst:637 msgid "Randomized hashing" msgstr "" -#: ../../library/hashlib.rst:639 -msgid "" -"By setting *salt* parameter users can introduce randomization to the hash " -"function. Randomized hashing is useful for protecting against collision " -"attacks on the hash function used in digital signatures." +msgid "By setting *salt* parameter users can introduce randomization to the hash function. Randomized hashing is useful for protecting against collision attacks on the hash function used in digital signatures." msgstr "" -#: ../../library/hashlib.rst:643 -msgid "" -"Randomized hashing is designed for situations where one party, the message " -"preparer, generates all or part of a message to be signed by a second party, " -"the message signer. If the message preparer is able to find cryptographic " -"hash function collisions (i.e., two messages producing the same hash value), " -"then they might prepare meaningful versions of the message that would " -"produce the same hash value and digital signature, but with different " -"results (e.g., transferring $1,000,000 to an account, rather than $10). " -"Cryptographic hash functions have been designed with collision resistance as " -"a major goal, but the current concentration on attacking cryptographic hash " -"functions may result in a given cryptographic hash function providing less " -"collision resistance than expected. Randomized hashing offers the signer " -"additional protection by reducing the likelihood that a preparer can " -"generate two or more messages that ultimately yield the same hash value " -"during the digital signature generation process --- even if it is practical " -"to find collisions for the hash function. However, the use of randomized " -"hashing may reduce the amount of security provided by a digital signature " -"when all portions of the message are prepared by the signer." -msgstr "" - -#: ../../library/hashlib.rst:662 -msgid "" -"(`NIST SP-800-106 \"Randomized Hashing for Digital Signatures\" `_)" +msgid "Randomized hashing is designed for situations where one party, the message preparer, generates all or part of a message to be signed by a second party, the message signer. If the message preparer is able to find cryptographic hash function collisions (i.e., two messages producing the same hash value), then they might prepare meaningful versions of the message that would produce the same hash value and digital signature, but with different results (e.g., transferring $1,000,000 to an account, rather than $10). Cryptographic hash functions have been designed with collision resistance as a major goal, but the current concentration on attacking cryptographic hash functions may result in a given cryptographic hash function providing less collision resistance than expected. Randomized hashing offers the signer additional protection by reducing the likelihood that a preparer can generate two or more messages that ultimately yield the same hash value during the digital signature generation process --- even if it is practical to find collisions for the hash function. However, the use of randomized hashing may reduce the amount of security provided by a digital signature when all portions of the message are prepared by the signer." msgstr "" -#: ../../library/hashlib.rst:665 -msgid "" -"In BLAKE2 the salt is processed as a one-time input to the hash function " -"during initialization, rather than as an input to each compression function." +msgid "(`NIST SP-800-106 \"Randomized Hashing for Digital Signatures\" `_)" msgstr "" -#: ../../library/hashlib.rst:670 -msgid "" -"*Salted hashing* (or just hashing) with BLAKE2 or any other general-purpose " -"cryptographic hash function, such as SHA-256, is not suitable for hashing " -"passwords. See `BLAKE2 FAQ `_ for more " -"information." +msgid "In BLAKE2 the salt is processed as a one-time input to the hash function during initialization, rather than as an input to each compression function." +msgstr "" + +msgid "*Salted hashing* (or just hashing) with BLAKE2 or any other general-purpose cryptographic hash function, such as SHA-256, is not suitable for hashing passwords. See `BLAKE2 FAQ `_ for more information." msgstr "" -#: ../../library/hashlib.rst:693 msgid "Personalization" msgstr "" -#: ../../library/hashlib.rst:695 -msgid "" -"Sometimes it is useful to force hash function to produce different digests " -"for the same input for different purposes. Quoting the authors of the Skein " -"hash function:" +msgid "Sometimes it is useful to force hash function to produce different digests for the same input for different purposes. Quoting the authors of the Skein hash function:" msgstr "" -#: ../../library/hashlib.rst:699 -msgid "" -"We recommend that all application designers seriously consider doing this; " -"we have seen many protocols where a hash that is computed in one part of the " -"protocol can be used in an entirely different part because two hash " -"computations were done on similar or related data, and the attacker can " -"force the application to make the hash inputs the same. Personalizing each " -"hash function used in the protocol summarily stops this type of attack." +msgid "We recommend that all application designers seriously consider doing this; we have seen many protocols where a hash that is computed in one part of the protocol can be used in an entirely different part because two hash computations were done on similar or related data, and the attacker can force the application to make the hash inputs the same. Personalizing each hash function used in the protocol summarily stops this type of attack." msgstr "" -#: ../../library/hashlib.rst:706 -msgid "" -"(`The Skein Hash Function Family `_, p. 21)" +msgid "(`The Skein Hash Function Family `_, p. 21)" msgstr "" -#: ../../library/hashlib.rst:710 msgid "BLAKE2 can be personalized by passing bytes to the *person* argument::" msgstr "" -#: ../../library/hashlib.rst:712 msgid "" ">>> from hashlib import blake2b\n" ">>> FILES_HASH_PERSON = b'MyApp Files Hash'\n" @@ -853,34 +479,24 @@ msgid "" "'cf68fb5761b9c44e7878bfb2c4c9aea52264a80b75005e65619778de59f383a3'" msgstr "" -#: ../../library/hashlib.rst:724 -msgid "" -"Personalization together with the keyed mode can also be used to derive " -"different keys from a single one." +msgid "Personalization together with the keyed mode can also be used to derive different keys from a single one." msgstr "" -#: ../../library/hashlib.rst:738 msgid "Tree mode" msgstr "" -#: ../../library/hashlib.rst:740 msgid "Here's an example of hashing a minimal tree with two leaf nodes::" msgstr "" -#: ../../library/hashlib.rst:742 msgid "" " 10\n" " / \\\n" "00 01" msgstr "" -#: ../../library/hashlib.rst:746 -msgid "" -"This example uses 64-byte internal digests, and returns the 32-byte final " -"digest::" +msgid "This example uses 64-byte internal digests, and returns the 32-byte final digest::" msgstr "" -#: ../../library/hashlib.rst:749 msgid "" ">>> from hashlib import blake2b\n" ">>>\n" @@ -909,151 +525,95 @@ msgid "" "'3ad2a9b37c6070e374c7a8c508fe20ca86b6ed54e286e93a0318e95e881db5aa'" msgstr "" -#: ../../library/hashlib.rst:776 msgid "Credits" msgstr "" -#: ../../library/hashlib.rst:778 -msgid "" -"BLAKE2_ was designed by *Jean-Philippe Aumasson*, *Samuel Neves*, *Zooko " -"Wilcox-O'Hearn*, and *Christian Winnerlein* based on SHA-3_ finalist BLAKE_ " -"created by *Jean-Philippe Aumasson*, *Luca Henzen*, *Willi Meier*, and " -"*Raphael C.-W. Phan*." +msgid "BLAKE2_ was designed by *Jean-Philippe Aumasson*, *Samuel Neves*, *Zooko Wilcox-O'Hearn*, and *Christian Winnerlein* based on SHA-3_ finalist BLAKE_ created by *Jean-Philippe Aumasson*, *Luca Henzen*, *Willi Meier*, and *Raphael C.-W. Phan*." msgstr "" -#: ../../library/hashlib.rst:783 -msgid "" -"It uses core algorithm from ChaCha_ cipher designed by *Daniel J. " -"Bernstein*." +msgid "It uses core algorithm from ChaCha_ cipher designed by *Daniel J. Bernstein*." msgstr "" -#: ../../library/hashlib.rst:785 -msgid "" -"The stdlib implementation is based on pyblake2_ module. It was written by " -"*Dmitry Chestnykh* based on C implementation written by *Samuel Neves*. The " -"documentation was copied from pyblake2_ and written by *Dmitry Chestnykh*." +msgid "The stdlib implementation is based on pyblake2_ module. It was written by *Dmitry Chestnykh* based on C implementation written by *Samuel Neves*. The documentation was copied from pyblake2_ and written by *Dmitry Chestnykh*." msgstr "" -#: ../../library/hashlib.rst:789 msgid "The C code was partly rewritten for Python by *Christian Heimes*." msgstr "" -#: ../../library/hashlib.rst:791 -msgid "" -"The following public domain dedication applies for both C hash function " -"implementation, extension code, and this documentation:" +msgid "The following public domain dedication applies for both C hash function implementation, extension code, and this documentation:" msgstr "" -#: ../../library/hashlib.rst:794 -msgid "" -"To the extent possible under law, the author(s) have dedicated all copyright " -"and related and neighboring rights to this software to the public domain " -"worldwide. This software is distributed without any warranty." +msgid "To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty." msgstr "" -#: ../../library/hashlib.rst:798 -msgid "" -"You should have received a copy of the CC0 Public Domain Dedication along " -"with this software. If not, see https://creativecommons.org/publicdomain/" -"zero/1.0/." +msgid "You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see https://creativecommons.org/publicdomain/zero/1.0/." msgstr "" -#: ../../library/hashlib.rst:802 -msgid "" -"The following people have helped with development or contributed their " -"changes to the project and the public domain according to the Creative " -"Commons Public Domain Dedication 1.0 Universal:" +msgid "The following people have helped with development or contributed their changes to the project and the public domain according to the Creative Commons Public Domain Dedication 1.0 Universal:" msgstr "" -#: ../../library/hashlib.rst:806 msgid "*Alexandr Sokolovskiy*" msgstr "" -#: ../../library/hashlib.rst:827 msgid "Module :mod:`hmac`" msgstr "" -#: ../../library/hashlib.rst:828 msgid "A module to generate message authentication codes using hashes." msgstr "" -#: ../../library/hashlib.rst:830 msgid "Module :mod:`base64`" msgstr "" -#: ../../library/hashlib.rst:831 msgid "Another way to encode binary hashes for non-binary environments." msgstr "" -#: ../../library/hashlib.rst:833 msgid "https://nvlpubs.nist.gov/nistpubs/fips/nist.fips.180-4.pdf" msgstr "" -#: ../../library/hashlib.rst:834 msgid "The FIPS 180-4 publication on Secure Hash Algorithms." msgstr "" -#: ../../library/hashlib.rst:836 msgid "https://csrc.nist.gov/pubs/fips/202/final" msgstr "" -#: ../../library/hashlib.rst:837 msgid "The FIPS 202 publication on the SHA-3 Standard." msgstr "" -#: ../../library/hashlib.rst:839 msgid "https://www.blake2.net/" msgstr "" -#: ../../library/hashlib.rst:840 msgid "Official BLAKE2 website." msgstr "" -#: ../../library/hashlib.rst:842 msgid "https://en.wikipedia.org/wiki/Cryptographic_hash_function" msgstr "" -#: ../../library/hashlib.rst:843 -msgid "" -"Wikipedia article with information on which algorithms have known issues and " -"what that means regarding their use." +msgid "Wikipedia article with information on which algorithms have known issues and what that means regarding their use." msgstr "" -#: ../../library/hashlib.rst:846 msgid "https://www.ietf.org/rfc/rfc8018.txt" msgstr "" -#: ../../library/hashlib.rst:847 msgid "PKCS #5: Password-Based Cryptography Specification Version 2.1" msgstr "" -#: ../../library/hashlib.rst:849 -msgid "" -"https://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-132.pdf" +msgid "https://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-132.pdf" msgstr "" -#: ../../library/hashlib.rst:850 msgid "NIST Recommendation for Password-Based Key Derivation." msgstr "" -#: ../../library/hashlib.rst:12 msgid "message digest, MD5" msgstr "" -#: ../../library/hashlib.rst:12 -msgid "" -"secure hash algorithm, SHA1, SHA2, SHA224, SHA256, SHA384, SHA512, SHA3, " -"Shake, Blake2" +msgid "secure hash algorithm, SHA1, SHA2, SHA224, SHA256, SHA384, SHA512, SHA3, Shake, Blake2" msgstr "" -#: ../../library/hashlib.rst:53 msgid "OpenSSL" msgstr "" -#: ../../library/hashlib.rst:53 msgid "(use in module hashlib)" msgstr "" -#: ../../library/hashlib.rst:377 msgid "blake2b, blake2s" msgstr "" diff --git a/library/heapq.po b/library/heapq.po index 2d015d43..eaadbeb8 100644 --- a/library/heapq.po +++ b/library/heapq.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:07+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,256 +23,120 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/heapq.rst:2 msgid ":mod:`!heapq` --- Heap queue algorithm" msgstr "" -#: ../../library/heapq.rst:12 msgid "**Source code:** :source:`Lib/heapq.py`" msgstr "" -#: ../../library/heapq.rst:16 -msgid "" -"This module provides an implementation of the heap queue algorithm, also " -"known as the priority queue algorithm." +msgid "This module provides an implementation of the heap queue algorithm, also known as the priority queue algorithm." msgstr "" -#: ../../library/heapq.rst:19 -msgid "" -"Min-heaps are binary trees for which every parent node has a value less than " -"or equal to any of its children. We refer to this condition as the heap " -"invariant." +msgid "Min-heaps are binary trees for which every parent node has a value less than or equal to any of its children. We refer to this condition as the heap invariant." msgstr "" -#: ../../library/heapq.rst:23 -msgid "" -"For min-heaps, this implementation uses lists for which ``heap[k] <= " -"heap[2*k+1]`` and ``heap[k] <= heap[2*k+2]`` for all *k* for which the " -"compared elements exist. Elements are counted from zero. The interesting " -"property of a min-heap is that its smallest element is always the root, " -"``heap[0]``." +msgid "For min-heaps, this implementation uses lists for which ``heap[k] <= heap[2*k+1]`` and ``heap[k] <= heap[2*k+2]`` for all *k* for which the compared elements exist. Elements are counted from zero. The interesting property of a min-heap is that its smallest element is always the root, ``heap[0]``." msgstr "" -#: ../../library/heapq.rst:29 -msgid "" -"Max-heaps satisfy the reverse invariant: every parent node has a value " -"*greater* than any of its children. These are implemented as lists for " -"which ``maxheap[2*k+1] <= maxheap[k]`` and ``maxheap[2*k+2] <= maxheap[k]`` " -"for all *k* for which the compared elements exist. The root, ``maxheap[0]``, " -"contains the *largest* element; ``heap.sort(reverse=True)`` maintains the " -"max-heap invariant." +msgid "Max-heaps satisfy the reverse invariant: every parent node has a value *greater* than any of its children. These are implemented as lists for which ``maxheap[2*k+1] <= maxheap[k]`` and ``maxheap[2*k+2] <= maxheap[k]`` for all *k* for which the compared elements exist. The root, ``maxheap[0]``, contains the *largest* element; ``heap.sort(reverse=True)`` maintains the max-heap invariant." msgstr "" -#: ../../library/heapq.rst:36 -msgid "" -"The :mod:`!heapq` API differs from textbook heap algorithms in two aspects: " -"(a) We use zero-based indexing. This makes the relationship between the " -"index for a node and the indexes for its children slightly less obvious, but " -"is more suitable since Python uses zero-based indexing. (b) Textbooks often " -"focus on max-heaps, due to their suitability for in-place sorting. Our " -"implementation favors min-heaps as they better correspond to " -"Python :class:`lists `." +msgid "The :mod:`!heapq` API differs from textbook heap algorithms in two aspects: (a) We use zero-based indexing. This makes the relationship between the index for a node and the indexes for its children slightly less obvious, but is more suitable since Python uses zero-based indexing. (b) Textbooks often focus on max-heaps, due to their suitability for in-place sorting. Our implementation favors min-heaps as they better correspond to Python :class:`lists `." msgstr "" -#: ../../library/heapq.rst:43 -msgid "" -"These two aspects make it possible to view the heap as a regular Python list " -"without surprises: ``heap[0]`` is the smallest item, and ``heap.sort()`` " -"maintains the heap invariant!" +msgid "These two aspects make it possible to view the heap as a regular Python list without surprises: ``heap[0]`` is the smallest item, and ``heap.sort()`` maintains the heap invariant!" msgstr "" -#: ../../library/heapq.rst:47 -msgid "" -"Like :meth:`list.sort`, this implementation uses only the ``<`` operator for " -"comparisons, for both min-heaps and max-heaps." +msgid "Like :meth:`list.sort`, this implementation uses only the ``<`` operator for comparisons, for both min-heaps and max-heaps." msgstr "" -#: ../../library/heapq.rst:50 -msgid "" -"In the API below, and in this documentation, the unqualified term *heap* " -"generally refers to a min-heap. The API for max-heaps is named using a " -"``_max`` suffix." +msgid "In the API below, and in this documentation, the unqualified term *heap* generally refers to a min-heap. The API for max-heaps is named using a ``_max`` suffix." msgstr "" -#: ../../library/heapq.rst:54 -msgid "" -"To create a heap, use a list initialized as ``[]``, or transform an existing " -"list into a min-heap or max-heap using the :func:`heapify` " -"or :func:`heapify_max` functions, respectively." +msgid "To create a heap, use a list initialized as ``[]``, or transform an existing list into a min-heap or max-heap using the :func:`heapify` or :func:`heapify_max` functions, respectively." msgstr "" -#: ../../library/heapq.rst:58 msgid "The following functions are provided for min-heaps:" msgstr "" -#: ../../library/heapq.rst:63 msgid "Transform list *x* into a min-heap, in-place, in linear time." msgstr "" -#: ../../library/heapq.rst:68 -msgid "" -"Push the value *item* onto the *heap*, maintaining the min-heap invariant." +msgid "Push the value *item* onto the *heap*, maintaining the min-heap invariant." msgstr "" -#: ../../library/heapq.rst:73 -msgid "" -"Pop and return the smallest item from the *heap*, maintaining the min-heap " -"invariant. If the heap is empty, :exc:`IndexError` is raised. To access " -"the smallest item without popping it, use ``heap[0]``." +msgid "Pop and return the smallest item from the *heap*, maintaining the min-heap invariant. If the heap is empty, :exc:`IndexError` is raised. To access the smallest item without popping it, use ``heap[0]``." msgstr "" -#: ../../library/heapq.rst:80 -msgid "" -"Push *item* on the heap, then pop and return the smallest item from the " -"*heap*. The combined action runs more efficiently than :func:`heappush` " -"followed by a separate call to :func:`heappop`." +msgid "Push *item* on the heap, then pop and return the smallest item from the *heap*. The combined action runs more efficiently than :func:`heappush` followed by a separate call to :func:`heappop`." msgstr "" -#: ../../library/heapq.rst:87 -msgid "" -"Pop and return the smallest item from the *heap*, and also push the new " -"*item*. The heap size doesn't change. If the heap is " -"empty, :exc:`IndexError` is raised." +msgid "Pop and return the smallest item from the *heap*, and also push the new *item*. The heap size doesn't change. If the heap is empty, :exc:`IndexError` is raised." msgstr "" -#: ../../library/heapq.rst:90 -msgid "" -"This one step operation is more efficient than a :func:`heappop` followed " -"by :func:`heappush` and can be more appropriate when using a fixed-size " -"heap. The pop/push combination always returns an element from the heap and " -"replaces it with *item*." +msgid "This one step operation is more efficient than a :func:`heappop` followed by :func:`heappush` and can be more appropriate when using a fixed-size heap. The pop/push combination always returns an element from the heap and replaces it with *item*." msgstr "" -#: ../../library/heapq.rst:95 -msgid "" -"The value returned may be larger than the *item* added. If that isn't " -"desired, consider using :func:`heappushpop` instead. Its push/pop " -"combination returns the smaller of the two values, leaving the larger value " -"on the heap." +msgid "The value returned may be larger than the *item* added. If that isn't desired, consider using :func:`heappushpop` instead. Its push/pop combination returns the smaller of the two values, leaving the larger value on the heap." msgstr "" -#: ../../library/heapq.rst:101 msgid "For max-heaps, the following functions are provided:" msgstr "" -#: ../../library/heapq.rst:106 msgid "Transform list *x* into a max-heap, in-place, in linear time." msgstr "" -#: ../../library/heapq.rst:113 -msgid "" -"Push the value *item* onto the max-heap *heap*, maintaining the max-heap " -"invariant." +msgid "Push the value *item* onto the max-heap *heap*, maintaining the max-heap invariant." msgstr "" -#: ../../library/heapq.rst:121 -msgid "" -"Pop and return the largest item from the max-heap *heap*, maintaining the " -"max-heap invariant. If the max-heap is empty, :exc:`IndexError` is raised. " -"To access the largest item without popping it, use ``maxheap[0]``." +msgid "Pop and return the largest item from the max-heap *heap*, maintaining the max-heap invariant. If the max-heap is empty, :exc:`IndexError` is raised. To access the largest item without popping it, use ``maxheap[0]``." msgstr "" -#: ../../library/heapq.rst:130 -msgid "" -"Push *item* on the max-heap *heap*, then pop and return the largest item " -"from *heap*. The combined action runs more efficiently " -"than :func:`heappush_max` followed by a separate call to :func:`heappop_max`." +msgid "Push *item* on the max-heap *heap*, then pop and return the largest item from *heap*. The combined action runs more efficiently than :func:`heappush_max` followed by a separate call to :func:`heappop_max`." msgstr "" -#: ../../library/heapq.rst:140 -msgid "" -"Pop and return the largest item from the max-heap *heap* and also push the " -"new *item*. The max-heap size doesn't change. If the max-heap is " -"empty, :exc:`IndexError` is raised." +msgid "Pop and return the largest item from the max-heap *heap* and also push the new *item*. The max-heap size doesn't change. If the max-heap is empty, :exc:`IndexError` is raised." msgstr "" -#: ../../library/heapq.rst:145 -msgid "" -"The value returned may be smaller than the *item* added. Refer to the " -"analogous function :func:`heapreplace` for detailed usage notes." +msgid "The value returned may be smaller than the *item* added. Refer to the analogous function :func:`heapreplace` for detailed usage notes." msgstr "" -#: ../../library/heapq.rst:151 msgid "The module also offers three general purpose functions based on heaps." msgstr "" -#: ../../library/heapq.rst:156 -msgid "" -"Merge multiple sorted inputs into a single sorted output (for example, merge " -"timestamped entries from multiple log files). Returns an :term:`iterator` " -"over the sorted values." +msgid "Merge multiple sorted inputs into a single sorted output (for example, merge timestamped entries from multiple log files). Returns an :term:`iterator` over the sorted values." msgstr "" -#: ../../library/heapq.rst:160 -msgid "" -"Similar to ``sorted(itertools.chain(*iterables))`` but returns an iterable, " -"does not pull the data into memory all at once, and assumes that each of the " -"input streams is already sorted (smallest to largest)." +msgid "Similar to ``sorted(itertools.chain(*iterables))`` but returns an iterable, does not pull the data into memory all at once, and assumes that each of the input streams is already sorted (smallest to largest)." msgstr "" -#: ../../library/heapq.rst:164 -msgid "" -"Has two optional arguments which must be specified as keyword arguments." +msgid "Has two optional arguments which must be specified as keyword arguments." msgstr "" -#: ../../library/heapq.rst:166 -msgid "" -"*key* specifies a :term:`key function` of one argument that is used to " -"extract a comparison key from each input element. The default value is " -"``None`` (compare the elements directly)." +msgid "*key* specifies a :term:`key function` of one argument that is used to extract a comparison key from each input element. The default value is ``None`` (compare the elements directly)." msgstr "" -#: ../../library/heapq.rst:170 -msgid "" -"*reverse* is a boolean value. If set to ``True``, then the input elements " -"are merged as if each comparison were reversed. To achieve behavior similar " -"to ``sorted(itertools.chain(*iterables), reverse=True)``, all iterables must " -"be sorted from largest to smallest." +msgid "*reverse* is a boolean value. If set to ``True``, then the input elements are merged as if each comparison were reversed. To achieve behavior similar to ``sorted(itertools.chain(*iterables), reverse=True)``, all iterables must be sorted from largest to smallest." msgstr "" -#: ../../library/heapq.rst:175 msgid "Added the optional *key* and *reverse* parameters." msgstr "" -#: ../../library/heapq.rst:181 -msgid "" -"Return a list with the *n* largest elements from the dataset defined by " -"*iterable*. *key*, if provided, specifies a function of one argument that " -"is used to extract a comparison key from each element in *iterable* (for " -"example, ``key=str.lower``). Equivalent to: ``sorted(iterable, key=key, " -"reverse=True)[:n]``." +msgid "Return a list with the *n* largest elements from the dataset defined by *iterable*. *key*, if provided, specifies a function of one argument that is used to extract a comparison key from each element in *iterable* (for example, ``key=str.lower``). Equivalent to: ``sorted(iterable, key=key, reverse=True)[:n]``." msgstr "" -#: ../../library/heapq.rst:190 -msgid "" -"Return a list with the *n* smallest elements from the dataset defined by " -"*iterable*. *key*, if provided, specifies a function of one argument that " -"is used to extract a comparison key from each element in *iterable* (for " -"example, ``key=str.lower``). Equivalent to: ``sorted(iterable, key=key)" -"[:n]``." +msgid "Return a list with the *n* smallest elements from the dataset defined by *iterable*. *key*, if provided, specifies a function of one argument that is used to extract a comparison key from each element in *iterable* (for example, ``key=str.lower``). Equivalent to: ``sorted(iterable, key=key)[:n]``." msgstr "" -#: ../../library/heapq.rst:196 -msgid "" -"The latter two functions perform best for smaller values of *n*. For larger " -"values, it is more efficient to use the :func:`sorted` function. Also, when " -"``n==1``, it is more efficient to use the built-in :func:`min` " -"and :func:`max` functions. If repeated usage of these functions is " -"required, consider turning the iterable into an actual heap." +msgid "The latter two functions perform best for smaller values of *n*. For larger values, it is more efficient to use the :func:`sorted` function. Also, when ``n==1``, it is more efficient to use the built-in :func:`min` and :func:`max` functions. If repeated usage of these functions is required, consider turning the iterable into an actual heap." msgstr "" -#: ../../library/heapq.rst:204 msgid "Basic Examples" msgstr "" -#: ../../library/heapq.rst:206 -msgid "" -"A `heapsort `_ can be implemented by " -"pushing all values onto a heap and then popping off the smallest values one " -"at a time::" +msgid "A `heapsort `_ can be implemented by pushing all values onto a heap and then popping off the smallest values one at a time::" msgstr "" -#: ../../library/heapq.rst:210 msgid "" ">>> def heapsort(iterable):\n" "... h = []\n" @@ -284,19 +148,12 @@ msgid "" "[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]" msgstr "" -#: ../../library/heapq.rst:219 -msgid "" -"This is similar to ``sorted(iterable)``, but unlike :func:`sorted`, this " -"implementation is not stable." +msgid "This is similar to ``sorted(iterable)``, but unlike :func:`sorted`, this implementation is not stable." msgstr "" -#: ../../library/heapq.rst:222 -msgid "" -"Heap elements can be tuples. This is useful for assigning comparison values " -"(such as task priorities) alongside the main record being tracked::" +msgid "Heap elements can be tuples. This is useful for assigning comparison values (such as task priorities) alongside the main record being tracked::" msgstr "" -#: ../../library/heapq.rst:225 msgid "" ">>> h = []\n" ">>> heappush(h, (5, 'write code'))\n" @@ -307,29 +164,15 @@ msgid "" "(1, 'write spec')" msgstr "" -#: ../../library/heapq.rst:235 msgid "Other Applications" msgstr "" -#: ../../library/heapq.rst:237 -msgid "" -"`Medians `_ are a measure of central " -"tendency for a set of numbers. In distributions skewed by outliers, the " -"median provides a more stable estimate than an average (arithmetic mean). A " -"running median is an `online algorithm `_ that updates continuously as new data arrives." +msgid "`Medians `_ are a measure of central tendency for a set of numbers. In distributions skewed by outliers, the median provides a more stable estimate than an average (arithmetic mean). A running median is an `online algorithm `_ that updates continuously as new data arrives." msgstr "" -#: ../../library/heapq.rst:244 -msgid "" -"A running median can be efficiently implemented by balancing two heaps, a " -"max-heap for values at or below the midpoint and a min-heap for values above " -"the midpoint. When the two heaps have the same size, the new median is the " -"average of the tops of the two heaps; otherwise, the median is at the top of " -"the larger heap::" +msgid "A running median can be efficiently implemented by balancing two heaps, a max-heap for values at or below the midpoint and a min-heap for values above the midpoint. When the two heaps have the same size, the new median is the average of the tops of the two heaps; otherwise, the median is at the top of the larger heap::" msgstr "" -#: ../../library/heapq.rst:250 msgid "" "def running_median(iterable):\n" " \"Yields the cumulative median of values seen so far.\"\n" @@ -346,67 +189,38 @@ msgid "" " yield (lo[0] + hi[0]) / 2" msgstr "" -#: ../../library/heapq.rst:264 msgid "For example::" msgstr "" -#: ../../library/heapq.rst:266 msgid "" ">>> list(running_median([5.0, 9.0, 4.0, 12.0, 8.0, 9.0]))\n" "[5.0, 7.0, 5.0, 7.0, 8.0, 8.5]" msgstr "" -#: ../../library/heapq.rst:271 msgid "Priority Queue Implementation Notes" msgstr "" -#: ../../library/heapq.rst:273 -msgid "" -"A `priority queue `_ is common " -"use for a heap, and it presents several implementation challenges:" +msgid "A `priority queue `_ is common use for a heap, and it presents several implementation challenges:" msgstr "" -#: ../../library/heapq.rst:276 -msgid "" -"Sort stability: how do you get two tasks with equal priorities to be " -"returned in the order they were originally added?" +msgid "Sort stability: how do you get two tasks with equal priorities to be returned in the order they were originally added?" msgstr "" -#: ../../library/heapq.rst:279 -msgid "" -"Tuple comparison breaks for (priority, task) pairs if the priorities are " -"equal and the tasks do not have a default comparison order." +msgid "Tuple comparison breaks for (priority, task) pairs if the priorities are equal and the tasks do not have a default comparison order." msgstr "" -#: ../../library/heapq.rst:282 -msgid "" -"If the priority of a task changes, how do you move it to a new position in " -"the heap?" +msgid "If the priority of a task changes, how do you move it to a new position in the heap?" msgstr "" -#: ../../library/heapq.rst:285 -msgid "" -"Or if a pending task needs to be deleted, how do you find it and remove it " -"from the queue?" +msgid "Or if a pending task needs to be deleted, how do you find it and remove it from the queue?" msgstr "" -#: ../../library/heapq.rst:288 -msgid "" -"A solution to the first two challenges is to store entries as 3-element list " -"including the priority, an entry count, and the task. The entry count " -"serves as a tie-breaker so that two tasks with the same priority are " -"returned in the order they were added. And since no two entry counts are the " -"same, the tuple comparison will never attempt to directly compare two tasks." +msgid "A solution to the first two challenges is to store entries as 3-element list including the priority, an entry count, and the task. The entry count serves as a tie-breaker so that two tasks with the same priority are returned in the order they were added. And since no two entry counts are the same, the tuple comparison will never attempt to directly compare two tasks." msgstr "" -#: ../../library/heapq.rst:294 -msgid "" -"Another solution to the problem of non-comparable tasks is to create a " -"wrapper class that ignores the task item and only compares the priority " -"field::" +msgid "Another solution to the problem of non-comparable tasks is to create a wrapper class that ignores the task item and only compares the priority field::" msgstr "" -#: ../../library/heapq.rst:297 msgid "" "from dataclasses import dataclass, field\n" "from typing import Any\n" @@ -417,21 +231,12 @@ msgid "" " item: Any=field(compare=False)" msgstr "" -#: ../../library/heapq.rst:305 -msgid "" -"The remaining challenges revolve around finding a pending task and making " -"changes to its priority or removing it entirely. Finding a task can be done " -"with a dictionary pointing to an entry in the queue." +msgid "The remaining challenges revolve around finding a pending task and making changes to its priority or removing it entirely. Finding a task can be done with a dictionary pointing to an entry in the queue." msgstr "" -#: ../../library/heapq.rst:309 -msgid "" -"Removing the entry or changing its priority is more difficult because it " -"would break the heap structure invariants. So, a possible solution is to " -"mark the entry as removed and add a new entry with the revised priority::" +msgid "Removing the entry or changing its priority is more difficult because it would break the heap structure invariants. So, a possible solution is to mark the entry as removed and add a new entry with the revised priority::" msgstr "" -#: ../../library/heapq.rst:313 msgid "" "pq = [] # list of entries arranged in a heap\n" "entry_finder = {} # mapping of tasks to entries\n" @@ -462,25 +267,15 @@ msgid "" " raise KeyError('pop from an empty priority queue')" msgstr "" -#: ../../library/heapq.rst:343 msgid "Theory" msgstr "" -#: ../../library/heapq.rst:345 -msgid "" -"Heaps are arrays for which ``a[k] <= a[2*k+1]`` and ``a[k] <= a[2*k+2]`` for " -"all *k*, counting elements from 0. For the sake of comparison, non-existing " -"elements are considered to be infinite. The interesting property of a heap " -"is that ``a[0]`` is always its smallest element." +msgid "Heaps are arrays for which ``a[k] <= a[2*k+1]`` and ``a[k] <= a[2*k+2]`` for all *k*, counting elements from 0. For the sake of comparison, non-existing elements are considered to be infinite. The interesting property of a heap is that ``a[0]`` is always its smallest element." msgstr "" -#: ../../library/heapq.rst:350 -msgid "" -"The strange invariant above is meant to be an efficient memory " -"representation for a tournament. The numbers below are *k*, not ``a[k]``::" +msgid "The strange invariant above is meant to be an efficient memory representation for a tournament. The numbers below are *k*, not ``a[k]``::" msgstr "" -#: ../../library/heapq.rst:353 msgid "" " 0\n" "\n" @@ -493,95 +288,29 @@ msgid "" "15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30" msgstr "" -#: ../../library/heapq.rst:363 -msgid "" -"In the tree above, each cell *k* is topping ``2*k+1`` and ``2*k+2``. In a " -"usual binary tournament we see in sports, each cell is the winner over the " -"two cells it tops, and we can trace the winner down the tree to see all " -"opponents s/he had. However, in many computer applications of such " -"tournaments, we do not need to trace the history of a winner. To be more " -"memory efficient, when a winner is promoted, we try to replace it by " -"something else at a lower level, and the rule becomes that a cell and the " -"two cells it tops contain three different items, but the top cell \"wins\" " -"over the two topped cells." -msgstr "" - -#: ../../library/heapq.rst:372 -msgid "" -"If this heap invariant is protected at all time, index 0 is clearly the " -"overall winner. The simplest algorithmic way to remove it and find the " -"\"next\" winner is to move some loser (let's say cell 30 in the diagram " -"above) into the 0 position, and then percolate this new 0 down the tree, " -"exchanging values, until the invariant is re-established. This is clearly " -"logarithmic on the total number of items in the tree. By iterating over all " -"items, you get an *O*\\ (*n* log *n*) sort." +msgid "In the tree above, each cell *k* is topping ``2*k+1`` and ``2*k+2``. In a usual binary tournament we see in sports, each cell is the winner over the two cells it tops, and we can trace the winner down the tree to see all opponents s/he had. However, in many computer applications of such tournaments, we do not need to trace the history of a winner. To be more memory efficient, when a winner is promoted, we try to replace it by something else at a lower level, and the rule becomes that a cell and the two cells it tops contain three different items, but the top cell \"wins\" over the two topped cells." msgstr "" -#: ../../library/heapq.rst:379 -msgid "" -"A nice feature of this sort is that you can efficiently insert new items " -"while the sort is going on, provided that the inserted items are not " -"\"better\" than the last 0'th element you extracted. This is especially " -"useful in simulation contexts, where the tree holds all incoming events, and " -"the \"win\" condition means the smallest scheduled time. When an event " -"schedules other events for execution, they are scheduled into the future, so " -"they can easily go into the heap. So, a heap is a good structure for " -"implementing schedulers (this is what I used for my MIDI sequencer :-)." +msgid "If this heap invariant is protected at all time, index 0 is clearly the overall winner. The simplest algorithmic way to remove it and find the \"next\" winner is to move some loser (let's say cell 30 in the diagram above) into the 0 position, and then percolate this new 0 down the tree, exchanging values, until the invariant is re-established. This is clearly logarithmic on the total number of items in the tree. By iterating over all items, you get an *O*\\ (*n* log *n*) sort." msgstr "" -#: ../../library/heapq.rst:388 -msgid "" -"Various structures for implementing schedulers have been extensively " -"studied, and heaps are good for this, as they are reasonably speedy, the " -"speed is almost constant, and the worst case is not much different than the " -"average case. However, there are other representations which are more " -"efficient overall, yet the worst cases might be terrible." +msgid "A nice feature of this sort is that you can efficiently insert new items while the sort is going on, provided that the inserted items are not \"better\" than the last 0'th element you extracted. This is especially useful in simulation contexts, where the tree holds all incoming events, and the \"win\" condition means the smallest scheduled time. When an event schedules other events for execution, they are scheduled into the future, so they can easily go into the heap. So, a heap is a good structure for implementing schedulers (this is what I used for my MIDI sequencer :-)." msgstr "" -#: ../../library/heapq.rst:394 -msgid "" -"Heaps are also very useful in big disk sorts. You most probably all know " -"that a big sort implies producing \"runs\" (which are pre-sorted sequences, " -"whose size is usually related to the amount of CPU memory), followed by a " -"merging passes for these runs, which merging is often very cleverly " -"organised [#]_. It is very important that the initial sort produces the " -"longest runs possible. Tournaments are a good way to achieve that. If, " -"using all the memory available to hold a tournament, you replace and " -"percolate items that happen to fit the current run, you'll produce runs " -"which are twice the size of the memory for random input, and much better for " -"input fuzzily ordered." -msgstr "" - -#: ../../library/heapq.rst:404 -msgid "" -"Moreover, if you output the 0'th item on disk and get an input which may not " -"fit in the current tournament (because the value \"wins\" over the last " -"output value), it cannot fit in the heap, so the size of the heap " -"decreases. The freed memory could be cleverly reused immediately for " -"progressively building a second heap, which grows at exactly the same rate " -"the first heap is melting. When the first heap completely vanishes, you " -"switch heaps and start a new run. Clever and quite effective!" +msgid "Various structures for implementing schedulers have been extensively studied, and heaps are good for this, as they are reasonably speedy, the speed is almost constant, and the worst case is not much different than the average case. However, there are other representations which are more efficient overall, yet the worst cases might be terrible." msgstr "" -#: ../../library/heapq.rst:412 -msgid "" -"In a word, heaps are useful memory structures to know. I use them in a few " -"applications, and I think it is good to keep a 'heap' module around. :-)" +msgid "Heaps are also very useful in big disk sorts. You most probably all know that a big sort implies producing \"runs\" (which are pre-sorted sequences, whose size is usually related to the amount of CPU memory), followed by a merging passes for these runs, which merging is often very cleverly organised [#]_. It is very important that the initial sort produces the longest runs possible. Tournaments are a good way to achieve that. If, using all the memory available to hold a tournament, you replace and percolate items that happen to fit the current run, you'll produce runs which are twice the size of the memory for random input, and much better for input fuzzily ordered." +msgstr "" + +msgid "Moreover, if you output the 0'th item on disk and get an input which may not fit in the current tournament (because the value \"wins\" over the last output value), it cannot fit in the heap, so the size of the heap decreases. The freed memory could be cleverly reused immediately for progressively building a second heap, which grows at exactly the same rate the first heap is melting. When the first heap completely vanishes, you switch heaps and start a new run. Clever and quite effective!" +msgstr "" + +msgid "In a word, heaps are useful memory structures to know. I use them in a few applications, and I think it is good to keep a 'heap' module around. :-)" msgstr "" -#: ../../library/heapq.rst:416 msgid "Footnotes" msgstr "" -#: ../../library/heapq.rst:417 -msgid "" -"The disk balancing algorithms which are current, nowadays, are more annoying " -"than clever, and this is a consequence of the seeking capabilities of the " -"disks. On devices which cannot seek, like big tape drives, the story was " -"quite different, and one had to be very clever to ensure (far in advance) " -"that each tape movement will be the most effective possible (that is, will " -"best participate at \"progressing\" the merge). Some tapes were even able " -"to read backwards, and this was also used to avoid the rewinding time. " -"Believe me, real good tape sorts were quite spectacular to watch! From all " -"times, sorting has always been a Great Art! :-)" +msgid "The disk balancing algorithms which are current, nowadays, are more annoying than clever, and this is a consequence of the seeking capabilities of the disks. On devices which cannot seek, like big tape drives, the story was quite different, and one had to be very clever to ensure (far in advance) that each tape movement will be the most effective possible (that is, will best participate at \"progressing\" the merge). Some tapes were even able to read backwards, and this was also used to avoid the rewinding time. Believe me, real good tape sorts were quite spectacular to watch! From all times, sorting has always been a Great Art! :-)" msgstr "" diff --git a/library/hmac.po b/library/hmac.po index 7d43158b..3c3fbe15 100644 --- a/library/hmac.po +++ b/library/hmac.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:07+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,164 +23,83 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/hmac.rst:2 msgid ":mod:`!hmac` --- Keyed-Hashing for Message Authentication" msgstr "" -#: ../../library/hmac.rst:10 msgid "**Source code:** :source:`Lib/hmac.py`" msgstr "" -#: ../../library/hmac.rst:14 -msgid "" -"This module implements the HMAC algorithm as described by :rfc:`2104`. The " -"interface allows to use any hash function with a *fixed* digest size. In " -"particular, extendable output functions such as SHAKE-128 or SHAKE-256 " -"cannot be used with HMAC." +msgid "This module implements the HMAC algorithm as described by :rfc:`2104`. The interface allows to use any hash function with a *fixed* digest size. In particular, extendable output functions such as SHAKE-128 or SHAKE-256 cannot be used with HMAC." msgstr "" -#: ../../library/hmac.rst:22 -msgid "" -"Return a new hmac object. *key* is a bytes or bytearray object giving the " -"secret key. If *msg* is present, the method call ``update(msg)`` is made. " -"*digestmod* is the digest name, digest constructor or module for the HMAC " -"object to use. It may be any name suitable to :func:`hashlib.new`. Despite " -"its argument position, it is required." +msgid "Return a new hmac object. *key* is a bytes or bytearray object giving the secret key. If *msg* is present, the method call ``update(msg)`` is made. *digestmod* is the digest name, digest constructor or module for the HMAC object to use. It may be any name suitable to :func:`hashlib.new`. Despite its argument position, it is required." msgstr "" -#: ../../library/hmac.rst:28 -msgid "" -"Parameter *key* can be a bytes or bytearray object. Parameter *msg* can be " -"of any type supported by :mod:`hashlib`. Parameter *digestmod* can be the " -"name of a hash algorithm." +msgid "Parameter *key* can be a bytes or bytearray object. Parameter *msg* can be of any type supported by :mod:`hashlib`. Parameter *digestmod* can be the name of a hash algorithm." msgstr "" -#: ../../library/hmac.rst:33 -msgid "" -"The *digestmod* argument is now required. Pass it as a keyword argument to " -"avoid awkwardness when you do not have an initial *msg*." +msgid "The *digestmod* argument is now required. Pass it as a keyword argument to avoid awkwardness when you do not have an initial *msg*." msgstr "" -#: ../../library/hmac.rst:40 -msgid "" -"Return digest of *msg* for given secret *key* and *digest*. The function is " -"equivalent to ``HMAC(key, msg, digest).digest()``, but uses an optimized C " -"or inline implementation, which is faster for messages that fit into memory. " -"The parameters *key*, *msg*, and *digest* have the same meaning as " -"in :func:`~hmac.new`." +msgid "Return digest of *msg* for given secret *key* and *digest*. The function is equivalent to ``HMAC(key, msg, digest).digest()``, but uses an optimized C or inline implementation, which is faster for messages that fit into memory. The parameters *key*, *msg*, and *digest* have the same meaning as in :func:`~hmac.new`." msgstr "" -#: ../../library/hmac.rst:46 -msgid "" -"CPython implementation detail, the optimized C implementation is only used " -"when *digest* is a string and name of a digest algorithm, which is supported " -"by OpenSSL." +msgid "CPython implementation detail, the optimized C implementation is only used when *digest* is a string and name of a digest algorithm, which is supported by OpenSSL." msgstr "" -#: ../../library/hmac.rst:55 msgid "An HMAC object has the following methods:" msgstr "" -#: ../../library/hmac.rst:59 -msgid "" -"Update the hmac object with *msg*. Repeated calls are equivalent to a " -"single call with the concatenation of all the arguments: ``m.update(a); " -"m.update(b)`` is equivalent to ``m.update(a + b)``." +msgid "Update the hmac object with *msg*. Repeated calls are equivalent to a single call with the concatenation of all the arguments: ``m.update(a); m.update(b)`` is equivalent to ``m.update(a + b)``." msgstr "" -#: ../../library/hmac.rst:63 msgid "Parameter *msg* can be of any type supported by :mod:`hashlib`." msgstr "" -#: ../../library/hmac.rst:69 -msgid "" -"Return the digest of the bytes passed to the :meth:`update` method so far. " -"This bytes object will be the same length as the *digest_size* of the digest " -"given to the constructor. It may contain non-ASCII bytes, including NUL " -"bytes." +msgid "Return the digest of the bytes passed to the :meth:`update` method so far. This bytes object will be the same length as the *digest_size* of the digest given to the constructor. It may contain non-ASCII bytes, including NUL bytes." msgstr "" -#: ../../library/hmac.rst:76 -msgid "" -"When comparing the output of :meth:`digest` to an externally supplied digest " -"during a verification routine, it is recommended to use " -"the :func:`compare_digest` function instead of the ``==`` operator to reduce " -"the vulnerability to timing attacks." +msgid "When comparing the output of :meth:`digest` to an externally supplied digest during a verification routine, it is recommended to use the :func:`compare_digest` function instead of the ``==`` operator to reduce the vulnerability to timing attacks." msgstr "" -#: ../../library/hmac.rst:84 -msgid "" -"Like :meth:`digest` except the digest is returned as a string twice the " -"length containing only hexadecimal digits. This may be used to exchange the " -"value safely in email or other non-binary environments." +msgid "Like :meth:`digest` except the digest is returned as a string twice the length containing only hexadecimal digits. This may be used to exchange the value safely in email or other non-binary environments." msgstr "" -#: ../../library/hmac.rst:90 -msgid "" -"When comparing the output of :meth:`hexdigest` to an externally supplied " -"digest during a verification routine, it is recommended to use " -"the :func:`compare_digest` function instead of the ``==`` operator to reduce " -"the vulnerability to timing attacks." +msgid "When comparing the output of :meth:`hexdigest` to an externally supplied digest during a verification routine, it is recommended to use the :func:`compare_digest` function instead of the ``==`` operator to reduce the vulnerability to timing attacks." msgstr "" -#: ../../library/hmac.rst:98 -msgid "" -"Return a copy (\"clone\") of the hmac object. This can be used to " -"efficiently compute the digests of strings that share a common initial " -"substring." +msgid "Return a copy (\"clone\") of the hmac object. This can be used to efficiently compute the digests of strings that share a common initial substring." msgstr "" -#: ../../library/hmac.rst:102 msgid "A hash object has the following attributes:" msgstr "" -#: ../../library/hmac.rst:106 msgid "The size of the resulting HMAC digest in bytes." msgstr "" -#: ../../library/hmac.rst:110 msgid "The internal block size of the hash algorithm in bytes." msgstr "" -#: ../../library/hmac.rst:116 msgid "The canonical name of this HMAC, always lowercase, e.g. ``hmac-md5``." msgstr "" -#: ../../library/hmac.rst:121 -msgid "" -"Removed the undocumented attributes ``HMAC.digest_cons``, ``HMAC.inner``, " -"and ``HMAC.outer``." +msgid "Removed the undocumented attributes ``HMAC.digest_cons``, ``HMAC.inner``, and ``HMAC.outer``." msgstr "" -#: ../../library/hmac.rst:125 msgid "This module also provides the following helper function:" msgstr "" -#: ../../library/hmac.rst:129 -msgid "" -"Return ``a == b``. This function uses an approach designed to prevent " -"timing analysis by avoiding content-based short circuiting behaviour, making " -"it appropriate for cryptography. *a* and *b* must both be of the same type: " -"either :class:`str` (ASCII only, as e.g. returned " -"by :meth:`HMAC.hexdigest`), or a :term:`bytes-like object`." +msgid "Return ``a == b``. This function uses an approach designed to prevent timing analysis by avoiding content-based short circuiting behaviour, making it appropriate for cryptography. *a* and *b* must both be of the same type: either :class:`str` (ASCII only, as e.g. returned by :meth:`HMAC.hexdigest`), or a :term:`bytes-like object`." msgstr "" -#: ../../library/hmac.rst:137 -msgid "" -"If *a* and *b* are of different lengths, or if an error occurs, a timing " -"attack could theoretically reveal information about the types and lengths of " -"*a* and *b*—but not their values." +msgid "If *a* and *b* are of different lengths, or if an error occurs, a timing attack could theoretically reveal information about the types and lengths of *a* and *b*—but not their values." msgstr "" -#: ../../library/hmac.rst:145 -msgid "" -"The function uses OpenSSL's ``CRYPTO_memcmp()`` internally when available." +msgid "The function uses OpenSSL's ``CRYPTO_memcmp()`` internally when available." msgstr "" -#: ../../library/hmac.rst:151 msgid "Module :mod:`hashlib`" msgstr "" -#: ../../library/hmac.rst:152 msgid "The Python module providing secure hash functions." msgstr "" diff --git a/library/html.entities.po b/library/html.entities.po index 754427bc..cf12e5c5 100644 --- a/library/html.entities.po +++ b/library/html.entities.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:07+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,51 +23,29 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/html.entities.rst:2 msgid ":mod:`!html.entities` --- Definitions of HTML general entities" msgstr "" -#: ../../library/html.entities.rst:9 msgid "**Source code:** :source:`Lib/html/entities.py`" msgstr "" -#: ../../library/html.entities.rst:13 -msgid "" -"This module defines four " -"dictionaries, :data:`html5`, :data:`name2codepoint`, :data:`codepoint2name`, " -"and :data:`entitydefs`." +msgid "This module defines four dictionaries, :data:`html5`, :data:`name2codepoint`, :data:`codepoint2name`, and :data:`entitydefs`." msgstr "" -#: ../../library/html.entities.rst:19 -msgid "" -"A dictionary that maps HTML5 named character references [#]_ to the " -"equivalent Unicode character(s), e.g. ``html5['gt;'] == '>'``. Note that the " -"trailing semicolon is included in the name (e.g. ``'gt;'``), however some of " -"the names are accepted by the standard even without the semicolon: in this " -"case the name is present with and without the ``';'``. See " -"also :func:`html.unescape`." +msgid "A dictionary that maps HTML5 named character references [#]_ to the equivalent Unicode character(s), e.g. ``html5['gt;'] == '>'``. Note that the trailing semicolon is included in the name (e.g. ``'gt;'``), however some of the names are accepted by the standard even without the semicolon: in this case the name is present with and without the ``';'``. See also :func:`html.unescape`." msgstr "" -#: ../../library/html.entities.rst:31 -msgid "" -"A dictionary mapping XHTML 1.0 entity definitions to their replacement text " -"in ISO Latin-1." +msgid "A dictionary mapping XHTML 1.0 entity definitions to their replacement text in ISO Latin-1." msgstr "" -#: ../../library/html.entities.rst:37 msgid "A dictionary that maps HTML4 entity names to the Unicode code points." msgstr "" -#: ../../library/html.entities.rst:42 msgid "A dictionary that maps Unicode code points to HTML4 entity names." msgstr "" -#: ../../library/html.entities.rst:46 msgid "Footnotes" msgstr "" -#: ../../library/html.entities.rst:47 -msgid "" -"See https://html.spec.whatwg.org/multipage/named-characters.html#named-" -"character-references" +msgid "See https://html.spec.whatwg.org/multipage/named-characters.html#named-character-references" msgstr "" diff --git a/library/html.parser.po b/library/html.parser.po index 68f1ab41..694d17d8 100644 --- a/library/html.parser.po +++ b/library/html.parser.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:07+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,78 +24,45 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/html.parser.rst:2 msgid ":mod:`!html.parser` --- Simple HTML and XHTML parser" msgstr "" -#: ../../library/html.parser.rst:7 msgid "**Source code:** :source:`Lib/html/parser.py`" msgstr "" -#: ../../library/html.parser.rst:15 -msgid "" -"This module defines a class :class:`HTMLParser` which serves as the basis " -"for parsing text files formatted in HTML (HyperText Mark-up Language) and " -"XHTML." +msgid "This module defines a class :class:`HTMLParser` which serves as the basis for parsing text files formatted in HTML (HyperText Mark-up Language) and XHTML." msgstr "" -#: ../../library/html.parser.rst:20 msgid "Create a parser instance able to parse invalid markup." msgstr "" -#: ../../library/html.parser.rst:22 -msgid "" -"If *convert_charrefs* is true (the default), all character references " -"(except the ones in elements like ``script`` and ``style``) are " -"automatically converted to the corresponding Unicode characters." +msgid "If *convert_charrefs* is true (the default), all character references (except the ones in elements like ``script`` and ``style``) are automatically converted to the corresponding Unicode characters." msgstr "" -#: ../../library/html.parser.rst:26 -msgid "" -"If *scripting* is false (the default), the content of the ``noscript`` " -"element is parsed normally; if it's true, it's returned as is without being " -"parsed." +msgid "If *scripting* is false (the default), the content of the ``noscript`` element is parsed normally; if it's true, it's returned as is without being parsed." msgstr "" -#: ../../library/html.parser.rst:30 -msgid "" -"An :class:`.HTMLParser` instance is fed HTML data and calls handler methods " -"when start tags, end tags, text, comments, and other markup elements are " -"encountered. The user should subclass :class:`.HTMLParser` and override its " -"methods to implement the desired behavior." +msgid "An :class:`.HTMLParser` instance is fed HTML data and calls handler methods when start tags, end tags, text, comments, and other markup elements are encountered. The user should subclass :class:`.HTMLParser` and override its methods to implement the desired behavior." msgstr "" -#: ../../library/html.parser.rst:35 -msgid "" -"This parser does not check that end tags match start tags or call the end-" -"tag handler for elements which are closed implicitly by closing an outer " -"element." +msgid "This parser does not check that end tags match start tags or call the end-tag handler for elements which are closed implicitly by closing an outer element." msgstr "" -#: ../../library/html.parser.rst:38 msgid "*convert_charrefs* keyword argument added." msgstr "" -#: ../../library/html.parser.rst:41 msgid "The default value for argument *convert_charrefs* is now ``True``." msgstr "" -#: ../../library/html.parser.rst:44 msgid "Added the *scripting* parameter." msgstr "" -#: ../../library/html.parser.rst:49 msgid "Example HTML Parser Application" msgstr "" -#: ../../library/html.parser.rst:51 -msgid "" -"As a basic example, below is a simple HTML parser that uses " -"the :class:`HTMLParser` class to print out start tags, end tags, and data as " -"they are encountered:" +msgid "As a basic example, below is a simple HTML parser that uses the :class:`HTMLParser` class to print out start tags, end tags, and data as they are encountered:" msgstr "" -#: ../../library/html.parser.rst:55 msgid "" "from html.parser import HTMLParser\n" "\n" @@ -114,11 +81,9 @@ msgid "" " '

Parse me!

')" msgstr "" -#: ../../library/html.parser.rst:73 msgid "The output will then be:" msgstr "" -#: ../../library/html.parser.rst:75 msgid "" "Encountered a start tag: html\n" "Encountered a start tag: head\n" @@ -134,195 +99,93 @@ msgid "" "Encountered an end tag : html" msgstr "" -#: ../../library/html.parser.rst:92 msgid ":class:`.HTMLParser` Methods" msgstr "" -#: ../../library/html.parser.rst:94 msgid ":class:`HTMLParser` instances have the following methods:" msgstr "" -#: ../../library/html.parser.rst:99 -msgid "" -"Feed some text to the parser. It is processed insofar as it consists of " -"complete elements; incomplete data is buffered until more data is fed " -"or :meth:`close` is called. *data* must be :class:`str`." +msgid "Feed some text to the parser. It is processed insofar as it consists of complete elements; incomplete data is buffered until more data is fed or :meth:`close` is called. *data* must be :class:`str`." msgstr "" -#: ../../library/html.parser.rst:106 -msgid "" -"Force processing of all buffered data as if it were followed by an end-of-" -"file mark. This method may be redefined by a derived class to define " -"additional processing at the end of the input, but the redefined version " -"should always call the :class:`HTMLParser` base class method :meth:`close`." +msgid "Force processing of all buffered data as if it were followed by an end-of-file mark. This method may be redefined by a derived class to define additional processing at the end of the input, but the redefined version should always call the :class:`HTMLParser` base class method :meth:`close`." msgstr "" -#: ../../library/html.parser.rst:114 -msgid "" -"Reset the instance. Loses all unprocessed data. This is called implicitly " -"at instantiation time." +msgid "Reset the instance. Loses all unprocessed data. This is called implicitly at instantiation time." msgstr "" -#: ../../library/html.parser.rst:120 msgid "Return current line number and offset." msgstr "" -#: ../../library/html.parser.rst:125 -msgid "" -"Return the text of the most recently opened start tag. This should not " -"normally be needed for structured processing, but may be useful in dealing " -"with HTML \"as deployed\" or for re-generating input with minimal changes " -"(whitespace between attributes can be preserved, etc.)." +msgid "Return the text of the most recently opened start tag. This should not normally be needed for structured processing, but may be useful in dealing with HTML \"as deployed\" or for re-generating input with minimal changes (whitespace between attributes can be preserved, etc.)." msgstr "" -#: ../../library/html.parser.rst:131 -msgid "" -"The following methods are called when data or markup elements are " -"encountered and they are meant to be overridden in a subclass. The base " -"class implementations do nothing (except " -"for :meth:`~HTMLParser.handle_startendtag`):" +msgid "The following methods are called when data or markup elements are encountered and they are meant to be overridden in a subclass. The base class implementations do nothing (except for :meth:`~HTMLParser.handle_startendtag`):" msgstr "" -#: ../../library/html.parser.rst:138 -msgid "" -"This method is called to handle the start tag of an element (e.g. ``
``)." +msgid "This method is called to handle the start tag of an element (e.g. ``
``)." msgstr "" -#: ../../library/html.parser.rst:140 -msgid "" -"The *tag* argument is the name of the tag converted to lower case. The " -"*attrs* argument is a list of ``(name, value)`` pairs containing the " -"attributes found inside the tag's ``<>`` brackets. The *name* will be " -"translated to lower case, and quotes in the *value* have been removed, and " -"character and entity references have been replaced. For empty attributes, " -"*value* is ``None``." +msgid "The *tag* argument is the name of the tag converted to lower case. The *attrs* argument is a list of ``(name, value)`` pairs containing the attributes found inside the tag's ``<>`` brackets. The *name* will be translated to lower case, and quotes in the *value* have been removed, and character and entity references have been replaced. For empty attributes, *value* is ``None``." msgstr "" -#: ../../library/html.parser.rst:146 -msgid "" -"For instance, for the tag ````, this method " -"would be called as ``handle_starttag('a', [('href', 'https://" -"www.cwi.nl/')])``." +msgid "For instance, for the tag ````, this method would be called as ``handle_starttag('a', [('href', 'https://www.cwi.nl/')])``." msgstr "" -#: ../../library/html.parser.rst:149 -msgid "" -"All entity references from :mod:`html.entities` are replaced in the " -"attribute values." +msgid "All entity references from :mod:`html.entities` are replaced in the attribute values." msgstr "" -#: ../../library/html.parser.rst:155 -msgid "" -"This method is called to handle the end tag of an element (e.g. ``
``)." +msgid "This method is called to handle the end tag of an element (e.g. ``
``)." msgstr "" -#: ../../library/html.parser.rst:157 msgid "The *tag* argument is the name of the tag converted to lower case." msgstr "" -#: ../../library/html.parser.rst:162 -msgid "" -"Similar to :meth:`handle_starttag`, but called when the parser encounters an " -"XHTML-style empty tag (````). This method may be overridden by " -"subclasses which require this particular lexical information; the default " -"implementation simply calls :meth:`handle_starttag` " -"and :meth:`handle_endtag`." +msgid "Similar to :meth:`handle_starttag`, but called when the parser encounters an XHTML-style empty tag (````). This method may be overridden by subclasses which require this particular lexical information; the default implementation simply calls :meth:`handle_starttag` and :meth:`handle_endtag`." msgstr "" -#: ../../library/html.parser.rst:170 -msgid "" -"This method is called to process arbitrary data (e.g. text nodes and the " -"content of elements like ``script`` and ``style``)." +msgid "This method is called to process arbitrary data (e.g. text nodes and the content of elements like ``script`` and ``style``)." msgstr "" -#: ../../library/html.parser.rst:176 -msgid "" -"This method is called to process a named character reference of the form " -"``&name;`` (e.g. ``>``), where *name* is a general entity reference (e.g. " -"``'gt'``). This method is only called if *convert_charrefs* is false." +msgid "This method is called to process a named character reference of the form ``&name;`` (e.g. ``>``), where *name* is a general entity reference (e.g. ``'gt'``). This method is only called if *convert_charrefs* is false." msgstr "" -#: ../../library/html.parser.rst:184 -msgid "" -"This method is called to process decimal and hexadecimal numeric character " -"references of the form :samp:`&#{NNN};` and :samp:`&#x{NNN};`. For example, " -"the decimal equivalent for ``>`` is ``>``, whereas the hexadecimal is " -"``>``; in this case the method will receive ``'62'`` or ``'x3E'``. This " -"method is only called if *convert_charrefs* is false." +msgid "This method is called to process decimal and hexadecimal numeric character references of the form :samp:`&#{NNN};` and :samp:`&#x{NNN};`. For example, the decimal equivalent for ``>`` is ``>``, whereas the hexadecimal is ``>``; in this case the method will receive ``'62'`` or ``'x3E'``. This method is only called if *convert_charrefs* is false." msgstr "" -#: ../../library/html.parser.rst:193 -msgid "" -"This method is called when a comment is encountered (e.g. ````)." msgstr "" -#: ../../library/html.parser.rst:195 -msgid "" -"For example, the comment ```` will cause this method to be " -"called with the argument ``' comment '``." +msgid "For example, the comment ```` will cause this method to be called with the argument ``' comment '``." msgstr "" -#: ../../library/html.parser.rst:198 -msgid "" -"The content of Internet Explorer conditional comments (condcoms) will also " -"be sent to this method, so, for ````, this method will receive ``'[if IE 9]>IE9-specific contentIE9-specific content``, this method will receive ``'[if IE 9]>IE9-specific content``)." +msgid "This method is called to handle an HTML doctype declaration (e.g. ````)." msgstr "" -#: ../../library/html.parser.rst:208 -msgid "" -"The *decl* parameter will be the entire contents of the declaration inside " -"the ```` markup (e.g. ``'DOCTYPE html'``)." +msgid "The *decl* parameter will be the entire contents of the declaration inside the ```` markup (e.g. ``'DOCTYPE html'``)." msgstr "" -#: ../../library/html.parser.rst:214 -msgid "" -"Method called when a processing instruction is encountered. The *data* " -"parameter will contain the entire processing instruction. For example, for " -"the processing instruction ````, this method would be " -"called as ``handle_pi(\"proc color='red'\")``. It is intended to be " -"overridden by a derived class; the base class implementation does nothing." +msgid "Method called when a processing instruction is encountered. The *data* parameter will contain the entire processing instruction. For example, for the processing instruction ````, this method would be called as ``handle_pi(\"proc color='red'\")``. It is intended to be overridden by a derived class; the base class implementation does nothing." msgstr "" -#: ../../library/html.parser.rst:222 -msgid "" -"The :class:`HTMLParser` class uses the SGML syntactic rules for processing " -"instructions. An XHTML processing instruction using the trailing ``'?'`` " -"will cause the ``'?'`` to be included in *data*." +msgid "The :class:`HTMLParser` class uses the SGML syntactic rules for processing instructions. An XHTML processing instruction using the trailing ``'?'`` will cause the ``'?'`` to be included in *data*." msgstr "" -#: ../../library/html.parser.rst:229 -msgid "" -"This method is called when an unrecognized declaration is read by the parser." +msgid "This method is called when an unrecognized declaration is read by the parser." msgstr "" -#: ../../library/html.parser.rst:231 -msgid "" -"The *data* parameter will be the entire contents of the declaration inside " -"the ```` markup. It is sometimes useful to be overridden by a " -"derived class. The base class implementation does nothing." +msgid "The *data* parameter will be the entire contents of the declaration inside the ```` markup. It is sometimes useful to be overridden by a derived class. The base class implementation does nothing." msgstr "" -#: ../../library/html.parser.rst:239 msgid "Examples" msgstr "" -#: ../../library/html.parser.rst:241 -msgid "" -"The following class implements a parser that will be used to illustrate more " -"examples:" +msgid "The following class implements a parser that will be used to illustrate more examples:" msgstr "" -#: ../../library/html.parser.rst:244 msgid "" "from html.parser import HTMLParser\n" "from html.entities import name2codepoint\n" @@ -359,23 +222,18 @@ msgid "" "parser = MyHTMLParser()" msgstr "" -#: ../../library/html.parser.rst:280 msgid "Parsing a doctype:" msgstr "" -#: ../../library/html.parser.rst:282 msgid "" ">>> parser.feed('')\n" -"Decl : DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01//EN\" \"http://" -"www.w3.org/TR/html4/strict.dtd\"" +"Decl : DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01//EN\" \"http://www.w3.org/TR/html4/strict.dtd\"" msgstr "" -#: ../../library/html.parser.rst:288 msgid "Parsing an element with a few attributes and a title:" msgstr "" -#: ../../library/html.parser.rst:290 msgid "" ">>> parser.feed('\"The')\n" "Start tag: img\n" @@ -388,16 +246,11 @@ msgid "" "End tag : h1" msgstr "" -#: ../../library/html.parser.rst:302 -msgid "" -"The content of elements like ``script`` and ``style`` is returned as is, " -"without further parsing:" +msgid "The content of elements like ``script`` and ``style`` is returned as is, without further parsing:" msgstr "" -#: ../../library/html.parser.rst:305 msgid "" -">>> parser.feed('')\n" "Start tag: style\n" " attr: ('type', 'text/css')\n" "Data : #python { color: green }\n" @@ -411,17 +264,11 @@ msgid "" "End tag : script" msgstr "" -#: ../../library/html.parser.rst:320 -msgid "" -"Attribute names are converted to lowercase, quotes from attribute values " -"removed, and ``None`` is returned as *value* for empty attributes (such as " -"``checked``):" +msgid "Attribute names are converted to lowercase, quotes from attribute values removed, and ``None`` is returned as *value* for empty attributes (such as ``checked``):" msgstr "" -#: ../../library/html.parser.rst:323 msgid "" -">>> parser.feed(\"\")\n" +">>> parser.feed(\"\")\n" "Start tag: input\n" " attr: ('type', 'checkbox')\n" " attr: ('checked', None)\n" @@ -429,11 +276,9 @@ msgid "" " attr: ('disabled', 'disabled')" msgstr "" -#: ../../library/html.parser.rst:332 msgid "Parsing comments:" msgstr "" -#: ../../library/html.parser.rst:334 msgid "" ">>> parser.feed(''\n" "... '')\n" @@ -441,13 +286,9 @@ msgid "" "Comment : [if IE 9]>IE-specific content'``):" +msgid "Parsing named and numeric character references and converting them to the correct char (note: these 3 references are all equivalent to ``'>'``):" msgstr "" -#: ../../library/html.parser.rst:344 msgid "" ">>> parser = MyHTMLParser()\n" ">>> parser.feed('>>>')\n" @@ -460,14 +301,9 @@ msgid "" "Num ent : >" msgstr "" -#: ../../library/html.parser.rst:356 -msgid "" -"Feeding incomplete chunks to :meth:`~HTMLParser.feed` works, " -"but :meth:`~HTMLParser.handle_data` might be called more than once if " -"*convert_charrefs* is false:" +msgid "Feeding incomplete chunks to :meth:`~HTMLParser.feed` works, but :meth:`~HTMLParser.handle_data` might be called more than once if *convert_charrefs* is false:" msgstr "" -#: ../../library/html.parser.rst:360 msgid "" ">>> for chunk in ['buff', 'ered', ' text']:\n" "... parser.feed(chunk)\n" @@ -479,11 +315,9 @@ msgid "" "End tag : span" msgstr "" -#: ../../library/html.parser.rst:371 msgid "Parsing invalid HTML (e.g. unquoted attributes) also works:" msgstr "" -#: ../../library/html.parser.rst:373 msgid "" ">>> parser.feed('

tag soup

')\n" "Start tag: p\n" @@ -495,10 +329,8 @@ msgid "" "End tag : a" msgstr "" -#: ../../library/html.parser.rst:9 msgid "HTML" msgstr "" -#: ../../library/html.parser.rst:9 msgid "XHTML" msgstr "" diff --git a/library/html.po b/library/html.po index 82d508ee..8fdbe9b7 100644 --- a/library/html.po +++ b/library/html.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:07+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,46 +21,26 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/html.rst:2 msgid ":mod:`!html` --- HyperText Markup Language support" msgstr "" -#: ../../library/html.rst:7 msgid "**Source code:** :source:`Lib/html/__init__.py`" msgstr "" -#: ../../library/html.rst:11 msgid "This module defines utilities to manipulate HTML." msgstr "" -#: ../../library/html.rst:15 -msgid "" -"Convert the characters ``&``, ``<`` and ``>`` in string *s* to HTML-safe " -"sequences. Use this if you need to display text that might contain such " -"characters in HTML. If the optional flag *quote* is true (the default), the " -"characters (``\"``) and (``'``) are also translated; this helps for " -"inclusion in an HTML attribute value delimited by quotes, as in ````. If *quote* is set to false, the characters (``\"``) and " -"(``'``) are not translated." +msgid "Convert the characters ``&``, ``<`` and ``>`` in string *s* to HTML-safe sequences. Use this if you need to display text that might contain such characters in HTML. If the optional flag *quote* is true (the default), the characters (``\"``) and (``'``) are also translated; this helps for inclusion in an HTML attribute value delimited by quotes, as in ````. If *quote* is set to false, the characters (``\"``) and (``'``) are not translated." msgstr "" -#: ../../library/html.rst:29 -msgid "" -"Convert all named and numeric character references (e.g. ``>``, " -"``>``, ``>``) in the string *s* to the corresponding Unicode " -"characters. This function uses the rules defined by the HTML 5 standard for " -"both valid and invalid character references, and the :data:`list of HTML 5 " -"named character references `." +msgid "Convert all named and numeric character references (e.g. ``>``, ``>``, ``>``) in the string *s* to the corresponding Unicode characters. This function uses the rules defined by the HTML 5 standard for both valid and invalid character references, and the :data:`list of HTML 5 named character references `." msgstr "" -#: ../../library/html.rst:39 msgid "Submodules in the ``html`` package are:" msgstr "" -#: ../../library/html.rst:41 msgid ":mod:`html.parser` -- HTML/XHTML parser with lenient parsing mode" msgstr "" -#: ../../library/html.rst:42 msgid ":mod:`html.entities` -- HTML entity definitions" msgstr "" diff --git a/library/http.client.po b/library/http.client.po index 8f044187..43742dab 100644 --- a/library/http.client.po +++ b/library/http.client.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:07+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,68 +24,36 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/http.client.rst:2 msgid ":mod:`!http.client` --- HTTP protocol client" msgstr "" -#: ../../library/http.client.rst:7 msgid "**Source code:** :source:`Lib/http/client.py`" msgstr "" -#: ../../library/http.client.rst:17 -msgid "" -"This module defines classes that implement the client side of the HTTP and " -"HTTPS protocols. It is normally not used directly --- the " -"module :mod:`urllib.request` uses it to handle URLs that use HTTP and HTTPS." +msgid "This module defines classes that implement the client side of the HTTP and HTTPS protocols. It is normally not used directly --- the module :mod:`urllib.request` uses it to handle URLs that use HTTP and HTTPS." msgstr "" -#: ../../library/http.client.rst:23 -msgid "" -"The `Requests package `_ is " -"recommended for a higher-level HTTP client interface." +msgid "The `Requests package `_ is recommended for a higher-level HTTP client interface." msgstr "" -#: ../../library/http.client.rst:28 -msgid "" -"HTTPS support is only available if Python was compiled with SSL support " -"(through the :mod:`ssl` module)." +msgid "HTTPS support is only available if Python was compiled with SSL support (through the :mod:`ssl` module)." msgstr "" -#: ../../includes/wasm-notavail.rst:3 msgid "Availability" msgstr "" -#: ../../includes/wasm-notavail.rst:5 -msgid "" -"This module does not work or is not available on WebAssembly. See :ref:`wasm-" -"availability` for more information." +msgid "This module does not work or is not available on WebAssembly. See :ref:`wasm-availability` for more information." msgstr "" -#: ../../library/http.client.rst:33 msgid "The module provides the following classes:" msgstr "" -#: ../../library/http.client.rst:39 -msgid "" -"An :class:`HTTPConnection` instance represents one transaction with an HTTP " -"server. It should be instantiated by passing it a host and optional port " -"number. If no port number is passed, the port is extracted from the host " -"string if it has the form ``host:port``, else the default HTTP port (80) is " -"used. If the optional *timeout* parameter is given, blocking operations " -"(like connection attempts) will timeout after that many seconds (if it is " -"not given, the global default timeout setting is used). The optional " -"*source_address* parameter may be a tuple of a (host, port) to use as the " -"source address the HTTP connection is made from. The optional *blocksize* " -"parameter sets the buffer size in bytes for sending a file-like message body." -msgstr "" - -#: ../../library/http.client.rst:51 -msgid "" -"For example, the following calls all create instances that connect to the " -"server at the same host and port::" +msgid "An :class:`HTTPConnection` instance represents one transaction with an HTTP server. It should be instantiated by passing it a host and optional port number. If no port number is passed, the port is extracted from the host string if it has the form ``host:port``, else the default HTTP port (80) is used. If the optional *timeout* parameter is given, blocking operations (like connection attempts) will timeout after that many seconds (if it is not given, the global default timeout setting is used). The optional *source_address* parameter may be a tuple of a (host, port) to use as the source address the HTTP connection is made from. The optional *blocksize* parameter sets the buffer size in bytes for sending a file-like message body." +msgstr "" + +msgid "For example, the following calls all create instances that connect to the server at the same host and port::" msgstr "" -#: ../../library/http.client.rst:54 msgid "" ">>> h1 = http.client.HTTPConnection('www.python.org')\n" ">>> h2 = http.client.HTTPConnection('www.python.org:80')\n" @@ -93,261 +61,129 @@ msgid "" ">>> h4 = http.client.HTTPConnection('www.python.org', 80, timeout=10)" msgstr "" -#: ../../library/http.client.rst:59 msgid "*source_address* was added." msgstr "" -#: ../../library/http.client.rst:62 -msgid "" -"The *strict* parameter was removed. HTTP 0.9-style \"Simple Responses\" are " -"no longer supported." +msgid "The *strict* parameter was removed. HTTP 0.9-style \"Simple Responses\" are no longer supported." msgstr "" -#: ../../library/http.client.rst:66 msgid "*blocksize* parameter was added." msgstr "" -#: ../../library/http.client.rst:74 -msgid "" -"A subclass of :class:`HTTPConnection` that uses SSL for communication with " -"secure servers. Default port is ``443``. If *context* is specified, it " -"must be a :class:`ssl.SSLContext` instance describing the various SSL " -"options." +msgid "A subclass of :class:`HTTPConnection` that uses SSL for communication with secure servers. Default port is ``443``. If *context* is specified, it must be a :class:`ssl.SSLContext` instance describing the various SSL options." msgstr "" -#: ../../library/http.client.rst:79 msgid "Please read :ref:`ssl-security` for more information on best practices." msgstr "" -#: ../../library/http.client.rst:81 msgid "*source_address*, *context* and *check_hostname* were added." msgstr "" -#: ../../library/http.client.rst:84 -msgid "" -"This class now supports HTTPS virtual hosts if possible (that is, " -"if :const:`ssl.HAS_SNI` is true)." +msgid "This class now supports HTTPS virtual hosts if possible (that is, if :const:`ssl.HAS_SNI` is true)." msgstr "" -#: ../../library/http.client.rst:88 -msgid "" -"The *strict* parameter was removed. HTTP 0.9-style \"Simple Responses\" are " -"no longer supported." +msgid "The *strict* parameter was removed. HTTP 0.9-style \"Simple Responses\" are no longer supported." msgstr "" -#: ../../library/http.client.rst:92 -msgid "" -"This class now performs all the necessary certificate and hostname checks by " -"default. To revert to the previous, unverified, behavior :func:`!" -"ssl._create_unverified_context` can be passed to the *context* parameter." +msgid "This class now performs all the necessary certificate and hostname checks by default. To revert to the previous, unverified, behavior :func:`!ssl._create_unverified_context` can be passed to the *context* parameter." msgstr "" -#: ../../library/http.client.rst:98 -msgid "" -"This class now enables TLS 1.3 :attr:`ssl.SSLContext.post_handshake_auth` " -"for the default *context* or when *cert_file* is passed with a custom " -"*context*." +msgid "This class now enables TLS 1.3 :attr:`ssl.SSLContext.post_handshake_auth` for the default *context* or when *cert_file* is passed with a custom *context*." msgstr "" -#: ../../library/http.client.rst:103 -msgid "" -"This class now sends an ALPN extension with protocol indicator ``http/1.1`` " -"when no *context* is given. Custom *context* should set ALPN protocols " -"with :meth:`~ssl.SSLContext.set_alpn_protocols`." +msgid "This class now sends an ALPN extension with protocol indicator ``http/1.1`` when no *context* is given. Custom *context* should set ALPN protocols with :meth:`~ssl.SSLContext.set_alpn_protocols`." msgstr "" -#: ../../library/http.client.rst:108 -msgid "" -"The deprecated *key_file*, *cert_file* and *check_hostname* parameters have " -"been removed." +msgid "The deprecated *key_file*, *cert_file* and *check_hostname* parameters have been removed." msgstr "" -#: ../../library/http.client.rst:115 -msgid "" -"Class whose instances are returned upon successful connection. Not " -"instantiated directly by user." +msgid "Class whose instances are returned upon successful connection. Not instantiated directly by user." msgstr "" -#: ../../library/http.client.rst:118 -msgid "" -"The *strict* parameter was removed. HTTP 0.9 style \"Simple Responses\" are " -"no longer supported." +msgid "The *strict* parameter was removed. HTTP 0.9 style \"Simple Responses\" are no longer supported." msgstr "" -#: ../../library/http.client.rst:122 msgid "This module provides the following function:" msgstr "" -#: ../../library/http.client.rst:126 -msgid "" -"Parse the headers from a file pointer *fp* representing a HTTP request/" -"response. The file has to be a :class:`~io.BufferedIOBase` reader (i.e. not " -"text) and must provide a valid :rfc:`5322` style header." +msgid "Parse the headers from a file pointer *fp* representing a HTTP request/response. The file has to be a :class:`~io.BufferedIOBase` reader (i.e. not text) and must provide a valid :rfc:`5322` style header." msgstr "" -#: ../../library/http.client.rst:130 -msgid "" -"This function returns an instance of :class:`http.client.HTTPMessage` that " -"holds the header fields, but no payload (the same " -"as :attr:`HTTPResponse.msg` " -"and :attr:`http.server.BaseHTTPRequestHandler.headers`). After returning, " -"the file pointer *fp* is ready to read the HTTP body." +msgid "This function returns an instance of :class:`http.client.HTTPMessage` that holds the header fields, but no payload (the same as :attr:`HTTPResponse.msg` and :attr:`http.server.BaseHTTPRequestHandler.headers`). After returning, the file pointer *fp* is ready to read the HTTP body." msgstr "" -#: ../../library/http.client.rst:137 -msgid "" -":meth:`parse_headers` does not parse the start-line of a HTTP message; it " -"only parses the ``Name: value`` lines. The file has to be ready to read " -"these field lines, so the first line should already be consumed before " -"calling the function." +msgid ":meth:`parse_headers` does not parse the start-line of a HTTP message; it only parses the ``Name: value`` lines. The file has to be ready to read these field lines, so the first line should already be consumed before calling the function." msgstr "" -#: ../../library/http.client.rst:142 msgid "The following exceptions are raised as appropriate:" msgstr "" -#: ../../library/http.client.rst:147 -msgid "" -"The base class of the other exceptions in this module. It is a subclass " -"of :exc:`Exception`." +msgid "The base class of the other exceptions in this module. It is a subclass of :exc:`Exception`." msgstr "" -#: ../../library/http.client.rst:153 ../../library/http.client.rst:164 -#: ../../library/http.client.rst:169 ../../library/http.client.rst:174 -#: ../../library/http.client.rst:179 ../../library/http.client.rst:184 msgid "A subclass of :exc:`HTTPException`." msgstr "" -#: ../../library/http.client.rst:158 -msgid "" -"A subclass of :exc:`HTTPException`, raised if a port is given and is either " -"non-numeric or empty." +msgid "A subclass of :exc:`HTTPException`, raised if a port is given and is either non-numeric or empty." msgstr "" -#: ../../library/http.client.rst:189 ../../library/http.client.rst:194 -#: ../../library/http.client.rst:199 msgid "A subclass of :exc:`ImproperConnectionState`." msgstr "" -#: ../../library/http.client.rst:204 -msgid "" -"A subclass of :exc:`HTTPException`. Raised if a server responds with a HTTP " -"status code that we don't understand." +msgid "A subclass of :exc:`HTTPException`. Raised if a server responds with a HTTP status code that we don't understand." msgstr "" -#: ../../library/http.client.rst:210 -msgid "" -"A subclass of :exc:`HTTPException`. Raised if an excessively long line is " -"received in the HTTP protocol from the server." +msgid "A subclass of :exc:`HTTPException`. Raised if an excessively long line is received in the HTTP protocol from the server." msgstr "" -#: ../../library/http.client.rst:216 -msgid "" -"A subclass of :exc:`ConnectionResetError` and :exc:`BadStatusLine`. Raised " -"by :meth:`HTTPConnection.getresponse` when the attempt to read the response " -"results in no data read from the connection, indicating that the remote end " -"has closed the connection." +msgid "A subclass of :exc:`ConnectionResetError` and :exc:`BadStatusLine`. Raised by :meth:`HTTPConnection.getresponse` when the attempt to read the response results in no data read from the connection, indicating that the remote end has closed the connection." msgstr "" -#: ../../library/http.client.rst:221 msgid "Previously, :exc:`BadStatusLine`\\ ``('')`` was raised." msgstr "" -#: ../../library/http.client.rst:225 msgid "The constants defined in this module are:" msgstr "" -#: ../../library/http.client.rst:229 msgid "The default port for the HTTP protocol (always ``80``)." msgstr "" -#: ../../library/http.client.rst:233 msgid "The default port for the HTTPS protocol (always ``443``)." msgstr "" -#: ../../library/http.client.rst:237 msgid "This dictionary maps the HTTP 1.1 status codes to the W3C names." msgstr "" -#: ../../library/http.client.rst:239 -msgid "" -"Example: ``http.client.responses[http.client.NOT_FOUND]`` is ``'Not Found'``." +msgid "Example: ``http.client.responses[http.client.NOT_FOUND]`` is ``'Not Found'``." msgstr "" -#: ../../library/http.client.rst:241 -msgid "" -"See :ref:`http-status-codes` for a list of HTTP status codes that are " -"available in this module as constants." +msgid "See :ref:`http-status-codes` for a list of HTTP status codes that are available in this module as constants." msgstr "" -#: ../../library/http.client.rst:248 msgid "HTTPConnection Objects" msgstr "" -#: ../../library/http.client.rst:250 msgid ":class:`HTTPConnection` instances have the following methods:" msgstr "" -#: ../../library/http.client.rst:256 -msgid "" -"This will send a request to the server using the HTTP request method " -"*method* and the request URI *url*. The provided *url* must be an absolute " -"path to conform with :rfc:`RFC 2616 §5.1.2 <2616#section-5.1.2>` (unless " -"connecting to an HTTP proxy server or using the ``OPTIONS`` or ``CONNECT`` " -"methods)." +msgid "This will send a request to the server using the HTTP request method *method* and the request URI *url*. The provided *url* must be an absolute path to conform with :rfc:`RFC 2616 §5.1.2 <2616#section-5.1.2>` (unless connecting to an HTTP proxy server or using the ``OPTIONS`` or ``CONNECT`` methods)." msgstr "" -#: ../../library/http.client.rst:262 -msgid "" -"If *body* is specified, the specified data is sent after the headers are " -"finished. It may be a :class:`str`, a :term:`bytes-like object`, an " -"open :term:`file object`, or an iterable of :class:`bytes`. If *body* is a " -"string, it is encoded as ISO-8859-1, the default for HTTP. If it is a bytes-" -"like object, the bytes are sent as is. If it is a :term:`file object`, the " -"contents of the file is sent; this file object should support at least the " -"``read()`` method. If the file object is an instance " -"of :class:`io.TextIOBase`, the data returned by the ``read()`` method will " -"be encoded as ISO-8859-1, otherwise the data returned by ``read()`` is sent " -"as is. If *body* is an iterable, the elements of the iterable are sent as " -"is until the iterable is exhausted." -msgstr "" - -#: ../../library/http.client.rst:274 -msgid "" -"The *headers* argument should be a mapping of extra HTTP headers to send " -"with the request. A :rfc:`Host header <2616#section-14.23>` must be provided " -"to conform with :rfc:`RFC 2616 §5.1.2 <2616#section-5.1.2>` (unless " -"connecting to an HTTP proxy server or using the ``OPTIONS`` or ``CONNECT`` " -"methods)." +msgid "If *body* is specified, the specified data is sent after the headers are finished. It may be a :class:`str`, a :term:`bytes-like object`, an open :term:`file object`, or an iterable of :class:`bytes`. If *body* is a string, it is encoded as ISO-8859-1, the default for HTTP. If it is a bytes-like object, the bytes are sent as is. If it is a :term:`file object`, the contents of the file is sent; this file object should support at least the ``read()`` method. If the file object is an instance of :class:`io.TextIOBase`, the data returned by the ``read()`` method will be encoded as ISO-8859-1, otherwise the data returned by ``read()`` is sent as is. If *body* is an iterable, the elements of the iterable are sent as is until the iterable is exhausted." msgstr "" -#: ../../library/http.client.rst:280 -msgid "" -"If *headers* contains neither Content-Length nor Transfer-Encoding, but " -"there is a request body, one of those header fields will be added " -"automatically. If *body* is ``None``, the Content-Length header is set to " -"``0`` for methods that expect a body (``PUT``, ``POST``, and ``PATCH``). If " -"*body* is a string or a bytes-like object that is not also a :term:`file " -"`, the Content-Length header is set to its length. Any other " -"type of *body* (files and iterables in general) will be chunk-encoded, and " -"the Transfer-Encoding header will automatically be set instead of Content-" -"Length." -msgstr "" - -#: ../../library/http.client.rst:292 -msgid "" -"The *encode_chunked* argument is only relevant if Transfer-Encoding is " -"specified in *headers*. If *encode_chunked* is ``False``, the " -"HTTPConnection object assumes that all encoding is handled by the calling " -"code. If it is ``True``, the body will be chunk-encoded." +msgid "The *headers* argument should be a mapping of extra HTTP headers to send with the request. A :rfc:`Host header <2616#section-14.23>` must be provided to conform with :rfc:`RFC 2616 §5.1.2 <2616#section-5.1.2>` (unless connecting to an HTTP proxy server or using the ``OPTIONS`` or ``CONNECT`` methods)." msgstr "" -#: ../../library/http.client.rst:297 -msgid "" -"For example, to perform a ``GET`` request to ``https://docs.python.org/3/``::" +msgid "If *headers* contains neither Content-Length nor Transfer-Encoding, but there is a request body, one of those header fields will be added automatically. If *body* is ``None``, the Content-Length header is set to ``0`` for methods that expect a body (``PUT``, ``POST``, and ``PATCH``). If *body* is a string or a bytes-like object that is not also a :term:`file `, the Content-Length header is set to its length. Any other type of *body* (files and iterables in general) will be chunk-encoded, and the Transfer-Encoding header will automatically be set instead of Content-Length." +msgstr "" + +msgid "The *encode_chunked* argument is only relevant if Transfer-Encoding is specified in *headers*. If *encode_chunked* is ``False``, the HTTPConnection object assumes that all encoding is handled by the calling code. If it is ``True``, the body will be chunk-encoded." +msgstr "" + +msgid "For example, to perform a ``GET`` request to ``https://docs.python.org/3/``::" msgstr "" -#: ../../library/http.client.rst:299 msgid "" ">>> import http.client\n" ">>> host = \"docs.python.org\"\n" @@ -358,99 +194,45 @@ msgid "" "200 OK" msgstr "" -#: ../../library/http.client.rst:308 -msgid "" -"Chunked transfer encoding has been added to the HTTP protocol version 1.1. " -"Unless the HTTP server is known to handle HTTP 1.1, the caller must either " -"specify the Content-Length, or must pass a :class:`str` or bytes-like object " -"that is not also a file as the body representation." +msgid "Chunked transfer encoding has been added to the HTTP protocol version 1.1. Unless the HTTP server is known to handle HTTP 1.1, the caller must either specify the Content-Length, or must pass a :class:`str` or bytes-like object that is not also a file as the body representation." msgstr "" -#: ../../library/http.client.rst:316 -msgid "" -"Note that you must have read the whole response or call :meth:`close` " -"if :meth:`getresponse` raised an non-:exc:`ConnectionError` exception before " -"you can send a new request to the server." +msgid "Note that you must have read the whole response or call :meth:`close` if :meth:`getresponse` raised an non-:exc:`ConnectionError` exception before you can send a new request to the server." msgstr "" -#: ../../library/http.client.rst:320 msgid "*body* can now be an iterable." msgstr "" -#: ../../library/http.client.rst:323 -msgid "" -"If neither Content-Length nor Transfer-Encoding are set in *headers*, file " -"and iterable *body* objects are now chunk-encoded. The *encode_chunked* " -"argument was added. No attempt is made to determine the Content-Length for " -"file objects." +msgid "If neither Content-Length nor Transfer-Encoding are set in *headers*, file and iterable *body* objects are now chunk-encoded. The *encode_chunked* argument was added. No attempt is made to determine the Content-Length for file objects." msgstr "" -#: ../../library/http.client.rst:332 -msgid "" -"Should be called after a request is sent to get the response from the " -"server. Returns an :class:`HTTPResponse` instance." +msgid "Should be called after a request is sent to get the response from the server. Returns an :class:`HTTPResponse` instance." msgstr "" -#: ../../library/http.client.rst:335 -msgid "" -"If a :exc:`ConnectionError` or subclass is raised, " -"the :class:`HTTPConnection` object will be ready to reconnect when a new " -"request is sent." +msgid "If a :exc:`ConnectionError` or subclass is raised, the :class:`HTTPConnection` object will be ready to reconnect when a new request is sent." msgstr "" -#: ../../library/http.client.rst:340 -msgid "" -"Note that this does not apply to :exc:`OSError`\\s raised by the underlying " -"socket. Instead the caller is responsible to call :meth:`close` on the " -"existing connection." +msgid "Note that this does not apply to :exc:`OSError`\\s raised by the underlying socket. Instead the caller is responsible to call :meth:`close` on the existing connection." msgstr "" -#: ../../library/http.client.rst:347 -msgid "" -"Set the debugging level. The default debug level is ``0``, meaning no " -"debugging output is printed. Any value greater than ``0`` will cause all " -"currently defined debug output to be printed to stdout. The ``debuglevel`` " -"is passed to any new :class:`HTTPResponse` objects that are created." +msgid "Set the debugging level. The default debug level is ``0``, meaning no debugging output is printed. Any value greater than ``0`` will cause all currently defined debug output to be printed to stdout. The ``debuglevel`` is passed to any new :class:`HTTPResponse` objects that are created." msgstr "" -#: ../../library/http.client.rst:357 -msgid "" -"Set the host and the port for HTTP Connect Tunnelling. This allows running " -"the connection through a proxy server." +msgid "Set the host and the port for HTTP Connect Tunnelling. This allows running the connection through a proxy server." msgstr "" -#: ../../library/http.client.rst:360 -msgid "" -"The *host* and *port* arguments specify the endpoint of the tunneled " -"connection (i.e. the address included in the CONNECT request, *not* the " -"address of the proxy server)." +msgid "The *host* and *port* arguments specify the endpoint of the tunneled connection (i.e. the address included in the CONNECT request, *not* the address of the proxy server)." msgstr "" -#: ../../library/http.client.rst:364 -msgid "" -"The *headers* argument should be a mapping of extra HTTP headers to send " -"with the CONNECT request." +msgid "The *headers* argument should be a mapping of extra HTTP headers to send with the CONNECT request." msgstr "" -#: ../../library/http.client.rst:367 -msgid "" -"As HTTP/1.1 is used for HTTP CONNECT tunnelling request, `as per the RFC " -"`_, a HTTP " -"``Host:`` header must be provided, matching the authority-form of the " -"request target provided as the destination for the CONNECT request. If a " -"HTTP ``Host:`` header is not provided via the headers argument, one is " -"generated and transmitted automatically." +msgid "As HTTP/1.1 is used for HTTP CONNECT tunnelling request, `as per the RFC `_, a HTTP ``Host:`` header must be provided, matching the authority-form of the request target provided as the destination for the CONNECT request. If a HTTP ``Host:`` header is not provided via the headers argument, one is generated and transmitted automatically." msgstr "" -#: ../../library/http.client.rst:374 -msgid "" -"For example, to tunnel through a HTTPS proxy server running locally on port " -"8080, we would pass the address of the proxy to the :class:`HTTPSConnection` " -"constructor, and the address of the host that we eventually want to reach to " -"the :meth:`~HTTPConnection.set_tunnel` method::" +msgid "For example, to tunnel through a HTTPS proxy server running locally on port 8080, we would pass the address of the proxy to the :class:`HTTPSConnection` constructor, and the address of the host that we eventually want to reach to the :meth:`~HTTPConnection.set_tunnel` method::" msgstr "" -#: ../../library/http.client.rst:379 msgid "" ">>> import http.client\n" ">>> conn = http.client.HTTPSConnection(\"localhost\", 8080)\n" @@ -458,221 +240,117 @@ msgid "" ">>> conn.request(\"HEAD\",\"/index.html\")" msgstr "" -#: ../../library/http.client.rst:386 -msgid "" -"HTTP CONNECT tunnelling requests use protocol HTTP/1.1, upgraded from " -"protocol HTTP/1.0. ``Host:`` HTTP headers are mandatory for HTTP/1.1, so one " -"will be automatically generated and transmitted if not provided in the " -"headers argument." +msgid "HTTP CONNECT tunnelling requests use protocol HTTP/1.1, upgraded from protocol HTTP/1.0. ``Host:`` HTTP headers are mandatory for HTTP/1.1, so one will be automatically generated and transmitted if not provided in the headers argument." msgstr "" -#: ../../library/http.client.rst:395 -msgid "" -"Returns a dictionary with the headers of the response received from the " -"proxy server to the CONNECT request." +msgid "Returns a dictionary with the headers of the response received from the proxy server to the CONNECT request." msgstr "" -#: ../../library/http.client.rst:398 msgid "If the CONNECT request was not sent, the method returns ``None``." msgstr "" -#: ../../library/http.client.rst:405 -msgid "" -"Connect to the server specified when the object was created. By default, " -"this is called automatically when making a request if the client does not " -"already have a connection." +msgid "Connect to the server specified when the object was created. By default, this is called automatically when making a request if the client does not already have a connection." msgstr "" -#: ../../library/http.client.rst:409 -msgid "" -"Raises an :ref:`auditing event ` ``http.client.connect`` with " -"arguments ``self``, ``host``, ``port``." +msgid "Raises an :ref:`auditing event ` ``http.client.connect`` with arguments ``self``, ``host``, ``port``." msgstr "" -#: ../../library/http.client.rst:414 msgid "Close the connection to the server." msgstr "" -#: ../../library/http.client.rst:419 msgid "Buffer size in bytes for sending a file-like message body." msgstr "" -#: ../../library/http.client.rst:424 -msgid "" -"As an alternative to using the :meth:`~HTTPConnection.request` method " -"described above, you can also send your request step by step, by using the " -"four functions below." +msgid "As an alternative to using the :meth:`~HTTPConnection.request` method described above, you can also send your request step by step, by using the four functions below." msgstr "" -#: ../../library/http.client.rst:431 -msgid "" -"This should be the first call after the connection to the server has been " -"made. It sends a line to the server consisting of the *method* string, the " -"*url* string, and the HTTP version (``HTTP/1.1``). To disable automatic " -"sending of ``Host:`` or ``Accept-Encoding:`` headers (for example to accept " -"additional content encodings), specify *skip_host* or *skip_accept_encoding* " -"with non-False values." +msgid "This should be the first call after the connection to the server has been made. It sends a line to the server consisting of the *method* string, the *url* string, and the HTTP version (``HTTP/1.1``). To disable automatic sending of ``Host:`` or ``Accept-Encoding:`` headers (for example to accept additional content encodings), specify *skip_host* or *skip_accept_encoding* with non-False values." msgstr "" -#: ../../library/http.client.rst:441 -msgid "" -"Send an :rfc:`822`\\ -style header to the server. It sends a line to the " -"server consisting of the header, a colon and a space, and the first " -"argument. If more arguments are given, continuation lines are sent, each " -"consisting of a tab and an argument." +msgid "Send an :rfc:`822`\\ -style header to the server. It sends a line to the server consisting of the header, a colon and a space, and the first argument. If more arguments are given, continuation lines are sent, each consisting of a tab and an argument." msgstr "" -#: ../../library/http.client.rst:449 -msgid "" -"Send a blank line to the server, signalling the end of the headers. The " -"optional *message_body* argument can be used to pass a message body " -"associated with the request." +msgid "Send a blank line to the server, signalling the end of the headers. The optional *message_body* argument can be used to pass a message body associated with the request." msgstr "" -#: ../../library/http.client.rst:453 -msgid "" -"If *encode_chunked* is ``True``, the result of each iteration of " -"*message_body* will be chunk-encoded as specified in :rfc:`7230`, Section " -"3.3.1. How the data is encoded is dependent on the type of *message_body*. " -"If *message_body* implements the :ref:`buffer interface ` the " -"encoding will result in a single chunk. If *message_body* is " -"a :class:`collections.abc.Iterable`, each iteration of *message_body* will " -"result in a chunk. If *message_body* is a :term:`file object`, each call to " -"``.read()`` will result in a chunk. The method automatically signals the end " -"of the chunk-encoded data immediately after *message_body*." -msgstr "" - -#: ../../library/http.client.rst:464 -msgid "" -"Due to the chunked encoding specification, empty chunks yielded by an " -"iterator body will be ignored by the chunk-encoder. This is to avoid " -"premature termination of the read of the request by the target server due to " -"malformed encoding." +msgid "If *encode_chunked* is ``True``, the result of each iteration of *message_body* will be chunk-encoded as specified in :rfc:`7230`, Section 3.3.1. How the data is encoded is dependent on the type of *message_body*. If *message_body* implements the :ref:`buffer interface ` the encoding will result in a single chunk. If *message_body* is a :class:`collections.abc.Iterable`, each iteration of *message_body* will result in a chunk. If *message_body* is a :term:`file object`, each call to ``.read()`` will result in a chunk. The method automatically signals the end of the chunk-encoded data immediately after *message_body*." +msgstr "" + +msgid "Due to the chunked encoding specification, empty chunks yielded by an iterator body will be ignored by the chunk-encoder. This is to avoid premature termination of the read of the request by the target server due to malformed encoding." msgstr "" -#: ../../library/http.client.rst:469 msgid "Added chunked encoding support and the *encode_chunked* parameter." msgstr "" -#: ../../library/http.client.rst:475 -msgid "" -"Send data to the server. This should be used directly only after " -"the :meth:`endheaders` method has been called and before :meth:`getresponse` " -"is called." +msgid "Send data to the server. This should be used directly only after the :meth:`endheaders` method has been called and before :meth:`getresponse` is called." msgstr "" -#: ../../library/http.client.rst:479 -msgid "" -"Raises an :ref:`auditing event ` ``http.client.send`` with " -"arguments ``self``, ``data``." +msgid "Raises an :ref:`auditing event ` ``http.client.send`` with arguments ``self``, ``data``." msgstr "" -#: ../../library/http.client.rst:485 msgid "HTTPResponse Objects" msgstr "" -#: ../../library/http.client.rst:487 -msgid "" -"An :class:`HTTPResponse` instance wraps the HTTP response from the server. " -"It provides access to the request headers and the entity body. The response " -"is an iterable object and can be used in a with statement." +msgid "An :class:`HTTPResponse` instance wraps the HTTP response from the server. It provides access to the request headers and the entity body. The response is an iterable object and can be used in a with statement." msgstr "" -#: ../../library/http.client.rst:492 -msgid "" -"The :class:`io.BufferedIOBase` interface is now implemented and all of its " -"reader operations are supported." +msgid "The :class:`io.BufferedIOBase` interface is now implemented and all of its reader operations are supported." msgstr "" -#: ../../library/http.client.rst:499 msgid "Reads and returns the response body, or up to the next *amt* bytes." msgstr "" -#: ../../library/http.client.rst:503 -msgid "" -"Reads up to the next len(b) bytes of the response body into the buffer *b*. " -"Returns the number of bytes read." +msgid "Reads up to the next len(b) bytes of the response body into the buffer *b*. Returns the number of bytes read." msgstr "" -#: ../../library/http.client.rst:510 -msgid "" -"Return the value of the header *name*, or *default* if there is no header " -"matching *name*. If there is more than one header with the name *name*, " -"return all of the values joined by ', '. If *default* is any iterable other " -"than a single string, its elements are similarly returned joined by commas." +msgid "Return the value of the header *name*, or *default* if there is no header matching *name*. If there is more than one header with the name *name*, return all of the values joined by ', '. If *default* is any iterable other than a single string, its elements are similarly returned joined by commas." msgstr "" -#: ../../library/http.client.rst:517 msgid "Return a list of (header, value) tuples." msgstr "" -#: ../../library/http.client.rst:521 msgid "Return the ``fileno`` of the underlying socket." msgstr "" -#: ../../library/http.client.rst:525 -msgid "" -"A :class:`http.client.HTTPMessage` instance containing the response " -"headers. :class:`http.client.HTTPMessage` is a subclass " -"of :class:`email.message.Message`." +msgid "A :class:`http.client.HTTPMessage` instance containing the response headers. :class:`http.client.HTTPMessage` is a subclass of :class:`email.message.Message`." msgstr "" -#: ../../library/http.client.rst:531 -msgid "" -"HTTP protocol version used by server. 10 for HTTP/1.0, 11 for HTTP/1.1." +msgid "HTTP protocol version used by server. 10 for HTTP/1.0, 11 for HTTP/1.1." msgstr "" -#: ../../library/http.client.rst:535 -msgid "" -"URL of the resource retrieved, commonly used to determine if a redirect was " -"followed." +msgid "URL of the resource retrieved, commonly used to determine if a redirect was followed." msgstr "" -#: ../../library/http.client.rst:539 -msgid "" -"Headers of the response in the form of " -"an :class:`email.message.EmailMessage` instance." +msgid "Headers of the response in the form of an :class:`email.message.EmailMessage` instance." msgstr "" -#: ../../library/http.client.rst:543 msgid "Status code returned by server." msgstr "" -#: ../../library/http.client.rst:547 msgid "Reason phrase returned by server." msgstr "" -#: ../../library/http.client.rst:551 -msgid "" -"A debugging hook. If :attr:`debuglevel` is greater than zero, messages will " -"be printed to stdout as the response is read and parsed." +msgid "A debugging hook. If :attr:`debuglevel` is greater than zero, messages will be printed to stdout as the response is read and parsed." msgstr "" -#: ../../library/http.client.rst:556 msgid "Is ``True`` if the stream is closed." msgstr "" -#: ../../library/http.client.rst:560 msgid "Deprecated in favor of :attr:`~HTTPResponse.url`." msgstr "" -#: ../../library/http.client.rst:565 msgid "Deprecated in favor of :attr:`~HTTPResponse.headers`." msgstr "" -#: ../../library/http.client.rst:570 msgid "Deprecated in favor of :attr:`~HTTPResponse.status`." msgstr "" -#: ../../library/http.client.rst:574 msgid "Examples" msgstr "" -#: ../../library/http.client.rst:576 msgid "Here is an example session that uses the ``GET`` method::" msgstr "" -#: ../../library/http.client.rst:578 msgid "" ">>> import http.client\n" ">>> conn = http.client.HTTPSConnection(\"www.python.org\")\n" @@ -698,13 +376,9 @@ msgid "" ">>> conn.close()" msgstr "" -#: ../../library/http.client.rst:601 -msgid "" -"Here is an example session that uses the ``HEAD`` method. Note that the " -"``HEAD`` method never returns any data. ::" +msgid "Here is an example session that uses the ``HEAD`` method. Note that the ``HEAD`` method never returns any data. ::" msgstr "" -#: ../../library/http.client.rst:604 msgid "" ">>> import http.client\n" ">>> conn = http.client.HTTPSConnection(\"www.python.org\")\n" @@ -719,15 +393,12 @@ msgid "" "True" msgstr "" -#: ../../library/http.client.rst:616 msgid "Here is an example session that uses the ``POST`` method::" msgstr "" -#: ../../library/http.client.rst:618 msgid "" ">>> import http.client, urllib.parse\n" -">>> params = urllib.parse.urlencode({'@number': 12524, '@type': 'issue', " -"'@action': 'show'})\n" +">>> params = urllib.parse.urlencode({'@number': 12524, '@type': 'issue', '@action': 'show'})\n" ">>> headers = {\"Content-type\": \"application/x-www-form-urlencoded\",\n" "... \"Accept\": \"text/plain\"}\n" ">>> conn = http.client.HTTPConnection(\"bugs.python.org\")\n" @@ -737,22 +408,13 @@ msgid "" "302 Found\n" ">>> data = response.read()\n" ">>> data\n" -"b'Redirecting to https://" -"bugs.python.org/issue12524'\n" +"b'Redirecting to https://bugs.python.org/issue12524'\n" ">>> conn.close()" msgstr "" -#: ../../library/http.client.rst:632 -msgid "" -"Client side HTTP ``PUT`` requests are very similar to ``POST`` requests. The " -"difference lies only on the server side where HTTP servers will allow " -"resources to be created via ``PUT`` requests. It should be noted that custom " -"HTTP methods are also handled in :class:`urllib.request.Request` by setting " -"the appropriate method attribute. Here is an example session that uses the " -"``PUT`` method::" +msgid "Client side HTTP ``PUT`` requests are very similar to ``POST`` requests. The difference lies only on the server side where HTTP servers will allow resources to be created via ``PUT`` requests. It should be noted that custom HTTP methods are also handled in :class:`urllib.request.Request` by setting the appropriate method attribute. Here is an example session that uses the ``PUT`` method::" msgstr "" -#: ../../library/http.client.rst:638 msgid "" ">>> # This creates an HTTP request\n" ">>> # with the content of BODY as the enclosed representation\n" @@ -767,32 +429,23 @@ msgid "" "200, OK" msgstr "" -#: ../../library/http.client.rst:653 msgid "HTTPMessage Objects" msgstr "" -#: ../../library/http.client.rst:657 -msgid "" -"An :class:`http.client.HTTPMessage` instance holds the headers from an HTTP " -"response. It is implemented using the :class:`email.message.Message` class." +msgid "An :class:`http.client.HTTPMessage` instance holds the headers from an HTTP response. It is implemented using the :class:`email.message.Message` class." msgstr "" -#: ../../library/http.client.rst:9 msgid "HTTP" msgstr "" -#: ../../library/http.client.rst:9 msgid "protocol" msgstr "" -#: ../../library/http.client.rst:9 msgid "http.client (standard module)" msgstr "" -#: ../../library/http.client.rst:13 msgid "module" msgstr "" -#: ../../library/http.client.rst:13 msgid "urllib.request" msgstr "" diff --git a/library/http.cookiejar.po b/library/http.cookiejar.po index 63ad20b8..6a572493 100644 --- a/library/http.cookiejar.po +++ b/library/http.cookiejar.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:07+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,970 +24,497 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/http.cookiejar.rst:2 msgid ":mod:`!http.cookiejar` --- Cookie handling for HTTP clients" msgstr "" -#: ../../library/http.cookiejar.rst:10 msgid "**Source code:** :source:`Lib/http/cookiejar.py`" msgstr "" -#: ../../library/http.cookiejar.rst:14 -msgid "" -"The :mod:`!http.cookiejar` module defines classes for automatic handling of " -"HTTP cookies. It is useful for accessing websites that require small pieces " -"of data -- :dfn:`cookies` -- to be set on the client machine by an HTTP " -"response from a web server, and then returned to the server in later HTTP " -"requests." +msgid "The :mod:`!http.cookiejar` module defines classes for automatic handling of HTTP cookies. It is useful for accessing websites that require small pieces of data -- :dfn:`cookies` -- to be set on the client machine by an HTTP response from a web server, and then returned to the server in later HTTP requests." msgstr "" -#: ../../library/http.cookiejar.rst:19 -msgid "" -"Both the regular Netscape cookie protocol and the protocol defined " -"by :rfc:`2965` are handled. RFC 2965 handling is switched off by " -"default. :rfc:`2109` cookies are parsed as Netscape cookies and subsequently " -"treated either as Netscape or RFC 2965 cookies according to the 'policy' in " -"effect. Note that the great majority of cookies on the internet are Netscape " -"cookies. :mod:`!http.cookiejar` attempts to follow the de-facto Netscape " -"cookie protocol (which differs substantially from that set out in the " -"original Netscape specification), including taking note of the ``max-age`` " -"and ``port`` cookie-attributes introduced with RFC 2965." -msgstr "" - -#: ../../library/http.cookiejar.rst:31 -msgid "" -"The various named parameters found in :mailheader:`Set-Cookie` " -"and :mailheader:`Set-Cookie2` headers (for example, ``domain`` and " -"``expires``) are conventionally referred to as :dfn:`attributes`. To " -"distinguish them from Python attributes, the documentation for this module " -"uses the term :dfn:`cookie-attribute` instead." +msgid "Both the regular Netscape cookie protocol and the protocol defined by :rfc:`2965` are handled. RFC 2965 handling is switched off by default. :rfc:`2109` cookies are parsed as Netscape cookies and subsequently treated either as Netscape or RFC 2965 cookies according to the 'policy' in effect. Note that the great majority of cookies on the internet are Netscape cookies. :mod:`!http.cookiejar` attempts to follow the de-facto Netscape cookie protocol (which differs substantially from that set out in the original Netscape specification), including taking note of the ``max-age`` and ``port`` cookie-attributes introduced with RFC 2965." +msgstr "" + +msgid "The various named parameters found in :mailheader:`Set-Cookie` and :mailheader:`Set-Cookie2` headers (for example, ``domain`` and ``expires``) are conventionally referred to as :dfn:`attributes`. To distinguish them from Python attributes, the documentation for this module uses the term :dfn:`cookie-attribute` instead." msgstr "" -#: ../../library/http.cookiejar.rst:38 msgid "The module defines the following exception:" msgstr "" -#: ../../library/http.cookiejar.rst:43 -msgid "" -"Instances of :class:`FileCookieJar` raise this exception on failure to load " -"cookies from a file. :exc:`LoadError` is a subclass of :exc:`OSError`." +msgid "Instances of :class:`FileCookieJar` raise this exception on failure to load cookies from a file. :exc:`LoadError` is a subclass of :exc:`OSError`." msgstr "" -#: ../../library/http.cookiejar.rst:46 -msgid "" -":exc:`LoadError` used to be a subtype of :exc:`IOError`, which is now an " -"alias of :exc:`OSError`." +msgid ":exc:`LoadError` used to be a subtype of :exc:`IOError`, which is now an alias of :exc:`OSError`." msgstr "" -#: ../../library/http.cookiejar.rst:51 msgid "The following classes are provided:" msgstr "" -#: ../../library/http.cookiejar.rst:56 msgid "*policy* is an object implementing the :class:`CookiePolicy` interface." msgstr "" -#: ../../library/http.cookiejar.rst:58 -msgid "" -"The :class:`CookieJar` class stores HTTP cookies. It extracts cookies from " -"HTTP requests, and returns them in HTTP responses. :class:`CookieJar` " -"instances automatically expire contained cookies when necessary. Subclasses " -"are also responsible for storing and retrieving cookies from a file or " -"database." +msgid "The :class:`CookieJar` class stores HTTP cookies. It extracts cookies from HTTP requests, and returns them in HTTP responses. :class:`CookieJar` instances automatically expire contained cookies when necessary. Subclasses are also responsible for storing and retrieving cookies from a file or database." msgstr "" -#: ../../library/http.cookiejar.rst:66 -msgid "" -"*policy* is an object implementing the :class:`CookiePolicy` interface. For " -"the other arguments, see the documentation for the corresponding attributes." +msgid "*policy* is an object implementing the :class:`CookiePolicy` interface. For the other arguments, see the documentation for the corresponding attributes." msgstr "" -#: ../../library/http.cookiejar.rst:69 -msgid "" -"A :class:`CookieJar` which can load cookies from, and perhaps save cookies " -"to, a file on disk. Cookies are **NOT** loaded from the named file until " -"either the :meth:`load` or :meth:`revert` method is called. Subclasses of " -"this class are documented in section :ref:`file-cookie-jar-classes`." +msgid "A :class:`CookieJar` which can load cookies from, and perhaps save cookies to, a file on disk. Cookies are **NOT** loaded from the named file until either the :meth:`load` or :meth:`revert` method is called. Subclasses of this class are documented in section :ref:`file-cookie-jar-classes`." msgstr "" -#: ../../library/http.cookiejar.rst:74 -msgid "" -"This should not be initialized directly – use its subclasses below instead." +msgid "This should not be initialized directly – use its subclasses below instead." msgstr "" -#: ../../library/http.cookiejar.rst:78 ../../library/http.cookiejar.rst:363 msgid "The filename parameter supports a :term:`path-like object`." msgstr "" -#: ../../library/http.cookiejar.rst:83 -msgid "" -"This class is responsible for deciding whether each cookie should be " -"accepted from / returned to the server." +msgid "This class is responsible for deciding whether each cookie should be accepted from / returned to the server." msgstr "" -#: ../../library/http.cookiejar.rst:89 -msgid "" -"Constructor arguments should be passed as keyword arguments only. " -"*blocked_domains* is a sequence of domain names that we never accept cookies " -"from, nor return cookies to. *allowed_domains* if not ``None``, this is a " -"sequence of the only domains for which we accept and return cookies. " -"*secure_protocols* is a sequence of protocols for which secure cookies can " -"be added to. By default *https* and *wss* (secure websocket) are considered " -"secure protocols. For all other arguments, see the documentation " -"for :class:`CookiePolicy` and :class:`DefaultCookiePolicy` objects." +msgid "Constructor arguments should be passed as keyword arguments only. *blocked_domains* is a sequence of domain names that we never accept cookies from, nor return cookies to. *allowed_domains* if not ``None``, this is a sequence of the only domains for which we accept and return cookies. *secure_protocols* is a sequence of protocols for which secure cookies can be added to. By default *https* and *wss* (secure websocket) are considered secure protocols. For all other arguments, see the documentation for :class:`CookiePolicy` and :class:`DefaultCookiePolicy` objects." msgstr "" -#: ../../library/http.cookiejar.rst:98 -msgid "" -":class:`DefaultCookiePolicy` implements the standard accept / reject rules " -"for Netscape and :rfc:`2965` cookies. By default, :rfc:`2109` cookies (that " -"is, cookies received in a :mailheader:`Set-Cookie` header with a version " -"cookie-attribute of 1) are treated according to the RFC 2965 rules. " -"However, if RFC 2965 handling is turned off or :attr:`rfc2109_as_netscape` " -"is ``True``, RFC 2109 cookies are 'downgraded' by the :class:`CookieJar` " -"instance to Netscape cookies, by setting the :attr:`~Cookie.version` " -"attribute of the :class:`Cookie` instance to 0. :class:`DefaultCookiePolicy` " -"also provides some parameters to allow some fine-tuning of policy." -msgstr "" - -#: ../../library/http.cookiejar.rst:111 -msgid "" -"This class represents Netscape, :rfc:`2109` and :rfc:`2965` cookies. It is " -"not expected that users of :mod:`!http.cookiejar` construct their " -"own :class:`Cookie` instances. Instead, if necessary, " -"call :meth:`~CookieJar.make_cookies` on a :class:`CookieJar` instance." +msgid ":class:`DefaultCookiePolicy` implements the standard accept / reject rules for Netscape and :rfc:`2965` cookies. By default, :rfc:`2109` cookies (that is, cookies received in a :mailheader:`Set-Cookie` header with a version cookie-attribute of 1) are treated according to the RFC 2965 rules. However, if RFC 2965 handling is turned off or :attr:`rfc2109_as_netscape` is ``True``, RFC 2109 cookies are 'downgraded' by the :class:`CookieJar` instance to Netscape cookies, by setting the :attr:`~Cookie.version` attribute of the :class:`Cookie` instance to 0. :class:`DefaultCookiePolicy` also provides some parameters to allow some fine-tuning of policy." +msgstr "" + +msgid "This class represents Netscape, :rfc:`2109` and :rfc:`2965` cookies. It is not expected that users of :mod:`!http.cookiejar` construct their own :class:`Cookie` instances. Instead, if necessary, call :meth:`~CookieJar.make_cookies` on a :class:`CookieJar` instance." msgstr "" -#: ../../library/http.cookiejar.rst:119 msgid "Module :mod:`urllib.request`" msgstr "" -#: ../../library/http.cookiejar.rst:120 msgid "URL opening with automatic cookie handling." msgstr "" -#: ../../library/http.cookiejar.rst:122 msgid "Module :mod:`http.cookies`" msgstr "" -#: ../../library/http.cookiejar.rst:123 -msgid "" -"HTTP cookie classes, principally useful for server-side code. The :mod:`!" -"http.cookiejar` and :mod:`http.cookies` modules do not depend on each other." +msgid "HTTP cookie classes, principally useful for server-side code. The :mod:`!http.cookiejar` and :mod:`http.cookies` modules do not depend on each other." msgstr "" -#: ../../library/http.cookiejar.rst:127 msgid "https://curl.se/rfc/cookie_spec.html" msgstr "" -#: ../../library/http.cookiejar.rst:128 -msgid "" -"The specification of the original Netscape cookie protocol. Though this is " -"still the dominant protocol, the 'Netscape cookie protocol' implemented by " -"all the major browsers (and :mod:`!http.cookiejar`) only bears a passing " -"resemblance to the one sketched out in ``cookie_spec.html``." +msgid "The specification of the original Netscape cookie protocol. Though this is still the dominant protocol, the 'Netscape cookie protocol' implemented by all the major browsers (and :mod:`!http.cookiejar`) only bears a passing resemblance to the one sketched out in ``cookie_spec.html``." msgstr "" -#: ../../library/http.cookiejar.rst:133 msgid ":rfc:`2109` - HTTP State Management Mechanism" msgstr "" -#: ../../library/http.cookiejar.rst:134 msgid "Obsoleted by :rfc:`2965`. Uses :mailheader:`Set-Cookie` with version=1." msgstr "" -#: ../../library/http.cookiejar.rst:136 msgid ":rfc:`2965` - HTTP State Management Mechanism" msgstr "" -#: ../../library/http.cookiejar.rst:137 -msgid "" -"The Netscape protocol with the bugs fixed. Uses :mailheader:`Set-Cookie2` " -"in place of :mailheader:`Set-Cookie`. Not widely used." +msgid "The Netscape protocol with the bugs fixed. Uses :mailheader:`Set-Cookie2` in place of :mailheader:`Set-Cookie`. Not widely used." msgstr "" -#: ../../library/http.cookiejar.rst:140 msgid "https://kristol.org/cookie/errata.html" msgstr "" -#: ../../library/http.cookiejar.rst:141 msgid "Unfinished errata to :rfc:`2965`." msgstr "" -#: ../../library/http.cookiejar.rst:143 msgid ":rfc:`2964` - Use of HTTP State Management" msgstr "" -#: ../../library/http.cookiejar.rst:148 msgid "CookieJar and FileCookieJar objects" msgstr "" -#: ../../library/http.cookiejar.rst:150 -msgid "" -":class:`CookieJar` objects support the :term:`iterator` protocol for " -"iterating over contained :class:`Cookie` objects." +msgid ":class:`CookieJar` objects support the :term:`iterator` protocol for iterating over contained :class:`Cookie` objects." msgstr "" -#: ../../library/http.cookiejar.rst:153 msgid ":class:`CookieJar` has the following methods:" msgstr "" -#: ../../library/http.cookiejar.rst:158 msgid "Add correct :mailheader:`Cookie` header to *request*." msgstr "" -#: ../../library/http.cookiejar.rst:160 -msgid "" -"If policy allows (that is, the :attr:`~CookiePolicy.rfc2965` " -"and :attr:`~CookiePolicy.hide_cookie2` attributes of " -"the :class:`CookieJar`'s :class:`CookiePolicy` instance are true and false " -"respectively), the :mailheader:`Cookie2` header is also added when " -"appropriate." +msgid "If policy allows (that is, the :attr:`~CookiePolicy.rfc2965` and :attr:`~CookiePolicy.hide_cookie2` attributes of the :class:`CookieJar`'s :class:`CookiePolicy` instance are true and false respectively), the :mailheader:`Cookie2` header is also added when appropriate." msgstr "" -#: ../../library/http.cookiejar.rst:165 -msgid "" -"The *request* object (usually a :class:`urllib.request.Request` instance) " -"must support the " -"methods :meth:`~urllib.request.Request.get_full_url`, :meth:`~urllib.request.Request.has_header`, :meth:`~urllib.request.Request.get_header`, :meth:`~urllib.request.Request.header_items`, :meth:`~urllib.request.Request.add_unredirected_header` " -"and the " -"attributes :attr:`~urllib.request.Request.host`, :attr:`~urllib.request.Request.type`, :attr:`~urllib.request.Request.unverifiable` " -"and :attr:`~urllib.request.Request.origin_req_host` as documented " -"by :mod:`urllib.request`." +msgid "The *request* object (usually a :class:`urllib.request.Request` instance) must support the methods :meth:`~urllib.request.Request.get_full_url`, :meth:`~urllib.request.Request.has_header`, :meth:`~urllib.request.Request.get_header`, :meth:`~urllib.request.Request.header_items`, :meth:`~urllib.request.Request.add_unredirected_header` and the attributes :attr:`~urllib.request.Request.host`, :attr:`~urllib.request.Request.type`, :attr:`~urllib.request.Request.unverifiable` and :attr:`~urllib.request.Request.origin_req_host` as documented by :mod:`urllib.request`." msgstr "" -#: ../../library/http.cookiejar.rst:178 ../../library/http.cookiejar.rst:208 -msgid "" -"*request* object needs :attr:`~urllib.request.Request.origin_req_host` " -"attribute. Dependency on a deprecated method :meth:`!get_origin_req_host` " -"has been removed." +msgid "*request* object needs :attr:`~urllib.request.Request.origin_req_host` attribute. Dependency on a deprecated method :meth:`!get_origin_req_host` has been removed." msgstr "" -#: ../../library/http.cookiejar.rst:185 -msgid "" -"Extract cookies from HTTP *response* and store them in " -"the :class:`CookieJar`, where allowed by policy." +msgid "Extract cookies from HTTP *response* and store them in the :class:`CookieJar`, where allowed by policy." msgstr "" -#: ../../library/http.cookiejar.rst:188 -msgid "" -"The :class:`CookieJar` will look for allowable :mailheader:`Set-Cookie` " -"and :mailheader:`Set-Cookie2` headers in the *response* argument, and store " -"cookies as appropriate (subject to the :meth:`CookiePolicy.set_ok` method's " -"approval)." +msgid "The :class:`CookieJar` will look for allowable :mailheader:`Set-Cookie` and :mailheader:`Set-Cookie2` headers in the *response* argument, and store cookies as appropriate (subject to the :meth:`CookiePolicy.set_ok` method's approval)." msgstr "" -#: ../../library/http.cookiejar.rst:192 -msgid "" -"The *response* object (usually the result of a call " -"to :meth:`urllib.request.urlopen`, or similar) should support " -"an :meth:`~http.client.HTTPResponse.info` method, which returns " -"an :class:`email.message.Message` instance." +msgid "The *response* object (usually the result of a call to :meth:`urllib.request.urlopen`, or similar) should support an :meth:`~http.client.HTTPResponse.info` method, which returns an :class:`email.message.Message` instance." msgstr "" -#: ../../library/http.cookiejar.rst:197 -msgid "" -"The *request* object (usually a :class:`urllib.request.Request` instance) " -"must support the method :meth:`~urllib.request.Request.get_full_url` and the " -"attributes :attr:`~urllib.request.Request.host`, :attr:`~urllib.request.Request.unverifiable` " -"and :attr:`~urllib.request.Request.origin_req_host`, as documented " -"by :mod:`urllib.request`. The request is used to set default values for " -"cookie-attributes as well as for checking that the cookie is allowed to be " -"set." +msgid "The *request* object (usually a :class:`urllib.request.Request` instance) must support the method :meth:`~urllib.request.Request.get_full_url` and the attributes :attr:`~urllib.request.Request.host`, :attr:`~urllib.request.Request.unverifiable` and :attr:`~urllib.request.Request.origin_req_host`, as documented by :mod:`urllib.request`. The request is used to set default values for cookie-attributes as well as for checking that the cookie is allowed to be set." msgstr "" -#: ../../library/http.cookiejar.rst:214 msgid "Set the :class:`CookiePolicy` instance to be used." msgstr "" -#: ../../library/http.cookiejar.rst:219 -msgid "" -"Return sequence of :class:`Cookie` objects extracted from *response* object." +msgid "Return sequence of :class:`Cookie` objects extracted from *response* object." msgstr "" -#: ../../library/http.cookiejar.rst:221 -msgid "" -"See the documentation for :meth:`extract_cookies` for the interfaces " -"required of the *response* and *request* arguments." +msgid "See the documentation for :meth:`extract_cookies` for the interfaces required of the *response* and *request* arguments." msgstr "" -#: ../../library/http.cookiejar.rst:227 msgid "Set a :class:`Cookie` if policy says it's OK to do so." msgstr "" -#: ../../library/http.cookiejar.rst:232 -msgid "" -"Set a :class:`Cookie`, without checking with policy to see whether or not it " -"should be set." +msgid "Set a :class:`Cookie`, without checking with policy to see whether or not it should be set." msgstr "" -#: ../../library/http.cookiejar.rst:238 msgid "Clear some cookies." msgstr "" -#: ../../library/http.cookiejar.rst:240 -msgid "" -"If invoked without arguments, clear all cookies. If given a single " -"argument, only cookies belonging to that *domain* will be removed. If given " -"two arguments, cookies belonging to the specified *domain* and URL *path* " -"are removed. If given three arguments, then the cookie with the specified " -"*domain*, *path* and *name* is removed." +msgid "If invoked without arguments, clear all cookies. If given a single argument, only cookies belonging to that *domain* will be removed. If given two arguments, cookies belonging to the specified *domain* and URL *path* are removed. If given three arguments, then the cookie with the specified *domain*, *path* and *name* is removed." msgstr "" -#: ../../library/http.cookiejar.rst:246 msgid "Raises :exc:`KeyError` if no matching cookie exists." msgstr "" -#: ../../library/http.cookiejar.rst:251 msgid "Discard all session cookies." msgstr "" -#: ../../library/http.cookiejar.rst:253 -msgid "" -"Discards all contained cookies that have a true :attr:`~Cookie.discard` " -"attribute (usually because they had either no ``max-age`` or ``expires`` " -"cookie-attribute, or an explicit ``discard`` cookie-attribute). For " -"interactive browsers, the end of a session usually corresponds to closing " -"the browser window." +msgid "Discards all contained cookies that have a true :attr:`~Cookie.discard` attribute (usually because they had either no ``max-age`` or ``expires`` cookie-attribute, or an explicit ``discard`` cookie-attribute). For interactive browsers, the end of a session usually corresponds to closing the browser window." msgstr "" -#: ../../library/http.cookiejar.rst:258 -msgid "" -"Note that the :meth:`~FileCookieJar.save` method won't save session cookies " -"anyway, unless you ask otherwise by passing a true *ignore_discard* argument." +msgid "Note that the :meth:`~FileCookieJar.save` method won't save session cookies anyway, unless you ask otherwise by passing a true *ignore_discard* argument." msgstr "" -#: ../../library/http.cookiejar.rst:261 msgid ":class:`FileCookieJar` implements the following additional methods:" msgstr "" -#: ../../library/http.cookiejar.rst:266 msgid "Save cookies to a file." msgstr "" -#: ../../library/http.cookiejar.rst:268 -msgid "" -"This base class raises :exc:`NotImplementedError`. Subclasses may leave " -"this method unimplemented." +msgid "This base class raises :exc:`NotImplementedError`. Subclasses may leave this method unimplemented." msgstr "" -#: ../../library/http.cookiejar.rst:271 -msgid "" -"*filename* is the name of file in which to save cookies. If *filename* is " -"not specified, :attr:`self.filename ` is used (whose " -"default is the value passed to the constructor, if any); " -"if :attr:`self.filename ` is " -"``None``, :exc:`ValueError` is raised." +msgid "*filename* is the name of file in which to save cookies. If *filename* is not specified, :attr:`self.filename ` is used (whose default is the value passed to the constructor, if any); if :attr:`self.filename ` is ``None``, :exc:`ValueError` is raised." msgstr "" -#: ../../library/http.cookiejar.rst:277 -msgid "" -"*ignore_discard*: save even cookies set to be discarded. *ignore_expires*: " -"save even cookies that have expired" +msgid "*ignore_discard*: save even cookies set to be discarded. *ignore_expires*: save even cookies that have expired" msgstr "" -#: ../../library/http.cookiejar.rst:280 -msgid "" -"The file is overwritten if it already exists, thus wiping all the cookies it " -"contains. Saved cookies can be restored later using the :meth:`load` " -"or :meth:`revert` methods." +msgid "The file is overwritten if it already exists, thus wiping all the cookies it contains. Saved cookies can be restored later using the :meth:`load` or :meth:`revert` methods." msgstr "" -#: ../../library/http.cookiejar.rst:287 msgid "Load cookies from a file." msgstr "" -#: ../../library/http.cookiejar.rst:289 msgid "Old cookies are kept unless overwritten by newly loaded ones." msgstr "" -#: ../../library/http.cookiejar.rst:291 msgid "Arguments are as for :meth:`save`." msgstr "" -#: ../../library/http.cookiejar.rst:293 -msgid "" -"The named file must be in the format understood by the class, " -"or :exc:`LoadError` will be raised. Also, :exc:`OSError` may be raised, for " -"example if the file does not exist." +msgid "The named file must be in the format understood by the class, or :exc:`LoadError` will be raised. Also, :exc:`OSError` may be raised, for example if the file does not exist." msgstr "" -#: ../../library/http.cookiejar.rst:297 msgid ":exc:`IOError` used to be raised, it is now an alias of :exc:`OSError`." msgstr "" -#: ../../library/http.cookiejar.rst:303 msgid "Clear all cookies and reload cookies from a saved file." msgstr "" -#: ../../library/http.cookiejar.rst:305 -msgid "" -":meth:`revert` can raise the same exceptions as :meth:`load`. If there is a " -"failure, the object's state will not be altered." +msgid ":meth:`revert` can raise the same exceptions as :meth:`load`. If there is a failure, the object's state will not be altered." msgstr "" -#: ../../library/http.cookiejar.rst:308 msgid ":class:`FileCookieJar` instances have the following public attributes:" msgstr "" -#: ../../library/http.cookiejar.rst:313 -msgid "" -"Filename of default file in which to keep cookies. This attribute may be " -"assigned to." +msgid "Filename of default file in which to keep cookies. This attribute may be assigned to." msgstr "" -#: ../../library/http.cookiejar.rst:319 -msgid "" -"If true, load cookies lazily from disk. This attribute should not be " -"assigned to. This is only a hint, since this only affects performance, not " -"behaviour (unless the cookies on disk are changing). A :class:`CookieJar` " -"object may ignore it. None of the :class:`FileCookieJar` classes included " -"in the standard library lazily loads cookies." +msgid "If true, load cookies lazily from disk. This attribute should not be assigned to. This is only a hint, since this only affects performance, not behaviour (unless the cookies on disk are changing). A :class:`CookieJar` object may ignore it. None of the :class:`FileCookieJar` classes included in the standard library lazily loads cookies." msgstr "" -#: ../../library/http.cookiejar.rst:329 msgid "FileCookieJar subclasses and co-operation with web browsers" msgstr "" -#: ../../library/http.cookiejar.rst:331 -msgid "" -"The following :class:`CookieJar` subclasses are provided for reading and " -"writing." +msgid "The following :class:`CookieJar` subclasses are provided for reading and writing." msgstr "" -#: ../../library/http.cookiejar.rst:336 -msgid "" -"A :class:`FileCookieJar` that can load from and save cookies to disk in the " -"Mozilla ``cookies.txt`` file format (which is also used by curl and the Lynx " -"and Netscape browsers)." +msgid "A :class:`FileCookieJar` that can load from and save cookies to disk in the Mozilla ``cookies.txt`` file format (which is also used by curl and the Lynx and Netscape browsers)." msgstr "" -#: ../../library/http.cookiejar.rst:342 -msgid "" -"This loses information about :rfc:`2965` cookies, and also about newer or " -"non-standard cookie-attributes such as ``port``." +msgid "This loses information about :rfc:`2965` cookies, and also about newer or non-standard cookie-attributes such as ``port``." msgstr "" -#: ../../library/http.cookiejar.rst:347 -msgid "" -"Back up your cookies before saving if you have cookies whose loss / " -"corruption would be inconvenient (there are some subtleties which may lead " -"to slight changes in the file over a load / save round-trip)." +msgid "Back up your cookies before saving if you have cookies whose loss / corruption would be inconvenient (there are some subtleties which may lead to slight changes in the file over a load / save round-trip)." msgstr "" -#: ../../library/http.cookiejar.rst:351 -msgid "" -"Also note that cookies saved while Mozilla is running will get clobbered by " -"Mozilla." +msgid "Also note that cookies saved while Mozilla is running will get clobbered by Mozilla." msgstr "" -#: ../../library/http.cookiejar.rst:357 -msgid "" -"A :class:`FileCookieJar` that can load from and save cookies to disk in " -"format compatible with the libwww-perl library's ``Set-Cookie3`` file " -"format. This is convenient if you want to store cookies in a human-readable " -"file." +msgid "A :class:`FileCookieJar` that can load from and save cookies to disk in format compatible with the libwww-perl library's ``Set-Cookie3`` file format. This is convenient if you want to store cookies in a human-readable file." msgstr "" -#: ../../library/http.cookiejar.rst:368 msgid "CookiePolicy objects" msgstr "" -#: ../../library/http.cookiejar.rst:370 -msgid "" -"Objects implementing the :class:`CookiePolicy` interface have the following " -"methods:" +msgid "Objects implementing the :class:`CookiePolicy` interface have the following methods:" msgstr "" -#: ../../library/http.cookiejar.rst:376 -msgid "" -"Return boolean value indicating whether cookie should be accepted from " -"server." +msgid "Return boolean value indicating whether cookie should be accepted from server." msgstr "" -#: ../../library/http.cookiejar.rst:378 -msgid "" -"*cookie* is a :class:`Cookie` instance. *request* is an object implementing " -"the interface defined by the documentation " -"for :meth:`CookieJar.extract_cookies`." +msgid "*cookie* is a :class:`Cookie` instance. *request* is an object implementing the interface defined by the documentation for :meth:`CookieJar.extract_cookies`." msgstr "" -#: ../../library/http.cookiejar.rst:385 -msgid "" -"Return boolean value indicating whether cookie should be returned to server." +msgid "Return boolean value indicating whether cookie should be returned to server." msgstr "" -#: ../../library/http.cookiejar.rst:387 -msgid "" -"*cookie* is a :class:`Cookie` instance. *request* is an object implementing " -"the interface defined by the documentation " -"for :meth:`CookieJar.add_cookie_header`." +msgid "*cookie* is a :class:`Cookie` instance. *request* is an object implementing the interface defined by the documentation for :meth:`CookieJar.add_cookie_header`." msgstr "" -#: ../../library/http.cookiejar.rst:394 -msgid "" -"Return ``False`` if cookies should not be returned, given cookie domain." +msgid "Return ``False`` if cookies should not be returned, given cookie domain." msgstr "" -#: ../../library/http.cookiejar.rst:396 -msgid "" -"This method is an optimization. It removes the need for checking every " -"cookie with a particular domain (which might involve reading many files). " -"Returning true from :meth:`domain_return_ok` and :meth:`path_return_ok` " -"leaves all the work to :meth:`return_ok`." +msgid "This method is an optimization. It removes the need for checking every cookie with a particular domain (which might involve reading many files). Returning true from :meth:`domain_return_ok` and :meth:`path_return_ok` leaves all the work to :meth:`return_ok`." msgstr "" -#: ../../library/http.cookiejar.rst:401 -msgid "" -"If :meth:`domain_return_ok` returns true for the cookie " -"domain, :meth:`path_return_ok` is called for the cookie path. " -"Otherwise, :meth:`path_return_ok` and :meth:`return_ok` are never called for " -"that cookie domain. If :meth:`path_return_ok` returns " -"true, :meth:`return_ok` is called with the :class:`Cookie` object itself for " -"a full check. Otherwise, :meth:`return_ok` is never called for that cookie " -"path." +msgid "If :meth:`domain_return_ok` returns true for the cookie domain, :meth:`path_return_ok` is called for the cookie path. Otherwise, :meth:`path_return_ok` and :meth:`return_ok` are never called for that cookie domain. If :meth:`path_return_ok` returns true, :meth:`return_ok` is called with the :class:`Cookie` object itself for a full check. Otherwise, :meth:`return_ok` is never called for that cookie path." msgstr "" -#: ../../library/http.cookiejar.rst:408 -msgid "" -"Note that :meth:`domain_return_ok` is called for every *cookie* domain, not " -"just for the *request* domain. For example, the function might be called " -"with both ``\".example.com\"`` and ``\"www.example.com\"`` if the request " -"domain is ``\"www.example.com\"``. The same goes for :meth:`path_return_ok`." +msgid "Note that :meth:`domain_return_ok` is called for every *cookie* domain, not just for the *request* domain. For example, the function might be called with both ``\".example.com\"`` and ``\"www.example.com\"`` if the request domain is ``\"www.example.com\"``. The same goes for :meth:`path_return_ok`." msgstr "" -#: ../../library/http.cookiejar.rst:413 msgid "The *request* argument is as documented for :meth:`return_ok`." msgstr "" -#: ../../library/http.cookiejar.rst:418 msgid "Return ``False`` if cookies should not be returned, given cookie path." msgstr "" -#: ../../library/http.cookiejar.rst:420 msgid "See the documentation for :meth:`domain_return_ok`." msgstr "" -#: ../../library/http.cookiejar.rst:422 -msgid "" -"In addition to implementing the methods above, implementations of " -"the :class:`CookiePolicy` interface must also supply the following " -"attributes, indicating which protocols should be used, and how. All of " -"these attributes may be assigned to." +msgid "In addition to implementing the methods above, implementations of the :class:`CookiePolicy` interface must also supply the following attributes, indicating which protocols should be used, and how. All of these attributes may be assigned to." msgstr "" -#: ../../library/http.cookiejar.rst:430 msgid "Implement Netscape protocol." msgstr "" -#: ../../library/http.cookiejar.rst:435 msgid "Implement :rfc:`2965` protocol." msgstr "" -#: ../../library/http.cookiejar.rst:440 -msgid "" -"Don't add :mailheader:`Cookie2` header to requests (the presence of this " -"header indicates to the server that we understand :rfc:`2965` cookies)." +msgid "Don't add :mailheader:`Cookie2` header to requests (the presence of this header indicates to the server that we understand :rfc:`2965` cookies)." msgstr "" -#: ../../library/http.cookiejar.rst:443 -msgid "" -"The most useful way to define a :class:`CookiePolicy` class is by " -"subclassing from :class:`DefaultCookiePolicy` and overriding some or all of " -"the methods above. :class:`CookiePolicy` itself may be used as a 'null " -"policy' to allow setting and receiving any and all cookies (this is unlikely " -"to be useful)." +msgid "The most useful way to define a :class:`CookiePolicy` class is by subclassing from :class:`DefaultCookiePolicy` and overriding some or all of the methods above. :class:`CookiePolicy` itself may be used as a 'null policy' to allow setting and receiving any and all cookies (this is unlikely to be useful)." msgstr "" -#: ../../library/http.cookiejar.rst:452 msgid "DefaultCookiePolicy objects" msgstr "" -#: ../../library/http.cookiejar.rst:454 msgid "Implements the standard rules for accepting and returning cookies." msgstr "" -#: ../../library/http.cookiejar.rst:456 -msgid "" -"Both :rfc:`2965` and Netscape cookies are covered. RFC 2965 handling is " -"switched off by default." +msgid "Both :rfc:`2965` and Netscape cookies are covered. RFC 2965 handling is switched off by default." msgstr "" -#: ../../library/http.cookiejar.rst:459 -msgid "" -"The easiest way to provide your own policy is to override this class and " -"call its methods in your overridden implementations before adding your own " -"additional checks::" +msgid "The easiest way to provide your own policy is to override this class and call its methods in your overridden implementations before adding your own additional checks::" msgstr "" -#: ../../library/http.cookiejar.rst:463 msgid "" "import http.cookiejar\n" "class MyCookiePolicy(http.cookiejar.DefaultCookiePolicy):\n" " def set_ok(self, cookie, request):\n" -" if not http.cookiejar.DefaultCookiePolicy.set_ok(self, cookie, " -"request):\n" +" if not http.cookiejar.DefaultCookiePolicy.set_ok(self, cookie, request):\n" " return False\n" " if i_dont_want_to_store_this_cookie(cookie):\n" " return False\n" " return True" msgstr "" -#: ../../library/http.cookiejar.rst:472 -msgid "" -"In addition to the features required to implement the :class:`CookiePolicy` " -"interface, this class allows you to block and allow domains from setting and " -"receiving cookies. There are also some strictness switches that allow you " -"to tighten up the rather loose Netscape protocol rules a little bit (at the " -"cost of blocking some benign cookies)." +msgid "In addition to the features required to implement the :class:`CookiePolicy` interface, this class allows you to block and allow domains from setting and receiving cookies. There are also some strictness switches that allow you to tighten up the rather loose Netscape protocol rules a little bit (at the cost of blocking some benign cookies)." msgstr "" -#: ../../library/http.cookiejar.rst:478 -msgid "" -"A domain blocklist and allowlist is provided (both off by default). Only " -"domains not in the blocklist and present in the allowlist (if the allowlist " -"is active) participate in cookie setting and returning. Use the " -"*blocked_domains* constructor argument, " -"and :meth:`~DefaultCookiePolicy.blocked_domains` " -"and :meth:`~DefaultCookiePolicy.set_blocked_domains` methods (and the " -"corresponding argument and methods for *allowed_domains*). If you set an " -"allowlist, you can turn it off again by setting it to ``None``." +msgid "A domain blocklist and allowlist is provided (both off by default). Only domains not in the blocklist and present in the allowlist (if the allowlist is active) participate in cookie setting and returning. Use the *blocked_domains* constructor argument, and :meth:`~DefaultCookiePolicy.blocked_domains` and :meth:`~DefaultCookiePolicy.set_blocked_domains` methods (and the corresponding argument and methods for *allowed_domains*). If you set an allowlist, you can turn it off again by setting it to ``None``." msgstr "" -#: ../../library/http.cookiejar.rst:486 -msgid "" -"Domains in block or allow lists that do not start with a dot must equal the " -"cookie domain to be matched. For example, ``\"example.com\"`` matches a " -"blocklist entry of ``\"example.com\"``, but ``\"www.example.com\"`` does " -"not. Domains that do start with a dot are matched by more specific domains " -"too. For example, both ``\"www.example.com\"`` and " -"``\"www.coyote.example.com\"`` match ``\".example.com\"`` (but " -"``\"example.com\"`` itself does not). IP addresses are an exception, and " -"must match exactly. For example, if blocked_domains contains " -"``\"192.168.1.2\"`` and ``\".168.1.2\"``, 192.168.1.2 is blocked, but " -"193.168.1.2 is not." -msgstr "" - -#: ../../library/http.cookiejar.rst:495 -msgid "" -":class:`DefaultCookiePolicy` implements the following additional methods:" +msgid "Domains in block or allow lists that do not start with a dot must equal the cookie domain to be matched. For example, ``\"example.com\"`` matches a blocklist entry of ``\"example.com\"``, but ``\"www.example.com\"`` does not. Domains that do start with a dot are matched by more specific domains too. For example, both ``\"www.example.com\"`` and ``\"www.coyote.example.com\"`` match ``\".example.com\"`` (but ``\"example.com\"`` itself does not). IP addresses are an exception, and must match exactly. For example, if blocked_domains contains ``\"192.168.1.2\"`` and ``\".168.1.2\"``, 192.168.1.2 is blocked, but 193.168.1.2 is not." +msgstr "" + +msgid ":class:`DefaultCookiePolicy` implements the following additional methods:" msgstr "" -#: ../../library/http.cookiejar.rst:500 msgid "Return the sequence of blocked domains (as a tuple)." msgstr "" -#: ../../library/http.cookiejar.rst:505 msgid "Set the sequence of blocked domains." msgstr "" -#: ../../library/http.cookiejar.rst:510 -msgid "" -"Return ``True`` if *domain* is on the blocklist for setting or receiving " -"cookies." +msgid "Return ``True`` if *domain* is on the blocklist for setting or receiving cookies." msgstr "" -#: ../../library/http.cookiejar.rst:516 msgid "Return ``None``, or the sequence of allowed domains (as a tuple)." msgstr "" -#: ../../library/http.cookiejar.rst:521 msgid "Set the sequence of allowed domains, or ``None``." msgstr "" -#: ../../library/http.cookiejar.rst:526 -msgid "" -"Return ``True`` if *domain* is not on the allowlist for setting or receiving " -"cookies." +msgid "Return ``True`` if *domain* is not on the allowlist for setting or receiving cookies." msgstr "" -#: ../../library/http.cookiejar.rst:529 -msgid "" -":class:`DefaultCookiePolicy` instances have the following attributes, which " -"are all initialised from the constructor arguments of the same name, and " -"which may all be assigned to." +msgid ":class:`DefaultCookiePolicy` instances have the following attributes, which are all initialised from the constructor arguments of the same name, and which may all be assigned to." msgstr "" -#: ../../library/http.cookiejar.rst:536 -msgid "" -"If true, request that the :class:`CookieJar` instance downgrade :rfc:`2109` " -"cookies (that is, cookies received in a :mailheader:`Set-Cookie` header with " -"a version cookie-attribute of 1) to Netscape cookies by setting the version " -"attribute of the :class:`Cookie` instance to 0. The default value is " -"``None``, in which case RFC 2109 cookies are downgraded if and only " -"if :rfc:`2965` handling is turned off. Therefore, RFC 2109 cookies are " -"downgraded by default." +msgid "If true, request that the :class:`CookieJar` instance downgrade :rfc:`2109` cookies (that is, cookies received in a :mailheader:`Set-Cookie` header with a version cookie-attribute of 1) to Netscape cookies by setting the version attribute of the :class:`Cookie` instance to 0. The default value is ``None``, in which case RFC 2109 cookies are downgraded if and only if :rfc:`2965` handling is turned off. Therefore, RFC 2109 cookies are downgraded by default." msgstr "" -#: ../../library/http.cookiejar.rst:544 msgid "General strictness switches:" msgstr "" -#: ../../library/http.cookiejar.rst:548 -msgid "" -"Don't allow sites to set two-component domains with country-code top-level " -"domains like ``.co.uk``, ``.gov.uk``, ``.co.nz``.etc. This is far from " -"perfect and isn't guaranteed to work!" +msgid "Don't allow sites to set two-component domains with country-code top-level domains like ``.co.uk``, ``.gov.uk``, ``.co.nz``.etc. This is far from perfect and isn't guaranteed to work!" msgstr "" -#: ../../library/http.cookiejar.rst:553 msgid ":rfc:`2965` protocol strictness switches:" msgstr "" -#: ../../library/http.cookiejar.rst:557 -msgid "" -"Follow :rfc:`2965` rules on unverifiable transactions (usually, an " -"unverifiable transaction is one resulting from a redirect or a request for " -"an image hosted on another site). If this is false, cookies are *never* " -"blocked on the basis of verifiability" +msgid "Follow :rfc:`2965` rules on unverifiable transactions (usually, an unverifiable transaction is one resulting from a redirect or a request for an image hosted on another site). If this is false, cookies are *never* blocked on the basis of verifiability" msgstr "" -#: ../../library/http.cookiejar.rst:563 msgid "Netscape protocol strictness switches:" msgstr "" -#: ../../library/http.cookiejar.rst:567 -msgid "" -"Apply :rfc:`2965` rules on unverifiable transactions even to Netscape " -"cookies." +msgid "Apply :rfc:`2965` rules on unverifiable transactions even to Netscape cookies." msgstr "" -#: ../../library/http.cookiejar.rst:572 -msgid "" -"Flags indicating how strict to be with domain-matching rules for Netscape " -"cookies. See below for acceptable values." +msgid "Flags indicating how strict to be with domain-matching rules for Netscape cookies. See below for acceptable values." msgstr "" -#: ../../library/http.cookiejar.rst:578 -msgid "" -"Ignore cookies in Set-Cookie: headers that have names starting with ``'$'``." +msgid "Ignore cookies in Set-Cookie: headers that have names starting with ``'$'``." msgstr "" -#: ../../library/http.cookiejar.rst:583 msgid "Don't allow setting cookies whose path doesn't path-match request URI." msgstr "" -#: ../../library/http.cookiejar.rst:585 -msgid "" -":attr:`~DefaultCookiePolicy.strict_ns_domain` is a collection of flags. Its " -"value is constructed by or-ing together (for example, ``DomainStrictNoDots|" -"DomainStrictNonDomain`` means both flags are set)." +msgid ":attr:`~DefaultCookiePolicy.strict_ns_domain` is a collection of flags. Its value is constructed by or-ing together (for example, ``DomainStrictNoDots|DomainStrictNonDomain`` means both flags are set)." msgstr "" -#: ../../library/http.cookiejar.rst:592 -msgid "" -"When setting cookies, the 'host prefix' must not contain a dot (for example, " -"``www.foo.bar.com`` can't set a cookie for ``.bar.com``, because ``www.foo`` " -"contains a dot)." +msgid "When setting cookies, the 'host prefix' must not contain a dot (for example, ``www.foo.bar.com`` can't set a cookie for ``.bar.com``, because ``www.foo`` contains a dot)." msgstr "" -#: ../../library/http.cookiejar.rst:599 -msgid "" -"Cookies that did not explicitly specify a ``domain`` cookie-attribute can " -"only be returned to a domain equal to the domain that set the cookie (for " -"example, ``spam.example.com`` won't be returned cookies from ``example.com`` " -"that had no ``domain`` cookie-attribute)." +msgid "Cookies that did not explicitly specify a ``domain`` cookie-attribute can only be returned to a domain equal to the domain that set the cookie (for example, ``spam.example.com`` won't be returned cookies from ``example.com`` that had no ``domain`` cookie-attribute)." msgstr "" -#: ../../library/http.cookiejar.rst:607 msgid "When setting cookies, require a full :rfc:`2965` domain-match." msgstr "" -#: ../../library/http.cookiejar.rst:609 -msgid "" -"The following attributes are provided for convenience, and are the most " -"useful combinations of the above flags:" +msgid "The following attributes are provided for convenience, and are the most useful combinations of the above flags:" msgstr "" -#: ../../library/http.cookiejar.rst:615 -msgid "" -"Equivalent to 0 (that is, all of the above Netscape domain strictness flags " -"switched off)." +msgid "Equivalent to 0 (that is, all of the above Netscape domain strictness flags switched off)." msgstr "" -#: ../../library/http.cookiejar.rst:621 msgid "Equivalent to ``DomainStrictNoDots|DomainStrictNonDomain``." msgstr "" -#: ../../library/http.cookiejar.rst:625 msgid "Cookie objects" msgstr "" -#: ../../library/http.cookiejar.rst:627 -msgid "" -":class:`Cookie` instances have Python attributes roughly corresponding to " -"the standard cookie-attributes specified in the various cookie standards. " -"The correspondence is not one-to-one, because there are complicated rules " -"for assigning default values, because the ``max-age`` and ``expires`` cookie-" -"attributes contain equivalent information, and because :rfc:`2109` cookies " -"may be 'downgraded' by :mod:`!http.cookiejar` from version 1 to version 0 " -"(Netscape) cookies." +msgid ":class:`Cookie` instances have Python attributes roughly corresponding to the standard cookie-attributes specified in the various cookie standards. The correspondence is not one-to-one, because there are complicated rules for assigning default values, because the ``max-age`` and ``expires`` cookie-attributes contain equivalent information, and because :rfc:`2109` cookies may be 'downgraded' by :mod:`!http.cookiejar` from version 1 to version 0 (Netscape) cookies." msgstr "" -#: ../../library/http.cookiejar.rst:635 -msgid "" -"Assignment to these attributes should not be necessary other than in rare " -"circumstances in a :class:`CookiePolicy` method. The class does not enforce " -"internal consistency, so you should know what you're doing if you do that." +msgid "Assignment to these attributes should not be necessary other than in rare circumstances in a :class:`CookiePolicy` method. The class does not enforce internal consistency, so you should know what you're doing if you do that." msgstr "" -#: ../../library/http.cookiejar.rst:642 -msgid "" -"Integer or ``None``. Netscape cookies have :attr:`version` 0. :rfc:`2965` " -"and :rfc:`2109` cookies have a ``version`` cookie-attribute of 1. However, " -"note that :mod:`!http.cookiejar` may 'downgrade' RFC 2109 cookies to " -"Netscape cookies, in which case :attr:`version` is 0." +msgid "Integer or ``None``. Netscape cookies have :attr:`version` 0. :rfc:`2965` and :rfc:`2109` cookies have a ``version`` cookie-attribute of 1. However, note that :mod:`!http.cookiejar` may 'downgrade' RFC 2109 cookies to Netscape cookies, in which case :attr:`version` is 0." msgstr "" -#: ../../library/http.cookiejar.rst:650 msgid "Cookie name (a string)." msgstr "" -#: ../../library/http.cookiejar.rst:655 msgid "Cookie value (a string), or ``None``." msgstr "" -#: ../../library/http.cookiejar.rst:660 -msgid "" -"String representing a port or a set of ports (for example, '80', or " -"'80,8080'), or ``None``." +msgid "String representing a port or a set of ports (for example, '80', or '80,8080'), or ``None``." msgstr "" -#: ../../library/http.cookiejar.rst:666 msgid "Cookie domain (a string)." msgstr "" -#: ../../library/http.cookiejar.rst:671 msgid "Cookie path (a string, for example, ``'/acme/rocket_launchers'``)." msgstr "" -#: ../../library/http.cookiejar.rst:676 msgid "``True`` if cookie should only be returned over a secure connection." msgstr "" -#: ../../library/http.cookiejar.rst:681 -msgid "" -"Integer expiry date in seconds since epoch, or ``None``. See also " -"the :meth:`is_expired` method." +msgid "Integer expiry date in seconds since epoch, or ``None``. See also the :meth:`is_expired` method." msgstr "" -#: ../../library/http.cookiejar.rst:687 msgid "``True`` if this is a session cookie." msgstr "" -#: ../../library/http.cookiejar.rst:692 -msgid "" -"String comment from the server explaining the function of this cookie, or " -"``None``." +msgid "String comment from the server explaining the function of this cookie, or ``None``." msgstr "" -#: ../../library/http.cookiejar.rst:698 -msgid "" -"URL linking to a comment from the server explaining the function of this " -"cookie, or ``None``." +msgid "URL linking to a comment from the server explaining the function of this cookie, or ``None``." msgstr "" -#: ../../library/http.cookiejar.rst:704 -msgid "" -"``True`` if this cookie was received as an :rfc:`2109` cookie (that is, the " -"cookie arrived in a :mailheader:`Set-Cookie` header, and the value of the " -"Version cookie-attribute in that header was 1). This attribute is provided " -"because :mod:`!http.cookiejar` may 'downgrade' RFC 2109 cookies to Netscape " -"cookies, in which case :attr:`version` is 0." +msgid "``True`` if this cookie was received as an :rfc:`2109` cookie (that is, the cookie arrived in a :mailheader:`Set-Cookie` header, and the value of the Version cookie-attribute in that header was 1). This attribute is provided because :mod:`!http.cookiejar` may 'downgrade' RFC 2109 cookies to Netscape cookies, in which case :attr:`version` is 0." msgstr "" -#: ../../library/http.cookiejar.rst:713 -msgid "" -"``True`` if a port or set of ports was explicitly specified by the server " -"(in the :mailheader:`Set-Cookie` / :mailheader:`Set-Cookie2` header)." +msgid "``True`` if a port or set of ports was explicitly specified by the server (in the :mailheader:`Set-Cookie` / :mailheader:`Set-Cookie2` header)." msgstr "" -#: ../../library/http.cookiejar.rst:719 msgid "``True`` if a domain was explicitly specified by the server." msgstr "" -#: ../../library/http.cookiejar.rst:724 -msgid "" -"``True`` if the domain explicitly specified by the server began with a dot " -"(``'.'``)." +msgid "``True`` if the domain explicitly specified by the server began with a dot (``'.'``)." msgstr "" -#: ../../library/http.cookiejar.rst:727 -msgid "" -"Cookies may have additional non-standard cookie-attributes. These may be " -"accessed using the following methods:" +msgid "Cookies may have additional non-standard cookie-attributes. These may be accessed using the following methods:" msgstr "" -#: ../../library/http.cookiejar.rst:733 msgid "Return ``True`` if cookie has the named cookie-attribute." msgstr "" -#: ../../library/http.cookiejar.rst:738 -msgid "" -"If cookie has the named cookie-attribute, return its value. Otherwise, " -"return *default*." +msgid "If cookie has the named cookie-attribute, return its value. Otherwise, return *default*." msgstr "" -#: ../../library/http.cookiejar.rst:744 msgid "Set the value of the named cookie-attribute." msgstr "" -#: ../../library/http.cookiejar.rst:746 msgid "The :class:`Cookie` class also defines the following method:" msgstr "" -#: ../../library/http.cookiejar.rst:751 -msgid "" -"``True`` if cookie has passed the time at which the server requested it " -"should expire. If *now* is given (in seconds since the epoch), return " -"whether the cookie has expired at the specified time." +msgid "``True`` if cookie has passed the time at which the server requested it should expire. If *now* is given (in seconds since the epoch), return whether the cookie has expired at the specified time." msgstr "" -#: ../../library/http.cookiejar.rst:757 msgid "Examples" msgstr "" -#: ../../library/http.cookiejar.rst:759 -msgid "" -"The first example shows the most common usage of :mod:`!http.cookiejar`::" +msgid "The first example shows the most common usage of :mod:`!http.cookiejar`::" msgstr "" -#: ../../library/http.cookiejar.rst:761 msgid "" "import http.cookiejar, urllib.request\n" "cj = http.cookiejar.CookieJar()\n" -"opener = " -"urllib.request.build_opener(urllib.request.HTTPCookieProcessor(cj))\n" +"opener = urllib.request.build_opener(urllib.request.HTTPCookieProcessor(cj))\n" "r = opener.open(\"http://example.com/\")" msgstr "" -#: ../../library/http.cookiejar.rst:766 -msgid "" -"This example illustrates how to open a URL using your Netscape, Mozilla, or " -"Lynx cookies (assumes Unix/Netscape convention for location of the cookies " -"file)::" +msgid "This example illustrates how to open a URL using your Netscape, Mozilla, or Lynx cookies (assumes Unix/Netscape convention for location of the cookies file)::" msgstr "" -#: ../../library/http.cookiejar.rst:769 msgid "" "import os, http.cookiejar, urllib.request\n" "cj = http.cookiejar.MozillaCookieJar()\n" -"cj.load(os.path.join(os.path.expanduser(\"~\"), \".netscape\", " -"\"cookies.txt\"))\n" -"opener = " -"urllib.request.build_opener(urllib.request.HTTPCookieProcessor(cj))\n" +"cj.load(os.path.join(os.path.expanduser(\"~\"), \".netscape\", \"cookies.txt\"))\n" +"opener = urllib.request.build_opener(urllib.request.HTTPCookieProcessor(cj))\n" "r = opener.open(\"http://example.com/\")" msgstr "" -#: ../../library/http.cookiejar.rst:775 -msgid "" -"The next example illustrates the use of :class:`DefaultCookiePolicy`. Turn " -"on :rfc:`2965` cookies, be more strict about domains when setting and " -"returning Netscape cookies, and block some domains from setting cookies or " -"having them returned::" +msgid "The next example illustrates the use of :class:`DefaultCookiePolicy`. Turn on :rfc:`2965` cookies, be more strict about domains when setting and returning Netscape cookies, and block some domains from setting cookies or having them returned::" msgstr "" -#: ../../library/http.cookiejar.rst:780 msgid "" "import urllib.request\n" "from http.cookiejar import CookieJar, DefaultCookiePolicy\n" @@ -995,7 +522,6 @@ msgid "" " rfc2965=True, strict_ns_domain=Policy.DomainStrict,\n" " blocked_domains=[\"ads.net\", \".ads.net\"])\n" "cj = CookieJar(policy)\n" -"opener = " -"urllib.request.build_opener(urllib.request.HTTPCookieProcessor(cj))\n" +"opener = urllib.request.build_opener(urllib.request.HTTPCookieProcessor(cj))\n" "r = opener.open(\"http://example.com/\")" msgstr "" diff --git a/library/http.cookies.po b/library/http.cookies.po index e0d3d18f..55663c58 100644 --- a/library/http.cookies.po +++ b/library/http.cookies.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:07+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,300 +24,161 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/http.cookies.rst:2 msgid ":mod:`!http.cookies` --- HTTP state management" msgstr "" -#: ../../library/http.cookies.rst:10 msgid "**Source code:** :source:`Lib/http/cookies.py`" msgstr "" -#: ../../library/http.cookies.rst:14 -msgid "" -"The :mod:`!http.cookies` module defines classes for abstracting the concept " -"of cookies, an HTTP state management mechanism. It supports both simple " -"string-only cookies, and provides an abstraction for having any serializable " -"data-type as cookie value." +msgid "The :mod:`!http.cookies` module defines classes for abstracting the concept of cookies, an HTTP state management mechanism. It supports both simple string-only cookies, and provides an abstraction for having any serializable data-type as cookie value." msgstr "" -#: ../../library/http.cookies.rst:19 -msgid "" -"The module formerly strictly applied the parsing rules described in " -"the :rfc:`2109` and :rfc:`2068` specifications. It has since been " -"discovered that MSIE 3.0x didn't follow the character rules outlined in " -"those specs; many current-day browsers and servers have also relaxed parsing " -"rules when it comes to cookie handling. As a result, this module now uses " -"parsing rules that are a bit less strict than they once were." +msgid "The module formerly strictly applied the parsing rules described in the :rfc:`2109` and :rfc:`2068` specifications. It has since been discovered that MSIE 3.0x didn't follow the character rules outlined in those specs; many current-day browsers and servers have also relaxed parsing rules when it comes to cookie handling. As a result, this module now uses parsing rules that are a bit less strict than they once were." msgstr "" -#: ../../library/http.cookies.rst:26 -msgid "" -"The character set, :data:`string.ascii_letters`, :data:`string.digits` and " -"``!#$%&'*+-.^_`|~:`` denote the set of valid characters allowed by this " -"module in a cookie name (as :attr:`~Morsel.key`)." +msgid "The character set, :data:`string.ascii_letters`, :data:`string.digits` and ``!#$%&'*+-.^_`|~:`` denote the set of valid characters allowed by this module in a cookie name (as :attr:`~Morsel.key`)." msgstr "" -#: ../../library/http.cookies.rst:30 msgid "Allowed ':' as a valid cookie name character." msgstr "" -#: ../../library/http.cookies.rst:36 -msgid "" -"On encountering an invalid cookie, :exc:`CookieError` is raised, so if your " -"cookie data comes from a browser you should always prepare for invalid data " -"and catch :exc:`CookieError` on parsing." +msgid "On encountering an invalid cookie, :exc:`CookieError` is raised, so if your cookie data comes from a browser you should always prepare for invalid data and catch :exc:`CookieError` on parsing." msgstr "" -#: ../../library/http.cookies.rst:43 -msgid "" -"Exception failing because of :rfc:`2109` invalidity: incorrect attributes, " -"incorrect :mailheader:`Set-Cookie` header, etc." +msgid "Exception failing because of :rfc:`2109` invalidity: incorrect attributes, incorrect :mailheader:`Set-Cookie` header, etc." msgstr "" -#: ../../library/http.cookies.rst:49 -msgid "" -"This class is a dictionary-like object whose keys are strings and whose " -"values are :class:`Morsel` instances. Note that upon setting a key to a " -"value, the value is first converted to a :class:`Morsel` containing the key " -"and the value." +msgid "This class is a dictionary-like object whose keys are strings and whose values are :class:`Morsel` instances. Note that upon setting a key to a value, the value is first converted to a :class:`Morsel` containing the key and the value." msgstr "" -#: ../../library/http.cookies.rst:53 msgid "If *input* is given, it is passed to the :meth:`load` method." msgstr "" -#: ../../library/http.cookies.rst:58 -msgid "" -"This class derives from :class:`BaseCookie` and " -"overrides :meth:`~BaseCookie.value_decode` " -"and :meth:`~BaseCookie.value_encode`. :class:`!SimpleCookie` supports " -"strings as cookie values. When setting the value, :class:`!SimpleCookie` " -"calls the builtin :func:`str` to convert the value to a string. Values " -"received from HTTP are kept as strings." +msgid "This class derives from :class:`BaseCookie` and overrides :meth:`~BaseCookie.value_decode` and :meth:`~BaseCookie.value_encode`. :class:`!SimpleCookie` supports strings as cookie values. When setting the value, :class:`!SimpleCookie` calls the builtin :func:`str` to convert the value to a string. Values received from HTTP are kept as strings." msgstr "" -#: ../../library/http.cookies.rst:66 msgid "Module :mod:`http.cookiejar`" msgstr "" -#: ../../library/http.cookies.rst:67 -msgid "" -"HTTP cookie handling for web *clients*. The :mod:`http.cookiejar` " -"and :mod:`!http.cookies` modules do not depend on each other." +msgid "HTTP cookie handling for web *clients*. The :mod:`http.cookiejar` and :mod:`!http.cookies` modules do not depend on each other." msgstr "" -#: ../../library/http.cookies.rst:70 msgid ":rfc:`2109` - HTTP State Management Mechanism" msgstr "" -#: ../../library/http.cookies.rst:71 msgid "This is the state management specification implemented by this module." msgstr "" -#: ../../library/http.cookies.rst:77 msgid "Cookie Objects" msgstr "" -#: ../../library/http.cookies.rst:82 -msgid "" -"Return a tuple ``(real_value, coded_value)`` from a string representation. " -"``real_value`` can be any type. This method does no decoding " -"in :class:`BaseCookie` --- it exists so it can be overridden." +msgid "Return a tuple ``(real_value, coded_value)`` from a string representation. ``real_value`` can be any type. This method does no decoding in :class:`BaseCookie` --- it exists so it can be overridden." msgstr "" -#: ../../library/http.cookies.rst:89 -msgid "" -"Return a tuple ``(real_value, coded_value)``. *val* can be any type, but " -"``coded_value`` will always be converted to a string. This method does no " -"encoding in :class:`BaseCookie` --- it exists so it can be overridden." +msgid "Return a tuple ``(real_value, coded_value)``. *val* can be any type, but ``coded_value`` will always be converted to a string. This method does no encoding in :class:`BaseCookie` --- it exists so it can be overridden." msgstr "" -#: ../../library/http.cookies.rst:94 -msgid "" -"In general, it should be the case that :meth:`value_encode` " -"and :meth:`value_decode` are inverses on the range of *value_decode*." +msgid "In general, it should be the case that :meth:`value_encode` and :meth:`value_decode` are inverses on the range of *value_decode*." msgstr "" -#: ../../library/http.cookies.rst:100 -msgid "" -"Return a string representation suitable to be sent as HTTP headers. *attrs* " -"and *header* are sent to each :class:`Morsel`'s :meth:`~Morsel.output` " -"method. *sep* is used to join the headers together, and is by default the " -"combination ``'\\r\\n'`` (CRLF)." +msgid "Return a string representation suitable to be sent as HTTP headers. *attrs* and *header* are sent to each :class:`Morsel`'s :meth:`~Morsel.output` method. *sep* is used to join the headers together, and is by default the combination ``'\\r\\n'`` (CRLF)." msgstr "" -#: ../../library/http.cookies.rst:108 -msgid "" -"Return an embeddable JavaScript snippet, which, if run on a browser which " -"supports JavaScript, will act the same as if the HTTP headers was sent." +msgid "Return an embeddable JavaScript snippet, which, if run on a browser which supports JavaScript, will act the same as if the HTTP headers was sent." msgstr "" -#: ../../library/http.cookies.rst:111 ../../library/http.cookies.rst:227 -#: ../../library/http.cookies.rst:235 msgid "The meaning for *attrs* is the same as in :meth:`output`." msgstr "" -#: ../../library/http.cookies.rst:116 -msgid "" -"If *rawdata* is a string, parse it as an ``HTTP_COOKIE`` and add the values " -"found there as :class:`Morsel`\\ s. If it is a dictionary, it is equivalent " -"to::" +msgid "If *rawdata* is a string, parse it as an ``HTTP_COOKIE`` and add the values found there as :class:`Morsel`\\ s. If it is a dictionary, it is equivalent to::" msgstr "" -#: ../../library/http.cookies.rst:119 msgid "" "for k, v in rawdata.items():\n" " cookie[k] = v" msgstr "" -#: ../../library/http.cookies.rst:126 msgid "Morsel Objects" msgstr "" -#: ../../library/http.cookies.rst:131 msgid "Abstract a key/value pair, which has some :rfc:`2109` attributes." msgstr "" -#: ../../library/http.cookies.rst:133 -msgid "" -"Morsels are dictionary-like objects, whose set of keys is constant --- the " -"valid :rfc:`2109` attributes, which are:" +msgid "Morsels are dictionary-like objects, whose set of keys is constant --- the valid :rfc:`2109` attributes, which are:" msgstr "" -#: ../../library/http.cookies.rst:147 -msgid "" -"The attribute :attr:`httponly` specifies that the cookie is only transferred " -"in HTTP requests, and is not accessible through JavaScript. This is intended " -"to mitigate some forms of cross-site scripting." +msgid "The attribute :attr:`httponly` specifies that the cookie is only transferred in HTTP requests, and is not accessible through JavaScript. This is intended to mitigate some forms of cross-site scripting." msgstr "" -#: ../../library/http.cookies.rst:151 -msgid "" -"The attribute :attr:`samesite` controls when the browser sends the cookie " -"with cross-site requests. This helps to mitigate CSRF attacks. Valid values " -"are \"Strict\" (only sent with same-site requests), \"Lax\" (sent with same-" -"site requests and top-level navigations), and \"None\" (sent with same-site " -"and cross-site requests). When using \"None\", the \"secure\" attribute must " -"also be set, as required by modern browsers." +msgid "The attribute :attr:`samesite` controls when the browser sends the cookie with cross-site requests. This helps to mitigate CSRF attacks. Valid values are \"Strict\" (only sent with same-site requests), \"Lax\" (sent with same-site requests and top-level navigations), and \"None\" (sent with same-site and cross-site requests). When using \"None\", the \"secure\" attribute must also be set, as required by modern browsers." msgstr "" -#: ../../library/http.cookies.rst:158 -msgid "" -"The attribute :attr:`partitioned` indicates to user agents that these cross-" -"site cookies *should* only be available in the same top-level context that " -"the cookie was first set in. For this to be accepted by the user agent, you " -"**must** also set ``Secure``." +msgid "The attribute :attr:`partitioned` indicates to user agents that these cross-site cookies *should* only be available in the same top-level context that the cookie was first set in. For this to be accepted by the user agent, you **must** also set ``Secure``." msgstr "" -#: ../../library/http.cookies.rst:163 -msgid "" -"In addition, it is recommended to use the ``__Host`` prefix when setting " -"partitioned cookies to make them bound to the hostname and not the " -"registrable domain. Read `CHIPS (Cookies Having Independent Partitioned " -"State)`_ for full details and examples." +msgid "In addition, it is recommended to use the ``__Host`` prefix when setting partitioned cookies to make them bound to the hostname and not the registrable domain. Read `CHIPS (Cookies Having Independent Partitioned State)`_ for full details and examples." msgstr "" -#: ../../library/http.cookies.rst:171 msgid "The keys are case-insensitive and their default value is ``''``." msgstr "" -#: ../../library/http.cookies.rst:173 -msgid "" -":meth:`!__eq__` now takes :attr:`~Morsel.key` and :attr:`~Morsel.value` into " -"account." +msgid ":meth:`!__eq__` now takes :attr:`~Morsel.key` and :attr:`~Morsel.value` into account." msgstr "" -#: ../../library/http.cookies.rst:177 -msgid "" -"Attributes :attr:`~Morsel.key`, :attr:`~Morsel.value` " -"and :attr:`~Morsel.coded_value` are read-only. Use :meth:`~Morsel.set` for " -"setting them." +msgid "Attributes :attr:`~Morsel.key`, :attr:`~Morsel.value` and :attr:`~Morsel.coded_value` are read-only. Use :meth:`~Morsel.set` for setting them." msgstr "" -#: ../../library/http.cookies.rst:182 msgid "Added support for the :attr:`samesite` attribute." msgstr "" -#: ../../library/http.cookies.rst:185 msgid "Added support for the :attr:`partitioned` attribute." msgstr "" -#: ../../library/http.cookies.rst:191 msgid "The value of the cookie." msgstr "" -#: ../../library/http.cookies.rst:196 msgid "The encoded value of the cookie --- this is what should be sent." msgstr "" -#: ../../library/http.cookies.rst:201 msgid "The name of the cookie." msgstr "" -#: ../../library/http.cookies.rst:206 msgid "Set the *key*, *value* and *coded_value* attributes." msgstr "" -#: ../../library/http.cookies.rst:211 msgid "Whether *K* is a member of the set of keys of a :class:`Morsel`." msgstr "" -#: ../../library/http.cookies.rst:216 -msgid "" -"Return a string representation of the Morsel, suitable to be sent as an HTTP " -"header. By default, all the attributes are included, unless *attrs* is " -"given, in which case it should be a list of attributes to use. *header* is " -"by default ``\"Set-Cookie:\"``." +msgid "Return a string representation of the Morsel, suitable to be sent as an HTTP header. By default, all the attributes are included, unless *attrs* is given, in which case it should be a list of attributes to use. *header* is by default ``\"Set-Cookie:\"``." msgstr "" -#: ../../library/http.cookies.rst:224 -msgid "" -"Return an embeddable JavaScript snippet, which, if run on a browser which " -"supports JavaScript, will act the same as if the HTTP header was sent." +msgid "Return an embeddable JavaScript snippet, which, if run on a browser which supports JavaScript, will act the same as if the HTTP header was sent." msgstr "" -#: ../../library/http.cookies.rst:232 -msgid "" -"Return a string representing the Morsel, without any surrounding HTTP or " -"JavaScript." +msgid "Return a string representing the Morsel, without any surrounding HTTP or JavaScript." msgstr "" -#: ../../library/http.cookies.rst:240 -msgid "" -"Update the values in the Morsel dictionary with the values in the dictionary " -"*values*. Raise an error if any of the keys in the *values* dict is not a " -"valid :rfc:`2109` attribute." +msgid "Update the values in the Morsel dictionary with the values in the dictionary *values*. Raise an error if any of the keys in the *values* dict is not a valid :rfc:`2109` attribute." msgstr "" -#: ../../library/http.cookies.rst:244 msgid "an error is raised for invalid keys." msgstr "" -#: ../../library/http.cookies.rst:250 msgid "Return a shallow copy of the Morsel object." msgstr "" -#: ../../library/http.cookies.rst:252 msgid "return a Morsel object instead of a dict." msgstr "" -#: ../../library/http.cookies.rst:258 -msgid "" -"Raise an error if key is not a valid :rfc:`2109` attribute, otherwise behave " -"the same as :meth:`dict.setdefault`." +msgid "Raise an error if key is not a valid :rfc:`2109` attribute, otherwise behave the same as :meth:`dict.setdefault`." msgstr "" -#: ../../library/http.cookies.rst:265 msgid "Example" msgstr "" -#: ../../library/http.cookies.rst:267 -msgid "" -"The following example demonstrates how to use the :mod:`!http.cookies` " -"module." +msgid "The following example demonstrates how to use the :mod:`!http.cookies` module." msgstr "" -#: ../../library/http.cookies.rst:269 msgid "" ">>> from http import cookies\n" ">>> C = cookies.SimpleCookie()\n" @@ -337,8 +198,7 @@ msgid "" ">>> print(C.output(attrs=[], header=\"Cookie:\"))\n" "Cookie: rocky=road\n" ">>> C = cookies.SimpleCookie()\n" -">>> C.load(\"chips=ahoy; vienna=finger\") # load from a string (HTTP " -"header)\n" +">>> C.load(\"chips=ahoy; vienna=finger\") # load from a string (HTTP header)\n" ">>> print(C)\n" "Set-Cookie: chips=ahoy\n" "Set-Cookie: vienna=finger\n" diff --git a/library/http.po b/library/http.po index a8c7138d..5a2cfa5b 100644 --- a/library/http.po +++ b/library/http.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:07+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,60 +23,36 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/http.rst:2 msgid ":mod:`!http` --- HTTP modules" msgstr "" -#: ../../library/http.rst:7 msgid "**Source code:** :source:`Lib/http/__init__.py`" msgstr "" -#: ../../library/http.rst:15 -msgid "" -":mod:`!http` is a package that collects several modules for working with the " -"HyperText Transfer Protocol:" +msgid ":mod:`!http` is a package that collects several modules for working with the HyperText Transfer Protocol:" msgstr "" -#: ../../library/http.rst:18 -msgid "" -":mod:`http.client` is a low-level HTTP protocol client; for high-level URL " -"opening use :mod:`urllib.request`" +msgid ":mod:`http.client` is a low-level HTTP protocol client; for high-level URL opening use :mod:`urllib.request`" msgstr "" -#: ../../library/http.rst:20 -msgid "" -":mod:`http.server` contains basic HTTP server classes based " -"on :mod:`socketserver`" +msgid ":mod:`http.server` contains basic HTTP server classes based on :mod:`socketserver`" msgstr "" -#: ../../library/http.rst:21 -msgid "" -":mod:`http.cookies` has utilities for implementing state management with " -"cookies" +msgid ":mod:`http.cookies` has utilities for implementing state management with cookies" msgstr "" -#: ../../library/http.rst:22 msgid ":mod:`http.cookiejar` provides persistence of cookies" msgstr "" -#: ../../library/http.rst:25 -msgid "" -"The :mod:`!http` module also defines the following enums that help you work " -"with http related code:" +msgid "The :mod:`!http` module also defines the following enums that help you work with http related code:" msgstr "" -#: ../../library/http.rst:31 -msgid "" -"A subclass of :class:`enum.IntEnum` that defines a set of HTTP status codes, " -"reason phrases and long descriptions written in English." +msgid "A subclass of :class:`enum.IntEnum` that defines a set of HTTP status codes, reason phrases and long descriptions written in English." msgstr "" -#: ../../library/http.rst:34 ../../library/http.rst:162 -#: ../../library/http.rst:176 msgid "Usage::" msgstr "" -#: ../../library/http.rst:36 msgid "" ">>> from http import HTTPStatus\n" ">>> HTTPStatus.OK\n" @@ -93,863 +69,633 @@ msgid "" "[HTTPStatus.CONTINUE, HTTPStatus.SWITCHING_PROTOCOLS, ...]" msgstr "" -#: ../../library/http.rst:53 msgid "HTTP status codes" msgstr "" -#: ../../library/http.rst:55 -msgid "" -"Supported, `IANA-registered status codes `_ available " -"in :class:`http.HTTPStatus` are:" +msgid "Supported, `IANA-registered status codes `_ available in :class:`http.HTTPStatus` are:" msgstr "" -#: ../../library/http.rst:60 msgid "Code" msgstr "" -#: ../../library/http.rst:60 ../../library/http.rst:209 msgid "Enum Name" msgstr "" -#: ../../library/http.rst:60 ../../library/http.rst:153 -#: ../../library/http.rst:209 msgid "Details" msgstr "" -#: ../../library/http.rst:62 msgid "``100``" msgstr "" -#: ../../library/http.rst:62 msgid "``CONTINUE``" msgstr "" -#: ../../library/http.rst:62 msgid "HTTP Semantics :rfc:`9110`, Section 15.2.1" msgstr "" -#: ../../library/http.rst:63 msgid "``101``" msgstr "" -#: ../../library/http.rst:63 msgid "``SWITCHING_PROTOCOLS``" msgstr "" -#: ../../library/http.rst:63 msgid "HTTP Semantics :rfc:`9110`, Section 15.2.2" msgstr "" -#: ../../library/http.rst:64 msgid "``102``" msgstr "" -#: ../../library/http.rst:64 msgid "``PROCESSING``" msgstr "" -#: ../../library/http.rst:64 msgid "WebDAV :rfc:`2518`, Section 10.1" msgstr "" -#: ../../library/http.rst:65 msgid "``103``" msgstr "" -#: ../../library/http.rst:65 msgid "``EARLY_HINTS``" msgstr "" -#: ../../library/http.rst:65 msgid "An HTTP Status Code for Indicating Hints :rfc:`8297`" msgstr "" -#: ../../library/http.rst:66 msgid "``200``" msgstr "" -#: ../../library/http.rst:66 msgid "``OK``" msgstr "" -#: ../../library/http.rst:66 msgid "HTTP Semantics :rfc:`9110`, Section 15.3.1" msgstr "" -#: ../../library/http.rst:67 msgid "``201``" msgstr "" -#: ../../library/http.rst:67 msgid "``CREATED``" msgstr "" -#: ../../library/http.rst:67 msgid "HTTP Semantics :rfc:`9110`, Section 15.3.2" msgstr "" -#: ../../library/http.rst:68 msgid "``202``" msgstr "" -#: ../../library/http.rst:68 msgid "``ACCEPTED``" msgstr "" -#: ../../library/http.rst:68 msgid "HTTP Semantics :rfc:`9110`, Section 15.3.3" msgstr "" -#: ../../library/http.rst:69 msgid "``203``" msgstr "" -#: ../../library/http.rst:69 msgid "``NON_AUTHORITATIVE_INFORMATION``" msgstr "" -#: ../../library/http.rst:69 msgid "HTTP Semantics :rfc:`9110`, Section 15.3.4" msgstr "" -#: ../../library/http.rst:70 msgid "``204``" msgstr "" -#: ../../library/http.rst:70 msgid "``NO_CONTENT``" msgstr "" -#: ../../library/http.rst:70 msgid "HTTP Semantics :rfc:`9110`, Section 15.3.5" msgstr "" -#: ../../library/http.rst:71 msgid "``205``" msgstr "" -#: ../../library/http.rst:71 msgid "``RESET_CONTENT``" msgstr "" -#: ../../library/http.rst:71 msgid "HTTP Semantics :rfc:`9110`, Section 15.3.6" msgstr "" -#: ../../library/http.rst:72 msgid "``206``" msgstr "" -#: ../../library/http.rst:72 msgid "``PARTIAL_CONTENT``" msgstr "" -#: ../../library/http.rst:72 msgid "HTTP Semantics :rfc:`9110`, Section 15.3.7" msgstr "" -#: ../../library/http.rst:73 msgid "``207``" msgstr "" -#: ../../library/http.rst:73 msgid "``MULTI_STATUS``" msgstr "" -#: ../../library/http.rst:73 msgid "WebDAV :rfc:`4918`, Section 11.1" msgstr "" -#: ../../library/http.rst:74 msgid "``208``" msgstr "" -#: ../../library/http.rst:74 msgid "``ALREADY_REPORTED``" msgstr "" -#: ../../library/http.rst:74 msgid "WebDAV Binding Extensions :rfc:`5842`, Section 7.1 (Experimental)" msgstr "" -#: ../../library/http.rst:75 msgid "``226``" msgstr "" -#: ../../library/http.rst:75 msgid "``IM_USED``" msgstr "" -#: ../../library/http.rst:75 msgid "Delta Encoding in HTTP :rfc:`3229`, Section 10.4.1" msgstr "" -#: ../../library/http.rst:76 msgid "``300``" msgstr "" -#: ../../library/http.rst:76 msgid "``MULTIPLE_CHOICES``" msgstr "" -#: ../../library/http.rst:76 msgid "HTTP Semantics :rfc:`9110`, Section 15.4.1" msgstr "" -#: ../../library/http.rst:77 msgid "``301``" msgstr "" -#: ../../library/http.rst:77 msgid "``MOVED_PERMANENTLY``" msgstr "" -#: ../../library/http.rst:77 msgid "HTTP Semantics :rfc:`9110`, Section 15.4.2" msgstr "" -#: ../../library/http.rst:78 msgid "``302``" msgstr "" -#: ../../library/http.rst:78 msgid "``FOUND``" msgstr "" -#: ../../library/http.rst:78 msgid "HTTP Semantics :rfc:`9110`, Section 15.4.3" msgstr "" -#: ../../library/http.rst:79 msgid "``303``" msgstr "" -#: ../../library/http.rst:79 msgid "``SEE_OTHER``" msgstr "" -#: ../../library/http.rst:79 msgid "HTTP Semantics :rfc:`9110`, Section 15.4.4" msgstr "" -#: ../../library/http.rst:80 msgid "``304``" msgstr "" -#: ../../library/http.rst:80 msgid "``NOT_MODIFIED``" msgstr "" -#: ../../library/http.rst:80 msgid "HTTP Semantics :rfc:`9110`, Section 15.4.5" msgstr "" -#: ../../library/http.rst:81 msgid "``305``" msgstr "" -#: ../../library/http.rst:81 msgid "``USE_PROXY``" msgstr "" -#: ../../library/http.rst:81 msgid "HTTP Semantics :rfc:`9110`, Section 15.4.6" msgstr "" -#: ../../library/http.rst:82 msgid "``307``" msgstr "" -#: ../../library/http.rst:82 msgid "``TEMPORARY_REDIRECT``" msgstr "" -#: ../../library/http.rst:82 msgid "HTTP Semantics :rfc:`9110`, Section 15.4.8" msgstr "" -#: ../../library/http.rst:83 msgid "``308``" msgstr "" -#: ../../library/http.rst:83 msgid "``PERMANENT_REDIRECT``" msgstr "" -#: ../../library/http.rst:83 msgid "HTTP Semantics :rfc:`9110`, Section 15.4.9" msgstr "" -#: ../../library/http.rst:84 msgid "``400``" msgstr "" -#: ../../library/http.rst:84 msgid "``BAD_REQUEST``" msgstr "" -#: ../../library/http.rst:84 msgid "HTTP Semantics :rfc:`9110`, Section 15.5.1" msgstr "" -#: ../../library/http.rst:85 msgid "``401``" msgstr "" -#: ../../library/http.rst:85 msgid "``UNAUTHORIZED``" msgstr "" -#: ../../library/http.rst:85 msgid "HTTP Semantics :rfc:`9110`, Section 15.5.2" msgstr "" -#: ../../library/http.rst:86 msgid "``402``" msgstr "" -#: ../../library/http.rst:86 msgid "``PAYMENT_REQUIRED``" msgstr "" -#: ../../library/http.rst:86 msgid "HTTP Semantics :rfc:`9110`, Section 15.5.3" msgstr "" -#: ../../library/http.rst:87 msgid "``403``" msgstr "" -#: ../../library/http.rst:87 msgid "``FORBIDDEN``" msgstr "" -#: ../../library/http.rst:87 msgid "HTTP Semantics :rfc:`9110`, Section 15.5.4" msgstr "" -#: ../../library/http.rst:88 msgid "``404``" msgstr "" -#: ../../library/http.rst:88 msgid "``NOT_FOUND``" msgstr "" -#: ../../library/http.rst:88 msgid "HTTP Semantics :rfc:`9110`, Section 15.5.5" msgstr "" -#: ../../library/http.rst:89 msgid "``405``" msgstr "" -#: ../../library/http.rst:89 msgid "``METHOD_NOT_ALLOWED``" msgstr "" -#: ../../library/http.rst:89 msgid "HTTP Semantics :rfc:`9110`, Section 15.5.6" msgstr "" -#: ../../library/http.rst:90 msgid "``406``" msgstr "" -#: ../../library/http.rst:90 msgid "``NOT_ACCEPTABLE``" msgstr "" -#: ../../library/http.rst:90 msgid "HTTP Semantics :rfc:`9110`, Section 15.5.7" msgstr "" -#: ../../library/http.rst:91 msgid "``407``" msgstr "" -#: ../../library/http.rst:91 msgid "``PROXY_AUTHENTICATION_REQUIRED``" msgstr "" -#: ../../library/http.rst:91 msgid "HTTP Semantics :rfc:`9110`, Section 15.5.8" msgstr "" -#: ../../library/http.rst:92 msgid "``408``" msgstr "" -#: ../../library/http.rst:92 msgid "``REQUEST_TIMEOUT``" msgstr "" -#: ../../library/http.rst:92 msgid "HTTP Semantics :rfc:`9110`, Section 15.5.9" msgstr "" -#: ../../library/http.rst:93 msgid "``409``" msgstr "" -#: ../../library/http.rst:93 msgid "``CONFLICT``" msgstr "" -#: ../../library/http.rst:93 msgid "HTTP Semantics :rfc:`9110`, Section 15.5.10" msgstr "" -#: ../../library/http.rst:94 msgid "``410``" msgstr "" -#: ../../library/http.rst:94 msgid "``GONE``" msgstr "" -#: ../../library/http.rst:94 msgid "HTTP Semantics :rfc:`9110`, Section 15.5.11" msgstr "" -#: ../../library/http.rst:95 msgid "``411``" msgstr "" -#: ../../library/http.rst:95 msgid "``LENGTH_REQUIRED``" msgstr "" -#: ../../library/http.rst:95 msgid "HTTP Semantics :rfc:`9110`, Section 15.5.12" msgstr "" -#: ../../library/http.rst:96 msgid "``412``" msgstr "" -#: ../../library/http.rst:96 msgid "``PRECONDITION_FAILED``" msgstr "" -#: ../../library/http.rst:96 msgid "HTTP Semantics :rfc:`9110`, Section 15.5.13" msgstr "" -#: ../../library/http.rst:97 msgid "``413``" msgstr "" -#: ../../library/http.rst:97 msgid "``CONTENT_TOO_LARGE``" msgstr "" -#: ../../library/http.rst:97 msgid "HTTP Semantics :rfc:`9110`, Section 15.5.14" msgstr "" -#: ../../library/http.rst:98 msgid "``414``" msgstr "" -#: ../../library/http.rst:98 msgid "``URI_TOO_LONG``" msgstr "" -#: ../../library/http.rst:98 msgid "HTTP Semantics :rfc:`9110`, Section 15.5.15" msgstr "" -#: ../../library/http.rst:99 msgid "``415``" msgstr "" -#: ../../library/http.rst:99 msgid "``UNSUPPORTED_MEDIA_TYPE``" msgstr "" -#: ../../library/http.rst:99 msgid "HTTP Semantics :rfc:`9110`, Section 15.5.16" msgstr "" -#: ../../library/http.rst:100 msgid "``416``" msgstr "" -#: ../../library/http.rst:100 msgid "``RANGE_NOT_SATISFIABLE``" msgstr "" -#: ../../library/http.rst:100 msgid "HTTP Semantics :rfc:`9110`, Section 15.5.17" msgstr "" -#: ../../library/http.rst:101 msgid "``417``" msgstr "" -#: ../../library/http.rst:101 msgid "``EXPECTATION_FAILED``" msgstr "" -#: ../../library/http.rst:101 msgid "HTTP Semantics :rfc:`9110`, Section 15.5.18" msgstr "" -#: ../../library/http.rst:102 msgid "``418``" msgstr "" -#: ../../library/http.rst:102 msgid "``IM_A_TEAPOT``" msgstr "" -#: ../../library/http.rst:102 msgid "HTCPCP/1.0 :rfc:`2324`, Section 2.3.2" msgstr "" -#: ../../library/http.rst:103 msgid "``421``" msgstr "" -#: ../../library/http.rst:103 msgid "``MISDIRECTED_REQUEST``" msgstr "" -#: ../../library/http.rst:103 msgid "HTTP Semantics :rfc:`9110`, Section 15.5.20" msgstr "" -#: ../../library/http.rst:104 msgid "``422``" msgstr "" -#: ../../library/http.rst:104 msgid "``UNPROCESSABLE_CONTENT``" msgstr "" -#: ../../library/http.rst:104 msgid "HTTP Semantics :rfc:`9110`, Section 15.5.21" msgstr "" -#: ../../library/http.rst:105 msgid "``423``" msgstr "" -#: ../../library/http.rst:105 msgid "``LOCKED``" msgstr "" -#: ../../library/http.rst:105 msgid "WebDAV :rfc:`4918`, Section 11.3" msgstr "" -#: ../../library/http.rst:106 msgid "``424``" msgstr "" -#: ../../library/http.rst:106 msgid "``FAILED_DEPENDENCY``" msgstr "" -#: ../../library/http.rst:106 msgid "WebDAV :rfc:`4918`, Section 11.4" msgstr "" -#: ../../library/http.rst:107 msgid "``425``" msgstr "" -#: ../../library/http.rst:107 msgid "``TOO_EARLY``" msgstr "" -#: ../../library/http.rst:107 msgid "Using Early Data in HTTP :rfc:`8470`" msgstr "" -#: ../../library/http.rst:108 msgid "``426``" msgstr "" -#: ../../library/http.rst:108 msgid "``UPGRADE_REQUIRED``" msgstr "" -#: ../../library/http.rst:108 msgid "HTTP Semantics :rfc:`9110`, Section 15.5.22" msgstr "" -#: ../../library/http.rst:109 msgid "``428``" msgstr "" -#: ../../library/http.rst:109 msgid "``PRECONDITION_REQUIRED``" msgstr "" -#: ../../library/http.rst:109 ../../library/http.rst:110 -#: ../../library/http.rst:111 msgid "Additional HTTP Status Codes :rfc:`6585`" msgstr "" -#: ../../library/http.rst:110 msgid "``429``" msgstr "" -#: ../../library/http.rst:110 msgid "``TOO_MANY_REQUESTS``" msgstr "" -#: ../../library/http.rst:111 msgid "``431``" msgstr "" -#: ../../library/http.rst:111 msgid "``REQUEST_HEADER_FIELDS_TOO_LARGE``" msgstr "" -#: ../../library/http.rst:112 msgid "``451``" msgstr "" -#: ../../library/http.rst:112 msgid "``UNAVAILABLE_FOR_LEGAL_REASONS``" msgstr "" -#: ../../library/http.rst:112 msgid "An HTTP Status Code to Report Legal Obstacles :rfc:`7725`" msgstr "" -#: ../../library/http.rst:113 msgid "``500``" msgstr "" -#: ../../library/http.rst:113 msgid "``INTERNAL_SERVER_ERROR``" msgstr "" -#: ../../library/http.rst:113 msgid "HTTP Semantics :rfc:`9110`, Section 15.6.1" msgstr "" -#: ../../library/http.rst:114 msgid "``501``" msgstr "" -#: ../../library/http.rst:114 msgid "``NOT_IMPLEMENTED``" msgstr "" -#: ../../library/http.rst:114 msgid "HTTP Semantics :rfc:`9110`, Section 15.6.2" msgstr "" -#: ../../library/http.rst:115 msgid "``502``" msgstr "" -#: ../../library/http.rst:115 msgid "``BAD_GATEWAY``" msgstr "" -#: ../../library/http.rst:115 msgid "HTTP Semantics :rfc:`9110`, Section 15.6.3" msgstr "" -#: ../../library/http.rst:116 msgid "``503``" msgstr "" -#: ../../library/http.rst:116 msgid "``SERVICE_UNAVAILABLE``" msgstr "" -#: ../../library/http.rst:116 msgid "HTTP Semantics :rfc:`9110`, Section 15.6.4" msgstr "" -#: ../../library/http.rst:117 msgid "``504``" msgstr "" -#: ../../library/http.rst:117 msgid "``GATEWAY_TIMEOUT``" msgstr "" -#: ../../library/http.rst:117 msgid "HTTP Semantics :rfc:`9110`, Section 15.6.5" msgstr "" -#: ../../library/http.rst:118 msgid "``505``" msgstr "" -#: ../../library/http.rst:118 msgid "``HTTP_VERSION_NOT_SUPPORTED``" msgstr "" -#: ../../library/http.rst:118 msgid "HTTP Semantics :rfc:`9110`, Section 15.6.6" msgstr "" -#: ../../library/http.rst:119 msgid "``506``" msgstr "" -#: ../../library/http.rst:119 msgid "``VARIANT_ALSO_NEGOTIATES``" msgstr "" -#: ../../library/http.rst:119 -msgid "" -"Transparent Content Negotiation in HTTP :rfc:`2295`, Section 8.1 " -"(Experimental)" +msgid "Transparent Content Negotiation in HTTP :rfc:`2295`, Section 8.1 (Experimental)" msgstr "" -#: ../../library/http.rst:120 msgid "``507``" msgstr "" -#: ../../library/http.rst:120 msgid "``INSUFFICIENT_STORAGE``" msgstr "" -#: ../../library/http.rst:120 msgid "WebDAV :rfc:`4918`, Section 11.5" msgstr "" -#: ../../library/http.rst:121 msgid "``508``" msgstr "" -#: ../../library/http.rst:121 msgid "``LOOP_DETECTED``" msgstr "" -#: ../../library/http.rst:121 msgid "WebDAV Binding Extensions :rfc:`5842`, Section 7.2 (Experimental)" msgstr "" -#: ../../library/http.rst:122 msgid "``510``" msgstr "" -#: ../../library/http.rst:122 msgid "``NOT_EXTENDED``" msgstr "" -#: ../../library/http.rst:122 msgid "An HTTP Extension Framework :rfc:`2774`, Section 7 (Experimental)" msgstr "" -#: ../../library/http.rst:123 msgid "``511``" msgstr "" -#: ../../library/http.rst:123 msgid "``NETWORK_AUTHENTICATION_REQUIRED``" msgstr "" -#: ../../library/http.rst:123 msgid "Additional HTTP Status Codes :rfc:`6585`, Section 6" msgstr "" -#: ../../library/http.rst:126 -msgid "" -"In order to preserve backwards compatibility, enum values are also present " -"in the :mod:`http.client` module in the form of constants. The enum name is " -"equal to the constant name (i.e. ``http.HTTPStatus.OK`` is also available as " -"``http.client.OK``)." +msgid "In order to preserve backwards compatibility, enum values are also present in the :mod:`http.client` module in the form of constants. The enum name is equal to the constant name (i.e. ``http.HTTPStatus.OK`` is also available as ``http.client.OK``)." msgstr "" -#: ../../library/http.rst:131 msgid "Added ``421 MISDIRECTED_REQUEST`` status code." msgstr "" -#: ../../library/http.rst:134 msgid "Added ``451 UNAVAILABLE_FOR_LEGAL_REASONS`` status code." msgstr "" -#: ../../library/http.rst:137 -msgid "" -"Added ``103 EARLY_HINTS``, ``418 IM_A_TEAPOT`` and ``425 TOO_EARLY`` status " -"codes." +msgid "Added ``103 EARLY_HINTS``, ``418 IM_A_TEAPOT`` and ``425 TOO_EARLY`` status codes." msgstr "" -#: ../../library/http.rst:140 -msgid "" -"Implemented RFC9110 naming for status constants. Old constant names are " -"preserved for backwards compatibility: ``413 REQUEST_ENTITY_TOO_LARGE``, " -"``414 REQUEST_URI_TOO_LONG``, ``416 REQUESTED_RANGE_NOT_SATISFIABLE`` and " -"``422 UNPROCESSABLE_ENTITY``." +msgid "Implemented RFC9110 naming for status constants. Old constant names are preserved for backwards compatibility: ``413 REQUEST_ENTITY_TOO_LARGE``, ``414 REQUEST_URI_TOO_LONG``, ``416 REQUESTED_RANGE_NOT_SATISFIABLE`` and ``422 UNPROCESSABLE_ENTITY``." msgstr "" -#: ../../library/http.rst:146 msgid "HTTP status category" msgstr "" -#: ../../library/http.rst:150 -msgid "" -"The enum values have several properties to indicate the HTTP status category:" +msgid "The enum values have several properties to indicate the HTTP status category:" msgstr "" -#: ../../library/http.rst:153 msgid "Property" msgstr "" -#: ../../library/http.rst:153 msgid "Indicates that" msgstr "" -#: ../../library/http.rst:155 msgid "``is_informational``" msgstr "" -#: ../../library/http.rst:155 msgid "``100 <= status <= 199``" msgstr "" -#: ../../library/http.rst:155 ../../library/http.rst:156 -#: ../../library/http.rst:157 ../../library/http.rst:158 -#: ../../library/http.rst:159 msgid "HTTP Semantics :rfc:`9110`, Section 15" msgstr "" -#: ../../library/http.rst:156 msgid "``is_success``" msgstr "" -#: ../../library/http.rst:156 msgid "``200 <= status <= 299``" msgstr "" -#: ../../library/http.rst:157 msgid "``is_redirection``" msgstr "" -#: ../../library/http.rst:157 msgid "``300 <= status <= 399``" msgstr "" -#: ../../library/http.rst:158 msgid "``is_client_error``" msgstr "" -#: ../../library/http.rst:158 msgid "``400 <= status <= 499``" msgstr "" -#: ../../library/http.rst:159 msgid "``is_server_error``" msgstr "" -#: ../../library/http.rst:159 msgid "``500 <= status <= 599``" msgstr "" -#: ../../library/http.rst:164 msgid "" ">>> from http import HTTPStatus\n" ">>> HTTPStatus.OK.is_success\n" @@ -958,13 +704,9 @@ msgid "" "False" msgstr "" -#: ../../library/http.rst:174 -msgid "" -"A subclass of :class:`enum.StrEnum` that defines a set of HTTP methods and " -"descriptions written in English." +msgid "A subclass of :class:`enum.StrEnum` that defines a set of HTTP methods and descriptions written in English." msgstr "" -#: ../../library/http.rst:178 msgid "" ">>> from http import HTTPMethod\n" ">>>\n" @@ -988,100 +730,74 @@ msgid "" " ]" msgstr "" -#: ../../library/http.rst:202 msgid "HTTP methods" msgstr "" -#: ../../library/http.rst:204 -msgid "" -"Supported, `IANA-registered methods `_ available in :class:`http.HTTPMethod` are:" +msgid "Supported, `IANA-registered methods `_ available in :class:`http.HTTPMethod` are:" msgstr "" -#: ../../library/http.rst:209 msgid "Method" msgstr "" -#: ../../library/http.rst:211 msgid "``GET``" msgstr "" -#: ../../library/http.rst:211 msgid "HTTP Semantics :rfc:`9110`, Section 9.3.1" msgstr "" -#: ../../library/http.rst:212 msgid "``HEAD``" msgstr "" -#: ../../library/http.rst:212 msgid "HTTP Semantics :rfc:`9110`, Section 9.3.2" msgstr "" -#: ../../library/http.rst:213 msgid "``POST``" msgstr "" -#: ../../library/http.rst:213 msgid "HTTP Semantics :rfc:`9110`, Section 9.3.3" msgstr "" -#: ../../library/http.rst:214 msgid "``PUT``" msgstr "" -#: ../../library/http.rst:214 msgid "HTTP Semantics :rfc:`9110`, Section 9.3.4" msgstr "" -#: ../../library/http.rst:215 msgid "``DELETE``" msgstr "" -#: ../../library/http.rst:215 msgid "HTTP Semantics :rfc:`9110`, Section 9.3.5" msgstr "" -#: ../../library/http.rst:216 msgid "``CONNECT``" msgstr "" -#: ../../library/http.rst:216 msgid "HTTP Semantics :rfc:`9110`, Section 9.3.6" msgstr "" -#: ../../library/http.rst:217 msgid "``OPTIONS``" msgstr "" -#: ../../library/http.rst:217 msgid "HTTP Semantics :rfc:`9110`, Section 9.3.7" msgstr "" -#: ../../library/http.rst:218 msgid "``TRACE``" msgstr "" -#: ../../library/http.rst:218 msgid "HTTP Semantics :rfc:`9110`, Section 9.3.8" msgstr "" -#: ../../library/http.rst:219 msgid "``PATCH``" msgstr "" -#: ../../library/http.rst:219 msgid "HTTP/1.1 :rfc:`5789`" msgstr "" -#: ../../library/http.rst:9 msgid "HTTP" msgstr "" -#: ../../library/http.rst:9 msgid "protocol" msgstr "" -#: ../../library/http.rst:9 msgid "http (standard module)" msgstr "" diff --git a/library/http.server.po b/library/http.server.po index ba2a0198..306e871f 100644 --- a/library/http.server.po +++ b/library/http.server.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:07+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,42 +23,27 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/http.server.rst:2 msgid ":mod:`!http.server` --- HTTP servers" msgstr "" -#: ../../library/http.server.rst:7 msgid "**Source code:** :source:`Lib/http/server.py`" msgstr "" -#: ../../library/http.server.rst:17 msgid "This module defines classes for implementing HTTP servers." msgstr "" -#: ../../library/http.server.rst:22 -msgid "" -":mod:`!http.server` is not recommended for production. It only " -"implements :ref:`basic security checks `." +msgid ":mod:`!http.server` is not recommended for production. It only implements :ref:`basic security checks `." msgstr "" -#: ../../includes/wasm-notavail.rst:3 msgid "Availability" msgstr "" -#: ../../includes/wasm-notavail.rst:5 -msgid "" -"This module does not work or is not available on WebAssembly. See :ref:`wasm-" -"availability` for more information." +msgid "This module does not work or is not available on WebAssembly. See :ref:`wasm-availability` for more information." msgstr "" -#: ../../library/http.server.rst:27 -msgid "" -"One class, :class:`HTTPServer`, is a :class:`socketserver.TCPServer` " -"subclass. It creates and listens at the HTTP socket, dispatching the " -"requests to a handler. Code to create and run the server looks like this::" +msgid "One class, :class:`HTTPServer`, is a :class:`socketserver.TCPServer` subclass. It creates and listens at the HTTP socket, dispatching the requests to a handler. Code to create and run the server looks like this::" msgstr "" -#: ../../library/http.server.rst:31 msgid "" "def run(server_class=HTTPServer, handler_class=BaseHTTPRequestHandler):\n" " server_address = ('', 8000)\n" @@ -66,552 +51,261 @@ msgid "" " httpd.serve_forever()" msgstr "" -#: ../../library/http.server.rst:39 -msgid "" -"This class builds on the :class:`~socketserver.TCPServer` class by storing " -"the server address as instance variables named :attr:`server_name` " -"and :attr:`server_port`. The server is accessible by the handler, typically " -"through the handler's :attr:`~socketserver.BaseRequestHandler.server` " -"instance variable." +msgid "This class builds on the :class:`~socketserver.TCPServer` class by storing the server address as instance variables named :attr:`server_name` and :attr:`server_port`. The server is accessible by the handler, typically through the handler's :attr:`~socketserver.BaseRequestHandler.server` instance variable." msgstr "" -#: ../../library/http.server.rst:47 msgid "The HTTP server's fully qualified domain name." msgstr "" -#: ../../library/http.server.rst:51 msgid "The HTTP server's port number obtained from *server_address*." msgstr "" -#: ../../library/http.server.rst:56 -msgid "" -"This class is identical to HTTPServer but uses threads to handle requests by " -"using the :class:`~socketserver.ThreadingMixIn`. This is useful to handle " -"web browsers pre-opening sockets, on which :class:`HTTPServer` would wait " -"indefinitely." +msgid "This class is identical to HTTPServer but uses threads to handle requests by using the :class:`~socketserver.ThreadingMixIn`. This is useful to handle web browsers pre-opening sockets, on which :class:`HTTPServer` would wait indefinitely." msgstr "" -#: ../../library/http.server.rst:68 -msgid "" -"Subclass of :class:`HTTPServer` with a wrapped socket using the :mod:`ssl` " -"module. If the :mod:`ssl` module is not available, instantiating a :class:`!" -"HTTPSServer` object fails with a :exc:`RuntimeError`." +msgid "Subclass of :class:`HTTPServer` with a wrapped socket using the :mod:`ssl` module. If the :mod:`ssl` module is not available, instantiating a :class:`!HTTPSServer` object fails with a :exc:`RuntimeError`." msgstr "" -#: ../../library/http.server.rst:72 -msgid "" -"The *certfile* argument is the path to the SSL certificate chain file, and " -"the *keyfile* is the path to the file containing the private key." +msgid "The *certfile* argument is the path to the SSL certificate chain file, and the *keyfile* is the path to the file containing the private key." msgstr "" -#: ../../library/http.server.rst:75 -msgid "" -"A *password* can be specified for files protected and wrapped with PKCS#8, " -"but beware that this could possibly expose hardcoded passwords in clear." +msgid "A *password* can be specified for files protected and wrapped with PKCS#8, but beware that this could possibly expose hardcoded passwords in clear." msgstr "" -#: ../../library/http.server.rst:80 -msgid "" -"See :meth:`ssl.SSLContext.load_cert_chain` for additional information on the " -"accepted values for *certfile*, *keyfile* and *password*." +msgid "See :meth:`ssl.SSLContext.load_cert_chain` for additional information on the accepted values for *certfile*, *keyfile* and *password*." msgstr "" -#: ../../library/http.server.rst:84 -msgid "" -"When specified, the *alpn_protocols* argument must be a sequence of strings " -"specifying the \"Application-Layer Protocol Negotiation\" (ALPN) protocols " -"supported by the server. ALPN allows the server and the client to negotiate " -"the application protocol during the TLS handshake." +msgid "When specified, the *alpn_protocols* argument must be a sequence of strings specifying the \"Application-Layer Protocol Negotiation\" (ALPN) protocols supported by the server. ALPN allows the server and the client to negotiate the application protocol during the TLS handshake." msgstr "" -#: ../../library/http.server.rst:89 -msgid "" -"By default, it is set to ``[\"http/1.1\"]``, meaning the server supports " -"HTTP/1.1." +msgid "By default, it is set to ``[\"http/1.1\"]``, meaning the server supports HTTP/1.1." msgstr "" -#: ../../library/http.server.rst:97 -msgid "" -"This class is identical to :class:`HTTPSServer` but uses threads to handle " -"requests by inheriting from :class:`~socketserver.ThreadingMixIn`. This is " -"analogous to :class:`ThreadingHTTPServer` only using :class:`HTTPSServer`." +msgid "This class is identical to :class:`HTTPSServer` but uses threads to handle requests by inheriting from :class:`~socketserver.ThreadingMixIn`. This is analogous to :class:`ThreadingHTTPServer` only using :class:`HTTPSServer`." msgstr "" -#: ../../library/http.server.rst:104 -msgid "" -"The :class:`HTTPServer`, :class:`ThreadingHTTPServer`, :class:`HTTPSServer` " -"and :class:`ThreadingHTTPSServer` must be given a *RequestHandlerClass* on " -"instantiation, of which this module provides three different variants:" +msgid "The :class:`HTTPServer`, :class:`ThreadingHTTPServer`, :class:`HTTPSServer` and :class:`ThreadingHTTPSServer` must be given a *RequestHandlerClass* on instantiation, of which this module provides three different variants:" msgstr "" -#: ../../library/http.server.rst:110 -msgid "" -"This class is used to handle the HTTP requests that arrive at the server. " -"By itself, it cannot respond to any actual HTTP requests; it must be " -"subclassed to handle each request method (for example, ``'GET'`` or " -"``'POST'``). :class:`BaseHTTPRequestHandler` provides a number of class and " -"instance variables, and methods for use by subclasses." +msgid "This class is used to handle the HTTP requests that arrive at the server. By itself, it cannot respond to any actual HTTP requests; it must be subclassed to handle each request method (for example, ``'GET'`` or ``'POST'``). :class:`BaseHTTPRequestHandler` provides a number of class and instance variables, and methods for use by subclasses." msgstr "" -#: ../../library/http.server.rst:116 -msgid "" -"The handler will parse the request and the headers, then call a method " -"specific to the request type. The method name is constructed from the " -"request. For example, for the request method ``SPAM``, the :meth:`!do_SPAM` " -"method will be called with no arguments. All of the relevant information is " -"stored in instance variables of the handler. Subclasses should not need to " -"override or extend the :meth:`!__init__` method." +msgid "The handler will parse the request and the headers, then call a method specific to the request type. The method name is constructed from the request. For example, for the request method ``SPAM``, the :meth:`!do_SPAM` method will be called with no arguments. All of the relevant information is stored in instance variables of the handler. Subclasses should not need to override or extend the :meth:`!__init__` method." msgstr "" -#: ../../library/http.server.rst:123 msgid ":class:`BaseHTTPRequestHandler` has the following instance variables:" msgstr "" -#: ../../library/http.server.rst:127 -msgid "" -"Contains a tuple of the form ``(host, port)`` referring to the client's " -"address." +msgid "Contains a tuple of the form ``(host, port)`` referring to the client's address." msgstr "" -#: ../../library/http.server.rst:132 msgid "Contains the server instance." msgstr "" -#: ../../library/http.server.rst:136 -msgid "" -"Boolean that should be set before :meth:`handle_one_request` returns, " -"indicating if another request may be expected, or if the connection should " -"be shut down." +msgid "Boolean that should be set before :meth:`handle_one_request` returns, indicating if another request may be expected, or if the connection should be shut down." msgstr "" -#: ../../library/http.server.rst:142 -msgid "" -"Contains the string representation of the HTTP request line. The terminating " -"CRLF is stripped. This attribute should be set " -"by :meth:`handle_one_request`. If no valid request line was processed, it " -"should be set to the empty string." +msgid "Contains the string representation of the HTTP request line. The terminating CRLF is stripped. This attribute should be set by :meth:`handle_one_request`. If no valid request line was processed, it should be set to the empty string." msgstr "" -#: ../../library/http.server.rst:149 msgid "Contains the command (request type). For example, ``'GET'``." msgstr "" -#: ../../library/http.server.rst:153 -msgid "" -"Contains the request path. If the query component of the URL is present, " -"then ``path`` includes the query. Using the terminology of :rfc:`3986`, " -"``path`` here includes ``hier-part`` and the ``query``." +msgid "Contains the request path. If the query component of the URL is present, then ``path`` includes the query. Using the terminology of :rfc:`3986`, ``path`` here includes ``hier-part`` and the ``query``." msgstr "" -#: ../../library/http.server.rst:159 -msgid "" -"Contains the version string from the request. For example, ``'HTTP/1.0'``." +msgid "Contains the version string from the request. For example, ``'HTTP/1.0'``." msgstr "" -#: ../../library/http.server.rst:163 -msgid "" -"Holds an instance of the class specified by the :attr:`MessageClass` class " -"variable. This instance parses and manages the headers in the HTTP request. " -"The :func:`~http.client.parse_headers` function from :mod:`http.client` is " -"used to parse the headers and it requires that the HTTP request provide a " -"valid :rfc:`5322` style header." +msgid "Holds an instance of the class specified by the :attr:`MessageClass` class variable. This instance parses and manages the headers in the HTTP request. The :func:`~http.client.parse_headers` function from :mod:`http.client` is used to parse the headers and it requires that the HTTP request provide a valid :rfc:`5322` style header." msgstr "" -#: ../../library/http.server.rst:171 -msgid "" -"An :class:`io.BufferedIOBase` input stream, ready to read from the start of " -"the optional input data." +msgid "An :class:`io.BufferedIOBase` input stream, ready to read from the start of the optional input data." msgstr "" -#: ../../library/http.server.rst:176 -msgid "" -"Contains the output stream for writing a response back to the client. Proper " -"adherence to the HTTP protocol must be used when writing to this stream in " -"order to achieve successful interoperation with HTTP clients." +msgid "Contains the output stream for writing a response back to the client. Proper adherence to the HTTP protocol must be used when writing to this stream in order to achieve successful interoperation with HTTP clients." msgstr "" -#: ../../library/http.server.rst:181 msgid "This is an :class:`io.BufferedIOBase` stream." msgstr "" -#: ../../library/http.server.rst:184 msgid ":class:`BaseHTTPRequestHandler` has the following attributes:" msgstr "" -#: ../../library/http.server.rst:188 -msgid "" -"Specifies the server software version. You may want to override this. The " -"format is multiple whitespace-separated strings, where each string is of the " -"form name[/version]. For example, ``'BaseHTTP/0.2'``." +msgid "Specifies the server software version. You may want to override this. The format is multiple whitespace-separated strings, where each string is of the form name[/version]. For example, ``'BaseHTTP/0.2'``." msgstr "" -#: ../../library/http.server.rst:194 -msgid "" -"Contains the Python system version, in a form usable by " -"the :attr:`version_string` method and the :attr:`server_version` class " -"variable. For example, ``'Python/1.4'``." +msgid "Contains the Python system version, in a form usable by the :attr:`version_string` method and the :attr:`server_version` class variable. For example, ``'Python/1.4'``." msgstr "" -#: ../../library/http.server.rst:200 -msgid "" -"Specifies a format string that should be used by :meth:`send_error` method " -"for building an error response to the client. The string is filled by " -"default with variables from :attr:`responses` based on the status code " -"passed to :meth:`send_error`." +msgid "Specifies a format string that should be used by :meth:`send_error` method for building an error response to the client. The string is filled by default with variables from :attr:`responses` based on the status code passed to :meth:`send_error`." msgstr "" -#: ../../library/http.server.rst:207 -msgid "" -"Specifies the Content-Type HTTP header of error responses sent to the " -"client. The default value is ``'text/html'``." +msgid "Specifies the Content-Type HTTP header of error responses sent to the client. The default value is ``'text/html'``." msgstr "" -#: ../../library/http.server.rst:212 -msgid "" -"Specifies the HTTP version to which the server is conformant. It is sent in " -"responses to let the client know the server's communication capabilities for " -"future requests. If set to ``'HTTP/1.1'``, the server will permit HTTP " -"persistent connections; however, your server *must* then include an accurate " -"``Content-Length`` header (using :meth:`send_header`) in all of its " -"responses to clients. For backwards compatibility, the setting defaults to " -"``'HTTP/1.0'``." +msgid "Specifies the HTTP version to which the server is conformant. It is sent in responses to let the client know the server's communication capabilities for future requests. If set to ``'HTTP/1.1'``, the server will permit HTTP persistent connections; however, your server *must* then include an accurate ``Content-Length`` header (using :meth:`send_header`) in all of its responses to clients. For backwards compatibility, the setting defaults to ``'HTTP/1.0'``." msgstr "" -#: ../../library/http.server.rst:222 -msgid "" -"Specifies an :class:`email.message.Message`\\ -like class to parse HTTP " -"headers. Typically, this is not overridden, and it defaults " -"to :class:`http.client.HTTPMessage`." +msgid "Specifies an :class:`email.message.Message`\\ -like class to parse HTTP headers. Typically, this is not overridden, and it defaults to :class:`http.client.HTTPMessage`." msgstr "" -#: ../../library/http.server.rst:228 -msgid "" -"This attribute contains a mapping of error code integers to two-element " -"tuples containing a short and long message. For example, ``{code: " -"(shortmessage, longmessage)}``. The *shortmessage* is usually used as the " -"*message* key in an error response, and *longmessage* as the *explain* key. " -"It is used by :meth:`send_response_only` and :meth:`send_error` methods." +msgid "This attribute contains a mapping of error code integers to two-element tuples containing a short and long message. For example, ``{code: (shortmessage, longmessage)}``. The *shortmessage* is usually used as the *message* key in an error response, and *longmessage* as the *explain* key. It is used by :meth:`send_response_only` and :meth:`send_error` methods." msgstr "" -#: ../../library/http.server.rst:234 msgid "A :class:`BaseHTTPRequestHandler` instance has the following methods:" msgstr "" -#: ../../library/http.server.rst:238 -msgid "" -"Calls :meth:`handle_one_request` once (or, if persistent connections are " -"enabled, multiple times) to handle incoming HTTP requests. You should never " -"need to override it; instead, implement appropriate :meth:`!do_\\*` methods." +msgid "Calls :meth:`handle_one_request` once (or, if persistent connections are enabled, multiple times) to handle incoming HTTP requests. You should never need to override it; instead, implement appropriate :meth:`!do_\\*` methods." msgstr "" -#: ../../library/http.server.rst:245 -msgid "" -"This method will parse and dispatch the request to the appropriate :meth:`!" -"do_\\*` method. You should never need to override it." +msgid "This method will parse and dispatch the request to the appropriate :meth:`!do_\\*` method. You should never need to override it." msgstr "" -#: ../../library/http.server.rst:250 -msgid "" -"When an HTTP/1.1 conformant server receives an ``Expect: 100-continue`` " -"request header it responds with a ``100 Continue`` followed by ``200 OK`` " -"headers. This method can be overridden to raise an error if the server does " -"not want the client to continue. For example, the server can choose to send " -"``417 Expectation Failed`` as a response header and ``return False``." +msgid "When an HTTP/1.1 conformant server receives an ``Expect: 100-continue`` request header it responds with a ``100 Continue`` followed by ``200 OK`` headers. This method can be overridden to raise an error if the server does not want the client to continue. For example, the server can choose to send ``417 Expectation Failed`` as a response header and ``return False``." msgstr "" -#: ../../library/http.server.rst:261 -msgid "" -"Sends and logs a complete error reply to the client. The numeric *code* " -"specifies the HTTP error code, with *message* as an optional, short, human " -"readable description of the error. The *explain* argument can be used to " -"provide more detailed information about the error; it will be formatted " -"using the :attr:`error_message_format` attribute and emitted, after a " -"complete set of headers, as the response body. The :attr:`responses` " -"attribute holds the default values for *message* and *explain* that will be " -"used if no value is provided; for unknown codes the default value for both " -"is the string ``???``. The body will be empty if the method is HEAD or the " -"response code is one of the following: :samp:`1{xx}`, ``204 No Content``, " -"``205 Reset Content``, ``304 Not Modified``." -msgstr "" - -#: ../../library/http.server.rst:273 -msgid "" -"The error response includes a Content-Length header. Added the *explain* " -"argument." +msgid "Sends and logs a complete error reply to the client. The numeric *code* specifies the HTTP error code, with *message* as an optional, short, human readable description of the error. The *explain* argument can be used to provide more detailed information about the error; it will be formatted using the :attr:`error_message_format` attribute and emitted, after a complete set of headers, as the response body. The :attr:`responses` attribute holds the default values for *message* and *explain* that will be used if no value is provided; for unknown codes the default value for both is the string ``???``. The body will be empty if the method is HEAD or the response code is one of the following: :samp:`1{xx}`, ``204 No Content``, ``205 Reset Content``, ``304 Not Modified``." msgstr "" -#: ../../library/http.server.rst:279 -msgid "" -"Adds a response header to the headers buffer and logs the accepted request. " -"The HTTP response line is written to the internal buffer, followed by " -"*Server* and *Date* headers. The values for these two headers are picked up " -"from the :meth:`version_string` and :meth:`date_time_string` methods, " -"respectively. If the server does not intend to send any other headers using " -"the :meth:`send_header` method, then :meth:`send_response` should be " -"followed by an :meth:`end_headers` call." +msgid "The error response includes a Content-Length header. Added the *explain* argument." msgstr "" -#: ../../library/http.server.rst:288 -msgid "" -"Headers are stored to an internal buffer and :meth:`end_headers` needs to be " -"called explicitly." +msgid "Adds a response header to the headers buffer and logs the accepted request. The HTTP response line is written to the internal buffer, followed by *Server* and *Date* headers. The values for these two headers are picked up from the :meth:`version_string` and :meth:`date_time_string` methods, respectively. If the server does not intend to send any other headers using the :meth:`send_header` method, then :meth:`send_response` should be followed by an :meth:`end_headers` call." msgstr "" -#: ../../library/http.server.rst:294 -msgid "" -"Adds the HTTP header to an internal buffer which will be written to the " -"output stream when either :meth:`end_headers` or :meth:`flush_headers` is " -"invoked. *keyword* should specify the header keyword, with *value* " -"specifying its value. Note that, after the send_header calls are " -"done, :meth:`end_headers` MUST BE called in order to complete the operation." +msgid "Headers are stored to an internal buffer and :meth:`end_headers` needs to be called explicitly." +msgstr "" + +msgid "Adds the HTTP header to an internal buffer which will be written to the output stream when either :meth:`end_headers` or :meth:`flush_headers` is invoked. *keyword* should specify the header keyword, with *value* specifying its value. Note that, after the send_header calls are done, :meth:`end_headers` MUST BE called in order to complete the operation." msgstr "" -#: ../../library/http.server.rst:300 msgid "This method does not reject input containing CRLF sequences." msgstr "" -#: ../../library/http.server.rst:302 msgid "Headers are stored in an internal buffer." msgstr "" -#: ../../library/http.server.rst:307 -msgid "" -"Sends the response header only, used for the purposes when ``100 Continue`` " -"response is sent by the server to the client. The headers are not buffered " -"and sent directly the output stream. If the *message* is not specified, the " -"HTTP message corresponding the response *code* is sent." +msgid "Sends the response header only, used for the purposes when ``100 Continue`` response is sent by the server to the client. The headers are not buffered and sent directly the output stream. If the *message* is not specified, the HTTP message corresponding the response *code* is sent." msgstr "" -#: ../../library/http.server.rst:312 msgid "This method does not reject *message* containing CRLF sequences." msgstr "" -#: ../../library/http.server.rst:318 -msgid "" -"Adds a blank line (indicating the end of the HTTP headers in the response) " -"to the headers buffer and calls :meth:`flush_headers`." +msgid "Adds a blank line (indicating the end of the HTTP headers in the response) to the headers buffer and calls :meth:`flush_headers`." msgstr "" -#: ../../library/http.server.rst:322 msgid "The buffered headers are written to the output stream." msgstr "" -#: ../../library/http.server.rst:327 -msgid "" -"Finally send the headers to the output stream and flush the internal headers " -"buffer." +msgid "Finally send the headers to the output stream and flush the internal headers buffer." msgstr "" -#: ../../library/http.server.rst:334 -msgid "" -"Logs an accepted (successful) request. *code* should specify the numeric " -"HTTP code associated with the response. If a size of the response is " -"available, then it should be passed as the *size* parameter." +msgid "Logs an accepted (successful) request. *code* should specify the numeric HTTP code associated with the response. If a size of the response is available, then it should be passed as the *size* parameter." msgstr "" -#: ../../library/http.server.rst:340 -msgid "" -"Logs an error when a request cannot be fulfilled. By default, it passes the " -"message to :meth:`log_message`, so it takes the same arguments (*format* and " -"additional values)." +msgid "Logs an error when a request cannot be fulfilled. By default, it passes the message to :meth:`log_message`, so it takes the same arguments (*format* and additional values)." msgstr "" -#: ../../library/http.server.rst:347 -msgid "" -"Logs an arbitrary message to ``sys.stderr``. This is typically overridden to " -"create custom error logging mechanisms. The *format* argument is a standard " -"printf-style format string, where the additional arguments " -"to :meth:`log_message` are applied as inputs to the formatting. The client " -"IP address and current date and time are prefixed to every message logged." +msgid "Logs an arbitrary message to ``sys.stderr``. This is typically overridden to create custom error logging mechanisms. The *format* argument is a standard printf-style format string, where the additional arguments to :meth:`log_message` are applied as inputs to the formatting. The client IP address and current date and time are prefixed to every message logged." msgstr "" -#: ../../library/http.server.rst:355 -msgid "" -"Returns the server software's version string. This is a combination of " -"the :attr:`server_version` and :attr:`sys_version` attributes." +msgid "Returns the server software's version string. This is a combination of the :attr:`server_version` and :attr:`sys_version` attributes." msgstr "" -#: ../../library/http.server.rst:360 -msgid "" -"Returns the date and time given by *timestamp* (which must be ``None`` or in " -"the format returned by :func:`time.time`), formatted for a message header. " -"If *timestamp* is omitted, it uses the current date and time." +msgid "Returns the date and time given by *timestamp* (which must be ``None`` or in the format returned by :func:`time.time`), formatted for a message header. If *timestamp* is omitted, it uses the current date and time." msgstr "" -#: ../../library/http.server.rst:364 msgid "The result looks like ``'Sun, 06 Nov 1994 08:49:37 GMT'``." msgstr "" -#: ../../library/http.server.rst:368 msgid "Returns the current date and time, formatted for logging." msgstr "" -#: ../../library/http.server.rst:372 msgid "Returns the client address." msgstr "" -#: ../../library/http.server.rst:374 -msgid "" -"Previously, a name lookup was performed. To avoid name resolution delays, it " -"now always returns the IP address." +msgid "Previously, a name lookup was performed. To avoid name resolution delays, it now always returns the IP address." msgstr "" -#: ../../library/http.server.rst:381 -msgid "" -"This class serves files from the directory *directory* and below, or the " -"current directory if *directory* is not provided, directly mapping the " -"directory structure to HTTP requests." +msgid "This class serves files from the directory *directory* and below, or the current directory if *directory* is not provided, directly mapping the directory structure to HTTP requests." msgstr "" -#: ../../library/http.server.rst:385 msgid "Added the *directory* parameter." msgstr "" -#: ../../library/http.server.rst:388 msgid "The *directory* parameter accepts a :term:`path-like object`." msgstr "" -#: ../../library/http.server.rst:391 -msgid "" -"A lot of the work, such as parsing the request, is done by the base " -"class :class:`BaseHTTPRequestHandler`. This class implements " -"the :func:`do_GET` and :func:`do_HEAD` functions." +msgid "A lot of the work, such as parsing the request, is done by the base class :class:`BaseHTTPRequestHandler`. This class implements the :func:`do_GET` and :func:`do_HEAD` functions." msgstr "" -#: ../../library/http.server.rst:395 -msgid "" -"The following are defined as class-level attributes " -"of :class:`SimpleHTTPRequestHandler`:" +msgid "The following are defined as class-level attributes of :class:`SimpleHTTPRequestHandler`:" msgstr "" -#: ../../library/http.server.rst:400 -msgid "" -"This will be ``\"SimpleHTTP/\" + __version__``, where ``__version__`` is " -"defined at the module level." +msgid "This will be ``\"SimpleHTTP/\" + __version__``, where ``__version__`` is defined at the module level." msgstr "" -#: ../../library/http.server.rst:405 msgid "Specifies the filenames that are treated as directory index pages." msgstr "" -#: ../../library/http.server.rst:407 msgid "Defaults to ``(\"index.html\", \"index.htm\")``." msgstr "" -#: ../../library/http.server.rst:413 -msgid "" -"A dictionary mapping suffixes into MIME types, contains custom overrides for " -"the default system mappings. The mapping is used case-insensitively, and so " -"should contain only lower-cased keys." +msgid "A dictionary mapping suffixes into MIME types, contains custom overrides for the default system mappings. The mapping is used case-insensitively, and so should contain only lower-cased keys." msgstr "" -#: ../../library/http.server.rst:417 -msgid "" -"This dictionary is no longer filled with the default system mappings, but " -"only contains overrides." +msgid "This dictionary is no longer filled with the default system mappings, but only contains overrides." msgstr "" -#: ../../library/http.server.rst:421 -msgid "" -"The :class:`SimpleHTTPRequestHandler` class defines the following methods:" +msgid "The :class:`SimpleHTTPRequestHandler` class defines the following methods:" msgstr "" -#: ../../library/http.server.rst:425 -msgid "" -"This method serves the ``'HEAD'`` request type: it sends the headers it " -"would send for the equivalent ``GET`` request. See the :meth:`do_GET` method " -"for a more complete explanation of the possible headers." +msgid "This method serves the ``'HEAD'`` request type: it sends the headers it would send for the equivalent ``GET`` request. See the :meth:`do_GET` method for a more complete explanation of the possible headers." msgstr "" -#: ../../library/http.server.rst:431 -msgid "" -"The request is mapped to a local file by interpreting the request as a path " -"relative to the current working directory." +msgid "The request is mapped to a local file by interpreting the request as a path relative to the current working directory." msgstr "" -#: ../../library/http.server.rst:434 -msgid "" -"If the request was mapped to a directory, the directory is checked for an " -"index page as specified by :attr:`index_pages`. If found, the file's " -"contents are returned; otherwise a directory listing is generated by calling " -"the :meth:`list_directory` method. This method uses :func:`os.listdir` to " -"scan the directory, and returns a ``404`` error response if " -"the :func:`~os.listdir` fails." +msgid "If the request was mapped to a directory, the directory is checked for an index page as specified by :attr:`index_pages`. If found, the file's contents are returned; otherwise a directory listing is generated by calling the :meth:`list_directory` method. This method uses :func:`os.listdir` to scan the directory, and returns a ``404`` error response if the :func:`~os.listdir` fails." msgstr "" -#: ../../library/http.server.rst:441 -msgid "" -"If the request was mapped to a file, it is opened. Any :exc:`OSError` " -"exception in opening the requested file is mapped to a ``404``, ``'File not " -"found'`` error. If there was an ``'If-Modified-Since'`` header in the " -"request, and the file was not modified after this time, a ``304``, ``'Not " -"Modified'`` response is sent. Otherwise, the content type is guessed by " -"calling the :meth:`guess_type` method, which in turn uses the " -"*extensions_map* variable, and the file contents are returned." +msgid "If the request was mapped to a file, it is opened. Any :exc:`OSError` exception in opening the requested file is mapped to a ``404``, ``'File not found'`` error. If there was an ``'If-Modified-Since'`` header in the request, and the file was not modified after this time, a ``304``, ``'Not Modified'`` response is sent. Otherwise, the content type is guessed by calling the :meth:`guess_type` method, which in turn uses the *extensions_map* variable, and the file contents are returned." msgstr "" -#: ../../library/http.server.rst:449 -msgid "" -"A ``'Content-type:'`` header with the guessed content type is output, " -"followed by a ``'Content-Length:'`` header with the file's size and a " -"``'Last-Modified:'`` header with the file's modification time." +msgid "A ``'Content-type:'`` header with the guessed content type is output, followed by a ``'Content-Length:'`` header with the file's size and a ``'Last-Modified:'`` header with the file's modification time." msgstr "" -#: ../../library/http.server.rst:453 -msgid "" -"Then follows a blank line signifying the end of the headers, and then the " -"contents of the file are output." +msgid "Then follows a blank line signifying the end of the headers, and then the contents of the file are output." msgstr "" -#: ../../library/http.server.rst:456 -msgid "" -"For example usage, see the implementation of the ``test`` function " -"in :source:`Lib/http/server.py`." +msgid "For example usage, see the implementation of the ``test`` function in :source:`Lib/http/server.py`." msgstr "" -#: ../../library/http.server.rst:459 msgid "Support of the ``'If-Modified-Since'`` header." msgstr "" -#: ../../library/http.server.rst:464 msgid "Helper to list the contents of *path* when no index page is present." msgstr "" -#: ../../library/http.server.rst:466 -msgid "" -"This returns either a :term:`file-like object` (which must be closed by the " -"caller) or ``None`` to indicate an error, in which case the caller has " -"nothing further to do. In either case, the headers are sent." +msgid "This returns either a :term:`file-like object` (which must be closed by the caller) or ``None`` to indicate an error, in which case the caller has nothing further to do. In either case, the headers are sent." msgstr "" -#: ../../library/http.server.rst:472 msgid "Guess the type of the file at the given *path*." msgstr "" -#: ../../library/http.server.rst:474 -msgid "" -"This returns a string of the form ``type/subtype``, usable for a MIME " -"Content-type header." +msgid "This returns a string of the form ``type/subtype``, usable for a MIME Content-type header." msgstr "" -#: ../../library/http.server.rst:477 -msgid "" -"The default implementation looks the file's extension up " -"in :attr:`extensions_map`, falling back to :func:`mimetypes.guess_file_type` " -"and then to ``'application/octet-stream'``." +msgid "The default implementation looks the file's extension up in :attr:`extensions_map`, falling back to :func:`mimetypes.guess_file_type` and then to ``'application/octet-stream'``." msgstr "" -#: ../../library/http.server.rst:482 msgid "Add :func:`mimetypes.guess_file_type` as a fallback." msgstr "" -#: ../../library/http.server.rst:486 -msgid "" -"The :class:`SimpleHTTPRequestHandler` class can be used to create a very " -"basic webserver serving files relative to the current directory as follows::" +msgid "The :class:`SimpleHTTPRequestHandler` class can be used to create a very basic webserver serving files relative to the current directory as follows::" msgstr "" -#: ../../library/http.server.rst:489 msgid "" "import http.server\n" "import socketserver\n" @@ -625,190 +319,105 @@ msgid "" " httpd.serve_forever()" msgstr "" -#: ../../library/http.server.rst:501 -msgid "" -":class:`SimpleHTTPRequestHandler` can also be subclassed to enhance " -"behavior, such as using different index file names by overriding the class " -"attribute :attr:`~SimpleHTTPRequestHandler.index_pages`." +msgid ":class:`SimpleHTTPRequestHandler` can also be subclassed to enhance behavior, such as using different index file names by overriding the class attribute :attr:`~SimpleHTTPRequestHandler.index_pages`." msgstr "" -#: ../../library/http.server.rst:508 -msgid "" -"This class is used to serve either files or output of CGI scripts from the " -"current directory and below. Note that mapping HTTP hierarchic structure to " -"local directory structure is exactly as in :class:`SimpleHTTPRequestHandler`." +msgid "This class is used to serve either files or output of CGI scripts from the current directory and below. Note that mapping HTTP hierarchic structure to local directory structure is exactly as in :class:`SimpleHTTPRequestHandler`." msgstr "" -#: ../../library/http.server.rst:514 -msgid "" -"CGI scripts run by the :class:`CGIHTTPRequestHandler` class cannot execute " -"redirects (HTTP code 302), because code 200 (script output follows) is sent " -"prior to execution of the CGI script. This pre-empts the status code." +msgid "CGI scripts run by the :class:`CGIHTTPRequestHandler` class cannot execute redirects (HTTP code 302), because code 200 (script output follows) is sent prior to execution of the CGI script. This pre-empts the status code." msgstr "" -#: ../../library/http.server.rst:519 -msgid "" -"The class will however, run the CGI script, instead of serving it as a file, " -"if it guesses it to be a CGI script. Only directory-based CGI are used --- " -"the other common server configuration is to treat special extensions as " -"denoting CGI scripts." +msgid "The class will however, run the CGI script, instead of serving it as a file, if it guesses it to be a CGI script. Only directory-based CGI are used --- the other common server configuration is to treat special extensions as denoting CGI scripts." msgstr "" -#: ../../library/http.server.rst:524 -msgid "" -"The :func:`~SimpleHTTPRequestHandler.do_GET` " -"and :func:`~SimpleHTTPRequestHandler.do_HEAD` functions are modified to run " -"CGI scripts and serve the output, instead of serving files, if the request " -"leads to somewhere below the ``cgi_directories`` path." +msgid "The :func:`~SimpleHTTPRequestHandler.do_GET` and :func:`~SimpleHTTPRequestHandler.do_HEAD` functions are modified to run CGI scripts and serve the output, instead of serving files, if the request leads to somewhere below the ``cgi_directories`` path." msgstr "" -#: ../../library/http.server.rst:530 msgid "The :class:`CGIHTTPRequestHandler` defines the following data member:" msgstr "" -#: ../../library/http.server.rst:534 -msgid "" -"This defaults to ``['/cgi-bin', '/htbin']`` and describes directories to " -"treat as containing CGI scripts." +msgid "This defaults to ``['/cgi-bin', '/htbin']`` and describes directories to treat as containing CGI scripts." msgstr "" -#: ../../library/http.server.rst:537 msgid "The :class:`CGIHTTPRequestHandler` defines the following method:" msgstr "" -#: ../../library/http.server.rst:541 -msgid "" -"This method serves the ``'POST'`` request type, only allowed for CGI " -"scripts. Error 501, \"Can only POST to CGI scripts\", is output when trying " -"to POST to a non-CGI url." +msgid "This method serves the ``'POST'`` request type, only allowed for CGI scripts. Error 501, \"Can only POST to CGI scripts\", is output when trying to POST to a non-CGI url." msgstr "" -#: ../../library/http.server.rst:545 -msgid "" -"Note that CGI scripts will be run with UID of user nobody, for security " -"reasons. Problems with the CGI script will be translated to error 403." +msgid "Note that CGI scripts will be run with UID of user nobody, for security reasons. Problems with the CGI script will be translated to error 403." msgstr "" -#: ../../library/http.server.rst:550 -msgid "" -":class:`CGIHTTPRequestHandler` is being removed in 3.15. CGI has not been " -"considered a good way to do things for well over a decade. This code has " -"been unmaintained for a while now and sees very little practical use. " -"Retaining it could lead to further :ref:`security considerations " -"`." +msgid ":class:`CGIHTTPRequestHandler` is being removed in 3.15. CGI has not been considered a good way to do things for well over a decade. This code has been unmaintained for a while now and sees very little practical use. Retaining it could lead to further :ref:`security considerations `." msgstr "" -#: ../../library/http.server.rst:560 msgid "Command-line interface" msgstr "" -#: ../../library/http.server.rst:562 -msgid "" -":mod:`!http.server` can also be invoked directly using the :option:`-m` " -"switch of the interpreter. The following example illustrates how to serve " -"files relative to the current directory:" +msgid ":mod:`!http.server` can also be invoked directly using the :option:`-m` switch of the interpreter. The following example illustrates how to serve files relative to the current directory:" msgstr "" -#: ../../library/http.server.rst:566 msgid "python -m http.server [OPTIONS] [port]" msgstr "" -#: ../../library/http.server.rst:570 msgid "The following options are accepted:" msgstr "" -#: ../../library/http.server.rst:576 -msgid "" -"The server listens to port 8000 by default. The default can be overridden by " -"passing the desired port number as an argument:" +msgid "The server listens to port 8000 by default. The default can be overridden by passing the desired port number as an argument:" msgstr "" -#: ../../library/http.server.rst:579 msgid "python -m http.server 9000" msgstr "" -#: ../../library/http.server.rst:585 -msgid "" -"Specifies a specific address to which it should bind. Both IPv4 and IPv6 " -"addresses are supported. By default, the server binds itself to all " -"interfaces. For example, the following command causes the server to bind to " -"localhost only:" +msgid "Specifies a specific address to which it should bind. Both IPv4 and IPv6 addresses are supported. By default, the server binds itself to all interfaces. For example, the following command causes the server to bind to localhost only:" msgstr "" -#: ../../library/http.server.rst:590 msgid "python -m http.server --bind 127.0.0.1" msgstr "" -#: ../../library/http.server.rst:596 msgid "Support IPv6 in the ``--bind`` option." msgstr "" -#: ../../library/http.server.rst:601 -msgid "" -"Specifies a directory to which it should serve the files. By default, the " -"server uses the current directory. For example, the following command uses a " -"specific directory:" +msgid "Specifies a directory to which it should serve the files. By default, the server uses the current directory. For example, the following command uses a specific directory:" msgstr "" -#: ../../library/http.server.rst:605 msgid "python -m http.server --directory /tmp/" msgstr "" -#: ../../library/http.server.rst:613 -msgid "" -"Specifies the HTTP version to which the server is conformant. By default, " -"the server is conformant to HTTP/1.0. For example, the following command " -"runs an HTTP/1.1 conformant server:" +msgid "Specifies the HTTP version to which the server is conformant. By default, the server is conformant to HTTP/1.0. For example, the following command runs an HTTP/1.1 conformant server:" msgstr "" -#: ../../library/http.server.rst:617 msgid "python -m http.server --protocol HTTP/1.1" msgstr "" -#: ../../library/http.server.rst:625 -msgid "" -":class:`CGIHTTPRequestHandler` can be enabled in the command line by passing " -"the ``--cgi`` option::" +msgid ":class:`CGIHTTPRequestHandler` can be enabled in the command line by passing the ``--cgi`` option::" msgstr "" -#: ../../library/http.server.rst:628 msgid "python -m http.server --cgi" msgstr "" -#: ../../library/http.server.rst:632 -msgid "" -":mod:`!http.server` command line ``--cgi`` support is being removed " -"because :class:`CGIHTTPRequestHandler` is being removed." +msgid ":mod:`!http.server` command line ``--cgi`` support is being removed because :class:`CGIHTTPRequestHandler` is being removed." msgstr "" -#: ../../library/http.server.rst:637 -msgid "" -":class:`CGIHTTPRequestHandler` and the ``--cgi`` command-line option are not " -"intended for use by untrusted clients and may be vulnerable to exploitation. " -"Always use within a secure environment." +msgid ":class:`CGIHTTPRequestHandler` and the ``--cgi`` command-line option are not intended for use by untrusted clients and may be vulnerable to exploitation. Always use within a secure environment." msgstr "" -#: ../../library/http.server.rst:643 msgid "Specifies a TLS certificate chain for HTTPS connections:" msgstr "" -#: ../../library/http.server.rst:645 msgid "python -m http.server --tls-cert fullchain.pem" msgstr "" -#: ../../library/http.server.rst:653 msgid "Specifies a private key file for HTTPS connections." msgstr "" -#: ../../library/http.server.rst:655 ../../library/http.server.rst:670 msgid "This option requires ``--tls-cert`` to be specified." msgstr "" -#: ../../library/http.server.rst:661 msgid "Specifies the password file for password-protected private keys:" msgstr "" -#: ../../library/http.server.rst:663 msgid "" "python -m http.server \\\n" " --tls-cert cert.pem \\\n" @@ -816,66 +425,41 @@ msgid "" " --tls-password-file password.txt" msgstr "" -#: ../../library/http.server.rst:678 msgid "Security considerations" msgstr "" -#: ../../library/http.server.rst:682 -msgid "" -":class:`SimpleHTTPRequestHandler` will follow symbolic links when handling " -"requests which makes it possible for files outside of the specified " -"directory to be served." +msgid ":class:`SimpleHTTPRequestHandler` will follow symbolic links when handling requests which makes it possible for files outside of the specified directory to be served." msgstr "" -#: ../../library/http.server.rst:686 -msgid "" -"Methods :meth:`BaseHTTPRequestHandler.send_header` " -"and :meth:`BaseHTTPRequestHandler.send_response_only` assume sanitized input " -"and do not perform input validation such as checking for the presence of " -"CRLF sequences. Untrusted input may result in HTTP header injection attacks." +msgid "Methods :meth:`BaseHTTPRequestHandler.send_header` and :meth:`BaseHTTPRequestHandler.send_response_only` assume sanitized input and do not perform input validation such as checking for the presence of CRLF sequences. Untrusted input may result in HTTP header injection attacks." msgstr "" -#: ../../library/http.server.rst:691 -msgid "" -"Earlier versions of Python did not scrub control characters from the log " -"messages emitted to stderr from ``python -m http.server`` or the " -"default :class:`BaseHTTPRequestHandler` ``.log_message`` implementation. " -"This could allow remote clients connecting to your server to send nefarious " -"control codes to your terminal." +msgid "Earlier versions of Python did not scrub control characters from the log messages emitted to stderr from ``python -m http.server`` or the default :class:`BaseHTTPRequestHandler` ``.log_message`` implementation. This could allow remote clients connecting to your server to send nefarious control codes to your terminal." msgstr "" -#: ../../library/http.server.rst:697 msgid "Control characters are scrubbed in stderr logs." msgstr "" -#: ../../library/http.server.rst:9 msgid "WWW" msgstr "" -#: ../../library/http.server.rst:9 msgid "server" msgstr "" -#: ../../library/http.server.rst:9 msgid "HTTP" msgstr "" -#: ../../library/http.server.rst:9 msgid "protocol" msgstr "" -#: ../../library/http.server.rst:9 msgid "URL" msgstr "" -#: ../../library/http.server.rst:9 msgid "httpd" msgstr "" -#: ../../library/http.server.rst:680 msgid "http.server" msgstr "" -#: ../../library/http.server.rst:680 msgid "security" msgstr "" diff --git a/library/i18n.po b/library/i18n.po index 2654e5fc..aec48832 100644 --- a/library/i18n.po +++ b/library/i18n.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:07+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,18 +21,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/i18n.rst:5 msgid "Internationalization" msgstr "" -#: ../../library/i18n.rst:7 -msgid "" -"The modules described in this chapter help you write software that is " -"independent of language and locale by providing mechanisms for selecting a " -"language to be used in program messages or by tailoring output to match " -"local conventions." +msgid "The modules described in this chapter help you write software that is independent of language and locale by providing mechanisms for selecting a language to be used in program messages or by tailoring output to match local conventions." msgstr "" -#: ../../library/i18n.rst:12 msgid "The list of modules described in this chapter is:" msgstr "" diff --git a/library/idle.po b/library/idle.po index f3fa16c2..a1fd1db8 100644 --- a/library/idle.po +++ b/library/idle.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:07+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,1458 +23,777 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/idle.rst:4 msgid "IDLE --- Python editor and shell" msgstr "" -#: ../../library/idle.rst:8 msgid "**Source code:** :source:`Lib/idlelib/`" msgstr "" -#: ../../library/idle.rst:20 msgid "IDLE is Python's Integrated Development and Learning Environment." msgstr "" -#: ../../library/idle.rst:22 msgid "IDLE has the following features:" msgstr "" -#: ../../library/idle.rst:24 msgid "cross-platform: works mostly the same on Windows, Unix, and macOS" msgstr "" -#: ../../library/idle.rst:26 -msgid "" -"Python shell window (interactive interpreter) with colorizing of code input, " -"output, and error messages" +msgid "Python shell window (interactive interpreter) with colorizing of code input, output, and error messages" msgstr "" -#: ../../library/idle.rst:29 -msgid "" -"multi-window text editor with multiple undo, Python colorizing, smart " -"indent, call tips, auto completion, and other features" +msgid "multi-window text editor with multiple undo, Python colorizing, smart indent, call tips, auto completion, and other features" msgstr "" -#: ../../library/idle.rst:32 -msgid "" -"search within any window, replace within editor windows, and search through " -"multiple files (grep)" +msgid "search within any window, replace within editor windows, and search through multiple files (grep)" msgstr "" -#: ../../library/idle.rst:35 -msgid "" -"debugger with persistent breakpoints, stepping, and viewing of global and " -"local namespaces" +msgid "debugger with persistent breakpoints, stepping, and viewing of global and local namespaces" msgstr "" -#: ../../library/idle.rst:38 msgid "configuration, browsers, and other dialogs" msgstr "" -#: ../../library/idle.rst:40 msgid "The IDLE application is implemented in the :mod:`idlelib` package." msgstr "" -#: ../../includes/optional-module.rst:1 -msgid "" -"This is an :term:`optional module`. If it is missing from your copy of " -"CPython, look for documentation from your distributor (that is, whoever " -"provided Python to you). If you are the distributor, see :ref:`optional-" -"module-requirements`." +msgid "This is an :term:`optional module`. If it is missing from your copy of CPython, look for documentation from your distributor (that is, whoever provided Python to you). If you are the distributor, see :ref:`optional-module-requirements`." msgstr "" -#: ../../library/idle.rst:45 msgid "Menus" msgstr "" -#: ../../library/idle.rst:47 -msgid "" -"IDLE has two main window types, the Shell window and the Editor window. It " -"is possible to have multiple editor windows simultaneously. On Windows and " -"Linux, each has its own top menu. Each menu documented below indicates " -"which window type it is associated with." +msgid "IDLE has two main window types, the Shell window and the Editor window. It is possible to have multiple editor windows simultaneously. On Windows and Linux, each has its own top menu. Each menu documented below indicates which window type it is associated with." msgstr "" -#: ../../library/idle.rst:52 -msgid "" -"Output windows, such as used for Edit => Find in Files, are a subtype of " -"editor window. They currently have the same top menu but a different " -"default title and context menu." +msgid "Output windows, such as used for Edit => Find in Files, are a subtype of editor window. They currently have the same top menu but a different default title and context menu." msgstr "" -#: ../../library/idle.rst:56 -msgid "" -"On macOS, there is one application menu. It dynamically changes according " -"to the window currently selected. It has an IDLE menu, and some entries " -"described below are moved around to conform to Apple guidelines." +msgid "On macOS, there is one application menu. It dynamically changes according to the window currently selected. It has an IDLE menu, and some entries described below are moved around to conform to Apple guidelines." msgstr "" -#: ../../library/idle.rst:61 msgid "File menu (Shell and Editor)" msgstr "" -#: ../../library/idle.rst:63 msgid "New File" msgstr "" -#: ../../library/idle.rst:64 msgid "Create a new file editing window." msgstr "" -#: ../../library/idle.rst:66 msgid "Open..." msgstr "" -#: ../../library/idle.rst:67 msgid "Open an existing file with an Open dialog." msgstr "" -#: ../../library/idle.rst:69 msgid "Open Module..." msgstr "" -#: ../../library/idle.rst:70 msgid "Open an existing module (searches sys.path)." msgstr "" -#: ../../library/idle.rst:72 msgid "Recent Files" msgstr "" -#: ../../library/idle.rst:73 msgid "Open a list of recent files. Click one to open it." msgstr "" -#: ../../library/idle.rst:79 msgid "Module Browser" msgstr "" -#: ../../library/idle.rst:80 -msgid "" -"Show functions, classes, and methods in the current Editor file in a tree " -"structure. In the shell, open a module first." +msgid "Show functions, classes, and methods in the current Editor file in a tree structure. In the shell, open a module first." msgstr "" -#: ../../library/idle.rst:83 msgid "Path Browser" msgstr "" -#: ../../library/idle.rst:84 -msgid "" -"Show sys.path directories, modules, functions, classes and methods in a tree " -"structure." +msgid "Show sys.path directories, modules, functions, classes and methods in a tree structure." msgstr "" -#: ../../library/idle.rst:87 msgid "Save" msgstr "" -#: ../../library/idle.rst:88 -msgid "" -"Save the current window to the associated file, if there is one. Windows " -"that have been changed since being opened or last saved have a \\* before " -"and after the window title. If there is no associated file, do Save As " -"instead." +msgid "Save the current window to the associated file, if there is one. Windows that have been changed since being opened or last saved have a \\* before and after the window title. If there is no associated file, do Save As instead." msgstr "" -#: ../../library/idle.rst:93 msgid "Save As..." msgstr "" -#: ../../library/idle.rst:94 -msgid "" -"Save the current window with a Save As dialog. The file saved becomes the " -"new associated file for the window. (If your file manager is set to hide " -"extensions, the current extension will be omitted in the file name box. If " -"the new filename has no '.', '.py' and '.txt' will be added for Python and " -"text files, except that on macOS Aqua,'.py' is added for all files.)" +msgid "Save the current window with a Save As dialog. The file saved becomes the new associated file for the window. (If your file manager is set to hide extensions, the current extension will be omitted in the file name box. If the new filename has no '.', '.py' and '.txt' will be added for Python and text files, except that on macOS Aqua,'.py' is added for all files.)" msgstr "" -#: ../../library/idle.rst:100 msgid "Save Copy As..." msgstr "" -#: ../../library/idle.rst:101 -msgid "" -"Save the current window to different file without changing the associated " -"file. (See Save As note above about filename extensions.)" +msgid "Save the current window to different file without changing the associated file. (See Save As note above about filename extensions.)" msgstr "" -#: ../../library/idle.rst:104 msgid "Print Window" msgstr "" -#: ../../library/idle.rst:105 msgid "Print the current window to the default printer." msgstr "" -#: ../../library/idle.rst:107 msgid "Close Window" msgstr "" -#: ../../library/idle.rst:108 -msgid "" -"Close the current window (if an unsaved editor, ask to save; if an unsaved " -"Shell, ask to quit execution). Calling ``exit()`` or ``close()`` in the " -"Shell window also closes Shell. If this is the only window, also exit IDLE." +msgid "Close the current window (if an unsaved editor, ask to save; if an unsaved Shell, ask to quit execution). Calling ``exit()`` or ``close()`` in the Shell window also closes Shell. If this is the only window, also exit IDLE." msgstr "" -#: ../../library/idle.rst:112 msgid "Exit IDLE" msgstr "" -#: ../../library/idle.rst:113 msgid "Close all windows and quit IDLE (ask to save unsaved edit windows)." msgstr "" -#: ../../library/idle.rst:116 msgid "Edit menu (Shell and Editor)" msgstr "" -#: ../../library/idle.rst:118 msgid "Undo" msgstr "" -#: ../../library/idle.rst:119 -msgid "" -"Undo the last change to the current window. A maximum of 1000 changes may " -"be undone." +msgid "Undo the last change to the current window. A maximum of 1000 changes may be undone." msgstr "" -#: ../../library/idle.rst:122 msgid "Redo" msgstr "" -#: ../../library/idle.rst:123 msgid "Redo the last undone change to the current window." msgstr "" -#: ../../library/idle.rst:125 msgid "Select All" msgstr "" -#: ../../library/idle.rst:126 msgid "Select the entire contents of the current window." msgstr "" -#: ../../library/idle.rst:128 ../../library/idle.rst:360 -#: ../../library/idle.rst:374 msgid "Cut" msgstr "" -#: ../../library/idle.rst:129 ../../library/idle.rst:375 -msgid "" -"Copy selection into the system-wide clipboard; then delete the selection." +msgid "Copy selection into the system-wide clipboard; then delete the selection." msgstr "" -#: ../../library/idle.rst:131 ../../library/idle.rst:360 -#: ../../library/idle.rst:377 msgid "Copy" msgstr "" -#: ../../library/idle.rst:132 ../../library/idle.rst:378 msgid "Copy selection into the system-wide clipboard." msgstr "" -#: ../../library/idle.rst:134 ../../library/idle.rst:360 -#: ../../library/idle.rst:380 msgid "Paste" msgstr "" -#: ../../library/idle.rst:135 ../../library/idle.rst:381 msgid "Insert contents of the system-wide clipboard into the current window." msgstr "" -#: ../../library/idle.rst:137 msgid "The clipboard functions are also available in context menus." msgstr "" -#: ../../library/idle.rst:139 msgid "Find..." msgstr "" -#: ../../library/idle.rst:140 msgid "Open a search dialog with many options" msgstr "" -#: ../../library/idle.rst:142 msgid "Find Again" msgstr "" -#: ../../library/idle.rst:143 msgid "Repeat the last search, if there is one." msgstr "" -#: ../../library/idle.rst:145 msgid "Find Selection" msgstr "" -#: ../../library/idle.rst:146 msgid "Search for the currently selected string, if there is one." msgstr "" -#: ../../library/idle.rst:148 msgid "Find in Files..." msgstr "" -#: ../../library/idle.rst:149 msgid "Open a file search dialog. Put results in a new output window." msgstr "" -#: ../../library/idle.rst:151 msgid "Replace..." msgstr "" -#: ../../library/idle.rst:152 msgid "Open a search-and-replace dialog." msgstr "" -#: ../../library/idle.rst:154 msgid "Go to Line" msgstr "" -#: ../../library/idle.rst:155 -msgid "" -"Move the cursor to the beginning of the line requested and make that line " -"visible. A request past the end of the file goes to the end. Clear any " -"selection and update the line and column status." +msgid "Move the cursor to the beginning of the line requested and make that line visible. A request past the end of the file goes to the end. Clear any selection and update the line and column status." msgstr "" -#: ../../library/idle.rst:159 msgid "Show Completions" msgstr "" -#: ../../library/idle.rst:160 -msgid "" -"Open a scrollable list allowing selection of existing names. " -"See :ref:`Completions ` in the Editing and Navigation section " -"below." +msgid "Open a scrollable list allowing selection of existing names. See :ref:`Completions ` in the Editing and Navigation section below." msgstr "" -#: ../../library/idle.rst:163 msgid "Expand Word" msgstr "" -#: ../../library/idle.rst:164 -msgid "" -"Expand a prefix you have typed to match a full word in the same window; " -"repeat to get a different expansion." +msgid "Expand a prefix you have typed to match a full word in the same window; repeat to get a different expansion." msgstr "" -#: ../../library/idle.rst:167 msgid "Show Call Tip" msgstr "" -#: ../../library/idle.rst:168 -msgid "" -"After an unclosed parenthesis for a function, open a small window with " -"function parameter hints. See :ref:`Calltips ` in the Editing and " -"Navigation section below." +msgid "After an unclosed parenthesis for a function, open a small window with function parameter hints. See :ref:`Calltips ` in the Editing and Navigation section below." msgstr "" -#: ../../library/idle.rst:172 msgid "Show Surrounding Parens" msgstr "" -#: ../../library/idle.rst:173 msgid "Highlight the surrounding parenthesis." msgstr "" -#: ../../library/idle.rst:178 msgid "Format menu (Editor window only)" msgstr "" -#: ../../library/idle.rst:180 msgid "Format Paragraph" msgstr "" -#: ../../library/idle.rst:181 -msgid "" -"Rewrap the text block containing the text insert cursor. Avoid code lines. " -"See :ref:`Format block` in the Editing and Navigation section " -"below." +msgid "Rewrap the text block containing the text insert cursor. Avoid code lines. See :ref:`Format block` in the Editing and Navigation section below." msgstr "" -#: ../../library/idle.rst:185 msgid "Indent Region" msgstr "" -#: ../../library/idle.rst:186 msgid "Shift selected lines right by the indent width (default 4 spaces)." msgstr "" -#: ../../library/idle.rst:188 msgid "Dedent Region" msgstr "" -#: ../../library/idle.rst:189 msgid "Shift selected lines left by the indent width (default 4 spaces)." msgstr "" -#: ../../library/idle.rst:191 msgid "Comment Out Region" msgstr "" -#: ../../library/idle.rst:192 msgid "Insert ## in front of selected lines." msgstr "" -#: ../../library/idle.rst:194 msgid "Uncomment Region" msgstr "" -#: ../../library/idle.rst:195 msgid "Remove leading # or ## from selected lines." msgstr "" -#: ../../library/idle.rst:197 msgid "Tabify Region" msgstr "" -#: ../../library/idle.rst:198 -msgid "" -"Turn *leading* stretches of spaces into tabs. (Note: We recommend using 4 " -"space blocks to indent Python code.)" +msgid "Turn *leading* stretches of spaces into tabs. (Note: We recommend using 4 space blocks to indent Python code.)" msgstr "" -#: ../../library/idle.rst:201 msgid "Untabify Region" msgstr "" -#: ../../library/idle.rst:202 msgid "Turn *all* tabs into the correct number of spaces." msgstr "" -#: ../../library/idle.rst:204 msgid "Toggle Tabs" msgstr "" -#: ../../library/idle.rst:205 msgid "Open a dialog to switch between indenting with spaces and tabs." msgstr "" -#: ../../library/idle.rst:207 msgid "New Indent Width" msgstr "" -#: ../../library/idle.rst:208 -msgid "" -"Open a dialog to change indent width. The accepted default by the Python " -"community is 4 spaces." +msgid "Open a dialog to change indent width. The accepted default by the Python community is 4 spaces." msgstr "" -#: ../../library/idle.rst:211 msgid "Strip Trailing Whitespace" msgstr "" -#: ../../library/idle.rst:212 -msgid "" -"Remove trailing space and other whitespace characters after the last non-" -"whitespace character of a line by applying :meth:`str.rstrip` to each line, " -"including lines within multiline strings. Except for Shell windows, remove " -"extra newlines at the end of the file." +msgid "Remove trailing space and other whitespace characters after the last non-whitespace character of a line by applying :meth:`str.rstrip` to each line, including lines within multiline strings. Except for Shell windows, remove extra newlines at the end of the file." msgstr "" -#: ../../library/idle.rst:221 msgid "Run menu (Editor window only)" msgstr "" -#: ../../library/idle.rst:225 msgid "Run Module" msgstr "" -#: ../../library/idle.rst:226 -msgid "" -"Do :ref:`Check Module `. If no error, restart the shell to " -"clean the environment, then execute the module. Output is displayed in the " -"Shell window. Note that output requires use of ``print`` or ``write``. When " -"execution is complete, the Shell retains focus and displays a prompt. At " -"this point, one may interactively explore the result of execution. This is " -"similar to executing a file with ``python -i file`` at a command line." +msgid "Do :ref:`Check Module `. If no error, restart the shell to clean the environment, then execute the module. Output is displayed in the Shell window. Note that output requires use of ``print`` or ``write``. When execution is complete, the Shell retains focus and displays a prompt. At this point, one may interactively explore the result of execution. This is similar to executing a file with ``python -i file`` at a command line." msgstr "" -#: ../../library/idle.rst:236 msgid "Run... Customized" msgstr "" -#: ../../library/idle.rst:237 -msgid "" -"Same as :ref:`Run Module `, but run the module with customized " -"settings. *Command Line Arguments* extend :data:`sys.argv` as if passed on " -"a command line. The module can be run in the Shell without restarting." +msgid "Same as :ref:`Run Module `, but run the module with customized settings. *Command Line Arguments* extend :data:`sys.argv` as if passed on a command line. The module can be run in the Shell without restarting." msgstr "" -#: ../../library/idle.rst:243 msgid "Check Module" msgstr "" -#: ../../library/idle.rst:244 -msgid "" -"Check the syntax of the module currently open in the Editor window. If the " -"module has not been saved IDLE will either prompt the user to save or " -"autosave, as selected in the General tab of the Idle Settings dialog. If " -"there is a syntax error, the approximate location is indicated in the Editor " -"window." +msgid "Check the syntax of the module currently open in the Editor window. If the module has not been saved IDLE will either prompt the user to save or autosave, as selected in the General tab of the Idle Settings dialog. If there is a syntax error, the approximate location is indicated in the Editor window." msgstr "" -#: ../../library/idle.rst:252 msgid "Python Shell" msgstr "" -#: ../../library/idle.rst:253 msgid "Open or wake up the Python Shell window." msgstr "" -#: ../../library/idle.rst:257 msgid "Shell menu (Shell window only)" msgstr "" -#: ../../library/idle.rst:259 msgid "View Last Restart" msgstr "" -#: ../../library/idle.rst:260 msgid "Scroll the shell window to the last Shell restart." msgstr "" -#: ../../library/idle.rst:262 msgid "Restart Shell" msgstr "" -#: ../../library/idle.rst:263 -msgid "" -"Restart the shell to clean the environment and reset display and exception " -"handling." +msgid "Restart the shell to clean the environment and reset display and exception handling." msgstr "" -#: ../../library/idle.rst:265 msgid "Previous History" msgstr "" -#: ../../library/idle.rst:266 -msgid "" -"Cycle through earlier commands in history which match the current entry." +msgid "Cycle through earlier commands in history which match the current entry." msgstr "" -#: ../../library/idle.rst:268 msgid "Next History" msgstr "" -#: ../../library/idle.rst:269 msgid "Cycle through later commands in history which match the current entry." msgstr "" -#: ../../library/idle.rst:271 msgid "Interrupt Execution" msgstr "" -#: ../../library/idle.rst:272 msgid "Stop a running program." msgstr "" -#: ../../library/idle.rst:275 msgid "Debug menu (Shell window only)" msgstr "" -#: ../../library/idle.rst:277 msgid "Go to File/Line" msgstr "" -#: ../../library/idle.rst:278 -msgid "" -"Look on the current line. with the cursor, and the line above for a filename " -"and line number. If found, open the file if not already open, and show the " -"line. Use this to view source lines referenced in an exception traceback " -"and lines found by Find in Files. Also available in the context menu of the " -"Shell window and Output windows." +msgid "Look on the current line. with the cursor, and the line above for a filename and line number. If found, open the file if not already open, and show the line. Use this to view source lines referenced in an exception traceback and lines found by Find in Files. Also available in the context menu of the Shell window and Output windows." msgstr "" -#: ../../library/idle.rst:288 msgid "Debugger (toggle)" msgstr "" -#: ../../library/idle.rst:289 -msgid "" -"When activated, code entered in the Shell or run from an Editor will run " -"under the debugger. In the Editor, breakpoints can be set with the context " -"menu. This feature is still incomplete and somewhat experimental." +msgid "When activated, code entered in the Shell or run from an Editor will run under the debugger. In the Editor, breakpoints can be set with the context menu. This feature is still incomplete and somewhat experimental." msgstr "" -#: ../../library/idle.rst:293 msgid "Stack Viewer" msgstr "" -#: ../../library/idle.rst:294 -msgid "" -"Show the stack traceback of the last exception in a tree widget, with access " -"to locals and globals." +msgid "Show the stack traceback of the last exception in a tree widget, with access to locals and globals." msgstr "" -#: ../../library/idle.rst:297 msgid "Auto-open Stack Viewer" msgstr "" -#: ../../library/idle.rst:298 -msgid "" -"Toggle automatically opening the stack viewer on an unhandled exception." +msgid "Toggle automatically opening the stack viewer on an unhandled exception." msgstr "" -#: ../../library/idle.rst:301 msgid "Options menu (Shell and Editor)" msgstr "" -#: ../../library/idle.rst:303 msgid "Configure IDLE" msgstr "" -#: ../../library/idle.rst:304 -msgid "" -"Open a configuration dialog and change preferences for the following: fonts, " -"indentation, keybindings, text color themes, startup windows and size, " -"additional help sources, and extensions. On macOS, open the configuration " -"dialog by selecting Preferences in the application menu. For more details, " -"see :ref:`Setting preferences ` under Help and preferences." +msgid "Open a configuration dialog and change preferences for the following: fonts, indentation, keybindings, text color themes, startup windows and size, additional help sources, and extensions. On macOS, open the configuration dialog by selecting Preferences in the application menu. For more details, see :ref:`Setting preferences ` under Help and preferences." msgstr "" -#: ../../library/idle.rst:311 -msgid "" -"Most configuration options apply to all windows or all future windows. The " -"option items below only apply to the active window." +msgid "Most configuration options apply to all windows or all future windows. The option items below only apply to the active window." msgstr "" -#: ../../library/idle.rst:314 msgid "Show/Hide Code Context (Editor Window only)" msgstr "" -#: ../../library/idle.rst:315 -msgid "" -"Open a pane at the top of the edit window which shows the block context of " -"the code which has scrolled above the top of the window. See :ref:`Code " -"Context ` in the Editing and Navigation section below." +msgid "Open a pane at the top of the edit window which shows the block context of the code which has scrolled above the top of the window. See :ref:`Code Context ` in the Editing and Navigation section below." msgstr "" -#: ../../library/idle.rst:320 msgid "Show/Hide Line Numbers (Editor Window only)" msgstr "" -#: ../../library/idle.rst:321 -msgid "" -"Open a column to the left of the edit window which shows the number of each " -"line of text. The default is off, which may be changed in the preferences " -"(see :ref:`Setting preferences `)." +msgid "Open a column to the left of the edit window which shows the number of each line of text. The default is off, which may be changed in the preferences (see :ref:`Setting preferences `)." msgstr "" -#: ../../library/idle.rst:325 msgid "Zoom/Restore Height" msgstr "" -#: ../../library/idle.rst:326 -msgid "" -"Toggles the window between normal size and maximum height. The initial size " -"defaults to 40 lines by 80 chars unless changed on the General tab of the " -"Configure IDLE dialog. The maximum height for a screen is determined by " -"momentarily maximizing a window the first time one is zoomed on the screen. " -"Changing screen settings may invalidate the saved height. This toggle has " -"no effect when a window is maximized." +msgid "Toggles the window between normal size and maximum height. The initial size defaults to 40 lines by 80 chars unless changed on the General tab of the Configure IDLE dialog. The maximum height for a screen is determined by momentarily maximizing a window the first time one is zoomed on the screen. Changing screen settings may invalidate the saved height. This toggle has no effect when a window is maximized." msgstr "" -#: ../../library/idle.rst:334 msgid "Window menu (Shell and Editor)" msgstr "" -#: ../../library/idle.rst:336 -msgid "" -"Lists the names of all open windows; select one to bring it to the " -"foreground (deiconifying it if necessary)." +msgid "Lists the names of all open windows; select one to bring it to the foreground (deiconifying it if necessary)." msgstr "" -#: ../../library/idle.rst:340 msgid "Help menu (Shell and Editor)" msgstr "" -#: ../../library/idle.rst:342 msgid "About IDLE" msgstr "" -#: ../../library/idle.rst:343 msgid "Display version, copyright, license, credits, and more." msgstr "" -#: ../../library/idle.rst:345 msgid "IDLE Help" msgstr "" -#: ../../library/idle.rst:346 -msgid "" -"Display this IDLE document, detailing the menu options, basic editing and " -"navigation, and other tips." +msgid "Display this IDLE document, detailing the menu options, basic editing and navigation, and other tips." msgstr "" -#: ../../library/idle.rst:349 msgid "Python Docs" msgstr "" -#: ../../library/idle.rst:350 -msgid "" -"Access local Python documentation, if installed, or start a web browser and " -"open docs.python.org showing the latest Python documentation." +msgid "Access local Python documentation, if installed, or start a web browser and open docs.python.org showing the latest Python documentation." msgstr "" -#: ../../library/idle.rst:353 msgid "Turtle Demo" msgstr "" -#: ../../library/idle.rst:354 msgid "Run the turtledemo module with example Python code and turtle drawings." msgstr "" -#: ../../library/idle.rst:356 -msgid "" -"Additional help sources may be added here with the Configure IDLE dialog " -"under the General tab. See the :ref:`Help sources ` subsection " -"below for more on Help menu choices." +msgid "Additional help sources may be added here with the Configure IDLE dialog under the General tab. See the :ref:`Help sources ` subsection below for more on Help menu choices." msgstr "" -#: ../../library/idle.rst:369 msgid "Context menus" msgstr "" -#: ../../library/idle.rst:371 -msgid "" -"Open a context menu by right-clicking in a window (Control-click on macOS). " -"Context menus have the standard clipboard functions also on the Edit menu." +msgid "Open a context menu by right-clicking in a window (Control-click on macOS). Context menus have the standard clipboard functions also on the Edit menu." msgstr "" -#: ../../library/idle.rst:383 -msgid "" -"Editor windows also have breakpoint functions. Lines with a breakpoint set " -"are specially marked. Breakpoints only have an effect when running under " -"the debugger. Breakpoints for a file are saved in the user's ``.idlerc`` " -"directory." +msgid "Editor windows also have breakpoint functions. Lines with a breakpoint set are specially marked. Breakpoints only have an effect when running under the debugger. Breakpoints for a file are saved in the user's ``.idlerc`` directory." msgstr "" -#: ../../library/idle.rst:360 ../../library/idle.rst:388 msgid "Set Breakpoint" msgstr "" -#: ../../library/idle.rst:389 msgid "Set a breakpoint on the current line." msgstr "" -#: ../../library/idle.rst:360 ../../library/idle.rst:391 msgid "Clear Breakpoint" msgstr "" -#: ../../library/idle.rst:392 msgid "Clear the breakpoint on that line." msgstr "" -#: ../../library/idle.rst:394 msgid "Shell and Output windows also have the following." msgstr "" -#: ../../library/idle.rst:396 msgid "Go to file/line" msgstr "" -#: ../../library/idle.rst:397 msgid "Same as in Debug menu." msgstr "" -#: ../../library/idle.rst:399 -msgid "" -"The Shell window also has an output squeezing facility explained in the " -"*Python Shell window* subsection below." +msgid "The Shell window also has an output squeezing facility explained in the *Python Shell window* subsection below." msgstr "" -#: ../../library/idle.rst:402 msgid "Squeeze" msgstr "" -#: ../../library/idle.rst:403 -msgid "" -"If the cursor is over an output line, squeeze all the output between the " -"code above and the prompt below down to a 'Squeezed text' label." +msgid "If the cursor is over an output line, squeeze all the output between the code above and the prompt below down to a 'Squeezed text' label." msgstr "" -#: ../../library/idle.rst:410 msgid "Editing and Navigation" msgstr "" -#: ../../library/idle.rst:413 msgid "Editor windows" msgstr "" -#: ../../library/idle.rst:415 -msgid "" -"IDLE may open editor windows when it starts, depending on settings and how " -"you start IDLE. Thereafter, use the File menu. There can be only one open " -"editor window for a given file." +msgid "IDLE may open editor windows when it starts, depending on settings and how you start IDLE. Thereafter, use the File menu. There can be only one open editor window for a given file." msgstr "" -#: ../../library/idle.rst:419 -msgid "" -"The title bar contains the name of the file, the full path, and the version " -"of Python and IDLE running the window. The status bar contains the line " -"number ('Ln') and column number ('Col'). Line numbers start with 1; column " -"numbers with 0." +msgid "The title bar contains the name of the file, the full path, and the version of Python and IDLE running the window. The status bar contains the line number ('Ln') and column number ('Col'). Line numbers start with 1; column numbers with 0." msgstr "" -#: ../../library/idle.rst:424 -msgid "" -"IDLE assumes that files with a known .py* extension contain Python code and " -"that other files do not. Run Python code with the Run menu." +msgid "IDLE assumes that files with a known .py* extension contain Python code and that other files do not. Run Python code with the Run menu." msgstr "" -#: ../../library/idle.rst:428 msgid "Key bindings" msgstr "" -#: ../../library/idle.rst:430 -msgid "" -"The IDLE insertion cursor is a thin vertical bar between character " -"positions. When characters are entered, the insertion cursor and everything " -"to its right moves right one character and the new character is entered in " -"the new space." +msgid "The IDLE insertion cursor is a thin vertical bar between character positions. When characters are entered, the insertion cursor and everything to its right moves right one character and the new character is entered in the new space." msgstr "" -#: ../../library/idle.rst:435 -msgid "" -"Several non-character keys move the cursor and possibly delete characters. " -"Deletion does not puts text on the clipboard, but IDLE has an undo list. " -"Wherever this doc discusses keys, 'C' refers to the :kbd:`Control` key on " -"Windows and Unix and the :kbd:`Command` key on macOS. (And all such " -"discussions assume that the keys have not been re-bound to something else.)" +msgid "Several non-character keys move the cursor and possibly delete characters. Deletion does not puts text on the clipboard, but IDLE has an undo list. Wherever this doc discusses keys, 'C' refers to the :kbd:`Control` key on Windows and Unix and the :kbd:`Command` key on macOS. (And all such discussions assume that the keys have not been re-bound to something else.)" msgstr "" -#: ../../library/idle.rst:442 msgid "Arrow keys move the cursor one character or line." msgstr "" -#: ../../library/idle.rst:444 -msgid "" -":kbd:`C-LeftArrow` and :kbd:`C-RightArrow` moves left or right one word." +msgid ":kbd:`C-LeftArrow` and :kbd:`C-RightArrow` moves left or right one word." msgstr "" -#: ../../library/idle.rst:446 msgid ":kbd:`Home` and :kbd:`End` go to the beginning or end of the line." msgstr "" -#: ../../library/idle.rst:448 msgid ":kbd:`Page Up` and :kbd:`Page Down` go up or down one screen." msgstr "" -#: ../../library/idle.rst:450 msgid ":kbd:`C-Home` and :kbd:`C-End` go to beginning or end of the file." msgstr "" -#: ../../library/idle.rst:452 -msgid "" -":kbd:`Backspace` and :kbd:`Del` (or :kbd:`C-d`) delete the previous or next " -"character." +msgid ":kbd:`Backspace` and :kbd:`Del` (or :kbd:`C-d`) delete the previous or next character." msgstr "" -#: ../../library/idle.rst:455 msgid ":kbd:`C-Backspace` and :kbd:`C-Del` delete one word left or right." msgstr "" -#: ../../library/idle.rst:457 msgid ":kbd:`C-k` deletes ('kills') everything to the right." msgstr "" -#: ../../library/idle.rst:459 -msgid "" -"Standard keybindings (like :kbd:`C-c` to copy and :kbd:`C-v` to paste) may " -"work. Keybindings are selected in the Configure IDLE dialog." +msgid "Standard keybindings (like :kbd:`C-c` to copy and :kbd:`C-v` to paste) may work. Keybindings are selected in the Configure IDLE dialog." msgstr "" -#: ../../library/idle.rst:463 msgid "Automatic indentation" msgstr "" -#: ../../library/idle.rst:465 -msgid "" -"After a block-opening statement, the next line is indented by 4 spaces (in " -"the Python Shell window by one tab). After certain keywords (break, return " -"etc.) the next line is dedented. In leading indentation, :kbd:`Backspace` " -"deletes up to 4 spaces if they are there. :kbd:`Tab` inserts spaces (in the " -"Python Shell window one tab), number depends on Indent width. Currently, " -"tabs are restricted to four spaces due to Tcl/Tk limitations." +msgid "After a block-opening statement, the next line is indented by 4 spaces (in the Python Shell window by one tab). After certain keywords (break, return etc.) the next line is dedented. In leading indentation, :kbd:`Backspace` deletes up to 4 spaces if they are there. :kbd:`Tab` inserts spaces (in the Python Shell window one tab), number depends on Indent width. Currently, tabs are restricted to four spaces due to Tcl/Tk limitations." msgstr "" -#: ../../library/idle.rst:472 -msgid "" -"See also the indent/dedent region commands on the :ref:`Format menu `." +msgid "See also the indent/dedent region commands on the :ref:`Format menu `." msgstr "" -#: ../../library/idle.rst:476 msgid "Search and Replace" msgstr "" -#: ../../library/idle.rst:478 -msgid "" -"Any selection becomes a search target. However, only selections within a " -"line work because searches are only performed within lines with the terminal " -"newline removed. If ``[x] Regular expression`` is checked, the target is " -"interpreted according to the Python re module." +msgid "Any selection becomes a search target. However, only selections within a line work because searches are only performed within lines with the terminal newline removed. If ``[x] Regular expression`` is checked, the target is interpreted according to the Python re module." msgstr "" -#: ../../library/idle.rst:486 msgid "Completions" msgstr "" -#: ../../library/idle.rst:488 -msgid "" -"Completions are supplied, when requested and available, for module names, " -"attributes of classes or functions, or filenames. Each request method " -"displays a completion box with existing names. (See tab completions below " -"for an exception.) For any box, change the name being completed and the item " -"highlighted in the box by typing and deleting characters; by " -"hitting :kbd:`Up`, :kbd:`Down`, :kbd:`PageUp`, :kbd:`PageDown`, :kbd:`Home`, " -"and :kbd:`End` keys; and by a single click within the box. Close the box " -"with :kbd:`Escape`, :kbd:`Enter`, and double :kbd:`Tab` keys or clicks " -"outside the box. A double click within the box selects and closes." -msgstr "" - -#: ../../library/idle.rst:499 -msgid "" -"One way to open a box is to type a key character and wait for a predefined " -"interval. This defaults to 2 seconds; customize it in the settings dialog. " -"(To prevent auto popups, set the delay to a large number of milliseconds, " -"such as 100000000.) For imported module names or class or function " -"attributes, type '.'. For filenames in the root directory, " -"type :data:`os.sep` or :data:`os.altsep` immediately after an opening " -"quote. (On Windows, one can specify a drive first.) Move into " -"subdirectories by typing a directory name and a separator." +msgid "Completions are supplied, when requested and available, for module names, attributes of classes or functions, or filenames. Each request method displays a completion box with existing names. (See tab completions below for an exception.) For any box, change the name being completed and the item highlighted in the box by typing and deleting characters; by hitting :kbd:`Up`, :kbd:`Down`, :kbd:`PageUp`, :kbd:`PageDown`, :kbd:`Home`, and :kbd:`End` keys; and by a single click within the box. Close the box with :kbd:`Escape`, :kbd:`Enter`, and double :kbd:`Tab` keys or clicks outside the box. A double click within the box selects and closes." msgstr "" -#: ../../library/idle.rst:509 -msgid "" -"Instead of waiting, or after a box is closed, open a completion box " -"immediately with Show Completions on the Edit menu. The default hot key " -"is :kbd:`C-space`. If one types a prefix for the desired name before " -"opening the box, the first match or near miss is made visible. The result is " -"the same as if one enters a prefix after the box is displayed. Show " -"Completions after a quote completes filenames in the current directory " -"instead of a root directory." +msgid "One way to open a box is to type a key character and wait for a predefined interval. This defaults to 2 seconds; customize it in the settings dialog. (To prevent auto popups, set the delay to a large number of milliseconds, such as 100000000.) For imported module names or class or function attributes, type '.'. For filenames in the root directory, type :data:`os.sep` or :data:`os.altsep` immediately after an opening quote. (On Windows, one can specify a drive first.) Move into subdirectories by typing a directory name and a separator." msgstr "" -#: ../../library/idle.rst:517 -msgid "" -"Hitting :kbd:`Tab` after a prefix usually has the same effect as Show " -"Completions. (With no prefix, it indents.) However, if there is only one " -"match to the prefix, that match is immediately added to the editor text " -"without opening a box." +msgid "Instead of waiting, or after a box is closed, open a completion box immediately with Show Completions on the Edit menu. The default hot key is :kbd:`C-space`. If one types a prefix for the desired name before opening the box, the first match or near miss is made visible. The result is the same as if one enters a prefix after the box is displayed. Show Completions after a quote completes filenames in the current directory instead of a root directory." msgstr "" -#: ../../library/idle.rst:522 -msgid "" -"Invoking 'Show Completions', or hitting :kbd:`Tab` after a prefix, outside " -"of a string and without a preceding '.' opens a box with keywords, builtin " -"names, and available module-level names." +msgid "Hitting :kbd:`Tab` after a prefix usually has the same effect as Show Completions. (With no prefix, it indents.) However, if there is only one match to the prefix, that match is immediately added to the editor text without opening a box." msgstr "" -#: ../../library/idle.rst:526 -msgid "" -"When editing code in an editor (as oppose to Shell), increase the available " -"module-level names by running your code and not restarting the Shell " -"thereafter. This is especially useful after adding imports at the top of a " -"file. This also increases possible attribute completions." +msgid "Invoking 'Show Completions', or hitting :kbd:`Tab` after a prefix, outside of a string and without a preceding '.' opens a box with keywords, builtin names, and available module-level names." msgstr "" -#: ../../library/idle.rst:532 -msgid "" -"Completion boxes initially exclude names beginning with '_' or, for modules, " -"not included in '__all__'. The hidden names can be accessed by typing '_' " -"after '.', either before or after the box is opened." +msgid "When editing code in an editor (as oppose to Shell), increase the available module-level names by running your code and not restarting the Shell thereafter. This is especially useful after adding imports at the top of a file. This also increases possible attribute completions." +msgstr "" + +msgid "Completion boxes initially exclude names beginning with '_' or, for modules, not included in '__all__'. The hidden names can be accessed by typing '_' after '.', either before or after the box is opened." msgstr "" -#: ../../library/idle.rst:539 msgid "Calltips" msgstr "" -#: ../../library/idle.rst:541 -msgid "" -"A calltip is shown automatically when one types :kbd:`(` after the name of " -"an *accessible* function. A function name expression may include dots and " -"subscripts. A calltip remains until it is clicked, the cursor is moved out " -"of the argument area, or :kbd:`)` is typed. Whenever the cursor is in the " -"argument part of a definition, select Edit and \"Show Call Tip\" on the menu " -"or enter its shortcut to display a calltip." +msgid "A calltip is shown automatically when one types :kbd:`(` after the name of an *accessible* function. A function name expression may include dots and subscripts. A calltip remains until it is clicked, the cursor is moved out of the argument area, or :kbd:`)` is typed. Whenever the cursor is in the argument part of a definition, select Edit and \"Show Call Tip\" on the menu or enter its shortcut to display a calltip." msgstr "" -#: ../../library/idle.rst:548 -msgid "" -"The calltip consists of the function's signature and docstring up to the " -"latter's first blank line or the fifth non-blank line. (Some builtin " -"functions lack an accessible signature.) A '/' or '*' in the signature " -"indicates that the preceding or following arguments are passed by position " -"or name (keyword) only. Details are subject to change." +msgid "The calltip consists of the function's signature and docstring up to the latter's first blank line or the fifth non-blank line. (Some builtin functions lack an accessible signature.) A '/' or '*' in the signature indicates that the preceding or following arguments are passed by position or name (keyword) only. Details are subject to change." msgstr "" -#: ../../library/idle.rst:554 -msgid "" -"In Shell, the accessible functions depends on what modules have been " -"imported into the user process, including those imported by Idle itself, and " -"which definitions have been run, all since the last restart." +msgid "In Shell, the accessible functions depends on what modules have been imported into the user process, including those imported by Idle itself, and which definitions have been run, all since the last restart." msgstr "" -#: ../../library/idle.rst:558 -msgid "" -"For example, restart the Shell and enter ``itertools.count(``. A calltip " -"appears because Idle imports itertools into the user process for its own " -"use. (This could change.) Enter ``turtle.write(`` and nothing appears. " -"Idle does not itself import turtle. The menu entry and shortcut also do " -"nothing. Enter ``import turtle``. Thereafter, ``turtle.write(`` will " -"display a calltip." +msgid "For example, restart the Shell and enter ``itertools.count(``. A calltip appears because Idle imports itertools into the user process for its own use. (This could change.) Enter ``turtle.write(`` and nothing appears. Idle does not itself import turtle. The menu entry and shortcut also do nothing. Enter ``import turtle``. Thereafter, ``turtle.write(`` will display a calltip." msgstr "" -#: ../../library/idle.rst:565 -msgid "" -"In an editor, import statements have no effect until one runs the file. One " -"might want to run a file after writing import statements, after adding " -"function definitions, or after opening an existing file." +msgid "In an editor, import statements have no effect until one runs the file. One might want to run a file after writing import statements, after adding function definitions, or after opening an existing file." msgstr "" -#: ../../library/idle.rst:572 msgid "Format block" msgstr "" -#: ../../library/idle.rst:574 -msgid "" -"Reformat Paragraph rewraps a block ('paragraph') of contiguous equally " -"indented non-blank comments, a similar block of text within a multiline " -"string, or a selected subset of either. If needed, add a blank line to " -"separate string from code. Partial lines in a selection expand to complete " -"lines. The resulting lines have the same indent as before but have maximum " -"total length of N columns (characters). Change the default N of 72 on the " -"Window tab of IDLE Settings." +msgid "Reformat Paragraph rewraps a block ('paragraph') of contiguous equally indented non-blank comments, a similar block of text within a multiline string, or a selected subset of either. If needed, add a blank line to separate string from code. Partial lines in a selection expand to complete lines. The resulting lines have the same indent as before but have maximum total length of N columns (characters). Change the default N of 72 on the Window tab of IDLE Settings." msgstr "" -#: ../../library/idle.rst:586 msgid "Code Context" msgstr "" -#: ../../library/idle.rst:588 -msgid "" -"Within an editor window containing Python code, code context can be toggled " -"in order to show or hide a pane at the top of the window. When shown, this " -"pane freezes the opening lines for block code, such as those beginning with " -"``class``, ``def``, or ``if`` keywords, that would have otherwise scrolled " -"out of view. The size of the pane will be expanded and contracted as needed " -"to show the all current levels of context, up to the maximum number of lines " -"defined in the Configure IDLE dialog (which defaults to 15). If there are " -"no current context lines and the feature is toggled on, a single blank line " -"will display. Clicking on a line in the context pane will move that line to " -"the top of the editor." -msgstr "" - -#: ../../library/idle.rst:599 -msgid "" -"The text and background colors for the context pane can be configured under " -"the Highlights tab in the Configure IDLE dialog." +msgid "Within an editor window containing Python code, code context can be toggled in order to show or hide a pane at the top of the window. When shown, this pane freezes the opening lines for block code, such as those beginning with ``class``, ``def``, or ``if`` keywords, that would have otherwise scrolled out of view. The size of the pane will be expanded and contracted as needed to show the all current levels of context, up to the maximum number of lines defined in the Configure IDLE dialog (which defaults to 15). If there are no current context lines and the feature is toggled on, a single blank line will display. Clicking on a line in the context pane will move that line to the top of the editor." +msgstr "" + +msgid "The text and background colors for the context pane can be configured under the Highlights tab in the Configure IDLE dialog." msgstr "" -#: ../../library/idle.rst:603 msgid "Shell window" msgstr "" -#: ../../library/idle.rst:605 -msgid "" -"In IDLE's Shell, enter, edit, and recall complete statements. (Most consoles " -"and terminals only work with a single physical line at a time)." +msgid "In IDLE's Shell, enter, edit, and recall complete statements. (Most consoles and terminals only work with a single physical line at a time)." msgstr "" -#: ../../library/idle.rst:608 -msgid "" -"Submit a single-line statement for execution by hitting :kbd:`Return` with " -"the cursor anywhere on the line. If a line is extended with Backslash " -"(:kbd:`\\\\`), the cursor must be on the last physical line. Submit a multi-" -"line compound statement by entering a blank line after the statement." +msgid "Submit a single-line statement for execution by hitting :kbd:`Return` with the cursor anywhere on the line. If a line is extended with Backslash (:kbd:`\\\\`), the cursor must be on the last physical line. Submit a multi-line compound statement by entering a blank line after the statement." msgstr "" -#: ../../library/idle.rst:614 -msgid "" -"When one pastes code into Shell, it is not compiled and possibly executed " -"until one hits :kbd:`Return`, as specified above. One may edit pasted code " -"first. If one pastes more than one statement into Shell, the result will be " -"a :exc:`SyntaxError` when multiple statements are compiled as if they were " -"one." +msgid "When one pastes code into Shell, it is not compiled and possibly executed until one hits :kbd:`Return`, as specified above. One may edit pasted code first. If one pastes more than one statement into Shell, the result will be a :exc:`SyntaxError` when multiple statements are compiled as if they were one." msgstr "" -#: ../../library/idle.rst:620 -msgid "" -"Lines containing ``RESTART`` mean that the user execution process has been " -"re-started. This occurs when the user execution process has crashed, when " -"one requests a restart on the Shell menu, or when one runs code in an editor " -"window." +msgid "Lines containing ``RESTART`` mean that the user execution process has been re-started. This occurs when the user execution process has crashed, when one requests a restart on the Shell menu, or when one runs code in an editor window." msgstr "" -#: ../../library/idle.rst:625 -msgid "" -"The editing features described in previous subsections work when entering " -"code interactively. IDLE's Shell window also responds to the following:" +msgid "The editing features described in previous subsections work when entering code interactively. IDLE's Shell window also responds to the following:" msgstr "" -#: ../../library/idle.rst:628 msgid ":kbd:`C-c` attempts to interrupt statement execution (but may fail)." msgstr "" -#: ../../library/idle.rst:630 msgid ":kbd:`C-d` closes Shell if typed at a ``>>>`` prompt." msgstr "" -#: ../../library/idle.rst:632 -msgid "" -":kbd:`Alt-p` and :kbd:`Alt-n` (:kbd:`C-p` and :kbd:`C-n` on macOS) retrieve " -"to the current prompt the previous or next previously entered statement that " -"matches anything already typed." +msgid ":kbd:`Alt-p` and :kbd:`Alt-n` (:kbd:`C-p` and :kbd:`C-n` on macOS) retrieve to the current prompt the previous or next previously entered statement that matches anything already typed." msgstr "" -#: ../../library/idle.rst:636 -msgid "" -":kbd:`Return` while the cursor is on any previous statement appends the " -"latter to anything already typed at the prompt." +msgid ":kbd:`Return` while the cursor is on any previous statement appends the latter to anything already typed at the prompt." msgstr "" -#: ../../library/idle.rst:640 msgid "Text colors" msgstr "" -#: ../../library/idle.rst:642 -msgid "" -"Idle defaults to black on white text, but colors text with special meanings. " -"For the shell, these are shell output, shell error, user output, and user " -"error. For Python code, at the shell prompt or in an editor, these are " -"keywords, builtin class and function names, names following ``class`` and " -"``def``, strings, and comments. For any text window, these are the cursor " -"(when present), found text (when possible), and selected text." +msgid "Idle defaults to black on white text, but colors text with special meanings. For the shell, these are shell output, shell error, user output, and user error. For Python code, at the shell prompt or in an editor, these are keywords, builtin class and function names, names following ``class`` and ``def``, strings, and comments. For any text window, these are the cursor (when present), found text (when possible), and selected text." msgstr "" -#: ../../library/idle.rst:649 -msgid "" -"IDLE also highlights the :ref:`soft keywords ` :keyword:`match`, :keyword:`case `, and :keyword:`_ " -"` in pattern-matching statements. However, this " -"highlighting is not perfect and will be incorrect in some rare cases, " -"including some ``_``-s in ``case`` patterns." +msgid "IDLE also highlights the :ref:`soft keywords ` :keyword:`match`, :keyword:`case `, and :keyword:`_ ` in pattern-matching statements. However, this highlighting is not perfect and will be incorrect in some rare cases, including some ``_``-s in ``case`` patterns." msgstr "" -#: ../../library/idle.rst:655 -msgid "" -"Text coloring is done in the background, so uncolorized text is occasionally " -"visible. To change the color scheme, use the Configure IDLE dialog " -"Highlighting tab. The marking of debugger breakpoint lines in the editor " -"and text in popups and dialogs is not user-configurable." +msgid "Text coloring is done in the background, so uncolorized text is occasionally visible. To change the color scheme, use the Configure IDLE dialog Highlighting tab. The marking of debugger breakpoint lines in the editor and text in popups and dialogs is not user-configurable." msgstr "" -#: ../../library/idle.rst:662 msgid "Startup and Code Execution" msgstr "" -#: ../../library/idle.rst:664 -msgid "" -"Upon startup with the ``-s`` option, IDLE will execute the file referenced " -"by the environment variables :envvar:`IDLESTARTUP` " -"or :envvar:`PYTHONSTARTUP`. IDLE first checks for ``IDLESTARTUP``; if " -"``IDLESTARTUP`` is present the file referenced is run. If ``IDLESTARTUP`` " -"is not present, IDLE checks for ``PYTHONSTARTUP``. Files referenced by " -"these environment variables are convenient places to store functions that " -"are used frequently from the IDLE shell, or for executing import statements " -"to import common modules." +msgid "Upon startup with the ``-s`` option, IDLE will execute the file referenced by the environment variables :envvar:`IDLESTARTUP` or :envvar:`PYTHONSTARTUP`. IDLE first checks for ``IDLESTARTUP``; if ``IDLESTARTUP`` is present the file referenced is run. If ``IDLESTARTUP`` is not present, IDLE checks for ``PYTHONSTARTUP``. Files referenced by these environment variables are convenient places to store functions that are used frequently from the IDLE shell, or for executing import statements to import common modules." msgstr "" -#: ../../library/idle.rst:672 -msgid "" -"In addition, ``Tk`` also loads a startup file if it is present. Note that " -"the Tk file is loaded unconditionally. This additional file is ``.Idle.py`` " -"and is looked for in the user's home directory. Statements in this file " -"will be executed in the Tk namespace, so this file is not useful for " -"importing functions to be used from IDLE's Python shell." +msgid "In addition, ``Tk`` also loads a startup file if it is present. Note that the Tk file is loaded unconditionally. This additional file is ``.Idle.py`` and is looked for in the user's home directory. Statements in this file will be executed in the Tk namespace, so this file is not useful for importing functions to be used from IDLE's Python shell." msgstr "" -#: ../../library/idle.rst:681 msgid "Command-line usage" msgstr "" -#: ../../library/idle.rst:685 -msgid "" -"IDLE can be invoked from the command line with various options. The general " -"syntax is:" +msgid "IDLE can be invoked from the command line with various options. The general syntax is:" msgstr "" -#: ../../library/idle.rst:687 msgid "python -m idlelib [options] [file ...]" msgstr "" -#: ../../library/idle.rst:691 msgid "The following options are available:" msgstr "" -#: ../../library/idle.rst:695 -msgid "" -"Run the specified Python command in the shell window. For example, pass ``-c " -"\"print('Hello, World!')\"``. On Windows, the outer quotes must be double " -"quotes as shown." +msgid "Run the specified Python command in the shell window. For example, pass ``-c \"print('Hello, World!')\"``. On Windows, the outer quotes must be double quotes as shown." msgstr "" -#: ../../library/idle.rst:701 msgid "Enable the debugger and open the shell window." msgstr "" -#: ../../library/idle.rst:705 msgid "Open an editor window." msgstr "" -#: ../../library/idle.rst:709 msgid "Print a help message with legal combinations of options and exit." msgstr "" -#: ../../library/idle.rst:713 msgid "Open a shell window." msgstr "" -#: ../../library/idle.rst:717 msgid "Run the specified file in the shell window." msgstr "" -#: ../../library/idle.rst:721 -msgid "" -"Run the startup file (as defined by the environment " -"variables :envvar:`IDLESTARTUP` or :envvar:`PYTHONSTARTUP`) before opening " -"the shell window." +msgid "Run the startup file (as defined by the environment variables :envvar:`IDLESTARTUP` or :envvar:`PYTHONSTARTUP`) before opening the shell window." msgstr "" -#: ../../library/idle.rst:725 msgid "Set the title of the shell window." msgstr "" -#: ../../library/idle.rst:729 -msgid "" -"Read and execute standard input in the shell window. This option must be the " -"last one before any arguments." +msgid "Read and execute standard input in the shell window. This option must be the last one before any arguments." msgstr "" -#: ../../library/idle.rst:731 msgid "If arguments are provided:" msgstr "" -#: ../../library/idle.rst:733 -msgid "" -"If ``-``, ``-c``, or ``-r`` is used, all arguments are placed in " -"``sys.argv[1:]``, and ``sys.argv[0]`` is set to ``''``, ``'-c'``, or ``'-" -"r'`` respectively. No editor window is opened, even if that is the default " -"set in the *Options* dialog." +msgid "If ``-``, ``-c``, or ``-r`` is used, all arguments are placed in ``sys.argv[1:]``, and ``sys.argv[0]`` is set to ``''``, ``'-c'``, or ``'-r'`` respectively. No editor window is opened, even if that is the default set in the *Options* dialog." msgstr "" -#: ../../library/idle.rst:736 -msgid "" -"Otherwise, arguments are treated as files to be opened for editing, and " -"``sys.argv`` reflects the arguments passed to IDLE itself." +msgid "Otherwise, arguments are treated as files to be opened for editing, and ``sys.argv`` reflects the arguments passed to IDLE itself." msgstr "" -#: ../../library/idle.rst:740 msgid "Startup failure" msgstr "" -#: ../../library/idle.rst:742 -msgid "" -"IDLE uses a socket to communicate between the IDLE GUI process and the user " -"code execution process. A connection must be established whenever the Shell " -"starts or restarts. (The latter is indicated by a divider line that says " -"'RESTART'). If the user process fails to connect to the GUI process, it " -"usually displays a ``Tk`` error box with a 'cannot connect' message that " -"directs the user here. It then exits." +msgid "IDLE uses a socket to communicate between the IDLE GUI process and the user code execution process. A connection must be established whenever the Shell starts or restarts. (The latter is indicated by a divider line that says 'RESTART'). If the user process fails to connect to the GUI process, it usually displays a ``Tk`` error box with a 'cannot connect' message that directs the user here. It then exits." msgstr "" -#: ../../library/idle.rst:749 -msgid "" -"One specific connection failure on Unix systems results from misconfigured " -"masquerading rules somewhere in a system's network setup. When IDLE is " -"started from a terminal, one will see a message starting with ``** Invalid " -"host:``. The valid value is ``127.0.0.1 (idlelib.rpc.LOCALHOST)``. One can " -"diagnose with ``tcpconnect -irv 127.0.0.1 6543`` in one terminal window and " -"``tcplisten `` in another." +msgid "One specific connection failure on Unix systems results from misconfigured masquerading rules somewhere in a system's network setup. When IDLE is started from a terminal, one will see a message starting with ``** Invalid host:``. The valid value is ``127.0.0.1 (idlelib.rpc.LOCALHOST)``. One can diagnose with ``tcpconnect -irv 127.0.0.1 6543`` in one terminal window and ``tcplisten `` in another." msgstr "" -#: ../../library/idle.rst:757 -msgid "" -"A common cause of failure is a user-written file with the same name as a " -"standard library module, such as *random.py* and *tkinter.py*. When such a " -"file is located in the same directory as a file that is about to be run, " -"IDLE cannot import the stdlib file. The current fix is to rename the user " -"file." +msgid "A common cause of failure is a user-written file with the same name as a standard library module, such as *random.py* and *tkinter.py*. When such a file is located in the same directory as a file that is about to be run, IDLE cannot import the stdlib file. The current fix is to rename the user file." msgstr "" -#: ../../library/idle.rst:763 -msgid "" -"Though less common than in the past, an antivirus or firewall program may " -"stop the connection. If the program cannot be taught to allow the " -"connection, then it must be turned off for IDLE to work. It is safe to " -"allow this internal connection because no data is visible on external " -"ports. A similar problem is a network mis-configuration that blocks " -"connections." +msgid "Though less common than in the past, an antivirus or firewall program may stop the connection. If the program cannot be taught to allow the connection, then it must be turned off for IDLE to work. It is safe to allow this internal connection because no data is visible on external ports. A similar problem is a network mis-configuration that blocks connections." msgstr "" -#: ../../library/idle.rst:770 -msgid "" -"Python installation issues occasionally stop IDLE: multiple versions can " -"clash, or a single installation might need admin access. If one undo the " -"clash, or cannot or does not want to run as admin, it might be easiest to " -"completely remove Python and start over." +msgid "Python installation issues occasionally stop IDLE: multiple versions can clash, or a single installation might need admin access. If one undo the clash, or cannot or does not want to run as admin, it might be easiest to completely remove Python and start over." msgstr "" -#: ../../library/idle.rst:775 -msgid "" -"A zombie pythonw.exe process could be a problem. On Windows, use Task " -"Manager to check for one and stop it if there is. Sometimes a restart " -"initiated by a program crash or Keyboard Interrupt (control-C) may fail to " -"connect. Dismissing the error box or using Restart Shell on the Shell menu " -"may fix a temporary problem." +msgid "A zombie pythonw.exe process could be a problem. On Windows, use Task Manager to check for one and stop it if there is. Sometimes a restart initiated by a program crash or Keyboard Interrupt (control-C) may fail to connect. Dismissing the error box or using Restart Shell on the Shell menu may fix a temporary problem." msgstr "" -#: ../../library/idle.rst:781 -msgid "" -"When IDLE first starts, it attempts to read user configuration files in " -"``~/.idlerc/`` (~ is one's home directory). If there is a problem, an error " -"message should be displayed. Leaving aside random disk glitches, this can " -"be prevented by never editing the files by hand. Instead, use the " -"configuration dialog, under Options. Once there is an error in a user " -"configuration file, the best solution may be to delete it and start over " -"with the settings dialog." +msgid "When IDLE first starts, it attempts to read user configuration files in ``~/.idlerc/`` (~ is one's home directory). If there is a problem, an error message should be displayed. Leaving aside random disk glitches, this can be prevented by never editing the files by hand. Instead, use the configuration dialog, under Options. Once there is an error in a user configuration file, the best solution may be to delete it and start over with the settings dialog." msgstr "" -#: ../../library/idle.rst:789 -msgid "" -"If IDLE quits with no message, and it was not started from a console, try " -"starting it from a console or terminal (``python -m idlelib``) and see if " -"this results in an error message." +msgid "If IDLE quits with no message, and it was not started from a console, try starting it from a console or terminal (``python -m idlelib``) and see if this results in an error message." msgstr "" -#: ../../library/idle.rst:793 -msgid "" -"On Unix-based systems with tcl/tk older than ``8.6.11`` (see ``About IDLE``) " -"certain characters of certain fonts can cause a tk failure with a message to " -"the terminal. This can happen either if one starts IDLE to edit a file with " -"such a character or later when entering such a character. If one cannot " -"upgrade tcl/tk, then re-configure IDLE to use a font that works better." +msgid "On Unix-based systems with tcl/tk older than ``8.6.11`` (see ``About IDLE``) certain characters of certain fonts can cause a tk failure with a message to the terminal. This can happen either if one starts IDLE to edit a file with such a character or later when entering such a character. If one cannot upgrade tcl/tk, then re-configure IDLE to use a font that works better." msgstr "" -#: ../../library/idle.rst:801 msgid "Running user code" msgstr "" -#: ../../library/idle.rst:803 -msgid "" -"With rare exceptions, the result of executing Python code with IDLE is " -"intended to be the same as executing the same code by the default method, " -"directly with Python in a text-mode system console or terminal window. " -"However, the different interface and operation occasionally affect visible " -"results. For instance, ``sys.modules`` starts with more entries, and " -"``threading.active_count()`` returns 2 instead of 1." +msgid "With rare exceptions, the result of executing Python code with IDLE is intended to be the same as executing the same code by the default method, directly with Python in a text-mode system console or terminal window. However, the different interface and operation occasionally affect visible results. For instance, ``sys.modules`` starts with more entries, and ``threading.active_count()`` returns 2 instead of 1." msgstr "" -#: ../../library/idle.rst:810 -msgid "" -"By default, IDLE runs user code in a separate OS process rather than in the " -"user interface process that runs the shell and editor. In the execution " -"process, it replaces ``sys.stdin``, ``sys.stdout``, and ``sys.stderr`` with " -"objects that get input from and send output to the Shell window. The " -"original values stored in ``sys.__stdin__``, ``sys.__stdout__``, and " -"``sys.__stderr__`` are not touched, but may be ``None``." +msgid "By default, IDLE runs user code in a separate OS process rather than in the user interface process that runs the shell and editor. In the execution process, it replaces ``sys.stdin``, ``sys.stdout``, and ``sys.stderr`` with objects that get input from and send output to the Shell window. The original values stored in ``sys.__stdin__``, ``sys.__stdout__``, and ``sys.__stderr__`` are not touched, but may be ``None``." msgstr "" -#: ../../library/idle.rst:817 -msgid "" -"Sending print output from one process to a text widget in another is slower " -"than printing to a system terminal in the same process. This has the most " -"effect when printing multiple arguments, as the string for each argument, " -"each separator, the newline are sent separately. For development, this is " -"usually not a problem, but if one wants to print faster in IDLE, format and " -"join together everything one wants displayed together and then print a " -"single string. Both format strings and :meth:`str.join` can help combine " -"fields and lines." +msgid "Sending print output from one process to a text widget in another is slower than printing to a system terminal in the same process. This has the most effect when printing multiple arguments, as the string for each argument, each separator, the newline are sent separately. For development, this is usually not a problem, but if one wants to print faster in IDLE, format and join together everything one wants displayed together and then print a single string. Both format strings and :meth:`str.join` can help combine fields and lines." msgstr "" -#: ../../library/idle.rst:826 -msgid "" -"IDLE's standard stream replacements are not inherited by subprocesses " -"created in the execution process, whether directly by user code or by " -"modules such as multiprocessing. If such subprocess use ``input`` from " -"sys.stdin or ``print`` or ``write`` to sys.stdout or sys.stderr, IDLE should " -"be started in a command line window. (On Windows, use ``python`` or ``py`` " -"rather than ``pythonw`` or ``pyw``.) The secondary subprocess will then be " -"attached to that window for input and output." +msgid "IDLE's standard stream replacements are not inherited by subprocesses created in the execution process, whether directly by user code or by modules such as multiprocessing. If such subprocess use ``input`` from sys.stdin or ``print`` or ``write`` to sys.stdout or sys.stderr, IDLE should be started in a command line window. (On Windows, use ``python`` or ``py`` rather than ``pythonw`` or ``pyw``.) The secondary subprocess will then be attached to that window for input and output." msgstr "" -#: ../../library/idle.rst:835 -msgid "" -"If ``sys`` is reset by user code, such as with ``importlib.reload(sys)``, " -"IDLE's changes are lost and input from the keyboard and output to the screen " -"will not work correctly." +msgid "If ``sys`` is reset by user code, such as with ``importlib.reload(sys)``, IDLE's changes are lost and input from the keyboard and output to the screen will not work correctly." msgstr "" -#: ../../library/idle.rst:839 -msgid "" -"When Shell has the focus, it controls the keyboard and screen. This is " -"normally transparent, but functions that directly access the keyboard and " -"screen will not work. These include system-specific functions that " -"determine whether a key has been pressed and if so, which." +msgid "When Shell has the focus, it controls the keyboard and screen. This is normally transparent, but functions that directly access the keyboard and screen will not work. These include system-specific functions that determine whether a key has been pressed and if so, which." msgstr "" -#: ../../library/idle.rst:844 -msgid "" -"The IDLE code running in the execution process adds frames to the call stack " -"that would not be there otherwise. IDLE wraps ``sys.getrecursionlimit`` and " -"``sys.setrecursionlimit`` to reduce the effect of the additional stack " -"frames." +msgid "The IDLE code running in the execution process adds frames to the call stack that would not be there otherwise. IDLE wraps ``sys.getrecursionlimit`` and ``sys.setrecursionlimit`` to reduce the effect of the additional stack frames." msgstr "" -#: ../../library/idle.rst:849 -msgid "" -"When user code raises SystemExit either directly or by calling sys.exit, " -"IDLE returns to a Shell prompt instead of exiting." +msgid "When user code raises SystemExit either directly or by calling sys.exit, IDLE returns to a Shell prompt instead of exiting." msgstr "" -#: ../../library/idle.rst:853 msgid "User output in Shell" msgstr "" -#: ../../library/idle.rst:855 -msgid "" -"When a program outputs text, the result is determined by the corresponding " -"output device. When IDLE executes user code, ``sys.stdout`` and " -"``sys.stderr`` are connected to the display area of IDLE's Shell. Some of " -"its features are inherited from the underlying Tk Text widget. Others are " -"programmed additions. Where it matters, Shell is designed for development " -"rather than production runs." +msgid "When a program outputs text, the result is determined by the corresponding output device. When IDLE executes user code, ``sys.stdout`` and ``sys.stderr`` are connected to the display area of IDLE's Shell. Some of its features are inherited from the underlying Tk Text widget. Others are programmed additions. Where it matters, Shell is designed for development rather than production runs." msgstr "" -#: ../../library/idle.rst:862 -msgid "" -"For instance, Shell never throws away output. A program that sends " -"unlimited output to Shell will eventually fill memory, resulting in a memory " -"error. In contrast, some system text windows only keep the last n lines of " -"output. A Windows console, for instance, keeps a user-settable 1 to 9999 " -"lines, with 300 the default." +msgid "For instance, Shell never throws away output. A program that sends unlimited output to Shell will eventually fill memory, resulting in a memory error. In contrast, some system text windows only keep the last n lines of output. A Windows console, for instance, keeps a user-settable 1 to 9999 lines, with 300 the default." +msgstr "" + +msgid "A Tk Text widget, and hence IDLE's Shell, displays characters (codepoints) in the BMP (Basic Multilingual Plane) subset of Unicode. Which characters are displayed with a proper glyph and which with a replacement box depends on the operating system and installed fonts. Tab characters cause the following text to begin after the next tab stop. (They occur every 8 'characters'). Newline characters cause following text to appear on a new line. Other control characters are ignored or displayed as a space, box, or something else, depending on the operating system and font. (Moving the text cursor through such output with arrow keys may exhibit some surprising spacing behavior.) ::" msgstr "" -#: ../../library/idle.rst:868 -msgid "" -"A Tk Text widget, and hence IDLE's Shell, displays characters (codepoints) " -"in the BMP (Basic Multilingual Plane) subset of Unicode. Which characters " -"are displayed with a proper glyph and which with a replacement box depends " -"on the operating system and installed fonts. Tab characters cause the " -"following text to begin after the next tab stop. (They occur every 8 " -"'characters'). Newline characters cause following text to appear on a new " -"line. Other control characters are ignored or displayed as a space, box, or " -"something else, depending on the operating system and font. (Moving the " -"text cursor through such output with arrow keys may exhibit some surprising " -"spacing behavior.) ::" -msgstr "" - -#: ../../library/idle.rst:878 msgid "" ">>> s = 'a\\tb\\a<\\x02><\\r>\\bc\\nd' # Enter 22 chars.\n" ">>> len(s)\n" @@ -1485,255 +804,119 @@ msgid "" "# Result varies by OS and font. Try it." msgstr "" -#: ../../library/idle.rst:886 -msgid "" -"The ``repr`` function is used for interactive echo of expression values. It " -"returns an altered version of the input string in which control codes, some " -"BMP codepoints, and all non-BMP codepoints are replaced with escape codes. " -"As demonstrated above, it allows one to identify the characters in a string, " -"regardless of how they are displayed." +msgid "The ``repr`` function is used for interactive echo of expression values. It returns an altered version of the input string in which control codes, some BMP codepoints, and all non-BMP codepoints are replaced with escape codes. As demonstrated above, it allows one to identify the characters in a string, regardless of how they are displayed." msgstr "" -#: ../../library/idle.rst:892 -msgid "" -"Normal and error output are generally kept separate (on separate lines) from " -"code input and each other. They each get different highlight colors." +msgid "Normal and error output are generally kept separate (on separate lines) from code input and each other. They each get different highlight colors." msgstr "" -#: ../../library/idle.rst:895 -msgid "" -"For SyntaxError tracebacks, the normal '^' marking where the error was " -"detected is replaced by coloring the text with an error highlight. When code " -"run from a file causes other exceptions, one may right click on a traceback " -"line to jump to the corresponding line in an IDLE editor. The file will be " -"opened if necessary." +msgid "For SyntaxError tracebacks, the normal '^' marking where the error was detected is replaced by coloring the text with an error highlight. When code run from a file causes other exceptions, one may right click on a traceback line to jump to the corresponding line in an IDLE editor. The file will be opened if necessary." msgstr "" -#: ../../library/idle.rst:901 -msgid "" -"Shell has a special facility for squeezing output lines down to a 'Squeezed " -"text' label. This is done automatically for output over N lines (N = 50 by " -"default). N can be changed in the PyShell section of the General page of the " -"Settings dialog. Output with fewer lines can be squeezed by right clicking " -"on the output. This can be useful lines long enough to slow down scrolling." +msgid "Shell has a special facility for squeezing output lines down to a 'Squeezed text' label. This is done automatically for output over N lines (N = 50 by default). N can be changed in the PyShell section of the General page of the Settings dialog. Output with fewer lines can be squeezed by right clicking on the output. This can be useful lines long enough to slow down scrolling." msgstr "" -#: ../../library/idle.rst:909 -msgid "" -"Squeezed output is expanded in place by double-clicking the label. It can " -"also be sent to the clipboard or a separate view window by right-clicking " -"the label." +msgid "Squeezed output is expanded in place by double-clicking the label. It can also be sent to the clipboard or a separate view window by right-clicking the label." msgstr "" -#: ../../library/idle.rst:914 msgid "Developing tkinter applications" msgstr "" -#: ../../library/idle.rst:916 -msgid "" -"IDLE is intentionally different from standard Python in order to facilitate " -"development of tkinter programs. Enter ``import tkinter as tk; root = " -"tk.Tk()`` in standard Python and nothing appears. Enter the same in IDLE " -"and a tk window appears. In standard Python, one must also enter " -"``root.update()`` to see the window. IDLE does the equivalent in the " -"background, about 20 times a second, which is about every 50 milliseconds. " -"Next enter ``b = tk.Button(root, text='button'); b.pack()``. Again, nothing " -"visibly changes in standard Python until one enters ``root.update()``." +msgid "IDLE is intentionally different from standard Python in order to facilitate development of tkinter programs. Enter ``import tkinter as tk; root = tk.Tk()`` in standard Python and nothing appears. Enter the same in IDLE and a tk window appears. In standard Python, one must also enter ``root.update()`` to see the window. IDLE does the equivalent in the background, about 20 times a second, which is about every 50 milliseconds. Next enter ``b = tk.Button(root, text='button'); b.pack()``. Again, nothing visibly changes in standard Python until one enters ``root.update()``." msgstr "" -#: ../../library/idle.rst:925 -msgid "" -"Most tkinter programs run ``root.mainloop()``, which usually does not return " -"until the tk app is destroyed. If the program is run with ``python -i`` or " -"from an IDLE editor, a ``>>>`` shell prompt does not appear until " -"``mainloop()`` returns, at which time there is nothing left to interact with." +msgid "Most tkinter programs run ``root.mainloop()``, which usually does not return until the tk app is destroyed. If the program is run with ``python -i`` or from an IDLE editor, a ``>>>`` shell prompt does not appear until ``mainloop()`` returns, at which time there is nothing left to interact with." msgstr "" -#: ../../library/idle.rst:931 -msgid "" -"When running a tkinter program from an IDLE editor, one can comment out the " -"mainloop call. One then gets a shell prompt immediately and can interact " -"with the live application. One just has to remember to re-enable the " -"mainloop call when running in standard Python." +msgid "When running a tkinter program from an IDLE editor, one can comment out the mainloop call. One then gets a shell prompt immediately and can interact with the live application. One just has to remember to re-enable the mainloop call when running in standard Python." msgstr "" -#: ../../library/idle.rst:937 msgid "Running without a subprocess" msgstr "" -#: ../../library/idle.rst:939 -msgid "" -"By default, IDLE executes user code in a separate subprocess via a socket, " -"which uses the internal loopback interface. This connection is not " -"externally visible and no data is sent to or received from the internet. If " -"firewall software complains anyway, you can ignore it." +msgid "By default, IDLE executes user code in a separate subprocess via a socket, which uses the internal loopback interface. This connection is not externally visible and no data is sent to or received from the internet. If firewall software complains anyway, you can ignore it." msgstr "" -#: ../../library/idle.rst:944 -msgid "" -"If the attempt to make the socket connection fails, Idle will notify you. " -"Such failures are sometimes transient, but if persistent, the problem may be " -"either a firewall blocking the connection or misconfiguration of a " -"particular system. Until the problem is fixed, one can run Idle with the -n " -"command line switch." +msgid "If the attempt to make the socket connection fails, Idle will notify you. Such failures are sometimes transient, but if persistent, the problem may be either a firewall blocking the connection or misconfiguration of a particular system. Until the problem is fixed, one can run Idle with the -n command line switch." +msgstr "" + +msgid "If IDLE is started with the -n command line switch it will run in a single process and will not create the subprocess which runs the RPC Python execution server. This can be useful if Python cannot create the subprocess or the RPC socket interface on your platform. However, in this mode user code is not isolated from IDLE itself. Also, the environment is not restarted when Run/Run Module (F5) is selected. If your code has been modified, you must reload() the affected modules and re-import any specific items (e.g. from foo import baz) if the changes are to take effect. For these reasons, it is preferable to run IDLE with the default subprocess if at all possible." msgstr "" -#: ../../library/idle.rst:950 -msgid "" -"If IDLE is started with the -n command line switch it will run in a single " -"process and will not create the subprocess which runs the RPC Python " -"execution server. This can be useful if Python cannot create the subprocess " -"or the RPC socket interface on your platform. However, in this mode user " -"code is not isolated from IDLE itself. Also, the environment is not " -"restarted when Run/Run Module (F5) is selected. If your code has been " -"modified, you must reload() the affected modules and re-import any specific " -"items (e.g. from foo import baz) if the changes are to take effect. For " -"these reasons, it is preferable to run IDLE with the default subprocess if " -"at all possible." -msgstr "" - -#: ../../library/idle.rst:965 msgid "Help and Preferences" msgstr "" -#: ../../library/idle.rst:970 msgid "Help sources" msgstr "" -#: ../../library/idle.rst:972 -msgid "" -"Help menu entry \"IDLE Help\" displays a formatted html version of the IDLE " -"chapter of the Library Reference. The result, in a read-only tkinter text " -"window, is close to what one sees in a web browser. Navigate through the " -"text with a mousewheel, the scrollbar, or up and down arrow keys held down. " -"Or click the TOC (Table of Contents) button and select a section header in " -"the opened box." +msgid "Help menu entry \"IDLE Help\" displays a formatted html version of the IDLE chapter of the Library Reference. The result, in a read-only tkinter text window, is close to what one sees in a web browser. Navigate through the text with a mousewheel, the scrollbar, or up and down arrow keys held down. Or click the TOC (Table of Contents) button and select a section header in the opened box." msgstr "" -#: ../../library/idle.rst:980 -msgid "" -"Help menu entry \"Python Docs\" opens the extensive sources of help, " -"including tutorials, available at ``docs.python.org/x.y``, where 'x.y' is " -"the currently running Python version. If your system has an off-line copy " -"of the docs (this may be an installation option), that will be opened " -"instead." +msgid "Help menu entry \"Python Docs\" opens the extensive sources of help, including tutorials, available at ``docs.python.org/x.y``, where 'x.y' is the currently running Python version. If your system has an off-line copy of the docs (this may be an installation option), that will be opened instead." msgstr "" -#: ../../library/idle.rst:986 -msgid "" -"Selected URLs can be added or removed from the help menu at any time using " -"the General tab of the Configure IDLE dialog." +msgid "Selected URLs can be added or removed from the help menu at any time using the General tab of the Configure IDLE dialog." msgstr "" -#: ../../library/idle.rst:992 msgid "Setting preferences" msgstr "" -#: ../../library/idle.rst:994 -msgid "" -"The font preferences, highlighting, keys, and general preferences can be " -"changed via Configure IDLE on the Option menu. Non-default user settings are " -"saved in a ``.idlerc`` directory in the user's home directory. Problems " -"caused by bad user configuration files are solved by editing or deleting one " -"or more of the files in ``.idlerc``." +msgid "The font preferences, highlighting, keys, and general preferences can be changed via Configure IDLE on the Option menu. Non-default user settings are saved in a ``.idlerc`` directory in the user's home directory. Problems caused by bad user configuration files are solved by editing or deleting one or more of the files in ``.idlerc``." msgstr "" -#: ../../library/idle.rst:1000 -msgid "" -"On the Font tab, see the text sample for the effect of font face and size on " -"multiple characters in multiple languages. Edit the sample to add other " -"characters of personal interest. Use the sample to select monospaced " -"fonts. If particular characters have problems in Shell or an editor, add " -"them to the top of the sample and try changing first size and then font." +msgid "On the Font tab, see the text sample for the effect of font face and size on multiple characters in multiple languages. Edit the sample to add other characters of personal interest. Use the sample to select monospaced fonts. If particular characters have problems in Shell or an editor, add them to the top of the sample and try changing first size and then font." msgstr "" -#: ../../library/idle.rst:1007 -msgid "" -"On the Highlights and Keys tab, select a built-in or custom color theme and " -"key set. To use a newer built-in color theme or key set with older IDLEs, " -"save it as a new custom theme or key set and it well be accessible to older " -"IDLEs." +msgid "On the Highlights and Keys tab, select a built-in or custom color theme and key set. To use a newer built-in color theme or key set with older IDLEs, save it as a new custom theme or key set and it well be accessible to older IDLEs." msgstr "" -#: ../../library/idle.rst:1013 msgid "IDLE on macOS" msgstr "" -#: ../../library/idle.rst:1015 -msgid "" -"Under System Preferences: Dock, one can set \"Prefer tabs when opening " -"documents\" to \"Always\". This setting is not compatible with the tk/" -"tkinter GUI framework used by IDLE, and it breaks a few IDLE features." +msgid "Under System Preferences: Dock, one can set \"Prefer tabs when opening documents\" to \"Always\". This setting is not compatible with the tk/tkinter GUI framework used by IDLE, and it breaks a few IDLE features." msgstr "" -#: ../../library/idle.rst:1020 msgid "Extensions" msgstr "" -#: ../../library/idle.rst:1022 -msgid "" -"IDLE contains an extension facility. Preferences for extensions can be " -"changed with the Extensions tab of the preferences dialog. See the beginning " -"of config-extensions.def in the idlelib directory for further information. " -"The only current default extension is zzdummy, an example also used for " -"testing." +msgid "IDLE contains an extension facility. Preferences for extensions can be changed with the Extensions tab of the preferences dialog. See the beginning of config-extensions.def in the idlelib directory for further information. The only current default extension is zzdummy, an example also used for testing." msgstr "" -#: ../../library/idle.rst:1030 msgid "idlelib --- implementation of IDLE application" msgstr "" -#: ../../library/idle.rst:1035 msgid "**Source code:** :source:`Lib/idlelib`" msgstr "" -#: ../../library/idle.rst:1039 -msgid "" -"The Lib/idlelib package implements the IDLE application. See the rest of " -"this page for how to use IDLE." +msgid "The Lib/idlelib package implements the IDLE application. See the rest of this page for how to use IDLE." msgstr "" -#: ../../library/idle.rst:1042 -msgid "" -"The files in idlelib are described in idlelib/README.txt. Access it either " -"in idlelib or click Help => About IDLE on the IDLE menu. This file also " -"maps IDLE menu items to the code that implements the item. Except for files " -"listed under 'Startup', the idlelib code is 'private' in sense that feature " -"changes can be backported (see :pep:`434`)." +msgid "The files in idlelib are described in idlelib/README.txt. Access it either in idlelib or click Help => About IDLE on the IDLE menu. This file also maps IDLE menu items to the code that implements the item. Except for files listed under 'Startup', the idlelib code is 'private' in sense that feature changes can be backported (see :pep:`434`)." msgstr "" -#: ../../library/idle.rst:10 msgid "IDLE" msgstr "" -#: ../../library/idle.rst:10 msgid "Python Editor" msgstr "" -#: ../../library/idle.rst:10 msgid "Integrated Development Environment" msgstr "" -#: ../../library/idle.rst:75 msgid "Module browser" msgstr "" -#: ../../library/idle.rst:75 msgid "Path browser" msgstr "" -#: ../../library/idle.rst:217 msgid "Run script" msgstr "" -#: ../../library/idle.rst:284 msgid "debugger" msgstr "" -#: ../../library/idle.rst:284 msgid "stack viewer" msgstr "" -#: ../../library/idle.rst:360 msgid "breakpoints" msgstr "" diff --git a/library/imaplib.po b/library/imaplib.po index d1c3fd53..fe2d86e6 100644 --- a/library/imaplib.po +++ b/library/imaplib.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:07+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,58 +23,30 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/imaplib.rst:2 msgid ":mod:`!imaplib` --- IMAP4 protocol client" msgstr "" -#: ../../library/imaplib.rst:15 msgid "**Source code:** :source:`Lib/imaplib.py`" msgstr "" -#: ../../library/imaplib.rst:24 -msgid "" -"This module defines three classes, :class:`IMAP4`, :class:`IMAP4_SSL` " -"and :class:`IMAP4_stream`, which encapsulate a connection to an IMAP4 server " -"and implement a large subset of the IMAP4rev1 client protocol as defined " -"in :rfc:`3501`. It is backward compatible with IMAP4 (:rfc:`1730`) servers, " -"but note that the ``STATUS`` command is not supported in IMAP4." +msgid "This module defines three classes, :class:`IMAP4`, :class:`IMAP4_SSL` and :class:`IMAP4_stream`, which encapsulate a connection to an IMAP4 server and implement a large subset of the IMAP4rev1 client protocol as defined in :rfc:`3501`. It is backward compatible with IMAP4 (:rfc:`1730`) servers, but note that the ``STATUS`` command is not supported in IMAP4." msgstr "" -#: ../../includes/wasm-notavail.rst:3 msgid "Availability" msgstr "" -#: ../../includes/wasm-notavail.rst:5 -msgid "" -"This module does not work or is not available on WebAssembly. See :ref:`wasm-" -"availability` for more information." +msgid "This module does not work or is not available on WebAssembly. See :ref:`wasm-availability` for more information." msgstr "" -#: ../../library/imaplib.rst:32 -msgid "" -"Three classes are provided by the :mod:`!imaplib` module, :class:`IMAP4` is " -"the base class:" +msgid "Three classes are provided by the :mod:`!imaplib` module, :class:`IMAP4` is the base class:" msgstr "" -#: ../../library/imaplib.rst:38 -msgid "" -"This class implements the actual IMAP4 protocol. The connection is created " -"and protocol version (IMAP4 or IMAP4rev1) is determined when the instance is " -"initialized. If *host* is not specified, ``''`` (the local host) is used. If " -"*port* is omitted, the standard IMAP4 port (143) is used. The optional " -"*timeout* parameter specifies a timeout in seconds for the connection " -"attempt. If timeout is not given or is ``None``, the global default socket " -"timeout is used." +msgid "This class implements the actual IMAP4 protocol. The connection is created and protocol version (IMAP4 or IMAP4rev1) is determined when the instance is initialized. If *host* is not specified, ``''`` (the local host) is used. If *port* is omitted, the standard IMAP4 port (143) is used. The optional *timeout* parameter specifies a timeout in seconds for the connection attempt. If timeout is not given or is ``None``, the global default socket timeout is used." msgstr "" -#: ../../library/imaplib.rst:45 -msgid "" -"The :class:`IMAP4` class supports the :keyword:`with` statement. When used " -"like this, the IMAP4 ``LOGOUT`` command is issued automatically when " -"the :keyword:`!with` statement exits. E.g.::" +msgid "The :class:`IMAP4` class supports the :keyword:`with` statement. When used like this, the IMAP4 ``LOGOUT`` command is issued automatically when the :keyword:`!with` statement exits. E.g.::" msgstr "" -#: ../../library/imaplib.rst:49 msgid "" ">>> from imaplib import IMAP4\n" ">>> with IMAP4(\"domain.org\") as M:\n" @@ -83,357 +55,174 @@ msgid "" "('OK', [b'Nothing Accomplished. d25if65hy903weo.87'])" msgstr "" -#: ../../library/imaplib.rst:55 msgid "Support for the :keyword:`with` statement was added." msgstr "" -#: ../../library/imaplib.rst:58 ../../library/imaplib.rst:119 msgid "The optional *timeout* parameter was added." msgstr "" -#: ../../library/imaplib.rst:61 msgid "Three exceptions are defined as attributes of the :class:`IMAP4` class:" msgstr "" -#: ../../library/imaplib.rst:66 -msgid "" -"Exception raised on any errors. The reason for the exception is passed to " -"the constructor as a string." +msgid "Exception raised on any errors. The reason for the exception is passed to the constructor as a string." msgstr "" -#: ../../library/imaplib.rst:72 -msgid "" -"IMAP4 server errors cause this exception to be raised. This is a sub-class " -"of :exc:`IMAP4.error`. Note that closing the instance and instantiating a " -"new one will usually allow recovery from this exception." +msgid "IMAP4 server errors cause this exception to be raised. This is a sub-class of :exc:`IMAP4.error`. Note that closing the instance and instantiating a new one will usually allow recovery from this exception." msgstr "" -#: ../../library/imaplib.rst:79 -msgid "" -"This exception is raised when a writable mailbox has its status changed by " -"the server. This is a sub-class of :exc:`IMAP4.error`. Some other client " -"now has write permission, and the mailbox will need to be re-opened to re-" -"obtain write permission." +msgid "This exception is raised when a writable mailbox has its status changed by the server. This is a sub-class of :exc:`IMAP4.error`. Some other client now has write permission, and the mailbox will need to be re-opened to re-obtain write permission." msgstr "" -#: ../../library/imaplib.rst:85 msgid "There's also a subclass for secure connections:" msgstr "" -#: ../../library/imaplib.rst:91 -msgid "" -"This is a subclass derived from :class:`IMAP4` that connects over an SSL " -"encrypted socket (to use this class you need a socket module that was " -"compiled with SSL support). If *host* is not specified, ``''`` (the local " -"host) is used. If *port* is omitted, the standard IMAP4-over-SSL port (993) " -"is used. *ssl_context* is a :class:`ssl.SSLContext` object which allows " -"bundling SSL configuration options, certificates and private keys into a " -"single (potentially long-lived) structure. Please read :ref:`ssl-security` " -"for best practices." +msgid "This is a subclass derived from :class:`IMAP4` that connects over an SSL encrypted socket (to use this class you need a socket module that was compiled with SSL support). If *host* is not specified, ``''`` (the local host) is used. If *port* is omitted, the standard IMAP4-over-SSL port (993) is used. *ssl_context* is a :class:`ssl.SSLContext` object which allows bundling SSL configuration options, certificates and private keys into a single (potentially long-lived) structure. Please read :ref:`ssl-security` for best practices." msgstr "" -#: ../../library/imaplib.rst:102 ../../library/imaplib.rst:611 -msgid "" -"With the default *ssl_context*, the connection is encrypted but the server " -"certificate and hostname are not verified. To verify them, pass a context " -"created by :func:`ssl.create_default_context`." +msgid "With the default *ssl_context*, the connection is encrypted but the server certificate and hostname are not verified. To verify them, pass a context created by :func:`ssl.create_default_context`." msgstr "" -#: ../../library/imaplib.rst:107 -msgid "" -"The optional *timeout* parameter specifies a timeout in seconds for the " -"connection attempt. If timeout is not given or is ``None``, the global " -"default socket timeout is used." +msgid "The optional *timeout* parameter specifies a timeout in seconds for the connection attempt. If timeout is not given or is ``None``, the global default socket timeout is used." msgstr "" -#: ../../library/imaplib.rst:111 msgid "*ssl_context* parameter was added." msgstr "" -#: ../../library/imaplib.rst:114 -msgid "" -"The class now supports hostname check " -"with :attr:`ssl.SSLContext.check_hostname` and *Server Name Indication* " -"(see :const:`ssl.HAS_SNI`)." +msgid "The class now supports hostname check with :attr:`ssl.SSLContext.check_hostname` and *Server Name Indication* (see :const:`ssl.HAS_SNI`)." msgstr "" -#: ../../library/imaplib.rst:122 msgid "The deprecated *keyfile* and *certfile* parameters have been removed." msgstr "" -#: ../../library/imaplib.rst:125 msgid "The second subclass allows for connections created by a child process:" msgstr "" -#: ../../library/imaplib.rst:130 -msgid "" -"This is a subclass derived from :class:`IMAP4` that connects to the ``stdin/" -"stdout`` file descriptors created by passing *command* to " -"``subprocess.Popen()``." +msgid "This is a subclass derived from :class:`IMAP4` that connects to the ``stdin/stdout`` file descriptors created by passing *command* to ``subprocess.Popen()``." msgstr "" -#: ../../library/imaplib.rst:135 msgid "The following utility functions are defined:" msgstr "" -#: ../../library/imaplib.rst:140 -msgid "" -"Parse a :term:`bytes-like object` containing an IMAP4 ``INTERNALDATE`` " -"response and return the corresponding local time. The return value is " -"a :class:`time.struct_time` tuple or ``None`` if the input has wrong format." +msgid "Parse a :term:`bytes-like object` containing an IMAP4 ``INTERNALDATE`` response and return the corresponding local time. The return value is a :class:`time.struct_time` tuple or ``None`` if the input has wrong format." msgstr "" -#: ../../library/imaplib.rst:146 -msgid "" -"Converts an integer into a bytes representation using characters from the " -"set [``A`` .. ``P``]." +msgid "Converts an integer into a bytes representation using characters from the set [``A`` .. ``P``]." msgstr "" -#: ../../library/imaplib.rst:152 -msgid "" -"Converts a :term:`bytes-like object` containing an IMAP4 ``FLAGS`` response " -"to a tuple of individual flags as :class:`bytes`. The return value is an " -"empty tuple if the input has wrong format." +msgid "Converts a :term:`bytes-like object` containing an IMAP4 ``FLAGS`` response to a tuple of individual flags as :class:`bytes`. The return value is an empty tuple if the input has wrong format." msgstr "" -#: ../../library/imaplib.rst:159 -msgid "" -"Convert *date_time* to an IMAP4 ``INTERNALDATE`` representation. The return " -"value is a string in the form: ``\"DD-Mmm-YYYY HH:MM:SS +HHMM\"`` (including " -"double-quotes). The *date_time* argument can be a number (int or float) " -"representing seconds since epoch (as returned by :func:`time.time`), a 9-" -"tuple representing local time an instance of :class:`time.struct_time` (as " -"returned by :func:`time.localtime`), an aware instance " -"of :class:`datetime.datetime`, or a double-quoted string. In the last case, " -"it is assumed to already be in the correct format." +msgid "Convert *date_time* to an IMAP4 ``INTERNALDATE`` representation. The return value is a string in the form: ``\"DD-Mmm-YYYY HH:MM:SS +HHMM\"`` (including double-quotes). The *date_time* argument can be a number (int or float) representing seconds since epoch (as returned by :func:`time.time`), a 9-tuple representing local time an instance of :class:`time.struct_time` (as returned by :func:`time.localtime`), an aware instance of :class:`datetime.datetime`, or a double-quoted string. In the last case, it is assumed to already be in the correct format." msgstr "" -#: ../../library/imaplib.rst:169 -msgid "" -"Note that IMAP4 message numbers change as the mailbox changes; in " -"particular, after an ``EXPUNGE`` command performs deletions the remaining " -"messages are renumbered. So it is highly advisable to use UIDs instead, with " -"the UID command." +msgid "Note that IMAP4 message numbers change as the mailbox changes; in particular, after an ``EXPUNGE`` command performs deletions the remaining messages are renumbered. So it is highly advisable to use UIDs instead, with the UID command." msgstr "" -#: ../../library/imaplib.rst:173 -msgid "" -"At the end of the module, there is a test section that contains a more " -"extensive example of usage." +msgid "At the end of the module, there is a test section that contains a more extensive example of usage." msgstr "" -#: ../../library/imaplib.rst:179 -msgid "" -"Documents describing the protocol, sources for servers implementing it, by " -"the University of Washington's IMAP Information Center can all be found at " -"(**Source Code**) https://github.com/uw-imap/imap (**Not Maintained**)." +msgid "Documents describing the protocol, sources for servers implementing it, by the University of Washington's IMAP Information Center can all be found at (**Source Code**) https://github.com/uw-imap/imap (**Not Maintained**)." msgstr "" -#: ../../library/imaplib.rst:187 msgid "IMAP4 Objects" msgstr "" -#: ../../library/imaplib.rst:189 -msgid "" -"All IMAP4rev1 commands are represented by methods of the same name, either " -"uppercase or lowercase." +msgid "All IMAP4rev1 commands are represented by methods of the same name, either uppercase or lowercase." msgstr "" -#: ../../library/imaplib.rst:192 -msgid "" -"All arguments to commands are converted to strings, except for " -"``AUTHENTICATE``, and the last argument to ``APPEND`` which is passed as an " -"IMAP4 literal. If necessary (the string contains IMAP4 protocol-sensitive " -"characters and isn't enclosed with either parentheses or double quotes) each " -"string is quoted. However, the *password* argument to the ``LOGIN`` command " -"is always quoted. If you want to avoid having an argument string quoted (eg: " -"the *flags* argument to ``STORE``) then enclose the string in parentheses " -"(eg: ``r'(\\Deleted)'``). In general, pass arguments unquoted and let the " -"module quote them as needed. An argument that is already enclosed in double " -"quotes is left unchanged, so that code which quotes arguments itself keeps " -"working." -msgstr "" - -#: ../../library/imaplib.rst:203 -msgid "" -"Most commands return a tuple: ``(type, [data, ...])`` where *type* is " -"usually ``'OK'`` or ``'NO'``, and *data* is either the text from the command " -"response, or mandated results from the command. Each *data* is either a " -"``bytes``, or a tuple. If a tuple, then the first part is the header of the " -"response, and the second part contains the data (ie: 'literal' value)." +msgid "All arguments to commands are converted to strings, except for ``AUTHENTICATE``, and the last argument to ``APPEND`` which is passed as an IMAP4 literal. If necessary (the string contains IMAP4 protocol-sensitive characters and isn't enclosed with either parentheses or double quotes) each string is quoted. However, the *password* argument to the ``LOGIN`` command is always quoted. If you want to avoid having an argument string quoted (eg: the *flags* argument to ``STORE``) then enclose the string in parentheses (eg: ``r'(\\Deleted)'``). In general, pass arguments unquoted and let the module quote them as needed. An argument that is already enclosed in double quotes is left unchanged, so that code which quotes arguments itself keeps working." msgstr "" -#: ../../library/imaplib.rst:209 -msgid "" -"The *message_set* options to commands below is a string specifying one or " -"more messages to be acted upon. It may be a simple message number " -"(``'1'``), a range of message numbers (``'2:4'``), or a group of non-" -"contiguous ranges separated by commas (``'1:3,6:9'``). A range can contain " -"an asterisk to indicate an infinite upper bound (``'3:*'``)." +msgid "Most commands return a tuple: ``(type, [data, ...])`` where *type* is usually ``'OK'`` or ``'NO'``, and *data* is either the text from the command response, or mandated results from the command. Each *data* is either a ``bytes``, or a tuple. If a tuple, then the first part is the header of the response, and the second part contains the data (ie: 'literal' value)." +msgstr "" + +msgid "The *message_set* options to commands below is a string specifying one or more messages to be acted upon. It may be a simple message number (``'1'``), a range of message numbers (``'2:4'``), or a group of non-contiguous ranges separated by commas (``'1:3,6:9'``). A range can contain an asterisk to indicate an infinite upper bound (``'3:*'``)." msgstr "" -#: ../../library/imaplib.rst:215 msgid "An :class:`IMAP4` instance has the following methods:" msgstr "" -#: ../../library/imaplib.rst:220 msgid "Append *message* to named mailbox." msgstr "" -#: ../../library/imaplib.rst:222 -msgid "" -"*flags* may be ``None`` or a string of IMAP flag tokens. Multiple flags are " -"separated by spaces, for example ``r'\\Seen \\Answered'``. If *flags* is not " -"already enclosed in parentheses, parentheses are added automatically." +msgid "*flags* may be ``None`` or a string of IMAP flag tokens. Multiple flags are separated by spaces, for example ``r'\\Seen \\Answered'``. If *flags* is not already enclosed in parentheses, parentheses are added automatically." msgstr "" -#: ../../library/imaplib.rst:230 msgid "Authenticate command --- requires response processing." msgstr "" -#: ../../library/imaplib.rst:232 -msgid "" -"*mechanism* specifies which authentication mechanism is to be used - it " -"should appear in the instance variable ``capabilities`` in the form " -"``AUTH=mechanism``." +msgid "*mechanism* specifies which authentication mechanism is to be used - it should appear in the instance variable ``capabilities`` in the form ``AUTH=mechanism``." msgstr "" -#: ../../library/imaplib.rst:235 msgid "*authobject* must be a callable object::" msgstr "" -#: ../../library/imaplib.rst:237 msgid "data = authobject(response)" msgstr "" -#: ../../library/imaplib.rst:239 -msgid "" -"It will be called to process server continuation responses; the *response* " -"argument it is passed will be ``bytes``. It should return ``bytes`` *data* " -"that will be base64 encoded and sent to the server. It should return " -"``None`` if the client abort response ``*`` should be sent instead." +msgid "It will be called to process server continuation responses; the *response* argument it is passed will be ``bytes``. It should return ``bytes`` *data* that will be base64 encoded and sent to the server. It should return ``None`` if the client abort response ``*`` should be sent instead." msgstr "" -#: ../../library/imaplib.rst:244 -msgid "" -"string usernames and passwords are now encoded to ``utf-8`` instead of being " -"limited to ASCII." +msgid "string usernames and passwords are now encoded to ``utf-8`` instead of being limited to ASCII." msgstr "" -#: ../../library/imaplib.rst:251 msgid "Checkpoint mailbox on server." msgstr "" -#: ../../library/imaplib.rst:256 -msgid "" -"Close currently selected mailbox. Deleted messages are removed from writable " -"mailbox. This is the recommended command before ``LOGOUT``." +msgid "Close currently selected mailbox. Deleted messages are removed from writable mailbox. This is the recommended command before ``LOGOUT``." msgstr "" -#: ../../library/imaplib.rst:262 msgid "Copy *message_set* messages onto end of *new_mailbox*." msgstr "" -#: ../../library/imaplib.rst:267 msgid "Create new mailbox named *mailbox*." msgstr "" -#: ../../library/imaplib.rst:272 msgid "Delete old mailbox named *mailbox*." msgstr "" -#: ../../library/imaplib.rst:277 msgid "Delete the ACLs (remove any rights) set for who on mailbox." msgstr "" -#: ../../library/imaplib.rst:282 -msgid "" -"Enable *capability* (see :rfc:`5161`). Most capabilities do not need to be " -"enabled. Currently only the ``UTF8=ACCEPT`` capability is supported " -"(see :RFC:`6855`)." +msgid "Enable *capability* (see :rfc:`5161`). Most capabilities do not need to be enabled. Currently only the ``UTF8=ACCEPT`` capability is supported (see :RFC:`6855`)." msgstr "" -#: ../../library/imaplib.rst:286 msgid "The :meth:`enable` method itself, and :RFC:`6855` support." msgstr "" -#: ../../library/imaplib.rst:292 -msgid "" -"Permanently remove deleted items from selected mailbox. Generates an " -"``EXPUNGE`` response for each deleted message. Returned data contains a list " -"of ``EXPUNGE`` message numbers in order received." +msgid "Permanently remove deleted items from selected mailbox. Generates an ``EXPUNGE`` response for each deleted message. Returned data contains a list of ``EXPUNGE`` message numbers in order received." msgstr "" -#: ../../library/imaplib.rst:299 -msgid "" -"Fetch (parts of) messages. *message_parts* should be a string of message " -"part names enclosed within parentheses, eg: ``\"(UID BODY[TEXT])\"``. " -"Returned data are tuples of message part envelope and data." +msgid "Fetch (parts of) messages. *message_parts* should be a string of message part names enclosed within parentheses, eg: ``\"(UID BODY[TEXT])\"``. Returned data are tuples of message part envelope and data." msgstr "" -#: ../../library/imaplib.rst:306 -msgid "" -"Get the ``ACL``\\ s for *mailbox*. The method is non-standard, but is " -"supported by the ``Cyrus`` server." +msgid "Get the ``ACL``\\ s for *mailbox*. The method is non-standard, but is supported by the ``Cyrus`` server." msgstr "" -#: ../../library/imaplib.rst:312 -msgid "" -"Retrieve the specified ``ANNOTATION``\\ s for *mailbox*. The method is non-" -"standard, but is supported by the ``Cyrus`` server." +msgid "Retrieve the specified ``ANNOTATION``\\ s for *mailbox*. The method is non-standard, but is supported by the ``Cyrus`` server." msgstr "" -#: ../../library/imaplib.rst:318 -msgid "" -"Get the ``quota`` *root*'s resource usage and limits. This method is part of " -"the IMAP4 QUOTA extension defined in rfc2087." +msgid "Get the ``quota`` *root*'s resource usage and limits. This method is part of the IMAP4 QUOTA extension defined in rfc2087." msgstr "" -#: ../../library/imaplib.rst:324 -msgid "" -"Get the list of ``quota`` ``roots`` for the named *mailbox*. This method is " -"part of the IMAP4 QUOTA extension defined in rfc2087." +msgid "Get the list of ``quota`` ``roots`` for the named *mailbox*. This method is part of the IMAP4 QUOTA extension defined in rfc2087." msgstr "" -#: ../../library/imaplib.rst:330 -msgid "" -"Return an :class:`!Idler`: an iterable context manager implementing the " -"IMAP4 ``IDLE`` command as defined in :rfc:`2177`." +msgid "Return an :class:`!Idler`: an iterable context manager implementing the IMAP4 ``IDLE`` command as defined in :rfc:`2177`." msgstr "" -#: ../../library/imaplib.rst:333 -msgid "" -"The returned object sends the ``IDLE`` command when activated by " -"the :keyword:`with` statement, produces IMAP untagged responses via " -"the :term:`iterator` protocol, and sends ``DONE`` upon context exit." +msgid "The returned object sends the ``IDLE`` command when activated by the :keyword:`with` statement, produces IMAP untagged responses via the :term:`iterator` protocol, and sends ``DONE`` upon context exit." msgstr "" -#: ../../library/imaplib.rst:337 -msgid "" -"All untagged responses that arrive after sending the ``IDLE`` command " -"(including any that arrive before the server acknowledges the command) will " -"be available via iteration. Any leftover responses (those not iterated in " -"the :keyword:`with` context) can be retrieved in the usual way after " -"``IDLE`` ends, using :meth:`IMAP4.response`." +msgid "All untagged responses that arrive after sending the ``IDLE`` command (including any that arrive before the server acknowledges the command) will be available via iteration. Any leftover responses (those not iterated in the :keyword:`with` context) can be retrieved in the usual way after ``IDLE`` ends, using :meth:`IMAP4.response`." msgstr "" -#: ../../library/imaplib.rst:343 -msgid "" -"Responses are represented as ``(type, [data, ...])`` tuples, as described " -"in :ref:`IMAP4 Objects `." +msgid "Responses are represented as ``(type, [data, ...])`` tuples, as described in :ref:`IMAP4 Objects `." msgstr "" -#: ../../library/imaplib.rst:346 -msgid "" -"The *duration* argument sets a maximum duration (in seconds) to keep idling, " -"after which any ongoing iteration will stop. It can be an :class:`int` " -"or :class:`float`, or ``None`` for no time limit. Callers wishing to avoid " -"inactivity timeouts on servers that impose them should keep this at most 29 " -"minutes (1740 seconds). Requires a socket connection; *duration* must be " -"``None`` on :class:`IMAP4_stream` connections." +msgid "The *duration* argument sets a maximum duration (in seconds) to keep idling, after which any ongoing iteration will stop. It can be an :class:`int` or :class:`float`, or ``None`` for no time limit. Callers wishing to avoid inactivity timeouts on servers that impose them should keep this at most 29 minutes (1740 seconds). Requires a socket connection; *duration* must be ``None`` on :class:`IMAP4_stream` connections." msgstr "" -#: ../../library/imaplib.rst:354 msgid "" ">>> with M.idle(duration=29 * 60) as idler:\n" "... for typ, data in idler:\n" @@ -443,27 +232,15 @@ msgid "" "RECENT [b'1']" msgstr "" -#: ../../library/imaplib.rst:366 -msgid "" -"Yield a burst of responses no more than *interval* seconds apart (expressed " -"as an :class:`int` or :class:`float`)." +msgid "Yield a burst of responses no more than *interval* seconds apart (expressed as an :class:`int` or :class:`float`)." msgstr "" -#: ../../library/imaplib.rst:369 -msgid "" -"This :term:`generator` is an alternative to iterating one response at a " -"time, intended to aid in efficient batch processing. It retrieves the next " -"response along with any immediately available subsequent responses. (For " -"example, a rapid series of ``EXPUNGE`` responses after a bulk delete.)" +msgid "This :term:`generator` is an alternative to iterating one response at a time, intended to aid in efficient batch processing. It retrieves the next response along with any immediately available subsequent responses. (For example, a rapid series of ``EXPUNGE`` responses after a bulk delete.)" msgstr "" -#: ../../library/imaplib.rst:375 -msgid "" -"Requires a socket connection; does not work on :class:`IMAP4_stream` " -"connections." +msgid "Requires a socket connection; does not work on :class:`IMAP4_stream` connections." msgstr "" -#: ../../library/imaplib.rst:378 msgid "" ">>> with M.idle() as idler:\n" "... # get a response and any others following by < 0.1 seconds\n" @@ -475,157 +252,81 @@ msgid "" "[('EXPUNGE', [b'2']), ('EXPUNGE', [b'1']), ('RECENT', [b'0'])]" msgstr "" -#: ../../library/imaplib.rst:391 -msgid "" -"The ``IDLE`` context's maximum duration, as passed to :meth:`IMAP4.idle`, is " -"respected when waiting for the first response in a burst. Therefore, an " -"expired :class:`!Idler` will cause this generator to return immediately " -"without producing anything. Callers should consider this if using it in a " -"loop." +msgid "The ``IDLE`` context's maximum duration, as passed to :meth:`IMAP4.idle`, is respected when waiting for the first response in a burst. Therefore, an expired :class:`!Idler` will cause this generator to return immediately without producing anything. Callers should consider this if using it in a loop." msgstr "" -#: ../../library/imaplib.rst:400 -msgid "" -"The iterator returned by :meth:`IMAP4.idle` is usable only within " -"a :keyword:`with` statement. Before or after that context, unsolicited " -"responses are collected internally whenever a command finishes, and can be " -"retrieved with :meth:`IMAP4.response`." +msgid "The iterator returned by :meth:`IMAP4.idle` is usable only within a :keyword:`with` statement. Before or after that context, unsolicited responses are collected internally whenever a command finishes, and can be retrieved with :meth:`IMAP4.response`." msgstr "" -#: ../../library/imaplib.rst:407 -msgid "" -"The :class:`!Idler` class name and structure are internal interfaces, " -"subject to change. Calling code can rely on its context management, " -"iteration, and public method to remain stable, but should not subclass, " -"instantiate, compare, or otherwise directly reference the class." +msgid "The :class:`!Idler` class name and structure are internal interfaces, subject to change. Calling code can rely on its context management, iteration, and public method to remain stable, but should not subclass, instantiate, compare, or otherwise directly reference the class." msgstr "" -#: ../../library/imaplib.rst:417 -msgid "" -"List mailbox names in *directory* matching *pattern*. *directory* defaults " -"to the top-level mail folder, and *pattern* defaults to match anything. " -"Returned data contains a list of ``LIST`` responses." +msgid "List mailbox names in *directory* matching *pattern*. *directory* defaults to the top-level mail folder, and *pattern* defaults to match anything. Returned data contains a list of ``LIST`` responses." msgstr "" -#: ../../library/imaplib.rst:424 -msgid "" -"Identify the client using a plaintext password. The *password* will be " -"quoted." +msgid "Identify the client using a plaintext password. The *password* will be quoted." msgstr "" -#: ../../library/imaplib.rst:429 -msgid "" -"Force use of ``CRAM-MD5`` authentication when identifying the client to " -"protect the password. Will only work if the server ``CAPABILITY`` response " -"includes the phrase ``AUTH=CRAM-MD5``." +msgid "Force use of ``CRAM-MD5`` authentication when identifying the client to protect the password. Will only work if the server ``CAPABILITY`` response includes the phrase ``AUTH=CRAM-MD5``." msgstr "" -#: ../../library/imaplib.rst:433 msgid "An :exc:`IMAP4.error` is raised if MD5 support is not available." msgstr "" -#: ../../library/imaplib.rst:439 msgid "Shutdown connection to server. Returns server ``BYE`` response." msgstr "" -#: ../../library/imaplib.rst:441 msgid "The method no longer ignores silently arbitrary exceptions." msgstr "" -#: ../../library/imaplib.rst:447 -msgid "" -"List subscribed mailbox names in directory matching pattern. *directory* " -"defaults to the top level directory and *pattern* defaults to match any " -"mailbox. Returned data are tuples of message part envelope and data." +msgid "List subscribed mailbox names in directory matching pattern. *directory* defaults to the top level directory and *pattern* defaults to match any mailbox. Returned data are tuples of message part envelope and data." msgstr "" -#: ../../library/imaplib.rst:454 msgid "Show my ACLs for a mailbox (i.e. the rights that I have on mailbox)." msgstr "" -#: ../../library/imaplib.rst:459 msgid "Returns IMAP namespaces as defined in :rfc:`2342`." msgstr "" -#: ../../library/imaplib.rst:464 msgid "Send ``NOOP`` to server." msgstr "" -#: ../../library/imaplib.rst:469 -msgid "" -"Opens socket to *port* at *host*. The optional *timeout* parameter specifies " -"a timeout in seconds for the connection attempt. If timeout is not given or " -"is ``None``, the global default socket timeout is used. Also note that if " -"the *timeout* parameter is set to be zero, it will raise " -"a :class:`ValueError` to reject creating a non-blocking socket. This method " -"is implicitly called by the :class:`IMAP4` constructor. The connection " -"objects established by this method will be used in " -"the :meth:`IMAP4.read`, :meth:`IMAP4.readline`, :meth:`IMAP4.send`, " -"and :meth:`IMAP4.shutdown` methods. You may override this method." -msgstr "" - -#: ../../library/imaplib.rst:479 -msgid "" -"Raises an :ref:`auditing event ` ``imaplib.open`` with arguments " -"``self``, ``host``, ``port``." +msgid "Opens socket to *port* at *host*. The optional *timeout* parameter specifies a timeout in seconds for the connection attempt. If timeout is not given or is ``None``, the global default socket timeout is used. Also note that if the *timeout* parameter is set to be zero, it will raise a :class:`ValueError` to reject creating a non-blocking socket. This method is implicitly called by the :class:`IMAP4` constructor. The connection objects established by this method will be used in the :meth:`IMAP4.read`, :meth:`IMAP4.readline`, :meth:`IMAP4.send`, and :meth:`IMAP4.shutdown` methods. You may override this method." +msgstr "" + +msgid "Raises an :ref:`auditing event ` ``imaplib.open`` with arguments ``self``, ``host``, ``port``." msgstr "" -#: ../../library/imaplib.rst:481 msgid "The *timeout* parameter was added." msgstr "" -#: ../../library/imaplib.rst:486 -msgid "" -"Fetch truncated part of a message. Returned data is a tuple of message part " -"envelope and data." +msgid "Fetch truncated part of a message. Returned data is a tuple of message part envelope and data." msgstr "" -#: ../../library/imaplib.rst:492 -msgid "" -"Assume authentication as *user*. Allows an authorised administrator to proxy " -"into any user's mailbox." +msgid "Assume authentication as *user*. Allows an authorised administrator to proxy into any user's mailbox." msgstr "" -#: ../../library/imaplib.rst:498 -msgid "" -"Reads *size* bytes from the remote server. You may override this method." +msgid "Reads *size* bytes from the remote server. You may override this method." msgstr "" -#: ../../library/imaplib.rst:503 msgid "Reads one line from the remote server. You may override this method." msgstr "" -#: ../../library/imaplib.rst:508 -msgid "" -"Prompt server for an update. Returned data is ``None`` if no new messages, " -"else value of ``RECENT`` response." +msgid "Prompt server for an update. Returned data is ``None`` if no new messages, else value of ``RECENT`` response." msgstr "" -#: ../../library/imaplib.rst:514 msgid "Rename mailbox named *oldmailbox* to *newmailbox*." msgstr "" -#: ../../library/imaplib.rst:519 -msgid "" -"Return data for response *code* if received, or ``None``. Returns the given " -"code, instead of the usual type." +msgid "Return data for response *code* if received, or ``None``. Returns the given code, instead of the usual type." msgstr "" -#: ../../library/imaplib.rst:525 -msgid "" -"Search mailbox for matching messages. *charset* may be ``None``, in which " -"case no ``CHARSET`` will be specified in the request to the server. The " -"IMAP protocol requires that at least one criterion be specified; an " -"exception will be raised when the server returns an error. *charset* must " -"be ``None`` if the ``UTF8=ACCEPT`` capability was enabled using " -"the :meth:`enable` command." +msgid "Search mailbox for matching messages. *charset* may be ``None``, in which case no ``CHARSET`` will be specified in the request to the server. The IMAP protocol requires that at least one criterion be specified; an exception will be raised when the server returns an error. *charset* must be ``None`` if the ``UTF8=ACCEPT`` capability was enabled using the :meth:`enable` command." msgstr "" -#: ../../library/imaplib.rst:532 msgid "Example::" msgstr "" -#: ../../library/imaplib.rst:534 msgid "" "# M is a connected IMAP4 instance...\n" "typ, msgnums = M.search(None, 'FROM', '\"LDJ\"')\n" @@ -634,104 +335,54 @@ msgid "" "typ, msgnums = M.search(None, '(FROM \"LDJ\")')" msgstr "" -#: ../../library/imaplib.rst:543 -msgid "" -"Select a mailbox. Returned data is the count of messages in *mailbox* " -"(``EXISTS`` response). The default *mailbox* is ``'INBOX'``. If the " -"*readonly* flag is set, modifications to the mailbox are not allowed." +msgid "Select a mailbox. Returned data is the count of messages in *mailbox* (``EXISTS`` response). The default *mailbox* is ``'INBOX'``. If the *readonly* flag is set, modifications to the mailbox are not allowed." msgstr "" -#: ../../library/imaplib.rst:550 msgid "Sends ``data`` to the remote server. You may override this method." msgstr "" -#: ../../library/imaplib.rst:552 -msgid "" -"Raises an :ref:`auditing event ` ``imaplib.send`` with arguments " -"``self``, ``data``." +msgid "Raises an :ref:`auditing event ` ``imaplib.send`` with arguments ``self``, ``data``." msgstr "" -#: ../../library/imaplib.rst:557 -msgid "" -"Set an ``ACL`` for *mailbox*. The method is non-standard, but is supported " -"by the ``Cyrus`` server." +msgid "Set an ``ACL`` for *mailbox*. The method is non-standard, but is supported by the ``Cyrus`` server." msgstr "" -#: ../../library/imaplib.rst:563 -msgid "" -"Set ``ANNOTATION``\\ s for *mailbox*. The method is non-standard, but is " -"supported by the ``Cyrus`` server." +msgid "Set ``ANNOTATION``\\ s for *mailbox*. The method is non-standard, but is supported by the ``Cyrus`` server." msgstr "" -#: ../../library/imaplib.rst:569 -msgid "" -"Set the ``quota`` *root*'s resource *limits*. This method is part of the " -"IMAP4 QUOTA extension defined in rfc2087." +msgid "Set the ``quota`` *root*'s resource *limits*. This method is part of the IMAP4 QUOTA extension defined in rfc2087." msgstr "" -#: ../../library/imaplib.rst:575 -msgid "" -"Close connection established in ``open``. This method is implicitly called " -"by :meth:`IMAP4.logout`. You may override this method." +msgid "Close connection established in ``open``. This method is implicitly called by :meth:`IMAP4.logout`. You may override this method." msgstr "" -#: ../../library/imaplib.rst:581 msgid "Returns socket instance used to connect to server." msgstr "" -#: ../../library/imaplib.rst:586 -msgid "" -"The ``sort`` command is a variant of ``search`` with sorting semantics for " -"the results. Returned data contains a space separated list of matching " -"message numbers." +msgid "The ``sort`` command is a variant of ``search`` with sorting semantics for the results. Returned data contains a space separated list of matching message numbers." msgstr "" -#: ../../library/imaplib.rst:590 -msgid "" -"Sort has two arguments before the *search_criterion* argument(s); a " -"parenthesized list of *sort_criteria*, and the searching *charset*. Note " -"that unlike ``search``, the searching *charset* argument is mandatory. " -"There is also a ``uid sort`` command which corresponds to ``sort`` the way " -"that ``uid search`` corresponds to ``search``. The ``sort`` command first " -"searches the mailbox for messages that match the given searching criteria " -"using the charset argument for the interpretation of strings in the " -"searching criteria. It then returns the numbers of matching messages." +msgid "Sort has two arguments before the *search_criterion* argument(s); a parenthesized list of *sort_criteria*, and the searching *charset*. Note that unlike ``search``, the searching *charset* argument is mandatory. There is also a ``uid sort`` command which corresponds to ``sort`` the way that ``uid search`` corresponds to ``search``. The ``sort`` command first searches the mailbox for messages that match the given searching criteria using the charset argument for the interpretation of strings in the searching criteria. It then returns the numbers of matching messages." msgstr "" -#: ../../library/imaplib.rst:599 ../../library/imaplib.rst:677 msgid "This is an ``IMAP4rev1`` extension command." msgstr "" -#: ../../library/imaplib.rst:604 -msgid "" -"Send a ``STARTTLS`` command. The *ssl_context* argument is optional and " -"should be a :class:`ssl.SSLContext` object. This will enable encryption on " -"the IMAP connection. Please read :ref:`ssl-security` for best practices." +msgid "Send a ``STARTTLS`` command. The *ssl_context* argument is optional and should be a :class:`ssl.SSLContext` object. This will enable encryption on the IMAP connection. Please read :ref:`ssl-security` for best practices." msgstr "" -#: ../../library/imaplib.rst:618 -msgid "" -"The method now supports hostname check " -"with :attr:`ssl.SSLContext.check_hostname` and *Server Name Indication* " -"(see :const:`ssl.HAS_SNI`)." +msgid "The method now supports hostname check with :attr:`ssl.SSLContext.check_hostname` and *Server Name Indication* (see :const:`ssl.HAS_SNI`)." msgstr "" -#: ../../library/imaplib.rst:626 msgid "Request named status conditions for *mailbox*." msgstr "" -#: ../../library/imaplib.rst:631 -msgid "" -"Alters flag dispositions for messages in mailbox. *command* is specified by " -"section 6.4.6 of :rfc:`3501` as being one of \"FLAGS\", \"+FLAGS\", or \"-" -"FLAGS\", optionally with a suffix of \".SILENT\"." +msgid "Alters flag dispositions for messages in mailbox. *command* is specified by section 6.4.6 of :rfc:`3501` as being one of \"FLAGS\", \"+FLAGS\", or \"-FLAGS\", optionally with a suffix of \".SILENT\"." msgstr "" -#: ../../library/imaplib.rst:635 msgid "For example, to set the delete flag on all messages::" msgstr "" -#: ../../library/imaplib.rst:637 msgid "" "typ, data = M.search(None, 'ALL')\n" "for num in data[0].split():\n" @@ -739,109 +390,51 @@ msgid "" "M.expunge()" msgstr "" -#: ../../library/imaplib.rst:644 -msgid "" -"Creating flags containing ']' (for example: \"[test]\") violates :rfc:`3501` " -"(the IMAP protocol). However, imaplib has historically allowed creation of " -"such flags, and popular IMAP servers, such as Gmail, accept and produce such " -"flags. There are non-Python programs which also create such flags. " -"Although it is an RFC violation and IMAP clients and servers are supposed to " -"be strict, imaplib still continues to allow such flags to be created for " -"backward compatibility reasons, and as of Python 3.6, handles them if they " -"are sent from the server, since this improves real-world compatibility." +msgid "Creating flags containing ']' (for example: \"[test]\") violates :rfc:`3501` (the IMAP protocol). However, imaplib has historically allowed creation of such flags, and popular IMAP servers, such as Gmail, accept and produce such flags. There are non-Python programs which also create such flags. Although it is an RFC violation and IMAP clients and servers are supposed to be strict, imaplib still continues to allow such flags to be created for backward compatibility reasons, and as of Python 3.6, handles them if they are sent from the server, since this improves real-world compatibility." msgstr "" -#: ../../library/imaplib.rst:656 msgid "Subscribe to new mailbox." msgstr "" -#: ../../library/imaplib.rst:661 -msgid "" -"The ``thread`` command is a variant of ``search`` with threading semantics " -"for the results. Returned data contains a space separated list of thread " -"members." +msgid "The ``thread`` command is a variant of ``search`` with threading semantics for the results. Returned data contains a space separated list of thread members." msgstr "" -#: ../../library/imaplib.rst:664 -msgid "" -"Thread members consist of zero or more messages numbers, delimited by " -"spaces, indicating successive parent and child." +msgid "Thread members consist of zero or more messages numbers, delimited by spaces, indicating successive parent and child." msgstr "" -#: ../../library/imaplib.rst:667 -msgid "" -"Thread has two arguments before the *search_criterion* argument(s); a " -"*threading_algorithm*, and the searching *charset*. Note that unlike " -"``search``, the searching *charset* argument is mandatory. There is also a " -"``uid thread`` command which corresponds to ``thread`` the way that ``uid " -"search`` corresponds to ``search``. The ``thread`` command first searches " -"the mailbox for messages that match the given searching criteria using the " -"*charset* argument for the interpretation of strings in the searching " -"criteria. It then returns the matching messages threaded according to the " -"specified threading algorithm." -msgstr "" - -#: ../../library/imaplib.rst:682 -msgid "" -"Execute command args with messages identified by UID, rather than message " -"number. Returns response appropriate to command. At least one argument " -"must be supplied; if none are provided, the server will return an error and " -"an exception will be raised." +msgid "Thread has two arguments before the *search_criterion* argument(s); a *threading_algorithm*, and the searching *charset*. Note that unlike ``search``, the searching *charset* argument is mandatory. There is also a ``uid thread`` command which corresponds to ``thread`` the way that ``uid search`` corresponds to ``search``. The ``thread`` command first searches the mailbox for messages that match the given searching criteria using the *charset* argument for the interpretation of strings in the searching criteria. It then returns the matching messages threaded according to the specified threading algorithm." +msgstr "" + +msgid "Execute command args with messages identified by UID, rather than message number. Returns response appropriate to command. At least one argument must be supplied; if none are provided, the server will return an error and an exception will be raised." msgstr "" -#: ../../library/imaplib.rst:690 msgid "Unsubscribe from old mailbox." msgstr "" -#: ../../library/imaplib.rst:694 -msgid "" -":meth:`imaplib.IMAP4.unselect` frees server's resources associated with the " -"selected mailbox and returns the server to the authenticated state. This " -"command performs the same actions as :meth:`imaplib.IMAP4.close`, except " -"that no messages are permanently removed from the currently selected mailbox." +msgid ":meth:`imaplib.IMAP4.unselect` frees server's resources associated with the selected mailbox and returns the server to the authenticated state. This command performs the same actions as :meth:`imaplib.IMAP4.close`, except that no messages are permanently removed from the currently selected mailbox." msgstr "" -#: ../../library/imaplib.rst:704 -msgid "" -"Allow simple extension commands notified by server in ``CAPABILITY`` " -"response." +msgid "Allow simple extension commands notified by server in ``CAPABILITY`` response." msgstr "" -#: ../../library/imaplib.rst:707 msgid "The following attributes are defined on instances of :class:`IMAP4`:" msgstr "" -#: ../../library/imaplib.rst:711 -msgid "" -"The most recent supported protocol in the ``CAPABILITY`` response from the " -"server." +msgid "The most recent supported protocol in the ``CAPABILITY`` response from the server." msgstr "" -#: ../../library/imaplib.rst:717 -msgid "" -"Integer value to control debugging output. The initialize value is taken " -"from the module variable ``Debug``. Values greater than three trace each " -"command." +msgid "Integer value to control debugging output. The initialize value is taken from the module variable ``Debug``. Values greater than three trace each command." msgstr "" -#: ../../library/imaplib.rst:723 -msgid "" -"Boolean value that is normally ``False``, but is set to ``True`` if " -"an :meth:`enable` command is successfully issued for the ``UTF8=ACCEPT`` " -"capability." +msgid "Boolean value that is normally ``False``, but is set to ``True`` if an :meth:`enable` command is successfully issued for the ``UTF8=ACCEPT`` capability." msgstr "" -#: ../../library/imaplib.rst:733 msgid "IMAP4 Example" msgstr "" -#: ../../library/imaplib.rst:735 -msgid "" -"Here is a minimal example (without error checking) that opens a mailbox and " -"retrieves and prints all messages::" +msgid "Here is a minimal example (without error checking) that opens a mailbox and retrieves and prints all messages::" msgstr "" -#: ../../library/imaplib.rst:738 msgid "" "import getpass, imaplib\n" "\n" @@ -856,25 +449,17 @@ msgid "" "M.logout()" msgstr "" -#: ../../library/imaplib.rst:752 -msgid "" -"A ``FETCH`` response may contain additional or unsolicited data " -"(see :rfc:`3501`, section 7.4.2), so production code should inspect the " -"whole response rather than rely on ``data[0][1]``." +msgid "A ``FETCH`` response may contain additional or unsolicited data (see :rfc:`3501`, section 7.4.2), so production code should inspect the whole response rather than rely on ``data[0][1]``." msgstr "" -#: ../../library/imaplib.rst:17 msgid "IMAP4" msgstr "" -#: ../../library/imaplib.rst:17 msgid "protocol" msgstr "" -#: ../../library/imaplib.rst:17 msgid "IMAP4_SSL" msgstr "" -#: ../../library/imaplib.rst:17 msgid "IMAP4_stream" msgstr "" diff --git a/library/imghdr.po b/library/imghdr.po index 6d3184bc..25348dea 100644 --- a/library/imghdr.po +++ b/library/imghdr.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2024-11-19 01:02+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,26 +21,14 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/imghdr.rst:2 msgid ":mod:`!imghdr` --- Determine the type of an image" msgstr "" -#: ../../library/imghdr.rst:10 -msgid "" -"This module is no longer part of the Python standard library. It " -"was :ref:`removed in Python 3.13 ` after being " -"deprecated in Python 3.11. The removal was decided in :pep:`594`." +msgid "This module is no longer part of the Python standard library. It was :ref:`removed in Python 3.13 ` after being deprecated in Python 3.11. The removal was decided in :pep:`594`." msgstr "" -#: ../../library/imghdr.rst:14 -msgid "" -"Possible replacements are third-party libraries from " -"PyPI: :pypi:`filetype`, :pypi:`puremagic`, or :pypi:`python-magic`. These " -"are not supported or maintained by the Python core team." +msgid "Possible replacements are third-party libraries from PyPI: :pypi:`filetype`, :pypi:`puremagic`, or :pypi:`python-magic`. These are not supported or maintained by the Python core team." msgstr "" -#: ../../library/imghdr.rst:18 -msgid "" -"The last version of Python that provided the :mod:`!imghdr` module was " -"`Python 3.12 `_." +msgid "The last version of Python that provided the :mod:`!imghdr` module was `Python 3.12 `_." msgstr "" diff --git a/library/imp.po b/library/imp.po index f62e32c1..981644df 100644 --- a/library/imp.po +++ b/library/imp.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2024-11-19 01:02+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,25 +21,14 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/imp.rst:2 msgid ":mod:`!imp` --- Access the import internals" msgstr "" -#: ../../library/imp.rst:10 -msgid "" -"This module is no longer part of the Python standard library. It " -"was :ref:`removed in Python 3.12 ` after being " -"deprecated in Python 3.4." +msgid "This module is no longer part of the Python standard library. It was :ref:`removed in Python 3.12 ` after being deprecated in Python 3.4." msgstr "" -#: ../../library/imp.rst:14 -msgid "" -"The :ref:`removal notice ` includes guidance for " -"migrating code from :mod:`!imp` to :mod:`importlib`." +msgid "The :ref:`removal notice ` includes guidance for migrating code from :mod:`!imp` to :mod:`importlib`." msgstr "" -#: ../../library/imp.rst:17 -msgid "" -"The last version of Python that provided the :mod:`!imp` module was `Python " -"3.11 `_." +msgid "The last version of Python that provided the :mod:`!imp` module was `Python 3.11 `_." msgstr "" diff --git a/library/importlib.metadata.po b/library/importlib.metadata.po index 85d233ec..de6ca8f5 100644 --- a/library/importlib.metadata.po +++ b/library/importlib.metadata.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:08+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,97 +24,48 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/importlib.metadata.rst:5 msgid ":mod:`!importlib.metadata` -- Accessing package metadata" msgstr "" -#: ../../library/importlib.metadata.rst:11 msgid "``importlib.metadata`` is no longer provisional." msgstr "" -#: ../../library/importlib.metadata.rst:14 msgid "**Source code:** :source:`Lib/importlib/metadata/__init__.py`" msgstr "" -#: ../../library/importlib.metadata.rst:16 -msgid "" -"``importlib.metadata`` is a library that provides access to the metadata of " -"an installed `Distribution Package `_, such as its entry points or its top-" -"level names (`Import Package `_\\s, modules, if any). Built in part on " -"Python's import system, this library provides the entry point and metadata " -"APIs that were previously exposed by the now-removed ``pkg_resources`` " -"package. Along with :mod:`importlib.resources`, it supersedes " -"``pkg_resources``." -msgstr "" - -#: ../../library/importlib.metadata.rst:25 -msgid "" -"``importlib.metadata`` operates on third-party *distribution packages* " -"installed into Python's ``site-packages`` directory via tools such " -"as :pypi:`pip`. Specifically, it works with distributions with discoverable " -"``dist-info`` or ``egg-info`` directories, and metadata defined by the `Core " -"metadata specifications `_." +msgid "``importlib.metadata`` is a library that provides access to the metadata of an installed `Distribution Package `_, such as its entry points or its top-level names (`Import Package `_\\s, modules, if any). Built in part on Python's import system, this library provides the entry point and metadata APIs that were previously exposed by the now-removed ``pkg_resources`` package. Along with :mod:`importlib.resources`, it supersedes ``pkg_resources``." msgstr "" -#: ../../library/importlib.metadata.rst:34 -msgid "" -"These are *not* necessarily equivalent to or correspond 1:1 with the top-" -"level *import package* names that can be imported inside Python code. One " -"*distribution package* can contain multiple *import packages* (and single " -"modules), and one top-level *import package* may map to multiple " -"*distribution packages* if it is a namespace package. You can " -"use :ref:`packages_distributions() ` to get a mapping " -"between them." +msgid "``importlib.metadata`` operates on third-party *distribution packages* installed into Python's ``site-packages`` directory via tools such as :pypi:`pip`. Specifically, it works with distributions with discoverable ``dist-info`` or ``egg-info`` directories, and metadata defined by the `Core metadata specifications `_." msgstr "" -#: ../../library/importlib.metadata.rst:45 -msgid "" -"By default, distribution metadata can live on the file system or in zip " -"archives on :data:`sys.path`. Through an extension mechanism, the metadata " -"can live almost anywhere." +msgid "These are *not* necessarily equivalent to or correspond 1:1 with the top-level *import package* names that can be imported inside Python code. One *distribution package* can contain multiple *import packages* (and single modules), and one top-level *import package* may map to multiple *distribution packages* if it is a namespace package. You can use :ref:`packages_distributions() ` to get a mapping between them." +msgstr "" + +msgid "By default, distribution metadata can live on the file system or in zip archives on :data:`sys.path`. Through an extension mechanism, the metadata can live almost anywhere." msgstr "" -#: ../../library/importlib.metadata.rst:53 msgid "https://importlib-metadata.readthedocs.io/" msgstr "" -#: ../../library/importlib.metadata.rst:54 -msgid "" -"The documentation for ``importlib_metadata``, which supplies a backport of " -"``importlib.metadata``. This includes an `API reference `__ for this module's classes and " -"functions, as well as a `migration guide `__ for existing users of " -"``pkg_resources``." +msgid "The documentation for ``importlib_metadata``, which supplies a backport of ``importlib.metadata``. This includes an `API reference `__ for this module's classes and functions, as well as a `migration guide `__ for existing users of ``pkg_resources``." msgstr "" -#: ../../library/importlib.metadata.rst:65 msgid "Overview" msgstr "" -#: ../../library/importlib.metadata.rst:67 -msgid "" -"Let's say you wanted to get the version string for a `Distribution Package " -"`_ you've installed using ``pip``. We start by creating a virtual " -"environment and installing something into it:" +msgid "Let's say you wanted to get the version string for a `Distribution Package `_ you've installed using ``pip``. We start by creating a virtual environment and installing something into it:" msgstr "" -#: ../../library/importlib.metadata.rst:72 msgid "" "$ python -m venv example\n" "$ source example/bin/activate\n" "(example) $ python -m pip install wheel" msgstr "" -#: ../../library/importlib.metadata.rst:78 msgid "You can get the version string for ``wheel`` by running the following:" msgstr "" -#: ../../library/importlib.metadata.rst:80 msgid "" "(example) $ python\n" ">>> from importlib.metadata import version\n" @@ -122,166 +73,96 @@ msgid "" "'0.32.3'" msgstr "" -#: ../../library/importlib.metadata.rst:87 -msgid "" -"You can also get a collection of entry points selectable by properties of " -"the EntryPoint (typically 'group' or 'name'), such as ``console_scripts``, " -"``distutils.commands`` and others. Each group contains a collection " -"of :ref:`EntryPoint ` objects." +msgid "You can also get a collection of entry points selectable by properties of the EntryPoint (typically 'group' or 'name'), such as ``console_scripts``, ``distutils.commands`` and others. Each group contains a collection of :ref:`EntryPoint ` objects." msgstr "" -#: ../../library/importlib.metadata.rst:91 msgid "You can get the :ref:`metadata for a distribution `::" msgstr "" -#: ../../library/importlib.metadata.rst:93 msgid "" ">>> list(metadata('wheel'))\n" -"['Metadata-Version', 'Name', 'Version', 'Summary', 'Home-page', 'Author', " -"'Author-email', 'Maintainer', 'Maintainer-email', 'License', 'Project-URL', " -"'Project-URL', 'Project-URL', 'Keywords', 'Platform', 'Classifier', " -"'Classifier', 'Classifier', 'Classifier', 'Classifier', 'Classifier', " -"'Classifier', 'Classifier', 'Classifier', 'Classifier', 'Classifier', " -"'Classifier', 'Requires-Python', 'Provides-Extra', 'Requires-Dist', " -"'Requires-Dist']" +"['Metadata-Version', 'Name', 'Version', 'Summary', 'Home-page', 'Author', 'Author-email', 'Maintainer', 'Maintainer-email', 'License', 'Project-URL', 'Project-URL', 'Project-URL', 'Keywords', 'Platform', 'Classifier', 'Classifier', 'Classifier', 'Classifier', 'Classifier', 'Classifier', 'Classifier', 'Classifier', 'Classifier', 'Classifier', 'Classifier', 'Classifier', 'Requires-Python', 'Provides-Extra', 'Requires-Dist', 'Requires-Dist']" msgstr "" -#: ../../library/importlib.metadata.rst:96 -msgid "" -"You can also get a :ref:`distribution's version number `, list " -"its :ref:`constituent files `, and get a list of the " -"distribution's :ref:`requirements`." +msgid "You can also get a :ref:`distribution's version number `, list its :ref:`constituent files `, and get a list of the distribution's :ref:`requirements`." msgstr "" -#: ../../library/importlib.metadata.rst:103 -msgid "" -"Subclass of :class:`ModuleNotFoundError` raised by several functions in this " -"module when queried for a distribution package which is not installed in the " -"current Python environment." +msgid "Subclass of :class:`ModuleNotFoundError` raised by several functions in this module when queried for a distribution package which is not installed in the current Python environment." msgstr "" -#: ../../library/importlib.metadata.rst:109 msgid "Functional API" msgstr "" -#: ../../library/importlib.metadata.rst:111 msgid "This package provides the following functionality via its public API." msgstr "" -#: ../../library/importlib.metadata.rst:117 msgid "Entry points" msgstr "" -#: ../../library/importlib.metadata.rst:121 -msgid "" -"Returns a :class:`EntryPoints` instance describing entry points for the " -"current environment. Any given keyword parameters are passed to the :meth:`!" -"select` method for comparison to the attributes of the individual entry " -"point definitions." +msgid "Returns a :class:`EntryPoints` instance describing entry points for the current environment. Any given keyword parameters are passed to the :meth:`!select` method for comparison to the attributes of the individual entry point definitions." msgstr "" -#: ../../library/importlib.metadata.rst:126 -msgid "" -"Note: it is not currently possible to query for entry points based on " -"their :attr:`!EntryPoint.dist` attribute (as different :class:`!" -"Distribution` instances do not currently compare equal, even if they have " -"the same attributes)" +msgid "Note: it is not currently possible to query for entry points based on their :attr:`!EntryPoint.dist` attribute (as different :class:`!Distribution` instances do not currently compare equal, even if they have the same attributes)" msgstr "" -#: ../../library/importlib.metadata.rst:132 msgid "Details of a collection of installed entry points." msgstr "" -#: ../../library/importlib.metadata.rst:134 -msgid "" -"Also provides a ``.groups`` attribute that reports all identified entry " -"point groups, and a ``.names`` attribute that reports all identified entry " -"point names." +msgid "Also provides a ``.groups`` attribute that reports all identified entry point groups, and a ``.names`` attribute that reports all identified entry point names." msgstr "" -#: ../../library/importlib.metadata.rst:140 msgid "Details of an installed entry point." msgstr "" -#: ../../library/importlib.metadata.rst:142 -msgid "" -"Each :class:`!EntryPoint` instance has ``.name``, ``.group``, and ``.value`` " -"attributes and a ``.load()`` method to resolve the value. There are also " -"``.module``, ``.attr``, and ``.extras`` attributes for getting the " -"components of the ``.value`` attribute, and ``.dist`` for obtaining " -"information regarding the distribution package that provides the entry point." +msgid "Each :class:`!EntryPoint` instance has ``.name``, ``.group``, and ``.value`` attributes and a ``.load()`` method to resolve the value. There are also ``.module``, ``.attr``, and ``.extras`` attributes for getting the components of the ``.value`` attribute, and ``.dist`` for obtaining information regarding the distribution package that provides the entry point." msgstr "" -#: ../../library/importlib.metadata.rst:148 msgid "Query all entry points::" msgstr "" -#: ../../library/importlib.metadata.rst:150 msgid ">>> eps = entry_points()" msgstr "" -#: ../../library/importlib.metadata.rst:152 -msgid "" -"The :func:`!entry_points` function returns a :class:`!EntryPoints` object, a " -"collection of all :class:`!EntryPoint` objects with ``names`` and ``groups`` " -"attributes for convenience::" +msgid "The :func:`!entry_points` function returns a :class:`!EntryPoints` object, a collection of all :class:`!EntryPoint` objects with ``names`` and ``groups`` attributes for convenience::" msgstr "" -#: ../../library/importlib.metadata.rst:156 msgid "" ">>> sorted(eps.groups)\n" -"['console_scripts', 'distutils.commands', 'distutils.setup_keywords', " -"'egg_info.writers', 'setuptools.installation']" +"['console_scripts', 'distutils.commands', 'distutils.setup_keywords', 'egg_info.writers', 'setuptools.installation']" msgstr "" -#: ../../library/importlib.metadata.rst:159 -msgid "" -":class:`!EntryPoints` has a :meth:`!select` method to select entry points " -"matching specific properties. Select entry points in the ``console_scripts`` " -"group::" +msgid ":class:`!EntryPoints` has a :meth:`!select` method to select entry points matching specific properties. Select entry points in the ``console_scripts`` group::" msgstr "" -#: ../../library/importlib.metadata.rst:163 msgid ">>> scripts = eps.select(group='console_scripts')" msgstr "" -#: ../../library/importlib.metadata.rst:165 -msgid "" -"Equivalently, since :func:`!entry_points` passes keyword arguments through " -"to select::" +msgid "Equivalently, since :func:`!entry_points` passes keyword arguments through to select::" msgstr "" -#: ../../library/importlib.metadata.rst:168 msgid ">>> scripts = entry_points(group='console_scripts')" msgstr "" -#: ../../library/importlib.metadata.rst:170 -msgid "" -"Pick out a specific script named \"wheel\" (found in the wheel project)::" +msgid "Pick out a specific script named \"wheel\" (found in the wheel project)::" msgstr "" -#: ../../library/importlib.metadata.rst:172 msgid "" ">>> 'wheel' in scripts.names\n" "True\n" ">>> wheel = scripts['wheel']" msgstr "" -#: ../../library/importlib.metadata.rst:176 msgid "Equivalently, query for that entry point during selection::" msgstr "" -#: ../../library/importlib.metadata.rst:178 msgid "" ">>> (wheel,) = entry_points(group='console_scripts', name='wheel')\n" ">>> (wheel,) = entry_points().select(group='console_scripts', name='wheel')" msgstr "" -#: ../../library/importlib.metadata.rst:181 msgid "Inspect the resolved entry point::" msgstr "" -#: ../../library/importlib.metadata.rst:183 msgid "" ">>> wheel\n" "EntryPoint(name='wheel', value='wheel.cli:main', group='console_scripts')\n" @@ -296,173 +177,90 @@ msgid "" "" msgstr "" -#: ../../library/importlib.metadata.rst:195 -msgid "" -"The ``group`` and ``name`` are arbitrary values defined by the package " -"author and usually a client will wish to resolve all entry points for a " -"particular group. Read `the setuptools docs `_ for more information on entry points, " -"their definition, and usage." +msgid "The ``group`` and ``name`` are arbitrary values defined by the package author and usually a client will wish to resolve all entry points for a particular group. Read `the setuptools docs `_ for more information on entry points, their definition, and usage." msgstr "" -#: ../../library/importlib.metadata.rst:201 -msgid "" -"The \"selectable\" entry points were introduced in ``importlib_metadata`` " -"3.6 and Python 3.10. Prior to those changes, ``entry_points`` accepted no " -"parameters and always returned a dictionary of entry points, keyed by group. " -"With ``importlib_metadata`` 5.0 and Python 3.12, ``entry_points`` always " -"returns an ``EntryPoints`` object. " -"See :pypi:`backports.entry_points_selectable` for compatibility options." +msgid "The \"selectable\" entry points were introduced in ``importlib_metadata`` 3.6 and Python 3.10. Prior to those changes, ``entry_points`` accepted no parameters and always returned a dictionary of entry points, keyed by group. With ``importlib_metadata`` 5.0 and Python 3.12, ``entry_points`` always returns an ``EntryPoints`` object. See :pypi:`backports.entry_points_selectable` for compatibility options." msgstr "" -#: ../../library/importlib.metadata.rst:210 -msgid "" -"``EntryPoint`` objects no longer present a tuple-like interface " -"(:meth:`~object.__getitem__`)." +msgid "``EntryPoint`` objects no longer present a tuple-like interface (:meth:`~object.__getitem__`)." msgstr "" -#: ../../library/importlib.metadata.rst:217 msgid "Distribution metadata" msgstr "" -#: ../../library/importlib.metadata.rst:221 -msgid "" -"Return the distribution metadata corresponding to the named distribution " -"package as a :class:`PackageMetadata` instance." +msgid "Return the distribution metadata corresponding to the named distribution package as a :class:`PackageMetadata` instance." msgstr "" -#: ../../library/importlib.metadata.rst:224 -#: ../../library/importlib.metadata.rst:273 -#: ../../library/importlib.metadata.rst:294 -#: ../../library/importlib.metadata.rst:357 -#: ../../library/importlib.metadata.rst:408 -msgid "" -"Raises :exc:`PackageNotFoundError` if the named distribution package is not " -"installed in the current Python environment." +msgid "Raises :exc:`PackageNotFoundError` if the named distribution package is not installed in the current Python environment." msgstr "" -#: ../../library/importlib.metadata.rst:229 -msgid "" -"A concrete implementation of the `PackageMetadata protocol `_." +msgid "A concrete implementation of the `PackageMetadata protocol `_." msgstr "" -#: ../../library/importlib.metadata.rst:232 -msgid "" -"In addition to providing the defined protocol methods and attributes, " -"subscripting the instance is equivalent to calling the :meth:`!get` method." +msgid "In addition to providing the defined protocol methods and attributes, subscripting the instance is equivalent to calling the :meth:`!get` method." msgstr "" -#: ../../library/importlib.metadata.rst:235 -msgid "" -"Every `Distribution Package `_ includes some metadata, which you can extract " -"using the :func:`!metadata` function::" +msgid "Every `Distribution Package `_ includes some metadata, which you can extract using the :func:`!metadata` function::" msgstr "" -#: ../../library/importlib.metadata.rst:238 msgid ">>> wheel_metadata = metadata('wheel')" msgstr "" -#: ../../library/importlib.metadata.rst:240 -msgid "" -"The keys of the returned data structure name the metadata keywords, and the " -"values are returned unparsed from the distribution metadata::" +msgid "The keys of the returned data structure name the metadata keywords, and the values are returned unparsed from the distribution metadata::" msgstr "" -#: ../../library/importlib.metadata.rst:243 msgid "" ">>> wheel_metadata['Requires-Python']\n" "'>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*'" msgstr "" -#: ../../library/importlib.metadata.rst:246 -msgid "" -":class:`PackageMetadata` also presents a :attr:`!json` attribute that " -"returns all the metadata in a JSON-compatible form per :PEP:`566`::" +msgid ":class:`PackageMetadata` also presents a :attr:`!json` attribute that returns all the metadata in a JSON-compatible form per :PEP:`566`::" msgstr "" -#: ../../library/importlib.metadata.rst:249 msgid "" ">>> wheel_metadata.json['requires_python']\n" "'>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*'" msgstr "" -#: ../../library/importlib.metadata.rst:252 -#: ../../library/importlib.metadata.rst:451 -msgid "" -"The full set of available metadata is not described here. See the PyPA `Core " -"metadata specification `_ for additional details." +msgid "The full set of available metadata is not described here. See the PyPA `Core metadata specification `_ for additional details." msgstr "" -#: ../../library/importlib.metadata.rst:255 -msgid "" -"The ``Description`` is now included in the metadata when presented through " -"the payload. Line continuation characters have been removed." +msgid "The ``Description`` is now included in the metadata when presented through the payload. Line continuation characters have been removed." msgstr "" -#: ../../library/importlib.metadata.rst:259 msgid "The ``json`` attribute was added." msgstr "" -#: ../../library/importlib.metadata.rst:265 msgid "Distribution versions" msgstr "" -#: ../../library/importlib.metadata.rst:269 -msgid "" -"Return the installed distribution package `version `__ for " -"the named distribution package." +msgid "Return the installed distribution package `version `__ for the named distribution package." msgstr "" -#: ../../library/importlib.metadata.rst:276 -msgid "" -"The :func:`!version` function is the quickest way to get a `Distribution " -"Package `_'s version number, as a string::" +msgid "The :func:`!version` function is the quickest way to get a `Distribution Package `_'s version number, as a string::" msgstr "" -#: ../../library/importlib.metadata.rst:280 msgid "" ">>> version('wheel')\n" "'0.32.3'" msgstr "" -#: ../../library/importlib.metadata.rst:287 msgid "Distribution files" msgstr "" -#: ../../library/importlib.metadata.rst:291 -msgid "" -"Return the full set of files contained within the named distribution package." +msgid "Return the full set of files contained within the named distribution package." msgstr "" -#: ../../library/importlib.metadata.rst:297 -msgid "" -"Returns :const:`None` if the distribution is found but the installation " -"database records reporting the files associated with the distribution " -"package are missing." +msgid "Returns :const:`None` if the distribution is found but the installation database records reporting the files associated with the distribution package are missing." msgstr "" -#: ../../library/importlib.metadata.rst:303 -msgid "" -"A :class:`pathlib.PurePath` derived object with additional ``dist``, " -"``size``, and ``hash`` properties corresponding to the distribution " -"package's installation metadata for that file." +msgid "A :class:`pathlib.PurePath` derived object with additional ``dist``, ``size``, and ``hash`` properties corresponding to the distribution package's installation metadata for that file." msgstr "" -#: ../../library/importlib.metadata.rst:307 -msgid "" -"The :func:`!files` function takes a `Distribution Package `_ name " -"and returns all of the files installed by this distribution. Each file is " -"reported as a :class:`PackagePath` instance. For example::" +msgid "The :func:`!files` function takes a `Distribution Package `_ name and returns all of the files installed by this distribution. Each file is reported as a :class:`PackagePath` instance. For example::" msgstr "" -#: ../../library/importlib.metadata.rst:312 msgid "" ">>> util = [p for p in files('wheel') if 'util.py' in str(p)][0]\n" ">>> util\n" @@ -475,11 +273,9 @@ msgid "" "" msgstr "" -#: ../../library/importlib.metadata.rst:322 msgid "Once you have the file, you can also read its contents::" msgstr "" -#: ../../library/importlib.metadata.rst:324 msgid "" ">>> print(util.read_text())\n" "import base64\n" @@ -491,125 +287,66 @@ msgid "" " return s" msgstr "" -#: ../../library/importlib.metadata.rst:333 -msgid "" -"You can also use the :meth:`!locate` method to get the absolute path to the " -"file::" +msgid "You can also use the :meth:`!locate` method to get the absolute path to the file::" msgstr "" -#: ../../library/importlib.metadata.rst:336 msgid "" ">>> util.locate()\n" "PosixPath('/home/gustav/example/lib/site-packages/wheel/util.py')" msgstr "" -#: ../../library/importlib.metadata.rst:339 -msgid "" -"In the case where the metadata file listing files (``RECORD`` or " -"``SOURCES.txt``) is missing, :func:`!files` will return :const:`None`. The " -"caller may wish to wrap calls to :func:`!files` in `always_iterable `_ or otherwise guard against this " -"condition if the target distribution is not known to have the metadata " -"present." +msgid "In the case where the metadata file listing files (``RECORD`` or ``SOURCES.txt``) is missing, :func:`!files` will return :const:`None`. The caller may wish to wrap calls to :func:`!files` in `always_iterable `_ or otherwise guard against this condition if the target distribution is not known to have the metadata present." msgstr "" -#: ../../library/importlib.metadata.rst:350 msgid "Distribution requirements" msgstr "" -#: ../../library/importlib.metadata.rst:354 -msgid "" -"Return the declared dependency specifiers for the named distribution package." +msgid "Return the declared dependency specifiers for the named distribution package." msgstr "" -#: ../../library/importlib.metadata.rst:360 -msgid "" -"To get the full set of requirements for a `Distribution Package `_, use " -"the :func:`!requires` function::" +msgid "To get the full set of requirements for a `Distribution Package `_, use the :func:`!requires` function::" msgstr "" -#: ../../library/importlib.metadata.rst:364 msgid "" ">>> requires('wheel')\n" "[\"pytest (>=3.0.0) ; extra == 'test'\", \"pytest-cov ; extra == 'test'\"]" msgstr "" -#: ../../library/importlib.metadata.rst:372 msgid "Mapping import to distribution packages" msgstr "" -#: ../../library/importlib.metadata.rst:376 -msgid "" -"Return a mapping from the top level module and import package names found " -"via :data:`sys.meta_path` to the names of the distribution packages (if any) " -"that provide the corresponding files." +msgid "Return a mapping from the top level module and import package names found via :data:`sys.meta_path` to the names of the distribution packages (if any) that provide the corresponding files." msgstr "" -#: ../../library/importlib.metadata.rst:380 -msgid "" -"To allow for namespace packages (which may have members provided by multiple " -"distribution packages), each top level import name maps to a list of " -"distribution names rather than mapping directly to a single name." +msgid "To allow for namespace packages (which may have members provided by multiple distribution packages), each top level import name maps to a list of distribution names rather than mapping directly to a single name." msgstr "" -#: ../../library/importlib.metadata.rst:384 -msgid "" -"A convenience method to resolve the `Distribution Package `_ name " -"(or names, in the case of a namespace package) that provide each importable " -"top-level Python module or `Import Package `_::" +msgid "A convenience method to resolve the `Distribution Package `_ name (or names, in the case of a namespace package) that provide each importable top-level Python module or `Import Package `_::" msgstr "" -#: ../../library/importlib.metadata.rst:389 msgid "" ">>> packages_distributions()\n" -"{'importlib_metadata': ['importlib-metadata'], 'yaml': ['PyYAML'], 'jaraco': " -"['jaraco.classes', 'jaraco.functools'], ...}" +"{'importlib_metadata': ['importlib-metadata'], 'yaml': ['PyYAML'], 'jaraco': ['jaraco.classes', 'jaraco.functools'], ...}" msgstr "" -#: ../../library/importlib.metadata.rst:392 -msgid "" -"Some editable installs, `do not supply top-level names `_, and thus this function is not " -"reliable with such installs." +msgid "Some editable installs, `do not supply top-level names `_, and thus this function is not reliable with such installs." msgstr "" -#: ../../library/importlib.metadata.rst:401 msgid "Distributions" msgstr "" -#: ../../library/importlib.metadata.rst:405 -msgid "" -"Return a :class:`Distribution` instance describing the named distribution " -"package." +msgid "Return a :class:`Distribution` instance describing the named distribution package." msgstr "" -#: ../../library/importlib.metadata.rst:413 msgid "Details of an installed distribution package." msgstr "" -#: ../../library/importlib.metadata.rst:415 -msgid "" -"Note: different :class:`!Distribution` instances do not currently compare " -"equal, even if they relate to the same installed distribution and " -"accordingly have the same attributes." +msgid "Note: different :class:`!Distribution` instances do not currently compare equal, even if they relate to the same installed distribution and accordingly have the same attributes." msgstr "" -#: ../../library/importlib.metadata.rst:419 -msgid "" -"While the module level API described above is the most common and convenient " -"usage, you can get all of that information from the :class:`!Distribution` " -"class. :class:`!Distribution` is an abstract object that represents the " -"metadata for a Python `Distribution Package `_. You can get the " -"concrete :class:`!Distribution` subclass instance for an installed " -"distribution package by calling the :func:`distribution` function::" +msgid "While the module level API described above is the most common and convenient usage, you can get all of that information from the :class:`!Distribution` class. :class:`!Distribution` is an abstract object that represents the metadata for a Python `Distribution Package `_. You can get the concrete :class:`!Distribution` subclass instance for an installed distribution package by calling the :func:`distribution` function::" msgstr "" -#: ../../library/importlib.metadata.rst:426 msgid "" ">>> from importlib.metadata import distribution\n" ">>> dist = distribution('wheel')\n" @@ -617,25 +354,17 @@ msgid "" "" msgstr "" -#: ../../library/importlib.metadata.rst:431 -msgid "" -"Thus, an alternative way to get the version number is through the :class:`!" -"Distribution` instance::" +msgid "Thus, an alternative way to get the version number is through the :class:`!Distribution` instance::" msgstr "" -#: ../../library/importlib.metadata.rst:434 msgid "" ">>> dist.version\n" "'0.32.3'" msgstr "" -#: ../../library/importlib.metadata.rst:437 -msgid "" -"There are all kinds of additional metadata available on :class:`!" -"Distribution` instances::" +msgid "There are all kinds of additional metadata available on :class:`!Distribution` instances::" msgstr "" -#: ../../library/importlib.metadata.rst:440 msgid "" ">>> dist.metadata['Requires-Python']\n" "'>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*'\n" @@ -643,121 +372,64 @@ msgid "" "'MIT'" msgstr "" -#: ../../library/importlib.metadata.rst:445 -msgid "" -"For editable packages, an ``origin`` property may present :pep:`610` " -"metadata::" +msgid "For editable packages, an ``origin`` property may present :pep:`610` metadata::" msgstr "" -#: ../../library/importlib.metadata.rst:448 msgid "" ">>> dist.origin.url\n" "'file:///path/to/wheel-0.32.3.editable-py3-none-any.whl'" msgstr "" -#: ../../library/importlib.metadata.rst:454 msgid "The ``.origin`` property was added." msgstr "" -#: ../../library/importlib.metadata.rst:458 msgid "Distribution Discovery" msgstr "" -#: ../../library/importlib.metadata.rst:460 -msgid "" -"By default, this package provides built-in support for discovery of metadata " -"for file system and zip file `Distribution Package `_\\s. " -"This metadata finder search defaults to ``sys.path``, but varies slightly in " -"how it interprets those values from how other import machinery does. In " -"particular:" +msgid "By default, this package provides built-in support for discovery of metadata for file system and zip file `Distribution Package `_\\s. This metadata finder search defaults to ``sys.path``, but varies slightly in how it interprets those values from how other import machinery does. In particular:" msgstr "" -#: ../../library/importlib.metadata.rst:464 -msgid "" -"``importlib.metadata`` does not honor :class:`bytes` objects on ``sys.path``." +msgid "``importlib.metadata`` does not honor :class:`bytes` objects on ``sys.path``." msgstr "" -#: ../../library/importlib.metadata.rst:465 -msgid "" -"``importlib.metadata`` will incidentally honor :py:class:`pathlib.Path` " -"objects on ``sys.path`` even though such values will be ignored for imports." +msgid "``importlib.metadata`` will incidentally honor :py:class:`pathlib.Path` objects on ``sys.path`` even though such values will be ignored for imports." msgstr "" -#: ../../library/importlib.metadata.rst:469 msgid "Implementing Custom Providers" msgstr "" -#: ../../library/importlib.metadata.rst:471 -msgid "" -"``importlib.metadata`` address two API surfaces, one for *consumers* and " -"another for *providers*. Most users are consumers, consuming metadata " -"provided by the packages. There are other use-cases, however, where users " -"wish to expose metadata through some other mechanism, such as alongside a " -"custom importer. Such a use case calls for a *custom provider*." +msgid "``importlib.metadata`` address two API surfaces, one for *consumers* and another for *providers*. Most users are consumers, consuming metadata provided by the packages. There are other use-cases, however, where users wish to expose metadata through some other mechanism, such as alongside a custom importer. Such a use case calls for a *custom provider*." msgstr "" -#: ../../library/importlib.metadata.rst:478 -msgid "" -"Because `Distribution Package `_ metadata is not available " -"through :data:`sys.path` searches, or package loaders directly, the metadata " -"for a distribution is found through import system :ref:`finders `. To find a distribution package's metadata, ``importlib.metadata`` " -"queries the list of :term:`meta path finders ` " -"on :data:`sys.meta_path`." +msgid "Because `Distribution Package `_ metadata is not available through :data:`sys.path` searches, or package loaders directly, the metadata for a distribution is found through import system :ref:`finders `. To find a distribution package's metadata, ``importlib.metadata`` queries the list of :term:`meta path finders ` on :data:`sys.meta_path`." msgstr "" -#: ../../library/importlib.metadata.rst:486 -msgid "" -"The implementation has hooks integrated into the ``PathFinder``, serving " -"metadata for distribution packages found on the file system." +msgid "The implementation has hooks integrated into the ``PathFinder``, serving metadata for distribution packages found on the file system." msgstr "" -#: ../../library/importlib.metadata.rst:489 -msgid "" -"The abstract class :py:class:`importlib.abc.MetaPathFinder` defines the " -"interface expected of finders by Python's import system. " -"``importlib.metadata`` extends this protocol by looking for an optional " -"``find_distributions`` callable on the finders from :data:`sys.meta_path` " -"and presents this extended interface as the ``DistributionFinder`` abstract " -"base class, which defines this abstract method::" +msgid "The abstract class :py:class:`importlib.abc.MetaPathFinder` defines the interface expected of finders by Python's import system. ``importlib.metadata`` extends this protocol by looking for an optional ``find_distributions`` callable on the finders from :data:`sys.meta_path` and presents this extended interface as the ``DistributionFinder`` abstract base class, which defines this abstract method::" msgstr "" -#: ../../library/importlib.metadata.rst:497 msgid "" "@abc.abstractmethod\n" -"def find_distributions(context=DistributionFinder.Context()) -> " -"Iterable[Distribution]:\n" +"def find_distributions(context=DistributionFinder.Context()) -> Iterable[Distribution]:\n" " \"\"\"Return an iterable of all Distribution instances capable of\n" " loading the metadata for packages for the indicated ``context``.\n" " \"\"\"" msgstr "" -#: ../../library/importlib.metadata.rst:503 -msgid "" -"The ``DistributionFinder.Context`` object provides ``.path`` and ``.name`` " -"properties indicating the path to search and name to match and may supply " -"other relevant context sought by the consumer." +msgid "The ``DistributionFinder.Context`` object provides ``.path`` and ``.name`` properties indicating the path to search and name to match and may supply other relevant context sought by the consumer." msgstr "" -#: ../../library/importlib.metadata.rst:507 -msgid "" -"In practice, to support finding distribution package metadata in locations " -"other than the file system, subclass ``Distribution`` and implement the " -"abstract methods. Then from a custom finder, return instances of this " -"derived ``Distribution`` in the ``find_distributions()`` method." +msgid "In practice, to support finding distribution package metadata in locations other than the file system, subclass ``Distribution`` and implement the abstract methods. Then from a custom finder, return instances of this derived ``Distribution`` in the ``find_distributions()`` method." msgstr "" -#: ../../library/importlib.metadata.rst:514 msgid "Example" msgstr "" -#: ../../library/importlib.metadata.rst:516 msgid "Imagine a custom finder that loads Python modules from a database::" msgstr "" -#: ../../library/importlib.metadata.rst:518 msgid "" "class DatabaseImporter(importlib.abc.MetaPathFinder):\n" " def __init__(self, db):\n" @@ -769,14 +441,9 @@ msgid "" "sys.meta_path.append(DatabaseImporter(connect_db(...)))" msgstr "" -#: ../../library/importlib.metadata.rst:527 -msgid "" -"That importer now presumably provides importable modules from a database, " -"but it provides no metadata or entry points. For this custom importer to " -"provide metadata, it would also need to implement ``DistributionFinder``::" +msgid "That importer now presumably provides importable modules from a database, but it provides no metadata or entry points. For this custom importer to provide metadata, it would also need to implement ``DistributionFinder``::" msgstr "" -#: ../../library/importlib.metadata.rst:532 msgid "" "from importlib.metadata import DistributionFinder\n" "\n" @@ -789,33 +456,15 @@ msgid "" " yield DatabaseDistribution(dist_record)" msgstr "" -#: ../../library/importlib.metadata.rst:542 -msgid "" -"In this way, ``query_distributions`` would return records for each " -"distribution served by the database matching the query. For example, if " -"``requests-1.0`` is in the database, ``find_distributions`` would yield a " -"``DatabaseDistribution`` for ``Context(name='requests')`` or " -"``Context(name=None)``." +msgid "In this way, ``query_distributions`` would return records for each distribution served by the database matching the query. For example, if ``requests-1.0`` is in the database, ``find_distributions`` would yield a ``DatabaseDistribution`` for ``Context(name='requests')`` or ``Context(name=None)``." +msgstr "" + +msgid "For the sake of simplicity, this example ignores ``context.path``\\. The ``path`` attribute defaults to ``sys.path`` and is the set of import paths to be considered in the search. A ``DatabaseImporter`` could potentially function without any concern for a search path. Assuming the importer does no partitioning, the \"path\" would be irrelevant. In order to illustrate the purpose of ``path``, the example would need to illustrate a more complex ``DatabaseImporter`` whose behavior varied depending on ``sys.path``/``PYTHONPATH``. In that case, the ``find_distributions`` should honor the ``context.path`` and only yield ``Distribution``\\ s pertinent to that path." msgstr "" -#: ../../library/importlib.metadata.rst:548 -msgid "" -"For the sake of simplicity, this example ignores ``context.path``\\. The " -"``path`` attribute defaults to ``sys.path`` and is the set of import paths " -"to be considered in the search. A ``DatabaseImporter`` could potentially " -"function without any concern for a search path. Assuming the importer does " -"no partitioning, the \"path\" would be irrelevant. In order to illustrate " -"the purpose of ``path``, the example would need to illustrate a more complex " -"``DatabaseImporter`` whose behavior varied depending on ``sys.path``/" -"``PYTHONPATH``. In that case, the ``find_distributions`` should honor the " -"``context.path`` and only yield ``Distribution``\\ s pertinent to that path." -msgstr "" - -#: ../../library/importlib.metadata.rst:559 msgid "``DatabaseDistribution``, then, would look something like::" msgstr "" -#: ../../library/importlib.metadata.rst:561 msgid "" "class DatabaseDistribution(importlib.metadata.Distribution):\n" " def __init__(self, record):\n" @@ -838,17 +487,8 @@ msgid "" " raise RuntimeError(\"This distribution has no file system\")" msgstr "" -#: ../../library/importlib.metadata.rst:581 -msgid "" -"This basic implementation should provide metadata and entry points for " -"packages served by the ``DatabaseImporter``, assuming that the ``record`` " -"supplies suitable ``.name``, ``.version``, and ``.entry_points`` attributes." +msgid "This basic implementation should provide metadata and entry points for packages served by the ``DatabaseImporter``, assuming that the ``record`` supplies suitable ``.name``, ``.version``, and ``.entry_points`` attributes." msgstr "" -#: ../../library/importlib.metadata.rst:586 -msgid "" -"The ``DatabaseDistribution`` may also provide other metadata files, like " -"``RECORD`` (required for ``Distribution.files``) or override the " -"implementation of ``Distribution.files``. See the source for more " -"inspiration." +msgid "The ``DatabaseDistribution`` may also provide other metadata files, like ``RECORD`` (required for ``Distribution.files``) or override the implementation of ``Distribution.files``. See the source for more inspiration." msgstr "" diff --git a/library/importlib.po b/library/importlib.po index 79a0a565..2d992757 100644 --- a/library/importlib.po +++ b/library/importlib.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:08+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,310 +24,180 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/importlib.rst:2 msgid ":mod:`!importlib` --- The implementation of :keyword:`!import`" msgstr "" -#: ../../library/importlib.rst:12 msgid "**Source code:** :source:`Lib/importlib/__init__.py`" msgstr "" -#: ../../library/importlib.rst:18 msgid "Introduction" msgstr "" -#: ../../library/importlib.rst:20 msgid "The purpose of the :mod:`!importlib` package is three-fold." msgstr "" -#: ../../library/importlib.rst:22 -msgid "" -"One is to provide the implementation of the :keyword:`import` statement (and " -"thus, by extension, the :func:`__import__` function) in Python source code. " -"This provides an implementation of :keyword:`!import` which is portable to " -"any Python interpreter. This also provides an implementation which is easier " -"to comprehend than one implemented in a programming language other than " -"Python." +msgid "One is to provide the implementation of the :keyword:`import` statement (and thus, by extension, the :func:`__import__` function) in Python source code. This provides an implementation of :keyword:`!import` which is portable to any Python interpreter. This also provides an implementation which is easier to comprehend than one implemented in a programming language other than Python." msgstr "" -#: ../../library/importlib.rst:29 -msgid "" -"Two, the components to implement :keyword:`import` are exposed in this " -"package, making it easier for users to create their own custom objects " -"(known generically as an :term:`importer`) to participate in the import " -"process." +msgid "Two, the components to implement :keyword:`import` are exposed in this package, making it easier for users to create their own custom objects (known generically as an :term:`importer`) to participate in the import process." msgstr "" -#: ../../library/importlib.rst:33 -msgid "" -"Three, the package contains modules exposing additional functionality for " -"managing aspects of Python packages:" +msgid "Three, the package contains modules exposing additional functionality for managing aspects of Python packages:" msgstr "" -#: ../../library/importlib.rst:36 -msgid "" -":mod:`importlib.metadata` presents access to metadata from third-party " -"distributions." +msgid ":mod:`importlib.metadata` presents access to metadata from third-party distributions." msgstr "" -#: ../../library/importlib.rst:38 -msgid "" -":mod:`importlib.resources` provides routines for accessing non-code " -"\"resources\" from Python packages." +msgid ":mod:`importlib.resources` provides routines for accessing non-code \"resources\" from Python packages." msgstr "" -#: ../../library/importlib.rst:43 msgid ":ref:`import`" msgstr "" -#: ../../library/importlib.rst:44 msgid "The language reference for the :keyword:`import` statement." msgstr "" -#: ../../library/importlib.rst:46 -msgid "" -"`Packages specification `__" +msgid "`Packages specification `__" msgstr "" -#: ../../library/importlib.rst:47 -msgid "" -"Original specification of packages. Some semantics have changed since the " -"writing of this document (e.g. redirecting based on ``None`` " -"in :data:`sys.modules`)." +msgid "Original specification of packages. Some semantics have changed since the writing of this document (e.g. redirecting based on ``None`` in :data:`sys.modules`)." msgstr "" -#: ../../library/importlib.rst:51 msgid "The :func:`.__import__` function" msgstr "" -#: ../../library/importlib.rst:52 msgid "The :keyword:`import` statement is syntactic sugar for this function." msgstr "" -#: ../../library/importlib.rst:54 msgid ":ref:`sys-path-init`" msgstr "" -#: ../../library/importlib.rst:55 msgid "The initialization of :data:`sys.path`." msgstr "" -#: ../../library/importlib.rst:57 msgid ":pep:`235`" msgstr "" -#: ../../library/importlib.rst:58 msgid "Import on Case-Insensitive Platforms" msgstr "" -#: ../../library/importlib.rst:60 msgid ":pep:`263`" msgstr "" -#: ../../library/importlib.rst:61 msgid "Defining Python Source Code Encodings" msgstr "" -#: ../../library/importlib.rst:63 msgid ":pep:`302`" msgstr "" -#: ../../library/importlib.rst:64 msgid "New Import Hooks" msgstr "" -#: ../../library/importlib.rst:66 msgid ":pep:`328`" msgstr "" -#: ../../library/importlib.rst:67 msgid "Imports: Multi-Line and Absolute/Relative" msgstr "" -#: ../../library/importlib.rst:69 msgid ":pep:`366`" msgstr "" -#: ../../library/importlib.rst:70 msgid "Main module explicit relative imports" msgstr "" -#: ../../library/importlib.rst:72 msgid ":pep:`420`" msgstr "" -#: ../../library/importlib.rst:73 msgid "Implicit namespace packages" msgstr "" -#: ../../library/importlib.rst:75 msgid ":pep:`451`" msgstr "" -#: ../../library/importlib.rst:76 msgid "A ModuleSpec Type for the Import System" msgstr "" -#: ../../library/importlib.rst:78 msgid ":pep:`488`" msgstr "" -#: ../../library/importlib.rst:79 msgid "Elimination of PYO files" msgstr "" -#: ../../library/importlib.rst:81 msgid ":pep:`489`" msgstr "" -#: ../../library/importlib.rst:82 msgid "Multi-phase extension module initialization" msgstr "" -#: ../../library/importlib.rst:84 msgid ":pep:`552`" msgstr "" -#: ../../library/importlib.rst:85 msgid "Deterministic pycs" msgstr "" -#: ../../library/importlib.rst:87 msgid ":pep:`3120`" msgstr "" -#: ../../library/importlib.rst:88 msgid "Using UTF-8 as the Default Source Encoding" msgstr "" -#: ../../library/importlib.rst:90 msgid ":pep:`3147`" msgstr "" -#: ../../library/importlib.rst:91 msgid "PYC Repository Directories" msgstr "" -#: ../../library/importlib.rst:95 msgid "Functions" msgstr "" -#: ../../library/importlib.rst:99 msgid "An implementation of the built-in :func:`__import__` function." msgstr "" -#: ../../library/importlib.rst:102 -msgid "" -"Programmatic importing of modules should use :func:`import_module` instead " -"of this function." +msgid "Programmatic importing of modules should use :func:`import_module` instead of this function." msgstr "" -#: ../../library/importlib.rst:107 -msgid "" -"Import a module. The *name* argument specifies what module to import in " -"absolute or relative terms (e.g. either ``pkg.mod`` or ``..mod``). If the " -"name is specified in relative terms, then the *package* argument must be set " -"to the name of the package which is to act as the anchor for resolving the " -"package name (e.g. ``import_module('..mod', 'pkg.subpkg')`` will import " -"``pkg.mod``)." +msgid "Import a module. The *name* argument specifies what module to import in absolute or relative terms (e.g. either ``pkg.mod`` or ``..mod``). If the name is specified in relative terms, then the *package* argument must be set to the name of the package which is to act as the anchor for resolving the package name (e.g. ``import_module('..mod', 'pkg.subpkg')`` will import ``pkg.mod``)." msgstr "" -#: ../../library/importlib.rst:115 -msgid "" -"The :func:`import_module` function acts as a simplifying wrapper " -"around :func:`importlib.__import__`. This means all semantics of the " -"function are derived from :func:`importlib.__import__`. The most important " -"difference between these two functions is that :func:`import_module` returns " -"the specified package or module (e.g. ``pkg.mod``), while :func:`__import__` " -"returns the top-level package or module (e.g. ``pkg``)." +msgid "The :func:`import_module` function acts as a simplifying wrapper around :func:`importlib.__import__`. This means all semantics of the function are derived from :func:`importlib.__import__`. The most important difference between these two functions is that :func:`import_module` returns the specified package or module (e.g. ``pkg.mod``), while :func:`__import__` returns the top-level package or module (e.g. ``pkg``)." msgstr "" -#: ../../library/importlib.rst:122 -msgid "" -"If you are dynamically importing a module that was created since the " -"interpreter began execution (e.g., created a Python source file), you may " -"need to call :func:`invalidate_caches` in order for the new module to be " -"noticed by the import system." +msgid "If you are dynamically importing a module that was created since the interpreter began execution (e.g., created a Python source file), you may need to call :func:`invalidate_caches` in order for the new module to be noticed by the import system." msgstr "" -#: ../../library/importlib.rst:127 msgid "Parent packages are automatically imported." msgstr "" -#: ../../library/importlib.rst:132 -msgid "" -"Invalidate the internal caches of finders stored at :data:`sys.meta_path`. " -"If a finder implements ``invalidate_caches()`` then it will be called to " -"perform the invalidation. This function should be called if any modules are " -"created/installed while your program is running to guarantee all finders " -"will notice the new module's existence." +msgid "Invalidate the internal caches of finders stored at :data:`sys.meta_path`. If a finder implements ``invalidate_caches()`` then it will be called to perform the invalidation. This function should be called if any modules are created/installed while your program is running to guarantee all finders will notice the new module's existence." msgstr "" -#: ../../library/importlib.rst:140 -msgid "" -"Namespace packages created/installed in a different :data:`sys.path` " -"location after the same namespace was already imported are noticed." +msgid "Namespace packages created/installed in a different :data:`sys.path` location after the same namespace was already imported are noticed." msgstr "" -#: ../../library/importlib.rst:146 -msgid "" -"Reload a previously imported *module*. The argument must be a module " -"object, so it must have been successfully imported before. This is useful " -"if you have edited the module source file using an external editor and want " -"to try out the new version without leaving the Python interpreter. The " -"return value is the module object (which can be different if re-importing " -"causes a different object to be placed in :data:`sys.modules`)." +msgid "Reload a previously imported *module*. The argument must be a module object, so it must have been successfully imported before. This is useful if you have edited the module source file using an external editor and want to try out the new version without leaving the Python interpreter. The return value is the module object (which can be different if re-importing causes a different object to be placed in :data:`sys.modules`)." msgstr "" -#: ../../library/importlib.rst:153 msgid "When :func:`reload` is executed:" msgstr "" -#: ../../library/importlib.rst:155 -msgid "" -"Python module's code is recompiled and the module-level code re-executed, " -"defining a new set of objects which are bound to names in the module's " -"dictionary by reusing the :term:`loader` which originally loaded the " -"module. The ``init`` function of extension modules is not called a second " -"time." +msgid "Python module's code is recompiled and the module-level code re-executed, defining a new set of objects which are bound to names in the module's dictionary by reusing the :term:`loader` which originally loaded the module. The ``init`` function of extension modules is not called a second time." msgstr "" -#: ../../library/importlib.rst:161 -msgid "" -"As with all other objects in Python the old objects are only reclaimed after " -"their reference counts drop to zero." +msgid "As with all other objects in Python the old objects are only reclaimed after their reference counts drop to zero." msgstr "" -#: ../../library/importlib.rst:164 -msgid "" -"The names in the module namespace are updated to point to any new or changed " -"objects." +msgid "The names in the module namespace are updated to point to any new or changed objects." msgstr "" -#: ../../library/importlib.rst:167 -msgid "" -"Other references to the old objects (such as names external to the module) " -"are not rebound to refer to the new objects and must be updated in each " -"namespace where they occur if that is desired." +msgid "Other references to the old objects (such as names external to the module) are not rebound to refer to the new objects and must be updated in each namespace where they occur if that is desired." msgstr "" -#: ../../library/importlib.rst:171 msgid "There are a number of other caveats:" msgstr "" -#: ../../library/importlib.rst:173 -msgid "" -"When a module is reloaded, its dictionary (containing the module's global " -"variables) is retained. Redefinitions of names will override the old " -"definitions, so this is generally not a problem. If the new version of a " -"module does not define a name that was defined by the old version, the old " -"definition remains. This feature can be used to the module's advantage if " -"it maintains a global table or cache of objects --- with a :keyword:`try` " -"statement it can test for the table's presence and skip its initialization " -"if desired::" +msgid "When a module is reloaded, its dictionary (containing the module's global variables) is retained. Redefinitions of names will override the old definitions, so this is generally not a problem. If the new version of a module does not define a name that was defined by the old version, the old definition remains. This feature can be used to the module's advantage if it maintains a global table or cache of objects --- with a :keyword:`try` statement it can test for the table's presence and skip its initialization if desired::" msgstr "" -#: ../../library/importlib.rst:182 msgid "" "try:\n" " cache\n" @@ -335,66 +205,33 @@ msgid "" " cache = {}" msgstr "" -#: ../../library/importlib.rst:187 -msgid "" -"It is generally not very useful to reload built-in or dynamically loaded " -"modules. Reloading :mod:`sys`, :mod:`__main__`, :mod:`builtins` and other " -"key modules is not recommended. In many cases extension modules are not " -"designed to be initialized more than once, and may fail in arbitrary ways " -"when reloaded." +msgid "It is generally not very useful to reload built-in or dynamically loaded modules. Reloading :mod:`sys`, :mod:`__main__`, :mod:`builtins` and other key modules is not recommended. In many cases extension modules are not designed to be initialized more than once, and may fail in arbitrary ways when reloaded." msgstr "" -#: ../../library/importlib.rst:193 -msgid "" -"If a module imports objects from another module " -"using :keyword:`from` ... :keyword:`import` ..., calling :func:`reload` for " -"the other module does not redefine the objects imported from it --- one way " -"around this is to re-execute the :keyword:`!from` statement, another is to " -"use :keyword:`!import` and qualified names (*module.name*) instead." +msgid "If a module imports objects from another module using :keyword:`from` ... :keyword:`import` ..., calling :func:`reload` for the other module does not redefine the objects imported from it --- one way around this is to re-execute the :keyword:`!from` statement, another is to use :keyword:`!import` and qualified names (*module.name*) instead." msgstr "" -#: ../../library/importlib.rst:199 -msgid "" -"If a module instantiates instances of a class, reloading the module that " -"defines the class does not affect the method definitions of the instances " -"--- they continue to use the old class definition. The same is true for " -"derived classes." +msgid "If a module instantiates instances of a class, reloading the module that defines the class does not affect the method definitions of the instances --- they continue to use the old class definition. The same is true for derived classes." msgstr "" -#: ../../library/importlib.rst:205 -msgid "" -":exc:`ModuleNotFoundError` is raised when the module being reloaded lacks " -"a :class:`~importlib.machinery.ModuleSpec`." +msgid ":exc:`ModuleNotFoundError` is raised when the module being reloaded lacks a :class:`~importlib.machinery.ModuleSpec`." msgstr "" -#: ../../library/importlib.rst:210 -msgid "" -"This function is not thread-safe. Calling it from multiple threads can " -"result in unexpected behavior. It's recommended to use " -"the :class:`threading.Lock` or other synchronization primitives for thread-" -"safe module reloading." +msgid "This function is not thread-safe. Calling it from multiple threads can result in unexpected behavior. It's recommended to use the :class:`threading.Lock` or other synchronization primitives for thread-safe module reloading." msgstr "" -#: ../../library/importlib.rst:215 msgid ":mod:`!importlib.abc` -- Abstract base classes related to import" msgstr "" -#: ../../library/importlib.rst:220 msgid "**Source code:** :source:`Lib/importlib/abc.py`" msgstr "" -#: ../../library/importlib.rst:225 -msgid "" -"The :mod:`!importlib.abc` module contains all of the core abstract base " -"classes used by :keyword:`import`. Some subclasses of the core abstract base " -"classes are also provided to help in implementing the core ABCs." +msgid "The :mod:`!importlib.abc` module contains all of the core abstract base classes used by :keyword:`import`. Some subclasses of the core abstract base classes are also provided to help in implementing the core ABCs." msgstr "" -#: ../../library/importlib.rst:229 msgid "ABC hierarchy::" msgstr "" -#: ../../library/importlib.rst:231 msgid "" "object\n" " +-- MetaPathFinder\n" @@ -407,805 +244,420 @@ msgid "" " +-- SourceLoader" msgstr "" -#: ../../library/importlib.rst:244 msgid "An abstract base class representing a :term:`meta path finder`." msgstr "" -#: ../../library/importlib.rst:248 ../../library/importlib.rst:284 msgid "No longer a subclass of :class:`!Finder`." msgstr "" -#: ../../library/importlib.rst:253 -msgid "" -"An abstract method for finding a :term:`spec ` for the " -"specified module. If this is a top-level import, *path* will be ``None``. " -"Otherwise, this is a search for a subpackage or module and *path* will be " -"the value of :attr:`~module.__path__` from the parent package. If a spec " -"cannot be found, ``None`` is returned. When passed in, ``target`` is a " -"module object that the finder may use to make a more educated guess about " -"what spec to return. :func:`importlib.util.spec_from_loader` may be useful " -"for implementing concrete ``MetaPathFinders``." +msgid "An abstract method for finding a :term:`spec ` for the specified module. If this is a top-level import, *path* will be ``None``. Otherwise, this is a search for a subpackage or module and *path* will be the value of :attr:`~module.__path__` from the parent package. If a spec cannot be found, ``None`` is returned. When passed in, ``target`` is a module object that the finder may use to make a more educated guess about what spec to return. :func:`importlib.util.spec_from_loader` may be useful for implementing concrete ``MetaPathFinders``." msgstr "" -#: ../../library/importlib.rst:267 -msgid "" -"An optional method which, when called, should invalidate any internal cache " -"used by the finder. Used by :func:`importlib.invalidate_caches` when " -"invalidating the caches of all finders on :data:`sys.meta_path`." +msgid "An optional method which, when called, should invalidate any internal cache used by the finder. Used by :func:`importlib.invalidate_caches` when invalidating the caches of all finders on :data:`sys.meta_path`." msgstr "" -#: ../../library/importlib.rst:271 msgid "Returns ``None`` when called instead of :data:`NotImplemented`." msgstr "" -#: ../../library/importlib.rst:277 -msgid "" -"An abstract base class representing a :term:`path entry finder`. Though it " -"bears some similarities to :class:`MetaPathFinder`, ``PathEntryFinder`` is " -"meant for use only within the path-based import subsystem provided " -"by :class:`importlib.machinery.PathFinder`." +msgid "An abstract base class representing a :term:`path entry finder`. Though it bears some similarities to :class:`MetaPathFinder`, ``PathEntryFinder`` is meant for use only within the path-based import subsystem provided by :class:`importlib.machinery.PathFinder`." msgstr "" -#: ../../library/importlib.rst:289 -msgid "" -"An abstract method for finding a :term:`spec ` for the " -"specified module. The finder will search for the module only within " -"the :term:`path entry` to which it is assigned. If a spec cannot be found, " -"``None`` is returned. When passed in, ``target`` is a module object that " -"the finder may use to make a more educated guess about what spec to " -"return. :func:`importlib.util.spec_from_loader` may be useful for " -"implementing concrete ``PathEntryFinders``." +msgid "An abstract method for finding a :term:`spec ` for the specified module. The finder will search for the module only within the :term:`path entry` to which it is assigned. If a spec cannot be found, ``None`` is returned. When passed in, ``target`` is a module object that the finder may use to make a more educated guess about what spec to return. :func:`importlib.util.spec_from_loader` may be useful for implementing concrete ``PathEntryFinders``." msgstr "" -#: ../../library/importlib.rst:301 -msgid "" -"An optional method which, when called, should invalidate any internal cache " -"used by the finder. Used " -"by :meth:`importlib.machinery.PathFinder.invalidate_caches` when " -"invalidating the caches of all cached finders." +msgid "An optional method which, when called, should invalidate any internal cache used by the finder. Used by :meth:`importlib.machinery.PathFinder.invalidate_caches` when invalidating the caches of all cached finders." msgstr "" -#: ../../library/importlib.rst:309 -msgid "" -"An abstract base class for a :term:`loader`. See :pep:`302` for the exact " -"definition for a loader." +msgid "An abstract base class for a :term:`loader`. See :pep:`302` for the exact definition for a loader." msgstr "" -#: ../../library/importlib.rst:312 -msgid "" -"Loaders that wish to support resource reading should implement " -"a :meth:`get_resource_reader` method as specified " -"by :class:`importlib.resources.abc.ResourceReader`." +msgid "Loaders that wish to support resource reading should implement a :meth:`get_resource_reader` method as specified by :class:`importlib.resources.abc.ResourceReader`." msgstr "" -#: ../../library/importlib.rst:316 msgid "Introduced the optional :meth:`get_resource_reader` method." msgstr "" -#: ../../library/importlib.rst:321 -msgid "" -"A method that returns the module object to use when importing a module. " -"This method may return ``None``, indicating that default module creation " -"semantics should take place." +msgid "A method that returns the module object to use when importing a module. This method may return ``None``, indicating that default module creation semantics should take place." msgstr "" -#: ../../library/importlib.rst:327 msgid "This method is no longer optional when :meth:`exec_module` is defined." msgstr "" -#: ../../library/importlib.rst:333 -msgid "" -"An abstract method that executes the module in its own namespace when a " -"module is imported or reloaded. The module should already be initialized " -"when :meth:`exec_module` is called. When this method " -"exists, :meth:`create_module` must be defined." +msgid "An abstract method that executes the module in its own namespace when a module is imported or reloaded. The module should already be initialized when :meth:`exec_module` is called. When this method exists, :meth:`create_module` must be defined." msgstr "" -#: ../../library/importlib.rst:340 msgid ":meth:`create_module` must also be defined." msgstr "" -#: ../../library/importlib.rst:345 -msgid "" -"A legacy method for loading a module. If the module cannot be " -"loaded, :exc:`ImportError` is raised, otherwise the loaded module is " -"returned." +msgid "A legacy method for loading a module. If the module cannot be loaded, :exc:`ImportError` is raised, otherwise the loaded module is returned." msgstr "" -#: ../../library/importlib.rst:349 -msgid "" -"If the requested module already exists in :data:`sys.modules`, that module " -"should be used and reloaded. Otherwise the loader should create a new module " -"and insert it into :data:`sys.modules` before any loading begins, to prevent " -"recursion from the import. If the loader inserted a module and the load " -"fails, it must be removed by the loader from :data:`sys.modules`; modules " -"already in :data:`sys.modules` before the loader began execution should be " -"left alone." +msgid "If the requested module already exists in :data:`sys.modules`, that module should be used and reloaded. Otherwise the loader should create a new module and insert it into :data:`sys.modules` before any loading begins, to prevent recursion from the import. If the loader inserted a module and the load fails, it must be removed by the loader from :data:`sys.modules`; modules already in :data:`sys.modules` before the loader began execution should be left alone." msgstr "" -#: ../../library/importlib.rst:358 -msgid "" -"The loader should set several attributes on the module (note that some of " -"these attributes can change when a module is reloaded):" +msgid "The loader should set several attributes on the module (note that some of these attributes can change when a module is reloaded):" msgstr "" -#: ../../library/importlib.rst:362 msgid ":attr:`module.__name__`" msgstr "" -#: ../../library/importlib.rst:363 msgid ":attr:`module.__file__`" msgstr "" -#: ../../library/importlib.rst:364 msgid ":attr:`module.__cached__` *(deprecated)*" msgstr "" -#: ../../library/importlib.rst:365 msgid ":attr:`module.__path__`" msgstr "" -#: ../../library/importlib.rst:366 msgid ":attr:`module.__package__` *(deprecated)*" msgstr "" -#: ../../library/importlib.rst:367 msgid ":attr:`module.__loader__` *(deprecated)*" msgstr "" -#: ../../library/importlib.rst:369 -msgid "" -"When :meth:`exec_module` is available then backwards-compatible " -"functionality is provided." +msgid "When :meth:`exec_module` is available then backwards-compatible functionality is provided." msgstr "" -#: ../../library/importlib.rst:372 -msgid "" -"Raise :exc:`ImportError` when called instead of :exc:`NotImplementedError`. " -"Functionality provided when :meth:`exec_module` is available." +msgid "Raise :exc:`ImportError` when called instead of :exc:`NotImplementedError`. Functionality provided when :meth:`exec_module` is available." msgstr "" -#: ../../library/importlib.rst:377 -msgid "" -"The recommended API for loading a module is :meth:`exec_module` " -"(and :meth:`create_module`). Loaders should implement it instead " -"of :meth:`load_module`. The import machinery takes care of all the other " -"responsibilities of :meth:`load_module` when :meth:`exec_module` is " -"implemented." +msgid "The recommended API for loading a module is :meth:`exec_module` (and :meth:`create_module`). Loaders should implement it instead of :meth:`load_module`. The import machinery takes care of all the other responsibilities of :meth:`load_module` when :meth:`exec_module` is implemented." msgstr "" -#: ../../library/importlib.rst:387 msgid "*Superseded by TraversableResources*" msgstr "" -#: ../../library/importlib.rst:389 -msgid "" -"An abstract base class for a :term:`loader` which implements the " -"optional :pep:`302` protocol for loading arbitrary resources from the " -"storage back-end." +msgid "An abstract base class for a :term:`loader` which implements the optional :pep:`302` protocol for loading arbitrary resources from the storage back-end." msgstr "" -#: ../../library/importlib.rst:393 -msgid "" -"This ABC is deprecated in favour of supporting resource loading " -"through :class:`importlib.resources.abc.TraversableResources`. This class " -"exists for backwards compatibility only with other ABCs in this module." +msgid "This ABC is deprecated in favour of supporting resource loading through :class:`importlib.resources.abc.TraversableResources`. This class exists for backwards compatibility only with other ABCs in this module." msgstr "" -#: ../../library/importlib.rst:402 -msgid "" -"An abstract method to return the bytes for the data located at *path*. " -"Loaders that have a file-like storage back-end that allows storing arbitrary " -"data can implement this abstract method to give direct access to the data " -"stored. :exc:`OSError` is to be raised if the *path* cannot be found. The " -"*path* is expected to be constructed using a " -"module's :attr:`~module.__file__` attribute or an item from a " -"package's :attr:`~module.__path__`." +msgid "An abstract method to return the bytes for the data located at *path*. Loaders that have a file-like storage back-end that allows storing arbitrary data can implement this abstract method to give direct access to the data stored. :exc:`OSError` is to be raised if the *path* cannot be found. The *path* is expected to be constructed using a module's :attr:`~module.__file__` attribute or an item from a package's :attr:`~module.__path__`." msgstr "" -#: ../../library/importlib.rst:411 msgid "Raises :exc:`OSError` instead of :exc:`NotImplementedError`." msgstr "" -#: ../../library/importlib.rst:417 -msgid "" -"An abstract base class for a :term:`loader` which implements the " -"optional :pep:`302` protocol for loaders that inspect modules." +msgid "An abstract base class for a :term:`loader` which implements the optional :pep:`302` protocol for loaders that inspect modules." msgstr "" -#: ../../library/importlib.rst:422 -msgid "" -"Return the code object for a module, or ``None`` if the module does not have " -"a code object (as would be the case, for example, for a built-in module). " -"Raise an :exc:`ImportError` if loader cannot find the requested module." +msgid "Return the code object for a module, or ``None`` if the module does not have a code object (as would be the case, for example, for a built-in module). Raise an :exc:`ImportError` if loader cannot find the requested module." msgstr "" -#: ../../library/importlib.rst:428 -msgid "" -"While the method has a default implementation, it is suggested that it be " -"overridden if possible for performance." +msgid "While the method has a default implementation, it is suggested that it be overridden if possible for performance." msgstr "" -#: ../../library/importlib.rst:434 msgid "No longer abstract and a concrete implementation is provided." msgstr "" -#: ../../library/importlib.rst:440 -msgid "" -"An abstract method to return the source of a module. It is returned as a " -"text string using :term:`universal newlines`, translating all recognized " -"line separators into ``'\\n'`` characters. Returns ``None`` if no source is " -"available (e.g. a built-in module). Raises :exc:`ImportError` if the loader " -"cannot find the module specified." +msgid "An abstract method to return the source of a module. It is returned as a text string using :term:`universal newlines`, translating all recognized line separators into ``'\\n'`` characters. Returns ``None`` if no source is available (e.g. a built-in module). Raises :exc:`ImportError` if the loader cannot find the module specified." msgstr "" -#: ../../library/importlib.rst:446 ../../library/importlib.rst:455 -#: ../../library/importlib.rst:506 msgid "Raises :exc:`ImportError` instead of :exc:`NotImplementedError`." msgstr "" -#: ../../library/importlib.rst:451 -msgid "" -"An optional method to return a true value if the module is a package, a " -"false value otherwise. :exc:`ImportError` is raised if the :term:`loader` " -"cannot find the module." +msgid "An optional method to return a true value if the module is a package, a false value otherwise. :exc:`ImportError` is raised if the :term:`loader` cannot find the module." msgstr "" -#: ../../library/importlib.rst:460 msgid "Create a code object from Python source." msgstr "" -#: ../../library/importlib.rst:462 -msgid "" -"The *data* argument can be whatever the :func:`compile` function supports " -"(i.e. string or bytes). The *path* argument should be the \"path\" to where " -"the source code originated from, which can be an abstract concept (e.g. " -"location in a zip file)." +msgid "The *data* argument can be whatever the :func:`compile` function supports (i.e. string or bytes). The *path* argument should be the \"path\" to where the source code originated from, which can be an abstract concept (e.g. location in a zip file)." msgstr "" -#: ../../library/importlib.rst:467 -msgid "" -"With the subsequent code object one can execute it in a module by running " -"``exec(code, module.__dict__)``." +msgid "With the subsequent code object one can execute it in a module by running ``exec(code, module.__dict__)``." msgstr "" -#: ../../library/importlib.rst:472 msgid "Made the method static." msgstr "" -#: ../../library/importlib.rst:477 msgid "Implementation of :meth:`Loader.exec_module`." msgstr "" -#: ../../library/importlib.rst:483 msgid "Implementation of :meth:`Loader.load_module`." msgstr "" -#: ../../library/importlib.rst:485 msgid "use :meth:`exec_module` instead." msgstr "" -#: ../../library/importlib.rst:491 -msgid "" -"An abstract base class which inherits from :class:`InspectLoader` that, when " -"implemented, helps a module to be executed as a script. The ABC represents " -"an optional :pep:`302` protocol." +msgid "An abstract base class which inherits from :class:`InspectLoader` that, when implemented, helps a module to be executed as a script. The ABC represents an optional :pep:`302` protocol." msgstr "" -#: ../../library/importlib.rst:498 -msgid "" -"An abstract method that is to return the value of :attr:`~module.__file__` " -"for the specified module. If no path is available, :exc:`ImportError` is " -"raised." +msgid "An abstract method that is to return the value of :attr:`~module.__file__` for the specified module. If no path is available, :exc:`ImportError` is raised." msgstr "" -#: ../../library/importlib.rst:502 -msgid "" -"If source code is available, then the method should return the path to the " -"source file, regardless of whether a bytecode was used to load the module." +msgid "If source code is available, then the method should return the path to the source file, regardless of whether a bytecode was used to load the module." msgstr "" -#: ../../library/importlib.rst:512 -msgid "" -"An abstract base class which inherits from :class:`ResourceLoader` " -"and :class:`ExecutionLoader`, providing concrete implementations " -"of :meth:`ResourceLoader.get_data` and :meth:`ExecutionLoader.get_filename`." +msgid "An abstract base class which inherits from :class:`ResourceLoader` and :class:`ExecutionLoader`, providing concrete implementations of :meth:`ResourceLoader.get_data` and :meth:`ExecutionLoader.get_filename`." msgstr "" -#: ../../library/importlib.rst:516 -msgid "" -"The *fullname* argument is a fully resolved name of the module the loader is " -"to handle. The *path* argument is the path to the file for the module." +msgid "The *fullname* argument is a fully resolved name of the module the loader is to handle. The *path* argument is the path to the file for the module." msgstr "" -#: ../../library/importlib.rst:523 msgid "The name of the module the loader can handle." msgstr "" -#: ../../library/importlib.rst:527 msgid "Path to the file of the module." msgstr "" -#: ../../library/importlib.rst:531 msgid "Calls super's ``load_module()``." msgstr "" -#: ../../library/importlib.rst:533 msgid "Use :meth:`Loader.exec_module` instead." msgstr "" -#: ../../library/importlib.rst:539 ../../library/importlib.rst:980 msgid "Returns :attr:`path`." msgstr "" -#: ../../library/importlib.rst:544 msgid "Reads *path* as a binary file and returns the bytes from it." msgstr "" -#: ../../library/importlib.rst:549 -msgid "" -"An abstract base class for implementing source (and optionally bytecode) " -"file loading. The class inherits from both :class:`ResourceLoader` " -"and :class:`ExecutionLoader`, requiring the implementation of:" +msgid "An abstract base class for implementing source (and optionally bytecode) file loading. The class inherits from both :class:`ResourceLoader` and :class:`ExecutionLoader`, requiring the implementation of:" msgstr "" -#: ../../library/importlib.rst:553 msgid ":meth:`ResourceLoader.get_data`" msgstr "" -#: ../../library/importlib.rst:554 msgid ":meth:`ExecutionLoader.get_filename`" msgstr "" -#: ../../library/importlib.rst:555 -msgid "" -"Should only return the path to the source file; sourceless loading is not " -"supported." +msgid "Should only return the path to the source file; sourceless loading is not supported." msgstr "" -#: ../../library/importlib.rst:558 -msgid "" -"The abstract methods defined by this class are to add optional bytecode file " -"support. Not implementing these optional methods (or causing them to " -"raise :exc:`NotImplementedError`) causes the loader to only work with source " -"code. Implementing the methods allows the loader to work with source *and* " -"bytecode files; it does not allow for *sourceless* loading where only " -"bytecode is provided. Bytecode files are an optimization to speed up " -"loading by removing the parsing step of Python's compiler, and so no " -"bytecode-specific API is exposed." +msgid "The abstract methods defined by this class are to add optional bytecode file support. Not implementing these optional methods (or causing them to raise :exc:`NotImplementedError`) causes the loader to only work with source code. Implementing the methods allows the loader to work with source *and* bytecode files; it does not allow for *sourceless* loading where only bytecode is provided. Bytecode files are an optimization to speed up loading by removing the parsing step of Python's compiler, and so no bytecode-specific API is exposed." msgstr "" -#: ../../library/importlib.rst:569 -msgid "" -"Optional abstract method which returns a :class:`dict` containing metadata " -"about the specified path. Supported dictionary keys are:" +msgid "Optional abstract method which returns a :class:`dict` containing metadata about the specified path. Supported dictionary keys are:" msgstr "" -#: ../../library/importlib.rst:572 -msgid "" -"``'mtime'`` (mandatory): an integer or floating-point number representing " -"the modification time of the source code;" +msgid "``'mtime'`` (mandatory): an integer or floating-point number representing the modification time of the source code;" msgstr "" -#: ../../library/importlib.rst:574 msgid "``'size'`` (optional): the size in bytes of the source code." msgstr "" -#: ../../library/importlib.rst:576 -msgid "" -"Any other keys in the dictionary are ignored, to allow for future " -"extensions. If the path cannot be handled, :exc:`OSError` is raised." +msgid "Any other keys in the dictionary are ignored, to allow for future extensions. If the path cannot be handled, :exc:`OSError` is raised." msgstr "" -#: ../../library/importlib.rst:581 ../../library/importlib.rst:594 msgid "Raise :exc:`OSError` instead of :exc:`NotImplementedError`." msgstr "" -#: ../../library/importlib.rst:586 -msgid "" -"Optional abstract method which returns the modification time for the " -"specified path." +msgid "Optional abstract method which returns the modification time for the specified path." msgstr "" -#: ../../library/importlib.rst:589 -msgid "" -"This method is deprecated in favour of :meth:`path_stats`. You don't have " -"to implement it, but it is still available for compatibility purposes. " -"Raise :exc:`OSError` if the path cannot be handled." +msgid "This method is deprecated in favour of :meth:`path_stats`. You don't have to implement it, but it is still available for compatibility purposes. Raise :exc:`OSError` if the path cannot be handled." msgstr "" -#: ../../library/importlib.rst:599 -msgid "" -"Optional abstract method which writes the specified bytes to a file path. " -"Any intermediate directories which do not exist are to be created " -"automatically." +msgid "Optional abstract method which writes the specified bytes to a file path. Any intermediate directories which do not exist are to be created automatically." msgstr "" -#: ../../library/importlib.rst:603 -msgid "" -"When writing to the path fails because the path is read-only " -"(:const:`errno.EACCES`/:exc:`PermissionError`), do not propagate the " -"exception." +msgid "When writing to the path fails because the path is read-only (:const:`errno.EACCES`/:exc:`PermissionError`), do not propagate the exception." msgstr "" -#: ../../library/importlib.rst:607 msgid "No longer raises :exc:`NotImplementedError` when called." msgstr "" -#: ../../library/importlib.rst:612 msgid "Concrete implementation of :meth:`InspectLoader.get_code`." msgstr "" -#: ../../library/importlib.rst:616 msgid "Concrete implementation of :meth:`Loader.exec_module`." msgstr "" -#: ../../library/importlib.rst:622 msgid "Concrete implementation of :meth:`Loader.load_module`." msgstr "" -#: ../../library/importlib.rst:624 msgid "Use :meth:`exec_module` instead." msgstr "" -#: ../../library/importlib.rst:629 msgid "Concrete implementation of :meth:`InspectLoader.get_source`." msgstr "" -#: ../../library/importlib.rst:633 -msgid "" -"Concrete implementation of :meth:`InspectLoader.is_package`. A module is " -"determined to be a package if its file path (as provided " -"by :meth:`ExecutionLoader.get_filename`) is a file named ``__init__`` when " -"the file extension is removed **and** the module name itself does not end in " -"``__init__``." +msgid "Concrete implementation of :meth:`InspectLoader.is_package`. A module is determined to be a package if its file path (as provided by :meth:`ExecutionLoader.get_filename`) is a file named ``__init__`` when the file extension is removed **and** the module name itself does not end in ``__init__``." msgstr "" -#: ../../library/importlib.rst:641 msgid ":mod:`!importlib.machinery` -- Importers and path hooks" msgstr "" -#: ../../library/importlib.rst:646 msgid "**Source code:** :source:`Lib/importlib/machinery.py`" msgstr "" -#: ../../library/importlib.rst:650 -msgid "" -"This module contains the various objects that help :keyword:`import` find " -"and load modules." +msgid "This module contains the various objects that help :keyword:`import` find and load modules." msgstr "" -#: ../../library/importlib.rst:655 -msgid "" -"A list of strings representing the recognized file suffixes for source " -"modules." +msgid "A list of strings representing the recognized file suffixes for source modules." msgstr "" -#: ../../library/importlib.rst:662 -msgid "" -"A list of strings representing the file suffixes for non-optimized bytecode " -"modules." +msgid "A list of strings representing the file suffixes for non-optimized bytecode modules." msgstr "" -#: ../../library/importlib.rst:667 ../../library/importlib.rst:677 msgid "Use :const:`BYTECODE_SUFFIXES` instead." msgstr "" -#: ../../library/importlib.rst:672 -msgid "" -"A list of strings representing the file suffixes for optimized bytecode " -"modules." +msgid "A list of strings representing the file suffixes for optimized bytecode modules." msgstr "" -#: ../../library/importlib.rst:682 -msgid "" -"A list of strings representing the recognized file suffixes for bytecode " -"modules (including the leading dot)." +msgid "A list of strings representing the recognized file suffixes for bytecode modules (including the leading dot)." msgstr "" -#: ../../library/importlib.rst:687 msgid "The value is no longer dependent on ``__debug__``." msgstr "" -#: ../../library/importlib.rst:692 -msgid "" -"A list of strings representing the recognized file suffixes for extension " -"modules." +msgid "A list of strings representing the recognized file suffixes for extension modules." msgstr "" -#: ../../library/importlib.rst:699 -msgid "" -"Returns a combined list of strings representing all file suffixes for " -"modules recognized by the standard import machinery. This is a helper for " -"code which simply needs to know if a filesystem path potentially refers to a " -"module without needing any details on the kind of module (for " -"example, :func:`inspect.getmodulename`)." +msgid "Returns a combined list of strings representing all file suffixes for modules recognized by the standard import machinery. This is a helper for code which simply needs to know if a filesystem path potentially refers to a module without needing any details on the kind of module (for example, :func:`inspect.getmodulename`)." msgstr "" -#: ../../library/importlib.rst:710 -msgid "" -"An :term:`importer` for built-in modules. All known built-in modules are " -"listed in :data:`sys.builtin_module_names`. This class implements " -"the :class:`importlib.abc.MetaPathFinder` " -"and :class:`importlib.abc.InspectLoader` ABCs." +msgid "An :term:`importer` for built-in modules. All known built-in modules are listed in :data:`sys.builtin_module_names`. This class implements the :class:`importlib.abc.MetaPathFinder` and :class:`importlib.abc.InspectLoader` ABCs." msgstr "" -#: ../../library/importlib.rst:715 ../../library/importlib.rst:729 -#: ../../library/importlib.rst:742 ../../library/importlib.rst:757 -msgid "" -"Only class methods are defined by this class to alleviate the need for " -"instantiation." +msgid "Only class methods are defined by this class to alleviate the need for instantiation." msgstr "" -#: ../../library/importlib.rst:718 -msgid "" -"As part of :pep:`489`, the builtin importer now " -"implements :meth:`Loader.create_module` and :meth:`Loader.exec_module`" +msgid "As part of :pep:`489`, the builtin importer now implements :meth:`Loader.create_module` and :meth:`Loader.exec_module`" msgstr "" -#: ../../library/importlib.rst:725 -msgid "" -"An :term:`importer` for frozen modules. This class implements " -"the :class:`importlib.abc.MetaPathFinder` " -"and :class:`importlib.abc.InspectLoader` ABCs." +msgid "An :term:`importer` for frozen modules. This class implements the :class:`importlib.abc.MetaPathFinder` and :class:`importlib.abc.InspectLoader` ABCs." msgstr "" -#: ../../library/importlib.rst:732 -msgid "" -"Gained :meth:`~Loader.create_module` and :meth:`~Loader.exec_module` methods." +msgid "Gained :meth:`~Loader.create_module` and :meth:`~Loader.exec_module` methods." msgstr "" -#: ../../library/importlib.rst:739 -msgid "" -":term:`Finder ` for modules declared in the Windows registry. This " -"class implements the :class:`importlib.abc.MetaPathFinder` ABC." +msgid ":term:`Finder ` for modules declared in the Windows registry. This class implements the :class:`importlib.abc.MetaPathFinder` ABC." msgstr "" -#: ../../library/importlib.rst:747 -msgid "" -"Use :mod:`site` configuration instead. Future versions of Python may not " -"enable this finder by default." +msgid "Use :mod:`site` configuration instead. Future versions of Python may not enable this finder by default." msgstr "" -#: ../../library/importlib.rst:754 -msgid "" -"A :term:`Finder ` for :data:`sys.path` and package ``__path__`` " -"attributes. This class implements the :class:`importlib.abc.MetaPathFinder` " -"ABC." +msgid "A :term:`Finder ` for :data:`sys.path` and package ``__path__`` attributes. This class implements the :class:`importlib.abc.MetaPathFinder` ABC." msgstr "" -#: ../../library/importlib.rst:762 -msgid "" -"Class method that attempts to find a :term:`spec ` for the " -"module specified by *fullname* on :data:`sys.path` or, if defined, on " -"*path*. For each path entry that is " -"searched, :data:`sys.path_importer_cache` is checked. If a non-false object " -"is found then it is used as the :term:`path entry finder` to look for the " -"module being searched for. If no entry is found " -"in :data:`sys.path_importer_cache`, then :data:`sys.path_hooks` is searched " -"for a finder for the path entry and, if found, is stored " -"in :data:`sys.path_importer_cache` along with being queried about the " -"module. If no finder is ever found then ``None`` is both stored in the cache " -"and returned." -msgstr "" - -#: ../../library/importlib.rst:776 -msgid "" -"If the current working directory -- represented by an empty string -- is no " -"longer valid then ``None`` is returned but no value is cached " -"in :data:`sys.path_importer_cache`." +msgid "Class method that attempts to find a :term:`spec ` for the module specified by *fullname* on :data:`sys.path` or, if defined, on *path*. For each path entry that is searched, :data:`sys.path_importer_cache` is checked. If a non-false object is found then it is used as the :term:`path entry finder` to look for the module being searched for. If no entry is found in :data:`sys.path_importer_cache`, then :data:`sys.path_hooks` is searched for a finder for the path entry and, if found, is stored in :data:`sys.path_importer_cache` along with being queried about the module. If no finder is ever found then ``None`` is both stored in the cache and returned." msgstr "" -#: ../../library/importlib.rst:783 -msgid "" -"Calls :meth:`importlib.abc.PathEntryFinder.invalidate_caches` on all finders " -"stored in :data:`sys.path_importer_cache` that define the method. Otherwise " -"entries in :data:`sys.path_importer_cache` set to ``None`` are deleted." +msgid "If the current working directory -- represented by an empty string -- is no longer valid then ``None`` is returned but no value is cached in :data:`sys.path_importer_cache`." +msgstr "" + +msgid "Calls :meth:`importlib.abc.PathEntryFinder.invalidate_caches` on all finders stored in :data:`sys.path_importer_cache` that define the method. Otherwise entries in :data:`sys.path_importer_cache` set to ``None`` are deleted." msgstr "" -#: ../../library/importlib.rst:788 msgid "Entries of ``None`` in :data:`sys.path_importer_cache` are deleted." msgstr "" -#: ../../library/importlib.rst:791 -msgid "" -"Calls objects in :data:`sys.path_hooks` with the current working directory " -"for ``''`` (i.e. the empty string)." +msgid "Calls objects in :data:`sys.path_hooks` with the current working directory for ``''`` (i.e. the empty string)." msgstr "" -#: ../../library/importlib.rst:798 -msgid "" -"A concrete implementation of :class:`importlib.abc.PathEntryFinder` which " -"caches results from the file system." +msgid "A concrete implementation of :class:`importlib.abc.PathEntryFinder` which caches results from the file system." msgstr "" -#: ../../library/importlib.rst:801 -msgid "" -"The *path* argument is the directory for which the finder is in charge of " -"searching." +msgid "The *path* argument is the directory for which the finder is in charge of searching." msgstr "" -#: ../../library/importlib.rst:804 -msgid "" -"The *loader_details* argument is a variable number of 2-item tuples each " -"containing a loader and a sequence of file suffixes the loader recognizes. " -"The loaders are expected to be callables which accept two arguments of the " -"module's name and the path to the file found." +msgid "The *loader_details* argument is a variable number of 2-item tuples each containing a loader and a sequence of file suffixes the loader recognizes. The loaders are expected to be callables which accept two arguments of the module's name and the path to the file found." +msgstr "" + +msgid "The finder will cache the directory contents as necessary, making stat calls for each module search to verify the cache is not outdated. Because cache staleness relies upon the granularity of the operating system's state information of the file system, there is a potential race condition of searching for a module, creating a new file, and then searching for the module the new file represents. If the operations happen fast enough to fit within the granularity of stat calls, then the module search will fail. To prevent this from happening, when you create a module dynamically, make sure to call :func:`importlib.invalidate_caches`." msgstr "" -#: ../../library/importlib.rst:809 -msgid "" -"The finder will cache the directory contents as necessary, making stat calls " -"for each module search to verify the cache is not outdated. Because cache " -"staleness relies upon the granularity of the operating system's state " -"information of the file system, there is a potential race condition of " -"searching for a module, creating a new file, and then searching for the " -"module the new file represents. If the operations happen fast enough to fit " -"within the granularity of stat calls, then the module search will fail. To " -"prevent this from happening, when you create a module dynamically, make sure " -"to call :func:`importlib.invalidate_caches`." -msgstr "" - -#: ../../library/importlib.rst:823 msgid "The path the finder will search in." msgstr "" -#: ../../library/importlib.rst:827 msgid "Attempt to find the spec to handle *fullname* within :attr:`path`." msgstr "" -#: ../../library/importlib.rst:833 msgid "Clear out the internal cache." msgstr "" -#: ../../library/importlib.rst:837 -msgid "" -"A class method which returns a closure for use on :data:`sys.path_hooks`. An " -"instance of :class:`FileFinder` is returned by the closure using the path " -"argument given to the closure directly and *loader_details* indirectly." +msgid "A class method which returns a closure for use on :data:`sys.path_hooks`. An instance of :class:`FileFinder` is returned by the closure using the path argument given to the closure directly and *loader_details* indirectly." msgstr "" -#: ../../library/importlib.rst:842 -msgid "" -"If the argument to the closure is not an existing " -"directory, :exc:`ImportError` is raised." +msgid "If the argument to the closure is not an existing directory, :exc:`ImportError` is raised." msgstr "" -#: ../../library/importlib.rst:848 -msgid "" -"A concrete implementation of :class:`importlib.abc.SourceLoader` by " -"subclassing :class:`importlib.abc.FileLoader` and providing some concrete " -"implementations of other methods." +msgid "A concrete implementation of :class:`importlib.abc.SourceLoader` by subclassing :class:`importlib.abc.FileLoader` and providing some concrete implementations of other methods." msgstr "" -#: ../../library/importlib.rst:856 msgid "The name of the module that this loader will handle." msgstr "" -#: ../../library/importlib.rst:860 msgid "The path to the source file." msgstr "" -#: ../../library/importlib.rst:864 msgid "Return ``True`` if :attr:`path` appears to be for a package." msgstr "" -#: ../../library/importlib.rst:868 -msgid "" -"Concrete implementation of :meth:`importlib.abc.SourceLoader.path_stats`." +msgid "Concrete implementation of :meth:`importlib.abc.SourceLoader.path_stats`." msgstr "" -#: ../../library/importlib.rst:872 msgid "Concrete implementation of :meth:`importlib.abc.SourceLoader.set_data`." msgstr "" -#: ../../library/importlib.rst:876 ../../library/importlib.rst:919 -msgid "" -"Concrete implementation of :meth:`importlib.abc.Loader.load_module` where " -"specifying the name of the module to load is optional." +msgid "Concrete implementation of :meth:`importlib.abc.Loader.load_module` where specifying the name of the module to load is optional." msgstr "" -#: ../../library/importlib.rst:881 ../../library/importlib.rst:924 msgid "Use :meth:`importlib.abc.Loader.exec_module` instead." msgstr "" -#: ../../library/importlib.rst:886 -msgid "" -"A concrete implementation of :class:`importlib.abc.FileLoader` which can " -"import bytecode files (i.e. no source code files exist)." +msgid "A concrete implementation of :class:`importlib.abc.FileLoader` which can import bytecode files (i.e. no source code files exist)." msgstr "" -#: ../../library/importlib.rst:889 -msgid "" -"Please note that direct use of bytecode files (and thus not source code " -"files) inhibits your modules from being usable by all Python implementations " -"or new versions of Python which change the bytecode format." +msgid "Please note that direct use of bytecode files (and thus not source code files) inhibits your modules from being usable by all Python implementations or new versions of Python which change the bytecode format." msgstr "" -#: ../../library/importlib.rst:898 msgid "The name of the module the loader will handle." msgstr "" -#: ../../library/importlib.rst:902 msgid "The path to the bytecode file." msgstr "" -#: ../../library/importlib.rst:906 msgid "Determines if the module is a package based on :attr:`path`." msgstr "" -#: ../../library/importlib.rst:910 msgid "Returns the code object for :attr:`name` created from :attr:`path`." msgstr "" -#: ../../library/importlib.rst:914 -msgid "" -"Returns ``None`` as bytecode files have no source when this loader is used." +msgid "Returns ``None`` as bytecode files have no source when this loader is used." msgstr "" -#: ../../library/importlib.rst:929 -msgid "" -"A concrete implementation of :class:`importlib.abc.ExecutionLoader` for " -"extension modules." +msgid "A concrete implementation of :class:`importlib.abc.ExecutionLoader` for extension modules." msgstr "" -#: ../../library/importlib.rst:932 -msgid "" -"The *fullname* argument specifies the name of the module the loader is to " -"support. The *path* argument is the path to the extension module's file." +msgid "The *fullname* argument specifies the name of the module the loader is to support. The *path* argument is the path to the extension module's file." msgstr "" -#: ../../library/importlib.rst:935 -msgid "" -"Note that, by default, importing an extension module will fail in " -"subinterpreters if it doesn't implement multi-phase init (see :pep:`489`), " -"even if it would otherwise import successfully." +msgid "Note that, by default, importing an extension module will fail in subinterpreters if it doesn't implement multi-phase init (see :pep:`489`), even if it would otherwise import successfully." msgstr "" -#: ../../library/importlib.rst:941 msgid "Multi-phase init is now required for use in subinterpreters." msgstr "" -#: ../../library/importlib.rst:946 ../../library/importlib.rst:1132 msgid "Name of the module the loader supports." msgstr "" -#: ../../library/importlib.rst:950 msgid "Path to the extension module." msgstr "" -#: ../../library/importlib.rst:954 -msgid "" -"Creates the module object from the given specification in accordance " -"with :pep:`489`." +msgid "Creates the module object from the given specification in accordance with :pep:`489`." msgstr "" -#: ../../library/importlib.rst:961 msgid "Initializes the given module object in accordance with :pep:`489`." msgstr "" -#: ../../library/importlib.rst:967 -msgid "" -"Returns ``True`` if the file path points to a package's ``__init__`` module " -"based on :const:`EXTENSION_SUFFIXES`." +msgid "Returns ``True`` if the file path points to a package's ``__init__`` module based on :const:`EXTENSION_SUFFIXES`." msgstr "" -#: ../../library/importlib.rst:972 msgid "Returns ``None`` as extension modules lack a code object." msgstr "" -#: ../../library/importlib.rst:976 msgid "Returns ``None`` as extension modules do not have source code." msgstr "" -#: ../../library/importlib.rst:987 -msgid "" -"A concrete implementation of :class:`importlib.abc.InspectLoader` for " -"namespace packages. This is an alias for a private class and is only made " -"public for introspecting the ``__loader__`` attribute on namespace packages::" +msgid "A concrete implementation of :class:`importlib.abc.InspectLoader` for namespace packages. This is an alias for a private class and is only made public for introspecting the ``__loader__`` attribute on namespace packages::" msgstr "" -#: ../../library/importlib.rst:992 msgid "" ">>> from importlib.machinery import NamespaceLoader\n" ">>> import my_namespace\n" @@ -1216,411 +668,162 @@ msgid "" "True" msgstr "" -#: ../../library/importlib.rst:1005 -msgid "" -"A specification for a module's import-system-related state. This is " -"typically exposed as the module's :attr:`~module.__spec__` attribute. Many " -"of these attributes are also available directly on a module: for example, " -"``module.__spec__.origin == module.__file__``. Note, however, that while " -"the *values* are usually equivalent, they can differ since there is no " -"synchronization between the two objects. For example, it is possible to " -"update the module's :attr:`~module.__file__` at runtime and this will not be " -"automatically reflected in the module's :attr:`__spec__.origin " -"`, and vice versa." -msgstr "" - -#: ../../library/importlib.rst:1019 -msgid "" -"The module's fully qualified name (see :attr:`module.__name__`). " -"The :term:`finder` should always set this attribute to a non-empty string." +msgid "A specification for a module's import-system-related state. This is typically exposed as the module's :attr:`~module.__spec__` attribute. Many of these attributes are also available directly on a module: for example, ``module.__spec__.origin == module.__file__``. Note, however, that while the *values* are usually equivalent, they can differ since there is no synchronization between the two objects. For example, it is possible to update the module's :attr:`~module.__file__` at runtime and this will not be automatically reflected in the module's :attr:`__spec__.origin `, and vice versa." msgstr "" -#: ../../library/importlib.rst:1024 -msgid "" -"The :term:`loader` used to load the module (see :attr:`module.__loader__`). " -"The :term:`finder` should always set this attribute." +msgid "The module's fully qualified name (see :attr:`module.__name__`). The :term:`finder` should always set this attribute to a non-empty string." msgstr "" -#: ../../library/importlib.rst:1029 -msgid "" -"The location the :term:`loader` should use to load the module " -"(see :attr:`module.__file__`). For example, for modules loaded from a " -"``.py`` file this is the filename. The :term:`finder` should always set this " -"attribute to a meaningful value for the :term:`loader` to use. In the " -"uncommon case that there is not one (like for namespace packages), it should " -"be set to ``None``." +msgid "The :term:`loader` used to load the module (see :attr:`module.__loader__`). The :term:`finder` should always set this attribute." msgstr "" -#: ../../library/importlib.rst:1038 -msgid "" -"A (possibly empty) :term:`sequence` of strings enumerating the locations in " -"which a package's submodules will be found (see :attr:`module.__path__`). " -"Most of the time there will only be a single directory in this list." +msgid "The location the :term:`loader` should use to load the module (see :attr:`module.__file__`). For example, for modules loaded from a ``.py`` file this is the filename. The :term:`finder` should always set this attribute to a meaningful value for the :term:`loader` to use. In the uncommon case that there is not one (like for namespace packages), it should be set to ``None``." msgstr "" -#: ../../library/importlib.rst:1043 -msgid "" -"The :term:`finder` should set this attribute to a sequence, even an empty " -"one, to indicate to the import system that the module is a package. It " -"should be set to ``None`` for non-package modules. It is set automatically " -"later to a special object for namespace packages." +msgid "A (possibly empty) :term:`sequence` of strings enumerating the locations in which a package's submodules will be found (see :attr:`module.__path__`). Most of the time there will only be a single directory in this list." msgstr "" -#: ../../library/importlib.rst:1051 -msgid "" -"The :term:`finder` may set this attribute to an object containing " -"additional, module-specific data to use when loading the module. Otherwise " -"it should be set to ``None``." +msgid "The :term:`finder` should set this attribute to a sequence, even an empty one, to indicate to the import system that the module is a package. It should be set to ``None`` for non-package modules. It is set automatically later to a special object for namespace packages." msgstr "" -#: ../../library/importlib.rst:1057 -msgid "" -"The filename of a compiled version of the module's code " -"(see :attr:`module.__cached__`). The :term:`finder` should always set this " -"attribute but it may be ``None`` for modules that do not need compiled code " -"stored." +msgid "The :term:`finder` may set this attribute to an object containing additional, module-specific data to use when loading the module. Otherwise it should be set to ``None``." msgstr "" -#: ../../library/importlib.rst:1064 -msgid "" -"(Read-only) The fully qualified name of the package the module is in (or the " -"empty string for a top-level module). See :attr:`module.__package__`. If the " -"module is a package then this is the same as :attr:`name`." +msgid "The filename of a compiled version of the module's code (see :attr:`module.__cached__`). The :term:`finder` should always set this attribute but it may be ``None`` for modules that do not need compiled code stored." msgstr "" -#: ../../library/importlib.rst:1071 -msgid "" -"``True`` if the spec's :attr:`origin` refers to a loadable location, " -"``False`` otherwise. This value impacts how :attr:`!origin` is interpreted " -"and how the module's :attr:`~module.__file__` is populated." +msgid "(Read-only) The fully qualified name of the package the module is in (or the empty string for a top-level module). See :attr:`module.__package__`. If the module is a package then this is the same as :attr:`name`." msgstr "" -#: ../../library/importlib.rst:1078 -msgid "" -"A specialization of :class:`importlib.machinery.ExtensionFileLoader` that is " -"able to load extension modules in Framework format." +msgid "``True`` if the spec's :attr:`origin` refers to a loadable location, ``False`` otherwise. This value impacts how :attr:`!origin` is interpreted and how the module's :attr:`~module.__file__` is populated." msgstr "" -#: ../../library/importlib.rst:1081 -msgid "" -"For compatibility with the iOS App Store, *all* binary modules in an iOS app " -"must be dynamic libraries, contained in a framework with appropriate " -"metadata, stored in the ``Frameworks`` folder of the packaged app. There can " -"be only a single binary per framework, and there can be no executable binary " -"material outside the Frameworks folder." +msgid "A specialization of :class:`importlib.machinery.ExtensionFileLoader` that is able to load extension modules in Framework format." msgstr "" -#: ../../library/importlib.rst:1087 -msgid "" -"To accommodate this requirement, when running on iOS, extension module " -"binaries are *not* packaged as ``.so`` files on ``sys.path``, but as " -"individual standalone frameworks. To discover those frameworks, this loader " -"is registered against the ``.fwork`` file extension, with a ``.fwork`` file " -"acting as a placeholder in the original location of the binary on " -"``sys.path``. The ``.fwork`` file contains the path of the actual binary in " -"the ``Frameworks`` folder, relative to the app bundle. To allow for " -"resolving a framework-packaged binary back to the original location, the " -"framework is expected to contain a ``.origin`` file that contains the " -"location of the ``.fwork`` file, relative to the app bundle." -msgstr "" - -#: ../../library/importlib.rst:1098 -msgid "" -"For example, consider the case of an import ``from foo.bar import _whiz``, " -"where ``_whiz`` is implemented with the binary module ``sources/foo/bar/" -"_whiz.abi3.so``, with ``sources`` being the location registered on " -"``sys.path``, relative to the application bundle. This module *must* be " -"distributed as ``Frameworks/foo.bar._whiz.framework/foo.bar._whiz`` " -"(creating the framework name from the full import path of the module), with " -"an ``Info.plist`` file in the ``.framework`` directory identifying the " -"binary as a framework. The ``foo.bar._whiz`` module would be represented in " -"the original location with a ``sources/foo/bar/_whiz.abi3.fwork`` marker " -"file, containing the path ``Frameworks/foo.bar._whiz/foo.bar._whiz``. The " -"framework would also contain ``Frameworks/foo.bar._whiz.framework/" -"foo.bar._whiz.origin``, containing the path to the ``.fwork`` file." -msgstr "" - -#: ../../library/importlib.rst:1112 -msgid "" -"When a module is loaded with this loader, the ``__file__`` for the module " -"will report as the location of the ``.fwork`` file. This allows code to use " -"the ``__file__`` of a module as an anchor for file system traversal. " -"However, the spec origin will reference the location of the *actual* binary " -"in the ``.framework`` folder." +msgid "For compatibility with the iOS App Store, *all* binary modules in an iOS app must be dynamic libraries, contained in a framework with appropriate metadata, stored in the ``Frameworks`` folder of the packaged app. There can be only a single binary per framework, and there can be no executable binary material outside the Frameworks folder." msgstr "" -#: ../../library/importlib.rst:1118 -msgid "" -"The Xcode project building the app is responsible for converting any ``.so`` " -"files from wherever they exist in the ``PYTHONPATH`` into frameworks in the " -"``Frameworks`` folder (including stripping extensions from the module file, " -"the addition of framework metadata, and signing the resulting framework), " -"and creating the ``.fwork`` and ``.origin`` files. This will usually be done " -"with a build step in the Xcode project; see the iOS documentation for " -"details on how to construct this build step." +msgid "To accommodate this requirement, when running on iOS, extension module binaries are *not* packaged as ``.so`` files on ``sys.path``, but as individual standalone frameworks. To discover those frameworks, this loader is registered against the ``.fwork`` file extension, with a ``.fwork`` file acting as a placeholder in the original location of the binary on ``sys.path``. The ``.fwork`` file contains the path of the actual binary in the ``Frameworks`` folder, relative to the app bundle. To allow for resolving a framework-packaged binary back to the original location, the framework is expected to contain a ``.origin`` file that contains the location of the ``.fwork`` file, relative to the app bundle." +msgstr "" + +msgid "For example, consider the case of an import ``from foo.bar import _whiz``, where ``_whiz`` is implemented with the binary module ``sources/foo/bar/_whiz.abi3.so``, with ``sources`` being the location registered on ``sys.path``, relative to the application bundle. This module *must* be distributed as ``Frameworks/foo.bar._whiz.framework/foo.bar._whiz`` (creating the framework name from the full import path of the module), with an ``Info.plist`` file in the ``.framework`` directory identifying the binary as a framework. The ``foo.bar._whiz`` module would be represented in the original location with a ``sources/foo/bar/_whiz.abi3.fwork`` marker file, containing the path ``Frameworks/foo.bar._whiz/foo.bar._whiz``. The framework would also contain ``Frameworks/foo.bar._whiz.framework/foo.bar._whiz.origin``, containing the path to the ``.fwork`` file." +msgstr "" + +msgid "When a module is loaded with this loader, the ``__file__`` for the module will report as the location of the ``.fwork`` file. This allows code to use the ``__file__`` of a module as an anchor for file system traversal. However, the spec origin will reference the location of the *actual* binary in the ``.framework`` folder." +msgstr "" + +msgid "The Xcode project building the app is responsible for converting any ``.so`` files from wherever they exist in the ``PYTHONPATH`` into frameworks in the ``Frameworks`` folder (including stripping extensions from the module file, the addition of framework metadata, and signing the resulting framework), and creating the ``.fwork`` and ``.origin`` files. This will usually be done with a build step in the Xcode project; see the iOS documentation for details on how to construct this build step." msgstr "" -#: ../../library/importlib.rst:1128 msgid "Availability" msgstr "" -#: ../../library/importlib.rst:1136 msgid "Path to the ``.fwork`` file for the extension module." msgstr "" -#: ../../library/importlib.rst:1140 msgid ":mod:`!importlib.util` -- Utility code for importers" msgstr "" -#: ../../library/importlib.rst:1146 msgid "**Source code:** :source:`Lib/importlib/util.py`" msgstr "" -#: ../../library/importlib.rst:1150 -msgid "" -"This module contains the various objects that help in the construction of " -"an :term:`importer`." +msgid "This module contains the various objects that help in the construction of an :term:`importer`." msgstr "" -#: ../../library/importlib.rst:1155 -msgid "" -"The bytes which represent the bytecode version number. If you need help with " -"loading/writing bytecode then consider :class:`importlib.abc.SourceLoader`." +msgid "The bytes which represent the bytecode version number. If you need help with loading/writing bytecode then consider :class:`importlib.abc.SourceLoader`." msgstr "" -#: ../../library/importlib.rst:1162 -msgid "" -"Return the :pep:`3147`/:pep:`488` path to the byte-compiled file associated " -"with the source *path*. For example, if *path* is ``/foo/bar/baz.py`` the " -"return value would be ``/foo/bar/__pycache__/baz.cpython-32.pyc`` for Python " -"3.2. The ``cpython-32`` string comes from the current magic tag " -"(see :func:`get_tag`; if :attr:`sys.implementation.cache_tag` is not defined " -"then :exc:`NotImplementedError` will be raised)." +msgid "Return the :pep:`3147`/:pep:`488` path to the byte-compiled file associated with the source *path*. For example, if *path* is ``/foo/bar/baz.py`` the return value would be ``/foo/bar/__pycache__/baz.cpython-32.pyc`` for Python 3.2. The ``cpython-32`` string comes from the current magic tag (see :func:`get_tag`; if :attr:`sys.implementation.cache_tag` is not defined then :exc:`NotImplementedError` will be raised)." msgstr "" -#: ../../library/importlib.rst:1169 -msgid "" -"The *optimization* parameter is used to specify the optimization level of " -"the bytecode file. An empty string represents no optimization, so ``/foo/bar/" -"baz.py`` with an *optimization* of ``''`` will result in a bytecode path of " -"``/foo/bar/__pycache__/baz.cpython-32.pyc``. ``None`` causes the " -"interpreter's optimization level to be used. Any other value's string " -"representation is used, so ``/foo/bar/baz.py`` with an *optimization* of " -"``2`` will lead to the bytecode path of ``/foo/bar/__pycache__/" -"baz.cpython-32.opt-2.pyc``. The string representation of *optimization* can " -"only be alphanumeric, else :exc:`ValueError` is raised." -msgstr "" - -#: ../../library/importlib.rst:1179 -msgid "" -"The *debug_override* parameter is deprecated and can be used to override the " -"system's value for ``__debug__``. A ``True`` value is the equivalent of " -"setting *optimization* to the empty string. A ``False`` value is the same as " -"setting *optimization* to ``1``. If both *debug_override* an *optimization* " -"are not ``None`` then :exc:`TypeError` is raised." +msgid "The *optimization* parameter is used to specify the optimization level of the bytecode file. An empty string represents no optimization, so ``/foo/bar/baz.py`` with an *optimization* of ``''`` will result in a bytecode path of ``/foo/bar/__pycache__/baz.cpython-32.pyc``. ``None`` causes the interpreter's optimization level to be used. Any other value's string representation is used, so ``/foo/bar/baz.py`` with an *optimization* of ``2`` will lead to the bytecode path of ``/foo/bar/__pycache__/baz.cpython-32.opt-2.pyc``. The string representation of *optimization* can only be alphanumeric, else :exc:`ValueError` is raised." msgstr "" -#: ../../library/importlib.rst:1187 -msgid "" -"The *optimization* parameter was added and the *debug_override* parameter " -"was deprecated." +msgid "The *debug_override* parameter is deprecated and can be used to override the system's value for ``__debug__``. A ``True`` value is the equivalent of setting *optimization* to the empty string. A ``False`` value is the same as setting *optimization* to ``1``. If both *debug_override* an *optimization* are not ``None`` then :exc:`TypeError` is raised." +msgstr "" + +msgid "The *optimization* parameter was added and the *debug_override* parameter was deprecated." msgstr "" -#: ../../library/importlib.rst:1191 ../../library/importlib.rst:1207 -#: ../../library/importlib.rst:1296 msgid "Accepts a :term:`path-like object`." msgstr "" -#: ../../library/importlib.rst:1197 -msgid "" -"Given the *path* to a :pep:`3147` file name, return the associated source " -"code file path. For example, if *path* is ``/foo/bar/__pycache__/" -"baz.cpython-32.pyc`` the returned path would be ``/foo/bar/baz.py``. *path* " -"need not exist, however if it does not conform to :pep:`3147` or :pep:`488` " -"format, a :exc:`ValueError` is raised. " -"If :attr:`sys.implementation.cache_tag` is not " -"defined, :exc:`NotImplementedError` is raised." +msgid "Given the *path* to a :pep:`3147` file name, return the associated source code file path. For example, if *path* is ``/foo/bar/__pycache__/baz.cpython-32.pyc`` the returned path would be ``/foo/bar/baz.py``. *path* need not exist, however if it does not conform to :pep:`3147` or :pep:`488` format, a :exc:`ValueError` is raised. If :attr:`sys.implementation.cache_tag` is not defined, :exc:`NotImplementedError` is raised." msgstr "" -#: ../../library/importlib.rst:1212 -msgid "" -"Decode the given bytes representing source code and return it as a string " -"with universal newlines (as required " -"by :meth:`importlib.abc.InspectLoader.get_source`)." +msgid "Decode the given bytes representing source code and return it as a string with universal newlines (as required by :meth:`importlib.abc.InspectLoader.get_source`)." msgstr "" -#: ../../library/importlib.rst:1220 msgid "Resolve a relative module name to an absolute one." msgstr "" -#: ../../library/importlib.rst:1222 -msgid "" -"If **name** has no leading dots, then **name** is simply returned. This " -"allows for usage such as ``importlib.util.resolve_name('sys', " -"__spec__.parent)`` without doing a check to see if the **package** argument " -"is needed." +msgid "If **name** has no leading dots, then **name** is simply returned. This allows for usage such as ``importlib.util.resolve_name('sys', __spec__.parent)`` without doing a check to see if the **package** argument is needed." msgstr "" -#: ../../library/importlib.rst:1227 -msgid "" -":exc:`ImportError` is raised if **name** is a relative module name but " -"**package** is a false value (e.g. ``None`` or the empty " -"string). :exc:`ImportError` is also raised if a relative name would escape " -"its containing package (e.g. requesting ``..bacon`` from within the ``spam`` " -"package)." +msgid ":exc:`ImportError` is raised if **name** is a relative module name but **package** is a false value (e.g. ``None`` or the empty string). :exc:`ImportError` is also raised if a relative name would escape its containing package (e.g. requesting ``..bacon`` from within the ``spam`` package)." msgstr "" -#: ../../library/importlib.rst:1235 -msgid "" -"To improve consistency with import statements, raise :exc:`ImportError` " -"instead of :exc:`ValueError` for invalid relative import attempts." +msgid "To improve consistency with import statements, raise :exc:`ImportError` instead of :exc:`ValueError` for invalid relative import attempts." msgstr "" -#: ../../library/importlib.rst:1242 -msgid "" -"Find the :term:`spec ` for a module, optionally relative to the " -"specified **package** name. If the module is in :data:`sys.modules`, then " -"``sys.modules[name].__spec__`` is returned (unless the spec would be " -"``None`` or is not set, in which case :exc:`ValueError` is raised). " -"Otherwise a search using :data:`sys.meta_path` is done. ``None`` is returned " -"if no spec is found." +msgid "Find the :term:`spec ` for a module, optionally relative to the specified **package** name. If the module is in :data:`sys.modules`, then ``sys.modules[name].__spec__`` is returned (unless the spec would be ``None`` or is not set, in which case :exc:`ValueError` is raised). Otherwise a search using :data:`sys.meta_path` is done. ``None`` is returned if no spec is found." msgstr "" -#: ../../library/importlib.rst:1249 -msgid "" -"If **name** is for a submodule (contains a dot), the parent module is " -"automatically imported." +msgid "If **name** is for a submodule (contains a dot), the parent module is automatically imported." msgstr "" -#: ../../library/importlib.rst:1252 msgid "**name** and **package** work the same as for :func:`import_module`." msgstr "" -#: ../../library/importlib.rst:1256 -msgid "" -"Raises :exc:`ModuleNotFoundError` instead of :exc:`AttributeError` if " -"**package** is in fact not a package (i.e. lacks a :attr:`~module.__path__` " -"attribute)." +msgid "Raises :exc:`ModuleNotFoundError` instead of :exc:`AttributeError` if **package** is in fact not a package (i.e. lacks a :attr:`~module.__path__` attribute)." msgstr "" -#: ../../library/importlib.rst:1263 -msgid "" -"Create a new module based on **spec** and :meth:`spec.loader.create_module " -"`." +msgid "Create a new module based on **spec** and :meth:`spec.loader.create_module `." msgstr "" -#: ../../library/importlib.rst:1266 -msgid "" -"If :meth:`spec.loader.create_module ` " -"does not return ``None``, then any pre-existing attributes will not be " -"reset. Also, no :exc:`AttributeError` will be raised if triggered while " -"accessing **spec** or setting an attribute on the module." +msgid "If :meth:`spec.loader.create_module ` does not return ``None``, then any pre-existing attributes will not be reset. Also, no :exc:`AttributeError` will be raised if triggered while accessing **spec** or setting an attribute on the module." msgstr "" -#: ../../library/importlib.rst:1271 -msgid "" -"This function is preferred over using :class:`types.ModuleType` to create a " -"new module as **spec** is used to set as many import-controlled attributes " -"on the module as possible." +msgid "This function is preferred over using :class:`types.ModuleType` to create a new module as **spec** is used to set as many import-controlled attributes on the module as possible." msgstr "" -#: ../../library/importlib.rst:1279 -msgid "" -"A factory function for creating a :class:`~importlib.machinery.ModuleSpec` " -"instance based on a loader. The parameters have the same meaning as they do " -"for ModuleSpec. The function uses available :term:`loader` APIs, such " -"as :meth:`InspectLoader.is_package`, to fill in any missing information on " -"the spec." +msgid "A factory function for creating a :class:`~importlib.machinery.ModuleSpec` instance based on a loader. The parameters have the same meaning as they do for ModuleSpec. The function uses available :term:`loader` APIs, such as :meth:`InspectLoader.is_package`, to fill in any missing information on the spec." msgstr "" -#: ../../library/importlib.rst:1289 -msgid "" -"A factory function for creating a :class:`~importlib.machinery.ModuleSpec` " -"instance based on the path to a file. Missing information will be filled in " -"on the spec by making use of loader APIs and by the implication that the " -"module will be file-based." +msgid "A factory function for creating a :class:`~importlib.machinery.ModuleSpec` instance based on the path to a file. Missing information will be filled in on the spec by making use of loader APIs and by the implication that the module will be file-based." msgstr "" -#: ../../library/importlib.rst:1301 -msgid "" -"Return the hash of *source_bytes* as bytes. A hash-based ``.pyc`` file " -"embeds the :func:`source_hash` of the corresponding source file's contents " -"in its header." +msgid "Return the hash of *source_bytes* as bytes. A hash-based ``.pyc`` file embeds the :func:`source_hash` of the corresponding source file's contents in its header." msgstr "" -#: ../../library/importlib.rst:1309 -msgid "" -"A context manager that can temporarily skip the compatibility check for " -"extension modules. By default the check is enabled and will fail when a " -"single-phase init module is imported in a subinterpreter. It will also fail " -"for a multi-phase init module that doesn't explicitly support a per-" -"interpreter GIL, when imported in an interpreter with its own GIL." +msgid "A context manager that can temporarily skip the compatibility check for extension modules. By default the check is enabled and will fail when a single-phase init module is imported in a subinterpreter. It will also fail for a multi-phase init module that doesn't explicitly support a per-interpreter GIL, when imported in an interpreter with its own GIL." msgstr "" -#: ../../library/importlib.rst:1316 -msgid "" -"Note that this function is meant to accommodate an unusual case; one which " -"is likely to eventually go away. There's is a pretty good chance this is " -"not what you were looking for." +msgid "Note that this function is meant to accommodate an unusual case; one which is likely to eventually go away. There's is a pretty good chance this is not what you were looking for." msgstr "" -#: ../../library/importlib.rst:1320 -msgid "" -"You can get the same effect as this function by implementing the basic " -"interface of multi-phase init (:pep:`489`) and lying about support for " -"multiple interpreters (or per-interpreter GIL)." +msgid "You can get the same effect as this function by implementing the basic interface of multi-phase init (:pep:`489`) and lying about support for multiple interpreters (or per-interpreter GIL)." msgstr "" -#: ../../library/importlib.rst:1325 -msgid "" -"Using this function to disable the check can lead to unexpected behavior and " -"even crashes. It should only be used during extension module development." +msgid "Using this function to disable the check can lead to unexpected behavior and even crashes. It should only be used during extension module development." msgstr "" -#: ../../library/importlib.rst:1333 -msgid "" -"A class which postpones the execution of the loader of a module until the " -"module has an attribute accessed." +msgid "A class which postpones the execution of the loader of a module until the module has an attribute accessed." msgstr "" -#: ../../library/importlib.rst:1336 -msgid "" -"This class **only** works with loaders that " -"define :meth:`~importlib.abc.Loader.exec_module` as control over what module " -"type is used for the module is required. For those same reasons, the " -"loader's :meth:`~importlib.abc.Loader.create_module` method must return " -"``None`` or a type for which its ``__class__`` attribute can be mutated " -"along with not using :term:`slots <__slots__>`. Finally, modules which " -"substitute the object placed into :data:`sys.modules` will not work as there " -"is no way to properly replace the module references throughout the " -"interpreter safely; :exc:`ValueError` is raised if such a substitution is " -"detected." -msgstr "" - -#: ../../library/importlib.rst:1347 -msgid "" -"For projects where startup time is critical, this class allows for " -"potentially minimizing the cost of loading a module if it is never used. For " -"projects where startup time is not essential then use of this class is " -"**heavily** discouraged due to error messages created during loading being " -"postponed and thus occurring out of context." +msgid "This class **only** works with loaders that define :meth:`~importlib.abc.Loader.exec_module` as control over what module type is used for the module is required. For those same reasons, the loader's :meth:`~importlib.abc.Loader.create_module` method must return ``None`` or a type for which its ``__class__`` attribute can be mutated along with not using :term:`slots <__slots__>`. Finally, modules which substitute the object placed into :data:`sys.modules` will not work as there is no way to properly replace the module references throughout the interpreter safely; :exc:`ValueError` is raised if such a substitution is detected." msgstr "" -#: ../../library/importlib.rst:1355 -msgid "" -"Began calling :meth:`~importlib.abc.Loader.create_module`, removing the " -"compatibility warning for :class:`importlib.machinery.BuiltinImporter` " -"and :class:`importlib.machinery.ExtensionFileLoader`." +msgid "For projects where startup time is critical, this class allows for potentially minimizing the cost of loading a module if it is never used. For projects where startup time is not essential then use of this class is **heavily** discouraged due to error messages created during loading being postponed and thus occurring out of context." msgstr "" -#: ../../library/importlib.rst:1362 -msgid "" -"A class method which returns a callable that creates a lazy loader. This is " -"meant to be used in situations where the loader is passed by class instead " -"of by instance. ::" +msgid "Began calling :meth:`~importlib.abc.Loader.create_module`, removing the compatibility warning for :class:`importlib.machinery.BuiltinImporter` and :class:`importlib.machinery.ExtensionFileLoader`." +msgstr "" + +msgid "A class method which returns a callable that creates a lazy loader. This is meant to be used in situations where the loader is passed by class instead of by instance. ::" msgstr "" -#: ../../library/importlib.rst:1367 msgid "" "suffixes = importlib.machinery.SOURCE_SUFFIXES\n" "loader = importlib.machinery.SourceFileLoader\n" @@ -1628,43 +831,30 @@ msgid "" "finder = importlib.machinery.FileFinder(path, (lazy_loader, suffixes))" msgstr "" -#: ../../library/importlib.rst:1375 msgid "Examples" msgstr "" -#: ../../library/importlib.rst:1378 msgid "Importing programmatically" msgstr "" -#: ../../library/importlib.rst:1380 -msgid "" -"To programmatically import a module, use :func:`importlib.import_module`. ::" +msgid "To programmatically import a module, use :func:`importlib.import_module`. ::" msgstr "" -#: ../../library/importlib.rst:1383 msgid "" "import importlib\n" "\n" "itertools = importlib.import_module('itertools')" msgstr "" -#: ../../library/importlib.rst:1389 msgid "Checking if a module can be imported" msgstr "" -#: ../../library/importlib.rst:1391 -msgid "" -"If you need to find out if a module can be imported without actually doing " -"the import, then you should use :func:`importlib.util.find_spec`." +msgid "If you need to find out if a module can be imported without actually doing the import, then you should use :func:`importlib.util.find_spec`." msgstr "" -#: ../../library/importlib.rst:1394 -msgid "" -"Note that if ``name`` is a submodule (contains a " -"dot), :func:`importlib.util.find_spec` will import the parent module. ::" +msgid "Note that if ``name`` is a submodule (contains a dot), :func:`importlib.util.find_spec` will import the parent module. ::" msgstr "" -#: ../../library/importlib.rst:1398 msgid "" "import importlib.util\n" "import sys\n" @@ -1684,27 +874,15 @@ msgid "" " print(f\"can't find the {name!r} module\")" msgstr "" -#: ../../library/importlib.rst:1417 msgid "Importing a source file directly" msgstr "" -#: ../../library/importlib.rst:1419 -msgid "" -"This recipe should be used with caution: it is an approximation of an import " -"statement where the file path is specified directly, rather " -"than :data:`sys.path` being searched. Alternatives should first be " -"considered first, such as modifying :data:`sys.path` when a proper module is " -"required, or using :func:`runpy.run_path` when the global namespace " -"resulting from running a Python file is appropriate." +msgid "This recipe should be used with caution: it is an approximation of an import statement where the file path is specified directly, rather than :data:`sys.path` being searched. Alternatives should first be considered first, such as modifying :data:`sys.path` when a proper module is required, or using :func:`runpy.run_path` when the global namespace resulting from running a Python file is appropriate." msgstr "" -#: ../../library/importlib.rst:1426 -msgid "" -"To import a Python source file directly from a path, use the following " -"recipe::" +msgid "To import a Python source file directly from a path, use the following recipe::" msgstr "" -#: ../../library/importlib.rst:1428 msgid "" "import importlib.util\n" "import sys\n" @@ -1727,15 +905,12 @@ msgid "" "json = import_from_path(module_name, file_path)" msgstr "" -#: ../../library/importlib.rst:1450 msgid "Implementing lazy imports" msgstr "" -#: ../../library/importlib.rst:1452 msgid "The example below shows how to implement lazy imports::" msgstr "" -#: ../../library/importlib.rst:1454 msgid "" ">>> import importlib.util\n" ">>> import sys\n" @@ -1755,26 +930,12 @@ msgid "" "False" msgstr "" -#: ../../library/importlib.rst:1473 msgid "Setting up an importer" msgstr "" -#: ../../library/importlib.rst:1475 -msgid "" -"For deep customizations of import, you typically want to implement " -"an :term:`importer`. This means managing both the :term:`finder` " -"and :term:`loader` side of things. For finders there are two flavours to " -"choose from depending on your needs: a :term:`meta path finder` or " -"a :term:`path entry finder`. The former is what you would put " -"on :data:`sys.meta_path` while the latter is what you create using " -"a :term:`path entry hook` on :data:`sys.path_hooks` which works " -"with :data:`sys.path` entries to potentially create a finder. This example " -"will show you how to register your own importers so that import will use " -"them (for creating an importer for yourself, read the documentation for the " -"appropriate classes defined within this package)::" -msgstr "" - -#: ../../library/importlib.rst:1486 +msgid "For deep customizations of import, you typically want to implement an :term:`importer`. This means managing both the :term:`finder` and :term:`loader` side of things. For finders there are two flavours to choose from depending on your needs: a :term:`meta path finder` or a :term:`path entry finder`. The former is what you would put on :data:`sys.meta_path` while the latter is what you create using a :term:`path entry hook` on :data:`sys.path_hooks` which works with :data:`sys.path` entries to potentially create a finder. This example will show you how to register your own importers so that import will use them (for creating an importer for yourself, read the documentation for the appropriate classes defined within this package)::" +msgstr "" + msgid "" "import importlib.machinery\n" "import sys\n" @@ -1786,31 +947,22 @@ msgid "" " importlib.machinery.SOURCE_SUFFIXES)\n" "\n" "# Setting up a meta path finder.\n" -"# Make sure to put the finder in the proper location in the list in terms " -"of\n" +"# Make sure to put the finder in the proper location in the list in terms of\n" "# priority.\n" "sys.meta_path.append(SpamMetaPathFinder)\n" "\n" "# Setting up a path entry finder.\n" -"# Make sure to put the path hook in the proper location in the list in " -"terms\n" +"# Make sure to put the path hook in the proper location in the list in terms\n" "# of priority.\n" "sys.path_hooks.append(SpamPathEntryFinder.path_hook(loader_details))" msgstr "" -#: ../../library/importlib.rst:1507 msgid "Approximating :func:`importlib.import_module`" msgstr "" -#: ../../library/importlib.rst:1509 -msgid "" -"Import itself is implemented in Python code, making it possible to expose " -"most of the import machinery through importlib. The following helps " -"illustrate the various APIs that importlib exposes by providing an " -"approximate implementation of :func:`importlib.import_module`::" +msgid "Import itself is implemented in Python code, making it possible to expose most of the import machinery through importlib. The following helps illustrate the various APIs that importlib exposes by providing an approximate implementation of :func:`importlib.import_module`::" msgstr "" -#: ../../library/importlib.rst:1515 msgid "" "import importlib.util\n" "import sys\n" @@ -1843,10 +995,8 @@ msgid "" " return module" msgstr "" -#: ../../library/importlib.rst:431 msgid "universal newlines" msgstr "" -#: ../../library/importlib.rst:431 msgid "importlib.abc.InspectLoader.get_source method" msgstr "" diff --git a/library/importlib.resources.abc.po b/library/importlib.resources.abc.po index 3c33559c..25f377e8 100644 --- a/library/importlib.resources.abc.po +++ b/library/importlib.resources.abc.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2022-11-05 19:49+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,217 +21,115 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/importlib.resources.abc.rst:2 msgid ":mod:`!importlib.resources.abc` -- Abstract base classes for resources" msgstr "" -#: ../../library/importlib.resources.abc.rst:7 msgid "**Source code:** :source:`Lib/importlib/resources/abc.py`" msgstr "" -#: ../../library/importlib.resources.abc.rst:15 msgid "*Superseded by TraversableResources*" msgstr "" -#: ../../library/importlib.resources.abc.rst:17 -msgid "" -"An :term:`abstract base class` to provide the ability to read *resources*." +msgid "An :term:`abstract base class` to provide the ability to read *resources*." msgstr "" -#: ../../library/importlib.resources.abc.rst:20 -msgid "" -"From the perspective of this ABC, a *resource* is a binary artifact that is " -"shipped within a package. Typically this is something like a data file that " -"lives next to the ``__init__.py`` file of the package. The purpose of this " -"class is to help abstract out the accessing of such data files so that it " -"does not matter if the package and its data file(s) are stored e.g. in a zip " -"file versus on the file system." +msgid "From the perspective of this ABC, a *resource* is a binary artifact that is shipped within a package. Typically this is something like a data file that lives next to the ``__init__.py`` file of the package. The purpose of this class is to help abstract out the accessing of such data files so that it does not matter if the package and its data file(s) are stored e.g. in a zip file versus on the file system." msgstr "" -#: ../../library/importlib.resources.abc.rst:28 -msgid "" -"For any of methods of this class, a *resource* argument is expected to be " -"a :term:`path-like object` which represents conceptually just a file name. " -"This means that no subdirectory paths should be included in the *resource* " -"argument. This is because the location of the package the reader is for, " -"acts as the \"directory\". Hence the metaphor for directories and file names " -"is packages and resources, respectively. This is also why instances of this " -"class are expected to directly correlate to a specific package (instead of " -"potentially representing multiple packages or a module)." +msgid "For any of methods of this class, a *resource* argument is expected to be a :term:`path-like object` which represents conceptually just a file name. This means that no subdirectory paths should be included in the *resource* argument. This is because the location of the package the reader is for, acts as the \"directory\". Hence the metaphor for directories and file names is packages and resources, respectively. This is also why instances of this class are expected to directly correlate to a specific package (instead of potentially representing multiple packages or a module)." msgstr "" -#: ../../library/importlib.resources.abc.rst:39 -msgid "" -"Loaders that wish to support resource reading are expected to provide a " -"method called ``get_resource_reader(fullname)`` which returns an object " -"implementing this ABC's interface. If the module specified by fullname is " -"not a package, this method should return :const:`None`. An object compatible " -"with this ABC should only be returned when the specified module is a package." +msgid "Loaders that wish to support resource reading are expected to provide a method called ``get_resource_reader(fullname)`` which returns an object implementing this ABC's interface. If the module specified by fullname is not a package, this method should return :const:`None`. An object compatible with this ABC should only be returned when the specified module is a package." msgstr "" -#: ../../library/importlib.resources.abc.rst:46 msgid "Use :class:`importlib.resources.abc.TraversableResources` instead." msgstr "" -#: ../../library/importlib.resources.abc.rst:52 -msgid "" -"Returns an opened, :term:`file-like object` for binary reading of the " -"*resource*." +msgid "Returns an opened, :term:`file-like object` for binary reading of the *resource*." msgstr "" -#: ../../library/importlib.resources.abc.rst:55 msgid "If the resource cannot be found, :exc:`FileNotFoundError` is raised." msgstr "" -#: ../../library/importlib.resources.abc.rst:61 msgid "Returns the file system path to the *resource*." msgstr "" -#: ../../library/importlib.resources.abc.rst:63 -msgid "" -"If the resource does not concretely exist on the file system, " -"raise :exc:`FileNotFoundError`." +msgid "If the resource does not concretely exist on the file system, raise :exc:`FileNotFoundError`." msgstr "" -#: ../../library/importlib.resources.abc.rst:69 -msgid "" -"Returns ``True`` if the named *path* is considered a " -"resource. :exc:`FileNotFoundError` is raised if *path* does not exist." +msgid "Returns ``True`` if the named *path* is considered a resource. :exc:`FileNotFoundError` is raised if *path* does not exist." msgstr "" -#: ../../library/importlib.resources.abc.rst:72 msgid "The argument *name* was renamed to *path*." msgstr "" -#: ../../library/importlib.resources.abc.rst:78 -msgid "" -"Returns an :term:`iterable` of strings over the contents of the package. Do " -"note that it is not required that all names returned by the iterator be " -"actual resources, e.g. it is acceptable to return names for " -"which :meth:`is_resource` would be false." +msgid "Returns an :term:`iterable` of strings over the contents of the package. Do note that it is not required that all names returned by the iterator be actual resources, e.g. it is acceptable to return names for which :meth:`is_resource` would be false." msgstr "" -#: ../../library/importlib.resources.abc.rst:84 -msgid "" -"Allowing non-resource names to be returned is to allow for situations where " -"how a package and its resources are stored are known a priori and the non-" -"resource names would be useful. For instance, returning subdirectory names " -"is allowed so that when it is known that the package and resources are " -"stored on the file system then those subdirectory names can be used directly." +msgid "Allowing non-resource names to be returned is to allow for situations where how a package and its resources are stored are known a priori and the non-resource names would be useful. For instance, returning subdirectory names is allowed so that when it is known that the package and resources are stored on the file system then those subdirectory names can be used directly." msgstr "" -#: ../../library/importlib.resources.abc.rst:92 msgid "The abstract method returns an iterable of no items." msgstr "" -#: ../../library/importlib.resources.abc.rst:97 -msgid "" -"An object with a subset of :class:`pathlib.Path` methods suitable for " -"traversing directories and opening files." +msgid "An object with a subset of :class:`pathlib.Path` methods suitable for traversing directories and opening files." msgstr "" -#: ../../library/importlib.resources.abc.rst:100 -msgid "" -"For a representation of the object on the file-system, " -"use :meth:`importlib.resources.as_file`." +msgid "For a representation of the object on the file-system, use :meth:`importlib.resources.as_file`." msgstr "" -#: ../../library/importlib.resources.abc.rst:105 msgid "Abstract. The base name of this object without any parent references." msgstr "" -#: ../../library/importlib.resources.abc.rst:110 msgid "Yield Traversable objects in self." msgstr "" -#: ../../library/importlib.resources.abc.rst:115 msgid "Return ``True`` if self is a directory." msgstr "" -#: ../../library/importlib.resources.abc.rst:120 msgid "Return ``True`` if self is a file." msgstr "" -#: ../../library/importlib.resources.abc.rst:125 -msgid "" -"Traverse directories according to *pathsegments* and return the result " -"as :class:`!Traversable`." +msgid "Traverse directories according to *pathsegments* and return the result as :class:`!Traversable`." msgstr "" -#: ../../library/importlib.resources.abc.rst:128 -msgid "" -"Each *pathsegments* argument may contain multiple names separated by forward " -"slashes (``/``, ``posixpath.sep`` ). For example, the following are " -"equivalent::" +msgid "Each *pathsegments* argument may contain multiple names separated by forward slashes (``/``, ``posixpath.sep`` ). For example, the following are equivalent::" msgstr "" -#: ../../library/importlib.resources.abc.rst:132 msgid "" "files.joinpath('subdir', 'subsuddir', 'file.txt')\n" "files.joinpath('subdir/subsuddir/file.txt')" msgstr "" -#: ../../library/importlib.resources.abc.rst:135 -msgid "" -"Note that some :class:`!Traversable` implementations might not be updated to " -"the latest version of the protocol. For compatibility with such " -"implementations, provide a single argument without path separators to each " -"call to ``joinpath``. For example::" +msgid "Note that some :class:`!Traversable` implementations might not be updated to the latest version of the protocol. For compatibility with such implementations, provide a single argument without path separators to each call to ``joinpath``. For example::" msgstr "" -#: ../../library/importlib.resources.abc.rst:140 msgid "files.joinpath('subdir').joinpath('subsubdir').joinpath('file.txt')" msgstr "" -#: ../../library/importlib.resources.abc.rst:144 -msgid "" -"``joinpath`` accepts multiple *pathsegments*, and these segments may contain " -"forward slashes as path separators. Previously, only a single *child* " -"argument was accepted." +msgid "``joinpath`` accepts multiple *pathsegments*, and these segments may contain forward slashes as path separators. Previously, only a single *child* argument was accepted." msgstr "" -#: ../../library/importlib.resources.abc.rst:151 msgid "Return Traversable child in self. Equivalent to ``joinpath(child)``." msgstr "" -#: ../../library/importlib.resources.abc.rst:157 -msgid "" -"*mode* may be 'r' or 'rb' to open as text or binary. Return a handle " -"suitable for reading (same as :attr:`pathlib.Path.open`)." +msgid "*mode* may be 'r' or 'rb' to open as text or binary. Return a handle suitable for reading (same as :attr:`pathlib.Path.open`)." msgstr "" -#: ../../library/importlib.resources.abc.rst:160 -msgid "" -"When opening as text, accepts encoding parameters such as those accepted " -"by :class:`io.TextIOWrapper`." +msgid "When opening as text, accepts encoding parameters such as those accepted by :class:`io.TextIOWrapper`." msgstr "" -#: ../../library/importlib.resources.abc.rst:165 msgid "Read contents of self as bytes." msgstr "" -#: ../../library/importlib.resources.abc.rst:169 msgid "Read contents of self as text." msgstr "" -#: ../../library/importlib.resources.abc.rst:174 -msgid "" -"An abstract base class for resource readers capable of serving " -"the :meth:`importlib.resources.files` interface. " -"Subclasses :class:`ResourceReader` and provides concrete implementations of " -"the :class:`!ResourceReader`'s abstract methods. Therefore, any loader " -"supplying :class:`!TraversableResources` also supplies :class:`!" -"ResourceReader`." +msgid "An abstract base class for resource readers capable of serving the :meth:`importlib.resources.files` interface. Subclasses :class:`ResourceReader` and provides concrete implementations of the :class:`!ResourceReader`'s abstract methods. Therefore, any loader supplying :class:`!TraversableResources` also supplies :class:`!ResourceReader`." msgstr "" -#: ../../library/importlib.resources.abc.rst:181 -msgid "" -"Loaders that wish to support resource reading are expected to implement this " -"interface." +msgid "Loaders that wish to support resource reading are expected to implement this interface." msgstr "" -#: ../../library/importlib.resources.abc.rst:187 -msgid "" -"Returns a :class:`importlib.resources.abc.Traversable` object for the loaded " -"package." +msgid "Returns a :class:`importlib.resources.abc.Traversable` object for the loaded package." msgstr "" diff --git a/library/importlib.resources.po b/library/importlib.resources.po index c8cb0b2e..31a1cf16 100644 --- a/library/importlib.resources.po +++ b/library/importlib.resources.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2022-11-05 19:49+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,335 +23,169 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/importlib.resources.rst:2 -msgid "" -":mod:`!importlib.resources` -- Package resource reading, opening and access" +msgid ":mod:`!importlib.resources` -- Package resource reading, opening and access" msgstr "" -#: ../../library/importlib.resources.rst:7 msgid "**Source code:** :source:`Lib/importlib/resources/__init__.py`" msgstr "" -#: ../../library/importlib.resources.rst:13 -msgid "" -"This module leverages Python's import system to provide access to " -"*resources* within *packages*." +msgid "This module leverages Python's import system to provide access to *resources* within *packages*." +msgstr "" + +msgid "\"Resources\" are file-like resources associated with a module or package in Python. The resources may be contained directly in a package, within a subdirectory contained in that package, or adjacent to modules outside a package. Resources may be text or binary. As a result, a package's Python module sources (.py), compilation artifacts (pycache), and installation artifacts (like :func:`reserved filenames ` in directories) are technically de-facto resources of that package. In practice, however, resources are primarily those non-Python artifacts exposed specifically by the package author." msgstr "" -#: ../../library/importlib.resources.rst:16 -msgid "" -"\"Resources\" are file-like resources associated with a module or package in " -"Python. The resources may be contained directly in a package, within a " -"subdirectory contained in that package, or adjacent to modules outside a " -"package. Resources may be text or binary. As a result, a package's Python " -"module sources (.py), compilation artifacts (pycache), and installation " -"artifacts (like :func:`reserved filenames ` in " -"directories) are technically de-facto resources of that package. In " -"practice, however, resources are primarily those non-Python artifacts " -"exposed specifically by the package author." -msgstr "" - -#: ../../library/importlib.resources.rst:26 msgid "Resources can be opened or read in either binary or text mode." msgstr "" -#: ../../library/importlib.resources.rst:28 -msgid "" -"Resources are roughly akin to files inside directories, though it's " -"important to keep in mind that this is just a metaphor. Resources and " -"packages **do not** have to exist as physical files and directories on the " -"file system: for example, a package and its resources can be imported from a " -"zip file using :py:mod:`zipimport`." +msgid "Resources are roughly akin to files inside directories, though it's important to keep in mind that this is just a metaphor. Resources and packages **do not** have to exist as physical files and directories on the file system: for example, a package and its resources can be imported from a zip file using :py:mod:`zipimport`." msgstr "" -#: ../../library/importlib.resources.rst:36 -msgid "" -":mod:`importlib.resources` follows the same security model as the built-" -"in :func:`open` function. Passing untrusted inputs to the functions in this " -"module is unsafe." +msgid ":mod:`importlib.resources` follows the same security model as the built-in :func:`open` function. Passing untrusted inputs to the functions in this module is unsafe." msgstr "" -#: ../../library/importlib.resources.rst:42 -msgid "" -"The standalone backport of this module provides more information on `using " -"importlib.resources `_ and `migrating from pkg_resources to importlib.resources " -"`_." +msgid "The standalone backport of this module provides more information on `using importlib.resources `_ and `migrating from pkg_resources to importlib.resources `_." msgstr "" -#: ../../library/importlib.resources.rst:48 -msgid "" -":class:`Loaders ` that wish to support resource " -"reading should implement a ``get_resource_reader(fullname)`` method as " -"specified by :class:`importlib.resources.abc.ResourceReader`." +msgid ":class:`Loaders ` that wish to support resource reading should implement a ``get_resource_reader(fullname)`` method as specified by :class:`importlib.resources.abc.ResourceReader`." msgstr "" -#: ../../library/importlib.resources.rst:54 -msgid "" -"Represents an anchor for resources, either a :class:`module object " -"` or a module name as a string. Defined as ``Union[str, " -"ModuleType]``." +msgid "Represents an anchor for resources, either a :class:`module object ` or a module name as a string. Defined as ``Union[str, ModuleType]``." msgstr "" -#: ../../library/importlib.resources.rst:60 -msgid "" -"Returns a :class:`~importlib.resources.abc.Traversable` object representing " -"the resource container (think directory) and its resources (think files). A " -"Traversable may contain other containers (think subdirectories)." +msgid "Returns a :class:`~importlib.resources.abc.Traversable` object representing the resource container (think directory) and its resources (think files). A Traversable may contain other containers (think subdirectories)." msgstr "" -#: ../../library/importlib.resources.rst:65 -msgid "" -"*anchor* is an optional :class:`Anchor`. If the anchor is a package, " -"resources are resolved from that package. If a module, resources are " -"resolved adjacent to that module (in the same package or the package root). " -"If the anchor is omitted, the caller's module is used." +msgid "*anchor* is an optional :class:`Anchor`. If the anchor is a package, resources are resolved from that package. If a module, resources are resolved adjacent to that module (in the same package or the package root). If the anchor is omitted, the caller's module is used." msgstr "" -#: ../../library/importlib.resources.rst:73 -msgid "" -"*package* parameter was renamed to *anchor*. *anchor* can now be a non-" -"package module and if omitted will default to the caller's module. *package* " -"is still accepted for compatibility but will raise " -"a :exc:`DeprecationWarning`. Consider passing the anchor positionally or " -"using ``importlib_resources >= 5.10`` for a compatible interface on older " -"Pythons." +msgid "*package* parameter was renamed to *anchor*. *anchor* can now be a non-package module and if omitted will default to the caller's module. *package* is still accepted for compatibility but will raise a :exc:`DeprecationWarning`. Consider passing the anchor positionally or using ``importlib_resources >= 5.10`` for a compatible interface on older Pythons." msgstr "" -#: ../../library/importlib.resources.rst:83 -msgid "" -"Given a :class:`~importlib.resources.abc.Traversable` object representing a " -"file or directory, typically from :func:`importlib.resources.files`, return " -"a context manager for use in a :keyword:`with` statement. The context " -"manager provides a :class:`pathlib.Path` object." +msgid "Given a :class:`~importlib.resources.abc.Traversable` object representing a file or directory, typically from :func:`importlib.resources.files`, return a context manager for use in a :keyword:`with` statement. The context manager provides a :class:`pathlib.Path` object." msgstr "" -#: ../../library/importlib.resources.rst:88 -msgid "" -"Exiting the context manager cleans up any temporary file or directory " -"created when the resource was extracted from e.g. a zip file." +msgid "Exiting the context manager cleans up any temporary file or directory created when the resource was extracted from e.g. a zip file." msgstr "" -#: ../../library/importlib.resources.rst:91 -msgid "" -"Use ``as_file`` when the Traversable methods (``read_text``, etc) are " -"insufficient and an actual file or directory on the file system is required." +msgid "Use ``as_file`` when the Traversable methods (``read_text``, etc) are insufficient and an actual file or directory on the file system is required." msgstr "" -#: ../../library/importlib.resources.rst:97 msgid "Added support for *traversable* representing a directory." msgstr "" -#: ../../library/importlib.resources.rst:104 msgid "Functional API" msgstr "" -#: ../../library/importlib.resources.rst:106 -msgid "" -"A set of simplified, backwards-compatible helpers is available. These allow " -"common operations in a single function call." +msgid "A set of simplified, backwards-compatible helpers is available. These allow common operations in a single function call." msgstr "" -#: ../../library/importlib.resources.rst:109 msgid "For all the following functions:" msgstr "" -#: ../../library/importlib.resources.rst:111 -msgid "" -"*anchor* is an :class:`~importlib.resources.Anchor`, as " -"in :func:`~importlib.resources.files`. Unlike in ``files``, it may not be " -"omitted." +msgid "*anchor* is an :class:`~importlib.resources.Anchor`, as in :func:`~importlib.resources.files`. Unlike in ``files``, it may not be omitted." msgstr "" -#: ../../library/importlib.resources.rst:115 -msgid "" -"*path_names* are components of a resource's path name, relative to the " -"anchor. For example, to get the text of resource named ``info.txt``, use::" +msgid "*path_names* are components of a resource's path name, relative to the anchor. For example, to get the text of resource named ``info.txt``, use::" msgstr "" -#: ../../library/importlib.resources.rst:119 msgid "importlib.resources.read_text(my_module, \"info.txt\")" msgstr "" -#: ../../library/importlib.resources.rst:121 -msgid "" -"Like :meth:`Traversable.joinpath `, The " -"individual components should use forward slashes (``/``) as path separators. " -"For example, the following are equivalent::" +msgid "Like :meth:`Traversable.joinpath `, The individual components should use forward slashes (``/``) as path separators. For example, the following are equivalent::" msgstr "" -#: ../../library/importlib.resources.rst:126 msgid "" "importlib.resources.read_binary(my_module, \"pics/painting.png\")\n" "importlib.resources.read_binary(my_module, \"pics\", \"painting.png\")" msgstr "" -#: ../../library/importlib.resources.rst:129 -msgid "" -"For backward compatibility reasons, functions that read text require an " -"explicit *encoding* argument if multiple *path_names* are given. For " -"example, to get the text of ``info/chapter1.txt``, use::" +msgid "For backward compatibility reasons, functions that read text require an explicit *encoding* argument if multiple *path_names* are given. For example, to get the text of ``info/chapter1.txt``, use::" msgstr "" -#: ../../library/importlib.resources.rst:133 msgid "" "importlib.resources.read_text(my_module, \"info\", \"chapter1.txt\",\n" " encoding='utf-8')" msgstr "" -#: ../../library/importlib.resources.rst:138 msgid "Open the named resource for binary reading." msgstr "" -#: ../../library/importlib.resources.rst:140 -#: ../../library/importlib.resources.rst:183 -#: ../../library/importlib.resources.rst:231 -#: ../../library/importlib.resources.rst:247 -#: ../../library/importlib.resources.rst:265 -msgid "" -"See :ref:`the introduction ` for details on " -"*anchor* and *path_names*." +msgid "See :ref:`the introduction ` for details on *anchor* and *path_names*." msgstr "" -#: ../../library/importlib.resources.rst:143 -msgid "" -"This function returns a :class:`~typing.BinaryIO` object, that is, a binary " -"stream open for reading." +msgid "This function returns a :class:`~typing.BinaryIO` object, that is, a binary stream open for reading." msgstr "" -#: ../../library/importlib.resources.rst:146 -#: ../../library/importlib.resources.rst:170 -#: ../../library/importlib.resources.rst:186 -#: ../../library/importlib.resources.rst:207 -#: ../../library/importlib.resources.rst:234 -#: ../../library/importlib.resources.rst:250 -#: ../../library/importlib.resources.rst:268 msgid "This function is roughly equivalent to::" msgstr "" -#: ../../library/importlib.resources.rst:148 msgid "files(anchor).joinpath(*path_names).open('rb')" msgstr "" -#: ../../library/importlib.resources.rst:150 -#: ../../library/importlib.resources.rst:190 -#: ../../library/importlib.resources.rst:238 -#: ../../library/importlib.resources.rst:254 msgid "Multiple *path_names* are accepted." msgstr "" -#: ../../library/importlib.resources.rst:156 -msgid "" -"Open the named resource for text reading. By default, the contents are read " -"as strict UTF-8." +msgid "Open the named resource for text reading. By default, the contents are read as strict UTF-8." msgstr "" -#: ../../library/importlib.resources.rst:159 -#: ../../library/importlib.resources.rst:199 -msgid "" -"See :ref:`the introduction ` for details on " -"*anchor* and *path_names*. *encoding* and *errors* have the same meaning as " -"in built-in :func:`open`." +msgid "See :ref:`the introduction ` for details on *anchor* and *path_names*. *encoding* and *errors* have the same meaning as in built-in :func:`open`." msgstr "" -#: ../../library/importlib.resources.rst:163 -#: ../../library/importlib.resources.rst:203 -msgid "" -"For backward compatibility reasons, the *encoding* argument must be given " -"explicitly if there are multiple *path_names*. This limitation is scheduled " -"to be removed in Python 3.15." +msgid "For backward compatibility reasons, the *encoding* argument must be given explicitly if there are multiple *path_names*. This limitation is scheduled to be removed in Python 3.15." msgstr "" -#: ../../library/importlib.resources.rst:167 -msgid "" -"This function returns a :class:`~typing.TextIO` object, that is, a text " -"stream open for reading." +msgid "This function returns a :class:`~typing.TextIO` object, that is, a text stream open for reading." msgstr "" -#: ../../library/importlib.resources.rst:172 msgid "files(anchor).joinpath(*path_names).open('r', encoding=encoding)" msgstr "" -#: ../../library/importlib.resources.rst:174 -#: ../../library/importlib.resources.rst:211 -msgid "" -"Multiple *path_names* are accepted. *encoding* and *errors* must be given as " -"keyword arguments." +msgid "Multiple *path_names* are accepted. *encoding* and *errors* must be given as keyword arguments." msgstr "" -#: ../../library/importlib.resources.rst:181 msgid "Read and return the contents of the named resource as :class:`bytes`." msgstr "" -#: ../../library/importlib.resources.rst:188 msgid "files(anchor).joinpath(*path_names).read_bytes()" msgstr "" -#: ../../library/importlib.resources.rst:196 -msgid "" -"Read and return the contents of the named resource as :class:`str`. By " -"default, the contents are read as strict UTF-8." +msgid "Read and return the contents of the named resource as :class:`str`. By default, the contents are read as strict UTF-8." msgstr "" -#: ../../library/importlib.resources.rst:209 msgid "files(anchor).joinpath(*path_names).read_text(encoding=encoding)" msgstr "" -#: ../../library/importlib.resources.rst:218 -msgid "" -"Provides the path to the *resource* as an actual file system path. This " -"function returns a context manager for use in a :keyword:`with` statement. " -"The context manager provides a :class:`pathlib.Path` object." +msgid "Provides the path to the *resource* as an actual file system path. This function returns a context manager for use in a :keyword:`with` statement. The context manager provides a :class:`pathlib.Path` object." msgstr "" -#: ../../library/importlib.resources.rst:222 -msgid "" -"Exiting the context manager cleans up any temporary files created, e.g. when " -"the resource needs to be extracted from a zip file." +msgid "Exiting the context manager cleans up any temporary files created, e.g. when the resource needs to be extracted from a zip file." msgstr "" -#: ../../library/importlib.resources.rst:225 -msgid "" -"For example, the :meth:`~pathlib.Path.stat` method requires an actual file " -"system path; it can be used like this::" +msgid "For example, the :meth:`~pathlib.Path.stat` method requires an actual file system path; it can be used like this::" msgstr "" -#: ../../library/importlib.resources.rst:228 msgid "" "with importlib.resources.path(anchor, \"resource.txt\") as fspath:\n" " result = fspath.stat()" msgstr "" -#: ../../library/importlib.resources.rst:236 msgid "as_file(files(anchor).joinpath(*path_names))" msgstr "" -#: ../../library/importlib.resources.rst:244 -msgid "" -"Return ``True`` if the named resource exists, otherwise ``False``. This " -"function does not consider directories to be resources." +msgid "Return ``True`` if the named resource exists, otherwise ``False``. This function does not consider directories to be resources." msgstr "" -#: ../../library/importlib.resources.rst:252 msgid "files(anchor).joinpath(*path_names).is_file()" msgstr "" -#: ../../library/importlib.resources.rst:260 -msgid "" -"Return an iterable over the named items within the package or path. The " -"iterable returns names of resources (e.g. files) and non-resources (e.g. " -"directories) as :class:`str`. The iterable does not recurse into " -"subdirectories." +msgid "Return an iterable over the named items within the package or path. The iterable returns names of resources (e.g. files) and non-resources (e.g. directories) as :class:`str`. The iterable does not recurse into subdirectories." msgstr "" -#: ../../library/importlib.resources.rst:270 msgid "" "for resource in files(anchor).joinpath(*path_names).iterdir():\n" " yield resource.name" msgstr "" -#: ../../library/importlib.resources.rst:273 -msgid "" -"Prefer ``iterdir()`` as above, which offers more control over the results " -"and richer functionality." +msgid "Prefer ``iterdir()`` as above, which offers more control over the results and richer functionality." msgstr "" diff --git a/library/index.po b/library/index.po index 10a05e12..59036b9c 100644 --- a/library/index.po +++ b/library/index.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:08+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,44 +21,17 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/index.rst:5 msgid "The Python Standard Library" msgstr "" -#: ../../library/index.rst:7 -msgid "" -"While :ref:`reference-index` describes the exact syntax and semantics of the " -"Python language, this library reference manual describes the standard " -"library that is distributed with Python. It also describes some of the " -"optional components that are commonly included in Python distributions." +msgid "While :ref:`reference-index` describes the exact syntax and semantics of the Python language, this library reference manual describes the standard library that is distributed with Python. It also describes some of the optional components that are commonly included in Python distributions." msgstr "" -#: ../../library/index.rst:13 -msgid "" -"Python's standard library is very extensive, offering a wide range of " -"facilities as indicated by the long table of contents listed below. The " -"library contains built-in modules (written in C) that provide access to " -"system functionality such as file I/O that would otherwise be inaccessible " -"to Python programmers, as well as modules written in Python that provide " -"standardized solutions for many problems that occur in everyday programming. " -"Some of these modules are explicitly designed to encourage and enhance the " -"portability of Python programs by abstracting away platform-specifics into " -"platform-neutral APIs." +msgid "Python's standard library is very extensive, offering a wide range of facilities as indicated by the long table of contents listed below. The library contains built-in modules (written in C) that provide access to system functionality such as file I/O that would otherwise be inaccessible to Python programmers, as well as modules written in Python that provide standardized solutions for many problems that occur in everyday programming. Some of these modules are explicitly designed to encourage and enhance the portability of Python programs by abstracting away platform-specifics into platform-neutral APIs." msgstr "" -#: ../../library/index.rst:23 -msgid "" -"The Python installers for the Windows platform usually include the entire " -"standard library and often also include many additional components. For Unix-" -"like operating systems Python is normally provided as a collection of " -"packages, so it may be necessary to use the packaging tools provided with " -"the operating system to obtain some or all of the optional components." +msgid "The Python installers for the Windows platform usually include the entire standard library and often also include many additional components. For Unix-like operating systems Python is normally provided as a collection of packages, so it may be necessary to use the packaging tools provided with the operating system to obtain some or all of the optional components." msgstr "" -#: ../../library/index.rst:30 -msgid "" -"In addition to the standard library, there is an active collection of " -"hundreds of thousands of components (from individual programs and modules to " -"packages and entire application development frameworks), available from the " -"`Python Package Index `_." +msgid "In addition to the standard library, there is an active collection of hundreds of thousands of components (from individual programs and modules to packages and entire application development frameworks), available from the `Python Package Index `_." msgstr "" diff --git a/library/inspect.po b/library/inspect.po index 5d178303..b01c697e 100644 --- a/library/inspect.po +++ b/library/inspect.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:08+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,758 +24,513 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/inspect.rst:2 msgid ":mod:`!inspect` --- Inspect live objects" msgstr "" -#: ../../library/inspect.rst:15 msgid "**Source code:** :source:`Lib/inspect.py`" msgstr "" -#: ../../library/inspect.rst:19 -msgid "" -"The :mod:`!inspect` module provides several useful functions to help get " -"information about live objects such as modules, classes, methods, functions, " -"tracebacks, frame objects, and code objects. For example, it can help you " -"examine the contents of a class, retrieve the source code of a method, " -"extract and format the argument list for a function, or get all the " -"information you need to display a detailed traceback." +msgid "The :mod:`!inspect` module provides several useful functions to help get information about live objects such as modules, classes, methods, functions, tracebacks, frame objects, and code objects. For example, it can help you examine the contents of a class, retrieve the source code of a method, extract and format the argument list for a function, or get all the information you need to display a detailed traceback." msgstr "" -#: ../../library/inspect.rst:26 -msgid "" -"There are four main kinds of services provided by this module: type " -"checking, getting source code, inspecting classes and functions, and " -"examining the interpreter stack." +msgid "There are four main kinds of services provided by this module: type checking, getting source code, inspecting classes and functions, and examining the interpreter stack." msgstr "" -#: ../../library/inspect.rst:34 msgid "Types and members" msgstr "" -#: ../../library/inspect.rst:36 -msgid "" -"The :func:`getmembers` function retrieves the members of an object such as a " -"class or module. The functions whose names begin with \"is\" are mainly " -"provided as convenient choices for the second argument " -"to :func:`getmembers`. They also help you determine when you can expect to " -"find the following special attributes (see :ref:`import-mod-attrs` for " -"module attributes):" +msgid "The :func:`getmembers` function retrieves the members of an object such as a class or module. The functions whose names begin with \"is\" are mainly provided as convenient choices for the second argument to :func:`getmembers`. They also help you determine when you can expect to find the following special attributes (see :ref:`import-mod-attrs` for module attributes):" msgstr "" -#: ../../library/inspect.rst:46 msgid "Type" msgstr "" -#: ../../library/inspect.rst:46 msgid "Attribute" msgstr "" -#: ../../library/inspect.rst:46 msgid "Description" msgstr "" -#: ../../library/inspect.rst:48 msgid "class" msgstr "" -#: ../../library/inspect.rst:48 ../../library/inspect.rst:63 -#: ../../library/inspect.rst:81 ../../library/inspect.rst:301 msgid "__doc__" msgstr "" -#: ../../library/inspect.rst:48 ../../library/inspect.rst:63 -#: ../../library/inspect.rst:81 ../../library/inspect.rst:301 msgid "documentation string" msgstr "" -#: ../../library/inspect.rst:50 ../../library/inspect.rst:65 -#: ../../library/inspect.rst:83 ../../library/inspect.rst:248 -#: ../../library/inspect.rst:265 ../../library/inspect.rst:281 -#: ../../library/inspect.rst:303 msgid "__name__" msgstr "" -#: ../../library/inspect.rst:50 msgid "name with which this class was defined" msgstr "" -#: ../../library/inspect.rst:53 ../../library/inspect.rst:68 -#: ../../library/inspect.rst:86 ../../library/inspect.rst:250 -#: ../../library/inspect.rst:267 ../../library/inspect.rst:283 -#: ../../library/inspect.rst:306 msgid "__qualname__" msgstr "" -#: ../../library/inspect.rst:53 ../../library/inspect.rst:68 -#: ../../library/inspect.rst:86 ../../library/inspect.rst:250 -#: ../../library/inspect.rst:267 ../../library/inspect.rst:283 -#: ../../library/inspect.rst:306 msgid "qualified name" msgstr "" -#: ../../library/inspect.rst:55 ../../library/inspect.rst:78 -#: ../../library/inspect.rst:116 msgid "__module__" msgstr "" -#: ../../library/inspect.rst:55 msgid "name of module in which this class was defined" msgstr "" -#: ../../library/inspect.rst:58 ../../library/inspect.rst:111 msgid "__type_params__" msgstr "" -#: ../../library/inspect.rst:58 -msgid "" -"A tuple containing the :ref:`type parameters ` of a generic " -"class" +msgid "A tuple containing the :ref:`type parameters ` of a generic class" msgstr "" -#: ../../library/inspect.rst:63 msgid "method" msgstr "" -#: ../../library/inspect.rst:65 msgid "name with which this method was defined" msgstr "" -#: ../../library/inspect.rst:70 msgid "__func__" msgstr "" -#: ../../library/inspect.rst:70 msgid "function object containing implementation of method" msgstr "" -#: ../../library/inspect.rst:74 ../../library/inspect.rst:308 msgid "__self__" msgstr "" -#: ../../library/inspect.rst:74 msgid "instance to which this method is bound, or ``None``" msgstr "" -#: ../../library/inspect.rst:78 msgid "name of module in which this method was defined" msgstr "" -#: ../../library/inspect.rst:81 msgid "function" msgstr "" -#: ../../library/inspect.rst:83 msgid "name with which this function was defined" msgstr "" -#: ../../library/inspect.rst:88 msgid "__code__" msgstr "" -#: ../../library/inspect.rst:88 msgid "code object containing compiled function :term:`bytecode`" msgstr "" -#: ../../library/inspect.rst:92 msgid "__defaults__" msgstr "" -#: ../../library/inspect.rst:92 msgid "tuple of any default values for positional or keyword parameters" msgstr "" -#: ../../library/inspect.rst:96 msgid "__kwdefaults__" msgstr "" -#: ../../library/inspect.rst:96 msgid "mapping of any default values for keyword-only parameters" msgstr "" -#: ../../library/inspect.rst:100 msgid "__globals__" msgstr "" -#: ../../library/inspect.rst:100 msgid "global namespace in which this function was defined" msgstr "" -#: ../../library/inspect.rst:103 msgid "__builtins__" msgstr "" -#: ../../library/inspect.rst:103 msgid "builtins namespace" msgstr "" -#: ../../library/inspect.rst:105 msgid "__annotations__" msgstr "" -#: ../../library/inspect.rst:105 -msgid "" -"mapping of parameters names to annotations; ``\"return\"`` key is reserved " -"for return annotations." +msgid "mapping of parameters names to annotations; ``\"return\"`` key is reserved for return annotations." msgstr "" -#: ../../library/inspect.rst:111 -msgid "" -"A tuple containing the :ref:`type parameters ` of a generic " -"function" +msgid "A tuple containing the :ref:`type parameters ` of a generic function" msgstr "" -#: ../../library/inspect.rst:116 msgid "name of module in which this function was defined" msgstr "" -#: ../../library/inspect.rst:119 msgid "traceback" msgstr "" -#: ../../library/inspect.rst:119 msgid "tb_frame" msgstr "" -#: ../../library/inspect.rst:119 msgid "frame object at this level" msgstr "" -#: ../../library/inspect.rst:122 msgid "tb_lasti" msgstr "" -#: ../../library/inspect.rst:122 ../../library/inspect.rst:144 msgid "index of last attempted instruction in bytecode" msgstr "" -#: ../../library/inspect.rst:125 msgid "tb_lineno" msgstr "" -#: ../../library/inspect.rst:125 ../../library/inspect.rst:147 msgid "current line number in Python source code" msgstr "" -#: ../../library/inspect.rst:128 msgid "tb_next" msgstr "" -#: ../../library/inspect.rst:128 msgid "next inner traceback object (called by this level)" msgstr "" -#: ../../library/inspect.rst:132 ../../library/inspect.rst:252 -#: ../../library/inspect.rst:272 ../../library/inspect.rst:288 msgid "frame" msgstr "" -#: ../../library/inspect.rst:132 msgid "f_back" msgstr "" -#: ../../library/inspect.rst:132 msgid "next outer frame object (this frame's caller)" msgstr "" -#: ../../library/inspect.rst:135 msgid "f_builtins" msgstr "" -#: ../../library/inspect.rst:135 msgid "builtins namespace seen by this frame" msgstr "" -#: ../../library/inspect.rst:138 msgid "f_code" msgstr "" -#: ../../library/inspect.rst:138 msgid "code object being executed in this frame" msgstr "" -#: ../../library/inspect.rst:141 msgid "f_globals" msgstr "" -#: ../../library/inspect.rst:141 msgid "global namespace seen by this frame" msgstr "" -#: ../../library/inspect.rst:144 msgid "f_lasti" msgstr "" -#: ../../library/inspect.rst:147 msgid "f_lineno" msgstr "" -#: ../../library/inspect.rst:150 msgid "f_locals" msgstr "" -#: ../../library/inspect.rst:150 msgid "local namespace seen by this frame" msgstr "" -#: ../../library/inspect.rst:153 msgid "f_generator" msgstr "" -#: ../../library/inspect.rst:153 -msgid "" -"returns the generator or coroutine object that owns this frame, or ``None`` " -"if the frame is of a regular function" +msgid "returns the generator or coroutine object that owns this frame, or ``None`` if the frame is of a regular function" msgstr "" -#: ../../library/inspect.rst:159 msgid "f_trace" msgstr "" -#: ../../library/inspect.rst:159 msgid "tracing function for this frame, or ``None``" msgstr "" -#: ../../library/inspect.rst:162 msgid "f_trace_lines" msgstr "" -#: ../../library/inspect.rst:162 -msgid "" -"indicate whether a tracing event is triggered for each source source line" +msgid "indicate whether a tracing event is triggered for each source source line" msgstr "" -#: ../../library/inspect.rst:167 msgid "f_trace_opcodes" msgstr "" -#: ../../library/inspect.rst:167 msgid "indicate whether per-opcode events are requested" msgstr "" -#: ../../library/inspect.rst:171 msgid "clear()" msgstr "" -#: ../../library/inspect.rst:171 msgid "used to clear all references to local variables" msgstr "" -#: ../../library/inspect.rst:175 ../../library/inspect.rst:259 -#: ../../library/inspect.rst:279 ../../library/inspect.rst:295 msgid "code" msgstr "" -#: ../../library/inspect.rst:175 msgid "co_argcount" msgstr "" -#: ../../library/inspect.rst:175 -msgid "" -"number of arguments (not including keyword only arguments, \\* or \\*\\* " -"args)" +msgid "number of arguments (not including keyword only arguments, \\* or \\*\\* args)" msgstr "" -#: ../../library/inspect.rst:180 msgid "co_code" msgstr "" -#: ../../library/inspect.rst:180 msgid "string of raw compiled bytecode" msgstr "" -#: ../../library/inspect.rst:183 msgid "co_cellvars" msgstr "" -#: ../../library/inspect.rst:183 msgid "tuple of names of cell variables (referenced by containing scopes)" msgstr "" -#: ../../library/inspect.rst:187 msgid "co_consts" msgstr "" -#: ../../library/inspect.rst:187 msgid "tuple of constants used in the bytecode" msgstr "" -#: ../../library/inspect.rst:190 msgid "co_filename" msgstr "" -#: ../../library/inspect.rst:190 msgid "name of file in which this code object was created" msgstr "" -#: ../../library/inspect.rst:194 msgid "co_firstlineno" msgstr "" -#: ../../library/inspect.rst:194 msgid "number of first line in Python source code" msgstr "" -#: ../../library/inspect.rst:197 msgid "co_flags" msgstr "" -#: ../../library/inspect.rst:197 -msgid "" -"bitmap of ``CO_*`` flags, read more :ref:`here `" +msgid "bitmap of ``CO_*`` flags, read more :ref:`here `" msgstr "" -#: ../../library/inspect.rst:201 msgid "co_lnotab" msgstr "" -#: ../../library/inspect.rst:201 msgid "encoded mapping of line numbers to bytecode indices" msgstr "" -#: ../../library/inspect.rst:205 msgid "co_freevars" msgstr "" -#: ../../library/inspect.rst:205 msgid "tuple of names of free variables (referenced via a function's closure)" msgstr "" -#: ../../library/inspect.rst:209 msgid "co_posonlyargcount" msgstr "" -#: ../../library/inspect.rst:209 msgid "number of positional only arguments" msgstr "" -#: ../../library/inspect.rst:212 msgid "co_kwonlyargcount" msgstr "" -#: ../../library/inspect.rst:212 msgid "number of keyword only arguments (not including \\*\\* arg)" msgstr "" -#: ../../library/inspect.rst:216 msgid "co_name" msgstr "" -#: ../../library/inspect.rst:216 msgid "name with which this code object was defined" msgstr "" -#: ../../library/inspect.rst:219 msgid "co_qualname" msgstr "" -#: ../../library/inspect.rst:219 msgid "fully qualified name with which this code object was defined" msgstr "" -#: ../../library/inspect.rst:223 msgid "co_names" msgstr "" -#: ../../library/inspect.rst:223 msgid "tuple of names other than arguments and function locals" msgstr "" -#: ../../library/inspect.rst:227 msgid "co_nlocals" msgstr "" -#: ../../library/inspect.rst:227 msgid "number of local variables" msgstr "" -#: ../../library/inspect.rst:229 msgid "co_stacksize" msgstr "" -#: ../../library/inspect.rst:229 msgid "virtual machine stack space required" msgstr "" -#: ../../library/inspect.rst:232 msgid "co_varnames" msgstr "" -#: ../../library/inspect.rst:232 msgid "tuple of names of arguments and local variables" msgstr "" -#: ../../library/inspect.rst:236 msgid "co_lines()" msgstr "" -#: ../../library/inspect.rst:236 msgid "returns an iterator that yields successive bytecode ranges" msgstr "" -#: ../../library/inspect.rst:240 msgid "co_positions()" msgstr "" -#: ../../library/inspect.rst:240 -msgid "" -"returns an iterator of source code positions for each bytecode instruction" +msgid "returns an iterator of source code positions for each bytecode instruction" msgstr "" -#: ../../library/inspect.rst:244 msgid "replace()" msgstr "" -#: ../../library/inspect.rst:244 msgid "returns a copy of the code object with new values" msgstr "" -#: ../../library/inspect.rst:248 msgid "generator" msgstr "" -#: ../../library/inspect.rst:248 ../../library/inspect.rst:265 -#: ../../library/inspect.rst:281 msgid "name" msgstr "" -#: ../../library/inspect.rst:252 msgid "gi_frame" msgstr "" -#: ../../library/inspect.rst:254 msgid "gi_running" msgstr "" -#: ../../library/inspect.rst:254 ../../library/inspect.rst:274 msgid "is the generator running?" msgstr "" -#: ../../library/inspect.rst:256 msgid "gi_suspended" msgstr "" -#: ../../library/inspect.rst:256 ../../library/inspect.rst:276 msgid "is the generator suspended?" msgstr "" -#: ../../library/inspect.rst:259 msgid "gi_code" msgstr "" -#: ../../library/inspect.rst:261 msgid "gi_yieldfrom" msgstr "" -#: ../../library/inspect.rst:261 msgid "object being iterated by ``yield from``, or ``None``" msgstr "" -#: ../../library/inspect.rst:265 msgid "async generator" msgstr "" -#: ../../library/inspect.rst:269 msgid "ag_await" msgstr "" -#: ../../library/inspect.rst:269 ../../library/inspect.rst:285 msgid "object being awaited on, or ``None``" msgstr "" -#: ../../library/inspect.rst:272 msgid "ag_frame" msgstr "" -#: ../../library/inspect.rst:274 msgid "ag_running" msgstr "" -#: ../../library/inspect.rst:276 msgid "ag_suspended" msgstr "" -#: ../../library/inspect.rst:279 msgid "ag_code" msgstr "" -#: ../../library/inspect.rst:281 msgid "coroutine" msgstr "" -#: ../../library/inspect.rst:285 msgid "cr_await" msgstr "" -#: ../../library/inspect.rst:288 msgid "cr_frame" msgstr "" -#: ../../library/inspect.rst:290 msgid "cr_running" msgstr "" -#: ../../library/inspect.rst:290 msgid "is the coroutine running?" msgstr "" -#: ../../library/inspect.rst:292 msgid "cr_suspended" msgstr "" -#: ../../library/inspect.rst:292 msgid "is the coroutine suspended?" msgstr "" -#: ../../library/inspect.rst:295 msgid "cr_code" msgstr "" -#: ../../library/inspect.rst:297 msgid "cr_origin" msgstr "" -#: ../../library/inspect.rst:297 msgid "where coroutine was created, or ``None``. See |coroutine-origin-link|" msgstr "" -#: ../../library/inspect.rst:301 msgid "builtin" msgstr "" -#: ../../library/inspect.rst:303 msgid "original name of this function or method" msgstr "" -#: ../../library/inspect.rst:308 msgid "instance to which a method is bound, or ``None``" msgstr "" -#: ../../library/inspect.rst:315 msgid "Add ``__qualname__`` and ``gi_yieldfrom`` attributes to generators." msgstr "" -#: ../../library/inspect.rst:317 -msgid "" -"The ``__name__`` attribute of generators is now set from the function name, " -"instead of the code name, and it can now be modified." +msgid "The ``__name__`` attribute of generators is now set from the function name, instead of the code name, and it can now be modified." msgstr "" -#: ../../library/inspect.rst:322 msgid "Add ``cr_origin`` attribute to coroutines." msgstr "" -#: ../../library/inspect.rst:326 msgid "Add ``__builtins__`` attribute to functions." msgstr "" -#: ../../library/inspect.rst:330 msgid "Add ``gi_suspended`` attribute to generators." msgstr "" -#: ../../library/inspect.rst:334 msgid "Add ``cr_suspended`` attribute to coroutines." msgstr "" -#: ../../library/inspect.rst:338 msgid "Add ``ag_suspended`` attribute to async generators." msgstr "" -#: ../../library/inspect.rst:342 msgid "Add ``f_generator`` attribute to frames." msgstr "" -#: ../../library/inspect.rst:346 -msgid "" -"Return all the members of an object in a list of ``(name, value)`` pairs " -"sorted by name. If the optional *predicate* argument—which will be called " -"with the ``value`` object of each member—is supplied, only members for which " -"the predicate returns a true value are included." +msgid "Return all the members of an object in a list of ``(name, value)`` pairs sorted by name. If the optional *predicate* argument—which will be called with the ``value`` object of each member—is supplied, only members for which the predicate returns a true value are included." msgstr "" -#: ../../library/inspect.rst:353 -msgid "" -":func:`getmembers` will only return class attributes defined in the " -"metaclass when the argument is a class and those attributes have been listed " -"in the metaclass' custom :meth:`~object.__dir__`." +msgid ":func:`getmembers` will only return class attributes defined in the metaclass when the argument is a class and those attributes have been listed in the metaclass' custom :meth:`~object.__dir__`." msgstr "" -#: ../../library/inspect.rst:360 -msgid "" -"Return all the members of an object in a list of ``(name, value)`` pairs " -"sorted by name without triggering dynamic lookup via the descriptor " -"protocol, __getattr__ or __getattribute__. Optionally, only return members " -"that satisfy a given predicate." +msgid "Return all the members of an object in a list of ``(name, value)`` pairs sorted by name without triggering dynamic lookup via the descriptor protocol, __getattr__ or __getattribute__. Optionally, only return members that satisfy a given predicate." msgstr "" -#: ../../library/inspect.rst:367 -msgid "" -":func:`getmembers_static` may not be able to retrieve all members that " -"getmembers can fetch (like dynamically created attributes) and may find " -"members that getmembers can't (like descriptors that raise AttributeError). " -"It can also return descriptor objects instead of instance members in some " -"cases." +msgid ":func:`getmembers_static` may not be able to retrieve all members that getmembers can fetch (like dynamically created attributes) and may find members that getmembers can't (like descriptors that raise AttributeError). It can also return descriptor objects instead of instance members in some cases." msgstr "" -#: ../../library/inspect.rst:378 -msgid "" -"Return the name of the module named by the file *path*, without including " -"the names of enclosing packages. The file extension is checked against all " -"of the entries in :func:`importlib.machinery.all_suffixes`. If it matches, " -"the final path component is returned with the extension removed. Otherwise, " -"``None`` is returned." +msgid "Return the name of the module named by the file *path*, without including the names of enclosing packages. The file extension is checked against all of the entries in :func:`importlib.machinery.all_suffixes`. If it matches, the final path component is returned with the extension removed. Otherwise, ``None`` is returned." msgstr "" -#: ../../library/inspect.rst:384 -msgid "" -"Note that this function *only* returns a meaningful name for actual Python " -"modules - paths that potentially refer to Python packages will still return " -"``None``." +msgid "Note that this function *only* returns a meaningful name for actual Python modules - paths that potentially refer to Python packages will still return ``None``." msgstr "" -#: ../../library/inspect.rst:388 msgid "The function is based directly on :mod:`importlib`." msgstr "" -#: ../../library/inspect.rst:394 msgid "Return ``True`` if the object is a module." msgstr "" -#: ../../library/inspect.rst:399 -msgid "" -"Return ``True`` if the object is a class, whether built-in or created in " -"Python code." +msgid "Return ``True`` if the object is a class, whether built-in or created in Python code." msgstr "" -#: ../../library/inspect.rst:402 -msgid "" -"This function returns ``False`` for :ref:`generic aliases ` of classes, such as ``list[int]``." +msgid "This function returns ``False`` for :ref:`generic aliases ` of classes, such as ``list[int]``." msgstr "" -#: ../../library/inspect.rst:408 msgid "Return ``True`` if the object is a bound method written in Python." msgstr "" -#: ../../library/inspect.rst:412 msgid "For example, given this class::" msgstr "" -#: ../../library/inspect.rst:414 msgid "" ">>> class Greeter:\n" "... def say_hello(self):\n" "... print('hello!')" msgstr "" -#: ../../library/inspect.rst:418 -msgid "" -"A bound method (also known as an *instance method*) is created when " -"accessing ``say_hello`` (a :term:`function` defined in the ``Greeter`` " -"namespace) through an instance of the ``Greeter`` class::" +msgid "A bound method (also known as an *instance method*) is created when accessing ``say_hello`` (a :term:`function` defined in the ``Greeter`` namespace) through an instance of the ``Greeter`` class::" msgstr "" -#: ../../library/inspect.rst:422 msgid "" ">>> instance = Greeter()\n" "\n" @@ -787,14 +542,9 @@ msgid "" "False" msgstr "" -#: ../../library/inspect.rst:431 -msgid "" -"Accessing ``say_hello`` through the ``Greeter`` class will return the " -"function itself. For this function, :func:`ismethod` will return ``False``, " -"but :func:`isfunction` will return ``True``::" +msgid "Accessing ``say_hello`` through the ``Greeter`` class will return the function itself. For this function, :func:`ismethod` will return ``False``, but :func:`isfunction` will return ``True``::" msgstr "" -#: ../../library/inspect.rst:435 msgid "" ">>> Greeter.say_hello\n" "\n" @@ -804,112 +554,63 @@ msgid "" "True" msgstr "" -#: ../../library/inspect.rst:442 msgid "See :ref:`typesmethods` for details." msgstr "" -#: ../../library/inspect.rst:447 -msgid "" -"Return ``True`` if the object is a Python function, which includes functions " -"created by a :term:`lambda` expression." +msgid "Return ``True`` if the object is a Python function, which includes functions created by a :term:`lambda` expression." msgstr "" -#: ../../library/inspect.rst:450 msgid "See the note for :func:`~inspect.ismethod` for an example." msgstr "" -#: ../../library/inspect.rst:455 msgid "Return ``True`` if the object is a :term:`package`." msgstr "" -#: ../../library/inspect.rst:462 msgid "Return ``True`` if the object is a Python generator function." msgstr "" -#: ../../library/inspect.rst:464 -msgid "" -"It also returns ``True`` for bound methods created from Python generator " -"functions (see :ref:`typesmethods` for more information)." +msgid "It also returns ``True`` for bound methods created from Python generator functions (see :ref:`typesmethods` for more information)." msgstr "" -#: ../../library/inspect.rst:467 -msgid "" -"Functions wrapped in :func:`functools.partial` now return ``True`` if the " -"wrapped function is a Python generator function." +msgid "Functions wrapped in :func:`functools.partial` now return ``True`` if the wrapped function is a Python generator function." msgstr "" -#: ../../library/inspect.rst:471 -msgid "" -"Functions wrapped in :func:`functools.partialmethod` now return ``True`` if " -"the wrapped function is a Python generator function." +msgid "Functions wrapped in :func:`functools.partialmethod` now return ``True`` if the wrapped function is a Python generator function." msgstr "" -#: ../../library/inspect.rst:477 msgid "Return ``True`` if the object is a generator." msgstr "" -#: ../../library/inspect.rst:482 -msgid "" -"Return ``True`` if the object is a :term:`coroutine function` (a function " -"defined with an :keyword:`async def` syntax), a :func:`functools.partial` " -"wrapping a :term:`coroutine function`, or a sync function marked " -"with :func:`markcoroutinefunction`." +msgid "Return ``True`` if the object is a :term:`coroutine function` (a function defined with an :keyword:`async def` syntax), a :func:`functools.partial` wrapping a :term:`coroutine function`, or a sync function marked with :func:`markcoroutinefunction`." msgstr "" -#: ../../library/inspect.rst:489 -msgid "" -"Functions wrapped in :func:`functools.partial` now return ``True`` if the " -"wrapped function is a :term:`coroutine function`." +msgid "Functions wrapped in :func:`functools.partial` now return ``True`` if the wrapped function is a :term:`coroutine function`." msgstr "" -#: ../../library/inspect.rst:493 -msgid "" -"Sync functions marked with :func:`markcoroutinefunction` now return ``True``." +msgid "Sync functions marked with :func:`markcoroutinefunction` now return ``True``." msgstr "" -#: ../../library/inspect.rst:497 -msgid "" -"Functions wrapped in :func:`functools.partialmethod` now return ``True`` if " -"the wrapped function is a :term:`coroutine function`." +msgid "Functions wrapped in :func:`functools.partialmethod` now return ``True`` if the wrapped function is a :term:`coroutine function`." msgstr "" -#: ../../library/inspect.rst:504 -msgid "" -"Decorator to mark a callable as a :term:`coroutine function` if it would not " -"otherwise be detected by :func:`iscoroutinefunction`." +msgid "Decorator to mark a callable as a :term:`coroutine function` if it would not otherwise be detected by :func:`iscoroutinefunction`." msgstr "" -#: ../../library/inspect.rst:507 -msgid "" -"This may be of use for sync functions that return a :term:`coroutine`, if " -"the function is passed to an API that requires :func:`iscoroutinefunction`." +msgid "This may be of use for sync functions that return a :term:`coroutine`, if the function is passed to an API that requires :func:`iscoroutinefunction`." msgstr "" -#: ../../library/inspect.rst:510 -msgid "" -"When possible, using an :keyword:`async def` function is preferred. Also " -"acceptable is calling the function and testing the return " -"with :func:`iscoroutine`." +msgid "When possible, using an :keyword:`async def` function is preferred. Also acceptable is calling the function and testing the return with :func:`iscoroutine`." msgstr "" -#: ../../library/inspect.rst:519 -msgid "" -"Return ``True`` if the object is a :term:`coroutine` created by " -"an :keyword:`async def` function." +msgid "Return ``True`` if the object is a :term:`coroutine` created by an :keyword:`async def` function." msgstr "" -#: ../../library/inspect.rst:527 -msgid "" -"Return ``True`` if the object can be used in :keyword:`await` expression." +msgid "Return ``True`` if the object can be used in :keyword:`await` expression." msgstr "" -#: ../../library/inspect.rst:529 -msgid "" -"Can also be used to distinguish generator-based coroutines from regular " -"generators:" +msgid "Can also be used to distinguish generator-based coroutines from regular generators:" msgstr "" -#: ../../library/inspect.rst:532 msgid "" "import types\n" "\n" @@ -923,13 +624,9 @@ msgid "" "assert isawaitable(gen_coro())" msgstr "" -#: ../../library/inspect.rst:550 -msgid "" -"Return ``True`` if the object is an :term:`asynchronous generator` function, " -"for example:" +msgid "Return ``True`` if the object is an :term:`asynchronous generator` function, for example:" msgstr "" -#: ../../library/inspect.rst:553 msgid "" ">>> async def agen():\n" "... yield 1\n" @@ -938,259 +635,123 @@ msgid "" "True" msgstr "" -#: ../../library/inspect.rst:563 -msgid "" -"Functions wrapped in :func:`functools.partial` now return ``True`` if the " -"wrapped function is an :term:`asynchronous generator` function." +msgid "Functions wrapped in :func:`functools.partial` now return ``True`` if the wrapped function is an :term:`asynchronous generator` function." msgstr "" -#: ../../library/inspect.rst:567 -msgid "" -"Functions wrapped in :func:`functools.partialmethod` now return ``True`` if " -"the wrapped function is a :term:`asynchronous generator` function." +msgid "Functions wrapped in :func:`functools.partialmethod` now return ``True`` if the wrapped function is a :term:`asynchronous generator` function." msgstr "" -#: ../../library/inspect.rst:573 -msgid "" -"Return ``True`` if the object is an :term:`asynchronous generator iterator` " -"created by an :term:`asynchronous generator` function." +msgid "Return ``True`` if the object is an :term:`asynchronous generator iterator` created by an :term:`asynchronous generator` function." msgstr "" -#: ../../library/inspect.rst:580 msgid "Return ``True`` if the object is a traceback." msgstr "" -#: ../../library/inspect.rst:585 msgid "Return ``True`` if the object is a frame." msgstr "" -#: ../../library/inspect.rst:590 msgid "Return ``True`` if the object is a code." msgstr "" -#: ../../library/inspect.rst:595 -msgid "" -"Return ``True`` if the object is a built-in function or a bound built-in " -"method." +msgid "Return ``True`` if the object is a built-in function or a bound built-in method." msgstr "" -#: ../../library/inspect.rst:600 -msgid "" -"Return ``True`` if the type of object is a :class:`~types.MethodWrapperType`." +msgid "Return ``True`` if the type of object is a :class:`~types.MethodWrapperType`." msgstr "" -#: ../../library/inspect.rst:602 -msgid "" -"These are instances of :class:`~types.MethodWrapperType`, such " -"as :meth:`~object.__str__`, :meth:`~object.__eq__` " -"and :meth:`~object.__repr__`." +msgid "These are instances of :class:`~types.MethodWrapperType`, such as :meth:`~object.__str__`, :meth:`~object.__eq__` and :meth:`~object.__repr__`." msgstr "" -#: ../../library/inspect.rst:610 -msgid "" -"Return ``True`` if the object is a user-defined or built-in function or " -"method." +msgid "Return ``True`` if the object is a user-defined or built-in function or method." msgstr "" -#: ../../library/inspect.rst:615 msgid "Return ``True`` if the object is an abstract base class." msgstr "" -#: ../../library/inspect.rst:620 -msgid "" -"Return ``True`` if the object is a method descriptor, but not " -"if :func:`isclass`, :func:`ismethod` or :func:`isfunction` is true." +msgid "Return ``True`` if the object is a method descriptor, but not if :func:`isclass`, :func:`ismethod` or :func:`isfunction` is true." msgstr "" -#: ../../library/inspect.rst:623 -msgid "" -"This, for example, is true of ``int.__add__``. An object passing this test " -"has a :meth:`~object.__get__` method, but not a :meth:`~object.__set__` " -"method or a :meth:`~object.__delete__` method. Beyond that, the set of " -"attributes varies. A :attr:`~definition.__name__` attribute is usually " -"sensible, and :attr:`~definition.__doc__` often is." +msgid "This, for example, is true of ``int.__add__``. An object passing this test has a :meth:`~object.__get__` method, but not a :meth:`~object.__set__` method or a :meth:`~object.__delete__` method. Beyond that, the set of attributes varies. A :attr:`~definition.__name__` attribute is usually sensible, and :attr:`~definition.__doc__` often is." msgstr "" -#: ../../library/inspect.rst:629 -msgid "" -"Method descriptors that also pass any of the other tests (:func:`!" -"isclass`, :func:`!ismethod` or :func:`!isfunction`) make this function " -"return ``False``, simply because those other tests promise more -- you can, " -"for example, count on having the :attr:`~method.__func__` attribute when an " -"object passes :func:`ismethod`." +msgid "Method descriptors that also pass any of the other tests (:func:`!isclass`, :func:`!ismethod` or :func:`!isfunction`) make this function return ``False``, simply because those other tests promise more -- you can, for example, count on having the :attr:`~method.__func__` attribute when an object passes :func:`ismethod`." msgstr "" -#: ../../library/inspect.rst:635 -msgid "" -"This function no longer incorrectly reports objects " -"with :meth:`~object.__get__` and :meth:`~object.__delete__`, but " -"not :meth:`~object.__set__`, as being method descriptors (such objects are " -"data descriptors, not method descriptors)." +msgid "This function no longer incorrectly reports objects with :meth:`~object.__get__` and :meth:`~object.__delete__`, but not :meth:`~object.__set__`, as being method descriptors (such objects are data descriptors, not method descriptors)." msgstr "" -#: ../../library/inspect.rst:643 -msgid "" -"Return ``True`` if the object is a data descriptor, but not " -"if :func:`isclass`, :func:`ismethod` or :func:`isfunction` is true." +msgid "Return ``True`` if the object is a data descriptor, but not if :func:`isclass`, :func:`ismethod` or :func:`isfunction` is true." msgstr "" -#: ../../library/inspect.rst:646 -msgid "" -"Data descriptors always have a :meth:`~object.__set__` method and/or " -"a :meth:`~object.__delete__` method. Optionally, they may also have " -"a :meth:`~object.__get__` method." +msgid "Data descriptors always have a :meth:`~object.__set__` method and/or a :meth:`~object.__delete__` method. Optionally, they may also have a :meth:`~object.__get__` method." msgstr "" -#: ../../library/inspect.rst:650 -msgid "" -"Examples of data descriptors are :func:`properties `, getsets and " -"member descriptors. Note that for the latter two (defined only in C " -"extension modules), more specific tests are " -"available: :func:`isgetsetdescriptor` and :func:`ismemberdescriptor`, " -"respectively." +msgid "Examples of data descriptors are :func:`properties `, getsets and member descriptors. Note that for the latter two (defined only in C extension modules), more specific tests are available: :func:`isgetsetdescriptor` and :func:`ismemberdescriptor`, respectively." msgstr "" -#: ../../library/inspect.rst:655 -msgid "" -"While data descriptors may also have :attr:`~definition.__name__` " -"and :attr:`!__doc__` attributes (as properties, getsets and member " -"descriptors do), this is not necessarily the case in general." +msgid "While data descriptors may also have :attr:`~definition.__name__` and :attr:`!__doc__` attributes (as properties, getsets and member descriptors do), this is not necessarily the case in general." msgstr "" -#: ../../library/inspect.rst:659 -msgid "" -"This function now reports objects with only a :meth:`~object.__set__` method " -"as being data descriptors (the presence of :meth:`~object.__get__` is no " -"longer required for that). Moreover, objects " -"with :meth:`~object.__delete__`, but not :meth:`~object.__set__`, are now " -"properly recognized as data descriptors as well, which was not the case " -"previously." +msgid "This function now reports objects with only a :meth:`~object.__set__` method as being data descriptors (the presence of :meth:`~object.__get__` is no longer required for that). Moreover, objects with :meth:`~object.__delete__`, but not :meth:`~object.__set__`, are now properly recognized as data descriptors as well, which was not the case previously." msgstr "" -#: ../../library/inspect.rst:668 msgid "Return ``True`` if the object is a getset descriptor." msgstr "" -#: ../../library/inspect.rst:672 -msgid "" -"getsets are attributes defined in extension modules " -"via :c:type:`PyGetSetDef` structures. For Python implementations without " -"such types, this method will always return ``False``." +msgid "getsets are attributes defined in extension modules via :c:type:`PyGetSetDef` structures. For Python implementations without such types, this method will always return ``False``." msgstr "" -#: ../../library/inspect.rst:679 msgid "Return ``True`` if the object is a member descriptor." msgstr "" -#: ../../library/inspect.rst:683 -msgid "" -"Member descriptors are attributes defined in extension modules " -"via :c:type:`PyMemberDef` structures. For Python implementations without " -"such types, this method will always return ``False``." +msgid "Member descriptors are attributes defined in extension modules via :c:type:`PyMemberDef` structures. For Python implementations without such types, this method will always return ``False``." msgstr "" -#: ../../library/inspect.rst:691 msgid "Retrieving source code" msgstr "" -#: ../../library/inspect.rst:695 -msgid "" -"Get the documentation string for an object, cleaned up " -"with :func:`cleandoc`. If the documentation string for an object is not " -"provided and the object is a class, a method, a property or a descriptor, " -"retrieve the documentation string from the inheritance hierarchy. Return " -"``None`` if the documentation string is invalid or missing." +msgid "Get the documentation string for an object, cleaned up with :func:`cleandoc`. If the documentation string for an object is not provided and the object is a class, a method, a property or a descriptor, retrieve the documentation string from the inheritance hierarchy. Return ``None`` if the documentation string is invalid or missing." msgstr "" -#: ../../library/inspect.rst:701 msgid "Documentation strings are now inherited if not overridden." msgstr "" -#: ../../library/inspect.rst:707 -msgid "" -"Return in a single string any lines of comments immediately preceding the " -"object's source code (for a class, function, or method), or at the top of " -"the Python source file (if the object is a module). If the object's source " -"code is unavailable, return ``None``. This could happen if the object has " -"been defined in C or the interactive shell." +msgid "Return in a single string any lines of comments immediately preceding the object's source code (for a class, function, or method), or at the top of the Python source file (if the object is a module). If the object's source code is unavailable, return ``None``. This could happen if the object has been defined in C or the interactive shell." msgstr "" -#: ../../library/inspect.rst:716 -msgid "" -"Return the name of the (text or binary) file in which an object was defined. " -"This will fail with a :exc:`TypeError` if the object is a built-in module, " -"class, or function." +msgid "Return the name of the (text or binary) file in which an object was defined. This will fail with a :exc:`TypeError` if the object is a built-in module, class, or function." msgstr "" -#: ../../library/inspect.rst:723 -msgid "" -"Try to guess which module an object was defined in. Return ``None`` if the " -"module cannot be determined." +msgid "Try to guess which module an object was defined in. Return ``None`` if the module cannot be determined." msgstr "" -#: ../../library/inspect.rst:729 -msgid "" -"Return the name of the Python source file in which an object was defined or " -"``None`` if no way can be identified to get the source. This will fail with " -"a :exc:`TypeError` if the object is a built-in module, class, or function." +msgid "Return the name of the Python source file in which an object was defined or ``None`` if no way can be identified to get the source. This will fail with a :exc:`TypeError` if the object is a built-in module, class, or function." msgstr "" -#: ../../library/inspect.rst:737 -msgid "" -"Return a list of source lines and starting line number for an object. The " -"argument may be a module, class, method, function, traceback, frame, or code " -"object. The source code is returned as a list of the lines corresponding to " -"the object and the line number indicates where in the original source file " -"the first line of code was found. An :exc:`OSError` is raised if the source " -"code cannot be retrieved. A :exc:`TypeError` is raised if the object is a " -"built-in module, class, or function." +msgid "Return a list of source lines and starting line number for an object. The argument may be a module, class, method, function, traceback, frame, or code object. The source code is returned as a list of the lines corresponding to the object and the line number indicates where in the original source file the first line of code was found. An :exc:`OSError` is raised if the source code cannot be retrieved. A :exc:`TypeError` is raised if the object is a built-in module, class, or function." msgstr "" -#: ../../library/inspect.rst:746 ../../library/inspect.rst:760 -msgid "" -":exc:`OSError` is raised instead of :exc:`IOError`, now an alias of the " -"former." +msgid ":exc:`OSError` is raised instead of :exc:`IOError`, now an alias of the former." msgstr "" -#: ../../library/inspect.rst:753 -msgid "" -"Return the text of the source code for an object. The argument may be a " -"module, class, method, function, traceback, frame, or code object. The " -"source code is returned as a single string. An :exc:`OSError` is raised if " -"the source code cannot be retrieved. A :exc:`TypeError` is raised if the " -"object is a built-in module, class, or function." +msgid "Return the text of the source code for an object. The argument may be a module, class, method, function, traceback, frame, or code object. The source code is returned as a single string. An :exc:`OSError` is raised if the source code cannot be retrieved. A :exc:`TypeError` is raised if the object is a built-in module, class, or function." msgstr "" -#: ../../library/inspect.rst:767 -msgid "" -"Clean up indentation from docstrings that are indented to line up with " -"blocks of code." +msgid "Clean up indentation from docstrings that are indented to line up with blocks of code." msgstr "" -#: ../../library/inspect.rst:770 -msgid "" -"All leading whitespace is removed from the first line. Any leading " -"whitespace that can be uniformly removed from the second line onwards is " -"removed. Empty lines at the beginning and end are subsequently removed. " -"Also, all tabs are expanded to spaces." +msgid "All leading whitespace is removed from the first line. Any leading whitespace that can be uniformly removed from the second line onwards is removed. Empty lines at the beginning and end are subsequently removed. Also, all tabs are expanded to spaces." msgstr "" -#: ../../library/inspect.rst:779 msgid "Introspecting callables with the Signature object" msgstr "" -#: ../../library/inspect.rst:783 -msgid "" -"The :class:`Signature` object represents the call signature of a callable " -"object and its return annotation. To retrieve a :class:`!Signature` object, " -"use the :func:`!signature` function." +msgid "The :class:`Signature` object represents the call signature of a callable object and its return annotation. To retrieve a :class:`!Signature` object, use the :func:`!signature` function." msgstr "" -#: ../../library/inspect.rst:790 msgid "Return a :class:`Signature` object for the given *callable*:" msgstr "" -#: ../../library/inspect.rst:792 msgid "" ">>> from inspect import signature\n" ">>> def foo(a, *, b:int, **kwargs):\n" @@ -1208,156 +769,69 @@ msgid "" "" msgstr "" -#: ../../library/inspect.rst:809 -msgid "" -"Accepts a wide range of Python callables, from plain functions and classes " -"to :func:`functools.partial` objects." +msgid "Accepts a wide range of Python callables, from plain functions and classes to :func:`functools.partial` objects." msgstr "" -#: ../../library/inspect.rst:812 -msgid "" -"If some of the annotations are strings (e.g., because ``from __future__ " -"import annotations`` was used), :func:`signature` will attempt to " -"automatically un-stringize the annotations " -"using :func:`annotationlib.get_annotations`. The *globals*, *locals*, and " -"*eval_str* parameters are passed into :func:`!annotationlib.get_annotations` " -"when resolving the annotations; see the documentation for :func:`!" -"annotationlib.get_annotations` for instructions on how to use these " -"parameters. A member of the :class:`annotationlib.Format` enum can be passed " -"to the *annotation_format* parameter to control the format of the returned " -"annotations. For example, use " -"``annotation_format=annotationlib.Format.STRING`` to return annotations in " -"string format." -msgstr "" - -#: ../../library/inspect.rst:826 -msgid "" -"Raises :exc:`ValueError` if no signature can be provided, " -"and :exc:`TypeError` if that type of object is not supported. Also, if the " -"annotations are stringized, and *eval_str* is not false, the ``eval()`` " -"call(s) to un-stringize the annotations " -"in :func:`annotationlib.get_annotations` could potentially raise any kind of " -"exception." +msgid "If some of the annotations are strings (e.g., because ``from __future__ import annotations`` was used), :func:`signature` will attempt to automatically un-stringize the annotations using :func:`annotationlib.get_annotations`. The *globals*, *locals*, and *eval_str* parameters are passed into :func:`!annotationlib.get_annotations` when resolving the annotations; see the documentation for :func:`!annotationlib.get_annotations` for instructions on how to use these parameters. A member of the :class:`annotationlib.Format` enum can be passed to the *annotation_format* parameter to control the format of the returned annotations. For example, use ``annotation_format=annotationlib.Format.STRING`` to return annotations in string format." msgstr "" -#: ../../library/inspect.rst:832 -msgid "" -"A slash (/) in the signature of a function denotes that the parameters prior " -"to it are positional-only. For more info, see :ref:`the FAQ entry on " -"positional-only parameters `." +msgid "Raises :exc:`ValueError` if no signature can be provided, and :exc:`TypeError` if that type of object is not supported. Also, if the annotations are stringized, and *eval_str* is not false, the ``eval()`` call(s) to un-stringize the annotations in :func:`annotationlib.get_annotations` could potentially raise any kind of exception." msgstr "" -#: ../../library/inspect.rst:836 -msgid "" -"The *follow_wrapped* parameter was added. Pass ``False`` to get a signature " -"of *callable* specifically (``callable.__wrapped__`` will not be used to " -"unwrap decorated callables.)" +msgid "A slash (/) in the signature of a function denotes that the parameters prior to it are positional-only. For more info, see :ref:`the FAQ entry on positional-only parameters `." +msgstr "" + +msgid "The *follow_wrapped* parameter was added. Pass ``False`` to get a signature of *callable* specifically (``callable.__wrapped__`` will not be used to unwrap decorated callables.)" msgstr "" -#: ../../library/inspect.rst:842 ../../library/inspect.rst:978 msgid "The *globals*, *locals*, and *eval_str* parameters were added." msgstr "" -#: ../../library/inspect.rst:845 msgid "The *annotation_format* parameter was added." msgstr "" -#: ../../library/inspect.rst:850 -msgid "" -"Some callables may not be introspectable in certain implementations of " -"Python. For example, in CPython, some built-in functions defined in C " -"provide no metadata about their arguments." +msgid "Some callables may not be introspectable in certain implementations of Python. For example, in CPython, some built-in functions defined in C provide no metadata about their arguments." msgstr "" -#: ../../library/inspect.rst:856 -msgid "" -"If the passed object has a :attr:`!__signature__` attribute, we may use it " -"to create the signature. The exact semantics are an implementation detail " -"and are subject to unannounced changes. Consult the source code for current " -"semantics." +msgid "If the passed object has a :attr:`!__signature__` attribute, we may use it to create the signature. The exact semantics are an implementation detail and are subject to unannounced changes. Consult the source code for current semantics." msgstr "" -#: ../../library/inspect.rst:864 -msgid "" -"A :class:`!Signature` object represents the call signature of a function and " -"its return annotation. For each parameter accepted by the function it " -"stores a :class:`Parameter` object in its :attr:`parameters` collection." +msgid "A :class:`!Signature` object represents the call signature of a function and its return annotation. For each parameter accepted by the function it stores a :class:`Parameter` object in its :attr:`parameters` collection." msgstr "" -#: ../../library/inspect.rst:869 -msgid "" -"The optional *parameters* argument is a sequence of :class:`Parameter` " -"objects, which is validated to check that there are no parameters with " -"duplicate names, and that the parameters are in the right order, i.e. " -"positional-only first, then positional-or-keyword, and that parameters with " -"defaults follow parameters without defaults." +msgid "The optional *parameters* argument is a sequence of :class:`Parameter` objects, which is validated to check that there are no parameters with duplicate names, and that the parameters are in the right order, i.e. positional-only first, then positional-or-keyword, and that parameters with defaults follow parameters without defaults." msgstr "" -#: ../../library/inspect.rst:875 -msgid "" -"The optional *return_annotation* argument can be an arbitrary Python object. " -"It represents the \"return\" annotation of the callable." +msgid "The optional *return_annotation* argument can be an arbitrary Python object. It represents the \"return\" annotation of the callable." msgstr "" -#: ../../library/inspect.rst:878 -msgid "" -":class:`!Signature` objects are *immutable*. Use :meth:`Signature.replace` " -"or :func:`copy.replace` to make a modified copy." +msgid ":class:`!Signature` objects are *immutable*. Use :meth:`Signature.replace` or :func:`copy.replace` to make a modified copy." msgstr "" -#: ../../library/inspect.rst:881 msgid ":class:`!Signature` objects are now picklable and :term:`hashable`." msgstr "" -#: ../../library/inspect.rst:886 msgid "A special class-level marker to specify absence of a return annotation." msgstr "" -#: ../../library/inspect.rst:890 -msgid "" -"An ordered mapping of parameters' names to the " -"corresponding :class:`Parameter` objects. Parameters appear in strict " -"definition order, including keyword-only parameters." +msgid "An ordered mapping of parameters' names to the corresponding :class:`Parameter` objects. Parameters appear in strict definition order, including keyword-only parameters." msgstr "" -#: ../../library/inspect.rst:894 ../../library/inspect.rst:1258 -msgid "" -"Python only explicitly guaranteed that it preserved the declaration order of " -"keyword-only parameters as of version 3.7, although in practice this order " -"had always been preserved in Python 3." +msgid "Python only explicitly guaranteed that it preserved the declaration order of keyword-only parameters as of version 3.7, although in practice this order had always been preserved in Python 3." msgstr "" -#: ../../library/inspect.rst:901 -msgid "" -"The \"return\" annotation for the callable. If the callable has no " -"\"return\" annotation, this attribute is set to :attr:`Signature.empty`." +msgid "The \"return\" annotation for the callable. If the callable has no \"return\" annotation, this attribute is set to :attr:`Signature.empty`." msgstr "" -#: ../../library/inspect.rst:906 -msgid "" -"Create a mapping from positional and keyword arguments to parameters. " -"Returns :class:`BoundArguments` if ``*args`` and ``**kwargs`` match the " -"signature, or raises a :exc:`TypeError`." +msgid "Create a mapping from positional and keyword arguments to parameters. Returns :class:`BoundArguments` if ``*args`` and ``**kwargs`` match the signature, or raises a :exc:`TypeError`." msgstr "" -#: ../../library/inspect.rst:912 -msgid "" -"Works the same way as :meth:`Signature.bind`, but allows the omission of " -"some required arguments (mimics :func:`functools.partial` behavior.) " -"Returns :class:`BoundArguments`, or raises a :exc:`TypeError` if the passed " -"arguments do not match the signature." +msgid "Works the same way as :meth:`Signature.bind`, but allows the omission of some required arguments (mimics :func:`functools.partial` behavior.) Returns :class:`BoundArguments`, or raises a :exc:`TypeError` if the passed arguments do not match the signature." msgstr "" -#: ../../library/inspect.rst:919 -msgid "" -"Create a new :class:`Signature` instance based on the " -"instance :meth:`replace` was invoked on. It is possible to pass different " -"*parameters* and/or *return_annotation* to override the corresponding " -"properties of the base signature. To remove ``return_annotation`` from the " -"copied :class:`!Signature`, pass in :attr:`Signature.empty`." +msgid "Create a new :class:`Signature` instance based on the instance :meth:`replace` was invoked on. It is possible to pass different *parameters* and/or *return_annotation* to override the corresponding properties of the base signature. To remove ``return_annotation`` from the copied :class:`!Signature`, pass in :attr:`Signature.empty`." msgstr "" -#: ../../library/inspect.rst:927 msgid "" ">>> def test(a, b):\n" "... pass\n" @@ -1368,47 +842,27 @@ msgid "" "\"(a, b) -> 'new return anno'\"" msgstr "" -#: ../../library/inspect.rst:937 -msgid "" -":class:`Signature` objects are also supported by the generic " -"function :func:`copy.replace`." +msgid ":class:`Signature` objects are also supported by the generic function :func:`copy.replace`." msgstr "" -#: ../../library/inspect.rst:942 msgid "Create a string representation of the :class:`Signature` object." msgstr "" -#: ../../library/inspect.rst:944 -msgid "" -"If *max_width* is passed, the method will attempt to fit the signature into " -"lines of at most *max_width* characters. If the signature is longer than " -"*max_width*, all parameters will be on separate lines." +msgid "If *max_width* is passed, the method will attempt to fit the signature into lines of at most *max_width* characters. If the signature is longer than *max_width*, all parameters will be on separate lines." msgstr "" -#: ../../library/inspect.rst:949 -msgid "" -"If *quote_annotation_strings* is False, :term:`annotations ` in " -"the signature are displayed without opening and closing quotation marks if " -"they are strings. This is useful if the signature was created with " -"the :attr:`~annotationlib.Format.STRING` format or if ``from __future__ " -"import annotations`` was used." +msgid "If *quote_annotation_strings* is False, :term:`annotations ` in the signature are displayed without opening and closing quotation marks if they are strings. This is useful if the signature was created with the :attr:`~annotationlib.Format.STRING` format or if ``from __future__ import annotations`` was used." msgstr "" -#: ../../library/inspect.rst:957 msgid "The *unquote_annotations* parameter was added." msgstr "" -#: ../../library/inspect.rst:962 -msgid "" -"Return a :class:`Signature` (or its subclass) object for a given callable " -"*obj*." +msgid "Return a :class:`Signature` (or its subclass) object for a given callable *obj*." msgstr "" -#: ../../library/inspect.rst:965 msgid "This method simplifies subclassing of :class:`Signature`:" msgstr "" -#: ../../library/inspect.rst:967 msgid "" "class MySignature(Signature):\n" " pass\n" @@ -1416,130 +870,75 @@ msgid "" "assert isinstance(sig, MySignature)" msgstr "" -#: ../../library/inspect.rst:974 msgid "Its behavior is otherwise identical to that of :func:`signature`." msgstr "" -#: ../../library/inspect.rst:984 -msgid "" -":class:`!Parameter` objects are *immutable*. Instead of modifying a :class:`!" -"Parameter` object, you can use :meth:`Parameter.replace` " -"or :func:`copy.replace` to create a modified copy." +msgid ":class:`!Parameter` objects are *immutable*. Instead of modifying a :class:`!Parameter` object, you can use :meth:`Parameter.replace` or :func:`copy.replace` to create a modified copy." msgstr "" -#: ../../library/inspect.rst:988 msgid "Parameter objects are now picklable and :term:`hashable`." msgstr "" -#: ../../library/inspect.rst:993 -msgid "" -"A special class-level marker to specify absence of default values and " -"annotations." +msgid "A special class-level marker to specify absence of default values and annotations." msgstr "" -#: ../../library/inspect.rst:998 -msgid "" -"The name of the parameter as a string. The name must be a valid Python " -"identifier." +msgid "The name of the parameter as a string. The name must be a valid Python identifier." msgstr "" -#: ../../library/inspect.rst:1003 -msgid "" -"CPython generates implicit parameter names of the form ``.0`` on the code " -"objects used to implement comprehensions and generator expressions." +msgid "CPython generates implicit parameter names of the form ``.0`` on the code objects used to implement comprehensions and generator expressions." msgstr "" -#: ../../library/inspect.rst:1007 -msgid "" -"These parameter names are now exposed by this module as names like " -"``implicit0``." +msgid "These parameter names are now exposed by this module as names like ``implicit0``." msgstr "" -#: ../../library/inspect.rst:1013 -msgid "" -"The default value for the parameter. If the parameter has no default value, " -"this attribute is set to :attr:`Parameter.empty`." +msgid "The default value for the parameter. If the parameter has no default value, this attribute is set to :attr:`Parameter.empty`." msgstr "" -#: ../../library/inspect.rst:1018 -msgid "" -"The annotation for the parameter. If the parameter has no annotation, this " -"attribute is set to :attr:`Parameter.empty`." +msgid "The annotation for the parameter. If the parameter has no annotation, this attribute is set to :attr:`Parameter.empty`." msgstr "" -#: ../../library/inspect.rst:1023 -msgid "" -"Describes how argument values are bound to the parameter. The possible " -"values are accessible via :class:`Parameter` (like " -"``Parameter.KEYWORD_ONLY``), and support comparison and ordering, in the " -"following order:" +msgid "Describes how argument values are bound to the parameter. The possible values are accessible via :class:`Parameter` (like ``Parameter.KEYWORD_ONLY``), and support comparison and ordering, in the following order:" msgstr "" -#: ../../library/inspect.rst:1030 msgid "Name" msgstr "" -#: ../../library/inspect.rst:1030 msgid "Meaning" msgstr "" -#: ../../library/inspect.rst:1032 msgid "*POSITIONAL_ONLY*" msgstr "" -#: ../../library/inspect.rst:1032 -msgid "" -"Value must be supplied as a positional argument. Positional only parameters " -"are those which appear before a ``/`` entry (if present) in a Python " -"function definition." +msgid "Value must be supplied as a positional argument. Positional only parameters are those which appear before a ``/`` entry (if present) in a Python function definition." msgstr "" -#: ../../library/inspect.rst:1037 msgid "*POSITIONAL_OR_KEYWORD*" msgstr "" -#: ../../library/inspect.rst:1037 -msgid "" -"Value may be supplied as either a keyword or positional argument (this is " -"the standard binding behaviour for functions implemented in Python.)" +msgid "Value may be supplied as either a keyword or positional argument (this is the standard binding behaviour for functions implemented in Python.)" msgstr "" -#: ../../library/inspect.rst:1042 msgid "*VAR_POSITIONAL*" msgstr "" -#: ../../library/inspect.rst:1042 -msgid "" -"A tuple of positional arguments that aren't bound to any other parameter. " -"This corresponds to a ``*args`` parameter in a Python function definition." +msgid "A tuple of positional arguments that aren't bound to any other parameter. This corresponds to a ``*args`` parameter in a Python function definition." msgstr "" -#: ../../library/inspect.rst:1047 msgid "*KEYWORD_ONLY*" msgstr "" -#: ../../library/inspect.rst:1047 -msgid "" -"Value must be supplied as a keyword argument. Keyword only parameters are " -"those which appear after a ``*`` or ``*args`` entry in a Python function " -"definition." +msgid "Value must be supplied as a keyword argument. Keyword only parameters are those which appear after a ``*`` or ``*args`` entry in a Python function definition." msgstr "" -#: ../../library/inspect.rst:1052 msgid "*VAR_KEYWORD*" msgstr "" -#: ../../library/inspect.rst:1052 -msgid "" -"A dict of keyword arguments that aren't bound to any other parameter. This " -"corresponds to a ``**kwargs`` parameter in a Python function definition." +msgid "A dict of keyword arguments that aren't bound to any other parameter. This corresponds to a ``**kwargs`` parameter in a Python function definition." msgstr "" -#: ../../library/inspect.rst:1058 msgid "Example: print all keyword-only arguments without default values:" msgstr "" -#: ../../library/inspect.rst:1060 msgid "" ">>> def foo(a, b, *, c, d=10):\n" "... pass\n" @@ -1552,15 +951,12 @@ msgid "" "Parameter: c" msgstr "" -#: ../../library/inspect.rst:1074 msgid "Describes an enum value of :attr:`Parameter.kind`." msgstr "" -#: ../../library/inspect.rst:1078 msgid "Example: print all descriptions of arguments:" msgstr "" -#: ../../library/inspect.rst:1080 msgid "" ">>> def foo(a, b, *, c, d=10):\n" "... pass\n" @@ -1574,15 +970,9 @@ msgid "" "keyword-only" msgstr "" -#: ../../library/inspect.rst:1095 -msgid "" -"Create a new :class:`Parameter` instance based on the instance replaced was " -"invoked on. To override a :class:`!Parameter` attribute, pass the " -"corresponding argument. To remove a default value or/and an annotation from " -"a :class:`!Parameter`, pass :attr:`Parameter.empty`." +msgid "Create a new :class:`Parameter` instance based on the instance replaced was invoked on. To override a :class:`!Parameter` attribute, pass the corresponding argument. To remove a default value or/and an annotation from a :class:`!Parameter`, pass :attr:`Parameter.empty`." msgstr "" -#: ../../library/inspect.rst:1100 msgid "" ">>> from inspect import Parameter\n" ">>> param = Parameter('foo', Parameter.KEYWORD_ONLY, default=42)\n" @@ -1596,83 +986,45 @@ msgid "" "\"foo: 'spam'\"" msgstr "" -#: ../../library/inspect.rst:1113 -msgid "" -":class:`Parameter` objects are also supported by the generic " -"function :func:`copy.replace`." +msgid ":class:`Parameter` objects are also supported by the generic function :func:`copy.replace`." msgstr "" -#: ../../library/inspect.rst:1116 -msgid "" -"In Python 3.3 :class:`Parameter` objects were allowed to have ``name`` set " -"to ``None`` if their ``kind`` was set to ``POSITIONAL_ONLY``. This is no " -"longer permitted." +msgid "In Python 3.3 :class:`Parameter` objects were allowed to have ``name`` set to ``None`` if their ``kind`` was set to ``POSITIONAL_ONLY``. This is no longer permitted." msgstr "" -#: ../../library/inspect.rst:1123 -msgid "" -"Result of a :meth:`Signature.bind` or :meth:`Signature.bind_partial` call. " -"Holds the mapping of arguments to the function's parameters." +msgid "Result of a :meth:`Signature.bind` or :meth:`Signature.bind_partial` call. Holds the mapping of arguments to the function's parameters." msgstr "" -#: ../../library/inspect.rst:1128 -msgid "" -"A mutable mapping of parameters' names to arguments' values. Contains only " -"explicitly bound arguments. Changes in :attr:`arguments` will reflect " -"in :attr:`args` and :attr:`kwargs`." +msgid "A mutable mapping of parameters' names to arguments' values. Contains only explicitly bound arguments. Changes in :attr:`arguments` will reflect in :attr:`args` and :attr:`kwargs`." msgstr "" -#: ../../library/inspect.rst:1132 -msgid "" -"Should be used in conjunction with :attr:`Signature.parameters` for any " -"argument processing purposes." +msgid "Should be used in conjunction with :attr:`Signature.parameters` for any argument processing purposes." msgstr "" -#: ../../library/inspect.rst:1137 -msgid "" -"Arguments for which :meth:`Signature.bind` or :meth:`Signature.bind_partial` " -"relied on a default value are skipped. However, if needed, " -"use :meth:`BoundArguments.apply_defaults` to add them." +msgid "Arguments for which :meth:`Signature.bind` or :meth:`Signature.bind_partial` relied on a default value are skipped. However, if needed, use :meth:`BoundArguments.apply_defaults` to add them." msgstr "" -#: ../../library/inspect.rst:1142 -msgid "" -":attr:`arguments` is now of type :class:`dict`. Formerly, it was of " -"type :class:`collections.OrderedDict`." +msgid ":attr:`arguments` is now of type :class:`dict`. Formerly, it was of type :class:`collections.OrderedDict`." msgstr "" -#: ../../library/inspect.rst:1148 -msgid "" -"A tuple of positional arguments values. Dynamically computed from " -"the :attr:`arguments` attribute." +msgid "A tuple of positional arguments values. Dynamically computed from the :attr:`arguments` attribute." msgstr "" -#: ../../library/inspect.rst:1153 -msgid "" -"A dict of keyword arguments values. Dynamically computed from " -"the :attr:`arguments` attribute. Arguments that can be passed positionally " -"are included in :attr:`args` instead." +msgid "A dict of keyword arguments values. Dynamically computed from the :attr:`arguments` attribute. Arguments that can be passed positionally are included in :attr:`args` instead." msgstr "" -#: ../../library/inspect.rst:1159 msgid "A reference to the parent :class:`Signature` object." msgstr "" -#: ../../library/inspect.rst:1163 msgid "Set default values for missing arguments." msgstr "" -#: ../../library/inspect.rst:1165 -msgid "" -"For variable-positional arguments (``*args``) the default is an empty tuple." +msgid "For variable-positional arguments (``*args``) the default is an empty tuple." msgstr "" -#: ../../library/inspect.rst:1168 -msgid "" -"For variable-keyword arguments (``**kwargs``) the default is an empty dict." +msgid "For variable-keyword arguments (``**kwargs``) the default is an empty dict." msgstr "" -#: ../../library/inspect.rst:1171 msgid "" ">>> def foo(a, b='ham', *args): pass\n" ">>> ba = inspect.signature(foo).bind('spam')\n" @@ -1681,13 +1033,9 @@ msgid "" "{'a': 'spam', 'b': 'ham', 'args': ()}" msgstr "" -#: ../../library/inspect.rst:1181 -msgid "" -"The :attr:`args` and :attr:`kwargs` properties can be used to invoke " -"functions:" +msgid "The :attr:`args` and :attr:`kwargs` properties can be used to invoke functions:" msgstr "" -#: ../../library/inspect.rst:1184 msgid "" "def test(a, *, b):\n" " ...\n" @@ -1697,124 +1045,51 @@ msgid "" "test(*ba.args, **ba.kwargs)" msgstr "" -#: ../../library/inspect.rst:1196 msgid ":pep:`362` - Function Signature Object." msgstr "" -#: ../../library/inspect.rst:1197 msgid "The detailed specification, implementation details and examples." msgstr "" -#: ../../library/inspect.rst:1203 msgid "Classes and functions" msgstr "" -#: ../../library/inspect.rst:1207 -msgid "" -"Arrange the given list of classes into a hierarchy of nested lists. Where a " -"nested list appears, it contains classes derived from the class whose entry " -"immediately precedes the list. Each entry is a 2-tuple containing a class " -"and a tuple of its base classes. If the *unique* argument is true, exactly " -"one entry appears in the returned structure for each class in the given " -"list. Otherwise, classes using multiple inheritance and their descendants " -"will appear multiple times." +msgid "Arrange the given list of classes into a hierarchy of nested lists. Where a nested list appears, it contains classes derived from the class whose entry immediately precedes the list. Each entry is a 2-tuple containing a class and a tuple of its base classes. If the *unique* argument is true, exactly one entry appears in the returned structure for each class in the given list. Otherwise, classes using multiple inheritance and their descendants will appear multiple times." msgstr "" -#: ../../library/inspect.rst:1218 -msgid "" -"Get the names and default values of a Python function's parameters. " -"A :term:`named tuple` is returned:" +msgid "Get the names and default values of a Python function's parameters. A :term:`named tuple` is returned:" msgstr "" -#: ../../library/inspect.rst:1221 -msgid "" -"``FullArgSpec(args, varargs, varkw, defaults, kwonlyargs, kwonlydefaults, " -"annotations)``" +msgid "``FullArgSpec(args, varargs, varkw, defaults, kwonlyargs, kwonlydefaults, annotations)``" msgstr "" -#: ../../library/inspect.rst:1224 -msgid "" -"*args* is a list of the positional parameter names. *varargs* is the name of " -"the ``*`` parameter or ``None`` if arbitrary positional arguments are not " -"accepted. *varkw* is the name of the ``**`` parameter or ``None`` if " -"arbitrary keyword arguments are not accepted. *defaults* is an *n*-tuple of " -"default argument values corresponding to the last *n* positional parameters, " -"or ``None`` if there are no such defaults defined. *kwonlyargs* is a list of " -"keyword-only parameter names in declaration order. *kwonlydefaults* is a " -"dictionary mapping parameter names from *kwonlyargs* to the default values " -"used if no argument is supplied. *annotations* is a dictionary mapping " -"parameter names to annotations. The special key ``\"return\"`` is used to " -"report the function return value annotation (if any)." -msgstr "" - -#: ../../library/inspect.rst:1239 -msgid "" -"Note that :func:`signature` and :ref:`Signature Object ` provide the recommended API for callable introspection, and support " -"additional behaviours (like positional-only arguments) that are sometimes " -"encountered in extension module APIs. This function is retained primarily " -"for use in code that needs to maintain compatibility with the Python 2 " -"``inspect`` module API." +msgid "*args* is a list of the positional parameter names. *varargs* is the name of the ``*`` parameter or ``None`` if arbitrary positional arguments are not accepted. *varkw* is the name of the ``**`` parameter or ``None`` if arbitrary keyword arguments are not accepted. *defaults* is an *n*-tuple of default argument values corresponding to the last *n* positional parameters, or ``None`` if there are no such defaults defined. *kwonlyargs* is a list of keyword-only parameter names in declaration order. *kwonlydefaults* is a dictionary mapping parameter names from *kwonlyargs* to the default values used if no argument is supplied. *annotations* is a dictionary mapping parameter names to annotations. The special key ``\"return\"`` is used to report the function return value annotation (if any)." msgstr "" -#: ../../library/inspect.rst:1246 -msgid "" -"This function is now based on :func:`signature`, but still ignores " -"``__wrapped__`` attributes and includes the already bound first parameter in " -"the signature output for bound methods." +msgid "Note that :func:`signature` and :ref:`Signature Object ` provide the recommended API for callable introspection, and support additional behaviours (like positional-only arguments) that are sometimes encountered in extension module APIs. This function is retained primarily for use in code that needs to maintain compatibility with the Python 2 ``inspect`` module API." msgstr "" -#: ../../library/inspect.rst:1251 -msgid "" -"This method was previously documented as deprecated in favour " -"of :func:`signature` in Python 3.5, but that decision has been reversed in " -"order to restore a clearly supported standard interface for single-source " -"Python 2/3 code migrating away from the legacy :func:`!getargspec` API." +msgid "This function is now based on :func:`signature`, but still ignores ``__wrapped__`` attributes and includes the already bound first parameter in the signature output for bound methods." msgstr "" -#: ../../library/inspect.rst:1266 -msgid "" -"Get information about arguments passed into a particular frame. " -"A :term:`named tuple` ``ArgInfo(args, varargs, keywords, locals)`` is " -"returned. *args* is a list of the argument names. *varargs* and *keywords* " -"are the names of the ``*`` and ``**`` arguments or ``None``. *locals* is " -"the locals dictionary of the given frame." +msgid "This method was previously documented as deprecated in favour of :func:`signature` in Python 3.5, but that decision has been reversed in order to restore a clearly supported standard interface for single-source Python 2/3 code migrating away from the legacy :func:`!getargspec` API." +msgstr "" + +msgid "Get information about arguments passed into a particular frame. A :term:`named tuple` ``ArgInfo(args, varargs, keywords, locals)`` is returned. *args* is a list of the argument names. *varargs* and *keywords* are the names of the ``*`` and ``**`` arguments or ``None``. *locals* is the locals dictionary of the given frame." msgstr "" -#: ../../library/inspect.rst:1273 ../../library/inspect.rst:1283 msgid "This function was inadvertently marked as deprecated in Python 3.5." msgstr "" -#: ../../library/inspect.rst:1278 -msgid "" -"Format a pretty argument spec from the four values returned " -"by :func:`getargvalues`. The format\\* arguments are the corresponding " -"optional formatting functions that are called to turn names and values into " -"strings." +msgid "Format a pretty argument spec from the four values returned by :func:`getargvalues`. The format\\* arguments are the corresponding optional formatting functions that are called to turn names and values into strings." msgstr "" -#: ../../library/inspect.rst:1288 -msgid "" -"Return a tuple of class cls's base classes, including cls, in method " -"resolution order. No class appears more than once in this tuple. Note that " -"the method resolution order depends on cls's type. Unless a very peculiar " -"user-defined metatype is in use, cls will be the first element of the tuple." +msgid "Return a tuple of class cls's base classes, including cls, in method resolution order. No class appears more than once in this tuple. Note that the method resolution order depends on cls's type. Unless a very peculiar user-defined metatype is in use, cls will be the first element of the tuple." +msgstr "" + +msgid "Bind the *args* and *kwds* to the argument names of the Python function or method *func*, as if it was called with them. For bound methods, bind also the first argument (typically named ``self``) to the associated instance. A dict is returned, mapping the argument names (including the names of the ``*`` and ``**`` arguments, if any) to their values from *args* and *kwds*. In case of invoking *func* incorrectly, i.e. whenever ``func(*args, **kwds)`` would raise an exception because of incompatible signature, an exception of the same type and the same or similar message is raised. For example:" msgstr "" -#: ../../library/inspect.rst:1296 -msgid "" -"Bind the *args* and *kwds* to the argument names of the Python function or " -"method *func*, as if it was called with them. For bound methods, bind also " -"the first argument (typically named ``self``) to the associated instance. A " -"dict is returned, mapping the argument names (including the names of the " -"``*`` and ``**`` arguments, if any) to their values from *args* and *kwds*. " -"In case of invoking *func* incorrectly, i.e. whenever ``func(*args, " -"**kwds)`` would raise an exception because of incompatible signature, an " -"exception of the same type and the same or similar message is raised. For " -"example:" -msgstr "" - -#: ../../library/inspect.rst:1305 msgid "" ">>> from inspect import getcallargs\n" ">>> def f(a, b=1, *pos, **named):\n" @@ -1822,8 +1097,7 @@ msgid "" "...\n" ">>> getcallargs(f, 1, 2, 3) == {'a': 1, 'named': {}, 'b': 2, 'pos': (3,)}\n" "True\n" -">>> getcallargs(f, a=2, x=4) == {'a': 2, 'named': {'x': 4}, 'b': 1, 'pos': " -"()}\n" +">>> getcallargs(f, a=2, x=4) == {'a': 2, 'named': {'x': 4}, 'b': 1, 'pos': ()}\n" "True\n" ">>> getcallargs(f)\n" "Traceback (most recent call last):\n" @@ -1831,191 +1105,93 @@ msgid "" "TypeError: f() missing 1 required positional argument: 'a'" msgstr "" -#: ../../library/inspect.rst:1322 msgid "Use :meth:`Signature.bind` and :meth:`Signature.bind_partial` instead." msgstr "" -#: ../../library/inspect.rst:1328 -msgid "" -"Get the mapping of external name references in a Python function or method " -"*func* to their current values. A :term:`named tuple` " -"``ClosureVars(nonlocals, globals, builtins, unbound)`` is returned. " -"*nonlocals* maps referenced names to lexical closure variables, *globals* to " -"the function's module globals and *builtins* to the builtins visible from " -"the function body. *unbound* is the set of names referenced in the function " -"that could not be resolved at all given the current module globals and " -"builtins." +msgid "Get the mapping of external name references in a Python function or method *func* to their current values. A :term:`named tuple` ``ClosureVars(nonlocals, globals, builtins, unbound)`` is returned. *nonlocals* maps referenced names to lexical closure variables, *globals* to the function's module globals and *builtins* to the builtins visible from the function body. *unbound* is the set of names referenced in the function that could not be resolved at all given the current module globals and builtins." msgstr "" -#: ../../library/inspect.rst:1337 -msgid "" -":exc:`TypeError` is raised if *func* is not a Python function or method." +msgid ":exc:`TypeError` is raised if *func* is not a Python function or method." msgstr "" -#: ../../library/inspect.rst:1344 -msgid "" -"Get the object wrapped by *func*. It follows the chain " -"of :attr:`__wrapped__` attributes returning the last object in the chain." +msgid "Get the object wrapped by *func*. It follows the chain of :attr:`__wrapped__` attributes returning the last object in the chain." msgstr "" -#: ../../library/inspect.rst:1347 -msgid "" -"*stop* is an optional callback accepting an object in the wrapper chain as " -"its sole argument that allows the unwrapping to be terminated early if the " -"callback returns a true value. If the callback never returns a true value, " -"the last object in the chain is returned as usual. For " -"example, :func:`signature` uses this to stop unwrapping if any object in the " -"chain has a ``__signature__`` attribute defined." +msgid "*stop* is an optional callback accepting an object in the wrapper chain as its sole argument that allows the unwrapping to be terminated early if the callback returns a true value. If the callback never returns a true value, the last object in the chain is returned as usual. For example, :func:`signature` uses this to stop unwrapping if any object in the chain has a ``__signature__`` attribute defined." msgstr "" -#: ../../library/inspect.rst:1354 msgid ":exc:`ValueError` is raised if a cycle is encountered." msgstr "" -#: ../../library/inspect.rst:1361 msgid "Compute the annotations dict for an object." msgstr "" -#: ../../library/inspect.rst:1363 -msgid "" -"This is an alias for :func:`annotationlib.get_annotations`; see the " -"documentation of that function for more information." +msgid "This is an alias for :func:`annotationlib.get_annotations`; see the documentation of that function for more information." msgstr "" -#: ../../library/inspect.rst:1368 -msgid "" -"This function may execute arbitrary code contained in annotations. " -"See :ref:`annotationlib-security` for more information." +msgid "This function may execute arbitrary code contained in annotations. See :ref:`annotationlib-security` for more information." msgstr "" -#: ../../library/inspect.rst:1373 -msgid "" -"This function is now an alias for :func:`annotationlib.get_annotations`. " -"Calling it as ``inspect.get_annotations`` will continue to work." +msgid "This function is now an alias for :func:`annotationlib.get_annotations`. Calling it as ``inspect.get_annotations`` will continue to work." msgstr "" -#: ../../library/inspect.rst:1381 msgid "The interpreter stack" msgstr "" -#: ../../library/inspect.rst:1383 -msgid "" -"Some of the following functions return :class:`FrameInfo` objects. For " -"backwards compatibility these objects allow tuple-like operations on all " -"attributes except ``positions``. This behavior is considered deprecated and " -"may be removed in the future." +msgid "Some of the following functions return :class:`FrameInfo` objects. For backwards compatibility these objects allow tuple-like operations on all attributes except ``positions``. This behavior is considered deprecated and may be removed in the future." msgstr "" -#: ../../library/inspect.rst:1392 msgid "The :ref:`frame object ` that the record corresponds to." msgstr "" -#: ../../library/inspect.rst:1396 -msgid "" -"The file name associated with the code being executed by the frame this " -"record corresponds to." +msgid "The file name associated with the code being executed by the frame this record corresponds to." msgstr "" -#: ../../library/inspect.rst:1401 -msgid "" -"The line number of the current line associated with the code being executed " -"by the frame this record corresponds to." +msgid "The line number of the current line associated with the code being executed by the frame this record corresponds to." msgstr "" -#: ../../library/inspect.rst:1406 -msgid "" -"The function name that is being executed by the frame this record " -"corresponds to." +msgid "The function name that is being executed by the frame this record corresponds to." msgstr "" -#: ../../library/inspect.rst:1410 -msgid "" -"A list of lines of context from the source code that's being executed by the " -"frame this record corresponds to." +msgid "A list of lines of context from the source code that's being executed by the frame this record corresponds to." msgstr "" -#: ../../library/inspect.rst:1415 ../../library/inspect.rst:1454 -msgid "" -"The index of the current line being executed in the :attr:`code_context` " -"list." +msgid "The index of the current line being executed in the :attr:`code_context` list." msgstr "" -#: ../../library/inspect.rst:1419 -msgid "" -"A :class:`dis.Positions` object containing the start line number, end line " -"number, start column offset, and end column offset associated with the " -"instruction being executed by the frame this record corresponds to." +msgid "A :class:`dis.Positions` object containing the start line number, end line number, start column offset, and end column offset associated with the instruction being executed by the frame this record corresponds to." msgstr "" -#: ../../library/inspect.rst:1423 msgid "Return a :term:`named tuple` instead of a :class:`tuple`." msgstr "" -#: ../../library/inspect.rst:1426 -msgid "" -":class:`!FrameInfo` is now a class instance (that is backwards compatible " -"with the previous :term:`named tuple`)." +msgid ":class:`!FrameInfo` is now a class instance (that is backwards compatible with the previous :term:`named tuple`)." msgstr "" -#: ../../library/inspect.rst:1435 -msgid "" -"The file name associated with the code being executed by the frame this " -"traceback corresponds to." +msgid "The file name associated with the code being executed by the frame this traceback corresponds to." msgstr "" -#: ../../library/inspect.rst:1440 -msgid "" -"The line number of the current line associated with the code being executed " -"by the frame this traceback corresponds to." +msgid "The line number of the current line associated with the code being executed by the frame this traceback corresponds to." msgstr "" -#: ../../library/inspect.rst:1445 -msgid "" -"The function name that is being executed by the frame this traceback " -"corresponds to." +msgid "The function name that is being executed by the frame this traceback corresponds to." msgstr "" -#: ../../library/inspect.rst:1449 -msgid "" -"A list of lines of context from the source code that's being executed by the " -"frame this traceback corresponds to." +msgid "A list of lines of context from the source code that's being executed by the frame this traceback corresponds to." msgstr "" -#: ../../library/inspect.rst:1458 -msgid "" -"A :class:`dis.Positions` object containing the start line number, end line " -"number, start column offset, and end column offset associated with the " -"instruction being executed by the frame this traceback corresponds to." +msgid "A :class:`dis.Positions` object containing the start line number, end line number, start column offset, and end column offset associated with the instruction being executed by the frame this traceback corresponds to." msgstr "" -#: ../../library/inspect.rst:1463 -msgid "" -":class:`!Traceback` is now a class instance (that is backwards compatible " -"with the previous :term:`named tuple`)." +msgid ":class:`!Traceback` is now a class instance (that is backwards compatible with the previous :term:`named tuple`)." msgstr "" -#: ../../library/inspect.rst:1470 -msgid "" -"Keeping references to frame objects, as found in the first element of the " -"frame records these functions return, can cause your program to create " -"reference cycles. Once a reference cycle has been created, the lifespan of " -"all objects which can be accessed from the objects which form the cycle can " -"become much longer even if Python's optional cycle detector is enabled. If " -"such cycles must be created, it is important to ensure they are explicitly " -"broken to avoid the delayed destruction of objects and increased memory " -"consumption which occurs." +msgid "Keeping references to frame objects, as found in the first element of the frame records these functions return, can cause your program to create reference cycles. Once a reference cycle has been created, the lifespan of all objects which can be accessed from the objects which form the cycle can become much longer even if Python's optional cycle detector is enabled. If such cycles must be created, it is important to ensure they are explicitly broken to avoid the delayed destruction of objects and increased memory consumption which occurs." msgstr "" -#: ../../library/inspect.rst:1478 -msgid "" -"Though the cycle detector will catch these, destruction of the frames (and " -"local variables) can be made deterministic by removing the cycle in " -"a :keyword:`finally` clause. This is also important if the cycle detector " -"was disabled when Python was compiled or using :func:`gc.disable`. For " -"example::" +msgid "Though the cycle detector will catch these, destruction of the frames (and local variables) can be made deterministic by removing the cycle in a :keyword:`finally` clause. This is also important if the cycle detector was disabled when Python was compiled or using :func:`gc.disable`. For example::" msgstr "" -#: ../../library/inspect.rst:1483 msgid "" "def handle_stackframe_without_leak():\n" " frame = inspect.currentframe()\n" @@ -2025,139 +1201,66 @@ msgid "" " del frame" msgstr "" -#: ../../library/inspect.rst:1490 -msgid "" -"If you want to keep the frame around (for example to print a traceback " -"later), you can also break reference cycles by using the :meth:`frame.clear` " -"method." +msgid "If you want to keep the frame around (for example to print a traceback later), you can also break reference cycles by using the :meth:`frame.clear` method." msgstr "" -#: ../../library/inspect.rst:1494 -msgid "" -"The optional *context* argument supported by most of these functions " -"specifies the number of lines of context to return, which are centered " -"around the current line." +msgid "The optional *context* argument supported by most of these functions specifies the number of lines of context to return, which are centered around the current line." msgstr "" -#: ../../library/inspect.rst:1501 -msgid "" -"Get information about a frame or traceback object. A :class:`Traceback` " -"object is returned." +msgid "Get information about a frame or traceback object. A :class:`Traceback` object is returned." msgstr "" -#: ../../library/inspect.rst:1504 msgid "A :class:`Traceback` object is returned instead of a named tuple." msgstr "" -#: ../../library/inspect.rst:1509 -msgid "" -"Get a list of :class:`FrameInfo` objects for a frame and all outer frames. " -"These frames represent the calls that lead to the creation of *frame*. The " -"first entry in the returned list represents *frame*; the last entry " -"represents the outermost call on *frame*'s stack." +msgid "Get a list of :class:`FrameInfo` objects for a frame and all outer frames. These frames represent the calls that lead to the creation of *frame*. The first entry in the returned list represents *frame*; the last entry represents the outermost call on *frame*'s stack." msgstr "" -#: ../../library/inspect.rst:1514 ../../library/inspect.rst:1529 -#: ../../library/inspect.rst:1555 ../../library/inspect.rst:1570 -msgid "" -"A list of :term:`named tuples ` ``FrameInfo(frame, filename, " -"lineno, function, code_context, index)`` is returned." +msgid "A list of :term:`named tuples ` ``FrameInfo(frame, filename, lineno, function, code_context, index)`` is returned." msgstr "" -#: ../../library/inspect.rst:1519 ../../library/inspect.rst:1534 -#: ../../library/inspect.rst:1560 ../../library/inspect.rst:1575 msgid "A list of :class:`FrameInfo` objects is returned." msgstr "" -#: ../../library/inspect.rst:1524 -msgid "" -"Get a list of :class:`FrameInfo` objects for a traceback's frame and all " -"inner frames. These frames represent calls made as a consequence of " -"*frame*. The first entry in the list represents *traceback*; the last entry " -"represents where the exception was raised." +msgid "Get a list of :class:`FrameInfo` objects for a traceback's frame and all inner frames. These frames represent calls made as a consequence of *frame*. The first entry in the list represents *traceback*; the last entry represents where the exception was raised." msgstr "" -#: ../../library/inspect.rst:1539 msgid "Return the frame object for the caller's stack frame." msgstr "" -#: ../../library/inspect.rst:1543 -msgid "" -"This function relies on Python stack frame support in the interpreter, which " -"isn't guaranteed to exist in all implementations of Python. If running in " -"an implementation without Python stack frame support this function returns " -"``None``." +msgid "This function relies on Python stack frame support in the interpreter, which isn't guaranteed to exist in all implementations of Python. If running in an implementation without Python stack frame support this function returns ``None``." msgstr "" -#: ../../library/inspect.rst:1551 -msgid "" -"Return a list of :class:`FrameInfo` objects for the caller's stack. The " -"first entry in the returned list represents the caller; the last entry " -"represents the outermost call on the stack." +msgid "Return a list of :class:`FrameInfo` objects for the caller's stack. The first entry in the returned list represents the caller; the last entry represents the outermost call on the stack." msgstr "" -#: ../../library/inspect.rst:1565 -msgid "" -"Return a list of :class:`FrameInfo` objects for the stack between the " -"current frame and the frame in which an exception currently being handled " -"was raised in. The first entry in the list represents the caller; the last " -"entry represents where the exception was raised." +msgid "Return a list of :class:`FrameInfo` objects for the stack between the current frame and the frame in which an exception currently being handled was raised in. The first entry in the list represents the caller; the last entry represents where the exception was raised." msgstr "" -#: ../../library/inspect.rst:1579 msgid "Fetching attributes statically" msgstr "" -#: ../../library/inspect.rst:1581 -msgid "" -"Both :func:`getattr` and :func:`hasattr` can trigger code execution when " -"fetching or checking for the existence of attributes. Descriptors, like " -"properties, will be invoked and :meth:`~object.__getattr__` " -"and :meth:`~object.__getattribute__` may be called." +msgid "Both :func:`getattr` and :func:`hasattr` can trigger code execution when fetching or checking for the existence of attributes. Descriptors, like properties, will be invoked and :meth:`~object.__getattr__` and :meth:`~object.__getattribute__` may be called." msgstr "" -#: ../../library/inspect.rst:1587 -msgid "" -"For cases where you want passive introspection, like documentation tools, " -"this can be inconvenient. :func:`getattr_static` has a similar signature " -"as :func:`getattr` but avoids executing code when it fetches attributes." +msgid "For cases where you want passive introspection, like documentation tools, this can be inconvenient. :func:`getattr_static` has a similar signature as :func:`getattr` but avoids executing code when it fetches attributes." msgstr "" -#: ../../library/inspect.rst:1594 -msgid "" -"Retrieve attributes without triggering dynamic lookup via the descriptor " -"protocol, :meth:`~object.__getattr__` or :meth:`~object.__getattribute__`." +msgid "Retrieve attributes without triggering dynamic lookup via the descriptor protocol, :meth:`~object.__getattr__` or :meth:`~object.__getattribute__`." msgstr "" -#: ../../library/inspect.rst:1598 -msgid "" -"Note: this function may not be able to retrieve all attributes that getattr " -"can fetch (like dynamically created attributes) and may find attributes that " -"getattr can't (like descriptors that raise AttributeError). It can also " -"return descriptors objects instead of instance members." +msgid "Note: this function may not be able to retrieve all attributes that getattr can fetch (like dynamically created attributes) and may find attributes that getattr can't (like descriptors that raise AttributeError). It can also return descriptors objects instead of instance members." msgstr "" -#: ../../library/inspect.rst:1604 -msgid "" -"If the instance :attr:`~object.__dict__` is shadowed by another member (for " -"example a property) then this function will be unable to find instance " -"members." +msgid "If the instance :attr:`~object.__dict__` is shadowed by another member (for example a property) then this function will be unable to find instance members." msgstr "" -#: ../../library/inspect.rst:1610 -msgid "" -":func:`getattr_static` does not resolve descriptors, for example slot " -"descriptors or getset descriptors on objects implemented in C. The " -"descriptor object is returned instead of the underlying attribute." +msgid ":func:`getattr_static` does not resolve descriptors, for example slot descriptors or getset descriptors on objects implemented in C. The descriptor object is returned instead of the underlying attribute." msgstr "" -#: ../../library/inspect.rst:1614 -msgid "" -"You can handle these with code like the following. Note that for arbitrary " -"getset descriptors invoking these may trigger code execution::" +msgid "You can handle these with code like the following. Note that for arbitrary getset descriptors invoking these may trigger code execution::" msgstr "" -#: ../../library/inspect.rst:1618 msgid "" "# example code for resolving the builtin descriptor types\n" "class _foo:\n" @@ -2180,247 +1283,137 @@ msgid "" " pass" msgstr "" -#: ../../library/inspect.rst:1640 msgid "Current State of Generators, Coroutines, and Asynchronous Generators" msgstr "" -#: ../../library/inspect.rst:1642 -msgid "" -"When implementing coroutine schedulers and for other advanced uses of " -"generators, it is useful to determine whether a generator is currently " -"executing, is waiting to start or resume or execution, or has already " -"terminated. :func:`getgeneratorstate` allows the current state of a " -"generator to be determined easily." +msgid "When implementing coroutine schedulers and for other advanced uses of generators, it is useful to determine whether a generator is currently executing, is waiting to start or resume or execution, or has already terminated. :func:`getgeneratorstate` allows the current state of a generator to be determined easily." msgstr "" -#: ../../library/inspect.rst:1650 msgid "Get current state of a generator-iterator." msgstr "" -#: ../../library/inspect.rst:1652 ../../library/inspect.rst:1668 -#: ../../library/inspect.rst:1685 msgid "Possible states are:" msgstr "" -#: ../../library/inspect.rst:1654 msgid "GEN_CREATED: Waiting to start execution." msgstr "" -#: ../../library/inspect.rst:1655 msgid "GEN_RUNNING: Currently being executed by the interpreter." msgstr "" -#: ../../library/inspect.rst:1656 msgid "GEN_SUSPENDED: Currently suspended at a yield expression." msgstr "" -#: ../../library/inspect.rst:1657 msgid "GEN_CLOSED: Execution has completed." msgstr "" -#: ../../library/inspect.rst:1663 -msgid "" -"Get current state of a coroutine object. The function is intended to be " -"used with coroutine objects created by :keyword:`async def` functions, but " -"will accept any coroutine-like object that has ``cr_running`` and " -"``cr_frame`` attributes." +msgid "Get current state of a coroutine object. The function is intended to be used with coroutine objects created by :keyword:`async def` functions, but will accept any coroutine-like object that has ``cr_running`` and ``cr_frame`` attributes." msgstr "" -#: ../../library/inspect.rst:1670 msgid "CORO_CREATED: Waiting to start execution." msgstr "" -#: ../../library/inspect.rst:1671 msgid "CORO_RUNNING: Currently being executed by the interpreter." msgstr "" -#: ../../library/inspect.rst:1672 msgid "CORO_SUSPENDED: Currently suspended at an await expression." msgstr "" -#: ../../library/inspect.rst:1673 msgid "CORO_CLOSED: Execution has completed." msgstr "" -#: ../../library/inspect.rst:1679 -msgid "" -"Get current state of an asynchronous generator object. The function is " -"intended to be used with asynchronous iterator objects created " -"by :keyword:`async def` functions which use the :keyword:`yield` statement, " -"but will accept any asynchronous generator-like object that has " -"``ag_running`` and ``ag_frame`` attributes." +msgid "Get current state of an asynchronous generator object. The function is intended to be used with asynchronous iterator objects created by :keyword:`async def` functions which use the :keyword:`yield` statement, but will accept any asynchronous generator-like object that has ``ag_running`` and ``ag_frame`` attributes." msgstr "" -#: ../../library/inspect.rst:1687 msgid "AGEN_CREATED: Waiting to start execution." msgstr "" -#: ../../library/inspect.rst:1688 msgid "AGEN_RUNNING: Currently being executed by the interpreter." msgstr "" -#: ../../library/inspect.rst:1689 msgid "AGEN_SUSPENDED: Currently suspended at a yield expression." msgstr "" -#: ../../library/inspect.rst:1690 msgid "AGEN_CLOSED: Execution has completed." msgstr "" -#: ../../library/inspect.rst:1694 -msgid "" -"The current internal state of the generator can also be queried. This is " -"mostly useful for testing purposes, to ensure that internal state is being " -"updated as expected:" +msgid "The current internal state of the generator can also be queried. This is mostly useful for testing purposes, to ensure that internal state is being updated as expected:" msgstr "" -#: ../../library/inspect.rst:1700 -msgid "" -"Get the mapping of live local variables in *generator* to their current " -"values. A dictionary is returned that maps from variable names to values. " -"This is the equivalent of calling :func:`locals` in the body of the " -"generator, and all the same caveats apply." +msgid "Get the mapping of live local variables in *generator* to their current values. A dictionary is returned that maps from variable names to values. This is the equivalent of calling :func:`locals` in the body of the generator, and all the same caveats apply." msgstr "" -#: ../../library/inspect.rst:1705 -msgid "" -"If *generator* is a :term:`generator` with no currently associated frame, " -"then an empty dictionary is returned. :exc:`TypeError` is raised if " -"*generator* is not a Python generator object." +msgid "If *generator* is a :term:`generator` with no currently associated frame, then an empty dictionary is returned. :exc:`TypeError` is raised if *generator* is not a Python generator object." msgstr "" -#: ../../library/inspect.rst:1711 -msgid "" -"This function relies on the generator exposing a Python stack frame for " -"introspection, which isn't guaranteed to be the case in all implementations " -"of Python. In such cases, this function will always return an empty " -"dictionary." +msgid "This function relies on the generator exposing a Python stack frame for introspection, which isn't guaranteed to be the case in all implementations of Python. In such cases, this function will always return an empty dictionary." msgstr "" -#: ../../library/inspect.rst:1720 -msgid "" -"This function is analogous to :func:`~inspect.getgeneratorlocals`, but works " -"for coroutine objects created by :keyword:`async def` functions." +msgid "This function is analogous to :func:`~inspect.getgeneratorlocals`, but works for coroutine objects created by :keyword:`async def` functions." msgstr "" -#: ../../library/inspect.rst:1727 -msgid "" -"This function is analogous to :func:`~inspect.getgeneratorlocals`, but works " -"for asynchronous generator objects created by :keyword:`async def` functions " -"which use the :keyword:`yield` statement." +msgid "This function is analogous to :func:`~inspect.getgeneratorlocals`, but works for asynchronous generator objects created by :keyword:`async def` functions which use the :keyword:`yield` statement." msgstr "" -#: ../../library/inspect.rst:1737 msgid "Code Objects Bit Flags" msgstr "" -#: ../../library/inspect.rst:1739 -msgid "" -"Python code objects have a :attr:`~codeobject.co_flags` attribute, which is " -"a bitmap of the following flags:" +msgid "Python code objects have a :attr:`~codeobject.co_flags` attribute, which is a bitmap of the following flags:" msgstr "" -#: ../../library/inspect.rst:1744 msgid "The code object is optimized, using fast locals." msgstr "" -#: ../../library/inspect.rst:1748 -msgid "" -"If set, a new dict will be created for the frame's :attr:`~frame.f_locals` " -"when the code object is executed." +msgid "If set, a new dict will be created for the frame's :attr:`~frame.f_locals` when the code object is executed." msgstr "" -#: ../../library/inspect.rst:1753 msgid "The code object has a variable positional parameter (``*args``-like)." msgstr "" -#: ../../library/inspect.rst:1757 msgid "The code object has a variable keyword parameter (``**kwargs``-like)." msgstr "" -#: ../../library/inspect.rst:1761 msgid "The flag is set when the code object is a nested function." msgstr "" -#: ../../library/inspect.rst:1765 -msgid "" -"The flag is set when the code object is a generator function, i.e. a " -"generator object is returned when the code object is executed." +msgid "The flag is set when the code object is a generator function, i.e. a generator object is returned when the code object is executed." msgstr "" -#: ../../library/inspect.rst:1770 -msgid "" -"The flag is set when the code object is a coroutine function. When the code " -"object is executed it returns a coroutine object. See :pep:`492` for more " -"details." +msgid "The flag is set when the code object is a coroutine function. When the code object is executed it returns a coroutine object. See :pep:`492` for more details." msgstr "" -#: ../../library/inspect.rst:1778 -msgid "" -"The flag is used to transform generators into generator-based coroutines. " -"Generator objects with this flag can be used in ``await`` expression, and " -"can ``yield from`` coroutine objects. See :pep:`492` for more details." +msgid "The flag is used to transform generators into generator-based coroutines. Generator objects with this flag can be used in ``await`` expression, and can ``yield from`` coroutine objects. See :pep:`492` for more details." msgstr "" -#: ../../library/inspect.rst:1787 -msgid "" -"The flag is set when the code object is an asynchronous generator function. " -"When the code object is executed it returns an asynchronous generator " -"object. See :pep:`525` for more details." +msgid "The flag is set when the code object is an asynchronous generator function. When the code object is executed it returns an asynchronous generator object. See :pep:`525` for more details." msgstr "" -#: ../../library/inspect.rst:1795 -msgid "" -"The flag is set when there is a docstring for the code object in the source " -"code. If set, it will be the first item in :attr:`~codeobject.co_consts`." +msgid "The flag is set when there is a docstring for the code object in the source code. If set, it will be the first item in :attr:`~codeobject.co_consts`." msgstr "" -#: ../../library/inspect.rst:1803 -msgid "" -"The flag is set when the code object is a function defined in class scope." +msgid "The flag is set when the code object is a function defined in class scope." msgstr "" -#: ../../library/inspect.rst:1809 -msgid "" -"The flags are specific to CPython, and may not be defined in other Python " -"implementations. Furthermore, the flags are an implementation detail, and " -"can be removed or deprecated in future Python releases. It's recommended to " -"use public APIs from the :mod:`!inspect` module for any introspection needs." +msgid "The flags are specific to CPython, and may not be defined in other Python implementations. Furthermore, the flags are an implementation detail, and can be removed or deprecated in future Python releases. It's recommended to use public APIs from the :mod:`!inspect` module for any introspection needs." msgstr "" -#: ../../library/inspect.rst:1817 msgid "Buffer flags" msgstr "" -#: ../../library/inspect.rst:1821 -msgid "" -"This is an :class:`enum.IntFlag` that represents the flags that can be " -"passed to the :meth:`~object.__buffer__` method of objects implementing " -"the :ref:`buffer protocol `." +msgid "This is an :class:`enum.IntFlag` that represents the flags that can be passed to the :meth:`~object.__buffer__` method of objects implementing the :ref:`buffer protocol `." msgstr "" -#: ../../library/inspect.rst:1825 msgid "The meaning of the flags is explained at :ref:`buffer-request-types`." msgstr "" -#: ../../library/inspect.rst:1852 msgid "Command-line interface" msgstr "" -#: ../../library/inspect.rst:1854 -msgid "" -"The :mod:`!inspect` module also provides a basic introspection capability " -"from the command line." +msgid "The :mod:`!inspect` module also provides a basic introspection capability from the command line." msgstr "" -#: ../../library/inspect.rst:1859 -msgid "" -"By default, accepts the name of a module and prints the source of that " -"module. A class or function within the module can be printed instead by " -"appended a colon and the qualified name of the target object." +msgid "By default, accepts the name of a module and prints the source of that module. A class or function within the module can be printed instead by appended a colon and the qualified name of the target object." msgstr "" -#: ../../library/inspect.rst:1865 -msgid "" -"Print information about the specified object rather than the source code" +msgid "Print information about the specified object rather than the source code" msgstr "" diff --git a/library/internet.po b/library/internet.po index 34c77e21..cb7f9386 100644 --- a/library/internet.po +++ b/library/internet.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:08+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -22,35 +22,23 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/internet.rst:5 msgid "Internet Protocols and Support" msgstr "" -#: ../../library/internet.rst:14 -msgid "" -"The modules described in this chapter implement internet protocols and " -"support for related technology. They are all implemented in Python. Most of " -"these modules require the presence of the system-dependent " -"module :mod:`socket`, which is currently supported on most popular " -"platforms. Here is an overview:" +msgid "The modules described in this chapter implement internet protocols and support for related technology. They are all implemented in Python. Most of these modules require the presence of the system-dependent module :mod:`socket`, which is currently supported on most popular platforms. Here is an overview:" msgstr "" -#: ../../library/internet.rst:7 msgid "WWW" msgstr "" -#: ../../library/internet.rst:7 msgid "Internet" msgstr "" -#: ../../library/internet.rst:7 msgid "World Wide Web" msgstr "" -#: ../../library/internet.rst:12 msgid "module" msgstr "" -#: ../../library/internet.rst:12 msgid "socket" msgstr "" diff --git a/library/intro.po b/library/intro.po index 675aa06e..b619fcec 100644 --- a/library/intro.po +++ b/library/intro.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:08+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,248 +23,98 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/intro.rst:5 msgid "Introduction" msgstr "" -#: ../../library/intro.rst:7 msgid "The \"Python library\" contains several different kinds of components." msgstr "" -#: ../../library/intro.rst:9 -msgid "" -"It contains data types that would normally be considered part of the " -"\"core\" of a language, such as numbers and lists. For these types, the " -"Python language core defines the form of literals and places some " -"constraints on their semantics, but does not fully define the semantics. " -"(On the other hand, the language core does define syntactic properties like " -"the spelling and priorities of operators.)" +msgid "It contains data types that would normally be considered part of the \"core\" of a language, such as numbers and lists. For these types, the Python language core defines the form of literals and places some constraints on their semantics, but does not fully define the semantics. (On the other hand, the language core does define syntactic properties like the spelling and priorities of operators.)" msgstr "" -#: ../../library/intro.rst:15 -msgid "" -"The library also contains built-in functions and exceptions --- objects that " -"can be used by all Python code without the need of an :keyword:`import` " -"statement. Some of these are defined by the core language, but many are not " -"essential for the core semantics and are only described here." +msgid "The library also contains built-in functions and exceptions --- objects that can be used by all Python code without the need of an :keyword:`import` statement. Some of these are defined by the core language, but many are not essential for the core semantics and are only described here." msgstr "" -#: ../../library/intro.rst:20 -msgid "" -"The bulk of the library, however, consists of a collection of modules. There " -"are many ways to dissect this collection. Some modules are written in C and " -"built in to the Python interpreter; others are written in Python and " -"imported in source form. Some modules provide interfaces that are highly " -"specific to Python, like printing a stack trace; some provide interfaces " -"that are specific to particular operating systems, such as access to " -"specific hardware; others provide interfaces that are specific to a " -"particular application domain, like the World Wide Web. Some modules are " -"available in all versions and ports of Python; others are only available " -"when the underlying system supports or requires them; yet others are " -"available only when a particular configuration option was chosen at the time " -"when Python was compiled and installed." -msgstr "" - -#: ../../library/intro.rst:32 -msgid "" -"This manual is organized \"from the inside out:\" it first describes the " -"built-in functions, data types and exceptions, and finally the modules, " -"grouped in chapters of related modules." +msgid "The bulk of the library, however, consists of a collection of modules. There are many ways to dissect this collection. Some modules are written in C and built in to the Python interpreter; others are written in Python and imported in source form. Some modules provide interfaces that are highly specific to Python, like printing a stack trace; some provide interfaces that are specific to particular operating systems, such as access to specific hardware; others provide interfaces that are specific to a particular application domain, like the World Wide Web. Some modules are available in all versions and ports of Python; others are only available when the underlying system supports or requires them; yet others are available only when a particular configuration option was chosen at the time when Python was compiled and installed." +msgstr "" + +msgid "This manual is organized \"from the inside out:\" it first describes the built-in functions, data types and exceptions, and finally the modules, grouped in chapters of related modules." +msgstr "" + +msgid "This means that if you start reading this manual from the start, and skip to the next chapter when you get bored, you will get a reasonable overview of the available modules and application areas that are supported by the Python library. Of course, you don't *have* to read it like a novel --- you can also browse the table of contents (in front of the manual), or look for a specific function, module or term in the index (in the back). And finally, if you enjoy learning about random subjects, you choose a random page number (see module :mod:`random`) and read a section or two. Regardless of the order in which you read the sections of this manual, it helps to start with chapter :ref:`built-in-funcs`, as the remainder of the manual assumes familiarity with this material." msgstr "" -#: ../../library/intro.rst:36 -msgid "" -"This means that if you start reading this manual from the start, and skip to " -"the next chapter when you get bored, you will get a reasonable overview of " -"the available modules and application areas that are supported by the Python " -"library. Of course, you don't *have* to read it like a novel --- you can " -"also browse the table of contents (in front of the manual), or look for a " -"specific function, module or term in the index (in the back). And finally, " -"if you enjoy learning about random subjects, you choose a random page number " -"(see module :mod:`random`) and read a section or two. Regardless of the " -"order in which you read the sections of this manual, it helps to start with " -"chapter :ref:`built-in-funcs`, as the remainder of the manual assumes " -"familiarity with this material." -msgstr "" - -#: ../../library/intro.rst:48 msgid "Let the show begin!" msgstr "" -#: ../../library/intro.rst:54 msgid "Notes on availability" msgstr "" -#: ../../library/intro.rst:56 -msgid "" -"An \"Availability: Unix\" note means that this function is commonly found on " -"Unix systems. It does not make any claims about its existence on a specific " -"operating system." +msgid "An \"Availability: Unix\" note means that this function is commonly found on Unix systems. It does not make any claims about its existence on a specific operating system." msgstr "" -#: ../../library/intro.rst:60 -msgid "" -"If not separately noted, all functions that claim \"Availability: Unix\" are " -"supported on macOS, iOS and Android, all of which build on a Unix core." +msgid "If not separately noted, all functions that claim \"Availability: Unix\" are supported on macOS, iOS and Android, all of which build on a Unix core." msgstr "" -#: ../../library/intro.rst:63 -msgid "" -"If an availability note contains both a minimum Kernel version and a minimum " -"libc version, then both conditions must hold. For example a feature with " -"note *Availability: Linux >= 3.17 with glibc >= 2.27* requires both Linux " -"3.17 or newer and glibc 2.27 or newer." +msgid "If an availability note contains both a minimum Kernel version and a minimum libc version, then both conditions must hold. For example a feature with note *Availability: Linux >= 3.17 with glibc >= 2.27* requires both Linux 3.17 or newer and glibc 2.27 or newer." msgstr "" -#: ../../library/intro.rst:71 msgid "WebAssembly platforms" msgstr "" -#: ../../library/intro.rst:73 -msgid "" -"The `WebAssembly`_ platforms ``wasm32-emscripten`` (`Emscripten`_) and " -"``wasm32-wasi`` (`WASI`_) provide a subset of POSIX APIs. WebAssembly " -"runtimes and browsers are sandboxed and have limited access to the host and " -"external resources. Any Python standard library module that uses processes, " -"threading, networking, signals, or other forms of inter-process " -"communication (IPC), is either not available or may not work as on other " -"Unix-like systems. File I/O, file system, and Unix permission-related " -"functions are restricted, too. Emscripten does not permit blocking I/O. " -"Other blocking operations like :func:`~time.sleep` block the browser event " -"loop." -msgstr "" - -#: ../../library/intro.rst:83 -msgid "" -"The properties and behavior of Python on WebAssembly platforms depend on the " -"`Emscripten`_-SDK or `WASI`_-SDK version, WASM runtimes (browser, NodeJS, " -"`wasmtime`_), and Python build time flags. WebAssembly, Emscripten, and WASI " -"are evolving standards; some features like networking may be supported in " -"the future." +msgid "The `WebAssembly`_ platforms ``wasm32-emscripten`` (`Emscripten`_) and ``wasm32-wasi`` (`WASI`_) provide a subset of POSIX APIs. WebAssembly runtimes and browsers are sandboxed and have limited access to the host and external resources. Any Python standard library module that uses processes, threading, networking, signals, or other forms of inter-process communication (IPC), is either not available or may not work as on other Unix-like systems. File I/O, file system, and Unix permission-related functions are restricted, too. Emscripten does not permit blocking I/O. Other blocking operations like :func:`~time.sleep` block the browser event loop." msgstr "" -#: ../../library/intro.rst:89 -msgid "" -"For Python in the browser, users should consider `Pyodide`_ or `PyScript`_. " -"PyScript is built on top of Pyodide, which itself is built on top of CPython " -"and Emscripten. Pyodide provides access to browsers' JavaScript and DOM APIs " -"as well as limited networking capabilities with JavaScript's " -"``XMLHttpRequest`` and ``Fetch`` APIs." +msgid "The properties and behavior of Python on WebAssembly platforms depend on the `Emscripten`_-SDK or `WASI`_-SDK version, WASM runtimes (browser, NodeJS, `wasmtime`_), and Python build time flags. WebAssembly, Emscripten, and WASI are evolving standards; some features like networking may be supported in the future." msgstr "" -#: ../../library/intro.rst:95 -msgid "" -"Process-related APIs are not available or always fail with an error. That " -"includes APIs that spawn new processes " -"(:func:`~os.fork`, :func:`~os.execve`), wait for processes " -"(:func:`~os.waitpid`), send signals (:func:`~os.kill`), or otherwise " -"interact with processes. The :mod:`subprocess` is importable but does not " -"work." +msgid "For Python in the browser, users should consider `Pyodide`_ or `PyScript`_. PyScript is built on top of Pyodide, which itself is built on top of CPython and Emscripten. Pyodide provides access to browsers' JavaScript and DOM APIs as well as limited networking capabilities with JavaScript's ``XMLHttpRequest`` and ``Fetch`` APIs." msgstr "" -#: ../../library/intro.rst:101 -msgid "" -"The :mod:`socket` module is available, but is limited and behaves " -"differently from other platforms. On Emscripten, sockets are always non-" -"blocking and require additional JavaScript code and helpers on the server to " -"proxy TCP through WebSockets; see `Emscripten Networking`_ for more " -"information. WASI snapshot preview 1 only permits sockets from an existing " -"file descriptor." +msgid "Process-related APIs are not available or always fail with an error. That includes APIs that spawn new processes (:func:`~os.fork`, :func:`~os.execve`), wait for processes (:func:`~os.waitpid`), send signals (:func:`~os.kill`), or otherwise interact with processes. The :mod:`subprocess` is importable but does not work." msgstr "" -#: ../../library/intro.rst:108 -msgid "" -"Some functions are stubs that either don't do anything and always return " -"hardcoded values." +msgid "The :mod:`socket` module is available, but is limited and behaves differently from other platforms. On Emscripten, sockets are always non-blocking and require additional JavaScript code and helpers on the server to proxy TCP through WebSockets; see `Emscripten Networking`_ for more information. WASI snapshot preview 1 only permits sockets from an existing file descriptor." msgstr "" -#: ../../library/intro.rst:111 -msgid "" -"Functions related to file descriptors, file permissions, file ownership, and " -"links are limited and don't support some operations. For example, WASI does " -"not permit symlinks with absolute file names." +msgid "Some functions are stubs that either don't do anything and always return hardcoded values." +msgstr "" + +msgid "Functions related to file descriptors, file permissions, file ownership, and links are limited and don't support some operations. For example, WASI does not permit symlinks with absolute file names." msgstr "" -#: ../../library/intro.rst:127 msgid "Mobile platforms" msgstr "" -#: ../../library/intro.rst:129 -msgid "" -"Android and iOS are, in most respects, POSIX operating systems. File I/O, " -"socket handling, and threading all behave as they would on any POSIX " -"operating system. However, there are several major differences:" +msgid "Android and iOS are, in most respects, POSIX operating systems. File I/O, socket handling, and threading all behave as they would on any POSIX operating system. However, there are several major differences:" msgstr "" -#: ../../library/intro.rst:133 -msgid "" -"Mobile platforms can only use Python in \"embedded\" mode. There is no " -"Python REPL, and no ability to use separate executables such " -"as :program:`python` or :program:`pip`. To add Python code to your mobile " -"app, you must use the :ref:`Python embedding API `. For more " -"details, see :ref:`using-android` and :ref:`using-ios`." +msgid "Mobile platforms can only use Python in \"embedded\" mode. There is no Python REPL, and no ability to use separate executables such as :program:`python` or :program:`pip`. To add Python code to your mobile app, you must use the :ref:`Python embedding API `. For more details, see :ref:`using-android` and :ref:`using-ios`." msgstr "" -#: ../../library/intro.rst:139 msgid "Subprocesses:" msgstr "" -#: ../../library/intro.rst:141 -msgid "" -"On Android, creating subprocesses is possible but `officially unsupported " -"`__. In " -"particular, Android does not support any part of the System V IPC API, " -"so :mod:`multiprocessing` is not available." +msgid "On Android, creating subprocesses is possible but `officially unsupported `__. In particular, Android does not support any part of the System V IPC API, so :mod:`multiprocessing` is not available." msgstr "" -#: ../../library/intro.rst:146 -msgid "" -"An iOS app cannot use any form of subprocessing, multiprocessing, or inter-" -"process communication. If an iOS app attempts to create a subprocess, the " -"process creating the subprocess will either lock up, or crash. An iOS app " -"has no visibility of other applications that are running, nor any ability to " -"communicate with other running applications, outside of the iOS-specific " -"APIs that exist for this purpose." +msgid "An iOS app cannot use any form of subprocessing, multiprocessing, or inter-process communication. If an iOS app attempts to create a subprocess, the process creating the subprocess will either lock up, or crash. An iOS app has no visibility of other applications that are running, nor any ability to communicate with other running applications, outside of the iOS-specific APIs that exist for this purpose." msgstr "" -#: ../../library/intro.rst:153 -msgid "" -"Mobile apps have limited access to modify system resources (such as the " -"system clock). These resources will often be *readable*, but attempts to " -"modify those resources will usually fail." +msgid "Mobile apps have limited access to modify system resources (such as the system clock). These resources will often be *readable*, but attempts to modify those resources will usually fail." msgstr "" -#: ../../library/intro.rst:157 msgid "Console input and output:" msgstr "" -#: ../../library/intro.rst:159 -msgid "" -"On Android, the native ``stdout`` and ``stderr`` are not connected to " -"anything, so Python installs its own streams which redirect messages to the " -"system log. These can be seen under the tags ``python.stdout`` and " -"``python.stderr`` respectively." +msgid "On Android, the native ``stdout`` and ``stderr`` are not connected to anything, so Python installs its own streams which redirect messages to the system log. These can be seen under the tags ``python.stdout`` and ``python.stderr`` respectively." msgstr "" -#: ../../library/intro.rst:164 -msgid "" -"iOS apps have a limited concept of console output. ``stdout`` and ``stderr`` " -"*exist*, and content written to ``stdout`` and ``stderr`` will be visible in " -"logs when running in Xcode, but this content *won't* be recorded in the " -"system log. If a user who has installed your app provides their app logs as " -"a diagnostic aid, they will not include any detail written to ``stdout`` or " -"``stderr``." +msgid "iOS apps have a limited concept of console output. ``stdout`` and ``stderr`` *exist*, and content written to ``stdout`` and ``stderr`` will be visible in logs when running in Xcode, but this content *won't* be recorded in the system log. If a user who has installed your app provides their app logs as a diagnostic aid, they will not include any detail written to ``stdout`` or ``stderr``." msgstr "" -#: ../../library/intro.rst:171 -msgid "" -"Mobile apps have no usable ``stdin`` at all. While apps can display an on-" -"screen keyboard, this is a software feature, not something that is attached " -"to ``stdin``." +msgid "Mobile apps have no usable ``stdin`` at all. While apps can display an on-screen keyboard, this is a software feature, not something that is attached to ``stdin``." msgstr "" -#: ../../library/intro.rst:175 -msgid "" -"As a result, Python modules that involve console manipulation (such " -"as :mod:`curses` and :mod:`readline`) are not available on mobile platforms." +msgid "As a result, Python modules that involve console manipulation (such as :mod:`curses` and :mod:`readline`) are not available on mobile platforms." msgstr "" diff --git a/library/io.po b/library/io.po index 6a9be050..bf34e5c3 100644 --- a/library/io.po +++ b/library/io.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:08+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,310 +24,162 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/io.rst:2 msgid ":mod:`!io` --- Core tools for working with streams" msgstr "" -#: ../../library/io.rst:15 msgid "**Source code:** :source:`Lib/io.py`" msgstr "" -#: ../../library/io.rst:22 msgid "Overview" msgstr "" -#: ../../library/io.rst:27 -msgid "" -"The :mod:`!io` module provides Python's main facilities for dealing with " -"various types of I/O. There are three main types of I/O: *text I/O*, " -"*binary I/O* and *raw I/O*. These are generic categories, and various " -"backing stores can be used for each of them. A concrete object belonging to " -"any of these categories is called a :term:`file object`. Other common terms " -"are *stream* and *file-like object*." +msgid "The :mod:`!io` module provides Python's main facilities for dealing with various types of I/O. There are three main types of I/O: *text I/O*, *binary I/O* and *raw I/O*. These are generic categories, and various backing stores can be used for each of them. A concrete object belonging to any of these categories is called a :term:`file object`. Other common terms are *stream* and *file-like object*." msgstr "" -#: ../../library/io.rst:34 -msgid "" -"Independent of its category, each concrete stream object will also have " -"various capabilities: it can be read-only, write-only, or read-write. It can " -"also allow arbitrary random access (seeking forwards or backwards to any " -"location), or only sequential access (for example in the case of a socket or " -"pipe)." +msgid "Independent of its category, each concrete stream object will also have various capabilities: it can be read-only, write-only, or read-write. It can also allow arbitrary random access (seeking forwards or backwards to any location), or only sequential access (for example in the case of a socket or pipe)." msgstr "" -#: ../../library/io.rst:40 -msgid "" -"All streams are careful about the type of data you give to them. For " -"example giving a :class:`str` object to the :meth:`!write` method of a " -"binary stream will raise a :exc:`TypeError`. So will giving " -"a :class:`bytes` object to the :meth:`!write` method of a text stream." +msgid "All streams are careful about the type of data you give to them. For example giving a :class:`str` object to the :meth:`!write` method of a binary stream will raise a :exc:`TypeError`. So will giving a :class:`bytes` object to the :meth:`!write` method of a text stream." msgstr "" -#: ../../library/io.rst:45 -msgid "" -"Operations that used to raise :exc:`IOError` now raise :exc:`OSError`, " -"since :exc:`IOError` is now an alias of :exc:`OSError`." +msgid "Operations that used to raise :exc:`IOError` now raise :exc:`OSError`, since :exc:`IOError` is now an alias of :exc:`OSError`." msgstr "" -#: ../../library/io.rst:52 ../../library/io.rst:899 ../../library/io.rst:1249 msgid "Text I/O" msgstr "" -#: ../../library/io.rst:54 -msgid "" -"Text I/O expects and produces :class:`str` objects. This means that " -"whenever the backing store is natively made of bytes (such as in the case of " -"a file), encoding and decoding of data is made transparently as well as " -"optional translation of platform-specific newline characters." +msgid "Text I/O expects and produces :class:`str` objects. This means that whenever the backing store is natively made of bytes (such as in the case of a file), encoding and decoding of data is made transparently as well as optional translation of platform-specific newline characters." msgstr "" -#: ../../library/io.rst:59 -msgid "" -"The easiest way to create a text stream is with :meth:`open`, optionally " -"specifying an encoding::" +msgid "The easiest way to create a text stream is with :meth:`open`, optionally specifying an encoding::" msgstr "" -#: ../../library/io.rst:62 msgid "f = open(\"myfile.txt\", \"r\", encoding=\"utf-8\")" msgstr "" -#: ../../library/io.rst:64 -msgid "" -"In-memory text streams are also available as :class:`StringIO` objects::" +msgid "In-memory text streams are also available as :class:`StringIO` objects::" msgstr "" -#: ../../library/io.rst:66 msgid "f = io.StringIO(\"some initial text data\")" msgstr "" -#: ../../library/io.rst:70 -msgid "" -"When working with a non-blocking stream, be aware that read operations on " -"text I/O objects might raise a :exc:`BlockingIOError` if the stream cannot " -"perform the operation immediately." +msgid "When working with a non-blocking stream, be aware that read operations on text I/O objects might raise a :exc:`BlockingIOError` if the stream cannot perform the operation immediately." msgstr "" -#: ../../library/io.rst:74 -msgid "" -"The text stream API is described in detail in the documentation " -"of :class:`TextIOBase`." +msgid "The text stream API is described in detail in the documentation of :class:`TextIOBase`." msgstr "" -#: ../../library/io.rst:80 ../../library/io.rst:1237 msgid "Binary I/O" msgstr "" -#: ../../library/io.rst:82 -msgid "" -"Binary I/O (also called *buffered I/O*) expects :term:`bytes-like objects " -"` and produces :class:`bytes` objects. No encoding, " -"decoding, or newline translation is performed. This category of streams can " -"be used for all kinds of non-text data, and also when manual control over " -"the handling of text data is desired." +msgid "Binary I/O (also called *buffered I/O*) expects :term:`bytes-like objects ` and produces :class:`bytes` objects. No encoding, decoding, or newline translation is performed. This category of streams can be used for all kinds of non-text data, and also when manual control over the handling of text data is desired." msgstr "" -#: ../../library/io.rst:88 -msgid "" -"The easiest way to create a binary stream is with :meth:`open` with ``'b'`` " -"in the mode string::" +msgid "The easiest way to create a binary stream is with :meth:`open` with ``'b'`` in the mode string::" msgstr "" -#: ../../library/io.rst:91 msgid "f = open(\"myfile.jpg\", \"rb\")" msgstr "" -#: ../../library/io.rst:93 -msgid "" -"In-memory binary streams are also available as :class:`BytesIO` objects::" +msgid "In-memory binary streams are also available as :class:`BytesIO` objects::" msgstr "" -#: ../../library/io.rst:95 msgid "f = io.BytesIO(b\"some initial binary data: \\x00\\x01\")" msgstr "" -#: ../../library/io.rst:97 -msgid "" -"The binary stream API is described in detail in the docs " -"of :class:`BufferedIOBase`." +msgid "The binary stream API is described in detail in the docs of :class:`BufferedIOBase`." msgstr "" -#: ../../library/io.rst:100 -msgid "" -"Other library modules may provide additional ways to create text or binary " -"streams. See :meth:`socket.socket.makefile` for example." +msgid "Other library modules may provide additional ways to create text or binary streams. See :meth:`socket.socket.makefile` for example." msgstr "" -#: ../../library/io.rst:105 msgid "Raw I/O" msgstr "" -#: ../../library/io.rst:107 -msgid "" -"Raw I/O (also called *unbuffered I/O*) is generally used as a low-level " -"building-block for binary and text streams; it is rarely useful to directly " -"manipulate a raw stream from user code. Nevertheless, you can create a raw " -"stream by opening a file in binary mode with buffering disabled::" +msgid "Raw I/O (also called *unbuffered I/O*) is generally used as a low-level building-block for binary and text streams; it is rarely useful to directly manipulate a raw stream from user code. Nevertheless, you can create a raw stream by opening a file in binary mode with buffering disabled::" msgstr "" -#: ../../library/io.rst:112 msgid "f = open(\"myfile.jpg\", \"rb\", buffering=0)" msgstr "" -#: ../../library/io.rst:114 -msgid "" -"The raw stream API is described in detail in the docs of :class:`RawIOBase`." +msgid "The raw stream API is described in detail in the docs of :class:`RawIOBase`." msgstr "" -#: ../../library/io.rst:117 -msgid "" -"Raw I/O is a low-level interface and methods generally must have their " -"return values checked and be explicitly retried to ensure an operation " -"completes. For instance :meth:`~RawIOBase.write` returns the number of bytes " -"written which may be less than the number of bytes provided (a partial " -"write). High-level I/O objects like :ref:`binary-io` and :ref:`text-io` " -"implement retry behavior." +msgid "Raw I/O is a low-level interface and methods generally must have their return values checked and be explicitly retried to ensure an operation completes. For instance :meth:`~RawIOBase.write` returns the number of bytes written which may be less than the number of bytes provided (a partial write). High-level I/O objects like :ref:`binary-io` and :ref:`text-io` implement retry behavior." msgstr "" -#: ../../library/io.rst:127 msgid "Text Encoding" msgstr "" -#: ../../library/io.rst:129 -msgid "" -"The default encoding of :class:`TextIOWrapper` and :func:`open` is locale-" -"specific (:func:`locale.getencoding`)." +msgid "The default encoding of :class:`TextIOWrapper` and :func:`open` is locale-specific (:func:`locale.getencoding`)." msgstr "" -#: ../../library/io.rst:132 -msgid "" -"However, many developers forget to specify the encoding when opening text " -"files encoded in UTF-8 (e.g. JSON, TOML, Markdown, etc...) since most Unix " -"platforms use UTF-8 locale by default. This causes bugs because the locale " -"encoding is not UTF-8 for most Windows users. For example::" +msgid "However, many developers forget to specify the encoding when opening text files encoded in UTF-8 (e.g. JSON, TOML, Markdown, etc...) since most Unix platforms use UTF-8 locale by default. This causes bugs because the locale encoding is not UTF-8 for most Windows users. For example::" msgstr "" -#: ../../library/io.rst:137 msgid "" "# May not work on Windows when non-ASCII characters in the file.\n" "with open(\"README.md\") as f:\n" " long_description = f.read()" msgstr "" -#: ../../library/io.rst:141 -msgid "" -"Accordingly, it is highly recommended that you specify the encoding " -"explicitly when opening text files. If you want to use UTF-8, pass " -"``encoding=\"utf-8\"``. To use the current locale encoding, " -"``encoding=\"locale\"`` is supported since Python 3.10." +msgid "Accordingly, it is highly recommended that you specify the encoding explicitly when opening text files. If you want to use UTF-8, pass ``encoding=\"utf-8\"``. To use the current locale encoding, ``encoding=\"locale\"`` is supported since Python 3.10." msgstr "" -#: ../../library/io.rst:148 msgid ":ref:`utf8-mode`" msgstr "" -#: ../../library/io.rst:149 -msgid "" -"Python UTF-8 Mode can be used to change the default encoding to UTF-8 from " -"locale-specific encoding." +msgid "Python UTF-8 Mode can be used to change the default encoding to UTF-8 from locale-specific encoding." msgstr "" -#: ../../library/io.rst:152 msgid ":pep:`686`" msgstr "" -#: ../../library/io.rst:153 msgid "Python 3.15 will make :ref:`utf8-mode` default." msgstr "" -#: ../../library/io.rst:158 msgid "Opt-in EncodingWarning" msgstr "" -#: ../../library/io.rst:160 msgid "See :pep:`597` for more details." msgstr "" -#: ../../library/io.rst:163 -msgid "" -"To find where the default locale encoding is used, you can enable " -"the :option:`-X warn_default_encoding <-X>` command line option or set " -"the :envvar:`PYTHONWARNDEFAULTENCODING` environment variable, which will " -"emit an :exc:`EncodingWarning` when the default encoding is used." +msgid "To find where the default locale encoding is used, you can enable the :option:`-X warn_default_encoding <-X>` command line option or set the :envvar:`PYTHONWARNDEFAULTENCODING` environment variable, which will emit an :exc:`EncodingWarning` when the default encoding is used." msgstr "" -#: ../../library/io.rst:168 -msgid "" -"If you are providing an API that uses :func:`open` or :class:`TextIOWrapper` " -"and passes ``encoding=None`` as a parameter, you can " -"use :func:`text_encoding` so that callers of the API will emit " -"an :exc:`EncodingWarning` if they don't pass an ``encoding``. However, " -"please consider using UTF-8 by default (i.e. ``encoding=\"utf-8\"``) for new " -"APIs." +msgid "If you are providing an API that uses :func:`open` or :class:`TextIOWrapper` and passes ``encoding=None`` as a parameter, you can use :func:`text_encoding` so that callers of the API will emit an :exc:`EncodingWarning` if they don't pass an ``encoding``. However, please consider using UTF-8 by default (i.e. ``encoding=\"utf-8\"``) for new APIs." msgstr "" -#: ../../library/io.rst:177 msgid "High-level Module Interface" msgstr "" -#: ../../library/io.rst:181 -msgid "" -"An int containing the default buffer size used by the module's buffered I/O " -"classes. :func:`open` uses the file's blksize (as obtained " -"by :func:`os.stat`) if possible." +msgid "An int containing the default buffer size used by the module's buffered I/O classes. :func:`open` uses the file's blksize (as obtained by :func:`os.stat`) if possible." msgstr "" -#: ../../library/io.rst:188 msgid "This is an alias for the builtin :func:`open` function." msgstr "" -#: ../../library/io.rst:190 ../../library/io.rst:192 -msgid "" -"This function raises an :ref:`auditing event ` ``open`` with " -"arguments *path*, *mode* and *flags*. The *mode* and *flags* arguments may " -"have been modified or inferred from the original call." +msgid "This function raises an :ref:`auditing event ` ``open`` with arguments *path*, *mode* and *flags*. The *mode* and *flags* arguments may have been modified or inferred from the original call." msgstr "" -#: ../../library/io.rst:199 -msgid "" -"Opens the provided file with mode ``'rb'``. This function should be used " -"when the intent is to treat the contents as executable code." +msgid "Opens the provided file with mode ``'rb'``. This function should be used when the intent is to treat the contents as executable code." msgstr "" -#: ../../library/io.rst:202 msgid "*path* should be a :class:`str` and an absolute path." msgstr "" -#: ../../library/io.rst:204 -msgid "" -"The behavior of this function may be overridden by an earlier call to " -"the :c:func:`PyFile_SetOpenCodeHook`. However, assuming that *path* is " -"a :class:`str` and an absolute path, ``open_code(path)`` should always " -"behave the same as ``open(path, 'rb')``. Overriding the behavior is intended " -"for additional validation or preprocessing of the file." +msgid "The behavior of this function may be overridden by an earlier call to the :c:func:`PyFile_SetOpenCodeHook`. However, assuming that *path* is a :class:`str` and an absolute path, ``open_code(path)`` should always behave the same as ``open(path, 'rb')``. Overriding the behavior is intended for additional validation or preprocessing of the file." msgstr "" -#: ../../library/io.rst:215 -msgid "" -"This is a helper function for callables that use :func:`open` " -"or :class:`TextIOWrapper` and have an ``encoding=None`` parameter." +msgid "This is a helper function for callables that use :func:`open` or :class:`TextIOWrapper` and have an ``encoding=None`` parameter." msgstr "" -#: ../../library/io.rst:218 -msgid "" -"This function returns *encoding* if it is not ``None``. Otherwise, it " -"returns ``\"locale\"`` or ``\"utf-8\"`` depending on :ref:`UTF-8 Mode `." +msgid "This function returns *encoding* if it is not ``None``. Otherwise, it returns ``\"locale\"`` or ``\"utf-8\"`` depending on :ref:`UTF-8 Mode `." msgstr "" -#: ../../library/io.rst:222 -msgid "" -"This function emits an :class:`EncodingWarning` " -"if :data:`sys.flags.warn_default_encoding ` is true and " -"*encoding* is ``None``. *stacklevel* specifies where the warning is emitted. " -"For example::" +msgid "This function emits an :class:`EncodingWarning` if :data:`sys.flags.warn_default_encoding ` is true and *encoding* is ``None``. *stacklevel* specifies where the warning is emitted. For example::" msgstr "" -#: ../../library/io.rst:227 msgid "" "def read_text(path, encoding=None):\n" " encoding = io.text_encoding(encoding) # stacklevel=2\n" @@ -335,775 +187,377 @@ msgid "" " return f.read()" msgstr "" -#: ../../library/io.rst:232 -msgid "" -"In this example, an :class:`EncodingWarning` is emitted for the caller of " -"``read_text()``." +msgid "In this example, an :class:`EncodingWarning` is emitted for the caller of ``read_text()``." msgstr "" -#: ../../library/io.rst:235 msgid "See :ref:`io-text-encoding` for more information." msgstr "" -#: ../../library/io.rst:239 -msgid "" -":func:`text_encoding` returns \"utf-8\" when UTF-8 mode is enabled and " -"*encoding* is ``None``." +msgid ":func:`text_encoding` returns \"utf-8\" when UTF-8 mode is enabled and *encoding* is ``None``." msgstr "" -#: ../../library/io.rst:246 -msgid "" -"This is a compatibility alias for the builtin :exc:`BlockingIOError` " -"exception." +msgid "This is a compatibility alias for the builtin :exc:`BlockingIOError` exception." msgstr "" -#: ../../library/io.rst:252 -msgid "" -"An exception inheriting :exc:`OSError` and :exc:`ValueError` that is raised " -"when an unsupported operation is called on a stream." +msgid "An exception inheriting :exc:`OSError` and :exc:`ValueError` that is raised when an unsupported operation is called on a stream." msgstr "" -#: ../../library/io.rst:258 msgid ":mod:`sys`" msgstr "" -#: ../../library/io.rst:259 -msgid "" -"contains the standard IO streams: :data:`sys.stdin`, :data:`sys.stdout`, " -"and :data:`sys.stderr`." +msgid "contains the standard IO streams: :data:`sys.stdin`, :data:`sys.stdout`, and :data:`sys.stderr`." msgstr "" -#: ../../library/io.rst:264 msgid "Class hierarchy" msgstr "" -#: ../../library/io.rst:266 -msgid "" -"The implementation of I/O streams is organized as a hierarchy of classes. " -"First :term:`abstract base classes ` (ABCs), which are " -"used to specify the various categories of streams, then concrete classes " -"providing the standard stream implementations." +msgid "The implementation of I/O streams is organized as a hierarchy of classes. First :term:`abstract base classes ` (ABCs), which are used to specify the various categories of streams, then concrete classes providing the standard stream implementations." msgstr "" -#: ../../library/io.rst:273 -msgid "" -"The abstract base classes also provide default implementations of some " -"methods in order to help implementation of concrete stream classes. For " -"example, :class:`BufferedIOBase` provides unoptimized implementations " -"of :meth:`!readinto` and :meth:`!readline`." +msgid "The abstract base classes also provide default implementations of some methods in order to help implementation of concrete stream classes. For example, :class:`BufferedIOBase` provides unoptimized implementations of :meth:`!readinto` and :meth:`!readline`." msgstr "" -#: ../../library/io.rst:278 -msgid "" -"At the top of the I/O hierarchy is the abstract base class :class:`IOBase`. " -"It defines the basic interface to a stream. Note, however, that there is no " -"separation between reading and writing to streams; implementations are " -"allowed to raise :exc:`UnsupportedOperation` if they do not support a given " -"operation." +msgid "At the top of the I/O hierarchy is the abstract base class :class:`IOBase`. It defines the basic interface to a stream. Note, however, that there is no separation between reading and writing to streams; implementations are allowed to raise :exc:`UnsupportedOperation` if they do not support a given operation." msgstr "" -#: ../../library/io.rst:283 -msgid "" -"The :class:`RawIOBase` ABC extends :class:`IOBase`. It deals with the " -"reading and writing of bytes to a stream. :class:`FileIO` " -"subclasses :class:`RawIOBase` to provide an interface to files in the " -"machine's file system." +msgid "The :class:`RawIOBase` ABC extends :class:`IOBase`. It deals with the reading and writing of bytes to a stream. :class:`FileIO` subclasses :class:`RawIOBase` to provide an interface to files in the machine's file system." msgstr "" -#: ../../library/io.rst:287 -msgid "" -"The :class:`BufferedIOBase` ABC extends :class:`IOBase`. It deals with " -"buffering on a raw binary stream (:class:`RawIOBase`). Its " -"subclasses, :class:`BufferedWriter`, :class:`BufferedReader`, " -"and :class:`BufferedRWPair` buffer raw binary streams that are writable, " -"readable, and both readable and writable, " -"respectively. :class:`BufferedRandom` provides a buffered interface to " -"seekable streams. Another :class:`BufferedIOBase` " -"subclass, :class:`BytesIO`, is a stream of in-memory bytes." +msgid "The :class:`BufferedIOBase` ABC extends :class:`IOBase`. It deals with buffering on a raw binary stream (:class:`RawIOBase`). Its subclasses, :class:`BufferedWriter`, :class:`BufferedReader`, and :class:`BufferedRWPair` buffer raw binary streams that are writable, readable, and both readable and writable, respectively. :class:`BufferedRandom` provides a buffered interface to seekable streams. Another :class:`BufferedIOBase` subclass, :class:`BytesIO`, is a stream of in-memory bytes." msgstr "" -#: ../../library/io.rst:295 -msgid "" -"The :class:`TextIOBase` ABC extends :class:`IOBase`. It deals with streams " -"whose bytes represent text, and handles encoding and decoding to and from " -"strings. :class:`TextIOWrapper`, which extends :class:`TextIOBase`, is a " -"buffered text interface to a buffered raw stream (:class:`BufferedIOBase`). " -"Finally, :class:`StringIO` is an in-memory stream for text." +msgid "The :class:`TextIOBase` ABC extends :class:`IOBase`. It deals with streams whose bytes represent text, and handles encoding and decoding to and from strings. :class:`TextIOWrapper`, which extends :class:`TextIOBase`, is a buffered text interface to a buffered raw stream (:class:`BufferedIOBase`). Finally, :class:`StringIO` is an in-memory stream for text." msgstr "" -#: ../../library/io.rst:301 -msgid "" -"Argument names are not part of the specification, and only the arguments " -"of :func:`open` are intended to be used as keyword arguments." +msgid "Argument names are not part of the specification, and only the arguments of :func:`open` are intended to be used as keyword arguments." msgstr "" -#: ../../library/io.rst:304 -msgid "" -"The following table summarizes the ABCs provided by the :mod:`!io` module:" +msgid "The following table summarizes the ABCs provided by the :mod:`!io` module:" msgstr "" -#: ../../library/io.rst:309 msgid "ABC" msgstr "" -#: ../../library/io.rst:309 msgid "Inherits" msgstr "" -#: ../../library/io.rst:309 msgid "Stub Methods" msgstr "" -#: ../../library/io.rst:309 msgid "Mixin Methods and Properties" msgstr "" -#: ../../library/io.rst:311 ../../library/io.rst:316 ../../library/io.rst:318 -#: ../../library/io.rst:320 msgid ":class:`IOBase`" msgstr "" -#: ../../library/io.rst:311 msgid "``fileno``, ``seek``, and ``truncate``" msgstr "" -#: ../../library/io.rst:311 -msgid "" -"``close``, ``closed``, ``__enter__``, ``__exit__``, ``flush``, ``isatty``, " -"``__iter__``, ``__next__``, ``readable``, ``readline``, ``readlines``, " -"``seekable``, ``tell``, ``writable``, and ``writelines``" +msgid "``close``, ``closed``, ``__enter__``, ``__exit__``, ``flush``, ``isatty``, ``__iter__``, ``__next__``, ``readable``, ``readline``, ``readlines``, ``seekable``, ``tell``, ``writable``, and ``writelines``" msgstr "" -#: ../../library/io.rst:316 msgid ":class:`RawIOBase`" msgstr "" -#: ../../library/io.rst:316 msgid "``readinto`` and ``write``" msgstr "" -#: ../../library/io.rst:316 msgid "Inherited :class:`IOBase` methods, ``read``, and ``readall``" msgstr "" -#: ../../library/io.rst:318 msgid ":class:`BufferedIOBase`" msgstr "" -#: ../../library/io.rst:318 msgid "``detach``, ``read``, ``read1``, and ``write``" msgstr "" -#: ../../library/io.rst:318 msgid "Inherited :class:`IOBase` methods, ``readinto``, and ``readinto1``" msgstr "" -#: ../../library/io.rst:320 msgid ":class:`TextIOBase`" msgstr "" -#: ../../library/io.rst:320 msgid "``detach``, ``read``, ``readline``, and ``write``" msgstr "" -#: ../../library/io.rst:320 -msgid "" -"Inherited :class:`IOBase` methods, ``encoding``, ``errors``, and ``newlines``" +msgid "Inherited :class:`IOBase` methods, ``encoding``, ``errors``, and ``newlines``" msgstr "" -#: ../../library/io.rst:327 msgid "I/O Base Classes" msgstr "" -#: ../../library/io.rst:331 msgid "The abstract base class for all I/O classes." msgstr "" -#: ../../library/io.rst:333 -msgid "" -"This class provides empty abstract implementations for many methods that " -"derived classes can override selectively; the default implementations " -"represent a file that cannot be read, written or seeked." +msgid "This class provides empty abstract implementations for many methods that derived classes can override selectively; the default implementations represent a file that cannot be read, written or seeked." msgstr "" -#: ../../library/io.rst:338 -msgid "" -"Even though :class:`IOBase` does not declare :meth:`!read` or :meth:`!write` " -"because their signatures will vary, implementations and clients should " -"consider those methods part of the interface. Also, implementations may " -"raise a :exc:`ValueError` (or :exc:`UnsupportedOperation`) when operations " -"they do not support are called." +msgid "Even though :class:`IOBase` does not declare :meth:`!read` or :meth:`!write` because their signatures will vary, implementations and clients should consider those methods part of the interface. Also, implementations may raise a :exc:`ValueError` (or :exc:`UnsupportedOperation`) when operations they do not support are called." msgstr "" -#: ../../library/io.rst:344 -msgid "" -"The basic type used for binary data read from or written to a file " -"is :class:`bytes`. Other :term:`bytes-like objects ` are " -"accepted as method arguments too. Text I/O classes work with :class:`str` " -"data." +msgid "The basic type used for binary data read from or written to a file is :class:`bytes`. Other :term:`bytes-like objects ` are accepted as method arguments too. Text I/O classes work with :class:`str` data." msgstr "" -#: ../../library/io.rst:348 -msgid "" -"Note that calling any method (even inquiries) on a closed stream is " -"undefined. Implementations may raise :exc:`ValueError` in this case." +msgid "Note that calling any method (even inquiries) on a closed stream is undefined. Implementations may raise :exc:`ValueError` in this case." msgstr "" -#: ../../library/io.rst:351 -msgid "" -":class:`IOBase` (and its subclasses) supports the iterator protocol, meaning " -"that an :class:`IOBase` object can be iterated over yielding the lines in a " -"stream. Lines are defined slightly differently depending on whether the " -"stream is a binary stream (yielding bytes), or a text stream (yielding " -"character strings). See :meth:`~IOBase.readline` below." +msgid ":class:`IOBase` (and its subclasses) supports the iterator protocol, meaning that an :class:`IOBase` object can be iterated over yielding the lines in a stream. Lines are defined slightly differently depending on whether the stream is a binary stream (yielding bytes), or a text stream (yielding character strings). See :meth:`~IOBase.readline` below." msgstr "" -#: ../../library/io.rst:357 -msgid "" -":class:`IOBase` is also a context manager and therefore supports " -"the :keyword:`with` statement. In this example, *file* is closed after " -"the :keyword:`!with` statement's suite is finished---even if an exception " -"occurs::" +msgid ":class:`IOBase` is also a context manager and therefore supports the :keyword:`with` statement. In this example, *file* is closed after the :keyword:`!with` statement's suite is finished---even if an exception occurs::" msgstr "" -#: ../../library/io.rst:361 msgid "" "with open('spam.txt', 'w') as file:\n" " file.write('Spam and eggs!')" msgstr "" -#: ../../library/io.rst:364 msgid ":class:`IOBase` provides these data attributes and methods:" msgstr "" -#: ../../library/io.rst:368 -msgid "" -"Flush and close this stream. This method has no effect if the file is " -"already closed. Once the file is closed, any operation on the file (e.g. " -"reading or writing) will raise a :exc:`ValueError`." +msgid "Flush and close this stream. This method has no effect if the file is already closed. Once the file is closed, any operation on the file (e.g. reading or writing) will raise a :exc:`ValueError`." msgstr "" -#: ../../library/io.rst:372 -msgid "" -"As a convenience, it is allowed to call this method more than once; only the " -"first call, however, will have an effect." +msgid "As a convenience, it is allowed to call this method more than once; only the first call, however, will have an effect." msgstr "" -#: ../../library/io.rst:377 msgid "``True`` if the stream is closed." msgstr "" -#: ../../library/io.rst:381 -msgid "" -"Return the underlying file descriptor (an integer) of the stream if it " -"exists. An :exc:`OSError` is raised if the IO object does not use a file " -"descriptor." +msgid "Return the underlying file descriptor (an integer) of the stream if it exists. An :exc:`OSError` is raised if the IO object does not use a file descriptor." msgstr "" -#: ../../library/io.rst:387 -msgid "" -"Flush the write buffers of the stream if applicable. This does nothing for " -"read-only and non-blocking streams." +msgid "Flush the write buffers of the stream if applicable. This does nothing for read-only and non-blocking streams." msgstr "" -#: ../../library/io.rst:392 -msgid "" -"Return ``True`` if the stream is interactive (i.e., connected to a terminal/" -"tty device)." +msgid "Return ``True`` if the stream is interactive (i.e., connected to a terminal/tty device)." msgstr "" -#: ../../library/io.rst:397 -msgid "" -"Return ``True`` if the stream can be read from. If ``False``, :meth:`!read` " -"will raise :exc:`OSError`." +msgid "Return ``True`` if the stream can be read from. If ``False``, :meth:`!read` will raise :exc:`OSError`." msgstr "" -#: ../../library/io.rst:402 -msgid "" -"Read and return one line from the stream. If *size* is specified, at most " -"*size* bytes will be read." +msgid "Read and return one line from the stream. If *size* is specified, at most *size* bytes will be read." msgstr "" -#: ../../library/io.rst:405 -msgid "" -"The line terminator is always ``b'\\n'`` for binary files; for text files, " -"the *newline* argument to :func:`open` can be used to select the line " -"terminator(s) recognized." +msgid "The line terminator is always ``b'\\n'`` for binary files; for text files, the *newline* argument to :func:`open` can be used to select the line terminator(s) recognized." msgstr "" -#: ../../library/io.rst:411 -msgid "" -"Read and return a list of lines from the stream. *hint* can be specified to " -"control the number of lines read: no more lines will be read if the total " -"size (in bytes/characters) of all lines so far exceeds *hint*." +msgid "Read and return a list of lines from the stream. *hint* can be specified to control the number of lines read: no more lines will be read if the total size (in bytes/characters) of all lines so far exceeds *hint*." msgstr "" -#: ../../library/io.rst:415 -msgid "" -"*hint* values of ``0`` or less, as well as ``None``, are treated as no hint." +msgid "*hint* values of ``0`` or less, as well as ``None``, are treated as no hint." msgstr "" -#: ../../library/io.rst:418 -msgid "" -"Note that it's already possible to iterate on file objects using ``for line " -"in file: ...`` without calling :meth:`!file.readlines`." +msgid "Note that it's already possible to iterate on file objects using ``for line in file: ...`` without calling :meth:`!file.readlines`." msgstr "" -#: ../../library/io.rst:423 -msgid "" -"Change the stream position to the given byte *offset*, interpreted relative " -"to the position indicated by *whence*, and return the new absolute position. " -"Values for *whence* are:" +msgid "Change the stream position to the given byte *offset*, interpreted relative to the position indicated by *whence*, and return the new absolute position. Values for *whence* are:" msgstr "" -#: ../../library/io.rst:428 -msgid "" -":data:`os.SEEK_SET` or ``0`` -- start of the stream (the default); *offset* " -"should be zero or positive" +msgid ":data:`os.SEEK_SET` or ``0`` -- start of the stream (the default); *offset* should be zero or positive" msgstr "" -#: ../../library/io.rst:430 -msgid "" -":data:`os.SEEK_CUR` or ``1`` -- current stream position; *offset* may be " -"negative" +msgid ":data:`os.SEEK_CUR` or ``1`` -- current stream position; *offset* may be negative" msgstr "" -#: ../../library/io.rst:432 -msgid "" -":data:`os.SEEK_END` or ``2`` -- end of the stream; *offset* is usually " -"negative" +msgid ":data:`os.SEEK_END` or ``2`` -- end of the stream; *offset* is usually negative" msgstr "" -#: ../../library/io.rst:435 ../../library/io.rst:975 msgid "The :data:`!SEEK_*` constants." msgstr "" -#: ../../library/io.rst:438 -msgid "" -"Some operating systems could support additional values, " -"like :const:`os.SEEK_HOLE` or :const:`os.SEEK_DATA`. The valid values for a " -"file could depend on it being open in text or binary mode." +msgid "Some operating systems could support additional values, like :const:`os.SEEK_HOLE` or :const:`os.SEEK_DATA`. The valid values for a file could depend on it being open in text or binary mode." msgstr "" -#: ../../library/io.rst:445 -msgid "" -"Return ``True`` if the stream supports random access. If " -"``False``, :meth:`seek`, :meth:`tell` and :meth:`truncate` will " -"raise :exc:`OSError`." +msgid "Return ``True`` if the stream supports random access. If ``False``, :meth:`seek`, :meth:`tell` and :meth:`truncate` will raise :exc:`OSError`." msgstr "" -#: ../../library/io.rst:450 msgid "Return the current stream position." msgstr "" -#: ../../library/io.rst:454 -msgid "" -"Resize the stream to the given *size* in bytes (or the current position if " -"*size* is not specified). The current stream position isn't changed. This " -"resizing can extend or reduce the current file size. In case of extension, " -"the contents of the new file area depend on the platform (on most systems, " -"additional bytes are zero-filled). The new file size is returned." +msgid "Resize the stream to the given *size* in bytes (or the current position if *size* is not specified). The current stream position isn't changed. This resizing can extend or reduce the current file size. In case of extension, the contents of the new file area depend on the platform (on most systems, additional bytes are zero-filled). The new file size is returned." msgstr "" -#: ../../library/io.rst:461 msgid "Windows will now zero-fill files when extending." msgstr "" -#: ../../library/io.rst:466 -msgid "" -"Return ``True`` if the stream supports writing. If ``False``, :meth:`!" -"write` and :meth:`truncate` will raise :exc:`OSError`." +msgid "Return ``True`` if the stream supports writing. If ``False``, :meth:`!write` and :meth:`truncate` will raise :exc:`OSError`." msgstr "" -#: ../../library/io.rst:471 -msgid "" -"Write a list of lines to the stream. Line separators are not added, so it " -"is usual for each of the lines provided to have a line separator at the end." +msgid "Write a list of lines to the stream. Line separators are not added, so it is usual for each of the lines provided to have a line separator at the end." msgstr "" -#: ../../library/io.rst:477 -msgid "" -"Prepare for object destruction. :class:`IOBase` provides a default " -"implementation of this method that calls the " -"instance's :meth:`~IOBase.close` method." +msgid "Prepare for object destruction. :class:`IOBase` provides a default implementation of this method that calls the instance's :meth:`~IOBase.close` method." msgstr "" -#: ../../library/io.rst:484 msgid "Base class for raw binary streams. It inherits from :class:`IOBase`." msgstr "" -#: ../../library/io.rst:486 -msgid "" -"Raw binary streams typically provide low-level access to an underlying OS " -"device or API, and do not try to encapsulate it in high-level primitives " -"(this functionality is done at a higher-level in buffered binary streams and " -"text streams, described later in this page)." +msgid "Raw binary streams typically provide low-level access to an underlying OS device or API, and do not try to encapsulate it in high-level primitives (this functionality is done at a higher-level in buffered binary streams and text streams, described later in this page)." msgstr "" -#: ../../library/io.rst:491 -msgid "" -":class:`RawIOBase` provides these methods in addition to those " -"from :class:`IOBase`:" +msgid ":class:`RawIOBase` provides these methods in addition to those from :class:`IOBase`:" msgstr "" -#: ../../library/io.rst:496 -msgid "" -"Read up to *size* bytes from the object and return them. As a convenience, " -"if *size* is unspecified or -1, all bytes until EOF are returned." +msgid "Read up to *size* bytes from the object and return them. As a convenience, if *size* is unspecified or -1, all bytes until EOF are returned." msgstr "" -#: ../../library/io.rst:499 -msgid "" -"Attempts to make only one system call but will retry if interrupted and the " -"signal handler does not raise an exception (see :pep:`475` for the " -"rationale). This means fewer than *size* bytes may be returned if the " -"operating system call returns fewer than *size* bytes." +msgid "Attempts to make only one system call but will retry if interrupted and the signal handler does not raise an exception (see :pep:`475` for the rationale). This means fewer than *size* bytes may be returned if the operating system call returns fewer than *size* bytes." msgstr "" -#: ../../library/io.rst:504 -msgid "" -"If 0 bytes are returned, and *size* was not 0, this indicates end of file. " -"If the object is in non-blocking mode and no bytes are available, ``None`` " -"is returned." +msgid "If 0 bytes are returned, and *size* was not 0, this indicates end of file. If the object is in non-blocking mode and no bytes are available, ``None`` is returned." msgstr "" -#: ../../library/io.rst:508 -msgid "" -"The default implementation defers to :meth:`readall` and :meth:`readinto`." +msgid "The default implementation defers to :meth:`readall` and :meth:`readinto`." msgstr "" -#: ../../library/io.rst:513 -msgid "" -"Read and return all the bytes from the stream until EOF, using multiple " -"calls to the stream if necessary." +msgid "Read and return all the bytes from the stream until EOF, using multiple calls to the stream if necessary." msgstr "" -#: ../../library/io.rst:516 -msgid "" -"If ``0`` bytes are returned this indicates end of file. If the object is in " -"non-blocking mode and the underlying :meth:`read` returns ``None`` " -"indicating no bytes are available, ``None`` is returned." +msgid "If ``0`` bytes are returned this indicates end of file. If the object is in non-blocking mode and the underlying :meth:`read` returns ``None`` indicating no bytes are available, ``None`` is returned." msgstr "" -#: ../../library/io.rst:522 -msgid "" -"Read bytes into a pre-allocated, writable :term:`bytes-like object` *b*, and " -"return the number of bytes read. For example, *b* might be " -"a :class:`bytearray`." +msgid "Read bytes into a pre-allocated, writable :term:`bytes-like object` *b*, and return the number of bytes read. For example, *b* might be a :class:`bytearray`." msgstr "" -#: ../../library/io.rst:526 -msgid "" -"If ``0`` is returned and ``len(b)`` is not ``0``, this indicates end of " -"file. If the object is in non-blocking mode and no bytes are available, " -"``None`` is returned." +msgid "If ``0`` is returned and ``len(b)`` is not ``0``, this indicates end of file. If the object is in non-blocking mode and no bytes are available, ``None`` is returned." msgstr "" -#: ../../library/io.rst:532 -msgid "" -"Write the given :term:`bytes-like object`, *b*, to the underlying raw " -"stream, and return the number of bytes written. This can be less than the " -"length of *b* in bytes, depending on specifics of the underlying raw stream, " -"and especially if it is in non-blocking mode. ``None`` is returned if the " -"raw stream is set not to block and no single byte could be readily written " -"to it. The caller may release or mutate *b* after this method returns, so " -"the implementation should only access *b* during the method call." +msgid "Write the given :term:`bytes-like object`, *b*, to the underlying raw stream, and return the number of bytes written. This can be less than the length of *b* in bytes, depending on specifics of the underlying raw stream, and especially if it is in non-blocking mode. ``None`` is returned if the raw stream is set not to block and no single byte could be readily written to it. The caller may release or mutate *b* after this method returns, so the implementation should only access *b* during the method call." msgstr "" -#: ../../library/io.rst:544 -msgid "" -"This function does not ensure all bytes are written or an exception is " -"thrown. Callers may implement that behavior by checking the return value " -"and, if it is less than the length of *b*, looping with additional write " -"calls until all unwritten bytes are written. High-level I/O objects " -"like :ref:`binary-io` and :ref:`text-io` implement retry behavior." +msgid "This function does not ensure all bytes are written or an exception is thrown. Callers may implement that behavior by checking the return value and, if it is less than the length of *b*, looping with additional write calls until all unwritten bytes are written. High-level I/O objects like :ref:`binary-io` and :ref:`text-io` implement retry behavior." msgstr "" -#: ../../library/io.rst:552 -msgid "" -"Base class for binary streams that support some kind of buffering. It " -"inherits from :class:`IOBase`." +msgid "Base class for binary streams that support some kind of buffering. It inherits from :class:`IOBase`." msgstr "" -#: ../../library/io.rst:555 -msgid "" -"The main difference with :class:`RawIOBase` is that " -"methods :meth:`read`, :meth:`readinto` and :meth:`write` will try " -"(respectively) to read as much input as requested or to emit all provided " -"data." +msgid "The main difference with :class:`RawIOBase` is that methods :meth:`read`, :meth:`readinto` and :meth:`write` will try (respectively) to read as much input as requested or to emit all provided data." msgstr "" -#: ../../library/io.rst:559 -msgid "" -"In addition, if the underlying raw stream is in non-blocking mode, when the " -"system returns would block :meth:`write` will raise :exc:`BlockingIOError` " -"with :attr:`BlockingIOError.characters_written` and :meth:`read` will return " -"data read so far or ``None`` if no data is available." +msgid "In addition, if the underlying raw stream is in non-blocking mode, when the system returns would block :meth:`write` will raise :exc:`BlockingIOError` with :attr:`BlockingIOError.characters_written` and :meth:`read` will return data read so far or ``None`` if no data is available." msgstr "" -#: ../../library/io.rst:564 -msgid "" -"Besides, the :meth:`read` method does not have a default implementation that " -"defers to :meth:`readinto`." +msgid "Besides, the :meth:`read` method does not have a default implementation that defers to :meth:`readinto`." msgstr "" -#: ../../library/io.rst:567 -msgid "" -"A typical :class:`BufferedIOBase` implementation should not inherit from " -"a :class:`RawIOBase` implementation, but wrap one, " -"like :class:`BufferedWriter` and :class:`BufferedReader` do." +msgid "A typical :class:`BufferedIOBase` implementation should not inherit from a :class:`RawIOBase` implementation, but wrap one, like :class:`BufferedWriter` and :class:`BufferedReader` do." msgstr "" -#: ../../library/io.rst:571 -msgid "" -":class:`BufferedIOBase` provides or overrides these data attributes and " -"methods in addition to those from :class:`IOBase`:" +msgid ":class:`BufferedIOBase` provides or overrides these data attributes and methods in addition to those from :class:`IOBase`:" msgstr "" -#: ../../library/io.rst:576 -msgid "" -"The underlying raw stream (a :class:`RawIOBase` instance) " -"that :class:`BufferedIOBase` deals with. This is not part of " -"the :class:`BufferedIOBase` API and may not exist on some implementations." +msgid "The underlying raw stream (a :class:`RawIOBase` instance) that :class:`BufferedIOBase` deals with. This is not part of the :class:`BufferedIOBase` API and may not exist on some implementations." msgstr "" -#: ../../library/io.rst:582 msgid "Separate the underlying raw stream from the buffer and return it." msgstr "" -#: ../../library/io.rst:584 -msgid "" -"After the raw stream has been detached, the buffer is in an unusable state." +msgid "After the raw stream has been detached, the buffer is in an unusable state." msgstr "" -#: ../../library/io.rst:587 -msgid "" -"Some buffers, like :class:`BytesIO`, do not have the concept of a single raw " -"stream to return from this method. They raise :exc:`UnsupportedOperation`." +msgid "Some buffers, like :class:`BytesIO`, do not have the concept of a single raw stream to return from this method. They raise :exc:`UnsupportedOperation`." msgstr "" -#: ../../library/io.rst:595 -msgid "" -"Read and return up to *size* bytes. If the argument is omitted, ``None``, or " -"negative read as much as possible." +msgid "Read and return up to *size* bytes. If the argument is omitted, ``None``, or negative read as much as possible." msgstr "" -#: ../../library/io.rst:598 -msgid "" -"Fewer bytes may be returned than requested. An empty :class:`bytes` object " -"is returned if the stream is already at EOF. More than one read may be made " -"and calls may be retried if specific errors are encountered, " -"see :meth:`os.read` and :pep:`475` for more details. Less than size bytes " -"being returned does not imply that EOF is imminent." +msgid "Fewer bytes may be returned than requested. An empty :class:`bytes` object is returned if the stream is already at EOF. More than one read may be made and calls may be retried if specific errors are encountered, see :meth:`os.read` and :pep:`475` for more details. Less than size bytes being returned does not imply that EOF is imminent." msgstr "" -#: ../../library/io.rst:604 -msgid "" -"When reading as much as possible the default implementation will use " -"``raw.readall`` if available (which should " -"implement :meth:`RawIOBase.readall`), otherwise will read in a loop until " -"read returns ``None``, an empty :class:`bytes`, or a non-retryable error. " -"For most streams this is to EOF, but for non-blocking streams more data may " -"become available." +msgid "When reading as much as possible the default implementation will use ``raw.readall`` if available (which should implement :meth:`RawIOBase.readall`), otherwise will read in a loop until read returns ``None``, an empty :class:`bytes`, or a non-retryable error. For most streams this is to EOF, but for non-blocking streams more data may become available." msgstr "" -#: ../../library/io.rst:613 ../../library/io.rst:626 -msgid "" -"When the underlying raw stream is non-blocking, implementations may either " -"raise :exc:`BlockingIOError` or return ``None`` if no data is " -"available. :mod:`!io` implementations return ``None``." +msgid "When the underlying raw stream is non-blocking, implementations may either raise :exc:`BlockingIOError` or return ``None`` if no data is available. :mod:`!io` implementations return ``None``." msgstr "" -#: ../../library/io.rst:619 -msgid "" -"Read and return up to *size* bytes, calling :meth:`~RawIOBase.readinto` " -"which may retry if :py:const:`~errno.EINTR` is encountered per :pep:`475`. " -"If *size* is ``-1`` or not provided, the implementation will choose an " -"arbitrary value for *size*." +msgid "Read and return up to *size* bytes, calling :meth:`~RawIOBase.readinto` which may retry if :py:const:`~errno.EINTR` is encountered per :pep:`475`. If *size* is ``-1`` or not provided, the implementation will choose an arbitrary value for *size*." msgstr "" -#: ../../library/io.rst:632 -msgid "" -"Read bytes into a pre-allocated, writable :term:`bytes-like object` *b* and " -"return the number of bytes read. For example, *b* might be " -"a :class:`bytearray`." +msgid "Read bytes into a pre-allocated, writable :term:`bytes-like object` *b* and return the number of bytes read. For example, *b* might be a :class:`bytearray`." msgstr "" -#: ../../library/io.rst:636 -msgid "" -"Like :meth:`read`, multiple reads may be issued to the underlying raw " -"stream, unless the latter is interactive." +msgid "Like :meth:`read`, multiple reads may be issued to the underlying raw stream, unless the latter is interactive." msgstr "" -#: ../../library/io.rst:639 ../../library/io.rst:649 -msgid "" -"A :exc:`BlockingIOError` is raised if the underlying raw stream is in non " -"blocking-mode, and has no data available at the moment." +msgid "A :exc:`BlockingIOError` is raised if the underlying raw stream is in non blocking-mode, and has no data available at the moment." msgstr "" -#: ../../library/io.rst:644 -msgid "" -"Read bytes into a pre-allocated, writable :term:`bytes-like object` *b*, " -"using at most one call to the underlying raw " -"stream's :meth:`~RawIOBase.read` (or :meth:`~RawIOBase.readinto`) method. " -"Return the number of bytes read." +msgid "Read bytes into a pre-allocated, writable :term:`bytes-like object` *b*, using at most one call to the underlying raw stream's :meth:`~RawIOBase.read` (or :meth:`~RawIOBase.readinto`) method. Return the number of bytes read." msgstr "" -#: ../../library/io.rst:656 -msgid "" -"Write the given :term:`bytes-like object`, *b*, and return the number of " -"bytes written (always equal to the length of *b* in bytes, since if the " -"write fails an :exc:`OSError` will be raised). Depending on the actual " -"implementation, these bytes may be readily written to the underlying stream, " -"or held in a buffer for performance and latency reasons." +msgid "Write the given :term:`bytes-like object`, *b*, and return the number of bytes written (always equal to the length of *b* in bytes, since if the write fails an :exc:`OSError` will be raised). Depending on the actual implementation, these bytes may be readily written to the underlying stream, or held in a buffer for performance and latency reasons." msgstr "" -#: ../../library/io.rst:663 -msgid "" -"When in non-blocking mode, a :exc:`BlockingIOError` is raised if the data " -"needed to be written to the raw stream but it couldn't accept all the data " -"without blocking." +msgid "When in non-blocking mode, a :exc:`BlockingIOError` is raised if the data needed to be written to the raw stream but it couldn't accept all the data without blocking." msgstr "" -#: ../../library/io.rst:667 -msgid "" -"The caller may release or mutate *b* after this method returns, so the " -"implementation should only access *b* during the method call." +msgid "The caller may release or mutate *b* after this method returns, so the implementation should only access *b* during the method call." msgstr "" -#: ../../library/io.rst:672 msgid "Raw File I/O" msgstr "" -#: ../../library/io.rst:676 -msgid "" -"A raw binary stream representing an OS-level file containing bytes data. It " -"inherits from :class:`RawIOBase` and implements its low-level access design. " -"This means :meth:`~RawIOBase.write` does not guarantee all bytes are written " -"and :meth:`~RawIOBase.read` may read less bytes than requested even when " -"more bytes may be present in the underlying file. To get \"write all\" and " -"\"read at least\" behavior, use :ref:`binary-io`." +msgid "A raw binary stream representing an OS-level file containing bytes data. It inherits from :class:`RawIOBase` and implements its low-level access design. This means :meth:`~RawIOBase.write` does not guarantee all bytes are written and :meth:`~RawIOBase.read` may read less bytes than requested even when more bytes may be present in the underlying file. To get \"write all\" and \"read at least\" behavior, use :ref:`binary-io`." msgstr "" -#: ../../library/io.rst:683 msgid "The *name* can be one of two things:" msgstr "" -#: ../../library/io.rst:685 -msgid "" -"a character string or :class:`bytes` object representing the path to the " -"file which will be opened. In this case closefd must be ``True`` (the " -"default) otherwise an error will be raised." +msgid "a character string or :class:`bytes` object representing the path to the file which will be opened. In this case closefd must be ``True`` (the default) otherwise an error will be raised." msgstr "" -#: ../../library/io.rst:688 -msgid "" -"an integer representing the number of an existing OS-level file descriptor " -"to which the resulting :class:`FileIO` object will give access. When the " -"FileIO object is closed this fd will be closed as well, unless *closefd* is " -"set to ``False``." +msgid "an integer representing the number of an existing OS-level file descriptor to which the resulting :class:`FileIO` object will give access. When the FileIO object is closed this fd will be closed as well, unless *closefd* is set to ``False``." msgstr "" -#: ../../library/io.rst:693 -msgid "" -"The *mode* can be ``'r'``, ``'w'``, ``'x'`` or ``'a'`` for reading " -"(default), writing, exclusive creation or appending. The file will be " -"created if it doesn't exist when opened for writing or appending; it will be " -"truncated when opened for writing. :exc:`FileExistsError` will be raised if " -"it already exists when opened for creating. Opening a file for creating " -"implies writing, so this mode behaves in a similar way to ``'w'``. Add a " -"``'+'`` to the mode to allow simultaneous reading and writing." +msgid "The *mode* can be ``'r'``, ``'w'``, ``'x'`` or ``'a'`` for reading (default), writing, exclusive creation or appending. The file will be created if it doesn't exist when opened for writing or appending; it will be truncated when opened for writing. :exc:`FileExistsError` will be raised if it already exists when opened for creating. Opening a file for creating implies writing, so this mode behaves in a similar way to ``'w'``. Add a ``'+'`` to the mode to allow simultaneous reading and writing." msgstr "" -#: ../../library/io.rst:701 -msgid "" -"A custom opener can be used by passing a callable as *opener*. The " -"underlying file descriptor for the file object is then obtained by calling " -"*opener* with (*name*, *flags*). *opener* must return an open file " -"descriptor (passing :mod:`os.open` as *opener* results in functionality " -"similar to passing ``None``)." +msgid "A custom opener can be used by passing a callable as *opener*. The underlying file descriptor for the file object is then obtained by calling *opener* with (*name*, *flags*). *opener* must return an open file descriptor (passing :mod:`os.open` as *opener* results in functionality similar to passing ``None``)." msgstr "" -#: ../../library/io.rst:707 msgid "The newly created file is :ref:`non-inheritable `." msgstr "" -#: ../../library/io.rst:709 -msgid "" -"See the :func:`open` built-in function for examples on using the *opener* " -"parameter." +msgid "See the :func:`open` built-in function for examples on using the *opener* parameter." msgstr "" -#: ../../library/io.rst:713 -msgid "" -":class:`FileIO` is a low-level I/O object and members, such " -"as :meth:`~RawIOBase.read` and :meth:`~RawIOBase.write`, need to have their " -"return values checked explicitly in a retry loop to implement \"write all\" " -"and \"read at least\" behavior. High-level I/O objects :ref:`binary-io` " -"and :ref:`text-io` implement retry behavior." +msgid ":class:`FileIO` is a low-level I/O object and members, such as :meth:`~RawIOBase.read` and :meth:`~RawIOBase.write`, need to have their return values checked explicitly in a retry loop to implement \"write all\" and \"read at least\" behavior. High-level I/O objects :ref:`binary-io` and :ref:`text-io` implement retry behavior." msgstr "" -#: ../../library/io.rst:719 msgid "The *opener* parameter was added. The ``'x'`` mode was added." msgstr "" -#: ../../library/io.rst:723 msgid "The file is now non-inheritable." msgstr "" -#: ../../library/io.rst:726 -msgid "" -":class:`FileIO` provides these data attributes in addition to those " -"from :class:`RawIOBase` and :class:`IOBase`:" +msgid ":class:`FileIO` provides these data attributes in addition to those from :class:`RawIOBase` and :class:`IOBase`:" msgstr "" -#: ../../library/io.rst:731 msgid "The mode as given in the constructor." msgstr "" -#: ../../library/io.rst:735 -msgid "" -"The file name. This is the file descriptor of the file when no name is " -"given in the constructor." +msgid "The file name. This is the file descriptor of the file when no name is given in the constructor." msgstr "" -#: ../../library/io.rst:740 msgid "Buffered Streams" msgstr "" -#: ../../library/io.rst:742 -msgid "" -"Buffered I/O streams provide a higher-level interface to an I/O device than " -"raw I/O does." +msgid "Buffered I/O streams provide a higher-level interface to an I/O device than raw I/O does." msgstr "" -#: ../../library/io.rst:747 -msgid "" -"A binary stream using an in-memory bytes buffer. It inherits " -"from :class:`BufferedIOBase`. The buffer is discarded when " -"the :meth:`~IOBase.close` method is called." +msgid "A binary stream using an in-memory bytes buffer. It inherits from :class:`BufferedIOBase`. The buffer is discarded when the :meth:`~IOBase.close` method is called." msgstr "" -#: ../../library/io.rst:751 -msgid "" -"The optional argument *initial_bytes* is a :term:`bytes-like object` that " -"contains initial data." +msgid "The optional argument *initial_bytes* is a :term:`bytes-like object` that contains initial data." msgstr "" -#: ../../library/io.rst:754 -msgid "" -":class:`BytesIO` provides or overrides these methods in addition to those " -"from :class:`BufferedIOBase` and :class:`IOBase`:" +msgid ":class:`BytesIO` provides or overrides these methods in addition to those from :class:`BufferedIOBase` and :class:`IOBase`:" msgstr "" -#: ../../library/io.rst:759 -msgid "" -"Return a readable and writable view over the contents of the buffer without " -"copying them. Also, mutating the view will transparently update the " -"contents of the buffer::" +msgid "Return a readable and writable view over the contents of the buffer without copying them. Also, mutating the view will transparently update the contents of the buffer::" msgstr "" -#: ../../library/io.rst:763 msgid "" ">>> b = io.BytesIO(b\"abcdef\")\n" ">>> view = b.getbuffer()\n" @@ -1112,523 +566,258 @@ msgid "" "b'ab56ef'" msgstr "" -#: ../../library/io.rst:770 -msgid "" -"As long as the view exists, the :class:`BytesIO` object cannot be resized or " -"closed." +msgid "As long as the view exists, the :class:`BytesIO` object cannot be resized or closed." msgstr "" -#: ../../library/io.rst:777 msgid "Return :class:`bytes` containing the entire contents of the buffer." msgstr "" -#: ../../library/io.rst:782 msgid "In :class:`BytesIO`, this is the same as :meth:`~BufferedIOBase.read`." msgstr "" -#: ../../library/io.rst:784 ../../library/io.rst:824 msgid "The *size* argument is now optional." msgstr "" -#: ../../library/io.rst:789 -msgid "" -"In :class:`BytesIO`, this is the same as :meth:`~BufferedIOBase.readinto`." +msgid "In :class:`BytesIO`, this is the same as :meth:`~BufferedIOBase.readinto`." msgstr "" -#: ../../library/io.rst:795 -msgid "" -"A buffered binary stream providing higher-level access to a readable, non " -"seekable :class:`RawIOBase` raw binary stream. It inherits " -"from :class:`BufferedIOBase`." +msgid "A buffered binary stream providing higher-level access to a readable, non seekable :class:`RawIOBase` raw binary stream. It inherits from :class:`BufferedIOBase`." msgstr "" -#: ../../library/io.rst:799 -msgid "" -"When reading data from this object, a larger amount of data may be requested " -"from the underlying raw stream, and kept in an internal buffer. The buffered " -"data can then be returned directly on subsequent reads." +msgid "When reading data from this object, a larger amount of data may be requested from the underlying raw stream, and kept in an internal buffer. The buffered data can then be returned directly on subsequent reads." msgstr "" -#: ../../library/io.rst:803 -msgid "" -"The constructor creates a :class:`BufferedReader` for the given readable " -"*raw* stream and *buffer_size*. If *buffer_size* is " -"omitted, :data:`DEFAULT_BUFFER_SIZE` is used." +msgid "The constructor creates a :class:`BufferedReader` for the given readable *raw* stream and *buffer_size*. If *buffer_size* is omitted, :data:`DEFAULT_BUFFER_SIZE` is used." msgstr "" -#: ../../library/io.rst:807 -msgid "" -":class:`BufferedReader` provides or overrides these methods in addition to " -"those from :class:`BufferedIOBase` and :class:`IOBase`:" +msgid ":class:`BufferedReader` provides or overrides these methods in addition to those from :class:`BufferedIOBase` and :class:`IOBase`:" msgstr "" -#: ../../library/io.rst:812 -msgid "" -"Return bytes from the stream without advancing the position. The number of " -"bytes returned may be less or more than requested. If the underlying raw " -"stream is non-blocking and the operation would block, returns empty bytes." +msgid "Return bytes from the stream without advancing the position. The number of bytes returned may be less or more than requested. If the underlying raw stream is non-blocking and the operation would block, returns empty bytes." msgstr "" -#: ../../library/io.rst:818 -msgid "" -"In :class:`BufferedReader` this is the same as :meth:`io.BufferedIOBase.read`" +msgid "In :class:`BufferedReader` this is the same as :meth:`io.BufferedIOBase.read`" msgstr "" -#: ../../library/io.rst:822 -msgid "" -"In :class:`BufferedReader` this is the same " -"as :meth:`io.BufferedIOBase.read1`" +msgid "In :class:`BufferedReader` this is the same as :meth:`io.BufferedIOBase.read1`" msgstr "" -#: ../../library/io.rst:829 -msgid "" -"A buffered binary stream providing higher-level access to a writeable, non " -"seekable :class:`RawIOBase` raw binary stream. It inherits " -"from :class:`BufferedIOBase`." +msgid "A buffered binary stream providing higher-level access to a writeable, non seekable :class:`RawIOBase` raw binary stream. It inherits from :class:`BufferedIOBase`." msgstr "" -#: ../../library/io.rst:833 -msgid "" -"When writing to this object, data is normally placed into an internal " -"buffer. The buffer will be written out to the underlying :class:`RawIOBase` " -"object under various conditions, including:" +msgid "When writing to this object, data is normally placed into an internal buffer. The buffer will be written out to the underlying :class:`RawIOBase` object under various conditions, including:" msgstr "" -#: ../../library/io.rst:837 msgid "when the buffer gets too small for all pending data;" msgstr "" -#: ../../library/io.rst:838 msgid "when :meth:`flush` is called;" msgstr "" -#: ../../library/io.rst:839 -msgid "" -"when a :meth:`~IOBase.seek` is requested (for :class:`BufferedRandom` " -"objects);" +msgid "when a :meth:`~IOBase.seek` is requested (for :class:`BufferedRandom` objects);" msgstr "" -#: ../../library/io.rst:840 msgid "when the :class:`BufferedWriter` object is closed or destroyed." msgstr "" -#: ../../library/io.rst:842 -msgid "" -"The constructor creates a :class:`BufferedWriter` for the given writeable " -"*raw* stream. If the *buffer_size* is not given, it defaults " -"to :data:`DEFAULT_BUFFER_SIZE`." +msgid "The constructor creates a :class:`BufferedWriter` for the given writeable *raw* stream. If the *buffer_size* is not given, it defaults to :data:`DEFAULT_BUFFER_SIZE`." msgstr "" -#: ../../library/io.rst:846 -msgid "" -":class:`BufferedWriter` provides or overrides these methods in addition to " -"those from :class:`BufferedIOBase` and :class:`IOBase`:" +msgid ":class:`BufferedWriter` provides or overrides these methods in addition to those from :class:`BufferedIOBase` and :class:`IOBase`:" msgstr "" -#: ../../library/io.rst:851 -msgid "" -"Force bytes held in the buffer into the raw stream. " -"A :exc:`BlockingIOError` should be raised if the raw stream blocks." +msgid "Force bytes held in the buffer into the raw stream. A :exc:`BlockingIOError` should be raised if the raw stream blocks." msgstr "" -#: ../../library/io.rst:856 -msgid "" -"Write the :term:`bytes-like object`, *b*, and return the number of bytes " -"written. When in non-blocking mode, a :exc:`BlockingIOError` " -"with :attr:`BlockingIOError.characters_written` set is raised if the buffer " -"needs to be written out but the raw stream blocks." +msgid "Write the :term:`bytes-like object`, *b*, and return the number of bytes written. When in non-blocking mode, a :exc:`BlockingIOError` with :attr:`BlockingIOError.characters_written` set is raised if the buffer needs to be written out but the raw stream blocks." msgstr "" -#: ../../library/io.rst:864 -msgid "" -"A buffered binary stream implementing :class:`BufferedIOBase` interfaces " -"providing higher-level access to a seekable :class:`RawIOBase` raw binary " -"stream." +msgid "A buffered binary stream implementing :class:`BufferedIOBase` interfaces providing higher-level access to a seekable :class:`RawIOBase` raw binary stream." msgstr "" -#: ../../library/io.rst:868 -msgid "" -"The constructor creates a reader and writer for a seekable raw stream, given " -"in the first argument. If the *buffer_size* is omitted it defaults " -"to :data:`DEFAULT_BUFFER_SIZE`." +msgid "The constructor creates a reader and writer for a seekable raw stream, given in the first argument. If the *buffer_size* is omitted it defaults to :data:`DEFAULT_BUFFER_SIZE`." msgstr "" -#: ../../library/io.rst:872 -msgid "" -":class:`BufferedRandom` is capable of anything :class:`BufferedReader` " -"or :class:`BufferedWriter` can do. In addition, :meth:`~IOBase.seek` " -"and :meth:`~IOBase.tell` are guaranteed to be implemented." +msgid ":class:`BufferedRandom` is capable of anything :class:`BufferedReader` or :class:`BufferedWriter` can do. In addition, :meth:`~IOBase.seek` and :meth:`~IOBase.tell` are guaranteed to be implemented." msgstr "" -#: ../../library/io.rst:879 -msgid "" -"A buffered binary stream providing higher-level access to two non " -"seekable :class:`RawIOBase` raw binary streams---one readable, the other " -"writeable. It inherits from :class:`BufferedIOBase`." +msgid "A buffered binary stream providing higher-level access to two non seekable :class:`RawIOBase` raw binary streams---one readable, the other writeable. It inherits from :class:`BufferedIOBase`." msgstr "" -#: ../../library/io.rst:883 -msgid "" -"*reader* and *writer* are :class:`RawIOBase` objects that are readable and " -"writeable respectively. If the *buffer_size* is omitted it defaults " -"to :data:`DEFAULT_BUFFER_SIZE`." +msgid "*reader* and *writer* are :class:`RawIOBase` objects that are readable and writeable respectively. If the *buffer_size* is omitted it defaults to :data:`DEFAULT_BUFFER_SIZE`." msgstr "" -#: ../../library/io.rst:887 -msgid "" -":class:`BufferedRWPair` implements all of :class:`BufferedIOBase`\\'s " -"methods except for :meth:`~BufferedIOBase.detach`, which " -"raises :exc:`UnsupportedOperation`." +msgid ":class:`BufferedRWPair` implements all of :class:`BufferedIOBase`\\'s methods except for :meth:`~BufferedIOBase.detach`, which raises :exc:`UnsupportedOperation`." msgstr "" -#: ../../library/io.rst:893 -msgid "" -":class:`BufferedRWPair` does not attempt to synchronize accesses to its " -"underlying raw streams. You should not pass it the same object as reader " -"and writer; use :class:`BufferedRandom` instead." +msgid ":class:`BufferedRWPair` does not attempt to synchronize accesses to its underlying raw streams. You should not pass it the same object as reader and writer; use :class:`BufferedRandom` instead." msgstr "" -#: ../../library/io.rst:903 -msgid "" -"Base class for text streams. This class provides a character and line based " -"interface to stream I/O. It inherits from :class:`IOBase`." +msgid "Base class for text streams. This class provides a character and line based interface to stream I/O. It inherits from :class:`IOBase`." msgstr "" -#: ../../library/io.rst:906 -msgid "" -":class:`TextIOBase` provides or overrides these data attributes and methods " -"in addition to those from :class:`IOBase`:" +msgid ":class:`TextIOBase` provides or overrides these data attributes and methods in addition to those from :class:`IOBase`:" msgstr "" -#: ../../library/io.rst:911 -msgid "" -"The name of the encoding used to decode the stream's bytes into strings, and " -"to encode strings into bytes." +msgid "The name of the encoding used to decode the stream's bytes into strings, and to encode strings into bytes." msgstr "" -#: ../../library/io.rst:916 msgid "The error setting of the decoder or encoder." msgstr "" -#: ../../library/io.rst:920 -msgid "" -"A string, a tuple of strings, or ``None``, indicating the newlines " -"translated so far. Depending on the implementation and the initial " -"constructor flags, this may not be available." +msgid "A string, a tuple of strings, or ``None``, indicating the newlines translated so far. Depending on the implementation and the initial constructor flags, this may not be available." msgstr "" -#: ../../library/io.rst:926 -msgid "" -"The underlying binary buffer (a :class:`BufferedIOBase` " -"or :class:`RawIOBase` instance) that :class:`TextIOBase` deals with. This is " -"not part of the :class:`TextIOBase` API and may not exist in some " -"implementations." +msgid "The underlying binary buffer (a :class:`BufferedIOBase` or :class:`RawIOBase` instance) that :class:`TextIOBase` deals with. This is not part of the :class:`TextIOBase` API and may not exist in some implementations." msgstr "" -#: ../../library/io.rst:933 -msgid "" -"Separate the underlying binary buffer from the :class:`TextIOBase` and " -"return it." +msgid "Separate the underlying binary buffer from the :class:`TextIOBase` and return it." msgstr "" -#: ../../library/io.rst:936 -msgid "" -"After the underlying buffer has been detached, the :class:`TextIOBase` is in " -"an unusable state." +msgid "After the underlying buffer has been detached, the :class:`TextIOBase` is in an unusable state." msgstr "" -#: ../../library/io.rst:939 -msgid "" -"Some :class:`TextIOBase` implementations, like :class:`StringIO`, may not " -"have the concept of an underlying buffer and calling this method will " -"raise :exc:`UnsupportedOperation`." +msgid "Some :class:`TextIOBase` implementations, like :class:`StringIO`, may not have the concept of an underlying buffer and calling this method will raise :exc:`UnsupportedOperation`." msgstr "" -#: ../../library/io.rst:947 -msgid "" -"Read and return at most *size* characters from the stream as a " -"single :class:`str`. If *size* is negative or ``None``, reads until EOF." +msgid "Read and return at most *size* characters from the stream as a single :class:`str`. If *size* is negative or ``None``, reads until EOF." msgstr "" -#: ../../library/io.rst:952 -msgid "" -"Read until newline or EOF and return a single :class:`str`. If the stream " -"is already at EOF, an empty string is returned." +msgid "Read until newline or EOF and return a single :class:`str`. If the stream is already at EOF, an empty string is returned." msgstr "" -#: ../../library/io.rst:955 msgid "If *size* is specified, at most *size* characters will be read." msgstr "" -#: ../../library/io.rst:959 -msgid "" -"Change the stream position to the given *offset*. Behaviour depends on the " -"*whence* parameter. The default value for *whence* is :data:`!SEEK_SET`." +msgid "Change the stream position to the given *offset*. Behaviour depends on the *whence* parameter. The default value for *whence* is :data:`!SEEK_SET`." msgstr "" -#: ../../library/io.rst:963 -msgid "" -":data:`!SEEK_SET` or ``0``: seek from the start of the stream (the default); " -"*offset* must either be a number returned by :meth:`TextIOBase.tell`, or " -"zero. Any other *offset* value produces undefined behaviour." +msgid ":data:`!SEEK_SET` or ``0``: seek from the start of the stream (the default); *offset* must either be a number returned by :meth:`TextIOBase.tell`, or zero. Any other *offset* value produces undefined behaviour." msgstr "" -#: ../../library/io.rst:967 -msgid "" -":data:`!SEEK_CUR` or ``1``: \"seek\" to the current position; *offset* must " -"be zero, which is a no-operation (all other values are unsupported)." +msgid ":data:`!SEEK_CUR` or ``1``: \"seek\" to the current position; *offset* must be zero, which is a no-operation (all other values are unsupported)." msgstr "" -#: ../../library/io.rst:970 -msgid "" -":data:`!SEEK_END` or ``2``: seek to the end of the stream; *offset* must be " -"zero (all other values are unsupported)." +msgid ":data:`!SEEK_END` or ``2``: seek to the end of the stream; *offset* must be zero (all other values are unsupported)." msgstr "" -#: ../../library/io.rst:973 msgid "Return the new absolute position as an opaque number." msgstr "" -#: ../../library/io.rst:980 -msgid "" -"Return the current stream position as an opaque number. The number does not " -"usually represent a number of bytes in the underlying binary storage." +msgid "Return the current stream position as an opaque number. The number does not usually represent a number of bytes in the underlying binary storage." msgstr "" -#: ../../library/io.rst:986 -msgid "" -"Write the string *s* to the stream and return the number of characters " -"written." +msgid "Write the string *s* to the stream and return the number of characters written." msgstr "" -#: ../../library/io.rst:993 -msgid "" -"A buffered text stream providing higher-level access to " -"a :class:`BufferedIOBase` buffered binary stream. It inherits " -"from :class:`TextIOBase`." +msgid "A buffered text stream providing higher-level access to a :class:`BufferedIOBase` buffered binary stream. It inherits from :class:`TextIOBase`." msgstr "" -#: ../../library/io.rst:997 -msgid "" -"*encoding* gives the name of the encoding that the stream will be decoded or " -"encoded with. In :ref:`UTF-8 Mode `, this defaults to UTF-8. " -"Otherwise, it defaults to :func:`locale.getencoding`. " -"``encoding=\"locale\"`` can be used to specify the current locale's encoding " -"explicitly. See :ref:`io-text-encoding` for more information." +msgid "*encoding* gives the name of the encoding that the stream will be decoded or encoded with. In :ref:`UTF-8 Mode `, this defaults to UTF-8. Otherwise, it defaults to :func:`locale.getencoding`. ``encoding=\"locale\"`` can be used to specify the current locale's encoding explicitly. See :ref:`io-text-encoding` for more information." msgstr "" -#: ../../library/io.rst:1003 -msgid "" -"*errors* is an optional string that specifies how encoding and decoding " -"errors are to be handled. Pass ``'strict'`` to raise a :exc:`ValueError` " -"exception if there is an encoding error (the default of ``None`` has the " -"same effect), or pass ``'ignore'`` to ignore errors. (Note that ignoring " -"encoding errors can lead to data loss.) ``'replace'`` causes a replacement " -"marker (such as ``'?'``) to be inserted where there is malformed data. " -"``'backslashreplace'`` causes malformed data to be replaced by a backslashed " -"escape sequence. When writing, ``'xmlcharrefreplace'`` (replace with the " -"appropriate XML character reference) or ``'namereplace'`` (replace with " -"``\\N{...}`` escape sequences) can be used. Any other error handling name " -"that has been registered with :func:`codecs.register_error` is also valid." -msgstr "" - -#: ../../library/io.rst:1019 -msgid "" -"*newline* controls how line endings are handled. It can be ``None``, " -"``''``, ``'\\n'``, ``'\\r'``, and ``'\\r\\n'``. It works as follows:" +msgid "*errors* is an optional string that specifies how encoding and decoding errors are to be handled. Pass ``'strict'`` to raise a :exc:`ValueError` exception if there is an encoding error (the default of ``None`` has the same effect), or pass ``'ignore'`` to ignore errors. (Note that ignoring encoding errors can lead to data loss.) ``'replace'`` causes a replacement marker (such as ``'?'``) to be inserted where there is malformed data. ``'backslashreplace'`` causes malformed data to be replaced by a backslashed escape sequence. When writing, ``'xmlcharrefreplace'`` (replace with the appropriate XML character reference) or ``'namereplace'`` (replace with ``\\N{...}`` escape sequences) can be used. Any other error handling name that has been registered with :func:`codecs.register_error` is also valid." msgstr "" -#: ../../library/io.rst:1022 -msgid "" -"When reading input from the stream, if *newline* is " -"``None``, :term:`universal newlines` mode is enabled. Lines in the input " -"can end in ``'\\n'``, ``'\\r'``, or ``'\\r\\n'``, and these are translated " -"into ``'\\n'`` before being returned to the caller. If *newline* is ``''``, " -"universal newlines mode is enabled, but line endings are returned to the " -"caller untranslated. If *newline* has any of the other legal values, input " -"lines are only terminated by the given string, and the line ending is " -"returned to the caller untranslated." +msgid "*newline* controls how line endings are handled. It can be ``None``, ``''``, ``'\\n'``, ``'\\r'``, and ``'\\r\\n'``. It works as follows:" msgstr "" -#: ../../library/io.rst:1031 -msgid "" -"When writing output to the stream, if *newline* is ``None``, any ``'\\n'`` " -"characters written are translated to the system default line " -"separator, :data:`os.linesep`. If *newline* is ``''`` or ``'\\n'``, no " -"translation takes place. If *newline* is any of the other legal values, any " -"``'\\n'`` characters written are translated to the given string." +msgid "When reading input from the stream, if *newline* is ``None``, :term:`universal newlines` mode is enabled. Lines in the input can end in ``'\\n'``, ``'\\r'``, or ``'\\r\\n'``, and these are translated into ``'\\n'`` before being returned to the caller. If *newline* is ``''``, universal newlines mode is enabled, but line endings are returned to the caller untranslated. If *newline* has any of the other legal values, input lines are only terminated by the given string, and the line ending is returned to the caller untranslated." msgstr "" -#: ../../library/io.rst:1037 -msgid "" -"If *line_buffering* is ``True``, :meth:`~IOBase.flush` is implied when a " -"call to write contains a newline character or a carriage return." +msgid "When writing output to the stream, if *newline* is ``None``, any ``'\\n'`` characters written are translated to the system default line separator, :data:`os.linesep`. If *newline* is ``''`` or ``'\\n'``, no translation takes place. If *newline* is any of the other legal values, any ``'\\n'`` characters written are translated to the given string." msgstr "" -#: ../../library/io.rst:1040 -msgid "" -"If *write_through* is ``True``, calls to :meth:`~BufferedIOBase.write` are " -"guaranteed not to be buffered: any data written on " -"the :class:`TextIOWrapper` object is immediately handled to its underlying " -"binary *buffer*." +msgid "If *line_buffering* is ``True``, :meth:`~IOBase.flush` is implied when a call to write contains a newline character or a carriage return." +msgstr "" + +msgid "If *write_through* is ``True``, calls to :meth:`~BufferedIOBase.write` are guaranteed not to be buffered: any data written on the :class:`TextIOWrapper` object is immediately handled to its underlying binary *buffer*." msgstr "" -#: ../../library/io.rst:1044 msgid "The *write_through* argument has been added." msgstr "" -#: ../../library/io.rst:1047 -msgid "" -"The default *encoding* is now ``locale.getpreferredencoding(False)`` instead " -"of ``locale.getpreferredencoding()``. Don't change temporary the locale " -"encoding using :func:`locale.setlocale`, use the current locale encoding " -"instead of the user preferred encoding." +msgid "The default *encoding* is now ``locale.getpreferredencoding(False)`` instead of ``locale.getpreferredencoding()``. Don't change temporary the locale encoding using :func:`locale.setlocale`, use the current locale encoding instead of the user preferred encoding." msgstr "" -#: ../../library/io.rst:1053 -msgid "" -"The *encoding* argument now supports the ``\"locale\"`` dummy encoding name." +msgid "The *encoding* argument now supports the ``\"locale\"`` dummy encoding name." msgstr "" -#: ../../library/io.rst:1058 -msgid "" -"When the underlying raw stream is non-blocking, a :exc:`BlockingIOError` may " -"be raised if a read operation cannot be completed immediately." +msgid "When the underlying raw stream is non-blocking, a :exc:`BlockingIOError` may be raised if a read operation cannot be completed immediately." msgstr "" -#: ../../library/io.rst:1061 -msgid "" -":class:`TextIOWrapper` provides these data attributes and methods in " -"addition to those from :class:`TextIOBase` and :class:`IOBase`:" +msgid ":class:`TextIOWrapper` provides these data attributes and methods in addition to those from :class:`TextIOBase` and :class:`IOBase`:" msgstr "" -#: ../../library/io.rst:1066 msgid "Whether line buffering is enabled." msgstr "" -#: ../../library/io.rst:1070 msgid "Whether writes are passed immediately to the underlying binary buffer." msgstr "" -#: ../../library/io.rst:1078 -msgid "" -"Reconfigure this text stream using new settings for *encoding*, *errors*, " -"*newline*, *line_buffering* and *write_through*." +msgid "Reconfigure this text stream using new settings for *encoding*, *errors*, *newline*, *line_buffering* and *write_through*." msgstr "" -#: ../../library/io.rst:1081 -msgid "" -"Parameters not specified keep current settings, except ``errors='strict'`` " -"is used when *encoding* is specified but *errors* is not specified." +msgid "Parameters not specified keep current settings, except ``errors='strict'`` is used when *encoding* is specified but *errors* is not specified." msgstr "" -#: ../../library/io.rst:1085 -msgid "" -"It is not possible to change the encoding or newline if some data has " -"already been read from the stream. On the other hand, changing encoding " -"after write is possible." +msgid "It is not possible to change the encoding or newline if some data has already been read from the stream. On the other hand, changing encoding after write is possible." msgstr "" -#: ../../library/io.rst:1089 -msgid "" -"This method does an implicit stream flush before setting the new parameters." +msgid "This method does an implicit stream flush before setting the new parameters." msgstr "" -#: ../../library/io.rst:1094 msgid "The method supports ``encoding=\"locale\"`` option." msgstr "" -#: ../../library/io.rst:1099 -msgid "" -"Set the stream position. Return the new stream position as an :class:`int`." +msgid "Set the stream position. Return the new stream position as an :class:`int`." msgstr "" -#: ../../library/io.rst:1102 -msgid "" -"Four operations are supported, given by the following argument combinations:" +msgid "Four operations are supported, given by the following argument combinations:" msgstr "" -#: ../../library/io.rst:1105 msgid "``seek(0, SEEK_SET)``: Rewind to the start of the stream." msgstr "" -#: ../../library/io.rst:1106 -msgid "" -"``seek(cookie, SEEK_SET)``: Restore a previous position; *cookie* **must " -"be** a number returned by :meth:`tell`." +msgid "``seek(cookie, SEEK_SET)``: Restore a previous position; *cookie* **must be** a number returned by :meth:`tell`." msgstr "" -#: ../../library/io.rst:1108 msgid "``seek(0, SEEK_END)``: Fast-forward to the end of the stream." msgstr "" -#: ../../library/io.rst:1109 msgid "``seek(0, SEEK_CUR)``: Leave the current stream position unchanged." msgstr "" -#: ../../library/io.rst:1111 msgid "Any other argument combinations are invalid, and may raise exceptions." msgstr "" -#: ../../library/io.rst:1116 msgid ":data:`os.SEEK_SET`, :data:`os.SEEK_CUR`, and :data:`os.SEEK_END`." msgstr "" -#: ../../library/io.rst:1120 -msgid "" -"Return the stream position as an opaque number. The return value of :meth:`!" -"tell` can be given as input to :meth:`seek`, to restore a previous stream " -"position." +msgid "Return the stream position as an opaque number. The return value of :meth:`!tell` can be given as input to :meth:`seek`, to restore a previous stream position." msgstr "" -#: ../../library/io.rst:1127 -msgid "" -"A text stream using an in-memory text buffer. It inherits " -"from :class:`TextIOBase`." +msgid "A text stream using an in-memory text buffer. It inherits from :class:`TextIOBase`." msgstr "" -#: ../../library/io.rst:1130 -msgid "" -"The text buffer is discarded when the :meth:`~IOBase.close` method is called." +msgid "The text buffer is discarded when the :meth:`~IOBase.close` method is called." msgstr "" -#: ../../library/io.rst:1133 -msgid "" -"The initial value of the buffer can be set by providing *initial_value*. If " -"newline translation is enabled, newlines will be encoded as if " -"by :meth:`~TextIOBase.write`. The stream is positioned at the start of the " -"buffer which emulates opening an existing file in a ``w+`` mode, making it " -"ready for an immediate write from the beginning or for a write that would " -"overwrite the initial value. To emulate opening a file in an ``a+`` mode " -"ready for appending, use ``f.seek(0, io.SEEK_END)`` to reposition the stream " -"at the end of the buffer." +msgid "The initial value of the buffer can be set by providing *initial_value*. If newline translation is enabled, newlines will be encoded as if by :meth:`~TextIOBase.write`. The stream is positioned at the start of the buffer which emulates opening an existing file in a ``w+`` mode, making it ready for an immediate write from the beginning or for a write that would overwrite the initial value. To emulate opening a file in an ``a+`` mode ready for appending, use ``f.seek(0, io.SEEK_END)`` to reposition the stream at the end of the buffer." msgstr "" -#: ../../library/io.rst:1142 -msgid "" -"The *newline* argument works like that of :class:`TextIOWrapper`, except " -"that when writing output to the stream, if *newline* is ``None``, newlines " -"are written as ``\\n`` on all platforms." +msgid "The *newline* argument works like that of :class:`TextIOWrapper`, except that when writing output to the stream, if *newline* is ``None``, newlines are written as ``\\n`` on all platforms." msgstr "" -#: ../../library/io.rst:1146 -msgid "" -":class:`StringIO` provides this method in addition to those " -"from :class:`TextIOBase` and :class:`IOBase`:" +msgid ":class:`StringIO` provides this method in addition to those from :class:`TextIOBase` and :class:`IOBase`:" msgstr "" -#: ../../library/io.rst:1151 -msgid "" -"Return a :class:`str` containing the entire contents of the buffer. Newlines " -"are decoded as if by :meth:`~TextIOBase.read`, although the stream position " -"is not changed." +msgid "Return a :class:`str` containing the entire contents of the buffer. Newlines are decoded as if by :meth:`~TextIOBase.read`, although the stream position is not changed." msgstr "" -#: ../../library/io.rst:1155 msgid "Example usage::" msgstr "" -#: ../../library/io.rst:1157 msgid "" "import io\n" "\n" @@ -1645,174 +834,91 @@ msgid "" "output.close()" msgstr "" -#: ../../library/io.rst:1177 -msgid "" -"A helper codec that decodes newlines for :term:`universal newlines` mode. It " -"inherits from :class:`codecs.IncrementalDecoder`." +msgid "A helper codec that decodes newlines for :term:`universal newlines` mode. It inherits from :class:`codecs.IncrementalDecoder`." msgstr "" -#: ../../library/io.rst:1182 msgid "Static Typing" msgstr "" -#: ../../library/io.rst:1184 -msgid "" -"The following protocols can be used for annotating function and method " -"arguments for simple stream reading or writing operations. They are " -"decorated with :deco:`typing.runtime_checkable`." +msgid "The following protocols can be used for annotating function and method arguments for simple stream reading or writing operations. They are decorated with :deco:`typing.runtime_checkable`." msgstr "" -#: ../../library/io.rst:1190 -msgid "" -"Generic protocol for reading from a file or other input stream. ``T`` will " -"usually be :class:`str` or :class:`bytes`, but can be any type that is read " -"from the stream." +msgid "Generic protocol for reading from a file or other input stream. ``T`` will usually be :class:`str` or :class:`bytes`, but can be any type that is read from the stream." msgstr "" -#: ../../library/io.rst:1199 -msgid "" -"Read data from the input stream and return it. If *size* is specified, it " -"should be an integer, and at most *size* items (bytes/characters) will be " -"read." +msgid "Read data from the input stream and return it. If *size* is specified, it should be an integer, and at most *size* items (bytes/characters) will be read." msgstr "" -#: ../../library/io.rst:1203 ../../library/io.rst:1222 msgid "For example::" msgstr "" -#: ../../library/io.rst:1205 msgid "" "def read_it(reader: Reader[str]):\n" " data = reader.read(11)\n" " assert isinstance(data, str)" msgstr "" -#: ../../library/io.rst:1211 -msgid "" -"Generic protocol for writing to a file or other output stream. ``T`` will " -"usually be :class:`str` or :class:`bytes`, but can be any type that can be " -"written to the stream." +msgid "Generic protocol for writing to a file or other output stream. ``T`` will usually be :class:`str` or :class:`bytes`, but can be any type that can be written to the stream." msgstr "" -#: ../../library/io.rst:1219 -msgid "" -"Write *data* to the output stream and return the number of items (bytes/" -"characters) written." +msgid "Write *data* to the output stream and return the number of items (bytes/characters) written." msgstr "" -#: ../../library/io.rst:1224 msgid "" "def write_binary(writer: Writer[bytes]):\n" " writer.write(b\"Hello world!\\n\")" msgstr "" -#: ../../library/io.rst:1227 -msgid "" -"See :ref:`typing-io` for other I/O related protocols and classes that can be " -"used for static type checking." +msgid "See :ref:`typing-io` for other I/O related protocols and classes that can be used for static type checking." msgstr "" -#: ../../library/io.rst:1231 msgid "Performance" msgstr "" -#: ../../library/io.rst:1233 -msgid "" -"This section discusses the performance of the provided concrete I/O " -"implementations." +msgid "This section discusses the performance of the provided concrete I/O implementations." msgstr "" -#: ../../library/io.rst:1239 -msgid "" -"By reading and writing only large chunks of data even when the user asks for " -"a single byte, buffered I/O hides any inefficiency in calling and executing " -"the operating system's unbuffered I/O routines. The gain depends on the OS " -"and the kind of I/O which is performed. For example, on some modern OSes " -"such as Linux, unbuffered disk I/O can be as fast as buffered I/O. The " -"bottom line, however, is that buffered I/O offers predictable performance " -"regardless of the platform and the backing device. Therefore, it is almost " -"always preferable to use buffered I/O rather than unbuffered I/O for binary " -"data." -msgstr "" - -#: ../../library/io.rst:1251 -msgid "" -"Text I/O over a binary storage (such as a file) is significantly slower than " -"binary I/O over the same storage, because it requires conversions between " -"unicode and binary data using a character codec. This can become noticeable " -"handling huge amounts of text data like large log files. " -"Also, :meth:`~TextIOBase.tell` and :meth:`~TextIOBase.seek` are both quite " -"slow due to the reconstruction algorithm used." +msgid "By reading and writing only large chunks of data even when the user asks for a single byte, buffered I/O hides any inefficiency in calling and executing the operating system's unbuffered I/O routines. The gain depends on the OS and the kind of I/O which is performed. For example, on some modern OSes such as Linux, unbuffered disk I/O can be as fast as buffered I/O. The bottom line, however, is that buffered I/O offers predictable performance regardless of the platform and the backing device. Therefore, it is almost always preferable to use buffered I/O rather than unbuffered I/O for binary data." msgstr "" -#: ../../library/io.rst:1258 -msgid "" -":class:`StringIO`, however, is a native in-memory unicode container and will " -"exhibit similar speed to :class:`BytesIO`." +msgid "Text I/O over a binary storage (such as a file) is significantly slower than binary I/O over the same storage, because it requires conversions between unicode and binary data using a character codec. This can become noticeable handling huge amounts of text data like large log files. Also, :meth:`~TextIOBase.tell` and :meth:`~TextIOBase.seek` are both quite slow due to the reconstruction algorithm used." +msgstr "" + +msgid ":class:`StringIO`, however, is a native in-memory unicode container and will exhibit similar speed to :class:`BytesIO`." msgstr "" -#: ../../library/io.rst:1262 msgid "Multi-threading" msgstr "" -#: ../../library/io.rst:1264 -msgid "" -":class:`FileIO` objects are thread-safe to the extent that the operating " -"system calls (such as :manpage:`read(2)` under Unix) they wrap are thread-" -"safe too." +msgid ":class:`FileIO` objects are thread-safe to the extent that the operating system calls (such as :manpage:`read(2)` under Unix) they wrap are thread-safe too." msgstr "" -#: ../../library/io.rst:1267 -msgid "" -"Binary buffered objects (instances " -"of :class:`BufferedReader`, :class:`BufferedWriter`, :class:`BufferedRandom` " -"and :class:`BufferedRWPair`) protect their internal structures using a lock; " -"it is therefore safe to call them from multiple threads at once." +msgid "Binary buffered objects (instances of :class:`BufferedReader`, :class:`BufferedWriter`, :class:`BufferedRandom` and :class:`BufferedRWPair`) protect their internal structures using a lock; it is therefore safe to call them from multiple threads at once." msgstr "" -#: ../../library/io.rst:1272 msgid ":class:`TextIOWrapper` objects are not thread-safe." msgstr "" -#: ../../library/io.rst:1275 msgid "Reentrancy" msgstr "" -#: ../../library/io.rst:1277 -msgid "" -"Binary buffered objects (instances " -"of :class:`BufferedReader`, :class:`BufferedWriter`, :class:`BufferedRandom` " -"and :class:`BufferedRWPair`) are not reentrant. While reentrant calls will " -"not happen in normal situations, they can arise from doing I/O in " -"a :mod:`signal` handler. If a thread tries to re-enter a buffered object " -"which it is already accessing, a :exc:`RuntimeError` is raised. Note this " -"doesn't prohibit a different thread from entering the buffered object." +msgid "Binary buffered objects (instances of :class:`BufferedReader`, :class:`BufferedWriter`, :class:`BufferedRandom` and :class:`BufferedRWPair`) are not reentrant. While reentrant calls will not happen in normal situations, they can arise from doing I/O in a :mod:`signal` handler. If a thread tries to re-enter a buffered object which it is already accessing, a :exc:`RuntimeError` is raised. Note this doesn't prohibit a different thread from entering the buffered object." msgstr "" -#: ../../library/io.rst:1285 -msgid "" -"The above implicitly extends to text files, since the :func:`open` function " -"will wrap a buffered object inside a :class:`TextIOWrapper`. This includes " -"standard streams and therefore affects the built-in :func:`print` function " -"as well." +msgid "The above implicitly extends to text files, since the :func:`open` function will wrap a buffered object inside a :class:`TextIOWrapper`. This includes standard streams and therefore affects the built-in :func:`print` function as well." msgstr "" -#: ../../library/io.rst:24 msgid "file object" msgstr "" -#: ../../library/io.rst:24 msgid "io module" msgstr "" -#: ../../library/io.rst:1016 ../../library/io.rst:1172 msgid "universal newlines" msgstr "" -#: ../../library/io.rst:1016 msgid "io.TextIOWrapper class" msgstr "" -#: ../../library/io.rst:1172 msgid "io.IncrementalNewlineDecoder class" msgstr "" diff --git a/library/ipaddress.po b/library/ipaddress.po index d6b7de32..a5d5d0cf 100644 --- a/library/ipaddress.po +++ b/library/ipaddress.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:08+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,188 +24,93 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/ipaddress.rst:2 msgid ":mod:`!ipaddress` --- IPv4/IPv6 manipulation library" msgstr "" -#: ../../library/ipaddress.rst:9 msgid "**Source code:** :source:`Lib/ipaddress.py`" msgstr "" -#: ../../library/ipaddress.rst:13 -msgid "" -":mod:`!ipaddress` provides the capabilities to create, manipulate and " -"operate on IPv4 and IPv6 addresses and networks." +msgid ":mod:`!ipaddress` provides the capabilities to create, manipulate and operate on IPv4 and IPv6 addresses and networks." msgstr "" -#: ../../library/ipaddress.rst:16 -msgid "" -"The functions and classes in this module make it straightforward to handle " -"various tasks related to IP addresses, including checking whether or not two " -"hosts are on the same subnet, iterating over all hosts in a particular " -"subnet, checking whether or not a string represents a valid IP address or " -"network definition, and so on." +msgid "The functions and classes in this module make it straightforward to handle various tasks related to IP addresses, including checking whether or not two hosts are on the same subnet, iterating over all hosts in a particular subnet, checking whether or not a string represents a valid IP address or network definition, and so on." msgstr "" -#: ../../library/ipaddress.rst:22 -msgid "" -"This is the full module API reference—for an overview and introduction, " -"see :ref:`ipaddress-howto`." +msgid "This is the full module API reference—for an overview and introduction, see :ref:`ipaddress-howto`." msgstr "" -#: ../../library/ipaddress.rst:35 msgid "Convenience factory functions" msgstr "" -#: ../../library/ipaddress.rst:37 -msgid "" -"The :mod:`!ipaddress` module provides factory functions to conveniently " -"create IP addresses, networks and interfaces:" +msgid "The :mod:`!ipaddress` module provides factory functions to conveniently create IP addresses, networks and interfaces:" msgstr "" -#: ../../library/ipaddress.rst:42 -msgid "" -"Return an :class:`IPv4Address` or :class:`IPv6Address` object depending on " -"the IP address passed as argument. Either IPv4 or IPv6 addresses may be " -"supplied; integers less than ``2**32`` will be considered to be IPv4 by " -"default. A :exc:`ValueError` is raised if *address* does not represent a " -"valid IPv4 or IPv6 address." +msgid "Return an :class:`IPv4Address` or :class:`IPv6Address` object depending on the IP address passed as argument. Either IPv4 or IPv6 addresses may be supplied; integers less than ``2**32`` will be considered to be IPv4 by default. A :exc:`ValueError` is raised if *address* does not represent a valid IPv4 or IPv6 address." msgstr "" -#: ../../library/ipaddress.rst:56 -msgid "" -"Return an :class:`IPv4Network` or :class:`IPv6Network` object depending on " -"the IP address passed as argument. *address* is a string or integer " -"representing the IP network. Either IPv4 or IPv6 networks may be supplied; " -"integers less than ``2**32`` will be considered to be IPv4 by default. " -"*strict* is passed to :class:`IPv4Network` or :class:`IPv6Network` " -"constructor. A :exc:`ValueError` is raised if *address* does not represent " -"a valid IPv4 or IPv6 address, or if the network has host bits set." +msgid "Return an :class:`IPv4Network` or :class:`IPv6Network` object depending on the IP address passed as argument. *address* is a string or integer representing the IP network. Either IPv4 or IPv6 networks may be supplied; integers less than ``2**32`` will be considered to be IPv4 by default. *strict* is passed to :class:`IPv4Network` or :class:`IPv6Network` constructor. A :exc:`ValueError` is raised if *address* does not represent a valid IPv4 or IPv6 address, or if the network has host bits set." msgstr "" -#: ../../library/ipaddress.rst:70 -msgid "" -"Return an :class:`IPv4Interface` or :class:`IPv6Interface` object depending " -"on the IP address passed as argument. *address* is a string or integer " -"representing the IP address. Either IPv4 or IPv6 addresses may be supplied; " -"integers less than ``2**32`` will be considered to be IPv4 by default. " -"A :exc:`ValueError` is raised if *address* does not represent a valid IPv4 " -"or IPv6 address." +msgid "Return an :class:`IPv4Interface` or :class:`IPv6Interface` object depending on the IP address passed as argument. *address* is a string or integer representing the IP address. Either IPv4 or IPv6 addresses may be supplied; integers less than ``2**32`` will be considered to be IPv4 by default. A :exc:`ValueError` is raised if *address* does not represent a valid IPv4 or IPv6 address." msgstr "" -#: ../../library/ipaddress.rst:77 -msgid "" -"One downside of these convenience functions is that the need to handle both " -"IPv4 and IPv6 formats means that error messages provide minimal information " -"on the precise error, as the functions don't know whether the IPv4 or IPv6 " -"format was intended. More detailed error reporting can be obtained by " -"calling the appropriate version specific class constructors directly." +msgid "One downside of these convenience functions is that the need to handle both IPv4 and IPv6 formats means that error messages provide minimal information on the precise error, as the functions don't know whether the IPv4 or IPv6 format was intended. More detailed error reporting can be obtained by calling the appropriate version specific class constructors directly." msgstr "" -#: ../../library/ipaddress.rst:86 msgid "IP Addresses" msgstr "" -#: ../../library/ipaddress.rst:89 msgid "Address objects" msgstr "" -#: ../../library/ipaddress.rst:91 -msgid "" -"The :class:`IPv4Address` and :class:`IPv6Address` objects share a lot of " -"common attributes. Some attributes that are only meaningful for IPv6 " -"addresses are also implemented by :class:`IPv4Address` objects, in order to " -"make it easier to write code that handles both IP versions correctly. " -"Address objects are :term:`hashable`, so they can be used as keys in " -"dictionaries." +msgid "The :class:`IPv4Address` and :class:`IPv6Address` objects share a lot of common attributes. Some attributes that are only meaningful for IPv6 addresses are also implemented by :class:`IPv4Address` objects, in order to make it easier to write code that handles both IP versions correctly. Address objects are :term:`hashable`, so they can be used as keys in dictionaries." msgstr "" -#: ../../library/ipaddress.rst:99 -msgid "" -"Construct an IPv4 address. An :exc:`AddressValueError` is raised if " -"*address* is not a valid IPv4 address." +msgid "Construct an IPv4 address. An :exc:`AddressValueError` is raised if *address* is not a valid IPv4 address." msgstr "" -#: ../../library/ipaddress.rst:102 msgid "The following constitutes a valid IPv4 address:" msgstr "" -#: ../../library/ipaddress.rst:104 -msgid "" -"A string in decimal-dot notation, consisting of four decimal integers in the " -"inclusive range 0--255, separated by dots (e.g. ``192.168.0.1``). Each " -"integer represents an octet (byte) in the address. Leading zeroes are not " -"tolerated to prevent confusion with octal notation." +msgid "A string in decimal-dot notation, consisting of four decimal integers in the inclusive range 0--255, separated by dots (e.g. ``192.168.0.1``). Each integer represents an octet (byte) in the address. Leading zeroes are not tolerated to prevent confusion with octal notation." msgstr "" -#: ../../library/ipaddress.rst:108 msgid "An integer that fits into 32 bits." msgstr "" -#: ../../library/ipaddress.rst:109 -msgid "" -"An integer packed into a :class:`bytes` object of length 4 (most significant " -"octet first)." +msgid "An integer packed into a :class:`bytes` object of length 4 (most significant octet first)." msgstr "" -#: ../../library/ipaddress.rst:121 -msgid "" -"Leading zeros are tolerated, even in ambiguous cases that look like octal " -"notation." +msgid "Leading zeros are tolerated, even in ambiguous cases that look like octal notation." msgstr "" -#: ../../library/ipaddress.rst:126 -msgid "" -"Leading zeros are no longer tolerated and are treated as an error. IPv4 " -"address strings are now parsed as strict as glibc :func:`~socket.inet_pton`." +msgid "Leading zeros are no longer tolerated and are treated as an error. IPv4 address strings are now parsed as strict as glibc :func:`~socket.inet_pton`." msgstr "" -#: ../../library/ipaddress.rst:132 msgid "The appropriate version number: ``4`` for IPv4, ``6`` for IPv6." msgstr "" -#: ../../library/ipaddress.rst:136 ../../library/ipaddress.rst:149 msgid "Made available on the class." msgstr "" -#: ../../library/ipaddress.rst:140 -msgid "" -"The total number of bits in the address representation for this version: " -"``32`` for IPv4, ``128`` for IPv6." +msgid "The total number of bits in the address representation for this version: ``32`` for IPv4, ``128`` for IPv6." msgstr "" -#: ../../library/ipaddress.rst:143 -msgid "" -"The prefix defines the number of leading bits in an address that are " -"compared to determine whether or not an address is part of a network." +msgid "The prefix defines the number of leading bits in an address that are compared to determine whether or not an address is part of a network." msgstr "" -#: ../../library/ipaddress.rst:154 -msgid "" -"The string representation in dotted decimal notation. Leading zeroes are " -"never included in the representation." +msgid "The string representation in dotted decimal notation. Leading zeroes are never included in the representation." msgstr "" -#: ../../library/ipaddress.rst:157 -msgid "" -"As IPv4 does not define a shorthand notation for addresses with octets set " -"to zero, these two attributes are always the same as ``str(addr)`` for IPv4 " -"addresses. Exposing these attributes makes it easier to write display code " -"that can handle both IPv4 and IPv6 addresses." +msgid "As IPv4 does not define a shorthand notation for addresses with octets set to zero, these two attributes are always the same as ``str(addr)`` for IPv4 addresses. Exposing these attributes makes it easier to write display code that can handle both IPv4 and IPv6 addresses." msgstr "" -#: ../../library/ipaddress.rst:164 -msgid "" -"The binary representation of this address - a :class:`bytes` object of the " -"appropriate length (most significant octet first). This is 4 bytes for IPv4 " -"and 16 bytes for IPv6." +msgid "The binary representation of this address - a :class:`bytes` object of the appropriate length (most significant octet first). This is 4 bytes for IPv4 and 16 bytes for IPv6." msgstr "" -#: ../../library/ipaddress.rst:170 msgid "The name of the reverse DNS PTR record for the IP address, e.g.::" msgstr "" -#: ../../library/ipaddress.rst:172 msgid "" ">>> ipaddress.ip_address(\"127.0.0.1\").reverse_pointer\n" "'1.0.0.127.in-addr.arpa'\n" @@ -213,269 +118,132 @@ msgid "" "'1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.b.d.0.1.0.0.2.ip6.arpa'" msgstr "" -#: ../../library/ipaddress.rst:177 -msgid "" -"This is the name that could be used for performing a PTR lookup, not the " -"resolved hostname itself." +msgid "This is the name that could be used for performing a PTR lookup, not the resolved hostname itself." msgstr "" -#: ../../library/ipaddress.rst:184 -msgid "" -"``True`` if the address is reserved for multicast use. See :RFC:`3171` (for " -"IPv4) or :RFC:`2373` (for IPv6)." +msgid "``True`` if the address is reserved for multicast use. See :RFC:`3171` (for IPv4) or :RFC:`2373` (for IPv6)." msgstr "" -#: ../../library/ipaddress.rst:189 -msgid "" -"``True`` if the address is defined as not globally reachable by iana-ipv4-" -"special-registry_ (for IPv4) or iana-ipv6-special-registry_ (for IPv6) with " -"the following exceptions:" +msgid "``True`` if the address is defined as not globally reachable by iana-ipv4-special-registry_ (for IPv4) or iana-ipv6-special-registry_ (for IPv6) with the following exceptions:" msgstr "" -#: ../../library/ipaddress.rst:193 -msgid "" -"``is_private`` is ``False`` for the shared address space (``100.64.0.0/10``)" +msgid "``is_private`` is ``False`` for the shared address space (``100.64.0.0/10``)" msgstr "" -#: ../../library/ipaddress.rst:194 ../../library/ipaddress.rst:221 -msgid "" -"For IPv4-mapped IPv6-addresses the ``is_private`` value is determined by the " -"semantics of the underlying IPv4 addresses and the following condition holds " -"(see :attr:`IPv6Address.ipv4_mapped`)::" +msgid "For IPv4-mapped IPv6-addresses the ``is_private`` value is determined by the semantics of the underlying IPv4 addresses and the following condition holds (see :attr:`IPv6Address.ipv4_mapped`)::" msgstr "" -#: ../../library/ipaddress.rst:198 msgid "address.is_private == address.ipv4_mapped.is_private" msgstr "" -#: ../../library/ipaddress.rst:200 -msgid "" -"``is_private`` has value opposite to :attr:`is_global`, except for the " -"shared address space (``100.64.0.0/10`` range) where they are both ``False``." +msgid "``is_private`` has value opposite to :attr:`is_global`, except for the shared address space (``100.64.0.0/10`` range) where they are both ``False``." msgstr "" -#: ../../library/ipaddress.rst:205 msgid "Fixed some false positives and false negatives." msgstr "" -#: ../../library/ipaddress.rst:207 -msgid "" -"``192.0.0.0/24`` is considered private with the exception of " -"``192.0.0.9/32`` and ``192.0.0.10/32`` (previously: only the " -"``192.0.0.0/29`` sub-range was considered private)." +msgid "``192.0.0.0/24`` is considered private with the exception of ``192.0.0.9/32`` and ``192.0.0.10/32`` (previously: only the ``192.0.0.0/29`` sub-range was considered private)." msgstr "" -#: ../../library/ipaddress.rst:209 msgid "``64:ff9b:1::/48`` is considered private." msgstr "" -#: ../../library/ipaddress.rst:210 msgid "``2002::/16`` is considered private." msgstr "" -#: ../../library/ipaddress.rst:211 -msgid "" -"There are exceptions within ``2001::/23`` (otherwise considered private): " -"``2001:1::1/128``, ``2001:1::2/128``, ``2001:3::/32``, ``2001:4:112::/48``, " -"``2001:20::/28``, ``2001:30::/28``. The exceptions are not considered " -"private." +msgid "There are exceptions within ``2001::/23`` (otherwise considered private): ``2001:1::1/128``, ``2001:1::2/128``, ``2001:3::/32``, ``2001:4:112::/48``, ``2001:20::/28``, ``2001:30::/28``. The exceptions are not considered private." msgstr "" -#: ../../library/ipaddress.rst:217 -msgid "" -"``True`` if the address is defined as globally reachable by iana-ipv4-" -"special-registry_ (for IPv4) or iana-ipv6-special-registry_ (for IPv6) with " -"the following exception:" +msgid "``True`` if the address is defined as globally reachable by iana-ipv4-special-registry_ (for IPv4) or iana-ipv6-special-registry_ (for IPv6) with the following exception:" msgstr "" -#: ../../library/ipaddress.rst:225 msgid "address.is_global == address.ipv4_mapped.is_global" msgstr "" -#: ../../library/ipaddress.rst:227 -msgid "" -"``is_global`` has value opposite to :attr:`is_private`, except for the " -"shared address space (``100.64.0.0/10`` range) where they are both ``False``." +msgid "``is_global`` has value opposite to :attr:`is_private`, except for the shared address space (``100.64.0.0/10`` range) where they are both ``False``." msgstr "" -#: ../../library/ipaddress.rst:234 -msgid "" -"Fixed some false positives and false negatives, see :attr:`is_private` for " -"details." +msgid "Fixed some false positives and false negatives, see :attr:`is_private` for details." msgstr "" -#: ../../library/ipaddress.rst:238 -msgid "" -"``True`` if the address is unspecified. See :RFC:`5735` (for IPv4) " -"or :RFC:`2373` (for IPv6)." +msgid "``True`` if the address is unspecified. See :RFC:`5735` (for IPv4) or :RFC:`2373` (for IPv6)." msgstr "" -#: ../../library/ipaddress.rst:243 -msgid "" -"``True`` if the address is noted as reserved by the IETF. For IPv4, this is " -"only ``240.0.0.0/4``, the ``Reserved`` address block. For IPv6, this is all " -"addresses `allocated `__ as ``Reserved by IETF`` " -"for future use." +msgid "``True`` if the address is noted as reserved by the IETF. For IPv4, this is only ``240.0.0.0/4``, the ``Reserved`` address block. For IPv6, this is all addresses `allocated `__ as ``Reserved by IETF`` for future use." msgstr "" -#: ../../library/ipaddress.rst:248 -msgid "" -"For IPv4, ``is_reserved`` is not related to the address block value of the " -"``Reserved-by-Protocol`` column in iana-ipv4-special-registry_." +msgid "For IPv4, ``is_reserved`` is not related to the address block value of the ``Reserved-by-Protocol`` column in iana-ipv4-special-registry_." msgstr "" -#: ../../library/ipaddress.rst:251 -msgid "" -"For IPv6, ``fec0::/10`` a former Site-Local scoped address prefix is " -"currently excluded from that list (see :attr:`~IPv6Address.is_site_local` " -"& :rfc:`3879`)." +msgid "For IPv6, ``fec0::/10`` a former Site-Local scoped address prefix is currently excluded from that list (see :attr:`~IPv6Address.is_site_local` & :rfc:`3879`)." msgstr "" -#: ../../library/ipaddress.rst:256 -msgid "" -"``True`` if this is a loopback address. See :RFC:`3330` (for IPv4) " -"or :RFC:`2373` (for IPv6)." +msgid "``True`` if this is a loopback address. See :RFC:`3330` (for IPv4) or :RFC:`2373` (for IPv6)." msgstr "" -#: ../../library/ipaddress.rst:261 -msgid "" -"``True`` if the address is reserved for link-local usage. See :RFC:`3927`." +msgid "``True`` if the address is reserved for link-local usage. See :RFC:`3927`." msgstr "" -#: ../../library/ipaddress.rst:266 -msgid "" -":class:`IPv4Address` object representing the IPv4-mapped IPv6 address. " -"See :RFC:`4291`." +msgid ":class:`IPv4Address` object representing the IPv4-mapped IPv6 address. See :RFC:`4291`." msgstr "" -#: ../../library/ipaddress.rst:277 -msgid "" -"Returns a string representation of the IP address, controlled by an explicit " -"format string. *fmt* can be one of the following: ``'s'``, the default " -"option, equivalent to :func:`str`, ``'b'`` for a zero-padded binary string, " -"``'X'`` or ``'x'`` for an uppercase or lowercase hexadecimal representation, " -"or ``'n'``, which is equivalent to ``'b'`` for IPv4 addresses and ``'x'`` " -"for IPv6. For binary and hexadecimal representations, the form specifier " -"``'#'`` and the grouping option ``'_'`` are available. ``__format__`` is " -"used by ``format``, ``str.format`` and f-strings." +msgid "Returns a string representation of the IP address, controlled by an explicit format string. *fmt* can be one of the following: ``'s'``, the default option, equivalent to :func:`str`, ``'b'`` for a zero-padded binary string, ``'X'`` or ``'x'`` for an uppercase or lowercase hexadecimal representation, or ``'n'``, which is equivalent to ``'b'`` for IPv4 addresses and ``'x'`` for IPv6. For binary and hexadecimal representations, the form specifier ``'#'`` and the grouping option ``'_'`` are available. ``__format__`` is used by ``format``, ``str.format`` and f-strings." msgstr "" -#: ../../library/ipaddress.rst:304 -msgid "" -"Construct an IPv6 address. An :exc:`AddressValueError` is raised if " -"*address* is not a valid IPv6 address." +msgid "Construct an IPv6 address. An :exc:`AddressValueError` is raised if *address* is not a valid IPv6 address." msgstr "" -#: ../../library/ipaddress.rst:307 msgid "The following constitutes a valid IPv6 address:" msgstr "" -#: ../../library/ipaddress.rst:309 -msgid "" -"A string consisting of eight groups of four hexadecimal digits, each group " -"representing 16 bits. The groups are separated by colons. This describes an " -"*exploded* (longhand) notation. The string can also be *compressed* " -"(shorthand notation) by various means. See :RFC:`4291` for details. For " -"example, ``\"0000:0000:0000:0000:0000:0abc:0007:0def\"`` can be compressed " -"to ``\"::abc:7:def\"``." +msgid "A string consisting of eight groups of four hexadecimal digits, each group representing 16 bits. The groups are separated by colons. This describes an *exploded* (longhand) notation. The string can also be *compressed* (shorthand notation) by various means. See :RFC:`4291` for details. For example, ``\"0000:0000:0000:0000:0000:0abc:0007:0def\"`` can be compressed to ``\"::abc:7:def\"``." msgstr "" -#: ../../library/ipaddress.rst:317 -msgid "" -"Optionally, the string may also have a scope zone ID, expressed with a " -"suffix ``%scope_id``. If present, the scope ID must be non-empty, and may " -"not contain ``%``. See :RFC:`4007` for details. For example, " -"``fe80::1234%1`` might identify address ``fe80::1234`` on the first link of " -"the node." +msgid "Optionally, the string may also have a scope zone ID, expressed with a suffix ``%scope_id``. If present, the scope ID must be non-empty, and may not contain ``%``. See :RFC:`4007` for details. For example, ``fe80::1234%1`` might identify address ``fe80::1234`` on the first link of the node." msgstr "" -#: ../../library/ipaddress.rst:322 msgid "An integer that fits into 128 bits." msgstr "" -#: ../../library/ipaddress.rst:323 -msgid "" -"An integer packed into a :class:`bytes` object of length 16, big-endian." +msgid "An integer packed into a :class:`bytes` object of length 16, big-endian." msgstr "" -#: ../../library/ipaddress.rst:333 -msgid "" -"The short form of the address representation, with leading zeroes in groups " -"omitted and the longest sequence of groups consisting entirely of zeroes " -"collapsed to a single empty group." +msgid "The short form of the address representation, with leading zeroes in groups omitted and the longest sequence of groups consisting entirely of zeroes collapsed to a single empty group." msgstr "" -#: ../../library/ipaddress.rst:337 msgid "This is also the value returned by ``str(addr)`` for IPv6 addresses." msgstr "" -#: ../../library/ipaddress.rst:341 -msgid "" -"The long form of the address representation, with all leading zeroes and " -"groups consisting entirely of zeroes included." +msgid "The long form of the address representation, with all leading zeroes and groups consisting entirely of zeroes included." msgstr "" -#: ../../library/ipaddress.rst:345 -msgid "" -"For the following attributes and methods, see the corresponding " -"documentation of the :class:`IPv4Address` class:" +msgid "For the following attributes and methods, see the corresponding documentation of the :class:`IPv4Address` class:" msgstr "" -#: ../../library/ipaddress.rst:365 -msgid "" -"``True`` if the address is reserved for site-local usage. Note that the " -"site-local address space has been deprecated by :RFC:`3879`. " -"Use :attr:`~IPv4Address.is_private` to test if this address is in the space " -"of unique local addresses as defined by :RFC:`4193`." +msgid "``True`` if the address is reserved for site-local usage. Note that the site-local address space has been deprecated by :RFC:`3879`. Use :attr:`~IPv4Address.is_private` to test if this address is in the space of unique local addresses as defined by :RFC:`4193`." msgstr "" -#: ../../library/ipaddress.rst:372 -msgid "" -"For addresses that appear to be IPv4 mapped addresses in the range " -"``::FFFF:0:0/96`` as defined by :RFC:`4291`, this property reports the " -"embedded IPv4 address. For any other address, this property will be ``None``." +msgid "For addresses that appear to be IPv4 mapped addresses in the range ``::FFFF:0:0/96`` as defined by :RFC:`4291`, this property reports the embedded IPv4 address. For any other address, this property will be ``None``." msgstr "" -#: ../../library/ipaddress.rst:378 -msgid "" -"For scoped addresses as defined by :RFC:`4007`, this property identifies the " -"particular zone of the address's scope that the address belongs to, as a " -"string. When no scope zone is specified, this property will be ``None``." +msgid "For scoped addresses as defined by :RFC:`4007`, this property identifies the particular zone of the address's scope that the address belongs to, as a string. When no scope zone is specified, this property will be ``None``." msgstr "" -#: ../../library/ipaddress.rst:384 -msgid "" -"For addresses that appear to be 6to4 addresses (starting with " -"``2002::/16``) as defined by :RFC:`3056`, this property will report the " -"embedded IPv4 address. For any other address, this property will be " -"``None``." +msgid "For addresses that appear to be 6to4 addresses (starting with ``2002::/16``) as defined by :RFC:`3056`, this property will report the embedded IPv4 address. For any other address, this property will be ``None``." msgstr "" -#: ../../library/ipaddress.rst:391 -msgid "" -"For addresses that appear to be Teredo addresses (starting with " -"``2001::/32``) as defined by :RFC:`4380`, this property will report the " -"embedded ``(server, client)`` IP address pair. For any other address, this " -"property will be ``None``." +msgid "For addresses that appear to be Teredo addresses (starting with ``2001::/32``) as defined by :RFC:`4380`, this property will report the embedded ``(server, client)`` IP address pair. For any other address, this property will be ``None``." msgstr "" -#: ../../library/ipaddress.rst:398 -msgid "" -"Refer to the corresponding method documentation in :class:`IPv4Address`." +msgid "Refer to the corresponding method documentation in :class:`IPv4Address`." msgstr "" -#: ../../library/ipaddress.rst:404 msgid "Conversion to Strings and Integers" msgstr "" -#: ../../library/ipaddress.rst:406 -msgid "" -"To interoperate with networking interfaces such as the socket module, " -"addresses must be converted to strings or integers. This is handled using " -"the :func:`str` and :func:`int` builtin functions::" +msgid "To interoperate with networking interfaces such as the socket module, addresses must be converted to strings or integers. This is handled using the :func:`str` and :func:`int` builtin functions::" msgstr "" -#: ../../library/ipaddress.rst:410 msgid "" ">>> str(ipaddress.IPv4Address('192.168.0.1'))\n" "'192.168.0.1'\n" @@ -487,36 +255,21 @@ msgid "" "1" msgstr "" -#: ../../library/ipaddress.rst:419 -msgid "" -"Note that IPv6 scoped addresses are converted to integers without scope zone " -"ID." +msgid "Note that IPv6 scoped addresses are converted to integers without scope zone ID." msgstr "" -#: ../../library/ipaddress.rst:423 ../../library/ipaddress.rst:807 -#: ../../library/ipaddress.rst:943 msgid "Operators" msgstr "" -#: ../../library/ipaddress.rst:425 -msgid "" -"Address objects support some operators. Unless stated otherwise, operators " -"can only be applied between compatible objects (i.e. IPv4 with IPv4, IPv6 " -"with IPv6)." +msgid "Address objects support some operators. Unless stated otherwise, operators can only be applied between compatible objects (i.e. IPv4 with IPv4, IPv6 with IPv6)." msgstr "" -#: ../../library/ipaddress.rst:431 msgid "Comparison operators" msgstr "" -#: ../../library/ipaddress.rst:433 -msgid "" -"Address objects can be compared with the usual set of comparison operators. " -"Same IPv6 addresses with different scope zone IDs are not equal. Some " -"examples::" +msgid "Address objects can be compared with the usual set of comparison operators. Same IPv6 addresses with different scope zone IDs are not equal. Some examples::" msgstr "" -#: ../../library/ipaddress.rst:437 msgid "" ">>> IPv4Address('127.0.0.2') > IPv4Address('127.0.0.1')\n" "True\n" @@ -530,16 +283,12 @@ msgid "" "True" msgstr "" -#: ../../library/ipaddress.rst:450 msgid "Arithmetic operators" msgstr "" -#: ../../library/ipaddress.rst:452 -msgid "" -"Integers can be added to or subtracted from address objects. Some examples::" +msgid "Integers can be added to or subtracted from address objects. Some examples::" msgstr "" -#: ../../library/ipaddress.rst:454 msgid "" ">>> IPv4Address('127.0.0.2') + 3\n" "IPv4Address('127.0.0.5')\n" @@ -548,346 +297,165 @@ msgid "" ">>> IPv4Address('255.255.255.255') + 1\n" "Traceback (most recent call last):\n" " File \"\", line 1, in \n" -"ipaddress.AddressValueError: 4294967296 (>= 2**32) is not permitted as an " -"IPv4 address" +"ipaddress.AddressValueError: 4294967296 (>= 2**32) is not permitted as an IPv4 address" msgstr "" -#: ../../library/ipaddress.rst:465 msgid "IP Network definitions" msgstr "" -#: ../../library/ipaddress.rst:467 -msgid "" -"The :class:`IPv4Network` and :class:`IPv6Network` objects provide a " -"mechanism for defining and inspecting IP network definitions. A network " -"definition consists of a *mask* and a *network address*, and as such defines " -"a range of IP addresses that equal the network address when masked (binary " -"AND) with the mask. For example, a network definition with the mask " -"``255.255.255.0`` and the network address ``192.168.1.0`` consists of IP " -"addresses in the inclusive range ``192.168.1.0`` to ``192.168.1.255``." +msgid "The :class:`IPv4Network` and :class:`IPv6Network` objects provide a mechanism for defining and inspecting IP network definitions. A network definition consists of a *mask* and a *network address*, and as such defines a range of IP addresses that equal the network address when masked (binary AND) with the mask. For example, a network definition with the mask ``255.255.255.0`` and the network address ``192.168.1.0`` consists of IP addresses in the inclusive range ``192.168.1.0`` to ``192.168.1.255``." msgstr "" -#: ../../library/ipaddress.rst:477 msgid "Prefix, net mask and host mask" msgstr "" -#: ../../library/ipaddress.rst:479 -msgid "" -"There are several equivalent ways to specify IP network masks. A *prefix* " -"``/`` is a notation that denotes how many high-order bits are set in " -"the network mask. A *net mask* is an IP address with some number of high-" -"order bits set. Thus the prefix ``/24`` is equivalent to the net mask " -"``255.255.255.0`` in IPv4, or ``ffff:ff00::`` in IPv6. In addition, a *host " -"mask* is the logical inverse of a *net mask*, and is sometimes used (for " -"example in Cisco access control lists) to denote a network mask. The host " -"mask equivalent to ``/24`` in IPv4 is ``0.0.0.255``." +msgid "There are several equivalent ways to specify IP network masks. A *prefix* ``/`` is a notation that denotes how many high-order bits are set in the network mask. A *net mask* is an IP address with some number of high-order bits set. Thus the prefix ``/24`` is equivalent to the net mask ``255.255.255.0`` in IPv4, or ``ffff:ff00::`` in IPv6. In addition, a *host mask* is the logical inverse of a *net mask*, and is sometimes used (for example in Cisco access control lists) to denote a network mask. The host mask equivalent to ``/24`` in IPv4 is ``0.0.0.255``." msgstr "" -#: ../../library/ipaddress.rst:490 msgid "Network objects" msgstr "" -#: ../../library/ipaddress.rst:492 -msgid "" -"All attributes implemented by address objects are implemented by network " -"objects as well. In addition, network objects implement additional " -"attributes. All of these are common between :class:`IPv4Network` " -"and :class:`IPv6Network`, so to avoid duplication they are only documented " -"for :class:`IPv4Network`. Network objects are :term:`hashable`, so they can " -"be used as keys in dictionaries." +msgid "All attributes implemented by address objects are implemented by network objects as well. In addition, network objects implement additional attributes. All of these are common between :class:`IPv4Network` and :class:`IPv6Network`, so to avoid duplication they are only documented for :class:`IPv4Network`. Network objects are :term:`hashable`, so they can be used as keys in dictionaries." msgstr "" -#: ../../library/ipaddress.rst:501 -msgid "" -"Construct an IPv4 network definition. *address* can be one of the following:" +msgid "Construct an IPv4 network definition. *address* can be one of the following:" msgstr "" -#: ../../library/ipaddress.rst:503 -msgid "" -"A string consisting of an IP address and an optional mask, separated by a " -"slash (``/``). The IP address is the network address, and the mask can be " -"either a single number, which means it's a *prefix*, or a string " -"representation of an IPv4 address. If it's the latter, the mask is " -"interpreted as a *net mask* if it starts with a non-zero field, or as a " -"*host mask* if it starts with a zero field, with the single exception of an " -"all-zero mask which is treated as a *net mask*. If no mask is provided, " -"it's considered to be ``/32``." +msgid "A string consisting of an IP address and an optional mask, separated by a slash (``/``). The IP address is the network address, and the mask can be either a single number, which means it's a *prefix*, or a string representation of an IPv4 address. If it's the latter, the mask is interpreted as a *net mask* if it starts with a non-zero field, or as a *host mask* if it starts with a zero field, with the single exception of an all-zero mask which is treated as a *net mask*. If no mask is provided, it's considered to be ``/32``." msgstr "" -#: ../../library/ipaddress.rst:512 -msgid "" -"For example, the following *address* specifications are equivalent: " -"``192.168.1.0/24``, ``192.168.1.0/255.255.255.0`` and " -"``192.168.1.0/0.0.0.255``." +msgid "For example, the following *address* specifications are equivalent: ``192.168.1.0/24``, ``192.168.1.0/255.255.255.0`` and ``192.168.1.0/0.0.0.255``." msgstr "" -#: ../../library/ipaddress.rst:516 -msgid "" -"An integer that fits into 32 bits. This is equivalent to a single-address " -"network, with the network address being *address* and the mask being ``/32``." +msgid "An integer that fits into 32 bits. This is equivalent to a single-address network, with the network address being *address* and the mask being ``/32``." msgstr "" -#: ../../library/ipaddress.rst:520 -msgid "" -"An integer packed into a :class:`bytes` object of length 4, big-endian. The " -"interpretation is similar to an integer *address*." +msgid "An integer packed into a :class:`bytes` object of length 4, big-endian. The interpretation is similar to an integer *address*." msgstr "" -#: ../../library/ipaddress.rst:523 -msgid "" -"A two-tuple of an address description and a netmask, where the address " -"description is either a string, a 32-bits integer, a 4-bytes packed integer, " -"or an existing :class:`IPv4Address` object; and the netmask is either an " -"integer representing the prefix length (e.g. ``24``) or a string " -"representing the prefix mask (e.g. ``255.255.255.0``)." +msgid "A two-tuple of an address description and a netmask, where the address description is either a string, a 32-bits integer, a 4-bytes packed integer, or an existing :class:`IPv4Address` object; and the netmask is either an integer representing the prefix length (e.g. ``24``) or a string representing the prefix mask (e.g. ``255.255.255.0``)." msgstr "" -#: ../../library/ipaddress.rst:529 -msgid "" -"An :exc:`AddressValueError` is raised if *address* is not a valid IPv4 " -"address. A :exc:`NetmaskValueError` is raised if the mask is not valid for " -"an IPv4 address." +msgid "An :exc:`AddressValueError` is raised if *address* is not a valid IPv4 address. A :exc:`NetmaskValueError` is raised if the mask is not valid for an IPv4 address." msgstr "" -#: ../../library/ipaddress.rst:533 ../../library/ipaddress.rst:753 -msgid "" -"If *strict* is ``True`` and host bits are set in the supplied address, " -"then :exc:`ValueError` is raised. Otherwise, the host bits are masked out " -"to determine the appropriate network address." +msgid "If *strict* is ``True`` and host bits are set in the supplied address, then :exc:`ValueError` is raised. Otherwise, the host bits are masked out to determine the appropriate network address." msgstr "" -#: ../../library/ipaddress.rst:537 -msgid "" -"Unless stated otherwise, all network methods accepting other network/address " -"objects will raise :exc:`TypeError` if the argument's IP version is " -"incompatible to ``self``." +msgid "Unless stated otherwise, all network methods accepting other network/address objects will raise :exc:`TypeError` if the argument's IP version is incompatible to ``self``." msgstr "" -#: ../../library/ipaddress.rst:543 ../../library/ipaddress.rst:759 msgid "Added the two-tuple form for the *address* constructor parameter." msgstr "" -#: ../../library/ipaddress.rst:548 -msgid "" -"Refer to the corresponding attribute documentation in :class:`IPv4Address`." +msgid "Refer to the corresponding attribute documentation in :class:`IPv4Address`." msgstr "" -#: ../../library/ipaddress.rst:558 -msgid "" -"These attributes are true for the network as a whole if they are true for " -"both the network address and the broadcast address." +msgid "These attributes are true for the network as a whole if they are true for both the network address and the broadcast address." msgstr "" -#: ../../library/ipaddress.rst:563 -msgid "" -"The network address for the network. The network address and the prefix " -"length together uniquely define a network." +msgid "The network address for the network. The network address and the prefix length together uniquely define a network." msgstr "" -#: ../../library/ipaddress.rst:568 -msgid "" -"The broadcast address for the network. Packets sent to the broadcast address " -"should be received by every host on the network." +msgid "The broadcast address for the network. Packets sent to the broadcast address should be received by every host on the network." msgstr "" -#: ../../library/ipaddress.rst:573 msgid "The host mask, as an :class:`IPv4Address` object." msgstr "" -#: ../../library/ipaddress.rst:577 msgid "The net mask, as an :class:`IPv4Address` object." msgstr "" -#: ../../library/ipaddress.rst:583 -msgid "" -"A string representation of the network, with the mask in prefix notation." +msgid "A string representation of the network, with the mask in prefix notation." msgstr "" -#: ../../library/ipaddress.rst:586 -msgid "" -"``with_prefixlen`` and ``compressed`` are always the same as " -"``str(network)``. ``exploded`` uses the exploded form the network address." +msgid "``with_prefixlen`` and ``compressed`` are always the same as ``str(network)``. ``exploded`` uses the exploded form the network address." msgstr "" -#: ../../library/ipaddress.rst:592 -msgid "" -"A string representation of the network, with the mask in net mask notation." +msgid "A string representation of the network, with the mask in net mask notation." msgstr "" -#: ../../library/ipaddress.rst:597 -msgid "" -"A string representation of the network, with the mask in host mask notation." +msgid "A string representation of the network, with the mask in host mask notation." msgstr "" -#: ../../library/ipaddress.rst:602 msgid "The total number of addresses in the network." msgstr "" -#: ../../library/ipaddress.rst:606 msgid "Length of the network prefix, in bits." msgstr "" -#: ../../library/ipaddress.rst:610 -msgid "" -"Returns an iterator over the usable hosts in the network. The usable hosts " -"are all the IP addresses that belong to the network, except the network " -"address itself and the network broadcast address. For networks with a mask " -"length of 31, the network address and network broadcast address are also " -"included in the result. Networks with a mask of 32 will return a list " -"containing the single host address." +msgid "Returns an iterator over the usable hosts in the network. The usable hosts are all the IP addresses that belong to the network, except the network address itself and the network broadcast address. For networks with a mask length of 31, the network address and network broadcast address are also included in the result. Networks with a mask of 32 will return a list containing the single host address." msgstr "" -#: ../../library/ipaddress.rst:628 -msgid "" -"``True`` if this network is partly or wholly contained in *other* or *other* " -"is wholly contained in this network." +msgid "``True`` if this network is partly or wholly contained in *other* or *other* is wholly contained in this network." msgstr "" -#: ../../library/ipaddress.rst:633 -msgid "" -"Computes the network definitions resulting from removing the given *network* " -"from this one. Returns an iterator of network objects. " -"Raises :exc:`ValueError` if *network* is not completely contained in this " -"network." +msgid "Computes the network definitions resulting from removing the given *network* from this one. Returns an iterator of network objects. Raises :exc:`ValueError` if *network* is not completely contained in this network." msgstr "" -#: ../../library/ipaddress.rst:646 -msgid "" -"The subnets that join to make the current network definition, depending on " -"the argument values. *prefixlen_diff* is the amount our prefix length " -"should be increased by. *new_prefix* is the desired new prefix of the " -"subnets; it must be larger than our prefix. One and only one of " -"*prefixlen_diff* and *new_prefix* must be set. Returns an iterator of " -"network objects." +msgid "The subnets that join to make the current network definition, depending on the argument values. *prefixlen_diff* is the amount our prefix length should be increased by. *new_prefix* is the desired new prefix of the subnets; it must be larger than our prefix. One and only one of *prefixlen_diff* and *new_prefix* must be set. Returns an iterator of network objects." msgstr "" -#: ../../library/ipaddress.rst:671 -msgid "" -"The supernet containing this network definition, depending on the argument " -"values. *prefixlen_diff* is the amount our prefix length should be " -"decreased by. *new_prefix* is the desired new prefix of the supernet; it " -"must be smaller than our prefix. One and only one of *prefixlen_diff* and " -"*new_prefix* must be set. Returns a single network object." +msgid "The supernet containing this network definition, depending on the argument values. *prefixlen_diff* is the amount our prefix length should be decreased by. *new_prefix* is the desired new prefix of the supernet; it must be smaller than our prefix. One and only one of *prefixlen_diff* and *new_prefix* must be set. Returns a single network object." msgstr "" -#: ../../library/ipaddress.rst:687 msgid "Return ``True`` if this network is a subnet of *other*." msgstr "" -#: ../../library/ipaddress.rst:698 msgid "Return ``True`` if this network is a supernet of *other*." msgstr "" -#: ../../library/ipaddress.rst:709 -msgid "" -"Compare this network to *other*. In this comparison only the network " -"addresses are considered; host bits aren't. Returns either ``-1``, ``0`` or " -"``1``." +msgid "Compare this network to *other*. In this comparison only the network addresses are considered; host bits aren't. Returns either ``-1``, ``0`` or ``1``." msgstr "" -#: ../../library/ipaddress.rst:720 -msgid "" -"It uses the same ordering and comparison algorithm as \"<\", \"==\", and " -"\">\"" +msgid "It uses the same ordering and comparison algorithm as \"<\", \"==\", and \">\"" msgstr "" -#: ../../library/ipaddress.rst:726 -msgid "" -"Construct an IPv6 network definition. *address* can be one of the following:" +msgid "Construct an IPv6 network definition. *address* can be one of the following:" msgstr "" -#: ../../library/ipaddress.rst:728 -msgid "" -"A string consisting of an IP address and an optional prefix length, " -"separated by a slash (``/``). The IP address is the network address, and " -"the prefix length must be a single number, the *prefix*. If no prefix " -"length is provided, it's considered to be ``/128``." +msgid "A string consisting of an IP address and an optional prefix length, separated by a slash (``/``). The IP address is the network address, and the prefix length must be a single number, the *prefix*. If no prefix length is provided, it's considered to be ``/128``." msgstr "" -#: ../../library/ipaddress.rst:733 -msgid "" -"Note that currently expanded netmasks are not supported. That means " -"``2001:db00::0/24`` is a valid argument while ``2001:db00::0/ffff:ff00::`` " -"is not." +msgid "Note that currently expanded netmasks are not supported. That means ``2001:db00::0/24`` is a valid argument while ``2001:db00::0/ffff:ff00::`` is not." msgstr "" -#: ../../library/ipaddress.rst:737 -msgid "" -"An integer that fits into 128 bits. This is equivalent to a single-address " -"network, with the network address being *address* and the mask being ``/" -"128``." +msgid "An integer that fits into 128 bits. This is equivalent to a single-address network, with the network address being *address* and the mask being ``/128``." msgstr "" -#: ../../library/ipaddress.rst:741 -msgid "" -"An integer packed into a :class:`bytes` object of length 16, big-endian. The " -"interpretation is similar to an integer *address*." +msgid "An integer packed into a :class:`bytes` object of length 16, big-endian. The interpretation is similar to an integer *address*." msgstr "" -#: ../../library/ipaddress.rst:744 -msgid "" -"A two-tuple of an address description and a netmask, where the address " -"description is either a string, a 128-bits integer, a 16-bytes packed " -"integer, or an existing :class:`IPv6Address` object; and the netmask is an " -"integer representing the prefix length." +msgid "A two-tuple of an address description and a netmask, where the address description is either a string, a 128-bits integer, a 16-bytes packed integer, or an existing :class:`IPv6Address` object; and the netmask is an integer representing the prefix length." msgstr "" -#: ../../library/ipaddress.rst:749 -msgid "" -"An :exc:`AddressValueError` is raised if *address* is not a valid IPv6 " -"address. A :exc:`NetmaskValueError` is raised if the mask is not valid for " -"an IPv6 address." +msgid "An :exc:`AddressValueError` is raised if *address* is not a valid IPv6 address. A :exc:`NetmaskValueError` is raised if the mask is not valid for an IPv6 address." msgstr "" -#: ../../library/ipaddress.rst:782 -msgid "" -"Returns an iterator over the usable hosts in the network. The usable hosts " -"are all the IP addresses that belong to the network, except the Subnet-" -"Router anycast address. For networks with a mask length of 127, the Subnet-" -"Router anycast address is also included in the result. Networks with a mask " -"of 128 will return a list containing the single host address." +msgid "Returns an iterator over the usable hosts in the network. The usable hosts are all the IP addresses that belong to the network, except the Subnet-Router anycast address. For networks with a mask length of 127, the Subnet-Router anycast address is also included in the result. Networks with a mask of 128 will return a list containing the single host address." msgstr "" -#: ../../library/ipaddress.rst:797 -msgid "" -"Refer to the corresponding attribute documentation in :class:`IPv4Network`." +msgid "Refer to the corresponding attribute documentation in :class:`IPv4Network`." msgstr "" -#: ../../library/ipaddress.rst:802 -msgid "" -"This attribute is true for the network as a whole if it is true for both the " -"network address and the broadcast address." +msgid "This attribute is true for the network as a whole if it is true for both the network address and the broadcast address." msgstr "" -#: ../../library/ipaddress.rst:809 -msgid "" -"Network objects support some operators. Unless stated otherwise, operators " -"can only be applied between compatible objects (i.e. IPv4 with IPv4, IPv6 " -"with IPv6)." +msgid "Network objects support some operators. Unless stated otherwise, operators can only be applied between compatible objects (i.e. IPv4 with IPv4, IPv6 with IPv6)." msgstr "" -#: ../../library/ipaddress.rst:815 ../../library/ipaddress.rst:951 msgid "Logical operators" msgstr "" -#: ../../library/ipaddress.rst:817 -msgid "" -"Network objects can be compared with the usual set of logical operators. " -"Network objects are ordered first by network address, then by net mask." +msgid "Network objects can be compared with the usual set of logical operators. Network objects are ordered first by network address, then by net mask." msgstr "" -#: ../../library/ipaddress.rst:822 msgid "Iteration" msgstr "" -#: ../../library/ipaddress.rst:824 -msgid "" -"Network objects can be iterated to list all the addresses belonging to the " -"network. For iteration, *all* hosts are returned, including unusable hosts " -"(for usable hosts, use the :meth:`~IPv4Network.hosts` method). An example::" +msgid "Network objects can be iterated to list all the addresses belonging to the network. For iteration, *all* hosts are returned, including unusable hosts (for usable hosts, use the :meth:`~IPv4Network.hosts` method). An example::" msgstr "" -#: ../../library/ipaddress.rst:829 msgid "" ">>> for addr in IPv4Network('192.0.2.0/28'):\n" "... addr\n" @@ -910,15 +478,12 @@ msgid "" "IPv4Address('192.0.2.15')" msgstr "" -#: ../../library/ipaddress.rst:851 msgid "Networks as containers of addresses" msgstr "" -#: ../../library/ipaddress.rst:853 msgid "Network objects can act as containers of addresses. Some examples::" msgstr "" -#: ../../library/ipaddress.rst:855 msgid "" ">>> IPv4Network('192.0.2.0/28')[0]\n" "IPv4Address('192.0.2.0')\n" @@ -930,179 +495,92 @@ msgid "" "False" msgstr "" -#: ../../library/ipaddress.rst:866 msgid "Interface objects" msgstr "" -#: ../../library/ipaddress.rst:868 -msgid "" -"Interface objects are :term:`hashable`, so they can be used as keys in " -"dictionaries." +msgid "Interface objects are :term:`hashable`, so they can be used as keys in dictionaries." msgstr "" -#: ../../library/ipaddress.rst:873 -msgid "" -"Construct an IPv4 interface. The meaning of *address* is as in the " -"constructor of :class:`IPv4Network`, except that arbitrary host addresses " -"are always accepted." +msgid "Construct an IPv4 interface. The meaning of *address* is as in the constructor of :class:`IPv4Network`, except that arbitrary host addresses are always accepted." msgstr "" -#: ../../library/ipaddress.rst:877 -msgid "" -":class:`IPv4Interface` is a subclass of :class:`IPv4Address`, so it inherits " -"all the attributes from that class. In addition, the following attributes " -"are available:" +msgid ":class:`IPv4Interface` is a subclass of :class:`IPv4Address`, so it inherits all the attributes from that class. In addition, the following attributes are available:" msgstr "" -#: ../../library/ipaddress.rst:883 msgid "The address (:class:`IPv4Address`) without network information." msgstr "" -#: ../../library/ipaddress.rst:891 msgid "The network (:class:`IPv4Network`) this interface belongs to." msgstr "" -#: ../../library/ipaddress.rst:899 -msgid "" -"A string representation of the interface with the mask in prefix notation." +msgid "A string representation of the interface with the mask in prefix notation." msgstr "" -#: ../../library/ipaddress.rst:907 -msgid "" -"A string representation of the interface with the network as a net mask." +msgid "A string representation of the interface with the network as a net mask." msgstr "" -#: ../../library/ipaddress.rst:915 -msgid "" -"A string representation of the interface with the network as a host mask." +msgid "A string representation of the interface with the network as a host mask." msgstr "" -#: ../../library/ipaddress.rst:924 -msgid "" -"Construct an IPv6 interface. The meaning of *address* is as in the " -"constructor of :class:`IPv6Network`, except that arbitrary host addresses " -"are always accepted." +msgid "Construct an IPv6 interface. The meaning of *address* is as in the constructor of :class:`IPv6Network`, except that arbitrary host addresses are always accepted." msgstr "" -#: ../../library/ipaddress.rst:928 -msgid "" -":class:`IPv6Interface` is a subclass of :class:`IPv6Address`, so it inherits " -"all the attributes from that class. In addition, the following attributes " -"are available:" +msgid ":class:`IPv6Interface` is a subclass of :class:`IPv6Address`, so it inherits all the attributes from that class. In addition, the following attributes are available:" msgstr "" -#: ../../library/ipaddress.rst:938 -msgid "" -"Refer to the corresponding attribute documentation in :class:`IPv4Interface`." +msgid "Refer to the corresponding attribute documentation in :class:`IPv4Interface`." msgstr "" -#: ../../library/ipaddress.rst:945 -msgid "" -"Interface objects support some operators. Unless stated otherwise, " -"operators can only be applied between compatible objects (i.e. IPv4 with " -"IPv4, IPv6 with IPv6)." +msgid "Interface objects support some operators. Unless stated otherwise, operators can only be applied between compatible objects (i.e. IPv4 with IPv4, IPv6 with IPv6)." msgstr "" -#: ../../library/ipaddress.rst:953 -msgid "" -"Interface objects can be compared with the usual set of logical operators." +msgid "Interface objects can be compared with the usual set of logical operators." msgstr "" -#: ../../library/ipaddress.rst:955 -msgid "" -"For equality comparison (``==`` and ``!=``), both the IP address and network " -"must be the same for the objects to be equal. An interface will not compare " -"equal to any address or network object." +msgid "For equality comparison (``==`` and ``!=``), both the IP address and network must be the same for the objects to be equal. An interface will not compare equal to any address or network object." msgstr "" -#: ../../library/ipaddress.rst:959 -msgid "" -"For ordering (``<``, ``>``, etc) the rules are different. Interface and " -"address objects with the same IP version can be compared, and the address " -"objects will always sort before the interface objects. Two interface " -"objects are first compared by their networks and, if those are the same, " -"then by their IP addresses." +msgid "For ordering (``<``, ``>``, etc) the rules are different. Interface and address objects with the same IP version can be compared, and the address objects will always sort before the interface objects. Two interface objects are first compared by their networks and, if those are the same, then by their IP addresses." msgstr "" -#: ../../library/ipaddress.rst:967 msgid "Other Module Level Functions" msgstr "" -#: ../../library/ipaddress.rst:969 msgid "The module also provides the following module level functions:" msgstr "" -#: ../../library/ipaddress.rst:973 -msgid "" -"Represent an address as 4 packed bytes in network (big-endian) order. " -"*address* is an integer representation of an IPv4 IP address. " -"A :exc:`ValueError` is raised if the integer is negative or too large to be " -"an IPv4 IP address." +msgid "Represent an address as 4 packed bytes in network (big-endian) order. *address* is an integer representation of an IPv4 IP address. A :exc:`ValueError` is raised if the integer is negative or too large to be an IPv4 IP address." msgstr "" -#: ../../library/ipaddress.rst:986 -msgid "" -"Represent an address as 16 packed bytes in network (big-endian) order. " -"*address* is an integer representation of an IPv6 IP address. " -"A :exc:`ValueError` is raised if the integer is negative or too large to be " -"an IPv6 IP address." +msgid "Represent an address as 16 packed bytes in network (big-endian) order. *address* is an integer representation of an IPv6 IP address. A :exc:`ValueError` is raised if the integer is negative or too large to be an IPv6 IP address." msgstr "" -#: ../../library/ipaddress.rst:994 -msgid "" -"Return an iterator of the summarized network range given the first and last " -"IP addresses. *first* is the first :class:`IPv4Address` " -"or :class:`IPv6Address` in the range and *last* is the " -"last :class:`IPv4Address` or :class:`IPv6Address` in the range. " -"A :exc:`TypeError` is raised if *first* or *last* are not IP addresses or " -"are not of the same version. A :exc:`ValueError` is raised if *last* is not " -"greater than *first* or if *first* address version is not 4 or 6." +msgid "Return an iterator of the summarized network range given the first and last IP addresses. *first* is the first :class:`IPv4Address` or :class:`IPv6Address` in the range and *last* is the last :class:`IPv4Address` or :class:`IPv6Address` in the range. A :exc:`TypeError` is raised if *first* or *last* are not IP addresses or are not of the same version. A :exc:`ValueError` is raised if *last* is not greater than *first* or if *first* address version is not 4 or 6." msgstr "" -#: ../../library/ipaddress.rst:1010 -msgid "" -"Return an iterator of the collapsed :class:`IPv4Network` " -"or :class:`IPv6Network` objects. *addresses* is an :term:`iterable` " -"of :class:`IPv4Network` or :class:`IPv6Network` objects. A :exc:`TypeError` " -"is raised if *addresses* contains mixed version objects." +msgid "Return an iterator of the collapsed :class:`IPv4Network` or :class:`IPv6Network` objects. *addresses* is an :term:`iterable` of :class:`IPv4Network` or :class:`IPv6Network` objects. A :exc:`TypeError` is raised if *addresses* contains mixed version objects." msgstr "" -#: ../../library/ipaddress.rst:1023 -msgid "" -"Return a key suitable for sorting between networks and addresses. Address " -"and Network objects are not sortable by default; they're fundamentally " -"different, so the expression::" +msgid "Return a key suitable for sorting between networks and addresses. Address and Network objects are not sortable by default; they're fundamentally different, so the expression::" msgstr "" -#: ../../library/ipaddress.rst:1027 msgid "IPv4Address('192.0.2.0') <= IPv4Network('192.0.2.0/24')" msgstr "" -#: ../../library/ipaddress.rst:1029 -msgid "" -"doesn't make sense. There are some times however, where you may wish to " -"have :mod:`!ipaddress` sort these anyway. If you need to do this, you can " -"use this function as the *key* argument to :func:`sorted`." +msgid "doesn't make sense. There are some times however, where you may wish to have :mod:`!ipaddress` sort these anyway. If you need to do this, you can use this function as the *key* argument to :func:`sorted`." msgstr "" -#: ../../library/ipaddress.rst:1033 msgid "*obj* is either a network or address object." msgstr "" -#: ../../library/ipaddress.rst:1037 msgid "Custom Exceptions" msgstr "" -#: ../../library/ipaddress.rst:1039 -msgid "" -"To support more specific error reporting from class constructors, the module " -"defines the following exceptions:" +msgid "To support more specific error reporting from class constructors, the module defines the following exceptions:" msgstr "" -#: ../../library/ipaddress.rst:1044 msgid "Any value error related to the address." msgstr "" -#: ../../library/ipaddress.rst:1049 msgid "Any value error related to the net mask." msgstr "" diff --git a/library/ipc.po b/library/ipc.po index efcd2d94..7edb5ca4 100644 --- a/library/ipc.po +++ b/library/ipc.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:08+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,23 +21,14 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/ipc.rst:5 msgid "Networking and Interprocess Communication" msgstr "" -#: ../../library/ipc.rst:7 -msgid "" -"The modules described in this chapter provide mechanisms for networking and " -"inter-processes communication." +msgid "The modules described in this chapter provide mechanisms for networking and inter-processes communication." msgstr "" -#: ../../library/ipc.rst:10 -msgid "" -"Some modules only work for two processes that are on the same machine, " -"e.g. :mod:`signal` and :mod:`mmap`. Other modules support networking " -"protocols that two or more processes can use to communicate across machines." +msgid "Some modules only work for two processes that are on the same machine, e.g. :mod:`signal` and :mod:`mmap`. Other modules support networking protocols that two or more processes can use to communicate across machines." msgstr "" -#: ../../library/ipc.rst:14 msgid "The list of modules described in this chapter is:" msgstr "" diff --git a/library/itertools.po b/library/itertools.po index f6205181..0ef6d330 100644 --- a/library/itertools.po +++ b/library/itertools.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:08+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,429 +24,303 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/itertools.rst:2 -msgid "" -":mod:`!itertools` --- Functions creating iterators for efficient looping" +msgid ":mod:`!itertools` --- Functions creating iterators for efficient looping" msgstr "" -#: ../../library/itertools.rst:20 -msgid "" -"This module implements a number of :term:`iterator` building blocks inspired " -"by constructs from APL, Haskell, and SML. Each has been recast in a form " -"suitable for Python." +msgid "This module implements a number of :term:`iterator` building blocks inspired by constructs from APL, Haskell, and SML. Each has been recast in a form suitable for Python." msgstr "" -#: ../../library/itertools.rst:24 -msgid "" -"The module standardizes a core set of fast, memory efficient tools that are " -"useful by themselves or in combination. Together, they form an \"iterator " -"algebra\" making it possible to construct specialized tools succinctly and " -"efficiently in pure Python." +msgid "The module standardizes a core set of fast, memory efficient tools that are useful by themselves or in combination. Together, they form an \"iterator algebra\" making it possible to construct specialized tools succinctly and efficiently in pure Python." msgstr "" -#: ../../library/itertools.rst:29 -msgid "" -"For instance, SML provides a tabulation tool: ``tabulate(f)`` which produces " -"a sequence ``f(0), f(1), ...``. The same effect can be achieved in Python " -"by combining :func:`map` and :func:`count` to form ``map(f, count())``." +msgid "For instance, SML provides a tabulation tool: ``tabulate(f)`` which produces a sequence ``f(0), f(1), ...``. The same effect can be achieved in Python by combining :func:`map` and :func:`count` to form ``map(f, count())``." msgstr "" -#: ../../library/itertools.rst:33 msgid "**General iterators:**" msgstr "" -#: ../../library/itertools.rst:36 ../../library/itertools.rst:60 msgid "Iterator" msgstr "" -#: ../../library/itertools.rst:36 ../../library/itertools.rst:60 msgid "Arguments" msgstr "" -#: ../../library/itertools.rst:36 ../../library/itertools.rst:60 -#: ../../library/itertools.rst:69 msgid "Results" msgstr "" -#: ../../library/itertools.rst:36 msgid "Example" msgstr "" -#: ../../library/itertools.rst:38 msgid ":func:`accumulate`" msgstr "" -#: ../../library/itertools.rst:38 msgid "p [,func]" msgstr "" -#: ../../library/itertools.rst:38 msgid "p0, p0+p1, p0+p1+p2, ..." msgstr "" -#: ../../library/itertools.rst:38 msgid "``accumulate([1,2,3,4,5]) → 1 3 6 10 15``" msgstr "" -#: ../../library/itertools.rst:39 msgid ":func:`batched`" msgstr "" -#: ../../library/itertools.rst:39 msgid "p, n" msgstr "" -#: ../../library/itertools.rst:39 msgid "(p0, p1, ..., p_n-1), ..." msgstr "" -#: ../../library/itertools.rst:39 msgid "``batched('ABCDEFG', n=3) → ABC DEF G``" msgstr "" -#: ../../library/itertools.rst:40 msgid ":func:`chain`" msgstr "" -#: ../../library/itertools.rst:40 ../../library/itertools.rst:54 msgid "p, q, ..." msgstr "" -#: ../../library/itertools.rst:40 ../../library/itertools.rst:41 msgid "p0, p1, ... plast, q0, q1, ..." msgstr "" -#: ../../library/itertools.rst:40 msgid "``chain('ABC', 'DEF') → A B C D E F``" msgstr "" -#: ../../library/itertools.rst:41 msgid ":func:`chain.from_iterable`" msgstr "" -#: ../../library/itertools.rst:41 ../../library/itertools.rst:49 msgid "iterable" msgstr "" -#: ../../library/itertools.rst:41 msgid "``chain.from_iterable(['ABC', 'DEF']) → A B C D E F``" msgstr "" -#: ../../library/itertools.rst:42 msgid ":func:`compress`" msgstr "" -#: ../../library/itertools.rst:42 msgid "data, selectors" msgstr "" -#: ../../library/itertools.rst:42 msgid "(d[0] if s[0]), (d[1] if s[1]), ..." msgstr "" -#: ../../library/itertools.rst:42 msgid "``compress('ABCDEF', [1,0,1,0,1,1]) → A C E F``" msgstr "" -#: ../../library/itertools.rst:43 msgid ":func:`count`" msgstr "" -#: ../../library/itertools.rst:43 msgid "[start[, step]]" msgstr "" -#: ../../library/itertools.rst:43 msgid "start, start+step, start+2*step, ..." msgstr "" -#: ../../library/itertools.rst:43 msgid "``count(10) → 10 11 12 13 14 ...``" msgstr "" -#: ../../library/itertools.rst:44 msgid ":func:`cycle`" msgstr "" -#: ../../library/itertools.rst:44 msgid "p" msgstr "" -#: ../../library/itertools.rst:44 msgid "p0, p1, ... plast, p0, p1, ..." msgstr "" -#: ../../library/itertools.rst:44 msgid "``cycle('ABCD') → A B C D A B C D ...``" msgstr "" -#: ../../library/itertools.rst:45 msgid ":func:`dropwhile`" msgstr "" -#: ../../library/itertools.rst:45 ../../library/itertools.rst:46 -#: ../../library/itertools.rst:52 msgid "predicate, seq" msgstr "" -#: ../../library/itertools.rst:45 msgid "seq[n], seq[n+1], starting when predicate fails" msgstr "" -#: ../../library/itertools.rst:45 msgid "``dropwhile(lambda x: x<5, [1,4,6,3,8]) → 6 3 8``" msgstr "" -#: ../../library/itertools.rst:46 msgid ":func:`filterfalse`" msgstr "" -#: ../../library/itertools.rst:46 msgid "elements of seq where predicate(elem) fails" msgstr "" -#: ../../library/itertools.rst:46 msgid "``filterfalse(lambda x: x<5, [1,4,6,3,8]) → 6 8``" msgstr "" -#: ../../library/itertools.rst:47 msgid ":func:`groupby`" msgstr "" -#: ../../library/itertools.rst:47 msgid "iterable[, key]" msgstr "" -#: ../../library/itertools.rst:47 msgid "sub-iterators grouped by value of key(v)" msgstr "" -#: ../../library/itertools.rst:47 msgid "``groupby(['A','B','DEF'], len) → (1, A B) (3, DEF)``" msgstr "" -#: ../../library/itertools.rst:48 msgid ":func:`islice`" msgstr "" -#: ../../library/itertools.rst:48 msgid "seq, [start,] stop [, step]" msgstr "" -#: ../../library/itertools.rst:48 msgid "elements from seq[start:stop:step]" msgstr "" -#: ../../library/itertools.rst:48 msgid "``islice('ABCDEFG', 2, None) → C D E F G``" msgstr "" -#: ../../library/itertools.rst:49 msgid ":func:`pairwise`" msgstr "" -#: ../../library/itertools.rst:49 msgid "(p[0], p[1]), (p[1], p[2])" msgstr "" -#: ../../library/itertools.rst:49 msgid "``pairwise('ABCDEFG') → AB BC CD DE EF FG``" msgstr "" -#: ../../library/itertools.rst:50 msgid ":func:`repeat`" msgstr "" -#: ../../library/itertools.rst:50 msgid "elem [,n]" msgstr "" -#: ../../library/itertools.rst:50 msgid "elem, elem, elem, ... endlessly or up to n times" msgstr "" -#: ../../library/itertools.rst:50 msgid "``repeat(10, 3) → 10 10 10``" msgstr "" -#: ../../library/itertools.rst:51 msgid ":func:`starmap`" msgstr "" -#: ../../library/itertools.rst:51 msgid "func, seq" msgstr "" -#: ../../library/itertools.rst:51 msgid "func(\\*seq[0]), func(\\*seq[1]), ..." msgstr "" -#: ../../library/itertools.rst:51 msgid "``starmap(pow, [(2,5), (3,2), (10,3)]) → 32 9 1000``" msgstr "" -#: ../../library/itertools.rst:52 msgid ":func:`takewhile`" msgstr "" -#: ../../library/itertools.rst:52 msgid "seq[0], seq[1], until predicate fails" msgstr "" -#: ../../library/itertools.rst:52 msgid "``takewhile(lambda x: x<5, [1,4,6,3,8]) → 1 4``" msgstr "" -#: ../../library/itertools.rst:53 msgid ":func:`tee`" msgstr "" -#: ../../library/itertools.rst:53 msgid "it, n" msgstr "" -#: ../../library/itertools.rst:53 msgid "it1, it2, ... itn splits one iterator into n" msgstr "" -#: ../../library/itertools.rst:53 msgid "``tee('ABC', 2) → A B C, A B C``" msgstr "" -#: ../../library/itertools.rst:54 msgid ":func:`zip_longest`" msgstr "" -#: ../../library/itertools.rst:54 msgid "(p[0], q[0]), (p[1], q[1]), ..." msgstr "" -#: ../../library/itertools.rst:54 msgid "``zip_longest('ABCD', 'xy', fillvalue='-') → Ax By C- D-``" msgstr "" -#: ../../library/itertools.rst:57 msgid "**Combinatoric iterators:**" msgstr "" -#: ../../library/itertools.rst:62 msgid ":func:`product`" msgstr "" -#: ../../library/itertools.rst:62 msgid "p, q, ... [repeat=1]" msgstr "" -#: ../../library/itertools.rst:62 msgid "cartesian product, equivalent to a nested for-loop" msgstr "" -#: ../../library/itertools.rst:63 msgid ":func:`permutations`" msgstr "" -#: ../../library/itertools.rst:63 msgid "p[, r]" msgstr "" -#: ../../library/itertools.rst:63 msgid "r-length tuples, all possible orderings, no repeated elements" msgstr "" -#: ../../library/itertools.rst:64 msgid ":func:`combinations`" msgstr "" -#: ../../library/itertools.rst:64 ../../library/itertools.rst:65 msgid "p, r" msgstr "" -#: ../../library/itertools.rst:64 msgid "r-length tuples, in sorted order, no repeated elements" msgstr "" -#: ../../library/itertools.rst:65 msgid ":func:`combinations_with_replacement`" msgstr "" -#: ../../library/itertools.rst:65 msgid "r-length tuples, in sorted order, with repeated elements" msgstr "" -#: ../../library/itertools.rst:69 msgid "Examples" msgstr "" -#: ../../library/itertools.rst:71 msgid "``product('ABCD', repeat=2)``" msgstr "" -#: ../../library/itertools.rst:71 msgid "``AA AB AC AD BA BB BC BD CA CB CC CD DA DB DC DD``" msgstr "" -#: ../../library/itertools.rst:72 msgid "``permutations('ABCD', 2)``" msgstr "" -#: ../../library/itertools.rst:72 msgid "``AB AC AD BA BC BD CA CB CD DA DB DC``" msgstr "" -#: ../../library/itertools.rst:73 msgid "``combinations('ABCD', 2)``" msgstr "" -#: ../../library/itertools.rst:73 msgid "``AB AC AD BC BD CD``" msgstr "" -#: ../../library/itertools.rst:74 msgid "``combinations_with_replacement('ABCD', 2)``" msgstr "" -#: ../../library/itertools.rst:74 msgid "``AA AB AC AD BB BC BD CC CD DD``" msgstr "" -#: ../../library/itertools.rst:81 msgid "Itertool Functions" msgstr "" -#: ../../library/itertools.rst:83 -msgid "" -"The following functions all construct and return iterators. Some provide " -"streams of infinite length, so they should only be accessed by functions or " -"loops that truncate the stream." +msgid "The following functions all construct and return iterators. Some provide streams of infinite length, so they should only be accessed by functions or loops that truncate the stream." msgstr "" -#: ../../library/itertools.rst:90 -msgid "" -"Make an iterator that returns accumulated sums or accumulated results from " -"other binary functions." +msgid "Make an iterator that returns accumulated sums or accumulated results from other binary functions." msgstr "" -#: ../../library/itertools.rst:93 -msgid "" -"The *function* defaults to addition. The *function* should accept two " -"arguments, an accumulated total and a value from the *iterable*." +msgid "The *function* defaults to addition. The *function* should accept two arguments, an accumulated total and a value from the *iterable*." msgstr "" -#: ../../library/itertools.rst:96 -msgid "" -"If an *initial* value is provided, the accumulation will start with that " -"value and the output will have one more element than the input iterable." +msgid "If an *initial* value is provided, the accumulation will start with that value and the output will have one more element than the input iterable." msgstr "" -#: ../../library/itertools.rst:100 ../../library/itertools.rst:173 -#: ../../library/itertools.rst:232 ../../library/itertools.rst:275 -#: ../../library/itertools.rst:476 ../../library/itertools.rst:511 -#: ../../library/itertools.rst:548 ../../library/itertools.rst:624 -#: ../../library/itertools.rst:685 ../../library/itertools.rst:766 msgid "Roughly equivalent to::" msgstr "" -#: ../../library/itertools.rst:102 msgid "" "def accumulate(iterable, function=operator.add, *, initial=None):\n" " 'Return running totals'\n" @@ -468,16 +342,9 @@ msgid "" " yield total" msgstr "" -#: ../../library/itertools.rst:121 -msgid "" -"To compute a running minimum, set *function* to :func:`min`. For a running " -"maximum, set *function* to :func:`max`. Or for a running product, set " -"*function* to :func:`operator.mul`. To build an `amortization table `_, accumulate the " -"interest and apply payments:" +msgid "To compute a running minimum, set *function* to :func:`min`. For a running maximum, set *function* to :func:`max`. Or for a running product, set *function* to :func:`operator.mul`. To build an `amortization table `_, accumulate the interest and apply payments:" msgstr "" -#: ../../library/itertools.rst:128 msgid "" ">>> data = [3, 4, 6, 2, 1, 9, 0, 7, 5, 8]\n" ">>> list(accumulate(data, max)) # running maximum\n" @@ -491,41 +358,24 @@ msgid "" "[1000, 960, 918, 874, 828, 779, 728, 674, 618, 559, 497]" msgstr "" -#: ../../library/itertools.rst:141 -msgid "" -"See :func:`functools.reduce` for a similar function that returns only the " -"final accumulated value." +msgid "See :func:`functools.reduce` for a similar function that returns only the final accumulated value." msgstr "" -#: ../../library/itertools.rst:146 msgid "Added the optional *function* parameter." msgstr "" -#: ../../library/itertools.rst:149 msgid "Added the optional *initial* parameter." msgstr "" -#: ../../library/itertools.rst:155 -msgid "" -"Batch data from the *iterable* into tuples of length *n*. The last batch may " -"be shorter than *n*." +msgid "Batch data from the *iterable* into tuples of length *n*. The last batch may be shorter than *n*." msgstr "" -#: ../../library/itertools.rst:158 -msgid "" -"If *strict* is true, will raise a :exc:`ValueError` if the final batch is " -"shorter than *n*." +msgid "If *strict* is true, will raise a :exc:`ValueError` if the final batch is shorter than *n*." msgstr "" -#: ../../library/itertools.rst:161 -msgid "" -"Loops over the input iterable and accumulates data into tuples up to size " -"*n*. The input is consumed lazily, just enough to fill a batch. The result " -"is yielded as soon as the batch is full or when the input iterable is " -"exhausted:" +msgid "Loops over the input iterable and accumulates data into tuples up to size *n*. The input is consumed lazily, just enough to fill a batch. The result is yielded as soon as the batch is full or when the input iterable is exhausted:" msgstr "" -#: ../../library/itertools.rst:166 msgid "" ">>> flattened_data = ['roses', 'red', 'violets', 'blue', 'sugar', 'sweet']\n" ">>> unflattened = list(batched(flattened_data, 2))\n" @@ -533,7 +383,6 @@ msgid "" "[('roses', 'red'), ('violets', 'blue'), ('sugar', 'sweet')]" msgstr "" -#: ../../library/itertools.rst:175 msgid "" "def batched(iterable, n, *, strict=False):\n" " # batched('ABCDEFG', 3) → ABC DEF G\n" @@ -546,19 +395,12 @@ msgid "" " yield batch" msgstr "" -#: ../../library/itertools.rst:187 msgid "Added the *strict* option." msgstr "" -#: ../../library/itertools.rst:193 -msgid "" -"Make an iterator that returns elements from the first iterable until it is " -"exhausted, then proceeds to the next iterable, until all of the iterables " -"are exhausted. This combines multiple data sources into a single iterator. " -"Roughly equivalent to::" +msgid "Make an iterator that returns elements from the first iterable until it is exhausted, then proceeds to the next iterable, until all of the iterables are exhausted. This combines multiple data sources into a single iterator. Roughly equivalent to::" msgstr "" -#: ../../library/itertools.rst:198 msgid "" "def chain(*iterables):\n" " # chain('ABC', 'DEF') → A B C D E F\n" @@ -566,13 +408,9 @@ msgid "" " yield from iterable" msgstr "" -#: ../../library/itertools.rst:206 -msgid "" -"Alternate constructor for :func:`chain`. Gets chained inputs from a single " -"iterable argument that is evaluated lazily. Roughly equivalent to::" +msgid "Alternate constructor for :func:`chain`. Gets chained inputs from a single iterable argument that is evaluated lazily. Roughly equivalent to::" msgstr "" -#: ../../library/itertools.rst:209 msgid "" "def from_iterable(iterables):\n" " # chain.from_iterable(['ABC', 'DEF']) → A B C D E F\n" @@ -580,33 +418,18 @@ msgid "" " yield from iterable" msgstr "" -#: ../../library/itertools.rst:217 msgid "Return *r* length subsequences of elements from the input *iterable*." msgstr "" -#: ../../library/itertools.rst:219 -msgid "" -"The output is a subsequence of :func:`product` keeping only entries that are " -"subsequences of the *iterable*. The length of the output is given " -"by :func:`math.comb` which computes ``n! / r! / (n - r)!`` when ``0 ≤ r ≤ " -"n`` or zero when ``r > n``." +msgid "The output is a subsequence of :func:`product` keeping only entries that are subsequences of the *iterable*. The length of the output is given by :func:`math.comb` which computes ``n! / r! / (n - r)!`` when ``0 ≤ r ≤ n`` or zero when ``r > n``." msgstr "" -#: ../../library/itertools.rst:224 -msgid "" -"The combination tuples are emitted in lexicographic order according to the " -"order of the input *iterable*. If the input *iterable* is sorted, the output " -"tuples will be produced in sorted order." +msgid "The combination tuples are emitted in lexicographic order according to the order of the input *iterable*. If the input *iterable* is sorted, the output tuples will be produced in sorted order." msgstr "" -#: ../../library/itertools.rst:228 -msgid "" -"Elements are treated as unique based on their position, not on their value. " -"If the input elements are unique, there will be no repeated values within " -"each combination." +msgid "Elements are treated as unique based on their position, not on their value. If the input elements are unique, there will be no repeated values within each combination." msgstr "" -#: ../../library/itertools.rst:234 msgid "" "def combinations(iterable, r):\n" " # combinations('ABCD', 2) → AB AC AD BC BD CD\n" @@ -631,35 +454,18 @@ msgid "" " yield tuple(pool[i] for i in indices)" msgstr "" -#: ../../library/itertools.rst:259 -msgid "" -"Return *r* length subsequences of elements from the input *iterable* " -"allowing individual elements to be repeated more than once." +msgid "Return *r* length subsequences of elements from the input *iterable* allowing individual elements to be repeated more than once." msgstr "" -#: ../../library/itertools.rst:262 -msgid "" -"The output is a subsequence of :func:`product` that keeps only entries that " -"are subsequences (with possible repeated elements) of the *iterable*. The " -"number of subsequence returned is ``(n + r - 1)! / r! / (n - 1)!`` when ``n " -"> 0``." +msgid "The output is a subsequence of :func:`product` that keeps only entries that are subsequences (with possible repeated elements) of the *iterable*. The number of subsequence returned is ``(n + r - 1)! / r! / (n - 1)!`` when ``n > 0``." msgstr "" -#: ../../library/itertools.rst:267 -msgid "" -"The combination tuples are emitted in lexicographic order according to the " -"order of the input *iterable*. if the input *iterable* is sorted, the output " -"tuples will be produced in sorted order." +msgid "The combination tuples are emitted in lexicographic order according to the order of the input *iterable*. if the input *iterable* is sorted, the output tuples will be produced in sorted order." msgstr "" -#: ../../library/itertools.rst:271 -msgid "" -"Elements are treated as unique based on their position, not on their value. " -"If the input elements are unique, the generated combinations will also be " -"unique." +msgid "Elements are treated as unique based on their position, not on their value. If the input elements are unique, the generated combinations will also be unique." msgstr "" -#: ../../library/itertools.rst:277 msgid "" "def combinations_with_replacement(iterable, r):\n" " # combinations_with_replacement('ABC', 2) → AA AB AC BB BC CC\n" @@ -681,28 +487,18 @@ msgid "" " yield tuple(pool[i] for i in indices)" msgstr "" -#: ../../library/itertools.rst:301 -msgid "" -"Make an iterator that returns elements from *data* where the corresponding " -"element in *selectors* is true. Stops when either the *data* or *selectors* " -"iterables have been exhausted. Roughly equivalent to::" +msgid "Make an iterator that returns elements from *data* where the corresponding element in *selectors* is true. Stops when either the *data* or *selectors* iterables have been exhausted. Roughly equivalent to::" msgstr "" -#: ../../library/itertools.rst:306 msgid "" "def compress(data, selectors):\n" " # compress('ABCDEF', [1,0,1,0,1,1]) → A C E F\n" " return (datum for datum, selector in zip(data, selectors) if selector)" msgstr "" -#: ../../library/itertools.rst:315 -msgid "" -"Make an iterator that returns evenly spaced values beginning with *start*. " -"Can be used with :func:`map` to generate consecutive data points or " -"with :func:`zip` to add sequence numbers. Roughly equivalent to::" +msgid "Make an iterator that returns evenly spaced values beginning with *start*. Can be used with :func:`map` to generate consecutive data points or with :func:`zip` to add sequence numbers. Roughly equivalent to::" msgstr "" -#: ../../library/itertools.rst:320 msgid "" "def count(start=0, step=1):\n" " # count(10) → 10 11 12 13 14 ...\n" @@ -713,25 +509,15 @@ msgid "" " n += step" msgstr "" -#: ../../library/itertools.rst:328 -msgid "" -"When counting with floating-point numbers, better accuracy can sometimes be " -"achieved by substituting multiplicative code such as: ``(start + step * i " -"for i in count())``." +msgid "When counting with floating-point numbers, better accuracy can sometimes be achieved by substituting multiplicative code such as: ``(start + step * i for i in count())``." msgstr "" -#: ../../library/itertools.rst:332 msgid "Added *step* argument and allowed non-integer arguments." msgstr "" -#: ../../library/itertools.rst:338 -msgid "" -"Make an iterator returning elements from the *iterable* and saving a copy of " -"each. When the iterable is exhausted, return elements from the saved copy. " -"Repeats indefinitely. Roughly equivalent to::" +msgid "Make an iterator returning elements from the *iterable* and saving a copy of each. When the iterable is exhausted, return elements from the saved copy. Repeats indefinitely. Roughly equivalent to::" msgstr "" -#: ../../library/itertools.rst:342 msgid "" "def cycle(iterable):\n" " # cycle('ABCD') → A B C D A B C D A B C D ...\n" @@ -746,20 +532,12 @@ msgid "" " yield element" msgstr "" -#: ../../library/itertools.rst:354 -msgid "" -"This itertool may require significant auxiliary storage (depending on the " -"length of the iterable)." +msgid "This itertool may require significant auxiliary storage (depending on the length of the iterable)." msgstr "" -#: ../../library/itertools.rst:360 -msgid "" -"Make an iterator that drops elements from the *iterable* while the " -"*predicate* is true and afterwards returns every element. Roughly " -"equivalent to::" +msgid "Make an iterator that drops elements from the *iterable* while the *predicate* is true and afterwards returns every element. Roughly equivalent to::" msgstr "" -#: ../../library/itertools.rst:364 msgid "" "def dropwhile(predicate, iterable):\n" " # dropwhile(lambda x: x<5, [1,4,6,3,8]) → 6 3 8\n" @@ -774,20 +552,12 @@ msgid "" " yield x" msgstr "" -#: ../../library/itertools.rst:376 -msgid "" -"Note this does not produce *any* output until the predicate first becomes " -"false, so this itertool may have a lengthy start-up time." +msgid "Note this does not produce *any* output until the predicate first becomes false, so this itertool may have a lengthy start-up time." msgstr "" -#: ../../library/itertools.rst:382 -msgid "" -"Make an iterator that filters elements from the *iterable* returning only " -"those for which the *predicate* returns a false value. If *predicate* is " -"``None``, returns the items that are false. Roughly equivalent to::" +msgid "Make an iterator that filters elements from the *iterable* returning only those for which the *predicate* returns a false value. If *predicate* is ``None``, returns the items that are false. Roughly equivalent to::" msgstr "" -#: ../../library/itertools.rst:387 msgid "" "def filterfalse(predicate, iterable):\n" " # filterfalse(lambda x: x<5, [1,4,6,3,8]) → 6 8\n" @@ -800,33 +570,15 @@ msgid "" " yield x" msgstr "" -#: ../../library/itertools.rst:400 -msgid "" -"Make an iterator that returns consecutive keys and groups from the " -"*iterable*. The *key* is a function computing a key value for each element. " -"If not specified or is ``None``, *key* defaults to an identity function and " -"returns the element unchanged. Generally, the iterable needs to already be " -"sorted on the same key function." +msgid "Make an iterator that returns consecutive keys and groups from the *iterable*. The *key* is a function computing a key value for each element. If not specified or is ``None``, *key* defaults to an identity function and returns the element unchanged. Generally, the iterable needs to already be sorted on the same key function." msgstr "" -#: ../../library/itertools.rst:406 -msgid "" -"The operation of :func:`groupby` is similar to the ``uniq`` filter in Unix. " -"It generates a break or new group every time the value of the key function " -"changes (which is why it is usually necessary to have sorted the data using " -"the same key function). That behavior differs from SQL's GROUP BY which " -"aggregates common elements regardless of their input order." +msgid "The operation of :func:`groupby` is similar to the ``uniq`` filter in Unix. It generates a break or new group every time the value of the key function changes (which is why it is usually necessary to have sorted the data using the same key function). That behavior differs from SQL's GROUP BY which aggregates common elements regardless of their input order." msgstr "" -#: ../../library/itertools.rst:412 -msgid "" -"The returned group is itself an iterator that shares the underlying iterable " -"with :func:`groupby`. Because the source is shared, when " -"the :func:`groupby` object is advanced, the previous group is no longer " -"visible. So, if that data is needed later, it should be stored as a list::" +msgid "The returned group is itself an iterator that shares the underlying iterable with :func:`groupby`. Because the source is shared, when the :func:`groupby` object is advanced, the previous group is no longer visible. So, if that data is needed later, it should be stored as a list::" msgstr "" -#: ../../library/itertools.rst:417 msgid "" "groups = []\n" "uniquekeys = []\n" @@ -836,11 +588,9 @@ msgid "" " uniquekeys.append(k)" msgstr "" -#: ../../library/itertools.rst:424 msgid ":func:`groupby` is roughly equivalent to::" msgstr "" -#: ../../library/itertools.rst:426 msgid "" "def groupby(iterable, key=None):\n" " # [k for k, g in groupby('AAAABBBCCDAABBB')] → A B C D A B\n" @@ -875,33 +625,18 @@ msgid "" " pass" msgstr "" -#: ../../library/itertools.rst:462 -msgid "" -"Make an iterator that returns selected elements from the iterable. Works " -"like sequence slicing but does not support negative values for *start*, " -"*stop*, or *step*." +msgid "Make an iterator that returns selected elements from the iterable. Works like sequence slicing but does not support negative values for *start*, *stop*, or *step*." msgstr "" -#: ../../library/itertools.rst:466 -msgid "" -"If *start* is zero or ``None``, iteration starts at zero. Otherwise, " -"elements from the iterable are skipped until *start* is reached." +msgid "If *start* is zero or ``None``, iteration starts at zero. Otherwise, elements from the iterable are skipped until *start* is reached." msgstr "" -#: ../../library/itertools.rst:469 -msgid "" -"If *stop* is ``None``, iteration continues until the input is exhausted, if " -"at all. Otherwise, it stops at the specified position." +msgid "If *stop* is ``None``, iteration continues until the input is exhausted, if at all. Otherwise, it stops at the specified position." msgstr "" -#: ../../library/itertools.rst:472 -msgid "" -"If *step* is ``None``, the step defaults to one. Elements are returned " -"consecutively unless *step* is set higher than one which results in items " -"being skipped." +msgid "If *step* is ``None``, the step defaults to one. Elements are returned consecutively unless *step* is set higher than one which results in items being skipped." msgstr "" -#: ../../library/itertools.rst:478 msgid "" "def islice(iterable, *args):\n" " # islice('ABCDEFG', 2) → A B\n" @@ -924,24 +659,15 @@ msgid "" " next_i += step" msgstr "" -#: ../../library/itertools.rst:498 -msgid "" -"If the input is an iterator, then fully consuming the *islice* advances the " -"input iterator by ``max(start, stop)`` steps regardless of the *step* value." +msgid "If the input is an iterator, then fully consuming the *islice* advances the input iterator by ``max(start, stop)`` steps regardless of the *step* value." msgstr "" -#: ../../library/itertools.rst:505 msgid "Return successive overlapping pairs taken from the input *iterable*." msgstr "" -#: ../../library/itertools.rst:507 -msgid "" -"The number of 2-tuples in the output iterator will be one fewer than the " -"number of inputs. It will be empty if the input iterable has fewer than two " -"values." +msgid "The number of 2-tuples in the output iterator will be one fewer than the number of inputs. It will be empty if the input iterable has fewer than two values." msgstr "" -#: ../../library/itertools.rst:513 msgid "" "def pairwise(iterable):\n" " # pairwise('ABCDEFG') → AB BC CD DE EF FG\n" @@ -954,41 +680,21 @@ msgid "" " a = b" msgstr "" -#: ../../library/itertools.rst:528 -msgid "" -"Return successive *r* length `permutations of elements `_ from the *iterable*." +msgid "Return successive *r* length `permutations of elements `_ from the *iterable*." msgstr "" -#: ../../library/itertools.rst:531 -msgid "" -"If *r* is not specified or is ``None``, then *r* defaults to the length of " -"the *iterable* and all possible full-length permutations are generated." +msgid "If *r* is not specified or is ``None``, then *r* defaults to the length of the *iterable* and all possible full-length permutations are generated." msgstr "" -#: ../../library/itertools.rst:535 -msgid "" -"The output is a subsequence of :func:`product` where entries with repeated " -"elements have been filtered out. The length of the output is given " -"by :func:`math.perm` which computes ``n! / (n - r)!`` when ``0 ≤ r ≤ n`` or " -"zero when ``r > n``." +msgid "The output is a subsequence of :func:`product` where entries with repeated elements have been filtered out. The length of the output is given by :func:`math.perm` which computes ``n! / (n - r)!`` when ``0 ≤ r ≤ n`` or zero when ``r > n``." msgstr "" -#: ../../library/itertools.rst:540 -msgid "" -"The permutation tuples are emitted in lexicographic order according to the " -"order of the input *iterable*. If the input *iterable* is sorted, the " -"output tuples will be produced in sorted order." +msgid "The permutation tuples are emitted in lexicographic order according to the order of the input *iterable*. If the input *iterable* is sorted, the output tuples will be produced in sorted order." msgstr "" -#: ../../library/itertools.rst:544 -msgid "" -"Elements are treated as unique based on their position, not on their value. " -"If the input elements are unique, there will be no repeated values within a " -"permutation." +msgid "Elements are treated as unique based on their position, not on their value. If the input elements are unique, there will be no repeated values within a permutation." msgstr "" -#: ../../library/itertools.rst:550 msgid "" "def permutations(iterable, r=None):\n" " # permutations('ABCD', 2) → AB AC AD BA BC BD CA CB CD DA DB DC\n" @@ -1019,41 +725,21 @@ msgid "" " return" msgstr "" -#: ../../library/itertools.rst:581 -msgid "" -"`Cartesian product `_ of " -"the input iterables." +msgid "`Cartesian product `_ of the input iterables." msgstr "" -#: ../../library/itertools.rst:584 -msgid "" -"Roughly equivalent to nested for-loops in a generator expression. For " -"example, ``product(A, B)`` returns the same as ``((x,y) for x in A for y in " -"B)``." +msgid "Roughly equivalent to nested for-loops in a generator expression. For example, ``product(A, B)`` returns the same as ``((x,y) for x in A for y in B)``." msgstr "" -#: ../../library/itertools.rst:587 -msgid "" -"The nested loops cycle like an odometer with the rightmost element advancing " -"on every iteration. This pattern creates a lexicographic ordering so that " -"if the input's iterables are sorted, the product tuples are emitted in " -"sorted order." +msgid "The nested loops cycle like an odometer with the rightmost element advancing on every iteration. This pattern creates a lexicographic ordering so that if the input's iterables are sorted, the product tuples are emitted in sorted order." msgstr "" -#: ../../library/itertools.rst:592 -msgid "" -"To compute the product of an iterable with itself, specify the number of " -"repetitions with the optional *repeat* keyword argument. For example, " -"``product(A, repeat=4)`` means the same as ``product(A, A, A, A)``." +msgid "To compute the product of an iterable with itself, specify the number of repetitions with the optional *repeat* keyword argument. For example, ``product(A, repeat=4)`` means the same as ``product(A, A, A, A)``." msgstr "" -#: ../../library/itertools.rst:596 -msgid "" -"This function is roughly equivalent to the following code, except that the " -"actual implementation does not build up intermediate results in memory::" +msgid "This function is roughly equivalent to the following code, except that the actual implementation does not build up intermediate results in memory::" msgstr "" -#: ../../library/itertools.rst:599 msgid "" "def product(*iterables, repeat=1):\n" " # product('ABCD', 'xy') → Ax Ay Bx By Cx Cy Dx Dy\n" @@ -1071,20 +757,12 @@ msgid "" " yield tuple(prod)" msgstr "" -#: ../../library/itertools.rst:614 -msgid "" -"Before :func:`product` runs, it completely consumes the input iterables, " -"keeping pools of values in memory to generate the products. Accordingly, it " -"is only useful with finite inputs." +msgid "Before :func:`product` runs, it completely consumes the input iterables, keeping pools of values in memory to generate the products. Accordingly, it is only useful with finite inputs." msgstr "" -#: ../../library/itertools.rst:621 -msgid "" -"Make an iterator that returns *object* over and over again. Runs " -"indefinitely unless the *times* argument is specified." +msgid "Make an iterator that returns *object* over and over again. Runs indefinitely unless the *times* argument is specified." msgstr "" -#: ../../library/itertools.rst:626 msgid "" "def repeat(object, times=None):\n" " # repeat(10, 3) → 10 10 10\n" @@ -1096,33 +774,20 @@ msgid "" " yield object" msgstr "" -#: ../../library/itertools.rst:635 -msgid "" -"A common use for *repeat* is to supply a stream of constant values to *map* " -"or *zip*:" +msgid "A common use for *repeat* is to supply a stream of constant values to *map* or *zip*:" msgstr "" -#: ../../library/itertools.rst:638 msgid "" ">>> list(map(pow, range(10), repeat(2)))\n" "[0, 1, 4, 9, 16, 25, 36, 49, 64, 81]" msgstr "" -#: ../../library/itertools.rst:646 -msgid "" -"Make an iterator that computes the *function* using arguments obtained from " -"the *iterable*. Used instead of :func:`map` when argument parameters have " -"already been \"pre-zipped\" into tuples." +msgid "Make an iterator that computes the *function* using arguments obtained from the *iterable*. Used instead of :func:`map` when argument parameters have already been \"pre-zipped\" into tuples." msgstr "" -#: ../../library/itertools.rst:650 -msgid "" -"The difference between :func:`map` and :func:`starmap` parallels the " -"distinction between ``function(a,b)`` and ``function(*c)``. Roughly " -"equivalent to::" +msgid "The difference between :func:`map` and :func:`starmap` parallels the distinction between ``function(a,b)`` and ``function(*c)``. Roughly equivalent to::" msgstr "" -#: ../../library/itertools.rst:654 msgid "" "def starmap(function, iterable):\n" " # starmap(pow, [(2,5), (3,2), (10,3)]) → 32 9 1000\n" @@ -1130,13 +795,9 @@ msgid "" " yield function(*args)" msgstr "" -#: ../../library/itertools.rst:662 -msgid "" -"Make an iterator that returns elements from the *iterable* as long as the " -"*predicate* is true. Roughly equivalent to::" +msgid "Make an iterator that returns elements from the *iterable* as long as the *predicate* is true. Roughly equivalent to::" msgstr "" -#: ../../library/itertools.rst:665 msgid "" "def takewhile(predicate, iterable):\n" " # takewhile(lambda x: x<5, [1,4,6,3,8]) → 1 4\n" @@ -1146,22 +807,12 @@ msgid "" " yield x" msgstr "" -#: ../../library/itertools.rst:672 -msgid "" -"Note, the element that first fails the predicate condition is consumed from " -"the input iterator and there is no way to access it. This could be an issue " -"if an application wants to further consume the input iterator after " -"*takewhile* has been run to exhaustion. To work around this problem, " -"consider using `more-itertools before_and_after() `_ instead." +msgid "Note, the element that first fails the predicate condition is consumed from the input iterator and there is no way to access it. This could be an issue if an application wants to further consume the input iterator after *takewhile* has been run to exhaustion. To work around this problem, consider using `more-itertools before_and_after() `_ instead." msgstr "" -#: ../../library/itertools.rst:683 msgid "Return *n* independent iterators from a single iterable." msgstr "" -#: ../../library/itertools.rst:687 msgid "" "def tee(iterable, n=2):\n" " if n < 0:\n" @@ -1197,20 +848,12 @@ msgid "" " return value" msgstr "" -#: ../../library/itertools.rst:720 -msgid "" -"When the input *iterable* is already a tee iterator object, all members of " -"the return tuple are constructed as if they had been produced by the " -"upstream :func:`tee` call. This \"flattening step\" allows " -"nested :func:`tee` calls to share the same underlying data chain and to have " -"a single update step rather than a chain of calls." +msgid "When the input *iterable* is already a tee iterator object, all members of the return tuple are constructed as if they had been produced by the upstream :func:`tee` call. This \"flattening step\" allows nested :func:`tee` calls to share the same underlying data chain and to have a single update step rather than a chain of calls." msgstr "" -#: ../../library/itertools.rst:726 msgid "The flattening property makes tee iterators efficiently peekable:" msgstr "" -#: ../../library/itertools.rst:728 msgid "" "def lookahead(tee_iterator):\n" " \"Return the next value without moving the input forward\"\n" @@ -1218,7 +861,6 @@ msgid "" " return next(forked_iterator)" msgstr "" -#: ../../library/itertools.rst:735 msgid "" ">>> iterator = iter('abcdef')\n" ">>> [iterator] = tee(iterator, 1) # Make the input peekable\n" @@ -1230,36 +872,21 @@ msgid "" "'b'" msgstr "" -#: ../../library/itertools.rst:746 -msgid "" -"``tee`` iterators are not threadsafe. A :exc:`RuntimeError` may be raised " -"when simultaneously using iterators returned by the same :func:`tee` call, " -"even if the original *iterable* is threadsafe." +msgid "``tee`` iterators are not threadsafe. A :exc:`RuntimeError` may be raised when simultaneously using iterators returned by the same :func:`tee` call, even if the original *iterable* is threadsafe." msgstr "" -#: ../../library/itertools.rst:750 -msgid "" -"This itertool may require significant auxiliary storage (depending on how " -"much temporary data needs to be stored). In general, if one iterator uses " -"most or all of the data before another iterator starts, it is faster to " -"use :func:`list` instead of :func:`tee`." +msgid "This itertool may require significant auxiliary storage (depending on how much temporary data needs to be stored). In general, if one iterator uses most or all of the data before another iterator starts, it is faster to use :func:`list` instead of :func:`tee`." msgstr "" -#: ../../library/itertools.rst:758 msgid "Make an iterator that aggregates elements from each of the *iterables*." msgstr "" -#: ../../library/itertools.rst:761 -msgid "" -"If the iterables are of uneven length, missing values are filled-in with " -"*fillvalue*. If not specified, *fillvalue* defaults to ``None``." +msgid "If the iterables are of uneven length, missing values are filled-in with *fillvalue*. If not specified, *fillvalue* defaults to ``None``." msgstr "" -#: ../../library/itertools.rst:764 msgid "Iteration continues until the longest iterable is exhausted." msgstr "" -#: ../../library/itertools.rst:768 msgid "" "def zip_longest(*iterables, fillvalue=None):\n" " # zip_longest('ABCD', 'xy', fillvalue='-') → Ax By C- D-\n" @@ -1284,66 +911,30 @@ msgid "" " yield tuple(values)" msgstr "" -#: ../../library/itertools.rst:790 -msgid "" -"If one of the iterables is potentially infinite, then " -"the :func:`zip_longest` function should be wrapped with something that " -"limits the number of calls (for example :func:`islice` or :func:`takewhile`)." +msgid "If one of the iterables is potentially infinite, then the :func:`zip_longest` function should be wrapped with something that limits the number of calls (for example :func:`islice` or :func:`takewhile`)." msgstr "" -#: ../../library/itertools.rst:798 msgid "Itertools Recipes" msgstr "" -#: ../../library/itertools.rst:800 -msgid "" -"This section shows recipes for creating an extended toolset using the " -"existing itertools as building blocks." +msgid "This section shows recipes for creating an extended toolset using the existing itertools as building blocks." msgstr "" -#: ../../library/itertools.rst:803 -msgid "" -"The primary purpose of the itertools recipes is educational. The recipes " -"show various ways of thinking about individual tools — for example, that " -"``chain.from_iterable`` is related to the concept of flattening. The " -"recipes also give ideas about ways that the tools can be combined — for " -"example, how ``starmap()`` and ``repeat()`` can work together. The recipes " -"also show patterns for using itertools with the :mod:`operator` " -"and :mod:`collections` modules as well as with the built-in itertools such " -"as ``map()``, ``filter()``, ``reversed()``, and ``enumerate()``." +msgid "The primary purpose of the itertools recipes is educational. The recipes show various ways of thinking about individual tools — for example, that ``chain.from_iterable`` is related to the concept of flattening. The recipes also give ideas about ways that the tools can be combined — for example, how ``starmap()`` and ``repeat()`` can work together. The recipes also show patterns for using itertools with the :mod:`operator` and :mod:`collections` modules as well as with the built-in itertools such as ``map()``, ``filter()``, ``reversed()``, and ``enumerate()``." msgstr "" -#: ../../library/itertools.rst:812 -msgid "" -"A secondary purpose of the recipes is to serve as an incubator. The " -"``accumulate()``, ``compress()``, and ``pairwise()`` itertools started out " -"as recipes. Currently, the ``sliding_window()``, ``derangements()``, and " -"``sieve()`` recipes are being tested to see whether they prove their worth." +msgid "A secondary purpose of the recipes is to serve as an incubator. The ``accumulate()``, ``compress()``, and ``pairwise()`` itertools started out as recipes. Currently, the ``sliding_window()``, ``derangements()``, and ``sieve()`` recipes are being tested to see whether they prove their worth." msgstr "" -#: ../../library/itertools.rst:817 -msgid "" -"Substantially all of these recipes and many, many others can be installed " -"from the :pypi:`more-itertools` project found on the Python Package Index::" +msgid "Substantially all of these recipes and many, many others can be installed from the :pypi:`more-itertools` project found on the Python Package Index::" msgstr "" -#: ../../library/itertools.rst:821 msgid "python -m pip install more-itertools" msgstr "" -#: ../../library/itertools.rst:823 -msgid "" -"Many of the recipes offer the same high performance as the underlying " -"toolset. Superior memory performance is kept by processing elements one at a " -"time rather than bringing the whole iterable into memory all at once. Code " -"volume is kept small by linking the tools together in a `functional style " -"`_. High " -"speed is retained by preferring \"vectorized\" building blocks over the use " -"of for-loops and :term:`generators ` which incur interpreter " -"overhead." +msgid "Many of the recipes offer the same high performance as the underlying toolset. Superior memory performance is kept by processing elements one at a time rather than bringing the whole iterable into memory all at once. Code volume is kept small by linking the tools together in a `functional style `_. High speed is retained by preferring \"vectorized\" building blocks over the use of for-loops and :term:`generators ` which incur interpreter overhead." msgstr "" -#: ../../library/itertools.rst:831 msgid "" "from itertools import (accumulate, batched, chain, combinations, compress,\n" " count, cycle, filterfalse, groupby, islice, permutations, product,\n" @@ -1404,13 +995,11 @@ msgid "" " return next(islice(iterable, n, None), default)\n" "\n" "def quantify(iterable, predicate=bool):\n" -" \"Given a predicate that returns True or False, count the True results." -"\"\n" +" \"Given a predicate that returns True or False, count the True results.\"\n" " return sum(map(predicate, iterable))\n" "\n" "def first_true(iterable, default=False, predicate=None):\n" -" \"Returns the first true value or the *default* if there is no true " -"value.\"\n" +" \"Returns the first true value or the *default* if there is no true value.\"\n" " # first_true([a, b, c], x) → a or b or c or x\n" " # first_true([a, b], x, f) → a if f(a) else b if f(b) else x\n" " return next(filter(predicate, iterable), default)\n" @@ -1424,8 +1013,7 @@ msgid "" "# ==== Data pipelines ====\n" "\n" "def unique_justseen(iterable, key=None):\n" -" \"Yield unique elements, preserving order. Remember only the element " -"just seen.\"\n" +" \"Yield unique elements, preserving order. Remember only the element just seen.\"\n" " # unique_justseen('AAAABBBCCDAABBB') → A B C D A B\n" " # unique_justseen('ABBcCAD', str.casefold) → A B c A D\n" " if key is None:\n" @@ -1433,8 +1021,7 @@ msgid "" " return map(next, map(itemgetter(1), groupby(iterable, key)))\n" "\n" "def unique_everseen(iterable, key=None):\n" -" \"Yield unique elements, preserving order. Remember all elements ever " -"seen.\"\n" +" \"Yield unique elements, preserving order. Remember all elements ever seen.\"\n" " # unique_everseen('AAAABBBCCDAABBB') → A B C D\n" " # unique_everseen('ABBcCAD', str.casefold) → A B c D\n" " seen = set()\n" @@ -1501,8 +1088,7 @@ msgid "" " # Algorithm credited to Stefan Pochmann\n" " seq = tuple(iterable)\n" " pos = tuple(range(len(seq)))\n" -" have_moved = map(map, repeat(is_not), repeat(pos), permutations(pos, " -"r=r))\n" +" have_moved = map(map, repeat(is_not), repeat(pos), permutations(pos, r=r))\n" " valid_derangements = map(all, have_moved)\n" " return compress(permutations(seq, r=r), valid_derangements)\n" "\n" diff --git a/library/json.po b/library/json.po index 43a3a16b..688380fd 100644 --- a/library/json.po +++ b/library/json.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:08+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,49 +23,27 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/json.rst:2 msgid ":mod:`!json` --- JSON encoder and decoder" msgstr "" -#: ../../library/json.rst:10 msgid "**Source code:** :source:`Lib/json/__init__.py`" msgstr "" -#: ../../library/json.rst:14 -msgid "" -"`JSON (JavaScript Object Notation) `_, specified " -"by :rfc:`7159` (which obsoletes :rfc:`4627`) and by `ECMA-404 `_, is a " -"lightweight data interchange format inspired by `JavaScript `_ object literal syntax (although it is " -"not a strict subset of JavaScript [#rfc-errata]_ )." +msgid "`JSON (JavaScript Object Notation) `_, specified by :rfc:`7159` (which obsoletes :rfc:`4627`) and by `ECMA-404 `_, is a lightweight data interchange format inspired by `JavaScript `_ object literal syntax (although it is not a strict subset of JavaScript [#rfc-errata]_ )." msgstr "" -#: ../../library/json.rst:22 -msgid "" -"The term \"object\" in the context of JSON processing in Python can be " -"ambiguous. All values in Python are objects. In JSON, an object refers to " -"any data wrapped in curly braces, similar to a Python dictionary." +msgid "The term \"object\" in the context of JSON processing in Python can be ambiguous. All values in Python are objects. In JSON, an object refers to any data wrapped in curly braces, similar to a Python dictionary." msgstr "" -#: ../../library/json.rst:27 -msgid "" -"Be cautious when parsing JSON data from untrusted sources. A malicious JSON " -"string may cause the decoder to consume considerable CPU and memory " -"resources. Limiting the size of data to be parsed is recommended." +msgid "Be cautious when parsing JSON data from untrusted sources. A malicious JSON string may cause the decoder to consume considerable CPU and memory resources. Limiting the size of data to be parsed is recommended." msgstr "" -#: ../../library/json.rst:31 -msgid "" -"This module exposes an API familiar to users of the standard " -"library :mod:`marshal` and :mod:`pickle` modules." +msgid "This module exposes an API familiar to users of the standard library :mod:`marshal` and :mod:`pickle` modules." msgstr "" -#: ../../library/json.rst:34 msgid "Encoding basic Python object hierarchies::" msgstr "" -#: ../../library/json.rst:36 msgid "" ">>> import json\n" ">>> json.dumps(['foo', {'bar': ('baz', None, 1.0, 2)}])\n" @@ -85,22 +63,18 @@ msgid "" "'[\"streaming API\"]'" msgstr "" -#: ../../library/json.rst:53 msgid "Compact encoding::" msgstr "" -#: ../../library/json.rst:55 msgid "" ">>> import json\n" ">>> json.dumps([1, 2, 3, {'4': 5, '6': 7}], separators=(',', ':'))\n" "'[1,2,3,{\"4\":5,\"6\":7}]'" msgstr "" -#: ../../library/json.rst:59 msgid "Pretty printing::" msgstr "" -#: ../../library/json.rst:61 msgid "" ">>> import json\n" ">>> print(json.dumps({'6': 7, '4': 5}, sort_keys=True, indent=4))\n" @@ -110,28 +84,23 @@ msgid "" "}" msgstr "" -#: ../../library/json.rst:68 msgid "Customizing JSON object encoding::" msgstr "" -#: ../../library/json.rst:70 msgid "" ">>> import json\n" ">>> def custom_json(obj):\n" "... if isinstance(obj, complex):\n" -"... return {'__complex__': True, 'real': obj.real, 'imag': " -"obj.imag}\n" +"... return {'__complex__': True, 'real': obj.real, 'imag': obj.imag}\n" "... raise TypeError(f'Cannot serialize object of {type(obj)}')\n" "...\n" ">>> json.dumps(1 + 2j, default=custom_json)\n" "'{\"__complex__\": true, \"real\": 1.0, \"imag\": 2.0}'" msgstr "" -#: ../../library/json.rst:79 msgid "Decoding JSON::" msgstr "" -#: ../../library/json.rst:81 msgid "" ">>> import json\n" ">>> json.loads('[\"foo\", {\"bar\":[\"baz\", null, 1.0, 2]}]')\n" @@ -144,11 +113,9 @@ msgid "" "['streaming API']" msgstr "" -#: ../../library/json.rst:91 msgid "Customizing JSON object decoding::" msgstr "" -#: ../../library/json.rst:93 msgid "" ">>> import json\n" ">>> def as_complex(dct):\n" @@ -164,11 +131,9 @@ msgid "" "Decimal('1.1')" msgstr "" -#: ../../library/json.rst:106 msgid "Extending :class:`JSONEncoder`::" msgstr "" -#: ../../library/json.rst:108 msgid "" ">>> import json\n" ">>> class ComplexEncoder(json.JSONEncoder):\n" @@ -186,11 +151,9 @@ msgid "" "['[2.0', ', 1.0', ']']" msgstr "" -#: ../../library/json.rst:124 msgid "Using :mod:`!json` from the shell to validate and pretty-print:" msgstr "" -#: ../../library/json.rst:126 msgid "" "$ echo '{\"json\":\"obj\"}' | python -m json\n" "{\n" @@ -200,555 +163,285 @@ msgid "" "Expecting property name enclosed in double quotes: line 1 column 2 (char 1)" msgstr "" -#: ../../library/json.rst:135 msgid "See :ref:`json-commandline` for detailed documentation." msgstr "" -#: ../../library/json.rst:139 -msgid "" -"JSON is a subset of `YAML `_ 1.2. The JSON produced by " -"this module's default settings (in particular, the default *separators* " -"value) is also a subset of YAML 1.0 and 1.1. This module can thus also be " -"used as a YAML serializer." +msgid "JSON is a subset of `YAML `_ 1.2. The JSON produced by this module's default settings (in particular, the default *separators* value) is also a subset of YAML 1.0 and 1.1. This module can thus also be used as a YAML serializer." msgstr "" -#: ../../library/json.rst:146 -msgid "" -"This module's encoders and decoders preserve input and output order by " -"default. Order is only lost if the underlying containers are unordered." +msgid "This module's encoders and decoders preserve input and output order by default. Order is only lost if the underlying containers are unordered." msgstr "" -#: ../../library/json.rst:151 msgid "Basic Usage" msgstr "" -#: ../../library/json.rst:158 -msgid "" -"Serialize *obj* as a JSON formatted stream to *fp* (a ``.write()``-" -"supporting :term:`file-like object`) using this :ref:`Python-to-JSON " -"conversion table `." +msgid "Serialize *obj* as a JSON formatted stream to *fp* (a ``.write()``-supporting :term:`file-like object`) using this :ref:`Python-to-JSON conversion table `." msgstr "" -#: ../../library/json.rst:164 -msgid "" -"Unlike :mod:`pickle` and :mod:`marshal`, JSON is not a framed protocol, so " -"trying to serialize multiple objects with repeated calls to :func:`dump` " -"using the same *fp* will result in an invalid JSON file." +msgid "Unlike :mod:`pickle` and :mod:`marshal`, JSON is not a framed protocol, so trying to serialize multiple objects with repeated calls to :func:`dump` using the same *fp* will result in an invalid JSON file." msgstr "" -#: ../../library/json.rst:0 msgid "Parameters" msgstr "" -#: ../../library/json.rst:168 msgid "The Python object to be serialized." msgstr "" -#: ../../library/json.rst:171 -msgid "" -"The file-like object *obj* will be serialized to. The :mod:`!json` module " -"always produces :class:`str` objects, not :class:`bytes` objects, therefore " -"``fp.write()`` must support :class:`str` input." +msgid "The file-like object *obj* will be serialized to. The :mod:`!json` module always produces :class:`str` objects, not :class:`bytes` objects, therefore ``fp.write()`` must support :class:`str` input." msgstr "" -#: ../../library/json.rst:178 -msgid "" -"If ``True``, keys that are not of a basic type " -"(:class:`str`, :class:`int`, :class:`float`, :class:`bool`, ``None``) will " -"be skipped instead of raising a :exc:`TypeError`. Default ``False``." +msgid "If ``True``, keys that are not of a basic type (:class:`str`, :class:`int`, :class:`float`, :class:`bool`, ``None``) will be skipped instead of raising a :exc:`TypeError`. Default ``False``." msgstr "" -#: ../../library/json.rst:184 -msgid "" -"If ``True`` (the default), the output is guaranteed to have all incoming non-" -"ASCII and non-printable characters escaped. If ``False``, all characters " -"will be outputted as-is, except for the characters that must be escaped: " -"quotation mark, reverse solidus, and the control characters U+0000 through " -"U+001F." +msgid "If ``True`` (the default), the output is guaranteed to have all incoming non-ASCII and non-printable characters escaped. If ``False``, all characters will be outputted as-is, except for the characters that must be escaped: quotation mark, reverse solidus, and the control characters U+0000 through U+001F." msgstr "" -#: ../../library/json.rst:191 -msgid "" -"If ``False``, the circular reference check for container types is skipped " -"and a circular reference will result in a :exc:`RecursionError` (or worse). " -"Default ``True``." +msgid "If ``False``, the circular reference check for container types is skipped and a circular reference will result in a :exc:`RecursionError` (or worse). Default ``True``." msgstr "" -#: ../../library/json.rst:196 -msgid "" -"If ``False``, serialization of out-of-range :class:`float` values (``nan``, " -"``inf``, ``-inf``) will result in a :exc:`ValueError`, in strict compliance " -"with the JSON specification. If ``True`` (the default), their JavaScript " -"equivalents (``NaN``, ``Infinity``, ``-Infinity``) are used." +msgid "If ``False``, serialization of out-of-range :class:`float` values (``nan``, ``inf``, ``-inf``) will result in a :exc:`ValueError`, in strict compliance with the JSON specification. If ``True`` (the default), their JavaScript equivalents (``NaN``, ``Infinity``, ``-Infinity``) are used." msgstr "" -#: ../../library/json.rst:203 -msgid "" -"If set, a custom JSON encoder with the :meth:`~JSONEncoder.default` method " -"overridden, for serializing into custom datatypes. If ``None`` (the " -"default), :class:`!JSONEncoder` is used." +msgid "If set, a custom JSON encoder with the :meth:`~JSONEncoder.default` method overridden, for serializing into custom datatypes. If ``None`` (the default), :class:`!JSONEncoder` is used." msgstr "" -#: ../../library/json.rst:210 -msgid "" -"If a positive integer or string, JSON array elements and object members will " -"be pretty-printed with that indent level. A positive integer indents that " -"many spaces per level; a string (such as ``\"\\t\"``) is used to indent each " -"level. If zero, negative, or ``\"\"`` (the empty string), only newlines are " -"inserted. If ``None`` (the default), no newlines are inserted." +msgid "If a positive integer or string, JSON array elements and object members will be pretty-printed with that indent level. A positive integer indents that many spaces per level; a string (such as ``\"\\t\"``) is used to indent each level. If zero, negative, or ``\"\"`` (the empty string), only newlines are inserted. If ``None`` (the default), no newlines are inserted." msgstr "" -#: ../../library/json.rst:220 -msgid "" -"A two-tuple: ``(item_separator, key_separator)``. If ``None`` (the default), " -"*separators* defaults to ``(', ', ': ')`` if *indent* is ``None``, and " -"``(',', ': ')`` otherwise. For the most compact JSON, specify ``(',', ':')`` " -"to eliminate whitespace." +msgid "A two-tuple: ``(item_separator, key_separator)``. If ``None`` (the default), *separators* defaults to ``(', ', ': ')`` if *indent* is ``None``, and ``(',', ': ')`` otherwise. For the most compact JSON, specify ``(',', ':')`` to eliminate whitespace." msgstr "" -#: ../../library/json.rst:229 -msgid "" -"A function that is called for objects that can't otherwise be serialized. It " -"should return a JSON encodable version of the object or raise " -"a :exc:`TypeError`. If ``None`` (the default), :exc:`!TypeError` is raised." +msgid "A function that is called for objects that can't otherwise be serialized. It should return a JSON encodable version of the object or raise a :exc:`TypeError`. If ``None`` (the default), :exc:`!TypeError` is raised." msgstr "" -#: ../../library/json.rst:236 -msgid "" -"If ``True``, dictionaries will be outputted sorted by key. Default ``False``." +msgid "If ``True``, dictionaries will be outputted sorted by key. Default ``False``." msgstr "" -#: ../../library/json.rst:240 ../../library/json.rst:527 msgid "Allow strings for *indent* in addition to integers." msgstr "" -#: ../../library/json.rst:243 ../../library/json.rst:535 msgid "Use ``(',', ': ')`` as default if *indent* is not ``None``." msgstr "" -#: ../../library/json.rst:246 ../../library/json.rst:345 -msgid "" -"All optional parameters are now :ref:`keyword-only `." +msgid "All optional parameters are now :ref:`keyword-only `." msgstr "" -#: ../../library/json.rst:255 -msgid "" -"Serialize *obj* to a JSON formatted :class:`str` using this :ref:`conversion " -"table `. The arguments have the same meaning as " -"in :func:`dump`." +msgid "Serialize *obj* to a JSON formatted :class:`str` using this :ref:`conversion table `. The arguments have the same meaning as in :func:`dump`." msgstr "" -#: ../../library/json.rst:261 -msgid "" -"Keys in key/value pairs of JSON are always of the type :class:`str`. When a " -"dictionary is converted into JSON, all the keys of the dictionary are " -"coerced to strings. As a result of this, if a dictionary is converted into " -"JSON and then back into a dictionary, the dictionary may not equal the " -"original one. That is, ``loads(dumps(x)) != x`` if x has non-string keys." +msgid "Keys in key/value pairs of JSON are always of the type :class:`str`. When a dictionary is converted into JSON, all the keys of the dictionary are coerced to strings. As a result of this, if a dictionary is converted into JSON and then back into a dictionary, the dictionary may not equal the original one. That is, ``loads(dumps(x)) != x`` if x has non-string keys." msgstr "" -#: ../../library/json.rst:272 -msgid "" -"Deserialize *fp* to a Python object using the :ref:`JSON-to-Python " -"conversion table `." +msgid "Deserialize *fp* to a Python object using the :ref:`JSON-to-Python conversion table `." msgstr "" -#: ../../library/json.rst:275 -msgid "" -"A ``.read()``-supporting :term:`text file` or :term:`binary file` containing " -"the JSON document to be deserialized." +msgid "A ``.read()``-supporting :term:`text file` or :term:`binary file` containing the JSON document to be deserialized." msgstr "" -#: ../../library/json.rst:280 -msgid "" -"If set, a custom JSON decoder. Additional keyword arguments to :func:`!load` " -"will be passed to the constructor of *cls*. If ``None`` (the " -"default), :class:`!JSONDecoder` is used." +msgid "If set, a custom JSON decoder. Additional keyword arguments to :func:`!load` will be passed to the constructor of *cls*. If ``None`` (the default), :class:`!JSONDecoder` is used." msgstr "" -#: ../../library/json.rst:287 -msgid "" -"If set, a function that is called with the result of any JSON object literal " -"decoded (a :class:`dict`). The return value of this function will be used " -"instead of the :class:`dict`. This feature can be used to implement custom " -"decoders, for example `JSON-RPC `_ class hinting. " -"Default ``None``." +msgid "If set, a function that is called with the result of any JSON object literal decoded (a :class:`dict`). The return value of this function will be used instead of the :class:`dict`. This feature can be used to implement custom decoders, for example `JSON-RPC `_ class hinting. Default ``None``." msgstr "" -#: ../../library/json.rst:297 -msgid "" -"If set, a function that is called with the result of any JSON object literal " -"decoded with an ordered list of pairs. The return value of this function " -"will be used instead of the :class:`dict`. This feature can be used to " -"implement custom decoders. If *object_hook* is also set, *object_pairs_hook* " -"takes priority. Default ``None``." +msgid "If set, a function that is called with the result of any JSON object literal decoded with an ordered list of pairs. The return value of this function will be used instead of the :class:`dict`. This feature can be used to implement custom decoders. If *object_hook* is also set, *object_pairs_hook* takes priority. Default ``None``." msgstr "" -#: ../../library/json.rst:307 -msgid "" -"If set, a function that is called with the string of every JSON float to be " -"decoded. If ``None`` (the default), it is equivalent to ``float(num_str)``. " -"This can be used to parse JSON floats into custom datatypes, for " -"example :class:`decimal.Decimal`." +msgid "If set, a function that is called with the string of every JSON float to be decoded. If ``None`` (the default), it is equivalent to ``float(num_str)``. This can be used to parse JSON floats into custom datatypes, for example :class:`decimal.Decimal`." msgstr "" -#: ../../library/json.rst:315 -msgid "" -"If set, a function that is called with the string of every JSON int to be " -"decoded. If ``None`` (the default), it is equivalent to ``int(num_str)``. " -"This can be used to parse JSON integers into custom datatypes, for " -"example :class:`float`." +msgid "If set, a function that is called with the string of every JSON int to be decoded. If ``None`` (the default), it is equivalent to ``int(num_str)``. This can be used to parse JSON integers into custom datatypes, for example :class:`float`." msgstr "" -#: ../../library/json.rst:323 -msgid "" -"If set, a function that is called with one of the following strings: ``'-" -"Infinity'``, ``'Infinity'``, or ``'NaN'``. This can be used to raise an " -"exception if invalid JSON numbers are encountered. Default ``None``." +msgid "If set, a function that is called with one of the following strings: ``'-Infinity'``, ``'Infinity'``, or ``'NaN'``. This can be used to raise an exception if invalid JSON numbers are encountered. Default ``None``." msgstr "" -#: ../../library/json.rst:0 msgid "Raises" msgstr "" -#: ../../library/json.rst:331 msgid "When the data being deserialized is not a valid JSON document." msgstr "" -#: ../../library/json.rst:334 -msgid "" -"When the data being deserialized does not contain UTF-8, UTF-16 or UTF-32 " -"encoded data." +msgid "When the data being deserialized does not contain UTF-8, UTF-16 or UTF-32 encoded data." msgstr "" -#: ../../library/json.rst:340 msgid "Added the optional *object_pairs_hook* parameter." msgstr "" -#: ../../library/json.rst:341 msgid "*parse_constant* doesn't get called on 'null', 'true', 'false' anymore." msgstr "" -#: ../../library/json.rst:346 -msgid "" -"*fp* can now be a :term:`binary file`. The input encoding should be UTF-8, " -"UTF-16 or UTF-32." +msgid "*fp* can now be a :term:`binary file`. The input encoding should be UTF-8, UTF-16 or UTF-32." msgstr "" -#: ../../library/json.rst:349 -msgid "" -"The default *parse_int* of :func:`int` now limits the maximum length of the " -"integer string via the interpreter's :ref:`integer string conversion length " -"limitation ` to help avoid denial of service attacks." +msgid "The default *parse_int* of :func:`int` now limits the maximum length of the integer string via the interpreter's :ref:`integer string conversion length limitation ` to help avoid denial of service attacks." msgstr "" -#: ../../library/json.rst:357 -msgid "" -"Identical to :func:`load`, but instead of a file-like object, deserialize " -"*s* (a :class:`str`, :class:`bytes` or :class:`bytearray` instance " -"containing a JSON document) to a Python object using this :ref:`conversion " -"table `." +msgid "Identical to :func:`load`, but instead of a file-like object, deserialize *s* (a :class:`str`, :class:`bytes` or :class:`bytearray` instance containing a JSON document) to a Python object using this :ref:`conversion table `." msgstr "" -#: ../../library/json.rst:362 -msgid "" -"*s* can now be of type :class:`bytes` or :class:`bytearray`. The input " -"encoding should be UTF-8, UTF-16 or UTF-32." +msgid "*s* can now be of type :class:`bytes` or :class:`bytearray`. The input encoding should be UTF-8, UTF-16 or UTF-32." msgstr "" -#: ../../library/json.rst:366 msgid "The keyword argument *encoding* has been removed." msgstr "" -#: ../../library/json.rst:371 msgid "Encoders and Decoders" msgstr "" -#: ../../library/json.rst:375 msgid "Simple JSON decoder." msgstr "" -#: ../../library/json.rst:377 msgid "Performs the following translations in decoding by default:" msgstr "" -#: ../../library/json.rst:382 ../../library/json.rst:470 msgid "JSON" msgstr "" -#: ../../library/json.rst:382 ../../library/json.rst:470 msgid "Python" msgstr "" -#: ../../library/json.rst:384 ../../library/json.rst:472 msgid "object" msgstr "" -#: ../../library/json.rst:384 ../../library/json.rst:472 msgid "dict" msgstr "" -#: ../../library/json.rst:386 ../../library/json.rst:474 msgid "array" msgstr "" -#: ../../library/json.rst:386 msgid "list" msgstr "" -#: ../../library/json.rst:388 ../../library/json.rst:476 msgid "string" msgstr "" -#: ../../library/json.rst:388 ../../library/json.rst:476 msgid "str" msgstr "" -#: ../../library/json.rst:390 msgid "number (int)" msgstr "" -#: ../../library/json.rst:390 msgid "int" msgstr "" -#: ../../library/json.rst:392 msgid "number (real)" msgstr "" -#: ../../library/json.rst:392 msgid "float" msgstr "" -#: ../../library/json.rst:394 ../../library/json.rst:480 msgid "true" msgstr "" -#: ../../library/json.rst:394 ../../library/json.rst:480 msgid "True" msgstr "" -#: ../../library/json.rst:396 ../../library/json.rst:482 msgid "false" msgstr "نادرست" -#: ../../library/json.rst:396 ../../library/json.rst:482 msgid "False" msgstr "نادرست" -#: ../../library/json.rst:398 ../../library/json.rst:484 msgid "null" msgstr "" -#: ../../library/json.rst:398 ../../library/json.rst:484 msgid "None" msgstr "" -#: ../../library/json.rst:401 -msgid "" -"It also understands ``NaN``, ``Infinity``, and ``-Infinity`` as their " -"corresponding ``float`` values, which is outside the JSON spec." +msgid "It also understands ``NaN``, ``Infinity``, and ``-Infinity`` as their corresponding ``float`` values, which is outside the JSON spec." msgstr "" -#: ../../library/json.rst:404 -msgid "" -"*object_hook* is an optional function that will be called with the result of " -"every JSON object decoded and its return value will be used in place of the " -"given :class:`dict`. This can be used to provide custom deserializations " -"(e.g. to support `JSON-RPC `_ class hinting)." +msgid "*object_hook* is an optional function that will be called with the result of every JSON object decoded and its return value will be used in place of the given :class:`dict`. This can be used to provide custom deserializations (e.g. to support `JSON-RPC `_ class hinting)." msgstr "" -#: ../../library/json.rst:409 -msgid "" -"*object_pairs_hook* is an optional function that will be called with the " -"result of every JSON object decoded with an ordered list of pairs. The " -"return value of *object_pairs_hook* will be used instead of " -"the :class:`dict`. This feature can be used to implement custom decoders. " -"If *object_hook* is also defined, the *object_pairs_hook* takes priority." +msgid "*object_pairs_hook* is an optional function that will be called with the result of every JSON object decoded with an ordered list of pairs. The return value of *object_pairs_hook* will be used instead of the :class:`dict`. This feature can be used to implement custom decoders. If *object_hook* is also defined, the *object_pairs_hook* takes priority." msgstr "" -#: ../../library/json.rst:415 msgid "Added support for *object_pairs_hook*." msgstr "" -#: ../../library/json.rst:418 -msgid "" -"*parse_float* is an optional function that will be called with the string of " -"every JSON float to be decoded. By default, this is equivalent to " -"``float(num_str)``. This can be used to use another datatype or parser for " -"JSON floats (e.g. :class:`decimal.Decimal`)." +msgid "*parse_float* is an optional function that will be called with the string of every JSON float to be decoded. By default, this is equivalent to ``float(num_str)``. This can be used to use another datatype or parser for JSON floats (e.g. :class:`decimal.Decimal`)." msgstr "" -#: ../../library/json.rst:423 -msgid "" -"*parse_int* is an optional function that will be called with the string of " -"every JSON int to be decoded. By default, this is equivalent to " -"``int(num_str)``. This can be used to use another datatype or parser for " -"JSON integers (e.g. :class:`float`)." +msgid "*parse_int* is an optional function that will be called with the string of every JSON int to be decoded. By default, this is equivalent to ``int(num_str)``. This can be used to use another datatype or parser for JSON integers (e.g. :class:`float`)." msgstr "" -#: ../../library/json.rst:428 -msgid "" -"*parse_constant* is an optional function that will be called with one of the " -"following strings: ``'-Infinity'``, ``'Infinity'``, ``'NaN'``. This can be " -"used to raise an exception if invalid JSON numbers are encountered." +msgid "*parse_constant* is an optional function that will be called with one of the following strings: ``'-Infinity'``, ``'Infinity'``, ``'NaN'``. This can be used to raise an exception if invalid JSON numbers are encountered." msgstr "" -#: ../../library/json.rst:432 -msgid "" -"If *strict* is false (``True`` is the default), then control characters will " -"be allowed inside strings. Control characters in this context are those " -"with character codes in the 0--31 range, including ``'\\t'`` (tab), " -"``'\\n'``, ``'\\r'`` and ``'\\0'``." +msgid "If *strict* is false (``True`` is the default), then control characters will be allowed inside strings. Control characters in this context are those with character codes in the 0--31 range, including ``'\\t'`` (tab), ``'\\n'``, ``'\\r'`` and ``'\\0'``." msgstr "" -#: ../../library/json.rst:437 -msgid "" -"If the data being deserialized is not a valid JSON document, " -"a :exc:`JSONDecodeError` will be raised." +msgid "If the data being deserialized is not a valid JSON document, a :exc:`JSONDecodeError` will be raised." msgstr "" -#: ../../library/json.rst:440 ../../library/json.rst:543 msgid "All parameters are now :ref:`keyword-only `." msgstr "" -#: ../../library/json.rst:445 -msgid "" -"Return the Python representation of *s* (a :class:`str` instance containing " -"a JSON document)." +msgid "Return the Python representation of *s* (a :class:`str` instance containing a JSON document)." msgstr "" -#: ../../library/json.rst:448 -msgid "" -":exc:`JSONDecodeError` will be raised if the given JSON document is not " -"valid." +msgid ":exc:`JSONDecodeError` will be raised if the given JSON document is not valid." msgstr "" -#: ../../library/json.rst:453 -msgid "" -"Decode a JSON document from *s* (a :class:`str` beginning with a JSON " -"document) and return a 2-tuple of the Python representation and the index in " -"*s* where the document ended." +msgid "Decode a JSON document from *s* (a :class:`str` beginning with a JSON document) and return a 2-tuple of the Python representation and the index in *s* where the document ended." msgstr "" -#: ../../library/json.rst:457 -msgid "" -"This can be used to decode a JSON document from a string that may have " -"extraneous data at the end." +msgid "This can be used to decode a JSON document from a string that may have extraneous data at the end." msgstr "" -#: ../../library/json.rst:463 msgid "Extensible JSON encoder for Python data structures." msgstr "" -#: ../../library/json.rst:465 msgid "Supports the following objects and types by default:" msgstr "" -#: ../../library/json.rst:474 msgid "list, tuple" msgstr "" -#: ../../library/json.rst:478 msgid "int, float, int- & float-derived Enums" msgstr "" -#: ../../library/json.rst:478 msgid "number" msgstr "" -#: ../../library/json.rst:487 msgid "Added support for int- and float-derived Enum classes." msgstr "" -#: ../../library/json.rst:490 -msgid "" -"To extend this to recognize other objects, subclass and implement " -"a :meth:`~JSONEncoder.default` method with another method that returns a " -"serializable object for ``o`` if possible, otherwise it should call the " -"superclass implementation (to raise :exc:`TypeError`)." +msgid "To extend this to recognize other objects, subclass and implement a :meth:`~JSONEncoder.default` method with another method that returns a serializable object for ``o`` if possible, otherwise it should call the superclass implementation (to raise :exc:`TypeError`)." msgstr "" -#: ../../library/json.rst:495 -msgid "" -"If *skipkeys* is false (the default), a :exc:`TypeError` will be raised when " -"trying to encode keys that are " -"not :class:`str`, :class:`int`, :class:`float`, :class:`bool` or ``None``. " -"If *skipkeys* is true, such items are simply skipped." +msgid "If *skipkeys* is false (the default), a :exc:`TypeError` will be raised when trying to encode keys that are not :class:`str`, :class:`int`, :class:`float`, :class:`bool` or ``None``. If *skipkeys* is true, such items are simply skipped." msgstr "" -#: ../../library/json.rst:499 -msgid "" -"If *ensure_ascii* is true (the default), the output is guaranteed to have " -"all incoming non-ASCII and non-printable characters escaped. If " -"*ensure_ascii* is false, all characters will be output as-is, except for the " -"characters that must be escaped: quotation mark, reverse solidus, and the " -"control characters U+0000 through U+001F." +msgid "If *ensure_ascii* is true (the default), the output is guaranteed to have all incoming non-ASCII and non-printable characters escaped. If *ensure_ascii* is false, all characters will be output as-is, except for the characters that must be escaped: quotation mark, reverse solidus, and the control characters U+0000 through U+001F." msgstr "" -#: ../../library/json.rst:505 -msgid "" -"If *check_circular* is true (the default), then lists, dicts, and custom " -"encoded objects will be checked for circular references during encoding to " -"prevent an infinite recursion (which would cause a :exc:`RecursionError`). " -"Otherwise, no such check takes place." +msgid "If *check_circular* is true (the default), then lists, dicts, and custom encoded objects will be checked for circular references during encoding to prevent an infinite recursion (which would cause a :exc:`RecursionError`). Otherwise, no such check takes place." msgstr "" -#: ../../library/json.rst:510 -msgid "" -"If *allow_nan* is true (the default), then ``NaN``, ``Infinity``, and ``-" -"Infinity`` will be encoded as such. This behavior is not JSON specification " -"compliant, but is consistent with most JavaScript based encoders and " -"decoders. Otherwise, it will be a :exc:`ValueError` to encode such floats." +msgid "If *allow_nan* is true (the default), then ``NaN``, ``Infinity``, and ``-Infinity`` will be encoded as such. This behavior is not JSON specification compliant, but is consistent with most JavaScript based encoders and decoders. Otherwise, it will be a :exc:`ValueError` to encode such floats." msgstr "" -#: ../../library/json.rst:516 -msgid "" -"If *sort_keys* is true (default: ``False``), then the output of dictionaries " -"will be sorted by key; this is useful for regression tests to ensure that " -"JSON serializations can be compared on a day-to-day basis." +msgid "If *sort_keys* is true (default: ``False``), then the output of dictionaries will be sorted by key; this is useful for regression tests to ensure that JSON serializations can be compared on a day-to-day basis." msgstr "" -#: ../../library/json.rst:520 -msgid "" -"If *indent* is a non-negative integer or string, then JSON array elements " -"and object members will be pretty-printed with that indent level. An indent " -"level of 0, negative, or ``\"\"`` will only insert newlines. ``None`` (the " -"default) selects the most compact representation. Using a positive integer " -"indent indents that many spaces per level. If *indent* is a string (such as " -"``\"\\t\"``), that string is used to indent each level." +msgid "If *indent* is a non-negative integer or string, then JSON array elements and object members will be pretty-printed with that indent level. An indent level of 0, negative, or ``\"\"`` will only insert newlines. ``None`` (the default) selects the most compact representation. Using a positive integer indent indents that many spaces per level. If *indent* is a string (such as ``\"\\t\"``), that string is used to indent each level." msgstr "" -#: ../../library/json.rst:530 -msgid "" -"If specified, *separators* should be an ``(item_separator, key_separator)`` " -"tuple. The default is ``(', ', ': ')`` if *indent* is ``None`` and ``(',', " -"': ')`` otherwise. To get the most compact JSON representation, you should " -"specify ``(',', ':')`` to eliminate whitespace." +msgid "If specified, *separators* should be an ``(item_separator, key_separator)`` tuple. The default is ``(', ', ': ')`` if *indent* is ``None`` and ``(',', ': ')`` otherwise. To get the most compact JSON representation, you should specify ``(',', ':')`` to eliminate whitespace." msgstr "" -#: ../../library/json.rst:538 -msgid "" -"If specified, *default* should be a function that gets called for objects " -"that can't otherwise be serialized. It should return a JSON encodable " -"version of the object or raise a :exc:`TypeError`. If not " -"specified, :exc:`TypeError` is raised." +msgid "If specified, *default* should be a function that gets called for objects that can't otherwise be serialized. It should return a JSON encodable version of the object or raise a :exc:`TypeError`. If not specified, :exc:`TypeError` is raised." msgstr "" -#: ../../library/json.rst:549 -msgid "" -"Implement this method in a subclass such that it returns a serializable " -"object for *o*, or calls the base implementation (to raise " -"a :exc:`TypeError`)." +msgid "Implement this method in a subclass such that it returns a serializable object for *o*, or calls the base implementation (to raise a :exc:`TypeError`)." msgstr "" -#: ../../library/json.rst:553 -msgid "" -"For example, to support arbitrary iterators, you could " -"implement :meth:`~JSONEncoder.default` like this::" +msgid "For example, to support arbitrary iterators, you could implement :meth:`~JSONEncoder.default` like this::" msgstr "" -#: ../../library/json.rst:556 msgid "" "def default(self, o):\n" " try:\n" @@ -761,153 +454,87 @@ msgid "" " return super().default(o)" msgstr "" -#: ../../library/json.rst:569 -msgid "" -"Return a JSON string representation of a Python data structure, *o*. For " -"example::" +msgid "Return a JSON string representation of a Python data structure, *o*. For example::" msgstr "" -#: ../../library/json.rst:572 msgid "" ">>> json.JSONEncoder().encode({\"foo\": [\"bar\", \"baz\"]})\n" "'{\"foo\": [\"bar\", \"baz\"]}'" msgstr "" -#: ../../library/json.rst:578 -msgid "" -"Encode the given object, *o*, and yield each string representation as " -"available. For example::" +msgid "Encode the given object, *o*, and yield each string representation as available. For example::" msgstr "" -#: ../../library/json.rst:581 msgid "" "for chunk in json.JSONEncoder().iterencode(bigobject):\n" " mysocket.write(chunk)" msgstr "" -#: ../../library/json.rst:586 msgid "Exceptions" msgstr "" -#: ../../library/json.rst:590 msgid "Subclass of :exc:`ValueError` with the following additional attributes:" msgstr "" -#: ../../library/json.rst:594 msgid "The unformatted error message." msgstr "" -#: ../../library/json.rst:598 msgid "The JSON document being parsed." msgstr "" -#: ../../library/json.rst:602 msgid "The start index of *doc* where parsing failed." msgstr "" -#: ../../library/json.rst:606 msgid "The line corresponding to *pos*." msgstr "" -#: ../../library/json.rst:610 msgid "The column corresponding to *pos*." msgstr "" -#: ../../library/json.rst:616 msgid "Standard Compliance and Interoperability" msgstr "" -#: ../../library/json.rst:618 -msgid "" -"The JSON format is specified by :rfc:`7159` and by `ECMA-404 `_. This " -"section details this module's level of compliance with the RFC. For " -"simplicity, :class:`JSONEncoder` and :class:`JSONDecoder` subclasses, and " -"parameters other than those explicitly mentioned, are not considered." +msgid "The JSON format is specified by :rfc:`7159` and by `ECMA-404 `_. This section details this module's level of compliance with the RFC. For simplicity, :class:`JSONEncoder` and :class:`JSONDecoder` subclasses, and parameters other than those explicitly mentioned, are not considered." msgstr "" -#: ../../library/json.rst:624 -msgid "" -"This module does not comply with the RFC in a strict fashion, implementing " -"some extensions that are valid JavaScript but not valid JSON. In particular:" +msgid "This module does not comply with the RFC in a strict fashion, implementing some extensions that are valid JavaScript but not valid JSON. In particular:" msgstr "" -#: ../../library/json.rst:627 msgid "Infinite and NaN number values are accepted and output;" msgstr "" -#: ../../library/json.rst:628 -msgid "" -"Repeated names within an object are accepted, and only the value of the last " -"name-value pair is used." +msgid "Repeated names within an object are accepted, and only the value of the last name-value pair is used." msgstr "" -#: ../../library/json.rst:631 -msgid "" -"Since the RFC permits RFC-compliant parsers to accept input texts that are " -"not RFC-compliant, this module's deserializer is technically RFC-compliant " -"under default settings." +msgid "Since the RFC permits RFC-compliant parsers to accept input texts that are not RFC-compliant, this module's deserializer is technically RFC-compliant under default settings." msgstr "" -#: ../../library/json.rst:636 msgid "Character Encodings" msgstr "" -#: ../../library/json.rst:638 -msgid "" -"The RFC requires that JSON be represented using either UTF-8, UTF-16, or " -"UTF-32, with UTF-8 being the recommended default for maximum " -"interoperability." +msgid "The RFC requires that JSON be represented using either UTF-8, UTF-16, or UTF-32, with UTF-8 being the recommended default for maximum interoperability." msgstr "" -#: ../../library/json.rst:641 -msgid "" -"As permitted, though not required, by the RFC, this module's serializer sets " -"*ensure_ascii=True* by default, thus escaping the output so that the " -"resulting strings only contain printable ASCII characters." +msgid "As permitted, though not required, by the RFC, this module's serializer sets *ensure_ascii=True* by default, thus escaping the output so that the resulting strings only contain printable ASCII characters." msgstr "" -#: ../../library/json.rst:645 -msgid "" -"Other than the *ensure_ascii* parameter, this module is defined strictly in " -"terms of conversion between Python objects and :class:`Unicode strings " -"`, and thus does not otherwise directly address the issue of character " -"encodings." +msgid "Other than the *ensure_ascii* parameter, this module is defined strictly in terms of conversion between Python objects and :class:`Unicode strings `, and thus does not otherwise directly address the issue of character encodings." msgstr "" -#: ../../library/json.rst:650 -msgid "" -"The RFC prohibits adding a byte order mark (BOM) to the start of a JSON " -"text, and this module's serializer does not add a BOM to its output. The RFC " -"permits, but does not require, JSON deserializers to ignore an initial BOM " -"in their input. This module's deserializer raises a :exc:`ValueError` when " -"an initial BOM is present." +msgid "The RFC prohibits adding a byte order mark (BOM) to the start of a JSON text, and this module's serializer does not add a BOM to its output. The RFC permits, but does not require, JSON deserializers to ignore an initial BOM in their input. This module's deserializer raises a :exc:`ValueError` when an initial BOM is present." msgstr "" -#: ../../library/json.rst:656 -msgid "" -"The RFC does not explicitly forbid JSON strings which contain byte sequences " -"that don't correspond to valid Unicode characters (e.g. unpaired UTF-16 " -"surrogates), but it does note that they may cause interoperability problems. " -"By default, this module accepts and outputs (when present in the " -"original :class:`str`) code points for such sequences." +msgid "The RFC does not explicitly forbid JSON strings which contain byte sequences that don't correspond to valid Unicode characters (e.g. unpaired UTF-16 surrogates), but it does note that they may cause interoperability problems. By default, this module accepts and outputs (when present in the original :class:`str`) code points for such sequences." msgstr "" -#: ../../library/json.rst:664 msgid "Infinite and NaN Number Values" msgstr "" -#: ../../library/json.rst:666 -msgid "" -"The RFC does not permit the representation of infinite or NaN number values. " -"Despite that, by default, this module accepts and outputs ``Infinity``, ``-" -"Infinity``, and ``NaN`` as if they were valid JSON number literal values::" +msgid "The RFC does not permit the representation of infinite or NaN number values. Despite that, by default, this module accepts and outputs ``Infinity``, ``-Infinity``, and ``NaN`` as if they were valid JSON number literal values::" msgstr "" -#: ../../library/json.rst:670 msgid "" -">>> # Neither of these calls raises an exception, but the results are not " -"valid JSON\n" +">>> # Neither of these calls raises an exception, but the results are not valid JSON\n" ">>> json.dumps(float('-inf'))\n" "'-Infinity'\n" ">>> json.dumps(float('nan'))\n" @@ -919,120 +546,69 @@ msgid "" "nan" msgstr "" -#: ../../library/json.rst:681 -msgid "" -"In the serializer, the *allow_nan* parameter can be used to alter this " -"behavior. In the deserializer, the *parse_constant* parameter can be used " -"to alter this behavior." +msgid "In the serializer, the *allow_nan* parameter can be used to alter this behavior. In the deserializer, the *parse_constant* parameter can be used to alter this behavior." msgstr "" -#: ../../library/json.rst:687 msgid "Repeated Names Within an Object" msgstr "" -#: ../../library/json.rst:689 -msgid "" -"The RFC specifies that the names within a JSON object should be unique, but " -"does not mandate how repeated names in JSON objects should be handled. By " -"default, this module does not raise an exception; instead, it ignores all " -"but the last name-value pair for a given name::" +msgid "The RFC specifies that the names within a JSON object should be unique, but does not mandate how repeated names in JSON objects should be handled. By default, this module does not raise an exception; instead, it ignores all but the last name-value pair for a given name::" msgstr "" -#: ../../library/json.rst:694 msgid "" ">>> weird_json = '{\"x\": 1, \"x\": 2, \"x\": 3}'\n" ">>> json.loads(weird_json)\n" "{'x': 3}" msgstr "" -#: ../../library/json.rst:698 msgid "The *object_pairs_hook* parameter can be used to alter this behavior." msgstr "" -#: ../../library/json.rst:702 msgid "Top-level Non-Object, Non-Array Values" msgstr "" -#: ../../library/json.rst:704 -msgid "" -"The old version of JSON specified by the obsolete :rfc:`4627` required that " -"the top-level value of a JSON text must be either a JSON object or array " -"(Python :class:`dict` or :class:`list`), and could not be a JSON null, " -"boolean, number, or string value. :rfc:`7159` removed that restriction, and " -"this module does not and has never implemented that restriction in either " -"its serializer or its deserializer." +msgid "The old version of JSON specified by the obsolete :rfc:`4627` required that the top-level value of a JSON text must be either a JSON object or array (Python :class:`dict` or :class:`list`), and could not be a JSON null, boolean, number, or string value. :rfc:`7159` removed that restriction, and this module does not and has never implemented that restriction in either its serializer or its deserializer." msgstr "" -#: ../../library/json.rst:711 -msgid "" -"Regardless, for maximum interoperability, you may wish to voluntarily adhere " -"to the restriction yourself." +msgid "Regardless, for maximum interoperability, you may wish to voluntarily adhere to the restriction yourself." msgstr "" -#: ../../library/json.rst:716 msgid "Implementation Limitations" msgstr "" -#: ../../library/json.rst:718 msgid "Some JSON deserializer implementations may set limits on:" msgstr "" -#: ../../library/json.rst:720 msgid "the size of accepted JSON texts" msgstr "" -#: ../../library/json.rst:721 msgid "the maximum level of nesting of JSON objects and arrays" msgstr "" -#: ../../library/json.rst:722 msgid "the range and precision of JSON numbers" msgstr "" -#: ../../library/json.rst:723 msgid "the content and maximum length of JSON strings" msgstr "" -#: ../../library/json.rst:725 -msgid "" -"This module does not impose any such limits beyond those of the relevant " -"Python datatypes themselves or the Python interpreter itself." +msgid "This module does not impose any such limits beyond those of the relevant Python datatypes themselves or the Python interpreter itself." msgstr "" -#: ../../library/json.rst:728 -msgid "" -"When serializing to JSON, beware any such limitations in applications that " -"may consume your JSON. In particular, it is common for JSON numbers to be " -"deserialized into IEEE 754 double precision numbers and thus subject to that " -"representation's range and precision limitations. This is especially " -"relevant when serializing Python :class:`int` values of extremely large " -"magnitude, or when serializing instances of \"exotic\" numerical types such " -"as :class:`decimal.Decimal`." +msgid "When serializing to JSON, beware any such limitations in applications that may consume your JSON. In particular, it is common for JSON numbers to be deserialized into IEEE 754 double precision numbers and thus subject to that representation's range and precision limitations. This is especially relevant when serializing Python :class:`int` values of extremely large magnitude, or when serializing instances of \"exotic\" numerical types such as :class:`decimal.Decimal`." msgstr "" -#: ../../library/json.rst:741 msgid "Command-line interface" msgstr "" -#: ../../library/json.rst:746 msgid "**Source code:** :source:`Lib/json/tool.py`" msgstr "" -#: ../../library/json.rst:750 -msgid "" -"The :mod:`!json` module can be invoked as a script via ``python -m json`` to " -"validate and pretty-print JSON objects. The :mod:`!json.tool` submodule " -"implements this interface." +msgid "The :mod:`!json` module can be invoked as a script via ``python -m json`` to validate and pretty-print JSON objects. The :mod:`!json.tool` submodule implements this interface." msgstr "" -#: ../../library/json.rst:754 -msgid "" -"If the optional ``infile`` and ``outfile`` arguments are not " -"specified, :data:`sys.stdin` and :data:`sys.stdout` will be used " -"respectively:" +msgid "If the optional ``infile`` and ``outfile`` arguments are not specified, :data:`sys.stdin` and :data:`sys.stdout` will be used respectively:" msgstr "" -#: ../../library/json.rst:757 msgid "" "$ echo '{\"json\": \"obj\"}' | python -m json\n" "{\n" @@ -1042,28 +618,18 @@ msgid "" "Expecting property name enclosed in double quotes: line 1 column 2 (char 1)" msgstr "" -#: ../../library/json.rst:766 -msgid "" -"The output is now in the same order as the input. Use the :option:`--sort-" -"keys` option to sort the output of dictionaries alphabetically by key." +msgid "The output is now in the same order as the input. Use the :option:`--sort-keys` option to sort the output of dictionaries alphabetically by key." msgstr "" -#: ../../library/json.rst:771 -msgid "" -"The :mod:`!json` module may now be directly executed as ``python -m json``. " -"For backwards compatibility, invoking the CLI as ``python -m json.tool`` " -"remains supported." +msgid "The :mod:`!json` module may now be directly executed as ``python -m json``. For backwards compatibility, invoking the CLI as ``python -m json.tool`` remains supported." msgstr "" -#: ../../library/json.rst:778 msgid "Command-line options" msgstr "" -#: ../../library/json.rst:782 msgid "The JSON file to be validated or pretty-printed:" msgstr "" -#: ../../library/json.rst:784 msgid "" "$ python -m json mp_films.json\n" "[\n" @@ -1078,46 +644,29 @@ msgid "" "]" msgstr "" -#: ../../library/json.rst:798 msgid "If *infile* is not specified, read from :data:`sys.stdin`." msgstr "" -#: ../../library/json.rst:802 -msgid "" -"Write the output of the *infile* to the given *outfile*. Otherwise, write it " -"to :data:`sys.stdout`." +msgid "Write the output of the *infile* to the given *outfile*. Otherwise, write it to :data:`sys.stdout`." msgstr "" -#: ../../library/json.rst:807 msgid "Sort the output of dictionaries alphabetically by key." msgstr "" -#: ../../library/json.rst:813 -msgid "" -"Disable escaping of non-ascii characters, see :func:`json.dumps` for more " -"information." +msgid "Disable escaping of non-ascii characters, see :func:`json.dumps` for more information." msgstr "" -#: ../../library/json.rst:819 msgid "Parse every input line as separate JSON object." msgstr "" -#: ../../library/json.rst:825 msgid "Mutually exclusive options for whitespace control." msgstr "" -#: ../../library/json.rst:831 msgid "Show the help message." msgstr "" -#: ../../library/json.rst:835 msgid "Footnotes" msgstr "" -#: ../../library/json.rst:836 -msgid "" -"As noted in `the errata for RFC 7159 `_, JSON permits literal U+2028 (LINE SEPARATOR) " -"and U+2029 (PARAGRAPH SEPARATOR) characters in strings, whereas JavaScript " -"(as of ECMAScript Edition 5.1) does not." +msgid "As noted in `the errata for RFC 7159 `_, JSON permits literal U+2028 (LINE SEPARATOR) and U+2029 (PARAGRAPH SEPARATOR) characters in strings, whereas JavaScript (as of ECMAScript Edition 5.1) does not." msgstr "" diff --git a/library/keyword.po b/library/keyword.po index 28ddfd47..fe3f00e6 100644 --- a/library/keyword.po +++ b/library/keyword.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:08+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,40 +21,23 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/keyword.rst:2 msgid ":mod:`!keyword` --- Testing for Python keywords" msgstr "" -#: ../../library/keyword.rst:7 msgid "**Source code:** :source:`Lib/keyword.py`" msgstr "" -#: ../../library/keyword.rst:11 -msgid "" -"This module allows a Python program to determine if a string is " -"a :ref:`keyword ` or :ref:`soft keyword `." +msgid "This module allows a Python program to determine if a string is a :ref:`keyword ` or :ref:`soft keyword `." msgstr "" -#: ../../library/keyword.rst:17 msgid "Return ``True`` if *s* is a Python :ref:`keyword `." msgstr "" -#: ../../library/keyword.rst:22 -msgid "" -"Sequence containing all the :ref:`keywords ` defined for the " -"interpreter. If any keywords are defined to only be active when " -"particular :mod:`__future__` statements are in effect, these will be " -"included as well." +msgid "Sequence containing all the :ref:`keywords ` defined for the interpreter. If any keywords are defined to only be active when particular :mod:`__future__` statements are in effect, these will be included as well." msgstr "" -#: ../../library/keyword.rst:29 msgid "Return ``True`` if *s* is a Python :ref:`soft keyword `." msgstr "" -#: ../../library/keyword.rst:36 -msgid "" -"Sequence containing all the :ref:`soft keywords ` defined for " -"the interpreter. If any soft keywords are defined to only be active when " -"particular :mod:`__future__` statements are in effect, these will be " -"included as well." +msgid "Sequence containing all the :ref:`soft keywords ` defined for the interpreter. If any soft keywords are defined to only be active when particular :mod:`__future__` statements are in effect, these will be included as well." msgstr "" diff --git a/library/language.po b/library/language.po index 944b38ca..2ac7e254 100644 --- a/library/language.po +++ b/library/language.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:08+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,17 +21,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/language.rst:5 msgid "Python Language Services" msgstr "" -#: ../../library/language.rst:7 -msgid "" -"Python provides a number of modules to assist in working with the Python " -"language. These modules support tokenizing, parsing, syntax analysis, " -"bytecode disassembly, and various other facilities." +msgid "Python provides a number of modules to assist in working with the Python language. These modules support tokenizing, parsing, syntax analysis, bytecode disassembly, and various other facilities." msgstr "" -#: ../../library/language.rst:11 msgid "These modules include:" msgstr "" diff --git a/library/linecache.po b/library/linecache.po index 2c12e2d2..6ed8c353 100644 --- a/library/linecache.po +++ b/library/linecache.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:08+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,102 +23,56 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/linecache.rst:2 msgid ":mod:`!linecache` --- Random access to text lines" msgstr "" -#: ../../library/linecache.rst:9 msgid "**Source code:** :source:`Lib/linecache.py`" msgstr "" -#: ../../library/linecache.rst:13 -msgid "" -"The :mod:`!linecache` module allows one to get any line from a Python source " -"file, while attempting to optimize internally, using a cache, the common " -"case where many lines are read from a single file. This is used by " -"the :mod:`traceback` module to retrieve source lines for inclusion in the " -"formatted traceback." +msgid "The :mod:`!linecache` module allows one to get any line from a Python source file, while attempting to optimize internally, using a cache, the common case where many lines are read from a single file. This is used by the :mod:`traceback` module to retrieve source lines for inclusion in the formatted traceback." msgstr "" -#: ../../library/linecache.rst:18 -msgid "" -"The :func:`tokenize.open` function is used to open files. This function " -"uses :func:`tokenize.detect_encoding` to get the encoding of the file; in " -"the absence of an encoding token, the file encoding defaults to UTF-8." +msgid "The :func:`tokenize.open` function is used to open files. This function uses :func:`tokenize.detect_encoding` to get the encoding of the file; in the absence of an encoding token, the file encoding defaults to UTF-8." msgstr "" -#: ../../library/linecache.rst:22 msgid "The :mod:`!linecache` module defines the following functions:" msgstr "" -#: ../../library/linecache.rst:27 -msgid "" -"Get line *lineno* from file named *filename*. This function will never raise " -"an exception --- it will return ``''`` on errors (the terminating newline " -"character will be included for lines that are found)." +msgid "Get line *lineno* from file named *filename*. This function will never raise an exception --- it will return ``''`` on errors (the terminating newline character will be included for lines that are found)." msgstr "" -#: ../../library/linecache.rst:33 -msgid "" -"If *filename* indicates a frozen module (starting with ``'>> import linecache\n" ">>> linecache.getline(linecache.__file__, 8)\n" "'import sys\\n'" msgstr "" -#: ../../library/linecache.rst:31 msgid "module" msgstr "" -#: ../../library/linecache.rst:31 msgid "search" msgstr "" -#: ../../library/linecache.rst:31 msgid "path" msgstr "" diff --git a/library/locale.po b/library/locale.po index 757aa09e..7f41be9f 100644 --- a/library/locale.po +++ b/library/locale.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:08+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,964 +24,501 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/locale.rst:2 msgid ":mod:`!locale` --- Internationalization services" msgstr "" -#: ../../library/locale.rst:10 msgid "**Source code:** :source:`Lib/locale.py`" msgstr "" -#: ../../library/locale.rst:14 -msgid "" -"The :mod:`!locale` module opens access to the POSIX locale database and " -"functionality. The POSIX locale mechanism allows programmers to deal with " -"certain cultural issues in an application, without requiring the programmer " -"to know all the specifics of each country where the software is executed." +msgid "The :mod:`!locale` module opens access to the POSIX locale database and functionality. The POSIX locale mechanism allows programmers to deal with certain cultural issues in an application, without requiring the programmer to know all the specifics of each country where the software is executed." msgstr "" -#: ../../library/locale.rst:21 -msgid "" -"The :mod:`!locale` module is implemented on top of the :mod:`!_locale` " -"module, which in turn uses an ANSI C locale implementation if available." +msgid "The :mod:`!locale` module is implemented on top of the :mod:`!_locale` module, which in turn uses an ANSI C locale implementation if available." msgstr "" -#: ../../library/locale.rst:24 -msgid "" -"The :mod:`!locale` module defines the following exception and functions:" +msgid "The :mod:`!locale` module defines the following exception and functions:" msgstr "" -#: ../../library/locale.rst:29 -msgid "" -"Exception raised when the locale passed to :func:`setlocale` is not " -"recognized." +msgid "Exception raised when the locale passed to :func:`setlocale` is not recognized." msgstr "" -#: ../../library/locale.rst:35 -msgid "" -"If *locale* is given and not ``None``, :func:`setlocale` modifies the locale " -"setting for the *category*. The available categories are listed in the data " -"description below. *locale* may be a :ref:`string `, or a pair, " -"language code and encoding. An empty string specifies the user's default " -"settings. If the modification of the locale fails, the " -"exception :exc:`Error` is raised. If successful, the new locale setting is " -"returned." +msgid "If *locale* is given and not ``None``, :func:`setlocale` modifies the locale setting for the *category*. The available categories are listed in the data description below. *locale* may be a :ref:`string `, or a pair, language code and encoding. An empty string specifies the user's default settings. If the modification of the locale fails, the exception :exc:`Error` is raised. If successful, the new locale setting is returned." msgstr "" -#: ../../library/locale.rst:42 -msgid "" -"If *locale* is a pair, it is converted to a locale name using the locale " -"aliasing engine. The language code has the same format as a :ref:`locale " -"name `, but without encoding and ``@``-modifier. The language " -"code and encoding can be ``None``." +msgid "If *locale* is a pair, it is converted to a locale name using the locale aliasing engine. The language code has the same format as a :ref:`locale name `, but without encoding and ``@``-modifier. The language code and encoding can be ``None``." msgstr "" -#: ../../library/locale.rst:48 -msgid "" -"If *locale* is omitted or ``None``, the current setting for *category* is " -"returned." +msgid "If *locale* is omitted or ``None``, the current setting for *category* is returned." msgstr "" -#: ../../library/locale.rst:51 msgid "Example::" msgstr "" -#: ../../library/locale.rst:53 msgid "" ">>> import locale\n" ">>> loc = locale.setlocale(locale.LC_ALL) # get current locale\n" "# use German locale; name and availability varies with platform\n" ">>> locale.setlocale(locale.LC_ALL, 'de_DE.UTF-8')\n" -">>> locale.strcoll('f\\xe4n', 'foo') # compare a string containing an " -"umlaut\n" +">>> locale.strcoll('f\\xe4n', 'foo') # compare a string containing an umlaut\n" ">>> locale.setlocale(locale.LC_ALL, '') # use user's preferred locale\n" ">>> locale.setlocale(locale.LC_ALL, 'C') # use default (C) locale\n" ">>> locale.setlocale(locale.LC_ALL, loc) # restore saved locale" msgstr "" -#: ../../library/locale.rst:62 -msgid "" -":func:`setlocale` is not thread-safe on most systems. Applications typically " -"start with a call of::" +msgid ":func:`setlocale` is not thread-safe on most systems. Applications typically start with a call of::" msgstr "" -#: ../../library/locale.rst:65 msgid "" "import locale\n" "locale.setlocale(locale.LC_ALL, '')" msgstr "" -#: ../../library/locale.rst:68 -msgid "" -"This sets the locale for all categories to the user's default setting " -"(typically specified in the :envvar:`LANG` environment variable). If the " -"locale is not changed thereafter, using multithreading should not cause " -"problems." +msgid "This sets the locale for all categories to the user's default setting (typically specified in the :envvar:`LANG` environment variable). If the locale is not changed thereafter, using multithreading should not cause problems." msgstr "" -#: ../../library/locale.rst:75 -msgid "" -"Returns the database of the local conventions as a dictionary. This " -"dictionary has the following strings as keys:" +msgid "Returns the database of the local conventions as a dictionary. This dictionary has the following strings as keys:" msgstr "" -#: ../../library/locale.rst:81 msgid "Category" msgstr "" -#: ../../library/locale.rst:81 msgid "Key" msgstr "" -#: ../../library/locale.rst:81 msgid "Meaning" msgstr "" -#: ../../library/locale.rst:83 msgid ":const:`LC_NUMERIC`" msgstr "" -#: ../../library/locale.rst:83 msgid "``'decimal_point'``" msgstr "" -#: ../../library/locale.rst:83 msgid "Decimal point character." msgstr "" -#: ../../library/locale.rst:85 msgid "``'grouping'``" msgstr "" -#: ../../library/locale.rst:85 -msgid "" -"Sequence of numbers specifying which relative positions the " -"``'thousands_sep'`` is expected. If the sequence is terminated " -"with :const:`CHAR_MAX`, no further grouping is performed. If the sequence " -"terminates with a ``0``, the last group size is repeatedly used." +msgid "Sequence of numbers specifying which relative positions the ``'thousands_sep'`` is expected. If the sequence is terminated with :const:`CHAR_MAX`, no further grouping is performed. If the sequence terminates with a ``0``, the last group size is repeatedly used." msgstr "" -#: ../../library/locale.rst:96 msgid "``'thousands_sep'``" msgstr "" -#: ../../library/locale.rst:96 msgid "Character used between groups." msgstr "" -#: ../../library/locale.rst:98 msgid ":const:`LC_MONETARY`" msgstr "" -#: ../../library/locale.rst:98 msgid "``'int_curr_symbol'``" msgstr "" -#: ../../library/locale.rst:98 msgid "International currency symbol." msgstr "" -#: ../../library/locale.rst:100 msgid "``'currency_symbol'``" msgstr "" -#: ../../library/locale.rst:100 msgid "Local currency symbol." msgstr "" -#: ../../library/locale.rst:102 msgid "``'p_cs_precedes/n_cs_precedes'``" msgstr "" -#: ../../library/locale.rst:102 -msgid "" -"Whether the currency symbol precedes the value (for positive resp. negative " -"values)." +msgid "Whether the currency symbol precedes the value (for positive resp. negative values)." msgstr "" -#: ../../library/locale.rst:107 msgid "``'p_sep_by_space/n_sep_by_space'``" msgstr "" -#: ../../library/locale.rst:107 -msgid "" -"Whether the currency symbol is separated from the value by a space (for " -"positive resp. negative values)." +msgid "Whether the currency symbol is separated from the value by a space (for positive resp. negative values)." msgstr "" -#: ../../library/locale.rst:112 msgid "``'mon_decimal_point'``" msgstr "" -#: ../../library/locale.rst:112 msgid "Decimal point used for monetary values." msgstr "" -#: ../../library/locale.rst:115 msgid "``'frac_digits'``" msgstr "" -#: ../../library/locale.rst:115 -msgid "" -"Number of fractional digits used in local formatting of monetary values." +msgid "Number of fractional digits used in local formatting of monetary values." msgstr "" -#: ../../library/locale.rst:119 msgid "``'int_frac_digits'``" msgstr "" -#: ../../library/locale.rst:119 -msgid "" -"Number of fractional digits used in international formatting of monetary " -"values." +msgid "Number of fractional digits used in international formatting of monetary values." msgstr "" -#: ../../library/locale.rst:123 msgid "``'mon_thousands_sep'``" msgstr "" -#: ../../library/locale.rst:123 msgid "Group separator used for monetary values." msgstr "" -#: ../../library/locale.rst:126 msgid "``'mon_grouping'``" msgstr "" -#: ../../library/locale.rst:126 msgid "Equivalent to ``'grouping'``, used for monetary values." msgstr "" -#: ../../library/locale.rst:129 msgid "``'positive_sign'``" msgstr "" -#: ../../library/locale.rst:129 msgid "Symbol used to annotate a positive monetary value." msgstr "" -#: ../../library/locale.rst:132 msgid "``'negative_sign'``" msgstr "" -#: ../../library/locale.rst:132 msgid "Symbol used to annotate a negative monetary value." msgstr "" -#: ../../library/locale.rst:135 msgid "``'p_sign_posn/n_sign_posn'``" msgstr "" -#: ../../library/locale.rst:135 -msgid "" -"The position of the sign (for positive resp. negative values), see below." +msgid "The position of the sign (for positive resp. negative values), see below." msgstr "" -#: ../../library/locale.rst:140 -msgid "" -"All numeric values can be set to :const:`CHAR_MAX` to indicate that there is " -"no value specified in this locale." +msgid "All numeric values can be set to :const:`CHAR_MAX` to indicate that there is no value specified in this locale." msgstr "" -#: ../../library/locale.rst:143 -msgid "" -"The possible values for ``'p_sign_posn'`` and ``'n_sign_posn'`` are given " -"below." +msgid "The possible values for ``'p_sign_posn'`` and ``'n_sign_posn'`` are given below." msgstr "" -#: ../../library/locale.rst:146 msgid "Value" msgstr "" -#: ../../library/locale.rst:146 msgid "Explanation" msgstr "" -#: ../../library/locale.rst:148 msgid "``0``" msgstr "" -#: ../../library/locale.rst:148 msgid "Currency and value are surrounded by parentheses." msgstr "" -#: ../../library/locale.rst:151 msgid "``1``" msgstr "" -#: ../../library/locale.rst:151 msgid "The sign should precede the value and currency symbol." msgstr "" -#: ../../library/locale.rst:154 msgid "``2``" msgstr "" -#: ../../library/locale.rst:154 msgid "The sign should follow the value and currency symbol." msgstr "" -#: ../../library/locale.rst:157 msgid "``3``" msgstr "" -#: ../../library/locale.rst:157 msgid "The sign should immediately precede the value." msgstr "" -#: ../../library/locale.rst:160 msgid "``4``" msgstr "" -#: ../../library/locale.rst:160 msgid "The sign should immediately follow the value." msgstr "" -#: ../../library/locale.rst:163 msgid "``CHAR_MAX``" msgstr "" -#: ../../library/locale.rst:163 msgid "Nothing is specified in this locale." msgstr "" -#: ../../library/locale.rst:166 -msgid "" -"The function temporarily sets the ``LC_CTYPE`` locale to the ``LC_NUMERIC`` " -"locale or the ``LC_MONETARY`` locale if locales are different and numeric or " -"monetary strings are non-ASCII. This temporary change affects other threads." +msgid "The function temporarily sets the ``LC_CTYPE`` locale to the ``LC_NUMERIC`` locale or the ``LC_MONETARY`` locale if locales are different and numeric or monetary strings are non-ASCII. This temporary change affects other threads." msgstr "" -#: ../../library/locale.rst:170 -msgid "" -"The function now temporarily sets the ``LC_CTYPE`` locale to the " -"``LC_NUMERIC`` locale in some cases." +msgid "The function now temporarily sets the ``LC_CTYPE`` locale to the ``LC_NUMERIC`` locale in some cases." msgstr "" -#: ../../library/locale.rst:177 -msgid "" -"Return some locale-specific information as a string. This function is not " -"available on all systems, and the set of possible options might also vary " -"across platforms. The possible argument values are numbers, for which " -"symbolic constants are available in the locale module." +msgid "Return some locale-specific information as a string. This function is not available on all systems, and the set of possible options might also vary across platforms. The possible argument values are numbers, for which symbolic constants are available in the locale module." msgstr "" -#: ../../library/locale.rst:182 -msgid "" -"The :func:`nl_langinfo` function accepts one of the following keys. Most " -"descriptions are taken from the corresponding description in the GNU C " -"library." +msgid "The :func:`nl_langinfo` function accepts one of the following keys. Most descriptions are taken from the corresponding description in the GNU C library." msgstr "" -#: ../../library/locale.rst:188 -msgid "" -"Get a string with the name of the character encoding used in the selected " -"locale." +msgid "Get a string with the name of the character encoding used in the selected locale." msgstr "" -#: ../../library/locale.rst:193 -msgid "" -"Get a string that can be used as a format string for :func:`time.strftime` " -"to represent date and time in a locale-specific way." +msgid "Get a string that can be used as a format string for :func:`time.strftime` to represent date and time in a locale-specific way." msgstr "" -#: ../../library/locale.rst:198 -msgid "" -"Get a string that can be used as a format string for :func:`time.strftime` " -"to represent a date in a locale-specific way." +msgid "Get a string that can be used as a format string for :func:`time.strftime` to represent a date in a locale-specific way." msgstr "" -#: ../../library/locale.rst:203 -msgid "" -"Get a string that can be used as a format string for :func:`time.strftime` " -"to represent a time in a locale-specific way." +msgid "Get a string that can be used as a format string for :func:`time.strftime` to represent a time in a locale-specific way." msgstr "" -#: ../../library/locale.rst:208 -msgid "" -"Get a format string for :func:`time.strftime` to represent time in the am/pm " -"format." +msgid "Get a format string for :func:`time.strftime` to represent time in the am/pm format." msgstr "" -#: ../../library/locale.rst:219 msgid "Get the name of the n-th day of the week." msgstr "" -#: ../../library/locale.rst:223 -msgid "" -"This follows the US convention of :const:`DAY_1` being Sunday, not the " -"international convention (ISO 8601) that Monday is the first day of the week." +msgid "This follows the US convention of :const:`DAY_1` being Sunday, not the international convention (ISO 8601) that Monday is the first day of the week." msgstr "" -#: ../../library/locale.rst:235 msgid "Get the abbreviated name of the n-th day of the week." msgstr "" -#: ../../library/locale.rst:250 msgid "Get the name of the n-th month." msgstr "" -#: ../../library/locale.rst:265 msgid "Get the abbreviated name of the n-th month." msgstr "" -#: ../../library/locale.rst:269 msgid "Get the radix character (decimal dot, decimal comma, etc.)." msgstr "" -#: ../../library/locale.rst:273 msgid "Get the separator character for thousands (groups of three digits)." msgstr "" -#: ../../library/locale.rst:277 -msgid "" -"Get a regular expression that can be used with the regex function to " -"recognize a positive response to a yes/no question." +msgid "Get a regular expression that can be used with the regex function to recognize a positive response to a yes/no question." msgstr "" -#: ../../library/locale.rst:282 -msgid "" -"Get a regular expression that can be used with the ``regex(3)`` function to " -"recognize a negative response to a yes/no question." +msgid "Get a regular expression that can be used with the ``regex(3)`` function to recognize a negative response to a yes/no question." msgstr "" -#: ../../library/locale.rst:287 -msgid "" -"The regular expressions for :const:`YESEXPR` and :const:`NOEXPR` use syntax " -"suitable for the ``regex`` function from the C library, which might differ " -"from the syntax used in :mod:`re`." +msgid "The regular expressions for :const:`YESEXPR` and :const:`NOEXPR` use syntax suitable for the ``regex`` function from the C library, which might differ from the syntax used in :mod:`re`." msgstr "" -#: ../../library/locale.rst:294 -msgid "" -"Get the currency symbol, preceded by \"-\" if the symbol should appear " -"before the value, \"+\" if the symbol should appear after the value, or \"." -"\" if the symbol should replace the radix character." +msgid "Get the currency symbol, preceded by \"-\" if the symbol should appear before the value, \"+\" if the symbol should appear after the value, or \".\" if the symbol should replace the radix character." msgstr "" -#: ../../library/locale.rst:300 -msgid "" -"Get a string which describes how years are counted and displayed for each " -"era in a locale." +msgid "Get a string which describes how years are counted and displayed for each era in a locale." msgstr "" -#: ../../library/locale.rst:303 -msgid "" -"Most locales do not define this value. An example of a locale which does " -"define this value is the Japanese one. In Japan, the traditional " -"representation of dates includes the name of the era corresponding to the " -"then-emperor's reign." +msgid "Most locales do not define this value. An example of a locale which does define this value is the Japanese one. In Japan, the traditional representation of dates includes the name of the era corresponding to the then-emperor's reign." msgstr "" -#: ../../library/locale.rst:308 -msgid "" -"Normally it should not be necessary to use this value directly. Specifying " -"the ``E`` modifier in their format strings causes the :func:`time.strftime` " -"function to use this information. The format of the returned string is " -"specified in *The Open Group Base Specifications Issue 8*, paragraph " -"`7.3.5.2 LC_TIME C-Language Access `_." +msgid "Normally it should not be necessary to use this value directly. Specifying the ``E`` modifier in their format strings causes the :func:`time.strftime` function to use this information. The format of the returned string is specified in *The Open Group Base Specifications Issue 8*, paragraph `7.3.5.2 LC_TIME C-Language Access `_." msgstr "" -#: ../../library/locale.rst:317 -msgid "" -"Get a format string for :func:`time.strftime` to represent date and time in " -"a locale-specific era-based way." +msgid "Get a format string for :func:`time.strftime` to represent date and time in a locale-specific era-based way." msgstr "" -#: ../../library/locale.rst:322 -msgid "" -"Get a format string for :func:`time.strftime` to represent a date in a " -"locale-specific era-based way." +msgid "Get a format string for :func:`time.strftime` to represent a date in a locale-specific era-based way." msgstr "" -#: ../../library/locale.rst:327 -msgid "" -"Get a format string for :func:`time.strftime` to represent a time in a " -"locale-specific era-based way." +msgid "Get a format string for :func:`time.strftime` to represent a time in a locale-specific era-based way." msgstr "" -#: ../../library/locale.rst:332 -msgid "" -"Get a string consisting of up to 100 semicolon-separated symbols used to " -"represent the values 0 to 99 in a locale-specific way. In most locales this " -"is an empty string." +msgid "Get a string consisting of up to 100 semicolon-separated symbols used to represent the values 0 to 99 in a locale-specific way. In most locales this is an empty string." msgstr "" -#: ../../library/locale.rst:336 -msgid "" -"The function temporarily sets the ``LC_CTYPE`` locale to the locale of the " -"category that determines the requested value (``LC_TIME``, ``LC_NUMERIC``, " -"``LC_MONETARY`` or ``LC_MESSAGES``) if locales are different and the " -"resulting string is non-ASCII. This temporary change affects other threads." +msgid "The function temporarily sets the ``LC_CTYPE`` locale to the locale of the category that determines the requested value (``LC_TIME``, ``LC_NUMERIC``, ``LC_MONETARY`` or ``LC_MESSAGES``) if locales are different and the resulting string is non-ASCII. This temporary change affects other threads." msgstr "" -#: ../../library/locale.rst:342 -msgid "" -"The function now temporarily sets the ``LC_CTYPE`` locale in some cases." +msgid "The function now temporarily sets the ``LC_CTYPE`` locale in some cases." msgstr "" -#: ../../library/locale.rst:348 -msgid "" -"Tries to determine the default locale settings and returns them as a tuple " -"of the form ``(language code, encoding)``." +msgid "Tries to determine the default locale settings and returns them as a tuple of the form ``(language code, encoding)``." msgstr "" -#: ../../library/locale.rst:351 -msgid "" -"According to POSIX, a program which has not called ``setlocale(LC_ALL, '')`` " -"runs using the portable ``'C'`` locale. Calling ``setlocale(LC_ALL, '')`` " -"lets it use the default locale as defined by the :envvar:`LANG` variable. " -"Since we do not want to interfere with the current locale setting we thus " -"emulate the behavior in the way described above." +msgid "According to POSIX, a program which has not called ``setlocale(LC_ALL, '')`` runs using the portable ``'C'`` locale. Calling ``setlocale(LC_ALL, '')`` lets it use the default locale as defined by the :envvar:`LANG` variable. Since we do not want to interfere with the current locale setting we thus emulate the behavior in the way described above." msgstr "" -#: ../../library/locale.rst:357 -msgid "" -"To maintain compatibility with other platforms, not only the :envvar:`LANG` " -"variable is tested, but a list of variables given as envvars parameter. The " -"first found to be defined will be used. *envvars* defaults to the search " -"path used in GNU gettext; it must always contain the variable name " -"``'LANG'``. The GNU gettext search path contains ``'LC_ALL'``, " -"``'LC_CTYPE'``, ``'LANG'`` and ``'LANGUAGE'``, in that order." +msgid "To maintain compatibility with other platforms, not only the :envvar:`LANG` variable is tested, but a list of variables given as envvars parameter. The first found to be defined will be used. *envvars* defaults to the search path used in GNU gettext; it must always contain the variable name ``'LANG'``. The GNU gettext search path contains ``'LC_ALL'``, ``'LC_CTYPE'``, ``'LANG'`` and ``'LANGUAGE'``, in that order." msgstr "" -#: ../../library/locale.rst:364 ../../library/locale.rst:377 -msgid "" -"The language code has the same format as a :ref:`locale name `, " -"but without encoding and ``@``-modifier. The language code and encoding may " -"be ``None`` if their values cannot be determined. The \"C\" locale is " -"represented as ``(None, None)``." +msgid "The language code has the same format as a :ref:`locale name `, but without encoding and ``@``-modifier. The language code and encoding may be ``None`` if their values cannot be determined. The \"C\" locale is represented as ``(None, None)``." msgstr "" -#: ../../library/locale.rst:373 -msgid "" -"Returns the current setting for the given locale category as a tuple " -"containing the language code and encoding. *category* may be one of " -"the :const:`!LC_\\*` values except :const:`LC_ALL`. It defaults " -"to :const:`LC_CTYPE`." +msgid "Returns the current setting for the given locale category as a tuple containing the language code and encoding. *category* may be one of the :const:`!LC_\\*` values except :const:`LC_ALL`. It defaults to :const:`LC_CTYPE`." msgstr "" -#: ../../library/locale.rst:386 -msgid "" -"Return the :term:`locale encoding` used for text data, according to user " -"preferences. User preferences are expressed differently on different " -"systems, and might not be available programmatically on some systems, so " -"this function only returns a guess." +msgid "Return the :term:`locale encoding` used for text data, according to user preferences. User preferences are expressed differently on different systems, and might not be available programmatically on some systems, so this function only returns a guess." msgstr "" -#: ../../library/locale.rst:391 -msgid "" -"On some systems, it is necessary to invoke :func:`setlocale` to obtain the " -"user preferences, so this function is not thread-safe. If invoking setlocale " -"is not necessary or desired, *do_setlocale* should be set to ``False``." +msgid "On some systems, it is necessary to invoke :func:`setlocale` to obtain the user preferences, so this function is not thread-safe. If invoking setlocale is not necessary or desired, *do_setlocale* should be set to ``False``." msgstr "" -#: ../../library/locale.rst:395 -msgid "" -"On Android or if the :ref:`Python UTF-8 Mode ` is enabled, always " -"return ``'utf-8'``, the :term:`locale encoding` and the *do_setlocale* " -"argument are ignored." +msgid "On Android or if the :ref:`Python UTF-8 Mode ` is enabled, always return ``'utf-8'``, the :term:`locale encoding` and the *do_setlocale* argument are ignored." msgstr "" -#: ../../library/locale.rst:399 ../../library/locale.rst:417 -msgid "" -"The :ref:`Python preinitialization ` configures the LC_CTYPE " -"locale. See also the :term:`filesystem encoding and error handler`." +msgid "The :ref:`Python preinitialization ` configures the LC_CTYPE locale. See also the :term:`filesystem encoding and error handler`." msgstr "" -#: ../../library/locale.rst:402 -msgid "" -"The function now always returns ``\"utf-8\"`` on Android or if " -"the :ref:`Python UTF-8 Mode ` is enabled." +msgid "The function now always returns ``\"utf-8\"`` on Android or if the :ref:`Python UTF-8 Mode ` is enabled." msgstr "" -#: ../../library/locale.rst:409 msgid "Get the current :term:`locale encoding`:" msgstr "" -#: ../../library/locale.rst:411 msgid "On Android and VxWorks, return ``\"utf-8\"``." msgstr "" -#: ../../library/locale.rst:412 -msgid "" -"On Unix, return the encoding of the current :data:`LC_CTYPE` locale. Return " -"``\"utf-8\"`` if ``nl_langinfo(CODESET)`` returns an empty string: for " -"example, if the current LC_CTYPE locale is not supported." +msgid "On Unix, return the encoding of the current :data:`LC_CTYPE` locale. Return ``\"utf-8\"`` if ``nl_langinfo(CODESET)`` returns an empty string: for example, if the current LC_CTYPE locale is not supported." msgstr "" -#: ../../library/locale.rst:415 msgid "On Windows, return the ANSI code page." msgstr "" -#: ../../library/locale.rst:420 -msgid "" -"This function is similar to :func:`getpreferredencoding(False) " -"` except this function ignores the :ref:`Python UTF-8 " -"Mode `." +msgid "This function is similar to :func:`getpreferredencoding(False) ` except this function ignores the :ref:`Python UTF-8 Mode `." msgstr "" -#: ../../library/locale.rst:429 -msgid "" -"Returns a normalized locale code for the given locale name. The returned " -"locale code is formatted for use with :func:`setlocale`. If normalization " -"fails, the original name is returned unchanged." +msgid "Returns a normalized locale code for the given locale name. The returned locale code is formatted for use with :func:`setlocale`. If normalization fails, the original name is returned unchanged." msgstr "" -#: ../../library/locale.rst:433 -msgid "" -"If the given encoding is not known, the function defaults to the default " -"encoding for the locale code just like :func:`setlocale`." +msgid "If the given encoding is not known, the function defaults to the default encoding for the locale code just like :func:`setlocale`." msgstr "" -#: ../../library/locale.rst:439 -msgid "" -"Compares two strings according to the current :const:`LC_COLLATE` setting. " -"As any other compare function, returns a negative, or a positive value, or " -"``0``, depending on whether *string1* collates before or after *string2* or " -"is equal to it." +msgid "Compares two strings according to the current :const:`LC_COLLATE` setting. As any other compare function, returns a negative, or a positive value, or ``0``, depending on whether *string1* collates before or after *string2* or is equal to it." msgstr "" -#: ../../library/locale.rst:447 -msgid "" -"Transforms a string to one that can be used in locale-aware comparisons. " -"For example, ``strxfrm(s1) < strxfrm(s2)`` is equivalent to ``strcoll(s1, " -"s2) < 0``. This function can be used when the same string is compared " -"repeatedly, e.g. when collating a sequence of strings." +msgid "Transforms a string to one that can be used in locale-aware comparisons. For example, ``strxfrm(s1) < strxfrm(s2)`` is equivalent to ``strcoll(s1, s2) < 0``. This function can be used when the same string is compared repeatedly, e.g. when collating a sequence of strings." msgstr "" -#: ../../library/locale.rst:456 -msgid "" -"Formats a number *val* according to the current :const:`LC_NUMERIC` setting. " -"The format follows the conventions of the ``%`` operator. For floating-" -"point values, the decimal point is modified if appropriate. If *grouping* " -"is ``True``, also takes the grouping into account." +msgid "Formats a number *val* according to the current :const:`LC_NUMERIC` setting. The format follows the conventions of the ``%`` operator. For floating-point values, the decimal point is modified if appropriate. If *grouping* is ``True``, also takes the grouping into account." msgstr "" -#: ../../library/locale.rst:461 -msgid "" -"If *monetary* is true, the conversion uses monetary thousands separator and " -"grouping strings." +msgid "If *monetary* is true, the conversion uses monetary thousands separator and grouping strings." msgstr "" -#: ../../library/locale.rst:464 -msgid "" -"Processes formatting specifiers as in ``format % val``, but takes the " -"current locale settings into account." +msgid "Processes formatting specifiers as in ``format % val``, but takes the current locale settings into account." msgstr "" -#: ../../library/locale.rst:467 msgid "The *monetary* keyword parameter was added." msgstr "" -#: ../../library/locale.rst:473 -msgid "" -"Formats a number *val* according to the current :const:`LC_MONETARY` " -"settings." +msgid "Formats a number *val* according to the current :const:`LC_MONETARY` settings." msgstr "" -#: ../../library/locale.rst:475 -msgid "" -"The returned string includes the currency symbol if *symbol* is true, which " -"is the default. If *grouping* is ``True`` (which is not the default), " -"grouping is done with the value. If *international* is ``True`` (which is " -"not the default), the international currency symbol is used." +msgid "The returned string includes the currency symbol if *symbol* is true, which is the default. If *grouping* is ``True`` (which is not the default), grouping is done with the value. If *international* is ``True`` (which is not the default), the international currency symbol is used." msgstr "" -#: ../../library/locale.rst:482 -msgid "" -"This function will not work with the 'C' locale, so you have to set a locale " -"via :func:`setlocale` first." +msgid "This function will not work with the 'C' locale, so you have to set a locale via :func:`setlocale` first." msgstr "" -#: ../../library/locale.rst:488 -msgid "" -"Formats a floating-point number using the same format as the built-in " -"function ``str(float)``, but takes the decimal point into account." +msgid "Formats a floating-point number using the same format as the built-in function ``str(float)``, but takes the decimal point into account." msgstr "" -#: ../../library/locale.rst:494 -msgid "" -"Converts a string into a normalized number string, following " -"the :const:`LC_NUMERIC` settings." +msgid "Converts a string into a normalized number string, following the :const:`LC_NUMERIC` settings." msgstr "" -#: ../../library/locale.rst:502 -msgid "" -"Converts a normalized number string into a formatted string following " -"the :const:`LC_NUMERIC` settings." +msgid "Converts a normalized number string into a formatted string following the :const:`LC_NUMERIC` settings." msgstr "" -#: ../../library/locale.rst:510 -msgid "" -"Converts a string to a number, following the :const:`LC_NUMERIC` settings, " -"by calling *func* on the result of calling :func:`delocalize` on *string*." +msgid "Converts a string to a number, following the :const:`LC_NUMERIC` settings, by calling *func* on the result of calling :func:`delocalize` on *string*." msgstr "" -#: ../../library/locale.rst:516 -msgid "" -"Converts a string to an integer, following the :const:`LC_NUMERIC` " -"conventions." +msgid "Converts a string to an integer, following the :const:`LC_NUMERIC` conventions." msgstr "" -#: ../../library/locale.rst:521 -msgid "" -"Locale category for the character type functions. Most importantly, this " -"category defines the text encoding, i.e. how bytes are interpreted as " -"Unicode codepoints. See :pep:`538` and :pep:`540` for how this variable " -"might be automatically coerced to ``C.UTF-8`` to avoid issues created by " -"invalid settings in containers or incompatible settings passed over remote " -"SSH connections." +msgid "Locale category for the character type functions. Most importantly, this category defines the text encoding, i.e. how bytes are interpreted as Unicode codepoints. See :pep:`538` and :pep:`540` for how this variable might be automatically coerced to ``C.UTF-8`` to avoid issues created by invalid settings in containers or incompatible settings passed over remote SSH connections." msgstr "" -#: ../../library/locale.rst:528 -msgid "" -"Python doesn't internally use locale-dependent character transformation " -"functions from ``ctype.h``. Instead, ``pyctype.h`` provides locale-" -"independent equivalents like :c:macro:`Py_TOLOWER`." +msgid "Python doesn't internally use locale-dependent character transformation functions from ``ctype.h``. Instead, ``pyctype.h`` provides locale-independent equivalents like :c:macro:`Py_TOLOWER`." msgstr "" -#: ../../library/locale.rst:535 -msgid "" -"Locale category for sorting strings. The functions :func:`strcoll` " -"and :func:`strxfrm` of the :mod:`!locale` module are affected." +msgid "Locale category for sorting strings. The functions :func:`strcoll` and :func:`strxfrm` of the :mod:`!locale` module are affected." msgstr "" -#: ../../library/locale.rst:541 -msgid "" -"Locale category for the formatting of time. The " -"function :func:`time.strftime` follows these conventions." +msgid "Locale category for the formatting of time. The function :func:`time.strftime` follows these conventions." msgstr "" -#: ../../library/locale.rst:547 -msgid "" -"Locale category for formatting of monetary values. The available options " -"are available from the :func:`localeconv` function." +msgid "Locale category for formatting of monetary values. The available options are available from the :func:`localeconv` function." msgstr "" -#: ../../library/locale.rst:553 -msgid "" -"Locale category for message display. Python currently does not support " -"application specific locale-aware messages. Messages displayed by the " -"operating system, like those returned by :func:`os.strerror` might be " -"affected by this category." +msgid "Locale category for message display. Python currently does not support application specific locale-aware messages. Messages displayed by the operating system, like those returned by :func:`os.strerror` might be affected by this category." msgstr "" -#: ../../library/locale.rst:558 -msgid "" -"This value may not be available on operating systems not conforming to the " -"POSIX standard, most notably Windows." +msgid "This value may not be available on operating systems not conforming to the POSIX standard, most notably Windows." msgstr "" -#: ../../library/locale.rst:564 -msgid "" -"Locale category for formatting numbers. The " -"functions :func:`format_string`, :func:`atoi`, :func:`atof` and :func:`.str` " -"of the :mod:`!locale` module are affected by that category. All other " -"numeric formatting operations are not affected." +msgid "Locale category for formatting numbers. The functions :func:`format_string`, :func:`atoi`, :func:`atof` and :func:`.str` of the :mod:`!locale` module are affected by that category. All other numeric formatting operations are not affected." msgstr "" -#: ../../library/locale.rst:572 -msgid "" -"Combination of all locale settings. If this flag is used when the locale is " -"changed, setting the locale for all categories is attempted. If that fails " -"for any category, no category is changed at all. When the locale is " -"retrieved using this flag, a string indicating the setting for all " -"categories is returned. This string can be later used to restore the " -"settings." +msgid "Combination of all locale settings. If this flag is used when the locale is changed, setting the locale for all categories is attempted. If that fails for any category, no category is changed at all. When the locale is retrieved using this flag, a string indicating the setting for all categories is returned. This string can be later used to restore the settings." msgstr "" -#: ../../library/locale.rst:581 -msgid "" -"This is a symbolic constant used for different values returned " -"by :func:`localeconv`." +msgid "This is a symbolic constant used for different values returned by :func:`localeconv`." msgstr "" -#: ../../library/locale.rst:586 msgid "Background, details, hints, tips and caveats" msgstr "" -#: ../../library/locale.rst:588 -msgid "" -"The C standard defines the locale as a program-wide property that may be " -"relatively expensive to change. On top of that, some implementations are " -"broken in such a way that frequent locale changes may cause core dumps. " -"This makes the locale somewhat painful to use correctly." +msgid "The C standard defines the locale as a program-wide property that may be relatively expensive to change. On top of that, some implementations are broken in such a way that frequent locale changes may cause core dumps. This makes the locale somewhat painful to use correctly." msgstr "" -#: ../../library/locale.rst:593 -msgid "" -"Initially, when a program is started, the locale is the ``C`` locale, no " -"matter what the user's preferred locale is. There is one exception: " -"the :data:`LC_CTYPE` category is changed at startup to set the current " -"locale encoding to the user's preferred locale encoding. The program must " -"explicitly say that it wants the user's preferred locale settings for other " -"categories by calling ``setlocale(LC_ALL, '')``." +msgid "Initially, when a program is started, the locale is the ``C`` locale, no matter what the user's preferred locale is. There is one exception: the :data:`LC_CTYPE` category is changed at startup to set the current locale encoding to the user's preferred locale encoding. The program must explicitly say that it wants the user's preferred locale settings for other categories by calling ``setlocale(LC_ALL, '')``." msgstr "" -#: ../../library/locale.rst:600 -msgid "" -"It is generally a bad idea to call :func:`setlocale` in some library " -"routine, since as a side effect it affects the entire program. Saving and " -"restoring it is almost as bad: it is expensive and affects other threads " -"that happen to run before the settings have been restored." +msgid "It is generally a bad idea to call :func:`setlocale` in some library routine, since as a side effect it affects the entire program. Saving and restoring it is almost as bad: it is expensive and affects other threads that happen to run before the settings have been restored." msgstr "" -#: ../../library/locale.rst:605 -msgid "" -"If, when coding a module for general use, you need a locale independent " -"version of an operation that is affected by the locale (such as certain " -"formats used with :func:`time.strftime`), you will have to find a way to do " -"it without using the standard library routine. Even better is convincing " -"yourself that using locale settings is okay. Only as a last resort should " -"you document that your module is not compatible with non-\\ ``C`` locale " -"settings." +msgid "If, when coding a module for general use, you need a locale independent version of an operation that is affected by the locale (such as certain formats used with :func:`time.strftime`), you will have to find a way to do it without using the standard library routine. Even better is convincing yourself that using locale settings is okay. Only as a last resort should you document that your module is not compatible with non-\\ ``C`` locale settings." msgstr "" -#: ../../library/locale.rst:612 -msgid "" -"The only way to perform numeric operations according to the locale is to use " -"the special functions defined by this " -"module: :func:`atof`, :func:`atoi`, :func:`format_string`, :func:`.str`." +msgid "The only way to perform numeric operations according to the locale is to use the special functions defined by this module: :func:`atof`, :func:`atoi`, :func:`format_string`, :func:`.str`." msgstr "" -#: ../../library/locale.rst:616 -msgid "" -"There is no way to perform case conversions and character classifications " -"according to the locale. For (Unicode) text strings these are done " -"according to the character value only, while for byte strings, the " -"conversions and classifications are done according to the ASCII value of the " -"byte, and bytes whose high bit is set (i.e., non-ASCII bytes) are never " -"converted or considered part of a character class such as letter or " -"whitespace." +msgid "There is no way to perform case conversions and character classifications according to the locale. For (Unicode) text strings these are done according to the character value only, while for byte strings, the conversions and classifications are done according to the ASCII value of the byte, and bytes whose high bit is set (i.e., non-ASCII bytes) are never converted or considered part of a character class such as letter or whitespace." msgstr "" -#: ../../library/locale.rst:627 msgid "Locale names" msgstr "" -#: ../../library/locale.rst:629 -msgid "" -"The format of the locale name is platform dependent, and the set of " -"supported locales can depend on the system configuration." +msgid "The format of the locale name is platform dependent, and the set of supported locales can depend on the system configuration." msgstr "" -#: ../../library/locale.rst:632 msgid "On Posix platforms, it usually has the format [1]_:" msgstr "" -#: ../../library/locale.rst:637 -msgid "" -"where *language* is a two- or three-letter language code from `ISO 639`_, " -"*territory* is a two-letter country or region code from `ISO 3166`_, " -"*charset* is a locale encoding, and *modifier* is a script name, a language " -"subtag, a sort order identifier, or other locale modifier (for example, " -"\"latin\", \"valencia\", \"stroke\" and \"euro\")." +msgid "where *language* is a two- or three-letter language code from `ISO 639`_, *territory* is a two-letter country or region code from `ISO 3166`_, *charset* is a locale encoding, and *modifier* is a script name, a language subtag, a sort order identifier, or other locale modifier (for example, \"latin\", \"valencia\", \"stroke\" and \"euro\")." msgstr "" -#: ../../library/locale.rst:643 -msgid "" -"On Windows, several formats are supported. [2]_ [3]_ A subset of `IETF BCP " -"47`_ tags:" +msgid "On Windows, several formats are supported. [2]_ [3]_ A subset of `IETF BCP 47`_ tags:" msgstr "" -#: ../../library/locale.rst:650 -msgid "" -"where *language* and *territory* have the same meaning as in Posix, *script* " -"is a four-letter script code from `ISO 15924`_, and *modifier* is a language " -"subtag, a sort order identifier or custom modifier (for example, " -"\"valencia\", \"stroke\" or \"x-python\"). Both hyphen (``'-'``) and " -"underscore (``'_'``) separators are supported. Only UTF-8 encoding is " -"allowed for BCP 47 tags." +msgid "where *language* and *territory* have the same meaning as in Posix, *script* is a four-letter script code from `ISO 15924`_, and *modifier* is a language subtag, a sort order identifier or custom modifier (for example, \"valencia\", \"stroke\" or \"x-python\"). Both hyphen (``'-'``) and underscore (``'_'``) separators are supported. Only UTF-8 encoding is allowed for BCP 47 tags." msgstr "" -#: ../../library/locale.rst:657 msgid "Windows also supports locale names in the format:" msgstr "" -#: ../../library/locale.rst:662 -msgid "" -"where *language* and *territory* are full names, such as \"English\" and " -"\"United States\", and *charset* is either a code page number (for example, " -"\"1252\") or UTF-8. Only the underscore separator is supported in this " -"format." +msgid "where *language* and *territory* are full names, such as \"English\" and \"United States\", and *charset* is either a code page number (for example, \"1252\") or UTF-8. Only the underscore separator is supported in this format." msgstr "" -#: ../../library/locale.rst:667 msgid "The \"C\" locale is supported on all platforms." msgstr "" -#: ../../library/locale.rst:674 -msgid "" -"`IEEE Std 1003.1-2024; 8.2 Internationalization Variables `_" +msgid "`IEEE Std 1003.1-2024; 8.2 Internationalization Variables `_" msgstr "" -#: ../../library/locale.rst:675 -msgid "" -"`UCRT Locale names, Languages, and Country/Region strings `_" +msgid "`UCRT Locale names, Languages, and Country/Region strings `_" msgstr "" -#: ../../library/locale.rst:676 -msgid "" -"`Locale Names `_" +msgid "`Locale Names `_" msgstr "" -#: ../../library/locale.rst:682 msgid "For extension writers and programs that embed Python" msgstr "" -#: ../../library/locale.rst:684 -msgid "" -"Extension modules should never call :func:`setlocale`, except to find out " -"what the current locale is. But since the return value can only be used " -"portably to restore it, that is not very useful (except perhaps to find out " -"whether or not the locale is ``C``)." +msgid "Extension modules should never call :func:`setlocale`, except to find out what the current locale is. But since the return value can only be used portably to restore it, that is not very useful (except perhaps to find out whether or not the locale is ``C``)." msgstr "" -#: ../../library/locale.rst:689 -msgid "" -"When Python code uses the :mod:`!locale` module to change the locale, this " -"also affects the embedding application. If the embedding application " -"doesn't want this to happen, it should remove the :mod:`!_locale` extension " -"module (which does all the work) from the table of built-in modules in " -"the :file:`config.c` file, and make sure that the :mod:`!_locale` module is " -"not accessible as a shared library." +msgid "When Python code uses the :mod:`!locale` module to change the locale, this also affects the embedding application. If the embedding application doesn't want this to happen, it should remove the :mod:`!_locale` extension module (which does all the work) from the table of built-in modules in the :file:`config.c` file, and make sure that the :mod:`!_locale` module is not accessible as a shared library." msgstr "" -#: ../../library/locale.rst:700 msgid "Access to message catalogs" msgstr "" -#: ../../library/locale.rst:709 -msgid "" -"The locale module exposes the C library's gettext interface on systems that " -"provide this interface. It consists of the " -"functions :func:`gettext`, :func:`dgettext`, :func:`dcgettext`, :func:`textdomain`, :func:`bindtextdomain`, " -"and :func:`bind_textdomain_codeset`. These are similar to the same " -"functions in the :mod:`gettext` module, but use the C library's binary " -"format for message catalogs, and the C library's search algorithms for " -"locating message catalogs." +msgid "The locale module exposes the C library's gettext interface on systems that provide this interface. It consists of the functions :func:`gettext`, :func:`dgettext`, :func:`dcgettext`, :func:`textdomain`, :func:`bindtextdomain`, and :func:`bind_textdomain_codeset`. These are similar to the same functions in the :mod:`gettext` module, but use the C library's binary format for message catalogs, and the C library's search algorithms for locating message catalogs." msgstr "" -#: ../../library/locale.rst:716 -msgid "" -"Python applications should normally find no need to invoke these functions, " -"and should use :mod:`gettext` instead. A known exception to this rule are " -"applications that link with additional C libraries which internally invoke C " -"functions ``gettext`` or ``dcgettext``. For these applications, it may be " -"necessary to bind the text domain, so that the libraries can properly locate " -"their message catalogs." +msgid "Python applications should normally find no need to invoke these functions, and should use :mod:`gettext` instead. A known exception to this rule are applications that link with additional C libraries which internally invoke C functions ``gettext`` or ``dcgettext``. For these applications, it may be necessary to bind the text domain, so that the libraries can properly locate their message catalogs." msgstr "" -#: ../../library/locale.rst:19 msgid "module" msgstr "" -#: ../../library/locale.rst:19 msgid "_locale" msgstr "" diff --git a/library/logging.config.po b/library/logging.config.po index bb35808e..f467e7aa 100644 --- a/library/logging.config.po +++ b/library/logging.config.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:09+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,431 +23,206 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/logging.config.rst:2 msgid ":mod:`!logging.config` --- Logging configuration" msgstr "" -#: ../../library/logging.config.rst:10 msgid "**Source code:** :source:`Lib/logging/config.py`" msgstr "" -#: ../../library/logging.config.rst:14 -msgid "" -"This page contains only reference information. For tutorials, please see" +msgid "This page contains only reference information. For tutorials, please see" msgstr "" -#: ../../library/logging.config.rst:17 msgid ":ref:`Basic Tutorial `" msgstr "" -#: ../../library/logging.config.rst:18 msgid ":ref:`Advanced Tutorial `" msgstr "" -#: ../../library/logging.config.rst:19 msgid ":ref:`Logging Cookbook `" msgstr "" -#: ../../library/logging.config.rst:23 msgid "This section describes the API for configuring the logging module." msgstr "" -#: ../../library/logging.config.rst:28 msgid "Configuration functions" msgstr "" -#: ../../library/logging.config.rst:30 -msgid "" -"The following functions configure the logging module. They are located in " -"the :mod:`!logging.config` module. Their use is optional --- you can " -"configure the logging module using these functions or by making calls to the " -"main API (defined in :mod:`logging` itself) and defining handlers which are " -"declared either in :mod:`logging` or :mod:`logging.handlers`." +msgid "The following functions configure the logging module. They are located in the :mod:`!logging.config` module. Their use is optional --- you can configure the logging module using these functions or by making calls to the main API (defined in :mod:`logging` itself) and defining handlers which are declared either in :mod:`logging` or :mod:`logging.handlers`." msgstr "" -#: ../../library/logging.config.rst:38 -msgid "" -"Takes the logging configuration from a dictionary. The contents of this " -"dictionary are described in :ref:`logging-config-dictschema` below." +msgid "Takes the logging configuration from a dictionary. The contents of this dictionary are described in :ref:`logging-config-dictschema` below." msgstr "" -#: ../../library/logging.config.rst:42 -msgid "" -"If an error is encountered during configuration, this function will raise " -"a :exc:`ValueError`, :exc:`TypeError`, :exc:`AttributeError` " -"or :exc:`ImportError` with a suitably descriptive message. The following is " -"a (possibly incomplete) list of conditions which will raise an error:" +msgid "If an error is encountered during configuration, this function will raise a :exc:`ValueError`, :exc:`TypeError`, :exc:`AttributeError` or :exc:`ImportError` with a suitably descriptive message. The following is a (possibly incomplete) list of conditions which will raise an error:" msgstr "" -#: ../../library/logging.config.rst:48 -msgid "" -"A ``level`` which is not a string or which is a string not corresponding to " -"an actual logging level." +msgid "A ``level`` which is not a string or which is a string not corresponding to an actual logging level." msgstr "" -#: ../../library/logging.config.rst:50 msgid "A ``propagate`` value which is not a boolean." msgstr "" -#: ../../library/logging.config.rst:51 msgid "An id which does not have a corresponding destination." msgstr "" -#: ../../library/logging.config.rst:52 msgid "A non-existent handler id found during an incremental call." msgstr "" -#: ../../library/logging.config.rst:53 msgid "An invalid logger name." msgstr "" -#: ../../library/logging.config.rst:54 msgid "Inability to resolve to an internal or external object." msgstr "" -#: ../../library/logging.config.rst:56 -msgid "" -"Parsing is performed by the :class:`DictConfigurator` class, whose " -"constructor is passed the dictionary used for configuration, and has " -"a :meth:`configure` method. The :mod:`!logging.config` module has a " -"callable attribute :attr:`dictConfigClass` which is initially set " -"to :class:`DictConfigurator`. You can replace the value " -"of :attr:`dictConfigClass` with a suitable implementation of your own." +msgid "Parsing is performed by the :class:`DictConfigurator` class, whose constructor is passed the dictionary used for configuration, and has a :meth:`configure` method. The :mod:`!logging.config` module has a callable attribute :attr:`dictConfigClass` which is initially set to :class:`DictConfigurator`. You can replace the value of :attr:`dictConfigClass` with a suitable implementation of your own." msgstr "" -#: ../../library/logging.config.rst:64 -msgid "" -":func:`dictConfig` calls :attr:`dictConfigClass` passing the specified " -"dictionary, and then calls the :meth:`configure` method on the returned " -"object to put the configuration into effect::" +msgid ":func:`dictConfig` calls :attr:`dictConfigClass` passing the specified dictionary, and then calls the :meth:`configure` method on the returned object to put the configuration into effect::" msgstr "" -#: ../../library/logging.config.rst:68 msgid "" "def dictConfig(config):\n" " dictConfigClass(config).configure()" msgstr "" -#: ../../library/logging.config.rst:71 -msgid "" -"For example, a subclass of :class:`DictConfigurator` could call " -"``DictConfigurator.__init__()`` in its own :meth:`__init__`, then set up " -"custom prefixes which would be usable in the subsequent :meth:`configure` " -"call. :attr:`dictConfigClass` would be bound to this new subclass, and " -"then :func:`dictConfig` could be called exactly as in the default, " -"uncustomized state." +msgid "For example, a subclass of :class:`DictConfigurator` could call ``DictConfigurator.__init__()`` in its own :meth:`__init__`, then set up custom prefixes which would be usable in the subsequent :meth:`configure` call. :attr:`dictConfigClass` would be bound to this new subclass, and then :func:`dictConfig` could be called exactly as in the default, uncustomized state." msgstr "" -#: ../../library/logging.config.rst:82 -msgid "" -"Reads the logging configuration from a :mod:`configparser`\\-format file. " -"The format of the file should be as described in :ref:`logging-config-" -"fileformat`. This function can be called several times from an application, " -"allowing an end user to select from various pre-canned configurations (if " -"the developer provides a mechanism to present the choices and load the " -"chosen configuration)." +msgid "Reads the logging configuration from a :mod:`configparser`\\-format file. The format of the file should be as described in :ref:`logging-config-fileformat`. This function can be called several times from an application, allowing an end user to select from various pre-canned configurations (if the developer provides a mechanism to present the choices and load the chosen configuration)." msgstr "" -#: ../../library/logging.config.rst:90 -msgid "" -"It will raise :exc:`FileNotFoundError` if the file doesn't exist " -"and :exc:`RuntimeError` if the file is invalid or empty." +msgid "It will raise :exc:`FileNotFoundError` if the file doesn't exist and :exc:`RuntimeError` if the file is invalid or empty." msgstr "" -#: ../../library/logging.config.rst:0 msgid "Parameters" msgstr "" -#: ../../library/logging.config.rst:94 -msgid "" -"A filename, or a file-like object, or an instance derived " -"from :class:`~configparser.RawConfigParser`. If a :class:`!RawConfigParser`-" -"derived instance is passed, it is used as is. Otherwise, " -"a :class:`~configparser.ConfigParser` is instantiated, and the configuration " -"read by it from the object passed in ``fname``. If that has " -"a :meth:`readline` method, it is assumed to be a file-like object and read " -"using :meth:`~configparser.ConfigParser.read_file`; otherwise, it is assumed " -"to be a filename and passed to :meth:`~configparser.ConfigParser.read`." +msgid "A filename, or a file-like object, or an instance derived from :class:`~configparser.RawConfigParser`. If a :class:`!RawConfigParser`-derived instance is passed, it is used as is. Otherwise, a :class:`~configparser.ConfigParser` is instantiated, and the configuration read by it from the object passed in ``fname``. If that has a :meth:`readline` method, it is assumed to be a file-like object and read using :meth:`~configparser.ConfigParser.read_file`; otherwise, it is assumed to be a filename and passed to :meth:`~configparser.ConfigParser.read`." msgstr "" -#: ../../library/logging.config.rst:106 -msgid "" -"Defaults to be passed to the :class:`!ConfigParser` can be specified in this " -"argument." +msgid "Defaults to be passed to the :class:`!ConfigParser` can be specified in this argument." msgstr "" -#: ../../library/logging.config.rst:109 -msgid "" -"If specified as ``False``, loggers which exist when this call is made are " -"left enabled. The default is ``True`` because this enables old behaviour in " -"a backward-compatible way. This behaviour is to disable any existing non-" -"root loggers unless they or their ancestors are explicitly named in the " -"logging configuration." +msgid "If specified as ``False``, loggers which exist when this call is made are left enabled. The default is ``True`` because this enables old behaviour in a backward-compatible way. This behaviour is to disable any existing non-root loggers unless they or their ancestors are explicitly named in the logging configuration." msgstr "" -#: ../../library/logging.config.rst:118 msgid "The encoding used to open file when *fname* is filename." msgstr "" -#: ../../library/logging.config.rst:120 -msgid "" -"An instance of a subclass of :class:`~configparser.RawConfigParser` is now " -"accepted as a value for ``fname``. This facilitates:" +msgid "An instance of a subclass of :class:`~configparser.RawConfigParser` is now accepted as a value for ``fname``. This facilitates:" msgstr "" -#: ../../library/logging.config.rst:124 -msgid "" -"Use of a configuration file where logging configuration is just part of the " -"overall application configuration." +msgid "Use of a configuration file where logging configuration is just part of the overall application configuration." msgstr "" -#: ../../library/logging.config.rst:126 -msgid "" -"Use of a configuration read from a file, and then modified by the using " -"application (e.g. based on command-line parameters or other aspects of the " -"runtime environment) before being passed to ``fileConfig``." +msgid "Use of a configuration read from a file, and then modified by the using application (e.g. based on command-line parameters or other aspects of the runtime environment) before being passed to ``fileConfig``." msgstr "" -#: ../../library/logging.config.rst:130 msgid "Added the *encoding* parameter." msgstr "" -#: ../../library/logging.config.rst:133 -msgid "" -"An exception will be thrown if the provided file doesn't exist or is invalid " -"or empty." +msgid "An exception will be thrown if the provided file doesn't exist or is invalid or empty." msgstr "" -#: ../../library/logging.config.rst:139 -msgid "" -"Starts up a socket server on the specified port, and listens for new " -"configurations. If no port is specified, the module's " -"default :const:`DEFAULT_LOGGING_CONFIG_PORT` is used. Logging configurations " -"will be sent as a file suitable for processing by :func:`dictConfig` " -"or :func:`fileConfig`. Returns a :class:`~threading.Thread` instance on " -"which you can call :meth:`~threading.Thread.start` to start the server, and " -"which you can :meth:`~threading.Thread.join` when appropriate. To stop the " -"server, call :func:`stopListening`." +msgid "Starts up a socket server on the specified port, and listens for new configurations. If no port is specified, the module's default :const:`DEFAULT_LOGGING_CONFIG_PORT` is used. Logging configurations will be sent as a file suitable for processing by :func:`dictConfig` or :func:`fileConfig`. Returns a :class:`~threading.Thread` instance on which you can call :meth:`~threading.Thread.start` to start the server, and which you can :meth:`~threading.Thread.join` when appropriate. To stop the server, call :func:`stopListening`." msgstr "" -#: ../../library/logging.config.rst:148 -msgid "" -"The ``verify`` argument, if specified, should be a callable which should " -"verify whether bytes received across the socket are valid and should be " -"processed. This could be done by encrypting and/or signing what is sent " -"across the socket, such that the ``verify`` callable can perform signature " -"verification and/or decryption. The ``verify`` callable is called with a " -"single argument - the bytes received across the socket - and should return " -"the bytes to be processed, or ``None`` to indicate that the bytes should be " -"discarded. The returned bytes could be the same as the passed in bytes (e.g. " -"when only verification is done), or they could be completely different " -"(perhaps if decryption were performed)." -msgstr "" - -#: ../../library/logging.config.rst:159 -msgid "" -"To send a configuration to the socket, read in the configuration file and " -"send it to the socket as a sequence of bytes preceded by a four-byte length " -"string packed in binary using ``struct.pack('>L', n)``." +msgid "The ``verify`` argument, if specified, should be a callable which should verify whether bytes received across the socket are valid and should be processed. This could be done by encrypting and/or signing what is sent across the socket, such that the ``verify`` callable can perform signature verification and/or decryption. The ``verify`` callable is called with a single argument - the bytes received across the socket - and should return the bytes to be processed, or ``None`` to indicate that the bytes should be discarded. The returned bytes could be the same as the passed in bytes (e.g. when only verification is done), or they could be completely different (perhaps if decryption were performed)." +msgstr "" + +msgid "To send a configuration to the socket, read in the configuration file and send it to the socket as a sequence of bytes preceded by a four-byte length string packed in binary using ``struct.pack('>L', n)``." +msgstr "" + +msgid "Because portions of the configuration are passed through :func:`eval`, use of this function may open its users to a security risk. While the function only binds to a socket on ``localhost``, and so does not accept connections from remote machines, there are scenarios where untrusted code could be run under the account of the process which calls :func:`listen`. Specifically, if the process calling :func:`listen` runs on a multi-user machine where users cannot trust each other, then a malicious user could arrange to run essentially arbitrary code in a victim user's process, simply by connecting to the victim's :func:`listen` socket and sending a configuration which runs whatever code the attacker wants to have executed in the victim's process. This is especially easy to do if the default port is used, but not hard even if a different port is used. To avoid the risk of this happening, use the ``verify`` argument to :func:`listen` to prevent unrecognised configurations from being applied." msgstr "" -#: ../../library/logging.config.rst:167 -msgid "" -"Because portions of the configuration are passed through :func:`eval`, use " -"of this function may open its users to a security risk. While the function " -"only binds to a socket on ``localhost``, and so does not accept connections " -"from remote machines, there are scenarios where untrusted code could be run " -"under the account of the process which calls :func:`listen`. Specifically, " -"if the process calling :func:`listen` runs on a multi-user machine where " -"users cannot trust each other, then a malicious user could arrange to run " -"essentially arbitrary code in a victim user's process, simply by connecting " -"to the victim's :func:`listen` socket and sending a configuration which runs " -"whatever code the attacker wants to have executed in the victim's process. " -"This is especially easy to do if the default port is used, but not hard even " -"if a different port is used. To avoid the risk of this happening, use the " -"``verify`` argument to :func:`listen` to prevent unrecognised configurations " -"from being applied." -msgstr "" - -#: ../../library/logging.config.rst:183 msgid "The ``verify`` argument was added." msgstr "" -#: ../../library/logging.config.rst:188 -msgid "" -"If you want to send configurations to the listener which don't disable " -"existing loggers, you will need to use a JSON format for the configuration, " -"which will use :func:`dictConfig` for configuration. This method allows you " -"to specify ``disable_existing_loggers`` as ``False`` in the configuration " -"you send." +msgid "If you want to send configurations to the listener which don't disable existing loggers, you will need to use a JSON format for the configuration, which will use :func:`dictConfig` for configuration. This method allows you to specify ``disable_existing_loggers`` as ``False`` in the configuration you send." msgstr "" -#: ../../library/logging.config.rst:197 -msgid "" -"Stops the listening server which was created with a call to :func:`listen`. " -"This is typically called before calling :meth:`join` on the return value " -"from :func:`listen`." +msgid "Stops the listening server which was created with a call to :func:`listen`. This is typically called before calling :meth:`join` on the return value from :func:`listen`." msgstr "" -#: ../../library/logging.config.rst:203 msgid "Security considerations" msgstr "" -#: ../../library/logging.config.rst:205 -msgid "" -"The logging configuration functionality tries to offer convenience, and in " -"part this is done by offering the ability to convert text in configuration " -"files into Python objects used in logging configuration - for example, as " -"described in :ref:`logging-config-dict-userdef`. However, these same " -"mechanisms (importing callables from user-defined modules and calling them " -"with parameters from the configuration) could be used to invoke any code you " -"like, and for this reason you should treat configuration files from " -"untrusted sources with *extreme caution* and satisfy yourself that nothing " -"bad can happen if you load them, before actually loading them." -msgstr "" - -#: ../../library/logging.config.rst:219 +msgid "The logging configuration functionality tries to offer convenience, and in part this is done by offering the ability to convert text in configuration files into Python objects used in logging configuration - for example, as described in :ref:`logging-config-dict-userdef`. However, these same mechanisms (importing callables from user-defined modules and calling them with parameters from the configuration) could be used to invoke any code you like, and for this reason you should treat configuration files from untrusted sources with *extreme caution* and satisfy yourself that nothing bad can happen if you load them, before actually loading them." +msgstr "" + msgid "Configuration dictionary schema" msgstr "" -#: ../../library/logging.config.rst:221 -msgid "" -"Describing a logging configuration requires listing the various objects to " -"create and the connections between them; for example, you may create a " -"handler named 'console' and then say that the logger named 'startup' will " -"send its messages to the 'console' handler. These objects aren't limited to " -"those provided by the :mod:`logging` module because you might write your own " -"formatter or handler class. The parameters to these classes may also need to " -"include external objects such as ``sys.stderr``. The syntax for describing " -"these objects and connections is defined in :ref:`logging-config-dict-" -"connections` below." -msgstr "" - -#: ../../library/logging.config.rst:233 +msgid "Describing a logging configuration requires listing the various objects to create and the connections between them; for example, you may create a handler named 'console' and then say that the logger named 'startup' will send its messages to the 'console' handler. These objects aren't limited to those provided by the :mod:`logging` module because you might write your own formatter or handler class. The parameters to these classes may also need to include external objects such as ``sys.stderr``. The syntax for describing these objects and connections is defined in :ref:`logging-config-dict-connections` below." +msgstr "" + msgid "Dictionary Schema Details" msgstr "" -#: ../../library/logging.config.rst:235 -msgid "" -"The dictionary passed to :func:`dictConfig` must contain the following keys:" +msgid "The dictionary passed to :func:`dictConfig` must contain the following keys:" msgstr "" -#: ../../library/logging.config.rst:238 -msgid "" -"*version* - to be set to an integer value representing the schema version. " -"The only valid value at present is 1, but having this key allows the schema " -"to evolve while still preserving backwards compatibility." +msgid "*version* - to be set to an integer value representing the schema version. The only valid value at present is 1, but having this key allows the schema to evolve while still preserving backwards compatibility." msgstr "" -#: ../../library/logging.config.rst:243 -msgid "" -"All other keys are optional, but if present they will be interpreted as " -"described below. In all cases below where a 'configuring dict' is " -"mentioned, it will be checked for the special ``'()'`` key to see if a " -"custom instantiation is required. If so, the mechanism described " -"in :ref:`logging-config-dict-userdef` below is used to create an instance; " -"otherwise, the context is used to determine what to instantiate." +msgid "All other keys are optional, but if present they will be interpreted as described below. In all cases below where a 'configuring dict' is mentioned, it will be checked for the special ``'()'`` key to see if a custom instantiation is required. If so, the mechanism described in :ref:`logging-config-dict-userdef` below is used to create an instance; otherwise, the context is used to determine what to instantiate." msgstr "" -#: ../../library/logging.config.rst:252 -msgid "" -"*formatters* - the corresponding value will be a dict in which each key is a " -"formatter id and each value is a dict describing how to configure the " -"corresponding :class:`~logging.Formatter` instance." +msgid "*formatters* - the corresponding value will be a dict in which each key is a formatter id and each value is a dict describing how to configure the corresponding :class:`~logging.Formatter` instance." msgstr "" -#: ../../library/logging.config.rst:256 -msgid "" -"The configuring dict is searched for the following optional keys which " -"correspond to the arguments passed to create a :class:`~logging.Formatter` " -"object:" +msgid "The configuring dict is searched for the following optional keys which correspond to the arguments passed to create a :class:`~logging.Formatter` object:" msgstr "" -#: ../../library/logging.config.rst:260 msgid "``format``" msgstr "" -#: ../../library/logging.config.rst:261 msgid "``datefmt``" msgstr "" -#: ../../library/logging.config.rst:262 msgid "``style``" msgstr "" -#: ../../library/logging.config.rst:263 msgid "``validate`` (since version >=3.8)" msgstr "" -#: ../../library/logging.config.rst:264 msgid "``defaults`` (since version >=3.12)" msgstr "" -#: ../../library/logging.config.rst:266 -msgid "" -"An optional ``class`` key indicates the name of the formatter's class (as a " -"dotted module and class name). The instantiation arguments are as " -"for :class:`~logging.Formatter`, thus this key is most useful for " -"instantiating a customised subclass of :class:`~logging.Formatter`. For " -"example, the alternative class might present exception tracebacks in an " -"expanded or condensed format. If your formatter requires different or extra " -"configuration keys, you should use :ref:`logging-config-dict-userdef`." +msgid "An optional ``class`` key indicates the name of the formatter's class (as a dotted module and class name). The instantiation arguments are as for :class:`~logging.Formatter`, thus this key is most useful for instantiating a customised subclass of :class:`~logging.Formatter`. For example, the alternative class might present exception tracebacks in an expanded or condensed format. If your formatter requires different or extra configuration keys, you should use :ref:`logging-config-dict-userdef`." msgstr "" -#: ../../library/logging.config.rst:275 -msgid "" -"*filters* - the corresponding value will be a dict in which each key is a " -"filter id and each value is a dict describing how to configure the " -"corresponding Filter instance." +msgid "*filters* - the corresponding value will be a dict in which each key is a filter id and each value is a dict describing how to configure the corresponding Filter instance." msgstr "" -#: ../../library/logging.config.rst:279 -msgid "" -"The configuring dict is searched for the key ``name`` (defaulting to the " -"empty string) and this is used to construct a :class:`logging.Filter` " -"instance." +msgid "The configuring dict is searched for the key ``name`` (defaulting to the empty string) and this is used to construct a :class:`logging.Filter` instance." msgstr "" -#: ../../library/logging.config.rst:283 -msgid "" -"*handlers* - the corresponding value will be a dict in which each key is a " -"handler id and each value is a dict describing how to configure the " -"corresponding Handler instance." +msgid "*handlers* - the corresponding value will be a dict in which each key is a handler id and each value is a dict describing how to configure the corresponding Handler instance." msgstr "" -#: ../../library/logging.config.rst:287 ../../library/logging.config.rst:332 msgid "The configuring dict is searched for the following keys:" msgstr "" -#: ../../library/logging.config.rst:289 -msgid "" -"``class`` (mandatory). This is the fully qualified name of the handler " -"class." +msgid "``class`` (mandatory). This is the fully qualified name of the handler class." msgstr "" -#: ../../library/logging.config.rst:292 msgid "``level`` (optional). The level of the handler." msgstr "" -#: ../../library/logging.config.rst:294 msgid "``formatter`` (optional). The id of the formatter for this handler." msgstr "" -#: ../../library/logging.config.rst:297 msgid "``filters`` (optional). A list of ids of the filters for this handler." msgstr "" -#: ../../library/logging.config.rst:300 ../../library/logging.config.rst:341 msgid "``filters`` can take filter instances in addition to ids." msgstr "" -#: ../../library/logging.config.rst:303 -msgid "" -"All *other* keys are passed through as keyword arguments to the handler's " -"constructor. For example, given the snippet:" +msgid "All *other* keys are passed through as keyword arguments to the handler's constructor. For example, given the snippet:" msgstr "" -#: ../../library/logging.config.rst:306 msgid "" "handlers:\n" " console:\n" @@ -464,140 +239,63 @@ msgid "" " backupCount: 3" msgstr "" -#: ../../library/logging.config.rst:322 -msgid "" -"the handler with id ``console`` is instantiated as " -"a :class:`logging.StreamHandler`, using ``sys.stdout`` as the underlying " -"stream. The handler with id ``file`` is instantiated as " -"a :class:`logging.handlers.RotatingFileHandler` with the keyword arguments " -"``filename='logconfig.log', maxBytes=1024, backupCount=3``." +msgid "the handler with id ``console`` is instantiated as a :class:`logging.StreamHandler`, using ``sys.stdout`` as the underlying stream. The handler with id ``file`` is instantiated as a :class:`logging.handlers.RotatingFileHandler` with the keyword arguments ``filename='logconfig.log', maxBytes=1024, backupCount=3``." msgstr "" -#: ../../library/logging.config.rst:328 -msgid "" -"*loggers* - the corresponding value will be a dict in which each key is a " -"logger name and each value is a dict describing how to configure the " -"corresponding Logger instance." +msgid "*loggers* - the corresponding value will be a dict in which each key is a logger name and each value is a dict describing how to configure the corresponding Logger instance." msgstr "" -#: ../../library/logging.config.rst:334 msgid "``level`` (optional). The level of the logger." msgstr "" -#: ../../library/logging.config.rst:336 msgid "``propagate`` (optional). The propagation setting of the logger." msgstr "" -#: ../../library/logging.config.rst:338 msgid "``filters`` (optional). A list of ids of the filters for this logger." msgstr "" -#: ../../library/logging.config.rst:344 -msgid "" -"``handlers`` (optional). A list of ids of the handlers for this logger." +msgid "``handlers`` (optional). A list of ids of the handlers for this logger." msgstr "" -#: ../../library/logging.config.rst:347 -msgid "" -"The specified loggers will be configured according to the level, " -"propagation, filters and handlers specified." +msgid "The specified loggers will be configured according to the level, propagation, filters and handlers specified." msgstr "" -#: ../../library/logging.config.rst:350 -msgid "" -"*root* - this will be the configuration for the root logger. Processing of " -"the configuration will be as for any logger, except that the ``propagate`` " -"setting will not be applicable." +msgid "*root* - this will be the configuration for the root logger. Processing of the configuration will be as for any logger, except that the ``propagate`` setting will not be applicable." msgstr "" -#: ../../library/logging.config.rst:354 -msgid "" -"*incremental* - whether the configuration is to be interpreted as " -"incremental to the existing configuration. This value defaults to " -"``False``, which means that the specified configuration replaces the " -"existing configuration with the same semantics as used by the " -"existing :func:`fileConfig` API." +msgid "*incremental* - whether the configuration is to be interpreted as incremental to the existing configuration. This value defaults to ``False``, which means that the specified configuration replaces the existing configuration with the same semantics as used by the existing :func:`fileConfig` API." msgstr "" -#: ../../library/logging.config.rst:360 -msgid "" -"If the specified value is ``True``, the configuration is processed as " -"described in the section on :ref:`logging-config-dict-incremental`." +msgid "If the specified value is ``True``, the configuration is processed as described in the section on :ref:`logging-config-dict-incremental`." msgstr "" -#: ../../library/logging.config.rst:363 -msgid "" -"*disable_existing_loggers* - whether any existing non-root loggers are to be " -"disabled. This setting mirrors the parameter of the same name " -"in :func:`fileConfig`. If absent, this parameter defaults to ``True``. This " -"value is ignored if *incremental* is ``True``." +msgid "*disable_existing_loggers* - whether any existing non-root loggers are to be disabled. This setting mirrors the parameter of the same name in :func:`fileConfig`. If absent, this parameter defaults to ``True``. This value is ignored if *incremental* is ``True``." msgstr "" -#: ../../library/logging.config.rst:371 msgid "Incremental Configuration" msgstr "" -#: ../../library/logging.config.rst:373 -msgid "" -"It is difficult to provide complete flexibility for incremental " -"configuration. For example, because objects such as filters and formatters " -"are anonymous, once a configuration is set up, it is not possible to refer " -"to such anonymous objects when augmenting a configuration." +msgid "It is difficult to provide complete flexibility for incremental configuration. For example, because objects such as filters and formatters are anonymous, once a configuration is set up, it is not possible to refer to such anonymous objects when augmenting a configuration." msgstr "" -#: ../../library/logging.config.rst:379 -msgid "" -"Furthermore, there is not a compelling case for arbitrarily altering the " -"object graph of loggers, handlers, filters, formatters at run-time, once a " -"configuration is set up; the verbosity of loggers and handlers can be " -"controlled just by setting levels (and, in the case of loggers, propagation " -"flags). Changing the object graph arbitrarily in a safe way is problematic " -"in a multi-threaded environment; while not impossible, the benefits are not " -"worth the complexity it adds to the implementation." +msgid "Furthermore, there is not a compelling case for arbitrarily altering the object graph of loggers, handlers, filters, formatters at run-time, once a configuration is set up; the verbosity of loggers and handlers can be controlled just by setting levels (and, in the case of loggers, propagation flags). Changing the object graph arbitrarily in a safe way is problematic in a multi-threaded environment; while not impossible, the benefits are not worth the complexity it adds to the implementation." msgstr "" -#: ../../library/logging.config.rst:388 -msgid "" -"Thus, when the ``incremental`` key of a configuration dict is present and is " -"``True``, the system will completely ignore any ``formatters`` and " -"``filters`` entries, and process only the ``level`` settings in the " -"``handlers`` entries, and the ``level`` and ``propagate`` settings in the " -"``loggers`` and ``root`` entries." +msgid "Thus, when the ``incremental`` key of a configuration dict is present and is ``True``, the system will completely ignore any ``formatters`` and ``filters`` entries, and process only the ``level`` settings in the ``handlers`` entries, and the ``level`` and ``propagate`` settings in the ``loggers`` and ``root`` entries." msgstr "" -#: ../../library/logging.config.rst:394 -msgid "" -"Using a value in the configuration dict lets configurations to be sent over " -"the wire as pickled dicts to a socket listener. Thus, the logging verbosity " -"of a long-running application can be altered over time with no need to stop " -"and restart the application." +msgid "Using a value in the configuration dict lets configurations to be sent over the wire as pickled dicts to a socket listener. Thus, the logging verbosity of a long-running application can be altered over time with no need to stop and restart the application." msgstr "" -#: ../../library/logging.config.rst:402 msgid "Object connections" msgstr "" -#: ../../library/logging.config.rst:404 -msgid "" -"The schema describes a set of logging objects - loggers, handlers, " -"formatters, filters - which are connected to each other in an object graph. " -"Thus, the schema needs to represent connections between the objects. For " -"example, say that, once configured, a particular logger has attached to it a " -"particular handler. For the purposes of this discussion, we can say that " -"the logger represents the source, and the handler the destination, of a " -"connection between the two. Of course in the configured objects this is " -"represented by the logger holding a reference to the handler. In the " -"configuration dict, this is done by giving each destination object an id " -"which identifies it unambiguously, and then using the id in the source " -"object's configuration to indicate that a connection exists between the " -"source and the destination object with that id." -msgstr "" - -#: ../../library/logging.config.rst:418 +msgid "The schema describes a set of logging objects - loggers, handlers, formatters, filters - which are connected to each other in an object graph. Thus, the schema needs to represent connections between the objects. For example, say that, once configured, a particular logger has attached to it a particular handler. For the purposes of this discussion, we can say that the logger represents the source, and the handler the destination, of a connection between the two. Of course in the configured objects this is represented by the logger holding a reference to the handler. In the configuration dict, this is done by giving each destination object an id which identifies it unambiguously, and then using the id in the source object's configuration to indicate that a connection exists between the source and the destination object with that id." +msgstr "" + msgid "So, for example, consider the following YAML snippet:" msgstr "" -#: ../../library/logging.config.rst:420 msgid "" "formatters:\n" " brief:\n" @@ -617,57 +315,24 @@ msgid "" " handlers: [h1, h2]" msgstr "" -#: ../../library/logging.config.rst:439 -msgid "" -"(Note: YAML used here because it's a little more readable than the " -"equivalent Python source form for the dictionary.)" +msgid "(Note: YAML used here because it's a little more readable than the equivalent Python source form for the dictionary.)" msgstr "" -#: ../../library/logging.config.rst:442 -msgid "" -"The ids for loggers are the logger names which would be used " -"programmatically to obtain a reference to those loggers, e.g. " -"``foo.bar.baz``. The ids for Formatters and Filters can be any string value " -"(such as ``brief``, ``precise`` above) and they are transient, in that they " -"are only meaningful for processing the configuration dictionary and used to " -"determine connections between objects, and are not persisted anywhere when " -"the configuration call is complete." +msgid "The ids for loggers are the logger names which would be used programmatically to obtain a reference to those loggers, e.g. ``foo.bar.baz``. The ids for Formatters and Filters can be any string value (such as ``brief``, ``precise`` above) and they are transient, in that they are only meaningful for processing the configuration dictionary and used to determine connections between objects, and are not persisted anywhere when the configuration call is complete." msgstr "" -#: ../../library/logging.config.rst:450 -msgid "" -"The above snippet indicates that logger named ``foo.bar.baz`` should have " -"two handlers attached to it, which are described by the handler ids ``h1`` " -"and ``h2``. The formatter for ``h1`` is that described by id ``brief``, and " -"the formatter for ``h2`` is that described by id ``precise``." +msgid "The above snippet indicates that logger named ``foo.bar.baz`` should have two handlers attached to it, which are described by the handler ids ``h1`` and ``h2``. The formatter for ``h1`` is that described by id ``brief``, and the formatter for ``h2`` is that described by id ``precise``." msgstr "" -#: ../../library/logging.config.rst:460 msgid "User-defined objects" msgstr "" -#: ../../library/logging.config.rst:462 -msgid "" -"The schema supports user-defined objects for handlers, filters and " -"formatters. (Loggers do not need to have different types for different " -"instances, so there is no support in this configuration schema for user-" -"defined logger classes.)" +msgid "The schema supports user-defined objects for handlers, filters and formatters. (Loggers do not need to have different types for different instances, so there is no support in this configuration schema for user-defined logger classes.)" +msgstr "" + +msgid "Objects to be configured are described by dictionaries which detail their configuration. In some places, the logging system will be able to infer from the context how an object is to be instantiated, but when a user-defined object is to be instantiated, the system will not know how to do this. In order to provide complete flexibility for user-defined object instantiation, the user needs to provide a 'factory' - a callable which is called with a configuration dictionary and which returns the instantiated object. This is signalled by an absolute import path to the factory being made available under the special key ``'()'``. Here's a concrete example:" msgstr "" -#: ../../library/logging.config.rst:467 -msgid "" -"Objects to be configured are described by dictionaries which detail their " -"configuration. In some places, the logging system will be able to infer " -"from the context how an object is to be instantiated, but when a user-" -"defined object is to be instantiated, the system will not know how to do " -"this. In order to provide complete flexibility for user-defined object " -"instantiation, the user needs to provide a 'factory' - a callable which is " -"called with a configuration dictionary and which returns the instantiated " -"object. This is signalled by an absolute import path to the factory being " -"made available under the special key ``'()'``. Here's a concrete example:" -msgstr "" - -#: ../../library/logging.config.rst:479 msgid "" "formatters:\n" " brief:\n" @@ -682,29 +347,18 @@ msgid "" " answer: 42" msgstr "" -#: ../../library/logging.config.rst:493 -msgid "" -"The above YAML snippet defines three formatters. The first, with id " -"``brief``, is a standard :class:`logging.Formatter` instance with the " -"specified format string. The second, with id ``default``, has a longer " -"format and also defines the time format explicitly, and will result in " -"a :class:`logging.Formatter` initialized with those two format strings. " -"Shown in Python source form, the ``brief`` and ``default`` formatters have " -"configuration sub-dictionaries::" +msgid "The above YAML snippet defines three formatters. The first, with id ``brief``, is a standard :class:`logging.Formatter` instance with the specified format string. The second, with id ``default``, has a longer format and also defines the time format explicitly, and will result in a :class:`logging.Formatter` initialized with those two format strings. Shown in Python source form, the ``brief`` and ``default`` formatters have configuration sub-dictionaries::" msgstr "" -#: ../../library/logging.config.rst:501 msgid "" "{\n" " 'format' : '%(message)s'\n" "}" msgstr "" -#: ../../library/logging.config.rst:505 msgid "and::" msgstr "" -#: ../../library/logging.config.rst:507 msgid "" "{\n" " 'format' : '%(asctime)s %(levelname)-8s %(name)-15s %(message)s',\n" @@ -712,16 +366,9 @@ msgid "" "}" msgstr "" -#: ../../library/logging.config.rst:512 -msgid "" -"respectively, and as these dictionaries do not contain the special key " -"``'()'``, the instantiation is inferred from the context: as a result, " -"standard :class:`logging.Formatter` instances are created. The " -"configuration sub-dictionary for the third formatter, with id ``custom``, " -"is::" +msgid "respectively, and as these dictionaries do not contain the special key ``'()'``, the instantiation is inferred from the context: as a result, standard :class:`logging.Formatter` instances are created. The configuration sub-dictionary for the third formatter, with id ``custom``, is::" msgstr "" -#: ../../library/logging.config.rst:518 msgid "" "{\n" " '()' : 'my.package.customFormatterFactory',\n" @@ -731,53 +378,24 @@ msgid "" "}" msgstr "" -#: ../../library/logging.config.rst:525 -msgid "" -"and this contains the special key ``'()'``, which means that user-defined " -"instantiation is wanted. In this case, the specified factory callable will " -"be used. If it is an actual callable it will be used directly - otherwise, " -"if you specify a string (as in the example) the actual callable will be " -"located using normal import mechanisms. The callable will be called with the " -"**remaining** items in the configuration sub-dictionary as keyword " -"arguments. In the above example, the formatter with id ``custom`` will be " -"assumed to be returned by the call::" +msgid "and this contains the special key ``'()'``, which means that user-defined instantiation is wanted. In this case, the specified factory callable will be used. If it is an actual callable it will be used directly - otherwise, if you specify a string (as in the example) the actual callable will be located using normal import mechanisms. The callable will be called with the **remaining** items in the configuration sub-dictionary as keyword arguments. In the above example, the formatter with id ``custom`` will be assumed to be returned by the call::" msgstr "" -#: ../../library/logging.config.rst:535 msgid "my.package.customFormatterFactory(bar='baz', spam=99.9, answer=42)" msgstr "" -#: ../../library/logging.config.rst:537 -msgid "" -"The values for keys such as ``bar``, ``spam`` and ``answer`` in the above " -"example should not be configuration dictionaries or references such as " -"``cfg://foo`` or ``ext://bar``, because they will not be processed by the " -"configuration machinery, but passed to the callable as-is." +msgid "The values for keys such as ``bar``, ``spam`` and ``answer`` in the above example should not be configuration dictionaries or references such as ``cfg://foo`` or ``ext://bar``, because they will not be processed by the configuration machinery, but passed to the callable as-is." msgstr "" -#: ../../library/logging.config.rst:542 -msgid "" -"The key ``'()'`` has been used as the special key because it is not a valid " -"keyword parameter name, and so will not clash with the names of the keyword " -"arguments used in the call. The ``'()'`` also serves as a mnemonic that the " -"corresponding value is a callable." +msgid "The key ``'()'`` has been used as the special key because it is not a valid keyword parameter name, and so will not clash with the names of the keyword arguments used in the call. The ``'()'`` also serves as a mnemonic that the corresponding value is a callable." msgstr "" -#: ../../library/logging.config.rst:547 -msgid "" -"The ``filters`` member of ``handlers`` and ``loggers`` can take filter " -"instances in addition to ids." +msgid "The ``filters`` member of ``handlers`` and ``loggers`` can take filter instances in addition to ids." msgstr "" -#: ../../library/logging.config.rst:551 -msgid "" -"You can also specify a special key ``'.'`` whose value is a mapping of " -"attribute names to values. If found, the specified attributes will be set on " -"the user-defined object before it is returned. Thus, with the following " -"configuration::" +msgid "You can also specify a special key ``'.'`` whose value is a mapping of attribute names to values. If found, the specified attributes will be set on the user-defined object before it is returned. Thus, with the following configuration::" msgstr "" -#: ../../library/logging.config.rst:556 msgid "" "{\n" " '()' : 'my.package.customFormatterFactory',\n" @@ -791,105 +409,36 @@ msgid "" "}" msgstr "" -#: ../../library/logging.config.rst:567 -msgid "" -"the returned formatter will have attribute ``foo`` set to ``'bar'`` and " -"attribute ``baz`` set to ``'bozz'``." +msgid "the returned formatter will have attribute ``foo`` set to ``'bar'`` and attribute ``baz`` set to ``'bozz'``." msgstr "" -#: ../../library/logging.config.rst:570 -msgid "" -"The values for attributes such as ``foo`` and ``baz`` in the above example " -"should not be configuration dictionaries or references such as ``cfg://foo`` " -"or ``ext://bar``, because they will not be processed by the configuration " -"machinery, but set as attribute values as-is." +msgid "The values for attributes such as ``foo`` and ``baz`` in the above example should not be configuration dictionaries or references such as ``cfg://foo`` or ``ext://bar``, because they will not be processed by the configuration machinery, but set as attribute values as-is." msgstr "" -#: ../../library/logging.config.rst:579 msgid "Handler configuration order" msgstr "" -#: ../../library/logging.config.rst:581 -msgid "" -"Handlers are configured in alphabetical order of their keys, and a " -"configured handler replaces the configuration dictionary in (a working copy " -"of) the ``handlers`` dictionary in the schema. If you use a construct such " -"as ``cfg://handlers.foo``, then initially ``handlers['foo']`` points to the " -"configuration dictionary for the handler named ``foo``, and later (once that " -"handler has been configured) it points to the configured handler instance. " -"Thus, ``cfg://handlers.foo`` could resolve to either a dictionary or a " -"handler instance. In general, it is wise to name handlers in a way such that " -"dependent handlers are configured *after* any handlers they depend on; that " -"allows something like ``cfg://handlers.foo`` to be used in configuring a " -"handler that depends on handler ``foo``. If that dependent handler were " -"named ``bar``, problems would result, because the configuration of ``bar`` " -"would be attempted before that of ``foo``, and ``foo`` would not yet have " -"been configured. However, if the dependent handler were named ``foobar``, it " -"would be configured after ``foo``, with the result that ``cfg://" -"handlers.foo`` would resolve to configured handler ``foo``, and not its " -"configuration dictionary." -msgstr "" - -#: ../../library/logging.config.rst:602 +msgid "Handlers are configured in alphabetical order of their keys, and a configured handler replaces the configuration dictionary in (a working copy of) the ``handlers`` dictionary in the schema. If you use a construct such as ``cfg://handlers.foo``, then initially ``handlers['foo']`` points to the configuration dictionary for the handler named ``foo``, and later (once that handler has been configured) it points to the configured handler instance. Thus, ``cfg://handlers.foo`` could resolve to either a dictionary or a handler instance. In general, it is wise to name handlers in a way such that dependent handlers are configured *after* any handlers they depend on; that allows something like ``cfg://handlers.foo`` to be used in configuring a handler that depends on handler ``foo``. If that dependent handler were named ``bar``, problems would result, because the configuration of ``bar`` would be attempted before that of ``foo``, and ``foo`` would not yet have been configured. However, if the dependent handler were named ``foobar``, it would be configured after ``foo``, with the result that ``cfg://handlers.foo`` would resolve to configured handler ``foo``, and not its configuration dictionary." +msgstr "" + msgid "Access to external objects" msgstr "" -#: ../../library/logging.config.rst:604 -msgid "" -"There are times where a configuration needs to refer to objects external to " -"the configuration, for example ``sys.stderr``. If the configuration dict is " -"constructed using Python code, this is straightforward, but a problem arises " -"when the configuration is provided via a text file (e.g. JSON, YAML). In a " -"text file, there is no standard way to distinguish ``sys.stderr`` from the " -"literal string ``'sys.stderr'``. To facilitate this distinction, the " -"configuration system looks for certain special prefixes in string values and " -"treat them specially. For example, if the literal string ``'ext://" -"sys.stderr'`` is provided as a value in the configuration, then the ``ext://" -"`` will be stripped off and the remainder of the value processed using " -"normal import mechanisms." -msgstr "" - -#: ../../library/logging.config.rst:617 -msgid "" -"The handling of such prefixes is done in a way analogous to protocol " -"handling: there is a generic mechanism to look for prefixes which match the " -"regular expression ``^(?P[a-z]+)://(?P.*)$`` whereby, if the " -"``prefix`` is recognised, the ``suffix`` is processed in a prefix-dependent " -"manner and the result of the processing replaces the string value. If the " -"prefix is not recognised, then the string value will be left as-is." +msgid "There are times where a configuration needs to refer to objects external to the configuration, for example ``sys.stderr``. If the configuration dict is constructed using Python code, this is straightforward, but a problem arises when the configuration is provided via a text file (e.g. JSON, YAML). In a text file, there is no standard way to distinguish ``sys.stderr`` from the literal string ``'sys.stderr'``. To facilitate this distinction, the configuration system looks for certain special prefixes in string values and treat them specially. For example, if the literal string ``'ext://sys.stderr'`` is provided as a value in the configuration, then the ``ext://`` will be stripped off and the remainder of the value processed using normal import mechanisms." +msgstr "" + +msgid "The handling of such prefixes is done in a way analogous to protocol handling: there is a generic mechanism to look for prefixes which match the regular expression ``^(?P[a-z]+)://(?P.*)$`` whereby, if the ``prefix`` is recognised, the ``suffix`` is processed in a prefix-dependent manner and the result of the processing replaces the string value. If the prefix is not recognised, then the string value will be left as-is." msgstr "" -#: ../../library/logging.config.rst:629 msgid "Access to internal objects" msgstr "" -#: ../../library/logging.config.rst:631 -msgid "" -"As well as external objects, there is sometimes also a need to refer to " -"objects in the configuration. This will be done implicitly by the " -"configuration system for things that it knows about. For example, the " -"string value ``'DEBUG'`` for a ``level`` in a logger or handler will " -"automatically be converted to the value ``logging.DEBUG``, and the " -"``handlers``, ``filters`` and ``formatter`` entries will take an object id " -"and resolve to the appropriate destination object." +msgid "As well as external objects, there is sometimes also a need to refer to objects in the configuration. This will be done implicitly by the configuration system for things that it knows about. For example, the string value ``'DEBUG'`` for a ``level`` in a logger or handler will automatically be converted to the value ``logging.DEBUG``, and the ``handlers``, ``filters`` and ``formatter`` entries will take an object id and resolve to the appropriate destination object." +msgstr "" + +msgid "However, a more generic mechanism is needed for user-defined objects which are not known to the :mod:`logging` module. For example, consider :class:`logging.handlers.MemoryHandler`, which takes a ``target`` argument which is another handler to delegate to. Since the system already knows about this class, then in the configuration, the given ``target`` just needs to be the object id of the relevant target handler, and the system will resolve to the handler from the id. If, however, a user defines a ``my.package.MyHandler`` which has an ``alternate`` handler, the configuration system would not know that the ``alternate`` referred to a handler. To cater for this, a generic resolution system allows the user to specify:" msgstr "" -#: ../../library/logging.config.rst:639 -msgid "" -"However, a more generic mechanism is needed for user-defined objects which " -"are not known to the :mod:`logging` module. For example, " -"consider :class:`logging.handlers.MemoryHandler`, which takes a ``target`` " -"argument which is another handler to delegate to. Since the system already " -"knows about this class, then in the configuration, the given ``target`` just " -"needs to be the object id of the relevant target handler, and the system " -"will resolve to the handler from the id. If, however, a user defines a " -"``my.package.MyHandler`` which has an ``alternate`` handler, the " -"configuration system would not know that the ``alternate`` referred to a " -"handler. To cater for this, a generic resolution system allows the user to " -"specify:" -msgstr "" - -#: ../../library/logging.config.rst:651 msgid "" "handlers:\n" " file:\n" @@ -900,16 +449,9 @@ msgid "" " alternate: cfg://handlers.file" msgstr "" -#: ../../library/logging.config.rst:661 -msgid "" -"The literal string ``'cfg://handlers.file'`` will be resolved in an " -"analogous way to strings with the ``ext://`` prefix, but looking in the " -"configuration itself rather than the import namespace. The mechanism allows " -"access by dot or by index, in a similar way to that provided by " -"``str.format``. Thus, given the following snippet:" +msgid "The literal string ``'cfg://handlers.file'`` will be resolved in an analogous way to strings with the ``ext://`` prefix, but looking in the configuration itself rather than the import namespace. The mechanism allows access by dot or by index, in a similar way to that provided by ``str.format``. Thus, given the following snippet:" msgstr "" -#: ../../library/logging.config.rst:667 msgid "" "handlers:\n" " email:\n" @@ -922,51 +464,18 @@ msgid "" " subject: Houston, we have a problem." msgstr "" -#: ../../library/logging.config.rst:679 -msgid "" -"in the configuration, the string ``'cfg://handlers'`` would resolve to the " -"dict with key ``handlers``, the string ``'cfg://handlers.email`` would " -"resolve to the dict with key ``email`` in the ``handlers`` dict, and so on. " -"The string ``'cfg://handlers.email.toaddrs[1]`` would resolve to " -"``'dev_team@domain.tld'`` and the string ``'cfg://" -"handlers.email.toaddrs[0]'`` would resolve to the value " -"``'support_team@domain.tld'``. The ``subject`` value could be accessed using " -"either ``'cfg://handlers.email.subject'`` or, equivalently, ``'cfg://" -"handlers.email[subject]'``. The latter form only needs to be used if the " -"key contains spaces or non-alphanumeric characters. Please note that the " -"characters ``[`` and ``]`` are not allowed in the keys. If an index value " -"consists only of decimal digits, access will be attempted using the " -"corresponding integer value, falling back to the string value if needed." -msgstr "" - -#: ../../library/logging.config.rst:694 -msgid "" -"Given a string ``cfg://handlers.myhandler.mykey.123``, this will resolve to " -"``config_dict['handlers']['myhandler']['mykey']['123']``. If the string is " -"specified as ``cfg://handlers.myhandler.mykey[123]``, the system will " -"attempt to retrieve the value from ``config_dict['handlers']['myhandler']" -"['mykey'][123]``, and fall back to ``config_dict['handlers']['myhandler']" -"['mykey']['123']`` if that fails." +msgid "in the configuration, the string ``'cfg://handlers'`` would resolve to the dict with key ``handlers``, the string ``'cfg://handlers.email`` would resolve to the dict with key ``email`` in the ``handlers`` dict, and so on. The string ``'cfg://handlers.email.toaddrs[1]`` would resolve to ``'dev_team@domain.tld'`` and the string ``'cfg://handlers.email.toaddrs[0]'`` would resolve to the value ``'support_team@domain.tld'``. The ``subject`` value could be accessed using either ``'cfg://handlers.email.subject'`` or, equivalently, ``'cfg://handlers.email[subject]'``. The latter form only needs to be used if the key contains spaces or non-alphanumeric characters. Please note that the characters ``[`` and ``]`` are not allowed in the keys. If an index value consists only of decimal digits, access will be attempted using the corresponding integer value, falling back to the string value if needed." +msgstr "" + +msgid "Given a string ``cfg://handlers.myhandler.mykey.123``, this will resolve to ``config_dict['handlers']['myhandler']['mykey']['123']``. If the string is specified as ``cfg://handlers.myhandler.mykey[123]``, the system will attempt to retrieve the value from ``config_dict['handlers']['myhandler']['mykey'][123]``, and fall back to ``config_dict['handlers']['myhandler']['mykey']['123']`` if that fails." msgstr "" -#: ../../library/logging.config.rst:706 msgid "Import resolution and custom importers" msgstr "" -#: ../../library/logging.config.rst:708 -msgid "" -"Import resolution, by default, uses the builtin :func:`__import__` function " -"to do its importing. You may want to replace this with your own importing " -"mechanism: if so, you can replace the :attr:`importer` attribute of " -"the :class:`DictConfigurator` or its superclass, " -"the :class:`BaseConfigurator` class. However, you need to be careful because " -"of the way functions are accessed from classes via descriptors. If you are " -"using a Python callable to do your imports, and you want to define it at " -"class level rather than instance level, you need to wrap it " -"with :func:`staticmethod`. For example::" -msgstr "" - -#: ../../library/logging.config.rst:718 +msgid "Import resolution, by default, uses the builtin :func:`__import__` function to do its importing. You may want to replace this with your own importing mechanism: if so, you can replace the :attr:`importer` attribute of the :class:`DictConfigurator` or its superclass, the :class:`BaseConfigurator` class. However, you need to be careful because of the way functions are accessed from classes via descriptors. If you are using a Python callable to do your imports, and you want to define it at class level rather than instance level, you need to wrap it with :func:`staticmethod`. For example::" +msgstr "" + msgid "" "from importlib import import_module\n" "from logging.config import BaseConfigurator\n" @@ -974,30 +483,15 @@ msgid "" "BaseConfigurator.importer = staticmethod(import_module)" msgstr "" -#: ../../library/logging.config.rst:723 -msgid "" -"You don't need to wrap with :func:`staticmethod` if you're setting the " -"import callable on a configurator *instance*." +msgid "You don't need to wrap with :func:`staticmethod` if you're setting the import callable on a configurator *instance*." msgstr "" -#: ../../library/logging.config.rst:729 msgid "Configuring QueueHandler and QueueListener" msgstr "" -#: ../../library/logging.config.rst:731 -msgid "" -"If you want to configure a :class:`~logging.handlers.QueueHandler`, noting " -"that this is normally used in conjunction with " -"a :class:`~logging.handlers.QueueListener`, you can configure both together. " -"After the configuration, the ``QueueListener`` instance will be available as " -"the :attr:`~logging.handlers.QueueHandler.listener` attribute of the created " -"handler, and that in turn will be available to you " -"using :func:`~logging.getHandlerByName` and passing the name you have used " -"for the ``QueueHandler`` in your configuration. The dictionary schema for " -"configuring the pair is shown in the example YAML snippet below." -msgstr "" - -#: ../../library/logging.config.rst:740 +msgid "If you want to configure a :class:`~logging.handlers.QueueHandler`, noting that this is normally used in conjunction with a :class:`~logging.handlers.QueueListener`, you can configure both together. After the configuration, the ``QueueListener`` instance will be available as the :attr:`~logging.handlers.QueueHandler.listener` attribute of the created handler, and that in turn will be available to you using :func:`~logging.getHandlerByName` and passing the name you have used for the ``QueueHandler`` in your configuration. The dictionary schema for configuring the pair is shown in the example YAML snippet below." +msgstr "" + msgid "" "handlers:\n" " qhand:\n" @@ -1010,138 +504,60 @@ msgid "" " ..." msgstr "" -#: ../../library/logging.config.rst:752 msgid "The ``queue`` and ``listener`` keys are optional." msgstr "" -#: ../../library/logging.config.rst:754 -msgid "" -"If the ``queue`` key is present, the corresponding value can be one of the " -"following:" +msgid "If the ``queue`` key is present, the corresponding value can be one of the following:" msgstr "" -#: ../../library/logging.config.rst:756 -msgid "" -"An object implementing the :meth:`Queue.put_nowait ` " -"and :meth:`Queue.get ` public API. For instance, this may " -"be an actual instance of :class:`queue.Queue` or a subclass thereof, or a " -"proxy obtained by :meth:`multiprocessing.managers.SyncManager.Queue`." +msgid "An object implementing the :meth:`Queue.put_nowait ` and :meth:`Queue.get ` public API. For instance, this may be an actual instance of :class:`queue.Queue` or a subclass thereof, or a proxy obtained by :meth:`multiprocessing.managers.SyncManager.Queue`." msgstr "" -#: ../../library/logging.config.rst:761 -msgid "" -"This is of course only possible if you are constructing or modifying the " -"configuration dictionary in code." +msgid "This is of course only possible if you are constructing or modifying the configuration dictionary in code." msgstr "" -#: ../../library/logging.config.rst:764 -msgid "" -"A string that resolves to a callable which, when called with no arguments, " -"returns the queue instance to use. That callable could be " -"a :class:`queue.Queue` subclass or a function which returns a suitable queue " -"instance, such as ``my.module.queue_factory()``." +msgid "A string that resolves to a callable which, when called with no arguments, returns the queue instance to use. That callable could be a :class:`queue.Queue` subclass or a function which returns a suitable queue instance, such as ``my.module.queue_factory()``." msgstr "" -#: ../../library/logging.config.rst:769 -msgid "" -"A dict with a ``'()'`` key which is constructed in the usual way as " -"discussed in :ref:`logging-config-dict-userdef`. The result of this " -"construction should be a :class:`queue.Queue` instance." +msgid "A dict with a ``'()'`` key which is constructed in the usual way as discussed in :ref:`logging-config-dict-userdef`. The result of this construction should be a :class:`queue.Queue` instance." msgstr "" -#: ../../library/logging.config.rst:773 -msgid "" -"If the ``queue`` key is absent, a standard unbounded :class:`queue.Queue` " -"instance is created and used." +msgid "If the ``queue`` key is absent, a standard unbounded :class:`queue.Queue` instance is created and used." msgstr "" -#: ../../library/logging.config.rst:776 -msgid "" -"If the ``listener`` key is present, the corresponding value can be one of " -"the following:" +msgid "If the ``listener`` key is present, the corresponding value can be one of the following:" msgstr "" -#: ../../library/logging.config.rst:778 -msgid "" -"A subclass of :class:`logging.handlers.QueueListener`. This is of course " -"only possible if you are constructing or modifying the configuration " -"dictionary in code." +msgid "A subclass of :class:`logging.handlers.QueueListener`. This is of course only possible if you are constructing or modifying the configuration dictionary in code." msgstr "" -#: ../../library/logging.config.rst:782 -msgid "" -"A string which resolves to a class which is a subclass of ``QueueListener``, " -"such as ``'my.package.CustomListener'``." +msgid "A string which resolves to a class which is a subclass of ``QueueListener``, such as ``'my.package.CustomListener'``." msgstr "" -#: ../../library/logging.config.rst:785 -msgid "" -"A dict with a ``'()'`` key which is constructed in the usual way as " -"discussed in :ref:`logging-config-dict-userdef`. The result of this " -"construction should be a callable with the same signature as the " -"``QueueListener`` initializer." +msgid "A dict with a ``'()'`` key which is constructed in the usual way as discussed in :ref:`logging-config-dict-userdef`. The result of this construction should be a callable with the same signature as the ``QueueListener`` initializer." msgstr "" -#: ../../library/logging.config.rst:789 -msgid "" -"If the ``listener`` key is absent, :class:`logging.handlers.QueueListener` " -"is used." +msgid "If the ``listener`` key is absent, :class:`logging.handlers.QueueListener` is used." msgstr "" -#: ../../library/logging.config.rst:791 -msgid "" -"The values under the ``handlers`` key are the names of other handlers in the " -"configuration (not shown in the above snippet) which will be passed to the " -"queue listener." +msgid "The values under the ``handlers`` key are the names of other handlers in the configuration (not shown in the above snippet) which will be passed to the queue listener." msgstr "" -#: ../../library/logging.config.rst:795 -msgid "" -"Any custom queue handler and listener classes will need to be defined with " -"the same initialization signatures " -"as :class:`~logging.handlers.QueueHandler` " -"and :class:`~logging.handlers.QueueListener`." +msgid "Any custom queue handler and listener classes will need to be defined with the same initialization signatures as :class:`~logging.handlers.QueueHandler` and :class:`~logging.handlers.QueueListener`." msgstr "" -#: ../../library/logging.config.rst:804 msgid "Configuration file format" msgstr "" -#: ../../library/logging.config.rst:806 -msgid "" -"The configuration file format understood by :func:`fileConfig` is based " -"on :mod:`configparser` functionality. The file must contain sections called " -"``[loggers]``, ``[handlers]`` and ``[formatters]`` which identify by name " -"the entities of each type which are defined in the file. For each such " -"entity, there is a separate section which identifies how that entity is " -"configured. Thus, for a logger named ``log01`` in the ``[loggers]`` " -"section, the relevant configuration details are held in a section " -"``[logger_log01]``. Similarly, a handler called ``hand01`` in the " -"``[handlers]`` section will have its configuration held in a section called " -"``[handler_hand01]``, while a formatter called ``form01`` in the " -"``[formatters]`` section will have its configuration specified in a section " -"called ``[formatter_form01]``. The root logger configuration must be " -"specified in a section called ``[logger_root]``." -msgstr "" - -#: ../../library/logging.config.rst:821 -msgid "" -"The :func:`fileConfig` API is older than the :func:`dictConfig` API and does " -"not provide functionality to cover certain aspects of logging. For example, " -"you cannot configure :class:`~logging.Filter` objects, which provide for " -"filtering of messages beyond simple integer levels, " -"using :func:`fileConfig`. If you need to have instances " -"of :class:`~logging.Filter` in your logging configuration, you will need to " -"use :func:`dictConfig`. Note that future enhancements to configuration " -"functionality will be added to :func:`dictConfig`, so it's worth considering " -"transitioning to this newer API when it's convenient to do so." -msgstr "" - -#: ../../library/logging.config.rst:831 +msgid "The configuration file format understood by :func:`fileConfig` is based on :mod:`configparser` functionality. The file must contain sections called ``[loggers]``, ``[handlers]`` and ``[formatters]`` which identify by name the entities of each type which are defined in the file. For each such entity, there is a separate section which identifies how that entity is configured. Thus, for a logger named ``log01`` in the ``[loggers]`` section, the relevant configuration details are held in a section ``[logger_log01]``. Similarly, a handler called ``hand01`` in the ``[handlers]`` section will have its configuration held in a section called ``[handler_hand01]``, while a formatter called ``form01`` in the ``[formatters]`` section will have its configuration specified in a section called ``[formatter_form01]``. The root logger configuration must be specified in a section called ``[logger_root]``." +msgstr "" + +msgid "The :func:`fileConfig` API is older than the :func:`dictConfig` API and does not provide functionality to cover certain aspects of logging. For example, you cannot configure :class:`~logging.Filter` objects, which provide for filtering of messages beyond simple integer levels, using :func:`fileConfig`. If you need to have instances of :class:`~logging.Filter` in your logging configuration, you will need to use :func:`dictConfig`. Note that future enhancements to configuration functionality will be added to :func:`dictConfig`, so it's worth considering transitioning to this newer API when it's convenient to do so." +msgstr "" + msgid "Examples of these sections in the file are given below." msgstr "" -#: ../../library/logging.config.rst:833 msgid "" "[loggers]\n" "keys=root,log02,log03,log04,log05,log06,log07\n" @@ -1153,42 +569,24 @@ msgid "" "keys=form01,form02,form03,form04,form05,form06,form07,form08,form09" msgstr "" -#: ../../library/logging.config.rst:844 -msgid "" -"The root logger must specify a level and a list of handlers. An example of a " -"root logger section is given below." +msgid "The root logger must specify a level and a list of handlers. An example of a root logger section is given below." msgstr "" -#: ../../library/logging.config.rst:847 msgid "" "[logger_root]\n" "level=NOTSET\n" "handlers=hand01" msgstr "" -#: ../../library/logging.config.rst:853 -msgid "" -"The ``level`` entry can be one of ``DEBUG, INFO, WARNING, ERROR, CRITICAL`` " -"or ``NOTSET``. For the root logger only, ``NOTSET`` means that all messages " -"will be logged. Level values are :ref:`evaluated ` in the context " -"of the ``logging`` package's namespace." +msgid "The ``level`` entry can be one of ``DEBUG, INFO, WARNING, ERROR, CRITICAL`` or ``NOTSET``. For the root logger only, ``NOTSET`` means that all messages will be logged. Level values are :ref:`evaluated ` in the context of the ``logging`` package's namespace." msgstr "" -#: ../../library/logging.config.rst:858 -msgid "" -"The ``handlers`` entry is a comma-separated list of handler names, which " -"must appear in the ``[handlers]`` section. These names must appear in the " -"``[handlers]`` section and have corresponding sections in the configuration " -"file." +msgid "The ``handlers`` entry is a comma-separated list of handler names, which must appear in the ``[handlers]`` section. These names must appear in the ``[handlers]`` section and have corresponding sections in the configuration file." msgstr "" -#: ../../library/logging.config.rst:863 -msgid "" -"For loggers other than the root logger, some additional information is " -"required. This is illustrated by the following example." +msgid "For loggers other than the root logger, some additional information is required. This is illustrated by the following example." msgstr "" -#: ../../library/logging.config.rst:866 msgid "" "[logger_parser]\n" "level=DEBUG\n" @@ -1197,26 +595,12 @@ msgid "" "qualname=compiler.parser" msgstr "" -#: ../../library/logging.config.rst:874 -msgid "" -"The ``level`` and ``handlers`` entries are interpreted as for the root " -"logger, except that if a non-root logger's level is specified as ``NOTSET``, " -"the system consults loggers higher up the hierarchy to determine the " -"effective level of the logger. The ``propagate`` entry is set to 1 to " -"indicate that messages must propagate to handlers higher up the logger " -"hierarchy from this logger, or 0 to indicate that messages are **not** " -"propagated to handlers up the hierarchy. The ``qualname`` entry is the " -"hierarchical channel name of the logger, that is to say the name used by the " -"application to get the logger." -msgstr "" - -#: ../../library/logging.config.rst:883 -msgid "" -"Sections which specify handler configuration are exemplified by the " -"following." +msgid "The ``level`` and ``handlers`` entries are interpreted as for the root logger, except that if a non-root logger's level is specified as ``NOTSET``, the system consults loggers higher up the hierarchy to determine the effective level of the logger. The ``propagate`` entry is set to 1 to indicate that messages must propagate to handlers higher up the logger hierarchy from this logger, or 0 to indicate that messages are **not** propagated to handlers up the hierarchy. The ``qualname`` entry is the hierarchical channel name of the logger, that is to say the name used by the application to get the logger." +msgstr "" + +msgid "Sections which specify handler configuration are exemplified by the following." msgstr "" -#: ../../library/logging.config.rst:885 msgid "" "[handler_hand01]\n" "class=StreamHandler\n" @@ -1225,39 +609,18 @@ msgid "" "args=(sys.stdout,)" msgstr "" -#: ../../library/logging.config.rst:893 -msgid "" -"The ``class`` entry indicates the handler's class (as determined " -"by :func:`eval` in the ``logging`` package's namespace). The ``level`` is " -"interpreted as for loggers, and ``NOTSET`` is taken to mean 'log everything'." +msgid "The ``class`` entry indicates the handler's class (as determined by :func:`eval` in the ``logging`` package's namespace). The ``level`` is interpreted as for loggers, and ``NOTSET`` is taken to mean 'log everything'." msgstr "" -#: ../../library/logging.config.rst:897 -msgid "" -"The ``formatter`` entry indicates the key name of the formatter for this " -"handler. If blank, a default formatter (``logging._defaultFormatter``) is " -"used. If a name is specified, it must appear in the ``[formatters]`` section " -"and have a corresponding section in the configuration file." +msgid "The ``formatter`` entry indicates the key name of the formatter for this handler. If blank, a default formatter (``logging._defaultFormatter``) is used. If a name is specified, it must appear in the ``[formatters]`` section and have a corresponding section in the configuration file." msgstr "" -#: ../../library/logging.config.rst:902 -msgid "" -"The ``args`` entry, when :ref:`evaluated ` in the context of the " -"``logging`` package's namespace, is the list of arguments to the constructor " -"for the handler class. Refer to the constructors for the relevant handlers, " -"or to the examples below, to see how typical entries are constructed. If not " -"provided, it defaults to ``()``." +msgid "The ``args`` entry, when :ref:`evaluated ` in the context of the ``logging`` package's namespace, is the list of arguments to the constructor for the handler class. Refer to the constructors for the relevant handlers, or to the examples below, to see how typical entries are constructed. If not provided, it defaults to ``()``." msgstr "" -#: ../../library/logging.config.rst:908 -msgid "" -"The optional ``kwargs`` entry, when :ref:`evaluated ` in the " -"context of the ``logging`` package's namespace, is the keyword argument dict " -"to the constructor for the handler class. If not provided, it defaults to " -"``{}``." +msgid "The optional ``kwargs`` entry, when :ref:`evaluated ` in the context of the ``logging`` package's namespace, is the keyword argument dict to the constructor for the handler class. If not provided, it defaults to ``{}``." msgstr "" -#: ../../library/logging.config.rst:912 msgid "" "[handler_hand02]\n" "class=FileHandler\n" @@ -1281,8 +644,7 @@ msgid "" "class=handlers.SysLogHandler\n" "level=ERROR\n" "formatter=form05\n" -"args=(('localhost', handlers.SYSLOG_UDP_PORT), " -"handlers.SysLogHandler.LOG_USER)\n" +"args=(('localhost', handlers.SYSLOG_UDP_PORT), handlers.SysLogHandler.LOG_USER)\n" "\n" "[handler_hand06]\n" "class=handlers.NTEventLogHandler\n" @@ -1294,8 +656,7 @@ msgid "" "class=handlers.SMTPHandler\n" "level=WARN\n" "formatter=form07\n" -"args=('localhost', 'from@abc', ['user1@abc', 'user2@xyz'], 'Logger " -"Subject')\n" +"args=('localhost', 'from@abc', ['user1@abc', 'user2@xyz'], 'Logger Subject')\n" "kwargs={'timeout': 10.0}\n" "\n" "[handler_hand08]\n" @@ -1313,12 +674,9 @@ msgid "" "kwargs={'secure': True}" msgstr "" -#: ../../library/logging.config.rst:965 -msgid "" -"Sections which specify formatter configuration are typified by the following." +msgid "Sections which specify formatter configuration are typified by the following." msgstr "" -#: ../../library/logging.config.rst:967 msgid "" "[formatter_form01]\n" "format=F1 %(asctime)s %(levelname)s %(message)s %(customfield)s\n" @@ -1329,41 +687,23 @@ msgid "" "class=logging.Formatter" msgstr "" -#: ../../library/logging.config.rst:977 -msgid "" -"The arguments for the formatter configuration are the same as the keys in " -"the dictionary schema :ref:`formatters section `." +msgid "The arguments for the formatter configuration are the same as the keys in the dictionary schema :ref:`formatters section `." msgstr "" -#: ../../library/logging.config.rst:981 -msgid "" -"The ``defaults`` entry, when :ref:`evaluated ` in the context of " -"the ``logging`` package's namespace, is a dictionary of default values for " -"custom formatting fields. If not provided, it defaults to ``None``." +msgid "The ``defaults`` entry, when :ref:`evaluated ` in the context of the ``logging`` package's namespace, is a dictionary of default values for custom formatting fields. If not provided, it defaults to ``None``." msgstr "" -#: ../../library/logging.config.rst:988 -msgid "" -"Due to the use of :func:`eval` as described above, there are potential " -"security risks which result from using the :func:`listen` to send and " -"receive configurations via sockets. The risks are limited to where multiple " -"users with no mutual trust run code on the same machine; see " -"the :func:`listen` documentation for more information." +msgid "Due to the use of :func:`eval` as described above, there are potential security risks which result from using the :func:`listen` to send and receive configurations via sockets. The risks are limited to where multiple users with no mutual trust run code on the same machine; see the :func:`listen` documentation for more information." msgstr "" -#: ../../library/logging.config.rst:996 msgid "Module :mod:`logging`" msgstr "" -#: ../../library/logging.config.rst:997 msgid "API reference for the logging module." msgstr "" -#: ../../library/logging.config.rst:999 msgid "Module :mod:`logging.handlers`" msgstr "" -#: ../../library/logging.config.rst:1000 msgid "Useful handlers included with the logging module." msgstr "" diff --git a/library/logging.handlers.po b/library/logging.handlers.po index 6e3dcdfd..47cba146 100644 --- a/library/logging.handlers.po +++ b/library/logging.handlers.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:09+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,1676 +23,833 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/logging.handlers.rst:2 msgid ":mod:`!logging.handlers` --- Logging handlers" msgstr "" -#: ../../library/logging.handlers.rst:10 msgid "**Source code:** :source:`Lib/logging/handlers.py`" msgstr "" -#: ../../library/logging.handlers.rst:14 -msgid "" -"This page contains only reference information. For tutorials, please see" +msgid "This page contains only reference information. For tutorials, please see" msgstr "" -#: ../../library/logging.handlers.rst:17 msgid ":ref:`Basic Tutorial `" msgstr "" -#: ../../library/logging.handlers.rst:18 msgid ":ref:`Advanced Tutorial `" msgstr "" -#: ../../library/logging.handlers.rst:19 msgid ":ref:`Logging Cookbook `" msgstr "" -#: ../../library/logging.handlers.rst:25 -msgid "" -"The following useful handlers are provided in the package. Note that three " -"of the handlers (:class:`StreamHandler`, :class:`FileHandler` " -"and :class:`NullHandler`) are actually defined in the :mod:`logging` module " -"itself, but have been documented here along with the other handlers." +msgid "The following useful handlers are provided in the package. Note that three of the handlers (:class:`StreamHandler`, :class:`FileHandler` and :class:`NullHandler`) are actually defined in the :mod:`logging` module itself, but have been documented here along with the other handlers." msgstr "" -#: ../../library/logging.handlers.rst:33 msgid "StreamHandler" msgstr "" -#: ../../library/logging.handlers.rst:35 -msgid "" -"The :class:`StreamHandler` class, located in the core :mod:`logging` " -"package, sends logging output to streams such as *sys.stdout*, *sys.stderr* " -"or any file-like object (or, more precisely, any object which " -"supports :meth:`write` and :meth:`flush` methods)." +msgid "The :class:`StreamHandler` class, located in the core :mod:`logging` package, sends logging output to streams such as *sys.stdout*, *sys.stderr* or any file-like object (or, more precisely, any object which supports :meth:`write` and :meth:`flush` methods)." msgstr "" -#: ../../library/logging.handlers.rst:43 -msgid "" -"Returns a new instance of the :class:`StreamHandler` class. If *stream* is " -"specified, the instance will use it for logging output; otherwise, " -"*sys.stderr* will be used." +msgid "Returns a new instance of the :class:`StreamHandler` class. If *stream* is specified, the instance will use it for logging output; otherwise, *sys.stderr* will be used." msgstr "" -#: ../../library/logging.handlers.rst:50 -msgid "" -"If a formatter is specified, it is used to format the record. The record is " -"then written to the stream followed by :attr:`terminator`. If exception " -"information is present, it is formatted " -"using :func:`traceback.print_exception` and appended to the stream." +msgid "If a formatter is specified, it is used to format the record. The record is then written to the stream followed by :attr:`terminator`. If exception information is present, it is formatted using :func:`traceback.print_exception` and appended to the stream." msgstr "" -#: ../../library/logging.handlers.rst:58 -msgid "" -"Flushes the stream by calling its :meth:`flush` method. Note that " -"the :meth:`close` method is inherited from :class:`~logging.Handler` and so " -"does no output, so an explicit :meth:`flush` call may be needed at times." +msgid "Flushes the stream by calling its :meth:`flush` method. Note that the :meth:`close` method is inherited from :class:`~logging.Handler` and so does no output, so an explicit :meth:`flush` call may be needed at times." msgstr "" -#: ../../library/logging.handlers.rst:64 -msgid "" -"Sets the instance's stream to the specified value, if it is different. The " -"old stream is flushed before the new stream is set." +msgid "Sets the instance's stream to the specified value, if it is different. The old stream is flushed before the new stream is set." msgstr "" -#: ../../library/logging.handlers.rst:0 msgid "Parameters" msgstr "" -#: ../../library/logging.handlers.rst:67 msgid "The stream that the handler should use." msgstr "" -#: ../../library/logging.handlers.rst:0 msgid "Returns" msgstr "" -#: ../../library/logging.handlers.rst:69 msgid "the old stream, if the stream was changed, or ``None`` if it wasn't." msgstr "" -#: ../../library/logging.handlers.rst:75 -msgid "" -"String used as the terminator when writing a formatted record to a stream. " -"Default value is ``'\\n'``." +msgid "String used as the terminator when writing a formatted record to a stream. Default value is ``'\\n'``." msgstr "" -#: ../../library/logging.handlers.rst:78 -msgid "" -"If you don't want a newline termination, you can set the handler instance's " -"``terminator`` attribute to the empty string." +msgid "If you don't want a newline termination, you can set the handler instance's ``terminator`` attribute to the empty string." msgstr "" -#: ../../library/logging.handlers.rst:81 msgid "In earlier versions, the terminator was hardcoded as ``'\\n'``." msgstr "" -#: ../../library/logging.handlers.rst:89 msgid "FileHandler" msgstr "" -#: ../../library/logging.handlers.rst:91 -msgid "" -"The :class:`FileHandler` class, located in the core :mod:`logging` package, " -"sends logging output to a disk file. It inherits the output functionality " -"from :class:`StreamHandler`." +msgid "The :class:`FileHandler` class, located in the core :mod:`logging` package, sends logging output to a disk file. It inherits the output functionality from :class:`StreamHandler`." msgstr "" -#: ../../library/logging.handlers.rst:98 -msgid "" -"Returns a new instance of the :class:`FileHandler` class. The specified file " -"is opened and used as the stream for logging. If *mode* is not specified, " -"``'a'`` is used. If *encoding* is not ``None``, it is used to open the file " -"with that encoding. If *delay* is true, then file opening is deferred until " -"the first call to :meth:`emit`. By default, the file grows indefinitely. If " -"*errors* is specified, it's used to determine how encoding errors are " -"handled." -msgstr "" - -#: ../../library/logging.handlers.rst:105 -#: ../../library/logging.handlers.rst:190 -#: ../../library/logging.handlers.rst:338 -#: ../../library/logging.handlers.rst:448 -msgid "" -"As well as string values, :class:`~pathlib.Path` objects are also accepted " -"for the *filename* argument." +msgid "Returns a new instance of the :class:`FileHandler` class. The specified file is opened and used as the stream for logging. If *mode* is not specified, ``'a'`` is used. If *encoding* is not ``None``, it is used to open the file with that encoding. If *delay* is true, then file opening is deferred until the first call to :meth:`emit`. By default, the file grows indefinitely. If *errors* is specified, it's used to determine how encoding errors are handled." +msgstr "" + +msgid "As well as string values, :class:`~pathlib.Path` objects are also accepted for the *filename* argument." msgstr "" -#: ../../library/logging.handlers.rst:109 -#: ../../library/logging.handlers.rst:194 -#: ../../library/logging.handlers.rst:342 -#: ../../library/logging.handlers.rst:452 msgid "The *errors* parameter was added." msgstr "" -#: ../../library/logging.handlers.rst:114 msgid "Closes the file." msgstr "" -#: ../../library/logging.handlers.rst:118 msgid "Outputs the record to the file." msgstr "" -#: ../../library/logging.handlers.rst:120 -msgid "" -"Note that if the file was closed due to logging shutdown at exit and the " -"file mode is 'w', the record will not be emitted (see :issue:`42378`)." +msgid "Note that if the file was closed due to logging shutdown at exit and the file mode is 'w', the record will not be emitted (see :issue:`42378`)." msgstr "" -#: ../../library/logging.handlers.rst:127 msgid "NullHandler" msgstr "" -#: ../../library/logging.handlers.rst:131 -msgid "" -"The :class:`NullHandler` class, located in the core :mod:`logging` package, " -"does not do any formatting or output. It is essentially a 'no-op' handler " -"for use by library developers." +msgid "The :class:`NullHandler` class, located in the core :mod:`logging` package, does not do any formatting or output. It is essentially a 'no-op' handler for use by library developers." msgstr "" -#: ../../library/logging.handlers.rst:137 msgid "Returns a new instance of the :class:`NullHandler` class." msgstr "" -#: ../../library/logging.handlers.rst:141 -#: ../../library/logging.handlers.rst:145 msgid "This method does nothing." msgstr "" -#: ../../library/logging.handlers.rst:149 -msgid "" -"This method returns ``None`` for the lock, since there is no underlying I/O " -"to which access needs to be serialized." +msgid "This method returns ``None`` for the lock, since there is no underlying I/O to which access needs to be serialized." msgstr "" -#: ../../library/logging.handlers.rst:153 -msgid "" -"See :ref:`library-config` for more information on how to " -"use :class:`NullHandler`." +msgid "See :ref:`library-config` for more information on how to use :class:`NullHandler`." msgstr "" -#: ../../library/logging.handlers.rst:159 msgid "WatchedFileHandler" msgstr "" -#: ../../library/logging.handlers.rst:163 -msgid "" -"The :class:`WatchedFileHandler` class, located in the :mod:`!" -"logging.handlers` module, is a :class:`FileHandler` which watches the file " -"it is logging to. If the file changes, it is closed and reopened using the " -"file name." +msgid "The :class:`WatchedFileHandler` class, located in the :mod:`!logging.handlers` module, is a :class:`FileHandler` which watches the file it is logging to. If the file changes, it is closed and reopened using the file name." msgstr "" -#: ../../library/logging.handlers.rst:167 -msgid "" -"A file change can happen because of usage of programs such as *newsyslog* " -"and *logrotate* which perform log file rotation. This handler, intended for " -"use under Unix/Linux, watches the file to see if it has changed since the " -"last emit. (A file is deemed to have changed if its device or inode have " -"changed.) If the file has changed, the old file stream is closed, and the " -"file opened to get a new stream." +msgid "A file change can happen because of usage of programs such as *newsyslog* and *logrotate* which perform log file rotation. This handler, intended for use under Unix/Linux, watches the file to see if it has changed since the last emit. (A file is deemed to have changed if its device or inode have changed.) If the file has changed, the old file stream is closed, and the file opened to get a new stream." msgstr "" -#: ../../library/logging.handlers.rst:174 -msgid "" -"This handler is not appropriate for use under Windows, because under Windows " -"open log files cannot be moved or renamed - logging opens the files with " -"exclusive locks - and so there is no need for such a handler. Furthermore, " -"*ST_INO* is not supported under Windows; :func:`~os.stat` always returns " -"zero for this value." +msgid "This handler is not appropriate for use under Windows, because under Windows open log files cannot be moved or renamed - logging opens the files with exclusive locks - and so there is no need for such a handler. Furthermore, *ST_INO* is not supported under Windows; :func:`~os.stat` always returns zero for this value." msgstr "" -#: ../../library/logging.handlers.rst:183 -msgid "" -"Returns a new instance of the :class:`WatchedFileHandler` class. The " -"specified file is opened and used as the stream for logging. If *mode* is " -"not specified, ``'a'`` is used. If *encoding* is not ``None``, it is used " -"to open the file with that encoding. If *delay* is true, then file opening " -"is deferred until the first call to :meth:`emit`. By default, the file " -"grows indefinitely. If *errors* is provided, it determines how encoding " -"errors are handled." +msgid "Returns a new instance of the :class:`WatchedFileHandler` class. The specified file is opened and used as the stream for logging. If *mode* is not specified, ``'a'`` is used. If *encoding* is not ``None``, it is used to open the file with that encoding. If *delay* is true, then file opening is deferred until the first call to :meth:`emit`. By default, the file grows indefinitely. If *errors* is provided, it determines how encoding errors are handled." msgstr "" -#: ../../library/logging.handlers.rst:199 -msgid "" -"Checks to see if the file has changed. If it has, the existing stream is " -"flushed and closed and the file opened again, typically as a precursor to " -"outputting the record to the file." +msgid "Checks to see if the file has changed. If it has, the existing stream is flushed and closed and the file opened again, typically as a precursor to outputting the record to the file." msgstr "" -#: ../../library/logging.handlers.rst:208 -msgid "" -"Outputs the record to the file, but first calls :meth:`reopenIfNeeded` to " -"reopen the file if it has changed." +msgid "Outputs the record to the file, but first calls :meth:`reopenIfNeeded` to reopen the file if it has changed." msgstr "" -#: ../../library/logging.handlers.rst:214 msgid "BaseRotatingHandler" msgstr "" -#: ../../library/logging.handlers.rst:216 -msgid "" -"The :class:`BaseRotatingHandler` class, located in the :mod:`!" -"logging.handlers` module, is the base class for the rotating file " -"handlers, :class:`RotatingFileHandler` " -"and :class:`TimedRotatingFileHandler`. You should not need to instantiate " -"this class, but it has attributes and methods you may need to override." +msgid "The :class:`BaseRotatingHandler` class, located in the :mod:`!logging.handlers` module, is the base class for the rotating file handlers, :class:`RotatingFileHandler` and :class:`TimedRotatingFileHandler`. You should not need to instantiate this class, but it has attributes and methods you may need to override." msgstr "" -#: ../../library/logging.handlers.rst:224 msgid "The parameters are as for :class:`FileHandler`. The attributes are:" msgstr "" -#: ../../library/logging.handlers.rst:228 -msgid "" -"If this attribute is set to a callable, the :meth:`rotation_filename` method " -"delegates to this callable. The parameters passed to the callable are those " -"passed to :meth:`rotation_filename`." +msgid "If this attribute is set to a callable, the :meth:`rotation_filename` method delegates to this callable. The parameters passed to the callable are those passed to :meth:`rotation_filename`." msgstr "" -#: ../../library/logging.handlers.rst:232 -msgid "" -"The namer function is called quite a few times during rollover, so it should " -"be as simple and as fast as possible. It should also return the same output " -"every time for a given input, otherwise the rollover behaviour may not work " -"as expected." +msgid "The namer function is called quite a few times during rollover, so it should be as simple and as fast as possible. It should also return the same output every time for a given input, otherwise the rollover behaviour may not work as expected." msgstr "" -#: ../../library/logging.handlers.rst:237 -msgid "" -"It's also worth noting that care should be taken when using a namer to " -"preserve certain attributes in the filename which are used during rotation. " -"For example, :class:`RotatingFileHandler` expects to have a set of log files " -"whose names contain successive integers, so that rotation works as expected, " -"and :class:`TimedRotatingFileHandler` deletes old log files (based on the " -"``backupCount`` parameter passed to the handler's initializer) by " -"determining the oldest files to delete. For this to happen, the filenames " -"should be sortable using the date/time portion of the filename, and a namer " -"needs to respect this. (If a namer is wanted that doesn't respect this " -"scheme, it will need to be used in a subclass " -"of :class:`TimedRotatingFileHandler` which overrides " -"the :meth:`~TimedRotatingFileHandler.getFilesToDelete` method to fit in with " -"the custom naming scheme.)" -msgstr "" - -#: ../../library/logging.handlers.rst:255 -msgid "" -"If this attribute is set to a callable, the :meth:`rotate` method delegates " -"to this callable. The parameters passed to the callable are those passed " -"to :meth:`rotate`." +msgid "It's also worth noting that care should be taken when using a namer to preserve certain attributes in the filename which are used during rotation. For example, :class:`RotatingFileHandler` expects to have a set of log files whose names contain successive integers, so that rotation works as expected, and :class:`TimedRotatingFileHandler` deletes old log files (based on the ``backupCount`` parameter passed to the handler's initializer) by determining the oldest files to delete. For this to happen, the filenames should be sortable using the date/time portion of the filename, and a namer needs to respect this. (If a namer is wanted that doesn't respect this scheme, it will need to be used in a subclass of :class:`TimedRotatingFileHandler` which overrides the :meth:`~TimedRotatingFileHandler.getFilesToDelete` method to fit in with the custom naming scheme.)" +msgstr "" + +msgid "If this attribute is set to a callable, the :meth:`rotate` method delegates to this callable. The parameters passed to the callable are those passed to :meth:`rotate`." msgstr "" -#: ../../library/logging.handlers.rst:263 msgid "Modify the filename of a log file when rotating." msgstr "" -#: ../../library/logging.handlers.rst:265 msgid "This is provided so that a custom filename can be provided." msgstr "" -#: ../../library/logging.handlers.rst:267 -msgid "" -"The default implementation calls the 'namer' attribute of the handler, if " -"it's callable, passing the default name to it. If the attribute isn't " -"callable (the default is ``None``), the name is returned unchanged." +msgid "The default implementation calls the 'namer' attribute of the handler, if it's callable, passing the default name to it. If the attribute isn't callable (the default is ``None``), the name is returned unchanged." msgstr "" -#: ../../library/logging.handlers.rst:271 msgid "The default name for the log file." msgstr "" -#: ../../library/logging.handlers.rst:278 msgid "When rotating, rotate the current log." msgstr "" -#: ../../library/logging.handlers.rst:280 -msgid "" -"The default implementation calls the 'rotator' attribute of the handler, if " -"it's callable, passing the source and dest arguments to it. If the attribute " -"isn't callable (the default is ``None``), the source is simply renamed to " -"the destination." +msgid "The default implementation calls the 'rotator' attribute of the handler, if it's callable, passing the source and dest arguments to it. If the attribute isn't callable (the default is ``None``), the source is simply renamed to the destination." msgstr "" -#: ../../library/logging.handlers.rst:285 -msgid "" -"The source filename. This is normally the base filename, e.g. 'test.log'." +msgid "The source filename. This is normally the base filename, e.g. 'test.log'." msgstr "" -#: ../../library/logging.handlers.rst:287 -msgid "" -"The destination filename. This is normally what the source is rotated to, " -"e.g. 'test.log.1'." +msgid "The destination filename. This is normally what the source is rotated to, e.g. 'test.log.1'." msgstr "" -#: ../../library/logging.handlers.rst:292 -msgid "" -"The reason the attributes exist is to save you having to subclass - you can " -"use the same callables for instances of :class:`RotatingFileHandler` " -"and :class:`TimedRotatingFileHandler`. If either the namer or rotator " -"callable raises an exception, this will be handled in the same way as any " -"other exception during an :meth:`emit` call, i.e. via " -"the :meth:`handleError` method of the handler." +msgid "The reason the attributes exist is to save you having to subclass - you can use the same callables for instances of :class:`RotatingFileHandler` and :class:`TimedRotatingFileHandler`. If either the namer or rotator callable raises an exception, this will be handled in the same way as any other exception during an :meth:`emit` call, i.e. via the :meth:`handleError` method of the handler." msgstr "" -#: ../../library/logging.handlers.rst:299 -msgid "" -"If you need to make more significant changes to rotation processing, you can " -"override the methods." +msgid "If you need to make more significant changes to rotation processing, you can override the methods." msgstr "" -#: ../../library/logging.handlers.rst:302 msgid "For an example, see :ref:`cookbook-rotator-namer`." msgstr "" -#: ../../library/logging.handlers.rst:308 msgid "RotatingFileHandler" msgstr "" -#: ../../library/logging.handlers.rst:310 -msgid "" -"The :class:`RotatingFileHandler` class, located in the :mod:`!" -"logging.handlers` module, supports rotation of disk log files." +msgid "The :class:`RotatingFileHandler` class, located in the :mod:`!logging.handlers` module, supports rotation of disk log files." msgstr "" -#: ../../library/logging.handlers.rst:316 -msgid "" -"Returns a new instance of the :class:`RotatingFileHandler` class. The " -"specified file is opened and used as the stream for logging. If *mode* is " -"not specified, ``'a'`` is used. If *encoding* is not ``None``, it is used " -"to open the file with that encoding. If *delay* is true, then file opening " -"is deferred until the first call to :meth:`emit`. By default, the file " -"grows indefinitely. If *errors* is provided, it determines how encoding " -"errors are handled." +msgid "Returns a new instance of the :class:`RotatingFileHandler` class. The specified file is opened and used as the stream for logging. If *mode* is not specified, ``'a'`` is used. If *encoding* is not ``None``, it is used to open the file with that encoding. If *delay* is true, then file opening is deferred until the first call to :meth:`emit`. By default, the file grows indefinitely. If *errors* is provided, it determines how encoding errors are handled." +msgstr "" + +msgid "You can use the *maxBytes* and *backupCount* values to allow the file to :dfn:`rollover` at a predetermined size. When the size is about to be exceeded, the file is closed and a new file is silently opened for output. Rollover occurs whenever the current log file is nearly *maxBytes* in length; but if either of *maxBytes* or *backupCount* is zero, rollover never occurs, so you generally want to set *backupCount* to at least 1, and have a non-zero *maxBytes*. When *backupCount* is non-zero, the system will save old log files by appending the extensions '.1', '.2' etc., to the filename. For example, with a *backupCount* of 5 and a base file name of :file:`app.log`, you would get :file:`app.log`, :file:`app.log.1`, :file:`app.log.2`, up to :file:`app.log.5`. The file being written to is always :file:`app.log`. When this file is filled, it is closed and renamed to :file:`app.log.1`, and if files :file:`app.log.1`, :file:`app.log.2`, etc. exist, then they are renamed to :file:`app.log.2`, :file:`app.log.3` etc. respectively." msgstr "" -#: ../../library/logging.handlers.rst:323 -msgid "" -"You can use the *maxBytes* and *backupCount* values to allow the file " -"to :dfn:`rollover` at a predetermined size. When the size is about to be " -"exceeded, the file is closed and a new file is silently opened for output. " -"Rollover occurs whenever the current log file is nearly *maxBytes* in " -"length; but if either of *maxBytes* or *backupCount* is zero, rollover never " -"occurs, so you generally want to set *backupCount* to at least 1, and have a " -"non-zero *maxBytes*. When *backupCount* is non-zero, the system will save " -"old log files by appending the extensions '.1', '.2' etc., to the filename. " -"For example, with a *backupCount* of 5 and a base file name " -"of :file:`app.log`, you would " -"get :file:`app.log`, :file:`app.log.1`, :file:`app.log.2`, up " -"to :file:`app.log.5`. The file being written to is always :file:`app.log`. " -"When this file is filled, it is closed and renamed to :file:`app.log.1`, and " -"if files :file:`app.log.1`, :file:`app.log.2`, etc. exist, then they are " -"renamed to :file:`app.log.2`, :file:`app.log.3` etc. respectively." -msgstr "" - -#: ../../library/logging.handlers.rst:347 -#: ../../library/logging.handlers.rst:457 msgid "Does a rollover, as described above." msgstr "" -#: ../../library/logging.handlers.rst:352 -msgid "" -"Outputs the record to the file, catering for rollover as described " -"previously." +msgid "Outputs the record to the file, catering for rollover as described previously." msgstr "" -#: ../../library/logging.handlers.rst:357 -msgid "" -"See if the supplied record would cause the file to exceed the configured " -"size limit." +msgid "See if the supplied record would cause the file to exceed the configured size limit." msgstr "" -#: ../../library/logging.handlers.rst:362 msgid "TimedRotatingFileHandler" msgstr "" -#: ../../library/logging.handlers.rst:364 -msgid "" -"The :class:`TimedRotatingFileHandler` class, located in the :mod:`!" -"logging.handlers` module, supports rotation of disk log files at certain " -"timed intervals." +msgid "The :class:`TimedRotatingFileHandler` class, located in the :mod:`!logging.handlers` module, supports rotation of disk log files at certain timed intervals." msgstr "" -#: ../../library/logging.handlers.rst:371 -msgid "" -"Returns a new instance of the :class:`TimedRotatingFileHandler` class. The " -"specified file is opened and used as the stream for logging. On rotating it " -"also sets the filename suffix. Rotating happens based on the product of " -"*when* and *interval*." +msgid "Returns a new instance of the :class:`TimedRotatingFileHandler` class. The specified file is opened and used as the stream for logging. On rotating it also sets the filename suffix. Rotating happens based on the product of *when* and *interval*." msgstr "" -#: ../../library/logging.handlers.rst:376 -msgid "" -"You can use the *when* to specify the type of *interval*. The list of " -"possible values is below. Note that they are not case sensitive." +msgid "You can use the *when* to specify the type of *interval*. The list of possible values is below. Note that they are not case sensitive." msgstr "" -#: ../../library/logging.handlers.rst:380 msgid "Value" msgstr "" -#: ../../library/logging.handlers.rst:380 msgid "Type of interval" msgstr "" -#: ../../library/logging.handlers.rst:380 msgid "If/how *atTime* is used" msgstr "" -#: ../../library/logging.handlers.rst:382 msgid "``'S'``" msgstr "" -#: ../../library/logging.handlers.rst:382 msgid "Seconds" msgstr "" -#: ../../library/logging.handlers.rst:382 -#: ../../library/logging.handlers.rst:384 -#: ../../library/logging.handlers.rst:386 -#: ../../library/logging.handlers.rst:388 msgid "Ignored" msgstr "" -#: ../../library/logging.handlers.rst:384 msgid "``'M'``" msgstr "" -#: ../../library/logging.handlers.rst:384 msgid "Minutes" msgstr "" -#: ../../library/logging.handlers.rst:386 msgid "``'H'``" msgstr "" -#: ../../library/logging.handlers.rst:386 msgid "Hours" msgstr "" -#: ../../library/logging.handlers.rst:388 msgid "``'D'``" msgstr "" -#: ../../library/logging.handlers.rst:388 msgid "Days" msgstr "" -#: ../../library/logging.handlers.rst:390 msgid "``'W0'-'W6'``" msgstr "" -#: ../../library/logging.handlers.rst:390 msgid "Weekday (0=Monday)" msgstr "" -#: ../../library/logging.handlers.rst:390 -#: ../../library/logging.handlers.rst:393 msgid "Used to compute initial rollover time" msgstr "" -#: ../../library/logging.handlers.rst:393 msgid "``'midnight'``" msgstr "" -#: ../../library/logging.handlers.rst:393 msgid "Roll over at midnight, if *atTime* not specified, else at time *atTime*" msgstr "" -#: ../../library/logging.handlers.rst:398 -msgid "" -"When using weekday-based rotation, specify 'W0' for Monday, 'W1' for " -"Tuesday, and so on up to 'W6' for Sunday. In this case, the value passed for " -"*interval* isn't used." +msgid "When using weekday-based rotation, specify 'W0' for Monday, 'W1' for Tuesday, and so on up to 'W6' for Sunday. In this case, the value passed for *interval* isn't used." msgstr "" -#: ../../library/logging.handlers.rst:402 -msgid "" -"The system will save old log files by appending extensions to the filename. " -"The extensions are date-and-time based, using the strftime format ``%Y-%m-" -"%d_%H-%M-%S`` or a leading portion thereof, depending on the rollover " -"interval." +msgid "The system will save old log files by appending extensions to the filename. The extensions are date-and-time based, using the strftime format ``%Y-%m-%d_%H-%M-%S`` or a leading portion thereof, depending on the rollover interval." msgstr "" -#: ../../library/logging.handlers.rst:407 -msgid "" -"When computing the next rollover time for the first time (when the handler " -"is created), the last modification time of an existing log file, or else the " -"current time, is used to compute when the next rotation will occur." +msgid "When computing the next rollover time for the first time (when the handler is created), the last modification time of an existing log file, or else the current time, is used to compute when the next rotation will occur." msgstr "" -#: ../../library/logging.handlers.rst:411 -msgid "" -"If the *utc* argument is true, times in UTC will be used; otherwise local " -"time is used." +msgid "If the *utc* argument is true, times in UTC will be used; otherwise local time is used." msgstr "" -#: ../../library/logging.handlers.rst:414 -msgid "" -"If *backupCount* is nonzero, at most *backupCount* files will be kept, and " -"if more would be created when rollover occurs, the oldest one is deleted. " -"The deletion logic uses the interval to determine which files to delete, so " -"changing the interval may leave old files lying around." +msgid "If *backupCount* is nonzero, at most *backupCount* files will be kept, and if more would be created when rollover occurs, the oldest one is deleted. The deletion logic uses the interval to determine which files to delete, so changing the interval may leave old files lying around." msgstr "" -#: ../../library/logging.handlers.rst:419 -msgid "" -"If *delay* is true, then file opening is deferred until the first call " -"to :meth:`emit`." +msgid "If *delay* is true, then file opening is deferred until the first call to :meth:`emit`." msgstr "" -#: ../../library/logging.handlers.rst:422 -msgid "" -"If *atTime* is not ``None``, it must be a ``datetime.time`` instance which " -"specifies the time of day when rollover occurs, for the cases where rollover " -"is set to happen \"at midnight\" or \"on a particular weekday\". Note that " -"in these cases, the *atTime* value is effectively used to compute the " -"*initial* rollover, and subsequent rollovers would be calculated via the " -"normal interval calculation." +msgid "If *atTime* is not ``None``, it must be a ``datetime.time`` instance which specifies the time of day when rollover occurs, for the cases where rollover is set to happen \"at midnight\" or \"on a particular weekday\". Note that in these cases, the *atTime* value is effectively used to compute the *initial* rollover, and subsequent rollovers would be calculated via the normal interval calculation." msgstr "" -#: ../../library/logging.handlers.rst:429 -msgid "" -"If *errors* is specified, it's used to determine how encoding errors are " -"handled." +msgid "If *errors* is specified, it's used to determine how encoding errors are handled." +msgstr "" + +msgid "Calculation of the initial rollover time is done when the handler is initialised. Calculation of subsequent rollover times is done only when rollover occurs, and rollover occurs only when emitting output. If this is not kept in mind, it might lead to some confusion. For example, if an interval of \"every minute\" is set, that does not mean you will always see log files with times (in the filename) separated by a minute; if, during application execution, logging output is generated more frequently than once a minute, *then* you can expect to see log files with times separated by a minute. If, on the other hand, logging messages are only output once every five minutes (say), then there will be gaps in the file times corresponding to the minutes where no output (and hence no rollover) occurred." msgstr "" -#: ../../library/logging.handlers.rst:432 -msgid "" -"Calculation of the initial rollover time is done when the handler is " -"initialised. Calculation of subsequent rollover times is done only when " -"rollover occurs, and rollover occurs only when emitting output. If this is " -"not kept in mind, it might lead to some confusion. For example, if an " -"interval of \"every minute\" is set, that does not mean you will always see " -"log files with times (in the filename) separated by a minute; if, during " -"application execution, logging output is generated more frequently than once " -"a minute, *then* you can expect to see log files with times separated by a " -"minute. If, on the other hand, logging messages are only output once every " -"five minutes (say), then there will be gaps in the file times corresponding " -"to the minutes where no output (and hence no rollover) occurred." -msgstr "" - -#: ../../library/logging.handlers.rst:445 msgid "*atTime* parameter was added." msgstr "" -#: ../../library/logging.handlers.rst:461 -msgid "" -"Outputs the record to the file, catering for rollover as described above." +msgid "Outputs the record to the file, catering for rollover as described above." msgstr "" -#: ../../library/logging.handlers.rst:465 -msgid "" -"Returns a list of filenames which should be deleted as part of rollover. " -"These are the absolute paths of the oldest backup log files written by the " -"handler." +msgid "Returns a list of filenames which should be deleted as part of rollover. These are the absolute paths of the oldest backup log files written by the handler." msgstr "" -#: ../../library/logging.handlers.rst:470 -msgid "" -"See if enough time has passed for a rollover to occur and if it has, compute " -"the next rollover time." +msgid "See if enough time has passed for a rollover to occur and if it has, compute the next rollover time." msgstr "" -#: ../../library/logging.handlers.rst:476 msgid "SocketHandler" msgstr "" -#: ../../library/logging.handlers.rst:478 -msgid "" -"The :class:`SocketHandler` class, located in the :mod:`!logging.handlers` " -"module, sends logging output to a network socket. The base class uses a TCP " -"socket." +msgid "The :class:`SocketHandler` class, located in the :mod:`!logging.handlers` module, sends logging output to a network socket. The base class uses a TCP socket." msgstr "" -#: ../../library/logging.handlers.rst:484 -msgid "" -"Returns a new instance of the :class:`SocketHandler` class intended to " -"communicate with a remote machine whose address is given by *host* and " -"*port*." +msgid "Returns a new instance of the :class:`SocketHandler` class intended to communicate with a remote machine whose address is given by *host* and *port*." msgstr "" -#: ../../library/logging.handlers.rst:487 -msgid "" -"If ``port`` is specified as ``None``, a Unix domain socket is created using " -"the value in ``host`` - otherwise, a TCP socket is created." +msgid "If ``port`` is specified as ``None``, a Unix domain socket is created using the value in ``host`` - otherwise, a TCP socket is created." msgstr "" -#: ../../library/logging.handlers.rst:493 msgid "Closes the socket." msgstr "" -#: ../../library/logging.handlers.rst:498 -msgid "" -"Pickles the record's attribute dictionary and writes it to the socket in " -"binary format. If there is an error with the socket, silently drops the " -"packet. If the connection was previously lost, re-establishes the " -"connection. To unpickle the record at the receiving end into " -"a :class:`~logging.LogRecord`, use the :func:`~logging.makeLogRecord` " -"function." +msgid "Pickles the record's attribute dictionary and writes it to the socket in binary format. If there is an error with the socket, silently drops the packet. If the connection was previously lost, re-establishes the connection. To unpickle the record at the receiving end into a :class:`~logging.LogRecord`, use the :func:`~logging.makeLogRecord` function." msgstr "" -#: ../../library/logging.handlers.rst:508 -msgid "" -"Handles an error which has occurred during :meth:`emit`. The most likely " -"cause is a lost connection. Closes the socket so that we can retry on the " -"next event." +msgid "Handles an error which has occurred during :meth:`emit`. The most likely cause is a lost connection. Closes the socket so that we can retry on the next event." msgstr "" -#: ../../library/logging.handlers.rst:515 -msgid "" -"This is a factory method which allows subclasses to define the precise type " -"of socket they want. The default implementation creates a TCP socket " -"(:const:`socket.SOCK_STREAM`)." +msgid "This is a factory method which allows subclasses to define the precise type of socket they want. The default implementation creates a TCP socket (:const:`socket.SOCK_STREAM`)." msgstr "" -#: ../../library/logging.handlers.rst:522 -msgid "" -"Pickles the record's attribute dictionary in binary format with a length " -"prefix, and returns it ready for transmission across the socket. The details " -"of this operation are equivalent to::" +msgid "Pickles the record's attribute dictionary in binary format with a length prefix, and returns it ready for transmission across the socket. The details of this operation are equivalent to::" msgstr "" -#: ../../library/logging.handlers.rst:526 msgid "" "data = pickle.dumps(record_attr_dict, 1)\n" "datalen = struct.pack('>L', len(data))\n" "return datalen + data" msgstr "" -#: ../../library/logging.handlers.rst:530 -msgid "" -"Note that pickles aren't completely secure. If you are concerned about " -"security, you may want to override this method to implement a more secure " -"mechanism. For example, you can sign pickles using HMAC and then verify them " -"on the receiving end, or alternatively you can disable unpickling of global " -"objects on the receiving end." +msgid "Note that pickles aren't completely secure. If you are concerned about security, you may want to override this method to implement a more secure mechanism. For example, you can sign pickles using HMAC and then verify them on the receiving end, or alternatively you can disable unpickling of global objects on the receiving end." msgstr "" -#: ../../library/logging.handlers.rst:539 -msgid "" -"Send a pickled byte-string *packet* to the socket. The format of the sent " -"byte-string is as described in the documentation " -"for :meth:`~SocketHandler.makePickle`." +msgid "Send a pickled byte-string *packet* to the socket. The format of the sent byte-string is as described in the documentation for :meth:`~SocketHandler.makePickle`." msgstr "" -#: ../../library/logging.handlers.rst:543 -msgid "" -"This function allows for partial sends, which can happen when the network is " -"busy." +msgid "This function allows for partial sends, which can happen when the network is busy." msgstr "" -#: ../../library/logging.handlers.rst:549 -msgid "" -"Tries to create a socket; on failure, uses an exponential back-off " -"algorithm. On initial failure, the handler will drop the message it was " -"trying to send. When subsequent messages are handled by the same instance, " -"it will not try connecting until some time has passed. The default " -"parameters are such that the initial delay is one second, and if after that " -"delay the connection still can't be made, the handler will double the delay " -"each time up to a maximum of 30 seconds." +msgid "Tries to create a socket; on failure, uses an exponential back-off algorithm. On initial failure, the handler will drop the message it was trying to send. When subsequent messages are handled by the same instance, it will not try connecting until some time has passed. The default parameters are such that the initial delay is one second, and if after that delay the connection still can't be made, the handler will double the delay each time up to a maximum of 30 seconds." msgstr "" -#: ../../library/logging.handlers.rst:557 msgid "This behaviour is controlled by the following handler attributes:" msgstr "" -#: ../../library/logging.handlers.rst:559 msgid "``retryStart`` (initial delay, defaulting to 1.0 seconds)." msgstr "" -#: ../../library/logging.handlers.rst:560 msgid "``retryFactor`` (multiplier, defaulting to 2.0)." msgstr "" -#: ../../library/logging.handlers.rst:561 msgid "``retryMax`` (maximum delay, defaulting to 30.0 seconds)." msgstr "" -#: ../../library/logging.handlers.rst:563 -msgid "" -"This means that if the remote listener starts up *after* the handler has " -"been used, you could lose messages (since the handler won't even attempt a " -"connection until the delay has elapsed, but just silently drop messages " -"during the delay period)." +msgid "This means that if the remote listener starts up *after* the handler has been used, you could lose messages (since the handler won't even attempt a connection until the delay has elapsed, but just silently drop messages during the delay period)." msgstr "" -#: ../../library/logging.handlers.rst:572 msgid "DatagramHandler" msgstr "" -#: ../../library/logging.handlers.rst:574 -msgid "" -"The :class:`DatagramHandler` class, located in the :mod:`!logging.handlers` " -"module, inherits from :class:`SocketHandler` to support sending logging " -"messages over UDP sockets." +msgid "The :class:`DatagramHandler` class, located in the :mod:`!logging.handlers` module, inherits from :class:`SocketHandler` to support sending logging messages over UDP sockets." msgstr "" -#: ../../library/logging.handlers.rst:581 -msgid "" -"Returns a new instance of the :class:`DatagramHandler` class intended to " -"communicate with a remote machine whose address is given by *host* and " -"*port*." +msgid "Returns a new instance of the :class:`DatagramHandler` class intended to communicate with a remote machine whose address is given by *host* and *port*." msgstr "" -#: ../../library/logging.handlers.rst:584 -msgid "" -"As UDP is not a streaming protocol, there is no persistent connection " -"between an instance of this handler and *host*. For this reason, when using " -"a network socket, a DNS lookup might have to be made each time an event is " -"logged, which can introduce some latency into the system. If this affects " -"you, you can do a lookup yourself and initialize this handler using the " -"looked-up IP address rather than the hostname." +msgid "As UDP is not a streaming protocol, there is no persistent connection between an instance of this handler and *host*. For this reason, when using a network socket, a DNS lookup might have to be made each time an event is logged, which can introduce some latency into the system. If this affects you, you can do a lookup yourself and initialize this handler using the looked-up IP address rather than the hostname." msgstr "" -#: ../../library/logging.handlers.rst:591 -msgid "" -"If ``port`` is specified as ``None``, a Unix domain socket is created using " -"the value in ``host`` - otherwise, a UDP socket is created." +msgid "If ``port`` is specified as ``None``, a Unix domain socket is created using the value in ``host`` - otherwise, a UDP socket is created." msgstr "" -#: ../../library/logging.handlers.rst:597 -msgid "" -"Pickles the record's attribute dictionary and writes it to the socket in " -"binary format. If there is an error with the socket, silently drops the " -"packet. To unpickle the record at the receiving end into " -"a :class:`~logging.LogRecord`, use the :func:`~logging.makeLogRecord` " -"function." +msgid "Pickles the record's attribute dictionary and writes it to the socket in binary format. If there is an error with the socket, silently drops the packet. To unpickle the record at the receiving end into a :class:`~logging.LogRecord`, use the :func:`~logging.makeLogRecord` function." msgstr "" -#: ../../library/logging.handlers.rst:606 -msgid "" -"The factory method of :class:`SocketHandler` is here overridden to create a " -"UDP socket (:const:`socket.SOCK_DGRAM`)." +msgid "The factory method of :class:`SocketHandler` is here overridden to create a UDP socket (:const:`socket.SOCK_DGRAM`)." msgstr "" -#: ../../library/logging.handlers.rst:612 -msgid "" -"Send a pickled byte-string to a socket. The format of the sent byte-string " -"is as described in the documentation for :meth:`SocketHandler.makePickle`." +msgid "Send a pickled byte-string to a socket. The format of the sent byte-string is as described in the documentation for :meth:`SocketHandler.makePickle`." msgstr "" -#: ../../library/logging.handlers.rst:619 msgid "SysLogHandler" msgstr "" -#: ../../library/logging.handlers.rst:621 -msgid "" -"The :class:`SysLogHandler` class, located in the :mod:`!logging.handlers` " -"module, supports sending logging messages to a remote or local Unix syslog." +msgid "The :class:`SysLogHandler` class, located in the :mod:`!logging.handlers` module, supports sending logging messages to a remote or local Unix syslog." msgstr "" -#: ../../library/logging.handlers.rst:627 -msgid "" -"Returns a new instance of the :class:`SysLogHandler` class intended to " -"communicate with a remote Unix machine whose address is given by *address* " -"in the form of a ``(host, port)`` tuple. If *address* is not specified, " -"``('localhost', 514)`` is used. The address is used to open a socket. An " -"alternative to providing a ``(host, port)`` tuple is providing an address as " -"a string, for example '/dev/log'. In this case, a Unix domain socket is used " -"to send the message to the syslog. If *facility* is not " -"specified, :const:`LOG_USER` is used. The type of socket opened depends on " -"the *socktype* argument, which defaults to :const:`socket.SOCK_DGRAM` and " -"thus opens a UDP socket. To open a TCP socket (for use with the newer syslog " -"daemons such as rsyslog), specify a value of :const:`socket.SOCK_STREAM`. If " -"*timeout* is specified, it sets a timeout (in seconds) for the socket " -"operations. This can help prevent the program from hanging indefinitely if " -"the syslog server is unreachable. By default, *timeout* is ``None``, meaning " -"no timeout is applied." -msgstr "" - -#: ../../library/logging.handlers.rst:644 -msgid "" -"Note that if your server is not listening on UDP port " -"514, :class:`SysLogHandler` may appear not to work. In that case, check what " -"address you should be using for a domain socket - it's system dependent. For " -"example, on Linux it's usually '/dev/log' but on OS/X it's '/var/run/" -"syslog'. You'll need to check your platform and use the appropriate address " -"(you may need to do this check at runtime if your application needs to run " -"on several platforms). On Windows, you pretty much have to use the UDP " -"option." +msgid "Returns a new instance of the :class:`SysLogHandler` class intended to communicate with a remote Unix machine whose address is given by *address* in the form of a ``(host, port)`` tuple. If *address* is not specified, ``('localhost', 514)`` is used. The address is used to open a socket. An alternative to providing a ``(host, port)`` tuple is providing an address as a string, for example '/dev/log'. In this case, a Unix domain socket is used to send the message to the syslog. If *facility* is not specified, :const:`LOG_USER` is used. The type of socket opened depends on the *socktype* argument, which defaults to :const:`socket.SOCK_DGRAM` and thus opens a UDP socket. To open a TCP socket (for use with the newer syslog daemons such as rsyslog), specify a value of :const:`socket.SOCK_STREAM`. If *timeout* is specified, it sets a timeout (in seconds) for the socket operations. This can help prevent the program from hanging indefinitely if the syslog server is unreachable. By default, *timeout* is ``None``, meaning no timeout is applied." msgstr "" -#: ../../library/logging.handlers.rst:653 -msgid "" -"On macOS 12.x (Monterey), Apple has changed the behaviour of their syslog " -"daemon - it no longer listens on a domain socket. Therefore, you cannot " -"expect :class:`SysLogHandler` to work on this system." +msgid "Note that if your server is not listening on UDP port 514, :class:`SysLogHandler` may appear not to work. In that case, check what address you should be using for a domain socket - it's system dependent. For example, on Linux it's usually '/dev/log' but on OS/X it's '/var/run/syslog'. You'll need to check your platform and use the appropriate address (you may need to do this check at runtime if your application needs to run on several platforms). On Windows, you pretty much have to use the UDP option." +msgstr "" + +msgid "On macOS 12.x (Monterey), Apple has changed the behaviour of their syslog daemon - it no longer listens on a domain socket. Therefore, you cannot expect :class:`SysLogHandler` to work on this system." msgstr "" -#: ../../library/logging.handlers.rst:657 msgid "See :gh:`91070` for more information." msgstr "" -#: ../../library/logging.handlers.rst:659 msgid "*socktype* was added." msgstr "" -#: ../../library/logging.handlers.rst:662 msgid "*timeout* was added." msgstr "" -#: ../../library/logging.handlers.rst:667 msgid "Closes the socket to the remote host." msgstr "" -#: ../../library/logging.handlers.rst:671 -msgid "" -"Tries to create a socket and, if it's not a datagram socket, connect it to " -"the other end. This method is called during handler initialization, but it's " -"not regarded as an error if the other end isn't listening at this point - " -"the method will be called again when emitting an event, if there is no " -"socket at that point." +msgid "Tries to create a socket and, if it's not a datagram socket, connect it to the other end. This method is called during handler initialization, but it's not regarded as an error if the other end isn't listening at this point - the method will be called again when emitting an event, if there is no socket at that point." msgstr "" -#: ../../library/logging.handlers.rst:681 -msgid "" -"The record is formatted, and then sent to the syslog server. If exception " -"information is present, it is *not* sent to the server." +msgid "The record is formatted, and then sent to the syslog server. If exception information is present, it is *not* sent to the server." msgstr "" -#: ../../library/logging.handlers.rst:684 -msgid "" -"(See: :issue:`12168`.) In earlier versions, the message sent to the syslog " -"daemons was always terminated with a NUL byte, because early versions of " -"these daemons expected a NUL terminated message - even though it's not in " -"the relevant specification (:rfc:`5424`). More recent versions of these " -"daemons don't expect the NUL byte but strip it off if it's there, and even " -"more recent daemons (which adhere more closely to RFC 5424) pass the NUL " -"byte on as part of the message." +msgid "(See: :issue:`12168`.) In earlier versions, the message sent to the syslog daemons was always terminated with a NUL byte, because early versions of these daemons expected a NUL terminated message - even though it's not in the relevant specification (:rfc:`5424`). More recent versions of these daemons don't expect the NUL byte but strip it off if it's there, and even more recent daemons (which adhere more closely to RFC 5424) pass the NUL byte on as part of the message." msgstr "" -#: ../../library/logging.handlers.rst:693 -msgid "" -"To enable easier handling of syslog messages in the face of all these " -"differing daemon behaviours, the appending of the NUL byte has been made " -"configurable, through the use of a class-level attribute, ``append_nul``. " -"This defaults to ``True`` (preserving the existing behaviour) but can be set " -"to ``False`` on a ``SysLogHandler`` instance in order for that instance to " -"*not* append the NUL terminator." +msgid "To enable easier handling of syslog messages in the face of all these differing daemon behaviours, the appending of the NUL byte has been made configurable, through the use of a class-level attribute, ``append_nul``. This defaults to ``True`` (preserving the existing behaviour) but can be set to ``False`` on a ``SysLogHandler`` instance in order for that instance to *not* append the NUL terminator." msgstr "" -#: ../../library/logging.handlers.rst:700 -msgid "" -"(See: :issue:`12419`.) In earlier versions, there was no facility for an " -"\"ident\" or \"tag\" prefix to identify the source of the message. This can " -"now be specified using a class-level attribute, defaulting to ``\"\"`` to " -"preserve existing behaviour, but which can be overridden on a " -"``SysLogHandler`` instance in order for that instance to prepend the ident " -"to every message handled. Note that the provided ident must be text, not " -"bytes, and is prepended to the message exactly as is." +msgid "(See: :issue:`12419`.) In earlier versions, there was no facility for an \"ident\" or \"tag\" prefix to identify the source of the message. This can now be specified using a class-level attribute, defaulting to ``\"\"`` to preserve existing behaviour, but which can be overridden on a ``SysLogHandler`` instance in order for that instance to prepend the ident to every message handled. Note that the provided ident must be text, not bytes, and is prepended to the message exactly as is." msgstr "" -#: ../../library/logging.handlers.rst:711 -msgid "" -"Encodes the facility and priority into an integer. You can pass in strings " -"or integers - if strings are passed, internal mapping dictionaries are used " -"to convert them to integers." +msgid "Encodes the facility and priority into an integer. You can pass in strings or integers - if strings are passed, internal mapping dictionaries are used to convert them to integers." msgstr "" -#: ../../library/logging.handlers.rst:715 -msgid "" -"The symbolic ``LOG_`` values are defined in :class:`SysLogHandler` and " -"mirror the values defined in the ``sys/syslog.h`` header file." +msgid "The symbolic ``LOG_`` values are defined in :class:`SysLogHandler` and mirror the values defined in the ``sys/syslog.h`` header file." msgstr "" -#: ../../library/logging.handlers.rst:718 msgid "**Priorities**" msgstr "" -#: ../../library/logging.handlers.rst:721 -#: ../../library/logging.handlers.rst:743 msgid "Name (string)" msgstr "" -#: ../../library/logging.handlers.rst:721 -#: ../../library/logging.handlers.rst:743 msgid "Symbolic value" msgstr "" -#: ../../library/logging.handlers.rst:723 msgid "``alert``" msgstr "" -#: ../../library/logging.handlers.rst:723 msgid "LOG_ALERT" msgstr "" -#: ../../library/logging.handlers.rst:725 msgid "``crit`` or ``critical``" msgstr "" -#: ../../library/logging.handlers.rst:725 msgid "LOG_CRIT" msgstr "" -#: ../../library/logging.handlers.rst:727 msgid "``debug``" msgstr "" -#: ../../library/logging.handlers.rst:727 msgid "LOG_DEBUG" msgstr "" -#: ../../library/logging.handlers.rst:729 msgid "``emerg`` or ``panic``" msgstr "" -#: ../../library/logging.handlers.rst:729 msgid "LOG_EMERG" msgstr "" -#: ../../library/logging.handlers.rst:731 msgid "``err`` or ``error``" msgstr "" -#: ../../library/logging.handlers.rst:731 msgid "LOG_ERR" msgstr "" -#: ../../library/logging.handlers.rst:733 msgid "``info``" msgstr "" -#: ../../library/logging.handlers.rst:733 msgid "LOG_INFO" msgstr "" -#: ../../library/logging.handlers.rst:735 msgid "``notice``" msgstr "" -#: ../../library/logging.handlers.rst:735 msgid "LOG_NOTICE" msgstr "" -#: ../../library/logging.handlers.rst:737 msgid "``warn`` or ``warning``" msgstr "" -#: ../../library/logging.handlers.rst:737 msgid "LOG_WARNING" msgstr "" -#: ../../library/logging.handlers.rst:740 msgid "**Facilities**" msgstr "" -#: ../../library/logging.handlers.rst:745 msgid "``auth``" msgstr "" -#: ../../library/logging.handlers.rst:745 msgid "LOG_AUTH" msgstr "" -#: ../../library/logging.handlers.rst:747 msgid "``authpriv``" msgstr "" -#: ../../library/logging.handlers.rst:747 msgid "LOG_AUTHPRIV" msgstr "" -#: ../../library/logging.handlers.rst:749 msgid "``cron``" msgstr "" -#: ../../library/logging.handlers.rst:749 msgid "LOG_CRON" msgstr "" -#: ../../library/logging.handlers.rst:751 msgid "``daemon``" msgstr "" -#: ../../library/logging.handlers.rst:751 msgid "LOG_DAEMON" msgstr "" -#: ../../library/logging.handlers.rst:753 msgid "``ftp``" msgstr "" -#: ../../library/logging.handlers.rst:753 msgid "LOG_FTP" msgstr "" -#: ../../library/logging.handlers.rst:755 msgid "``kern``" msgstr "" -#: ../../library/logging.handlers.rst:755 msgid "LOG_KERN" msgstr "" -#: ../../library/logging.handlers.rst:757 msgid "``lpr``" msgstr "" -#: ../../library/logging.handlers.rst:757 msgid "LOG_LPR" msgstr "" -#: ../../library/logging.handlers.rst:759 msgid "``mail``" msgstr "" -#: ../../library/logging.handlers.rst:759 msgid "LOG_MAIL" msgstr "" -#: ../../library/logging.handlers.rst:761 msgid "``news``" msgstr "" -#: ../../library/logging.handlers.rst:761 msgid "LOG_NEWS" msgstr "" -#: ../../library/logging.handlers.rst:763 msgid "``syslog``" msgstr "" -#: ../../library/logging.handlers.rst:763 msgid "LOG_SYSLOG" msgstr "" -#: ../../library/logging.handlers.rst:765 msgid "``user``" msgstr "" -#: ../../library/logging.handlers.rst:765 msgid "LOG_USER" msgstr "" -#: ../../library/logging.handlers.rst:767 msgid "``uucp``" msgstr "" -#: ../../library/logging.handlers.rst:767 msgid "LOG_UUCP" msgstr "" -#: ../../library/logging.handlers.rst:769 msgid "``local0``" msgstr "" -#: ../../library/logging.handlers.rst:769 msgid "LOG_LOCAL0" msgstr "" -#: ../../library/logging.handlers.rst:771 msgid "``local1``" msgstr "" -#: ../../library/logging.handlers.rst:771 msgid "LOG_LOCAL1" msgstr "" -#: ../../library/logging.handlers.rst:773 msgid "``local2``" msgstr "" -#: ../../library/logging.handlers.rst:773 msgid "LOG_LOCAL2" msgstr "" -#: ../../library/logging.handlers.rst:775 msgid "``local3``" msgstr "" -#: ../../library/logging.handlers.rst:775 msgid "LOG_LOCAL3" msgstr "" -#: ../../library/logging.handlers.rst:777 msgid "``local4``" msgstr "" -#: ../../library/logging.handlers.rst:777 msgid "LOG_LOCAL4" msgstr "" -#: ../../library/logging.handlers.rst:779 msgid "``local5``" msgstr "" -#: ../../library/logging.handlers.rst:779 msgid "LOG_LOCAL5" msgstr "" -#: ../../library/logging.handlers.rst:781 msgid "``local6``" msgstr "" -#: ../../library/logging.handlers.rst:781 msgid "LOG_LOCAL6" msgstr "" -#: ../../library/logging.handlers.rst:783 msgid "``local7``" msgstr "" -#: ../../library/logging.handlers.rst:783 msgid "LOG_LOCAL7" msgstr "" -#: ../../library/logging.handlers.rst:788 -msgid "" -"Maps a logging level name to a syslog priority name. You may need to " -"override this if you are using custom levels, or if the default algorithm is " -"not suitable for your needs. The default algorithm maps ``DEBUG``, ``INFO``, " -"``WARNING``, ``ERROR`` and ``CRITICAL`` to the equivalent syslog names, and " -"all other level names to 'warning'." +msgid "Maps a logging level name to a syslog priority name. You may need to override this if you are using custom levels, or if the default algorithm is not suitable for your needs. The default algorithm maps ``DEBUG``, ``INFO``, ``WARNING``, ``ERROR`` and ``CRITICAL`` to the equivalent syslog names, and all other level names to 'warning'." msgstr "" -#: ../../library/logging.handlers.rst:798 msgid "NTEventLogHandler" msgstr "" -#: ../../library/logging.handlers.rst:800 -msgid "" -"The :class:`NTEventLogHandler` class, located in the :mod:`!" -"logging.handlers` module, supports sending logging messages to a local " -"Windows NT, Windows 2000 or Windows XP event log. Before you can use it, you " -"need Mark Hammond's Win32 extensions for Python installed." +msgid "The :class:`NTEventLogHandler` class, located in the :mod:`!logging.handlers` module, supports sending logging messages to a local Windows NT, Windows 2000 or Windows XP event log. Before you can use it, you need Mark Hammond's Win32 extensions for Python installed." msgstr "" -#: ../../library/logging.handlers.rst:808 -msgid "" -"Returns a new instance of the :class:`NTEventLogHandler` class. The " -"*appname* is used to define the application name as it appears in the event " -"log. An appropriate registry entry is created using this name. The *dllname* " -"should give the fully qualified pathname of a .dll or .exe which contains " -"message definitions to hold in the log (if not specified, " -"``'win32service.pyd'`` is used - this is installed with the Win32 extensions " -"and contains some basic placeholder message definitions. Note that use of " -"these placeholders will make your event logs big, as the entire message " -"source is held in the log. If you want slimmer logs, you have to pass in the " -"name of your own .dll or .exe which contains the message definitions you " -"want to use in the event log). The *logtype* is one of ``'Application'``, " -"``'System'`` or ``'Security'``, and defaults to ``'Application'``." -msgstr "" - -#: ../../library/logging.handlers.rst:824 -msgid "" -"At this point, you can remove the application name from the registry as a " -"source of event log entries. However, if you do this, you will not be able " -"to see the events as you intended in the Event Log Viewer - it needs to be " -"able to access the registry to get the .dll name. The current version does " -"not do this." +msgid "Returns a new instance of the :class:`NTEventLogHandler` class. The *appname* is used to define the application name as it appears in the event log. An appropriate registry entry is created using this name. The *dllname* should give the fully qualified pathname of a .dll or .exe which contains message definitions to hold in the log (if not specified, ``'win32service.pyd'`` is used - this is installed with the Win32 extensions and contains some basic placeholder message definitions. Note that use of these placeholders will make your event logs big, as the entire message source is held in the log. If you want slimmer logs, you have to pass in the name of your own .dll or .exe which contains the message definitions you want to use in the event log). The *logtype* is one of ``'Application'``, ``'System'`` or ``'Security'``, and defaults to ``'Application'``." msgstr "" -#: ../../library/logging.handlers.rst:833 -msgid "" -"Determines the message ID, event category and event type, and then logs the " -"message in the NT event log." +msgid "At this point, you can remove the application name from the registry as a source of event log entries. However, if you do this, you will not be able to see the events as you intended in the Event Log Viewer - it needs to be able to access the registry to get the .dll name. The current version does not do this." msgstr "" -#: ../../library/logging.handlers.rst:839 -msgid "" -"Returns the event category for the record. Override this if you want to " -"specify your own categories. This version returns 0." +msgid "Determines the message ID, event category and event type, and then logs the message in the NT event log." msgstr "" -#: ../../library/logging.handlers.rst:845 -msgid "" -"Returns the event type for the record. Override this if you want to specify " -"your own types. This version does a mapping using the handler's typemap " -"attribute, which is set up in :meth:`__init__` to a dictionary which " -"contains mappings " -"for :const:`DEBUG`, :const:`INFO`, :const:`WARNING`, :const:`ERROR` " -"and :const:`CRITICAL`. If you are using your own levels, you will either " -"need to override this method or place a suitable dictionary in the handler's " -"*typemap* attribute." +msgid "Returns the event category for the record. Override this if you want to specify your own categories. This version returns 0." msgstr "" -#: ../../library/logging.handlers.rst:856 -msgid "" -"Returns the message ID for the record. If you are using your own messages, " -"you could do this by having the *msg* passed to the logger being an ID " -"rather than a format string. Then, in here, you could use a dictionary " -"lookup to get the message ID. This version returns 1, which is the base " -"message ID in :file:`win32service.pyd`." +msgid "Returns the event type for the record. Override this if you want to specify your own types. This version does a mapping using the handler's typemap attribute, which is set up in :meth:`__init__` to a dictionary which contains mappings for :const:`DEBUG`, :const:`INFO`, :const:`WARNING`, :const:`ERROR` and :const:`CRITICAL`. If you are using your own levels, you will either need to override this method or place a suitable dictionary in the handler's *typemap* attribute." +msgstr "" + +msgid "Returns the message ID for the record. If you are using your own messages, you could do this by having the *msg* passed to the logger being an ID rather than a format string. Then, in here, you could use a dictionary lookup to get the message ID. This version returns 1, which is the base message ID in :file:`win32service.pyd`." msgstr "" -#: ../../library/logging.handlers.rst:865 msgid "SMTPHandler" msgstr "" -#: ../../library/logging.handlers.rst:867 -msgid "" -"The :class:`SMTPHandler` class, located in the :mod:`!logging.handlers` " -"module, supports sending logging messages to an email address via SMTP." +msgid "The :class:`SMTPHandler` class, located in the :mod:`!logging.handlers` module, supports sending logging messages to an email address via SMTP." msgstr "" -#: ../../library/logging.handlers.rst:873 -msgid "" -"Returns a new instance of the :class:`SMTPHandler` class. The instance is " -"initialized with the from and to addresses and subject line of the email. " -"The *toaddrs* should be a list of strings. To specify a non-standard SMTP " -"port, use the (host, port) tuple format for the *mailhost* argument. If you " -"use a string, the standard SMTP port is used. If your SMTP server requires " -"authentication, you can specify a (username, password) tuple for the " -"*credentials* argument." +msgid "Returns a new instance of the :class:`SMTPHandler` class. The instance is initialized with the from and to addresses and subject line of the email. The *toaddrs* should be a list of strings. To specify a non-standard SMTP port, use the (host, port) tuple format for the *mailhost* argument. If you use a string, the standard SMTP port is used. If your SMTP server requires authentication, you can specify a (username, password) tuple for the *credentials* argument." msgstr "" -#: ../../library/logging.handlers.rst:880 -msgid "" -"To specify the use of a secure protocol (TLS), pass in a tuple to the " -"*secure* argument. This will only be used when authentication credentials " -"are supplied. The tuple should be either an empty tuple, or a single-value " -"tuple with the name of a keyfile, or a 2-value tuple with the names of the " -"keyfile and certificate file. (This tuple is passed to " -"the :meth:`smtplib.SMTP.starttls` method.)" +msgid "To specify the use of a secure protocol (TLS), pass in a tuple to the *secure* argument. This will only be used when authentication credentials are supplied. The tuple should be either an empty tuple, or a single-value tuple with the name of a keyfile, or a 2-value tuple with the names of the keyfile and certificate file. (This tuple is passed to the :meth:`smtplib.SMTP.starttls` method.)" msgstr "" -#: ../../library/logging.handlers.rst:887 -msgid "" -"A timeout can be specified for communication with the SMTP server using the " -"*timeout* argument." +msgid "A timeout can be specified for communication with the SMTP server using the *timeout* argument." msgstr "" -#: ../../library/logging.handlers.rst:890 msgid "Added the *timeout* parameter." msgstr "" -#: ../../library/logging.handlers.rst:895 msgid "Formats the record and sends it to the specified addressees." msgstr "" -#: ../../library/logging.handlers.rst:900 -msgid "" -"If you want to specify a subject line which is record-dependent, override " -"this method." +msgid "If you want to specify a subject line which is record-dependent, override this method." msgstr "" -#: ../../library/logging.handlers.rst:906 msgid "MemoryHandler" msgstr "" -#: ../../library/logging.handlers.rst:908 -msgid "" -"The :class:`MemoryHandler` class, located in the :mod:`!logging.handlers` " -"module, supports buffering of logging records in memory, periodically " -"flushing them to a :dfn:`target` handler. Flushing occurs whenever the " -"buffer is full, or when an event of a certain severity or greater is seen." +msgid "The :class:`MemoryHandler` class, located in the :mod:`!logging.handlers` module, supports buffering of logging records in memory, periodically flushing them to a :dfn:`target` handler. Flushing occurs whenever the buffer is full, or when an event of a certain severity or greater is seen." msgstr "" -#: ../../library/logging.handlers.rst:913 -msgid "" -":class:`MemoryHandler` is a subclass of the more " -"general :class:`BufferingHandler`, which is an abstract class. This buffers " -"logging records in memory. Whenever each record is added to the buffer, a " -"check is made by calling :meth:`shouldFlush` to see if the buffer should be " -"flushed. If it should, then :meth:`flush` is expected to do the flushing." +msgid ":class:`MemoryHandler` is a subclass of the more general :class:`BufferingHandler`, which is an abstract class. This buffers logging records in memory. Whenever each record is added to the buffer, a check is made by calling :meth:`shouldFlush` to see if the buffer should be flushed. If it should, then :meth:`flush` is expected to do the flushing." msgstr "" -#: ../../library/logging.handlers.rst:922 -msgid "" -"Initializes the handler with a buffer of the specified capacity. Here, " -"*capacity* means the number of logging records buffered." +msgid "Initializes the handler with a buffer of the specified capacity. Here, *capacity* means the number of logging records buffered." msgstr "" -#: ../../library/logging.handlers.rst:928 -msgid "" -"Append the record to the buffer. If :meth:`shouldFlush` returns true, " -"call :meth:`flush` to process the buffer." +msgid "Append the record to the buffer. If :meth:`shouldFlush` returns true, call :meth:`flush` to process the buffer." msgstr "" -#: ../../library/logging.handlers.rst:934 -msgid "" -"For a :class:`BufferingHandler` instance, flushing means that it sets the " -"buffer to an empty list. This method can be overwritten to implement more " -"useful flushing behavior." +msgid "For a :class:`BufferingHandler` instance, flushing means that it sets the buffer to an empty list. This method can be overwritten to implement more useful flushing behavior." msgstr "" -#: ../../library/logging.handlers.rst:941 -msgid "" -"Return ``True`` if the buffer is up to capacity. This method can be " -"overridden to implement custom flushing strategies." +msgid "Return ``True`` if the buffer is up to capacity. This method can be overridden to implement custom flushing strategies." msgstr "" -#: ../../library/logging.handlers.rst:947 -msgid "" -"Returns a new instance of the :class:`MemoryHandler` class. The instance is " -"initialized with a buffer size of *capacity* (number of records buffered). " -"If *flushLevel* is not specified, :const:`ERROR` is used. If no *target* is " -"specified, the target will need to be set using :meth:`setTarget` before " -"this handler does anything useful. If *flushOnClose* is specified as " -"``False``, then the buffer is *not* flushed when the handler is closed. If " -"not specified or specified as ``True``, the previous behaviour of flushing " -"the buffer will occur when the handler is closed." +msgid "Returns a new instance of the :class:`MemoryHandler` class. The instance is initialized with a buffer size of *capacity* (number of records buffered). If *flushLevel* is not specified, :const:`ERROR` is used. If no *target* is specified, the target will need to be set using :meth:`setTarget` before this handler does anything useful. If *flushOnClose* is specified as ``False``, then the buffer is *not* flushed when the handler is closed. If not specified or specified as ``True``, the previous behaviour of flushing the buffer will occur when the handler is closed." msgstr "" -#: ../../library/logging.handlers.rst:956 msgid "The *flushOnClose* parameter was added." msgstr "" -#: ../../library/logging.handlers.rst:962 msgid "Calls :meth:`flush`, sets the target to ``None`` and clears the buffer." msgstr "" -#: ../../library/logging.handlers.rst:968 -msgid "" -"For a :class:`MemoryHandler` instance, flushing means just sending the " -"buffered records to the target, if there is one. The buffer is also cleared " -"when buffered records are sent to the target. Override if you want different " -"behavior." +msgid "For a :class:`MemoryHandler` instance, flushing means just sending the buffered records to the target, if there is one. The buffer is also cleared when buffered records are sent to the target. Override if you want different behavior." msgstr "" -#: ../../library/logging.handlers.rst:975 msgid "Sets the target handler for this handler." msgstr "" -#: ../../library/logging.handlers.rst:980 msgid "Checks for buffer full or a record at the *flushLevel* or higher." msgstr "" -#: ../../library/logging.handlers.rst:986 msgid "HTTPHandler" msgstr "" -#: ../../library/logging.handlers.rst:988 -msgid "" -"The :class:`HTTPHandler` class, located in the :mod:`!logging.handlers` " -"module, supports sending logging messages to a web server, using either " -"``GET`` or ``POST`` semantics." +msgid "The :class:`HTTPHandler` class, located in the :mod:`!logging.handlers` module, supports sending logging messages to a web server, using either ``GET`` or ``POST`` semantics." +msgstr "" + +msgid "Returns a new instance of the :class:`HTTPHandler` class. The *host* can be of the form ``host:port``, should you need to use a specific port number. If no *method* is specified, ``GET`` is used. If *secure* is true, a HTTPS connection will be used. The *context* parameter may be set to a :class:`ssl.SSLContext` instance to configure the SSL settings used for the HTTPS connection. If *credentials* is specified, it should be a 2-tuple consisting of userid and password, which will be placed in a HTTP 'Authorization' header using Basic authentication. If you specify credentials, you should also specify secure=True so that your userid and password are not passed in cleartext across the wire." msgstr "" -#: ../../library/logging.handlers.rst:995 -msgid "" -"Returns a new instance of the :class:`HTTPHandler` class. The *host* can be " -"of the form ``host:port``, should you need to use a specific port number. " -"If no *method* is specified, ``GET`` is used. If *secure* is true, a HTTPS " -"connection will be used. The *context* parameter may be set to " -"a :class:`ssl.SSLContext` instance to configure the SSL settings used for " -"the HTTPS connection. If *credentials* is specified, it should be a 2-tuple " -"consisting of userid and password, which will be placed in a HTTP " -"'Authorization' header using Basic authentication. If you specify " -"credentials, you should also specify secure=True so that your userid and " -"password are not passed in cleartext across the wire." -msgstr "" - -#: ../../library/logging.handlers.rst:1006 msgid "The *context* parameter was added." msgstr "" -#: ../../library/logging.handlers.rst:1011 -msgid "" -"Provides a dictionary, based on ``record``, which is to be URL-encoded and " -"sent to the web server. The default implementation just returns " -"``record.__dict__``. This method can be overridden if e.g. only a subset " -"of :class:`~logging.LogRecord` is to be sent to the web server, or if more " -"specific customization of what's sent to the server is required." +msgid "Provides a dictionary, based on ``record``, which is to be URL-encoded and sent to the web server. The default implementation just returns ``record.__dict__``. This method can be overridden if e.g. only a subset of :class:`~logging.LogRecord` is to be sent to the web server, or if more specific customization of what's sent to the server is required." msgstr "" -#: ../../library/logging.handlers.rst:1019 -msgid "" -"Sends the record to the web server as a URL-encoded dictionary. " -"The :meth:`mapLogRecord` method is used to convert the record to the " -"dictionary to be sent." +msgid "Sends the record to the web server as a URL-encoded dictionary. The :meth:`mapLogRecord` method is used to convert the record to the dictionary to be sent." msgstr "" -#: ../../library/logging.handlers.rst:1023 -msgid "" -"Since preparing a record for sending it to a web server is not the same as a " -"generic formatting operation, using :meth:`~logging.Handler.setFormatter` to " -"specify a :class:`~logging.Formatter` for a :class:`HTTPHandler` has no " -"effect. Instead of calling :meth:`~logging.Handler.format`, this handler " -"calls :meth:`mapLogRecord` and then :func:`urllib.parse.urlencode` to encode " -"the dictionary in a form suitable for sending to a web server." +msgid "Since preparing a record for sending it to a web server is not the same as a generic formatting operation, using :meth:`~logging.Handler.setFormatter` to specify a :class:`~logging.Formatter` for a :class:`HTTPHandler` has no effect. Instead of calling :meth:`~logging.Handler.format`, this handler calls :meth:`mapLogRecord` and then :func:`urllib.parse.urlencode` to encode the dictionary in a form suitable for sending to a web server." msgstr "" -#: ../../library/logging.handlers.rst:1036 msgid "QueueHandler" msgstr "" -#: ../../library/logging.handlers.rst:1040 -msgid "" -"The :class:`QueueHandler` class, located in the :mod:`!logging.handlers` " -"module, supports sending logging messages to a queue, such as those " -"implemented in the :mod:`queue` or :mod:`multiprocessing` modules." +msgid "The :class:`QueueHandler` class, located in the :mod:`!logging.handlers` module, supports sending logging messages to a queue, such as those implemented in the :mod:`queue` or :mod:`multiprocessing` modules." msgstr "" -#: ../../library/logging.handlers.rst:1044 -msgid "" -"Along with the :class:`QueueListener` class, :class:`QueueHandler` can be " -"used to let handlers do their work on a separate thread from the one which " -"does the logging. This is important in web applications and also other " -"service applications where threads servicing clients need to respond as " -"quickly as possible, while any potentially slow operations (such as sending " -"an email via :class:`SMTPHandler`) are done on a separate thread." +msgid "Along with the :class:`QueueListener` class, :class:`QueueHandler` can be used to let handlers do their work on a separate thread from the one which does the logging. This is important in web applications and also other service applications where threads servicing clients need to respond as quickly as possible, while any potentially slow operations (such as sending an email via :class:`SMTPHandler`) are done on a separate thread." msgstr "" -#: ../../library/logging.handlers.rst:1053 -msgid "" -"Returns a new instance of the :class:`QueueHandler` class. The instance is " -"initialized with the queue to send messages to. The *queue* can be any queue-" -"like object; it's used as-is by the :meth:`enqueue` method, which needs to " -"know how to send messages to it. The queue is not *required* to have the " -"task tracking API, which means that you can use :class:`~queue.SimpleQueue` " -"instances for *queue*." +msgid "Returns a new instance of the :class:`QueueHandler` class. The instance is initialized with the queue to send messages to. The *queue* can be any queue-like object; it's used as-is by the :meth:`enqueue` method, which needs to know how to send messages to it. The queue is not *required* to have the task tracking API, which means that you can use :class:`~queue.SimpleQueue` instances for *queue*." msgstr "" -#: ../../library/logging.handlers.rst:1060 -#: ../../library/logging.handlers.rst:1158 -msgid "" -"If you are using :mod:`multiprocessing`, you should avoid " -"using :class:`~queue.SimpleQueue` and instead " -"use :class:`multiprocessing.Queue`." +msgid "If you are using :mod:`multiprocessing`, you should avoid using :class:`~queue.SimpleQueue` and instead use :class:`multiprocessing.Queue`." msgstr "" -#: ../../library/logging.handlers.rst:1065 -msgid "" -"The :mod:`multiprocessing` module uses an internal logger created and " -"accessed " -"via :meth:`~multiprocessing.get_logger`. :class:`multiprocessing.Queue` will " -"log ``DEBUG`` level messages upon items being queued. If those log messages " -"are processed by a :class:`QueueHandler` using the " -"same :class:`multiprocessing.Queue` instance, it will cause a deadlock or " -"infinite recursion." +msgid "The :mod:`multiprocessing` module uses an internal logger created and accessed via :meth:`~multiprocessing.get_logger`. :class:`multiprocessing.Queue` will log ``DEBUG`` level messages upon items being queued. If those log messages are processed by a :class:`QueueHandler` using the same :class:`multiprocessing.Queue` instance, it will cause a deadlock or infinite recursion." msgstr "" -#: ../../library/logging.handlers.rst:1074 -msgid "" -"Enqueues the result of preparing the LogRecord. Should an exception occur " -"(e.g. because a bounded queue has filled up), " -"the :meth:`~logging.Handler.handleError` method is called to handle the " -"error. This can result in the record silently being dropped " -"(if :data:`logging.raiseExceptions` is ``False``) or a message printed to " -"``sys.stderr`` (if :data:`logging.raiseExceptions` is ``True``)." +msgid "Enqueues the result of preparing the LogRecord. Should an exception occur (e.g. because a bounded queue has filled up), the :meth:`~logging.Handler.handleError` method is called to handle the error. This can result in the record silently being dropped (if :data:`logging.raiseExceptions` is ``False``) or a message printed to ``sys.stderr`` (if :data:`logging.raiseExceptions` is ``True``)." msgstr "" -#: ../../library/logging.handlers.rst:1083 -msgid "" -"Prepares a record for queuing. The object returned by this method is " -"enqueued." +msgid "Prepares a record for queuing. The object returned by this method is enqueued." msgstr "" -#: ../../library/logging.handlers.rst:1086 -msgid "" -"The base implementation formats the record to merge the message, arguments, " -"exception and stack information, if present. It also removes unpickleable " -"items from the record in-place. Specifically, it overwrites the " -"record's :attr:`msg` and :attr:`message` attributes with the merged message " -"(obtained by calling the handler's :meth:`format` method), and sets " -"the :attr:`args`, :attr:`exc_info` and :attr:`exc_text` attributes to " -"``None``." +msgid "The base implementation formats the record to merge the message, arguments, exception and stack information, if present. It also removes unpickleable items from the record in-place. Specifically, it overwrites the record's :attr:`msg` and :attr:`message` attributes with the merged message (obtained by calling the handler's :meth:`format` method), and sets the :attr:`args`, :attr:`exc_info` and :attr:`exc_text` attributes to ``None``." msgstr "" -#: ../../library/logging.handlers.rst:1094 -msgid "" -"You might want to override this method if you want to convert the record to " -"a dict or JSON string, or send a modified copy of the record while leaving " -"the original intact." +msgid "You might want to override this method if you want to convert the record to a dict or JSON string, or send a modified copy of the record while leaving the original intact." msgstr "" -#: ../../library/logging.handlers.rst:1098 -msgid "" -"The base implementation formats the message with arguments, sets the " -"``message`` and ``msg`` attributes to the formatted message and sets the " -"``args`` and ``exc_text`` attributes to ``None`` to allow pickling and to " -"prevent further attempts at formatting. This means that a handler on " -"the :class:`QueueListener` side won't have the information to do custom " -"formatting, e.g. of exceptions. You may wish to subclass ``QueueHandler`` " -"and override this method to e.g. avoid setting ``exc_text`` to ``None``. " -"Note that the ``message`` / ``msg`` / ``args`` changes are related to " -"ensuring the record is pickleable, and you might or might not be able to " -"avoid doing that depending on whether your ``args`` are pickleable. (Note " -"that you may have to consider not only your own code but also code in any " -"libraries that you use.)" -msgstr "" - -#: ../../library/logging.handlers.rst:1114 -msgid "" -"Enqueues the record on the queue using ``put_nowait()``; you may want to " -"override this if you want to use blocking behaviour, or a timeout, or a " -"customized queue implementation." +msgid "The base implementation formats the message with arguments, sets the ``message`` and ``msg`` attributes to the formatted message and sets the ``args`` and ``exc_text`` attributes to ``None`` to allow pickling and to prevent further attempts at formatting. This means that a handler on the :class:`QueueListener` side won't have the information to do custom formatting, e.g. of exceptions. You may wish to subclass ``QueueHandler`` and override this method to e.g. avoid setting ``exc_text`` to ``None``. Note that the ``message`` / ``msg`` / ``args`` changes are related to ensuring the record is pickleable, and you might or might not be able to avoid doing that depending on whether your ``args`` are pickleable. (Note that you may have to consider not only your own code but also code in any libraries that you use.)" msgstr "" -#: ../../library/logging.handlers.rst:1120 -msgid "" -"When created via configuration using :func:`~logging.config.dictConfig`, " -"this attribute will contain a :class:`QueueListener` instance for use with " -"this handler. Otherwise, it will be ``None``." +msgid "Enqueues the record on the queue using ``put_nowait()``; you may want to override this if you want to use blocking behaviour, or a timeout, or a customized queue implementation." +msgstr "" + +msgid "When created via configuration using :func:`~logging.config.dictConfig`, this attribute will contain a :class:`QueueListener` instance for use with this handler. Otherwise, it will be ``None``." msgstr "" -#: ../../library/logging.handlers.rst:1129 msgid "QueueListener" msgstr "" -#: ../../library/logging.handlers.rst:1133 -msgid "" -"The :class:`QueueListener` class, located in the :mod:`!logging.handlers` " -"module, supports receiving logging messages from a queue, such as those " -"implemented in the :mod:`queue` or :mod:`multiprocessing` modules. The " -"messages are received from a queue in an internal thread and passed, on the " -"same thread, to one or more handlers for processing. " -"While :class:`QueueListener` is not itself a handler, it is documented here " -"because it works hand-in-hand with :class:`QueueHandler`." +msgid "The :class:`QueueListener` class, located in the :mod:`!logging.handlers` module, supports receiving logging messages from a queue, such as those implemented in the :mod:`queue` or :mod:`multiprocessing` modules. The messages are received from a queue in an internal thread and passed, on the same thread, to one or more handlers for processing. While :class:`QueueListener` is not itself a handler, it is documented here because it works hand-in-hand with :class:`QueueHandler`." msgstr "" -#: ../../library/logging.handlers.rst:1141 -msgid "" -"Along with the :class:`QueueHandler` class, :class:`QueueListener` can be " -"used to let handlers do their work on a separate thread from the one which " -"does the logging. This is important in web applications and also other " -"service applications where threads servicing clients need to respond as " -"quickly as possible, while any potentially slow operations (such as sending " -"an email via :class:`SMTPHandler`) are done on a separate thread." +msgid "Along with the :class:`QueueHandler` class, :class:`QueueListener` can be used to let handlers do their work on a separate thread from the one which does the logging. This is important in web applications and also other service applications where threads servicing clients need to respond as quickly as possible, while any potentially slow operations (such as sending an email via :class:`SMTPHandler`) are done on a separate thread." msgstr "" -#: ../../library/logging.handlers.rst:1150 -msgid "" -"Returns a new instance of the :class:`QueueListener` class. The instance is " -"initialized with the queue to send messages to and a list of handlers which " -"will handle entries placed on the queue. The queue can be any queue-like " -"object; it's passed as-is to the :meth:`dequeue` method, which needs to know " -"how to get messages from it. The queue is not *required* to have the task " -"tracking API (though it's used if available), which means that you can " -"use :class:`~queue.SimpleQueue` instances for *queue*." +msgid "Returns a new instance of the :class:`QueueListener` class. The instance is initialized with the queue to send messages to and a list of handlers which will handle entries placed on the queue. The queue can be any queue-like object; it's passed as-is to the :meth:`dequeue` method, which needs to know how to get messages from it. The queue is not *required* to have the task tracking API (though it's used if available), which means that you can use :class:`~queue.SimpleQueue` instances for *queue*." msgstr "" -#: ../../library/logging.handlers.rst:1161 -msgid "" -"If ``respect_handler_level`` is ``True``, a handler's level is respected " -"(compared with the level for the message) when deciding whether to pass " -"messages to that handler; otherwise, the behaviour is as in previous Python " -"versions - to always pass each message to each handler." +msgid "If ``respect_handler_level`` is ``True``, a handler's level is respected (compared with the level for the message) when deciding whether to pass messages to that handler; otherwise, the behaviour is as in previous Python versions - to always pass each message to each handler." msgstr "" -#: ../../library/logging.handlers.rst:1166 msgid "The ``respect_handler_level`` argument was added." msgstr "" -#: ../../library/logging.handlers.rst:1169 -msgid "" -":class:`QueueListener` can now be used as a context manager " -"via :keyword:`with`. When entering the context, the listener is started. " -"When exiting the context, the listener is " -"stopped. :meth:`~contextmanager.__enter__` returns " -"the :class:`QueueListener` object." +msgid ":class:`QueueListener` can now be used as a context manager via :keyword:`with`. When entering the context, the listener is started. When exiting the context, the listener is stopped. :meth:`~contextmanager.__enter__` returns the :class:`QueueListener` object." msgstr "" -#: ../../library/logging.handlers.rst:1178 msgid "Dequeues a record and return it, optionally blocking." msgstr "" -#: ../../library/logging.handlers.rst:1180 -msgid "" -"The base implementation uses ``get()``. You may want to override this method " -"if you want to use timeouts or work with custom queue implementations." +msgid "The base implementation uses ``get()``. You may want to override this method if you want to use timeouts or work with custom queue implementations." msgstr "" -#: ../../library/logging.handlers.rst:1186 msgid "Prepare a record for handling." msgstr "" -#: ../../library/logging.handlers.rst:1188 -msgid "" -"This implementation just returns the passed-in record. You may want to " -"override this method if you need to do any custom marshalling or " -"manipulation of the record before passing it to the handlers." +msgid "This implementation just returns the passed-in record. You may want to override this method if you need to do any custom marshalling or manipulation of the record before passing it to the handlers." msgstr "" -#: ../../library/logging.handlers.rst:1194 msgid "Handle a record." msgstr "" -#: ../../library/logging.handlers.rst:1196 -msgid "" -"This just loops through the handlers offering them the record to handle. The " -"actual object passed to the handlers is that which is returned " -"from :meth:`prepare`." +msgid "This just loops through the handlers offering them the record to handle. The actual object passed to the handlers is that which is returned from :meth:`prepare`." msgstr "" -#: ../../library/logging.handlers.rst:1202 msgid "Starts the listener." msgstr "" -#: ../../library/logging.handlers.rst:1204 -msgid "" -"This starts up a background thread to monitor the queue for LogRecords to " -"process." +msgid "This starts up a background thread to monitor the queue for LogRecords to process." msgstr "" -#: ../../library/logging.handlers.rst:1207 -msgid "" -"Raises :exc:`RuntimeError` if called and the listener is already running." +msgid "Raises :exc:`RuntimeError` if called and the listener is already running." msgstr "" -#: ../../library/logging.handlers.rst:1213 msgid "Stops the listener." msgstr "" -#: ../../library/logging.handlers.rst:1215 -msgid "" -"This asks the thread to terminate, and then waits for it to do so. Note that " -"if you don't call this before your application exits, there may be some " -"records still left on the queue, which won't be processed." +msgid "This asks the thread to terminate, and then waits for it to do so. Note that if you don't call this before your application exits, there may be some records still left on the queue, which won't be processed." msgstr "" -#: ../../library/logging.handlers.rst:1221 -msgid "" -"Writes a sentinel to the queue to tell the listener to quit. This " -"implementation uses ``put_nowait()``. You may want to override this method " -"if you want to use timeouts or work with custom queue implementations." +msgid "Writes a sentinel to the queue to tell the listener to quit. This implementation uses ``put_nowait()``. You may want to override this method if you want to use timeouts or work with custom queue implementations." msgstr "" -#: ../../library/logging.handlers.rst:1231 msgid "Module :mod:`logging`" msgstr "" -#: ../../library/logging.handlers.rst:1232 msgid "API reference for the logging module." msgstr "" -#: ../../library/logging.handlers.rst:1234 msgid "Module :mod:`logging.config`" msgstr "" -#: ../../library/logging.handlers.rst:1235 msgid "Configuration API for the logging module." msgstr "" diff --git a/library/logging.po b/library/logging.po index 270c9814..bbbd56f2 100644 --- a/library/logging.po +++ b/library/logging.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:09+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,51 +24,33 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/logging.rst:2 msgid ":mod:`!logging` --- Logging facility for Python" msgstr "" -#: ../../library/logging.rst:10 msgid "**Source code:** :source:`Lib/logging/__init__.py`" msgstr "" -#: ../../library/logging.rst:16 -msgid "" -"This page contains the API reference information. For tutorial information " -"and discussion of more advanced topics, see" +msgid "This page contains the API reference information. For tutorial information and discussion of more advanced topics, see" msgstr "" -#: ../../library/logging.rst:19 msgid ":ref:`Basic Tutorial `" msgstr "" -#: ../../library/logging.rst:20 msgid ":ref:`Advanced Tutorial `" msgstr "" -#: ../../library/logging.rst:21 msgid ":ref:`Logging Cookbook `" msgstr "" -#: ../../library/logging.rst:25 -msgid "" -"This module defines functions and classes which implement a flexible event " -"logging system for applications and libraries." +msgid "This module defines functions and classes which implement a flexible event logging system for applications and libraries." msgstr "" -#: ../../library/logging.rst:28 -msgid "" -"The key benefit of having the logging API provided by a standard library " -"module is that all Python modules can participate in logging, so your " -"application log can include your own messages integrated with messages from " -"third-party modules." +msgid "The key benefit of having the logging API provided by a standard library module is that all Python modules can participate in logging, so your application log can include your own messages integrated with messages from third-party modules." msgstr "" -#: ../../library/logging.rst:33 msgid "Here's a simple example of idiomatic usage: ::" msgstr "" -#: ../../library/logging.rst:35 msgid "" "# myapp.py\n" "import logging\n" @@ -85,7 +67,6 @@ msgid "" " main()" msgstr "" -#: ../../library/logging.rst:51 msgid "" "# mylib.py\n" "import logging\n" @@ -95,355 +76,150 @@ msgid "" " logger.info('Doing something')" msgstr "" -#: ../../library/logging.rst:58 msgid "If you run *myapp.py*, you should see this in *myapp.log*:" msgstr "" -#: ../../library/logging.rst:60 msgid "" "INFO:__main__:Started\n" "INFO:mylib:Doing something\n" "INFO:__main__:Finished" msgstr "" -#: ../../library/logging.rst:66 -msgid "" -"The key feature of this idiomatic usage is that the majority of code is " -"simply creating a module level logger with ``getLogger(__name__)``, and " -"using that logger to do any needed logging. This is concise, while allowing " -"downstream code fine-grained control if needed. Logged messages to the " -"module-level logger get forwarded to handlers of loggers in higher-level " -"modules, all the way up to the highest-level logger known as the root " -"logger; this approach is known as hierarchical logging." +msgid "The key feature of this idiomatic usage is that the majority of code is simply creating a module level logger with ``getLogger(__name__)``, and using that logger to do any needed logging. This is concise, while allowing downstream code fine-grained control if needed. Logged messages to the module-level logger get forwarded to handlers of loggers in higher-level modules, all the way up to the highest-level logger known as the root logger; this approach is known as hierarchical logging." msgstr "" -#: ../../library/logging.rst:74 -msgid "" -"For logging to be useful, it needs to be configured: setting the levels and " -"destinations for each logger, potentially changing how specific modules log, " -"often based on command-line arguments or application configuration. In most " -"cases, like the one above, only the root logger needs to be so configured, " -"since all the lower level loggers at module level eventually forward their " -"messages to its handlers. :func:`~logging.basicConfig` provides a quick way " -"to configure the root logger that handles many use cases." +msgid "For logging to be useful, it needs to be configured: setting the levels and destinations for each logger, potentially changing how specific modules log, often based on command-line arguments or application configuration. In most cases, like the one above, only the root logger needs to be so configured, since all the lower level loggers at module level eventually forward their messages to its handlers. :func:`~logging.basicConfig` provides a quick way to configure the root logger that handles many use cases." msgstr "" -#: ../../library/logging.rst:82 -msgid "" -"The module provides a lot of functionality and flexibility. If you are " -"unfamiliar with logging, the best way to get to grips with it is to view the " -"tutorials (**see the links above and on the right**)." +msgid "The module provides a lot of functionality and flexibility. If you are unfamiliar with logging, the best way to get to grips with it is to view the tutorials (**see the links above and on the right**)." msgstr "" -#: ../../library/logging.rst:86 -msgid "" -"The basic classes defined by the module, together with their attributes and " -"methods, are listed in the sections below." +msgid "The basic classes defined by the module, together with their attributes and methods, are listed in the sections below." msgstr "" -#: ../../library/logging.rst:89 msgid "Loggers expose the interface that application code directly uses." msgstr "" -#: ../../library/logging.rst:90 -msgid "" -"Handlers send the log records (created by loggers) to the appropriate " -"destination." +msgid "Handlers send the log records (created by loggers) to the appropriate destination." msgstr "" -#: ../../library/logging.rst:92 -msgid "" -"Filters provide a finer grained facility for determining which log records " -"to output." +msgid "Filters provide a finer grained facility for determining which log records to output." msgstr "" -#: ../../library/logging.rst:94 msgid "Formatters specify the layout of log records in the final output." msgstr "" -#: ../../library/logging.rst:100 msgid "Logger Objects" msgstr "" -#: ../../library/logging.rst:102 -msgid "" -"Loggers have the following attributes and methods. Note that Loggers should " -"*NEVER* be instantiated directly, but always through the module-level " -"function ``logging.getLogger(name)``. Multiple calls to :func:`getLogger` " -"with the same name will always return a reference to the same Logger object." +msgid "Loggers have the following attributes and methods. Note that Loggers should *NEVER* be instantiated directly, but always through the module-level function ``logging.getLogger(name)``. Multiple calls to :func:`getLogger` with the same name will always return a reference to the same Logger object." msgstr "" -#: ../../library/logging.rst:107 -msgid "" -"The ``name`` is potentially a period-separated hierarchical value, like " -"``foo.bar.baz`` (though it could also be just plain ``foo``, for example). " -"Loggers that are further down in the hierarchical list are children of " -"loggers higher up in the list. For example, given a logger with a name of " -"``foo``, loggers with names of ``foo.bar``, ``foo.bar.baz``, and ``foo.bam`` " -"are all descendants of ``foo``. In addition, all loggers are descendants of " -"the root logger. The logger name hierarchy is analogous to the Python " -"package hierarchy, and identical to it if you organise your loggers on a per-" -"module basis using the recommended construction " -"``logging.getLogger(__name__)``. That's because in a module, ``__name__`` " -"is the module's name in the Python package namespace." -msgstr "" - -#: ../../library/logging.rst:123 -msgid "" -"This is the logger's name, and is the value that was passed " -"to :func:`getLogger` to obtain the logger." +msgid "The ``name`` is potentially a period-separated hierarchical value, like ``foo.bar.baz`` (though it could also be just plain ``foo``, for example). Loggers that are further down in the hierarchical list are children of loggers higher up in the list. For example, given a logger with a name of ``foo``, loggers with names of ``foo.bar``, ``foo.bar.baz``, and ``foo.bam`` are all descendants of ``foo``. In addition, all loggers are descendants of the root logger. The logger name hierarchy is analogous to the Python package hierarchy, and identical to it if you organise your loggers on a per-module basis using the recommended construction ``logging.getLogger(__name__)``. That's because in a module, ``__name__`` is the module's name in the Python package namespace." +msgstr "" + +msgid "This is the logger's name, and is the value that was passed to :func:`getLogger` to obtain the logger." msgstr "" -#: ../../library/logging.rst:126 ../../library/logging.rst:186 msgid "This attribute should be treated as read-only." msgstr "" -#: ../../library/logging.rst:130 msgid "The threshold of this logger, as set by the :meth:`setLevel` method." msgstr "" -#: ../../library/logging.rst:132 -msgid "" -"Do not set this attribute directly - always use :meth:`setLevel`, which has " -"checks for the level passed to it." +msgid "Do not set this attribute directly - always use :meth:`setLevel`, which has checks for the level passed to it." msgstr "" -#: ../../library/logging.rst:137 -msgid "" -"The parent logger of this logger. It may change based on later instantiation " -"of loggers which are higher up in the namespace hierarchy." +msgid "The parent logger of this logger. It may change based on later instantiation of loggers which are higher up in the namespace hierarchy." msgstr "" -#: ../../library/logging.rst:140 msgid "This value should be treated as read-only." msgstr "" -#: ../../library/logging.rst:144 -msgid "" -"If this attribute evaluates to true, events logged to this logger will be " -"passed to the handlers of higher level (ancestor) loggers, in addition to " -"any handlers attached to this logger. Messages are passed directly to the " -"ancestor loggers' handlers - neither the level nor filters of the ancestor " -"loggers in question are considered." +msgid "If this attribute evaluates to true, events logged to this logger will be passed to the handlers of higher level (ancestor) loggers, in addition to any handlers attached to this logger. Messages are passed directly to the ancestor loggers' handlers - neither the level nor filters of the ancestor loggers in question are considered." msgstr "" -#: ../../library/logging.rst:150 -msgid "" -"If this evaluates to false, logging messages are not passed to the handlers " -"of ancestor loggers." +msgid "If this evaluates to false, logging messages are not passed to the handlers of ancestor loggers." +msgstr "" + +msgid "Spelling it out with an example: If the propagate attribute of the logger named ``A.B.C`` evaluates to true, any event logged to ``A.B.C`` via a method call such as ``logging.getLogger('A.B.C').error(...)`` will [subject to passing that logger's level and filter settings] be passed in turn to any handlers attached to loggers named ``A.B``, ``A`` and the root logger, after first being passed to any handlers attached to ``A.B.C``. If any logger in the chain ``A.B.C``, ``A.B``, ``A`` has its ``propagate`` attribute set to false, then that is the last logger whose handlers are offered the event to handle, and propagation stops at that point." msgstr "" -#: ../../library/logging.rst:153 -msgid "" -"Spelling it out with an example: If the propagate attribute of the logger " -"named ``A.B.C`` evaluates to true, any event logged to ``A.B.C`` via a " -"method call such as ``logging.getLogger('A.B.C').error(...)`` will [subject " -"to passing that logger's level and filter settings] be passed in turn to any " -"handlers attached to loggers named ``A.B``, ``A`` and the root logger, after " -"first being passed to any handlers attached to ``A.B.C``. If any logger in " -"the chain ``A.B.C``, ``A.B``, ``A`` has its ``propagate`` attribute set to " -"false, then that is the last logger whose handlers are offered the event to " -"handle, and propagation stops at that point." -msgstr "" - -#: ../../library/logging.rst:162 msgid "The constructor sets this attribute to ``True``." msgstr "" -#: ../../library/logging.rst:164 -msgid "" -"If you attach a handler to a logger *and* one or more of its ancestors, it " -"may emit the same record multiple times. In general, you should not need to " -"attach a handler to more than one logger - if you just attach it to the " -"appropriate logger which is highest in the logger hierarchy, then it will " -"see all events logged by all descendant loggers, provided that their " -"propagate setting is left set to ``True``. A common scenario is to attach " -"handlers only to the root logger, and to let propagation take care of the " -"rest." +msgid "If you attach a handler to a logger *and* one or more of its ancestors, it may emit the same record multiple times. In general, you should not need to attach a handler to more than one logger - if you just attach it to the appropriate logger which is highest in the logger hierarchy, then it will see all events logged by all descendant loggers, provided that their propagate setting is left set to ``True``. A common scenario is to attach handlers only to the root logger, and to let propagation take care of the rest." msgstr "" -#: ../../library/logging.rst:175 msgid "The list of handlers directly attached to this logger instance." msgstr "" -#: ../../library/logging.rst:177 -msgid "" -"This attribute should be treated as read-only; it is normally changed via " -"the :meth:`addHandler` and :meth:`removeHandler` methods, which use locks to " -"ensure thread-safe operation." +msgid "This attribute should be treated as read-only; it is normally changed via the :meth:`addHandler` and :meth:`removeHandler` methods, which use locks to ensure thread-safe operation." msgstr "" -#: ../../library/logging.rst:183 -msgid "" -"This attribute disables handling of any events. It is set to ``False`` in " -"the initializer, and only changed by logging configuration code." +msgid "This attribute disables handling of any events. It is set to ``False`` in the initializer, and only changed by logging configuration code." msgstr "" -#: ../../library/logging.rst:190 -msgid "" -"Sets the threshold for this logger to *level*. Logging messages which are " -"less severe than *level* will be ignored; logging messages which have " -"severity *level* or higher will be emitted by whichever handler or handlers " -"service this logger, unless a handler's level has been set to a higher " -"severity level than *level*." +msgid "Sets the threshold for this logger to *level*. Logging messages which are less severe than *level* will be ignored; logging messages which have severity *level* or higher will be emitted by whichever handler or handlers service this logger, unless a handler's level has been set to a higher severity level than *level*." msgstr "" -#: ../../library/logging.rst:195 -msgid "" -"When a logger is created, the level is set to :const:`NOTSET` (which causes " -"all messages to be processed when the logger is the root logger, or " -"delegation to the parent when the logger is a non-root logger). Note that " -"the root logger is created with level :const:`WARNING`." +msgid "When a logger is created, the level is set to :const:`NOTSET` (which causes all messages to be processed when the logger is the root logger, or delegation to the parent when the logger is a non-root logger). Note that the root logger is created with level :const:`WARNING`." msgstr "" -#: ../../library/logging.rst:200 -msgid "" -"The term 'delegation to the parent' means that if a logger has a level of " -"NOTSET, its chain of ancestor loggers is traversed until either an ancestor " -"with a level other than NOTSET is found, or the root is reached." +msgid "The term 'delegation to the parent' means that if a logger has a level of NOTSET, its chain of ancestor loggers is traversed until either an ancestor with a level other than NOTSET is found, or the root is reached." msgstr "" -#: ../../library/logging.rst:204 -msgid "" -"If an ancestor is found with a level other than NOTSET, then that ancestor's " -"level is treated as the effective level of the logger where the ancestor " -"search began, and is used to determine how a logging event is handled." +msgid "If an ancestor is found with a level other than NOTSET, then that ancestor's level is treated as the effective level of the logger where the ancestor search began, and is used to determine how a logging event is handled." msgstr "" -#: ../../library/logging.rst:208 -msgid "" -"If the root is reached, and it has a level of NOTSET, then all messages will " -"be processed. Otherwise, the root's level will be used as the effective " -"level." +msgid "If the root is reached, and it has a level of NOTSET, then all messages will be processed. Otherwise, the root's level will be used as the effective level." msgstr "" -#: ../../library/logging.rst:211 ../../library/logging.rst:555 msgid "See :ref:`levels` for a list of levels." msgstr "" -#: ../../library/logging.rst:213 -msgid "" -"The *level* parameter now accepts a string representation of the level such " -"as 'INFO' as an alternative to the integer constants such as :const:`INFO`. " -"Note, however, that levels are internally stored as integers, and methods " -"such as e.g. :meth:`getEffectiveLevel` and :meth:`isEnabledFor` will return/" -"expect to be passed integers." +msgid "The *level* parameter now accepts a string representation of the level such as 'INFO' as an alternative to the integer constants such as :const:`INFO`. Note, however, that levels are internally stored as integers, and methods such as e.g. :meth:`getEffectiveLevel` and :meth:`isEnabledFor` will return/expect to be passed integers." msgstr "" -#: ../../library/logging.rst:223 -msgid "" -"Indicates if a message of severity *level* would be processed by this " -"logger. This method checks first the module-level level set by " -"``logging.disable(level)`` and then the logger's effective level as " -"determined by :meth:`getEffectiveLevel`." +msgid "Indicates if a message of severity *level* would be processed by this logger. This method checks first the module-level level set by ``logging.disable(level)`` and then the logger's effective level as determined by :meth:`getEffectiveLevel`." msgstr "" -#: ../../library/logging.rst:231 -msgid "" -"Indicates the effective level for this logger. If a value other " -"than :const:`NOTSET` has been set using :meth:`setLevel`, it is returned. " -"Otherwise, the hierarchy is traversed towards the root until a value other " -"than :const:`NOTSET` is found, and that value is returned. The value " -"returned is an integer, typically one " -"of :const:`logging.DEBUG`, :const:`logging.INFO` etc." +msgid "Indicates the effective level for this logger. If a value other than :const:`NOTSET` has been set using :meth:`setLevel`, it is returned. Otherwise, the hierarchy is traversed towards the root until a value other than :const:`NOTSET` is found, and that value is returned. The value returned is an integer, typically one of :const:`logging.DEBUG`, :const:`logging.INFO` etc." msgstr "" -#: ../../library/logging.rst:241 -msgid "" -"Returns a logger which is a descendant to this logger, as determined by the " -"suffix. Thus, ``logging.getLogger('abc').getChild('def.ghi')`` would return " -"the same logger as would be returned by " -"``logging.getLogger('abc.def.ghi')``. This is a convenience method, useful " -"when the parent logger is named using e.g. ``__name__`` rather than a " -"literal string." +msgid "Returns a logger which is a descendant to this logger, as determined by the suffix. Thus, ``logging.getLogger('abc').getChild('def.ghi')`` would return the same logger as would be returned by ``logging.getLogger('abc.def.ghi')``. This is a convenience method, useful when the parent logger is named using e.g. ``__name__`` rather than a literal string." msgstr "" -#: ../../library/logging.rst:252 -msgid "" -"Returns a set of loggers which are immediate children of this logger. So for " -"example ``logging.getLogger().getChildren()`` might return a set containing " -"loggers named ``foo`` and ``bar``, but a logger named ``foo.bar`` wouldn't " -"be included in the set. Likewise, ``logging.getLogger('foo').getChildren()`` " -"might return a set including a logger named ``foo.bar``, but it wouldn't " -"include one named ``foo.bar.baz``." +msgid "Returns a set of loggers which are immediate children of this logger. So for example ``logging.getLogger().getChildren()`` might return a set containing loggers named ``foo`` and ``bar``, but a logger named ``foo.bar`` wouldn't be included in the set. Likewise, ``logging.getLogger('foo').getChildren()`` might return a set including a logger named ``foo.bar``, but it wouldn't include one named ``foo.bar.baz``." msgstr "" -#: ../../library/logging.rst:264 -msgid "" -"Logs a message with level :const:`DEBUG` on this logger. The *msg* is the " -"message format string, and the *args* are the arguments which are merged " -"into *msg* using the string formatting operator. (Note that this means that " -"you can use keywords in the format string, together with a single dictionary " -"argument.) No % formatting operation is performed on *msg* when no *args* " -"are supplied." +msgid "Logs a message with level :const:`DEBUG` on this logger. The *msg* is the message format string, and the *args* are the arguments which are merged into *msg* using the string formatting operator. (Note that this means that you can use keywords in the format string, together with a single dictionary argument.) No % formatting operation is performed on *msg* when no *args* are supplied." msgstr "" -#: ../../library/logging.rst:270 -msgid "" -"There are four keyword arguments in *kwargs* which are inspected: " -"*exc_info*, *stack_info*, *stacklevel* and *extra*." +msgid "There are four keyword arguments in *kwargs* which are inspected: *exc_info*, *stack_info*, *stacklevel* and *extra*." msgstr "" -#: ../../library/logging.rst:273 -msgid "" -"If *exc_info* does not evaluate as false, it causes exception information to " -"be added to the logging message. If an exception tuple (in the format " -"returned by :func:`sys.exc_info`) or an exception instance is provided, it " -"is used; otherwise, :func:`sys.exc_info` is called to get the exception " -"information." +msgid "If *exc_info* does not evaluate as false, it causes exception information to be added to the logging message. If an exception tuple (in the format returned by :func:`sys.exc_info`) or an exception instance is provided, it is used; otherwise, :func:`sys.exc_info` is called to get the exception information." msgstr "" -#: ../../library/logging.rst:278 -msgid "" -"The second optional keyword argument is *stack_info*, which defaults to " -"``False``. If true, stack information is added to the logging message, " -"including the actual logging call. Note that this is not the same stack " -"information as that displayed through specifying *exc_info*: The former is " -"stack frames from the bottom of the stack up to the logging call in the " -"current thread, whereas the latter is information about stack frames which " -"have been unwound, following an exception, while searching for exception " -"handlers." +msgid "The second optional keyword argument is *stack_info*, which defaults to ``False``. If true, stack information is added to the logging message, including the actual logging call. Note that this is not the same stack information as that displayed through specifying *exc_info*: The former is stack frames from the bottom of the stack up to the logging call in the current thread, whereas the latter is information about stack frames which have been unwound, following an exception, while searching for exception handlers." msgstr "" -#: ../../library/logging.rst:287 -msgid "" -"You can specify *stack_info* independently of *exc_info*, e.g. to just show " -"how you got to a certain point in your code, even when no exceptions were " -"raised. The stack frames are printed following a header line which says:" +msgid "You can specify *stack_info* independently of *exc_info*, e.g. to just show how you got to a certain point in your code, even when no exceptions were raised. The stack frames are printed following a header line which says:" msgstr "" -#: ../../library/logging.rst:291 msgid "Stack (most recent call last):" msgstr "" -#: ../../library/logging.rst:295 -msgid "" -"This mimics the ``Traceback (most recent call last):`` which is used when " -"displaying exception frames." +msgid "This mimics the ``Traceback (most recent call last):`` which is used when displaying exception frames." msgstr "" -#: ../../library/logging.rst:298 -msgid "" -"The third optional keyword argument is *stacklevel*, which defaults to " -"``1``. If greater than 1, the corresponding number of stack frames are " -"skipped when computing the line number and function name set in " -"the :class:`LogRecord` created for the logging event. This can be used in " -"logging helpers so that the function name, filename and line number recorded " -"are not the information for the helper function/method, but rather its " -"caller. The name of this parameter mirrors the equivalent one in " -"the :mod:`warnings` module." +msgid "The third optional keyword argument is *stacklevel*, which defaults to ``1``. If greater than 1, the corresponding number of stack frames are skipped when computing the line number and function name set in the :class:`LogRecord` created for the logging event. This can be used in logging helpers so that the function name, filename and line number recorded are not the information for the helper function/method, but rather its caller. The name of this parameter mirrors the equivalent one in the :mod:`warnings` module." msgstr "" -#: ../../library/logging.rst:306 -msgid "" -"The fourth keyword argument is *extra* which can be used to pass a " -"dictionary which is used to populate the :attr:`~object.__dict__` of " -"the :class:`LogRecord` created for the logging event with user-defined " -"attributes. These custom attributes can then be used as you like. For " -"example, they could be incorporated into logged messages. For example::" +msgid "The fourth keyword argument is *extra* which can be used to pass a dictionary which is used to populate the :attr:`~object.__dict__` of the :class:`LogRecord` created for the logging event with user-defined attributes. These custom attributes can then be used as you like. For example, they could be incorporated into logged messages. For example::" msgstr "" -#: ../../library/logging.rst:313 msgid "" "FORMAT = '%(asctime)s %(clientip)-15s %(user)-8s %(message)s'\n" "logging.basicConfig(format=FORMAT)\n" @@ -452,773 +228,351 @@ msgid "" "logger.warning('Protocol problem: %s', 'connection reset', extra=d)" msgstr "" -#: ../../library/logging.rst:319 msgid "would print something like" msgstr "" -#: ../../library/logging.rst:321 -msgid "" -"2006-02-08 22:20:02,165 192.168.0.1 fbloggs Protocol problem: connection " -"reset" +msgid "2006-02-08 22:20:02,165 192.168.0.1 fbloggs Protocol problem: connection reset" msgstr "" -#: ../../library/logging.rst:325 -msgid "" -"The keys in the dictionary passed in *extra* should not clash with the keys " -"used by the logging system. (See the section on :ref:`logrecord-attributes` " -"for more information on which keys are used by the logging system.)" +msgid "The keys in the dictionary passed in *extra* should not clash with the keys used by the logging system. (See the section on :ref:`logrecord-attributes` for more information on which keys are used by the logging system.)" msgstr "" -#: ../../library/logging.rst:329 -msgid "" -"If you choose to use these attributes in logged messages, you need to " -"exercise some care. In the above example, for instance, " -"the :class:`Formatter` has been set up with a format string which expects " -"'clientip' and 'user' in the attribute dictionary of the :class:`LogRecord`. " -"If these are missing, the message will not be logged because a string " -"formatting exception will occur. So in this case, you always need to pass " -"the *extra* dictionary with these keys." +msgid "If you choose to use these attributes in logged messages, you need to exercise some care. In the above example, for instance, the :class:`Formatter` has been set up with a format string which expects 'clientip' and 'user' in the attribute dictionary of the :class:`LogRecord`. If these are missing, the message will not be logged because a string formatting exception will occur. So in this case, you always need to pass the *extra* dictionary with these keys." msgstr "" -#: ../../library/logging.rst:336 -msgid "" -"While this might be annoying, this feature is intended for use in " -"specialized circumstances, such as multi-threaded servers where the same " -"code executes in many contexts, and interesting conditions which arise are " -"dependent on this context (such as remote client IP address and " -"authenticated user name, in the above example). In such circumstances, it is " -"likely that specialized :class:`Formatter`\\ s would be used with " -"particular :class:`Handler`\\ s." +msgid "While this might be annoying, this feature is intended for use in specialized circumstances, such as multi-threaded servers where the same code executes in many contexts, and interesting conditions which arise are dependent on this context (such as remote client IP address and authenticated user name, in the above example). In such circumstances, it is likely that specialized :class:`Formatter`\\ s would be used with particular :class:`Handler`\\ s." msgstr "" -#: ../../library/logging.rst:343 -msgid "" -"If no handler is attached to this logger (or any of its ancestors, taking " -"into account the relevant :attr:`Logger.propagate` attributes), the message " -"will be sent to the handler set on :data:`lastResort`." +msgid "If no handler is attached to this logger (or any of its ancestors, taking into account the relevant :attr:`Logger.propagate` attributes), the message will be sent to the handler set on :data:`lastResort`." msgstr "" -#: ../../library/logging.rst:347 msgid "The *stack_info* parameter was added." msgstr "" -#: ../../library/logging.rst:350 msgid "The *exc_info* parameter can now accept exception instances." msgstr "" -#: ../../library/logging.rst:353 msgid "The *stacklevel* parameter was added." msgstr "" -#: ../../library/logging.rst:359 -msgid "" -"Logs a message with level :const:`INFO` on this logger. The arguments are " -"interpreted as for :meth:`debug`." +msgid "Logs a message with level :const:`INFO` on this logger. The arguments are interpreted as for :meth:`debug`." msgstr "" -#: ../../library/logging.rst:365 -msgid "" -"Logs a message with level :const:`WARNING` on this logger. The arguments are " -"interpreted as for :meth:`debug`." +msgid "Logs a message with level :const:`WARNING` on this logger. The arguments are interpreted as for :meth:`debug`." msgstr "" -#: ../../library/logging.rst:368 -msgid "" -"There is an obsolete method ``warn`` which is functionally identical to " -"``warning``. As ``warn`` is deprecated, please do not use it - use " -"``warning`` instead." +msgid "There is an obsolete method ``warn`` which is functionally identical to ``warning``. As ``warn`` is deprecated, please do not use it - use ``warning`` instead." msgstr "" -#: ../../library/logging.rst:374 -msgid "" -"Logs a message with level :const:`ERROR` on this logger. The arguments are " -"interpreted as for :meth:`debug`." +msgid "Logs a message with level :const:`ERROR` on this logger. The arguments are interpreted as for :meth:`debug`." msgstr "" -#: ../../library/logging.rst:380 -msgid "" -"Logs a message with level :const:`CRITICAL` on this logger. The arguments " -"are interpreted as for :meth:`debug`." +msgid "Logs a message with level :const:`CRITICAL` on this logger. The arguments are interpreted as for :meth:`debug`." msgstr "" -#: ../../library/logging.rst:386 -msgid "" -"Logs a message with integer level *level* on this logger. The other " -"arguments are interpreted as for :meth:`debug`." +msgid "Logs a message with integer level *level* on this logger. The other arguments are interpreted as for :meth:`debug`." msgstr "" -#: ../../library/logging.rst:392 -msgid "" -"Logs a message with level :const:`ERROR` on this logger. The arguments are " -"interpreted as for :meth:`debug`. Exception info is added to the logging " -"message. This method should only be called from an exception handler." +msgid "Logs a message with level :const:`ERROR` on this logger. The arguments are interpreted as for :meth:`debug`. Exception info is added to the logging message. This method should only be called from an exception handler." msgstr "" -#: ../../library/logging.rst:399 msgid "Adds the specified filter *filter* to this logger." msgstr "" -#: ../../library/logging.rst:404 msgid "Removes the specified filter *filter* from this logger." msgstr "" -#: ../../library/logging.rst:409 -msgid "" -"Apply this logger's filters to the record and return ``True`` if the record " -"is to be processed. The filters are consulted in turn, until one of them " -"returns a false value. If none of them return a false value, the record will " -"be processed (passed to handlers). If one returns a false value, no further " -"processing of the record occurs." +msgid "Apply this logger's filters to the record and return ``True`` if the record is to be processed. The filters are consulted in turn, until one of them returns a false value. If none of them return a false value, the record will be processed (passed to handlers). If one returns a false value, no further processing of the record occurs." msgstr "" -#: ../../library/logging.rst:418 msgid "Adds the specified handler *hdlr* to this logger." msgstr "" -#: ../../library/logging.rst:423 msgid "Removes the specified handler *hdlr* from this logger." msgstr "" -#: ../../library/logging.rst:428 -msgid "" -"Finds the caller's source filename and line number. Returns the filename, " -"line number, function name and stack information as a 4-element tuple. The " -"stack information is returned as ``None`` unless *stack_info* is ``True``." +msgid "Finds the caller's source filename and line number. Returns the filename, line number, function name and stack information as a 4-element tuple. The stack information is returned as ``None`` unless *stack_info* is ``True``." msgstr "" -#: ../../library/logging.rst:432 -msgid "" -"The *stacklevel* parameter is passed from code calling the :meth:`debug` and " -"other APIs. If greater than 1, the excess is used to skip stack frames " -"before determining the values to be returned. This will generally be useful " -"when calling logging APIs from helper/wrapper code, so that the information " -"in the event log refers not to the helper/wrapper code, but to the code that " -"calls it." +msgid "The *stacklevel* parameter is passed from code calling the :meth:`debug` and other APIs. If greater than 1, the excess is used to skip stack frames before determining the values to be returned. This will generally be useful when calling logging APIs from helper/wrapper code, so that the information in the event log refers not to the helper/wrapper code, but to the code that calls it." msgstr "" -#: ../../library/logging.rst:442 -msgid "" -"Handles a record by passing it to all handlers associated with this logger " -"and its ancestors (until a false value of *propagate* is found). This method " -"is used for unpickled records received from a socket, as well as those " -"created locally. Logger-level filtering is applied " -"using :meth:`~Logger.filter`." +msgid "Handles a record by passing it to all handlers associated with this logger and its ancestors (until a false value of *propagate* is found). This method is used for unpickled records received from a socket, as well as those created locally. Logger-level filtering is applied using :meth:`~Logger.filter`." msgstr "" -#: ../../library/logging.rst:450 -msgid "" -"This is a factory method which can be overridden in subclasses to create " -"specialized :class:`LogRecord` instances." +msgid "This is a factory method which can be overridden in subclasses to create specialized :class:`LogRecord` instances." msgstr "" -#: ../../library/logging.rst:455 -msgid "" -"Checks to see if this logger has any handlers configured. This is done by " -"looking for handlers in this logger and its parents in the logger hierarchy. " -"Returns ``True`` if a handler was found, else ``False``. The method stops " -"searching up the hierarchy whenever a logger with the 'propagate' attribute " -"set to false is found - that will be the last logger which is checked for " -"the existence of handlers." +msgid "Checks to see if this logger has any handlers configured. This is done by looking for handlers in this logger and its parents in the logger hierarchy. Returns ``True`` if a handler was found, else ``False``. The method stops searching up the hierarchy whenever a logger with the 'propagate' attribute set to false is found - that will be the last logger which is checked for the existence of handlers." msgstr "" -#: ../../library/logging.rst:464 msgid "Loggers can now be pickled and unpickled." msgstr "" -#: ../../library/logging.rst:470 msgid "Logging Levels" msgstr "" -#: ../../library/logging.rst:472 -msgid "" -"The numeric values of logging levels are given in the following table. These " -"are primarily of interest if you want to define your own levels, and need " -"them to have specific values relative to the predefined levels. If you " -"define a level with the same numeric value, it overwrites the predefined " -"value; the predefined name is lost." +msgid "The numeric values of logging levels are given in the following table. These are primarily of interest if you want to define your own levels, and need them to have specific values relative to the predefined levels. If you define a level with the same numeric value, it overwrites the predefined value; the predefined name is lost." msgstr "" -#: ../../library/logging.rst:479 msgid "Level" msgstr "" -#: ../../library/logging.rst:479 msgid "Numeric value" msgstr "" -#: ../../library/logging.rst:479 msgid "What it means / When to use it" msgstr "" -#: ../../library/logging.rst:481 msgid "0" msgstr "" -#: ../../library/logging.rst:481 -msgid "" -"When set on a logger, indicates that ancestor loggers are to be consulted to " -"determine the effective level. If that still resolves to :const:`!NOTSET`, " -"then all events are logged. When set on a handler, all events are handled." +msgid "When set on a logger, indicates that ancestor loggers are to be consulted to determine the effective level. If that still resolves to :const:`!NOTSET`, then all events are logged. When set on a handler, all events are handled." msgstr "" -#: ../../library/logging.rst:489 msgid "10" msgstr "" -#: ../../library/logging.rst:489 -msgid "" -"Detailed information, typically only of interest to a developer trying to " -"diagnose a problem." +msgid "Detailed information, typically only of interest to a developer trying to diagnose a problem." msgstr "" -#: ../../library/logging.rst:493 msgid "20" msgstr "" -#: ../../library/logging.rst:493 msgid "Confirmation that things are working as expected." msgstr "" -#: ../../library/logging.rst:496 msgid "30" msgstr "" -#: ../../library/logging.rst:496 -msgid "" -"An indication that something unexpected happened, or that a problem might " -"occur in the near future (e.g. 'disk space low'). The software is still " -"working as expected." +msgid "An indication that something unexpected happened, or that a problem might occur in the near future (e.g. 'disk space low'). The software is still working as expected." msgstr "" -#: ../../library/logging.rst:503 msgid "40" msgstr "" -#: ../../library/logging.rst:503 -msgid "" -"Due to a more serious problem, the software has not been able to perform " -"some function." +msgid "Due to a more serious problem, the software has not been able to perform some function." msgstr "" -#: ../../library/logging.rst:507 msgid "50" msgstr "" -#: ../../library/logging.rst:507 -msgid "" -"A serious error, indicating that the program itself may be unable to " -"continue running." +msgid "A serious error, indicating that the program itself may be unable to continue running." msgstr "" -#: ../../library/logging.rst:516 msgid "Handler Objects" msgstr "" -#: ../../library/logging.rst:518 -msgid "" -"Handlers have the following attributes and methods. Note " -"that :class:`Handler` is never instantiated directly; this class acts as a " -"base for more useful subclasses. However, the :meth:`!__init__` method in " -"subclasses needs to call :meth:`Handler.__init__`." +msgid "Handlers have the following attributes and methods. Note that :class:`Handler` is never instantiated directly; this class acts as a base for more useful subclasses. However, the :meth:`!__init__` method in subclasses needs to call :meth:`Handler.__init__`." msgstr "" -#: ../../library/logging.rst:527 -msgid "" -"Initializes the :class:`Handler` instance by setting its level, setting the " -"list of filters to the empty list and creating a lock " -"(using :meth:`createLock`) for serializing access to an I/O mechanism." +msgid "Initializes the :class:`Handler` instance by setting its level, setting the list of filters to the empty list and creating a lock (using :meth:`createLock`) for serializing access to an I/O mechanism." msgstr "" -#: ../../library/logging.rst:534 -msgid "" -"Initializes a thread lock which can be used to serialize access to " -"underlying I/O functionality which may not be threadsafe." +msgid "Initializes a thread lock which can be used to serialize access to underlying I/O functionality which may not be threadsafe." msgstr "" -#: ../../library/logging.rst:540 msgid "Acquires the thread lock created with :meth:`createLock`." msgstr "" -#: ../../library/logging.rst:545 msgid "Releases the thread lock acquired with :meth:`acquire`." msgstr "" -#: ../../library/logging.rst:550 -msgid "" -"Sets the threshold for this handler to *level*. Logging messages which are " -"less severe than *level* will be ignored. When a handler is created, the " -"level is set to :const:`NOTSET` (which causes all messages to be processed)." +msgid "Sets the threshold for this handler to *level*. Logging messages which are less severe than *level* will be ignored. When a handler is created, the level is set to :const:`NOTSET` (which causes all messages to be processed)." msgstr "" -#: ../../library/logging.rst:557 -msgid "" -"The *level* parameter now accepts a string representation of the level such " -"as 'INFO' as an alternative to the integer constants such as :const:`INFO`." +msgid "The *level* parameter now accepts a string representation of the level such as 'INFO' as an alternative to the integer constants such as :const:`INFO`." msgstr "" -#: ../../library/logging.rst:565 -msgid "" -"Sets the formatter for this handler to *fmt*. The *fmt* argument must be " -"a :class:`Formatter` instance or ``None``." +msgid "Sets the formatter for this handler to *fmt*. The *fmt* argument must be a :class:`Formatter` instance or ``None``." msgstr "" -#: ../../library/logging.rst:571 msgid "Adds the specified filter *filter* to this handler." msgstr "" -#: ../../library/logging.rst:576 msgid "Removes the specified filter *filter* from this handler." msgstr "" -#: ../../library/logging.rst:581 -msgid "" -"Apply this handler's filters to the record and return ``True`` if the record " -"is to be processed. The filters are consulted in turn, until one of them " -"returns a false value. If none of them return a false value, the record will " -"be emitted. If one returns a false value, the handler will not emit the " -"record." +msgid "Apply this handler's filters to the record and return ``True`` if the record is to be processed. The filters are consulted in turn, until one of them returns a false value. If none of them return a false value, the record will be emitted. If one returns a false value, the handler will not emit the record." msgstr "" -#: ../../library/logging.rst:590 -msgid "" -"Ensure all logging output has been flushed. This version does nothing and is " -"intended to be implemented by subclasses." +msgid "Ensure all logging output has been flushed. This version does nothing and is intended to be implemented by subclasses." msgstr "" -#: ../../library/logging.rst:596 -msgid "" -"Tidy up any resources used by the handler. This version does no output but " -"removes the handler from an internal map of handlers, which is used for " -"handler lookup by name." +msgid "Tidy up any resources used by the handler. This version does no output but removes the handler from an internal map of handlers, which is used for handler lookup by name." msgstr "" -#: ../../library/logging.rst:600 -msgid "" -"Subclasses should ensure that this gets called from overridden :meth:`close` " -"methods." +msgid "Subclasses should ensure that this gets called from overridden :meth:`close` methods." msgstr "" -#: ../../library/logging.rst:606 -msgid "" -"Conditionally emits the specified logging record, depending on filters which " -"may have been added to the handler. Wraps the actual emission of the record " -"with acquisition/release of the I/O thread lock." +msgid "Conditionally emits the specified logging record, depending on filters which may have been added to the handler. Wraps the actual emission of the record with acquisition/release of the I/O thread lock." msgstr "" -#: ../../library/logging.rst:613 -msgid "" -"This method should be called from handlers when an exception is encountered " -"during an :meth:`emit` call. If the module-level " -"attribute :data:`raiseExceptions` is ``False``, exceptions get silently " -"ignored. This is what is mostly wanted for a logging system - most users " -"will not care about errors in the logging system, they are more interested " -"in application errors. You could, however, replace this with a custom " -"handler if you wish. The specified record is the one which was being " -"processed when the exception occurred. (The default value " -"of :data:`raiseExceptions` is ``True``, as that is more useful during " -"development)." -msgstr "" - -#: ../../library/logging.rst:626 -msgid "" -"Do formatting for a record - if a formatter is set, use it. Otherwise, use " -"the default formatter for the module." +msgid "This method should be called from handlers when an exception is encountered during an :meth:`emit` call. If the module-level attribute :data:`raiseExceptions` is ``False``, exceptions get silently ignored. This is what is mostly wanted for a logging system - most users will not care about errors in the logging system, they are more interested in application errors. You could, however, replace this with a custom handler if you wish. The specified record is the one which was being processed when the exception occurred. (The default value of :data:`raiseExceptions` is ``True``, as that is more useful during development)." msgstr "" -#: ../../library/logging.rst:632 -msgid "" -"Do whatever it takes to actually log the specified logging record. This " -"version is intended to be implemented by subclasses and so raises " -"a :exc:`NotImplementedError`." +msgid "Do formatting for a record - if a formatter is set, use it. Otherwise, use the default formatter for the module." msgstr "" -#: ../../library/logging.rst:636 -msgid "" -"This method is called after a handler-level lock is acquired, which is " -"released after this method returns. When you override this method, note that " -"you should be careful when calling anything that invokes other parts of the " -"logging API which might do locking, because that might result in a deadlock. " -"Specifically:" +msgid "Do whatever it takes to actually log the specified logging record. This version is intended to be implemented by subclasses and so raises a :exc:`NotImplementedError`." msgstr "" -#: ../../library/logging.rst:642 -msgid "" -"Logging configuration APIs acquire the module-level lock, and then " -"individual handler-level locks as those handlers are configured." +msgid "This method is called after a handler-level lock is acquired, which is released after this method returns. When you override this method, note that you should be careful when calling anything that invokes other parts of the logging API which might do locking, because that might result in a deadlock. Specifically:" msgstr "" -#: ../../library/logging.rst:645 -msgid "" -"Many logging APIs lock the module-level lock. If such an API is called from " -"this method, it could cause a deadlock if a configuration call is made on " -"another thread, because that thread will try to acquire the module-level " -"lock *before* the handler-level lock, whereas this thread tries to acquire " -"the module-level lock *after* the handler-level lock (because in this " -"method, the handler-level lock has already been acquired)." +msgid "Logging configuration APIs acquire the module-level lock, and then individual handler-level locks as those handlers are configured." msgstr "" -#: ../../library/logging.rst:652 -msgid "" -"For a list of handlers included as standard, see :mod:`logging.handlers`." +msgid "Many logging APIs lock the module-level lock. If such an API is called from this method, it could cause a deadlock if a configuration call is made on another thread, because that thread will try to acquire the module-level lock *before* the handler-level lock, whereas this thread tries to acquire the module-level lock *after* the handler-level lock (because in this method, the handler-level lock has already been acquired)." +msgstr "" + +msgid "For a list of handlers included as standard, see :mod:`logging.handlers`." msgstr "" -#: ../../library/logging.rst:657 msgid "Formatter Objects" msgstr "" -#: ../../library/logging.rst:663 -msgid "" -"Responsible for converting a :class:`LogRecord` to an output string to be " -"interpreted by a human or external system." +msgid "Responsible for converting a :class:`LogRecord` to an output string to be interpreted by a human or external system." msgstr "" -#: ../../library/logging.rst:0 msgid "Parameters" msgstr "" -#: ../../library/logging.rst:666 -msgid "" -"A format string in the given *style* for the logged output as a whole. The " -"possible mapping keys are drawn from the :class:`LogRecord` " -"object's :ref:`logrecord-attributes`. If not specified, ``'%(message)s'`` is " -"used, which is just the logged message." +msgid "A format string in the given *style* for the logged output as a whole. The possible mapping keys are drawn from the :class:`LogRecord` object's :ref:`logrecord-attributes`. If not specified, ``'%(message)s'`` is used, which is just the logged message." msgstr "" -#: ../../library/logging.rst:674 -msgid "" -"A format string for the date/time portion of the logged output. If not " -"specified, the default described in :meth:`formatTime` is used." +msgid "A format string for the date/time portion of the logged output. If not specified, the default described in :meth:`formatTime` is used." msgstr "" -#: ../../library/logging.rst:678 -msgid "" -"Can be one of ``'%'``, ``'{'`` or ``'$'`` and determines how the format " -"string will be merged with its data: using one of :ref:`old-string-" -"formatting` (``%``), :meth:`str.format` (``{``) or :class:`string.Template` " -"(``$``). This only applies to *fmt* (e.g. ``'%(message)s'`` versus " -"``'{message}'``), not to the actual log messages passed to the logging " -"methods. However, there are :ref:`other ways ` to use " -"``{``- and ``$``-formatting for log messages." +msgid "Can be one of ``'%'``, ``'{'`` or ``'$'`` and determines how the format string will be merged with its data: using one of :ref:`old-string-formatting` (``%``), :meth:`str.format` (``{``) or :class:`string.Template` (``$``). This only applies to *fmt* (e.g. ``'%(message)s'`` versus ``'{message}'``), not to the actual log messages passed to the logging methods. However, there are :ref:`other ways ` to use ``{``- and ``$``-formatting for log messages." msgstr "" -#: ../../library/logging.rst:688 -msgid "" -"If ``True`` (the default), incorrect or mismatched *fmt* and *style* will " -"raise a :exc:`ValueError`; for example, ``logging.Formatter('%(asctime)s - %" -"(message)s', style='{')``." +msgid "If ``True`` (the default), incorrect or mismatched *fmt* and *style* will raise a :exc:`ValueError`; for example, ``logging.Formatter('%(asctime)s - %(message)s', style='{')``." msgstr "" -#: ../../library/logging.rst:693 -msgid "" -"A dictionary with default values to use in custom fields. For example, " -"``logging.Formatter('%(ip)s %(message)s', defaults={\"ip\": None})``" +msgid "A dictionary with default values to use in custom fields. For example, ``logging.Formatter('%(ip)s %(message)s', defaults={\"ip\": None})``" msgstr "" -#: ../../library/logging.rst:698 msgid "Added the *style* parameter." msgstr "" -#: ../../library/logging.rst:701 msgid "Added the *validate* parameter." msgstr "" -#: ../../library/logging.rst:704 msgid "Added the *defaults* parameter." msgstr "" -#: ../../library/logging.rst:710 -msgid "" -"The record's attribute dictionary is used as the operand to a string " -"formatting operation. Returns the resulting string. Before formatting the " -"dictionary, a couple of preparatory steps are carried out. The *message* " -"attribute of the record is computed using *msg* % *args*. If the formatting " -"string contains ``'(asctime)'``, :meth:`formatTime` is called to format the " -"event time. If there is exception information, it is formatted " -"using :meth:`formatException` and appended to the message. Note that the " -"formatted exception information is cached in attribute *exc_text*. This is " -"useful because the exception information can be pickled and sent across the " -"wire, but you should be careful if you have more than one :class:`Formatter` " -"subclass which customizes the formatting of exception information. In this " -"case, you will have to clear the cached value (by setting the *exc_text* " -"attribute to ``None``) after a formatter has done its formatting, so that " -"the next formatter to handle the event doesn't use the cached value, but " -"recalculates it afresh." -msgstr "" - -#: ../../library/logging.rst:726 -msgid "" -"If stack information is available, it's appended after the exception " -"information, using :meth:`formatStack` to transform it if necessary." +msgid "The record's attribute dictionary is used as the operand to a string formatting operation. Returns the resulting string. Before formatting the dictionary, a couple of preparatory steps are carried out. The *message* attribute of the record is computed using *msg* % *args*. If the formatting string contains ``'(asctime)'``, :meth:`formatTime` is called to format the event time. If there is exception information, it is formatted using :meth:`formatException` and appended to the message. Note that the formatted exception information is cached in attribute *exc_text*. This is useful because the exception information can be pickled and sent across the wire, but you should be careful if you have more than one :class:`Formatter` subclass which customizes the formatting of exception information. In this case, you will have to clear the cached value (by setting the *exc_text* attribute to ``None``) after a formatter has done its formatting, so that the next formatter to handle the event doesn't use the cached value, but recalculates it afresh." msgstr "" -#: ../../library/logging.rst:732 -msgid "" -"This method should be called from :meth:`format` by a formatter which wants " -"to make use of a formatted time. This method can be overridden in formatters " -"to provide for any specific requirement, but the basic behavior is as " -"follows: if *datefmt* (a string) is specified, it is used " -"with :func:`time.strftime` to format the creation time of the record. " -"Otherwise, the format '%Y-%m-%d %H:%M:%S,uuu' is used, where the uuu part is " -"a millisecond value and the other letters are as per " -"the :func:`time.strftime` documentation. An example time in this format is " -"``2003-01-23 00:29:50,411``. The resulting string is returned." -msgstr "" - -#: ../../library/logging.rst:742 -msgid "" -"This function uses a user-configurable function to convert the creation time " -"to a tuple. By default, :func:`time.localtime` is used; to change this for a " -"particular formatter instance, set the ``converter`` attribute to a function " -"with the same signature as :func:`time.localtime` or :func:`time.gmtime`. To " -"change it for all formatters, for example if you want all logging times to " -"be shown in GMT, set the ``converter`` attribute in the ``Formatter`` class." +msgid "If stack information is available, it's appended after the exception information, using :meth:`formatStack` to transform it if necessary." +msgstr "" + +msgid "This method should be called from :meth:`format` by a formatter which wants to make use of a formatted time. This method can be overridden in formatters to provide for any specific requirement, but the basic behavior is as follows: if *datefmt* (a string) is specified, it is used with :func:`time.strftime` to format the creation time of the record. Otherwise, the format '%Y-%m-%d %H:%M:%S,uuu' is used, where the uuu part is a millisecond value and the other letters are as per the :func:`time.strftime` documentation. An example time in this format is ``2003-01-23 00:29:50,411``. The resulting string is returned." +msgstr "" + +msgid "This function uses a user-configurable function to convert the creation time to a tuple. By default, :func:`time.localtime` is used; to change this for a particular formatter instance, set the ``converter`` attribute to a function with the same signature as :func:`time.localtime` or :func:`time.gmtime`. To change it for all formatters, for example if you want all logging times to be shown in GMT, set the ``converter`` attribute in the ``Formatter`` class." +msgstr "" + +msgid "Previously, the default format was hard-coded as in this example: ``2010-09-06 22:38:15,292`` where the part before the comma is handled by a strptime format string (``'%Y-%m-%d %H:%M:%S'``), and the part after the comma is a millisecond value. Because strptime does not have a format placeholder for milliseconds, the millisecond value is appended using another format string, ``'%s,%03d'`` --- and both of these format strings have been hardcoded into this method. With the change, these strings are defined as class-level attributes which can be overridden at the instance level when desired. The names of the attributes are ``default_time_format`` (for the strptime format string) and ``default_msec_format`` (for appending the millisecond value)." msgstr "" -#: ../../library/logging.rst:750 -msgid "" -"Previously, the default format was hard-coded as in this example: " -"``2010-09-06 22:38:15,292`` where the part before the comma is handled by a " -"strptime format string (``'%Y-%m-%d %H:%M:%S'``), and the part after the " -"comma is a millisecond value. Because strptime does not have a format " -"placeholder for milliseconds, the millisecond value is appended using " -"another format string, ``'%s,%03d'`` --- and both of these format strings " -"have been hardcoded into this method. With the change, these strings are " -"defined as class-level attributes which can be overridden at the instance " -"level when desired. The names of the attributes are ``default_time_format`` " -"(for the strptime format string) and ``default_msec_format`` (for appending " -"the millisecond value)." -msgstr "" - -#: ../../library/logging.rst:763 msgid "The ``default_msec_format`` can be ``None``." msgstr "" -#: ../../library/logging.rst:768 -msgid "" -"Formats the specified exception information (a standard exception tuple as " -"returned by :func:`sys.exc_info`) as a string. This default implementation " -"just uses :func:`traceback.print_exception`. The resulting string is " -"returned." +msgid "Formats the specified exception information (a standard exception tuple as returned by :func:`sys.exc_info`) as a string. This default implementation just uses :func:`traceback.print_exception`. The resulting string is returned." msgstr "" -#: ../../library/logging.rst:775 -msgid "" -"Formats the specified stack information (a string as returned " -"by :func:`traceback.print_stack`, but with the last newline removed) as a " -"string. This default implementation just returns the input value." +msgid "Formats the specified stack information (a string as returned by :func:`traceback.print_stack`, but with the last newline removed) as a string. This default implementation just returns the input value." msgstr "" -#: ../../library/logging.rst:781 -msgid "" -"A base formatter class suitable for subclassing when you want to format a " -"number of records. You can pass a :class:`Formatter` instance which you want " -"to use to format each line (that corresponds to a single record). If not " -"specified, the default formatter (which just outputs the event message) is " -"used as the line formatter." +msgid "A base formatter class suitable for subclassing when you want to format a number of records. You can pass a :class:`Formatter` instance which you want to use to format each line (that corresponds to a single record). If not specified, the default formatter (which just outputs the event message) is used as the line formatter." msgstr "" -#: ../../library/logging.rst:789 -msgid "" -"Return a header for a list of *records*. The base implementation just " -"returns the empty string. You will need to override this method if you want " -"specific behaviour, e.g. to show the count of records, a title or a " -"separator line." +msgid "Return a header for a list of *records*. The base implementation just returns the empty string. You will need to override this method if you want specific behaviour, e.g. to show the count of records, a title or a separator line." msgstr "" -#: ../../library/logging.rst:796 -msgid "" -"Return a footer for a list of *records*. The base implementation just " -"returns the empty string. You will need to override this method if you want " -"specific behaviour, e.g. to show the count of records or a separator line." +msgid "Return a footer for a list of *records*. The base implementation just returns the empty string. You will need to override this method if you want specific behaviour, e.g. to show the count of records or a separator line." msgstr "" -#: ../../library/logging.rst:803 -msgid "" -"Return formatted text for a list of *records*. The base implementation just " -"returns the empty string if there are no records; otherwise, it returns the " -"concatenation of the header, each record formatted with the line formatter, " -"and the footer." +msgid "Return formatted text for a list of *records*. The base implementation just returns the empty string if there are no records; otherwise, it returns the concatenation of the header, each record formatted with the line formatter, and the footer." msgstr "" -#: ../../library/logging.rst:811 msgid "Filter Objects" msgstr "" -#: ../../library/logging.rst:813 -msgid "" -"``Filters`` can be used by ``Handlers`` and ``Loggers`` for more " -"sophisticated filtering than is provided by levels. The base filter class " -"only allows events which are below a certain point in the logger hierarchy. " -"For example, a filter initialized with 'A.B' will allow events logged by " -"loggers 'A.B', 'A.B.C', 'A.B.C.D', 'A.B.D' etc. but not 'A.BB', 'B.A.B' etc. " -"If initialized with the empty string, all events are passed." +msgid "``Filters`` can be used by ``Handlers`` and ``Loggers`` for more sophisticated filtering than is provided by levels. The base filter class only allows events which are below a certain point in the logger hierarchy. For example, a filter initialized with 'A.B' will allow events logged by loggers 'A.B', 'A.B.C', 'A.B.C.D', 'A.B.D' etc. but not 'A.BB', 'B.A.B' etc. If initialized with the empty string, all events are passed." msgstr "" -#: ../../library/logging.rst:823 -msgid "" -"Returns an instance of the :class:`Filter` class. If *name* is specified, it " -"names a logger which, together with its children, will have its events " -"allowed through the filter. If *name* is the empty string, allows every " -"event." +msgid "Returns an instance of the :class:`Filter` class. If *name* is specified, it names a logger which, together with its children, will have its events allowed through the filter. If *name* is the empty string, allows every event." msgstr "" -#: ../../library/logging.rst:830 -msgid "" -"Is the specified record to be logged? Returns false for no, true for yes. " -"Filters can either modify log records in-place or return a completely " -"different record instance which will replace the original log record in any " -"future processing of the event." +msgid "Is the specified record to be logged? Returns false for no, true for yes. Filters can either modify log records in-place or return a completely different record instance which will replace the original log record in any future processing of the event." msgstr "" -#: ../../library/logging.rst:835 -msgid "" -"Note that filters attached to handlers are consulted before an event is " -"emitted by the handler, whereas filters attached to loggers are consulted " -"whenever an event is logged (using :meth:`debug`, :meth:`info`, etc.), " -"before sending an event to handlers. This means that events which have been " -"generated by descendant loggers will not be filtered by a logger's filter " -"setting, unless the filter has also been applied to those descendant loggers." +msgid "Note that filters attached to handlers are consulted before an event is emitted by the handler, whereas filters attached to loggers are consulted whenever an event is logged (using :meth:`debug`, :meth:`info`, etc.), before sending an event to handlers. This means that events which have been generated by descendant loggers will not be filtered by a logger's filter setting, unless the filter has also been applied to those descendant loggers." msgstr "" -#: ../../library/logging.rst:842 -msgid "" -"You don't actually need to subclass ``Filter``: you can pass any instance " -"which has a ``filter`` method with the same semantics." +msgid "You don't actually need to subclass ``Filter``: you can pass any instance which has a ``filter`` method with the same semantics." msgstr "" -#: ../../library/logging.rst:845 -msgid "" -"You don't need to create specialized ``Filter`` classes, or use other " -"classes with a ``filter`` method: you can use a function (or other callable) " -"as a filter. The filtering logic will check to see if the filter object has " -"a ``filter`` attribute: if it does, it's assumed to be a ``Filter`` and " -"its :meth:`~Filter.filter` method is called. Otherwise, it's assumed to be a " -"callable and called with the record as the single parameter. The returned " -"value should conform to that returned by :meth:`~Filter.filter`." +msgid "You don't need to create specialized ``Filter`` classes, or use other classes with a ``filter`` method: you can use a function (or other callable) as a filter. The filtering logic will check to see if the filter object has a ``filter`` attribute: if it does, it's assumed to be a ``Filter`` and its :meth:`~Filter.filter` method is called. Otherwise, it's assumed to be a callable and called with the record as the single parameter. The returned value should conform to that returned by :meth:`~Filter.filter`." msgstr "" -#: ../../library/logging.rst:855 -msgid "" -"You can now return a :class:`LogRecord` instance from filters to replace the " -"log record rather than modifying it in place. This allows filters attached " -"to a :class:`Handler` to modify the log record before it is emitted, without " -"having side effects on other handlers." +msgid "You can now return a :class:`LogRecord` instance from filters to replace the log record rather than modifying it in place. This allows filters attached to a :class:`Handler` to modify the log record before it is emitted, without having side effects on other handlers." msgstr "" -#: ../../library/logging.rst:861 -msgid "" -"Although filters are used primarily to filter records based on more " -"sophisticated criteria than levels, they get to see every record which is " -"processed by the handler or logger they're attached to: this can be useful " -"if you want to do things like counting how many records were processed by a " -"particular logger or handler, or adding, changing or removing attributes in " -"the :class:`LogRecord` being processed. Obviously changing the LogRecord " -"needs to be done with some care, but it does allow the injection of " -"contextual information into logs (see :ref:`filters-contextual`)." +msgid "Although filters are used primarily to filter records based on more sophisticated criteria than levels, they get to see every record which is processed by the handler or logger they're attached to: this can be useful if you want to do things like counting how many records were processed by a particular logger or handler, or adding, changing or removing attributes in the :class:`LogRecord` being processed. Obviously changing the LogRecord needs to be done with some care, but it does allow the injection of contextual information into logs (see :ref:`filters-contextual`)." msgstr "" -#: ../../library/logging.rst:874 msgid "LogRecord Objects" msgstr "" -#: ../../library/logging.rst:876 -msgid "" -":class:`LogRecord` instances are created automatically by " -"the :class:`Logger` every time something is logged, and can be created " -"manually via :func:`makeLogRecord` (for example, from a pickled event " -"received over the wire)." +msgid ":class:`LogRecord` instances are created automatically by the :class:`Logger` every time something is logged, and can be created manually via :func:`makeLogRecord` (for example, from a pickled event received over the wire)." msgstr "" -#: ../../library/logging.rst:884 msgid "Contains all the information pertinent to the event being logged." msgstr "" -#: ../../library/logging.rst:886 -msgid "" -"The primary information is passed in *msg* and *args*, which are combined " -"using ``msg % args`` to create the :attr:`!message` attribute of the record." +msgid "The primary information is passed in *msg* and *args*, which are combined using ``msg % args`` to create the :attr:`!message` attribute of the record." msgstr "" -#: ../../library/logging.rst:890 -msgid "" -"The name of the logger used to log the event represented by this :class:`!" -"LogRecord`. Note that the logger name in the :class:`!LogRecord` will always " -"have this value, even though it may be emitted by a handler attached to a " -"different (ancestor) logger." +msgid "The name of the logger used to log the event represented by this :class:`!LogRecord`. Note that the logger name in the :class:`!LogRecord` will always have this value, even though it may be emitted by a handler attached to a different (ancestor) logger." msgstr "" -#: ../../library/logging.rst:898 -msgid "" -"The :ref:`numeric level ` of the logging event (such as ``10`` for " -"``DEBUG``, ``20`` for ``INFO``, etc). Note that this is converted to *two* " -"attributes of the LogRecord: :attr:`!levelno` for the numeric value " -"and :attr:`!levelname` for the corresponding level name." +msgid "The :ref:`numeric level ` of the logging event (such as ``10`` for ``DEBUG``, ``20`` for ``INFO``, etc). Note that this is converted to *two* attributes of the LogRecord: :attr:`!levelno` for the numeric value and :attr:`!levelname` for the corresponding level name." msgstr "" -#: ../../library/logging.rst:905 -msgid "" -"The full string path of the source file where the logging call was made." +msgid "The full string path of the source file where the logging call was made." msgstr "" -#: ../../library/logging.rst:909 msgid "The line number in the source file where the logging call was made." msgstr "" -#: ../../library/logging.rst:913 -msgid "" -"The event description message, which can be a %-format string with " -"placeholders for variable data, or an arbitrary object (see :ref:`arbitrary-" -"object-messages`)." +msgid "The event description message, which can be a %-format string with placeholders for variable data, or an arbitrary object (see :ref:`arbitrary-object-messages`)." msgstr "" -#: ../../library/logging.rst:918 -msgid "" -"Variable data to merge into the *msg* argument to obtain the event " -"description." +msgid "Variable data to merge into the *msg* argument to obtain the event description." msgstr "" -#: ../../library/logging.rst:922 -msgid "" -"An exception tuple with the current exception information, as returned " -"by :func:`sys.exc_info`, or ``None`` if no exception information is " -"available." +msgid "An exception tuple with the current exception information, as returned by :func:`sys.exc_info`, or ``None`` if no exception information is available." msgstr "" -#: ../../library/logging.rst:927 -msgid "" -"The name of the function or method from which the logging call was invoked." +msgid "The name of the function or method from which the logging call was invoked." msgstr "" -#: ../../library/logging.rst:931 -msgid "" -"A text string representing stack information from the base of the stack in " -"the current thread, up to the logging call." +msgid "A text string representing stack information from the base of the stack in the current thread, up to the logging call." msgstr "" -#: ../../library/logging.rst:938 -msgid "" -"Returns the message for this :class:`LogRecord` instance after merging any " -"user-supplied arguments with the message. If the user-supplied message " -"argument to the logging call is not a string, :func:`str` is called on it to " -"convert it to a string. This allows use of user-defined classes as messages, " -"whose ``__str__`` method can return the actual format string to be used." +msgid "Returns the message for this :class:`LogRecord` instance after merging any user-supplied arguments with the message. If the user-supplied message argument to the logging call is not a string, :func:`str` is called on it to convert it to a string. This allows use of user-defined classes as messages, whose ``__str__`` method can return the actual format string to be used." msgstr "" -#: ../../library/logging.rst:945 -msgid "" -"The creation of a :class:`LogRecord` has been made more configurable by " -"providing a factory which is used to create the record. The factory can be " -"set using :func:`getLogRecordFactory` and :func:`setLogRecordFactory` (see " -"this for the factory's signature)." +msgid "The creation of a :class:`LogRecord` has been made more configurable by providing a factory which is used to create the record. The factory can be set using :func:`getLogRecordFactory` and :func:`setLogRecordFactory` (see this for the factory's signature)." msgstr "" -#: ../../library/logging.rst:951 -msgid "" -"This functionality can be used to inject your own values into " -"a :class:`LogRecord` at creation time. You can use the following pattern::" +msgid "This functionality can be used to inject your own values into a :class:`LogRecord` at creation time. You can use the following pattern::" msgstr "" -#: ../../library/logging.rst:954 msgid "" "old_factory = logging.getLogRecordFactory()\n" "\n" @@ -1230,1080 +584,595 @@ msgid "" "logging.setLogRecordFactory(record_factory)" msgstr "" -#: ../../library/logging.rst:963 -msgid "" -"With this pattern, multiple factories could be chained, and as long as they " -"don't overwrite each other's attributes or unintentionally overwrite the " -"standard attributes listed above, there should be no surprises." +msgid "With this pattern, multiple factories could be chained, and as long as they don't overwrite each other's attributes or unintentionally overwrite the standard attributes listed above, there should be no surprises." msgstr "" -#: ../../library/logging.rst:972 msgid "LogRecord attributes" msgstr "" -#: ../../library/logging.rst:974 -msgid "" -"The LogRecord has a number of attributes, most of which are derived from the " -"parameters to the constructor. (Note that the names do not always correspond " -"exactly between the LogRecord constructor parameters and the LogRecord " -"attributes.) These attributes can be used to merge data from the record into " -"the format string. The following table lists (in alphabetical order) the " -"attribute names, their meanings and the corresponding placeholder in a %-" -"style format string." +msgid "The LogRecord has a number of attributes, most of which are derived from the parameters to the constructor. (Note that the names do not always correspond exactly between the LogRecord constructor parameters and the LogRecord attributes.) These attributes can be used to merge data from the record into the format string. The following table lists (in alphabetical order) the attribute names, their meanings and the corresponding placeholder in a %-style format string." msgstr "" -#: ../../library/logging.rst:982 -msgid "" -"If you are using {}-formatting (:func:`str.format`), you can use ``{attrname}" -"`` as the placeholder in the format string. If you are using $-formatting " -"(:class:`string.Template`), use the form ``${attrname}``. In both cases, of " -"course, replace ``attrname`` with the actual attribute name you want to use." +msgid "If you are using {}-formatting (:func:`str.format`), you can use ``{attrname}`` as the placeholder in the format string. If you are using $-formatting (:class:`string.Template`), use the form ``${attrname}``. In both cases, of course, replace ``attrname`` with the actual attribute name you want to use." msgstr "" -#: ../../library/logging.rst:988 -msgid "" -"In the case of {}-formatting, you can specify formatting flags by placing " -"them after the attribute name, separated from it with a colon. For example: " -"a placeholder of ``{msecs:03.0f}`` would format a millisecond value of ``4`` " -"as ``004``. Refer to the :meth:`str.format` documentation for full details " -"on the options available to you." +msgid "In the case of {}-formatting, you can specify formatting flags by placing them after the attribute name, separated from it with a colon. For example: a placeholder of ``{msecs:03.0f}`` would format a millisecond value of ``4`` as ``004``. Refer to the :meth:`str.format` documentation for full details on the options available to you." msgstr "" -#: ../../library/logging.rst:995 msgid "Attribute name" msgstr "" -#: ../../library/logging.rst:995 ../../library/logging.rst:1375 msgid "Format" msgstr "" -#: ../../library/logging.rst:995 ../../library/logging.rst:1375 msgid "Description" msgstr "" -#: ../../library/logging.rst:0 ../../library/logging.rst:997 msgid "args" msgstr "" -#: ../../library/logging.rst:997 ../../library/logging.rst:1011 -#: ../../library/logging.rst:1014 ../../library/logging.rst:1044 -#: ../../library/logging.rst:1062 msgid "You shouldn't need to format this yourself." msgstr "" -#: ../../library/logging.rst:997 -msgid "" -"The tuple of arguments merged into ``msg`` to produce ``message``, or a dict " -"whose values are used for the merge (when there is only one argument, and it " -"is a dictionary)." +msgid "The tuple of arguments merged into ``msg`` to produce ``message``, or a dict whose values are used for the merge (when there is only one argument, and it is a dictionary)." msgstr "" -#: ../../library/logging.rst:1002 msgid "asctime" msgstr "" -#: ../../library/logging.rst:1002 msgid "``%(asctime)s``" msgstr "" -#: ../../library/logging.rst:1002 -msgid "" -"Human-readable time when the :class:`LogRecord` was created. By default " -"this is of the form '2003-07-08 16:49:45,896' (the numbers after the comma " -"are millisecond portion of the time)." +msgid "Human-readable time when the :class:`LogRecord` was created. By default this is of the form '2003-07-08 16:49:45,896' (the numbers after the comma are millisecond portion of the time)." msgstr "" -#: ../../library/logging.rst:1008 msgid "created" msgstr "" -#: ../../library/logging.rst:1008 msgid "``%(created)f``" msgstr "" -#: ../../library/logging.rst:1008 -msgid "" -"Time when the :class:`LogRecord` was created (as returned " -"by :func:`time.time_ns` / 1e9)." +msgid "Time when the :class:`LogRecord` was created (as returned by :func:`time.time_ns` / 1e9)." msgstr "" -#: ../../library/logging.rst:0 ../../library/logging.rst:1011 msgid "exc_info" msgstr "" -#: ../../library/logging.rst:1011 -msgid "" -"Exception tuple (à la ``sys.exc_info``) or, if no exception has occurred, " -"``None``." +msgid "Exception tuple (à la ``sys.exc_info``) or, if no exception has occurred, ``None``." msgstr "" -#: ../../library/logging.rst:1014 msgid "exc_text" msgstr "" -#: ../../library/logging.rst:1014 -msgid "" -"Exception information formatted as a string. This is set " -"when :meth:`Formatter.format` is invoked, or ``None`` if no exception has " -"occurred." +msgid "Exception information formatted as a string. This is set when :meth:`Formatter.format` is invoked, or ``None`` if no exception has occurred." msgstr "" -#: ../../library/logging.rst:1019 msgid "filename" msgstr "" -#: ../../library/logging.rst:1019 msgid "``%(filename)s``" msgstr "" -#: ../../library/logging.rst:1019 msgid "Filename portion of ``pathname``." msgstr "" -#: ../../library/logging.rst:1021 msgid "funcName" msgstr "" -#: ../../library/logging.rst:1021 msgid "``%(funcName)s``" msgstr "" -#: ../../library/logging.rst:1021 msgid "Name of function containing the logging call." msgstr "" -#: ../../library/logging.rst:1023 msgid "levelname" msgstr "" -#: ../../library/logging.rst:1023 msgid "``%(levelname)s``" msgstr "" -#: ../../library/logging.rst:1023 -msgid "" -"Text logging level for the message (``'DEBUG'``, ``'INFO'``, ``'WARNING'``, " -"``'ERROR'``, ``'CRITICAL'``)." +msgid "Text logging level for the message (``'DEBUG'``, ``'INFO'``, ``'WARNING'``, ``'ERROR'``, ``'CRITICAL'``)." msgstr "" -#: ../../library/logging.rst:1027 msgid "levelno" msgstr "" -#: ../../library/logging.rst:1027 msgid "``%(levelno)s``" msgstr "" -#: ../../library/logging.rst:1027 -msgid "" -"Numeric logging level for the message " -"(:const:`DEBUG`, :const:`INFO`, :const:`WARNING`, :const:`ERROR`, :const:`CRITICAL`)." +msgid "Numeric logging level for the message (:const:`DEBUG`, :const:`INFO`, :const:`WARNING`, :const:`ERROR`, :const:`CRITICAL`)." msgstr "" -#: ../../library/logging.rst:1032 msgid "lineno" msgstr "" -#: ../../library/logging.rst:1032 msgid "``%(lineno)d``" msgstr "" -#: ../../library/logging.rst:1032 msgid "Source line number where the logging call was issued (if available)." msgstr "" -#: ../../library/logging.rst:1035 msgid "message" msgstr "" -#: ../../library/logging.rst:1035 msgid "``%(message)s``" msgstr "" -#: ../../library/logging.rst:1035 -msgid "" -"The logged message, computed as ``msg % args``. This is set " -"when :meth:`Formatter.format` is invoked." +msgid "The logged message, computed as ``msg % args``. This is set when :meth:`Formatter.format` is invoked." msgstr "" -#: ../../library/logging.rst:1039 msgid "module" msgstr "" -#: ../../library/logging.rst:1039 msgid "``%(module)s``" msgstr "" -#: ../../library/logging.rst:1039 msgid "Module (name portion of ``filename``)." msgstr "" -#: ../../library/logging.rst:1041 msgid "msecs" msgstr "" -#: ../../library/logging.rst:1041 msgid "``%(msecs)d``" msgstr "" -#: ../../library/logging.rst:1041 -msgid "" -"Millisecond portion of the time when the :class:`LogRecord` was created." +msgid "Millisecond portion of the time when the :class:`LogRecord` was created." msgstr "" -#: ../../library/logging.rst:0 ../../library/logging.rst:1044 msgid "msg" msgstr "" -#: ../../library/logging.rst:1044 -msgid "" -"The format string passed in the original logging call. Merged with ``args`` " -"to produce ``message``, or an arbitrary object (see :ref:`arbitrary-object-" -"messages`)." +msgid "The format string passed in the original logging call. Merged with ``args`` to produce ``message``, or an arbitrary object (see :ref:`arbitrary-object-messages`)." msgstr "" -#: ../../library/logging.rst:0 ../../library/logging.rst:1049 msgid "name" msgstr "" -#: ../../library/logging.rst:1049 msgid "``%(name)s``" msgstr "" -#: ../../library/logging.rst:1049 msgid "Name of the logger used to log the call." msgstr "" -#: ../../library/logging.rst:1051 msgid "pathname" msgstr "" -#: ../../library/logging.rst:1051 msgid "``%(pathname)s``" msgstr "" -#: ../../library/logging.rst:1051 -msgid "" -"Full pathname of the source file where the logging call was issued (if " -"available)." +msgid "Full pathname of the source file where the logging call was issued (if available)." msgstr "" -#: ../../library/logging.rst:1054 msgid "process" msgstr "" -#: ../../library/logging.rst:1054 msgid "``%(process)d``" msgstr "" -#: ../../library/logging.rst:1054 msgid "Process ID (if available)." msgstr "" -#: ../../library/logging.rst:1056 msgid "processName" msgstr "" -#: ../../library/logging.rst:1056 msgid "``%(processName)s``" msgstr "" -#: ../../library/logging.rst:1056 msgid "Process name (if available)." msgstr "" -#: ../../library/logging.rst:1058 msgid "relativeCreated" msgstr "" -#: ../../library/logging.rst:1058 msgid "``%(relativeCreated)d``" msgstr "" -#: ../../library/logging.rst:1058 -msgid "" -"Time in milliseconds when the LogRecord was created, relative to the time " -"the logging module was loaded." +msgid "Time in milliseconds when the LogRecord was created, relative to the time the logging module was loaded." msgstr "" -#: ../../library/logging.rst:1062 msgid "stack_info" msgstr "" -#: ../../library/logging.rst:1062 -msgid "" -"Stack frame information (where available) from the bottom of the stack in " -"the current thread, up to and including the stack frame of the logging call " -"which resulted in the creation of this record." +msgid "Stack frame information (where available) from the bottom of the stack in the current thread, up to and including the stack frame of the logging call which resulted in the creation of this record." msgstr "" -#: ../../library/logging.rst:1068 msgid "thread" msgstr "" -#: ../../library/logging.rst:1068 msgid "``%(thread)d``" msgstr "" -#: ../../library/logging.rst:1068 msgid "Thread ID (if available)." msgstr "" -#: ../../library/logging.rst:1070 msgid "threadName" msgstr "" -#: ../../library/logging.rst:1070 msgid "``%(threadName)s``" msgstr "" -#: ../../library/logging.rst:1070 msgid "Thread name (if available)." msgstr "" -#: ../../library/logging.rst:1072 msgid "taskName" msgstr "" -#: ../../library/logging.rst:1072 msgid "``%(taskName)s``" msgstr "" -#: ../../library/logging.rst:1072 msgid ":class:`asyncio.Task` name (if available)." msgstr "" -#: ../../library/logging.rst:1075 msgid "*processName* was added." msgstr "" -#: ../../library/logging.rst:1078 msgid "*taskName* was added." msgstr "" -#: ../../library/logging.rst:1084 msgid "LoggerAdapter Objects" msgstr "" -#: ../../library/logging.rst:1086 -msgid "" -":class:`LoggerAdapter` instances are used to conveniently pass contextual " -"information into logging calls. For a usage example, see the section " -"on :ref:`adding contextual information to your logging output `." +msgid ":class:`LoggerAdapter` instances are used to conveniently pass contextual information into logging calls. For a usage example, see the section on :ref:`adding contextual information to your logging output `." msgstr "" -#: ../../library/logging.rst:1092 -msgid "" -"Returns an instance of :class:`LoggerAdapter` initialized with an " -"underlying :class:`Logger` instance, an optional dict-like object (*extra*), " -"and an optional boolean (*merge_extra*) indicating whether or not the " -"*extra* argument of individual log calls should be merged with " -"the :class:`LoggerAdapter` extra. The default behavior is to ignore the " -"*extra* argument of individual log calls and only use the one of " -"the :class:`LoggerAdapter` instance" +msgid "Returns an instance of :class:`LoggerAdapter` initialized with an underlying :class:`Logger` instance, an optional dict-like object (*extra*), and an optional boolean (*merge_extra*) indicating whether or not the *extra* argument of individual log calls should be merged with the :class:`LoggerAdapter` extra. The default behavior is to ignore the *extra* argument of individual log calls and only use the one of the :class:`LoggerAdapter` instance" msgstr "" -#: ../../library/logging.rst:1102 -msgid "" -"Modifies the message and/or keyword arguments passed to a logging call in " -"order to insert contextual information. This implementation takes the object " -"passed as *extra* to the constructor and adds it to *kwargs* using key " -"'extra'. The return value is a (*msg*, *kwargs*) tuple which has the " -"(possibly modified) versions of the arguments passed in." +msgid "Modifies the message and/or keyword arguments passed to a logging call in order to insert contextual information. This implementation takes the object passed as *extra* to the constructor and adds it to *kwargs* using key 'extra'. The return value is a (*msg*, *kwargs*) tuple which has the (possibly modified) versions of the arguments passed in." msgstr "" -#: ../../library/logging.rst:1110 msgid "Delegates to the underlying :attr:`!manager` on *logger*." msgstr "" -#: ../../library/logging.rst:1114 msgid "Delegates to the underlying :meth:`!_log` method on *logger*." msgstr "" -#: ../../library/logging.rst:1116 -msgid "" -"In addition to the above, :class:`LoggerAdapter` supports the following " -"methods " -"of :class:`Logger`: :meth:`~Logger.debug`, :meth:`~Logger.info`, :meth:`~Logger.warning`, :meth:`~Logger.error`, :meth:`~Logger.exception`, :meth:`~Logger.critical`, :meth:`~Logger.log`, :meth:`~Logger.isEnabledFor`, :meth:`~Logger.getEffectiveLevel`, :meth:`~Logger.setLevel` " -"and :meth:`~Logger.hasHandlers`. These methods have the same signatures as " -"their counterparts in :class:`Logger`, so you can use the two types of " -"instances interchangeably." +msgid "In addition to the above, :class:`LoggerAdapter` supports the following methods of :class:`Logger`: :meth:`~Logger.debug`, :meth:`~Logger.info`, :meth:`~Logger.warning`, :meth:`~Logger.error`, :meth:`~Logger.exception`, :meth:`~Logger.critical`, :meth:`~Logger.log`, :meth:`~Logger.isEnabledFor`, :meth:`~Logger.getEffectiveLevel`, :meth:`~Logger.setLevel` and :meth:`~Logger.hasHandlers`. These methods have the same signatures as their counterparts in :class:`Logger`, so you can use the two types of instances interchangeably." msgstr "" -#: ../../library/logging.rst:1127 -msgid "" -"The :meth:`~Logger.isEnabledFor`, :meth:`~Logger.getEffectiveLevel`, :meth:`~Logger.setLevel` " -"and :meth:`~Logger.hasHandlers` methods were added " -"to :class:`LoggerAdapter`. These methods delegate to the underlying logger." +msgid "The :meth:`~Logger.isEnabledFor`, :meth:`~Logger.getEffectiveLevel`, :meth:`~Logger.setLevel` and :meth:`~Logger.hasHandlers` methods were added to :class:`LoggerAdapter`. These methods delegate to the underlying logger." msgstr "" -#: ../../library/logging.rst:1133 -msgid "" -"Attribute :attr:`!manager` and method :meth:`!_log` were added, which " -"delegate to the underlying logger and allow adapters to be nested." +msgid "Attribute :attr:`!manager` and method :meth:`!_log` were added, which delegate to the underlying logger and allow adapters to be nested." msgstr "" -#: ../../library/logging.rst:1138 msgid "The *extra* argument is now optional." msgstr "" -#: ../../library/logging.rst:1142 msgid "The *merge_extra* parameter was added." msgstr "" -#: ../../library/logging.rst:1146 msgid "Thread Safety" msgstr "" -#: ../../library/logging.rst:1148 -msgid "" -"The logging module is intended to be thread-safe without any special work " -"needing to be done by its clients. It achieves this through using threading " -"locks; there is one lock to serialize access to the module's shared data, " -"and each handler also creates a lock to serialize access to its underlying I/" -"O." +msgid "The logging module is intended to be thread-safe without any special work needing to be done by its clients. It achieves this through using threading locks; there is one lock to serialize access to the module's shared data, and each handler also creates a lock to serialize access to its underlying I/O." msgstr "" -#: ../../library/logging.rst:1153 -msgid "" -"If you are implementing asynchronous signal handlers using the :mod:`signal` " -"module, you may not be able to use logging from within such handlers. This " -"is because lock implementations in the :mod:`threading` module are not " -"always re-entrant, and so cannot be invoked from such signal handlers." +msgid "If you are implementing asynchronous signal handlers using the :mod:`signal` module, you may not be able to use logging from within such handlers. This is because lock implementations in the :mod:`threading` module are not always re-entrant, and so cannot be invoked from such signal handlers." msgstr "" -#: ../../library/logging.rst:1160 msgid "Module-Level Functions" msgstr "" -#: ../../library/logging.rst:1162 -msgid "" -"In addition to the classes described above, there are a number of module-" -"level functions." +msgid "In addition to the classes described above, there are a number of module-level functions." msgstr "" -#: ../../library/logging.rst:1168 -msgid "" -"Return a logger with the specified name or, if name is ``None``, return the " -"root logger of the hierarchy. If specified, the name is typically a dot-" -"separated hierarchical name like *'a'*, *'a.b'* or *'a.b.c.d'*. Choice of " -"these names is entirely up to the developer who is using logging, though it " -"is recommended that ``__name__`` be used unless you have a specific reason " -"for not doing that, as mentioned in :ref:`logger`." +msgid "Return a logger with the specified name or, if name is ``None``, return the root logger of the hierarchy. If specified, the name is typically a dot-separated hierarchical name like *'a'*, *'a.b'* or *'a.b.c.d'*. Choice of these names is entirely up to the developer who is using logging, though it is recommended that ``__name__`` be used unless you have a specific reason for not doing that, as mentioned in :ref:`logger`." msgstr "" -#: ../../library/logging.rst:1175 -msgid "" -"All calls to this function with a given name return the same logger " -"instance. This means that logger instances never need to be passed between " -"different parts of an application." +msgid "All calls to this function with a given name return the same logger instance. This means that logger instances never need to be passed between different parts of an application." msgstr "" -#: ../../library/logging.rst:1182 -msgid "" -"Return either the standard :class:`Logger` class, or the last class passed " -"to :func:`setLoggerClass`. This function may be called from within a new " -"class definition, to ensure that installing a customized :class:`Logger` " -"class will not undo customizations already applied by other code. For " -"example::" +msgid "Return either the standard :class:`Logger` class, or the last class passed to :func:`setLoggerClass`. This function may be called from within a new class definition, to ensure that installing a customized :class:`Logger` class will not undo customizations already applied by other code. For example::" msgstr "" -#: ../../library/logging.rst:1187 msgid "" "class MyLogger(logging.getLoggerClass()):\n" " # ... override behaviour here" msgstr "" -#: ../../library/logging.rst:1193 msgid "Return a callable which is used to create a :class:`LogRecord`." msgstr "" -#: ../../library/logging.rst:1195 -msgid "" -"This function has been provided, along with :func:`setLogRecordFactory`, to " -"allow developers more control over how the :class:`LogRecord` representing a " -"logging event is constructed." +msgid "This function has been provided, along with :func:`setLogRecordFactory`, to allow developers more control over how the :class:`LogRecord` representing a logging event is constructed." msgstr "" -#: ../../library/logging.rst:1200 -msgid "" -"See :func:`setLogRecordFactory` for more information about the how the " -"factory is called." +msgid "See :func:`setLogRecordFactory` for more information about the how the factory is called." msgstr "" -#: ../../library/logging.rst:1205 -msgid "" -"This is a convenience function that calls :meth:`Logger.debug`, on the root " -"logger. The handling of the arguments is in every way identical to what is " -"described in that method." +msgid "This is a convenience function that calls :meth:`Logger.debug`, on the root logger. The handling of the arguments is in every way identical to what is described in that method." msgstr "" -#: ../../library/logging.rst:1209 -msgid "" -"The only difference is that if the root logger has no handlers, " -"then :func:`basicConfig` is called, prior to calling ``debug`` on the root " -"logger." +msgid "The only difference is that if the root logger has no handlers, then :func:`basicConfig` is called, prior to calling ``debug`` on the root logger." msgstr "" -#: ../../library/logging.rst:1212 -msgid "" -"For very short scripts or quick demonstrations of ``logging`` facilities, " -"``debug`` and the other module-level functions may be convenient. However, " -"most programs will want to carefully and explicitly control the logging " -"configuration, and should therefore prefer creating a module-level logger " -"and calling :meth:`Logger.debug` (or other level-specific methods) on it, as " -"described at the beginning of this documentation." +msgid "For very short scripts or quick demonstrations of ``logging`` facilities, ``debug`` and the other module-level functions may be convenient. However, most programs will want to carefully and explicitly control the logging configuration, and should therefore prefer creating a module-level logger and calling :meth:`Logger.debug` (or other level-specific methods) on it, as described at the beginning of this documentation." msgstr "" -#: ../../library/logging.rst:1222 -msgid "" -"Logs a message with level :const:`INFO` on the root logger. The arguments " -"and behavior are otherwise the same as for :func:`debug`." +msgid "Logs a message with level :const:`INFO` on the root logger. The arguments and behavior are otherwise the same as for :func:`debug`." msgstr "" -#: ../../library/logging.rst:1228 -msgid "" -"Logs a message with level :const:`WARNING` on the root logger. The arguments " -"and behavior are otherwise the same as for :func:`debug`." +msgid "Logs a message with level :const:`WARNING` on the root logger. The arguments and behavior are otherwise the same as for :func:`debug`." msgstr "" -#: ../../library/logging.rst:1231 -msgid "" -"There is an obsolete function ``warn`` which is functionally identical to " -"``warning``. As ``warn`` is deprecated, please do not use it - use " -"``warning`` instead." +msgid "There is an obsolete function ``warn`` which is functionally identical to ``warning``. As ``warn`` is deprecated, please do not use it - use ``warning`` instead." msgstr "" -#: ../../library/logging.rst:1238 -msgid "" -"Logs a message with level :const:`ERROR` on the root logger. The arguments " -"and behavior are otherwise the same as for :func:`debug`." +msgid "Logs a message with level :const:`ERROR` on the root logger. The arguments and behavior are otherwise the same as for :func:`debug`." msgstr "" -#: ../../library/logging.rst:1244 -msgid "" -"Logs a message with level :const:`CRITICAL` on the root logger. The " -"arguments and behavior are otherwise the same as for :func:`debug`." +msgid "Logs a message with level :const:`CRITICAL` on the root logger. The arguments and behavior are otherwise the same as for :func:`debug`." msgstr "" -#: ../../library/logging.rst:1250 -msgid "" -"Logs a message with level :const:`ERROR` on the root logger. The arguments " -"and behavior are otherwise the same as for :func:`debug`. Exception info is " -"added to the logging message. This function should only be called from an " -"exception handler." +msgid "Logs a message with level :const:`ERROR` on the root logger. The arguments and behavior are otherwise the same as for :func:`debug`. Exception info is added to the logging message. This function should only be called from an exception handler." msgstr "" -#: ../../library/logging.rst:1256 -msgid "" -"Logs a message with level *level* on the root logger. The arguments and " -"behavior are otherwise the same as for :func:`debug`." +msgid "Logs a message with level *level* on the root logger. The arguments and behavior are otherwise the same as for :func:`debug`." msgstr "" -#: ../../library/logging.rst:1261 -msgid "" -"Provides an overriding level *level* for all loggers which takes precedence " -"over the logger's own level. When the need arises to temporarily throttle " -"logging output down across the whole application, this function can be " -"useful. Its effect is to disable all logging calls of severity *level* and " -"below, so that if you call it with a value of INFO, then all INFO and DEBUG " -"events would be discarded, whereas those of severity WARNING and above would " -"be processed according to the logger's effective level. If " -"``logging.disable(logging.NOTSET)`` is called, it effectively removes this " -"overriding level, so that logging output again depends on the effective " -"levels of individual loggers." -msgstr "" - -#: ../../library/logging.rst:1272 -msgid "" -"Note that if you have defined any custom logging level higher than " -"``CRITICAL`` (this is not recommended), you won't be able to rely on the " -"default value for the *level* parameter, but will have to explicitly supply " -"a suitable value." +msgid "Provides an overriding level *level* for all loggers which takes precedence over the logger's own level. When the need arises to temporarily throttle logging output down across the whole application, this function can be useful. Its effect is to disable all logging calls of severity *level* and below, so that if you call it with a value of INFO, then all INFO and DEBUG events would be discarded, whereas those of severity WARNING and above would be processed according to the logger's effective level. If ``logging.disable(logging.NOTSET)`` is called, it effectively removes this overriding level, so that logging output again depends on the effective levels of individual loggers." msgstr "" -#: ../../library/logging.rst:1277 -msgid "" -"The *level* parameter was defaulted to level ``CRITICAL``. " -"See :issue:`28524` for more information about this change." +msgid "Note that if you have defined any custom logging level higher than ``CRITICAL`` (this is not recommended), you won't be able to rely on the default value for the *level* parameter, but will have to explicitly supply a suitable value." msgstr "" -#: ../../library/logging.rst:1283 -msgid "" -"Associates level *level* with text *levelName* in an internal dictionary, " -"which is used to map numeric levels to a textual representation, for example " -"when a :class:`Formatter` formats a message. This function can also be used " -"to define your own levels. The only constraints are that all levels used " -"must be registered using this function, levels should be positive integers " -"and they should increase in increasing order of severity." +msgid "The *level* parameter was defaulted to level ``CRITICAL``. See :issue:`28524` for more information about this change." msgstr "" -#: ../../library/logging.rst:1290 -msgid "" -"If you are thinking of defining your own levels, please see the section " -"on :ref:`custom-levels`." +msgid "Associates level *level* with text *levelName* in an internal dictionary, which is used to map numeric levels to a textual representation, for example when a :class:`Formatter` formats a message. This function can also be used to define your own levels. The only constraints are that all levels used must be registered using this function, levels should be positive integers and they should increase in increasing order of severity." msgstr "" -#: ../../library/logging.rst:1295 -msgid "" -"Returns a mapping from level names to their corresponding logging levels. " -"For example, the string \"CRITICAL\" maps to :const:`CRITICAL`. The returned " -"mapping is copied from an internal mapping on each call to this function." +msgid "If you are thinking of defining your own levels, please see the section on :ref:`custom-levels`." +msgstr "" + +msgid "Returns a mapping from level names to their corresponding logging levels. For example, the string \"CRITICAL\" maps to :const:`CRITICAL`. The returned mapping is copied from an internal mapping on each call to this function." msgstr "" -#: ../../library/logging.rst:1303 msgid "Returns the textual or numeric representation of logging level *level*." msgstr "" -#: ../../library/logging.rst:1305 -msgid "" -"If *level* is one of the predefined " -"levels :const:`CRITICAL`, :const:`ERROR`, :const:`WARNING`, :const:`INFO` " -"or :const:`DEBUG` then you get the corresponding string. If you have " -"associated levels with names using :func:`addLevelName` then the name you " -"have associated with *level* is returned. If a numeric value corresponding " -"to one of the defined levels is passed in, the corresponding string " -"representation is returned." +msgid "If *level* is one of the predefined levels :const:`CRITICAL`, :const:`ERROR`, :const:`WARNING`, :const:`INFO` or :const:`DEBUG` then you get the corresponding string. If you have associated levels with names using :func:`addLevelName` then the name you have associated with *level* is returned. If a numeric value corresponding to one of the defined levels is passed in, the corresponding string representation is returned." msgstr "" -#: ../../library/logging.rst:1312 -msgid "" -"The *level* parameter also accepts a string representation of the level such " -"as 'INFO'. In such cases, this functions returns the corresponding numeric " -"value of the level." +msgid "The *level* parameter also accepts a string representation of the level such as 'INFO'. In such cases, this functions returns the corresponding numeric value of the level." msgstr "" -#: ../../library/logging.rst:1316 -msgid "" -"If no matching numeric or string value is passed in, the string 'Level %s' % " -"level is returned." +msgid "If no matching numeric or string value is passed in, the string 'Level %s' % level is returned." msgstr "" -#: ../../library/logging.rst:1319 -msgid "" -"Levels are internally integers (as they need to be compared in the logging " -"logic). This function is used to convert between an integer level and the " -"level name displayed in the formatted log output by means of the ``%" -"(levelname)s`` format specifier (see :ref:`logrecord-attributes`), and vice " -"versa." +msgid "Levels are internally integers (as they need to be compared in the logging logic). This function is used to convert between an integer level and the level name displayed in the formatted log output by means of the ``%(levelname)s`` format specifier (see :ref:`logrecord-attributes`), and vice versa." msgstr "" -#: ../../library/logging.rst:1325 -msgid "" -"In Python versions earlier than 3.4, this function could also be passed a " -"text level, and would return the corresponding numeric value of the level. " -"This undocumented behaviour was considered a mistake, and was removed in " -"Python 3.4, but reinstated in 3.4.2 due to retain backward compatibility." +msgid "In Python versions earlier than 3.4, this function could also be passed a text level, and would return the corresponding numeric value of the level. This undocumented behaviour was considered a mistake, and was removed in Python 3.4, but reinstated in 3.4.2 due to retain backward compatibility." msgstr "" -#: ../../library/logging.rst:1333 -msgid "" -"Returns a handler with the specified *name*, or ``None`` if there is no " -"handler with that name." +msgid "Returns a handler with the specified *name*, or ``None`` if there is no handler with that name." msgstr "" -#: ../../library/logging.rst:1340 msgid "Returns an immutable set of all known handler names." msgstr "" -#: ../../library/logging.rst:1346 -msgid "" -"Creates and returns a new :class:`LogRecord` instance whose attributes are " -"defined by *attrdict*. This function is useful for taking a " -"pickled :class:`LogRecord` attribute dictionary, sent over a socket, and " -"reconstituting it as a :class:`LogRecord` instance at the receiving end." +msgid "Creates and returns a new :class:`LogRecord` instance whose attributes are defined by *attrdict*. This function is useful for taking a pickled :class:`LogRecord` attribute dictionary, sent over a socket, and reconstituting it as a :class:`LogRecord` instance at the receiving end." msgstr "" -#: ../../library/logging.rst:1354 -msgid "" -"Does basic configuration for the logging system by creating " -"a :class:`StreamHandler` with a default :class:`Formatter` and adding it to " -"the root logger. The " -"functions :func:`debug`, :func:`info`, :func:`warning`, :func:`error` " -"and :func:`critical` will call :func:`basicConfig` automatically if no " -"handlers are defined for the root logger." +msgid "Does basic configuration for the logging system by creating a :class:`StreamHandler` with a default :class:`Formatter` and adding it to the root logger. The functions :func:`debug`, :func:`info`, :func:`warning`, :func:`error` and :func:`critical` will call :func:`basicConfig` automatically if no handlers are defined for the root logger." msgstr "" -#: ../../library/logging.rst:1360 -msgid "" -"This function does nothing if the root logger already has handlers " -"configured, unless the keyword argument *force* is set to ``True``." +msgid "This function does nothing if the root logger already has handlers configured, unless the keyword argument *force* is set to ``True``." msgstr "" -#: ../../library/logging.rst:1363 -msgid "" -"This function should be called from the main thread before other threads are " -"started. In versions of Python prior to 2.7.1 and 3.2, if this function is " -"called from multiple threads, it is possible (in rare circumstances) that a " -"handler will be added to the root logger more than once, leading to " -"unexpected results such as messages being duplicated in the log." +msgid "This function should be called from the main thread before other threads are started. In versions of Python prior to 2.7.1 and 3.2, if this function is called from multiple threads, it is possible (in rare circumstances) that a handler will be added to the root logger more than once, leading to unexpected results such as messages being duplicated in the log." msgstr "" -#: ../../library/logging.rst:1370 msgid "The following keyword arguments are supported." msgstr "" -#: ../../library/logging.rst:1377 msgid "*filename*" msgstr "" -#: ../../library/logging.rst:1377 -msgid "" -"Specifies that a :class:`FileHandler` be created, using the specified " -"filename, rather than a :class:`StreamHandler`." +msgid "Specifies that a :class:`FileHandler` be created, using the specified filename, rather than a :class:`StreamHandler`." msgstr "" -#: ../../library/logging.rst:1381 msgid "*filemode*" msgstr "" -#: ../../library/logging.rst:1381 -msgid "" -"If *filename* is specified, open the file in this :ref:`mode `. " -"Defaults to ``'a'``." +msgid "If *filename* is specified, open the file in this :ref:`mode `. Defaults to ``'a'``." msgstr "" -#: ../../library/logging.rst:1385 msgid "*format*" msgstr "" -#: ../../library/logging.rst:1385 -msgid "" -"Use the specified format string for the handler. Defaults to attributes " -"``levelname``, ``name`` and ``message`` separated by colons." +msgid "Use the specified format string for the handler. Defaults to attributes ``levelname``, ``name`` and ``message`` separated by colons." msgstr "" -#: ../../library/logging.rst:1390 msgid "*datefmt*" msgstr "" -#: ../../library/logging.rst:1390 -msgid "" -"Use the specified date/time format, as accepted by :func:`time.strftime`." +msgid "Use the specified date/time format, as accepted by :func:`time.strftime`." msgstr "" -#: ../../library/logging.rst:1393 msgid "*style*" msgstr "" -#: ../../library/logging.rst:1393 -msgid "" -"If *format* is specified, use this style for the format string. One of " -"``'%'``, ``'{'`` or ``'$'`` for :ref:`printf-style `, :meth:`str.format` or :class:`string.Template` respectively. " -"Defaults to ``'%'``." +msgid "If *format* is specified, use this style for the format string. One of ``'%'``, ``'{'`` or ``'$'`` for :ref:`printf-style `, :meth:`str.format` or :class:`string.Template` respectively. Defaults to ``'%'``." msgstr "" -#: ../../library/logging.rst:1401 msgid "*level*" msgstr "" -#: ../../library/logging.rst:1401 msgid "Set the root logger level to the specified :ref:`level `." msgstr "" -#: ../../library/logging.rst:1404 msgid "*stream*" msgstr "" -#: ../../library/logging.rst:1404 -msgid "" -"Use the specified stream to initialize the :class:`StreamHandler`. Note that " -"this argument is incompatible with *filename* - if both are present, a " -"``ValueError`` is raised." +msgid "Use the specified stream to initialize the :class:`StreamHandler`. Note that this argument is incompatible with *filename* - if both are present, a ``ValueError`` is raised." msgstr "" -#: ../../library/logging.rst:1410 msgid "*handlers*" msgstr "" -#: ../../library/logging.rst:1410 -msgid "" -"If specified, this should be an iterable of already created handlers to add " -"to the root logger. Any handlers which don't already have a formatter set " -"will be assigned the default formatter created in this function. Note that " -"this argument is incompatible with *filename* or *stream* - if both are " -"present, a ``ValueError`` is raised." +msgid "If specified, this should be an iterable of already created handlers to add to the root logger. Any handlers which don't already have a formatter set will be assigned the default formatter created in this function. Note that this argument is incompatible with *filename* or *stream* - if both are present, a ``ValueError`` is raised." msgstr "" -#: ../../library/logging.rst:1419 msgid "*force*" msgstr "" -#: ../../library/logging.rst:1419 -msgid "" -"If this keyword argument is specified as true, any existing handlers " -"attached to the root logger are removed and closed, before carrying out the " -"configuration as specified by the other arguments." +msgid "If this keyword argument is specified as true, any existing handlers attached to the root logger are removed and closed, before carrying out the configuration as specified by the other arguments." msgstr "" -#: ../../library/logging.rst:1425 msgid "*encoding*" msgstr "" -#: ../../library/logging.rst:1425 -msgid "" -"If this keyword argument is specified along with *filename*, its value is " -"used when the :class:`FileHandler` is created, and thus used when opening " -"the output file." +msgid "If this keyword argument is specified along with *filename*, its value is used when the :class:`FileHandler` is created, and thus used when opening the output file." msgstr "" -#: ../../library/logging.rst:1430 msgid "*errors*" msgstr "" -#: ../../library/logging.rst:1430 -msgid "" -"If this keyword argument is specified along with *filename*, its value is " -"used when the :class:`FileHandler` is created, and thus used when opening " -"the output file. If not specified, the value 'backslashreplace' is used. " -"Note that if ``None`` is specified, it will be passed as such " -"to :func:`open`, which means that it will be treated the same as passing " -"'errors'." +msgid "If this keyword argument is specified along with *filename*, its value is used when the :class:`FileHandler` is created, and thus used when opening the output file. If not specified, the value 'backslashreplace' is used. Note that if ``None`` is specified, it will be passed as such to :func:`open`, which means that it will be treated the same as passing 'errors'." msgstr "" -#: ../../library/logging.rst:1441 msgid "The *style* argument was added." msgstr "" -#: ../../library/logging.rst:1444 -msgid "" -"The *handlers* argument was added. Additional checks were added to catch " -"situations where incompatible arguments are specified (e.g. *handlers* " -"together with *stream* or *filename*, or *stream* together with *filename*)." +msgid "The *handlers* argument was added. Additional checks were added to catch situations where incompatible arguments are specified (e.g. *handlers* together with *stream* or *filename*, or *stream* together with *filename*)." msgstr "" -#: ../../library/logging.rst:1450 msgid "The *force* argument was added." msgstr "" -#: ../../library/logging.rst:1453 msgid "The *encoding* and *errors* arguments were added." msgstr "" -#: ../../library/logging.rst:1458 -msgid "" -"Informs the logging system to perform an orderly shutdown by flushing and " -"closing all handlers. This should be called at application exit and no " -"further use of the logging system should be made after this call." +msgid "Informs the logging system to perform an orderly shutdown by flushing and closing all handlers. This should be called at application exit and no further use of the logging system should be made after this call." msgstr "" -#: ../../library/logging.rst:1462 -msgid "" -"When the logging module is imported, it registers this function as an exit " -"handler (see :mod:`atexit`), so normally there's no need to do that manually." +msgid "When the logging module is imported, it registers this function as an exit handler (see :mod:`atexit`), so normally there's no need to do that manually." msgstr "" -#: ../../library/logging.rst:1469 -msgid "" -"Tells the logging system to use the class *klass* when instantiating a " -"logger. The class should define :meth:`!__init__` such that only a name " -"argument is required, and the :meth:`!__init__` should call :meth:`!" -"Logger.__init__`. This function is typically called before any loggers are " -"instantiated by applications which need to use custom logger behavior. After " -"this call, as at any other time, do not instantiate loggers directly using " -"the subclass: continue to use the :func:`logging.getLogger` API to get your " -"loggers." +msgid "Tells the logging system to use the class *klass* when instantiating a logger. The class should define :meth:`!__init__` such that only a name argument is required, and the :meth:`!__init__` should call :meth:`!Logger.__init__`. This function is typically called before any loggers are instantiated by applications which need to use custom logger behavior. After this call, as at any other time, do not instantiate loggers directly using the subclass: continue to use the :func:`logging.getLogger` API to get your loggers." msgstr "" -#: ../../library/logging.rst:1480 msgid "Set a callable which is used to create a :class:`LogRecord`." msgstr "" -#: ../../library/logging.rst:1482 msgid "The factory callable to be used to instantiate a log record." msgstr "" -#: ../../library/logging.rst:1484 -msgid "" -"This function has been provided, along with :func:`getLogRecordFactory`, to " -"allow developers more control over how the :class:`LogRecord` representing a " -"logging event is constructed." +msgid "This function has been provided, along with :func:`getLogRecordFactory`, to allow developers more control over how the :class:`LogRecord` representing a logging event is constructed." msgstr "" -#: ../../library/logging.rst:1489 msgid "The factory has the following signature:" msgstr "" -#: ../../library/logging.rst:1491 -msgid "" -"``factory(name, level, fn, lno, msg, args, exc_info, func=None, sinfo=None, " -"**kwargs)``" +msgid "``factory(name, level, fn, lno, msg, args, exc_info, func=None, sinfo=None, **kwargs)``" msgstr "" -#: ../../library/logging.rst:1493 msgid "The logger name." msgstr "" -#: ../../library/logging.rst:0 msgid "level" msgstr "" -#: ../../library/logging.rst:1494 msgid "The logging level (numeric)." msgstr "" -#: ../../library/logging.rst:0 msgid "fn" msgstr "" -#: ../../library/logging.rst:1495 msgid "The full pathname of the file where the logging call was made." msgstr "" -#: ../../library/logging.rst:0 msgid "lno" msgstr "" -#: ../../library/logging.rst:1496 msgid "The line number in the file where the logging call was made." msgstr "" -#: ../../library/logging.rst:1497 msgid "The logging message." msgstr "" -#: ../../library/logging.rst:1498 msgid "The arguments for the logging message." msgstr "" -#: ../../library/logging.rst:1499 msgid "An exception tuple, or ``None``." msgstr "" -#: ../../library/logging.rst:0 msgid "func" msgstr "" -#: ../../library/logging.rst:1500 msgid "The name of the function or method which invoked the logging call." msgstr "" -#: ../../library/logging.rst:0 msgid "sinfo" msgstr "" -#: ../../library/logging.rst:1502 -msgid "" -"A stack traceback such as is provided by :func:`traceback.print_stack`, " -"showing the call hierarchy." +msgid "A stack traceback such as is provided by :func:`traceback.print_stack`, showing the call hierarchy." msgstr "" -#: ../../library/logging.rst:0 msgid "kwargs" msgstr "" -#: ../../library/logging.rst:1504 msgid "Additional keyword arguments." msgstr "" -#: ../../library/logging.rst:1508 msgid "Module-Level Attributes" msgstr "" -#: ../../library/logging.rst:1512 -msgid "" -"A \"handler of last resort\" is available through this attribute. This is " -"a :class:`StreamHandler` writing to ``sys.stderr`` with a level of " -"``WARNING``, and is used to handle logging events in the absence of any " -"logging configuration. The end result is to just print the message to " -"``sys.stderr``. This replaces the earlier error message saying that \"no " -"handlers could be found for logger XYZ\". If you need the earlier behaviour " -"for some reason, ``lastResort`` can be set to ``None``." +msgid "A \"handler of last resort\" is available through this attribute. This is a :class:`StreamHandler` writing to ``sys.stderr`` with a level of ``WARNING``, and is used to handle logging events in the absence of any logging configuration. The end result is to just print the message to ``sys.stderr``. This replaces the earlier error message saying that \"no handlers could be found for logger XYZ\". If you need the earlier behaviour for some reason, ``lastResort`` can be set to ``None``." msgstr "" -#: ../../library/logging.rst:1524 msgid "Used to see if exceptions during handling should be propagated." msgstr "" -#: ../../library/logging.rst:1526 msgid "Default: ``True``." msgstr "" -#: ../../library/logging.rst:1528 -msgid "" -"If :data:`raiseExceptions` is ``False``, exceptions get silently ignored. " -"This is what is mostly wanted for a logging system - most users will not " -"care about errors in the logging system, they are more interested in " -"application errors." +msgid "If :data:`raiseExceptions` is ``False``, exceptions get silently ignored. This is what is mostly wanted for a logging system - most users will not care about errors in the logging system, they are more interested in application errors." msgstr "" -#: ../../library/logging.rst:1535 msgid "Integration with the warnings module" msgstr "" -#: ../../library/logging.rst:1537 -msgid "" -"The :func:`captureWarnings` function can be used to integrate :mod:`!" -"logging` with the :mod:`warnings` module." +msgid "The :func:`captureWarnings` function can be used to integrate :mod:`!logging` with the :mod:`warnings` module." msgstr "" -#: ../../library/logging.rst:1542 -msgid "" -"This function is used to turn the capture of warnings by logging on and off." +msgid "This function is used to turn the capture of warnings by logging on and off." msgstr "" -#: ../../library/logging.rst:1545 -msgid "" -"If *capture* is ``True``, warnings issued by the :mod:`warnings` module will " -"be redirected to the logging system. Specifically, a warning will be " -"formatted using :func:`warnings.formatwarning` and the resulting string " -"logged to a logger named ``'py.warnings'`` with a severity " -"of :const:`WARNING`." +msgid "If *capture* is ``True``, warnings issued by the :mod:`warnings` module will be redirected to the logging system. Specifically, a warning will be formatted using :func:`warnings.formatwarning` and the resulting string logged to a logger named ``'py.warnings'`` with a severity of :const:`WARNING`." msgstr "" -#: ../../library/logging.rst:1550 -msgid "" -"If *capture* is ``False``, the redirection of warnings to the logging system " -"will stop, and warnings will be redirected to their original destinations " -"(i.e. those in effect before ``captureWarnings(True)`` was called)." +msgid "If *capture* is ``False``, the redirection of warnings to the logging system will stop, and warnings will be redirected to their original destinations (i.e. those in effect before ``captureWarnings(True)`` was called)." msgstr "" -#: ../../library/logging.rst:1557 msgid "Module :mod:`logging.config`" msgstr "" -#: ../../library/logging.rst:1558 msgid "Configuration API for the logging module." msgstr "" -#: ../../library/logging.rst:1560 msgid "Module :mod:`logging.handlers`" msgstr "" -#: ../../library/logging.rst:1561 msgid "Useful handlers included with the logging module." msgstr "" -#: ../../library/logging.rst:1563 msgid ":pep:`282` - A Logging System" msgstr "" -#: ../../library/logging.rst:1564 -msgid "" -"The proposal which described this feature for inclusion in the Python " -"standard library." +msgid "The proposal which described this feature for inclusion in the Python standard library." msgstr "" -#: ../../library/logging.rst:1567 -msgid "" -"`Original Python logging package `_" +msgid "`Original Python logging package `_" msgstr "" -#: ../../library/logging.rst:1568 -msgid "" -"This is the original source for the :mod:`!logging` package. The version of " -"the package available from this site is suitable for use with Python 1.5.2, " -"2.1.x and 2.2.x, which do not include the :mod:`!logging` package in the " -"standard library." +msgid "This is the original source for the :mod:`!logging` package. The version of the package available from this site is suitable for use with Python 1.5.2, 2.1.x and 2.2.x, which do not include the :mod:`!logging` package in the standard library." msgstr "" -#: ../../library/logging.rst:12 msgid "Errors" msgstr "" -#: ../../library/logging.rst:12 msgid "logging" msgstr "" diff --git a/library/lzma.po b/library/lzma.po index da7c9cd1..5900d0f6 100644 --- a/library/lzma.po +++ b/library/lzma.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:09+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,703 +24,366 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/lzma.rst:2 msgid ":mod:`!lzma` --- Compression using the LZMA algorithm" msgstr "" -#: ../../library/lzma.rst:12 msgid "**Source code:** :source:`Lib/lzma.py`" msgstr "" -#: ../../library/lzma.rst:16 -msgid "" -"This module provides classes and convenience functions for compressing and " -"decompressing data using the LZMA compression algorithm. Also included is a " -"file interface supporting the ``.xz`` and legacy ``.lzma`` file formats used " -"by the :program:`xz` utility, as well as raw compressed streams." +msgid "This module provides classes and convenience functions for compressing and decompressing data using the LZMA compression algorithm. Also included is a file interface supporting the ``.xz`` and legacy ``.lzma`` file formats used by the :program:`xz` utility, as well as raw compressed streams." msgstr "" -#: ../../library/lzma.rst:21 -msgid "" -"The interface provided by this module is very similar to that of " -"the :mod:`bz2` module. Note that :class:`LZMAFile` and :class:`bz2.BZ2File` " -"are *not* thread-safe, so if you need to use a single :class:`LZMAFile` " -"instance from multiple threads, it is necessary to protect it with a lock." +msgid "The interface provided by this module is very similar to that of the :mod:`bz2` module. Note that :class:`LZMAFile` and :class:`bz2.BZ2File` are *not* thread-safe, so if you need to use a single :class:`LZMAFile` instance from multiple threads, it is necessary to protect it with a lock." msgstr "" -#: ../../includes/optional-module.rst:1 -msgid "" -"This is an :term:`optional module`. If it is missing from your copy of " -"CPython, look for documentation from your distributor (that is, whoever " -"provided Python to you). If you are the distributor, see :ref:`optional-" -"module-requirements`." +msgid "This is an :term:`optional module`. If it is missing from your copy of CPython, look for documentation from your distributor (that is, whoever provided Python to you). If you are the distributor, see :ref:`optional-module-requirements`." msgstr "" -#: ../../library/lzma.rst:31 -msgid "" -"This exception is raised when an error occurs during compression or " -"decompression, or while initializing the compressor/decompressor state." +msgid "This exception is raised when an error occurs during compression or decompression, or while initializing the compressor/decompressor state." msgstr "" -#: ../../library/lzma.rst:36 msgid "Reading and writing compressed files" msgstr "" -#: ../../library/lzma.rst:40 -msgid "" -"Open an LZMA-compressed file in binary or text mode, returning a :term:`file " -"object`." +msgid "Open an LZMA-compressed file in binary or text mode, returning a :term:`file object`." msgstr "" -#: ../../library/lzma.rst:43 -msgid "" -"The *filename* argument can be either an actual file name (given as " -"a :class:`str`, :class:`bytes` or :term:`path-like ` " -"object), in which case the named file is opened, or it can be an existing " -"file object to read from or write to." +msgid "The *filename* argument can be either an actual file name (given as a :class:`str`, :class:`bytes` or :term:`path-like ` object), in which case the named file is opened, or it can be an existing file object to read from or write to." msgstr "" -#: ../../library/lzma.rst:48 -msgid "" -"The *mode* argument can be any of ``\"r\"``, ``\"rb\"``, ``\"w\"``, " -"``\"wb\"``, ``\"x\"``, ``\"xb\"``, ``\"a\"`` or ``\"ab\"`` for binary mode, " -"or ``\"rt\"``, ``\"wt\"``, ``\"xt\"``, or ``\"at\"`` for text mode. The " -"default is ``\"rb\"``." +msgid "The *mode* argument can be any of ``\"r\"``, ``\"rb\"``, ``\"w\"``, ``\"wb\"``, ``\"x\"``, ``\"xb\"``, ``\"a\"`` or ``\"ab\"`` for binary mode, or ``\"rt\"``, ``\"wt\"``, ``\"xt\"``, or ``\"at\"`` for text mode. The default is ``\"rb\"``." msgstr "" -#: ../../library/lzma.rst:52 ../../library/lzma.rst:97 -msgid "" -"When opening a file for reading, the *format* and *filters* arguments have " -"the same meanings as for :class:`LZMADecompressor`. In this case, the " -"*check* and *preset* arguments should not be used." +msgid "When opening a file for reading, the *format* and *filters* arguments have the same meanings as for :class:`LZMADecompressor`. In this case, the *check* and *preset* arguments should not be used." msgstr "" -#: ../../library/lzma.rst:56 ../../library/lzma.rst:101 -msgid "" -"When opening a file for writing, the *format*, *check*, *preset* and " -"*filters* arguments have the same meanings as for :class:`LZMACompressor`." +msgid "When opening a file for writing, the *format*, *check*, *preset* and *filters* arguments have the same meanings as for :class:`LZMACompressor`." msgstr "" -#: ../../library/lzma.rst:59 -msgid "" -"For binary mode, this function is equivalent to the :class:`LZMAFile` " -"constructor: ``LZMAFile(filename, mode, ...)``. In this case, the " -"*encoding*, *errors* and *newline* arguments must not be provided." +msgid "For binary mode, this function is equivalent to the :class:`LZMAFile` constructor: ``LZMAFile(filename, mode, ...)``. In this case, the *encoding*, *errors* and *newline* arguments must not be provided." msgstr "" -#: ../../library/lzma.rst:63 -msgid "" -"For text mode, a :class:`LZMAFile` object is created, and wrapped in " -"an :class:`io.TextIOWrapper` instance with the specified encoding, error " -"handling behavior, and line ending(s)." +msgid "For text mode, a :class:`LZMAFile` object is created, and wrapped in an :class:`io.TextIOWrapper` instance with the specified encoding, error handling behavior, and line ending(s)." msgstr "" -#: ../../library/lzma.rst:67 msgid "Added support for the ``\"x\"``, ``\"xb\"`` and ``\"xt\"`` modes." msgstr "" -#: ../../library/lzma.rst:70 ../../library/lzma.rst:143 msgid "Accepts a :term:`path-like object`." msgstr "" -#: ../../library/lzma.rst:76 msgid "Open an LZMA-compressed file in binary mode." msgstr "" -#: ../../library/lzma.rst:78 -msgid "" -"An :class:`LZMAFile` can wrap an already-open :term:`file object`, or " -"operate directly on a named file. The *filename* argument specifies either " -"the file object to wrap, or the name of the file to open (as " -"a :class:`str`, :class:`bytes` or :term:`path-like ` " -"object). When wrapping an existing file object, the wrapped file will not be " -"closed when the :class:`LZMAFile` is closed." +msgid "An :class:`LZMAFile` can wrap an already-open :term:`file object`, or operate directly on a named file. The *filename* argument specifies either the file object to wrap, or the name of the file to open (as a :class:`str`, :class:`bytes` or :term:`path-like ` object). When wrapping an existing file object, the wrapped file will not be closed when the :class:`LZMAFile` is closed." msgstr "" -#: ../../library/lzma.rst:85 -msgid "" -"The *mode* argument can be either ``\"r\"`` for reading (default), ``\"w\"`` " -"for overwriting, ``\"x\"`` for exclusive creation, or ``\"a\"`` for " -"appending. These can equivalently be given as ``\"rb\"``, ``\"wb\"``, " -"``\"xb\"`` and ``\"ab\"`` respectively." +msgid "The *mode* argument can be either ``\"r\"`` for reading (default), ``\"w\"`` for overwriting, ``\"x\"`` for exclusive creation, or ``\"a\"`` for appending. These can equivalently be given as ``\"rb\"``, ``\"wb\"``, ``\"xb\"`` and ``\"ab\"`` respectively." msgstr "" -#: ../../library/lzma.rst:90 -msgid "" -"If *filename* is a file object (rather than an actual file name), a mode of " -"``\"w\"`` does not truncate the file, and is instead equivalent to ``\"a\"``." +msgid "If *filename* is a file object (rather than an actual file name), a mode of ``\"w\"`` does not truncate the file, and is instead equivalent to ``\"a\"``." msgstr "" -#: ../../library/lzma.rst:93 -msgid "" -"When opening a file for reading, the input file may be the concatenation of " -"multiple separate compressed streams. These are transparently decoded as a " -"single logical stream." +msgid "When opening a file for reading, the input file may be the concatenation of multiple separate compressed streams. These are transparently decoded as a single logical stream." msgstr "" -#: ../../library/lzma.rst:104 -msgid "" -":class:`LZMAFile` supports all the members specified " -"by :class:`io.BufferedIOBase`, except for :meth:`~io.BufferedIOBase.detach` " -"and :meth:`~io.IOBase.truncate`. Iteration and the :keyword:`with` statement " -"are supported." +msgid ":class:`LZMAFile` supports all the members specified by :class:`io.BufferedIOBase`, except for :meth:`~io.BufferedIOBase.detach` and :meth:`~io.IOBase.truncate`. Iteration and the :keyword:`with` statement are supported." msgstr "" -#: ../../library/lzma.rst:109 msgid "The following method and attributes are also provided:" msgstr "" -#: ../../library/lzma.rst:113 -msgid "" -"Return buffered data without advancing the file position. At least one byte " -"of data will be returned, unless EOF has been reached. The exact number of " -"bytes returned is unspecified (the *size* argument is ignored)." +msgid "Return buffered data without advancing the file position. At least one byte of data will be returned, unless EOF has been reached. The exact number of bytes returned is unspecified (the *size* argument is ignored)." msgstr "" -#: ../../library/lzma.rst:117 -msgid "" -"While calling :meth:`peek` does not change the file position of " -"the :class:`LZMAFile`, it may change the position of the underlying file " -"object (e.g. if the :class:`LZMAFile` was constructed by passing a file " -"object for *filename*)." +msgid "While calling :meth:`peek` does not change the file position of the :class:`LZMAFile`, it may change the position of the underlying file object (e.g. if the :class:`LZMAFile` was constructed by passing a file object for *filename*)." msgstr "" -#: ../../library/lzma.rst:124 msgid "``'rb'`` for reading and ``'wb'`` for writing." msgstr "" -#: ../../library/lzma.rst:130 -msgid "" -"The lzma file name. Equivalent to the :attr:`~io.FileIO.name` attribute of " -"the underlying :term:`file object`." +msgid "The lzma file name. Equivalent to the :attr:`~io.FileIO.name` attribute of the underlying :term:`file object`." msgstr "" -#: ../../library/lzma.rst:136 msgid "Added support for the ``\"x\"`` and ``\"xb\"`` modes." msgstr "" -#: ../../library/lzma.rst:139 -msgid "" -"The :meth:`~io.BufferedIOBase.read` method now accepts an argument of " -"``None``." +msgid "The :meth:`~io.BufferedIOBase.read` method now accepts an argument of ``None``." msgstr "" -#: ../../library/lzma.rst:148 msgid "Compressing and decompressing data in memory" msgstr "" -#: ../../library/lzma.rst:152 -msgid "" -"Create a compressor object, which can be used to compress data incrementally." +msgid "Create a compressor object, which can be used to compress data incrementally." msgstr "" -#: ../../library/lzma.rst:154 -msgid "" -"For a more convenient way of compressing a single chunk of data, " -"see :func:`compress`." +msgid "For a more convenient way of compressing a single chunk of data, see :func:`compress`." msgstr "" -#: ../../library/lzma.rst:157 -msgid "" -"The *format* argument specifies what container format should be used. " -"Possible values are :const:`FORMAT_XZ` (the default), :const:`FORMAT_ALONE` " -"and :const:`FORMAT_RAW`." +msgid "The *format* argument specifies what container format should be used. Possible values are :const:`FORMAT_XZ` (the default), :const:`FORMAT_ALONE` and :const:`FORMAT_RAW`." msgstr "" -#: ../../library/lzma.rst:161 -msgid "" -"The *check* argument specifies the type of integrity check to include in the " -"compressed data. This check is used when decompressing, to ensure that the " -"data has not been corrupted. Possible values " -"are :const:`CHECK_NONE`, :const:`CHECK_CRC32`, :const:`CHECK_CRC64` (the " -"default for :const:`FORMAT_XZ`) and :const:`CHECK_SHA256`." +msgid "The *check* argument specifies the type of integrity check to include in the compressed data. This check is used when decompressing, to ensure that the data has not been corrupted. Possible values are :const:`CHECK_NONE`, :const:`CHECK_CRC32`, :const:`CHECK_CRC64` (the default for :const:`FORMAT_XZ`) and :const:`CHECK_SHA256`." msgstr "" -#: ../../library/lzma.rst:167 -msgid "" -"If the specified check is not supported, an :class:`LZMAError` is raised." +msgid "If the specified check is not supported, an :class:`LZMAError` is raised." msgstr "" -#: ../../library/lzma.rst:169 -msgid "" -"The compression settings can be specified either as a preset compression " -"level (with the *preset* argument), or in detail as a custom filter chain " -"(with the *filters* argument)." +msgid "The compression settings can be specified either as a preset compression level (with the *preset* argument), or in detail as a custom filter chain (with the *filters* argument)." msgstr "" -#: ../../library/lzma.rst:173 -msgid "" -"The *preset* argument (if provided) should be an integer between ``0`` and " -"``9`` (inclusive), optionally OR-ed with the " -"constant :const:`PRESET_EXTREME`. If neither *preset* nor *filters* are " -"given, the default behavior is to use :const:`PRESET_DEFAULT` (preset level " -"``6``). Higher presets produce smaller output, but make the compression " -"process slower." +msgid "The *preset* argument (if provided) should be an integer between ``0`` and ``9`` (inclusive), optionally OR-ed with the constant :const:`PRESET_EXTREME`. If neither *preset* nor *filters* are given, the default behavior is to use :const:`PRESET_DEFAULT` (preset level ``6``). Higher presets produce smaller output, but make the compression process slower." msgstr "" -#: ../../library/lzma.rst:182 -msgid "" -"In addition to being more CPU-intensive, compression with higher presets " -"also requires much more memory (and produces output that needs more memory " -"to decompress). With preset ``9`` for example, the overhead for " -"an :class:`LZMACompressor` object can be as high as 800 MiB. For this " -"reason, it is generally best to stick with the default preset." +msgid "In addition to being more CPU-intensive, compression with higher presets also requires much more memory (and produces output that needs more memory to decompress). With preset ``9`` for example, the overhead for an :class:`LZMACompressor` object can be as high as 800 MiB. For this reason, it is generally best to stick with the default preset." msgstr "" -#: ../../library/lzma.rst:188 -msgid "" -"The *filters* argument (if provided) should be a filter chain specifier. " -"See :ref:`filter-chain-specs` for details." +msgid "The *filters* argument (if provided) should be a filter chain specifier. See :ref:`filter-chain-specs` for details." msgstr "" -#: ../../library/lzma.rst:193 -msgid "" -"Compress *data* (a :class:`bytes` object), returning a :class:`bytes` object " -"containing compressed data for at least part of the input. Some of *data* " -"may be buffered internally, for use in later calls to :meth:`compress` " -"and :meth:`flush`. The returned data should be concatenated with the output " -"of any previous calls to :meth:`compress`." +msgid "Compress *data* (a :class:`bytes` object), returning a :class:`bytes` object containing compressed data for at least part of the input. Some of *data* may be buffered internally, for use in later calls to :meth:`compress` and :meth:`flush`. The returned data should be concatenated with the output of any previous calls to :meth:`compress`." msgstr "" -#: ../../library/lzma.rst:201 -msgid "" -"Finish the compression process, returning a :class:`bytes` object containing " -"any data stored in the compressor's internal buffers." +msgid "Finish the compression process, returning a :class:`bytes` object containing any data stored in the compressor's internal buffers." msgstr "" -#: ../../library/lzma.rst:204 msgid "The compressor cannot be used after this method has been called." msgstr "" -#: ../../library/lzma.rst:209 -msgid "" -"Create a decompressor object, which can be used to decompress data " -"incrementally." +msgid "Create a decompressor object, which can be used to decompress data incrementally." msgstr "" -#: ../../library/lzma.rst:212 -msgid "" -"For a more convenient way of decompressing an entire compressed stream at " -"once, see :func:`decompress`." +msgid "For a more convenient way of decompressing an entire compressed stream at once, see :func:`decompress`." msgstr "" -#: ../../library/lzma.rst:215 -msgid "" -"The *format* argument specifies the container format that should be used. " -"The default is :const:`FORMAT_AUTO`, which can decompress both ``.xz`` and " -"``.lzma`` files. Other possible values " -"are :const:`FORMAT_XZ`, :const:`FORMAT_ALONE`, and :const:`FORMAT_RAW`." +msgid "The *format* argument specifies the container format that should be used. The default is :const:`FORMAT_AUTO`, which can decompress both ``.xz`` and ``.lzma`` files. Other possible values are :const:`FORMAT_XZ`, :const:`FORMAT_ALONE`, and :const:`FORMAT_RAW`." msgstr "" -#: ../../library/lzma.rst:220 -msgid "" -"The *memlimit* argument specifies a limit (in bytes) on the amount of memory " -"that the decompressor can use. When this argument is used, decompression " -"will fail with an :class:`LZMAError` if it is not possible to decompress the " -"input within the given memory limit." +msgid "The *memlimit* argument specifies a limit (in bytes) on the amount of memory that the decompressor can use. When this argument is used, decompression will fail with an :class:`LZMAError` if it is not possible to decompress the input within the given memory limit." msgstr "" -#: ../../library/lzma.rst:225 -msgid "" -"The *filters* argument specifies the filter chain that was used to create " -"the stream being decompressed. This argument is required if *format* " -"is :const:`FORMAT_RAW`, but should not be used for other formats. " -"See :ref:`filter-chain-specs` for more information about filter chains." +msgid "The *filters* argument specifies the filter chain that was used to create the stream being decompressed. This argument is required if *format* is :const:`FORMAT_RAW`, but should not be used for other formats. See :ref:`filter-chain-specs` for more information about filter chains." msgstr "" -#: ../../library/lzma.rst:231 -msgid "" -"This class does not transparently handle inputs containing multiple " -"compressed streams, unlike :func:`decompress` and :class:`LZMAFile`. To " -"decompress a multi-stream input with :class:`LZMADecompressor`, you must " -"create a new decompressor for each stream." +msgid "This class does not transparently handle inputs containing multiple compressed streams, unlike :func:`decompress` and :class:`LZMAFile`. To decompress a multi-stream input with :class:`LZMADecompressor`, you must create a new decompressor for each stream." msgstr "" -#: ../../library/lzma.rst:238 -msgid "" -"Decompress *data* (a :term:`bytes-like object`), returning uncompressed data " -"as bytes. Some of *data* may be buffered internally, for use in later calls " -"to :meth:`decompress`. The returned data should be concatenated with the " -"output of any previous calls to :meth:`decompress`." +msgid "Decompress *data* (a :term:`bytes-like object`), returning uncompressed data as bytes. Some of *data* may be buffered internally, for use in later calls to :meth:`decompress`. The returned data should be concatenated with the output of any previous calls to :meth:`decompress`." msgstr "" -#: ../../library/lzma.rst:244 -msgid "" -"If *max_length* is nonnegative, returns at most *max_length* bytes of " -"decompressed data. If this limit is reached and further output can be " -"produced, the :attr:`~.needs_input` attribute will be set to ``False``. In " -"this case, the next call to :meth:`~.decompress` may provide *data* as " -"``b''`` to obtain more of the output." +msgid "If *max_length* is nonnegative, returns at most *max_length* bytes of decompressed data. If this limit is reached and further output can be produced, the :attr:`~.needs_input` attribute will be set to ``False``. In this case, the next call to :meth:`~.decompress` may provide *data* as ``b''`` to obtain more of the output." msgstr "" -#: ../../library/lzma.rst:251 -msgid "" -"If all of the input data was decompressed and returned (either because this " -"was less than *max_length* bytes, or because *max_length* was negative), " -"the :attr:`~.needs_input` attribute will be set to ``True``." +msgid "If all of the input data was decompressed and returned (either because this was less than *max_length* bytes, or because *max_length* was negative), the :attr:`~.needs_input` attribute will be set to ``True``." msgstr "" -#: ../../library/lzma.rst:256 -msgid "" -"Attempting to decompress data after the end of stream is reached raises " -"an :exc:`EOFError`. Any data found after the end of the stream is ignored " -"and saved in the :attr:`~.unused_data` attribute." +msgid "Attempting to decompress data after the end of stream is reached raises an :exc:`EOFError`. Any data found after the end of the stream is ignored and saved in the :attr:`~.unused_data` attribute." msgstr "" -#: ../../library/lzma.rst:260 msgid "Added the *max_length* parameter." msgstr "" -#: ../../library/lzma.rst:265 -msgid "" -"The ID of the integrity check used by the input stream. This may " -"be :const:`CHECK_UNKNOWN` until enough of the input has been decoded to " -"determine what integrity check it uses." +msgid "The ID of the integrity check used by the input stream. This may be :const:`CHECK_UNKNOWN` until enough of the input has been decoded to determine what integrity check it uses." msgstr "" -#: ../../library/lzma.rst:271 msgid "``True`` if the end-of-stream marker has been reached." msgstr "" -#: ../../library/lzma.rst:275 msgid "Data found after the end of the compressed stream." msgstr "" -#: ../../library/lzma.rst:277 msgid "Before the end of the stream is reached, this will be ``b\"\"``." msgstr "" -#: ../../library/lzma.rst:281 -msgid "" -"``False`` if the :meth:`.decompress` method can provide more decompressed " -"data before requiring new uncompressed input." +msgid "``False`` if the :meth:`.decompress` method can provide more decompressed data before requiring new uncompressed input." msgstr "" -#: ../../library/lzma.rst:288 -msgid "" -"Compress *data* (a :class:`bytes` object), returning the compressed data as " -"a :class:`bytes` object." +msgid "Compress *data* (a :class:`bytes` object), returning the compressed data as a :class:`bytes` object." msgstr "" -#: ../../library/lzma.rst:291 -msgid "" -"See :class:`LZMACompressor` above for a description of the *format*, " -"*check*, *preset* and *filters* arguments." +msgid "See :class:`LZMACompressor` above for a description of the *format*, *check*, *preset* and *filters* arguments." msgstr "" -#: ../../library/lzma.rst:297 -msgid "" -"Decompress *data* (a :class:`bytes` object), returning the uncompressed data " -"as a :class:`bytes` object." +msgid "Decompress *data* (a :class:`bytes` object), returning the uncompressed data as a :class:`bytes` object." msgstr "" -#: ../../library/lzma.rst:300 -msgid "" -"If *data* is the concatenation of multiple distinct compressed streams, " -"decompress all of these streams, and return the concatenation of the results." +msgid "If *data* is the concatenation of multiple distinct compressed streams, decompress all of these streams, and return the concatenation of the results." msgstr "" -#: ../../library/lzma.rst:303 -msgid "" -"See :class:`LZMADecompressor` above for a description of the *format*, " -"*memlimit* and *filters* arguments." +msgid "See :class:`LZMADecompressor` above for a description of the *format*, *memlimit* and *filters* arguments." msgstr "" -#: ../../library/lzma.rst:308 msgid "Miscellaneous" msgstr "" -#: ../../library/lzma.rst:312 -msgid "" -"Return ``True`` if the given integrity check is supported on this system." +msgid "Return ``True`` if the given integrity check is supported on this system." msgstr "" -#: ../../library/lzma.rst:314 -msgid "" -":const:`CHECK_NONE` and :const:`CHECK_CRC32` are always " -"supported. :const:`CHECK_CRC64` and :const:`CHECK_SHA256` may be unavailable " -"if you are using a version of :program:`liblzma` that was compiled with a " -"limited feature set." +msgid ":const:`CHECK_NONE` and :const:`CHECK_CRC32` are always supported. :const:`CHECK_CRC64` and :const:`CHECK_SHA256` may be unavailable if you are using a version of :program:`liblzma` that was compiled with a limited feature set." msgstr "" -#: ../../library/lzma.rst:323 msgid "Specifying custom filter chains" msgstr "" -#: ../../library/lzma.rst:325 -msgid "" -"A filter chain specifier is a sequence of dictionaries, where each " -"dictionary contains the ID and options for a single filter. Each dictionary " -"must contain the key ``\"id\"``, and may contain additional keys to specify " -"filter-dependent options. Valid filter IDs are as follows:" +msgid "A filter chain specifier is a sequence of dictionaries, where each dictionary contains the ID and options for a single filter. Each dictionary must contain the key ``\"id\"``, and may contain additional keys to specify filter-dependent options. Valid filter IDs are as follows:" msgstr "" -#: ../../library/lzma.rst:330 msgid "Compression filters:" msgstr "" -#: ../../library/lzma.rst:332 msgid ":const:`FILTER_LZMA1` (for use with :const:`FORMAT_ALONE`)" msgstr "" -#: ../../library/lzma.rst:333 -msgid "" -":const:`FILTER_LZMA2` (for use with :const:`FORMAT_XZ` " -"and :const:`FORMAT_RAW`)" +msgid ":const:`FILTER_LZMA2` (for use with :const:`FORMAT_XZ` and :const:`FORMAT_RAW`)" msgstr "" -#: ../../library/lzma.rst:335 msgid "Delta filter:" msgstr "" -#: ../../library/lzma.rst:337 msgid ":const:`FILTER_DELTA`" msgstr "" -#: ../../library/lzma.rst:339 msgid "Branch-Call-Jump (BCJ) filters:" msgstr "" -#: ../../library/lzma.rst:341 msgid ":const:`!FILTER_X86`" msgstr "" -#: ../../library/lzma.rst:342 msgid ":const:`!FILTER_IA64`" msgstr "" -#: ../../library/lzma.rst:343 msgid ":const:`!FILTER_ARM`" msgstr "" -#: ../../library/lzma.rst:344 msgid ":const:`!FILTER_ARMTHUMB`" msgstr "" -#: ../../library/lzma.rst:345 msgid ":const:`!FILTER_POWERPC`" msgstr "" -#: ../../library/lzma.rst:346 msgid ":const:`!FILTER_SPARC`" msgstr "" -#: ../../library/lzma.rst:348 -msgid "" -"A filter chain can consist of up to 4 filters, and cannot be empty. The last " -"filter in the chain must be a compression filter, and any other filters must " -"be delta or BCJ filters." +msgid "A filter chain can consist of up to 4 filters, and cannot be empty. The last filter in the chain must be a compression filter, and any other filters must be delta or BCJ filters." msgstr "" -#: ../../library/lzma.rst:352 -msgid "" -"Compression filters support the following options (specified as additional " -"entries in the dictionary representing the filter):" +msgid "Compression filters support the following options (specified as additional entries in the dictionary representing the filter):" msgstr "" -#: ../../library/lzma.rst:355 -msgid "" -"``preset``: A compression preset to use as a source of default values for " -"options that are not specified explicitly." +msgid "``preset``: A compression preset to use as a source of default values for options that are not specified explicitly." msgstr "" -#: ../../library/lzma.rst:357 -msgid "" -"``dict_size``: Dictionary size in bytes. This should be between 4 KiB and " -"1.5 GiB (inclusive)." +msgid "``dict_size``: Dictionary size in bytes. This should be between 4 KiB and 1.5 GiB (inclusive)." msgstr "" -#: ../../library/lzma.rst:359 msgid "``lc``: Number of literal context bits." msgstr "" -#: ../../library/lzma.rst:360 -msgid "" -"``lp``: Number of literal position bits. The sum ``lc + lp`` must be at most " -"4." +msgid "``lp``: Number of literal position bits. The sum ``lc + lp`` must be at most 4." msgstr "" -#: ../../library/lzma.rst:362 msgid "``pb``: Number of position bits; must be at most 4." msgstr "" -#: ../../library/lzma.rst:363 msgid "``mode``: :const:`MODE_FAST` or :const:`MODE_NORMAL`." msgstr "" -#: ../../library/lzma.rst:364 -msgid "" -"``nice_len``: What should be considered a \"nice length\" for a match. This " -"should be 273 or less." +msgid "``nice_len``: What should be considered a \"nice length\" for a match. This should be 273 or less." msgstr "" -#: ../../library/lzma.rst:366 -msgid "" -"``mf``: What match finder to use " -"-- :const:`MF_HC3`, :const:`MF_HC4`, :const:`MF_BT2`, :const:`MF_BT3`, " -"or :const:`MF_BT4`." +msgid "``mf``: What match finder to use -- :const:`MF_HC3`, :const:`MF_HC4`, :const:`MF_BT2`, :const:`MF_BT3`, or :const:`MF_BT4`." msgstr "" -#: ../../library/lzma.rst:368 -msgid "" -"``depth``: Maximum search depth used by match finder. 0 (default) means to " -"select automatically based on other filter options." +msgid "``depth``: Maximum search depth used by match finder. 0 (default) means to select automatically based on other filter options." msgstr "" -#: ../../library/lzma.rst:371 -msgid "" -"The delta filter stores the differences between bytes, producing more " -"repetitive input for the compressor in certain circumstances. It supports " -"one option, ``dist``. This indicates the distance between bytes to be " -"subtracted. The default is 1, i.e. take the differences between adjacent " -"bytes." +msgid "The delta filter stores the differences between bytes, producing more repetitive input for the compressor in certain circumstances. It supports one option, ``dist``. This indicates the distance between bytes to be subtracted. The default is 1, i.e. take the differences between adjacent bytes." msgstr "" -#: ../../library/lzma.rst:376 -msgid "" -"The BCJ filters are intended to be applied to machine code. They convert " -"relative branches, calls and jumps in the code to use absolute addressing, " -"with the aim of increasing the redundancy that can be exploited by the " -"compressor. These filters support one option, ``start_offset``. This " -"specifies the address that should be mapped to the beginning of the input " -"data. The default is 0." +msgid "The BCJ filters are intended to be applied to machine code. They convert relative branches, calls and jumps in the code to use absolute addressing, with the aim of increasing the redundancy that can be exploited by the compressor. These filters support one option, ``start_offset``. This specifies the address that should be mapped to the beginning of the input data. The default is 0." msgstr "" -#: ../../library/lzma.rst:384 msgid "Constants" msgstr "" -#: ../../library/lzma.rst:386 -msgid "" -"The following module-level constants are provided for use as the *format*, " -"*check*, *preset* and *filters* arguments of the classes and functions above." +msgid "The following module-level constants are provided for use as the *format*, *check*, *preset* and *filters* arguments of the classes and functions above." msgstr "" -#: ../../library/lzma.rst:389 msgid "Container formats:" msgstr "" -#: ../../library/lzma.rst:393 msgid "The ``.xz`` container format." msgstr "" -#: ../../library/lzma.rst:397 -msgid "" -"The legacy ``.lzma`` container format. This format is more limited than " -"``.xz`` -- it does not support integrity checks or multiple filters." +msgid "The legacy ``.lzma`` container format. This format is more limited than ``.xz`` -- it does not support integrity checks or multiple filters." msgstr "" -#: ../../library/lzma.rst:402 -msgid "" -"A raw data stream, not using any container format. This format specifier " -"does not support integrity checks, and requires that you always specify a " -"custom filter chain (for both compression and decompression). Additionally, " -"data compressed in this manner cannot be decompressed " -"using :const:`FORMAT_AUTO`." +msgid "A raw data stream, not using any container format. This format specifier does not support integrity checks, and requires that you always specify a custom filter chain (for both compression and decompression). Additionally, data compressed in this manner cannot be decompressed using :const:`FORMAT_AUTO`." msgstr "" -#: ../../library/lzma.rst:410 -msgid "" -"Used for decompression only. The container format is detected " -"automatically, so that both ``.xz`` and ``.lzma`` files can be decompressed." +msgid "Used for decompression only. The container format is detected automatically, so that both ``.xz`` and ``.lzma`` files can be decompressed." msgstr "" -#: ../../library/lzma.rst:413 msgid "Integrity checks:" msgstr "" -#: ../../library/lzma.rst:417 -msgid "" -"No integrity check. This is the default (and the only acceptable value) " -"for :const:`FORMAT_ALONE` and :const:`FORMAT_RAW`." +msgid "No integrity check. This is the default (and the only acceptable value) for :const:`FORMAT_ALONE` and :const:`FORMAT_RAW`." msgstr "" -#: ../../library/lzma.rst:422 msgid "A 32-bit Cyclic Redundancy Check." msgstr "" -#: ../../library/lzma.rst:426 -msgid "" -"A 64-bit Cyclic Redundancy Check. This is the default " -"for :const:`FORMAT_XZ`." +msgid "A 64-bit Cyclic Redundancy Check. This is the default for :const:`FORMAT_XZ`." msgstr "" -#: ../../library/lzma.rst:431 msgid "A 256-bit Secure Hash Algorithm." msgstr "" -#: ../../library/lzma.rst:435 -msgid "" -"The integrity check used by a stream could not yet be determined. This may " -"be the value of the :attr:`LZMADecompressor.check` attribute until enough of " -"the input has been decoded." +msgid "The integrity check used by a stream could not yet be determined. This may be the value of the :attr:`LZMADecompressor.check` attribute until enough of the input has been decoded." msgstr "" -#: ../../library/lzma.rst:441 msgid "The largest supported integrity-check ID." msgstr "" -#: ../../library/lzma.rst:443 msgid "Compression presets:" msgstr "" -#: ../../library/lzma.rst:447 msgid "The default compression preset, equivalent to preset level ``6``." msgstr "" -#: ../../library/lzma.rst:451 -msgid "" -"A flag that may be bitwise OR-ed with a preset level (``0`` to ``9``) to " -"select a slower but more thorough variant of that preset." +msgid "A flag that may be bitwise OR-ed with a preset level (``0`` to ``9``) to select a slower but more thorough variant of that preset." msgstr "" -#: ../../library/lzma.rst:454 msgid "Filter IDs and options:" msgstr "" -#: ../../library/lzma.rst:459 -msgid "" -"The LZMA1 and LZMA2 compression filters. :const:`FILTER_LZMA1` is for use " -"with :const:`FORMAT_ALONE`, while :const:`FILTER_LZMA2` is for use " -"with :const:`FORMAT_XZ` and :const:`FORMAT_RAW`." +msgid "The LZMA1 and LZMA2 compression filters. :const:`FILTER_LZMA1` is for use with :const:`FORMAT_ALONE`, while :const:`FILTER_LZMA2` is for use with :const:`FORMAT_XZ` and :const:`FORMAT_RAW`." msgstr "" -#: ../../library/lzma.rst:465 msgid "The delta filter." msgstr "" -#: ../../library/lzma.rst:470 -msgid "" -"Compression modes that may be used as the ``mode`` option of a filter " -"specifier (see :ref:`filter-chain-specs`)." +msgid "Compression modes that may be used as the ``mode`` option of a filter specifier (see :ref:`filter-chain-specs`)." msgstr "" -#: ../../library/lzma.rst:479 -msgid "" -"Match finders that may be used as the ``mf`` option of a filter specifier " -"(see :ref:`filter-chain-specs`)." +msgid "Match finders that may be used as the ``mf`` option of a filter specifier (see :ref:`filter-chain-specs`)." msgstr "" -#: ../../library/lzma.rst:484 msgid "Examples" msgstr "" -#: ../../library/lzma.rst:486 msgid "Reading in a compressed file::" msgstr "" -#: ../../library/lzma.rst:488 msgid "" "import lzma\n" "with lzma.open(\"file.xz\") as f:\n" " file_content = f.read()" msgstr "" -#: ../../library/lzma.rst:492 msgid "Creating a compressed file::" msgstr "" -#: ../../library/lzma.rst:494 msgid "" "import lzma\n" "data = b\"Insert Data Here\"\n" @@ -728,22 +391,18 @@ msgid "" " f.write(data)" msgstr "" -#: ../../library/lzma.rst:499 msgid "Compressing data in memory::" msgstr "" -#: ../../library/lzma.rst:501 msgid "" "import lzma\n" "data_in = b\"Insert Data Here\"\n" "data_out = lzma.compress(data_in)" msgstr "" -#: ../../library/lzma.rst:505 msgid "Incremental compression::" msgstr "" -#: ../../library/lzma.rst:507 msgid "" "import lzma\n" "lzc = lzma.LZMACompressor()\n" @@ -755,11 +414,9 @@ msgid "" "result = b\"\".join([out1, out2, out3, out4])" msgstr "" -#: ../../library/lzma.rst:516 msgid "Writing compressed data to an already-open file::" msgstr "" -#: ../../library/lzma.rst:518 msgid "" "import lzma\n" "with open(\"file.xz\", \"wb\") as f:\n" @@ -769,11 +426,9 @@ msgid "" " f.write(b\"Not compressed\\n\")" msgstr "" -#: ../../library/lzma.rst:525 msgid "Creating a compressed file using a custom filter chain::" msgstr "" -#: ../../library/lzma.rst:527 msgid "" "import lzma\n" "my_filters = [\n" diff --git a/library/mailbox.po b/library/mailbox.po index 81b7d182..8dbf7c58 100644 --- a/library/mailbox.po +++ b/library/mailbox.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:09+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,1894 +24,920 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/mailbox.rst:2 msgid ":mod:`!mailbox` --- Manipulate mailboxes in various formats" msgstr "" -#: ../../library/mailbox.rst:10 msgid "**Source code:** :source:`Lib/mailbox.py`" msgstr "" -#: ../../library/mailbox.rst:14 -msgid "" -"This module defines two classes, :class:`Mailbox` and :class:`Message`, for " -"accessing and manipulating on-disk mailboxes and the messages they " -"contain. :class:`!Mailbox` offers a dictionary-like mapping from keys to " -"messages. :class:`!Message` extends the :mod:`email.message` " -"module's :class:`~email.message.Message` class with format-specific state " -"and behavior. Supported mailbox formats are Maildir, mbox, MH, Babyl, and " -"MMDF." +msgid "This module defines two classes, :class:`Mailbox` and :class:`Message`, for accessing and manipulating on-disk mailboxes and the messages they contain. :class:`!Mailbox` offers a dictionary-like mapping from keys to messages. :class:`!Message` extends the :mod:`email.message` module's :class:`~email.message.Message` class with format-specific state and behavior. Supported mailbox formats are Maildir, mbox, MH, Babyl, and MMDF." msgstr "" -#: ../../library/mailbox.rst:24 msgid "Module :mod:`email`" msgstr "" -#: ../../library/mailbox.rst:25 msgid "Represent and manipulate messages." msgstr "" -#: ../../library/mailbox.rst:31 msgid ":class:`!Mailbox` objects" msgstr "" -#: ../../library/mailbox.rst:35 msgid "A mailbox, which may be inspected and modified." msgstr "" -#: ../../library/mailbox.rst:37 -msgid "" -"The :class:`!Mailbox` class defines an interface and is not intended to be " -"instantiated. Instead, format-specific subclasses should inherit " -"from :class:`!Mailbox` and your code should instantiate a particular " -"subclass." +msgid "The :class:`!Mailbox` class defines an interface and is not intended to be instantiated. Instead, format-specific subclasses should inherit from :class:`!Mailbox` and your code should instantiate a particular subclass." msgstr "" -#: ../../library/mailbox.rst:41 -msgid "" -"The :class:`!Mailbox` interface is dictionary-like, with small keys " -"corresponding to messages. Keys are issued by the :class:`!Mailbox` instance " -"with which they will be used and are only meaningful to that :class:`!" -"Mailbox` instance. A key continues to identify a message even if the " -"corresponding message is modified, such as by replacing it with another " -"message." +msgid "The :class:`!Mailbox` interface is dictionary-like, with small keys corresponding to messages. Keys are issued by the :class:`!Mailbox` instance with which they will be used and are only meaningful to that :class:`!Mailbox` instance. A key continues to identify a message even if the corresponding message is modified, such as by replacing it with another message." msgstr "" -#: ../../library/mailbox.rst:47 -msgid "" -"Messages may be added to a :class:`!Mailbox` instance using the set-like " -"method :meth:`add` and removed using a ``del`` statement or the set-like " -"methods :meth:`remove` and :meth:`discard`." +msgid "Messages may be added to a :class:`!Mailbox` instance using the set-like method :meth:`add` and removed using a ``del`` statement or the set-like methods :meth:`remove` and :meth:`discard`." msgstr "" -#: ../../library/mailbox.rst:51 -msgid "" -":class:`!Mailbox` interface semantics differ from dictionary semantics in " -"some noteworthy ways. Each time a message is requested, a new representation " -"(typically a :class:`Message` instance) is generated based upon the current " -"state of the mailbox. Similarly, when a message is added to a :class:`!" -"Mailbox` instance, the provided message representation's contents are " -"copied. In neither case is a reference to the message representation kept by " -"the :class:`!Mailbox` instance." +msgid ":class:`!Mailbox` interface semantics differ from dictionary semantics in some noteworthy ways. Each time a message is requested, a new representation (typically a :class:`Message` instance) is generated based upon the current state of the mailbox. Similarly, when a message is added to a :class:`!Mailbox` instance, the provided message representation's contents are copied. In neither case is a reference to the message representation kept by the :class:`!Mailbox` instance." msgstr "" -#: ../../library/mailbox.rst:59 -msgid "" -"The default :class:`!Mailbox` :term:`iterator` iterates over message " -"representations, not keys as the default :class:`dictionary ` iterator " -"does. Moreover, modification of a mailbox during iteration is safe and well-" -"defined. Messages added to the mailbox after an iterator is created will not " -"be seen by the iterator. Messages removed from the mailbox before the " -"iterator yields them will be silently skipped, though using a key from an " -"iterator may result in a :exc:`KeyError` exception if the corresponding " -"message is subsequently removed." +msgid "The default :class:`!Mailbox` :term:`iterator` iterates over message representations, not keys as the default :class:`dictionary ` iterator does. Moreover, modification of a mailbox during iteration is safe and well-defined. Messages added to the mailbox after an iterator is created will not be seen by the iterator. Messages removed from the mailbox before the iterator yields them will be silently skipped, though using a key from an iterator may result in a :exc:`KeyError` exception if the corresponding message is subsequently removed." msgstr "" -#: ../../library/mailbox.rst:71 -msgid "" -"Be very cautious when modifying mailboxes that might be simultaneously " -"changed by some other process. The safest mailbox format to use for such " -"tasks is :class:`Maildir`; try to avoid using single-file formats such " -"as :class:`mbox` for concurrent writing. If you're modifying a mailbox, you " -"*must* lock it by calling the :meth:`lock` and :meth:`unlock` methods " -"*before* reading any messages in the file or making any changes by adding or " -"deleting a message. Failing to lock the mailbox runs the risk of losing " -"messages or corrupting the entire mailbox." +msgid "Be very cautious when modifying mailboxes that might be simultaneously changed by some other process. The safest mailbox format to use for such tasks is :class:`Maildir`; try to avoid using single-file formats such as :class:`mbox` for concurrent writing. If you're modifying a mailbox, you *must* lock it by calling the :meth:`lock` and :meth:`unlock` methods *before* reading any messages in the file or making any changes by adding or deleting a message. Failing to lock the mailbox runs the risk of losing messages or corrupting the entire mailbox." msgstr "" -#: ../../library/mailbox.rst:81 msgid ":class:`!Mailbox` instances have the following methods:" msgstr "" -#: ../../library/mailbox.rst:86 -msgid "" -"Add *message* to the mailbox and return the key that has been assigned to it." +msgid "Add *message* to the mailbox and return the key that has been assigned to it." msgstr "" -#: ../../library/mailbox.rst:89 -msgid "" -"Parameter *message* may be a :class:`Message` instance, " -"an :class:`email.message.Message` instance, a string, a byte string, or a " -"file-like object (which should be open in binary mode). If *message* is an " -"instance of the appropriate format-specific :class:`Message` subclass (e.g., " -"if it's an :class:`mboxMessage` instance and this is an :class:`mbox` " -"instance), its format-specific information is used. Otherwise, reasonable " -"defaults for format-specific information are used." +msgid "Parameter *message* may be a :class:`Message` instance, an :class:`email.message.Message` instance, a string, a byte string, or a file-like object (which should be open in binary mode). If *message* is an instance of the appropriate format-specific :class:`Message` subclass (e.g., if it's an :class:`mboxMessage` instance and this is an :class:`mbox` instance), its format-specific information is used. Otherwise, reasonable defaults for format-specific information are used." msgstr "" -#: ../../library/mailbox.rst:98 msgid "Support for binary input was added." msgstr "" -#: ../../library/mailbox.rst:106 msgid "Delete the message corresponding to *key* from the mailbox." msgstr "" -#: ../../library/mailbox.rst:108 -msgid "" -"If no such message exists, a :exc:`KeyError` exception is raised if the " -"method was called as :meth:`remove` or :meth:`__delitem__` but no exception " -"is raised if the method was called as :meth:`discard`. The behavior " -"of :meth:`discard` may be preferred if the underlying mailbox format " -"supports concurrent modification by other processes." +msgid "If no such message exists, a :exc:`KeyError` exception is raised if the method was called as :meth:`remove` or :meth:`__delitem__` but no exception is raised if the method was called as :meth:`discard`. The behavior of :meth:`discard` may be preferred if the underlying mailbox format supports concurrent modification by other processes." msgstr "" -#: ../../library/mailbox.rst:117 -msgid "" -"Replace the message corresponding to *key* with *message*. Raise " -"a :exc:`KeyError` exception if no message already corresponds to *key*." +msgid "Replace the message corresponding to *key* with *message*. Raise a :exc:`KeyError` exception if no message already corresponds to *key*." msgstr "" -#: ../../library/mailbox.rst:120 -msgid "" -"As with :meth:`add`, parameter *message* may be a :class:`Message` instance, " -"an :class:`email.message.Message` instance, a string, a byte string, or a " -"file-like object (which should be open in binary mode). If *message* is an " -"instance of the appropriate format-specific :class:`Message` subclass (e.g., " -"if it's an :class:`mboxMessage` instance and this is an :class:`mbox` " -"instance), its format-specific information is used. Otherwise, the format-" -"specific information of the message that currently corresponds to *key* is " -"left unchanged." +msgid "As with :meth:`add`, parameter *message* may be a :class:`Message` instance, an :class:`email.message.Message` instance, a string, a byte string, or a file-like object (which should be open in binary mode). If *message* is an instance of the appropriate format-specific :class:`Message` subclass (e.g., if it's an :class:`mboxMessage` instance and this is an :class:`mbox` instance), its format-specific information is used. Otherwise, the format-specific information of the message that currently corresponds to *key* is left unchanged." msgstr "" -#: ../../library/mailbox.rst:133 msgid "Return an :term:`iterator` over all keys" msgstr "" -#: ../../library/mailbox.rst:138 -msgid "" -"The same as :meth:`iterkeys`, except that a :class:`list` is returned rather " -"than an :term:`iterator`" +msgid "The same as :meth:`iterkeys`, except that a :class:`list` is returned rather than an :term:`iterator`" msgstr "" -#: ../../library/mailbox.rst:145 -msgid "" -"Return an :term:`iterator` over representations of all messages. The " -"messages are represented as instances of the appropriate format-" -"specific :class:`Message` subclass unless a custom message factory was " -"specified when the :class:`!Mailbox` instance was initialized." +msgid "Return an :term:`iterator` over representations of all messages. The messages are represented as instances of the appropriate format-specific :class:`Message` subclass unless a custom message factory was specified when the :class:`!Mailbox` instance was initialized." msgstr "" -#: ../../library/mailbox.rst:153 -msgid "" -"The behavior of :meth:`__iter__` is unlike that of dictionaries, which " -"iterate over keys." +msgid "The behavior of :meth:`__iter__` is unlike that of dictionaries, which iterate over keys." msgstr "" -#: ../../library/mailbox.rst:159 -msgid "" -"The same as :meth:`itervalues`, except that a :class:`list` is returned " -"rather than an :term:`iterator`" +msgid "The same as :meth:`itervalues`, except that a :class:`list` is returned rather than an :term:`iterator`" msgstr "" -#: ../../library/mailbox.rst:165 -msgid "" -"Return an :term:`iterator` over (*key*, *message*) pairs, where *key* is a " -"key and *message* is a message representation. The messages are represented " -"as instances of the appropriate format-specific :class:`Message` subclass " -"unless a custom message factory was specified when the :class:`!Mailbox` " -"instance was initialized." +msgid "Return an :term:`iterator` over (*key*, *message*) pairs, where *key* is a key and *message* is a message representation. The messages are represented as instances of the appropriate format-specific :class:`Message` subclass unless a custom message factory was specified when the :class:`!Mailbox` instance was initialized." msgstr "" -#: ../../library/mailbox.rst:174 -msgid "" -"The same as :meth:`iteritems`, except that a :class:`list` of pairs is " -"returned rather than an :term:`iterator` of pairs." +msgid "The same as :meth:`iteritems`, except that a :class:`list` of pairs is returned rather than an :term:`iterator` of pairs." msgstr "" -#: ../../library/mailbox.rst:181 -msgid "" -"Return a representation of the message corresponding to *key*. If no such " -"message exists, *default* is returned if the method was called " -"as :meth:`get` and a :exc:`KeyError` exception is raised if the method was " -"called as :meth:`!__getitem__`. The message is represented as an instance of " -"the appropriate format-specific :class:`Message` subclass unless a custom " -"message factory was specified when the :class:`!Mailbox` instance was " -"initialized." +msgid "Return a representation of the message corresponding to *key*. If no such message exists, *default* is returned if the method was called as :meth:`get` and a :exc:`KeyError` exception is raised if the method was called as :meth:`!__getitem__`. The message is represented as an instance of the appropriate format-specific :class:`Message` subclass unless a custom message factory was specified when the :class:`!Mailbox` instance was initialized." msgstr "" -#: ../../library/mailbox.rst:192 -msgid "" -"Return a representation of the message corresponding to *key* as an instance " -"of the appropriate format-specific :class:`Message` subclass, or raise " -"a :exc:`KeyError` exception if no such message exists." +msgid "Return a representation of the message corresponding to *key* as an instance of the appropriate format-specific :class:`Message` subclass, or raise a :exc:`KeyError` exception if no such message exists." msgstr "" -#: ../../library/mailbox.rst:199 -msgid "" -"Return a byte representation of the message corresponding to *key*, or raise " -"a :exc:`KeyError` exception if no such message exists." +msgid "Return a byte representation of the message corresponding to *key*, or raise a :exc:`KeyError` exception if no such message exists." msgstr "" -#: ../../library/mailbox.rst:207 -msgid "" -"Return a string representation of the message corresponding to *key*, or " -"raise a :exc:`KeyError` exception if no such message exists. The message is " -"processed through :class:`email.message.Message` to convert it to a 7bit " -"clean representation." +msgid "Return a string representation of the message corresponding to *key*, or raise a :exc:`KeyError` exception if no such message exists. The message is processed through :class:`email.message.Message` to convert it to a 7bit clean representation." msgstr "" -#: ../../library/mailbox.rst:215 -msgid "" -"Return a :term:`file-like ` representation of the message " -"corresponding to *key*, or raise a :exc:`KeyError` exception if no such " -"message exists. The file-like object behaves as if open in binary mode. " -"This file should be closed once it is no longer needed." +msgid "Return a :term:`file-like ` representation of the message corresponding to *key*, or raise a :exc:`KeyError` exception if no such message exists. The file-like object behaves as if open in binary mode. This file should be closed once it is no longer needed." msgstr "" -#: ../../library/mailbox.rst:221 -msgid "" -"The file object really is a :term:`binary file`; previously it was " -"incorrectly returned in text mode. Also, the :term:`file-like object` now " -"supports the :term:`context manager` protocol: you can use a :keyword:`with` " -"statement to automatically close it." +msgid "The file object really is a :term:`binary file`; previously it was incorrectly returned in text mode. Also, the :term:`file-like object` now supports the :term:`context manager` protocol: you can use a :keyword:`with` statement to automatically close it." msgstr "" -#: ../../library/mailbox.rst:229 -msgid "" -"Unlike other representations of messages, :term:`file-like ` representations are not necessarily independent of the :class:`!" -"Mailbox` instance that created them or of the underlying mailbox. More " -"specific documentation is provided by each subclass." +msgid "Unlike other representations of messages, :term:`file-like ` representations are not necessarily independent of the :class:`!Mailbox` instance that created them or of the underlying mailbox. More specific documentation is provided by each subclass." msgstr "" -#: ../../library/mailbox.rst:238 msgid "Return ``True`` if *key* corresponds to a message, ``False`` otherwise." msgstr "" -#: ../../library/mailbox.rst:243 msgid "Return a count of messages in the mailbox." msgstr "" -#: ../../library/mailbox.rst:248 msgid "Delete all messages from the mailbox." msgstr "" -#: ../../library/mailbox.rst:253 -msgid "" -"Return a representation of the message corresponding to *key* and delete the " -"message. If no such message exists, return *default*. The message is " -"represented as an instance of the appropriate format-" -"specific :class:`Message` subclass unless a custom message factory was " -"specified when the :class:`!Mailbox` instance was initialized." +msgid "Return a representation of the message corresponding to *key* and delete the message. If no such message exists, return *default*. The message is represented as an instance of the appropriate format-specific :class:`Message` subclass unless a custom message factory was specified when the :class:`!Mailbox` instance was initialized." msgstr "" -#: ../../library/mailbox.rst:262 -msgid "" -"Return an arbitrary (*key*, *message*) pair, where *key* is a key and " -"*message* is a message representation, and delete the corresponding message. " -"If the mailbox is empty, raise a :exc:`KeyError` exception. The message is " -"represented as an instance of the appropriate format-" -"specific :class:`Message` subclass unless a custom message factory was " -"specified when the :class:`!Mailbox` instance was initialized." +msgid "Return an arbitrary (*key*, *message*) pair, where *key* is a key and *message* is a message representation, and delete the corresponding message. If the mailbox is empty, raise a :exc:`KeyError` exception. The message is represented as an instance of the appropriate format-specific :class:`Message` subclass unless a custom message factory was specified when the :class:`!Mailbox` instance was initialized." msgstr "" -#: ../../library/mailbox.rst:272 -msgid "" -"Parameter *arg* should be a *key*-to-*message* mapping or an iterable of " -"(*key*, *message*) pairs. Updates the mailbox so that, for each given *key* " -"and *message*, the message corresponding to *key* is set to *message* as if " -"by using :meth:`__setitem__`. As with :meth:`__setitem__`, each *key* must " -"already correspond to a message in the mailbox or else a :exc:`KeyError` " -"exception will be raised, so in general it is incorrect for *arg* to be " -"a :class:`!Mailbox` instance." +msgid "Parameter *arg* should be a *key*-to-*message* mapping or an iterable of (*key*, *message*) pairs. Updates the mailbox so that, for each given *key* and *message*, the message corresponding to *key* is set to *message* as if by using :meth:`__setitem__`. As with :meth:`__setitem__`, each *key* must already correspond to a message in the mailbox or else a :exc:`KeyError` exception will be raised, so in general it is incorrect for *arg* to be a :class:`!Mailbox` instance." msgstr "" -#: ../../library/mailbox.rst:282 msgid "Unlike with dictionaries, keyword arguments are not supported." msgstr "" -#: ../../library/mailbox.rst:287 -msgid "" -"Write any pending changes to the filesystem. For some :class:`Mailbox` " -"subclasses, changes are always written immediately and :meth:`!flush` does " -"nothing, but you should still make a habit of calling this method." +msgid "Write any pending changes to the filesystem. For some :class:`Mailbox` subclasses, changes are always written immediately and :meth:`!flush` does nothing, but you should still make a habit of calling this method." msgstr "" -#: ../../library/mailbox.rst:294 -msgid "" -"Acquire an exclusive advisory lock on the mailbox so that other processes " -"know not to modify it. An :exc:`ExternalClashError` is raised if the lock is " -"not available. The particular locking mechanisms used depend upon the " -"mailbox format. You should *always* lock the mailbox before making any " -"modifications to its contents." +msgid "Acquire an exclusive advisory lock on the mailbox so that other processes know not to modify it. An :exc:`ExternalClashError` is raised if the lock is not available. The particular locking mechanisms used depend upon the mailbox format. You should *always* lock the mailbox before making any modifications to its contents." msgstr "" -#: ../../library/mailbox.rst:303 msgid "Release the lock on the mailbox, if any." msgstr "" -#: ../../library/mailbox.rst:308 -msgid "" -"Flush the mailbox, unlock it if necessary, and close any open files. For " -"some :class:`!Mailbox` subclasses, this method does nothing." +msgid "Flush the mailbox, unlock it if necessary, and close any open files. For some :class:`!Mailbox` subclasses, this method does nothing." msgstr "" -#: ../../library/mailbox.rst:315 msgid ":class:`!Maildir` objects" msgstr "" -#: ../../library/mailbox.rst:320 -msgid "" -"A subclass of :class:`Mailbox` for mailboxes in Maildir format. Parameter " -"*factory* is a callable object that accepts a file-like message " -"representation (which behaves as if opened in binary mode) and returns a " -"custom representation. If *factory* is ``None``, :class:`MaildirMessage` is " -"used as the default message representation. If *create* is ``True``, the " -"mailbox is created if it does not exist." +msgid "A subclass of :class:`Mailbox` for mailboxes in Maildir format. Parameter *factory* is a callable object that accepts a file-like message representation (which behaves as if opened in binary mode) and returns a custom representation. If *factory* is ``None``, :class:`MaildirMessage` is used as the default message representation. If *create* is ``True``, the mailbox is created if it does not exist." msgstr "" -#: ../../library/mailbox.rst:327 -msgid "" -"If *create* is ``True`` and the *dirname* path exists, it will be treated as " -"an existing maildir without attempting to verify its directory layout." +msgid "If *create* is ``True`` and the *dirname* path exists, it will be treated as an existing maildir without attempting to verify its directory layout." msgstr "" -#: ../../library/mailbox.rst:330 -msgid "" -"It is for historical reasons that *dirname* is named as such rather than " -"*path*." +msgid "It is for historical reasons that *dirname* is named as such rather than *path*." msgstr "" -#: ../../library/mailbox.rst:332 -msgid "" -"Maildir is a directory-based mailbox format invented for the qmail mail " -"transfer agent and now widely supported by other programs. Messages in a " -"Maildir mailbox are stored in separate files within a common directory " -"structure. This design allows Maildir mailboxes to be accessed and modified " -"by multiple unrelated programs without data corruption, so file locking is " -"unnecessary." +msgid "Maildir is a directory-based mailbox format invented for the qmail mail transfer agent and now widely supported by other programs. Messages in a Maildir mailbox are stored in separate files within a common directory structure. This design allows Maildir mailboxes to be accessed and modified by multiple unrelated programs without data corruption, so file locking is unnecessary." msgstr "" -#: ../../library/mailbox.rst:339 -msgid "" -"Maildir mailboxes contain three subdirectories, " -"namely: :file:`tmp`, :file:`new`, and :file:`cur`. Messages are created " -"momentarily in the :file:`tmp` subdirectory and then moved to " -"the :file:`new` subdirectory to finalize delivery. A mail user agent may " -"subsequently move the message to the :file:`cur` subdirectory and store " -"information about the state of the message in a special \"info\" section " -"appended to its file name." +msgid "Maildir mailboxes contain three subdirectories, namely: :file:`tmp`, :file:`new`, and :file:`cur`. Messages are created momentarily in the :file:`tmp` subdirectory and then moved to the :file:`new` subdirectory to finalize delivery. A mail user agent may subsequently move the message to the :file:`cur` subdirectory and store information about the state of the message in a special \"info\" section appended to its file name." msgstr "" -#: ../../library/mailbox.rst:346 -msgid "" -"Folders of the style introduced by the Courier mail transfer agent are also " -"supported. Any subdirectory of the main mailbox is considered a folder if " -"``'.'`` is the first character in its name. Folder names are represented " -"by :class:`!Maildir` without the leading ``'.'``. Each folder is itself a " -"Maildir mailbox but should not contain other folders. Instead, a logical " -"nesting is indicated using ``'.'`` to delimit levels, e.g., " -"\"Archived.2005.07\"." +msgid "Folders of the style introduced by the Courier mail transfer agent are also supported. Any subdirectory of the main mailbox is considered a folder if ``'.'`` is the first character in its name. Folder names are represented by :class:`!Maildir` without the leading ``'.'``. Each folder is itself a Maildir mailbox but should not contain other folders. Instead, a logical nesting is indicated using ``'.'`` to delimit levels, e.g., \"Archived.2005.07\"." msgstr "" -#: ../../library/mailbox.rst:355 -msgid "" -"The Maildir specification requires the use of a colon (``':'``) in certain " -"message file names. However, some operating systems do not permit this " -"character in file names, If you wish to use a Maildir-like format on such an " -"operating system, you should specify another character to use instead. The " -"exclamation point (``'!'``) is a popular choice. For example::" +msgid "The Maildir specification requires the use of a colon (``':'``) in certain message file names. However, some operating systems do not permit this character in file names, If you wish to use a Maildir-like format on such an operating system, you should specify another character to use instead. The exclamation point (``'!'``) is a popular choice. For example::" msgstr "" -#: ../../library/mailbox.rst:362 msgid "" "import mailbox\n" "mailbox.Maildir.colon = '!'" msgstr "" -#: ../../library/mailbox.rst:365 msgid "The :attr:`!colon` attribute may also be set on a per-instance basis." msgstr "" -#: ../../library/mailbox.rst:367 msgid ":class:`Maildir` now ignores files with a leading dot." msgstr "" -#: ../../library/mailbox.rst:370 -msgid "" -":class:`!Maildir` instances have all of the methods of :class:`Mailbox` in " -"addition to the following:" +msgid ":class:`!Maildir` instances have all of the methods of :class:`Mailbox` in addition to the following:" msgstr "" -#: ../../library/mailbox.rst:376 ../../library/mailbox.rst:669 msgid "Return a list of the names of all folders." msgstr "" -#: ../../library/mailbox.rst:381 -msgid "" -"Return a :class:`!Maildir` instance representing the folder whose name is " -"*folder*. A :exc:`NoSuchMailboxError` exception is raised if the folder does " -"not exist." +msgid "Return a :class:`!Maildir` instance representing the folder whose name is *folder*. A :exc:`NoSuchMailboxError` exception is raised if the folder does not exist." msgstr "" -#: ../../library/mailbox.rst:388 -msgid "" -"Create a folder whose name is *folder* and return a :class:`!Maildir` " -"instance representing it." +msgid "Create a folder whose name is *folder* and return a :class:`!Maildir` instance representing it." msgstr "" -#: ../../library/mailbox.rst:394 ../../library/mailbox.rst:687 -msgid "" -"Delete the folder whose name is *folder*. If the folder contains any " -"messages, a :exc:`NotEmptyError` exception will be raised and the folder " -"will not be deleted." +msgid "Delete the folder whose name is *folder*. If the folder contains any messages, a :exc:`NotEmptyError` exception will be raised and the folder will not be deleted." msgstr "" -#: ../../library/mailbox.rst:401 -msgid "" -"Delete temporary files from the mailbox that have not been accessed in the " -"last 36 hours. The Maildir specification says that mail-reading programs " -"should do this occasionally." +msgid "Delete temporary files from the mailbox that have not been accessed in the last 36 hours. The Maildir specification says that mail-reading programs should do this occasionally." msgstr "" -#: ../../library/mailbox.rst:408 -msgid "" -"Return as a string the flags that are set on the message corresponding to " -"*key*. This is the same as ``get_message(key).get_flags()`` but much faster, " -"because it does not open the message file. Use this method when iterating " -"over the keys to determine which messages are interesting to get." +msgid "Return as a string the flags that are set on the message corresponding to *key*. This is the same as ``get_message(key).get_flags()`` but much faster, because it does not open the message file. Use this method when iterating over the keys to determine which messages are interesting to get." msgstr "" -#: ../../library/mailbox.rst:415 -msgid "" -"If you do have a :class:`MaildirMessage` object, use " -"its :meth:`~MaildirMessage.get_flags` method instead, because changes made " -"by the " -"message's :meth:`~MaildirMessage.set_flags`, :meth:`~MaildirMessage.add_flag` " -"and :meth:`~MaildirMessage.remove_flag` methods are not reflected here until " -"the mailbox's :meth:`__setitem__` method is called." +msgid "If you do have a :class:`MaildirMessage` object, use its :meth:`~MaildirMessage.get_flags` method instead, because changes made by the message's :meth:`~MaildirMessage.set_flags`, :meth:`~MaildirMessage.add_flag` and :meth:`~MaildirMessage.remove_flag` methods are not reflected here until the mailbox's :meth:`__setitem__` method is called." msgstr "" -#: ../../library/mailbox.rst:427 -msgid "" -"On the message corresponding to *key*, set the flags specified by *flags* " -"and unset all others. Calling ``some_mailbox.set_flags(key, flags)`` is " -"similar to ::" +msgid "On the message corresponding to *key*, set the flags specified by *flags* and unset all others. Calling ``some_mailbox.set_flags(key, flags)`` is similar to ::" msgstr "" -#: ../../library/mailbox.rst:431 msgid "" "one_message = some_mailbox.get_message(key)\n" "one_message.set_flags(flags)\n" "some_mailbox[key] = one_message" msgstr "" -#: ../../library/mailbox.rst:435 ../../library/mailbox.rst:498 msgid "but faster, because it does not open the message file." msgstr "" -#: ../../library/mailbox.rst:437 -msgid "" -"If you do have a :class:`MaildirMessage` object, use " -"its :meth:`~MaildirMessage.set_flags` method instead, because changes made " -"with this mailbox method will not be visible to the message object's " -"method, :meth:`~MaildirMessage.get_flags`." +msgid "If you do have a :class:`MaildirMessage` object, use its :meth:`~MaildirMessage.set_flags` method instead, because changes made with this mailbox method will not be visible to the message object's method, :meth:`~MaildirMessage.get_flags`." msgstr "" -#: ../../library/mailbox.rst:447 -msgid "" -"On the message corresponding to *key*, set the flags specified by *flag* " -"without changing other flags. To add more than one flag at a time, *flag* " -"may be a string of more than one character." +msgid "On the message corresponding to *key*, set the flags specified by *flag* without changing other flags. To add more than one flag at a time, *flag* may be a string of more than one character." msgstr "" -#: ../../library/mailbox.rst:451 -msgid "" -"Considerations for using this method versus the message " -"object's :meth:`~MaildirMessage.add_flag` method are similar to those " -"for :meth:`set_flags`; see the discussion there." +msgid "Considerations for using this method versus the message object's :meth:`~MaildirMessage.add_flag` method are similar to those for :meth:`set_flags`; see the discussion there." msgstr "" -#: ../../library/mailbox.rst:460 -msgid "" -"On the message corresponding to *key*, unset the flags specified by *flag* " -"without changing other flags. To remove more than one flag at a time, *flag* " -"may be a string of more than one character." +msgid "On the message corresponding to *key*, unset the flags specified by *flag* without changing other flags. To remove more than one flag at a time, *flag* may be a string of more than one character." msgstr "" -#: ../../library/mailbox.rst:464 -msgid "" -"Considerations for using this method versus the message " -"object's :meth:`~MaildirMessage.remove_flag` method are similar to those " -"for :meth:`set_flags`; see the discussion there." +msgid "Considerations for using this method versus the message object's :meth:`~MaildirMessage.remove_flag` method are similar to those for :meth:`set_flags`; see the discussion there." msgstr "" -#: ../../library/mailbox.rst:473 -msgid "" -"Return a string containing the info for the message corresponding to *key*. " -"This is the same as ``get_message(key).get_info()`` but much faster, because " -"it does not open the message file. Use this method when iterating over the " -"keys to determine which messages are interesting to get." +msgid "Return a string containing the info for the message corresponding to *key*. This is the same as ``get_message(key).get_info()`` but much faster, because it does not open the message file. Use this method when iterating over the keys to determine which messages are interesting to get." msgstr "" -#: ../../library/mailbox.rst:480 -msgid "" -"If you do have a :class:`MaildirMessage` object, use " -"its :meth:`~MaildirMessage.get_info` method instead, because changes made by " -"the message's :meth:`~MaildirMessage.set_info` method are not reflected here " -"until the mailbox's :meth:`__setitem__` method is called." +msgid "If you do have a :class:`MaildirMessage` object, use its :meth:`~MaildirMessage.get_info` method instead, because changes made by the message's :meth:`~MaildirMessage.set_info` method are not reflected here until the mailbox's :meth:`__setitem__` method is called." msgstr "" -#: ../../library/mailbox.rst:491 -msgid "" -"Set the info of the message corresponding to *key* to *info*. Calling " -"``some_mailbox.set_info(key, flags)`` is similar to ::" +msgid "Set the info of the message corresponding to *key* to *info*. Calling ``some_mailbox.set_info(key, flags)`` is similar to ::" msgstr "" -#: ../../library/mailbox.rst:494 msgid "" "one_message = some_mailbox.get_message(key)\n" "one_message.set_info(info)\n" "some_mailbox[key] = one_message" msgstr "" -#: ../../library/mailbox.rst:500 -msgid "" -"If you do have a :class:`MaildirMessage` object, use " -"its :meth:`~MaildirMessage.set_info` method instead, because changes made " -"with this mailbox method will not be visible to the message object's " -"method, :meth:`~MaildirMessage.get_info`." +msgid "If you do have a :class:`MaildirMessage` object, use its :meth:`~MaildirMessage.set_info` method instead, because changes made with this mailbox method will not be visible to the message object's method, :meth:`~MaildirMessage.get_info`." msgstr "" -#: ../../library/mailbox.rst:507 -msgid "" -"Some :class:`Mailbox` methods implemented by :class:`!Maildir` deserve " -"special remarks:" +msgid "Some :class:`Mailbox` methods implemented by :class:`!Maildir` deserve special remarks:" msgstr "" -#: ../../library/mailbox.rst:517 -msgid "" -"These methods generate unique file names based upon the current process ID. " -"When using multiple threads, undetected name clashes may occur and cause " -"corruption of the mailbox unless threads are coordinated to avoid using " -"these methods to manipulate the same mailbox simultaneously." +msgid "These methods generate unique file names based upon the current process ID. When using multiple threads, undetected name clashes may occur and cause corruption of the mailbox unless threads are coordinated to avoid using these methods to manipulate the same mailbox simultaneously." msgstr "" -#: ../../library/mailbox.rst:525 -msgid "" -"All changes to Maildir mailboxes are immediately applied, so this method " -"does nothing." +msgid "All changes to Maildir mailboxes are immediately applied, so this method does nothing." msgstr "" -#: ../../library/mailbox.rst:532 -msgid "" -"Maildir mailboxes do not support (or require) locking, so these methods do " -"nothing." +msgid "Maildir mailboxes do not support (or require) locking, so these methods do nothing." msgstr "" -#: ../../library/mailbox.rst:538 -msgid "" -":class:`!Maildir` instances do not keep any open files and the underlying " -"mailboxes do not support locking, so this method does nothing." +msgid ":class:`!Maildir` instances do not keep any open files and the underlying mailboxes do not support locking, so this method does nothing." msgstr "" -#: ../../library/mailbox.rst:544 -msgid "" -"Depending upon the host platform, it may not be possible to modify or remove " -"the underlying message while the returned file remains open." +msgid "Depending upon the host platform, it may not be possible to modify or remove the underlying message while the returned file remains open." msgstr "" -#: ../../library/mailbox.rst:550 -msgid "" -"`maildir man page from Courier `_" +msgid "`maildir man page from Courier `_" msgstr "" -#: ../../library/mailbox.rst:551 -msgid "" -"A specification of the format. Describes a common extension for supporting " -"folders." +msgid "A specification of the format. Describes a common extension for supporting folders." msgstr "" -#: ../../library/mailbox.rst:554 msgid "`Using maildir format `_" msgstr "" -#: ../../library/mailbox.rst:555 -msgid "" -"Notes on Maildir by its inventor. Includes an updated name-creation scheme " -"and details on \"info\" semantics." +msgid "Notes on Maildir by its inventor. Includes an updated name-creation scheme and details on \"info\" semantics." msgstr "" -#: ../../library/mailbox.rst:562 msgid ":class:`!mbox` objects" msgstr "" -#: ../../library/mailbox.rst:567 -msgid "" -"A subclass of :class:`Mailbox` for mailboxes in mbox format. Parameter " -"*factory* is a callable object that accepts a file-like message " -"representation (which behaves as if opened in binary mode) and returns a " -"custom representation. If *factory* is ``None``, :class:`mboxMessage` is " -"used as the default message representation. If *create* is ``True``, the " -"mailbox is created if it does not exist." +msgid "A subclass of :class:`Mailbox` for mailboxes in mbox format. Parameter *factory* is a callable object that accepts a file-like message representation (which behaves as if opened in binary mode) and returns a custom representation. If *factory* is ``None``, :class:`mboxMessage` is used as the default message representation. If *create* is ``True``, the mailbox is created if it does not exist." msgstr "" -#: ../../library/mailbox.rst:574 -msgid "" -"The mbox format is the classic format for storing mail on Unix systems. All " -"messages in an mbox mailbox are stored in a single file with the beginning " -"of each message indicated by a line whose first five characters are \"From " -"\"." +msgid "The mbox format is the classic format for storing mail on Unix systems. All messages in an mbox mailbox are stored in a single file with the beginning of each message indicated by a line whose first five characters are \"From \"." msgstr "" -#: ../../library/mailbox.rst:578 -msgid "" -"Several variations of the mbox format exist to address perceived " -"shortcomings in the original. In the interest of compatibility, :class:`!" -"mbox` implements the original format, which is sometimes referred to " -"as :dfn:`mboxo`. This means that the :mailheader:`Content-Length` header, if " -"present, is ignored and that any occurrences of \"From \" at the beginning " -"of a line in a message body are transformed to \">From \" when storing the " -"message, although occurrences of \">From \" are not transformed to \"From \" " -"when reading the message." +msgid "Several variations of the mbox format exist to address perceived shortcomings in the original. In the interest of compatibility, :class:`!mbox` implements the original format, which is sometimes referred to as :dfn:`mboxo`. This means that the :mailheader:`Content-Length` header, if present, is ignored and that any occurrences of \"From \" at the beginning of a line in a message body are transformed to \">From \" when storing the message, although occurrences of \">From \" are not transformed to \"From \" when reading the message." msgstr "" -#: ../../library/mailbox.rst:586 -msgid "" -"Some :class:`Mailbox` methods implemented by :class:`!mbox` deserve special " -"remarks:" +msgid "Some :class:`Mailbox` methods implemented by :class:`!mbox` deserve special remarks:" msgstr "" -#: ../../library/mailbox.rst:592 ../../library/mailbox.rst:602 -#: ../../library/mailbox.rst:608 ../../library/mailbox.rst:871 -#: ../../library/mailbox.rst:881 -msgid "" -"Note: This method has an extra parameter (*from_*) compared with other " -"classes. The first line of an mbox file entry is the Unix \"From \" line. If " -"*from_* is False, the first line of the file is dropped." +msgid "Note: This method has an extra parameter (*from_*) compared with other classes. The first line of an mbox file entry is the Unix \"From \" line. If *from_* is False, the first line of the file is dropped." msgstr "" -#: ../../library/mailbox.rst:598 -msgid "" -"Using the file after calling :meth:`~Mailbox.flush` " -"or :meth:`~Mailbox.close` on the :class:`!mbox` instance may yield " -"unpredictable results or raise an exception." +msgid "Using the file after calling :meth:`~Mailbox.flush` or :meth:`~Mailbox.close` on the :class:`!mbox` instance may yield unpredictable results or raise an exception." msgstr "" -#: ../../library/mailbox.rst:615 ../../library/mailbox.rst:828 -#: ../../library/mailbox.rst:889 -msgid "" -"Three locking mechanisms are used---dot locking and, if available, " -"the :c:func:`!flock` and :c:func:`!lockf` system calls." +msgid "Three locking mechanisms are used---dot locking and, if available, the :c:func:`!flock` and :c:func:`!lockf` system calls." msgstr "" -#: ../../library/mailbox.rst:621 -msgid "" -"`mbox man page from tin `_" +msgid "`mbox man page from tin `_" msgstr "" -#: ../../library/mailbox.rst:622 msgid "A specification of the format, with details on locking." msgstr "" -#: ../../library/mailbox.rst:624 -msgid "" -"`Configuring Netscape Mail on Unix: Why The Content-Length Format is Bad " -"`_" +msgid "`Configuring Netscape Mail on Unix: Why The Content-Length Format is Bad `_" msgstr "" -#: ../../library/mailbox.rst:625 msgid "An argument for using the original mbox format rather than a variation." msgstr "" -#: ../../library/mailbox.rst:627 -msgid "" -"`\"mbox\" is a family of several mutually incompatible mailbox formats " -"`_" +msgid "`\"mbox\" is a family of several mutually incompatible mailbox formats `_" msgstr "" -#: ../../library/mailbox.rst:628 msgid "A history of mbox variations." msgstr "" -#: ../../library/mailbox.rst:634 msgid ":class:`!MH` objects" msgstr "" -#: ../../library/mailbox.rst:639 -msgid "" -"A subclass of :class:`Mailbox` for mailboxes in MH format. Parameter " -"*factory* is a callable object that accepts a file-like message " -"representation (which behaves as if opened in binary mode) and returns a " -"custom representation. If *factory* is ``None``, :class:`MHMessage` is used " -"as the default message representation. If *create* is ``True``, the mailbox " -"is created if it does not exist." +msgid "A subclass of :class:`Mailbox` for mailboxes in MH format. Parameter *factory* is a callable object that accepts a file-like message representation (which behaves as if opened in binary mode) and returns a custom representation. If *factory* is ``None``, :class:`MHMessage` is used as the default message representation. If *create* is ``True``, the mailbox is created if it does not exist." msgstr "" -#: ../../library/mailbox.rst:646 -msgid "" -"MH is a directory-based mailbox format invented for the MH Message Handling " -"System, a mail user agent. Each message in an MH mailbox resides in its own " -"file. An MH mailbox may contain other MH mailboxes (called :dfn:`folders`) " -"in addition to messages. Folders may be nested indefinitely. MH mailboxes " -"also support :dfn:`sequences`, which are named lists used to logically group " -"messages without moving them to sub-folders. Sequences are defined in a file " -"called :file:`.mh_sequences` in each folder." +msgid "MH is a directory-based mailbox format invented for the MH Message Handling System, a mail user agent. Each message in an MH mailbox resides in its own file. An MH mailbox may contain other MH mailboxes (called :dfn:`folders`) in addition to messages. Folders may be nested indefinitely. MH mailboxes also support :dfn:`sequences`, which are named lists used to logically group messages without moving them to sub-folders. Sequences are defined in a file called :file:`.mh_sequences` in each folder." msgstr "" -#: ../../library/mailbox.rst:654 -msgid "" -"The :class:`!MH` class manipulates MH mailboxes, but it does not attempt to " -"emulate all of :program:`mh`'s behaviors. In particular, it does not modify " -"and is not affected by the :file:`context` or :file:`.mh_profile` files that " -"are used by :program:`mh` to store its state and configuration." +msgid "The :class:`!MH` class manipulates MH mailboxes, but it does not attempt to emulate all of :program:`mh`'s behaviors. In particular, it does not modify and is not affected by the :file:`context` or :file:`.mh_profile` files that are used by :program:`mh` to store its state and configuration." msgstr "" -#: ../../library/mailbox.rst:659 -msgid "" -":class:`!MH` instances have all of the methods of :class:`Mailbox` in " -"addition to the following:" +msgid ":class:`!MH` instances have all of the methods of :class:`Mailbox` in addition to the following:" msgstr "" -#: ../../library/mailbox.rst:664 msgid "Supported folders that don't contain a :file:`.mh_sequences` file." msgstr "" -#: ../../library/mailbox.rst:674 -msgid "" -"Return an :class:`!MH` instance representing the folder whose name is " -"*folder*. A :exc:`NoSuchMailboxError` exception is raised if the folder does " -"not exist." +msgid "Return an :class:`!MH` instance representing the folder whose name is *folder*. A :exc:`NoSuchMailboxError` exception is raised if the folder does not exist." msgstr "" -#: ../../library/mailbox.rst:681 -msgid "" -"Create a folder whose name is *folder* and return an :class:`!MH` instance " -"representing it." +msgid "Create a folder whose name is *folder* and return an :class:`!MH` instance representing it." msgstr "" -#: ../../library/mailbox.rst:694 -msgid "" -"Return a dictionary of sequence names mapped to key lists. If there are no " -"sequences, the empty dictionary is returned." +msgid "Return a dictionary of sequence names mapped to key lists. If there are no sequences, the empty dictionary is returned." msgstr "" -#: ../../library/mailbox.rst:700 -msgid "" -"Re-define the sequences that exist in the mailbox based upon *sequences*, a " -"dictionary of names mapped to key lists, like returned " -"by :meth:`get_sequences`." +msgid "Re-define the sequences that exist in the mailbox based upon *sequences*, a dictionary of names mapped to key lists, like returned by :meth:`get_sequences`." msgstr "" -#: ../../library/mailbox.rst:707 -msgid "" -"Rename messages in the mailbox as necessary to eliminate gaps in numbering. " -"Entries in the sequences list are updated correspondingly." +msgid "Rename messages in the mailbox as necessary to eliminate gaps in numbering. Entries in the sequences list are updated correspondingly." msgstr "" -#: ../../library/mailbox.rst:712 -msgid "" -"Already-issued keys are invalidated by this operation and should not be " -"subsequently used." +msgid "Already-issued keys are invalidated by this operation and should not be subsequently used." msgstr "" -#: ../../library/mailbox.rst:715 -msgid "" -"Some :class:`Mailbox` methods implemented by :class:`!MH` deserve special " -"remarks:" +msgid "Some :class:`Mailbox` methods implemented by :class:`!MH` deserve special remarks:" msgstr "" -#: ../../library/mailbox.rst:723 -msgid "" -"These methods immediately delete the message. The MH convention of marking a " -"message for deletion by prepending a comma to its name is not used." +msgid "These methods immediately delete the message. The MH convention of marking a message for deletion by prepending a comma to its name is not used." msgstr "" -#: ../../library/mailbox.rst:730 -msgid "" -"Three locking mechanisms are used---dot locking and, if available, " -"the :c:func:`!flock` and :c:func:`!lockf` system calls. For MH mailboxes, " -"locking the mailbox means locking the :file:`.mh_sequences` file and, only " -"for the duration of any operations that affect them, locking individual " -"message files." +msgid "Three locking mechanisms are used---dot locking and, if available, the :c:func:`!flock` and :c:func:`!lockf` system calls. For MH mailboxes, locking the mailbox means locking the :file:`.mh_sequences` file and, only for the duration of any operations that affect them, locking individual message files." msgstr "" -#: ../../library/mailbox.rst:739 -msgid "" -"Depending upon the host platform, it may not be possible to remove the " -"underlying message while the returned file remains open." +msgid "Depending upon the host platform, it may not be possible to remove the underlying message while the returned file remains open." msgstr "" -#: ../../library/mailbox.rst:745 -msgid "" -"All changes to MH mailboxes are immediately applied, so this method does " -"nothing." +msgid "All changes to MH mailboxes are immediately applied, so this method does nothing." msgstr "" -#: ../../library/mailbox.rst:751 -msgid "" -":class:`!MH` instances do not keep any open files, so this method is " -"equivalent to :meth:`unlock`." +msgid ":class:`!MH` instances do not keep any open files, so this method is equivalent to :meth:`unlock`." msgstr "" -#: ../../library/mailbox.rst:757 msgid "`nmh - Message Handling System `_" msgstr "" -#: ../../library/mailbox.rst:758 -msgid "" -"Home page of :program:`nmh`, an updated version of the " -"original :program:`mh`." +msgid "Home page of :program:`nmh`, an updated version of the original :program:`mh`." msgstr "" -#: ../../library/mailbox.rst:760 -msgid "" -"`MH & nmh: Email for Users & Programmers `_" +msgid "`MH & nmh: Email for Users & Programmers `_" msgstr "" -#: ../../library/mailbox.rst:761 -msgid "" -"A GPL-licensed book on :program:`mh` and :program:`nmh`, with some " -"information on the mailbox format." +msgid "A GPL-licensed book on :program:`mh` and :program:`nmh`, with some information on the mailbox format." msgstr "" -#: ../../library/mailbox.rst:768 msgid ":class:`!Babyl` objects" msgstr "" -#: ../../library/mailbox.rst:773 -msgid "" -"A subclass of :class:`Mailbox` for mailboxes in Babyl format. Parameter " -"*factory* is a callable object that accepts a file-like message " -"representation (which behaves as if opened in binary mode) and returns a " -"custom representation. If *factory* is ``None``, :class:`BabylMessage` is " -"used as the default message representation. If *create* is ``True``, the " -"mailbox is created if it does not exist." +msgid "A subclass of :class:`Mailbox` for mailboxes in Babyl format. Parameter *factory* is a callable object that accepts a file-like message representation (which behaves as if opened in binary mode) and returns a custom representation. If *factory* is ``None``, :class:`BabylMessage` is used as the default message representation. If *create* is ``True``, the mailbox is created if it does not exist." msgstr "" -#: ../../library/mailbox.rst:780 -msgid "" -"Babyl is a single-file mailbox format used by the Rmail mail user agent " -"included with Emacs. The beginning of a message is indicated by a line " -"containing the two characters Control-Underscore (``'\\037'``) and Control-L " -"(``'\\014'``). The end of a message is indicated by the start of the next " -"message or, in the case of the last message, a line containing a Control-" -"Underscore (``'\\037'``) character." +msgid "Babyl is a single-file mailbox format used by the Rmail mail user agent included with Emacs. The beginning of a message is indicated by a line containing the two characters Control-Underscore (``'\\037'``) and Control-L (``'\\014'``). The end of a message is indicated by the start of the next message or, in the case of the last message, a line containing a Control-Underscore (``'\\037'``) character." msgstr "" -#: ../../library/mailbox.rst:787 -msgid "" -"Messages in a Babyl mailbox have two sets of headers, original headers and " -"so-called visible headers. Visible headers are typically a subset of the " -"original headers that have been reformatted or abridged to be more " -"attractive. Each message in a Babyl mailbox also has an accompanying list " -"of :dfn:`labels`, or short strings that record extra information about the " -"message, and a list of all user-defined labels found in the mailbox is kept " -"in the Babyl options section." +msgid "Messages in a Babyl mailbox have two sets of headers, original headers and so-called visible headers. Visible headers are typically a subset of the original headers that have been reformatted or abridged to be more attractive. Each message in a Babyl mailbox also has an accompanying list of :dfn:`labels`, or short strings that record extra information about the message, and a list of all user-defined labels found in the mailbox is kept in the Babyl options section." msgstr "" -#: ../../library/mailbox.rst:795 -msgid "" -":class:`!Babyl` instances have all of the methods of :class:`Mailbox` in " -"addition to the following:" +msgid ":class:`!Babyl` instances have all of the methods of :class:`Mailbox` in addition to the following:" msgstr "" -#: ../../library/mailbox.rst:801 -msgid "" -"Return a list of the names of all user-defined labels used in the mailbox." +msgid "Return a list of the names of all user-defined labels used in the mailbox." msgstr "" -#: ../../library/mailbox.rst:805 -msgid "" -"The actual messages are inspected to determine which labels exist in the " -"mailbox rather than consulting the list of labels in the Babyl options " -"section, but the Babyl section is updated whenever the mailbox is modified." +msgid "The actual messages are inspected to determine which labels exist in the mailbox rather than consulting the list of labels in the Babyl options section, but the Babyl section is updated whenever the mailbox is modified." msgstr "" -#: ../../library/mailbox.rst:810 -msgid "" -"Some :class:`Mailbox` methods implemented by :class:`!Babyl` deserve special " -"remarks:" +msgid "Some :class:`Mailbox` methods implemented by :class:`!Babyl` deserve special remarks:" msgstr "" -#: ../../library/mailbox.rst:816 -msgid "" -"In Babyl mailboxes, the headers of a message are not stored contiguously " -"with the body of the message. To generate a file-like representation, the " -"headers and body are copied together into an :class:`io.BytesIO` instance, " -"which has an API identical to that of a file. As a result, the file-like " -"object is truly independent of the underlying mailbox but does not save " -"memory compared to a string representation." +msgid "In Babyl mailboxes, the headers of a message are not stored contiguously with the body of the message. To generate a file-like representation, the headers and body are copied together into an :class:`io.BytesIO` instance, which has an API identical to that of a file. As a result, the file-like object is truly independent of the underlying mailbox but does not save memory compared to a string representation." msgstr "" -#: ../../library/mailbox.rst:834 -msgid "" -"`Format of Version 5 Babyl Files `_" +msgid "`Format of Version 5 Babyl Files `_" msgstr "" -#: ../../library/mailbox.rst:835 msgid "A specification of the Babyl format." msgstr "" -#: ../../library/mailbox.rst:837 -msgid "" -"`Reading Mail with Rmail `_" +msgid "`Reading Mail with Rmail `_" msgstr "" -#: ../../library/mailbox.rst:838 msgid "The Rmail manual, with some information on Babyl semantics." msgstr "" -#: ../../library/mailbox.rst:844 msgid ":class:`!MMDF` objects" msgstr "" -#: ../../library/mailbox.rst:849 -msgid "" -"A subclass of :class:`Mailbox` for mailboxes in MMDF format. Parameter " -"*factory* is a callable object that accepts a file-like message " -"representation (which behaves as if opened in binary mode) and returns a " -"custom representation. If *factory* is ``None``, :class:`MMDFMessage` is " -"used as the default message representation. If *create* is ``True``, the " -"mailbox is created if it does not exist." +msgid "A subclass of :class:`Mailbox` for mailboxes in MMDF format. Parameter *factory* is a callable object that accepts a file-like message representation (which behaves as if opened in binary mode) and returns a custom representation. If *factory* is ``None``, :class:`MMDFMessage` is used as the default message representation. If *create* is ``True``, the mailbox is created if it does not exist." msgstr "" -#: ../../library/mailbox.rst:856 -msgid "" -"MMDF is a single-file mailbox format invented for the Multichannel " -"Memorandum Distribution Facility, a mail transfer agent. Each message is in " -"the same form as an mbox message but is bracketed before and after by lines " -"containing four Control-A (``'\\001'``) characters. As with the mbox format, " -"the beginning of each message is indicated by a line whose first five " -"characters are \"From \", but additional occurrences of \"From \" are not " -"transformed to \">From \" when storing messages because the extra message " -"separator lines prevent mistaking such occurrences for the starts of " -"subsequent messages." -msgstr "" - -#: ../../library/mailbox.rst:865 -msgid "" -"Some :class:`Mailbox` methods implemented by :class:`!MMDF` deserve special " -"remarks:" +msgid "MMDF is a single-file mailbox format invented for the Multichannel Memorandum Distribution Facility, a mail transfer agent. Each message is in the same form as an mbox message but is bracketed before and after by lines containing four Control-A (``'\\001'``) characters. As with the mbox format, the beginning of each message is indicated by a line whose first five characters are \"From \", but additional occurrences of \"From \" are not transformed to \">From \" when storing messages because the extra message separator lines prevent mistaking such occurrences for the starts of subsequent messages." msgstr "" -#: ../../library/mailbox.rst:877 -msgid "" -"Using the file after calling :meth:`~Mailbox.flush` " -"or :meth:`~Mailbox.close` on the :class:`!MMDF` instance may yield " -"unpredictable results or raise an exception." +msgid "Some :class:`Mailbox` methods implemented by :class:`!MMDF` deserve special remarks:" msgstr "" -#: ../../library/mailbox.rst:895 -msgid "" -"`mmdf man page from tin `_" +msgid "Using the file after calling :meth:`~Mailbox.flush` or :meth:`~Mailbox.close` on the :class:`!MMDF` instance may yield unpredictable results or raise an exception." msgstr "" -#: ../../library/mailbox.rst:896 -msgid "" -"A specification of MMDF format from the documentation of tin, a newsreader." +msgid "`mmdf man page from tin `_" +msgstr "" + +msgid "A specification of MMDF format from the documentation of tin, a newsreader." msgstr "" -#: ../../library/mailbox.rst:898 msgid "`MMDF `_" msgstr "" -#: ../../library/mailbox.rst:899 -msgid "" -"A Wikipedia article describing the Multichannel Memorandum Distribution " -"Facility." +msgid "A Wikipedia article describing the Multichannel Memorandum Distribution Facility." msgstr "" -#: ../../library/mailbox.rst:906 msgid ":class:`!Message` objects" msgstr "" -#: ../../library/mailbox.rst:911 -msgid "" -"A subclass of the :mod:`email.message` " -"module's :class:`~email.message.Message`. Subclasses of :class:`!" -"mailbox.Message` add mailbox-format-specific state and behavior." +msgid "A subclass of the :mod:`email.message` module's :class:`~email.message.Message`. Subclasses of :class:`!mailbox.Message` add mailbox-format-specific state and behavior." msgstr "" -#: ../../library/mailbox.rst:915 -msgid "" -"If *message* is omitted, the new instance is created in a default, empty " -"state. If *message* is an :class:`email.message.Message` instance, its " -"contents are copied; furthermore, any format-specific information is " -"converted insofar as possible if *message* is a :class:`!Message` instance. " -"If *message* is a string, a byte string, or a file, it should contain " -"an :rfc:`5322`\\ -compliant message, which is read and parsed. Files should " -"be open in binary mode, but text mode files are accepted for backward " -"compatibility." +msgid "If *message* is omitted, the new instance is created in a default, empty state. If *message* is an :class:`email.message.Message` instance, its contents are copied; furthermore, any format-specific information is converted insofar as possible if *message* is a :class:`!Message` instance. If *message* is a string, a byte string, or a file, it should contain an :rfc:`5322`\\ -compliant message, which is read and parsed. Files should be open in binary mode, but text mode files are accepted for backward compatibility." msgstr "" -#: ../../library/mailbox.rst:924 -msgid "" -"The format-specific state and behaviors offered by subclasses vary, but in " -"general it is only the properties that are not specific to a particular " -"mailbox that are supported (although presumably the properties are specific " -"to a particular mailbox format). For example, file offsets for single-file " -"mailbox formats and file names for directory-based mailbox formats are not " -"retained, because they are only applicable to the original mailbox. But " -"state such as whether a message has been read by the user or marked as " -"important is retained, because it applies to the message itself." +msgid "The format-specific state and behaviors offered by subclasses vary, but in general it is only the properties that are not specific to a particular mailbox that are supported (although presumably the properties are specific to a particular mailbox format). For example, file offsets for single-file mailbox formats and file names for directory-based mailbox formats are not retained, because they are only applicable to the original mailbox. But state such as whether a message has been read by the user or marked as important is retained, because it applies to the message itself." msgstr "" -#: ../../library/mailbox.rst:933 -msgid "" -"There is no requirement that :class:`!Message` instances be used to " -"represent messages retrieved using :class:`Mailbox` instances. In some " -"situations, the time and memory required to generate :class:`!Message` " -"representations might not be acceptable. For such situations, :class:`!" -"Mailbox` instances also offer string and file-like representations, and a " -"custom message factory may be specified when a :class:`!Mailbox` instance is " -"initialized." +msgid "There is no requirement that :class:`!Message` instances be used to represent messages retrieved using :class:`Mailbox` instances. In some situations, the time and memory required to generate :class:`!Message` representations might not be acceptable. For such situations, :class:`!Mailbox` instances also offer string and file-like representations, and a custom message factory may be specified when a :class:`!Mailbox` instance is initialized." msgstr "" -#: ../../library/mailbox.rst:944 msgid ":class:`!MaildirMessage` objects" msgstr "" -#: ../../library/mailbox.rst:949 -msgid "" -"A message with Maildir-specific behaviors. Parameter *message* has the same " -"meaning as with the :class:`Message` constructor." +msgid "A message with Maildir-specific behaviors. Parameter *message* has the same meaning as with the :class:`Message` constructor." +msgstr "" + +msgid "Typically, a mail user agent application moves all of the messages in the :file:`new` subdirectory to the :file:`cur` subdirectory after the first time the user opens and closes the mailbox, recording that the messages are old whether or not they've actually been read. Each message in :file:`cur` has an \"info\" section added to its file name to store information about its state. (Some mail readers may also add an \"info\" section to messages in :file:`new`.) The \"info\" section may take one of two forms: it may contain \"2,\" followed by a list of standardized flags (e.g., \"2,FR\") or it may contain \"1,\" followed by so-called experimental information. Standard flags for Maildir messages are as follows:" msgstr "" -#: ../../library/mailbox.rst:952 -msgid "" -"Typically, a mail user agent application moves all of the messages in " -"the :file:`new` subdirectory to the :file:`cur` subdirectory after the first " -"time the user opens and closes the mailbox, recording that the messages are " -"old whether or not they've actually been read. Each message in :file:`cur` " -"has an \"info\" section added to its file name to store information about " -"its state. (Some mail readers may also add an \"info\" section to messages " -"in :file:`new`.) The \"info\" section may take one of two forms: it may " -"contain \"2,\" followed by a list of standardized flags (e.g., \"2,FR\") or " -"it may contain \"1,\" followed by so-called experimental information. " -"Standard flags for Maildir messages are as follows:" -msgstr "" - -#: ../../library/mailbox.rst:964 ../../library/mailbox.rst:1131 -#: ../../library/mailbox.rst:1502 msgid "Flag" msgstr "" -#: ../../library/mailbox.rst:964 ../../library/mailbox.rst:1131 -#: ../../library/mailbox.rst:1502 msgid "Meaning" msgstr "" -#: ../../library/mailbox.rst:964 ../../library/mailbox.rst:1131 -#: ../../library/mailbox.rst:1282 ../../library/mailbox.rst:1369 -#: ../../library/mailbox.rst:1502 msgid "Explanation" msgstr "" -#: ../../library/mailbox.rst:966 ../../library/mailbox.rst:1137 -#: ../../library/mailbox.rst:1508 msgid "D" msgstr "" -#: ../../library/mailbox.rst:966 msgid "Draft" msgstr "" -#: ../../library/mailbox.rst:966 msgid "Under composition" msgstr "" -#: ../../library/mailbox.rst:968 ../../library/mailbox.rst:1139 -#: ../../library/mailbox.rst:1510 msgid "F" msgstr "" -#: ../../library/mailbox.rst:968 ../../library/mailbox.rst:1139 -#: ../../library/mailbox.rst:1510 msgid "Flagged" msgstr "" -#: ../../library/mailbox.rst:968 ../../library/mailbox.rst:1139 -#: ../../library/mailbox.rst:1288 ../../library/mailbox.rst:1510 msgid "Marked as important" msgstr "" -#: ../../library/mailbox.rst:970 msgid "P" msgstr "" -#: ../../library/mailbox.rst:970 msgid "Passed" msgstr "" -#: ../../library/mailbox.rst:970 msgid "Forwarded, resent, or bounced" msgstr "" -#: ../../library/mailbox.rst:972 ../../library/mailbox.rst:1133 -#: ../../library/mailbox.rst:1504 msgid "R" msgstr "" -#: ../../library/mailbox.rst:972 msgid "Replied" msgstr "" -#: ../../library/mailbox.rst:972 ../../library/mailbox.rst:1141 -#: ../../library/mailbox.rst:1286 ../../library/mailbox.rst:1377 -#: ../../library/mailbox.rst:1512 msgid "Replied to" msgstr "" -#: ../../library/mailbox.rst:974 msgid "S" msgstr "" -#: ../../library/mailbox.rst:974 msgid "Seen" msgstr "" -#: ../../library/mailbox.rst:974 ../../library/mailbox.rst:1133 -#: ../../library/mailbox.rst:1504 msgid "Read" msgstr "" -#: ../../library/mailbox.rst:976 msgid "T" msgstr "" -#: ../../library/mailbox.rst:976 msgid "Trashed" msgstr "" -#: ../../library/mailbox.rst:976 ../../library/mailbox.rst:1137 -#: ../../library/mailbox.rst:1373 ../../library/mailbox.rst:1508 msgid "Marked for subsequent deletion" msgstr "" -#: ../../library/mailbox.rst:979 msgid ":class:`!MaildirMessage` instances offer the following methods:" msgstr "" -#: ../../library/mailbox.rst:984 -msgid "" -"Return either \"new\" (if the message should be stored in the :file:`new` " -"subdirectory) or \"cur\" (if the message should be stored in the :file:`cur` " -"subdirectory)." +msgid "Return either \"new\" (if the message should be stored in the :file:`new` subdirectory) or \"cur\" (if the message should be stored in the :file:`cur` subdirectory)." msgstr "" -#: ../../library/mailbox.rst:990 -msgid "" -"A message is typically moved from :file:`new` to :file:`cur` after its " -"mailbox has been accessed, whether or not the message has been read. A " -"message ``msg`` has been read if ``\"S\" in msg.get_flags()`` is ``True``." +msgid "A message is typically moved from :file:`new` to :file:`cur` after its mailbox has been accessed, whether or not the message has been read. A message ``msg`` has been read if ``\"S\" in msg.get_flags()`` is ``True``." msgstr "" -#: ../../library/mailbox.rst:998 -msgid "" -"Set the subdirectory the message should be stored in. Parameter *subdir* " -"must be either \"new\" or \"cur\"." +msgid "Set the subdirectory the message should be stored in. Parameter *subdir* must be either \"new\" or \"cur\"." msgstr "" -#: ../../library/mailbox.rst:1004 -msgid "" -"Return a string specifying the flags that are currently set. If the message " -"complies with the standard Maildir format, the result is the concatenation " -"in alphabetical order of zero or one occurrence of each of ``'D'``, ``'F'``, " -"``'P'``, ``'R'``, ``'S'``, and ``'T'``. The empty string is returned if no " -"flags are set or if \"info\" contains experimental semantics." +msgid "Return a string specifying the flags that are currently set. If the message complies with the standard Maildir format, the result is the concatenation in alphabetical order of zero or one occurrence of each of ``'D'``, ``'F'``, ``'P'``, ``'R'``, ``'S'``, and ``'T'``. The empty string is returned if no flags are set or if \"info\" contains experimental semantics." msgstr "" -#: ../../library/mailbox.rst:1014 msgid "Set the flags specified by *flags* and unset all others." msgstr "" -#: ../../library/mailbox.rst:1019 -msgid "" -"Set the flag(s) specified by *flag* without changing other flags. To add " -"more than one flag at a time, *flag* may be a string of more than one " -"character. The current \"info\" is overwritten whether or not it contains " -"experimental information rather than flags." +msgid "Set the flag(s) specified by *flag* without changing other flags. To add more than one flag at a time, *flag* may be a string of more than one character. The current \"info\" is overwritten whether or not it contains experimental information rather than flags." msgstr "" -#: ../../library/mailbox.rst:1027 -msgid "" -"Unset the flag(s) specified by *flag* without changing other flags. To " -"remove more than one flag at a time, *flag* may be a string of more than one " -"character. If \"info\" contains experimental information rather than flags, " -"the current \"info\" is not modified." +msgid "Unset the flag(s) specified by *flag* without changing other flags. To remove more than one flag at a time, *flag* may be a string of more than one character. If \"info\" contains experimental information rather than flags, the current \"info\" is not modified." msgstr "" -#: ../../library/mailbox.rst:1035 -msgid "" -"Return the delivery date of the message as a floating-point number " -"representing seconds since the epoch." +msgid "Return the delivery date of the message as a floating-point number representing seconds since the epoch." msgstr "" -#: ../../library/mailbox.rst:1041 -msgid "" -"Set the delivery date of the message to *date*, a floating-point number " -"representing seconds since the epoch." +msgid "Set the delivery date of the message to *date*, a floating-point number representing seconds since the epoch." msgstr "" -#: ../../library/mailbox.rst:1047 -msgid "" -"Return a string containing the \"info\" for a message. This is useful for " -"accessing and modifying \"info\" that is experimental (i.e., not a list of " -"flags)." +msgid "Return a string containing the \"info\" for a message. This is useful for accessing and modifying \"info\" that is experimental (i.e., not a list of flags)." msgstr "" -#: ../../library/mailbox.rst:1054 msgid "Set \"info\" to *info*, which should be a string." msgstr "" -#: ../../library/mailbox.rst:1056 -msgid "" -"When a :class:`!MaildirMessage` instance is created based upon " -"an :class:`mboxMessage` or :class:`MMDFMessage` instance, " -"the :mailheader:`Status` and :mailheader:`X-Status` headers are omitted and " -"the following conversions take place:" -msgstr "" - -#: ../../library/mailbox.rst:1062 ../../library/mailbox.rst:1080 -#: ../../library/mailbox.rst:1095 ../../library/mailbox.rst:1202 -#: ../../library/mailbox.rst:1219 ../../library/mailbox.rst:1234 -#: ../../library/mailbox.rst:1250 ../../library/mailbox.rst:1317 -#: ../../library/mailbox.rst:1332 ../../library/mailbox.rst:1346 -#: ../../library/mailbox.rst:1443 ../../library/mailbox.rst:1460 -#: ../../library/mailbox.rst:1474 ../../library/mailbox.rst:1574 -#: ../../library/mailbox.rst:1591 ../../library/mailbox.rst:1606 -#: ../../library/mailbox.rst:1622 +msgid "When a :class:`!MaildirMessage` instance is created based upon an :class:`mboxMessage` or :class:`MMDFMessage` instance, the :mailheader:`Status` and :mailheader:`X-Status` headers are omitted and the following conversions take place:" +msgstr "" + msgid "Resulting state" msgstr "" -#: ../../library/mailbox.rst:1062 ../../library/mailbox.rst:1332 -#: ../../library/mailbox.rst:1460 msgid ":class:`mboxMessage` or :class:`MMDFMessage` state" msgstr "" -#: ../../library/mailbox.rst:1065 ../../library/mailbox.rst:1082 -#: ../../library/mailbox.rst:1097 ../../library/mailbox.rst:1206 -#: ../../library/mailbox.rst:1578 msgid "\"cur\" subdirectory" msgstr "" -#: ../../library/mailbox.rst:1065 ../../library/mailbox.rst:1206 -#: ../../library/mailbox.rst:1223 ../../library/mailbox.rst:1238 -#: ../../library/mailbox.rst:1254 ../../library/mailbox.rst:1578 -#: ../../library/mailbox.rst:1595 ../../library/mailbox.rst:1610 -#: ../../library/mailbox.rst:1626 msgid "O flag" msgstr "" -#: ../../library/mailbox.rst:1067 ../../library/mailbox.rst:1086 -#: ../../library/mailbox.rst:1210 ../../library/mailbox.rst:1225 -#: ../../library/mailbox.rst:1258 ../../library/mailbox.rst:1323 -#: ../../library/mailbox.rst:1339 ../../library/mailbox.rst:1582 -#: ../../library/mailbox.rst:1597 ../../library/mailbox.rst:1630 msgid "F flag" msgstr "" -#: ../../library/mailbox.rst:1069 ../../library/mailbox.rst:1071 -#: ../../library/mailbox.rst:1088 ../../library/mailbox.rst:1103 -#: ../../library/mailbox.rst:1204 ../../library/mailbox.rst:1212 -#: ../../library/mailbox.rst:1252 ../../library/mailbox.rst:1321 -#: ../../library/mailbox.rst:1449 ../../library/mailbox.rst:1576 -#: ../../library/mailbox.rst:1584 ../../library/mailbox.rst:1624 msgid "R flag" msgstr "" -#: ../../library/mailbox.rst:1069 ../../library/mailbox.rst:1212 -#: ../../library/mailbox.rst:1227 ../../library/mailbox.rst:1242 -#: ../../library/mailbox.rst:1260 ../../library/mailbox.rst:1337 -#: ../../library/mailbox.rst:1467 ../../library/mailbox.rst:1584 -#: ../../library/mailbox.rst:1599 ../../library/mailbox.rst:1614 -#: ../../library/mailbox.rst:1632 msgid "A flag" msgstr "" -#: ../../library/mailbox.rst:1071 ../../library/mailbox.rst:1204 -#: ../../library/mailbox.rst:1576 msgid "S flag" msgstr "" -#: ../../library/mailbox.rst:1073 ../../library/mailbox.rst:1105 -#: ../../library/mailbox.rst:1208 ../../library/mailbox.rst:1447 -#: ../../library/mailbox.rst:1580 msgid "T flag" msgstr "" -#: ../../library/mailbox.rst:1073 ../../library/mailbox.rst:1208 -#: ../../library/mailbox.rst:1240 ../../library/mailbox.rst:1256 -#: ../../library/mailbox.rst:1465 ../../library/mailbox.rst:1580 -#: ../../library/mailbox.rst:1612 ../../library/mailbox.rst:1628 msgid "D flag" msgstr "" -#: ../../library/mailbox.rst:1076 -msgid "" -"When a :class:`!MaildirMessage` instance is created based upon " -"an :class:`MHMessage` instance, the following conversions take place:" +msgid "When a :class:`!MaildirMessage` instance is created based upon an :class:`MHMessage` instance, the following conversions take place:" msgstr "" -#: ../../library/mailbox.rst:1080 ../../library/mailbox.rst:1219 -#: ../../library/mailbox.rst:1474 ../../library/mailbox.rst:1591 msgid ":class:`MHMessage` state" msgstr "" -#: ../../library/mailbox.rst:1082 ../../library/mailbox.rst:1223 -#: ../../library/mailbox.rst:1319 ../../library/mailbox.rst:1335 -#: ../../library/mailbox.rst:1348 ../../library/mailbox.rst:1476 -#: ../../library/mailbox.rst:1595 msgid "\"unseen\" sequence" msgstr "" -#: ../../library/mailbox.rst:1084 ../../library/mailbox.rst:1099 msgid "\"cur\" subdirectory and S flag" msgstr "" -#: ../../library/mailbox.rst:1084 ../../library/mailbox.rst:1221 -#: ../../library/mailbox.rst:1593 msgid "no \"unseen\" sequence" msgstr "" -#: ../../library/mailbox.rst:1086 ../../library/mailbox.rst:1225 -#: ../../library/mailbox.rst:1323 ../../library/mailbox.rst:1339 -#: ../../library/mailbox.rst:1597 msgid "\"flagged\" sequence" msgstr "" -#: ../../library/mailbox.rst:1088 ../../library/mailbox.rst:1227 -#: ../../library/mailbox.rst:1321 ../../library/mailbox.rst:1337 -#: ../../library/mailbox.rst:1350 ../../library/mailbox.rst:1478 -#: ../../library/mailbox.rst:1599 msgid "\"replied\" sequence" msgstr "" -#: ../../library/mailbox.rst:1091 -msgid "" -"When a :class:`!MaildirMessage` instance is created based upon " -"a :class:`BabylMessage` instance, the following conversions take place:" +msgid "When a :class:`!MaildirMessage` instance is created based upon a :class:`BabylMessage` instance, the following conversions take place:" msgstr "" -#: ../../library/mailbox.rst:1095 ../../library/mailbox.rst:1234 -#: ../../library/mailbox.rst:1346 ../../library/mailbox.rst:1606 msgid ":class:`BabylMessage` state" msgstr "" -#: ../../library/mailbox.rst:1097 ../../library/mailbox.rst:1238 -#: ../../library/mailbox.rst:1348 ../../library/mailbox.rst:1445 -#: ../../library/mailbox.rst:1463 ../../library/mailbox.rst:1476 -#: ../../library/mailbox.rst:1610 msgid "\"unseen\" label" msgstr "" -#: ../../library/mailbox.rst:1099 ../../library/mailbox.rst:1236 -#: ../../library/mailbox.rst:1608 msgid "no \"unseen\" label" msgstr "" -#: ../../library/mailbox.rst:1101 ../../library/mailbox.rst:1451 msgid "P flag" msgstr "" -#: ../../library/mailbox.rst:1101 msgid "\"forwarded\" or \"resent\" label" msgstr "" -#: ../../library/mailbox.rst:1103 ../../library/mailbox.rst:1242 -#: ../../library/mailbox.rst:1350 ../../library/mailbox.rst:1449 -#: ../../library/mailbox.rst:1467 ../../library/mailbox.rst:1478 -#: ../../library/mailbox.rst:1614 msgid "\"answered\" label" msgstr "" -#: ../../library/mailbox.rst:1105 ../../library/mailbox.rst:1240 -#: ../../library/mailbox.rst:1447 ../../library/mailbox.rst:1465 -#: ../../library/mailbox.rst:1612 msgid "\"deleted\" label" msgstr "" -#: ../../library/mailbox.rst:1112 msgid ":class:`!mboxMessage` objects" msgstr "" -#: ../../library/mailbox.rst:1117 -msgid "" -"A message with mbox-specific behaviors. Parameter *message* has the same " -"meaning as with the :class:`Message` constructor." +msgid "A message with mbox-specific behaviors. Parameter *message* has the same meaning as with the :class:`Message` constructor." msgstr "" -#: ../../library/mailbox.rst:1120 -msgid "" -"Messages in an mbox mailbox are stored together in a single file. The " -"sender's envelope address and the time of delivery are typically stored in a " -"line beginning with \"From \" that is used to indicate the start of a " -"message, though there is considerable variation in the exact format of this " -"data among mbox implementations. Flags that indicate the state of the " -"message, such as whether it has been read or marked as important, are " -"typically stored in :mailheader:`Status` and :mailheader:`X-Status` headers." +msgid "Messages in an mbox mailbox are stored together in a single file. The sender's envelope address and the time of delivery are typically stored in a line beginning with \"From \" that is used to indicate the start of a message, though there is considerable variation in the exact format of this data among mbox implementations. Flags that indicate the state of the message, such as whether it has been read or marked as important, are typically stored in :mailheader:`Status` and :mailheader:`X-Status` headers." msgstr "" -#: ../../library/mailbox.rst:1128 msgid "Conventional flags for mbox messages are as follows:" msgstr "" -#: ../../library/mailbox.rst:1135 ../../library/mailbox.rst:1506 msgid "O" msgstr "" -#: ../../library/mailbox.rst:1135 ../../library/mailbox.rst:1506 msgid "Old" msgstr "" -#: ../../library/mailbox.rst:1135 ../../library/mailbox.rst:1506 msgid "Previously detected by MUA" msgstr "" -#: ../../library/mailbox.rst:1137 ../../library/mailbox.rst:1508 msgid "Deleted" msgstr "" -#: ../../library/mailbox.rst:1141 ../../library/mailbox.rst:1512 msgid "A" msgstr "" -#: ../../library/mailbox.rst:1141 ../../library/mailbox.rst:1512 msgid "Answered" msgstr "" -#: ../../library/mailbox.rst:1144 ../../library/mailbox.rst:1515 -msgid "" -"The \"R\" and \"O\" flags are stored in the :mailheader:`Status` header, and " -"the \"D\", \"F\", and \"A\" flags are stored in the :mailheader:`X-Status` " -"header. The flags and headers typically appear in the order mentioned." +msgid "The \"R\" and \"O\" flags are stored in the :mailheader:`Status` header, and the \"D\", \"F\", and \"A\" flags are stored in the :mailheader:`X-Status` header. The flags and headers typically appear in the order mentioned." msgstr "" -#: ../../library/mailbox.rst:1148 msgid ":class:`!mboxMessage` instances offer the following methods:" msgstr "" -#: ../../library/mailbox.rst:1153 ../../library/mailbox.rst:1525 -msgid "" -"Return a string representing the \"From \" line that marks the start of the " -"message in an mbox mailbox. The leading \"From \" and the trailing newline " -"are excluded." +msgid "Return a string representing the \"From \" line that marks the start of the message in an mbox mailbox. The leading \"From \" and the trailing newline are excluded." msgstr "" -#: ../../library/mailbox.rst:1160 ../../library/mailbox.rst:1532 -msgid "" -"Set the \"From \" line to *from_*, which should be specified without a " -"leading \"From \" or trailing newline. For convenience, *time_* may be " -"specified and will be formatted appropriately and appended to *from_*. If " -"*time_* is specified, it should be a :class:`time.struct_time` instance, a " -"tuple suitable for passing to :func:`time.strftime`, or ``True`` (to " -"use :func:`time.gmtime`)." +msgid "Set the \"From \" line to *from_*, which should be specified without a leading \"From \" or trailing newline. For convenience, *time_* may be specified and will be formatted appropriately and appended to *from_*. If *time_* is specified, it should be a :class:`time.struct_time` instance, a tuple suitable for passing to :func:`time.strftime`, or ``True`` (to use :func:`time.gmtime`)." msgstr "" -#: ../../library/mailbox.rst:1170 ../../library/mailbox.rst:1542 -msgid "" -"Return a string specifying the flags that are currently set. If the message " -"complies with the conventional format, the result is the concatenation in " -"the following order of zero or one occurrence of each of ``'R'``, ``'O'``, " -"``'D'``, ``'F'``, and ``'A'``." +msgid "Return a string specifying the flags that are currently set. If the message complies with the conventional format, the result is the concatenation in the following order of zero or one occurrence of each of ``'R'``, ``'O'``, ``'D'``, ``'F'``, and ``'A'``." msgstr "" -#: ../../library/mailbox.rst:1178 ../../library/mailbox.rst:1550 -msgid "" -"Set the flags specified by *flags* and unset all others. Parameter *flags* " -"should be the concatenation in any order of zero or more occurrences of each " -"of ``'R'``, ``'O'``, ``'D'``, ``'F'``, and ``'A'``." +msgid "Set the flags specified by *flags* and unset all others. Parameter *flags* should be the concatenation in any order of zero or more occurrences of each of ``'R'``, ``'O'``, ``'D'``, ``'F'``, and ``'A'``." msgstr "" -#: ../../library/mailbox.rst:1185 ../../library/mailbox.rst:1557 -msgid "" -"Set the flag(s) specified by *flag* without changing other flags. To add " -"more than one flag at a time, *flag* may be a string of more than one " -"character." +msgid "Set the flag(s) specified by *flag* without changing other flags. To add more than one flag at a time, *flag* may be a string of more than one character." msgstr "" -#: ../../library/mailbox.rst:1192 ../../library/mailbox.rst:1564 -msgid "" -"Unset the flag(s) specified by *flag* without changing other flags. To " -"remove more than one flag at a time, *flag* may be a string of more than one " -"character." +msgid "Unset the flag(s) specified by *flag* without changing other flags. To remove more than one flag at a time, *flag* may be a string of more than one character." msgstr "" -#: ../../library/mailbox.rst:1196 -msgid "" -"When an :class:`!mboxMessage` instance is created based upon " -"a :class:`MaildirMessage` instance, a \"From \" line is generated based upon " -"the :class:`MaildirMessage` instance's delivery date, and the following " -"conversions take place:" +msgid "When an :class:`!mboxMessage` instance is created based upon a :class:`MaildirMessage` instance, a \"From \" line is generated based upon the :class:`MaildirMessage` instance's delivery date, and the following conversions take place:" msgstr "" -#: ../../library/mailbox.rst:1202 ../../library/mailbox.rst:1317 -#: ../../library/mailbox.rst:1443 ../../library/mailbox.rst:1574 msgid ":class:`MaildirMessage` state" msgstr "" -#: ../../library/mailbox.rst:1215 -msgid "" -"When an :class:`!mboxMessage` instance is created based upon " -"an :class:`MHMessage` instance, the following conversions take place:" +msgid "When an :class:`!mboxMessage` instance is created based upon an :class:`MHMessage` instance, the following conversions take place:" msgstr "" -#: ../../library/mailbox.rst:1221 ../../library/mailbox.rst:1236 -#: ../../library/mailbox.rst:1593 ../../library/mailbox.rst:1608 msgid "R flag and O flag" msgstr "" -#: ../../library/mailbox.rst:1230 -msgid "" -"When an :class:`!mboxMessage` instance is created based upon " -"a :class:`BabylMessage` instance, the following conversions take place:" +msgid "When an :class:`!mboxMessage` instance is created based upon a :class:`BabylMessage` instance, the following conversions take place:" msgstr "" -#: ../../library/mailbox.rst:1245 -msgid "" -"When a :class:`!mboxMessage` instance is created based upon " -"an :class:`MMDFMessage` instance, the \"From \" line is copied and all flags " -"directly correspond:" +msgid "When a :class:`!mboxMessage` instance is created based upon an :class:`MMDFMessage` instance, the \"From \" line is copied and all flags directly correspond:" msgstr "" -#: ../../library/mailbox.rst:1250 msgid ":class:`MMDFMessage` state" msgstr "" -#: ../../library/mailbox.rst:1267 msgid ":class:`!MHMessage` objects" msgstr "" -#: ../../library/mailbox.rst:1272 -msgid "" -"A message with MH-specific behaviors. Parameter *message* has the same " -"meaning as with the :class:`Message` constructor." +msgid "A message with MH-specific behaviors. Parameter *message* has the same meaning as with the :class:`Message` constructor." msgstr "" -#: ../../library/mailbox.rst:1275 -msgid "" -"MH messages do not support marks or flags in the traditional sense, but they " -"do support sequences, which are logical groupings of arbitrary messages. " -"Some mail reading programs (although not the standard :program:`mh` " -"and :program:`nmh`) use sequences in much the same way flags are used with " -"other formats, as follows:" +msgid "MH messages do not support marks or flags in the traditional sense, but they do support sequences, which are logical groupings of arbitrary messages. Some mail reading programs (although not the standard :program:`mh` and :program:`nmh`) use sequences in much the same way flags are used with other formats, as follows:" msgstr "" -#: ../../library/mailbox.rst:1282 msgid "Sequence" msgstr "" -#: ../../library/mailbox.rst:1284 ../../library/mailbox.rst:1371 msgid "unseen" msgstr "" -#: ../../library/mailbox.rst:1284 ../../library/mailbox.rst:1371 msgid "Not read, but previously detected by MUA" msgstr "" -#: ../../library/mailbox.rst:1286 msgid "replied" msgstr "" -#: ../../library/mailbox.rst:1288 msgid "flagged" msgstr "" -#: ../../library/mailbox.rst:1291 msgid ":class:`!MHMessage` instances offer the following methods:" msgstr "" -#: ../../library/mailbox.rst:1296 msgid "Return a list of the names of sequences that include this message." msgstr "" -#: ../../library/mailbox.rst:1301 msgid "Set the list of sequences that include this message." msgstr "" -#: ../../library/mailbox.rst:1306 msgid "Add *sequence* to the list of sequences that include this message." msgstr "" -#: ../../library/mailbox.rst:1311 msgid "Remove *sequence* from the list of sequences that include this message." msgstr "" -#: ../../library/mailbox.rst:1313 -msgid "" -"When an :class:`!MHMessage` instance is created based upon " -"a :class:`MaildirMessage` instance, the following conversions take place:" +msgid "When an :class:`!MHMessage` instance is created based upon a :class:`MaildirMessage` instance, the following conversions take place:" msgstr "" -#: ../../library/mailbox.rst:1319 ../../library/mailbox.rst:1445 msgid "no S flag" msgstr "" -#: ../../library/mailbox.rst:1326 -msgid "" -"When an :class:`!MHMessage` instance is created based upon " -"an :class:`mboxMessage` or :class:`MMDFMessage` instance, " -"the :mailheader:`Status` and :mailheader:`X-Status` headers are omitted and " -"the following conversions take place:" +msgid "When an :class:`!MHMessage` instance is created based upon an :class:`mboxMessage` or :class:`MMDFMessage` instance, the :mailheader:`Status` and :mailheader:`X-Status` headers are omitted and the following conversions take place:" msgstr "" -#: ../../library/mailbox.rst:1335 ../../library/mailbox.rst:1463 msgid "no R flag" msgstr "" -#: ../../library/mailbox.rst:1342 -msgid "" -"When an :class:`!MHMessage` instance is created based upon " -"a :class:`BabylMessage` instance, the following conversions take place:" +msgid "When an :class:`!MHMessage` instance is created based upon a :class:`BabylMessage` instance, the following conversions take place:" msgstr "" -#: ../../library/mailbox.rst:1357 msgid ":class:`!BabylMessage` objects" msgstr "" -#: ../../library/mailbox.rst:1362 -msgid "" -"A message with Babyl-specific behaviors. Parameter *message* has the same " -"meaning as with the :class:`Message` constructor." +msgid "A message with Babyl-specific behaviors. Parameter *message* has the same meaning as with the :class:`Message` constructor." msgstr "" -#: ../../library/mailbox.rst:1365 -msgid "" -"Certain message labels, called :dfn:`attributes`, are defined by convention " -"to have special meanings. The attributes are as follows:" +msgid "Certain message labels, called :dfn:`attributes`, are defined by convention to have special meanings. The attributes are as follows:" msgstr "" -#: ../../library/mailbox.rst:1369 msgid "Label" msgstr "" -#: ../../library/mailbox.rst:1373 msgid "deleted" msgstr "" -#: ../../library/mailbox.rst:1375 msgid "filed" msgstr "" -#: ../../library/mailbox.rst:1375 msgid "Copied to another file or mailbox" msgstr "" -#: ../../library/mailbox.rst:1377 msgid "answered" msgstr "" -#: ../../library/mailbox.rst:1379 msgid "forwarded" msgstr "" -#: ../../library/mailbox.rst:1379 msgid "Forwarded" msgstr "" -#: ../../library/mailbox.rst:1381 msgid "edited" msgstr "" -#: ../../library/mailbox.rst:1381 msgid "Modified by the user" msgstr "" -#: ../../library/mailbox.rst:1383 msgid "resent" msgstr "" -#: ../../library/mailbox.rst:1383 msgid "Resent" msgstr "" -#: ../../library/mailbox.rst:1386 -msgid "" -"By default, Rmail displays only visible headers. The :class:`!BabylMessage` " -"class, though, uses the original headers because they are more complete. " -"Visible headers may be accessed explicitly if desired." +msgid "By default, Rmail displays only visible headers. The :class:`!BabylMessage` class, though, uses the original headers because they are more complete. Visible headers may be accessed explicitly if desired." msgstr "" -#: ../../library/mailbox.rst:1390 msgid ":class:`!BabylMessage` instances offer the following methods:" msgstr "" -#: ../../library/mailbox.rst:1395 msgid "Return a list of labels on the message." msgstr "" -#: ../../library/mailbox.rst:1400 msgid "Set the list of labels on the message to *labels*." msgstr "" -#: ../../library/mailbox.rst:1405 msgid "Add *label* to the list of labels on the message." msgstr "" -#: ../../library/mailbox.rst:1410 msgid "Remove *label* from the list of labels on the message." msgstr "" -#: ../../library/mailbox.rst:1415 -msgid "" -"Return a :class:`Message` instance whose headers are the message's visible " -"headers and whose body is empty." +msgid "Return a :class:`Message` instance whose headers are the message's visible headers and whose body is empty." msgstr "" -#: ../../library/mailbox.rst:1421 -msgid "" -"Set the message's visible headers to be the same as the headers in " -"*message*. Parameter *visible* should be a :class:`Message` instance, " -"an :class:`email.message.Message` instance, a string, or a file-like object " -"(which should be open in text mode)." +msgid "Set the message's visible headers to be the same as the headers in *message*. Parameter *visible* should be a :class:`Message` instance, an :class:`email.message.Message` instance, a string, or a file-like object (which should be open in text mode)." msgstr "" -#: ../../library/mailbox.rst:1429 -msgid "" -"When a :class:`!BabylMessage` instance's original headers are modified, the " -"visible headers are not automatically modified to correspond. This method " -"updates the visible headers as follows: each visible header with a " -"corresponding original header is set to the value of the original header, " -"each visible header without a corresponding original header is removed, and " -"any of :mailheader:`Date`, :mailheader:`From`, :mailheader:`Reply-" -"To`, :mailheader:`To`, :mailheader:`CC`, and :mailheader:`Subject` that are " -"present in the original headers but not the visible headers are added to the " -"visible headers." -msgstr "" - -#: ../../library/mailbox.rst:1439 -msgid "" -"When a :class:`!BabylMessage` instance is created based upon " -"a :class:`MaildirMessage` instance, the following conversions take place:" +msgid "When a :class:`!BabylMessage` instance's original headers are modified, the visible headers are not automatically modified to correspond. This method updates the visible headers as follows: each visible header with a corresponding original header is set to the value of the original header, each visible header without a corresponding original header is removed, and any of :mailheader:`Date`, :mailheader:`From`, :mailheader:`Reply-To`, :mailheader:`To`, :mailheader:`CC`, and :mailheader:`Subject` that are present in the original headers but not the visible headers are added to the visible headers." +msgstr "" + +msgid "When a :class:`!BabylMessage` instance is created based upon a :class:`MaildirMessage` instance, the following conversions take place:" msgstr "" -#: ../../library/mailbox.rst:1451 msgid "\"forwarded\" label" msgstr "" -#: ../../library/mailbox.rst:1454 -msgid "" -"When a :class:`!BabylMessage` instance is created based upon " -"an :class:`mboxMessage` or :class:`MMDFMessage` instance, " -"the :mailheader:`Status` and :mailheader:`X-Status` headers are omitted and " -"the following conversions take place:" +msgid "When a :class:`!BabylMessage` instance is created based upon an :class:`mboxMessage` or :class:`MMDFMessage` instance, the :mailheader:`Status` and :mailheader:`X-Status` headers are omitted and the following conversions take place:" msgstr "" -#: ../../library/mailbox.rst:1470 -msgid "" -"When a :class:`!BabylMessage` instance is created based upon " -"an :class:`MHMessage` instance, the following conversions take place:" +msgid "When a :class:`!BabylMessage` instance is created based upon an :class:`MHMessage` instance, the following conversions take place:" msgstr "" -#: ../../library/mailbox.rst:1485 msgid ":class:`!MMDFMessage` objects" msgstr "" -#: ../../library/mailbox.rst:1490 -msgid "" -"A message with MMDF-specific behaviors. Parameter *message* has the same " -"meaning as with the :class:`Message` constructor." +msgid "A message with MMDF-specific behaviors. Parameter *message* has the same meaning as with the :class:`Message` constructor." msgstr "" -#: ../../library/mailbox.rst:1493 -msgid "" -"As with message in an mbox mailbox, MMDF messages are stored with the " -"sender's address and the delivery date in an initial line beginning with " -"\"From \". Likewise, flags that indicate the state of the message are " -"typically stored in :mailheader:`Status` and :mailheader:`X-Status` headers." +msgid "As with message in an mbox mailbox, MMDF messages are stored with the sender's address and the delivery date in an initial line beginning with \"From \". Likewise, flags that indicate the state of the message are typically stored in :mailheader:`Status` and :mailheader:`X-Status` headers." msgstr "" -#: ../../library/mailbox.rst:1498 -msgid "" -"Conventional flags for MMDF messages are identical to those of mbox message " -"and are as follows:" +msgid "Conventional flags for MMDF messages are identical to those of mbox message and are as follows:" msgstr "" -#: ../../library/mailbox.rst:1519 -msgid "" -":class:`!MMDFMessage` instances offer the following methods, which are " -"identical to those offered by :class:`mboxMessage`:" +msgid ":class:`!MMDFMessage` instances offer the following methods, which are identical to those offered by :class:`mboxMessage`:" msgstr "" -#: ../../library/mailbox.rst:1568 -msgid "" -"When an :class:`!MMDFMessage` instance is created based upon " -"a :class:`MaildirMessage` instance, a \"From \" line is generated based upon " -"the :class:`MaildirMessage` instance's delivery date, and the following " -"conversions take place:" +msgid "When an :class:`!MMDFMessage` instance is created based upon a :class:`MaildirMessage` instance, a \"From \" line is generated based upon the :class:`MaildirMessage` instance's delivery date, and the following conversions take place:" msgstr "" -#: ../../library/mailbox.rst:1587 -msgid "" -"When an :class:`!MMDFMessage` instance is created based upon " -"an :class:`MHMessage` instance, the following conversions take place:" +msgid "When an :class:`!MMDFMessage` instance is created based upon an :class:`MHMessage` instance, the following conversions take place:" msgstr "" -#: ../../library/mailbox.rst:1602 -msgid "" -"When an :class:`!MMDFMessage` instance is created based upon " -"a :class:`BabylMessage` instance, the following conversions take place:" +msgid "When an :class:`!MMDFMessage` instance is created based upon a :class:`BabylMessage` instance, the following conversions take place:" msgstr "" -#: ../../library/mailbox.rst:1617 -msgid "" -"When an :class:`!MMDFMessage` instance is created based upon " -"an :class:`mboxMessage` instance, the \"From \" line is copied and all flags " -"directly correspond:" +msgid "When an :class:`!MMDFMessage` instance is created based upon an :class:`mboxMessage` instance, the \"From \" line is copied and all flags directly correspond:" msgstr "" -#: ../../library/mailbox.rst:1622 msgid ":class:`mboxMessage` state" msgstr "" -#: ../../library/mailbox.rst:1637 msgid "Exceptions" msgstr "" -#: ../../library/mailbox.rst:1639 -msgid "" -"The following exception classes are defined in the :mod:`!mailbox` module:" +msgid "The following exception classes are defined in the :mod:`!mailbox` module:" msgstr "" -#: ../../library/mailbox.rst:1644 msgid "The base class for all other module-specific exceptions." msgstr "" -#: ../../library/mailbox.rst:1649 -msgid "" -"Raised when a mailbox is expected but is not found, such as when " -"instantiating a :class:`Mailbox` subclass with a path that does not exist " -"(and with the *create* parameter set to ``False``), or when opening a folder " -"that does not exist." +msgid "Raised when a mailbox is expected but is not found, such as when instantiating a :class:`Mailbox` subclass with a path that does not exist (and with the *create* parameter set to ``False``), or when opening a folder that does not exist." msgstr "" -#: ../../library/mailbox.rst:1656 -msgid "" -"Raised when a mailbox is not empty but is expected to be, such as when " -"deleting a folder that contains messages." +msgid "Raised when a mailbox is not empty but is expected to be, such as when deleting a folder that contains messages." msgstr "" -#: ../../library/mailbox.rst:1662 -msgid "" -"Raised when some mailbox-related condition beyond the control of the program " -"causes it to be unable to proceed, such as when failing to acquire a lock " -"that another program already holds, or when a uniquely generated file name " -"already exists." +msgid "Raised when some mailbox-related condition beyond the control of the program causes it to be unable to proceed, such as when failing to acquire a lock that another program already holds, or when a uniquely generated file name already exists." msgstr "" -#: ../../library/mailbox.rst:1670 -msgid "" -"Raised when the data in a file cannot be parsed, such as when an :class:`MH` " -"instance attempts to read a corrupted :file:`.mh_sequences` file." +msgid "Raised when the data in a file cannot be parsed, such as when an :class:`MH` instance attempts to read a corrupted :file:`.mh_sequences` file." msgstr "" -#: ../../library/mailbox.rst:1677 msgid "Examples" msgstr "" -#: ../../library/mailbox.rst:1679 -msgid "" -"A simple example of printing the subjects of all messages in a mailbox that " -"seem interesting::" +msgid "A simple example of printing the subjects of all messages in a mailbox that seem interesting::" msgstr "" -#: ../../library/mailbox.rst:1682 msgid "" "import mailbox\n" "for message in mailbox.mbox('~/mbox'):\n" @@ -1920,13 +946,9 @@ msgid "" " print(subject)" msgstr "" -#: ../../library/mailbox.rst:1688 -msgid "" -"To copy all mail from a Babyl mailbox to an MH mailbox, converting all of " -"the format-specific information that can be converted::" +msgid "To copy all mail from a Babyl mailbox to an MH mailbox, converting all of the format-specific information that can be converted::" msgstr "" -#: ../../library/mailbox.rst:1691 msgid "" "import mailbox\n" "destination = mailbox.MH('~/Mail')\n" @@ -1937,15 +959,9 @@ msgid "" "destination.unlock()" msgstr "" -#: ../../library/mailbox.rst:1699 -msgid "" -"This example sorts mail from several mailing lists into different mailboxes, " -"being careful to avoid mail corruption due to concurrent modification by " -"other programs, mail loss due to interruption of the program, or premature " -"termination due to malformed messages in the mailbox::" +msgid "This example sorts mail from several mailing lists into different mailboxes, being careful to avoid mail corruption due to concurrent modification by other programs, mail loss due to interruption of the program, or premature termination due to malformed messages in the mailbox::" msgstr "" -#: ../../library/mailbox.rst:1704 msgid "" "import mailbox\n" "import email.errors\n" diff --git a/library/mailcap.po b/library/mailcap.po index 8272f858..36e19f3b 100644 --- a/library/mailcap.po +++ b/library/mailcap.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2024-11-19 01:03+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,19 +21,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/mailcap.rst:2 msgid ":mod:`!mailcap` --- Mailcap file handling" msgstr "" -#: ../../library/mailcap.rst:10 -msgid "" -"This module is no longer part of the Python standard library. It " -"was :ref:`removed in Python 3.13 ` after being " -"deprecated in Python 3.11. The removal was decided in :pep:`594`." +msgid "This module is no longer part of the Python standard library. It was :ref:`removed in Python 3.13 ` after being deprecated in Python 3.11. The removal was decided in :pep:`594`." msgstr "" -#: ../../library/mailcap.rst:14 -msgid "" -"The last version of Python that provided the :mod:`!mailcap` module was " -"`Python 3.12 `_." +msgid "The last version of Python that provided the :mod:`!mailcap` module was `Python 3.12 `_." msgstr "" diff --git a/library/markup.po b/library/markup.po index a0a8dd4a..33c352d1 100644 --- a/library/markup.po +++ b/library/markup.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:09+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,14 +21,8 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/markup.rst:5 msgid "Structured Markup Processing Tools" msgstr "" -#: ../../library/markup.rst:7 -msgid "" -"Python supports a variety of modules to work with various forms of " -"structured data markup. This includes modules to work with the Standard " -"Generalized Markup Language (SGML) and the Hypertext Markup Language (HTML), " -"and several interfaces for working with the Extensible Markup Language (XML)." +msgid "Python supports a variety of modules to work with various forms of structured data markup. This includes modules to work with the Standard Generalized Markup Language (SGML) and the Hypertext Markup Language (HTML), and several interfaces for working with the Extensible Markup Language (XML)." msgstr "" diff --git a/library/marshal.po b/library/marshal.po index caa60adb..27344684 100644 --- a/library/marshal.po +++ b/library/marshal.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:09+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,314 +24,170 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/marshal.rst:2 msgid ":mod:`!marshal` --- Internal Python object serialization" msgstr "" -#: ../../library/marshal.rst:10 -msgid "" -"This module contains functions that can read and write Python values in a " -"binary format. The format is specific to Python, but independent of machine " -"architecture issues (e.g., you can write a Python value to a file on a PC, " -"transport the file to a Mac, and read it back there). Details of the format " -"are undocumented on purpose; it may change between Python versions (although " -"it rarely does). [#]_" +msgid "This module contains functions that can read and write Python values in a binary format. The format is specific to Python, but independent of machine architecture issues (e.g., you can write a Python value to a file on a PC, transport the file to a Mac, and read it back there). Details of the format are undocumented on purpose; it may change between Python versions (although it rarely does). [#]_" msgstr "" -#: ../../library/marshal.rst:21 -msgid "" -"This is not a general \"persistence\" module. For general persistence and " -"transfer of Python objects through RPC calls, see the modules :mod:`pickle` " -"and :mod:`shelve`. The :mod:`!marshal` module exists mainly to support " -"reading and writing the \"pseudo-compiled\" code for Python modules " -"of :file:`.pyc` files. Therefore, the Python maintainers reserve the right " -"to modify the marshal format in backward incompatible ways should the need " -"arise. The format of code objects is not compatible between Python versions, " -"even if the version of the format is the same. De-serializing a code object " -"in the incorrect Python version has undefined behavior. If you're " -"serializing and de-serializing Python objects, use the :mod:`pickle` module " -"instead -- the performance is comparable, version independence is " -"guaranteed, and pickle supports a substantially wider range of objects than " -"marshal." -msgstr "" - -#: ../../library/marshal.rst:37 -msgid "" -"The :mod:`!marshal` module is not intended to be secure against erroneous or " -"maliciously constructed data. Never unmarshal data received from an " -"untrusted or unauthenticated source." +msgid "This is not a general \"persistence\" module. For general persistence and transfer of Python objects through RPC calls, see the modules :mod:`pickle` and :mod:`shelve`. The :mod:`!marshal` module exists mainly to support reading and writing the \"pseudo-compiled\" code for Python modules of :file:`.pyc` files. Therefore, the Python maintainers reserve the right to modify the marshal format in backward incompatible ways should the need arise. The format of code objects is not compatible between Python versions, even if the version of the format is the same. De-serializing a code object in the incorrect Python version has undefined behavior. If you're serializing and de-serializing Python objects, use the :mod:`pickle` module instead -- the performance is comparable, version independence is guaranteed, and pickle supports a substantially wider range of objects than marshal." msgstr "" -#: ../../library/marshal.rst:41 -msgid "" -"There are functions that read/write files as well as functions operating on " -"bytes-like objects." +msgid "The :mod:`!marshal` module is not intended to be secure against erroneous or maliciously constructed data. Never unmarshal data received from an untrusted or unauthenticated source." msgstr "" -#: ../../library/marshal.rst:46 -msgid "" -"Not all Python object types are supported; in general, only objects whose " -"value is independent from a particular invocation of Python can be written " -"and read by this module. The following types are supported:" +msgid "There are functions that read/write files as well as functions operating on bytes-like objects." msgstr "" -#: ../../library/marshal.rst:50 -msgid "" -"Numeric types: :class:`int`, :class:`bool`, :class:`float`, :class:`complex`." +msgid "Not all Python object types are supported; in general, only objects whose value is independent from a particular invocation of Python can be written and read by this module. The following types are supported:" msgstr "" -#: ../../library/marshal.rst:51 -msgid "" -"Strings (:class:`str`) and :class:`bytes`. :term:`Bytes-like objects ` like :class:`bytearray` are marshalled as :class:`!bytes`." +msgid "Numeric types: :class:`int`, :class:`bool`, :class:`float`, :class:`complex`." msgstr "" -#: ../../library/marshal.rst:54 -msgid "" -"Containers: :class:`tuple`, :class:`list`, :class:`set`, :class:`frozenset`, " -"and (since :data:`version` 5), :class:`slice`. It should be understood that " -"these are supported only if the values contained therein are themselves " -"supported. Recursive containers are supported since :data:`version` 3." +msgid "Strings (:class:`str`) and :class:`bytes`. :term:`Bytes-like objects ` like :class:`bytearray` are marshalled as :class:`!bytes`." msgstr "" -#: ../../library/marshal.rst:59 -msgid "" -"The singletons :const:`None`, :const:`Ellipsis` and :exc:`StopIteration`." +msgid "Containers: :class:`tuple`, :class:`list`, :class:`set`, :class:`frozenset`, and (since :data:`version` 5), :class:`slice`. It should be understood that these are supported only if the values contained therein are themselves supported. Recursive containers are supported since :data:`version` 3." msgstr "" -#: ../../library/marshal.rst:60 -msgid "" -":class:`code` objects, if *allow_code* is true. See note above about version " -"dependence." +msgid "The singletons :const:`None`, :const:`Ellipsis` and :exc:`StopIteration`." msgstr "" -#: ../../library/marshal.rst:65 -msgid "" -"Added format version 3, which supports marshalling recursive lists, sets and " -"dictionaries." +msgid ":class:`code` objects, if *allow_code* is true. See note above about version dependence." msgstr "" -#: ../../library/marshal.rst:67 -msgid "" -"Added format version 4, which supports efficient representations of short " -"strings." +msgid "Added format version 3, which supports marshalling recursive lists, sets and dictionaries." +msgstr "" + +msgid "Added format version 4, which supports efficient representations of short strings." msgstr "" -#: ../../library/marshal.rst:72 msgid "Added format version 5, which allows marshalling slices." msgstr "" -#: ../../library/marshal.rst:75 msgid "The module defines these functions:" msgstr "" -#: ../../library/marshal.rst:80 -msgid "" -"Write the value on the open file. The value must be a supported type. The " -"file must be a writeable :term:`binary file`." +msgid "Write the value on the open file. The value must be a supported type. The file must be a writeable :term:`binary file`." msgstr "" -#: ../../library/marshal.rst:83 -msgid "" -"If the value has (or contains an object that has) an unsupported type, " -"a :exc:`ValueError` exception is raised --- but garbage data will also be " -"written to the file. The object will not be properly read back " -"by :func:`load`. :ref:`Code objects ` are only supported if " -"*allow_code* is true." +msgid "If the value has (or contains an object that has) an unsupported type, a :exc:`ValueError` exception is raised --- but garbage data will also be written to the file. The object will not be properly read back by :func:`load`. :ref:`Code objects ` are only supported if *allow_code* is true." msgstr "" -#: ../../library/marshal.rst:88 -msgid "" -"The *version* argument indicates the data format that ``dump`` should use " -"(see below)." +msgid "The *version* argument indicates the data format that ``dump`` should use (see below)." msgstr "" -#: ../../library/marshal.rst:91 ../../library/marshal.rst:131 -msgid "" -"Raises an :ref:`auditing event ` ``marshal.dumps`` with arguments " -"``value``, ``version``." +msgid "Raises an :ref:`auditing event ` ``marshal.dumps`` with arguments ``value``, ``version``." msgstr "" -#: ../../library/marshal.rst:93 ../../library/marshal.rst:117 -#: ../../library/marshal.rst:133 ../../library/marshal.rst:151 msgid "Added the *allow_code* parameter." msgstr "" -#: ../../library/marshal.rst:99 -msgid "" -"Read one value from the open file and return it. If no valid value is read " -"(e.g. because the data has a different Python version's incompatible marshal " -"format), raise :exc:`EOFError`, :exc:`ValueError` " -"or :exc:`TypeError`. :ref:`Code objects ` are only supported " -"if *allow_code* is true. The file must be a readable :term:`binary file`." +msgid "Read one value from the open file and return it. If no valid value is read (e.g. because the data has a different Python version's incompatible marshal format), raise :exc:`EOFError`, :exc:`ValueError` or :exc:`TypeError`. :ref:`Code objects ` are only supported if *allow_code* is true. The file must be a readable :term:`binary file`." msgstr "" -#: ../../library/marshal.rst:105 -msgid "" -"Raises an :ref:`auditing event ` ``marshal.load`` with no " -"arguments." +msgid "Raises an :ref:`auditing event ` ``marshal.load`` with no arguments." msgstr "" -#: ../../library/marshal.rst:109 -msgid "" -"If an object containing an unsupported type was marshalled " -"with :func:`dump`, :func:`load` will substitute ``None`` for the " -"unmarshallable type." +msgid "If an object containing an unsupported type was marshalled with :func:`dump`, :func:`load` will substitute ``None`` for the unmarshallable type." msgstr "" -#: ../../library/marshal.rst:114 -msgid "" -"This call used to raise a ``code.__new__`` audit event for each code object. " -"Now it raises a single ``marshal.load`` event for the entire load operation." +msgid "This call used to raise a ``code.__new__`` audit event for each code object. Now it raises a single ``marshal.load`` event for the entire load operation." msgstr "" -#: ../../library/marshal.rst:123 -msgid "" -"Return the bytes object that would be written to a file by ``dump(value, " -"file)``. The value must be a supported type. Raise a :exc:`ValueError` " -"exception if value has (or contains an object that has) an unsupported " -"type. :ref:`Code objects ` are only supported if *allow_code* " -"is true." +msgid "Return the bytes object that would be written to a file by ``dump(value, file)``. The value must be a supported type. Raise a :exc:`ValueError` exception if value has (or contains an object that has) an unsupported type. :ref:`Code objects ` are only supported if *allow_code* is true." msgstr "" -#: ../../library/marshal.rst:128 -msgid "" -"The *version* argument indicates the data format that ``dumps`` should use " -"(see below)." +msgid "The *version* argument indicates the data format that ``dumps`` should use (see below)." msgstr "" -#: ../../library/marshal.rst:139 -msgid "" -"Convert the :term:`bytes-like object` to a value. If no valid value is " -"found, raise :exc:`EOFError`, :exc:`ValueError` " -"or :exc:`TypeError`. :ref:`Code objects ` are only supported " -"if *allow_code* is true. Extra bytes in the input are ignored." +msgid "Convert the :term:`bytes-like object` to a value. If no valid value is found, raise :exc:`EOFError`, :exc:`ValueError` or :exc:`TypeError`. :ref:`Code objects ` are only supported if *allow_code* is true. Extra bytes in the input are ignored." msgstr "" -#: ../../library/marshal.rst:144 -msgid "" -"Raises an :ref:`auditing event ` ``marshal.loads`` with argument " -"``bytes``." +msgid "Raises an :ref:`auditing event ` ``marshal.loads`` with argument ``bytes``." msgstr "" -#: ../../library/marshal.rst:148 -msgid "" -"This call used to raise a ``code.__new__`` audit event for each code object. " -"Now it raises a single ``marshal.loads`` event for the entire load operation." +msgid "This call used to raise a ``code.__new__`` audit event for each code object. Now it raises a single ``marshal.loads`` event for the entire load operation." msgstr "" -#: ../../library/marshal.rst:155 msgid "In addition, the following constants are defined:" msgstr "" -#: ../../library/marshal.rst:159 -msgid "" -"Indicates the format that the module uses. Version 0 is the historical first " -"version; subsequent versions add new features. Generally, a new version " -"becomes the default when it is introduced." +msgid "Indicates the format that the module uses. Version 0 is the historical first version; subsequent versions add new features. Generally, a new version becomes the default when it is introduced." msgstr "" -#: ../../library/marshal.rst:165 msgid "Version" msgstr "" -#: ../../library/marshal.rst:165 msgid "Available since" msgstr "" -#: ../../library/marshal.rst:165 msgid "New features" msgstr "" -#: ../../library/marshal.rst:167 msgid "1" msgstr "" -#: ../../library/marshal.rst:167 msgid "Python 2.4" msgstr "" -#: ../../library/marshal.rst:167 msgid "Sharing interned strings" msgstr "" -#: ../../library/marshal.rst:169 msgid "2" msgstr "" -#: ../../library/marshal.rst:169 msgid "Python 2.5" msgstr "" -#: ../../library/marshal.rst:169 msgid "Binary representation of floats" msgstr "" -#: ../../library/marshal.rst:171 msgid "3" msgstr "" -#: ../../library/marshal.rst:171 ../../library/marshal.rst:173 msgid "Python 3.4" msgstr "" -#: ../../library/marshal.rst:171 msgid "Support for object instancing and recursion" msgstr "" -#: ../../library/marshal.rst:173 msgid "4" msgstr "" -#: ../../library/marshal.rst:173 msgid "Efficient representation of short strings" msgstr "" -#: ../../library/marshal.rst:175 msgid "5" msgstr "" -#: ../../library/marshal.rst:175 msgid "Python 3.14" msgstr "" -#: ../../library/marshal.rst:175 msgid "Support for :class:`slice` objects" msgstr "" -#: ../../library/marshal.rst:180 msgid "Footnotes" msgstr "" -#: ../../library/marshal.rst:181 -msgid "" -"The name of this module stems from a bit of terminology used by the " -"designers of Modula-3 (amongst others), who use the term \"marshalling\" for " -"shipping of data around in a self-contained form. Strictly speaking, \"to " -"marshal\" means to convert some data from internal to external form (in an " -"RPC buffer for instance) and \"unmarshalling\" for the reverse process." +msgid "The name of this module stems from a bit of terminology used by the designers of Modula-3 (amongst others), who use the term \"marshalling\" for shipping of data around in a self-contained form. Strictly speaking, \"to marshal\" means to convert some data from internal to external form (in an RPC buffer for instance) and \"unmarshalling\" for the reverse process." msgstr "" -#: ../../library/marshal.rst:17 msgid "module" msgstr "" -#: ../../library/marshal.rst:17 msgid "pickle" msgstr "" -#: ../../library/marshal.rst:17 msgid "shelve" msgstr "" -#: ../../library/marshal.rst:44 msgid "object" msgstr "" -#: ../../library/marshal.rst:44 msgid "code" msgstr "" -#: ../../library/marshal.rst:44 msgid "code object" msgstr "" diff --git a/library/math.po b/library/math.po index 5c803c65..741cc215 100644 --- a/library/math.po +++ b/library/math.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:09+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,1354 +24,809 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/math.rst:2 msgid ":mod:`!math` --- Mathematical functions" msgstr "" -#: ../../library/math.rst:13 -msgid "" -"This module provides access to common mathematical functions and constants, " -"including those defined by the C standard." +msgid "This module provides access to common mathematical functions and constants, including those defined by the C standard." msgstr "" -#: ../../library/math.rst:16 -msgid "" -"These functions cannot be used with complex numbers; use the functions of " -"the same name from the :mod:`cmath` module if you require support for " -"complex numbers. The distinction between functions which support complex " -"numbers and those which don't is made since most users do not want to learn " -"quite as much mathematics as required to understand complex numbers. " -"Receiving an exception instead of a complex result allows earlier detection " -"of the unexpected complex number used as a parameter, so that the programmer " -"can determine how and why it was generated in the first place." +msgid "These functions cannot be used with complex numbers; use the functions of the same name from the :mod:`cmath` module if you require support for complex numbers. The distinction between functions which support complex numbers and those which don't is made since most users do not want to learn quite as much mathematics as required to understand complex numbers. Receiving an exception instead of a complex result allows earlier detection of the unexpected complex number used as a parameter, so that the programmer can determine how and why it was generated in the first place." msgstr "" -#: ../../library/math.rst:25 -msgid "" -"The following functions are provided by this module. Except when explicitly " -"noted otherwise, all return values are floats." +msgid "The following functions are provided by this module. Except when explicitly noted otherwise, all return values are floats." msgstr "" -#: ../../library/math.rst:30 msgid "**Number-theoretic functions**" msgstr "" -#: ../../library/math.rst:32 msgid ":func:`comb(n, k) `" msgstr "" -#: ../../library/math.rst:32 -msgid "" -"Number of ways to choose *k* items from *n* items without repetition and " -"without order" +msgid "Number of ways to choose *k* items from *n* items without repetition and without order" msgstr "" -#: ../../library/math.rst:33 msgid ":func:`factorial(n) `" msgstr "" -#: ../../library/math.rst:33 msgid "*n* factorial" msgstr "" -#: ../../library/math.rst:34 msgid ":func:`gcd(*integers) `" msgstr "" -#: ../../library/math.rst:34 msgid "Greatest common divisor of the integer arguments" msgstr "" -#: ../../library/math.rst:35 msgid ":func:`isqrt(n) `" msgstr "" -#: ../../library/math.rst:35 msgid "Integer square root of a nonnegative integer *n*" msgstr "" -#: ../../library/math.rst:36 msgid ":func:`lcm(*integers) `" msgstr "" -#: ../../library/math.rst:36 msgid "Least common multiple of the integer arguments" msgstr "" -#: ../../library/math.rst:37 msgid ":func:`perm(n, k) `" msgstr "" -#: ../../library/math.rst:37 -msgid "" -"Number of ways to choose *k* items from *n* items without repetition and " -"with order" +msgid "Number of ways to choose *k* items from *n* items without repetition and with order" msgstr "" -#: ../../library/math.rst:39 msgid "**Floating point arithmetic**" msgstr "" -#: ../../library/math.rst:41 msgid ":func:`ceil(x) `" msgstr "" -#: ../../library/math.rst:41 msgid "Ceiling of *x*, the smallest integer greater than or equal to *x*" msgstr "" -#: ../../library/math.rst:42 msgid ":func:`fabs(x) `" msgstr "" -#: ../../library/math.rst:42 msgid "Absolute value of *x*" msgstr "" -#: ../../library/math.rst:43 msgid ":func:`floor(x) `" msgstr "" -#: ../../library/math.rst:43 msgid "Floor of *x*, the largest integer less than or equal to *x*" msgstr "" -#: ../../library/math.rst:44 msgid ":func:`fma(x, y, z) `" msgstr "" -#: ../../library/math.rst:44 msgid "Fused multiply-add operation: ``(x * y) + z``" msgstr "" -#: ../../library/math.rst:45 msgid ":func:`fmod(x, y) `" msgstr "" -#: ../../library/math.rst:45 msgid "Remainder of division ``x / y``" msgstr "" -#: ../../library/math.rst:46 msgid ":func:`modf(x) `" msgstr "" -#: ../../library/math.rst:46 msgid "Fractional and integer parts of *x*" msgstr "" -#: ../../library/math.rst:47 msgid ":func:`remainder(x, y) `" msgstr "" -#: ../../library/math.rst:47 msgid "Remainder of *x* with respect to *y*" msgstr "" -#: ../../library/math.rst:48 msgid ":func:`trunc(x) `" msgstr "" -#: ../../library/math.rst:48 msgid "Integer part of *x*" msgstr "" -#: ../../library/math.rst:50 msgid "**Floating point manipulation functions**" msgstr "" -#: ../../library/math.rst:52 msgid ":func:`copysign(x, y) `" msgstr "" -#: ../../library/math.rst:52 msgid "Magnitude (absolute value) of *x* with the sign of *y*" msgstr "" -#: ../../library/math.rst:53 msgid ":func:`frexp(x) `" msgstr "" -#: ../../library/math.rst:53 msgid "Mantissa and exponent of *x*" msgstr "" -#: ../../library/math.rst:54 msgid ":func:`isclose(a, b, rel_tol, abs_tol) `" msgstr "" -#: ../../library/math.rst:54 msgid "Check if the values *a* and *b* are close to each other" msgstr "" -#: ../../library/math.rst:55 msgid ":func:`isfinite(x) `" msgstr "" -#: ../../library/math.rst:55 msgid "Check if *x* is neither an infinity nor a NaN" msgstr "" -#: ../../library/math.rst:56 msgid ":func:`isinf(x) `" msgstr "" -#: ../../library/math.rst:56 msgid "Check if *x* is a positive or negative infinity" msgstr "" -#: ../../library/math.rst:57 msgid ":func:`isnan(x) `" msgstr "" -#: ../../library/math.rst:57 msgid "Check if *x* is a NaN (not a number)" msgstr "" -#: ../../library/math.rst:58 msgid ":func:`ldexp(x, i) `" msgstr "" -#: ../../library/math.rst:58 msgid "``x * (2**i)``, inverse of function :func:`frexp`" msgstr "" -#: ../../library/math.rst:59 msgid ":func:`nextafter(x, y, steps) `" msgstr "" -#: ../../library/math.rst:59 msgid "Floating-point value *steps* steps after *x* towards *y*" msgstr "" -#: ../../library/math.rst:60 msgid ":func:`ulp(x) `" msgstr "" -#: ../../library/math.rst:60 msgid "Value of the least significant bit of *x*" msgstr "" -#: ../../library/math.rst:62 msgid "**Power, exponential and logarithmic functions**" msgstr "" -#: ../../library/math.rst:64 msgid ":func:`cbrt(x) `" msgstr "" -#: ../../library/math.rst:64 msgid "Cube root of *x*" msgstr "" -#: ../../library/math.rst:65 msgid ":func:`exp(x) `" msgstr "" -#: ../../library/math.rst:65 msgid "*e* raised to the power *x*" msgstr "" -#: ../../library/math.rst:66 msgid ":func:`exp2(x) `" msgstr "" -#: ../../library/math.rst:66 msgid "*2* raised to the power *x*" msgstr "" -#: ../../library/math.rst:67 msgid ":func:`expm1(x) `" msgstr "" -#: ../../library/math.rst:67 msgid "*e* raised to the power *x*, minus 1" msgstr "" -#: ../../library/math.rst:68 msgid ":func:`log(x, base) `" msgstr "" -#: ../../library/math.rst:68 msgid "Logarithm of *x* to the given base (*e* by default)" msgstr "" -#: ../../library/math.rst:69 msgid ":func:`log1p(x) `" msgstr "" -#: ../../library/math.rst:69 msgid "Natural logarithm of *1+x* (base *e*)" msgstr "" -#: ../../library/math.rst:70 msgid ":func:`log2(x) `" msgstr "" -#: ../../library/math.rst:70 msgid "Base-2 logarithm of *x*" msgstr "" -#: ../../library/math.rst:71 msgid ":func:`log10(x) `" msgstr "" -#: ../../library/math.rst:71 msgid "Base-10 logarithm of *x*" msgstr "" -#: ../../library/math.rst:72 msgid ":func:`pow(x, y) `" msgstr "" -#: ../../library/math.rst:72 msgid "*x* raised to the power *y*" msgstr "" -#: ../../library/math.rst:73 msgid ":func:`sqrt(x) `" msgstr "" -#: ../../library/math.rst:73 msgid "Square root of *x*" msgstr "" -#: ../../library/math.rst:75 msgid "**Summation and product functions**" msgstr "" -#: ../../library/math.rst:77 msgid ":func:`dist(p, q) `" msgstr "" -#: ../../library/math.rst:77 -msgid "" -"Euclidean distance between two points *p* and *q* given as an iterable of " -"coordinates" +msgid "Euclidean distance between two points *p* and *q* given as an iterable of coordinates" msgstr "" -#: ../../library/math.rst:78 msgid ":func:`fsum(iterable) `" msgstr "" -#: ../../library/math.rst:78 msgid "Sum of values in the input *iterable*" msgstr "" -#: ../../library/math.rst:79 msgid ":func:`hypot(*coordinates) `" msgstr "" -#: ../../library/math.rst:79 msgid "Euclidean norm of an iterable of coordinates" msgstr "" -#: ../../library/math.rst:80 msgid ":func:`prod(iterable, start) `" msgstr "" -#: ../../library/math.rst:80 msgid "Product of elements in the input *iterable* with a *start* value" msgstr "" -#: ../../library/math.rst:81 msgid ":func:`sumprod(p, q) `" msgstr "" -#: ../../library/math.rst:81 msgid "Sum of products from two iterables *p* and *q*" msgstr "" -#: ../../library/math.rst:83 msgid "**Angular conversion**" msgstr "" -#: ../../library/math.rst:85 msgid ":func:`degrees(x) `" msgstr "" -#: ../../library/math.rst:85 msgid "Convert angle *x* from radians to degrees" msgstr "" -#: ../../library/math.rst:86 msgid ":func:`radians(x) `" msgstr "" -#: ../../library/math.rst:86 msgid "Convert angle *x* from degrees to radians" msgstr "" -#: ../../library/math.rst:88 msgid "**Trigonometric functions**" msgstr "" -#: ../../library/math.rst:90 msgid ":func:`acos(x) `" msgstr "" -#: ../../library/math.rst:90 msgid "Arc cosine of *x*" msgstr "" -#: ../../library/math.rst:91 msgid ":func:`asin(x) `" msgstr "" -#: ../../library/math.rst:91 msgid "Arc sine of *x*" msgstr "" -#: ../../library/math.rst:92 msgid ":func:`atan(x) `" msgstr "" -#: ../../library/math.rst:92 msgid "Arc tangent of *x*" msgstr "" -#: ../../library/math.rst:93 msgid ":func:`atan2(y, x) `" msgstr "" -#: ../../library/math.rst:93 msgid "``atan(y / x)``" msgstr "" -#: ../../library/math.rst:94 msgid ":func:`cos(x) `" msgstr "" -#: ../../library/math.rst:94 msgid "Cosine of *x*" msgstr "" -#: ../../library/math.rst:95 msgid ":func:`sin(x) `" msgstr "" -#: ../../library/math.rst:95 msgid "Sine of *x*" msgstr "" -#: ../../library/math.rst:96 msgid ":func:`tan(x) `" msgstr "" -#: ../../library/math.rst:96 msgid "Tangent of *x*" msgstr "" -#: ../../library/math.rst:98 msgid "**Hyperbolic functions**" msgstr "" -#: ../../library/math.rst:100 msgid ":func:`acosh(x) `" msgstr "" -#: ../../library/math.rst:100 msgid "Inverse hyperbolic cosine of *x*" msgstr "" -#: ../../library/math.rst:101 msgid ":func:`asinh(x) `" msgstr "" -#: ../../library/math.rst:101 msgid "Inverse hyperbolic sine of *x*" msgstr "" -#: ../../library/math.rst:102 msgid ":func:`atanh(x) `" msgstr "" -#: ../../library/math.rst:102 msgid "Inverse hyperbolic tangent of *x*" msgstr "" -#: ../../library/math.rst:103 msgid ":func:`cosh(x) `" msgstr "" -#: ../../library/math.rst:103 msgid "Hyperbolic cosine of *x*" msgstr "" -#: ../../library/math.rst:104 msgid ":func:`sinh(x) `" msgstr "" -#: ../../library/math.rst:104 msgid "Hyperbolic sine of *x*" msgstr "" -#: ../../library/math.rst:105 msgid ":func:`tanh(x) `" msgstr "" -#: ../../library/math.rst:105 msgid "Hyperbolic tangent of *x*" msgstr "" -#: ../../library/math.rst:107 msgid "**Special functions**" msgstr "" -#: ../../library/math.rst:109 msgid ":func:`erf(x) `" msgstr "" -#: ../../library/math.rst:109 msgid "`Error function `_ at *x*" msgstr "" -#: ../../library/math.rst:110 msgid ":func:`erfc(x) `" msgstr "" -#: ../../library/math.rst:110 -msgid "" -"`Complementary error function `_ at *x*" +msgid "`Complementary error function `_ at *x*" msgstr "" -#: ../../library/math.rst:111 msgid ":func:`gamma(x) `" msgstr "" -#: ../../library/math.rst:111 msgid "`Gamma function `_ at *x*" msgstr "" -#: ../../library/math.rst:112 msgid ":func:`lgamma(x) `" msgstr "" -#: ../../library/math.rst:112 -msgid "" -"Natural logarithm of the absolute value of the `Gamma function `_ at *x*" +msgid "Natural logarithm of the absolute value of the `Gamma function `_ at *x*" msgstr "" -#: ../../library/math.rst:114 msgid "**Constants**" msgstr "" -#: ../../library/math.rst:116 msgid ":data:`pi`" msgstr "" -#: ../../library/math.rst:116 msgid "*π* = 3.141592..." msgstr "" -#: ../../library/math.rst:117 msgid ":data:`e`" msgstr "" -#: ../../library/math.rst:117 msgid "*e* = 2.718281..." msgstr "" -#: ../../library/math.rst:118 msgid ":data:`tau`" msgstr "" -#: ../../library/math.rst:118 msgid "*τ* = 2\\ *π* = 6.283185..." msgstr "" -#: ../../library/math.rst:119 msgid ":data:`inf`" msgstr "" -#: ../../library/math.rst:119 msgid "Positive infinity" msgstr "" -#: ../../library/math.rst:120 msgid ":data:`nan`" msgstr "" -#: ../../library/math.rst:120 msgid "\"Not a number\" (NaN)" msgstr "" -#: ../../library/math.rst:125 msgid "Number-theoretic functions" msgstr "" -#: ../../library/math.rst:129 -msgid "" -"Return the number of ways to choose *k* items from *n* items without " -"repetition and without order." +msgid "Return the number of ways to choose *k* items from *n* items without repetition and without order." msgstr "" -#: ../../library/math.rst:132 -msgid "" -"Evaluates to ``n! / (k! * (n - k)!)`` when ``k <= n`` and evaluates to zero " -"when ``k > n``." +msgid "Evaluates to ``n! / (k! * (n - k)!)`` when ``k <= n`` and evaluates to zero when ``k > n``." msgstr "" -#: ../../library/math.rst:135 -msgid "" -"Also called the binomial coefficient because it is equivalent to the " -"coefficient of k-th term in polynomial expansion of ``(1 + x)ⁿ``." +msgid "Also called the binomial coefficient because it is equivalent to the coefficient of k-th term in polynomial expansion of ``(1 + x)ⁿ``." msgstr "" -#: ../../library/math.rst:139 ../../library/math.rst:204 -msgid "" -"Raises :exc:`TypeError` if either of the arguments are not integers. " -"Raises :exc:`ValueError` if either of the arguments are negative." +msgid "Raises :exc:`TypeError` if either of the arguments are not integers. Raises :exc:`ValueError` if either of the arguments are negative." msgstr "" -#: ../../library/math.rst:147 msgid "Return factorial of the nonnegative integer *n*." msgstr "" -#: ../../library/math.rst:149 msgid "Floats with integral values (like ``5.0``) are no longer accepted." msgstr "" -#: ../../library/math.rst:155 -msgid "" -"Return the greatest common divisor of the specified integer arguments. If " -"any of the arguments is nonzero, then the returned value is the largest " -"positive integer that is a divisor of all arguments. If all arguments are " -"zero, then the returned value is ``0``. ``gcd()`` without arguments returns " -"``0``." +msgid "Return the greatest common divisor of the specified integer arguments. If any of the arguments is nonzero, then the returned value is the largest positive integer that is a divisor of all arguments. If all arguments are zero, then the returned value is ``0``. ``gcd()`` without arguments returns ``0``." msgstr "" -#: ../../library/math.rst:163 -msgid "" -"Added support for an arbitrary number of arguments. Formerly, only two " -"arguments were supported." +msgid "Added support for an arbitrary number of arguments. Formerly, only two arguments were supported." msgstr "" -#: ../../library/math.rst:170 -msgid "" -"Return the integer square root of the nonnegative integer *n*. This is the " -"floor of the exact square root of *n*, or equivalently the greatest integer " -"*a* such that *a*\\ ² |nbsp| ≤ |nbsp| *n*." +msgid "Return the integer square root of the nonnegative integer *n*. This is the floor of the exact square root of *n*, or equivalently the greatest integer *a* such that *a*\\ ² |nbsp| ≤ |nbsp| *n*." msgstr "" -#: ../../library/math.rst:174 -msgid "" -"For some applications, it may be more convenient to have the least integer " -"*a* such that *n* |nbsp| ≤ |nbsp| *a*\\ ², or in other words the ceiling of " -"the exact square root of *n*. For positive *n*, this can be computed using " -"``a = 1 + isqrt(n - 1)``." +msgid "For some applications, it may be more convenient to have the least integer *a* such that *n* |nbsp| ≤ |nbsp| *a*\\ ², or in other words the ceiling of the exact square root of *n*. For positive *n*, this can be computed using ``a = 1 + isqrt(n - 1)``." msgstr "" -#: ../../library/math.rst:184 -msgid "" -"Return the least common multiple of the specified integer arguments. If all " -"arguments are nonzero, then the returned value is the smallest positive " -"integer that is a multiple of all arguments. If any of the arguments is " -"zero, then the returned value is ``0``. ``lcm()`` without arguments returns " -"``1``." +msgid "Return the least common multiple of the specified integer arguments. If all arguments are nonzero, then the returned value is the smallest positive integer that is a multiple of all arguments. If any of the arguments is zero, then the returned value is ``0``. ``lcm()`` without arguments returns ``1``." msgstr "" -#: ../../library/math.rst:195 -msgid "" -"Return the number of ways to choose *k* items from *n* items without " -"repetition and with order." +msgid "Return the number of ways to choose *k* items from *n* items without repetition and with order." msgstr "" -#: ../../library/math.rst:198 -msgid "" -"Evaluates to ``n! / (n - k)!`` when ``k <= n`` and evaluates to zero when " -"``k > n``." +msgid "Evaluates to ``n! / (n - k)!`` when ``k <= n`` and evaluates to zero when ``k > n``." msgstr "" -#: ../../library/math.rst:201 -msgid "" -"If *k* is not specified or is ``None``, then *k* defaults to *n* and the " -"function returns ``n!``." +msgid "If *k* is not specified or is ``None``, then *k* defaults to *n* and the function returns ``n!``." msgstr "" -#: ../../library/math.rst:211 msgid "Floating point arithmetic" msgstr "" -#: ../../library/math.rst:215 -msgid "" -"Return the ceiling of *x*, the smallest integer greater than or equal to " -"*x*. If *x* is not a float, delegates to :meth:`x.__ceil__ " -"`, which should return an :class:`~numbers.Integral` value." +msgid "Return the ceiling of *x*, the smallest integer greater than or equal to *x*. If *x* is not a float, delegates to :meth:`x.__ceil__ `, which should return an :class:`~numbers.Integral` value." msgstr "" -#: ../../library/math.rst:222 msgid "Return the absolute value of *x*." msgstr "" -#: ../../library/math.rst:227 -msgid "" -"Return the floor of *x*, the largest integer less than or equal to *x*. If " -"*x* is not a float, delegates to :meth:`x.__floor__ `, " -"which should return an :class:`~numbers.Integral` value." +msgid "Return the floor of *x*, the largest integer less than or equal to *x*. If *x* is not a float, delegates to :meth:`x.__floor__ `, which should return an :class:`~numbers.Integral` value." msgstr "" -#: ../../library/math.rst:234 -msgid "" -"Fused multiply-add operation. Return ``(x * y) + z``, computed as though " -"with infinite precision and range followed by a single round to the " -"``float`` format. This operation often provides better accuracy than the " -"direct expression ``(x * y) + z``." +msgid "Fused multiply-add operation. Return ``(x * y) + z``, computed as though with infinite precision and range followed by a single round to the ``float`` format. This operation often provides better accuracy than the direct expression ``(x * y) + z``." msgstr "" -#: ../../library/math.rst:239 -msgid "" -"This function follows the specification of the fusedMultiplyAdd operation " -"described in the IEEE 754 standard. The standard leaves one case " -"implementation-defined, namely the result of ``fma(0, inf, nan)`` and " -"``fma(inf, 0, nan)``. In these cases, ``math.fma`` returns a NaN, and does " -"not raise any exception." +msgid "This function follows the specification of the fusedMultiplyAdd operation described in the IEEE 754 standard. The standard leaves one case implementation-defined, namely the result of ``fma(0, inf, nan)`` and ``fma(inf, 0, nan)``. In these cases, ``math.fma`` returns a NaN, and does not raise any exception." msgstr "" -#: ../../library/math.rst:250 -msgid "" -"Return the floating-point remainder of ``x / y``, as defined by the platform " -"C library function ``fmod(x, y)``. Note that the Python expression ``x % y`` " -"may not return the same result. The intent of the C standard is that " -"``fmod(x, y)`` be exactly (mathematically; to infinite precision) equal to " -"``x - n*y`` for some integer *n* such that the result has the same sign as " -"*x* and magnitude less than ``abs(y)``. Python's ``x % y`` returns a result " -"with the sign of *y* instead, and may not be exactly computable for float " -"arguments. For example, ``fmod(-1e-100, 1e100)`` is ``-1e-100``, but the " -"result of Python's ``-1e-100 % 1e100`` is ``1e100-1e-100``, which cannot be " -"represented exactly as a float, and rounds to the surprising ``1e100``. For " -"this reason, function :func:`fmod` is generally preferred when working with " -"floats, while Python's ``x % y`` is preferred when working with integers." -msgstr "" - -#: ../../library/math.rst:266 -msgid "" -"Return the fractional and integer parts of *x*. Both results carry the sign " -"of *x* and are floats." +msgid "Return the floating-point remainder of ``x / y``, as defined by the platform C library function ``fmod(x, y)``. Note that the Python expression ``x % y`` may not return the same result. The intent of the C standard is that ``fmod(x, y)`` be exactly (mathematically; to infinite precision) equal to ``x - n*y`` for some integer *n* such that the result has the same sign as *x* and magnitude less than ``abs(y)``. Python's ``x % y`` returns a result with the sign of *y* instead, and may not be exactly computable for float arguments. For example, ``fmod(-1e-100, 1e100)`` is ``-1e-100``, but the result of Python's ``-1e-100 % 1e100`` is ``1e100-1e-100``, which cannot be represented exactly as a float, and rounds to the surprising ``1e100``. For this reason, function :func:`fmod` is generally preferred when working with floats, while Python's ``x % y`` is preferred when working with integers." msgstr "" -#: ../../library/math.rst:269 -msgid "" -"Note that :func:`modf` has a different call/return pattern than its C " -"equivalents: it takes a single argument and return a pair of values, rather " -"than returning its second return value through an 'output parameter' (there " -"is no such thing in Python)." +msgid "Return the fractional and integer parts of *x*. Both results carry the sign of *x* and are floats." msgstr "" -#: ../../library/math.rst:277 -msgid "" -"Return the IEEE 754-style remainder of *x* with respect to *y*. For finite " -"*x* and finite nonzero *y*, this is the difference ``x - n*y``, where ``n`` " -"is the closest integer to the exact value of the quotient ``x / y``. If " -"``x / y`` is exactly halfway between two consecutive integers, the nearest " -"*even* integer is used for ``n``. The remainder ``r = remainder(x, y)`` " -"thus always satisfies ``abs(r) <= 0.5 * abs(y)``." +msgid "Note that :func:`modf` has a different call/return pattern than its C equivalents: it takes a single argument and return a pair of values, rather than returning its second return value through an 'output parameter' (there is no such thing in Python)." msgstr "" -#: ../../library/math.rst:284 -msgid "" -"Special cases follow IEEE 754: in particular, ``remainder(x, math.inf)`` is " -"*x* for any finite *x*, and ``remainder(x, 0)`` and ``remainder(math.inf, " -"x)`` raise :exc:`ValueError` for any non-NaN *x*. If the result of the " -"remainder operation is zero, that zero will have the same sign as *x*." +msgid "Return the IEEE 754-style remainder of *x* with respect to *y*. For finite *x* and finite nonzero *y*, this is the difference ``x - n*y``, where ``n`` is the closest integer to the exact value of the quotient ``x / y``. If ``x / y`` is exactly halfway between two consecutive integers, the nearest *even* integer is used for ``n``. The remainder ``r = remainder(x, y)`` thus always satisfies ``abs(r) <= 0.5 * abs(y)``." msgstr "" -#: ../../library/math.rst:290 -msgid "" -"On platforms using IEEE 754 binary floating point, the result of this " -"operation is always exactly representable: no rounding error is introduced." +msgid "Special cases follow IEEE 754: in particular, ``remainder(x, math.inf)`` is *x* for any finite *x*, and ``remainder(x, 0)`` and ``remainder(math.inf, x)`` raise :exc:`ValueError` for any non-NaN *x*. If the result of the remainder operation is zero, that zero will have the same sign as *x*." msgstr "" -#: ../../library/math.rst:298 -msgid "" -"Return *x* with the fractional part removed, leaving the integer part. This " -"rounds toward 0: ``trunc()`` is equivalent to :func:`floor` for positive " -"*x*, and equivalent to :func:`ceil` for negative *x*. If *x* is not a float, " -"delegates to :meth:`x.__trunc__ `, which should return " -"an :class:`~numbers.Integral` value." +msgid "On platforms using IEEE 754 binary floating point, the result of this operation is always exactly representable: no rounding error is introduced." msgstr "" -#: ../../library/math.rst:305 -msgid "" -"For the :func:`ceil`, :func:`floor`, and :func:`modf` functions, note that " -"*all* floating-point numbers of sufficiently large magnitude are exact " -"integers. Python floats typically carry no more than 53 bits of precision " -"(the same as the platform C double type), in which case any float *x* with " -"``abs(x) >= 2**52`` necessarily has no fractional bits." +msgid "Return *x* with the fractional part removed, leaving the integer part. This rounds toward 0: ``trunc()`` is equivalent to :func:`floor` for positive *x*, and equivalent to :func:`ceil` for negative *x*. If *x* is not a float, delegates to :meth:`x.__trunc__ `, which should return an :class:`~numbers.Integral` value." +msgstr "" + +msgid "For the :func:`ceil`, :func:`floor`, and :func:`modf` functions, note that *all* floating-point numbers of sufficiently large magnitude are exact integers. Python floats typically carry no more than 53 bits of precision (the same as the platform C double type), in which case any float *x* with ``abs(x) >= 2**52`` necessarily has no fractional bits." msgstr "" -#: ../../library/math.rst:313 msgid "Floating point manipulation functions" msgstr "" -#: ../../library/math.rst:317 -msgid "" -"Return a float with the magnitude (absolute value) of *x* but the sign of " -"*y*. On platforms that support signed zeros, ``copysign(1.0, -0.0)`` " -"returns *-1.0*." +msgid "Return a float with the magnitude (absolute value) of *x* but the sign of *y*. On platforms that support signed zeros, ``copysign(1.0, -0.0)`` returns *-1.0*." msgstr "" -#: ../../library/math.rst:324 -msgid "" -"Return the mantissa and exponent of *x* as the pair ``(m, e)``. If *x* is a " -"finite nonzero number, then *m* is a float with ``0.5 <= abs(m) < 1.0`` and " -"an integer *e* is such that ``x == m * 2**e`` exactly. Else, return ``(x, " -"0)``. This is used to \"pick apart\" the internal representation of a float " -"in a portable way." +msgid "Return the mantissa and exponent of *x* as the pair ``(m, e)``. If *x* is a finite nonzero number, then *m* is a float with ``0.5 <= abs(m) < 1.0`` and an integer *e* is such that ``x == m * 2**e`` exactly. Else, return ``(x, 0)``. This is used to \"pick apart\" the internal representation of a float in a portable way." msgstr "" -#: ../../library/math.rst:331 -msgid "" -"Note that :func:`frexp` has a different call/return pattern than its C " -"equivalents: it takes a single argument and return a pair of values, rather " -"than returning its second return value through an 'output parameter' (there " -"is no such thing in Python)." +msgid "Note that :func:`frexp` has a different call/return pattern than its C equivalents: it takes a single argument and return a pair of values, rather than returning its second return value through an 'output parameter' (there is no such thing in Python)." msgstr "" -#: ../../library/math.rst:338 -msgid "" -"Return ``True`` if the values *a* and *b* are close to each other and " -"``False`` otherwise." +msgid "Return ``True`` if the values *a* and *b* are close to each other and ``False`` otherwise." msgstr "" -#: ../../library/math.rst:341 -msgid "" -"Whether or not two values are considered close is determined according to " -"given absolute and relative tolerances. If no errors occur, the result will " -"be: ``abs(a-b) <= max(rel_tol * max(abs(a), abs(b)), abs_tol)``." +msgid "Whether or not two values are considered close is determined according to given absolute and relative tolerances. If no errors occur, the result will be: ``abs(a-b) <= max(rel_tol * max(abs(a), abs(b)), abs_tol)``." msgstr "" -#: ../../library/math.rst:345 -msgid "" -"*rel_tol* is the relative tolerance -- it is the maximum allowed difference " -"between *a* and *b*, relative to the larger absolute value of *a* or *b*. " -"For example, to set a tolerance of 5%, pass ``rel_tol=0.05``. The default " -"tolerance is ``1e-09``, which assures that the two values are the same " -"within about 9 decimal digits. *rel_tol* must be nonnegative and less than " -"``1.0``." +msgid "*rel_tol* is the relative tolerance -- it is the maximum allowed difference between *a* and *b*, relative to the larger absolute value of *a* or *b*. For example, to set a tolerance of 5%, pass ``rel_tol=0.05``. The default tolerance is ``1e-09``, which assures that the two values are the same within about 9 decimal digits. *rel_tol* must be nonnegative and less than ``1.0``." msgstr "" -#: ../../library/math.rst:352 -msgid "" -"*abs_tol* is the absolute tolerance; it defaults to ``0.0`` and it must be " -"nonnegative. When comparing ``x`` to ``0.0``, ``isclose(x, 0)`` is computed " -"as ``abs(x) <= rel_tol * abs(x)``, which is ``False`` for any nonzero ``x`` " -"and *rel_tol* less than ``1.0``. So add an appropriate positive *abs_tol* " -"argument to the call." +msgid "*abs_tol* is the absolute tolerance; it defaults to ``0.0`` and it must be nonnegative. When comparing ``x`` to ``0.0``, ``isclose(x, 0)`` is computed as ``abs(x) <= rel_tol * abs(x)``, which is ``False`` for any nonzero ``x`` and *rel_tol* less than ``1.0``. So add an appropriate positive *abs_tol* argument to the call." msgstr "" -#: ../../library/math.rst:358 -msgid "" -"The IEEE 754 special values of ``NaN``, ``inf``, and ``-inf`` will be " -"handled according to IEEE rules. Specifically, ``NaN`` is not considered " -"close to any other value, including ``NaN``. ``inf`` and ``-inf`` are only " -"considered close to themselves." +msgid "The IEEE 754 special values of ``NaN``, ``inf``, and ``-inf`` will be handled according to IEEE rules. Specifically, ``NaN`` is not considered close to any other value, including ``NaN``. ``inf`` and ``-inf`` are only considered close to themselves." msgstr "" -#: ../../library/math.rst:367 msgid ":pep:`485` -- A function for testing approximate equality" msgstr "" -#: ../../library/math.rst:372 -msgid "" -"Return ``True`` if *x* is neither an infinity nor a NaN, and ``False`` " -"otherwise. (Note that ``0.0`` *is* considered finite.)" +msgid "Return ``True`` if *x* is neither an infinity nor a NaN, and ``False`` otherwise. (Note that ``0.0`` *is* considered finite.)" msgstr "" -#: ../../library/math.rst:380 -msgid "" -"Return ``True`` if *x* is a positive or negative infinity, and ``False`` " -"otherwise." +msgid "Return ``True`` if *x* is a positive or negative infinity, and ``False`` otherwise." msgstr "" -#: ../../library/math.rst:386 -msgid "" -"Return ``True`` if *x* is a NaN (not a number), and ``False`` otherwise." +msgid "Return ``True`` if *x* is a NaN (not a number), and ``False`` otherwise." msgstr "" -#: ../../library/math.rst:391 -msgid "" -"Return ``x * (2**i)``. This is essentially the inverse of " -"function :func:`frexp`." +msgid "Return ``x * (2**i)``. This is essentially the inverse of function :func:`frexp`." msgstr "" -#: ../../library/math.rst:397 msgid "Return the floating-point value *steps* steps after *x* towards *y*." msgstr "" -#: ../../library/math.rst:399 msgid "If *x* is equal to *y*, return *y*, unless *steps* is zero." msgstr "" -#: ../../library/math.rst:401 msgid "Examples:" msgstr "" -#: ../../library/math.rst:403 msgid "``math.nextafter(x, math.inf)`` goes up: towards positive infinity." msgstr "" -#: ../../library/math.rst:404 msgid "``math.nextafter(x, -math.inf)`` goes down: towards minus infinity." msgstr "" -#: ../../library/math.rst:405 msgid "``math.nextafter(x, 0.0)`` goes towards zero." msgstr "" -#: ../../library/math.rst:406 msgid "``math.nextafter(x, math.copysign(math.inf, x))`` goes away from zero." msgstr "" -#: ../../library/math.rst:408 msgid "See also :func:`math.ulp`." msgstr "" -#: ../../library/math.rst:412 msgid "Added the *steps* argument." msgstr "" -#: ../../library/math.rst:418 msgid "Return the value of the least significant bit of the float *x*:" msgstr "" -#: ../../library/math.rst:420 msgid "If *x* is a NaN (not a number), return *x*." msgstr "" -#: ../../library/math.rst:421 msgid "If *x* is negative, return ``ulp(-x)``." msgstr "" -#: ../../library/math.rst:422 msgid "If *x* is a positive infinity, return *x*." msgstr "" -#: ../../library/math.rst:423 -msgid "" -"If *x* is equal to zero, return the smallest positive *denormalized* " -"representable float (smaller than the minimum positive *normalized* " -"float, :data:`sys.float_info.min `)." +msgid "If *x* is equal to zero, return the smallest positive *denormalized* representable float (smaller than the minimum positive *normalized* float, :data:`sys.float_info.min `)." msgstr "" -#: ../../library/math.rst:426 -msgid "" -"If *x* is equal to the largest positive representable float, return the " -"value of the least significant bit of *x*, such that the first float smaller " -"than *x* is ``x - ulp(x)``." +msgid "If *x* is equal to the largest positive representable float, return the value of the least significant bit of *x*, such that the first float smaller than *x* is ``x - ulp(x)``." msgstr "" -#: ../../library/math.rst:429 -msgid "" -"Otherwise (*x* is a positive finite number), return the value of the least " -"significant bit of *x*, such that the first float bigger than *x* is ``x + " -"ulp(x)``." +msgid "Otherwise (*x* is a positive finite number), return the value of the least significant bit of *x*, such that the first float bigger than *x* is ``x + ulp(x)``." msgstr "" -#: ../../library/math.rst:433 msgid "ULP stands for \"Unit in the Last Place\"." msgstr "" -#: ../../library/math.rst:435 -msgid "" -"See also :func:`math.nextafter` and :data:`sys.float_info.epsilon " -"`." +msgid "See also :func:`math.nextafter` and :data:`sys.float_info.epsilon `." msgstr "" -#: ../../library/math.rst:442 msgid "Power, exponential and logarithmic functions" msgstr "" -#: ../../library/math.rst:446 msgid "Return the cube root of *x*." msgstr "" -#: ../../library/math.rst:453 -msgid "" -"Return *e* raised to the power *x*, where *e* = 2.718281... is the base of " -"natural logarithms. This is usually more accurate than ``math.e ** x`` or " -"``pow(math.e, x)``." +msgid "Return *e* raised to the power *x*, where *e* = 2.718281... is the base of natural logarithms. This is usually more accurate than ``math.e ** x`` or ``pow(math.e, x)``." msgstr "" -#: ../../library/math.rst:460 msgid "Return *2* raised to the power *x*." msgstr "" -#: ../../library/math.rst:467 -msgid "" -"Return *e* raised to the power *x*, minus 1. Here *e* is the base of " -"natural logarithms. For small floats *x*, the subtraction in ``exp(x) - 1`` " -"can result in a `significant loss of precision `_\\; the :func:`expm1` function provides a way to " -"compute this quantity to full precision:" +msgid "Return *e* raised to the power *x*, minus 1. Here *e* is the base of natural logarithms. For small floats *x*, the subtraction in ``exp(x) - 1`` can result in a `significant loss of precision `_\\; the :func:`expm1` function provides a way to compute this quantity to full precision:" msgstr "" -#: ../../library/math.rst:484 msgid "With one argument, return the natural logarithm of *x* (to base *e*)." msgstr "" -#: ../../library/math.rst:486 -msgid "" -"With two arguments, return the logarithm of *x* to the given *base*, " -"calculated as ``log(x)/log(base)``." +msgid "With two arguments, return the logarithm of *x* to the given *base*, calculated as ``log(x)/log(base)``." msgstr "" -#: ../../library/math.rst:492 -msgid "" -"Return the natural logarithm of *1+x* (base *e*). The result is calculated " -"in a way which is accurate for *x* near zero." +msgid "Return the natural logarithm of *1+x* (base *e*). The result is calculated in a way which is accurate for *x* near zero." msgstr "" -#: ../../library/math.rst:498 -msgid "" -"Return the base-2 logarithm of *x*. This is usually more accurate than " -"``log(x, 2)``." +msgid "Return the base-2 logarithm of *x*. This is usually more accurate than ``log(x, 2)``." msgstr "" -#: ../../library/math.rst:505 -msgid "" -":meth:`int.bit_length` returns the number of bits necessary to represent an " -"integer in binary, excluding the sign and leading zeros." +msgid ":meth:`int.bit_length` returns the number of bits necessary to represent an integer in binary, excluding the sign and leading zeros." msgstr "" -#: ../../library/math.rst:511 -msgid "" -"Return the base-10 logarithm of *x*. This is usually more accurate than " -"``log(x, 10)``." +msgid "Return the base-10 logarithm of *x*. This is usually more accurate than ``log(x, 10)``." msgstr "" -#: ../../library/math.rst:517 -msgid "" -"Return *x* raised to the power *y*. Exceptional cases follow the IEEE 754 " -"standard as far as possible. In particular, ``pow(1.0, x)`` and ``pow(x, " -"0.0)`` always return ``1.0``, even when *x* is a zero or a NaN. If both *x* " -"and *y* are finite, *x* is negative, and *y* is not an integer then ``pow(x, " -"y)`` is undefined, and raises :exc:`ValueError`." +msgid "Return *x* raised to the power *y*. Exceptional cases follow the IEEE 754 standard as far as possible. In particular, ``pow(1.0, x)`` and ``pow(x, 0.0)`` always return ``1.0``, even when *x* is a zero or a NaN. If both *x* and *y* are finite, *x* is negative, and *y* is not an integer then ``pow(x, y)`` is undefined, and raises :exc:`ValueError`." msgstr "" -#: ../../library/math.rst:524 -msgid "" -"Unlike the built-in ``**`` operator, :func:`math.pow` converts both its " -"arguments to type :class:`float`. Use ``**`` or the built-in :func:`pow` " -"function for computing exact integer powers." +msgid "Unlike the built-in ``**`` operator, :func:`math.pow` converts both its arguments to type :class:`float`. Use ``**`` or the built-in :func:`pow` function for computing exact integer powers." msgstr "" -#: ../../library/math.rst:528 -msgid "" -"The special cases ``pow(0.0, -inf)`` and ``pow(-0.0, -inf)`` were changed to " -"return ``inf`` instead of raising :exc:`ValueError`, for consistency with " -"IEEE 754." +msgid "The special cases ``pow(0.0, -inf)`` and ``pow(-0.0, -inf)`` were changed to return ``inf`` instead of raising :exc:`ValueError`, for consistency with IEEE 754." msgstr "" -#: ../../library/math.rst:536 msgid "Return the square root of *x*." msgstr "" -#: ../../library/math.rst:540 msgid "Summation and product functions" msgstr "" -#: ../../library/math.rst:544 -msgid "" -"Return the Euclidean distance between two points *p* and *q*, each given as " -"a sequence (or iterable) of coordinates. The two points must have the same " -"dimension." +msgid "Return the Euclidean distance between two points *p* and *q*, each given as a sequence (or iterable) of coordinates. The two points must have the same dimension." msgstr "" -#: ../../library/math.rst:548 ../../library/math.rst:609 msgid "Roughly equivalent to::" msgstr "" -#: ../../library/math.rst:550 msgid "sqrt(sum((px - qx) ** 2.0 for px, qx in zip(p, q)))" msgstr "" -#: ../../library/math.rst:557 -msgid "" -"Return an accurate floating-point sum of values in the iterable. Avoids " -"loss of precision by tracking multiple intermediate partial sums." +msgid "Return an accurate floating-point sum of values in the iterable. Avoids loss of precision by tracking multiple intermediate partial sums." msgstr "" -#: ../../library/math.rst:560 -msgid "" -"The algorithm's accuracy depends on IEEE-754 arithmetic guarantees and the " -"typical case where the rounding mode is half-even. On some non-Windows " -"builds, the underlying C library uses extended precision addition and may " -"occasionally double-round an intermediate sum causing it to be off in its " -"least significant bit." +msgid "The algorithm's accuracy depends on IEEE-754 arithmetic guarantees and the typical case where the rounding mode is half-even. On some non-Windows builds, the underlying C library uses extended precision addition and may occasionally double-round an intermediate sum causing it to be off in its least significant bit." msgstr "" -#: ../../library/math.rst:566 -msgid "" -"For further discussion and two alternative approaches, see the `ASPN " -"cookbook recipes for accurate floating-point summation `_\\." +msgid "For further discussion and two alternative approaches, see the `ASPN cookbook recipes for accurate floating-point summation `_\\." msgstr "" -#: ../../library/math.rst:573 -msgid "" -"Return the Euclidean norm, ``sqrt(sum(x**2 for x in coordinates))``. This is " -"the length of the vector from the origin to the point given by the " -"coordinates." +msgid "Return the Euclidean norm, ``sqrt(sum(x**2 for x in coordinates))``. This is the length of the vector from the origin to the point given by the coordinates." msgstr "" -#: ../../library/math.rst:577 -msgid "" -"For a two dimensional point ``(x, y)``, this is equivalent to computing the " -"hypotenuse of a right triangle using the Pythagorean theorem, ``sqrt(x*x + " -"y*y)``." +msgid "For a two dimensional point ``(x, y)``, this is equivalent to computing the hypotenuse of a right triangle using the Pythagorean theorem, ``sqrt(x*x + y*y)``." msgstr "" -#: ../../library/math.rst:581 -msgid "" -"Added support for n-dimensional points. Formerly, only the two dimensional " -"case was supported." +msgid "Added support for n-dimensional points. Formerly, only the two dimensional case was supported." msgstr "" -#: ../../library/math.rst:585 -msgid "" -"Improved the algorithm's accuracy so that the maximum error is under 1 ulp " -"(unit in the last place). More typically, the result is almost always " -"correctly rounded to within 1/2 ulp." +msgid "Improved the algorithm's accuracy so that the maximum error is under 1 ulp (unit in the last place). More typically, the result is almost always correctly rounded to within 1/2 ulp." msgstr "" -#: ../../library/math.rst:593 -msgid "" -"Calculate the product of all the elements in the input *iterable*. The " -"default *start* value for the product is ``1``." +msgid "Calculate the product of all the elements in the input *iterable*. The default *start* value for the product is ``1``." msgstr "" -#: ../../library/math.rst:596 -msgid "" -"When the iterable is empty, return the start value. This function is " -"intended specifically for use with numeric values and may reject non-numeric " -"types." +msgid "When the iterable is empty, return the start value. This function is intended specifically for use with numeric values and may reject non-numeric types." msgstr "" -#: ../../library/math.rst:605 msgid "Return the sum of products of values from two iterables *p* and *q*." msgstr "" -#: ../../library/math.rst:607 msgid "Raises :exc:`ValueError` if the inputs do not have the same length." msgstr "" -#: ../../library/math.rst:611 msgid "sum(map(operator.mul, p, q, strict=True))" msgstr "" -#: ../../library/math.rst:613 -msgid "" -"For float and mixed int/float inputs, the intermediate products and sums are " -"computed with extended precision." +msgid "For float and mixed int/float inputs, the intermediate products and sums are computed with extended precision." msgstr "" -#: ../../library/math.rst:620 msgid "Angular conversion" msgstr "" -#: ../../library/math.rst:624 msgid "Convert angle *x* from radians to degrees." msgstr "" -#: ../../library/math.rst:629 msgid "Convert angle *x* from degrees to radians." msgstr "" -#: ../../library/math.rst:633 msgid "Trigonometric functions" msgstr "" -#: ../../library/math.rst:637 -msgid "" -"Return the arc cosine of *x*, in radians. The result is between ``0`` and " -"``pi``." +msgid "Return the arc cosine of *x*, in radians. The result is between ``0`` and ``pi``." msgstr "" -#: ../../library/math.rst:643 -msgid "" -"Return the arc sine of *x*, in radians. The result is between ``-pi/2`` and " -"``pi/2``." +msgid "Return the arc sine of *x*, in radians. The result is between ``-pi/2`` and ``pi/2``." msgstr "" -#: ../../library/math.rst:649 -msgid "" -"Return the arc tangent of *x*, in radians. The result is between ``-pi/2`` " -"and ``pi/2``." +msgid "Return the arc tangent of *x*, in radians. The result is between ``-pi/2`` and ``pi/2``." msgstr "" -#: ../../library/math.rst:655 -msgid "" -"Return ``atan(y / x)``, in radians. The result is between ``-pi`` and " -"``pi``. The vector in the plane from the origin to point ``(x, y)`` makes " -"this angle with the positive X axis. The point of :func:`atan2` is that the " -"signs of both inputs are known to it, so it can compute the correct quadrant " -"for the angle. For example, ``atan(1)`` and ``atan2(1, 1)`` are both ``pi/" -"4``, but ``atan2(-1, -1)`` is ``-3*pi/4``." +msgid "Return ``atan(y / x)``, in radians. The result is between ``-pi`` and ``pi``. The vector in the plane from the origin to point ``(x, y)`` makes this angle with the positive X axis. The point of :func:`atan2` is that the signs of both inputs are known to it, so it can compute the correct quadrant for the angle. For example, ``atan(1)`` and ``atan2(1, 1)`` are both ``pi/4``, but ``atan2(-1, -1)`` is ``-3*pi/4``." msgstr "" -#: ../../library/math.rst:665 msgid "Return the cosine of *x* radians." msgstr "" -#: ../../library/math.rst:670 msgid "Return the sine of *x* radians." msgstr "" -#: ../../library/math.rst:675 msgid "Return the tangent of *x* radians." msgstr "" -#: ../../library/math.rst:679 msgid "Hyperbolic functions" msgstr "" -#: ../../library/math.rst:681 -msgid "" -"`Hyperbolic functions `_ " -"are analogs of trigonometric functions that are based on hyperbolas instead " -"of circles." +msgid "`Hyperbolic functions `_ are analogs of trigonometric functions that are based on hyperbolas instead of circles." msgstr "" -#: ../../library/math.rst:687 msgid "Return the inverse hyperbolic cosine of *x*." msgstr "" -#: ../../library/math.rst:692 msgid "Return the inverse hyperbolic sine of *x*." msgstr "" -#: ../../library/math.rst:697 msgid "Return the inverse hyperbolic tangent of *x*." msgstr "" -#: ../../library/math.rst:702 msgid "Return the hyperbolic cosine of *x*." msgstr "" -#: ../../library/math.rst:707 msgid "Return the hyperbolic sine of *x*." msgstr "" -#: ../../library/math.rst:712 msgid "Return the hyperbolic tangent of *x*." msgstr "" -#: ../../library/math.rst:716 msgid "Special functions" msgstr "" -#: ../../library/math.rst:720 -msgid "" -"Return the `error function `_ " -"at *x*." +msgid "Return the `error function `_ at *x*." msgstr "" -#: ../../library/math.rst:723 -msgid "" -"The :func:`erf` function can be used to compute traditional statistical " -"functions such as the `cumulative standard normal distribution `_::" +msgid "The :func:`erf` function can be used to compute traditional statistical functions such as the `cumulative standard normal distribution `_::" msgstr "" -#: ../../library/math.rst:727 msgid "" "def phi(x):\n" " 'Cumulative distribution function for the standard normal distribution'\n" " return (1.0 + erf(x / sqrt(2.0))) / 2.0" msgstr "" -#: ../../library/math.rst:736 -msgid "" -"Return the complementary error function at *x*. The `complementary error " -"function `_ is defined as " -"``1.0 - erf(x)``. It is used for large values of *x* where a subtraction " -"from one would cause a `loss of significance `_\\." +msgid "Return the complementary error function at *x*. The `complementary error function `_ is defined as ``1.0 - erf(x)``. It is used for large values of *x* where a subtraction from one would cause a `loss of significance `_\\." msgstr "" -#: ../../library/math.rst:747 -msgid "" -"Return the `Gamma function `_ " -"at *x*." +msgid "Return the `Gamma function `_ at *x*." msgstr "" -#: ../../library/math.rst:755 -msgid "" -"Return the natural logarithm of the absolute value of the Gamma function at " -"*x*." +msgid "Return the natural logarithm of the absolute value of the Gamma function at *x*." msgstr "" -#: ../../library/math.rst:762 msgid "Constants" msgstr "" -#: ../../library/math.rst:766 msgid "The mathematical constant *π* = 3.141592..., to available precision." msgstr "" -#: ../../library/math.rst:771 msgid "The mathematical constant *e* = 2.718281..., to available precision." msgstr "" -#: ../../library/math.rst:776 -msgid "" -"The mathematical constant *τ* = 6.283185..., to available precision. Tau is " -"a circle constant equal to 2\\ *π*, the ratio of a circle's circumference to " -"its radius. To learn more about Tau, check out Vi Hart's video `Pi is " -"(still) Wrong `_, and start celebrating `Tau " -"day `_ by eating twice as much pie!" +msgid "The mathematical constant *τ* = 6.283185..., to available precision. Tau is a circle constant equal to 2\\ *π*, the ratio of a circle's circumference to its radius. To learn more about Tau, check out Vi Hart's video `Pi is (still) Wrong `_, and start celebrating `Tau day `_ by eating twice as much pie!" msgstr "" -#: ../../library/math.rst:787 -msgid "" -"A floating-point positive infinity. (For negative infinity, use ``-" -"math.inf``.) Equivalent to the output of ``float('inf')``." +msgid "A floating-point positive infinity. (For negative infinity, use ``-math.inf``.) Equivalent to the output of ``float('inf')``." msgstr "" -#: ../../library/math.rst:795 -msgid "" -"A floating-point \"not a number\" (NaN) value. Equivalent to the output of " -"``float('nan')``. Due to the requirements of the `IEEE-754 standard `_, ``math.nan`` and ``float('nan')`` are not " -"considered to equal to any other numeric value, including themselves. To " -"check whether a number is a NaN, use the :func:`isnan` function to test for " -"NaNs instead of ``is`` or ``==``. Example:" +msgid "A floating-point \"not a number\" (NaN) value. Equivalent to the output of ``float('nan')``. Due to the requirements of the `IEEE-754 standard `_, ``math.nan`` and ``float('nan')`` are not considered to equal to any other numeric value, including themselves. To check whether a number is a NaN, use the :func:`isnan` function to test for NaNs instead of ``is`` or ``==``. Example:" msgstr "" -#: ../../library/math.rst:815 msgid "It is now always available." msgstr "" -#: ../../library/math.rst:821 -msgid "" -"The :mod:`!math` module consists mostly of thin wrappers around the platform " -"C math library functions. Behavior in exceptional cases follows Annex F of " -"the C99 standard where appropriate. The current implementation will " -"raise :exc:`ValueError` for invalid operations like ``sqrt(-1.0)`` or " -"``log(0.0)`` (where C99 Annex F recommends signaling invalid operation or " -"divide-by-zero), and :exc:`OverflowError` for results that overflow (for " -"example, ``exp(1000.0)``). A NaN will not be returned from any of the " -"functions above unless one or more of the input arguments was a NaN; in that " -"case, most functions will return a NaN, but (again following C99 Annex F) " -"there are some exceptions to this rule, for example ``pow(float('nan'), " -"0.0)`` or ``hypot(float('nan'), float('inf'))``." -msgstr "" - -#: ../../library/math.rst:833 -msgid "" -"Note that Python makes no effort to distinguish signaling NaNs from quiet " -"NaNs, and behavior for signaling NaNs remains unspecified. Typical behavior " -"is to treat all NaNs as though they were quiet." +msgid "The :mod:`!math` module consists mostly of thin wrappers around the platform C math library functions. Behavior in exceptional cases follows Annex F of the C99 standard where appropriate. The current implementation will raise :exc:`ValueError` for invalid operations like ``sqrt(-1.0)`` or ``log(0.0)`` (where C99 Annex F recommends signaling invalid operation or divide-by-zero), and :exc:`OverflowError` for results that overflow (for example, ``exp(1000.0)``). A NaN will not be returned from any of the functions above unless one or more of the input arguments was a NaN; in that case, most functions will return a NaN, but (again following C99 Annex F) there are some exceptions to this rule, for example ``pow(float('nan'), 0.0)`` or ``hypot(float('nan'), float('inf'))``." +msgstr "" + +msgid "Note that Python makes no effort to distinguish signaling NaNs from quiet NaNs, and behavior for signaling NaNs remains unspecified. Typical behavior is to treat all NaNs as though they were quiet." msgstr "" -#: ../../library/math.rst:840 msgid "Module :mod:`cmath`" msgstr "" -#: ../../library/math.rst:841 msgid "Complex number versions of many of these functions." msgstr "" diff --git a/library/mimetypes.po b/library/mimetypes.po index ef122089..e6dbaf59 100644 --- a/library/mimetypes.po +++ b/library/mimetypes.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:09+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,211 +23,96 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/mimetypes.rst:2 msgid ":mod:`!mimetypes` --- Map filenames to MIME types" msgstr "" -#: ../../library/mimetypes.rst:9 msgid "**Source code:** :source:`Lib/mimetypes.py`" msgstr "" -#: ../../library/mimetypes.rst:15 -msgid "" -"The :mod:`!mimetypes` module converts between a filename or URL and the MIME " -"type associated with the filename extension. Conversions are provided from " -"filename to MIME type and from MIME type to filename extension; encodings " -"are not supported for the latter conversion." +msgid "The :mod:`!mimetypes` module converts between a filename or URL and the MIME type associated with the filename extension. Conversions are provided from filename to MIME type and from MIME type to filename extension; encodings are not supported for the latter conversion." msgstr "" -#: ../../library/mimetypes.rst:20 -msgid "" -"The module provides one class and a number of convenience functions. The " -"functions are the normal interface to this module, but some applications may " -"be interested in the class as well." +msgid "The module provides one class and a number of convenience functions. The functions are the normal interface to this module, but some applications may be interested in the class as well." msgstr "" -#: ../../library/mimetypes.rst:24 -msgid "" -"The functions described below provide the primary interface for this " -"module. If the module has not been initialized, they will call :func:`init` " -"if they rely on the information :func:`init` sets up." +msgid "The functions described below provide the primary interface for this module. If the module has not been initialized, they will call :func:`init` if they rely on the information :func:`init` sets up." msgstr "" -#: ../../library/mimetypes.rst:33 -msgid "" -"Guess the type of a file based on its filename, path or URL, given by *url*. " -"URL can be a string or a :term:`path-like object`." +msgid "Guess the type of a file based on its filename, path or URL, given by *url*. URL can be a string or a :term:`path-like object`." msgstr "" -#: ../../library/mimetypes.rst:36 -msgid "" -"The return value is a tuple ``(type, encoding)`` where *type* is ``None`` if " -"the type can't be guessed (missing or unknown suffix) or a string of the " -"form ``'type/subtype'``, usable for a MIME :mailheader:`content-type` header." +msgid "The return value is a tuple ``(type, encoding)`` where *type* is ``None`` if the type can't be guessed (missing or unknown suffix) or a string of the form ``'type/subtype'``, usable for a MIME :mailheader:`content-type` header." msgstr "" -#: ../../library/mimetypes.rst:40 -msgid "" -"*encoding* is ``None`` for no encoding or the name of the program used to " -"encode (e.g. :program:`compress` or :program:`gzip`). The encoding is " -"suitable for use as a :mailheader:`Content-Encoding` header, **not** as " -"a :mailheader:`Content-Transfer-Encoding` header. The mappings are table " -"driven. Encoding suffixes are case sensitive; type suffixes are first tried " -"case sensitively, then case insensitively." +msgid "*encoding* is ``None`` for no encoding or the name of the program used to encode (e.g. :program:`compress` or :program:`gzip`). The encoding is suitable for use as a :mailheader:`Content-Encoding` header, **not** as a :mailheader:`Content-Transfer-Encoding` header. The mappings are table driven. Encoding suffixes are case sensitive; type suffixes are first tried case sensitively, then case insensitively." +msgstr "" + +msgid "The optional *strict* argument is a flag specifying whether the list of known MIME types is limited to only the official types `registered with IANA `_. However, the behavior of this module also depends on the underlying operating system. Only file types recognized by the OS or explicitly registered with Python's internal database can be identified. When *strict* is ``True`` (the default), only the IANA types are supported; when *strict* is ``False``, some additional non-standard but commonly used MIME types are also recognized." msgstr "" -#: ../../library/mimetypes.rst:47 -msgid "" -"The optional *strict* argument is a flag specifying whether the list of " -"known MIME types is limited to only the official types `registered with IANA " -"`_. However, " -"the behavior of this module also depends on the underlying operating system. " -"Only file types recognized by the OS or explicitly registered with Python's " -"internal database can be identified. When *strict* is ``True`` (the " -"default), only the IANA types are supported; when *strict* is ``False``, " -"some additional non-standard but commonly used MIME types are also " -"recognized." -msgstr "" - -#: ../../library/mimetypes.rst:56 msgid "Added support for *url* being a :term:`path-like object`." msgstr "" -#: ../../library/mimetypes.rst:59 -msgid "" -"Passing a file path instead of URL. Use :func:`guess_file_type` for this." +msgid "Passing a file path instead of URL. Use :func:`guess_file_type` for this." msgstr "" -#: ../../library/mimetypes.rst:68 -msgid "" -"Guess the type of a file based on its path, given by *path*. Similar to " -"the :func:`guess_type` function, but accepts a path instead of URL. Path can " -"be a string, a bytes object or a :term:`path-like object`." +msgid "Guess the type of a file based on its path, given by *path*. Similar to the :func:`guess_type` function, but accepts a path instead of URL. Path can be a string, a bytes object or a :term:`path-like object`." msgstr "" -#: ../../library/mimetypes.rst:77 -msgid "" -"Guess the extensions for a file based on its MIME type, given by *type*. The " -"return value is a list of strings giving all possible filename extensions, " -"including the leading dot (``'.'``). The extensions are not guaranteed to " -"have been associated with any particular data stream, but would be mapped to " -"the MIME type *type* by :func:`guess_type` and :func:`guess_file_type`." +msgid "Guess the extensions for a file based on its MIME type, given by *type*. The return value is a list of strings giving all possible filename extensions, including the leading dot (``'.'``). The extensions are not guaranteed to have been associated with any particular data stream, but would be mapped to the MIME type *type* by :func:`guess_type` and :func:`guess_file_type`." msgstr "" -#: ../../library/mimetypes.rst:83 ../../library/mimetypes.rst:95 -msgid "" -"The optional *strict* argument has the same meaning as with " -"the :func:`guess_type` function." +msgid "The optional *strict* argument has the same meaning as with the :func:`guess_type` function." msgstr "" -#: ../../library/mimetypes.rst:88 -msgid "" -"Guess the extension for a file based on its MIME type, given by *type*. The " -"return value is a string giving a filename extension, including the leading " -"dot (``'.'``). The extension is not guaranteed to have been associated with " -"any particular data stream, but would be mapped to the MIME type *type* " -"by :func:`guess_type` and :func:`guess_file_type`. If no extension can be " -"guessed for *type*, ``None`` is returned." +msgid "Guess the extension for a file based on its MIME type, given by *type*. The return value is a string giving a filename extension, including the leading dot (``'.'``). The extension is not guaranteed to have been associated with any particular data stream, but would be mapped to the MIME type *type* by :func:`guess_type` and :func:`guess_file_type`. If no extension can be guessed for *type*, ``None`` is returned." msgstr "" -#: ../../library/mimetypes.rst:97 -msgid "" -"Some additional functions and data items are available for controlling the " -"behavior of the module." +msgid "Some additional functions and data items are available for controlling the behavior of the module." msgstr "" -#: ../../library/mimetypes.rst:103 -msgid "" -"Initialize the internal data structures. If given, *files* must be a " -"sequence of file names which should be used to augment the default type " -"map. If omitted, the file names to use are taken from :const:`knownfiles`; " -"on Windows, the current registry settings are loaded. Each file named in " -"*files* or :const:`knownfiles` takes precedence over those named before it. " -"Calling :func:`init` repeatedly is allowed." +msgid "Initialize the internal data structures. If given, *files* must be a sequence of file names which should be used to augment the default type map. If omitted, the file names to use are taken from :const:`knownfiles`; on Windows, the current registry settings are loaded. Each file named in *files* or :const:`knownfiles` takes precedence over those named before it. Calling :func:`init` repeatedly is allowed." msgstr "" -#: ../../library/mimetypes.rst:110 -msgid "" -"Specifying an empty list for *files* will prevent the system defaults from " -"being applied: only the well-known values will be present from a built-in " -"list." +msgid "Specifying an empty list for *files* will prevent the system defaults from being applied: only the well-known values will be present from a built-in list." msgstr "" -#: ../../library/mimetypes.rst:113 -msgid "" -"If *files* is ``None`` the internal data structure is completely rebuilt to " -"its initial default value. This is a stable operation and will produce the " -"same results when called multiple times." +msgid "If *files* is ``None`` the internal data structure is completely rebuilt to its initial default value. This is a stable operation and will produce the same results when called multiple times." msgstr "" -#: ../../library/mimetypes.rst:117 msgid "Previously, Windows registry settings were ignored." msgstr "" -#: ../../library/mimetypes.rst:123 -msgid "" -"Load the type map given in the file named by *file*, if it exists. *file* " -"must be a string specifying the name of the file to read. The type map is " -"returned as a dictionary mapping file extensions, including the leading dot " -"(``'.'``), to strings of the form ``'type/subtype'``. If the file does not " -"exist or cannot be read, ``None`` is returned." +msgid "Load the type map given in the file named by *file*, if it exists. *file* must be a string specifying the name of the file to read. The type map is returned as a dictionary mapping file extensions, including the leading dot (``'.'``), to strings of the form ``'type/subtype'``. If the file does not exist or cannot be read, ``None`` is returned." msgstr "" -#: ../../library/mimetypes.rst:132 -msgid "" -"Add a mapping from the MIME type *type* to the extension *ext*. When the " -"extension is already known, the new type will replace the old one. When the " -"type is already known the extension will be added to the list of known " -"extensions." +msgid "Add a mapping from the MIME type *type* to the extension *ext*. When the extension is already known, the new type will replace the old one. When the type is already known the extension will be added to the list of known extensions." msgstr "" -#: ../../library/mimetypes.rst:136 ../../library/mimetypes.rst:310 -msgid "" -"When *strict* is ``True`` (the default), the mapping will be added to the " -"official MIME types, otherwise to the non-standard ones." +msgid "When *strict* is ``True`` (the default), the mapping will be added to the official MIME types, otherwise to the non-standard ones." msgstr "" -#: ../../library/mimetypes.rst:142 -msgid "" -"Flag indicating whether or not the global data structures have been " -"initialized. This is set to ``True`` by :func:`init`." +msgid "Flag indicating whether or not the global data structures have been initialized. This is set to ``True`` by :func:`init`." msgstr "" -#: ../../library/mimetypes.rst:150 -msgid "" -"List of type map file names commonly installed. These files are typically " -"named :file:`mime.types` and are installed in different locations by " -"different packages." +msgid "List of type map file names commonly installed. These files are typically named :file:`mime.types` and are installed in different locations by different packages." msgstr "" -#: ../../library/mimetypes.rst:157 -msgid "" -"Dictionary mapping suffixes to suffixes. This is used to allow recognition " -"of encoded files for which the encoding and the type are indicated by the " -"same extension. For example, the :file:`.tgz` extension is mapped " -"to :file:`.tar.gz` to allow the encoding and type to be recognized " -"separately." +msgid "Dictionary mapping suffixes to suffixes. This is used to allow recognition of encoded files for which the encoding and the type are indicated by the same extension. For example, the :file:`.tgz` extension is mapped to :file:`.tar.gz` to allow the encoding and type to be recognized separately." msgstr "" -#: ../../library/mimetypes.rst:165 msgid "Dictionary mapping filename extensions to encoding types." msgstr "" -#: ../../library/mimetypes.rst:170 msgid "Dictionary mapping filename extensions to MIME types." msgstr "" -#: ../../library/mimetypes.rst:175 -msgid "" -"Dictionary mapping filename extensions to non-standard, but commonly found " -"MIME types." +msgid "Dictionary mapping filename extensions to non-standard, but commonly found MIME types." msgstr "" -#: ../../library/mimetypes.rst:179 msgid "An example usage of the module::" msgstr "" -#: ../../library/mimetypes.rst:181 msgid "" ">>> import mimetypes\n" ">>> mimetypes.init()\n" @@ -241,189 +126,99 @@ msgid "" "'application/x-tar-gz'" msgstr "" -#: ../../library/mimetypes.rst:196 msgid "MimeTypes objects" msgstr "" -#: ../../library/mimetypes.rst:198 -msgid "" -"The :class:`MimeTypes` class may be useful for applications which may want " -"more than one MIME-type database; it provides an interface similar to the " -"one of the :mod:`!mimetypes` module." +msgid "The :class:`MimeTypes` class may be useful for applications which may want more than one MIME-type database; it provides an interface similar to the one of the :mod:`!mimetypes` module." msgstr "" -#: ../../library/mimetypes.rst:205 -msgid "" -"This class represents a MIME-types database. By default, it provides access " -"to the same database as the rest of this module. The initial database is a " -"copy of that provided by the module, and may be extended by loading " -"additional :file:`mime.types`\\ -style files into the database using " -"the :meth:`read` or :meth:`readfp` methods. The mapping dictionaries may " -"also be cleared before loading additional data if the default data is not " -"desired." +msgid "This class represents a MIME-types database. By default, it provides access to the same database as the rest of this module. The initial database is a copy of that provided by the module, and may be extended by loading additional :file:`mime.types`\\ -style files into the database using the :meth:`read` or :meth:`readfp` methods. The mapping dictionaries may also be cleared before loading additional data if the default data is not desired." msgstr "" -#: ../../library/mimetypes.rst:212 -msgid "" -"The optional *filenames* parameter can be used to cause additional files to " -"be loaded \"on top\" of the default database." +msgid "The optional *filenames* parameter can be used to cause additional files to be loaded \"on top\" of the default database." msgstr "" -#: ../../library/mimetypes.rst:218 -msgid "" -"Dictionary mapping suffixes to suffixes. This is used to allow recognition " -"of encoded files for which the encoding and the type are indicated by the " -"same extension. For example, the :file:`.tgz` extension is mapped " -"to :file:`.tar.gz` to allow the encoding and type to be recognized " -"separately. This is initially a copy of the global :data:`suffix_map` " -"defined in the module." +msgid "Dictionary mapping suffixes to suffixes. This is used to allow recognition of encoded files for which the encoding and the type are indicated by the same extension. For example, the :file:`.tgz` extension is mapped to :file:`.tar.gz` to allow the encoding and type to be recognized separately. This is initially a copy of the global :data:`suffix_map` defined in the module." msgstr "" -#: ../../library/mimetypes.rst:227 -msgid "" -"Dictionary mapping filename extensions to encoding types. This is initially " -"a copy of the global :data:`encodings_map` defined in the module." +msgid "Dictionary mapping filename extensions to encoding types. This is initially a copy of the global :data:`encodings_map` defined in the module." msgstr "" -#: ../../library/mimetypes.rst:233 -msgid "" -"Tuple containing two dictionaries, mapping filename extensions to MIME " -"types: the first dictionary is for the non-standards types and the second " -"one is for the standard types. They are initialized by :data:`common_types` " -"and :data:`types_map`." +msgid "Tuple containing two dictionaries, mapping filename extensions to MIME types: the first dictionary is for the non-standards types and the second one is for the standard types. They are initialized by :data:`common_types` and :data:`types_map`." msgstr "" -#: ../../library/mimetypes.rst:241 -msgid "" -"Tuple containing two dictionaries, mapping MIME types to a list of filename " -"extensions: the first dictionary is for the non-standards types and the " -"second one is for the standard types. They are initialized " -"by :data:`common_types` and :data:`types_map`." +msgid "Tuple containing two dictionaries, mapping MIME types to a list of filename extensions: the first dictionary is for the non-standards types and the second one is for the standard types. They are initialized by :data:`common_types` and :data:`types_map`." msgstr "" -#: ../../library/mimetypes.rst:249 -msgid "" -"Similar to the :func:`guess_extension` function, using the tables stored as " -"part of the object." +msgid "Similar to the :func:`guess_extension` function, using the tables stored as part of the object." msgstr "" -#: ../../library/mimetypes.rst:255 -msgid "" -"Similar to the :func:`guess_type` function, using the tables stored as part " -"of the object." +msgid "Similar to the :func:`guess_type` function, using the tables stored as part of the object." msgstr "" -#: ../../library/mimetypes.rst:261 -msgid "" -"Similar to the :func:`guess_file_type` function, using the tables stored as " -"part of the object." +msgid "Similar to the :func:`guess_file_type` function, using the tables stored as part of the object." msgstr "" -#: ../../library/mimetypes.rst:269 -msgid "" -"Similar to the :func:`guess_all_extensions` function, using the tables " -"stored as part of the object." +msgid "Similar to the :func:`guess_all_extensions` function, using the tables stored as part of the object." msgstr "" -#: ../../library/mimetypes.rst:275 -msgid "" -"Load MIME information from a file named *filename*. This " -"uses :meth:`readfp` to parse the file." +msgid "Load MIME information from a file named *filename*. This uses :meth:`readfp` to parse the file." msgstr "" -#: ../../library/mimetypes.rst:278 -msgid "" -"If *strict* is ``True``, information will be added to list of standard " -"types, else to the list of non-standard types." +msgid "If *strict* is ``True``, information will be added to list of standard types, else to the list of non-standard types." msgstr "" -#: ../../library/mimetypes.rst:284 -msgid "" -"Load MIME type information from an open file *fp*. The file must have the " -"format of the standard :file:`mime.types` files." +msgid "Load MIME type information from an open file *fp*. The file must have the format of the standard :file:`mime.types` files." msgstr "" -#: ../../library/mimetypes.rst:287 ../../library/mimetypes.rst:297 -msgid "" -"If *strict* is ``True``, information will be added to the list of standard " -"types, else to the list of non-standard types." +msgid "If *strict* is ``True``, information will be added to the list of standard types, else to the list of non-standard types." msgstr "" -#: ../../library/mimetypes.rst:293 msgid "Load MIME type information from the Windows registry." msgstr "" -#: ../../library/mimetypes.rst:295 msgid "Availability" msgstr "" -#: ../../library/mimetypes.rst:305 -msgid "" -"Add a mapping from the MIME type *type* to the extension *ext*. Valid " -"extensions start with a '.' or are empty. When the extension is already " -"known, the new type will replace the old one. When the type is already known " -"the extension will be added to the list of known extensions." +msgid "Add a mapping from the MIME type *type* to the extension *ext*. Valid extensions start with a '.' or are empty. When the extension is already known, the new type will replace the old one. When the type is already known the extension will be added to the list of known extensions." msgstr "" -#: ../../library/mimetypes.rst:313 -msgid "" -"Invalid, undotted extensions will raise a :exc:`ValueError` in Python 3.16." +msgid "Invalid, undotted extensions will raise a :exc:`ValueError` in Python 3.16." msgstr "" -#: ../../library/mimetypes.rst:321 msgid "Command-line usage" msgstr "" -#: ../../library/mimetypes.rst:323 -msgid "" -"The :mod:`!mimetypes` module can be executed as a script from the command " -"line." +msgid "The :mod:`!mimetypes` module can be executed as a script from the command line." msgstr "" -#: ../../library/mimetypes.rst:325 msgid "python -m mimetypes [-h] [-e] [-l] type [type ...]" msgstr "" -#: ../../library/mimetypes.rst:329 msgid "The following options are accepted:" msgstr "" -#: ../../library/mimetypes.rst:336 msgid "Show the help message and exit." msgstr "" -#: ../../library/mimetypes.rst:341 msgid "Guess extension instead of type." msgstr "" -#: ../../library/mimetypes.rst:346 msgid "Additionally search for some common, but non-standard types." msgstr "" -#: ../../library/mimetypes.rst:348 -msgid "" -"By default the script converts MIME types to file extensions. However, if " -"``--extension`` is specified, it converts file extensions to MIME types." +msgid "By default the script converts MIME types to file extensions. However, if ``--extension`` is specified, it converts file extensions to MIME types." msgstr "" -#: ../../library/mimetypes.rst:352 -msgid "" -"For each ``type`` entry, the script writes a line into the standard output " -"stream. If an unknown type occurs, it writes an error message into the " -"standard output stream and exits with the return code ``1``." +msgid "For each ``type`` entry, the script writes a line into the standard output stream. If an unknown type occurs, it writes an error message into the standard output stream and exits with the return code ``1``." msgstr "" -#: ../../library/mimetypes.rst:360 msgid "Command-line example" msgstr "" -#: ../../library/mimetypes.rst:362 -msgid "" -"Here are some examples of typical usage of the :mod:`!mimetypes` command-" -"line interface:" +msgid "Here are some examples of typical usage of the :mod:`!mimetypes` command-line interface:" msgstr "" -#: ../../library/mimetypes.rst:365 msgid "" "$ # get a MIME type by a file name\n" "$ python -m mimetypes filename.png\n" @@ -465,30 +260,23 @@ msgid "" "type: text/plain encoding: None\n" "\n" "$ # try to feed an unknown MIME type\n" -"$ python -m mimetypes --extension audio/aac audio/opus audio/future audio/x-" -"wav\n" +"$ python -m mimetypes --extension audio/aac audio/opus audio/future audio/x-wav\n" ".aac\n" ".opus\n" "error: unknown type audio/future" msgstr "" -#: ../../library/mimetypes.rst:11 ../../library/mimetypes.rst:31 -#: ../../library/mimetypes.rst:66 msgid "MIME" msgstr "" -#: ../../library/mimetypes.rst:11 msgid "content type" msgstr "" -#: ../../library/mimetypes.rst:31 ../../library/mimetypes.rst:66 msgid "headers" msgstr "" -#: ../../library/mimetypes.rst:148 msgid "file" msgstr "" -#: ../../library/mimetypes.rst:148 msgid "mime.types" msgstr "" diff --git a/library/mm.po b/library/mm.po index df667f1b..319f8eda 100644 --- a/library/mm.po +++ b/library/mm.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:09+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,13 +21,8 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/mm.rst:5 msgid "Multimedia Services" msgstr "" -#: ../../library/mm.rst:7 -msgid "" -"The modules described in this chapter implement various algorithms or " -"interfaces that are mainly useful for multimedia applications. They are " -"available at the discretion of the installation. Here's an overview:" +msgid "The modules described in this chapter implement various algorithms or interfaces that are mainly useful for multimedia applications. They are available at the discretion of the installation. Here's an overview:" msgstr "" diff --git a/library/mmap.po b/library/mmap.po index 7dbf3514..f9dbc9c1 100644 --- a/library/mmap.po +++ b/library/mmap.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:09+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,180 +23,72 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/mmap.rst:2 msgid ":mod:`!mmap` --- Memory-mapped file support" msgstr "" -#: ../../includes/wasm-notavail.rst:3 msgid "Availability" msgstr "" -#: ../../includes/wasm-notavail.rst:5 -msgid "" -"This module does not work or is not available on WebAssembly. See :ref:`wasm-" -"availability` for more information." +msgid "This module does not work or is not available on WebAssembly. See :ref:`wasm-availability` for more information." msgstr "" -#: ../../library/mmap.rst:11 -msgid "" -"Memory-mapped file objects behave like both :class:`bytearray` and " -"like :term:`file objects `. You can use mmap objects in most " -"places where :class:`bytearray` are expected; for example, you can use " -"the :mod:`re` module to search through a memory-mapped file. You can also " -"change a single byte by doing ``obj[index] = 97``, or change a subsequence " -"by assigning to a slice: ``obj[i1:i2] = b'...'``. You can also read and " -"write data starting at the current file position, and :meth:`seek` through " -"the file to different positions." +msgid "Memory-mapped file objects behave like both :class:`bytearray` and like :term:`file objects `. You can use mmap objects in most places where :class:`bytearray` are expected; for example, you can use the :mod:`re` module to search through a memory-mapped file. You can also change a single byte by doing ``obj[index] = 97``, or change a subsequence by assigning to a slice: ``obj[i1:i2] = b'...'``. You can also read and write data starting at the current file position, and :meth:`seek` through the file to different positions." msgstr "" -#: ../../library/mmap.rst:19 -msgid "" -"A memory-mapped file is created by the :class:`~mmap.mmap` constructor, " -"which is different on Unix and on Windows. In either case you must provide " -"a file descriptor for a file opened for update. If you wish to map an " -"existing Python file object, use its :meth:`~io.IOBase.fileno` method to " -"obtain the correct value for the *fileno* parameter. Otherwise, you can " -"open the file using the :func:`os.open` function, which returns a file " -"descriptor directly (the file still needs to be closed when done)." +msgid "A memory-mapped file is created by the :class:`~mmap.mmap` constructor, which is different on Unix and on Windows. In either case you must provide a file descriptor for a file opened for update. If you wish to map an existing Python file object, use its :meth:`~io.IOBase.fileno` method to obtain the correct value for the *fileno* parameter. Otherwise, you can open the file using the :func:`os.open` function, which returns a file descriptor directly (the file still needs to be closed when done)." msgstr "" -#: ../../library/mmap.rst:28 -msgid "" -"If you want to create a memory-mapping for a writable, buffered file, you " -"should :func:`~io.IOBase.flush` the file first. This is necessary to ensure " -"that local modifications to the buffers are actually available to the " -"mapping." +msgid "If you want to create a memory-mapping for a writable, buffered file, you should :func:`~io.IOBase.flush` the file first. This is necessary to ensure that local modifications to the buffers are actually available to the mapping." +msgstr "" + +msgid "For both the Unix and Windows versions of the constructor, *access* may be specified as an optional keyword parameter. *access* accepts one of four values: :const:`ACCESS_READ`, :const:`ACCESS_WRITE`, or :const:`ACCESS_COPY` to specify read-only, write-through or copy-on-write memory respectively, or :const:`ACCESS_DEFAULT` to defer to *prot*. *access* can be used on both Unix and Windows. If *access* is not specified, Windows mmap returns a write-through mapping. The initial memory values for all three access types are taken from the specified file. Assignment to an :const:`ACCESS_READ` memory map raises a :exc:`TypeError` exception. Assignment to an :const:`ACCESS_WRITE` memory map affects both memory and the underlying file. Assignment to an :const:`ACCESS_COPY` memory map affects memory but does not update the underlying file." msgstr "" -#: ../../library/mmap.rst:33 -msgid "" -"For both the Unix and Windows versions of the constructor, *access* may be " -"specified as an optional keyword parameter. *access* accepts one of four " -"values: :const:`ACCESS_READ`, :const:`ACCESS_WRITE`, or :const:`ACCESS_COPY` " -"to specify read-only, write-through or copy-on-write memory respectively, " -"or :const:`ACCESS_DEFAULT` to defer to *prot*. *access* can be used on both " -"Unix and Windows. If *access* is not specified, Windows mmap returns a " -"write-through mapping. The initial memory values for all three access types " -"are taken from the specified file. Assignment to an :const:`ACCESS_READ` " -"memory map raises a :exc:`TypeError` exception. Assignment to " -"an :const:`ACCESS_WRITE` memory map affects both memory and the underlying " -"file. Assignment to an :const:`ACCESS_COPY` memory map affects memory but " -"does not update the underlying file." -msgstr "" - -#: ../../library/mmap.rst:46 msgid "Added :const:`ACCESS_DEFAULT` constant." msgstr "" -#: ../../library/mmap.rst:49 -msgid "" -"To map anonymous memory, -1 should be passed as the fileno along with the " -"length." +msgid "To map anonymous memory, -1 should be passed as the fileno along with the length." msgstr "" -#: ../../library/mmap.rst:53 -msgid "" -"**(Windows version)** Maps *length* bytes from the file specified by the " -"file handle *fileno*, and creates a mmap object. If *length* is larger than " -"the current size of the file, the file is extended to contain *length* " -"bytes. If *length* is ``0``, the maximum length of the map is the current " -"size of the file, except that if the file is empty Windows raises an " -"exception (you cannot create an empty mapping on Windows)." +msgid "**(Windows version)** Maps *length* bytes from the file specified by the file handle *fileno*, and creates a mmap object. If *length* is larger than the current size of the file, the file is extended to contain *length* bytes. If *length* is ``0``, the maximum length of the map is the current size of the file, except that if the file is empty Windows raises an exception (you cannot create an empty mapping on Windows)." msgstr "" -#: ../../library/mmap.rst:60 -msgid "" -"*tagname*, if specified and not ``None``, is a string giving a tag name for " -"the mapping. Windows allows you to have many different mappings against the " -"same file. If you specify the name of an existing tag, that tag is opened, " -"otherwise a new tag of this name is created. If this parameter is omitted " -"or ``None``, the mapping is created without a name. Avoiding the use of the " -"*tagname* parameter will assist in keeping your code portable between Unix " -"and Windows." +msgid "*tagname*, if specified and not ``None``, is a string giving a tag name for the mapping. Windows allows you to have many different mappings against the same file. If you specify the name of an existing tag, that tag is opened, otherwise a new tag of this name is created. If this parameter is omitted or ``None``, the mapping is created without a name. Avoiding the use of the *tagname* parameter will assist in keeping your code portable between Unix and Windows." msgstr "" -#: ../../library/mmap.rst:68 -msgid "" -"*offset* may be specified as a non-negative integer offset. mmap references " -"will be relative to the offset from the beginning of the file. *offset* " -"defaults to 0. *offset* must be a multiple of " -"the :const:`ALLOCATIONGRANULARITY`." +msgid "*offset* may be specified as a non-negative integer offset. mmap references will be relative to the offset from the beginning of the file. *offset* defaults to 0. *offset* must be a multiple of the :const:`ALLOCATIONGRANULARITY`." msgstr "" -#: ../../library/mmap.rst:72 ../../library/mmap.rst:174 -msgid "" -"Raises an :ref:`auditing event ` ``mmap.__new__`` with arguments " -"``fileno``, ``length``, ``access``, ``offset``." +msgid "Raises an :ref:`auditing event ` ``mmap.__new__`` with arguments ``fileno``, ``length``, ``access``, ``offset``." msgstr "" -#: ../../library/mmap.rst:78 -msgid "" -"**(Unix version)** Maps *length* bytes from the file specified by the file " -"descriptor *fileno*, and returns a mmap object. If *length* is ``0``, the " -"maximum length of the map will be the current size of the file " -"when :class:`~mmap.mmap` is called." +msgid "**(Unix version)** Maps *length* bytes from the file specified by the file descriptor *fileno*, and returns a mmap object. If *length* is ``0``, the maximum length of the map will be the current size of the file when :class:`~mmap.mmap` is called." msgstr "" -#: ../../library/mmap.rst:83 -msgid "" -"*flags* specifies the nature of the mapping. :const:`MAP_PRIVATE` creates a " -"private copy-on-write mapping, so changes to the contents of the mmap object " -"will be private to this process, and :const:`MAP_SHARED` creates a mapping " -"that's shared with all other processes mapping the same areas of the file. " -"The default value is :const:`MAP_SHARED`. Some systems have additional " -"possible flags with the full list specified in :ref:`MAP_* constants `." +msgid "*flags* specifies the nature of the mapping. :const:`MAP_PRIVATE` creates a private copy-on-write mapping, so changes to the contents of the mmap object will be private to this process, and :const:`MAP_SHARED` creates a mapping that's shared with all other processes mapping the same areas of the file. The default value is :const:`MAP_SHARED`. Some systems have additional possible flags with the full list specified in :ref:`MAP_* constants `." msgstr "" -#: ../../library/mmap.rst:91 -msgid "" -"*prot*, if specified, gives the desired memory protection; the two most " -"useful values are :const:`PROT_READ` and :const:`PROT_WRITE`, to specify " -"that the pages may be read or written. *prot* defaults to :const:`PROT_READ " -"\\| PROT_WRITE`." +msgid "*prot*, if specified, gives the desired memory protection; the two most useful values are :const:`PROT_READ` and :const:`PROT_WRITE`, to specify that the pages may be read or written. *prot* defaults to :const:`PROT_READ \\| PROT_WRITE`." msgstr "" -#: ../../library/mmap.rst:96 -msgid "" -"*access* may be specified in lieu of *flags* and *prot* as an optional " -"keyword parameter. It is an error to specify both *flags*, *prot* and " -"*access*. See the description of *access* above for information on how to " -"use this parameter." +msgid "*access* may be specified in lieu of *flags* and *prot* as an optional keyword parameter. It is an error to specify both *flags*, *prot* and *access*. See the description of *access* above for information on how to use this parameter." msgstr "" -#: ../../library/mmap.rst:101 -msgid "" -"*offset* may be specified as a non-negative integer offset. mmap references " -"will be relative to the offset from the beginning of the file. *offset* " -"defaults to 0. *offset* must be a multiple of :const:`ALLOCATIONGRANULARITY` " -"which is equal to :const:`PAGESIZE` on Unix systems." +msgid "*offset* may be specified as a non-negative integer offset. mmap references will be relative to the offset from the beginning of the file. *offset* defaults to 0. *offset* must be a multiple of :const:`ALLOCATIONGRANULARITY` which is equal to :const:`PAGESIZE` on Unix systems." msgstr "" -#: ../../library/mmap.rst:106 -msgid "" -"If *trackfd* is ``False``, the file descriptor specified by *fileno* will " -"not be duplicated, and the resulting :class:`!mmap` object will not be " -"associated with the map's underlying file. This means that " -"the :meth:`~mmap.mmap.size` and :meth:`~mmap.mmap.resize` methods will fail. " -"This mode is useful to limit the number of open file descriptors." +msgid "If *trackfd* is ``False``, the file descriptor specified by *fileno* will not be duplicated, and the resulting :class:`!mmap` object will not be associated with the map's underlying file. This means that the :meth:`~mmap.mmap.size` and :meth:`~mmap.mmap.resize` methods will fail. This mode is useful to limit the number of open file descriptors." msgstr "" -#: ../../library/mmap.rst:113 -msgid "" -"To ensure validity of the created memory mapping the file specified by the " -"descriptor *fileno* is internally automatically synchronized with the " -"physical backing store on macOS." +msgid "To ensure validity of the created memory mapping the file specified by the descriptor *fileno* is internally automatically synchronized with the physical backing store on macOS." msgstr "" -#: ../../library/mmap.rst:117 msgid "The *trackfd* parameter was added." msgstr "" -#: ../../library/mmap.rst:120 msgid "This example shows a simple way of using :class:`~mmap.mmap`::" msgstr "" -#: ../../library/mmap.rst:122 msgid "" "import mmap\n" "\n" @@ -221,13 +113,9 @@ msgid "" " mm.close()" msgstr "" -#: ../../library/mmap.rst:145 -msgid "" -":class:`~mmap.mmap` can also be used as a context manager in " -"a :keyword:`with` statement::" +msgid ":class:`~mmap.mmap` can also be used as a context manager in a :keyword:`with` statement::" msgstr "" -#: ../../library/mmap.rst:148 msgid "" "import mmap\n" "\n" @@ -235,17 +123,12 @@ msgid "" " mm.write(b\"Hello world!\")" msgstr "" -#: ../../library/mmap.rst:153 msgid "Context manager support." msgstr "" -#: ../../library/mmap.rst:157 -msgid "" -"The next example demonstrates how to create an anonymous map and exchange " -"data between the parent and child processes::" +msgid "The next example demonstrates how to create an anonymous map and exchange data between the parent and child processes::" msgstr "" -#: ../../library/mmap.rst:160 msgid "" "import mmap\n" "import os\n" @@ -262,226 +145,113 @@ msgid "" " mm.close()" msgstr "" -#: ../../library/mmap.rst:176 msgid "Memory-mapped file objects support the following methods:" msgstr "" -#: ../../library/mmap.rst:180 -msgid "" -"Closes the mmap. Subsequent calls to other methods of the object will result " -"in a ValueError exception being raised. This will not close the open file." +msgid "Closes the mmap. Subsequent calls to other methods of the object will result in a ValueError exception being raised. This will not close the open file." msgstr "" -#: ../../library/mmap.rst:187 msgid "``True`` if the file is closed." msgstr "" -#: ../../library/mmap.rst:194 -msgid "" -"Returns the lowest index in the object where the subsequence *sub* is found, " -"such that *sub* is contained in the range [*start*, *end*]. Optional " -"arguments *start* and *end* are interpreted as in slice notation. Returns " -"``-1`` on failure." +msgid "Returns the lowest index in the object where the subsequence *sub* is found, such that *sub* is contained in the range [*start*, *end*]. Optional arguments *start* and *end* are interpreted as in slice notation. Returns ``-1`` on failure." msgstr "" -#: ../../library/mmap.rst:199 ../../library/mmap.rst:292 -#: ../../library/mmap.rst:332 msgid "Writable :term:`bytes-like object` is now accepted." msgstr "" -#: ../../library/mmap.rst:206 -msgid "" -"Flushes changes made to the in-memory copy of a file back to disk. Without " -"use of this call there is no guarantee that changes are written back before " -"the object is destroyed. If *offset* and *size* are specified, only changes " -"to the given range of bytes will be flushed to disk; otherwise, the whole " -"extent of the mapping is flushed. *offset* must be a multiple of " -"the :const:`PAGESIZE` or :const:`ALLOCATIONGRANULARITY`." +msgid "Flushes changes made to the in-memory copy of a file back to disk. Without use of this call there is no guarantee that changes are written back before the object is destroyed. If *offset* and *size* are specified, only changes to the given range of bytes will be flushed to disk; otherwise, the whole extent of the mapping is flushed. *offset* must be a multiple of the :const:`PAGESIZE` or :const:`ALLOCATIONGRANULARITY`." msgstr "" -#: ../../library/mmap.rst:213 -msgid "" -"``None`` is returned to indicate success. An exception is raised when the " -"call failed." +msgid "``None`` is returned to indicate success. An exception is raised when the call failed." msgstr "" -#: ../../library/mmap.rst:216 -msgid "" -"Previously, a nonzero value was returned on success; zero was returned on " -"error under Windows. A zero value was returned on success; an exception was " -"raised on error under Unix." +msgid "Previously, a nonzero value was returned on success; zero was returned on error under Windows. A zero value was returned on success; an exception was raised on error under Unix." msgstr "" -#: ../../library/mmap.rst:224 -msgid "" -"Send advice *option* to the kernel about the memory region beginning at " -"*start* and extending *length* bytes. *option* must be one of " -"the :ref:`MADV_* constants ` available on the system. If " -"*start* and *length* are omitted, the entire mapping is spanned. On some " -"systems (including Linux), *start* must be a multiple of " -"the :const:`PAGESIZE`." +msgid "Send advice *option* to the kernel about the memory region beginning at *start* and extending *length* bytes. *option* must be one of the :ref:`MADV_* constants ` available on the system. If *start* and *length* are omitted, the entire mapping is spanned. On some systems (including Linux), *start* must be a multiple of the :const:`PAGESIZE`." msgstr "" -#: ../../library/mmap.rst:231 msgid "Availability: Systems with the ``madvise()`` system call." msgstr "" -#: ../../library/mmap.rst:238 -msgid "" -"Copy the *count* bytes starting at offset *src* to the destination index " -"*dest*. If the mmap was created with :const:`ACCESS_READ`, then calls to " -"move will raise a :exc:`TypeError` exception." +msgid "Copy the *count* bytes starting at offset *src* to the destination index *dest*. If the mmap was created with :const:`ACCESS_READ`, then calls to move will raise a :exc:`TypeError` exception." msgstr "" -#: ../../library/mmap.rst:245 -msgid "" -"Return a :class:`bytes` containing up to *n* bytes starting from the current " -"file position. If the argument is omitted, ``None`` or negative, return all " -"bytes from the current file position to the end of the mapping. The file " -"position is updated to point after the bytes that were returned." +msgid "Return a :class:`bytes` containing up to *n* bytes starting from the current file position. If the argument is omitted, ``None`` or negative, return all bytes from the current file position to the end of the mapping. The file position is updated to point after the bytes that were returned." msgstr "" -#: ../../library/mmap.rst:251 msgid "Argument can be omitted or ``None``." msgstr "" -#: ../../library/mmap.rst:256 -msgid "" -"Returns a byte at the current file position as an integer, and advances the " -"file position by 1." +msgid "Returns a byte at the current file position as an integer, and advances the file position by 1." msgstr "" -#: ../../library/mmap.rst:262 -msgid "" -"Returns a single line, starting at the current file position and up to the " -"next newline. The file position is updated to point after the bytes that " -"were returned." +msgid "Returns a single line, starting at the current file position and up to the next newline. The file position is updated to point after the bytes that were returned." msgstr "" -#: ../../library/mmap.rst:269 msgid "Resizes the map and the underlying file, if any." msgstr "" -#: ../../library/mmap.rst:271 -msgid "" -"Resizing a map created with *access* of :const:`ACCESS_READ` " -"or :const:`ACCESS_COPY`, will raise a :exc:`TypeError` exception. Resizing a " -"map created with *trackfd* set to ``False``, will raise a :exc:`ValueError` " -"exception." +msgid "Resizing a map created with *access* of :const:`ACCESS_READ` or :const:`ACCESS_COPY`, will raise a :exc:`TypeError` exception. Resizing a map created with *trackfd* set to ``False``, will raise a :exc:`ValueError` exception." msgstr "" -#: ../../library/mmap.rst:276 -msgid "" -"**On Windows**: Resizing the map will raise an :exc:`OSError` if there are " -"other maps against the same named file. Resizing an anonymous map (ie " -"against the pagefile) will silently create a new map with the original data " -"copied over up to the length of the new size." +msgid "**On Windows**: Resizing the map will raise an :exc:`OSError` if there are other maps against the same named file. Resizing an anonymous map (ie against the pagefile) will silently create a new map with the original data copied over up to the length of the new size." msgstr "" -#: ../../library/mmap.rst:281 -msgid "" -"Correctly fails if attempting to resize when another map is held Allows " -"resize against an anonymous map on Windows" +msgid "Correctly fails if attempting to resize when another map is held Allows resize against an anonymous map on Windows" msgstr "" -#: ../../library/mmap.rst:287 -msgid "" -"Returns the highest index in the object where the subsequence *sub* is " -"found, such that *sub* is contained in the range [*start*, *end*]. Optional " -"arguments *start* and *end* are interpreted as in slice notation. Returns " -"``-1`` on failure." +msgid "Returns the highest index in the object where the subsequence *sub* is found, such that *sub* is contained in the range [*start*, *end*]. Optional arguments *start* and *end* are interpreted as in slice notation. Returns ``-1`` on failure." msgstr "" -#: ../../library/mmap.rst:298 -msgid "" -"Set the file's current position. *whence* argument is optional and defaults " -"to ``os.SEEK_SET`` or ``0`` (absolute file positioning); other values are " -"``os.SEEK_CUR`` or ``1`` (seek relative to the current position) and " -"``os.SEEK_END`` or ``2`` (seek relative to the file's end)." +msgid "Set the file's current position. *whence* argument is optional and defaults to ``os.SEEK_SET`` or ``0`` (absolute file positioning); other values are ``os.SEEK_CUR`` or ``1`` (seek relative to the current position) and ``os.SEEK_END`` or ``2`` (seek relative to the file's end)." msgstr "" -#: ../../library/mmap.rst:303 msgid "Return the new absolute position instead of ``None``." msgstr "" -#: ../../library/mmap.rst:308 -msgid "" -"Return whether the file supports seeking, and the return value is always " -"``True``." +msgid "Return whether the file supports seeking, and the return value is always ``True``." msgstr "" -#: ../../library/mmap.rst:314 -msgid "" -"Return the length of the file, which can be larger than the size of the " -"memory-mapped area." +msgid "Return the length of the file, which can be larger than the size of the memory-mapped area." msgstr "" -#: ../../library/mmap.rst:320 msgid "Returns the current position of the file pointer." msgstr "" -#: ../../library/mmap.rst:325 -msgid "" -"Write the bytes in *bytes* into memory at the current position of the file " -"pointer and return the number of bytes written (never less than " -"``len(bytes)``, since if the write fails, a :exc:`ValueError` will be " -"raised). The file position is updated to point after the bytes that were " -"written. If the mmap was created with :const:`ACCESS_READ`, then writing to " -"it will raise a :exc:`TypeError` exception." +msgid "Write the bytes in *bytes* into memory at the current position of the file pointer and return the number of bytes written (never less than ``len(bytes)``, since if the write fails, a :exc:`ValueError` will be raised). The file position is updated to point after the bytes that were written. If the mmap was created with :const:`ACCESS_READ`, then writing to it will raise a :exc:`TypeError` exception." msgstr "" -#: ../../library/mmap.rst:335 msgid "The number of bytes written is now returned." msgstr "" -#: ../../library/mmap.rst:341 -msgid "" -"Write the integer *byte* into memory at the current position of the file " -"pointer; the file position is advanced by ``1``. If the mmap was created " -"with :const:`ACCESS_READ`, then writing to it will raise a :exc:`TypeError` " -"exception." +msgid "Write the integer *byte* into memory at the current position of the file pointer; the file position is advanced by ``1``. If the mmap was created with :const:`ACCESS_READ`, then writing to it will raise a :exc:`TypeError` exception." msgstr "" -#: ../../library/mmap.rst:349 msgid "MADV_* Constants" msgstr "" -#: ../../library/mmap.rst:376 -msgid "" -"These options can be passed to :meth:`mmap.madvise`. Not every option will " -"be present on every system." +msgid "These options can be passed to :meth:`mmap.madvise`. Not every option will be present on every system." msgstr "" -#: ../../library/mmap.rst:379 msgid "Availability: Systems with the madvise() system call." msgstr "" -#: ../../library/mmap.rst:386 msgid "MAP_* Constants" msgstr "" -#: ../../library/mmap.rst:410 -msgid "" -"These are the various flags that can be passed " -"to :meth:`mmap.mmap`. :data:`MAP_ALIGNED_SUPER` is only available at " -"FreeBSD and :data:`MAP_CONCEAL` is only available at OpenBSD. Note that " -"some options might not be present on some systems." +msgid "These are the various flags that can be passed to :meth:`mmap.mmap`. :data:`MAP_ALIGNED_SUPER` is only available at FreeBSD and :data:`MAP_CONCEAL` is only available at OpenBSD. Note that some options might not be present on some systems." msgstr "" -#: ../../library/mmap.rst:414 msgid "Added :data:`MAP_POPULATE` constant." msgstr "" -#: ../../library/mmap.rst:417 msgid "Added :data:`MAP_STACK` constant." msgstr "" -#: ../../library/mmap.rst:420 msgid "Added :data:`MAP_ALIGNED_SUPER` and :data:`MAP_CONCEAL` constants." msgstr "" -#: ../../library/mmap.rst:423 -msgid "" -"Added :data:`MAP_32BIT`, :data:`MAP_HASSEMAPHORE`, :data:`MAP_JIT`, :data:`MAP_NOCACHE`, :data:`MAP_NOEXTEND`, :data:`MAP_NORESERVE`, :data:`MAP_RESILIENT_CODESIGN`, :data:`MAP_RESILIENT_MEDIA`, :data:`MAP_TPRO`, :data:`MAP_TRANSLATED_ALLOW_EXECUTE`, " -"and :data:`MAP_UNIX03` constants." +msgid "Added :data:`MAP_32BIT`, :data:`MAP_HASSEMAPHORE`, :data:`MAP_JIT`, :data:`MAP_NOCACHE`, :data:`MAP_NOEXTEND`, :data:`MAP_NORESERVE`, :data:`MAP_RESILIENT_CODESIGN`, :data:`MAP_RESILIENT_MEDIA`, :data:`MAP_TPRO`, :data:`MAP_TRANSLATED_ALLOW_EXECUTE`, and :data:`MAP_UNIX03` constants." msgstr "" diff --git a/library/modulefinder.po b/library/modulefinder.po index eb84d5fc..19cb5627 100644 --- a/library/modulefinder.po +++ b/library/modulefinder.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:09+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,72 +21,39 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/modulefinder.rst:2 msgid ":mod:`!modulefinder` --- Find modules used by a script" msgstr "" -#: ../../library/modulefinder.rst:9 msgid "**Source code:** :source:`Lib/modulefinder.py`" msgstr "" -#: ../../library/modulefinder.rst:13 -msgid "" -"This module provides a :class:`ModuleFinder` class that can be used to " -"determine the set of modules imported by a script. ``modulefinder.py`` can " -"also be run as a script, giving the filename of a Python script as its " -"argument, after which a report of the imported modules will be printed." +msgid "This module provides a :class:`ModuleFinder` class that can be used to determine the set of modules imported by a script. ``modulefinder.py`` can also be run as a script, giving the filename of a Python script as its argument, after which a report of the imported modules will be printed." msgstr "" -#: ../../library/modulefinder.rst:21 -msgid "" -"Record that the package named *pkg_name* can be found in the specified " -"*path*." +msgid "Record that the package named *pkg_name* can be found in the specified *path*." msgstr "" -#: ../../library/modulefinder.rst:26 -msgid "" -"Allows specifying that the module named *oldname* is in fact the package " -"named *newname*." +msgid "Allows specifying that the module named *oldname* is in fact the package named *newname*." msgstr "" -#: ../../library/modulefinder.rst:32 -msgid "" -"This class provides :meth:`run_script` and :meth:`report` methods to " -"determine the set of modules imported by a script. *path* can be a list of " -"directories to search for modules; if not specified, ``sys.path`` is used. " -"*debug* sets the debugging level; higher values make the class print " -"debugging messages about what it's doing. *excludes* is a list of module " -"names to exclude from the analysis. *replace_paths* is a list of ``(oldpath, " -"newpath)`` tuples that will be replaced in module paths." +msgid "This class provides :meth:`run_script` and :meth:`report` methods to determine the set of modules imported by a script. *path* can be a list of directories to search for modules; if not specified, ``sys.path`` is used. *debug* sets the debugging level; higher values make the class print debugging messages about what it's doing. *excludes* is a list of module names to exclude from the analysis. *replace_paths* is a list of ``(oldpath, newpath)`` tuples that will be replaced in module paths." msgstr "" -#: ../../library/modulefinder.rst:43 -msgid "" -"Print a report to standard output that lists the modules imported by the " -"script and their paths, as well as modules that are missing or seem to be " -"missing." +msgid "Print a report to standard output that lists the modules imported by the script and their paths, as well as modules that are missing or seem to be missing." msgstr "" -#: ../../library/modulefinder.rst:49 -msgid "" -"Analyze the contents of the *pathname* file, which must contain Python code." +msgid "Analyze the contents of the *pathname* file, which must contain Python code." msgstr "" -#: ../../library/modulefinder.rst:54 -msgid "" -"A dictionary mapping module names to modules. See :ref:`modulefinder-" -"example`." +msgid "A dictionary mapping module names to modules. See :ref:`modulefinder-example`." msgstr "" -#: ../../library/modulefinder.rst:61 msgid "Example usage of :class:`ModuleFinder`" msgstr "" -#: ../../library/modulefinder.rst:63 msgid "The script that is going to get analyzed later on (bacon.py)::" msgstr "" -#: ../../library/modulefinder.rst:65 msgid "" "import re, itertools\n" "\n" @@ -101,11 +68,9 @@ msgid "" " pass" msgstr "" -#: ../../library/modulefinder.rst:78 msgid "The script that will output the report of bacon.py::" msgstr "" -#: ../../library/modulefinder.rst:80 msgid "" "from modulefinder import ModuleFinder\n" "\n" @@ -122,11 +87,9 @@ msgid "" "print('\\n'.join(finder.badmodules.keys()))" msgstr "" -#: ../../library/modulefinder.rst:94 msgid "Sample output (may vary depending on the architecture)::" msgstr "" -#: ../../library/modulefinder.rst:96 msgid "" "Loaded modules:\n" "_types:\n" diff --git a/library/modules.po b/library/modules.po index c161ab1b..c0b84ab0 100644 --- a/library/modules.po +++ b/library/modules.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:09+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,16 +21,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/modules.rst:5 msgid "Importing Modules" msgstr "" -#: ../../library/modules.rst:7 -msgid "" -"The modules described in this chapter provide new ways to import other " -"Python modules and hooks for customizing the import process." +msgid "The modules described in this chapter provide new ways to import other Python modules and hooks for customizing the import process." msgstr "" -#: ../../library/modules.rst:10 msgid "The full list of modules described in this chapter is:" msgstr "" diff --git a/library/msilib.po b/library/msilib.po index 0d7df1e4..37bcec59 100644 --- a/library/msilib.po +++ b/library/msilib.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2024-11-19 01:03+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,19 +21,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/msilib.rst:2 msgid ":mod:`!msilib` --- Read and write Microsoft Installer files" msgstr "" -#: ../../library/msilib.rst:10 -msgid "" -"This module is no longer part of the Python standard library. It " -"was :ref:`removed in Python 3.13 ` after being " -"deprecated in Python 3.11. The removal was decided in :pep:`594`." +msgid "This module is no longer part of the Python standard library. It was :ref:`removed in Python 3.13 ` after being deprecated in Python 3.11. The removal was decided in :pep:`594`." msgstr "" -#: ../../library/msilib.rst:14 -msgid "" -"The last version of Python that provided the :mod:`!msilib` module was " -"`Python 3.12 `_." +msgid "The last version of Python that provided the :mod:`!msilib` module was `Python 3.12 `_." msgstr "" diff --git a/library/msvcrt.po b/library/msvcrt.po index bada97a3..a4c4bd3b 100644 --- a/library/msvcrt.po +++ b/library/msvcrt.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:09+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,278 +23,143 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/msvcrt.rst:2 msgid ":mod:`!msvcrt` --- Useful routines from the MS VC++ runtime" msgstr "" -#: ../../library/msvcrt.rst:11 -msgid "" -"These functions provide access to some useful capabilities on Windows " -"platforms. Some higher-level modules use these functions to build the " -"Windows implementations of their services. For example, the :mod:`getpass` " -"module uses this in the implementation of the :func:`getpass` function." +msgid "These functions provide access to some useful capabilities on Windows platforms. Some higher-level modules use these functions to build the Windows implementations of their services. For example, the :mod:`getpass` module uses this in the implementation of the :func:`getpass` function." msgstr "" -#: ../../library/msvcrt.rst:16 -msgid "" -"Further documentation on these functions can be found in the Platform API " -"documentation." +msgid "Further documentation on these functions can be found in the Platform API documentation." msgstr "" -#: ../../library/msvcrt.rst:19 -msgid "" -"The module implements both the normal and wide char variants of the console " -"I/O api. The normal API deals only with ASCII characters and is of limited " -"use for internationalized applications. The wide char API should be used " -"where ever possible." +msgid "The module implements both the normal and wide char variants of the console I/O api. The normal API deals only with ASCII characters and is of limited use for internationalized applications. The wide char API should be used where ever possible." msgstr "" -#: ../../library/msvcrt.rst:24 msgid "Availability" msgstr "" -#: ../../library/msvcrt.rst:26 -msgid "" -"Operations in this module now raise :exc:`OSError` where :exc:`IOError` was " -"raised." +msgid "Operations in this module now raise :exc:`OSError` where :exc:`IOError` was raised." msgstr "" -#: ../../library/msvcrt.rst:34 msgid "File Operations" msgstr "" -#: ../../library/msvcrt.rst:39 -msgid "" -"Lock part of a file based on file descriptor *fd* from the C runtime. " -"Raises :exc:`OSError` on failure. The locked region of the file extends from " -"the current file position for *nbytes* bytes, and may continue beyond the " -"end of the file. *mode* must be one of the :const:`!LK_\\*` constants listed " -"below. Multiple regions in a file may be locked at the same time, but may " -"not overlap. Adjacent regions are not merged; they must be unlocked " -"individually." +msgid "Lock part of a file based on file descriptor *fd* from the C runtime. Raises :exc:`OSError` on failure. The locked region of the file extends from the current file position for *nbytes* bytes, and may continue beyond the end of the file. *mode* must be one of the :const:`!LK_\\*` constants listed below. Multiple regions in a file may be locked at the same time, but may not overlap. Adjacent regions are not merged; they must be unlocked individually." msgstr "" -#: ../../library/msvcrt.rst:46 -msgid "" -"Raises an :ref:`auditing event ` ``msvcrt.locking`` with arguments " -"``fd``, ``mode``, ``nbytes``." +msgid "Raises an :ref:`auditing event ` ``msvcrt.locking`` with arguments ``fd``, ``mode``, ``nbytes``." msgstr "" -#: ../../library/msvcrt.rst:52 -msgid "" -"Locks the specified bytes. If the bytes cannot be locked, the program " -"immediately tries again after 1 second. If, after 10 attempts, the bytes " -"cannot be locked, :exc:`OSError` is raised." +msgid "Locks the specified bytes. If the bytes cannot be locked, the program immediately tries again after 1 second. If, after 10 attempts, the bytes cannot be locked, :exc:`OSError` is raised." msgstr "" -#: ../../library/msvcrt.rst:60 -msgid "" -"Locks the specified bytes. If the bytes cannot be locked, :exc:`OSError` is " -"raised." +msgid "Locks the specified bytes. If the bytes cannot be locked, :exc:`OSError` is raised." msgstr "" -#: ../../library/msvcrt.rst:66 msgid "Unlocks the specified bytes, which must have been previously locked." msgstr "" -#: ../../library/msvcrt.rst:71 -msgid "" -"Set the line-end translation mode for the file descriptor *fd*. To set it to " -"text mode, *flags* should be :const:`os.O_TEXT`; for binary, it should " -"be :const:`os.O_BINARY`." +msgid "Set the line-end translation mode for the file descriptor *fd*. To set it to text mode, *flags* should be :const:`os.O_TEXT`; for binary, it should be :const:`os.O_BINARY`." msgstr "" -#: ../../library/msvcrt.rst:78 -msgid "" -"Create a C runtime file descriptor from the file handle *handle*. The " -"*flags* parameter should be a bitwise OR " -"of :const:`os.O_APPEND`, :const:`os.O_RDONLY`, :const:`os.O_TEXT` " -"and :const:`os.O_NOINHERIT`. The returned file descriptor may be used as a " -"parameter to :func:`os.fdopen` to create a file object." +msgid "Create a C runtime file descriptor from the file handle *handle*. The *flags* parameter should be a bitwise OR of :const:`os.O_APPEND`, :const:`os.O_RDONLY`, :const:`os.O_TEXT` and :const:`os.O_NOINHERIT`. The returned file descriptor may be used as a parameter to :func:`os.fdopen` to create a file object." msgstr "" -#: ../../library/msvcrt.rst:84 -msgid "" -"The file descriptor is inheritable by default. Pass :const:`os.O_NOINHERIT` " -"flag to make it non inheritable." +msgid "The file descriptor is inheritable by default. Pass :const:`os.O_NOINHERIT` flag to make it non inheritable." msgstr "" -#: ../../library/msvcrt.rst:87 -msgid "" -"Raises an :ref:`auditing event ` ``msvcrt.open_osfhandle`` with " -"arguments ``handle``, ``flags``." +msgid "Raises an :ref:`auditing event ` ``msvcrt.open_osfhandle`` with arguments ``handle``, ``flags``." msgstr "" -#: ../../library/msvcrt.rst:92 -msgid "" -"Return the file handle for the file descriptor *fd*. Raises :exc:`OSError` " -"if *fd* is not recognized." +msgid "Return the file handle for the file descriptor *fd*. Raises :exc:`OSError` if *fd* is not recognized." msgstr "" -#: ../../library/msvcrt.rst:95 -msgid "" -"Raises an :ref:`auditing event ` ``msvcrt.get_osfhandle`` with " -"argument ``fd``." +msgid "Raises an :ref:`auditing event ` ``msvcrt.get_osfhandle`` with argument ``fd``." msgstr "" -#: ../../library/msvcrt.rst:101 msgid "Console I/O" msgstr "" -#: ../../library/msvcrt.rst:106 -msgid "" -"Returns a nonzero value if a keypress is waiting to be read. Otherwise, " -"return 0." +msgid "Returns a nonzero value if a keypress is waiting to be read. Otherwise, return 0." msgstr "" -#: ../../library/msvcrt.rst:112 -msgid "" -"Read a keypress and return the resulting character as a byte string. Nothing " -"is echoed to the console. This call will block if a keypress is not already " -"available, but will not wait for :kbd:`Enter` to be pressed. If the pressed " -"key was a special function key, this will return ``'\\000'`` or ``'\\xe0'``; " -"the next call will return the keycode. The :kbd:`Control-C` keypress cannot " -"be read with this function." +msgid "Read a keypress and return the resulting character as a byte string. Nothing is echoed to the console. This call will block if a keypress is not already available, but will not wait for :kbd:`Enter` to be pressed. If the pressed key was a special function key, this will return ``'\\000'`` or ``'\\xe0'``; the next call will return the keycode. The :kbd:`Control-C` keypress cannot be read with this function." msgstr "" -#: ../../library/msvcrt.rst:122 msgid "Wide char variant of :func:`getch`, returning a Unicode value." msgstr "" -#: ../../library/msvcrt.rst:127 -msgid "" -"Similar to :func:`getch`, but the keypress will be echoed if it represents a " -"printable character." +msgid "Similar to :func:`getch`, but the keypress will be echoed if it represents a printable character." msgstr "" -#: ../../library/msvcrt.rst:133 msgid "Wide char variant of :func:`getche`, returning a Unicode value." msgstr "" -#: ../../library/msvcrt.rst:138 msgid "Print the byte string *char* to the console without buffering." msgstr "" -#: ../../library/msvcrt.rst:143 msgid "Wide char variant of :func:`putch`, accepting a Unicode value." msgstr "" -#: ../../library/msvcrt.rst:148 -msgid "" -"Cause the byte string *char* to be \"pushed back\" into the console buffer; " -"it will be the next character read by :func:`getch` or :func:`getche`." +msgid "Cause the byte string *char* to be \"pushed back\" into the console buffer; it will be the next character read by :func:`getch` or :func:`getche`." msgstr "" -#: ../../library/msvcrt.rst:154 msgid "Wide char variant of :func:`ungetch`, accepting a Unicode value." msgstr "" -#: ../../library/msvcrt.rst:160 msgid "Other Functions" msgstr "" -#: ../../library/msvcrt.rst:165 -msgid "" -"Force the :c:func:`malloc` heap to clean itself up and return unused blocks " -"to the operating system. On failure, this raises :exc:`OSError`." +msgid "Force the :c:func:`malloc` heap to clean itself up and return unused blocks to the operating system. On failure, this raises :exc:`OSError`." msgstr "" -#: ../../library/msvcrt.rst:171 -msgid "" -"Changes the location where the C runtime writes an error message for an " -"error that might end the program. *mode* must be one of the :const:`!" -"OUT_\\*` constants listed below or :const:`REPORT_ERRMODE`. Returns the old " -"setting or -1 if an error occurs. Only available in :ref:`debug build of " -"Python `." +msgid "Changes the location where the C runtime writes an error message for an error that might end the program. *mode* must be one of the :const:`!OUT_\\*` constants listed below or :const:`REPORT_ERRMODE`. Returns the old setting or -1 if an error occurs. Only available in :ref:`debug build of Python `." msgstr "" -#: ../../library/msvcrt.rst:180 -msgid "" -"Error sink is determined by the app's type. Only available in :ref:`debug " -"build of Python `." +msgid "Error sink is determined by the app's type. Only available in :ref:`debug build of Python `." msgstr "" -#: ../../library/msvcrt.rst:186 -msgid "" -"Error sink is a standard error. Only available in :ref:`debug build of " -"Python `." +msgid "Error sink is a standard error. Only available in :ref:`debug build of Python `." msgstr "" -#: ../../library/msvcrt.rst:192 -msgid "" -"Error sink is a message box. Only available in :ref:`debug build of Python " -"`." +msgid "Error sink is a message box. Only available in :ref:`debug build of Python `." msgstr "" -#: ../../library/msvcrt.rst:198 -msgid "" -"Report the current error mode value. Only available in :ref:`debug build of " -"Python `." +msgid "Report the current error mode value. Only available in :ref:`debug build of Python `." msgstr "" -#: ../../library/msvcrt.rst:204 -msgid "" -"Specifies the destination or destinations for a specific report type " -"generated by :c:func:`!_CrtDbgReport` in the MS VC++ runtime. *type* must be " -"one of the :const:`!CRT_\\*` constants listed below. *mode* must be one of " -"the :const:`!CRTDBG_\\*` constants listed below. Only available " -"in :ref:`debug build of Python `." +msgid "Specifies the destination or destinations for a specific report type generated by :c:func:`!_CrtDbgReport` in the MS VC++ runtime. *type* must be one of the :const:`!CRT_\\*` constants listed below. *mode* must be one of the :const:`!CRTDBG_\\*` constants listed below. Only available in :ref:`debug build of Python `." msgstr "" -#: ../../library/msvcrt.rst:213 -msgid "" -"After you use :func:`CrtSetReportMode` to specify :const:`CRTDBG_MODE_FILE`, " -"you can specify the file handle to receive the message text. *type* must be " -"one of the :const:`!CRT_\\*` constants listed below. *file* should be the " -"file handle your want specified. Only available in :ref:`debug build of " -"Python `." +msgid "After you use :func:`CrtSetReportMode` to specify :const:`CRTDBG_MODE_FILE`, you can specify the file handle to receive the message text. *type* must be one of the :const:`!CRT_\\*` constants listed below. *file* should be the file handle your want specified. Only available in :ref:`debug build of Python `." msgstr "" -#: ../../library/msvcrt.rst:222 -msgid "" -"Warnings, messages, and information that doesn't need immediate attention." +msgid "Warnings, messages, and information that doesn't need immediate attention." msgstr "" -#: ../../library/msvcrt.rst:227 -msgid "" -"Errors, unrecoverable problems, and issues that require immediate attention." +msgid "Errors, unrecoverable problems, and issues that require immediate attention." msgstr "" -#: ../../library/msvcrt.rst:232 msgid "Assertion failures." msgstr "" -#: ../../library/msvcrt.rst:237 msgid "Writes the message to the debugger's output window." msgstr "" -#: ../../library/msvcrt.rst:242 -msgid "" -"Writes the message to a user-supplied file handle. :func:`CrtSetReportFile` " -"should be called to define the specific file or stream to use as the " -"destination." +msgid "Writes the message to a user-supplied file handle. :func:`CrtSetReportFile` should be called to define the specific file or stream to use as the destination." msgstr "" -#: ../../library/msvcrt.rst:249 -msgid "" -"Creates a message box to display the message along with the ``Abort``, " -"``Retry``, and ``Ignore`` buttons." +msgid "Creates a message box to display the message along with the ``Abort``, ``Retry``, and ``Ignore`` buttons." msgstr "" -#: ../../library/msvcrt.rst:255 msgid "Returns current *mode* for the specified *type*." msgstr "" -#: ../../library/msvcrt.rst:260 msgid "The CRT Assembly version, from the :file:`crtassem.h` header file." msgstr "" -#: ../../library/msvcrt.rst:265 -msgid "" -"The VC Assembly public key token, from the :file:`crtassem.h` header file." +msgid "The VC Assembly public key token, from the :file:`crtassem.h` header file." msgstr "" -#: ../../library/msvcrt.rst:270 -msgid "" -"The Libraries Assembly name prefix, from the :file:`crtassem.h` header file." +msgid "The Libraries Assembly name prefix, from the :file:`crtassem.h` header file." msgstr "" diff --git a/library/multiprocessing.po b/library/multiprocessing.po index cacf8e3d..2a493fd2 100644 --- a/library/multiprocessing.po +++ b/library/multiprocessing.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:10+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,52 +24,27 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/multiprocessing.rst:2 msgid ":mod:`!multiprocessing` --- Process-based parallelism" msgstr "" -#: ../../library/multiprocessing.rst:7 msgid "**Source code:** :source:`Lib/multiprocessing/`" msgstr "" -#: ../../includes/wasm-mobile-notavail.rst:3 msgid "Availability" msgstr "" -#: ../../includes/wasm-mobile-notavail.rst:5 -msgid "" -"This module is not supported on :ref:`mobile platforms ` or :ref:`WebAssembly platforms `." +msgid "This module is not supported on :ref:`mobile platforms ` or :ref:`WebAssembly platforms `." msgstr "" -#: ../../library/multiprocessing.rst:14 msgid "Introduction" msgstr "" -#: ../../library/multiprocessing.rst:16 -msgid "" -":mod:`!multiprocessing` is a package that supports spawning processes using " -"an API similar to the :mod:`threading` module. The :mod:`!multiprocessing` " -"package offers both local and remote concurrency, effectively side-stepping " -"the :term:`Global Interpreter Lock ` by using " -"subprocesses instead of threads. Due to this, the :mod:`!multiprocessing` " -"module allows the programmer to fully leverage multiple processors on a " -"given machine. It runs on both POSIX and Windows." +msgid ":mod:`!multiprocessing` is a package that supports spawning processes using an API similar to the :mod:`threading` module. The :mod:`!multiprocessing` package offers both local and remote concurrency, effectively side-stepping the :term:`Global Interpreter Lock ` by using subprocesses instead of threads. Due to this, the :mod:`!multiprocessing` module allows the programmer to fully leverage multiple processors on a given machine. It runs on both POSIX and Windows." msgstr "" -#: ../../library/multiprocessing.rst:25 -msgid "" -"The :mod:`!multiprocessing` module also introduces " -"the :class:`~multiprocessing.pool.Pool` object which offers a convenient " -"means of parallelizing the execution of a function across multiple input " -"values, distributing the input data across processes (data parallelism). " -"The following example demonstrates the common practice of defining such " -"functions in a module so that child processes can successfully import that " -"module. This basic example of data parallelism " -"using :class:`~multiprocessing.pool.Pool`, ::" +msgid "The :mod:`!multiprocessing` module also introduces the :class:`~multiprocessing.pool.Pool` object which offers a convenient means of parallelizing the execution of a function across multiple input values, distributing the input data across processes (data parallelism). The following example demonstrates the common practice of defining such functions in a module so that child processes can successfully import that module. This basic example of data parallelism using :class:`~multiprocessing.pool.Pool`, ::" msgstr "" -#: ../../library/multiprocessing.rst:33 msgid "" "from multiprocessing import Pool\n" "\n" @@ -81,45 +56,24 @@ msgid "" " print(p.map(f, [1, 2, 3]))" msgstr "" -#: ../../library/multiprocessing.rst:42 msgid "will print to standard output ::" msgstr "" -#: ../../library/multiprocessing.rst:44 msgid "[1, 4, 9]" msgstr "" -#: ../../library/multiprocessing.rst:46 -msgid "" -"The :mod:`!multiprocessing` module also introduces APIs which do not have " -"analogs in the :mod:`threading` module, like the ability to :meth:`terminate " -"`, :meth:`interrupt ` or :meth:`kill " -"` a running process." +msgid "The :mod:`!multiprocessing` module also introduces APIs which do not have analogs in the :mod:`threading` module, like the ability to :meth:`terminate `, :meth:`interrupt ` or :meth:`kill ` a running process." msgstr "" -#: ../../library/multiprocessing.rst:53 -msgid "" -":class:`concurrent.futures.ProcessPoolExecutor` offers a higher level " -"interface to push tasks to a background process without blocking execution " -"of the calling process. Compared to using " -"the :class:`~multiprocessing.pool.Pool` interface directly, " -"the :mod:`concurrent.futures` API more readily allows the submission of work " -"to the underlying process pool to be separated from waiting for the results." +msgid ":class:`concurrent.futures.ProcessPoolExecutor` offers a higher level interface to push tasks to a background process without blocking execution of the calling process. Compared to using the :class:`~multiprocessing.pool.Pool` interface directly, the :mod:`concurrent.futures` API more readily allows the submission of work to the underlying process pool to be separated from waiting for the results." msgstr "" -#: ../../library/multiprocessing.rst:62 msgid "The :class:`Process` class" msgstr "" -#: ../../library/multiprocessing.rst:64 -msgid "" -"In :mod:`!multiprocessing`, processes are spawned by creating " -"a :class:`Process` object and then calling its :meth:`~Process.start` " -"method. :class:`Process` follows the API of :class:`threading.Thread`. A " -"trivial example of a multiprocess program is ::" +msgid "In :mod:`!multiprocessing`, processes are spawned by creating a :class:`Process` object and then calling its :meth:`~Process.start` method. :class:`Process` follows the API of :class:`threading.Thread`. A trivial example of a multiprocess program is ::" msgstr "" -#: ../../library/multiprocessing.rst:69 msgid "" "from multiprocessing import Process\n" "\n" @@ -132,12 +86,9 @@ msgid "" " p.join()" msgstr "" -#: ../../library/multiprocessing.rst:79 -msgid "" -"To show the individual process IDs involved, here is an expanded example::" +msgid "To show the individual process IDs involved, here is an expanded example::" msgstr "" -#: ../../library/multiprocessing.rst:81 msgid "" "from multiprocessing import Process\n" "import os\n" @@ -159,147 +110,69 @@ msgid "" " p.join()" msgstr "" -#: ../../library/multiprocessing.rst:100 -msgid "" -"For an explanation of why the ``if __name__ == '__main__'`` part is " -"necessary, see :ref:`multiprocessing-programming`." +msgid "For an explanation of why the ``if __name__ == '__main__'`` part is necessary, see :ref:`multiprocessing-programming`." msgstr "" -#: ../../library/multiprocessing.rst:103 -msgid "" -"The arguments to :class:`Process` usually need to be picklable so they can " -"be passed to the child process. If you tried typing the above example " -"directly into a REPL it could lead to an :exc:`AttributeError` in the child " -"process trying to locate the *f* function in the ``__main__`` module." +msgid "The arguments to :class:`Process` usually need to be picklable so they can be passed to the child process. If you tried typing the above example directly into a REPL it could lead to an :exc:`AttributeError` in the child process trying to locate the *f* function in the ``__main__`` module." msgstr "" -#: ../../library/multiprocessing.rst:112 msgid "Contexts and start methods" msgstr "" -#: ../../library/multiprocessing.rst:114 -msgid "" -"Depending on the platform, :mod:`!multiprocessing` supports three ways to " -"start a process. These *start methods* are" +msgid "Depending on the platform, :mod:`!multiprocessing` supports three ways to start a process. These *start methods* are" msgstr "" -#: ../../library/multiprocessing.rst:119 msgid "*spawn*" msgstr "" -#: ../../library/multiprocessing.rst:120 -msgid "" -"The parent process starts a fresh Python interpreter process. The child " -"process will only inherit those resources necessary to run the process " -"object's :meth:`~Process.run` method. In particular, unnecessary file " -"descriptors and handles from the parent process will not be inherited. " -"Starting a process using this method is rather slow compared to using *fork* " -"or *forkserver*." +msgid "The parent process starts a fresh Python interpreter process. The child process will only inherit those resources necessary to run the process object's :meth:`~Process.run` method. In particular, unnecessary file descriptors and handles from the parent process will not be inherited. Starting a process using this method is rather slow compared to using *fork* or *forkserver*." msgstr "" -#: ../../library/multiprocessing.rst:127 -msgid "" -"Available on POSIX and Windows platforms. The default on Windows and macOS." +msgid "Available on POSIX and Windows platforms. The default on Windows and macOS." msgstr "" -#: ../../library/multiprocessing.rst:131 msgid "*fork*" msgstr "" -#: ../../library/multiprocessing.rst:132 -msgid "" -"The parent process uses :func:`os.fork` to fork the Python interpreter. The " -"child process, when it begins, is effectively identical to the parent " -"process. All resources of the parent are inherited by the child process. " -"Note that safely forking a multithreaded process is problematic." +msgid "The parent process uses :func:`os.fork` to fork the Python interpreter. The child process, when it begins, is effectively identical to the parent process. All resources of the parent are inherited by the child process. Note that safely forking a multithreaded process is problematic." msgstr "" -#: ../../library/multiprocessing.rst:138 msgid "Available on POSIX systems." msgstr "" -#: ../../library/multiprocessing.rst:140 -msgid "" -"This is no longer the default start method on any platform. Code that " -"requires *fork* must explicitly specify that via :func:`get_context` " -"or :func:`set_start_method`." +msgid "This is no longer the default start method on any platform. Code that requires *fork* must explicitly specify that via :func:`get_context` or :func:`set_start_method`." msgstr "" -#: ../../library/multiprocessing.rst:145 -msgid "" -"If Python is able to detect that your process has multiple threads, " -"the :func:`os.fork` function that this start method calls internally will " -"raise a :exc:`DeprecationWarning`. Use a different start method. See " -"the :func:`os.fork` documentation for further explanation." +msgid "If Python is able to detect that your process has multiple threads, the :func:`os.fork` function that this start method calls internally will raise a :exc:`DeprecationWarning`. Use a different start method. See the :func:`os.fork` documentation for further explanation." msgstr "" -#: ../../library/multiprocessing.rst:153 msgid "*forkserver*" msgstr "" -#: ../../library/multiprocessing.rst:154 -msgid "" -"When the program starts and selects the *forkserver* start method, a server " -"process is spawned. From then on, whenever a new process is needed, the " -"parent process connects to the server and requests that it fork a new " -"process. The fork server process is single threaded unless system libraries " -"or preloaded imports spawn threads as a side-effect so it is generally safe " -"for it to use :func:`os.fork`. No unnecessary resources are inherited." +msgid "When the program starts and selects the *forkserver* start method, a server process is spawned. From then on, whenever a new process is needed, the parent process connects to the server and requests that it fork a new process. The fork server process is single threaded unless system libraries or preloaded imports spawn threads as a side-effect so it is generally safe for it to use :func:`os.fork`. No unnecessary resources are inherited." msgstr "" -#: ../../library/multiprocessing.rst:162 -msgid "" -"Available on POSIX platforms which support passing file descriptors over " -"Unix pipes such as Linux. The default on those." +msgid "Available on POSIX platforms which support passing file descriptors over Unix pipes such as Linux. The default on those." msgstr "" -#: ../../library/multiprocessing.rst:165 msgid "This became the default start method on POSIX platforms." msgstr "" -#: ../../library/multiprocessing.rst:168 -msgid "" -"*spawn* added on all POSIX platforms, and *forkserver* added for some POSIX " -"platforms. Child processes no longer inherit all of the parents inheritable " -"handles on Windows." +msgid "*spawn* added on all POSIX platforms, and *forkserver* added for some POSIX platforms. Child processes no longer inherit all of the parents inheritable handles on Windows." msgstr "" -#: ../../library/multiprocessing.rst:176 -msgid "" -"On macOS, the *spawn* start method is now the default. The *fork* start " -"method should be considered unsafe as it can lead to crashes of the " -"subprocess as macOS system libraries may start threads. See :issue:`33725`." +msgid "On macOS, the *spawn* start method is now the default. The *fork* start method should be considered unsafe as it can lead to crashes of the subprocess as macOS system libraries may start threads. See :issue:`33725`." msgstr "" -#: ../../library/multiprocessing.rst:182 -msgid "" -"On POSIX platforms the default start method was changed from *fork* to " -"*forkserver* to retain the performance but avoid common multithreaded " -"process incompatibilities. See :gh:`84559`." +msgid "On POSIX platforms the default start method was changed from *fork* to *forkserver* to retain the performance but avoid common multithreaded process incompatibilities. See :gh:`84559`." msgstr "" -#: ../../library/multiprocessing.rst:187 -msgid "" -"On POSIX using the *spawn* or *forkserver* start methods will also start a " -"*resource tracker* process which tracks the unlinked named system resources " -"(such as named semaphores " -"or :class:`~multiprocessing.shared_memory.SharedMemory` objects) created by " -"processes of the program. When all processes have exited the resource " -"tracker unlinks any remaining tracked object. Usually there should be none, " -"but if a process was killed by a signal there may be some \"leaked\" " -"resources. (Neither leaked semaphores nor shared memory segments will be " -"automatically unlinked until the next reboot. This is problematic for both " -"objects because the system allows only a limited number of named semaphores, " -"and shared memory segments occupy some space in the main memory.)" -msgstr "" - -#: ../../library/multiprocessing.rst:200 -msgid "" -"To select a start method you use the :func:`set_start_method` in the ``if " -"__name__ == '__main__'`` clause of the main module. For example::" +msgid "On POSIX using the *spawn* or *forkserver* start methods will also start a *resource tracker* process which tracks the unlinked named system resources (such as named semaphores or :class:`~multiprocessing.shared_memory.SharedMemory` objects) created by processes of the program. When all processes have exited the resource tracker unlinks any remaining tracked object. Usually there should be none, but if a process was killed by a signal there may be some \"leaked\" resources. (Neither leaked semaphores nor shared memory segments will be automatically unlinked until the next reboot. This is problematic for both objects because the system allows only a limited number of named semaphores, and shared memory segments occupy some space in the main memory.)" +msgstr "" + +msgid "To select a start method you use the :func:`set_start_method` in the ``if __name__ == '__main__'`` clause of the main module. For example::" msgstr "" -#: ../../library/multiprocessing.rst:204 msgid "" "import multiprocessing as mp\n" "\n" @@ -315,19 +188,12 @@ msgid "" " p.join()" msgstr "" -#: ../../library/multiprocessing.rst:217 -msgid "" -":func:`set_start_method` should not be used more than once in the program." +msgid ":func:`set_start_method` should not be used more than once in the program." msgstr "" -#: ../../library/multiprocessing.rst:220 -msgid "" -"Alternatively, you can use :func:`get_context` to obtain a context object. " -"Context objects have the same API as the multiprocessing module, and allow " -"one to use multiple start methods in the same program. ::" +msgid "Alternatively, you can use :func:`get_context` to obtain a context object. Context objects have the same API as the multiprocessing module, and allow one to use multiple start methods in the same program. ::" msgstr "" -#: ../../library/multiprocessing.rst:225 msgid "" "import multiprocessing as mp\n" "\n" @@ -343,53 +209,27 @@ msgid "" " p.join()" msgstr "" -#: ../../library/multiprocessing.rst:238 -msgid "" -"Note that objects related to one context may not be compatible with " -"processes for a different context. In particular, locks created using the " -"*fork* context cannot be passed to processes started using the *spawn* or " -"*forkserver* start methods." +msgid "Note that objects related to one context may not be compatible with processes for a different context. In particular, locks created using the *fork* context cannot be passed to processes started using the *spawn* or *forkserver* start methods." msgstr "" -#: ../../library/multiprocessing.rst:243 -msgid "" -"Libraries using :mod:`!multiprocessing` " -"or :class:`~concurrent.futures.ProcessPoolExecutor` should be designed to " -"allow their users to provide their own multiprocessing context. Using a " -"specific context of your own within a library can lead to incompatibilities " -"with the rest of the library user's application. Always document if your " -"library requires a specific start method." +msgid "Libraries using :mod:`!multiprocessing` or :class:`~concurrent.futures.ProcessPoolExecutor` should be designed to allow their users to provide their own multiprocessing context. Using a specific context of your own within a library can lead to incompatibilities with the rest of the library user's application. Always document if your library requires a specific start method." msgstr "" -#: ../../library/multiprocessing.rst:252 -msgid "" -"The ``'spawn'`` and ``'forkserver'`` start methods generally cannot be used " -"with \"frozen\" executables (i.e., binaries produced by packages like " -"**PyInstaller** and **cx_Freeze**) on POSIX systems. The ``'fork'`` start " -"method may work if code does not use threads." +msgid "The ``'spawn'`` and ``'forkserver'`` start methods generally cannot be used with \"frozen\" executables (i.e., binaries produced by packages like **PyInstaller** and **cx_Freeze**) on POSIX systems. The ``'fork'`` start method may work if code does not use threads." msgstr "" -#: ../../library/multiprocessing.rst:259 msgid "Exchanging objects between processes" msgstr "" -#: ../../library/multiprocessing.rst:261 -msgid "" -":mod:`!multiprocessing` supports two types of communication channel between " -"processes:" +msgid ":mod:`!multiprocessing` supports two types of communication channel between processes:" msgstr "" -#: ../../library/multiprocessing.rst:264 msgid "**Queues**" msgstr "" -#: ../../library/multiprocessing.rst:266 -msgid "" -"The :class:`Queue` class is a near clone of :class:`queue.Queue`. For " -"example::" +msgid "The :class:`Queue` class is a near clone of :class:`queue.Queue`. For example::" msgstr "" -#: ../../library/multiprocessing.rst:269 msgid "" "from multiprocessing import Process, Queue\n" "\n" @@ -404,23 +244,15 @@ msgid "" " p.join()" msgstr "" -#: ../../library/multiprocessing.rst:281 -msgid "" -"Queues are thread and process safe. Any object put into a :mod:`!" -"multiprocessing` queue will be serialized." +msgid "Queues are thread and process safe. Any object put into a :mod:`!multiprocessing` queue will be serialized." msgstr "" -#: ../../library/multiprocessing.rst:284 msgid "**Pipes**" msgstr "" -#: ../../library/multiprocessing.rst:286 -msgid "" -"The :func:`Pipe` function returns a pair of connection objects connected by " -"a pipe which by default is duplex (two-way). For example::" +msgid "The :func:`Pipe` function returns a pair of connection objects connected by a pipe which by default is duplex (two-way). For example::" msgstr "" -#: ../../library/multiprocessing.rst:289 msgid "" "from multiprocessing import Process, Pipe\n" "\n" @@ -436,35 +268,18 @@ msgid "" " p.join()" msgstr "" -#: ../../library/multiprocessing.rst:302 -msgid "" -"The two connection objects returned by :func:`Pipe` represent the two ends " -"of the pipe. Each connection object has :meth:`~Connection.send` " -"and :meth:`~Connection.recv` methods (among others). Note that data in a " -"pipe may become corrupted if two processes (or threads) try to read from or " -"write to the *same* end of the pipe at the same time. Of course there is no " -"risk of corruption from processes using different ends of the pipe at the " -"same time." +msgid "The two connection objects returned by :func:`Pipe` represent the two ends of the pipe. Each connection object has :meth:`~Connection.send` and :meth:`~Connection.recv` methods (among others). Note that data in a pipe may become corrupted if two processes (or threads) try to read from or write to the *same* end of the pipe at the same time. Of course there is no risk of corruption from processes using different ends of the pipe at the same time." msgstr "" -#: ../../library/multiprocessing.rst:310 -msgid "" -"The :meth:`~Connection.send` method serializes the object " -"and :meth:`~Connection.recv` re-creates the object." +msgid "The :meth:`~Connection.send` method serializes the object and :meth:`~Connection.recv` re-creates the object." msgstr "" -#: ../../library/multiprocessing.rst:314 msgid "Synchronization between processes" msgstr "" -#: ../../library/multiprocessing.rst:316 -msgid "" -":mod:`!multiprocessing` contains equivalents of all the synchronization " -"primitives from :mod:`threading`. For instance one can use a lock to ensure " -"that only one process prints to standard output at a time::" +msgid ":mod:`!multiprocessing` contains equivalents of all the synchronization primitives from :mod:`threading`. For instance one can use a lock to ensure that only one process prints to standard output at a time::" msgstr "" -#: ../../library/multiprocessing.rst:320 msgid "" "from multiprocessing import Process, Lock\n" "\n" @@ -482,40 +297,24 @@ msgid "" " Process(target=f, args=(lock, num)).start()" msgstr "" -#: ../../library/multiprocessing.rst:335 -msgid "" -"Without using the lock output from the different processes is liable to get " -"all mixed up." +msgid "Without using the lock output from the different processes is liable to get all mixed up." msgstr "" -#: ../../library/multiprocessing.rst:340 msgid "Sharing state between processes" msgstr "" -#: ../../library/multiprocessing.rst:342 -msgid "" -"As mentioned above, when doing concurrent programming it is usually best to " -"avoid using shared state as far as possible. This is particularly true when " -"using multiple processes." +msgid "As mentioned above, when doing concurrent programming it is usually best to avoid using shared state as far as possible. This is particularly true when using multiple processes." msgstr "" -#: ../../library/multiprocessing.rst:346 -msgid "" -"However, if you really do need to use some shared data then :mod:`!" -"multiprocessing` provides a couple of ways of doing so." +msgid "However, if you really do need to use some shared data then :mod:`!multiprocessing` provides a couple of ways of doing so." msgstr "" -#: ../../library/multiprocessing.rst:349 msgid "**Shared memory**" msgstr "" -#: ../../library/multiprocessing.rst:351 -msgid "" -"Data can be stored in a shared memory map using :class:`Value` " -"or :class:`Array`. For example, the following code ::" +msgid "Data can be stored in a shared memory map using :class:`Value` or :class:`Array`. For example, the following code ::" msgstr "" -#: ../../library/multiprocessing.rst:354 msgid "" "from multiprocessing import Process, Value, Array\n" "\n" @@ -536,50 +335,29 @@ msgid "" " print(arr[:])" msgstr "" -#: ../../library/multiprocessing.rst:372 ../../library/multiprocessing.rst:422 msgid "will print ::" msgstr "" -#: ../../library/multiprocessing.rst:374 msgid "" "3.1415927\n" "[0, -1, -2, -3, -4, -5, -6, -7, -8, -9]" msgstr "" -#: ../../library/multiprocessing.rst:377 -msgid "" -"The ``'d'`` and ``'i'`` arguments used when creating ``num`` and ``arr`` are " -"typecodes of the kind used by the :mod:`array` module: ``'d'`` indicates a " -"double precision float and ``'i'`` indicates a signed integer. These shared " -"objects will be process and thread-safe." +msgid "The ``'d'`` and ``'i'`` arguments used when creating ``num`` and ``arr`` are typecodes of the kind used by the :mod:`array` module: ``'d'`` indicates a double precision float and ``'i'`` indicates a signed integer. These shared objects will be process and thread-safe." msgstr "" -#: ../../library/multiprocessing.rst:382 -msgid "" -"For more flexibility in using shared memory one can use " -"the :mod:`multiprocessing.sharedctypes` module which supports the creation " -"of arbitrary ctypes objects allocated from shared memory." +msgid "For more flexibility in using shared memory one can use the :mod:`multiprocessing.sharedctypes` module which supports the creation of arbitrary ctypes objects allocated from shared memory." msgstr "" -#: ../../library/multiprocessing.rst:386 msgid "**Server process**" msgstr "" -#: ../../library/multiprocessing.rst:388 -msgid "" -"A manager object returned by :func:`Manager` controls a server process which " -"holds Python objects and allows other processes to manipulate them using " -"proxies." +msgid "A manager object returned by :func:`Manager` controls a server process which holds Python objects and allows other processes to manipulate them using proxies." msgstr "" -#: ../../library/multiprocessing.rst:392 -msgid "" -"A manager returned by :func:`Manager` will support " -"types :class:`list`, :class:`dict`, :class:`set`, :class:`~managers.Namespace`, :class:`Lock`, :class:`RLock`, :class:`Semaphore`, :class:`BoundedSemaphore`, :class:`Condition`, :class:`Event`, :class:`Barrier`, :class:`Queue`, :class:`Value` " -"and :class:`Array`. For example, ::" +msgid "A manager returned by :func:`Manager` will support types :class:`list`, :class:`dict`, :class:`set`, :class:`~managers.Namespace`, :class:`Lock`, :class:`RLock`, :class:`Semaphore`, :class:`BoundedSemaphore`, :class:`Condition`, :class:`Event`, :class:`Barrier`, :class:`Queue`, :class:`Value` and :class:`Array`. For example, ::" msgstr "" -#: ../../library/multiprocessing.rst:398 msgid "" "from multiprocessing import Process, Manager\n" "\n" @@ -606,37 +384,24 @@ msgid "" " print(s)" msgstr "" -#: ../../library/multiprocessing.rst:424 msgid "" "{0.25: None, 1: '1', '2': 2}\n" "[9, 8, 7, 6, 5, 4, 3, 2, 1, 0]\n" "{'a', 'b'}" msgstr "" -#: ../../library/multiprocessing.rst:428 -msgid "" -"Server process managers are more flexible than using shared memory objects " -"because they can be made to support arbitrary object types. Also, a single " -"manager can be shared by processes on different computers over a network. " -"They are, however, slower than using shared memory." +msgid "Server process managers are more flexible than using shared memory objects because they can be made to support arbitrary object types. Also, a single manager can be shared by processes on different computers over a network. They are, however, slower than using shared memory." msgstr "" -#: ../../library/multiprocessing.rst:435 msgid "Using a pool of workers" msgstr "" -#: ../../library/multiprocessing.rst:437 -msgid "" -"The :class:`~multiprocessing.pool.Pool` class represents a pool of worker " -"processes. It has methods which allows tasks to be offloaded to the worker " -"processes in a few different ways." +msgid "The :class:`~multiprocessing.pool.Pool` class represents a pool of worker processes. It has methods which allows tasks to be offloaded to the worker processes in a few different ways." msgstr "" -#: ../../library/multiprocessing.rst:441 msgid "For example::" msgstr "" -#: ../../library/multiprocessing.rst:443 msgid "" "from multiprocessing import Pool, TimeoutError\n" "import time\n" @@ -662,13 +427,10 @@ msgid "" "\n" " # evaluate \"os.getpid()\" asynchronously\n" " res = pool.apply_async(os.getpid, ()) # runs in *only* one process\n" -" print(res.get(timeout=1)) # prints the PID of that " -"process\n" +" print(res.get(timeout=1)) # prints the PID of that process\n" "\n" -" # launching multiple evaluations asynchronously *may* use more " -"processes\n" -" multiple_results = [pool.apply_async(os.getpid, ()) for i in " -"range(4)]\n" +" # launching multiple evaluations asynchronously *may* use more processes\n" +" multiple_results = [pool.apply_async(os.getpid, ()) for i in range(4)]\n" " print([res.get(timeout=1) for res in multiple_results])\n" "\n" " # make a single worker sleep for 10 seconds\n" @@ -676,8 +438,7 @@ msgid "" " try:\n" " print(res.get(timeout=1))\n" " except TimeoutError:\n" -" print(\"We lacked patience and got a " -"multiprocessing.TimeoutError\")\n" +" print(\"We lacked patience and got a multiprocessing.TimeoutError\")\n" "\n" " print(\"For the moment, the pool remains available for more work\")\n" "\n" @@ -685,22 +446,12 @@ msgid "" " print(\"Now the pool is closed and no longer available\")" msgstr "" -#: ../../library/multiprocessing.rst:485 -msgid "" -"Note that the methods of a pool should only ever be used by the process " -"which created it." +msgid "Note that the methods of a pool should only ever be used by the process which created it." msgstr "" -#: ../../library/multiprocessing.rst:490 -msgid "" -"Functionality within this package requires that the ``__main__`` module be " -"importable by the children. This is covered in :ref:`multiprocessing-" -"programming` however it is worth pointing out here. This means that some " -"examples, such as the :class:`multiprocessing.pool.Pool` examples will not " -"work in the interactive interpreter. For example::" +msgid "Functionality within this package requires that the ``__main__`` module be importable by the children. This is covered in :ref:`multiprocessing-programming` however it is worth pointing out here. This means that some examples, such as the :class:`multiprocessing.pool.Pool` examples will not work in the interactive interpreter. For example::" msgstr "" -#: ../../library/multiprocessing.rst:496 msgid "" ">>> from multiprocessing import Pool\n" ">>> p = Pool(5)\n" @@ -715,111 +466,53 @@ msgid "" "Traceback (most recent call last):\n" "Traceback (most recent call last):\n" "Traceback (most recent call last):\n" -"AttributeError: Can't get attribute 'f' on )>\n" -"AttributeError: Can't get attribute 'f' on )>\n" -"AttributeError: Can't get attribute 'f' on )>" +"AttributeError: Can't get attribute 'f' on )>\n" +"AttributeError: Can't get attribute 'f' on )>\n" +"AttributeError: Can't get attribute 'f' on )>" msgstr "" -#: ../../library/multiprocessing.rst:513 -msgid "" -"(If you try this it will actually output three full tracebacks interleaved " -"in a semi-random fashion, and then you may have to stop the parent process " -"somehow.)" +msgid "(If you try this it will actually output three full tracebacks interleaved in a semi-random fashion, and then you may have to stop the parent process somehow.)" msgstr "" -#: ../../library/multiprocessing.rst:519 msgid "Reference" msgstr "" -#: ../../library/multiprocessing.rst:521 -msgid "" -"The :mod:`!multiprocessing` package mostly replicates the API of " -"the :mod:`threading` module." +msgid "The :mod:`!multiprocessing` package mostly replicates the API of the :mod:`threading` module." msgstr "" -#: ../../library/multiprocessing.rst:527 msgid "Global start method" msgstr "" -#: ../../library/multiprocessing.rst:529 -msgid "" -"Python supports several ways to create and initialize a process. The global " -"start method sets the default mechanism for creating a process." +msgid "Python supports several ways to create and initialize a process. The global start method sets the default mechanism for creating a process." msgstr "" -#: ../../library/multiprocessing.rst:532 -msgid "" -"Several multiprocessing functions and methods that may also instantiate " -"certain objects will implicitly set the global start method to the system's " -"default, if it hasn’t been set already. The global start method can only be " -"set once. If you need to change the start method from the system default, " -"you must proactively set the global start method before calling functions or " -"methods, or creating these objects." +msgid "Several multiprocessing functions and methods that may also instantiate certain objects will implicitly set the global start method to the system's default, if it hasn’t been set already. The global start method can only be set once. If you need to change the start method from the system default, you must proactively set the global start method before calling functions or methods, or creating these objects." msgstr "" -#: ../../library/multiprocessing.rst:541 msgid ":class:`Process` and exceptions" msgstr "" -#: ../../library/multiprocessing.rst:546 -msgid "" -"Process objects represent activity that is run in a separate process. " -"The :class:`Process` class has equivalents of all the methods " -"of :class:`threading.Thread`." +msgid "Process objects represent activity that is run in a separate process. The :class:`Process` class has equivalents of all the methods of :class:`threading.Thread`." msgstr "" -#: ../../library/multiprocessing.rst:550 -msgid "" -"The constructor should always be called with keyword arguments. *group* " -"should always be ``None``; it exists solely for compatibility " -"with :class:`threading.Thread`. *target* is the callable object to be " -"invoked by the :meth:`run` method. It defaults to ``None``, meaning nothing " -"is called. *name* is the process name (see :attr:`name` for more details). " -"*args* is the argument tuple for the target invocation. *kwargs* is a " -"dictionary of keyword arguments for the target invocation. If provided, the " -"keyword-only *daemon* argument sets the process :attr:`daemon` flag to " -"``True`` or ``False``. If ``None`` (the default), this flag will be " -"inherited from the creating process." -msgstr "" - -#: ../../library/multiprocessing.rst:561 -msgid "" -"By default, no arguments are passed to *target*. The *args* argument, which " -"defaults to ``()``, can be used to specify a list or tuple of the arguments " -"to pass to *target*." +msgid "The constructor should always be called with keyword arguments. *group* should always be ``None``; it exists solely for compatibility with :class:`threading.Thread`. *target* is the callable object to be invoked by the :meth:`run` method. It defaults to ``None``, meaning nothing is called. *name* is the process name (see :attr:`name` for more details). *args* is the argument tuple for the target invocation. *kwargs* is a dictionary of keyword arguments for the target invocation. If provided, the keyword-only *daemon* argument sets the process :attr:`daemon` flag to ``True`` or ``False``. If ``None`` (the default), this flag will be inherited from the creating process." msgstr "" -#: ../../library/multiprocessing.rst:565 -msgid "" -"If a subclass overrides the constructor, it must make sure it invokes the " -"base class constructor (``super().__init__()``) before doing anything else " -"to the process." +msgid "By default, no arguments are passed to *target*. The *args* argument, which defaults to ``()``, can be used to specify a list or tuple of the arguments to pass to *target*." msgstr "" -#: ../../library/multiprocessing.rst:571 -msgid "" -"In general, all arguments to :class:`Process` must be picklable. This is " -"frequently observed when trying to create a :class:`Process` or use " -"a :class:`concurrent.futures.ProcessPoolExecutor` from a REPL with a locally " -"defined *target* function." +msgid "If a subclass overrides the constructor, it must make sure it invokes the base class constructor (``super().__init__()``) before doing anything else to the process." msgstr "" -#: ../../library/multiprocessing.rst:576 -msgid "" -"Passing a callable object defined in the current REPL session causes the " -"child process to die via an uncaught :exc:`AttributeError` exception when " -"starting as *target* must have been defined within an importable module in " -"order to be loaded during unpickling." +msgid "In general, all arguments to :class:`Process` must be picklable. This is frequently observed when trying to create a :class:`Process` or use a :class:`concurrent.futures.ProcessPoolExecutor` from a REPL with a locally defined *target* function." +msgstr "" + +msgid "Passing a callable object defined in the current REPL session causes the child process to die via an uncaught :exc:`AttributeError` exception when starting as *target* must have been defined within an importable module in order to be loaded during unpickling." msgstr "" -#: ../../library/multiprocessing.rst:581 msgid "Example of this uncatchable error from the child::" msgstr "" -#: ../../library/multiprocessing.rst:583 msgid "" ">>> import multiprocessing as mp\n" ">>> def knigit():\n" @@ -832,45 +525,27 @@ msgid "" " File \".../multiprocessing/spawn.py\", line ..., in _main\n" "AttributeError: module '__main__' has no attribute 'knigit'\n" ">>> process\n" -"" +"" msgstr "" -#: ../../library/multiprocessing.rst:596 -msgid "" -"See :ref:`multiprocessing-programming-spawn`. While this restriction is not " -"true if using the ``\"fork\"`` start method, as of Python ``3.14`` that is " -"no longer the default on any platform. See :ref:`multiprocessing-start-" -"methods`. See also :gh:`132898`." +msgid "See :ref:`multiprocessing-programming-spawn`. While this restriction is not true if using the ``\"fork\"`` start method, as of Python ``3.14`` that is no longer the default on any platform. See :ref:`multiprocessing-start-methods`. See also :gh:`132898`." msgstr "" -#: ../../library/multiprocessing.rst:602 msgid "Added the *daemon* parameter." msgstr "" -#: ../../library/multiprocessing.rst:607 msgid "Method representing the process's activity." msgstr "" -#: ../../library/multiprocessing.rst:609 -msgid "" -"You may override this method in a subclass. The standard :meth:`run` method " -"invokes the callable object passed to the object's constructor as the target " -"argument, if any, with sequential and keyword arguments taken from the " -"*args* and *kwargs* arguments, respectively." +msgid "You may override this method in a subclass. The standard :meth:`run` method invokes the callable object passed to the object's constructor as the target argument, if any, with sequential and keyword arguments taken from the *args* and *kwargs* arguments, respectively." msgstr "" -#: ../../library/multiprocessing.rst:614 -msgid "" -"Using a list or tuple as the *args* argument passed to :class:`Process` " -"achieves the same effect." +msgid "Using a list or tuple as the *args* argument passed to :class:`Process` achieves the same effect." msgstr "" -#: ../../library/multiprocessing.rst:617 msgid "Example::" msgstr "" -#: ../../library/multiprocessing.rst:619 msgid "" ">>> from multiprocessing import Process\n" ">>> p = Process(target=print, args=[1])\n" @@ -881,233 +556,114 @@ msgid "" "1" msgstr "" -#: ../../library/multiprocessing.rst:629 msgid "Start the process's activity." msgstr "" -#: ../../library/multiprocessing.rst:631 -msgid "" -"This must be called at most once per process object. It arranges for the " -"object's :meth:`run` method to be invoked in a separate process." +msgid "This must be called at most once per process object. It arranges for the object's :meth:`run` method to be invoked in a separate process." msgstr "" -#: ../../library/multiprocessing.rst:636 -msgid "" -"If the optional argument *timeout* is ``None`` (the default), the method " -"blocks until the process whose :meth:`join` method is called terminates. If " -"*timeout* is a positive number, it blocks at most *timeout* seconds. Note " -"that the method returns ``None`` if its process terminates or if the method " -"times out. Check the process's :attr:`exitcode` to determine if it " -"terminated." +msgid "If the optional argument *timeout* is ``None`` (the default), the method blocks until the process whose :meth:`join` method is called terminates. If *timeout* is a positive number, it blocks at most *timeout* seconds. Note that the method returns ``None`` if its process terminates or if the method times out. Check the process's :attr:`exitcode` to determine if it terminated." msgstr "" -#: ../../library/multiprocessing.rst:643 msgid "A process can be joined many times." msgstr "" -#: ../../library/multiprocessing.rst:645 -msgid "" -"A process cannot join itself because this would cause a deadlock. It is an " -"error to attempt to join a process before it has been started." +msgid "A process cannot join itself because this would cause a deadlock. It is an error to attempt to join a process before it has been started." msgstr "" -#: ../../library/multiprocessing.rst:650 -msgid "" -"The process's name. The name is a string used for identification purposes " -"only. It has no semantics. Multiple processes may be given the same name." +msgid "The process's name. The name is a string used for identification purposes only. It has no semantics. Multiple processes may be given the same name." msgstr "" -#: ../../library/multiprocessing.rst:654 -msgid "" -"The initial name is set by the constructor. If no explicit name is provided " -"to the constructor, a name of the form 'Process-" -"N\\ :sub:`1`:N\\ :sub:`2`:...:N\\ :sub:`k`' is constructed, where each " -"N\\ :sub:`k` is the N-th child of its parent." +msgid "The initial name is set by the constructor. If no explicit name is provided to the constructor, a name of the form 'Process-N\\ :sub:`1`:N\\ :sub:`2`:...:N\\ :sub:`k`' is constructed, where each N\\ :sub:`k` is the N-th child of its parent." msgstr "" -#: ../../library/multiprocessing.rst:661 msgid "Return whether the process is alive." msgstr "" -#: ../../library/multiprocessing.rst:663 -msgid "" -"Roughly, a process object is alive from the moment the :meth:`start` method " -"returns until the child process terminates." +msgid "Roughly, a process object is alive from the moment the :meth:`start` method returns until the child process terminates." msgstr "" -#: ../../library/multiprocessing.rst:668 -msgid "" -"The process's daemon flag, a Boolean value. This must be set " -"before :meth:`start` is called." +msgid "The process's daemon flag, a Boolean value. This must be set before :meth:`start` is called." msgstr "" -#: ../../library/multiprocessing.rst:671 msgid "The initial value is inherited from the creating process." msgstr "" -#: ../../library/multiprocessing.rst:673 -msgid "" -"When a process exits, it attempts to terminate all of its daemonic child " -"processes." +msgid "When a process exits, it attempts to terminate all of its daemonic child processes." msgstr "" -#: ../../library/multiprocessing.rst:676 -msgid "" -"Note that a daemonic process is not allowed to create child processes. " -"Otherwise a daemonic process would leave its children orphaned if it gets " -"terminated when its parent process exits. Additionally, these are **not** " -"Unix daemons or services, they are normal processes that will be terminated " -"(and not joined) if non-daemonic processes have exited." +msgid "Note that a daemonic process is not allowed to create child processes. Otherwise a daemonic process would leave its children orphaned if it gets terminated when its parent process exits. Additionally, these are **not** Unix daemons or services, they are normal processes that will be terminated (and not joined) if non-daemonic processes have exited." msgstr "" -#: ../../library/multiprocessing.rst:682 -msgid "" -"In addition to the :class:`threading.Thread` API, :class:`Process` objects " -"also support the following attributes and methods:" +msgid "In addition to the :class:`threading.Thread` API, :class:`Process` objects also support the following attributes and methods:" msgstr "" -#: ../../library/multiprocessing.rst:687 -msgid "" -"Return the process ID. Before the process is spawned, this will be ``None``." +msgid "Return the process ID. Before the process is spawned, this will be ``None``." msgstr "" -#: ../../library/multiprocessing.rst:692 -msgid "" -"The child's exit code. This will be ``None`` if the process has not yet " -"terminated." +msgid "The child's exit code. This will be ``None`` if the process has not yet terminated." msgstr "" -#: ../../library/multiprocessing.rst:695 -msgid "" -"If the child's :meth:`run` method returned normally, the exit code will be " -"0. If it terminated via :func:`sys.exit` with an integer argument *N*, the " -"exit code will be *N*." +msgid "If the child's :meth:`run` method returned normally, the exit code will be 0. If it terminated via :func:`sys.exit` with an integer argument *N*, the exit code will be *N*." msgstr "" -#: ../../library/multiprocessing.rst:699 -msgid "" -"If the child terminated due to an exception not caught within :meth:`run`, " -"the exit code will be 1. If it was terminated by signal *N*, the exit code " -"will be the negative value *-N*." +msgid "If the child terminated due to an exception not caught within :meth:`run`, the exit code will be 1. If it was terminated by signal *N*, the exit code will be the negative value *-N*." msgstr "" -#: ../../library/multiprocessing.rst:705 msgid "The process's authentication key (a byte string)." msgstr "" -#: ../../library/multiprocessing.rst:707 -msgid "" -"When :mod:`!multiprocessing` is initialized the main process is assigned a " -"random string using :func:`os.urandom`." +msgid "When :mod:`!multiprocessing` is initialized the main process is assigned a random string using :func:`os.urandom`." msgstr "" -#: ../../library/multiprocessing.rst:710 -msgid "" -"When a :class:`Process` object is created, it will inherit the " -"authentication key of its parent process, although this may be changed by " -"setting :attr:`authkey` to another byte string." +msgid "When a :class:`Process` object is created, it will inherit the authentication key of its parent process, although this may be changed by setting :attr:`authkey` to another byte string." msgstr "" -#: ../../library/multiprocessing.rst:714 msgid "See :ref:`multiprocessing-auth-keys`." msgstr "" -#: ../../library/multiprocessing.rst:718 -msgid "" -"A numeric handle of a system object which will become \"ready\" when the " -"process ends." +msgid "A numeric handle of a system object which will become \"ready\" when the process ends." msgstr "" -#: ../../library/multiprocessing.rst:721 -msgid "" -"You can use this value if you want to wait on several events at once " -"using :func:`multiprocessing.connection.wait`. Otherwise " -"calling :meth:`join` is simpler." +msgid "You can use this value if you want to wait on several events at once using :func:`multiprocessing.connection.wait`. Otherwise calling :meth:`join` is simpler." msgstr "" -#: ../../library/multiprocessing.rst:725 -msgid "" -"On Windows, this is an OS handle usable with the ``WaitForSingleObject`` and " -"``WaitForMultipleObjects`` family of API calls. On POSIX, this is a file " -"descriptor usable with primitives from the :mod:`select` module." +msgid "On Windows, this is an OS handle usable with the ``WaitForSingleObject`` and ``WaitForMultipleObjects`` family of API calls. On POSIX, this is a file descriptor usable with primitives from the :mod:`select` module." msgstr "" -#: ../../library/multiprocessing.rst:733 -msgid "" -"Terminate the process. Works on POSIX using the :py:const:`~signal.SIGINT` " -"signal. Behavior on Windows is undefined." +msgid "Terminate the process. Works on POSIX using the :py:const:`~signal.SIGINT` signal. Behavior on Windows is undefined." msgstr "" -#: ../../library/multiprocessing.rst:736 -msgid "" -"By default, this terminates the child process by " -"raising :exc:`KeyboardInterrupt`. This behavior can be altered by setting " -"the respective signal handler in the child process :func:`signal.signal` " -"for :py:const:`~signal.SIGINT`." +msgid "By default, this terminates the child process by raising :exc:`KeyboardInterrupt`. This behavior can be altered by setting the respective signal handler in the child process :func:`signal.signal` for :py:const:`~signal.SIGINT`." msgstr "" -#: ../../library/multiprocessing.rst:740 -msgid "" -"Note: if the child process catches and discards :exc:`KeyboardInterrupt`, " -"the process will not be terminated." +msgid "Note: if the child process catches and discards :exc:`KeyboardInterrupt`, the process will not be terminated." msgstr "" -#: ../../library/multiprocessing.rst:743 -msgid "" -"Note: the default behavior will also set :attr:`exitcode` to ``1`` as if an " -"uncaught exception was raised in the child process. To have a " -"different :attr:`exitcode` you may simply catch :exc:`KeyboardInterrupt` and " -"call ``exit(your_code)``." +msgid "Note: the default behavior will also set :attr:`exitcode` to ``1`` as if an uncaught exception was raised in the child process. To have a different :attr:`exitcode` you may simply catch :exc:`KeyboardInterrupt` and call ``exit(your_code)``." msgstr "" -#: ../../library/multiprocessing.rst:752 -msgid "" -"Terminate the process. On POSIX this is done using " -"the :py:const:`~signal.SIGTERM` signal; on Windows :c:func:`!" -"TerminateProcess` is used. Note that exit handlers and finally clauses, " -"etc., will not be executed." +msgid "Terminate the process. On POSIX this is done using the :py:const:`~signal.SIGTERM` signal; on Windows :c:func:`!TerminateProcess` is used. Note that exit handlers and finally clauses, etc., will not be executed." msgstr "" -#: ../../library/multiprocessing.rst:756 -msgid "" -"Note that descendant processes of the process will *not* be terminated -- " -"they will simply become orphaned." +msgid "Note that descendant processes of the process will *not* be terminated -- they will simply become orphaned." msgstr "" -#: ../../library/multiprocessing.rst:761 -msgid "" -"If this method is used when the associated process is using a pipe or queue " -"then the pipe or queue is liable to become corrupted and may become unusable " -"by other process. Similarly, if the process has acquired a lock or " -"semaphore etc. then terminating it is liable to cause other processes to " -"deadlock." +msgid "If this method is used when the associated process is using a pipe or queue then the pipe or queue is liable to become corrupted and may become unusable by other process. Similarly, if the process has acquired a lock or semaphore etc. then terminating it is liable to cause other processes to deadlock." msgstr "" -#: ../../library/multiprocessing.rst:769 msgid "Same as :meth:`terminate` but using the ``SIGKILL`` signal on POSIX." msgstr "" -#: ../../library/multiprocessing.rst:775 -msgid "" -"Close the :class:`Process` object, releasing all resources associated with " -"it. :exc:`ValueError` is raised if the underlying process is still " -"running. Once :meth:`close` returns successfully, most other methods and " -"attributes of the :class:`Process` object will raise :exc:`ValueError`." +msgid "Close the :class:`Process` object, releasing all resources associated with it. :exc:`ValueError` is raised if the underlying process is still running. Once :meth:`close` returns successfully, most other methods and attributes of the :class:`Process` object will raise :exc:`ValueError`." msgstr "" -#: ../../library/multiprocessing.rst:783 -msgid "" -"Note that " -"the :meth:`start`, :meth:`join`, :meth:`is_alive`, :meth:`terminate` " -"and :attr:`exitcode` methods should only be called by the process that " -"created the process object." +msgid "Note that the :meth:`start`, :meth:`join`, :meth:`is_alive`, :meth:`terminate` and :attr:`exitcode` methods should only be called by the process that created the process object." msgstr "" -#: ../../library/multiprocessing.rst:787 msgid "Example usage of some of the methods of :class:`Process`:" msgstr "" -#: ../../library/multiprocessing.rst:789 msgid "" ">>> import multiprocessing, time, signal\n" ">>> mp_context = multiprocessing.get_context('spawn')\n" @@ -1125,479 +681,225 @@ msgid "" "True" msgstr "" -#: ../../library/multiprocessing.rst:808 msgid "The base class of all :mod:`!multiprocessing` exceptions." msgstr "" -#: ../../library/multiprocessing.rst:812 -msgid "" -"Exception raised by :meth:`Connection.recv_bytes_into` when the supplied " -"buffer object is too small for the message read." +msgid "Exception raised by :meth:`Connection.recv_bytes_into` when the supplied buffer object is too small for the message read." msgstr "" -#: ../../library/multiprocessing.rst:815 -msgid "" -"If ``e`` is an instance of :exc:`BufferTooShort` then ``e.args[0]`` will " -"give the message as a byte string." +msgid "If ``e`` is an instance of :exc:`BufferTooShort` then ``e.args[0]`` will give the message as a byte string." msgstr "" -#: ../../library/multiprocessing.rst:820 msgid "Raised when there is an authentication error." msgstr "" -#: ../../library/multiprocessing.rst:824 msgid "Raised by methods with a timeout when the timeout expires." msgstr "" -#: ../../library/multiprocessing.rst:827 msgid "Pipes and Queues" msgstr "" -#: ../../library/multiprocessing.rst:829 -msgid "" -"When using multiple processes, one generally uses message passing for " -"communication between processes and avoids having to use any synchronization " -"primitives like locks." +msgid "When using multiple processes, one generally uses message passing for communication between processes and avoids having to use any synchronization primitives like locks." msgstr "" -#: ../../library/multiprocessing.rst:833 -msgid "" -"For passing messages one can use :func:`Pipe` (for a connection between two " -"processes) or a queue (which allows multiple producers and consumers)." +msgid "For passing messages one can use :func:`Pipe` (for a connection between two processes) or a queue (which allows multiple producers and consumers)." msgstr "" -#: ../../library/multiprocessing.rst:836 -msgid "" -"The :class:`Queue`, :class:`SimpleQueue` and :class:`JoinableQueue` types " -"are multi-producer, multi-consumer :abbr:`FIFO (first-in, first-out)` queues " -"modelled on the :class:`queue.Queue` class in the standard library. They " -"differ in that :class:`Queue` lacks the :meth:`~queue.Queue.task_done` " -"and :meth:`~queue.Queue.join` methods introduced into Python " -"2.5's :class:`queue.Queue` class." +msgid "The :class:`Queue`, :class:`SimpleQueue` and :class:`JoinableQueue` types are multi-producer, multi-consumer :abbr:`FIFO (first-in, first-out)` queues modelled on the :class:`queue.Queue` class in the standard library. They differ in that :class:`Queue` lacks the :meth:`~queue.Queue.task_done` and :meth:`~queue.Queue.join` methods introduced into Python 2.5's :class:`queue.Queue` class." msgstr "" -#: ../../library/multiprocessing.rst:843 -msgid "" -"If you use :class:`JoinableQueue` then you **must** " -"call :meth:`JoinableQueue.task_done` for each task removed from the queue or " -"else the semaphore used to count the number of unfinished tasks may " -"eventually overflow, raising an exception." +msgid "If you use :class:`JoinableQueue` then you **must** call :meth:`JoinableQueue.task_done` for each task removed from the queue or else the semaphore used to count the number of unfinished tasks may eventually overflow, raising an exception." msgstr "" -#: ../../library/multiprocessing.rst:848 -msgid "" -"One difference from other Python queue implementations, is that :mod:`!" -"multiprocessing` queues serializes all objects that are put into them " -"using :mod:`pickle`. The object returned by the get method is a re-created " -"object that does not share memory with the original object." +msgid "One difference from other Python queue implementations, is that :mod:`!multiprocessing` queues serializes all objects that are put into them using :mod:`pickle`. The object returned by the get method is a re-created object that does not share memory with the original object." msgstr "" -#: ../../library/multiprocessing.rst:853 -msgid "" -"Note that one can also create a shared queue by using a manager object -- " -"see :ref:`multiprocessing-managers`." +msgid "Note that one can also create a shared queue by using a manager object -- see :ref:`multiprocessing-managers`." msgstr "" -#: ../../library/multiprocessing.rst:858 -msgid "" -":mod:`!multiprocessing` uses the usual :exc:`queue.Empty` " -"and :exc:`queue.Full` exceptions to signal a timeout. They are not " -"available in the :mod:`!multiprocessing` namespace so you need to import " -"them from :mod:`queue`." +msgid ":mod:`!multiprocessing` uses the usual :exc:`queue.Empty` and :exc:`queue.Full` exceptions to signal a timeout. They are not available in the :mod:`!multiprocessing` namespace so you need to import them from :mod:`queue`." msgstr "" -#: ../../library/multiprocessing.rst:865 -msgid "" -"When an object is put on a queue, the object is pickled and a background " -"thread later flushes the pickled data to an underlying pipe. This has some " -"consequences which are a little surprising, but should not cause any " -"practical difficulties -- if they really bother you then you can instead use " -"a queue created with a :ref:`manager `." +msgid "When an object is put on a queue, the object is pickled and a background thread later flushes the pickled data to an underlying pipe. This has some consequences which are a little surprising, but should not cause any practical difficulties -- if they really bother you then you can instead use a queue created with a :ref:`manager `." msgstr "" -#: ../../library/multiprocessing.rst:872 -msgid "" -"After putting an object on an empty queue there may be an infinitesimal " -"delay before the queue's :meth:`~Queue.empty` method returns :const:`False` " -"and :meth:`~Queue.get_nowait` can return without raising :exc:`queue.Empty`." +msgid "After putting an object on an empty queue there may be an infinitesimal delay before the queue's :meth:`~Queue.empty` method returns :const:`False` and :meth:`~Queue.get_nowait` can return without raising :exc:`queue.Empty`." msgstr "" -#: ../../library/multiprocessing.rst:877 -msgid "" -"If multiple processes are enqueuing objects, it is possible for the objects " -"to be received at the other end out-of-order. However, objects enqueued by " -"the same process will always be in the expected order with respect to each " -"other." +msgid "If multiple processes are enqueuing objects, it is possible for the objects to be received at the other end out-of-order. However, objects enqueued by the same process will always be in the expected order with respect to each other." msgstr "" -#: ../../library/multiprocessing.rst:884 -msgid "" -"If a process is killed using :meth:`Process.terminate` or :func:`os.kill` " -"while it is trying to use a :class:`Queue`, then the data in the queue is " -"likely to become corrupted. This may cause any other process to get an " -"exception when it tries to use the queue later on." +msgid "If a process is killed using :meth:`Process.terminate` or :func:`os.kill` while it is trying to use a :class:`Queue`, then the data in the queue is likely to become corrupted. This may cause any other process to get an exception when it tries to use the queue later on." msgstr "" -#: ../../library/multiprocessing.rst:891 -msgid "" -"As mentioned above, if a child process has put items on a queue (and it has " -"not used :meth:`JoinableQueue.cancel_join_thread " -"`), then that process will not " -"terminate until all buffered items have been flushed to the pipe." +msgid "As mentioned above, if a child process has put items on a queue (and it has not used :meth:`JoinableQueue.cancel_join_thread `), then that process will not terminate until all buffered items have been flushed to the pipe." msgstr "" -#: ../../library/multiprocessing.rst:896 -msgid "" -"This means that if you try joining that process you may get a deadlock " -"unless you are sure that all items which have been put on the queue have " -"been consumed. Similarly, if the child process is non-daemonic then the " -"parent process may hang on exit when it tries to join all its non-daemonic " -"children." +msgid "This means that if you try joining that process you may get a deadlock unless you are sure that all items which have been put on the queue have been consumed. Similarly, if the child process is non-daemonic then the parent process may hang on exit when it tries to join all its non-daemonic children." msgstr "" -#: ../../library/multiprocessing.rst:901 -msgid "" -"Note that a queue created using a manager does not have this issue. " -"See :ref:`multiprocessing-programming`." +msgid "Note that a queue created using a manager does not have this issue. See :ref:`multiprocessing-programming`." msgstr "" -#: ../../library/multiprocessing.rst:904 -msgid "" -"For an example of the usage of queues for interprocess communication " -"see :ref:`multiprocessing-examples`." +msgid "For an example of the usage of queues for interprocess communication see :ref:`multiprocessing-examples`." msgstr "" -#: ../../library/multiprocessing.rst:910 -msgid "" -"Returns a pair ``(conn1, conn2)`` " -"of :class:`~multiprocessing.connection.Connection` objects representing the " -"ends of a pipe." +msgid "Returns a pair ``(conn1, conn2)`` of :class:`~multiprocessing.connection.Connection` objects representing the ends of a pipe." msgstr "" -#: ../../library/multiprocessing.rst:914 -msgid "" -"If *duplex* is ``True`` (the default) then the pipe is bidirectional. If " -"*duplex* is ``False`` then the pipe is unidirectional: ``conn1`` can only be " -"used for receiving messages and ``conn2`` can only be used for sending " -"messages." +msgid "If *duplex* is ``True`` (the default) then the pipe is bidirectional. If *duplex* is ``False`` then the pipe is unidirectional: ``conn1`` can only be used for receiving messages and ``conn2`` can only be used for sending messages." msgstr "" -#: ../../library/multiprocessing.rst:919 -msgid "" -"The :meth:`~multiprocessing.Connection.send` method serializes the object " -"using :mod:`pickle` and the :meth:`~multiprocessing.Connection.recv` re-" -"creates the object." +msgid "The :meth:`~multiprocessing.Connection.send` method serializes the object using :mod:`pickle` and the :meth:`~multiprocessing.Connection.recv` re-creates the object." msgstr "" -#: ../../library/multiprocessing.rst:924 -msgid "" -"Returns a process shared queue implemented using a pipe and a few locks/" -"semaphores. When a process first puts an item on the queue a feeder thread " -"is started which transfers objects from a buffer into the pipe." -msgstr "" - -#: ../../library/multiprocessing.rst:928 ../../library/multiprocessing.rst:1047 -#: ../../library/multiprocessing.rst:1080 -#: ../../library/multiprocessing.rst:1436 -#: ../../library/multiprocessing.rst:1446 -#: ../../library/multiprocessing.rst:1469 -#: ../../library/multiprocessing.rst:1479 -#: ../../library/multiprocessing.rst:1496 -#: ../../library/multiprocessing.rst:1556 -#: ../../library/multiprocessing.rst:1618 -msgid "" -"Instantiating this class may set the global start method. See :ref:`global-" -"start-method` for more details." +msgid "Returns a process shared queue implemented using a pipe and a few locks/semaphores. When a process first puts an item on the queue a feeder thread is started which transfers objects from a buffer into the pipe." msgstr "" -#: ../../library/multiprocessing.rst:931 -msgid "" -"The usual :exc:`queue.Empty` and :exc:`queue.Full` exceptions from the " -"standard library's :mod:`queue` module are raised to signal timeouts." +msgid "Instantiating this class may set the global start method. See :ref:`global-start-method` for more details." msgstr "" -#: ../../library/multiprocessing.rst:934 -msgid "" -":class:`Queue` implements all the methods of :class:`queue.Queue` except " -"for :meth:`~queue.Queue.task_done`, :meth:`~queue.Queue.join`, " -"and :meth:`~queue.Queue.shutdown`." +msgid "The usual :exc:`queue.Empty` and :exc:`queue.Full` exceptions from the standard library's :mod:`queue` module are raised to signal timeouts." msgstr "" -#: ../../library/multiprocessing.rst:940 -msgid "" -"Return the approximate size of the queue. Because of multithreading/" -"multiprocessing semantics, this number is not reliable." +msgid ":class:`Queue` implements all the methods of :class:`queue.Queue` except for :meth:`~queue.Queue.task_done`, :meth:`~queue.Queue.join`, and :meth:`~queue.Queue.shutdown`." msgstr "" -#: ../../library/multiprocessing.rst:943 ../../library/multiprocessing.rst:1629 -msgid "" -"Note that this may raise :exc:`NotImplementedError` on platforms like macOS " -"where ``sem_getvalue()`` is not implemented." +msgid "Return the approximate size of the queue. Because of multithreading/multiprocessing semantics, this number is not reliable." msgstr "" -#: ../../library/multiprocessing.rst:948 -msgid "" -"Return ``True`` if the queue is empty, ``False`` otherwise. Because of " -"multithreading/multiprocessing semantics, this is not reliable." +msgid "Note that this may raise :exc:`NotImplementedError` on platforms like macOS where ``sem_getvalue()`` is not implemented." +msgstr "" + +msgid "Return ``True`` if the queue is empty, ``False`` otherwise. Because of multithreading/multiprocessing semantics, this is not reliable." msgstr "" -#: ../../library/multiprocessing.rst:951 msgid "May raise an :exc:`OSError` on closed queues. (not guaranteed)" msgstr "" -#: ../../library/multiprocessing.rst:955 -msgid "" -"Return ``True`` if the queue is full, ``False`` otherwise. Because of " -"multithreading/multiprocessing semantics, this is not reliable." +msgid "Return ``True`` if the queue is full, ``False`` otherwise. Because of multithreading/multiprocessing semantics, this is not reliable." msgstr "" -#: ../../library/multiprocessing.rst:960 -msgid "" -"Put obj into the queue. If the optional argument *block* is ``True`` (the " -"default) and *timeout* is ``None`` (the default), block if necessary until a " -"free slot is available. If *timeout* is a positive number, it blocks at " -"most *timeout* seconds and raises the :exc:`queue.Full` exception if no free " -"slot was available within that time. Otherwise (*block* is ``False``), put " -"an item on the queue if a free slot is immediately available, else raise " -"the :exc:`queue.Full` exception (*timeout* is ignored in that case)." +msgid "Put obj into the queue. If the optional argument *block* is ``True`` (the default) and *timeout* is ``None`` (the default), block if necessary until a free slot is available. If *timeout* is a positive number, it blocks at most *timeout* seconds and raises the :exc:`queue.Full` exception if no free slot was available within that time. Otherwise (*block* is ``False``), put an item on the queue if a free slot is immediately available, else raise the :exc:`queue.Full` exception (*timeout* is ignored in that case)." msgstr "" -#: ../../library/multiprocessing.rst:969 -msgid "" -"If the queue is closed, :exc:`ValueError` is raised instead " -"of :exc:`AssertionError`." +msgid "If the queue is closed, :exc:`ValueError` is raised instead of :exc:`AssertionError`." msgstr "" -#: ../../library/multiprocessing.rst:975 msgid "Equivalent to ``put(obj, False)``." msgstr "" -#: ../../library/multiprocessing.rst:979 -msgid "" -"Remove and return an item from the queue. If optional args *block* is " -"``True`` (the default) and *timeout* is ``None`` (the default), block if " -"necessary until an item is available. If *timeout* is a positive number, it " -"blocks at most *timeout* seconds and raises the :exc:`queue.Empty` exception " -"if no item was available within that time. Otherwise (block is ``False``), " -"return an item if one is immediately available, else raise " -"the :exc:`queue.Empty` exception (*timeout* is ignored in that case)." +msgid "Remove and return an item from the queue. If optional args *block* is ``True`` (the default) and *timeout* is ``None`` (the default), block if necessary until an item is available. If *timeout* is a positive number, it blocks at most *timeout* seconds and raises the :exc:`queue.Empty` exception if no item was available within that time. Otherwise (block is ``False``), return an item if one is immediately available, else raise the :exc:`queue.Empty` exception (*timeout* is ignored in that case)." msgstr "" -#: ../../library/multiprocessing.rst:987 -msgid "" -"If the queue is closed, :exc:`ValueError` is raised instead " -"of :exc:`OSError`." +msgid "If the queue is closed, :exc:`ValueError` is raised instead of :exc:`OSError`." msgstr "" -#: ../../library/multiprocessing.rst:993 msgid "Equivalent to ``get(False)``." msgstr "" -#: ../../library/multiprocessing.rst:995 -msgid "" -":class:`multiprocessing.Queue` has a few additional methods not found " -"in :class:`queue.Queue`. These methods are usually unnecessary for most " -"code:" +msgid ":class:`multiprocessing.Queue` has a few additional methods not found in :class:`queue.Queue`. These methods are usually unnecessary for most code:" msgstr "" -#: ../../library/multiprocessing.rst:1001 -#: ../../library/multiprocessing.rst:1052 msgid "Close the queue: release internal resources." msgstr "" -#: ../../library/multiprocessing.rst:1003 -msgid "" -"A queue must not be used anymore after it is closed. For " -"example, :meth:`~Queue.get`, :meth:`~Queue.put` and :meth:`~Queue.empty` " -"methods must no longer be called." +msgid "A queue must not be used anymore after it is closed. For example, :meth:`~Queue.get`, :meth:`~Queue.put` and :meth:`~Queue.empty` methods must no longer be called." msgstr "" -#: ../../library/multiprocessing.rst:1007 -msgid "" -"The background thread will quit once it has flushed all buffered data to the " -"pipe. This is called automatically when the queue is garbage collected." +msgid "The background thread will quit once it has flushed all buffered data to the pipe. This is called automatically when the queue is garbage collected." msgstr "" -#: ../../library/multiprocessing.rst:1013 -msgid "" -"Join the background thread. This can only be used after :meth:`close` has " -"been called. It blocks until the background thread exits, ensuring that all " -"data in the buffer has been flushed to the pipe." +msgid "Join the background thread. This can only be used after :meth:`close` has been called. It blocks until the background thread exits, ensuring that all data in the buffer has been flushed to the pipe." msgstr "" -#: ../../library/multiprocessing.rst:1017 -msgid "" -"By default if a process is not the creator of the queue then on exit it will " -"attempt to join the queue's background thread. The process can " -"call :meth:`cancel_join_thread` to make :meth:`join_thread` do nothing." +msgid "By default if a process is not the creator of the queue then on exit it will attempt to join the queue's background thread. The process can call :meth:`cancel_join_thread` to make :meth:`join_thread` do nothing." msgstr "" -#: ../../library/multiprocessing.rst:1023 -msgid "" -"Prevent :meth:`join_thread` from blocking. In particular, this prevents the " -"background thread from being joined automatically when the process exits -- " -"see :meth:`join_thread`." +msgid "Prevent :meth:`join_thread` from blocking. In particular, this prevents the background thread from being joined automatically when the process exits -- see :meth:`join_thread`." msgstr "" -#: ../../library/multiprocessing.rst:1027 -msgid "" -"A better name for this method might be ``allow_exit_without_flush()``. It " -"is likely to cause enqueued data to be lost, and you almost certainly will " -"not need to use it. It is really only there if you need the current process " -"to exit immediately without waiting to flush enqueued data to the underlying " -"pipe, and you don't care about lost data." +msgid "A better name for this method might be ``allow_exit_without_flush()``. It is likely to cause enqueued data to be lost, and you almost certainly will not need to use it. It is really only there if you need the current process to exit immediately without waiting to flush enqueued data to the underlying pipe, and you don't care about lost data." msgstr "" -#: ../../library/multiprocessing.rst:1036 -msgid "" -"This class's functionality requires a functioning shared semaphore " -"implementation on the host operating system. Without one, the functionality " -"in this class will be disabled, and attempts to instantiate a :class:`Queue` " -"will result in an :exc:`ImportError`. See :issue:`3770` for additional " -"information. The same holds true for any of the specialized queue types " -"listed below." +msgid "This class's functionality requires a functioning shared semaphore implementation on the host operating system. Without one, the functionality in this class will be disabled, and attempts to instantiate a :class:`Queue` will result in an :exc:`ImportError`. See :issue:`3770` for additional information. The same holds true for any of the specialized queue types listed below." msgstr "" -#: ../../library/multiprocessing.rst:1045 -msgid "" -"It is a simplified :class:`Queue` type, very close to a locked :class:`Pipe`." +msgid "It is a simplified :class:`Queue` type, very close to a locked :class:`Pipe`." msgstr "" -#: ../../library/multiprocessing.rst:1054 -msgid "" -"A queue must not be used anymore after it is closed. For " -"example, :meth:`get`, :meth:`put` and :meth:`empty` methods must no longer " -"be called." +msgid "A queue must not be used anymore after it is closed. For example, :meth:`get`, :meth:`put` and :meth:`empty` methods must no longer be called." msgstr "" -#: ../../library/multiprocessing.rst:1062 msgid "Return ``True`` if the queue is empty, ``False`` otherwise." msgstr "" -#: ../../library/multiprocessing.rst:1064 msgid "Always raises an :exc:`OSError` if the SimpleQueue is closed." msgstr "" -#: ../../library/multiprocessing.rst:1068 msgid "Remove and return an item from the queue." msgstr "" -#: ../../library/multiprocessing.rst:1072 msgid "Put *item* into the queue." msgstr "" -#: ../../library/multiprocessing.rst:1077 -msgid "" -":class:`JoinableQueue`, a :class:`Queue` subclass, is a queue which " -"additionally has :meth:`task_done` and :meth:`join` methods." +msgid ":class:`JoinableQueue`, a :class:`Queue` subclass, is a queue which additionally has :meth:`task_done` and :meth:`join` methods." msgstr "" -#: ../../library/multiprocessing.rst:1085 -msgid "" -"Indicate that a formerly enqueued task is complete. Used by queue " -"consumers. For each :meth:`~Queue.get` used to fetch a task, a subsequent " -"call to :meth:`task_done` tells the queue that the processing on the task is " -"complete." +msgid "Indicate that a formerly enqueued task is complete. Used by queue consumers. For each :meth:`~Queue.get` used to fetch a task, a subsequent call to :meth:`task_done` tells the queue that the processing on the task is complete." msgstr "" -#: ../../library/multiprocessing.rst:1090 -msgid "" -"If a :meth:`~queue.Queue.join` is currently blocking, it will resume when " -"all items have been processed (meaning that a :meth:`task_done` call was " -"received for every item that had been :meth:`~Queue.put` into the queue)." +msgid "If a :meth:`~queue.Queue.join` is currently blocking, it will resume when all items have been processed (meaning that a :meth:`task_done` call was received for every item that had been :meth:`~Queue.put` into the queue)." msgstr "" -#: ../../library/multiprocessing.rst:1094 -msgid "" -"Raises a :exc:`ValueError` if called more times than there were items placed " -"in the queue." +msgid "Raises a :exc:`ValueError` if called more times than there were items placed in the queue." msgstr "" -#: ../../library/multiprocessing.rst:1100 msgid "Block until all items in the queue have been gotten and processed." msgstr "" -#: ../../library/multiprocessing.rst:1102 -msgid "" -"The count of unfinished tasks goes up whenever an item is added to the " -"queue. The count goes down whenever a consumer calls :meth:`task_done` to " -"indicate that the item was retrieved and all work on it is complete. When " -"the count of unfinished tasks drops to zero, :meth:`~queue.Queue.join` " -"unblocks." +msgid "The count of unfinished tasks goes up whenever an item is added to the queue. The count goes down whenever a consumer calls :meth:`task_done` to indicate that the item was retrieved and all work on it is complete. When the count of unfinished tasks drops to zero, :meth:`~queue.Queue.join` unblocks." msgstr "" -#: ../../library/multiprocessing.rst:1110 msgid "Miscellaneous" msgstr "" -#: ../../library/multiprocessing.rst:1114 msgid "Return list of all live children of the current process." msgstr "" -#: ../../library/multiprocessing.rst:1116 -msgid "" -"Calling this has the side effect of \"joining\" any processes which have " -"already finished." +msgid "Calling this has the side effect of \"joining\" any processes which have already finished." msgstr "" -#: ../../library/multiprocessing.rst:1121 msgid "Return the number of CPUs in the system." msgstr "" -#: ../../library/multiprocessing.rst:1123 -msgid "" -"This number is not equivalent to the number of CPUs the current process can " -"use. The number of usable CPUs can be obtained " -"with :func:`os.process_cpu_count` (or ``len(os.sched_getaffinity(0))``)." +msgid "This number is not equivalent to the number of CPUs the current process can use. The number of usable CPUs can be obtained with :func:`os.process_cpu_count` (or ``len(os.sched_getaffinity(0))``)." msgstr "" -#: ../../library/multiprocessing.rst:1127 -msgid "" -"When the number of CPUs cannot be determined a :exc:`NotImplementedError` is " -"raised." +msgid "When the number of CPUs cannot be determined a :exc:`NotImplementedError` is raised." msgstr "" -#: ../../library/multiprocessing.rst:1131 msgid ":func:`os.cpu_count` :func:`os.process_cpu_count`" msgstr "" -#: ../../library/multiprocessing.rst:1136 -msgid "" -"The return value can also be overridden using the :option:`-X cpu_count <-" -"X>` flag or :envvar:`PYTHON_CPU_COUNT` as this is merely a wrapper around " -"the :mod:`os` cpu count APIs." +msgid "The return value can also be overridden using the :option:`-X cpu_count <-X>` flag or :envvar:`PYTHON_CPU_COUNT` as this is merely a wrapper around the :mod:`os` cpu count APIs." msgstr "" -#: ../../library/multiprocessing.rst:1142 -msgid "" -"Return the :class:`Process` object corresponding to the current process." +msgid "Return the :class:`Process` object corresponding to the current process." msgstr "" -#: ../../library/multiprocessing.rst:1144 msgid "An analogue of :func:`threading.current_thread`." msgstr "" -#: ../../library/multiprocessing.rst:1148 -msgid "" -"Return the :class:`Process` object corresponding to the parent process of " -"the :func:`current_process`. For the main process, ``parent_process`` will " -"be ``None``." +msgid "Return the :class:`Process` object corresponding to the parent process of the :func:`current_process`. For the main process, ``parent_process`` will be ``None``." msgstr "" -#: ../../library/multiprocessing.rst:1156 -msgid "" -"Add support for when a program which uses :mod:`!multiprocessing` has been " -"frozen to produce an executable. (Has been tested with **py2exe**, " -"**PyInstaller** and **cx_Freeze**.)" +msgid "Add support for when a program which uses :mod:`!multiprocessing` has been frozen to produce an executable. (Has been tested with **py2exe**, **PyInstaller** and **cx_Freeze**.)" msgstr "" -#: ../../library/multiprocessing.rst:1160 -msgid "" -"One needs to call this function straight after the ``if __name__ == " -"'__main__'`` line of the main module. For example::" +msgid "One needs to call this function straight after the ``if __name__ == '__main__'`` line of the main module. For example::" msgstr "" -#: ../../library/multiprocessing.rst:1163 msgid "" "from multiprocessing import Process, freeze_support\n" "\n" @@ -1609,277 +911,138 @@ msgid "" " Process(target=f).start()" msgstr "" -#: ../../library/multiprocessing.rst:1172 -msgid "" -"If the ``freeze_support()`` line is omitted then trying to run the frozen " -"executable will raise :exc:`RuntimeError`." +msgid "If the ``freeze_support()`` line is omitted then trying to run the frozen executable will raise :exc:`RuntimeError`." msgstr "" -#: ../../library/multiprocessing.rst:1175 -msgid "" -"Calling ``freeze_support()`` has no effect when the start method is not " -"*spawn*. In addition, if the module is being run normally by the Python " -"interpreter (the program has not been frozen), then ``freeze_support()`` has " -"no effect." +msgid "Calling ``freeze_support()`` has no effect when the start method is not *spawn*. In addition, if the module is being run normally by the Python interpreter (the program has not been frozen), then ``freeze_support()`` has no effect." msgstr "" -#: ../../library/multiprocessing.rst:1182 -msgid "" -"Returns a list of the supported start methods, the first of which is the " -"default. The possible start methods are ``'fork'``, ``'spawn'`` and " -"``'forkserver'``. Not all platforms support all methods. " -"See :ref:`multiprocessing-start-methods`." +msgid "Returns a list of the supported start methods, the first of which is the default. The possible start methods are ``'fork'``, ``'spawn'`` and ``'forkserver'``. Not all platforms support all methods. See :ref:`multiprocessing-start-methods`." msgstr "" -#: ../../library/multiprocessing.rst:1191 -msgid "" -"Return a context object which has the same attributes as the :mod:`!" -"multiprocessing` module." +msgid "Return a context object which has the same attributes as the :mod:`!multiprocessing` module." msgstr "" -#: ../../library/multiprocessing.rst:1194 -msgid "" -"If *method* is ``None`` then the default context is returned. Note that if " -"the global start method has not been set, this will set it to the system " -"default See :ref:`global-start-method` for more details. Otherwise *method* " -"should be ``'fork'``, ``'spawn'``, ``'forkserver'``. :exc:`ValueError` is " -"raised if the specified start method is not available. " -"See :ref:`multiprocessing-start-methods`." +msgid "If *method* is ``None`` then the default context is returned. Note that if the global start method has not been set, this will set it to the system default See :ref:`global-start-method` for more details. Otherwise *method* should be ``'fork'``, ``'spawn'``, ``'forkserver'``. :exc:`ValueError` is raised if the specified start method is not available. See :ref:`multiprocessing-start-methods`." msgstr "" -#: ../../library/multiprocessing.rst:1205 msgid "Return the name of start method used for starting processes." msgstr "" -#: ../../library/multiprocessing.rst:1207 -msgid "" -"If the global start method is not set and *allow_none* is ``False``, the " -"global start method is set to the default, and its name is returned. " -"See :ref:`global-start-method` for more details." +msgid "If the global start method is not set and *allow_none* is ``False``, the global start method is set to the default, and its name is returned. See :ref:`global-start-method` for more details." msgstr "" -#: ../../library/multiprocessing.rst:1211 -msgid "" -"The return value can be ``'fork'``, ``'spawn'``, ``'forkserver'`` or " -"``None``. See :ref:`multiprocessing-start-methods`." +msgid "The return value can be ``'fork'``, ``'spawn'``, ``'forkserver'`` or ``None``. See :ref:`multiprocessing-start-methods`." msgstr "" -#: ../../library/multiprocessing.rst:1218 -msgid "" -"On macOS, the *spawn* start method is now the default. The *fork* start " -"method should be considered unsafe as it can lead to crashes of the " -"subprocess. See :issue:`33725`." +msgid "On macOS, the *spawn* start method is now the default. The *fork* start method should be considered unsafe as it can lead to crashes of the subprocess. See :issue:`33725`." msgstr "" -#: ../../library/multiprocessing.rst:1224 -msgid "" -"Set the path of the Python interpreter to use when starting a child process. " -"(By default :data:`sys.executable` is used). Embedders will probably need " -"to do something like ::" +msgid "Set the path of the Python interpreter to use when starting a child process. (By default :data:`sys.executable` is used). Embedders will probably need to do something like ::" msgstr "" -#: ../../library/multiprocessing.rst:1228 msgid "set_executable(os.path.join(sys.exec_prefix, 'pythonw.exe'))" msgstr "" -#: ../../library/multiprocessing.rst:1230 msgid "before they can create child processes." msgstr "" -#: ../../library/multiprocessing.rst:1232 msgid "Now supported on POSIX when the ``'spawn'`` start method is used." msgstr "" -#: ../../library/multiprocessing.rst:1235 msgid "Accepts a :term:`path-like object`." msgstr "" -#: ../../library/multiprocessing.rst:1240 -msgid "" -"Set a list of module names for the forkserver main process to attempt to " -"import so that their already imported state is inherited by forked " -"processes. Any :exc:`ImportError` when doing so is silently ignored. This " -"can be used as a performance enhancement to avoid repeated work in every " -"process." +msgid "Set a list of module names for the forkserver main process to attempt to import so that their already imported state is inherited by forked processes. Any :exc:`ImportError` when doing so is silently ignored. This can be used as a performance enhancement to avoid repeated work in every process." msgstr "" -#: ../../library/multiprocessing.rst:1246 -msgid "" -"For this to work, it must be called before the forkserver process has been " -"launched (before creating a :class:`Pool` or starting a :class:`Process`)." +msgid "For this to work, it must be called before the forkserver process has been launched (before creating a :class:`Pool` or starting a :class:`Process`)." msgstr "" -#: ../../library/multiprocessing.rst:1249 -msgid "" -"Only meaningful when using the ``'forkserver'`` start method. " -"See :ref:`multiprocessing-start-methods`." +msgid "Only meaningful when using the ``'forkserver'`` start method. See :ref:`multiprocessing-start-methods`." msgstr "" -#: ../../library/multiprocessing.rst:1256 -msgid "" -"Set the method which should be used to start child processes. The *method* " -"argument can be ``'fork'``, ``'spawn'`` or ``'forkserver'``. " -"Raises :exc:`RuntimeError` if the start method has already been set and " -"*force* is not ``True``. If *method* is ``None`` and *force* is ``True`` " -"then the start method is set to ``None``. If *method* is ``None`` and " -"*force* is ``False`` then the context is set to the default context." +msgid "Set the method which should be used to start child processes. The *method* argument can be ``'fork'``, ``'spawn'`` or ``'forkserver'``. Raises :exc:`RuntimeError` if the start method has already been set and *force* is not ``True``. If *method* is ``None`` and *force* is ``True`` then the start method is set to ``None``. If *method* is ``None`` and *force* is ``False`` then the context is set to the default context." msgstr "" -#: ../../library/multiprocessing.rst:1263 -msgid "" -"Note that this should be called at most once, and it should be protected " -"inside the ``if __name__ == '__main__'`` clause of the main module." +msgid "Note that this should be called at most once, and it should be protected inside the ``if __name__ == '__main__'`` clause of the main module." msgstr "" -#: ../../library/multiprocessing.rst:1267 msgid "See :ref:`multiprocessing-start-methods`." msgstr "" -#: ../../library/multiprocessing.rst:1273 -msgid "" -":mod:`!multiprocessing` contains no analogues " -"of :func:`threading.active_count`, :func:`threading.enumerate`, :func:`threading.settrace`, :func:`threading.setprofile`, :class:`threading.Timer`, " -"or :class:`threading.local`." +msgid ":mod:`!multiprocessing` contains no analogues of :func:`threading.active_count`, :func:`threading.enumerate`, :func:`threading.settrace`, :func:`threading.setprofile`, :class:`threading.Timer`, or :class:`threading.local`." msgstr "" -#: ../../library/multiprocessing.rst:1280 msgid "Connection Objects" msgstr "" -#: ../../library/multiprocessing.rst:1284 -msgid "" -"Connection objects allow the sending and receiving of picklable objects or " -"strings. They can be thought of as message oriented connected sockets." +msgid "Connection objects allow the sending and receiving of picklable objects or strings. They can be thought of as message oriented connected sockets." msgstr "" -#: ../../library/multiprocessing.rst:1287 -msgid "" -"Connection objects are usually created using :func:`Pipe " -"` -- see also :ref:`multiprocessing-listeners-clients`." +msgid "Connection objects are usually created using :func:`Pipe ` -- see also :ref:`multiprocessing-listeners-clients`." msgstr "" -#: ../../library/multiprocessing.rst:1295 -msgid "" -"Send an object to the other end of the connection which should be read " -"using :meth:`recv`." +msgid "Send an object to the other end of the connection which should be read using :meth:`recv`." msgstr "" -#: ../../library/multiprocessing.rst:1298 -msgid "" -"The object must be picklable. Very large pickles (approximately 32 MiB+, " -"though it depends on the OS) may raise a :exc:`ValueError` exception." +msgid "The object must be picklable. Very large pickles (approximately 32 MiB+, though it depends on the OS) may raise a :exc:`ValueError` exception." msgstr "" -#: ../../library/multiprocessing.rst:1303 -msgid "" -"Return an object sent from the other end of the connection " -"using :meth:`send`. Blocks until there is something to receive. " -"Raises :exc:`EOFError` if there is nothing left to receive and the other end " -"was closed." +msgid "Return an object sent from the other end of the connection using :meth:`send`. Blocks until there is something to receive. Raises :exc:`EOFError` if there is nothing left to receive and the other end was closed." msgstr "" -#: ../../library/multiprocessing.rst:1310 msgid "Return the file descriptor or handle used by the connection." msgstr "" -#: ../../library/multiprocessing.rst:1314 msgid "Close the connection." msgstr "" -#: ../../library/multiprocessing.rst:1316 msgid "This is called automatically when the connection is garbage collected." msgstr "" -#: ../../library/multiprocessing.rst:1320 msgid "Return whether there is any data available to be read." msgstr "" -#: ../../library/multiprocessing.rst:1322 -msgid "" -"If *timeout* is not specified then it will return immediately. If *timeout* " -"is a number then this specifies the maximum time in seconds to block. If " -"*timeout* is ``None`` then an infinite timeout is used." +msgid "If *timeout* is not specified then it will return immediately. If *timeout* is a number then this specifies the maximum time in seconds to block. If *timeout* is ``None`` then an infinite timeout is used." msgstr "" -#: ../../library/multiprocessing.rst:1326 -msgid "" -"Note that multiple connection objects may be polled at once by " -"using :func:`multiprocessing.connection.wait`." +msgid "Note that multiple connection objects may be polled at once by using :func:`multiprocessing.connection.wait`." msgstr "" -#: ../../library/multiprocessing.rst:1331 msgid "Send byte data from a :term:`bytes-like object` as a complete message." msgstr "" -#: ../../library/multiprocessing.rst:1333 -msgid "" -"If *offset* is given then data is read from that position in *buf*. If " -"*size* is given then that many bytes will be read from *buf*. Very large " -"buffers (approximately 32 MiB+, though it depends on the OS) may raise " -"a :exc:`ValueError` exception" +msgid "If *offset* is given then data is read from that position in *buf*. If *size* is given then that many bytes will be read from *buf*. Very large buffers (approximately 32 MiB+, though it depends on the OS) may raise a :exc:`ValueError` exception" msgstr "" -#: ../../library/multiprocessing.rst:1340 -msgid "" -"Return a complete message of byte data sent from the other end of the " -"connection as a string. Blocks until there is something to receive. " -"Raises :exc:`EOFError` if there is nothing left to receive and the other end " -"has closed." +msgid "Return a complete message of byte data sent from the other end of the connection as a string. Blocks until there is something to receive. Raises :exc:`EOFError` if there is nothing left to receive and the other end has closed." msgstr "" -#: ../../library/multiprocessing.rst:1345 -msgid "" -"If *maxlength* is specified and the message is longer than *maxlength* " -"then :exc:`OSError` is raised and the connection will no longer be readable." +msgid "If *maxlength* is specified and the message is longer than *maxlength* then :exc:`OSError` is raised and the connection will no longer be readable." msgstr "" -#: ../../library/multiprocessing.rst:1349 -msgid "" -"This function used to raise :exc:`IOError`, which is now an alias " -"of :exc:`OSError`." +msgid "This function used to raise :exc:`IOError`, which is now an alias of :exc:`OSError`." msgstr "" -#: ../../library/multiprocessing.rst:1356 -msgid "" -"Read into *buf* a complete message of byte data sent from the other end of " -"the connection and return the number of bytes in the message. Blocks until " -"there is something to receive. Raises :exc:`EOFError` if there is nothing " -"left to receive and the other end was closed." +msgid "Read into *buf* a complete message of byte data sent from the other end of the connection and return the number of bytes in the message. Blocks until there is something to receive. Raises :exc:`EOFError` if there is nothing left to receive and the other end was closed." msgstr "" -#: ../../library/multiprocessing.rst:1362 -msgid "" -"*buf* must be a writable :term:`bytes-like object`. If *offset* is given " -"then the message will be written into the buffer from that position. Offset " -"must be a non-negative integer less than the length of *buf* (in bytes)." +msgid "*buf* must be a writable :term:`bytes-like object`. If *offset* is given then the message will be written into the buffer from that position. Offset must be a non-negative integer less than the length of *buf* (in bytes)." msgstr "" -#: ../../library/multiprocessing.rst:1367 -msgid "" -"If the buffer is too short then a :exc:`BufferTooShort` exception is raised " -"and the complete message is available as ``e.args[0]`` where ``e`` is the " -"exception instance." +msgid "If the buffer is too short then a :exc:`BufferTooShort` exception is raised and the complete message is available as ``e.args[0]`` where ``e`` is the exception instance." msgstr "" -#: ../../library/multiprocessing.rst:1371 -msgid "" -"Connection objects themselves can now be transferred between processes " -"using :meth:`Connection.send` and :meth:`Connection.recv`." +msgid "Connection objects themselves can now be transferred between processes using :meth:`Connection.send` and :meth:`Connection.recv`." msgstr "" -#: ../../library/multiprocessing.rst:1375 -msgid "" -"Connection objects also now support the context management protocol -- " -"see :ref:`typecontextmanager`. :meth:`~contextmanager.__enter__` returns " -"the connection object, and :meth:`~contextmanager.__exit__` " -"calls :meth:`close`." +msgid "Connection objects also now support the context management protocol -- see :ref:`typecontextmanager`. :meth:`~contextmanager.__enter__` returns the connection object, and :meth:`~contextmanager.__exit__` calls :meth:`close`." msgstr "" -#: ../../library/multiprocessing.rst:1379 msgid "For example:" msgstr "" -#: ../../library/multiprocessing.rst:1381 msgid "" ">>> from multiprocessing import Pipe\n" ">>> a, b = Pipe()\n" @@ -1899,563 +1062,266 @@ msgid "" "array('i', [0, 1, 2, 3, 4, 0, 0, 0, 0, 0])" msgstr "" -#: ../../library/multiprocessing.rst:1404 -msgid "" -"The :meth:`Connection.recv` method automatically unpickles the data it " -"receives, which can be a security risk unless you can trust the process " -"which sent the message." +msgid "The :meth:`Connection.recv` method automatically unpickles the data it receives, which can be a security risk unless you can trust the process which sent the message." msgstr "" -#: ../../library/multiprocessing.rst:1408 -msgid "" -"Therefore, unless the connection object was produced using :func:`Pipe` you " -"should only use the :meth:`~Connection.recv` and :meth:`~Connection.send` " -"methods after performing some sort of authentication. " -"See :ref:`multiprocessing-auth-keys`." +msgid "Therefore, unless the connection object was produced using :func:`Pipe` you should only use the :meth:`~Connection.recv` and :meth:`~Connection.send` methods after performing some sort of authentication. See :ref:`multiprocessing-auth-keys`." msgstr "" -#: ../../library/multiprocessing.rst:1415 -msgid "" -"If a process is killed while it is trying to read or write to a pipe then " -"the data in the pipe is likely to become corrupted, because it may become " -"impossible to be sure where the message boundaries lie." +msgid "If a process is killed while it is trying to read or write to a pipe then the data in the pipe is likely to become corrupted, because it may become impossible to be sure where the message boundaries lie." msgstr "" -#: ../../library/multiprocessing.rst:1421 msgid "Synchronization primitives" msgstr "" -#: ../../library/multiprocessing.rst:1425 -msgid "" -"Generally synchronization primitives are not as necessary in a multiprocess " -"program as they are in a multithreaded program. See the documentation " -"for :mod:`threading` module." +msgid "Generally synchronization primitives are not as necessary in a multiprocess program as they are in a multithreaded program. See the documentation for :mod:`threading` module." msgstr "" -#: ../../library/multiprocessing.rst:1429 -msgid "" -"Note that one can also create synchronization primitives by using a manager " -"object -- see :ref:`multiprocessing-managers`." +msgid "Note that one can also create synchronization primitives by using a manager object -- see :ref:`multiprocessing-managers`." msgstr "" -#: ../../library/multiprocessing.rst:1434 msgid "A barrier object: a clone of :class:`threading.Barrier`." msgstr "" -#: ../../library/multiprocessing.rst:1443 -msgid "" -"A bounded semaphore object: a close analog " -"of :class:`threading.BoundedSemaphore`." +msgid "A bounded semaphore object: a close analog of :class:`threading.BoundedSemaphore`." msgstr "" -#: ../../library/multiprocessing.rst:1449 -#: ../../library/multiprocessing.rst:1621 -msgid "" -"A solitary difference from its close analog exists: its ``acquire`` method's " -"first argument is named *block*, as is consistent with :meth:`Lock.acquire`." +msgid "A solitary difference from its close analog exists: its ``acquire`` method's first argument is named *block*, as is consistent with :meth:`Lock.acquire`." msgstr "" -#: ../../library/multiprocessing.rst:1454 -#: ../../library/multiprocessing.rst:1539 -#: ../../library/multiprocessing.rst:1609 -#: ../../library/multiprocessing.rst:1635 msgid "Return a boolean indicating whether this object is locked right now." msgstr "" -#: ../../library/multiprocessing.rst:1459 -msgid "" -"On macOS, this is indistinguishable from :class:`Semaphore` because " -"``sem_getvalue()`` is not implemented on that platform." +msgid "On macOS, this is indistinguishable from :class:`Semaphore` because ``sem_getvalue()`` is not implemented on that platform." msgstr "" -#: ../../library/multiprocessing.rst:1464 msgid "A condition variable: an alias for :class:`threading.Condition`." msgstr "" -#: ../../library/multiprocessing.rst:1466 -msgid "" -"If *lock* is specified then it should be a :class:`Lock` or :class:`RLock` " -"object from :mod:`!multiprocessing`." +msgid "If *lock* is specified then it should be a :class:`Lock` or :class:`RLock` object from :mod:`!multiprocessing`." msgstr "" -#: ../../library/multiprocessing.rst:1472 -#: ../../library/multiprocessing.rst:2070 msgid "The :meth:`~threading.Condition.wait_for` method was added." msgstr "" -#: ../../library/multiprocessing.rst:1477 msgid "A clone of :class:`threading.Event`." msgstr "" -#: ../../library/multiprocessing.rst:1484 -msgid "" -"A non-recursive lock object: a close analog of :class:`threading.Lock`. Once " -"a process or thread has acquired a lock, subsequent attempts to acquire it " -"from any process or thread will block until it is released; any process or " -"thread may release it. The concepts and behaviors " -"of :class:`threading.Lock` as it applies to threads are replicated here " -"in :class:`multiprocessing.Lock` as it applies to either processes or " -"threads, except as noted." +msgid "A non-recursive lock object: a close analog of :class:`threading.Lock`. Once a process or thread has acquired a lock, subsequent attempts to acquire it from any process or thread will block until it is released; any process or thread may release it. The concepts and behaviors of :class:`threading.Lock` as it applies to threads are replicated here in :class:`multiprocessing.Lock` as it applies to either processes or threads, except as noted." msgstr "" -#: ../../library/multiprocessing.rst:1492 -msgid "" -"Note that :class:`Lock` is actually a factory function which returns an " -"instance of ``multiprocessing.synchronize.Lock`` initialized with a default " -"context." +msgid "Note that :class:`Lock` is actually a factory function which returns an instance of ``multiprocessing.synchronize.Lock`` initialized with a default context." msgstr "" -#: ../../library/multiprocessing.rst:1499 -msgid "" -":class:`Lock` supports the :term:`context manager` protocol and thus may be " -"used in :keyword:`with` statements." +msgid ":class:`Lock` supports the :term:`context manager` protocol and thus may be used in :keyword:`with` statements." msgstr "" -#: ../../library/multiprocessing.rst:1504 -#: ../../library/multiprocessing.rst:1565 msgid "Acquire a lock, blocking or non-blocking." msgstr "" -#: ../../library/multiprocessing.rst:1506 -msgid "" -"With the *block* argument set to ``True`` (the default), the method call " -"will block until the lock is in an unlocked state, then set it to locked and " -"return ``True``. Note that the name of this first argument differs from " -"that in :meth:`threading.Lock.acquire`." +msgid "With the *block* argument set to ``True`` (the default), the method call will block until the lock is in an unlocked state, then set it to locked and return ``True``. Note that the name of this first argument differs from that in :meth:`threading.Lock.acquire`." msgstr "" -#: ../../library/multiprocessing.rst:1511 -msgid "" -"With the *block* argument set to ``False``, the method call does not block. " -"If the lock is currently in a locked state, return ``False``; otherwise set " -"the lock to a locked state and return ``True``." +msgid "With the *block* argument set to ``False``, the method call does not block. If the lock is currently in a locked state, return ``False``; otherwise set the lock to a locked state and return ``True``." msgstr "" -#: ../../library/multiprocessing.rst:1515 -msgid "" -"When invoked with a positive, floating-point value for *timeout*, block for " -"at most the number of seconds specified by *timeout* as long as the lock can " -"not be acquired. Invocations with a negative value for *timeout* are " -"equivalent to a *timeout* of zero. Invocations with a *timeout* value of " -"``None`` (the default) set the timeout period to infinite. Note that the " -"treatment of negative or ``None`` values for *timeout* differs from the " -"implemented behavior in :meth:`threading.Lock.acquire`. The *timeout* " -"argument has no practical implications if the *block* argument is set to " -"``False`` and is thus ignored. Returns ``True`` if the lock has been " -"acquired or ``False`` if the timeout period has elapsed." -msgstr "" - -#: ../../library/multiprocessing.rst:1530 -msgid "" -"Release a lock. This can be called from any process or thread, not only the " -"process or thread which originally acquired the lock." +msgid "When invoked with a positive, floating-point value for *timeout*, block for at most the number of seconds specified by *timeout* as long as the lock can not be acquired. Invocations with a negative value for *timeout* are equivalent to a *timeout* of zero. Invocations with a *timeout* value of ``None`` (the default) set the timeout period to infinite. Note that the treatment of negative or ``None`` values for *timeout* differs from the implemented behavior in :meth:`threading.Lock.acquire`. The *timeout* argument has no practical implications if the *block* argument is set to ``False`` and is thus ignored. Returns ``True`` if the lock has been acquired or ``False`` if the timeout period has elapsed." msgstr "" -#: ../../library/multiprocessing.rst:1533 -msgid "" -"Behavior is the same as in :meth:`threading.Lock.release` except that when " -"invoked on an unlocked lock, a :exc:`ValueError` is raised." +msgid "Release a lock. This can be called from any process or thread, not only the process or thread which originally acquired the lock." msgstr "" -#: ../../library/multiprocessing.rst:1546 -msgid "" -"A recursive lock object: a close analog of :class:`threading.RLock`. A " -"recursive lock must be released by the process or thread that acquired it. " -"Once a process or thread has acquired a recursive lock, the same process or " -"thread may acquire it again without blocking; that process or thread must " -"release it once for each time it has been acquired." +msgid "Behavior is the same as in :meth:`threading.Lock.release` except that when invoked on an unlocked lock, a :exc:`ValueError` is raised." msgstr "" -#: ../../library/multiprocessing.rst:1552 -msgid "" -"Note that :class:`RLock` is actually a factory function which returns an " -"instance of ``multiprocessing.synchronize.RLock`` initialized with a default " -"context." +msgid "A recursive lock object: a close analog of :class:`threading.RLock`. A recursive lock must be released by the process or thread that acquired it. Once a process or thread has acquired a recursive lock, the same process or thread may acquire it again without blocking; that process or thread must release it once for each time it has been acquired." msgstr "" -#: ../../library/multiprocessing.rst:1559 -msgid "" -":class:`RLock` supports the :term:`context manager` protocol and thus may be " -"used in :keyword:`with` statements." +msgid "Note that :class:`RLock` is actually a factory function which returns an instance of ``multiprocessing.synchronize.RLock`` initialized with a default context." msgstr "" -#: ../../library/multiprocessing.rst:1567 -msgid "" -"When invoked with the *block* argument set to ``True``, block until the lock " -"is in an unlocked state (not owned by any process or thread) unless the lock " -"is already owned by the current process or thread. The current process or " -"thread then takes ownership of the lock (if it does not already have " -"ownership) and the recursion level inside the lock increments by one, " -"resulting in a return value of ``True``. Note that there are several " -"differences in this first argument's behavior compared to the implementation " -"of :meth:`threading.RLock.acquire`, starting with the name of the argument " -"itself." -msgstr "" - -#: ../../library/multiprocessing.rst:1577 -msgid "" -"When invoked with the *block* argument set to ``False``, do not block. If " -"the lock has already been acquired (and thus is owned) by another process or " -"thread, the current process or thread does not take ownership and the " -"recursion level within the lock is not changed, resulting in a return value " -"of ``False``. If the lock is in an unlocked state, the current process or " -"thread takes ownership and the recursion level is incremented, resulting in " -"a return value of ``True``." +msgid ":class:`RLock` supports the :term:`context manager` protocol and thus may be used in :keyword:`with` statements." msgstr "" -#: ../../library/multiprocessing.rst:1585 -msgid "" -"Use and behaviors of the *timeout* argument are the same as " -"in :meth:`Lock.acquire`. Note that some of these behaviors of *timeout* " -"differ from the implemented behaviors in :meth:`threading.RLock.acquire`." +msgid "When invoked with the *block* argument set to ``True``, block until the lock is in an unlocked state (not owned by any process or thread) unless the lock is already owned by the current process or thread. The current process or thread then takes ownership of the lock (if it does not already have ownership) and the recursion level inside the lock increments by one, resulting in a return value of ``True``. Note that there are several differences in this first argument's behavior compared to the implementation of :meth:`threading.RLock.acquire`, starting with the name of the argument itself." msgstr "" -#: ../../library/multiprocessing.rst:1592 -msgid "" -"Release a lock, decrementing the recursion level. If after the decrement " -"the recursion level is zero, reset the lock to unlocked (not owned by any " -"process or thread) and if any other processes or threads are blocked waiting " -"for the lock to become unlocked, allow exactly one of them to proceed. If " -"after the decrement the recursion level is still nonzero, the lock remains " -"locked and owned by the calling process or thread." +msgid "When invoked with the *block* argument set to ``False``, do not block. If the lock has already been acquired (and thus is owned) by another process or thread, the current process or thread does not take ownership and the recursion level within the lock is not changed, resulting in a return value of ``False``. If the lock is in an unlocked state, the current process or thread takes ownership and the recursion level is incremented, resulting in a return value of ``True``." msgstr "" -#: ../../library/multiprocessing.rst:1600 -msgid "" -"Only call this method when the calling process or thread owns the lock. " -"An :exc:`AssertionError` is raised if this method is called by a process or " -"thread other than the owner or if the lock is in an unlocked (unowned) " -"state. Note that the type of exception raised in this situation differs " -"from the implemented behavior in :meth:`threading.RLock.release`." +msgid "Use and behaviors of the *timeout* argument are the same as in :meth:`Lock.acquire`. Note that some of these behaviors of *timeout* differ from the implemented behaviors in :meth:`threading.RLock.acquire`." +msgstr "" + +msgid "Release a lock, decrementing the recursion level. If after the decrement the recursion level is zero, reset the lock to unlocked (not owned by any process or thread) and if any other processes or threads are blocked waiting for the lock to become unlocked, allow exactly one of them to proceed. If after the decrement the recursion level is still nonzero, the lock remains locked and owned by the calling process or thread." +msgstr "" + +msgid "Only call this method when the calling process or thread owns the lock. An :exc:`AssertionError` is raised if this method is called by a process or thread other than the owner or if the lock is in an unlocked (unowned) state. Note that the type of exception raised in this situation differs from the implemented behavior in :meth:`threading.RLock.release`." msgstr "" -#: ../../library/multiprocessing.rst:1616 msgid "A semaphore object: a close analog of :class:`threading.Semaphore`." msgstr "" -#: ../../library/multiprocessing.rst:1627 msgid "Return the current value of semaphore." msgstr "" -#: ../../library/multiprocessing.rst:1642 -msgid "" -"On macOS, ``sem_timedwait`` is unsupported, so calling ``acquire()`` with a " -"timeout will emulate that function's behavior using a sleeping loop." +msgid "On macOS, ``sem_timedwait`` is unsupported, so calling ``acquire()`` with a timeout will emulate that function's behavior using a sleeping loop." msgstr "" -#: ../../library/multiprocessing.rst:1647 -msgid "" -"Some of this package's functionality requires a functioning shared semaphore " -"implementation on the host operating system. Without one, " -"the :mod:`multiprocessing.synchronize` module will be disabled, and attempts " -"to import it will result in an :exc:`ImportError`. See :issue:`3770` for " -"additional information." +msgid "Some of this package's functionality requires a functioning shared semaphore implementation on the host operating system. Without one, the :mod:`multiprocessing.synchronize` module will be disabled, and attempts to import it will result in an :exc:`ImportError`. See :issue:`3770` for additional information." msgstr "" -#: ../../library/multiprocessing.rst:1655 msgid "Shared :mod:`ctypes` Objects" msgstr "" -#: ../../library/multiprocessing.rst:1657 -msgid "" -"It is possible to create shared objects using shared memory which can be " -"inherited by child processes." +msgid "It is possible to create shared objects using shared memory which can be inherited by child processes." msgstr "" -#: ../../library/multiprocessing.rst:1662 -msgid "" -"Return a :mod:`ctypes` object allocated from shared memory. By default the " -"return value is actually a synchronized wrapper for the object. The object " -"itself can be accessed via the *value* attribute of a :class:`Value`." +msgid "Return a :mod:`ctypes` object allocated from shared memory. By default the return value is actually a synchronized wrapper for the object. The object itself can be accessed via the *value* attribute of a :class:`Value`." msgstr "" -#: ../../library/multiprocessing.rst:1666 -#: ../../library/multiprocessing.rst:1759 -msgid "" -"*typecode_or_type* determines the type of the returned object: it is either " -"a ctypes type or a one character typecode of the kind used by " -"the :mod:`array` module. *\\*args* is passed on to the constructor for the " -"type." +msgid "*typecode_or_type* determines the type of the returned object: it is either a ctypes type or a one character typecode of the kind used by the :mod:`array` module. *\\*args* is passed on to the constructor for the type." msgstr "" -#: ../../library/multiprocessing.rst:1670 -msgid "" -"If *lock* is ``True`` (the default) then a new recursive lock object is " -"created to synchronize access to the value. If *lock* is a :class:`Lock` " -"or :class:`RLock` object then that will be used to synchronize access to the " -"value. If *lock* is ``False`` then access to the returned object will not " -"be automatically protected by a lock, so it will not necessarily be " -"\"process-safe\"." +msgid "If *lock* is ``True`` (the default) then a new recursive lock object is created to synchronize access to the value. If *lock* is a :class:`Lock` or :class:`RLock` object then that will be used to synchronize access to the value. If *lock* is ``False`` then access to the returned object will not be automatically protected by a lock, so it will not necessarily be \"process-safe\"." msgstr "" -#: ../../library/multiprocessing.rst:1677 -msgid "" -"Operations like ``+=`` which involve a read and write are not atomic. So " -"if, for instance, you want to atomically increment a shared value it is " -"insufficient to just do ::" +msgid "Operations like ``+=`` which involve a read and write are not atomic. So if, for instance, you want to atomically increment a shared value it is insufficient to just do ::" msgstr "" -#: ../../library/multiprocessing.rst:1681 msgid "counter.value += 1" msgstr "" -#: ../../library/multiprocessing.rst:1683 -msgid "" -"Assuming the associated lock is recursive (which it is by default) you can " -"instead do ::" +msgid "Assuming the associated lock is recursive (which it is by default) you can instead do ::" msgstr "" -#: ../../library/multiprocessing.rst:1686 msgid "" "with counter.get_lock():\n" " counter.value += 1" msgstr "" -#: ../../library/multiprocessing.rst:1689 msgid "Note that *lock* is a keyword-only argument." msgstr "" -#: ../../library/multiprocessing.rst:1693 -msgid "" -"Return a ctypes array allocated from shared memory. By default the return " -"value is actually a synchronized wrapper for the array." +msgid "Return a ctypes array allocated from shared memory. By default the return value is actually a synchronized wrapper for the array." msgstr "" -#: ../../library/multiprocessing.rst:1696 -msgid "" -"*typecode_or_type* determines the type of the elements of the returned " -"array: it is either a :ref:`ctypes type ` or " -"a one character typecode of the kind used by the :mod:`array` module with " -"the exception of ``'w'``, which is not supported. In addition, the ``'c'`` " -"typecode is an alias for :class:`ctypes.c_char`. If *size_or_initializer* " -"is an integer, then it determines the length of the array, and the array " -"will be initially zeroed. Otherwise, *size_or_initializer* is a sequence " -"which is used to initialize the array and whose length determines the length " -"of the array." -msgstr "" - -#: ../../library/multiprocessing.rst:1706 -msgid "" -"If *lock* is ``True`` (the default) then a new lock object is created to " -"synchronize access to the value. If *lock* is a :class:`Lock` " -"or :class:`RLock` object then that will be used to synchronize access to the " -"value. If *lock* is ``False`` then access to the returned object will not " -"be automatically protected by a lock, so it will not necessarily be " -"\"process-safe\"." +msgid "*typecode_or_type* determines the type of the elements of the returned array: it is either a :ref:`ctypes type ` or a one character typecode of the kind used by the :mod:`array` module with the exception of ``'w'``, which is not supported. In addition, the ``'c'`` typecode is an alias for :class:`ctypes.c_char`. If *size_or_initializer* is an integer, then it determines the length of the array, and the array will be initially zeroed. Otherwise, *size_or_initializer* is a sequence which is used to initialize the array and whose length determines the length of the array." +msgstr "" + +msgid "If *lock* is ``True`` (the default) then a new lock object is created to synchronize access to the value. If *lock* is a :class:`Lock` or :class:`RLock` object then that will be used to synchronize access to the value. If *lock* is ``False`` then access to the returned object will not be automatically protected by a lock, so it will not necessarily be \"process-safe\"." msgstr "" -#: ../../library/multiprocessing.rst:1713 msgid "Note that *lock* is a keyword only argument." msgstr "" -#: ../../library/multiprocessing.rst:1715 -msgid "" -"Note that an array of :data:`ctypes.c_char` has *value* and *raw* attributes " -"which can both be used to store and retrieve byte strings. While *raw* " -"allows interaction with a :class:`bytes` object the full size of the array, " -"reading *value* will terminate after a null byte, like most programming " -"languages handle strings." +msgid "Note that an array of :data:`ctypes.c_char` has *value* and *raw* attributes which can both be used to store and retrieve byte strings. While *raw* allows interaction with a :class:`bytes` object the full size of the array, reading *value* will terminate after a null byte, like most programming languages handle strings." msgstr "" -#: ../../library/multiprocessing.rst:1723 msgid "The :mod:`!multiprocessing.sharedctypes` module" msgstr "" -#: ../../library/multiprocessing.rst:1728 -msgid "" -"The :mod:`!multiprocessing.sharedctypes` module provides functions for " -"allocating :mod:`ctypes` objects from shared memory which can be inherited " -"by child processes." +msgid "The :mod:`!multiprocessing.sharedctypes` module provides functions for allocating :mod:`ctypes` objects from shared memory which can be inherited by child processes." msgstr "" -#: ../../library/multiprocessing.rst:1734 -msgid "" -"Although it is possible to store a pointer in shared memory remember that " -"this will refer to a location in the address space of a specific process. " -"However, the pointer is quite likely to be invalid in the context of a " -"second process and trying to dereference the pointer from the second process " -"may cause a crash." +msgid "Although it is possible to store a pointer in shared memory remember that this will refer to a location in the address space of a specific process. However, the pointer is quite likely to be invalid in the context of a second process and trying to dereference the pointer from the second process may cause a crash." msgstr "" -#: ../../library/multiprocessing.rst:1742 msgid "Return a ctypes array allocated from shared memory." msgstr "" -#: ../../library/multiprocessing.rst:1744 -msgid "" -"*typecode_or_type* determines the type of the elements of the returned " -"array: it is either a ctypes type or a one character typecode of the kind " -"used by the :mod:`array` module. If *size_or_initializer* is an integer " -"then it determines the length of the array, and the array will be initially " -"zeroed. Otherwise *size_or_initializer* is a sequence which is used to " -"initialize the array and whose length determines the length of the array." +msgid "*typecode_or_type* determines the type of the elements of the returned array: it is either a ctypes type or a one character typecode of the kind used by the :mod:`array` module. If *size_or_initializer* is an integer then it determines the length of the array, and the array will be initially zeroed. Otherwise *size_or_initializer* is a sequence which is used to initialize the array and whose length determines the length of the array." msgstr "" -#: ../../library/multiprocessing.rst:1751 -msgid "" -"Note that setting and getting an element is potentially non-atomic -- " -"use :func:`Array` instead to make sure that access is automatically " -"synchronized using a lock." +msgid "Note that setting and getting an element is potentially non-atomic -- use :func:`Array` instead to make sure that access is automatically synchronized using a lock." msgstr "" -#: ../../library/multiprocessing.rst:1757 msgid "Return a ctypes object allocated from shared memory." msgstr "" -#: ../../library/multiprocessing.rst:1763 -msgid "" -"Note that setting and getting the value is potentially non-atomic -- " -"use :func:`Value` instead to make sure that access is automatically " -"synchronized using a lock." +msgid "Note that setting and getting the value is potentially non-atomic -- use :func:`Value` instead to make sure that access is automatically synchronized using a lock." msgstr "" -#: ../../library/multiprocessing.rst:1767 -msgid "" -"Note that an array of :data:`ctypes.c_char` has ``value`` and ``raw`` " -"attributes which allow one to use it to store and retrieve strings -- see " -"documentation for :mod:`ctypes`." +msgid "Note that an array of :data:`ctypes.c_char` has ``value`` and ``raw`` attributes which allow one to use it to store and retrieve strings -- see documentation for :mod:`ctypes`." msgstr "" -#: ../../library/multiprocessing.rst:1773 -msgid "" -"The same as :func:`RawArray` except that depending on the value of *lock* a " -"process-safe synchronization wrapper may be returned instead of a raw ctypes " -"array." +msgid "The same as :func:`RawArray` except that depending on the value of *lock* a process-safe synchronization wrapper may be returned instead of a raw ctypes array." msgstr "" -#: ../../library/multiprocessing.rst:1777 -#: ../../library/multiprocessing.rst:1797 -msgid "" -"If *lock* is ``True`` (the default) then a new lock object is created to " -"synchronize access to the value. If *lock* is " -"a :class:`~multiprocessing.Lock` or :class:`~multiprocessing.RLock` object " -"then that will be used to synchronize access to the value. If *lock* is " -"``False`` then access to the returned object will not be automatically " -"protected by a lock, so it will not necessarily be \"process-safe\"." -msgstr "" - -#: ../../library/multiprocessing.rst:1785 -#: ../../library/multiprocessing.rst:1804 -#: ../../library/multiprocessing.rst:1821 -#: ../../library/multiprocessing.rst:1942 -msgid "" -"*ctx* is a context object, or ``None`` (use the current context). If " -"``None``, calling this may set the global start method. See :ref:`global-" -"start-method` for more details." +msgid "If *lock* is ``True`` (the default) then a new lock object is created to synchronize access to the value. If *lock* is a :class:`~multiprocessing.Lock` or :class:`~multiprocessing.RLock` object then that will be used to synchronize access to the value. If *lock* is ``False`` then access to the returned object will not be automatically protected by a lock, so it will not necessarily be \"process-safe\"." +msgstr "" + +msgid "*ctx* is a context object, or ``None`` (use the current context). If ``None``, calling this may set the global start method. See :ref:`global-start-method` for more details." msgstr "" -#: ../../library/multiprocessing.rst:1789 -#: ../../library/multiprocessing.rst:1808 msgid "Note that *lock* and *ctx* are keyword-only parameters." msgstr "" -#: ../../library/multiprocessing.rst:1793 -msgid "" -"The same as :func:`RawValue` except that depending on the value of *lock* a " -"process-safe synchronization wrapper may be returned instead of a raw ctypes " -"object." +msgid "The same as :func:`RawValue` except that depending on the value of *lock* a process-safe synchronization wrapper may be returned instead of a raw ctypes object." msgstr "" -#: ../../library/multiprocessing.rst:1812 -msgid "" -"Return a ctypes object allocated from shared memory which is a copy of the " -"ctypes object *obj*." +msgid "Return a ctypes object allocated from shared memory which is a copy of the ctypes object *obj*." msgstr "" -#: ../../library/multiprocessing.rst:1817 -msgid "" -"Return a process-safe wrapper object for a ctypes object which uses *lock* " -"to synchronize access. If *lock* is ``None`` (the default) then " -"a :class:`multiprocessing.RLock` object is created automatically." +msgid "Return a process-safe wrapper object for a ctypes object which uses *lock* to synchronize access. If *lock* is ``None`` (the default) then a :class:`multiprocessing.RLock` object is created automatically." msgstr "" -#: ../../library/multiprocessing.rst:1825 -msgid "" -"A synchronized wrapper will have two methods in addition to those of the " -"object it wraps: :meth:`get_obj` returns the wrapped object " -"and :meth:`get_lock` returns the lock object used for synchronization." +msgid "A synchronized wrapper will have two methods in addition to those of the object it wraps: :meth:`get_obj` returns the wrapped object and :meth:`get_lock` returns the lock object used for synchronization." msgstr "" -#: ../../library/multiprocessing.rst:1829 -msgid "" -"Note that accessing the ctypes object through the wrapper can be a lot " -"slower than accessing the raw ctypes object." +msgid "Note that accessing the ctypes object through the wrapper can be a lot slower than accessing the raw ctypes object." msgstr "" -#: ../../library/multiprocessing.rst:1832 msgid "Synchronized objects support the :term:`context manager` protocol." msgstr "" -#: ../../library/multiprocessing.rst:1836 -msgid "" -"The table below compares the syntax for creating shared ctypes objects from " -"shared memory with the normal ctypes syntax. (In the table ``MyStruct`` is " -"some subclass of :class:`ctypes.Structure`.)" +msgid "The table below compares the syntax for creating shared ctypes objects from shared memory with the normal ctypes syntax. (In the table ``MyStruct`` is some subclass of :class:`ctypes.Structure`.)" msgstr "" -#: ../../library/multiprocessing.rst:1841 msgid "ctypes" msgstr "" -#: ../../library/multiprocessing.rst:1841 msgid "sharedctypes using type" msgstr "" -#: ../../library/multiprocessing.rst:1841 msgid "sharedctypes using typecode" msgstr "" -#: ../../library/multiprocessing.rst:1843 msgid "c_double(2.4)" msgstr "" -#: ../../library/multiprocessing.rst:1843 msgid "RawValue(c_double, 2.4)" msgstr "" -#: ../../library/multiprocessing.rst:1843 msgid "RawValue('d', 2.4)" msgstr "" -#: ../../library/multiprocessing.rst:1844 msgid "MyStruct(4, 6)" msgstr "" -#: ../../library/multiprocessing.rst:1844 msgid "RawValue(MyStruct, 4, 6)" msgstr "" -#: ../../library/multiprocessing.rst:1845 msgid "(c_short * 7)()" msgstr "" -#: ../../library/multiprocessing.rst:1845 msgid "RawArray(c_short, 7)" msgstr "" -#: ../../library/multiprocessing.rst:1845 msgid "RawArray('h', 7)" msgstr "" -#: ../../library/multiprocessing.rst:1846 msgid "(c_int * 3)(9, 2, 8)" msgstr "" -#: ../../library/multiprocessing.rst:1846 msgid "RawArray(c_int, (9, 2, 8))" msgstr "" -#: ../../library/multiprocessing.rst:1846 msgid "RawArray('i', (9, 2, 8))" msgstr "" -#: ../../library/multiprocessing.rst:1850 -msgid "" -"Below is an example where a number of ctypes objects are modified by a child " -"process::" +msgid "Below is an example where a number of ctypes objects are modified by a child process::" msgstr "" -#: ../../library/multiprocessing.rst:1853 msgid "" "from multiprocessing import Process, Lock\n" "from multiprocessing.sharedctypes import Value, Array\n" @@ -2490,11 +1356,9 @@ msgid "" " print([(a.x, a.y) for a in A])" msgstr "" -#: ../../library/multiprocessing.rst:1888 msgid "The results printed are ::" msgstr "" -#: ../../library/multiprocessing.rst:1890 msgid "" "49\n" "0.1111111111111111\n" @@ -2502,91 +1366,45 @@ msgid "" "[(3.515625, 39.0625), (33.0625, 4.0), (5.640625, 90.25)]" msgstr "" -#: ../../library/multiprocessing.rst:1901 msgid "Managers" msgstr "" -#: ../../library/multiprocessing.rst:1903 -msgid "" -"Managers provide a way to create data which can be shared between different " -"processes, including sharing over a network between processes running on " -"different machines. A manager object controls a server process which manages " -"*shared objects*. Other processes can access the shared objects by using " -"proxies." +msgid "Managers provide a way to create data which can be shared between different processes, including sharing over a network between processes running on different machines. A manager object controls a server process which manages *shared objects*. Other processes can access the shared objects by using proxies." msgstr "" -#: ../../library/multiprocessing.rst:1912 -msgid "" -"Returns a started :class:`~multiprocessing.managers.SyncManager` object " -"which can be used for sharing objects between processes. The returned " -"manager object corresponds to a spawned child process and has methods which " -"will create shared objects and return corresponding proxies." +msgid "Returns a started :class:`~multiprocessing.managers.SyncManager` object which can be used for sharing objects between processes. The returned manager object corresponds to a spawned child process and has methods which will create shared objects and return corresponding proxies." msgstr "" -#: ../../library/multiprocessing.rst:1920 -msgid "" -"Manager processes will be shutdown as soon as they are garbage collected or " -"their parent process exits. The manager classes are defined in " -"the :mod:`multiprocessing.managers` module:" +msgid "Manager processes will be shutdown as soon as they are garbage collected or their parent process exits. The manager classes are defined in the :mod:`multiprocessing.managers` module:" msgstr "" -#: ../../library/multiprocessing.rst:1926 msgid "Create a BaseManager object." msgstr "" -#: ../../library/multiprocessing.rst:1928 -msgid "" -"Once created one should call :meth:`start` or " -"``get_server().serve_forever()`` to ensure that the manager object refers to " -"a started manager process." +msgid "Once created one should call :meth:`start` or ``get_server().serve_forever()`` to ensure that the manager object refers to a started manager process." msgstr "" -#: ../../library/multiprocessing.rst:1931 -msgid "" -"*address* is the address on which the manager process listens for new " -"connections. If *address* is ``None`` then an arbitrary one is chosen." +msgid "*address* is the address on which the manager process listens for new connections. If *address* is ``None`` then an arbitrary one is chosen." msgstr "" -#: ../../library/multiprocessing.rst:1934 -msgid "" -"*authkey* is the authentication key which will be used to check the validity " -"of incoming connections to the server process. If *authkey* is ``None`` " -"then ``current_process().authkey`` is used. Otherwise *authkey* is used and " -"it must be a byte string." +msgid "*authkey* is the authentication key which will be used to check the validity of incoming connections to the server process. If *authkey* is ``None`` then ``current_process().authkey`` is used. Otherwise *authkey* is used and it must be a byte string." msgstr "" -#: ../../library/multiprocessing.rst:1939 -msgid "" -"*serializer* must be ``'pickle'`` (use :mod:`pickle` serialization) or " -"``'xmlrpclib'`` (use :mod:`xmlrpc.client` serialization)." +msgid "*serializer* must be ``'pickle'`` (use :mod:`pickle` serialization) or ``'xmlrpclib'`` (use :mod:`xmlrpc.client` serialization)." msgstr "" -#: ../../library/multiprocessing.rst:1946 -msgid "" -"*shutdown_timeout* is a timeout in seconds used to wait until the process " -"used by the manager completes in the :meth:`shutdown` method. If the " -"shutdown times out, the process is terminated. If terminating the process " -"also times out, the process is killed." +msgid "*shutdown_timeout* is a timeout in seconds used to wait until the process used by the manager completes in the :meth:`shutdown` method. If the shutdown times out, the process is terminated. If terminating the process also times out, the process is killed." msgstr "" -#: ../../library/multiprocessing.rst:1951 msgid "Added the *shutdown_timeout* parameter." msgstr "" -#: ../../library/multiprocessing.rst:1956 -msgid "" -"Start a subprocess to start the manager. If *initializer* is not ``None`` " -"then the subprocess will call ``initializer(*initargs)`` when it starts." +msgid "Start a subprocess to start the manager. If *initializer* is not ``None`` then the subprocess will call ``initializer(*initargs)`` when it starts." msgstr "" -#: ../../library/multiprocessing.rst:1961 -msgid "" -"Returns a :class:`Server` object which represents the actual server under " -"the control of the Manager. The :class:`Server` object supports " -"the :meth:`serve_forever` method::" +msgid "Returns a :class:`Server` object which represents the actual server under the control of the Manager. The :class:`Server` object supports the :meth:`serve_forever` method::" msgstr "" -#: ../../library/multiprocessing.rst:1965 msgid "" ">>> from multiprocessing.managers import BaseManager\n" ">>> manager = BaseManager(address=('', 50000), authkey=b'abc')\n" @@ -2594,226 +1412,123 @@ msgid "" ">>> server.serve_forever()" msgstr "" -#: ../../library/multiprocessing.rst:1970 msgid ":class:`Server` additionally has an :attr:`address` attribute." msgstr "" -#: ../../library/multiprocessing.rst:1974 msgid "Connect a local manager object to a remote manager process::" msgstr "" -#: ../../library/multiprocessing.rst:1976 msgid "" ">>> from multiprocessing.managers import BaseManager\n" ">>> m = BaseManager(address=('127.0.0.1', 50000), authkey=b'abc')\n" ">>> m.connect()" msgstr "" -#: ../../library/multiprocessing.rst:1982 -msgid "" -"Stop the process used by the manager. This is only available " -"if :meth:`start` has been used to start the server process." +msgid "Stop the process used by the manager. This is only available if :meth:`start` has been used to start the server process." msgstr "" -#: ../../library/multiprocessing.rst:1985 msgid "This can be called multiple times." msgstr "" -#: ../../library/multiprocessing.rst:1989 -msgid "" -"A classmethod which can be used for registering a type or callable with the " -"manager class." +msgid "A classmethod which can be used for registering a type or callable with the manager class." msgstr "" -#: ../../library/multiprocessing.rst:1992 -msgid "" -"*typeid* is a \"type identifier\" which is used to identify a particular " -"type of shared object. This must be a string." +msgid "*typeid* is a \"type identifier\" which is used to identify a particular type of shared object. This must be a string." msgstr "" -#: ../../library/multiprocessing.rst:1995 -msgid "" -"*callable* is a callable used for creating objects for this type " -"identifier. If a manager instance will be connected to the server using " -"the :meth:`connect` method, or if the *create_method* argument is ``False`` " -"then this can be left as ``None``." +msgid "*callable* is a callable used for creating objects for this type identifier. If a manager instance will be connected to the server using the :meth:`connect` method, or if the *create_method* argument is ``False`` then this can be left as ``None``." msgstr "" -#: ../../library/multiprocessing.rst:2001 -msgid "" -"*proxytype* is a subclass of :class:`BaseProxy` which is used to create " -"proxies for shared objects with this *typeid*. If ``None`` then a proxy " -"class is created automatically." +msgid "*proxytype* is a subclass of :class:`BaseProxy` which is used to create proxies for shared objects with this *typeid*. If ``None`` then a proxy class is created automatically." msgstr "" -#: ../../library/multiprocessing.rst:2005 -msgid "" -"*exposed* is used to specify a sequence of method names which proxies for " -"this typeid should be allowed to access " -"using :meth:`BaseProxy._callmethod`. (If *exposed* is ``None`` " -"then :attr:`proxytype._exposed_` is used instead if it exists.) In the case " -"where no exposed list is specified, all \"public methods\" of the shared " -"object will be accessible. (Here a \"public method\" means any attribute " -"which has a :meth:`~object.__call__` method and whose name does not begin " -"with ``'_'``.)" +msgid "*exposed* is used to specify a sequence of method names which proxies for this typeid should be allowed to access using :meth:`BaseProxy._callmethod`. (If *exposed* is ``None`` then :attr:`proxytype._exposed_` is used instead if it exists.) In the case where no exposed list is specified, all \"public methods\" of the shared object will be accessible. (Here a \"public method\" means any attribute which has a :meth:`~object.__call__` method and whose name does not begin with ``'_'``.)" msgstr "" -#: ../../library/multiprocessing.rst:2014 -msgid "" -"*method_to_typeid* is a mapping used to specify the return type of those " -"exposed methods which should return a proxy. It maps method names to typeid " -"strings. (If *method_to_typeid* is ``None`` " -"then :attr:`proxytype._method_to_typeid_` is used instead if it exists.) If " -"a method's name is not a key of this mapping or if the mapping is ``None`` " -"then the object returned by the method will be copied by value." +msgid "*method_to_typeid* is a mapping used to specify the return type of those exposed methods which should return a proxy. It maps method names to typeid strings. (If *method_to_typeid* is ``None`` then :attr:`proxytype._method_to_typeid_` is used instead if it exists.) If a method's name is not a key of this mapping or if the mapping is ``None`` then the object returned by the method will be copied by value." msgstr "" -#: ../../library/multiprocessing.rst:2021 -msgid "" -"*create_method* determines whether a method should be created with name " -"*typeid* which can be used to tell the server process to create a new shared " -"object and return a proxy for it. By default it is ``True``." +msgid "*create_method* determines whether a method should be created with name *typeid* which can be used to tell the server process to create a new shared object and return a proxy for it. By default it is ``True``." msgstr "" -#: ../../library/multiprocessing.rst:2025 msgid ":class:`BaseManager` instances also have one read-only property:" msgstr "" -#: ../../library/multiprocessing.rst:2029 msgid "The address used by the manager." msgstr "" -#: ../../library/multiprocessing.rst:2031 -msgid "" -"Manager objects support the context management protocol -- " -"see :ref:`typecontextmanager`. :meth:`~contextmanager.__enter__` starts the " -"server process (if it has not already started) and then returns the manager " -"object. :meth:`~contextmanager.__exit__` calls :meth:`shutdown`." +msgid "Manager objects support the context management protocol -- see :ref:`typecontextmanager`. :meth:`~contextmanager.__enter__` starts the server process (if it has not already started) and then returns the manager object. :meth:`~contextmanager.__exit__` calls :meth:`shutdown`." msgstr "" -#: ../../library/multiprocessing.rst:2037 -msgid "" -"In previous versions :meth:`~contextmanager.__enter__` did not start the " -"manager's server process if it was not already started." +msgid "In previous versions :meth:`~contextmanager.__enter__` did not start the manager's server process if it was not already started." msgstr "" -#: ../../library/multiprocessing.rst:2042 -msgid "" -"A subclass of :class:`BaseManager` which can be used for the synchronization " -"of processes. Objects of this type are returned " -"by :func:`multiprocessing.Manager`." +msgid "A subclass of :class:`BaseManager` which can be used for the synchronization of processes. Objects of this type are returned by :func:`multiprocessing.Manager`." msgstr "" -#: ../../library/multiprocessing.rst:2046 -msgid "" -"Its methods create and return :ref:`multiprocessing-proxy_objects` for a " -"number of commonly used data types to be synchronized across processes. This " -"notably includes shared lists and dictionaries." +msgid "Its methods create and return :ref:`multiprocessing-proxy_objects` for a number of commonly used data types to be synchronized across processes. This notably includes shared lists and dictionaries." msgstr "" -#: ../../library/multiprocessing.rst:2052 -msgid "" -"Create a shared :class:`threading.Barrier` object and return a proxy for it." +msgid "Create a shared :class:`threading.Barrier` object and return a proxy for it." msgstr "" -#: ../../library/multiprocessing.rst:2059 -msgid "" -"Create a shared :class:`threading.BoundedSemaphore` object and return a " -"proxy for it." +msgid "Create a shared :class:`threading.BoundedSemaphore` object and return a proxy for it." msgstr "" -#: ../../library/multiprocessing.rst:2064 -msgid "" -"Create a shared :class:`threading.Condition` object and return a proxy for " -"it." +msgid "Create a shared :class:`threading.Condition` object and return a proxy for it." msgstr "" -#: ../../library/multiprocessing.rst:2067 -msgid "" -"If *lock* is supplied then it should be a proxy for " -"a :class:`threading.Lock` or :class:`threading.RLock` object." +msgid "If *lock* is supplied then it should be a proxy for a :class:`threading.Lock` or :class:`threading.RLock` object." msgstr "" -#: ../../library/multiprocessing.rst:2075 -msgid "" -"Create a shared :class:`threading.Event` object and return a proxy for it." +msgid "Create a shared :class:`threading.Event` object and return a proxy for it." msgstr "" -#: ../../library/multiprocessing.rst:2079 -msgid "" -"Create a shared :class:`threading.Lock` object and return a proxy for it." +msgid "Create a shared :class:`threading.Lock` object and return a proxy for it." msgstr "" -#: ../../library/multiprocessing.rst:2083 msgid "Create a shared :class:`Namespace` object and return a proxy for it." msgstr "" -#: ../../library/multiprocessing.rst:2087 msgid "Create a shared :class:`queue.Queue` object and return a proxy for it." msgstr "" -#: ../../library/multiprocessing.rst:2091 -msgid "" -"Create a shared :class:`threading.RLock` object and return a proxy for it." +msgid "Create a shared :class:`threading.RLock` object and return a proxy for it." msgstr "" -#: ../../library/multiprocessing.rst:2095 -msgid "" -"Create a shared :class:`threading.Semaphore` object and return a proxy for " -"it." +msgid "Create a shared :class:`threading.Semaphore` object and return a proxy for it." msgstr "" -#: ../../library/multiprocessing.rst:2100 msgid "Create an array and return a proxy for it." msgstr "" -#: ../../library/multiprocessing.rst:2104 -msgid "" -"Create an object with a writable ``value`` attribute and return a proxy for " -"it." +msgid "Create an object with a writable ``value`` attribute and return a proxy for it." msgstr "" -#: ../../library/multiprocessing.rst:2111 msgid "Create a shared :class:`dict` object and return a proxy for it." msgstr "" -#: ../../library/multiprocessing.rst:2116 msgid "Create a shared :class:`list` object and return a proxy for it." msgstr "" -#: ../../library/multiprocessing.rst:2122 msgid "Create a shared :class:`set` object and return a proxy for it." msgstr "" -#: ../../library/multiprocessing.rst:2124 msgid ":class:`set` support was added." msgstr "" -#: ../../library/multiprocessing.rst:2127 -msgid "" -"Shared objects are capable of being nested. For example, a shared container " -"object such as a shared list can contain other shared objects which will all " -"be managed and synchronized by the :class:`SyncManager`." +msgid "Shared objects are capable of being nested. For example, a shared container object such as a shared list can contain other shared objects which will all be managed and synchronized by the :class:`SyncManager`." msgstr "" -#: ../../library/multiprocessing.rst:2134 msgid "A type that can register with :class:`SyncManager`." msgstr "" -#: ../../library/multiprocessing.rst:2136 -msgid "" -"A namespace object has no public methods, but does have writable attributes. " -"Its representation shows the values of its attributes." +msgid "A namespace object has no public methods, but does have writable attributes. Its representation shows the values of its attributes." msgstr "" -#: ../../library/multiprocessing.rst:2139 -msgid "" -"However, when using a proxy for a namespace object, an attribute beginning " -"with ``'_'`` will be an attribute of the proxy and not an attribute of the " -"referent:" +msgid "However, when using a proxy for a namespace object, an attribute beginning with ``'_'`` will be an attribute of the proxy and not an attribute of the referent:" msgstr "" -#: ../../library/multiprocessing.rst:2143 msgid "" ">>> mp_context = multiprocessing.get_context('spawn')\n" ">>> manager = mp_context.Manager()\n" @@ -2825,18 +1540,12 @@ msgid "" "Namespace(x=10, y='hello')" msgstr "" -#: ../../library/multiprocessing.rst:2156 msgid "Customized managers" msgstr "" -#: ../../library/multiprocessing.rst:2158 -msgid "" -"To create one's own manager, one creates a subclass of :class:`BaseManager` " -"and uses the :meth:`~BaseManager.register` classmethod to register new types " -"or callables with the manager class. For example::" +msgid "To create one's own manager, one creates a subclass of :class:`BaseManager` and uses the :meth:`~BaseManager.register` classmethod to register new types or callables with the manager class. For example::" msgstr "" -#: ../../library/multiprocessing.rst:2162 msgid "" "from multiprocessing.managers import BaseManager\n" "\n" @@ -2858,23 +1567,15 @@ msgid "" " print(maths.mul(7, 8)) # prints 56" msgstr "" -#: ../../library/multiprocessing.rst:2183 msgid "Using a remote manager" msgstr "" -#: ../../library/multiprocessing.rst:2185 -msgid "" -"It is possible to run a manager server on one machine and have clients use " -"it from other machines (assuming that the firewalls involved allow it)." +msgid "It is possible to run a manager server on one machine and have clients use it from other machines (assuming that the firewalls involved allow it)." msgstr "" -#: ../../library/multiprocessing.rst:2188 -msgid "" -"Running the following commands creates a server for a single shared queue " -"which remote clients can access::" +msgid "Running the following commands creates a server for a single shared queue which remote clients can access::" msgstr "" -#: ../../library/multiprocessing.rst:2191 msgid "" ">>> from multiprocessing.managers import BaseManager\n" ">>> from queue import Queue\n" @@ -2886,46 +1587,36 @@ msgid "" ">>> s.serve_forever()" msgstr "" -#: ../../library/multiprocessing.rst:2200 msgid "One client can access the server as follows::" msgstr "" -#: ../../library/multiprocessing.rst:2202 msgid "" ">>> from multiprocessing.managers import BaseManager\n" ">>> class QueueManager(BaseManager): pass\n" ">>> QueueManager.register('get_queue')\n" -">>> m = QueueManager(address=('foo.bar.org', 50000), " -"authkey=b'abracadabra')\n" +">>> m = QueueManager(address=('foo.bar.org', 50000), authkey=b'abracadabra')\n" ">>> m.connect()\n" ">>> queue = m.get_queue()\n" ">>> queue.put('hello')" msgstr "" -#: ../../library/multiprocessing.rst:2210 msgid "Another client can also use it::" msgstr "" -#: ../../library/multiprocessing.rst:2212 msgid "" ">>> from multiprocessing.managers import BaseManager\n" ">>> class QueueManager(BaseManager): pass\n" ">>> QueueManager.register('get_queue')\n" -">>> m = QueueManager(address=('foo.bar.org', 50000), " -"authkey=b'abracadabra')\n" +">>> m = QueueManager(address=('foo.bar.org', 50000), authkey=b'abracadabra')\n" ">>> m.connect()\n" ">>> queue = m.get_queue()\n" ">>> queue.get()\n" "'hello'" msgstr "" -#: ../../library/multiprocessing.rst:2221 -msgid "" -"Local processes can also access that queue, using the code from above on the " -"client to access it remotely::" +msgid "Local processes can also access that queue, using the code from above on the client to access it remotely::" msgstr "" -#: ../../library/multiprocessing.rst:2224 msgid "" ">>> from multiprocessing import Process, Queue\n" ">>> from multiprocessing.managers import BaseManager\n" @@ -2947,26 +1638,15 @@ msgid "" ">>> s.serve_forever()" msgstr "" -#: ../../library/multiprocessing.rst:2246 msgid "Proxy Objects" msgstr "" -#: ../../library/multiprocessing.rst:2248 -msgid "" -"A proxy is an object which *refers* to a shared object which lives " -"(presumably) in a different process. The shared object is said to be the " -"*referent* of the proxy. Multiple proxy objects may have the same referent." +msgid "A proxy is an object which *refers* to a shared object which lives (presumably) in a different process. The shared object is said to be the *referent* of the proxy. Multiple proxy objects may have the same referent." msgstr "" -#: ../../library/multiprocessing.rst:2252 -msgid "" -"A proxy object has methods which invoke corresponding methods of its " -"referent (although not every method of the referent will necessarily be " -"available through the proxy). In this way, a proxy can be used just like " -"its referent can:" +msgid "A proxy object has methods which invoke corresponding methods of its referent (although not every method of the referent will necessarily be available through the proxy). In this way, a proxy can be used just like its referent can:" msgstr "" -#: ../../library/multiprocessing.rst:2256 msgid "" ">>> mp_context = multiprocessing.get_context('spawn')\n" ">>> manager = mp_context.Manager()\n" @@ -2981,22 +1661,12 @@ msgid "" "[4, 9, 16]" msgstr "" -#: ../../library/multiprocessing.rst:2270 -msgid "" -"Notice that applying :func:`str` to a proxy will return the representation " -"of the referent, whereas applying :func:`repr` will return the " -"representation of the proxy." +msgid "Notice that applying :func:`str` to a proxy will return the representation of the referent, whereas applying :func:`repr` will return the representation of the proxy." msgstr "" -#: ../../library/multiprocessing.rst:2274 -msgid "" -"An important feature of proxy objects is that they are picklable so they can " -"be passed between processes. As such, a referent can " -"contain :ref:`multiprocessing-proxy_objects`. This permits nesting of these " -"managed lists, dicts, and other :ref:`multiprocessing-proxy_objects`:" +msgid "An important feature of proxy objects is that they are picklable so they can be passed between processes. As such, a referent can contain :ref:`multiprocessing-proxy_objects`. This permits nesting of these managed lists, dicts, and other :ref:`multiprocessing-proxy_objects`:" msgstr "" -#: ../../library/multiprocessing.rst:2279 msgid "" ">>> a = manager.list()\n" ">>> b = manager.list()\n" @@ -3008,11 +1678,9 @@ msgid "" "['hello'] ['hello']" msgstr "" -#: ../../library/multiprocessing.rst:2290 msgid "Similarly, dict and list proxies may be nested inside one another::" msgstr "" -#: ../../library/multiprocessing.rst:2292 msgid "" ">>> l_outer = manager.list([ manager.dict() for i in range(2) ])\n" ">>> d_first_inner = l_outer[0]\n" @@ -3026,18 +1694,9 @@ msgid "" "{'c': 3, 'z': 26}" msgstr "" -#: ../../library/multiprocessing.rst:2303 -msgid "" -"If standard (non-proxy) :class:`list` or :class:`dict` objects are contained " -"in a referent, modifications to those mutable values will not be propagated " -"through the manager because the proxy has no way of knowing when the values " -"contained within are modified. However, storing a value in a container " -"proxy (which triggers a ``__setitem__`` on the proxy object) does propagate " -"through the manager and so to effectively modify such an item, one could re-" -"assign the modified value to the container proxy::" +msgid "If standard (non-proxy) :class:`list` or :class:`dict` objects are contained in a referent, modifications to those mutable values will not be propagated through the manager because the proxy has no way of knowing when the values contained within are modified. However, storing a value in a container proxy (which triggers a ``__setitem__`` on the proxy object) does propagate through the manager and so to effectively modify such an item, one could re-assign the modified value to the container proxy::" msgstr "" -#: ../../library/multiprocessing.rst:2311 msgid "" "# create a list proxy and append a mutable object (a dictionary)\n" "lproxy = manager.list()\n" @@ -3051,85 +1710,53 @@ msgid "" "lproxy[0] = d" msgstr "" -#: ../../library/multiprocessing.rst:2322 -msgid "" -"This approach is perhaps less convenient than employing " -"nested :ref:`multiprocessing-proxy_objects` for most use cases but also " -"demonstrates a level of control over the synchronization." +msgid "This approach is perhaps less convenient than employing nested :ref:`multiprocessing-proxy_objects` for most use cases but also demonstrates a level of control over the synchronization." msgstr "" -#: ../../library/multiprocessing.rst:2328 -msgid "" -"The proxy types in :mod:`!multiprocessing` do nothing to support comparisons " -"by value. So, for instance, we have:" +msgid "The proxy types in :mod:`!multiprocessing` do nothing to support comparisons by value. So, for instance, we have:" msgstr "" -#: ../../library/multiprocessing.rst:2331 msgid "" ">>> manager.list([1,2,3]) == [1,2,3]\n" "False" msgstr "" -#: ../../library/multiprocessing.rst:2336 -msgid "" -"One should just use a copy of the referent instead when making comparisons." +msgid "One should just use a copy of the referent instead when making comparisons." msgstr "" -#: ../../library/multiprocessing.rst:2340 msgid "Proxy objects are instances of subclasses of :class:`BaseProxy`." msgstr "" -#: ../../library/multiprocessing.rst:2344 msgid "Call and return the result of a method of the proxy's referent." msgstr "" -#: ../../library/multiprocessing.rst:2346 -msgid "" -"If ``proxy`` is a proxy whose referent is ``obj`` then the expression ::" +msgid "If ``proxy`` is a proxy whose referent is ``obj`` then the expression ::" msgstr "" -#: ../../library/multiprocessing.rst:2348 msgid "proxy._callmethod(methodname, args, kwds)" msgstr "" -#: ../../library/multiprocessing.rst:2350 msgid "will evaluate the expression ::" msgstr "" -#: ../../library/multiprocessing.rst:2352 msgid "getattr(obj, methodname)(*args, **kwds)" msgstr "" -#: ../../library/multiprocessing.rst:2354 msgid "in the manager's process." msgstr "" -#: ../../library/multiprocessing.rst:2356 -msgid "" -"The returned value will be a copy of the result of the call or a proxy to a " -"new shared object -- see documentation for the *method_to_typeid* argument " -"of :meth:`BaseManager.register`." +msgid "The returned value will be a copy of the result of the call or a proxy to a new shared object -- see documentation for the *method_to_typeid* argument of :meth:`BaseManager.register`." msgstr "" -#: ../../library/multiprocessing.rst:2360 -msgid "" -"If an exception is raised by the call, then is re-raised " -"by :meth:`_callmethod`. If some other exception is raised in the manager's " -"process then this is converted into a :exc:`RemoteError` exception and is " -"raised by :meth:`_callmethod`." +msgid "If an exception is raised by the call, then is re-raised by :meth:`_callmethod`. If some other exception is raised in the manager's process then this is converted into a :exc:`RemoteError` exception and is raised by :meth:`_callmethod`." msgstr "" -#: ../../library/multiprocessing.rst:2365 -msgid "" -"Note in particular that an exception will be raised if *methodname* has not " -"been *exposed*." +msgid "Note in particular that an exception will be raised if *methodname* has not been *exposed*." msgstr "" -#: ../../library/multiprocessing.rst:2368 msgid "An example of the usage of :meth:`_callmethod`:" msgstr "" -#: ../../library/multiprocessing.rst:2370 msgid "" ">>> l = manager.list(range(10))\n" ">>> l._callmethod('__len__')\n" @@ -3142,309 +1769,150 @@ msgid "" "IndexError: list index out of range" msgstr "" -#: ../../library/multiprocessing.rst:2384 msgid "Return a copy of the referent." msgstr "" -#: ../../library/multiprocessing.rst:2386 msgid "If the referent is unpicklable then this will raise an exception." msgstr "" -#: ../../library/multiprocessing.rst:2390 msgid "Return a representation of the proxy object." msgstr "" -#: ../../library/multiprocessing.rst:2394 msgid "Return the representation of the referent." msgstr "" -#: ../../library/multiprocessing.rst:2398 msgid "Cleanup" msgstr "" -#: ../../library/multiprocessing.rst:2400 -msgid "" -"A proxy object uses a weakref callback so that when it gets garbage " -"collected it deregisters itself from the manager which owns its referent." +msgid "A proxy object uses a weakref callback so that when it gets garbage collected it deregisters itself from the manager which owns its referent." msgstr "" -#: ../../library/multiprocessing.rst:2403 -msgid "" -"A shared object gets deleted from the manager process when there are no " -"longer any proxies referring to it." +msgid "A shared object gets deleted from the manager process when there are no longer any proxies referring to it." msgstr "" -#: ../../library/multiprocessing.rst:2408 msgid "Process Pools" msgstr "" -#: ../../library/multiprocessing.rst:2413 -msgid "" -"One can create a pool of processes which will carry out tasks submitted to " -"it with the :class:`Pool` class." +msgid "One can create a pool of processes which will carry out tasks submitted to it with the :class:`Pool` class." msgstr "" -#: ../../library/multiprocessing.rst:2418 -msgid "" -"A process pool object which controls a pool of worker processes to which " -"jobs can be submitted. It supports asynchronous results with timeouts and " -"callbacks and has a parallel map implementation." +msgid "A process pool object which controls a pool of worker processes to which jobs can be submitted. It supports asynchronous results with timeouts and callbacks and has a parallel map implementation." msgstr "" -#: ../../library/multiprocessing.rst:2422 -msgid "" -"*processes* is the number of worker processes to use. If *processes* is " -"``None`` then the number returned by :func:`os.process_cpu_count` is used." +msgid "*processes* is the number of worker processes to use. If *processes* is ``None`` then the number returned by :func:`os.process_cpu_count` is used." msgstr "" -#: ../../library/multiprocessing.rst:2425 -#: ../../library/multiprocessing.rst:3001 -msgid "" -"If *initializer* is not ``None`` then each worker process will call " -"``initializer(*initargs)`` when it starts." +msgid "If *initializer* is not ``None`` then each worker process will call ``initializer(*initargs)`` when it starts." msgstr "" -#: ../../library/multiprocessing.rst:2428 -msgid "" -"*maxtasksperchild* is the number of tasks a worker process can complete " -"before it will exit and be replaced with a fresh worker process, to enable " -"unused resources to be freed. The default *maxtasksperchild* is ``None``, " -"which means worker processes will live as long as the pool." +msgid "*maxtasksperchild* is the number of tasks a worker process can complete before it will exit and be replaced with a fresh worker process, to enable unused resources to be freed. The default *maxtasksperchild* is ``None``, which means worker processes will live as long as the pool." msgstr "" -#: ../../library/multiprocessing.rst:2433 -msgid "" -"*context* can be used to specify the context used for starting the worker " -"processes. Usually a pool is created using the " -"function :func:`multiprocessing.Pool` or the :meth:`Pool` method of a " -"context object. In both cases *context* is set appropriately. If ``None``, " -"calling this function will have the side effect of setting the current " -"global start method if it has not been set already. See " -"the :func:`get_context` function." +msgid "*context* can be used to specify the context used for starting the worker processes. Usually a pool is created using the function :func:`multiprocessing.Pool` or the :meth:`Pool` method of a context object. In both cases *context* is set appropriately. If ``None``, calling this function will have the side effect of setting the current global start method if it has not been set already. See the :func:`get_context` function." msgstr "" -#: ../../library/multiprocessing.rst:2441 -msgid "" -"Note that the methods of the pool object should only be called by the " -"process which created the pool." +msgid "Note that the methods of the pool object should only be called by the process which created the pool." msgstr "" -#: ../../library/multiprocessing.rst:2445 -msgid "" -":class:`multiprocessing.pool` objects have internal resources that need to " -"be properly managed (like any other resource) by using the pool as a context " -"manager or by calling :meth:`close` and :meth:`terminate` manually. Failure " -"to do this can lead to the process hanging on finalization." +msgid ":class:`multiprocessing.pool` objects have internal resources that need to be properly managed (like any other resource) by using the pool as a context manager or by calling :meth:`close` and :meth:`terminate` manually. Failure to do this can lead to the process hanging on finalization." msgstr "" -#: ../../library/multiprocessing.rst:2450 -msgid "" -"Note that it is **not correct** to rely on the garbage collector to destroy " -"the pool as CPython does not assure that the finalizer of the pool will be " -"called (see :meth:`object.__del__` for more information)." +msgid "Note that it is **not correct** to rely on the garbage collector to destroy the pool as CPython does not assure that the finalizer of the pool will be called (see :meth:`object.__del__` for more information)." msgstr "" -#: ../../library/multiprocessing.rst:2454 msgid "Added the *maxtasksperchild* parameter." msgstr "" -#: ../../library/multiprocessing.rst:2457 msgid "Added the *context* parameter." msgstr "" -#: ../../library/multiprocessing.rst:2460 -msgid "" -"*processes* uses :func:`os.process_cpu_count` by default, instead " -"of :func:`os.cpu_count`." +msgid "*processes* uses :func:`os.process_cpu_count` by default, instead of :func:`os.cpu_count`." msgstr "" -#: ../../library/multiprocessing.rst:2466 -msgid "" -"Worker processes within a :class:`Pool` typically live for the complete " -"duration of the Pool's work queue. A frequent pattern found in other systems " -"(such as Apache, mod_wsgi, etc) to free resources held by workers is to " -"allow a worker within a pool to complete only a set amount of work before " -"exiting, being cleaned up and a new process spawned to replace the old one. " -"The *maxtasksperchild* argument to the :class:`Pool` exposes this ability to " -"the end user." +msgid "Worker processes within a :class:`Pool` typically live for the complete duration of the Pool's work queue. A frequent pattern found in other systems (such as Apache, mod_wsgi, etc) to free resources held by workers is to allow a worker within a pool to complete only a set amount of work before exiting, being cleaned up and a new process spawned to replace the old one. The *maxtasksperchild* argument to the :class:`Pool` exposes this ability to the end user." msgstr "" -#: ../../library/multiprocessing.rst:2476 -msgid "" -"Call *func* with arguments *args* and keyword arguments *kwds*. It blocks " -"until the result is ready. Given this blocks, :meth:`apply_async` is better " -"suited for performing work in parallel. Additionally, *func* is only " -"executed in one of the workers of the pool." +msgid "Call *func* with arguments *args* and keyword arguments *kwds*. It blocks until the result is ready. Given this blocks, :meth:`apply_async` is better suited for performing work in parallel. Additionally, *func* is only executed in one of the workers of the pool." msgstr "" -#: ../../library/multiprocessing.rst:2483 -msgid "" -"A variant of the :meth:`apply` method which returns " -"a :class:`~multiprocessing.pool.AsyncResult` object." +msgid "A variant of the :meth:`apply` method which returns a :class:`~multiprocessing.pool.AsyncResult` object." msgstr "" -#: ../../library/multiprocessing.rst:2486 -#: ../../library/multiprocessing.rst:2517 -msgid "" -"If *callback* is specified then it should be a callable which accepts a " -"single argument. When the result becomes ready *callback* is applied to it, " -"that is unless the call failed, in which case the *error_callback* is " -"applied instead." +msgid "If *callback* is specified then it should be a callable which accepts a single argument. When the result becomes ready *callback* is applied to it, that is unless the call failed, in which case the *error_callback* is applied instead." msgstr "" -#: ../../library/multiprocessing.rst:2491 -#: ../../library/multiprocessing.rst:2522 -msgid "" -"If *error_callback* is specified then it should be a callable which accepts " -"a single argument. If the target function fails, then the *error_callback* " -"is called with the exception instance." +msgid "If *error_callback* is specified then it should be a callable which accepts a single argument. If the target function fails, then the *error_callback* is called with the exception instance." msgstr "" -#: ../../library/multiprocessing.rst:2495 -#: ../../library/multiprocessing.rst:2526 -msgid "" -"Callbacks should complete immediately since otherwise the thread which " -"handles the results will get blocked." +msgid "Callbacks should complete immediately since otherwise the thread which handles the results will get blocked." msgstr "" -#: ../../library/multiprocessing.rst:2500 -msgid "" -"A parallel equivalent of the :func:`map` built-in function (it supports only " -"one *iterable* argument though, for multiple iterables see :meth:`starmap`). " -"It blocks until the result is ready." +msgid "A parallel equivalent of the :func:`map` built-in function (it supports only one *iterable* argument though, for multiple iterables see :meth:`starmap`). It blocks until the result is ready." msgstr "" -#: ../../library/multiprocessing.rst:2504 -msgid "" -"This method chops the iterable into a number of chunks which it submits to " -"the process pool as separate tasks. The (approximate) size of these chunks " -"can be specified by setting *chunksize* to a positive integer." +msgid "This method chops the iterable into a number of chunks which it submits to the process pool as separate tasks. The (approximate) size of these chunks can be specified by setting *chunksize* to a positive integer." msgstr "" -#: ../../library/multiprocessing.rst:2508 -msgid "" -"Note that it may cause high memory usage for very long iterables. Consider " -"using :meth:`imap` or :meth:`imap_unordered` with explicit *chunksize* " -"option for better efficiency." +msgid "Note that it may cause high memory usage for very long iterables. Consider using :meth:`imap` or :meth:`imap_unordered` with explicit *chunksize* option for better efficiency." msgstr "" -#: ../../library/multiprocessing.rst:2514 -msgid "" -"A variant of the :meth:`.map` method which returns " -"a :class:`~multiprocessing.pool.AsyncResult` object." +msgid "A variant of the :meth:`.map` method which returns a :class:`~multiprocessing.pool.AsyncResult` object." msgstr "" -#: ../../library/multiprocessing.rst:2531 msgid "A lazier version of :meth:`.map`." msgstr "" -#: ../../library/multiprocessing.rst:2533 -msgid "" -"The *chunksize* argument is the same as the one used by the :meth:`.map` " -"method. For very long iterables using a large value for *chunksize* can " -"make the job complete **much** faster than using the default value of ``1``." +msgid "The *chunksize* argument is the same as the one used by the :meth:`.map` method. For very long iterables using a large value for *chunksize* can make the job complete **much** faster than using the default value of ``1``." msgstr "" -#: ../../library/multiprocessing.rst:2538 -msgid "" -"Also if *chunksize* is ``1`` then the :meth:`!next` method of the iterator " -"returned by the :meth:`imap` method has an optional *timeout* parameter: " -"``next(timeout)`` will raise :exc:`multiprocessing.TimeoutError` if the " -"result cannot be returned within *timeout* seconds." +msgid "Also if *chunksize* is ``1`` then the :meth:`!next` method of the iterator returned by the :meth:`imap` method has an optional *timeout* parameter: ``next(timeout)`` will raise :exc:`multiprocessing.TimeoutError` if the result cannot be returned within *timeout* seconds." msgstr "" -#: ../../library/multiprocessing.rst:2545 -msgid "" -"The same as :meth:`imap` except that the ordering of the results from the " -"returned iterator should be considered arbitrary. (Only when there is only " -"one worker process is the order guaranteed to be \"correct\".)" +msgid "The same as :meth:`imap` except that the ordering of the results from the returned iterator should be considered arbitrary. (Only when there is only one worker process is the order guaranteed to be \"correct\".)" msgstr "" -#: ../../library/multiprocessing.rst:2551 -msgid "" -"Like :meth:`~multiprocessing.pool.Pool.map` except that the elements of the " -"*iterable* are expected to be iterables that are unpacked as arguments." +msgid "Like :meth:`~multiprocessing.pool.Pool.map` except that the elements of the *iterable* are expected to be iterables that are unpacked as arguments." msgstr "" -#: ../../library/multiprocessing.rst:2555 -msgid "" -"Hence an *iterable* of ``[(1,2), (3, 4)]`` results in ``[func(1,2), " -"func(3,4)]``." +msgid "Hence an *iterable* of ``[(1,2), (3, 4)]`` results in ``[func(1,2), func(3,4)]``." msgstr "" -#: ../../library/multiprocessing.rst:2562 -msgid "" -"A combination of :meth:`starmap` and :meth:`map_async` that iterates over " -"*iterable* of iterables and calls *func* with the iterables unpacked. " -"Returns a result object." +msgid "A combination of :meth:`starmap` and :meth:`map_async` that iterates over *iterable* of iterables and calls *func* with the iterables unpacked. Returns a result object." msgstr "" -#: ../../library/multiprocessing.rst:2570 -msgid "" -"Prevents any more tasks from being submitted to the pool. Once all the " -"tasks have been completed the worker processes will exit." +msgid "Prevents any more tasks from being submitted to the pool. Once all the tasks have been completed the worker processes will exit." msgstr "" -#: ../../library/multiprocessing.rst:2575 -msgid "" -"Stops the worker processes immediately without completing outstanding work. " -"When the pool object is garbage collected :meth:`terminate` will be called " -"immediately." +msgid "Stops the worker processes immediately without completing outstanding work. When the pool object is garbage collected :meth:`terminate` will be called immediately." msgstr "" -#: ../../library/multiprocessing.rst:2581 -msgid "" -"Wait for the worker processes to exit. One must call :meth:`close` " -"or :meth:`terminate` before using :meth:`join`." +msgid "Wait for the worker processes to exit. One must call :meth:`close` or :meth:`terminate` before using :meth:`join`." msgstr "" -#: ../../library/multiprocessing.rst:2584 -msgid "" -"Pool objects now support the context management protocol -- " -"see :ref:`typecontextmanager`. :meth:`~contextmanager.__enter__` returns " -"the pool object, and :meth:`~contextmanager.__exit__` " -"calls :meth:`terminate`." +msgid "Pool objects now support the context management protocol -- see :ref:`typecontextmanager`. :meth:`~contextmanager.__enter__` returns the pool object, and :meth:`~contextmanager.__exit__` calls :meth:`terminate`." msgstr "" -#: ../../library/multiprocessing.rst:2592 -msgid "" -"The class of the result returned by :meth:`Pool.apply_async` " -"and :meth:`Pool.map_async`." +msgid "The class of the result returned by :meth:`Pool.apply_async` and :meth:`Pool.map_async`." msgstr "" -#: ../../library/multiprocessing.rst:2597 -msgid "" -"Return the result when it arrives. If *timeout* is not ``None`` and the " -"result does not arrive within *timeout* seconds " -"then :exc:`multiprocessing.TimeoutError` is raised. If the remote call " -"raised an exception then that exception will be reraised by :meth:`get`." +msgid "Return the result when it arrives. If *timeout* is not ``None`` and the result does not arrive within *timeout* seconds then :exc:`multiprocessing.TimeoutError` is raised. If the remote call raised an exception then that exception will be reraised by :meth:`get`." msgstr "" -#: ../../library/multiprocessing.rst:2604 msgid "Wait until the result is available or until *timeout* seconds pass." msgstr "" -#: ../../library/multiprocessing.rst:2608 msgid "Return whether the call has completed." msgstr "" -#: ../../library/multiprocessing.rst:2612 -msgid "" -"Return whether the call completed without raising an exception. Will " -"raise :exc:`ValueError` if the result is not ready." +msgid "Return whether the call completed without raising an exception. Will raise :exc:`ValueError` if the result is not ready." msgstr "" -#: ../../library/multiprocessing.rst:2615 -msgid "" -"If the result is not ready, :exc:`ValueError` is raised instead " -"of :exc:`AssertionError`." +msgid "If the result is not ready, :exc:`ValueError` is raised instead of :exc:`AssertionError`." msgstr "" -#: ../../library/multiprocessing.rst:2619 msgid "The following example demonstrates the use of a pool::" msgstr "" -#: ../../library/multiprocessing.rst:2621 msgid "" "from multiprocessing import Pool\n" "import time\n" @@ -3454,232 +1922,113 @@ msgid "" "\n" "if __name__ == '__main__':\n" " with Pool(processes=4) as pool: # start 4 worker processes\n" -" result = pool.apply_async(f, (10,)) # evaluate \"f(10)\" " -"asynchronously in a single process\n" -" print(result.get(timeout=1)) # prints \"100\" unless your " -"computer is *very* slow\n" +" result = pool.apply_async(f, (10,)) # evaluate \"f(10)\" asynchronously in a single process\n" +" print(result.get(timeout=1)) # prints \"100\" unless your computer is *very* slow\n" "\n" " print(pool.map(f, range(10))) # prints \"[0, 1, 4,..., 81]\"\n" "\n" " it = pool.imap(f, range(10))\n" " print(next(it)) # prints \"0\"\n" " print(next(it)) # prints \"1\"\n" -" print(it.next(timeout=1)) # prints \"4\" unless your " -"computer is *very* slow\n" +" print(it.next(timeout=1)) # prints \"4\" unless your computer is *very* slow\n" "\n" " result = pool.apply_async(time.sleep, (10,))\n" -" print(result.get(timeout=1)) # raises " -"multiprocessing.TimeoutError" +" print(result.get(timeout=1)) # raises multiprocessing.TimeoutError" msgstr "" -#: ../../library/multiprocessing.rst:2646 msgid "Listeners and Clients" msgstr "" -#: ../../library/multiprocessing.rst:2651 -msgid "" -"Usually message passing between processes is done using queues or by " -"using :class:`~Connection` objects returned by :func:`~multiprocessing.Pipe`." +msgid "Usually message passing between processes is done using queues or by using :class:`~Connection` objects returned by :func:`~multiprocessing.Pipe`." msgstr "" -#: ../../library/multiprocessing.rst:2655 -msgid "" -"However, the :mod:`!multiprocessing.connection` module allows some extra " -"flexibility. It basically gives a high level message oriented API for " -"dealing with sockets or Windows named pipes. It also has support for " -"*digest authentication* using the :mod:`hmac` module, and for polling " -"multiple connections at the same time." +msgid "However, the :mod:`!multiprocessing.connection` module allows some extra flexibility. It basically gives a high level message oriented API for dealing with sockets or Windows named pipes. It also has support for *digest authentication* using the :mod:`hmac` module, and for polling multiple connections at the same time." msgstr "" -#: ../../library/multiprocessing.rst:2664 -msgid "" -"Send a randomly generated message to the other end of the connection and " -"wait for a reply." +msgid "Send a randomly generated message to the other end of the connection and wait for a reply." msgstr "" -#: ../../library/multiprocessing.rst:2667 -msgid "" -"If the reply matches the digest of the message using *authkey* as the key " -"then a welcome message is sent to the other end of the connection. " -"Otherwise :exc:`~multiprocessing.AuthenticationError` is raised." +msgid "If the reply matches the digest of the message using *authkey* as the key then a welcome message is sent to the other end of the connection. Otherwise :exc:`~multiprocessing.AuthenticationError` is raised." msgstr "" -#: ../../library/multiprocessing.rst:2673 -msgid "" -"Receive a message, calculate the digest of the message using *authkey* as " -"the key, and then send the digest back." +msgid "Receive a message, calculate the digest of the message using *authkey* as the key, and then send the digest back." msgstr "" -#: ../../library/multiprocessing.rst:2676 -msgid "" -"If a welcome message is not received, " -"then :exc:`~multiprocessing.AuthenticationError` is raised." +msgid "If a welcome message is not received, then :exc:`~multiprocessing.AuthenticationError` is raised." msgstr "" -#: ../../library/multiprocessing.rst:2681 -msgid "" -"Attempt to set up a connection to the listener which is using address " -"*address*, returning a :class:`~Connection`." +msgid "Attempt to set up a connection to the listener which is using address *address*, returning a :class:`~Connection`." msgstr "" -#: ../../library/multiprocessing.rst:2684 -msgid "" -"The type of the connection is determined by *family* argument, but this can " -"generally be omitted since it can usually be inferred from the format of " -"*address*. (See :ref:`multiprocessing-address-formats`)" +msgid "The type of the connection is determined by *family* argument, but this can generally be omitted since it can usually be inferred from the format of *address*. (See :ref:`multiprocessing-address-formats`)" msgstr "" -#: ../../library/multiprocessing.rst:2688 -#: ../../library/multiprocessing.rst:2723 -msgid "" -"If *authkey* is given and not ``None``, it should be a byte string and will " -"be used as the secret key for an HMAC-based authentication challenge. No " -"authentication is done if *authkey* is " -"``None``. :exc:`~multiprocessing.AuthenticationError` is raised if " -"authentication fails. See :ref:`multiprocessing-auth-keys`." +msgid "If *authkey* is given and not ``None``, it should be a byte string and will be used as the secret key for an HMAC-based authentication challenge. No authentication is done if *authkey* is ``None``. :exc:`~multiprocessing.AuthenticationError` is raised if authentication fails. See :ref:`multiprocessing-auth-keys`." msgstr "" -#: ../../library/multiprocessing.rst:2696 -msgid "" -"A wrapper for a bound socket or Windows named pipe which is 'listening' for " -"connections." +msgid "A wrapper for a bound socket or Windows named pipe which is 'listening' for connections." msgstr "" -#: ../../library/multiprocessing.rst:2699 -msgid "" -"*address* is the address to be used by the bound socket or named pipe of the " -"listener object." +msgid "*address* is the address to be used by the bound socket or named pipe of the listener object." msgstr "" -#: ../../library/multiprocessing.rst:2704 -msgid "" -"If an address of '0.0.0.0' is used, the address will not be a connectable " -"end point on Windows. If you require a connectable end-point, you should use " -"'127.0.0.1'." +msgid "If an address of '0.0.0.0' is used, the address will not be a connectable end point on Windows. If you require a connectable end-point, you should use '127.0.0.1'." msgstr "" -#: ../../library/multiprocessing.rst:2708 -msgid "" -"*family* is the type of socket (or named pipe) to use. This can be one of " -"the strings ``'AF_INET'`` (for a TCP socket), ``'AF_UNIX'`` (for a Unix " -"domain socket) or ``'AF_PIPE'`` (for a Windows named pipe). Of these only " -"the first is guaranteed to be available. If *family* is ``None`` then the " -"family is inferred from the format of *address*. If *address* is also " -"``None`` then a default is chosen. This default is the family which is " -"assumed to be the fastest available. See :ref:`multiprocessing-address-" -"formats`. Note that if *family* is ``'AF_UNIX'`` and address is ``None`` " -"then the socket will be created in a private temporary directory created " -"using :func:`tempfile.mkstemp`." -msgstr "" - -#: ../../library/multiprocessing.rst:2719 -msgid "" -"If the listener object uses a socket then *backlog* (1 by default) is passed " -"to the :meth:`~socket.socket.listen` method of the socket once it has been " -"bound." +msgid "*family* is the type of socket (or named pipe) to use. This can be one of the strings ``'AF_INET'`` (for a TCP socket), ``'AF_UNIX'`` (for a Unix domain socket) or ``'AF_PIPE'`` (for a Windows named pipe). Of these only the first is guaranteed to be available. If *family* is ``None`` then the family is inferred from the format of *address*. If *address* is also ``None`` then a default is chosen. This default is the family which is assumed to be the fastest available. See :ref:`multiprocessing-address-formats`. Note that if *family* is ``'AF_UNIX'`` and address is ``None`` then the socket will be created in a private temporary directory created using :func:`tempfile.mkstemp`." msgstr "" -#: ../../library/multiprocessing.rst:2731 -msgid "" -"Accept a connection on the bound socket or named pipe of the listener object " -"and return a :class:`~Connection` object. If authentication is attempted and " -"fails, then :exc:`~multiprocessing.AuthenticationError` is raised." +msgid "If the listener object uses a socket then *backlog* (1 by default) is passed to the :meth:`~socket.socket.listen` method of the socket once it has been bound." msgstr "" -#: ../../library/multiprocessing.rst:2738 -msgid "" -"Close the bound socket or named pipe of the listener object. This is called " -"automatically when the listener is garbage collected. However it is " -"advisable to call it explicitly." +msgid "Accept a connection on the bound socket or named pipe of the listener object and return a :class:`~Connection` object. If authentication is attempted and fails, then :exc:`~multiprocessing.AuthenticationError` is raised." +msgstr "" + +msgid "Close the bound socket or named pipe of the listener object. This is called automatically when the listener is garbage collected. However it is advisable to call it explicitly." msgstr "" -#: ../../library/multiprocessing.rst:2742 msgid "Listener objects have the following read-only properties:" msgstr "" -#: ../../library/multiprocessing.rst:2746 msgid "The address which is being used by the Listener object." msgstr "" -#: ../../library/multiprocessing.rst:2750 -msgid "" -"The address from which the last accepted connection came. If this is " -"unavailable then it is ``None``." +msgid "The address from which the last accepted connection came. If this is unavailable then it is ``None``." msgstr "" -#: ../../library/multiprocessing.rst:2753 -msgid "" -"Listener objects now support the context management protocol -- " -"see :ref:`typecontextmanager`. :meth:`~contextmanager.__enter__` returns " -"the listener object, and :meth:`~contextmanager.__exit__` " -"calls :meth:`close`." +msgid "Listener objects now support the context management protocol -- see :ref:`typecontextmanager`. :meth:`~contextmanager.__enter__` returns the listener object, and :meth:`~contextmanager.__exit__` calls :meth:`close`." msgstr "" -#: ../../library/multiprocessing.rst:2760 -msgid "" -"Wait till an object in *object_list* is ready. Returns the list of those " -"objects in *object_list* which are ready. If *timeout* is a float then the " -"call blocks for at most that many seconds. If *timeout* is ``None`` then it " -"will block for an unlimited period. A negative timeout is equivalent to a " -"zero timeout." +msgid "Wait till an object in *object_list* is ready. Returns the list of those objects in *object_list* which are ready. If *timeout* is a float then the call blocks for at most that many seconds. If *timeout* is ``None`` then it will block for an unlimited period. A negative timeout is equivalent to a zero timeout." msgstr "" -#: ../../library/multiprocessing.rst:2766 -msgid "" -"For both POSIX and Windows, an object can appear in *object_list* if it is" +msgid "For both POSIX and Windows, an object can appear in *object_list* if it is" msgstr "" -#: ../../library/multiprocessing.rst:2769 msgid "a readable :class:`~multiprocessing.connection.Connection` object;" msgstr "" -#: ../../library/multiprocessing.rst:2770 msgid "a connected and readable :class:`socket.socket` object; or" msgstr "" -#: ../../library/multiprocessing.rst:2771 -msgid "" -"the :attr:`~multiprocessing.Process.sentinel` attribute of " -"a :class:`~multiprocessing.Process` object." +msgid "the :attr:`~multiprocessing.Process.sentinel` attribute of a :class:`~multiprocessing.Process` object." msgstr "" -#: ../../library/multiprocessing.rst:2774 -msgid "" -"A connection or socket object is ready when there is data available to be " -"read from it, or the other end has been closed." +msgid "A connection or socket object is ready when there is data available to be read from it, or the other end has been closed." msgstr "" -#: ../../library/multiprocessing.rst:2777 -msgid "" -"**POSIX**: ``wait(object_list, timeout)`` almost equivalent " -"``select.select(object_list, [], [], timeout)``. The difference is that, " -"if :func:`select.select` is interrupted by a signal, it can " -"raise :exc:`OSError` with an error number of ``EINTR``, whereas :func:`wait` " -"will not." +msgid "**POSIX**: ``wait(object_list, timeout)`` almost equivalent ``select.select(object_list, [], [], timeout)``. The difference is that, if :func:`select.select` is interrupted by a signal, it can raise :exc:`OSError` with an error number of ``EINTR``, whereas :func:`wait` will not." msgstr "" -#: ../../library/multiprocessing.rst:2783 -msgid "" -"**Windows**: An item in *object_list* must either be an integer handle which " -"is waitable (according to the definition used by the documentation of the " -"Win32 function ``WaitForMultipleObjects()``) or it can be an object with " -"a :meth:`~io.IOBase.fileno` method which returns a socket handle or pipe " -"handle. (Note that pipe handles and socket handles are **not** waitable " -"handles.)" +msgid "**Windows**: An item in *object_list* must either be an integer handle which is waitable (according to the definition used by the documentation of the Win32 function ``WaitForMultipleObjects()``) or it can be an object with a :meth:`~io.IOBase.fileno` method which returns a socket handle or pipe handle. (Note that pipe handles and socket handles are **not** waitable handles.)" msgstr "" -#: ../../library/multiprocessing.rst:2793 msgid "**Examples**" msgstr "" -#: ../../library/multiprocessing.rst:2795 -msgid "" -"The following server code creates a listener which uses ``'secret " -"password'`` as an authentication key. It then waits for a connection and " -"sends some data to the client::" +msgid "The following server code creates a listener which uses ``'secret password'`` as an authentication key. It then waits for a connection and sends some data to the client::" msgstr "" -#: ../../library/multiprocessing.rst:2799 msgid "" "from multiprocessing.connection import Listener\n" "from array import array\n" @@ -3697,13 +2046,9 @@ msgid "" " conn.send_bytes(array('i', [42, 1729]))" msgstr "" -#: ../../library/multiprocessing.rst:2814 -msgid "" -"The following code connects to the server and receives some data from the " -"server::" +msgid "The following code connects to the server and receives some data from the server::" msgstr "" -#: ../../library/multiprocessing.rst:2817 msgid "" "from multiprocessing.connection import Client\n" "from array import array\n" @@ -3720,13 +2065,9 @@ msgid "" " print(arr) # => array('i', [42, 1729, 0, 0, 0])" msgstr "" -#: ../../library/multiprocessing.rst:2831 -msgid "" -"The following code uses :func:`~multiprocessing.connection.wait` to wait for " -"messages from multiple processes at once::" +msgid "The following code uses :func:`~multiprocessing.connection.wait` to wait for messages from multiple processes at once::" msgstr "" -#: ../../library/multiprocessing.rst:2834 msgid "" "from multiprocessing import Process, Pipe, current_process\n" "from multiprocessing.connection import wait\n" @@ -3760,133 +2101,60 @@ msgid "" " print(msg)" msgstr "" -#: ../../library/multiprocessing.rst:2869 msgid "Address Formats" msgstr "" -#: ../../library/multiprocessing.rst:2871 -msgid "" -"An ``'AF_INET'`` address is a tuple of the form ``(hostname, port)`` where " -"*hostname* is a string and *port* is an integer." +msgid "An ``'AF_INET'`` address is a tuple of the form ``(hostname, port)`` where *hostname* is a string and *port* is an integer." msgstr "" -#: ../../library/multiprocessing.rst:2874 -msgid "" -"An ``'AF_UNIX'`` address is a string representing a filename on the " -"filesystem." +msgid "An ``'AF_UNIX'`` address is a string representing a filename on the filesystem." msgstr "" -#: ../../library/multiprocessing.rst:2877 -msgid "" -"An ``'AF_PIPE'`` address is a string of the form :samp:`r'\\\\\\\\\\\\.\\" -"\\pipe\\\\\\\\{PipeName}'`. To use :func:`Client` to connect to a named " -"pipe on a remote computer called *ServerName* one should use an address of " -"the form :samp:`r'\\\\\\\\\\\\\\\\{ServerName}\\\\pipe\\\\\\\\{PipeName}'` " -"instead." +msgid "An ``'AF_PIPE'`` address is a string of the form :samp:`r'\\\\\\\\\\\\.\\\\pipe\\\\\\\\{PipeName}'`. To use :func:`Client` to connect to a named pipe on a remote computer called *ServerName* one should use an address of the form :samp:`r'\\\\\\\\\\\\\\\\{ServerName}\\\\pipe\\\\\\\\{PipeName}'` instead." msgstr "" -#: ../../library/multiprocessing.rst:2882 -msgid "" -"Note that any string beginning with two backslashes is assumed by default to " -"be an ``'AF_PIPE'`` address rather than an ``'AF_UNIX'`` address." +msgid "Note that any string beginning with two backslashes is assumed by default to be an ``'AF_PIPE'`` address rather than an ``'AF_UNIX'`` address." msgstr "" -#: ../../library/multiprocessing.rst:2889 msgid "Authentication keys" msgstr "" -#: ../../library/multiprocessing.rst:2891 -msgid "" -"When one uses :meth:`Connection.recv `, the data received " -"is automatically unpickled. Unfortunately unpickling data from an untrusted " -"source is a security risk. Therefore :class:`Listener` and :func:`Client` " -"use the :mod:`hmac` module to provide digest authentication." +msgid "When one uses :meth:`Connection.recv `, the data received is automatically unpickled. Unfortunately unpickling data from an untrusted source is a security risk. Therefore :class:`Listener` and :func:`Client` use the :mod:`hmac` module to provide digest authentication." msgstr "" -#: ../../library/multiprocessing.rst:2897 -msgid "" -"An authentication key is a byte string which can be thought of as a " -"password: once a connection is established both ends will demand proof that " -"the other knows the authentication key. (Demonstrating that both ends are " -"using the same key does **not** involve sending the key over the connection.)" +msgid "An authentication key is a byte string which can be thought of as a password: once a connection is established both ends will demand proof that the other knows the authentication key. (Demonstrating that both ends are using the same key does **not** involve sending the key over the connection.)" msgstr "" -#: ../../library/multiprocessing.rst:2903 -msgid "" -"If authentication is requested but no authentication key is specified then " -"the return value of ``current_process().authkey`` is used " -"(see :class:`~multiprocessing.Process`). This value will be automatically " -"inherited by any :class:`~multiprocessing.Process` object that the current " -"process creates. This means that (by default) all processes of a multi-" -"process program will share a single authentication key which can be used " -"when setting up connections between themselves." +msgid "If authentication is requested but no authentication key is specified then the return value of ``current_process().authkey`` is used (see :class:`~multiprocessing.Process`). This value will be automatically inherited by any :class:`~multiprocessing.Process` object that the current process creates. This means that (by default) all processes of a multi-process program will share a single authentication key which can be used when setting up connections between themselves." msgstr "" -#: ../../library/multiprocessing.rst:2911 -msgid "" -"Suitable authentication keys can also be generated by " -"using :func:`os.urandom`." +msgid "Suitable authentication keys can also be generated by using :func:`os.urandom`." +msgstr "" + +msgid "This authentication protects :class:`Listener` and :func:`Client` connections, which are reachable by address. It is not applied to the anonymous pipes created by :func:`~multiprocessing.Pipe` or used internally by :class:`~multiprocessing.Queue`. :mod:`multiprocessing` treats all local processes running as the same user as trusted; on most operating systems such processes can access each other's pipe file descriptors regardless. Applications that require isolation between processes of the same user must arrange it at the operating-system level -- for example, by running workers under a different user account or in a sandbox." msgstr "" -#: ../../library/multiprocessing.rst:2913 -msgid "" -"This authentication protects :class:`Listener` and :func:`Client` " -"connections, which are reachable by address. It is not applied to the " -"anonymous pipes created by :func:`~multiprocessing.Pipe` or used internally " -"by :class:`~multiprocessing.Queue`. :mod:`multiprocessing` treats all local " -"processes running as the same user as trusted; on most operating systems " -"such processes can access each other's pipe file descriptors regardless. " -"Applications that require isolation between processes of the same user must " -"arrange it at the operating-system level -- for example, by running workers " -"under a different user account or in a sandbox." -msgstr "" - -#: ../../library/multiprocessing.rst:2925 msgid "Logging" msgstr "" -#: ../../library/multiprocessing.rst:2927 -msgid "" -"Some support for logging is available. Note, however, that " -"the :mod:`logging` package does not use process shared locks so it is " -"possible (depending on the handler type) for messages from different " -"processes to get mixed up." +msgid "Some support for logging is available. Note, however, that the :mod:`logging` package does not use process shared locks so it is possible (depending on the handler type) for messages from different processes to get mixed up." msgstr "" -#: ../../library/multiprocessing.rst:2934 -msgid "" -"Returns the logger used by :mod:`!multiprocessing`. If necessary, a new one " -"will be created." +msgid "Returns the logger used by :mod:`!multiprocessing`. If necessary, a new one will be created." msgstr "" -#: ../../library/multiprocessing.rst:2937 -msgid "" -"When first created the logger has level :const:`logging.NOTSET` and no " -"default handler. Messages sent to this logger will not by default propagate " -"to the root logger." +msgid "When first created the logger has level :const:`logging.NOTSET` and no default handler. Messages sent to this logger will not by default propagate to the root logger." msgstr "" -#: ../../library/multiprocessing.rst:2941 -msgid "" -"Note that on Windows child processes will only inherit the level of the " -"parent process's logger -- any other customization of the logger will not be " -"inherited." +msgid "Note that on Windows child processes will only inherit the level of the parent process's logger -- any other customization of the logger will not be inherited." msgstr "" -#: ../../library/multiprocessing.rst:2948 -msgid "" -"This function performs a call to :func:`get_logger` but in addition to " -"returning the logger created by get_logger, it adds a handler which sends " -"output to :data:`sys.stderr` using format ``'[%(levelname)s/%(processName)s] " -"%(message)s'``. You can modify ``levelname`` of the logger by passing a " -"``level`` argument." +msgid "This function performs a call to :func:`get_logger` but in addition to returning the logger created by get_logger, it adds a handler which sends output to :data:`sys.stderr` using format ``'[%(levelname)s/%(processName)s] %(message)s'``. You can modify ``levelname`` of the logger by passing a ``level`` argument." msgstr "" -#: ../../library/multiprocessing.rst:2954 msgid "Below is an example session with logging turned on::" msgstr "" -#: ../../library/multiprocessing.rst:2956 msgid "" ">>> import multiprocessing, logging\n" ">>> logger = multiprocessing.log_to_stderr()\n" @@ -3902,202 +2170,102 @@ msgid "" "[INFO/SyncManager-...] manager exiting with exitcode 0" msgstr "" -#: ../../library/multiprocessing.rst:2969 msgid "For a full table of logging levels, see the :mod:`logging` module." msgstr "" -#: ../../library/multiprocessing.rst:2973 msgid "The :mod:`!multiprocessing.dummy` module" msgstr "" -#: ../../library/multiprocessing.rst:2978 -msgid "" -":mod:`!multiprocessing.dummy` replicates the API of :mod:`!multiprocessing` " -"but is no more than a wrapper around the :mod:`threading` module." +msgid ":mod:`!multiprocessing.dummy` replicates the API of :mod:`!multiprocessing` but is no more than a wrapper around the :mod:`threading` module." msgstr "" -#: ../../library/multiprocessing.rst:2983 -msgid "" -"In particular, the ``Pool`` function provided by :mod:`!" -"multiprocessing.dummy` returns an instance of :class:`ThreadPool`, which is " -"a subclass of :class:`Pool` that supports all the same method calls but uses " -"a pool of worker threads rather than worker processes." +msgid "In particular, the ``Pool`` function provided by :mod:`!multiprocessing.dummy` returns an instance of :class:`ThreadPool`, which is a subclass of :class:`Pool` that supports all the same method calls but uses a pool of worker threads rather than worker processes." msgstr "" -#: ../../library/multiprocessing.rst:2991 -msgid "" -"A thread pool object which controls a pool of worker threads to which jobs " -"can be submitted. :class:`ThreadPool` instances are fully interface " -"compatible with :class:`Pool` instances, and their resources must also be " -"properly managed, either by using the pool as a context manager or by " -"calling :meth:`~multiprocessing.pool.Pool.close` " -"and :meth:`~multiprocessing.pool.Pool.terminate` manually." +msgid "A thread pool object which controls a pool of worker threads to which jobs can be submitted. :class:`ThreadPool` instances are fully interface compatible with :class:`Pool` instances, and their resources must also be properly managed, either by using the pool as a context manager or by calling :meth:`~multiprocessing.pool.Pool.close` and :meth:`~multiprocessing.pool.Pool.terminate` manually." msgstr "" -#: ../../library/multiprocessing.rst:2998 -msgid "" -"*processes* is the number of worker threads to use. If *processes* is " -"``None`` then the number returned by :func:`os.process_cpu_count` is used." +msgid "*processes* is the number of worker threads to use. If *processes* is ``None`` then the number returned by :func:`os.process_cpu_count` is used." msgstr "" -#: ../../library/multiprocessing.rst:3004 -msgid "" -"Unlike :class:`Pool`, *maxtasksperchild* and *context* cannot be provided." +msgid "Unlike :class:`Pool`, *maxtasksperchild* and *context* cannot be provided." msgstr "" -#: ../../library/multiprocessing.rst:3008 -msgid "" -"A :class:`ThreadPool` shares the same interface as :class:`Pool`, which is " -"designed around a pool of processes and predates the introduction of " -"the :class:`concurrent.futures` module. As such, it inherits some " -"operations that don't make sense for a pool backed by threads, and it has " -"its own type for representing the status of asynchronous " -"jobs, :class:`AsyncResult`, that is not understood by any other libraries." +msgid "A :class:`ThreadPool` shares the same interface as :class:`Pool`, which is designed around a pool of processes and predates the introduction of the :class:`concurrent.futures` module. As such, it inherits some operations that don't make sense for a pool backed by threads, and it has its own type for representing the status of asynchronous jobs, :class:`AsyncResult`, that is not understood by any other libraries." msgstr "" -#: ../../library/multiprocessing.rst:3015 -msgid "" -"Users should generally prefer to " -"use :class:`concurrent.futures.ThreadPoolExecutor`, which has a simpler " -"interface that was designed around threads from the start, and which " -"returns :class:`concurrent.futures.Future` instances that are compatible " -"with many other libraries, including :mod:`asyncio`." +msgid "Users should generally prefer to use :class:`concurrent.futures.ThreadPoolExecutor`, which has a simpler interface that was designed around threads from the start, and which returns :class:`concurrent.futures.Future` instances that are compatible with many other libraries, including :mod:`asyncio`." msgstr "" -#: ../../library/multiprocessing.rst:3025 msgid "Programming guidelines" msgstr "" -#: ../../library/multiprocessing.rst:3027 -msgid "" -"There are certain guidelines and idioms which should be adhered to when " -"using :mod:`!multiprocessing`." +msgid "There are certain guidelines and idioms which should be adhered to when using :mod:`!multiprocessing`." msgstr "" -#: ../../library/multiprocessing.rst:3032 msgid "All start methods" msgstr "" -#: ../../library/multiprocessing.rst:3034 msgid "The following applies to all start methods." msgstr "" -#: ../../library/multiprocessing.rst:3036 msgid "Avoid shared state" msgstr "" -#: ../../library/multiprocessing.rst:3038 -msgid "" -"As far as possible one should try to avoid shifting large amounts of data " -"between processes." +msgid "As far as possible one should try to avoid shifting large amounts of data between processes." msgstr "" -#: ../../library/multiprocessing.rst:3041 -msgid "" -"It is probably best to stick to using queues or pipes for communication " -"between processes rather than using the lower level synchronization " -"primitives." +msgid "It is probably best to stick to using queues or pipes for communication between processes rather than using the lower level synchronization primitives." msgstr "" -#: ../../library/multiprocessing.rst:3045 msgid "Picklability" msgstr "" -#: ../../library/multiprocessing.rst:3047 msgid "Ensure that the arguments to the methods of proxies are picklable." msgstr "" -#: ../../library/multiprocessing.rst:3049 msgid "Thread safety of proxies" msgstr "" -#: ../../library/multiprocessing.rst:3051 -msgid "" -"Do not use a proxy object from more than one thread unless you protect it " -"with a lock." +msgid "Do not use a proxy object from more than one thread unless you protect it with a lock." msgstr "" -#: ../../library/multiprocessing.rst:3054 -msgid "" -"(There is never a problem with different processes using the *same* proxy.)" +msgid "(There is never a problem with different processes using the *same* proxy.)" msgstr "" -#: ../../library/multiprocessing.rst:3056 msgid "Joining zombie processes" msgstr "" -#: ../../library/multiprocessing.rst:3058 -msgid "" -"On POSIX when a process finishes but has not been joined it becomes a " -"zombie. There should never be very many because each time a new process " -"starts (or :func:`~multiprocessing.active_children` is called) all completed " -"processes which have not yet been joined will be joined. Also calling a " -"finished process's :meth:`Process.is_alive " -"` will join the process. Even so it is " -"probably good practice to explicitly join all the processes that you start." +msgid "On POSIX when a process finishes but has not been joined it becomes a zombie. There should never be very many because each time a new process starts (or :func:`~multiprocessing.active_children` is called) all completed processes which have not yet been joined will be joined. Also calling a finished process's :meth:`Process.is_alive ` will join the process. Even so it is probably good practice to explicitly join all the processes that you start." msgstr "" -#: ../../library/multiprocessing.rst:3066 msgid "Better to inherit than pickle/unpickle" msgstr "" -#: ../../library/multiprocessing.rst:3068 -msgid "" -"When using the *spawn* or *forkserver* start methods many types from :mod:`!" -"multiprocessing` need to be picklable so that child processes can use them. " -"However, one should generally avoid sending shared objects to other " -"processes using pipes or queues. Instead you should arrange the program so " -"that a process which needs access to a shared resource created elsewhere can " -"inherit it from an ancestor process." +msgid "When using the *spawn* or *forkserver* start methods many types from :mod:`!multiprocessing` need to be picklable so that child processes can use them. However, one should generally avoid sending shared objects to other processes using pipes or queues. Instead you should arrange the program so that a process which needs access to a shared resource created elsewhere can inherit it from an ancestor process." msgstr "" -#: ../../library/multiprocessing.rst:3076 msgid "Avoid terminating processes" msgstr "" -#: ../../library/multiprocessing.rst:3078 -msgid "" -"Using the :meth:`Process.terminate ` " -"method to stop a process is liable to cause any shared resources (such as " -"locks, semaphores, pipes and queues) currently being used by the process to " -"become broken or unavailable to other processes." +msgid "Using the :meth:`Process.terminate ` method to stop a process is liable to cause any shared resources (such as locks, semaphores, pipes and queues) currently being used by the process to become broken or unavailable to other processes." msgstr "" -#: ../../library/multiprocessing.rst:3084 -msgid "" -"Therefore it is probably best to only consider " -"using :meth:`Process.terminate ` on " -"processes which never use any shared resources." +msgid "Therefore it is probably best to only consider using :meth:`Process.terminate ` on processes which never use any shared resources." msgstr "" -#: ../../library/multiprocessing.rst:3088 msgid "Joining processes that use queues" msgstr "" -#: ../../library/multiprocessing.rst:3090 -msgid "" -"Bear in mind that a process that has put items in a queue will wait before " -"terminating until all the buffered items are fed by the \"feeder\" thread to " -"the underlying pipe. (The child process can call " -"the :meth:`Queue.cancel_join_thread " -"` method of the queue to avoid " -"this behaviour.)" +msgid "Bear in mind that a process that has put items in a queue will wait before terminating until all the buffered items are fed by the \"feeder\" thread to the underlying pipe. (The child process can call the :meth:`Queue.cancel_join_thread ` method of the queue to avoid this behaviour.)" msgstr "" -#: ../../library/multiprocessing.rst:3096 -msgid "" -"This means that whenever you use a queue you need to make sure that all " -"items which have been put on the queue will eventually be removed before the " -"process is joined. Otherwise you cannot be sure that processes which have " -"put items on the queue will terminate. Remember also that non-daemonic " -"processes will be joined automatically." +msgid "This means that whenever you use a queue you need to make sure that all items which have been put on the queue will eventually be removed before the process is joined. Otherwise you cannot be sure that processes which have put items on the queue will terminate. Remember also that non-daemonic processes will be joined automatically." msgstr "" -#: ../../library/multiprocessing.rst:3102 msgid "An example which will deadlock is the following::" msgstr "" -#: ../../library/multiprocessing.rst:3104 msgid "" "from multiprocessing import Process, Queue\n" "\n" @@ -4112,38 +2280,21 @@ msgid "" " obj = queue.get()" msgstr "" -#: ../../library/multiprocessing.rst:3116 -msgid "" -"A fix here would be to swap the last two lines (or simply remove the " -"``p.join()`` line)." +msgid "A fix here would be to swap the last two lines (or simply remove the ``p.join()`` line)." msgstr "" -#: ../../library/multiprocessing.rst:3119 msgid "Explicitly pass resources to child processes" msgstr "" -#: ../../library/multiprocessing.rst:3121 -msgid "" -"On POSIX using the *fork* start method, a child process can make use of a " -"shared resource created in a parent process using a global resource. " -"However, it is better to pass the object as an argument to the constructor " -"for the child process." +msgid "On POSIX using the *fork* start method, a child process can make use of a shared resource created in a parent process using a global resource. However, it is better to pass the object as an argument to the constructor for the child process." msgstr "" -#: ../../library/multiprocessing.rst:3126 -msgid "" -"Apart from making the code (potentially) compatible with Windows and the " -"other start methods this also ensures that as long as the child process is " -"still alive the object will not be garbage collected in the parent process. " -"This might be important if some resource is freed when the object is garbage " -"collected in the parent process." +msgid "Apart from making the code (potentially) compatible with Windows and the other start methods this also ensures that as long as the child process is still alive the object will not be garbage collected in the parent process. This might be important if some resource is freed when the object is garbage collected in the parent process." msgstr "" -#: ../../library/multiprocessing.rst:3133 msgid "So for instance ::" msgstr "" -#: ../../library/multiprocessing.rst:3135 msgid "" "from multiprocessing import Process, Lock\n" "\n" @@ -4156,11 +2307,9 @@ msgid "" " Process(target=f).start()" msgstr "" -#: ../../library/multiprocessing.rst:3145 msgid "should be rewritten as ::" msgstr "" -#: ../../library/multiprocessing.rst:3147 msgid "" "from multiprocessing import Process, Lock\n" "\n" @@ -4173,49 +2322,29 @@ msgid "" " Process(target=f, args=(lock,)).start()" msgstr "" -#: ../../library/multiprocessing.rst:3157 msgid "Beware of replacing :data:`sys.stdin` with a \"file like object\"" msgstr "" -#: ../../library/multiprocessing.rst:3159 msgid ":mod:`!multiprocessing` originally unconditionally called::" msgstr "" -#: ../../library/multiprocessing.rst:3161 msgid "os.close(sys.stdin.fileno())" msgstr "" -#: ../../library/multiprocessing.rst:3163 -msgid "" -"in the :meth:`multiprocessing.Process._bootstrap` method --- this resulted " -"in issues with processes-in-processes. This has been changed to::" +msgid "in the :meth:`multiprocessing.Process._bootstrap` method --- this resulted in issues with processes-in-processes. This has been changed to::" msgstr "" -#: ../../library/multiprocessing.rst:3166 msgid "" "sys.stdin.close()\n" "sys.stdin = open(os.open(os.devnull, os.O_RDONLY), closefd=False)" msgstr "" -#: ../../library/multiprocessing.rst:3169 -msgid "" -"Which solves the fundamental issue of processes colliding with each other " -"resulting in a bad file descriptor error, but introduces a potential danger " -"to applications which replace :func:`sys.stdin` with a \"file-like object\" " -"with output buffering. This danger is that if multiple processes " -"call :meth:`~io.IOBase.close` on this file-like object, it could result in " -"the same data being flushed to the object multiple times, resulting in " -"corruption." +msgid "Which solves the fundamental issue of processes colliding with each other resulting in a bad file descriptor error, but introduces a potential danger to applications which replace :func:`sys.stdin` with a \"file-like object\" with output buffering. This danger is that if multiple processes call :meth:`~io.IOBase.close` on this file-like object, it could result in the same data being flushed to the object multiple times, resulting in corruption." msgstr "" -#: ../../library/multiprocessing.rst:3176 -msgid "" -"If you write a file-like object and implement your own caching, you can make " -"it fork-safe by storing the pid whenever you append to the cache, and " -"discarding the cache when the pid changes. For example::" +msgid "If you write a file-like object and implement your own caching, you can make it fork-safe by storing the pid whenever you append to the cache, and discarding the cache when the pid changes. For example::" msgstr "" -#: ../../library/multiprocessing.rst:3180 msgid "" "@property\n" "def cache(self):\n" @@ -4226,69 +2355,39 @@ msgid "" " return self._cache" msgstr "" -#: ../../library/multiprocessing.rst:3188 -msgid "" -"For more information, see :issue:`5155`, :issue:`5313` and :issue:`5331`" +msgid "For more information, see :issue:`5155`, :issue:`5313` and :issue:`5331`" msgstr "" -#: ../../library/multiprocessing.rst:3194 msgid "The *spawn* and *forkserver* start methods" msgstr "" -#: ../../library/multiprocessing.rst:3196 -msgid "" -"There are a few extra restrictions which don't apply to the *fork* start " -"method." +msgid "There are a few extra restrictions which don't apply to the *fork* start method." msgstr "" -#: ../../library/multiprocessing.rst:3199 msgid "More picklability" msgstr "" -#: ../../library/multiprocessing.rst:3201 -msgid "" -"Ensure that all arguments to :class:`~multiprocessing.Process` are " -"picklable. Also, if you subclass ``Process.__init__``, you must make sure " -"that instances will be picklable when the :meth:`Process.start " -"` method is called." +msgid "Ensure that all arguments to :class:`~multiprocessing.Process` are picklable. Also, if you subclass ``Process.__init__``, you must make sure that instances will be picklable when the :meth:`Process.start ` method is called." msgstr "" -#: ../../library/multiprocessing.rst:3206 msgid "Global variables" msgstr "" -#: ../../library/multiprocessing.rst:3208 -msgid "" -"Bear in mind that if code run in a child process tries to access a global " -"variable, then the value it sees (if any) may not be the same as the value " -"in the parent process at the time that :meth:`Process.start " -"` was called." +msgid "Bear in mind that if code run in a child process tries to access a global variable, then the value it sees (if any) may not be the same as the value in the parent process at the time that :meth:`Process.start ` was called." msgstr "" -#: ../../library/multiprocessing.rst:3213 -msgid "" -"However, global variables which are just module level constants cause no " -"problems." +msgid "However, global variables which are just module level constants cause no problems." msgstr "" -#: ../../library/multiprocessing.rst:3218 msgid "Safe importing of main module" msgstr "" -#: ../../library/multiprocessing.rst:3220 -msgid "" -"Make sure that the main module can be safely imported by a new Python " -"interpreter without causing unintended side effects (such as starting a new " -"process)." +msgid "Make sure that the main module can be safely imported by a new Python interpreter without causing unintended side effects (such as starting a new process)." msgstr "" -#: ../../library/multiprocessing.rst:3224 -msgid "" -"For example, using the *spawn* or *forkserver* start method running the " -"following module would fail with a :exc:`RuntimeError`::" +msgid "For example, using the *spawn* or *forkserver* start method running the following module would fail with a :exc:`RuntimeError`::" msgstr "" -#: ../../library/multiprocessing.rst:3228 msgid "" "from multiprocessing import Process\n" "\n" @@ -4299,13 +2398,9 @@ msgid "" "p.start()" msgstr "" -#: ../../library/multiprocessing.rst:3236 -msgid "" -"Instead one should protect the \"entry point\" of the program by using ``if " -"__name__ == '__main__':`` as follows::" +msgid "Instead one should protect the \"entry point\" of the program by using ``if __name__ == '__main__':`` as follows::" msgstr "" -#: ../../library/multiprocessing.rst:3239 msgid "" "from multiprocessing import Process, freeze_support, set_start_method\n" "\n" @@ -4319,33 +2414,21 @@ msgid "" " p.start()" msgstr "" -#: ../../library/multiprocessing.rst:3250 -msgid "" -"(The ``freeze_support()`` line can be omitted if the program will be run " -"normally instead of frozen.)" +msgid "(The ``freeze_support()`` line can be omitted if the program will be run normally instead of frozen.)" msgstr "" -#: ../../library/multiprocessing.rst:3253 -msgid "" -"This allows the newly spawned Python interpreter to safely import the module " -"and then run the module's ``foo()`` function." +msgid "This allows the newly spawned Python interpreter to safely import the module and then run the module's ``foo()`` function." msgstr "" -#: ../../library/multiprocessing.rst:3256 -msgid "" -"Similar restrictions apply if a pool or manager is created in the main " -"module." +msgid "Similar restrictions apply if a pool or manager is created in the main module." msgstr "" -#: ../../library/multiprocessing.rst:3263 msgid "Examples" msgstr "" -#: ../../library/multiprocessing.rst:3265 msgid "Demonstration of how to create and use customized managers and proxies:" msgstr "" -#: ../../library/multiprocessing.rst:3267 msgid "" "from multiprocessing import freeze_support\n" "from multiprocessing.managers import BaseManager, BaseProxy\n" @@ -4392,8 +2475,7 @@ msgid "" "# register the generator function baz; use `GeneratorProxy` to make proxies\n" "MyManager.register('baz', baz, proxytype=GeneratorProxy)\n" "\n" -"# register get_operator_module(); make public functions accessible via " -"proxy\n" +"# register get_operator_module(); make public functions accessible via proxy\n" "MyManager.register('operator', get_operator_module)\n" "\n" "##\n" @@ -4439,11 +2521,9 @@ msgid "" " test()\n" msgstr "" -#: ../../library/multiprocessing.rst:3271 msgid "Using :class:`~multiprocessing.pool.Pool`:" msgstr "" -#: ../../library/multiprocessing.rst:3273 msgid "" "import multiprocessing\n" "import time\n" @@ -4516,8 +2596,7 @@ msgid "" " print('\\t', x)\n" " print()\n" "\n" -" print('Ordered results using pool.map() --- will block till " -"complete:')\n" +" print('Ordered results using pool.map() --- will block till complete:')\n" " for x in pool.map(calculatestar, TASKS):\n" " print('\\t', x)\n" " print()\n" @@ -4545,8 +2624,7 @@ msgid "" " try:\n" " print(list(pool.imap(f, list(range(10)))))\n" " except ZeroDivisionError:\n" -" print('\\tGot ZeroDivisionError as expected from " -"list(pool.imap())')\n" +" print('\\tGot ZeroDivisionError as expected from list(pool.imap())')\n" " else:\n" " raise AssertionError('expected ZeroDivisionError')\n" "\n" @@ -4564,8 +2642,7 @@ msgid "" " raise AssertionError('expected ZeroDivisionError')\n" "\n" " assert i == 9\n" -" print('\\tGot ZeroDivisionError as expected from " -"IMapIterator.next()')\n" +" print('\\tGot ZeroDivisionError as expected from IMapIterator.next()')\n" " print()\n" "\n" " #\n" @@ -4603,13 +2680,9 @@ msgid "" " test()\n" msgstr "" -#: ../../library/multiprocessing.rst:3277 -msgid "" -"An example showing how to use queues to feed tasks to a collection of worker " -"processes and collect the results:" +msgid "An example showing how to use queues to feed tasks to a collection of worker processes and collect the results:" msgstr "" -#: ../../library/multiprocessing.rst:3280 msgid "" "import time\n" "import random\n" diff --git a/library/multiprocessing.shared_memory.po b/library/multiprocessing.shared_memory.po index 3d9a8432..22b6564e 100644 --- a/library/multiprocessing.shared_memory.po +++ b/library/multiprocessing.shared_memory.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:10+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,155 +23,63 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/multiprocessing.shared_memory.rst:2 -msgid "" -":mod:`!multiprocessing.shared_memory` --- Shared memory for direct access " -"across processes" +msgid ":mod:`!multiprocessing.shared_memory` --- Shared memory for direct access across processes" msgstr "" -#: ../../library/multiprocessing.shared_memory.rst:7 msgid "**Source code:** :source:`Lib/multiprocessing/shared_memory.py`" msgstr "" -#: ../../library/multiprocessing.shared_memory.rst:18 -msgid "" -"This module provides a class, :class:`SharedMemory`, for the allocation and " -"management of shared memory to be accessed by one or more processes on a " -"multicore or symmetric multiprocessor (SMP) machine. To assist with the " -"life-cycle management of shared memory especially across distinct processes, " -"a :class:`~multiprocessing.managers.BaseManager` " -"subclass, :class:`~multiprocessing.managers.SharedMemoryManager`, is also " -"provided in the :mod:`multiprocessing.managers` module." +msgid "This module provides a class, :class:`SharedMemory`, for the allocation and management of shared memory to be accessed by one or more processes on a multicore or symmetric multiprocessor (SMP) machine. To assist with the life-cycle management of shared memory especially across distinct processes, a :class:`~multiprocessing.managers.BaseManager` subclass, :class:`~multiprocessing.managers.SharedMemoryManager`, is also provided in the :mod:`multiprocessing.managers` module." msgstr "" -#: ../../library/multiprocessing.shared_memory.rst:26 -msgid "" -"In this module, shared memory refers to \"POSIX style\" shared memory blocks " -"(though is not necessarily implemented explicitly as such) and does not " -"refer to \"distributed shared memory\". This style of shared memory permits " -"distinct processes to potentially read and write to a common (or shared) " -"region of volatile memory. Processes are conventionally limited to only " -"have access to their own process memory space but shared memory permits the " -"sharing of data between processes, avoiding the need to instead send " -"messages between processes containing that data. Sharing data directly via " -"memory can provide significant performance benefits compared to sharing data " -"via disk or socket or other communications requiring the serialization/" -"deserialization and copying of data." -msgstr "" - -#: ../../library/multiprocessing.shared_memory.rst:41 -msgid "" -"Create an instance of the :class:`!SharedMemory` class for either creating a " -"new shared memory block or attaching to an existing shared memory block. " -"Each shared memory block is assigned a unique name. In this way, one process " -"can create a shared memory block with a particular name and a different " -"process can attach to that same shared memory block using that same name." +msgid "In this module, shared memory refers to \"POSIX style\" shared memory blocks (though is not necessarily implemented explicitly as such) and does not refer to \"distributed shared memory\". This style of shared memory permits distinct processes to potentially read and write to a common (or shared) region of volatile memory. Processes are conventionally limited to only have access to their own process memory space but shared memory permits the sharing of data between processes, avoiding the need to instead send messages between processes containing that data. Sharing data directly via memory can provide significant performance benefits compared to sharing data via disk or socket or other communications requiring the serialization/deserialization and copying of data." msgstr "" -#: ../../library/multiprocessing.shared_memory.rst:48 -msgid "" -"As a resource for sharing data across processes, shared memory blocks may " -"outlive the original process that created them. When one process no longer " -"needs access to a shared memory block that might still be needed by other " -"processes, the :meth:`close` method should be called. When a shared memory " -"block is no longer needed by any process, the :meth:`unlink` method should " -"be called to ensure proper cleanup." +msgid "Create an instance of the :class:`!SharedMemory` class for either creating a new shared memory block or attaching to an existing shared memory block. Each shared memory block is assigned a unique name. In this way, one process can create a shared memory block with a particular name and a different process can attach to that same shared memory block using that same name." +msgstr "" + +msgid "As a resource for sharing data across processes, shared memory blocks may outlive the original process that created them. When one process no longer needs access to a shared memory block that might still be needed by other processes, the :meth:`close` method should be called. When a shared memory block is no longer needed by any process, the :meth:`unlink` method should be called to ensure proper cleanup." msgstr "" -#: ../../library/multiprocessing.shared_memory.rst:0 msgid "Parameters" msgstr "" -#: ../../library/multiprocessing.shared_memory.rst:55 -msgid "" -"The unique name for the requested shared memory, specified as a string. When " -"creating a new shared memory block, if ``None`` (the default) is supplied " -"for the name, a novel name will be generated." +msgid "The unique name for the requested shared memory, specified as a string. When creating a new shared memory block, if ``None`` (the default) is supplied for the name, a novel name will be generated." msgstr "" -#: ../../library/multiprocessing.shared_memory.rst:61 -msgid "" -"Control whether a new shared memory block is created (``True``) or an " -"existing shared memory block is attached (``False``)." +msgid "Control whether a new shared memory block is created (``True``) or an existing shared memory block is attached (``False``)." msgstr "" -#: ../../library/multiprocessing.shared_memory.rst:65 -msgid "" -"The requested number of bytes when creating a new shared memory block. " -"Because some platforms choose to allocate chunks of memory based upon that " -"platform's memory page size, the exact size of the shared memory block may " -"be larger or equal to the size requested. When attaching to an existing " -"shared memory block, the *size* parameter is ignored." +msgid "The requested number of bytes when creating a new shared memory block. Because some platforms choose to allocate chunks of memory based upon that platform's memory page size, the exact size of the shared memory block may be larger or equal to the size requested. When attaching to an existing shared memory block, the *size* parameter is ignored." +msgstr "" + +msgid "When ``True``, register the shared memory block with a resource tracker process on platforms where the OS does not do this automatically. The resource tracker ensures proper cleanup of the shared memory even if all other processes with access to the memory exit without doing so. Python processes created from a common ancestor using :mod:`multiprocessing` facilities share a single resource tracker process, and the lifetime of shared memory segments is handled automatically among these processes. Python processes created in any other way will receive their own resource tracker when accessing shared memory with *track* enabled. This will cause the shared memory to be deleted by the resource tracker of the first process that terminates. To avoid this issue, users of :mod:`subprocess` or standalone Python processes should set *track* to ``False`` when there is already another process in place that does the bookkeeping. *track* is ignored on Windows, which has its own tracking and automatically deletes shared memory when all handles to it have been closed." msgstr "" -#: ../../library/multiprocessing.shared_memory.rst:73 -msgid "" -"When ``True``, register the shared memory block with a resource tracker " -"process on platforms where the OS does not do this automatically. The " -"resource tracker ensures proper cleanup of the shared memory even if all " -"other processes with access to the memory exit without doing so. Python " -"processes created from a common ancestor using :mod:`multiprocessing` " -"facilities share a single resource tracker process, and the lifetime of " -"shared memory segments is handled automatically among these processes. " -"Python processes created in any other way will receive their own resource " -"tracker when accessing shared memory with *track* enabled. This will cause " -"the shared memory to be deleted by the resource tracker of the first process " -"that terminates. To avoid this issue, users of :mod:`subprocess` or " -"standalone Python processes should set *track* to ``False`` when there is " -"already another process in place that does the bookkeeping. *track* is " -"ignored on Windows, which has its own tracking and automatically deletes " -"shared memory when all handles to it have been closed." -msgstr "" - -#: ../../library/multiprocessing.shared_memory.rst:91 msgid "Added the *track* parameter." msgstr "" -#: ../../library/multiprocessing.shared_memory.rst:96 -msgid "" -"Close the file descriptor/handle to the shared memory from this " -"instance. :meth:`close` should be called once access to the shared memory " -"block from this instance is no longer needed. Depending on operating " -"system, the underlying memory may or may not be freed even if all handles to " -"it have been closed. To ensure proper cleanup, use the :meth:`unlink` " -"method." +msgid "Close the file descriptor/handle to the shared memory from this instance. :meth:`close` should be called once access to the shared memory block from this instance is no longer needed. Depending on operating system, the underlying memory may or may not be freed even if all handles to it have been closed. To ensure proper cleanup, use the :meth:`unlink` method." msgstr "" -#: ../../library/multiprocessing.shared_memory.rst:105 -msgid "" -"Delete the underlying shared memory block. This should be called only once " -"per shared memory block regardless of the number of handles to it, even in " -"other processes. :meth:`unlink` and :meth:`close` can be called in any " -"order, but trying to access data inside a shared memory block " -"after :meth:`unlink` may result in memory access errors, depending on " -"platform." +msgid "Delete the underlying shared memory block. This should be called only once per shared memory block regardless of the number of handles to it, even in other processes. :meth:`unlink` and :meth:`close` can be called in any order, but trying to access data inside a shared memory block after :meth:`unlink` may result in memory access errors, depending on platform." msgstr "" -#: ../../library/multiprocessing.shared_memory.rst:112 -msgid "" -"This method has no effect on Windows, where the only way to delete a shared " -"memory block is to close all handles." +msgid "This method has no effect on Windows, where the only way to delete a shared memory block is to close all handles." msgstr "" -#: ../../library/multiprocessing.shared_memory.rst:117 msgid "A memoryview of contents of the shared memory block." msgstr "" -#: ../../library/multiprocessing.shared_memory.rst:121 msgid "Read-only access to the unique name of the shared memory block." msgstr "" -#: ../../library/multiprocessing.shared_memory.rst:125 msgid "Read-only access to size in bytes of the shared memory block." msgstr "" -#: ../../library/multiprocessing.shared_memory.rst:128 -msgid "" -"The following example demonstrates low-level use of :class:`SharedMemory` " -"instances::" +msgid "The following example demonstrates low-level use of :class:`SharedMemory` instances::" msgstr "" -#: ../../library/multiprocessing.shared_memory.rst:131 msgid "" ">>> from multiprocessing import shared_memory\n" ">>> shm_a = shared_memory.SharedMemory(create=True, size=10)\n" @@ -181,8 +89,7 @@ msgid "" ">>> len(buffer)\n" "10\n" ">>> buffer[:4] = bytearray([22, 33, 44, 55]) # Modify multiple at once\n" -">>> buffer[4] = 100 # Modify single byte at a " -"time\n" +">>> buffer[4] = 100 # Modify single byte at a time\n" ">>> # Attach to an existing shared memory block\n" ">>> shm_b = shared_memory.SharedMemory(shm_a.name)\n" ">>> import array\n" @@ -196,14 +103,9 @@ msgid "" ">>> shm_a.unlink() # Call unlink only once to release the shared memory" msgstr "" -#: ../../library/multiprocessing.shared_memory.rst:154 -msgid "" -"The following example demonstrates a practical use of " -"the :class:`SharedMemory` class with `NumPy arrays `_, " -"accessing the same :class:`!numpy.ndarray` from two distinct Python shells:" +msgid "The following example demonstrates a practical use of the :class:`SharedMemory` class with `NumPy arrays `_, accessing the same :class:`!numpy.ndarray` from two distinct Python shells:" msgstr "" -#: ../../library/multiprocessing.shared_memory.rst:158 msgid "" ">>> # In the first Python interactive shell\n" ">>> import numpy as np\n" @@ -249,61 +151,27 @@ msgid "" ">>> shm.unlink() # Free and release the shared memory block at the very end" msgstr "" -#: ../../library/multiprocessing.shared_memory.rst:208 -msgid "" -"A subclass of :class:`multiprocessing.managers.BaseManager` which can be " -"used for the management of shared memory blocks across processes." +msgid "A subclass of :class:`multiprocessing.managers.BaseManager` which can be used for the management of shared memory blocks across processes." msgstr "" -#: ../../library/multiprocessing.shared_memory.rst:211 -msgid "" -"A call to :meth:`~multiprocessing.managers.BaseManager.start` on a :class:`!" -"SharedMemoryManager` instance causes a new process to be started. This new " -"process's sole purpose is to manage the life cycle of all shared memory " -"blocks created through it. To trigger the release of all shared memory " -"blocks managed by that process, " -"call :meth:`~multiprocessing.managers.BaseManager.shutdown` on the instance. " -"This triggers a :meth:`~multiprocessing.shared_memory.SharedMemory.unlink` " -"call on all of the :class:`SharedMemory` objects managed by that process and " -"then stops the process itself. By creating :class:`!SharedMemory` instances " -"through a :class:`!SharedMemoryManager`, we avoid the need to manually track " -"and trigger the freeing of shared memory resources." -msgstr "" - -#: ../../library/multiprocessing.shared_memory.rst:223 -msgid "" -"This class provides methods for creating and returning :class:`SharedMemory` " -"instances and for creating a list-like object (:class:`ShareableList`) " -"backed by shared memory." +msgid "A call to :meth:`~multiprocessing.managers.BaseManager.start` on a :class:`!SharedMemoryManager` instance causes a new process to be started. This new process's sole purpose is to manage the life cycle of all shared memory blocks created through it. To trigger the release of all shared memory blocks managed by that process, call :meth:`~multiprocessing.managers.BaseManager.shutdown` on the instance. This triggers a :meth:`~multiprocessing.shared_memory.SharedMemory.unlink` call on all of the :class:`SharedMemory` objects managed by that process and then stops the process itself. By creating :class:`!SharedMemory` instances through a :class:`!SharedMemoryManager`, we avoid the need to manually track and trigger the freeing of shared memory resources." msgstr "" -#: ../../library/multiprocessing.shared_memory.rst:227 -msgid "" -"Refer to :class:`~multiprocessing.managers.BaseManager` for a description of " -"the inherited *address* and *authkey* optional input arguments and how they " -"may be used to connect to an existing :class:`!SharedMemoryManager` service " -"from other processes." +msgid "This class provides methods for creating and returning :class:`SharedMemory` instances and for creating a list-like object (:class:`ShareableList`) backed by shared memory." msgstr "" -#: ../../library/multiprocessing.shared_memory.rst:234 -msgid "" -"Create and return a new :class:`SharedMemory` object with the specified " -"*size* in bytes." +msgid "Refer to :class:`~multiprocessing.managers.BaseManager` for a description of the inherited *address* and *authkey* optional input arguments and how they may be used to connect to an existing :class:`!SharedMemoryManager` service from other processes." msgstr "" -#: ../../library/multiprocessing.shared_memory.rst:239 -msgid "" -"Create and return a new :class:`ShareableList` object, initialized by the " -"values from the input *sequence*." +msgid "Create and return a new :class:`SharedMemory` object with the specified *size* in bytes." msgstr "" -#: ../../library/multiprocessing.shared_memory.rst:243 -msgid "" -"The following example demonstrates the basic mechanisms of " -"a :class:`~multiprocessing.managers.SharedMemoryManager`:" +msgid "Create and return a new :class:`ShareableList` object, initialized by the values from the input *sequence*." +msgstr "" + +msgid "The following example demonstrates the basic mechanisms of a :class:`~multiprocessing.managers.SharedMemoryManager`:" msgstr "" -#: ../../library/multiprocessing.shared_memory.rst:246 msgid "" ">>> from multiprocessing.managers import SharedMemoryManager\n" ">>> smm = SharedMemoryManager()\n" @@ -318,20 +186,13 @@ msgid "" ">>> smm.shutdown() # Calls unlink() on sl, raw_shm, and another_sl" msgstr "" -#: ../../library/multiprocessing.shared_memory.rst:261 -msgid "" -"The following example depicts a potentially more convenient pattern for " -"using :class:`~multiprocessing.managers.SharedMemoryManager` objects via " -"the :keyword:`with` statement to ensure that all shared memory blocks are " -"released after they are no longer needed:" +msgid "The following example depicts a potentially more convenient pattern for using :class:`~multiprocessing.managers.SharedMemoryManager` objects via the :keyword:`with` statement to ensure that all shared memory blocks are released after they are no longer needed:" msgstr "" -#: ../../library/multiprocessing.shared_memory.rst:266 msgid "" ">>> with SharedMemoryManager() as smm:\n" "... sl = smm.ShareableList(range(2000))\n" -"... # Divide the work among two processes, storing partial results in " -"sl\n" +"... # Divide the work among two processes, storing partial results in sl\n" "... p1 = Process(target=do_work, args=(sl, 0, 1000))\n" "... p2 = Process(target=do_work, args=(sl, 1000, 2000))\n" "... p1.start()\n" @@ -341,96 +202,54 @@ msgid "" "... total_result = sum(sl) # Consolidate the partial results now in sl" msgstr "" -#: ../../library/multiprocessing.shared_memory.rst:280 -msgid "" -"When using a :class:`~multiprocessing.managers.SharedMemoryManager` in " -"a :keyword:`with` statement, the shared memory blocks created using that " -"manager are all released when the :keyword:`!with` statement's code block " -"finishes execution." +msgid "When using a :class:`~multiprocessing.managers.SharedMemoryManager` in a :keyword:`with` statement, the shared memory blocks created using that manager are all released when the :keyword:`!with` statement's code block finishes execution." msgstr "" -#: ../../library/multiprocessing.shared_memory.rst:288 -msgid "" -"Provide a mutable list-like object where all values stored within are stored " -"in a shared memory block. This constrains storable values to the following " -"built-in data types:" +msgid "Provide a mutable list-like object where all values stored within are stored in a shared memory block. This constrains storable values to the following built-in data types:" msgstr "" -#: ../../library/multiprocessing.shared_memory.rst:292 msgid ":class:`int` (signed 64-bit)" msgstr "" -#: ../../library/multiprocessing.shared_memory.rst:293 msgid ":class:`float`" msgstr "" -#: ../../library/multiprocessing.shared_memory.rst:294 msgid ":class:`bool`" msgstr "" -#: ../../library/multiprocessing.shared_memory.rst:295 msgid ":class:`str` (less than 10M bytes each when encoded as UTF-8)" msgstr "" -#: ../../library/multiprocessing.shared_memory.rst:296 msgid ":class:`bytes` (less than 10M bytes each)" msgstr "" -#: ../../library/multiprocessing.shared_memory.rst:297 msgid "``None``" msgstr "" -#: ../../library/multiprocessing.shared_memory.rst:299 -msgid "" -"It also notably differs from the built-in :class:`list` type in that these " -"lists can not change their overall length (i.e. no :meth:`!append`, :meth:`!" -"insert`, etc.) and do not support the dynamic creation of new :class:`!" -"ShareableList` instances via slicing." +msgid "It also notably differs from the built-in :class:`list` type in that these lists can not change their overall length (i.e. no :meth:`!append`, :meth:`!insert`, etc.) and do not support the dynamic creation of new :class:`!ShareableList` instances via slicing." msgstr "" -#: ../../library/multiprocessing.shared_memory.rst:305 -msgid "" -"*sequence* is used in populating a new :class:`!ShareableList` full of " -"values. Set to ``None`` to instead attach to an already existing :class:`!" -"ShareableList` by its unique shared memory name." +msgid "*sequence* is used in populating a new :class:`!ShareableList` full of values. Set to ``None`` to instead attach to an already existing :class:`!ShareableList` by its unique shared memory name." msgstr "" -#: ../../library/multiprocessing.shared_memory.rst:309 -msgid "" -"*name* is the unique name for the requested shared memory, as described in " -"the definition for :class:`SharedMemory`. When attaching to an " -"existing :class:`!ShareableList`, specify its shared memory block's unique " -"name while leaving *sequence* set to ``None``." +msgid "*name* is the unique name for the requested shared memory, as described in the definition for :class:`SharedMemory`. When attaching to an existing :class:`!ShareableList`, specify its shared memory block's unique name while leaving *sequence* set to ``None``." msgstr "" -#: ../../library/multiprocessing.shared_memory.rst:316 -msgid "" -"A known issue exists for :class:`bytes` and :class:`str` values. If they end " -"with ``\\x00`` nul bytes or characters, those may be *silently stripped* " -"when fetching them by index from the :class:`!ShareableList`. This " -"``.rstrip(b'\\x00')`` behavior is considered a bug and may go away in the " -"future. See :gh:`106939`." +msgid "A known issue exists for :class:`bytes` and :class:`str` values. If they end with ``\\x00`` nul bytes or characters, those may be *silently stripped* when fetching them by index from the :class:`!ShareableList`. This ``.rstrip(b'\\x00')`` behavior is considered a bug and may go away in the future. See :gh:`106939`." msgstr "" -#: ../../library/multiprocessing.shared_memory.rst:322 -msgid "" -"For applications where rstripping of trailing nulls is a problem, work " -"around it by always unconditionally appending an extra non-0 byte to the end " -"of such values when storing and unconditionally removing it when fetching:" +msgid "For applications where rstripping of trailing nulls is a problem, work around it by always unconditionally appending an extra non-0 byte to the end of such values when storing and unconditionally removing it when fetching:" msgstr "" -#: ../../library/multiprocessing.shared_memory.rst:327 msgid "" ">>> from multiprocessing import shared_memory\n" -">>> nul_bug_demo = shared_memory.ShareableList(['?\\x00', " -"b'\\x03\\x02\\x01\\x00\\x00\\x00'])\n" +">>> nul_bug_demo = shared_memory.ShareableList(['?\\x00', b'\\x03\\x02\\x01\\x00\\x00\\x00'])\n" ">>> nul_bug_demo[0]\n" "'?'\n" ">>> nul_bug_demo[1]\n" "b'\\x03\\x02\\x01'\n" ">>> nul_bug_demo.shm.unlink()\n" -">>> padded = shared_memory.ShareableList(['?\\x00\\x07', " -"b'\\x03\\x02\\x01\\x00\\x00\\x00\\x07'])\n" +">>> padded = shared_memory.ShareableList(['?\\x00\\x07', b'\\x03\\x02\\x01\\x00\\x00\\x00\\x07'])\n" ">>> padded[0][:-1]\n" "'?\\x00'\n" ">>> padded[1][:-1]\n" @@ -438,57 +257,32 @@ msgid "" ">>> padded.shm.unlink()" msgstr "" -#: ../../library/multiprocessing.shared_memory.rst:345 msgid "Return the number of occurrences of *value*." msgstr "" -#: ../../library/multiprocessing.shared_memory.rst:349 -msgid "" -"Return first index position of *value*. Raise :exc:`ValueError` if *value* " -"is not present." +msgid "Return first index position of *value*. Raise :exc:`ValueError` if *value* is not present." msgstr "" -#: ../../library/multiprocessing.shared_memory.rst:354 -msgid "" -"Read-only attribute containing the :mod:`struct` packing format used by all " -"currently stored values." +msgid "Read-only attribute containing the :mod:`struct` packing format used by all currently stored values." msgstr "" -#: ../../library/multiprocessing.shared_memory.rst:359 msgid "The :class:`SharedMemory` instance where the values are stored." msgstr "" -#: ../../library/multiprocessing.shared_memory.rst:362 -msgid "" -"The following example demonstrates basic use of a :class:`ShareableList` " -"instance:" +msgid "The following example demonstrates basic use of a :class:`ShareableList` instance:" msgstr "" -#: ../../library/multiprocessing.shared_memory.rst:395 -msgid "" -"The following example depicts how one, two, or many processes may access the " -"same :class:`ShareableList` by supplying the name of the shared memory block " -"behind it:" +msgid "The following example depicts how one, two, or many processes may access the same :class:`ShareableList` by supplying the name of the shared memory block behind it:" msgstr "" -#: ../../library/multiprocessing.shared_memory.rst:410 -msgid "" -"The following examples demonstrates that :class:`ShareableList` (and " -"underlying :class:`SharedMemory`) objects can be pickled and unpickled if " -"needed. Note, that it will still be the same shared object. This happens, " -"because the deserialized object has the same unique name and is just " -"attached to an existing object with the same name (if the object is still " -"alive):" +msgid "The following examples demonstrates that :class:`ShareableList` (and underlying :class:`SharedMemory`) objects can be pickled and unpickled if needed. Note, that it will still be the same shared object. This happens, because the deserialized object has the same unique name and is just attached to an existing object with the same name (if the object is still alive):" msgstr "" -#: ../../library/multiprocessing.shared_memory.rst:11 msgid "Shared Memory" msgstr "" -#: ../../library/multiprocessing.shared_memory.rst:11 msgid "POSIX Shared Memory" msgstr "" -#: ../../library/multiprocessing.shared_memory.rst:11 msgid "Named Shared Memory" msgstr "" diff --git a/library/netdata.po b/library/netdata.po index 9f5c9aed..d146bcc9 100644 --- a/library/netdata.po +++ b/library/netdata.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:10+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,12 +21,8 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/netdata.rst:6 msgid "Internet Data Handling" msgstr "" -#: ../../library/netdata.rst:8 -msgid "" -"This chapter describes modules which support handling data formats commonly " -"used on the internet." +msgid "This chapter describes modules which support handling data formats commonly used on the internet." msgstr "" diff --git a/library/netrc.po b/library/netrc.po index f8ee2ca7..8036f370 100644 --- a/library/netrc.po +++ b/library/netrc.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:10+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,113 +21,59 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/netrc.rst:2 msgid ":mod:`!netrc` --- netrc file processing" msgstr "" -#: ../../library/netrc.rst:10 msgid "**Source code:** :source:`Lib/netrc.py`" msgstr "" -#: ../../library/netrc.rst:14 -msgid "" -"The :class:`~netrc.netrc` class parses and encapsulates the netrc file " -"format used by the Unix :program:`ftp` program and other FTP clients." +msgid "The :class:`~netrc.netrc` class parses and encapsulates the netrc file format used by the Unix :program:`ftp` program and other FTP clients." msgstr "" -#: ../../library/netrc.rst:20 -msgid "" -"A :class:`~netrc.netrc` instance or subclass instance encapsulates data " -"from a netrc file. The initialization argument, if present, specifies the " -"file to parse. If no argument is given, the file :file:`.netrc` in the " -"user's home directory -- as determined by :func:`os.path.expanduser` -- will " -"be read. Otherwise, a :exc:`FileNotFoundError` exception will be raised. " -"Parse errors will raise :exc:`NetrcParseError` with diagnostic information " -"including the file name, line number, and terminating token." +msgid "A :class:`~netrc.netrc` instance or subclass instance encapsulates data from a netrc file. The initialization argument, if present, specifies the file to parse. If no argument is given, the file :file:`.netrc` in the user's home directory -- as determined by :func:`os.path.expanduser` -- will be read. Otherwise, a :exc:`FileNotFoundError` exception will be raised. Parse errors will raise :exc:`NetrcParseError` with diagnostic information including the file name, line number, and terminating token." msgstr "" -#: ../../library/netrc.rst:28 -msgid "" -"If no argument is specified on a POSIX system, the presence of passwords in " -"the :file:`.netrc` file will raise a :exc:`NetrcParseError` if the file " -"ownership or permissions are insecure (owned by a user other than the user " -"running the process, or accessible for read or write by any other user). " -"This implements security behavior equivalent to that of ftp and other " -"programs that use :file:`.netrc`. Such security checks are not available on " -"platforms that do not support :func:`os.getuid`." +msgid "If no argument is specified on a POSIX system, the presence of passwords in the :file:`.netrc` file will raise a :exc:`NetrcParseError` if the file ownership or permissions are insecure (owned by a user other than the user running the process, or accessible for read or write by any other user). This implements security behavior equivalent to that of ftp and other programs that use :file:`.netrc`. Such security checks are not available on platforms that do not support :func:`os.getuid`." msgstr "" -#: ../../library/netrc.rst:36 msgid "Added the POSIX permission check." msgstr "" -#: ../../library/netrc.rst:38 -msgid "" -":func:`os.path.expanduser` is used to find the location of " -"the :file:`.netrc` file when *file* is not passed as argument." +msgid ":func:`os.path.expanduser` is used to find the location of the :file:`.netrc` file when *file* is not passed as argument." msgstr "" -#: ../../library/netrc.rst:42 -msgid "" -":class:`netrc` try UTF-8 encoding before using locale specific encoding. The " -"entry in the netrc file no longer needs to contain all tokens. The missing " -"tokens' value default to an empty string. All the tokens and their values " -"now can contain arbitrary characters, like whitespace and non-ASCII " -"characters. If the login name is anonymous, it won't trigger the security " -"check." +msgid ":class:`netrc` try UTF-8 encoding before using locale specific encoding. The entry in the netrc file no longer needs to contain all tokens. The missing tokens' value default to an empty string. All the tokens and their values now can contain arbitrary characters, like whitespace and non-ASCII characters. If the login name is anonymous, it won't trigger the security check." msgstr "" -#: ../../library/netrc.rst:53 -msgid "" -"Exception raised by the :class:`~netrc.netrc` class when syntactical errors " -"are encountered in source text. Instances of this exception provide three " -"interesting attributes:" +msgid "Exception raised by the :class:`~netrc.netrc` class when syntactical errors are encountered in source text. Instances of this exception provide three interesting attributes:" msgstr "" -#: ../../library/netrc.rst:59 msgid "Textual explanation of the error." msgstr "" -#: ../../library/netrc.rst:63 msgid "The name of the source file." msgstr "" -#: ../../library/netrc.rst:67 msgid "The line number on which the error was found." msgstr "" -#: ../../library/netrc.rst:73 msgid "netrc Objects" msgstr "" -#: ../../library/netrc.rst:75 msgid "A :class:`~netrc.netrc` instance has the following methods:" msgstr "" -#: ../../library/netrc.rst:80 -msgid "" -"Return a 3-tuple ``(login, account, password)`` of authenticators for " -"*host*. If the netrc file did not contain an entry for the given host, " -"return the tuple associated with the 'default' entry. If neither matching " -"host nor default entry is available, return ``None``." +msgid "Return a 3-tuple ``(login, account, password)`` of authenticators for *host*. If the netrc file did not contain an entry for the given host, return the tuple associated with the 'default' entry. If neither matching host nor default entry is available, return ``None``." msgstr "" -#: ../../library/netrc.rst:88 -msgid "" -"Dump the class data as a string in the format of a netrc file. (This " -"discards comments and may reorder the entries.)" +msgid "Dump the class data as a string in the format of a netrc file. (This discards comments and may reorder the entries.)" msgstr "" -#: ../../library/netrc.rst:91 msgid "Instances of :class:`~netrc.netrc` have public instance variables:" msgstr "" -#: ../../library/netrc.rst:96 -msgid "" -"Dictionary mapping host names to ``(login, account, password)`` tuples. The " -"'default' entry, if any, is represented as a pseudo-host by that name." +msgid "Dictionary mapping host names to ``(login, account, password)`` tuples. The 'default' entry, if any, is represented as a pseudo-host by that name." msgstr "" -#: ../../library/netrc.rst:102 msgid "Dictionary mapping macro names to string lists." msgstr "" diff --git a/library/nis.po b/library/nis.po index 3a3724c1..d374e179 100644 --- a/library/nis.po +++ b/library/nis.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2024-11-19 01:03+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,19 +21,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/nis.rst:2 msgid ":mod:`!nis` --- Interface to Sun’s NIS (Yellow Pages)" msgstr "" -#: ../../library/nis.rst:10 -msgid "" -"This module is no longer part of the Python standard library. It " -"was :ref:`removed in Python 3.13 ` after being " -"deprecated in Python 3.11. The removal was decided in :pep:`594`." +msgid "This module is no longer part of the Python standard library. It was :ref:`removed in Python 3.13 ` after being deprecated in Python 3.11. The removal was decided in :pep:`594`." msgstr "" -#: ../../library/nis.rst:14 -msgid "" -"The last version of Python that provided the :mod:`!nis` module was `Python " -"3.12 `_." +msgid "The last version of Python that provided the :mod:`!nis` module was `Python 3.12 `_." msgstr "" diff --git a/library/nntplib.po b/library/nntplib.po index b5f99323..5368a765 100644 --- a/library/nntplib.po +++ b/library/nntplib.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2024-11-19 01:03+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,19 +21,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/nntplib.rst:2 msgid ":mod:`!nntplib` --- NNTP protocol client" msgstr "" -#: ../../library/nntplib.rst:10 -msgid "" -"This module is no longer part of the Python standard library. It " -"was :ref:`removed in Python 3.13 ` after being " -"deprecated in Python 3.11. The removal was decided in :pep:`594`." +msgid "This module is no longer part of the Python standard library. It was :ref:`removed in Python 3.13 ` after being deprecated in Python 3.11. The removal was decided in :pep:`594`." msgstr "" -#: ../../library/nntplib.rst:14 -msgid "" -"The last version of Python that provided the :mod:`!nntplib` module was " -"`Python 3.12 `_." +msgid "The last version of Python that provided the :mod:`!nntplib` module was `Python 3.12 `_." msgstr "" diff --git a/library/numbers.po b/library/numbers.po index 380e68df..8985d51c 100644 --- a/library/numbers.po +++ b/library/numbers.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:10+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,149 +21,80 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/numbers.rst:2 msgid ":mod:`!numbers` --- Numeric abstract base classes" msgstr "" -#: ../../library/numbers.rst:7 msgid "**Source code:** :source:`Lib/numbers.py`" msgstr "" -#: ../../library/numbers.rst:11 -msgid "" -"The :mod:`!numbers` module (:pep:`3141`) defines a hierarchy of " -"numeric :term:`abstract base classes ` which " -"progressively define more operations. None of the types defined in this " -"module are intended to be instantiated." +msgid "The :mod:`!numbers` module (:pep:`3141`) defines a hierarchy of numeric :term:`abstract base classes ` which progressively define more operations. None of the types defined in this module are intended to be instantiated." msgstr "" -#: ../../library/numbers.rst:18 -msgid "" -"The root of the numeric hierarchy. If you just want to check if an argument " -"*x* is a number, without caring what kind, use ``isinstance(x, Number)``." +msgid "The root of the numeric hierarchy. If you just want to check if an argument *x* is a number, without caring what kind, use ``isinstance(x, Number)``." msgstr "" -#: ../../library/numbers.rst:23 msgid "The numeric tower" msgstr "" -#: ../../library/numbers.rst:27 -msgid "" -"Subclasses of this type describe complex numbers and include the operations " -"that work on the built-in :class:`complex` type. These are: conversions " -"to :class:`complex` and :class:`bool`, :attr:`.real`, :attr:`.imag`, ``+``, " -"``-``, ``*``, ``/``, ``**``, :func:`abs`, :meth:`conjugate`, ``==``, and ``!" -"=``. All except ``-`` and ``!=`` are abstract." +msgid "Subclasses of this type describe complex numbers and include the operations that work on the built-in :class:`complex` type. These are: conversions to :class:`complex` and :class:`bool`, :attr:`.real`, :attr:`.imag`, ``+``, ``-``, ``*``, ``/``, ``**``, :func:`abs`, :meth:`conjugate`, ``==``, and ``!=``. All except ``-`` and ``!=`` are abstract." msgstr "" -#: ../../library/numbers.rst:35 msgid "Abstract. Retrieves the real component of this number." msgstr "" -#: ../../library/numbers.rst:39 msgid "Abstract. Retrieves the imaginary component of this number." msgstr "" -#: ../../library/numbers.rst:44 -msgid "" -"Abstract. Returns the complex conjugate. For example, ``(1+3j).conjugate() " -"== (1-3j)``." +msgid "Abstract. Returns the complex conjugate. For example, ``(1+3j).conjugate() == (1-3j)``." msgstr "" -#: ../../library/numbers.rst:49 -msgid "" -"To :class:`Complex`, :class:`!Real` adds the operations that work on real " -"numbers." +msgid "To :class:`Complex`, :class:`!Real` adds the operations that work on real numbers." msgstr "" -#: ../../library/numbers.rst:52 -msgid "" -"In short, those are: a conversion " -"to :class:`float`, :func:`math.trunc`, :func:`round`, :func:`math.floor`, :func:`math.ceil`, :func:`divmod`, " -"``//``, ``%``, ``<``, ``<=``, ``>``, and ``>=``." +msgid "In short, those are: a conversion to :class:`float`, :func:`math.trunc`, :func:`round`, :func:`math.floor`, :func:`math.ceil`, :func:`divmod`, ``//``, ``%``, ``<``, ``<=``, ``>``, and ``>=``." msgstr "" -#: ../../library/numbers.rst:56 -msgid "" -"Real also provides defaults " -"for :func:`complex`, :attr:`~Complex.real`, :attr:`~Complex.imag`, " -"and :meth:`~Complex.conjugate`." +msgid "Real also provides defaults for :func:`complex`, :attr:`~Complex.real`, :attr:`~Complex.imag`, and :meth:`~Complex.conjugate`." msgstr "" -#: ../../library/numbers.rst:62 -msgid "" -"Subtypes :class:`Real` and adds :attr:`~Rational.numerator` " -"and :attr:`~Rational.denominator` properties. It also provides a default " -"for :func:`float`." +msgid "Subtypes :class:`Real` and adds :attr:`~Rational.numerator` and :attr:`~Rational.denominator` properties. It also provides a default for :func:`float`." msgstr "" -#: ../../library/numbers.rst:66 -msgid "" -"The :attr:`~Rational.numerator` and :attr:`~Rational.denominator` values " -"should be instances of :class:`Integral` and should be in lowest terms " -"with :attr:`~Rational.denominator` positive." +msgid "The :attr:`~Rational.numerator` and :attr:`~Rational.denominator` values should be instances of :class:`Integral` and should be in lowest terms with :attr:`~Rational.denominator` positive." msgstr "" -#: ../../library/numbers.rst:72 msgid "Abstract. The numerator of this rational number." msgstr "" -#: ../../library/numbers.rst:76 msgid "Abstract. The denominator of this rational number." msgstr "" -#: ../../library/numbers.rst:81 -msgid "" -"Subtypes :class:`Rational` and adds a conversion to :class:`int`. Provides " -"defaults for :func:`float`, :attr:`~Rational.numerator`, " -"and :attr:`~Rational.denominator`. Adds abstract methods for :func:`pow` " -"with modulus and bit-string operations: ``<<``, ``>>``, ``&``, ``^``, ``|``, " -"``~``." +msgid "Subtypes :class:`Rational` and adds a conversion to :class:`int`. Provides defaults for :func:`float`, :attr:`~Rational.numerator`, and :attr:`~Rational.denominator`. Adds abstract methods for :func:`pow` with modulus and bit-string operations: ``<<``, ``>>``, ``&``, ``^``, ``|``, ``~``." msgstr "" -#: ../../library/numbers.rst:89 msgid "Notes for type implementers" msgstr "" -#: ../../library/numbers.rst:91 -msgid "" -"Implementers should be careful to make equal numbers equal and hash them to " -"the same values. This may be subtle if there are two different extensions of " -"the real numbers. See also :ref:`numeric-hash`." +msgid "Implementers should be careful to make equal numbers equal and hash them to the same values. This may be subtle if there are two different extensions of the real numbers. See also :ref:`numeric-hash`." msgstr "" -#: ../../library/numbers.rst:97 msgid "Adding More Numeric ABCs" msgstr "" -#: ../../library/numbers.rst:99 -msgid "" -"There are, of course, more possible ABCs for numbers, and this would be a " -"poor hierarchy if it precluded the possibility of adding those. You can add " -"``MyFoo`` between :class:`Complex` and :class:`Real` with::" +msgid "There are, of course, more possible ABCs for numbers, and this would be a poor hierarchy if it precluded the possibility of adding those. You can add ``MyFoo`` between :class:`Complex` and :class:`Real` with::" msgstr "" -#: ../../library/numbers.rst:104 msgid "" "class MyFoo(Complex): ...\n" "MyFoo.register(Real)" msgstr "" -#: ../../library/numbers.rst:111 msgid "Implementing the arithmetic operations" msgstr "" -#: ../../library/numbers.rst:113 -msgid "" -"We want to implement the arithmetic operations so that mixed-mode operations " -"either call an implementation whose author knew about the types of both " -"arguments, or convert both to the nearest built in type and do the operation " -"there. For subtypes of :class:`Integral`, this means " -"that :meth:`~object.__add__` and :meth:`~object.__radd__` should be defined " -"as::" +msgid "We want to implement the arithmetic operations so that mixed-mode operations either call an implementation whose author knew about the types of both arguments, or convert both to the nearest built in type and do the operation there. For subtypes of :class:`Integral`, this means that :meth:`~object.__add__` and :meth:`~object.__radd__` should be defined as::" msgstr "" -#: ../../library/numbers.rst:120 msgid "" "class MyIntegral(Integral):\n" "\n" @@ -190,65 +121,30 @@ msgid "" " return NotImplemented" msgstr "" -#: ../../library/numbers.rst:145 -msgid "" -"There are 5 different cases for a mixed-type operation on subclasses " -"of :class:`Complex`. I'll refer to all of the above code that doesn't refer " -"to ``MyIntegral`` and ``OtherTypeIKnowAbout`` as \"boilerplate\". ``a`` will " -"be an instance of ``A``, which is a subtype of :class:`Complex` (``a : A <: " -"Complex``), and ``b : B <: Complex``. I'll consider ``a + b``:" +msgid "There are 5 different cases for a mixed-type operation on subclasses of :class:`Complex`. I'll refer to all of the above code that doesn't refer to ``MyIntegral`` and ``OtherTypeIKnowAbout`` as \"boilerplate\". ``a`` will be an instance of ``A``, which is a subtype of :class:`Complex` (``a : A <: Complex``), and ``b : B <: Complex``. I'll consider ``a + b``:" msgstr "" -#: ../../library/numbers.rst:152 -msgid "" -"If ``A`` defines an :meth:`~object.__add__` which accepts ``b``, all is well." +msgid "If ``A`` defines an :meth:`~object.__add__` which accepts ``b``, all is well." msgstr "" -#: ../../library/numbers.rst:154 -msgid "" -"If ``A`` falls back to the boilerplate code, and it were to return a value " -"from :meth:`~object.__add__`, we'd miss the possibility that ``B`` defines a " -"more intelligent :meth:`~object.__radd__`, so the boilerplate should " -"return :data:`NotImplemented` from :meth:`!__add__`. (Or ``A`` may not " -"implement :meth:`!__add__` at all.)" +msgid "If ``A`` falls back to the boilerplate code, and it were to return a value from :meth:`~object.__add__`, we'd miss the possibility that ``B`` defines a more intelligent :meth:`~object.__radd__`, so the boilerplate should return :data:`NotImplemented` from :meth:`!__add__`. (Or ``A`` may not implement :meth:`!__add__` at all.)" msgstr "" -#: ../../library/numbers.rst:160 -msgid "" -"Then ``B``'s :meth:`~object.__radd__` gets a chance. If it accepts ``a``, " -"all is well." +msgid "Then ``B``'s :meth:`~object.__radd__` gets a chance. If it accepts ``a``, all is well." msgstr "" -#: ../../library/numbers.rst:162 -msgid "" -"If it falls back to the boilerplate, there are no more possible methods to " -"try, so this is where the default implementation should live." +msgid "If it falls back to the boilerplate, there are no more possible methods to try, so this is where the default implementation should live." msgstr "" -#: ../../library/numbers.rst:165 -msgid "" -"If ``B <: A``, Python tries ``B.__radd__`` before ``A.__add__``. This is ok, " -"because it was implemented with knowledge of ``A``, so it can handle those " -"instances before delegating to :class:`Complex`." +msgid "If ``B <: A``, Python tries ``B.__radd__`` before ``A.__add__``. This is ok, because it was implemented with knowledge of ``A``, so it can handle those instances before delegating to :class:`Complex`." msgstr "" -#: ../../library/numbers.rst:170 -msgid "" -"If ``A <: Complex`` and ``B <: Real`` without sharing any other knowledge, " -"then the appropriate shared operation is the one involving the built " -"in :class:`complex`, and both :meth:`~object.__radd__` s land there, so " -"``a+b == b+a``." +msgid "If ``A <: Complex`` and ``B <: Real`` without sharing any other knowledge, then the appropriate shared operation is the one involving the built in :class:`complex`, and both :meth:`~object.__radd__` s land there, so ``a+b == b+a``." msgstr "" -#: ../../library/numbers.rst:175 -msgid "" -"Because most of the operations on any given type will be very similar, it " -"can be useful to define a helper function which generates the forward and " -"reverse instances of any given operator. For " -"example, :class:`fractions.Fraction` uses::" +msgid "Because most of the operations on any given type will be very similar, it can be useful to define a helper function which generates the forward and reverse instances of any given operator. For example, :class:`fractions.Fraction` uses::" msgstr "" -#: ../../library/numbers.rst:180 msgid "" "def _operator_fallbacks(monomorphic_operator, fallback_operator):\n" " def forward(a, b):\n" diff --git a/library/numeric.po b/library/numeric.po index 66500990..2d3bf5d2 100644 --- a/library/numeric.po +++ b/library/numeric.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:10+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,20 +21,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/numeric.rst:6 msgid "Numeric and Mathematical Modules" msgstr "" -#: ../../library/numeric.rst:8 -msgid "" -"The modules described in this chapter provide numeric and math-related " -"functions and data types. The :mod:`numbers` module defines an abstract " -"hierarchy of numeric types. The :mod:`math` and :mod:`cmath` modules contain " -"various mathematical functions for floating-point and complex numbers. " -"The :mod:`decimal` module supports exact representations of decimal numbers, " -"using arbitrary precision arithmetic." +msgid "The modules described in this chapter provide numeric and math-related functions and data types. The :mod:`numbers` module defines an abstract hierarchy of numeric types. The :mod:`math` and :mod:`cmath` modules contain various mathematical functions for floating-point and complex numbers. The :mod:`decimal` module supports exact representations of decimal numbers, using arbitrary precision arithmetic." msgstr "" -#: ../../library/numeric.rst:15 msgid "The following modules are documented in this chapter:" msgstr "" diff --git a/library/operator.po b/library/operator.po index 8867e526..91d916c5 100644 --- a/library/operator.po +++ b/library/operator.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:10+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,254 +23,156 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/operator.rst:2 msgid ":mod:`!operator` --- Standard operators as functions" msgstr "" -#: ../../library/operator.rst:9 msgid "**Source code:** :source:`Lib/operator.py`" msgstr "" -#: ../../library/operator.rst:18 -msgid "" -"The :mod:`!operator` module exports a set of efficient functions " -"corresponding to the intrinsic operators of Python. For example, " -"``operator.add(x, y)`` is equivalent to the expression ``x+y``. Many " -"function names are those used for special methods, without the double " -"underscores. For backward compatibility, many of these have a variant with " -"the double underscores kept. The variants without the double underscores are " -"preferred for clarity." +msgid "The :mod:`!operator` module exports a set of efficient functions corresponding to the intrinsic operators of Python. For example, ``operator.add(x, y)`` is equivalent to the expression ``x+y``. Many function names are those used for special methods, without the double underscores. For backward compatibility, many of these have a variant with the double underscores kept. The variants without the double underscores are preferred for clarity." msgstr "" -#: ../../library/operator.rst:25 -msgid "" -"The functions fall into categories that perform object comparisons, logical " -"operations, mathematical operations and sequence operations." +msgid "The functions fall into categories that perform object comparisons, logical operations, mathematical operations and sequence operations." msgstr "" -#: ../../library/operator.rst:28 -msgid "" -"The object comparison functions are useful for all objects, and are named " -"after the rich comparison operators they support:" +msgid "The object comparison functions are useful for all objects, and are named after the rich comparison operators they support:" msgstr "" -#: ../../library/operator.rst:45 -msgid "" -"Perform \"rich comparisons\" between *a* and *b*. Specifically, ``lt(a, b)`` " -"is equivalent to ``a < b``, ``le(a, b)`` is equivalent to ``a <= b``, " -"``eq(a, b)`` is equivalent to ``a == b``, ``ne(a, b)`` is equivalent to ``a !" -"= b``, ``gt(a, b)`` is equivalent to ``a > b`` and ``ge(a, b)`` is " -"equivalent to ``a >= b``. Note that these functions can return any value, " -"which may or may not be interpretable as a Boolean value. " -"See :ref:`comparisons` for more information about rich comparisons." +msgid "Perform \"rich comparisons\" between *a* and *b*. Specifically, ``lt(a, b)`` is equivalent to ``a < b``, ``le(a, b)`` is equivalent to ``a <= b``, ``eq(a, b)`` is equivalent to ``a == b``, ``ne(a, b)`` is equivalent to ``a != b``, ``gt(a, b)`` is equivalent to ``a > b`` and ``ge(a, b)`` is equivalent to ``a >= b``. Note that these functions can return any value, which may or may not be interpretable as a Boolean value. See :ref:`comparisons` for more information about rich comparisons." msgstr "" -#: ../../library/operator.rst:54 -msgid "" -"The logical operations are also generally applicable to all objects, and " -"support truth tests, identity tests, and boolean operations:" +msgid "The logical operations are also generally applicable to all objects, and support truth tests, identity tests, and boolean operations:" msgstr "" -#: ../../library/operator.rst:61 -msgid "" -"Return the outcome of :keyword:`not` *obj*. (Note that there is no :meth:`!" -"__not__` method for object instances; only the interpreter core defines this " -"operation. The result is affected by the :meth:`~object.__bool__` " -"and :meth:`~object.__len__` methods.)" +msgid "Return the outcome of :keyword:`not` *obj*. (Note that there is no :meth:`!__not__` method for object instances; only the interpreter core defines this operation. The result is affected by the :meth:`~object.__bool__` and :meth:`~object.__len__` methods.)" msgstr "" -#: ../../library/operator.rst:69 -msgid "" -"Return :const:`True` if *obj* is true, and :const:`False` otherwise. This " -"is equivalent to using the :class:`bool` constructor." +msgid "Return :const:`True` if *obj* is true, and :const:`False` otherwise. This is equivalent to using the :class:`bool` constructor." msgstr "" -#: ../../library/operator.rst:75 msgid "Return ``a is b``. Tests object identity." msgstr "" -#: ../../library/operator.rst:80 msgid "Return ``a is not b``. Tests object identity." msgstr "" -#: ../../library/operator.rst:85 msgid "Return ``a is None``. Tests object identity." msgstr "" -#: ../../library/operator.rst:92 msgid "Return ``a is not None``. Tests object identity." msgstr "" -#: ../../library/operator.rst:97 msgid "The mathematical and bitwise operations are the most numerous:" msgstr "" -#: ../../library/operator.rst:103 msgid "Return the absolute value of *obj*." msgstr "" -#: ../../library/operator.rst:109 msgid "Return ``a + b``, for *a* and *b* numbers." msgstr "" -#: ../../library/operator.rst:115 msgid "Return ``a & b``." msgstr "" -#: ../../library/operator.rst:121 msgid "Return ``a // b``." msgstr "" -#: ../../library/operator.rst:127 msgid "Return *a* converted to an integer. Equivalent to ``a.__index__()``." msgstr "" -#: ../../library/operator.rst:129 -msgid "" -"The result always has exact type :class:`int`. Previously, the result could " -"have been an instance of a subclass of ``int``." +msgid "The result always has exact type :class:`int`. Previously, the result could have been an instance of a subclass of ``int``." msgstr "" -#: ../../library/operator.rst:139 msgid "Return ``~obj``." msgstr "" -#: ../../library/operator.rst:145 msgid "Return ``a << b``." msgstr "" -#: ../../library/operator.rst:151 msgid "Return ``a % b``." msgstr "" -#: ../../library/operator.rst:157 msgid "Return ``a * b``." msgstr "" -#: ../../library/operator.rst:163 msgid "Return ``a @ b``." msgstr "" -#: ../../library/operator.rst:171 msgid "Return *obj* negated (``-obj``)." msgstr "" -#: ../../library/operator.rst:177 msgid "Return ``a | b``." msgstr "" -#: ../../library/operator.rst:183 msgid "Return ``+obj``." msgstr "" -#: ../../library/operator.rst:189 msgid "Return ``a ** b``." msgstr "" -#: ../../library/operator.rst:195 msgid "Return ``a >> b``." msgstr "" -#: ../../library/operator.rst:201 msgid "Return ``a - b``." msgstr "" -#: ../../library/operator.rst:207 -msgid "" -"Return ``a / b`` where 2/3 is .66 rather than 0. This is also known as " -"\"true\" division." +msgid "Return ``a / b`` where 2/3 is .66 rather than 0. This is also known as \"true\" division." msgstr "" -#: ../../library/operator.rst:214 msgid "Return ``a ^ b``." msgstr "" -#: ../../library/operator.rst:217 -msgid "" -"Operations which work with sequences (some of them with mappings too) " -"include:" +msgid "Operations which work with sequences (some of them with mappings too) include:" msgstr "" -#: ../../library/operator.rst:222 msgid "Return ``a + b`` for *a* and *b* sequences." msgstr "" -#: ../../library/operator.rst:228 msgid "Return the outcome of the test ``b in a``. Note the reversed operands." msgstr "" -#: ../../library/operator.rst:233 msgid "Return the number of occurrences of *b* in *a*." msgstr "" -#: ../../library/operator.rst:239 msgid "Remove the value of *a* at index *b*." msgstr "" -#: ../../library/operator.rst:245 msgid "Return the value of *a* at index *b*." msgstr "" -#: ../../library/operator.rst:250 msgid "Return the index of the first of occurrence of *b* in *a*." msgstr "" -#: ../../library/operator.rst:256 msgid "Set the value of *a* at index *b* to *c*." msgstr "" -#: ../../library/operator.rst:261 -msgid "" -"Return an estimated length for the object *obj*. First try to return its " -"actual length, then an estimate using :meth:`object.__length_hint__`, and " -"finally return the default value." +msgid "Return an estimated length for the object *obj*. First try to return its actual length, then an estimate using :meth:`object.__length_hint__`, and finally return the default value." msgstr "" -#: ../../library/operator.rst:268 msgid "The following operation works with callables:" msgstr "" -#: ../../library/operator.rst:273 msgid "Return ``obj(*args, **kwargs)``." msgstr "" -#: ../../library/operator.rst:278 -msgid "" -"The :mod:`!operator` module also defines tools for generalized attribute and " -"item lookups. These are useful for making fast field extractors as " -"arguments for :func:`map`, :func:`sorted`, :meth:`itertools.groupby`, or " -"other functions that expect a function argument." +msgid "The :mod:`!operator` module also defines tools for generalized attribute and item lookups. These are useful for making fast field extractors as arguments for :func:`map`, :func:`sorted`, :meth:`itertools.groupby`, or other functions that expect a function argument." msgstr "" -#: ../../library/operator.rst:287 -msgid "" -"Return a callable object that fetches *attr* from its operand. If more than " -"one attribute is requested, returns a tuple of attributes. The attribute " -"names can also contain dots. For example:" +msgid "Return a callable object that fetches *attr* from its operand. If more than one attribute is requested, returns a tuple of attributes. The attribute names can also contain dots. For example:" msgstr "" -#: ../../library/operator.rst:291 msgid "After ``f = attrgetter('name')``, the call ``f(b)`` returns ``b.name``." msgstr "" -#: ../../library/operator.rst:293 -msgid "" -"After ``f = attrgetter('name', 'date')``, the call ``f(b)`` returns " -"``(b.name, b.date)``." +msgid "After ``f = attrgetter('name', 'date')``, the call ``f(b)`` returns ``(b.name, b.date)``." msgstr "" -#: ../../library/operator.rst:296 -msgid "" -"After ``f = attrgetter('name.first', 'name.last')``, the call ``f(b)`` " -"returns ``(b.name.first, b.name.last)``." +msgid "After ``f = attrgetter('name.first', 'name.last')``, the call ``f(b)`` returns ``(b.name.first, b.name.last)``." msgstr "" -#: ../../library/operator.rst:299 ../../library/operator.rst:331 -#: ../../library/operator.rst:379 msgid "Equivalent to::" msgstr "" -#: ../../library/operator.rst:301 msgid "" "def attrgetter(*items):\n" " if any(not isinstance(item, str) for item in items):\n" @@ -290,24 +192,15 @@ msgid "" " return obj" msgstr "" -#: ../../library/operator.rst:322 -msgid "" -"Return a callable object that fetches *item* from its operand using the " -"operand's :meth:`~object.__getitem__` method. If multiple items are " -"specified, returns a tuple of lookup values. For example:" +msgid "Return a callable object that fetches *item* from its operand using the operand's :meth:`~object.__getitem__` method. If multiple items are specified, returns a tuple of lookup values. For example:" msgstr "" -#: ../../library/operator.rst:326 msgid "After ``f = itemgetter(2)``, the call ``f(r)`` returns ``r[2]``." msgstr "" -#: ../../library/operator.rst:328 -msgid "" -"After ``g = itemgetter(2, 5, 3)``, the call ``g(r)`` returns ``(r[2], r[5], " -"r[3])``." +msgid "After ``g = itemgetter(2, 5, 3)``, the call ``g(r)`` returns ``(r[2], r[5], r[3])``." msgstr "" -#: ../../library/operator.rst:333 msgid "" "def itemgetter(*items):\n" " if len(items) == 1:\n" @@ -320,39 +213,21 @@ msgid "" " return g" msgstr "" -#: ../../library/operator.rst:343 -msgid "" -"The items can be any type accepted by the " -"operand's :meth:`~object.__getitem__` method. Dictionaries accept " -"any :term:`hashable` value. Lists, tuples, and strings accept an index or a " -"slice:" +msgid "The items can be any type accepted by the operand's :meth:`~object.__getitem__` method. Dictionaries accept any :term:`hashable` value. Lists, tuples, and strings accept an index or a slice:" msgstr "" -#: ../../library/operator.rst:357 -msgid "" -"Example of using :func:`itemgetter` to retrieve specific fields from a tuple " -"record:" +msgid "Example of using :func:`itemgetter` to retrieve specific fields from a tuple record:" msgstr "" -#: ../../library/operator.rst:370 -msgid "" -"Return a callable object that calls the method *name* on its operand. If " -"additional arguments and/or keyword arguments are given, they will be given " -"to the method as well. For example:" +msgid "Return a callable object that calls the method *name* on its operand. If additional arguments and/or keyword arguments are given, they will be given to the method as well. For example:" msgstr "" -#: ../../library/operator.rst:374 -msgid "" -"After ``f = methodcaller('name')``, the call ``f(b)`` returns ``b.name()``." +msgid "After ``f = methodcaller('name')``, the call ``f(b)`` returns ``b.name()``." msgstr "" -#: ../../library/operator.rst:376 -msgid "" -"After ``f = methodcaller('name', 'foo', bar=1)``, the call ``f(b)`` returns " -"``b.name('foo', bar=1)``." +msgid "After ``f = methodcaller('name', 'foo', bar=1)``, the call ``f(b)`` returns ``b.name('foo', bar=1)``." msgstr "" -#: ../../library/operator.rst:381 msgid "" "def methodcaller(name, /, *args, **kwargs):\n" " def caller(obj):\n" @@ -360,533 +235,386 @@ msgid "" " return caller" msgstr "" -#: ../../library/operator.rst:390 msgid "Mapping Operators to Functions" msgstr "" -#: ../../library/operator.rst:392 -msgid "" -"This table shows how abstract operations correspond to operator symbols in " -"the Python syntax and the functions in the :mod:`!operator` module." +msgid "This table shows how abstract operations correspond to operator symbols in the Python syntax and the functions in the :mod:`!operator` module." msgstr "" -#: ../../library/operator.rst:396 msgid "Operation" msgstr "" -#: ../../library/operator.rst:396 msgid "Syntax" msgstr "" -#: ../../library/operator.rst:396 msgid "Function" msgstr "" -#: ../../library/operator.rst:398 msgid "Addition" msgstr "" -#: ../../library/operator.rst:398 msgid "``a + b``" msgstr "" -#: ../../library/operator.rst:398 msgid "``add(a, b)``" msgstr "" -#: ../../library/operator.rst:400 msgid "Concatenation" msgstr "" -#: ../../library/operator.rst:400 msgid "``seq1 + seq2``" msgstr "" -#: ../../library/operator.rst:400 msgid "``concat(seq1, seq2)``" msgstr "" -#: ../../library/operator.rst:402 msgid "Containment Test" msgstr "" -#: ../../library/operator.rst:402 msgid "``obj in seq``" msgstr "" -#: ../../library/operator.rst:402 msgid "``contains(seq, obj)``" msgstr "" -#: ../../library/operator.rst:404 ../../library/operator.rst:406 msgid "Division" msgstr "" -#: ../../library/operator.rst:404 msgid "``a / b``" msgstr "" -#: ../../library/operator.rst:404 msgid "``truediv(a, b)``" msgstr "" -#: ../../library/operator.rst:406 msgid "``a // b``" msgstr "" -#: ../../library/operator.rst:406 msgid "``floordiv(a, b)``" msgstr "" -#: ../../library/operator.rst:408 msgid "Bitwise And, or Intersection" msgstr "" -#: ../../library/operator.rst:408 msgid "``a & b``" msgstr "" -#: ../../library/operator.rst:408 msgid "``and_(a, b)``" msgstr "" -#: ../../library/operator.rst:411 msgid "Bitwise Exclusive Or, or Symmetric Difference" msgstr "" -#: ../../library/operator.rst:411 msgid "``a ^ b``" msgstr "" -#: ../../library/operator.rst:411 msgid "``xor(a, b)``" msgstr "" -#: ../../library/operator.rst:415 msgid "Bitwise Inversion, or Complement" msgstr "" -#: ../../library/operator.rst:415 msgid "``~ a``" msgstr "" -#: ../../library/operator.rst:415 msgid "``invert(a)``" msgstr "" -#: ../../library/operator.rst:418 msgid "Bitwise Or, or Union" msgstr "" -#: ../../library/operator.rst:418 msgid "``a | b``" msgstr "" -#: ../../library/operator.rst:418 msgid "``or_(a, b)``" msgstr "" -#: ../../library/operator.rst:421 msgid "Exponentiation" msgstr "" -#: ../../library/operator.rst:421 msgid "``a ** b``" msgstr "" -#: ../../library/operator.rst:421 msgid "``pow(a, b)``" msgstr "" -#: ../../library/operator.rst:423 ../../library/operator.rst:425 -#: ../../library/operator.rst:427 ../../library/operator.rst:429 msgid "Identity" msgstr "" -#: ../../library/operator.rst:423 msgid "``a is b``" msgstr "" -#: ../../library/operator.rst:423 msgid "``is_(a, b)``" msgstr "" -#: ../../library/operator.rst:425 msgid "``a is not b``" msgstr "" -#: ../../library/operator.rst:425 msgid "``is_not(a, b)``" msgstr "" -#: ../../library/operator.rst:427 msgid "``a is None``" msgstr "" -#: ../../library/operator.rst:427 msgid "``is_none(a)``" msgstr "" -#: ../../library/operator.rst:429 msgid "``a is not None``" msgstr "" -#: ../../library/operator.rst:429 msgid "``is_not_none(a)``" msgstr "" -#: ../../library/operator.rst:431 msgid "Indexed Assignment" msgstr "" -#: ../../library/operator.rst:431 msgid "``obj[k] = v``" msgstr "" -#: ../../library/operator.rst:431 msgid "``setitem(obj, k, v)``" msgstr "" -#: ../../library/operator.rst:433 msgid "Indexed Deletion" msgstr "" -#: ../../library/operator.rst:433 msgid "``del obj[k]``" msgstr "" -#: ../../library/operator.rst:433 msgid "``delitem(obj, k)``" msgstr "" -#: ../../library/operator.rst:435 msgid "Indexing" msgstr "" -#: ../../library/operator.rst:435 msgid "``obj[k]``" msgstr "" -#: ../../library/operator.rst:435 msgid "``getitem(obj, k)``" msgstr "" -#: ../../library/operator.rst:437 msgid "Left Shift" msgstr "" -#: ../../library/operator.rst:437 msgid "``a << b``" msgstr "" -#: ../../library/operator.rst:437 msgid "``lshift(a, b)``" msgstr "" -#: ../../library/operator.rst:439 msgid "Modulo" msgstr "" -#: ../../library/operator.rst:439 msgid "``a % b``" msgstr "" -#: ../../library/operator.rst:439 msgid "``mod(a, b)``" msgstr "" -#: ../../library/operator.rst:441 msgid "Multiplication" msgstr "" -#: ../../library/operator.rst:441 msgid "``a * b``" msgstr "" -#: ../../library/operator.rst:441 msgid "``mul(a, b)``" msgstr "" -#: ../../library/operator.rst:443 msgid "Matrix Multiplication" msgstr "" -#: ../../library/operator.rst:443 msgid "``a @ b``" msgstr "" -#: ../../library/operator.rst:443 msgid "``matmul(a, b)``" msgstr "" -#: ../../library/operator.rst:445 msgid "Negation (Arithmetic)" msgstr "" -#: ../../library/operator.rst:445 msgid "``- a``" msgstr "" -#: ../../library/operator.rst:445 msgid "``neg(a)``" msgstr "" -#: ../../library/operator.rst:447 msgid "Negation (Logical)" msgstr "" -#: ../../library/operator.rst:447 msgid "``not a``" msgstr "" -#: ../../library/operator.rst:447 msgid "``not_(a)``" msgstr "" -#: ../../library/operator.rst:449 msgid "Positive" msgstr "" -#: ../../library/operator.rst:449 msgid "``+ a``" msgstr "" -#: ../../library/operator.rst:449 msgid "``pos(a)``" msgstr "" -#: ../../library/operator.rst:451 msgid "Right Shift" msgstr "" -#: ../../library/operator.rst:451 msgid "``a >> b``" msgstr "" -#: ../../library/operator.rst:451 msgid "``rshift(a, b)``" msgstr "" -#: ../../library/operator.rst:453 msgid "Slice Assignment" msgstr "" -#: ../../library/operator.rst:453 msgid "``seq[i:j] = values``" msgstr "" -#: ../../library/operator.rst:453 msgid "``setitem(seq, slice(i, j), values)``" msgstr "" -#: ../../library/operator.rst:455 msgid "Slice Deletion" msgstr "" -#: ../../library/operator.rst:455 msgid "``del seq[i:j]``" msgstr "" -#: ../../library/operator.rst:455 msgid "``delitem(seq, slice(i, j))``" msgstr "" -#: ../../library/operator.rst:457 msgid "Slicing" msgstr "" -#: ../../library/operator.rst:457 msgid "``seq[i:j]``" msgstr "" -#: ../../library/operator.rst:457 msgid "``getitem(seq, slice(i, j))``" msgstr "" -#: ../../library/operator.rst:459 msgid "String Formatting" msgstr "" -#: ../../library/operator.rst:459 msgid "``s % obj``" msgstr "" -#: ../../library/operator.rst:459 msgid "``mod(s, obj)``" msgstr "" -#: ../../library/operator.rst:461 msgid "Subtraction" msgstr "" -#: ../../library/operator.rst:461 msgid "``a - b``" msgstr "" -#: ../../library/operator.rst:461 msgid "``sub(a, b)``" msgstr "" -#: ../../library/operator.rst:463 msgid "Truth Test" msgstr "" -#: ../../library/operator.rst:463 msgid "``obj``" msgstr "" -#: ../../library/operator.rst:463 msgid "``truth(obj)``" msgstr "" -#: ../../library/operator.rst:465 ../../library/operator.rst:467 -#: ../../library/operator.rst:473 ../../library/operator.rst:475 msgid "Ordering" msgstr "" -#: ../../library/operator.rst:465 msgid "``a < b``" msgstr "" -#: ../../library/operator.rst:465 msgid "``lt(a, b)``" msgstr "" -#: ../../library/operator.rst:467 msgid "``a <= b``" msgstr "" -#: ../../library/operator.rst:467 msgid "``le(a, b)``" msgstr "" -#: ../../library/operator.rst:469 msgid "Equality" msgstr "" -#: ../../library/operator.rst:469 msgid "``a == b``" msgstr "" -#: ../../library/operator.rst:469 msgid "``eq(a, b)``" msgstr "" -#: ../../library/operator.rst:471 msgid "Difference" msgstr "" -#: ../../library/operator.rst:471 msgid "``a != b``" msgstr "" -#: ../../library/operator.rst:471 msgid "``ne(a, b)``" msgstr "" -#: ../../library/operator.rst:473 msgid "``a >= b``" msgstr "" -#: ../../library/operator.rst:473 msgid "``ge(a, b)``" msgstr "" -#: ../../library/operator.rst:475 msgid "``a > b``" msgstr "" -#: ../../library/operator.rst:475 msgid "``gt(a, b)``" msgstr "" -#: ../../library/operator.rst:479 msgid "In-place Operators" msgstr "" -#: ../../library/operator.rst:481 -msgid "" -"Many operations have an \"in-place\" version. Listed below are functions " -"providing a more primitive access to in-place operators than the usual " -"syntax does; for example, the :term:`statement` ``x += y`` is equivalent to " -"``x = operator.iadd(x, y)``. Another way to put it is to say that ``z = " -"operator.iadd(x, y)`` is equivalent to the compound statement ``z = x; z += " -"y``." +msgid "Many operations have an \"in-place\" version. Listed below are functions providing a more primitive access to in-place operators than the usual syntax does; for example, the :term:`statement` ``x += y`` is equivalent to ``x = operator.iadd(x, y)``. Another way to put it is to say that ``z = operator.iadd(x, y)`` is equivalent to the compound statement ``z = x; z += y``." msgstr "" -#: ../../library/operator.rst:488 -msgid "" -"In those examples, note that when an in-place method is called, the " -"computation and assignment are performed in two separate steps. The in-" -"place functions listed below only do the first step, calling the in-place " -"method. The second step, assignment, is not handled." +msgid "In those examples, note that when an in-place method is called, the computation and assignment are performed in two separate steps. The in-place functions listed below only do the first step, calling the in-place method. The second step, assignment, is not handled." msgstr "" -#: ../../library/operator.rst:493 -msgid "" -"For immutable targets such as strings, numbers, and tuples, the updated " -"value is computed, but not assigned back to the input variable:" +msgid "For immutable targets such as strings, numbers, and tuples, the updated value is computed, but not assigned back to the input variable:" msgstr "" -#: ../../library/operator.rst:502 -msgid "" -"For mutable targets such as lists and dictionaries, the in-place method will " -"perform the update, so no subsequent assignment is necessary:" +msgid "For mutable targets such as lists and dictionaries, the in-place method will perform the update, so no subsequent assignment is necessary:" msgstr "" -#: ../../library/operator.rst:514 msgid "``a = iadd(a, b)`` is equivalent to ``a += b``." msgstr "" -#: ../../library/operator.rst:520 msgid "``a = iand(a, b)`` is equivalent to ``a &= b``." msgstr "" -#: ../../library/operator.rst:526 -msgid "" -"``a = iconcat(a, b)`` is equivalent to ``a += b`` for *a* and *b* sequences." +msgid "``a = iconcat(a, b)`` is equivalent to ``a += b`` for *a* and *b* sequences." msgstr "" -#: ../../library/operator.rst:532 msgid "``a = ifloordiv(a, b)`` is equivalent to ``a //= b``." msgstr "" -#: ../../library/operator.rst:538 msgid "``a = ilshift(a, b)`` is equivalent to ``a <<= b``." msgstr "" -#: ../../library/operator.rst:544 msgid "``a = imod(a, b)`` is equivalent to ``a %= b``." msgstr "" -#: ../../library/operator.rst:550 msgid "``a = imul(a, b)`` is equivalent to ``a *= b``." msgstr "" -#: ../../library/operator.rst:556 msgid "``a = imatmul(a, b)`` is equivalent to ``a @= b``." msgstr "" -#: ../../library/operator.rst:564 msgid "``a = ior(a, b)`` is equivalent to ``a |= b``." msgstr "" -#: ../../library/operator.rst:570 msgid "``a = ipow(a, b)`` is equivalent to ``a **= b``." msgstr "" -#: ../../library/operator.rst:576 msgid "``a = irshift(a, b)`` is equivalent to ``a >>= b``." msgstr "" -#: ../../library/operator.rst:582 msgid "``a = isub(a, b)`` is equivalent to ``a -= b``." msgstr "" -#: ../../library/operator.rst:588 msgid "``a = itruediv(a, b)`` is equivalent to ``a /= b``." msgstr "" -#: ../../library/operator.rst:594 msgid "``a = ixor(a, b)`` is equivalent to ``a ^= b``." msgstr "" diff --git a/library/optparse.po b/library/optparse.po index df14adbb..5fa4bb87 100644 --- a/library/optparse.po +++ b/library/optparse.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:10+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,118 +24,57 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/optparse.rst:2 msgid ":mod:`!optparse` --- Parser for command line options" msgstr "" -#: ../../library/optparse.rst:10 msgid "**Source code:** :source:`Lib/optparse.py`" msgstr "" -#: ../../library/optparse.rst:17 msgid "Choosing an argument parsing library" msgstr "" -#: ../../library/optparse.rst:19 msgid "The standard library includes three argument parsing libraries:" msgstr "" -#: ../../library/optparse.rst:21 -msgid "" -":mod:`getopt`: a module that closely mirrors the procedural C ``getopt`` " -"API. Included in the standard library since before the initial Python 1.0 " -"release." +msgid ":mod:`getopt`: a module that closely mirrors the procedural C ``getopt`` API. Included in the standard library since before the initial Python 1.0 release." msgstr "" -#: ../../library/optparse.rst:23 -msgid "" -":mod:`!optparse`: a declarative replacement for ``getopt`` that provides " -"equivalent functionality without requiring each application to implement its " -"own procedural option parsing logic. Included in the standard library since " -"the Python 2.3 release." +msgid ":mod:`!optparse`: a declarative replacement for ``getopt`` that provides equivalent functionality without requiring each application to implement its own procedural option parsing logic. Included in the standard library since the Python 2.3 release." msgstr "" -#: ../../library/optparse.rst:27 -msgid "" -":mod:`argparse`: a more opinionated alternative to ``optparse`` that " -"provides more functionality by default, at the expense of reduced " -"application flexibility in controlling exactly how arguments are processed. " -"Included in the standard library since the Python 2.7 and Python 3.2 " -"releases." +msgid ":mod:`argparse`: a more opinionated alternative to ``optparse`` that provides more functionality by default, at the expense of reduced application flexibility in controlling exactly how arguments are processed. Included in the standard library since the Python 2.7 and Python 3.2 releases." msgstr "" -#: ../../library/optparse.rst:32 -msgid "" -"In the absence of more specific argument parsing design " -"constraints, :mod:`argparse` is the recommended choice for implementing " -"command line applications, as it offers the highest level of baseline " -"functionality with the least application level code." +msgid "In the absence of more specific argument parsing design constraints, :mod:`argparse` is the recommended choice for implementing command line applications, as it offers the highest level of baseline functionality with the least application level code." msgstr "" -#: ../../library/optparse.rst:36 -msgid "" -":mod:`getopt` is retained almost entirely for backwards compatibility " -"reasons. However, it also serves a niche use case as a tool for prototyping " -"and testing command line argument handling in ``getopt``-based C " -"applications." +msgid ":mod:`getopt` is retained almost entirely for backwards compatibility reasons. However, it also serves a niche use case as a tool for prototyping and testing command line argument handling in ``getopt``-based C applications." msgstr "" -#: ../../library/optparse.rst:40 -msgid "" -":mod:`!optparse` should be considered as an alternative to :mod:`argparse` " -"in the following cases:" +msgid ":mod:`!optparse` should be considered as an alternative to :mod:`argparse` in the following cases:" msgstr "" -#: ../../library/optparse.rst:43 -msgid "" -"an application is already using :mod:`!optparse` and doesn't want to risk " -"the subtle behavioural changes that may arise when migrating " -"to :mod:`argparse`" +msgid "an application is already using :mod:`!optparse` and doesn't want to risk the subtle behavioural changes that may arise when migrating to :mod:`argparse`" msgstr "" -#: ../../library/optparse.rst:45 -msgid "" -"the application requires additional control over the way options and " -"positional parameters are interleaved on the command line (including the " -"ability to disable the interleaving feature completely)" +msgid "the application requires additional control over the way options and positional parameters are interleaved on the command line (including the ability to disable the interleaving feature completely)" msgstr "" -#: ../../library/optparse.rst:48 -msgid "" -"the application requires additional control over the incremental parsing of " -"command line elements (while ``argparse`` does support this, the exact way " -"it works in practice is undesirable for some use cases)" +msgid "the application requires additional control over the incremental parsing of command line elements (while ``argparse`` does support this, the exact way it works in practice is undesirable for some use cases)" msgstr "" -#: ../../library/optparse.rst:51 -msgid "" -"the application requires additional control over the handling of options " -"which accept parameter values that may start with ``-`` (such as delegated " -"options to be passed to invoked subprocesses)" +msgid "the application requires additional control over the handling of options which accept parameter values that may start with ``-`` (such as delegated options to be passed to invoked subprocesses)" msgstr "" -#: ../../library/optparse.rst:54 -msgid "" -"the application requires some other command line parameter processing " -"behavior which ``argparse`` does not support, but which can be implemented " -"in terms of the lower level interface offered by ``optparse``" +msgid "the application requires some other command line parameter processing behavior which ``argparse`` does not support, but which can be implemented in terms of the lower level interface offered by ``optparse``" msgstr "" -#: ../../library/optparse.rst:58 -msgid "" -"These considerations also mean that :mod:`!optparse` is likely to provide a " -"better foundation for library authors writing third party command line " -"argument processing libraries." +msgid "These considerations also mean that :mod:`!optparse` is likely to provide a better foundation for library authors writing third party command line argument processing libraries." msgstr "" -#: ../../library/optparse.rst:62 -msgid "" -"As a concrete example, consider the following two command line argument " -"parsing configurations, the first using ``optparse``, and the second using " -"``argparse``:" +msgid "As a concrete example, consider the following two command line argument parsing configurations, the first using ``optparse``, and the second using ``argparse``:" msgstr "" -#: ../../library/optparse.rst:66 msgid "" "import optparse\n" "\n" @@ -147,7 +86,6 @@ msgid "" " process(args, output=opts.output, verbose=opts.verbose)" msgstr "" -#: ../../library/optparse.rst:77 msgid "" "import argparse\n" "\n" @@ -160,86 +98,39 @@ msgid "" " process(args.rest, output=args.output, verbose=args.verbose)" msgstr "" -#: ../../library/optparse.rst:89 -msgid "" -"The most obvious difference is that in the ``optparse`` version, the non-" -"option arguments are processed separately by the application after the " -"option processing is complete. In the ``argparse`` version, positional " -"arguments are declared and processed in the same way as the named options." +msgid "The most obvious difference is that in the ``optparse`` version, the non-option arguments are processed separately by the application after the option processing is complete. In the ``argparse`` version, positional arguments are declared and processed in the same way as the named options." msgstr "" -#: ../../library/optparse.rst:94 -msgid "" -"However, the ``argparse`` version will also handle some parameter " -"combination differently from the way the ``optparse`` version would handle " -"them. For example (amongst other differences):" +msgid "However, the ``argparse`` version will also handle some parameter combination differently from the way the ``optparse`` version would handle them. For example (amongst other differences):" msgstr "" -#: ../../library/optparse.rst:98 -msgid "" -"supplying ``-o -v`` gives ``output=\"-v\"`` and ``verbose=False`` when using " -"``optparse``, but a usage error with ``argparse`` (complaining that no value " -"has been supplied for ``-o/--output``, since ``-v`` is interpreted as " -"meaning the verbosity flag)" +msgid "supplying ``-o -v`` gives ``output=\"-v\"`` and ``verbose=False`` when using ``optparse``, but a usage error with ``argparse`` (complaining that no value has been supplied for ``-o/--output``, since ``-v`` is interpreted as meaning the verbosity flag)" msgstr "" -#: ../../library/optparse.rst:102 -msgid "" -"similarly, supplying ``-o --`` gives ``output=\"--\"`` and ``args=()`` when " -"using ``optparse``, but a usage error with ``argparse`` (also complaining " -"that no value has been supplied for ``-o/--output``, since ``--`` is " -"interpreted as terminating the option processing and treating all remaining " -"values as positional arguments)" +msgid "similarly, supplying ``-o --`` gives ``output=\"--\"`` and ``args=()`` when using ``optparse``, but a usage error with ``argparse`` (also complaining that no value has been supplied for ``-o/--output``, since ``--`` is interpreted as terminating the option processing and treating all remaining values as positional arguments)" msgstr "" -#: ../../library/optparse.rst:107 -msgid "" -"supplying ``-o=foo`` gives ``output=\"=foo\"`` when using ``optparse``, but " -"gives ``output=\"foo\"`` with ``argparse`` (since ``=`` is special cased as " -"an alternative separator for option parameter values)" +msgid "supplying ``-o=foo`` gives ``output=\"=foo\"`` when using ``optparse``, but gives ``output=\"foo\"`` with ``argparse`` (since ``=`` is special cased as an alternative separator for option parameter values)" msgstr "" -#: ../../library/optparse.rst:111 -msgid "" -"Whether these differing behaviors in the ``argparse`` version are considered " -"desirable or a problem will depend on the specific command line application " -"use case." +msgid "Whether these differing behaviors in the ``argparse`` version are considered desirable or a problem will depend on the specific command line application use case." msgstr "" -#: ../../library/optparse.rst:117 -msgid "" -":pypi:`click` is a third party argument processing library (originally based " -"on ``optparse``), which allows command line applications to be developed as " -"a set of decorated command implementation functions." +msgid ":pypi:`click` is a third party argument processing library (originally based on ``optparse``), which allows command line applications to be developed as a set of decorated command implementation functions." msgstr "" -#: ../../library/optparse.rst:121 -msgid "" -"Other third party libraries, such as :pypi:`typer` or :pypi:`msgspec-click`, " -"allow command line interfaces to be specified in ways that more effectively " -"integrate with static checking of Python type annotations." +msgid "Other third party libraries, such as :pypi:`typer` or :pypi:`msgspec-click`, allow command line interfaces to be specified in ways that more effectively integrate with static checking of Python type annotations." msgstr "" -#: ../../library/optparse.rst:127 msgid "Introduction" msgstr "" -#: ../../library/optparse.rst:129 -msgid "" -":mod:`!optparse` is a more convenient, flexible, and powerful library for " -"parsing command-line options than the minimalist :mod:`getopt` " -"module. :mod:`!optparse` uses a more declarative style of command-line " -"parsing: you create an instance of :class:`OptionParser`, populate it with " -"options, and parse the command line. :mod:`!optparse` allows users to " -"specify options in the conventional GNU/POSIX syntax, and additionally " -"generates usage and help messages for you." +msgid ":mod:`!optparse` is a more convenient, flexible, and powerful library for parsing command-line options than the minimalist :mod:`getopt` module. :mod:`!optparse` uses a more declarative style of command-line parsing: you create an instance of :class:`OptionParser`, populate it with options, and parse the command line. :mod:`!optparse` allows users to specify options in the conventional GNU/POSIX syntax, and additionally generates usage and help messages for you." msgstr "" -#: ../../library/optparse.rst:137 msgid "Here's an example of using :mod:`!optparse` in a simple script::" msgstr "" -#: ../../library/optparse.rst:139 msgid "" "from optparse import OptionParser\n" "...\n" @@ -253,30 +144,15 @@ msgid "" "(options, args) = parser.parse_args()" msgstr "" -#: ../../library/optparse.rst:150 -msgid "" -"With these few lines of code, users of your script can now do the \"usual " -"thing\" on the command-line, for example::" +msgid "With these few lines of code, users of your script can now do the \"usual thing\" on the command-line, for example::" msgstr "" -#: ../../library/optparse.rst:153 msgid " --file=outfile -q" msgstr "" -#: ../../library/optparse.rst:155 -msgid "" -"As it parses the command line, :mod:`!optparse` sets attributes of the " -"``options`` object returned by :meth:`~OptionParser.parse_args` based on " -"user-supplied command-line values. When :meth:`~OptionParser.parse_args` " -"returns from parsing this command line, ``options.filename`` will be " -"``\"outfile\"`` and ``options.verbose`` will be ``False``. :mod:`!optparse` " -"supports both long and short options, allows short options to be merged " -"together, and allows options to be associated with their arguments in a " -"variety of ways. Thus, the following command lines are all equivalent to " -"the above example::" -msgstr "" - -#: ../../library/optparse.rst:164 +msgid "As it parses the command line, :mod:`!optparse` sets attributes of the ``options`` object returned by :meth:`~OptionParser.parse_args` based on user-supplied command-line values. When :meth:`~OptionParser.parse_args` returns from parsing this command line, ``options.filename`` will be ``\"outfile\"`` and ``options.verbose`` will be ``False``. :mod:`!optparse` supports both long and short options, allows short options to be merged together, and allows options to be associated with their arguments in a variety of ways. Thus, the following command lines are all equivalent to the above example::" +msgstr "" + msgid "" " -f outfile --quiet\n" " --quiet --file outfile\n" @@ -284,22 +160,17 @@ msgid "" " -qfoutfile" msgstr "" -#: ../../library/optparse.rst:169 msgid "Additionally, users can run one of the following ::" msgstr "" -#: ../../library/optparse.rst:171 msgid "" " -h\n" " --help" msgstr "" -#: ../../library/optparse.rst:174 -msgid "" -"and :mod:`!optparse` will print out a brief summary of your script's options:" +msgid "and :mod:`!optparse` will print out a brief summary of your script's options:" msgstr "" -#: ../../library/optparse.rst:176 msgid "" "Usage: [options]\n" "\n" @@ -309,663 +180,352 @@ msgid "" " -q, --quiet don't print status messages to stdout" msgstr "" -#: ../../library/optparse.rst:185 -msgid "" -"where the value of *yourscript* is determined at runtime (normally from " -"``sys.argv[0]``)." +msgid "where the value of *yourscript* is determined at runtime (normally from ``sys.argv[0]``)." msgstr "" -#: ../../library/optparse.rst:192 msgid "Background" msgstr "" -#: ../../library/optparse.rst:194 -msgid "" -":mod:`!optparse` was explicitly designed to encourage the creation of " -"programs with straightforward command-line interfaces that follow the " -"conventions established by the :c:func:`!getopt` family of functions " -"available to C developers. To that end, it supports only the most common " -"command-line syntax and semantics conventionally used under Unix. If you " -"are unfamiliar with these conventions, reading this section will allow you " -"to acquaint yourself with them." +msgid ":mod:`!optparse` was explicitly designed to encourage the creation of programs with straightforward command-line interfaces that follow the conventions established by the :c:func:`!getopt` family of functions available to C developers. To that end, it supports only the most common command-line syntax and semantics conventionally used under Unix. If you are unfamiliar with these conventions, reading this section will allow you to acquaint yourself with them." msgstr "" -#: ../../library/optparse.rst:205 msgid "Terminology" msgstr "" -#: ../../library/optparse.rst:207 msgid "argument" msgstr "" -#: ../../library/optparse.rst:208 -msgid "" -"a string entered on the command-line, and passed by the shell to ``execl()`` " -"or ``execv()``. In Python, arguments are elements of ``sys.argv[1:]`` " -"(``sys.argv[0]`` is the name of the program being executed). Unix shells " -"also use the term \"word\"." +msgid "a string entered on the command-line, and passed by the shell to ``execl()`` or ``execv()``. In Python, arguments are elements of ``sys.argv[1:]`` (``sys.argv[0]`` is the name of the program being executed). Unix shells also use the term \"word\"." msgstr "" -#: ../../library/optparse.rst:213 -msgid "" -"It is occasionally desirable to substitute an argument list other than " -"``sys.argv[1:]``, so you should read \"argument\" as \"an element of " -"``sys.argv[1:]``, or of some other list provided as a substitute for " -"``sys.argv[1:]``\"." +msgid "It is occasionally desirable to substitute an argument list other than ``sys.argv[1:]``, so you should read \"argument\" as \"an element of ``sys.argv[1:]``, or of some other list provided as a substitute for ``sys.argv[1:]``\"." msgstr "" -#: ../../library/optparse.rst:218 msgid "option" msgstr "" -#: ../../library/optparse.rst:219 -msgid "" -"an argument used to supply extra information to guide or customize the " -"execution of a program. There are many different syntaxes for options; the " -"traditional Unix syntax is a hyphen (\"-\") followed by a single letter, " -"e.g. ``-x`` or ``-F``. Also, traditional Unix syntax allows multiple " -"options to be merged into a single argument, e.g. ``-x -F`` is equivalent to " -"``-xF``. The GNU project introduced ``--`` followed by a series of hyphen-" -"separated words, e.g. ``--file`` or ``--dry-run``. These are the only two " -"option syntaxes provided by :mod:`!optparse`." +msgid "an argument used to supply extra information to guide or customize the execution of a program. There are many different syntaxes for options; the traditional Unix syntax is a hyphen (\"-\") followed by a single letter, e.g. ``-x`` or ``-F``. Also, traditional Unix syntax allows multiple options to be merged into a single argument, e.g. ``-x -F`` is equivalent to ``-xF``. The GNU project introduced ``--`` followed by a series of hyphen-separated words, e.g. ``--file`` or ``--dry-run``. These are the only two option syntaxes provided by :mod:`!optparse`." msgstr "" -#: ../../library/optparse.rst:228 msgid "Some other option syntaxes that the world has seen include:" msgstr "" -#: ../../library/optparse.rst:230 -msgid "" -"a hyphen followed by a few letters, e.g. ``-pf`` (this is *not* the same as " -"multiple options merged into a single argument)" +msgid "a hyphen followed by a few letters, e.g. ``-pf`` (this is *not* the same as multiple options merged into a single argument)" msgstr "" -#: ../../library/optparse.rst:233 -msgid "" -"a hyphen followed by a whole word, e.g. ``-file`` (this is technically " -"equivalent to the previous syntax, but they aren't usually seen in the same " -"program)" +msgid "a hyphen followed by a whole word, e.g. ``-file`` (this is technically equivalent to the previous syntax, but they aren't usually seen in the same program)" msgstr "" -#: ../../library/optparse.rst:237 -msgid "" -"a plus sign followed by a single letter, or a few letters, or a word, e.g. " -"``+f``, ``+rgb``" +msgid "a plus sign followed by a single letter, or a few letters, or a word, e.g. ``+f``, ``+rgb``" msgstr "" -#: ../../library/optparse.rst:240 -msgid "" -"a slash followed by a letter, or a few letters, or a word, e.g. ``/f``, ``/" -"file``" +msgid "a slash followed by a letter, or a few letters, or a word, e.g. ``/f``, ``/file``" msgstr "" -#: ../../library/optparse.rst:243 -msgid "" -"These option syntaxes are not supported by :mod:`!optparse`, and they never " -"will be. This is deliberate: the first three are non-standard on any " -"environment, and the last only makes sense if you're exclusively targeting " -"Windows or certain legacy platforms (e.g. VMS, MS-DOS)." +msgid "These option syntaxes are not supported by :mod:`!optparse`, and they never will be. This is deliberate: the first three are non-standard on any environment, and the last only makes sense if you're exclusively targeting Windows or certain legacy platforms (e.g. VMS, MS-DOS)." msgstr "" -#: ../../library/optparse.rst:248 msgid "option argument" msgstr "" -#: ../../library/optparse.rst:249 -msgid "" -"an argument that follows an option, is closely associated with that option, " -"and is consumed from the argument list when that option is. With :mod:`!" -"optparse`, option arguments may either be in a separate argument from their " -"option:" +msgid "an argument that follows an option, is closely associated with that option, and is consumed from the argument list when that option is. With :mod:`!optparse`, option arguments may either be in a separate argument from their option:" msgstr "" -#: ../../library/optparse.rst:254 msgid "" "-f foo\n" "--file foo" msgstr "" -#: ../../library/optparse.rst:259 msgid "or included in the same argument:" msgstr "" -#: ../../library/optparse.rst:261 msgid "" "-ffoo\n" "--file=foo" msgstr "" -#: ../../library/optparse.rst:266 -msgid "" -"Typically, a given option either takes an argument or it doesn't. Lots of " -"people want an \"optional option arguments\" feature, meaning that some " -"options will take an argument if they see it, and won't if they don't. This " -"is somewhat controversial, because it makes parsing ambiguous: if ``-a`` " -"takes an optional argument and ``-b`` is another option entirely, how do we " -"interpret ``-ab``? Because of this ambiguity, :mod:`!optparse` does not " -"support this feature." +msgid "Typically, a given option either takes an argument or it doesn't. Lots of people want an \"optional option arguments\" feature, meaning that some options will take an argument if they see it, and won't if they don't. This is somewhat controversial, because it makes parsing ambiguous: if ``-a`` takes an optional argument and ``-b`` is another option entirely, how do we interpret ``-ab``? Because of this ambiguity, :mod:`!optparse` does not support this feature." msgstr "" -#: ../../library/optparse.rst:274 msgid "positional argument" msgstr "" -#: ../../library/optparse.rst:275 -msgid "" -"something leftover in the argument list after options have been parsed, i.e. " -"after options and their arguments have been parsed and removed from the " -"argument list." +msgid "something leftover in the argument list after options have been parsed, i.e. after options and their arguments have been parsed and removed from the argument list." msgstr "" -#: ../../library/optparse.rst:279 msgid "required option" msgstr "" -#: ../../library/optparse.rst:280 -msgid "" -"an option that must be supplied on the command-line; note that the phrase " -"\"required option\" is self-contradictory in English. :mod:`!optparse` " -"doesn't prevent you from implementing required options, but doesn't give you " -"much help at it either." +msgid "an option that must be supplied on the command-line; note that the phrase \"required option\" is self-contradictory in English. :mod:`!optparse` doesn't prevent you from implementing required options, but doesn't give you much help at it either." msgstr "" -#: ../../library/optparse.rst:285 msgid "For example, consider this hypothetical command-line::" msgstr "" -#: ../../library/optparse.rst:287 msgid "prog -v --report report.txt foo bar" msgstr "" -#: ../../library/optparse.rst:289 -msgid "" -"``-v`` and ``--report`` are both options. Assuming that ``--report`` takes " -"one argument, ``report.txt`` is an option argument. ``foo`` and ``bar`` are " -"positional arguments." +msgid "``-v`` and ``--report`` are both options. Assuming that ``--report`` takes one argument, ``report.txt`` is an option argument. ``foo`` and ``bar`` are positional arguments." msgstr "" -#: ../../library/optparse.rst:297 msgid "What are options for?" msgstr "" -#: ../../library/optparse.rst:299 -msgid "" -"Options are used to provide extra information to tune or customize the " -"execution of a program. In case it wasn't clear, options are usually " -"*optional*. A program should be able to run just fine with no options " -"whatsoever. (Pick a random program from the Unix or GNU toolsets. Can it " -"run without any options at all and still make sense? The main exceptions " -"are ``find``, ``tar``, and ``dd``\\ ---all of which are mutant oddballs that " -"have been rightly criticized for their non-standard syntax and confusing " -"interfaces.)" +msgid "Options are used to provide extra information to tune or customize the execution of a program. In case it wasn't clear, options are usually *optional*. A program should be able to run just fine with no options whatsoever. (Pick a random program from the Unix or GNU toolsets. Can it run without any options at all and still make sense? The main exceptions are ``find``, ``tar``, and ``dd``\\ ---all of which are mutant oddballs that have been rightly criticized for their non-standard syntax and confusing interfaces.)" msgstr "" -#: ../../library/optparse.rst:307 -msgid "" -"Lots of people want their programs to have \"required options\". Think " -"about it. If it's required, then it's *not optional*! If there is a piece " -"of information that your program absolutely requires in order to run " -"successfully, that's what positional arguments are for." +msgid "Lots of people want their programs to have \"required options\". Think about it. If it's required, then it's *not optional*! If there is a piece of information that your program absolutely requires in order to run successfully, that's what positional arguments are for." msgstr "" -#: ../../library/optparse.rst:312 -msgid "" -"As an example of good command-line interface design, consider the humble " -"``cp`` utility, for copying files. It doesn't make much sense to try to " -"copy files without supplying a destination and at least one source. Hence, " -"``cp`` fails if you run it with no arguments. However, it has a flexible, " -"useful syntax that does not require any options at all::" +msgid "As an example of good command-line interface design, consider the humble ``cp`` utility, for copying files. It doesn't make much sense to try to copy files without supplying a destination and at least one source. Hence, ``cp`` fails if you run it with no arguments. However, it has a flexible, useful syntax that does not require any options at all::" msgstr "" -#: ../../library/optparse.rst:318 msgid "" "cp SOURCE DEST\n" "cp SOURCE ... DEST-DIR" msgstr "" -#: ../../library/optparse.rst:321 -msgid "" -"You can get pretty far with just that. Most ``cp`` implementations provide " -"a bunch of options to tweak exactly how the files are copied: you can " -"preserve mode and modification time, avoid following symlinks, ask before " -"clobbering existing files, etc. But none of this distracts from the core " -"mission of ``cp``, which is to copy either one file to another, or several " -"files to another directory." +msgid "You can get pretty far with just that. Most ``cp`` implementations provide a bunch of options to tweak exactly how the files are copied: you can preserve mode and modification time, avoid following symlinks, ask before clobbering existing files, etc. But none of this distracts from the core mission of ``cp``, which is to copy either one file to another, or several files to another directory." msgstr "" -#: ../../library/optparse.rst:332 msgid "What are positional arguments for?" msgstr "" -#: ../../library/optparse.rst:334 -msgid "" -"Positional arguments are for those pieces of information that your program " -"absolutely, positively requires to run." +msgid "Positional arguments are for those pieces of information that your program absolutely, positively requires to run." msgstr "" -#: ../../library/optparse.rst:337 -msgid "" -"A good user interface should have as few absolute requirements as possible. " -"If your program requires 17 distinct pieces of information in order to run " -"successfully, it doesn't much matter *how* you get that information from the " -"user---most people will give up and walk away before they successfully run " -"the program. This applies whether the user interface is a command-line, a " -"configuration file, or a GUI: if you make that many demands on your users, " -"most of them will simply give up." +msgid "A good user interface should have as few absolute requirements as possible. If your program requires 17 distinct pieces of information in order to run successfully, it doesn't much matter *how* you get that information from the user---most people will give up and walk away before they successfully run the program. This applies whether the user interface is a command-line, a configuration file, or a GUI: if you make that many demands on your users, most of them will simply give up." +msgstr "" + +msgid "In short, try to minimize the amount of information that users are absolutely required to supply---use sensible defaults whenever possible. Of course, you also want to make your programs reasonably flexible. That's what options are for. Again, it doesn't matter if they are entries in a config file, widgets in the \"Preferences\" dialog of a GUI, or command-line options---the more options you implement, the more flexible your program is, and the more complicated its implementation becomes. Too much flexibility has drawbacks as well, of course; too many options can overwhelm users and make your code much harder to maintain." msgstr "" -#: ../../library/optparse.rst:345 -msgid "" -"In short, try to minimize the amount of information that users are " -"absolutely required to supply---use sensible defaults whenever possible. Of " -"course, you also want to make your programs reasonably flexible. That's " -"what options are for. Again, it doesn't matter if they are entries in a " -"config file, widgets in the \"Preferences\" dialog of a GUI, or command-line " -"options---the more options you implement, the more flexible your program is, " -"and the more complicated its implementation becomes. Too much flexibility " -"has drawbacks as well, of course; too many options can overwhelm users and " -"make your code much harder to maintain." -msgstr "" - -#: ../../library/optparse.rst:358 msgid "Tutorial" msgstr "" -#: ../../library/optparse.rst:360 -msgid "" -"While :mod:`!optparse` is quite flexible and powerful, it's also " -"straightforward to use in most cases. This section covers the code patterns " -"that are common to any :mod:`!optparse`\\ -based program." +msgid "While :mod:`!optparse` is quite flexible and powerful, it's also straightforward to use in most cases. This section covers the code patterns that are common to any :mod:`!optparse`\\ -based program." msgstr "" -#: ../../library/optparse.rst:364 -msgid "" -"First, you need to import the OptionParser class; then, early in the main " -"program, create an OptionParser instance::" +msgid "First, you need to import the OptionParser class; then, early in the main program, create an OptionParser instance::" msgstr "" -#: ../../library/optparse.rst:367 msgid "" "from optparse import OptionParser\n" "...\n" "parser = OptionParser()" msgstr "" -#: ../../library/optparse.rst:371 msgid "Then you can start defining options. The basic syntax is::" msgstr "" -#: ../../library/optparse.rst:373 msgid "" "parser.add_option(opt_str, ...,\n" " attr=value, ...)" msgstr "" -#: ../../library/optparse.rst:376 -msgid "" -"Each option has one or more option strings, such as ``-f`` or ``--file``, " -"and several option attributes that tell :mod:`!optparse` what to expect and " -"what to do when it encounters that option on the command line." +msgid "Each option has one or more option strings, such as ``-f`` or ``--file``, and several option attributes that tell :mod:`!optparse` what to expect and what to do when it encounters that option on the command line." msgstr "" -#: ../../library/optparse.rst:380 -msgid "" -"Typically, each option will have one short option string and one long option " -"string, e.g.::" +msgid "Typically, each option will have one short option string and one long option string, e.g.::" msgstr "" -#: ../../library/optparse.rst:383 msgid "parser.add_option(\"-f\", \"--file\", ...)" msgstr "" -#: ../../library/optparse.rst:385 -msgid "" -"You're free to define as many short option strings and as many long option " -"strings as you like (including zero), as long as there is at least one " -"option string overall." +msgid "You're free to define as many short option strings and as many long option strings as you like (including zero), as long as there is at least one option string overall." msgstr "" -#: ../../library/optparse.rst:389 -msgid "" -"The option strings passed to :meth:`OptionParser.add_option` are effectively " -"labels for the option defined by that call. For brevity, we will frequently " -"refer to *encountering an option* on the command line; in reality, :mod:`!" -"optparse` encounters *option strings* and looks up options from them." +msgid "The option strings passed to :meth:`OptionParser.add_option` are effectively labels for the option defined by that call. For brevity, we will frequently refer to *encountering an option* on the command line; in reality, :mod:`!optparse` encounters *option strings* and looks up options from them." msgstr "" -#: ../../library/optparse.rst:395 -msgid "" -"Once all of your options are defined, instruct :mod:`!optparse` to parse " -"your program's command line::" +msgid "Once all of your options are defined, instruct :mod:`!optparse` to parse your program's command line::" msgstr "" -#: ../../library/optparse.rst:398 msgid "(options, args) = parser.parse_args()" msgstr "" -#: ../../library/optparse.rst:400 -msgid "" -"(If you like, you can pass a custom argument list " -"to :meth:`~OptionParser.parse_args`, but that's rarely necessary: by default " -"it uses ``sys.argv[1:]``.)" +msgid "(If you like, you can pass a custom argument list to :meth:`~OptionParser.parse_args`, but that's rarely necessary: by default it uses ``sys.argv[1:]``.)" msgstr "" -#: ../../library/optparse.rst:403 msgid ":meth:`~OptionParser.parse_args` returns two values:" msgstr "" -#: ../../library/optparse.rst:405 -msgid "" -"``options``, an object containing values for all of your options---e.g. if " -"``--file`` takes a single string argument, then ``options.file`` will be the " -"filename supplied by the user, or ``None`` if the user did not supply that " -"option" +msgid "``options``, an object containing values for all of your options---e.g. if ``--file`` takes a single string argument, then ``options.file`` will be the filename supplied by the user, or ``None`` if the user did not supply that option" msgstr "" -#: ../../library/optparse.rst:410 -msgid "" -"``args``, the list of positional arguments leftover after parsing options" +msgid "``args``, the list of positional arguments leftover after parsing options" msgstr "" -#: ../../library/optparse.rst:412 -msgid "" -"This tutorial section only covers the four most important option " -"attributes: :attr:`~Option.action`, :attr:`~Option.type`, :attr:`~Option.dest` " -"(destination), and :attr:`~Option.help`. Of these, :attr:`~Option.action` is " -"the most fundamental." +msgid "This tutorial section only covers the four most important option attributes: :attr:`~Option.action`, :attr:`~Option.type`, :attr:`~Option.dest` (destination), and :attr:`~Option.help`. Of these, :attr:`~Option.action` is the most fundamental." msgstr "" -#: ../../library/optparse.rst:421 msgid "Understanding option actions" msgstr "" -#: ../../library/optparse.rst:423 -msgid "" -"Actions tell :mod:`!optparse` what to do when it encounters an option on the " -"command line. There is a fixed set of actions hard-coded into :mod:`!" -"optparse`; adding new actions is an advanced topic covered in " -"section :ref:`optparse-extending-optparse`. Most actions tell :mod:`!" -"optparse` to store a value in some variable---for example, take a string " -"from the command line and store it in an attribute of ``options``." +msgid "Actions tell :mod:`!optparse` what to do when it encounters an option on the command line. There is a fixed set of actions hard-coded into :mod:`!optparse`; adding new actions is an advanced topic covered in section :ref:`optparse-extending-optparse`. Most actions tell :mod:`!optparse` to store a value in some variable---for example, take a string from the command line and store it in an attribute of ``options``." msgstr "" -#: ../../library/optparse.rst:430 -msgid "" -"If you don't specify an option action, :mod:`!optparse` defaults to " -"``store``." +msgid "If you don't specify an option action, :mod:`!optparse` defaults to ``store``." msgstr "" -#: ../../library/optparse.rst:436 msgid "The store action" msgstr "" -#: ../../library/optparse.rst:438 -msgid "" -"The most common option action is ``store``, which tells :mod:`!optparse` to " -"take the next argument (or the remainder of the current argument), ensure " -"that it is of the correct type, and store it to your chosen destination." +msgid "The most common option action is ``store``, which tells :mod:`!optparse` to take the next argument (or the remainder of the current argument), ensure that it is of the correct type, and store it to your chosen destination." msgstr "" -#: ../../library/optparse.rst:442 msgid "For example::" msgstr "" -#: ../../library/optparse.rst:444 msgid "" "parser.add_option(\"-f\", \"--file\",\n" " action=\"store\", type=\"string\", dest=\"filename\")" msgstr "" -#: ../../library/optparse.rst:447 -msgid "" -"Now let's make up a fake command line and ask :mod:`!optparse` to parse it::" +msgid "Now let's make up a fake command line and ask :mod:`!optparse` to parse it::" msgstr "" -#: ../../library/optparse.rst:449 msgid "" "args = [\"-f\", \"foo.txt\"]\n" "(options, args) = parser.parse_args(args)" msgstr "" -#: ../../library/optparse.rst:452 -msgid "" -"When :mod:`!optparse` sees the option string ``-f``, it consumes the next " -"argument, ``foo.txt``, and stores it in ``options.filename``. So, after " -"this call to :meth:`~OptionParser.parse_args`, ``options.filename`` is " -"``\"foo.txt\"``." +msgid "When :mod:`!optparse` sees the option string ``-f``, it consumes the next argument, ``foo.txt``, and stores it in ``options.filename``. So, after this call to :meth:`~OptionParser.parse_args`, ``options.filename`` is ``\"foo.txt\"``." msgstr "" -#: ../../library/optparse.rst:456 -msgid "" -"Some other option types supported by :mod:`!optparse` are ``int`` and " -"``float``. Here's an option that expects an integer argument::" +msgid "Some other option types supported by :mod:`!optparse` are ``int`` and ``float``. Here's an option that expects an integer argument::" msgstr "" -#: ../../library/optparse.rst:459 msgid "parser.add_option(\"-n\", type=\"int\", dest=\"num\")" msgstr "" -#: ../../library/optparse.rst:461 -msgid "" -"Note that this option has no long option string, which is perfectly " -"acceptable. Also, there's no explicit action, since the default is ``store``." +msgid "Note that this option has no long option string, which is perfectly acceptable. Also, there's no explicit action, since the default is ``store``." msgstr "" -#: ../../library/optparse.rst:464 -msgid "" -"Let's parse another fake command-line. This time, we'll jam the option " -"argument right up against the option: since ``-n42`` (one argument) is " -"equivalent to ``-n 42`` (two arguments), the code ::" +msgid "Let's parse another fake command-line. This time, we'll jam the option argument right up against the option: since ``-n42`` (one argument) is equivalent to ``-n 42`` (two arguments), the code ::" msgstr "" -#: ../../library/optparse.rst:468 msgid "" "(options, args) = parser.parse_args([\"-n42\"])\n" "print(options.num)" msgstr "" -#: ../../library/optparse.rst:471 msgid "will print ``42``." msgstr "" -#: ../../library/optparse.rst:473 -msgid "" -"If you don't specify a type, :mod:`!optparse` assumes ``string``. Combined " -"with the fact that the default action is ``store``, that means our first " -"example can be a lot shorter::" +msgid "If you don't specify a type, :mod:`!optparse` assumes ``string``. Combined with the fact that the default action is ``store``, that means our first example can be a lot shorter::" msgstr "" -#: ../../library/optparse.rst:477 msgid "parser.add_option(\"-f\", \"--file\", dest=\"filename\")" msgstr "" -#: ../../library/optparse.rst:479 -msgid "" -"If you don't supply a destination, :mod:`!optparse` figures out a sensible " -"default from the option strings: if the first long option string is ``--foo-" -"bar``, then the default destination is ``foo_bar``. If there are no long " -"option strings, :mod:`!optparse` looks at the first short option string: the " -"default destination for ``-f`` is ``f``." +msgid "If you don't supply a destination, :mod:`!optparse` figures out a sensible default from the option strings: if the first long option string is ``--foo-bar``, then the default destination is ``foo_bar``. If there are no long option strings, :mod:`!optparse` looks at the first short option string: the default destination for ``-f`` is ``f``." msgstr "" -#: ../../library/optparse.rst:485 -msgid "" -":mod:`!optparse` also includes the built-in ``complex`` type. Adding types " -"is covered in section :ref:`optparse-extending-optparse`." +msgid ":mod:`!optparse` also includes the built-in ``complex`` type. Adding types is covered in section :ref:`optparse-extending-optparse`." msgstr "" -#: ../../library/optparse.rst:492 msgid "Handling boolean (flag) options" msgstr "" -#: ../../library/optparse.rst:494 -msgid "" -"Flag options---set a variable to true or false when a particular option is " -"seen---are quite common. :mod:`!optparse` supports them with two separate " -"actions, ``store_true`` and ``store_false``. For example, you might have a " -"``verbose`` flag that is turned on with ``-v`` and off with ``-q``::" +msgid "Flag options---set a variable to true or false when a particular option is seen---are quite common. :mod:`!optparse` supports them with two separate actions, ``store_true`` and ``store_false``. For example, you might have a ``verbose`` flag that is turned on with ``-v`` and off with ``-q``::" msgstr "" -#: ../../library/optparse.rst:499 msgid "" "parser.add_option(\"-v\", action=\"store_true\", dest=\"verbose\")\n" "parser.add_option(\"-q\", action=\"store_false\", dest=\"verbose\")" msgstr "" -#: ../../library/optparse.rst:502 -msgid "" -"Here we have two different options with the same destination, which is " -"perfectly OK. (It just means you have to be a bit careful when setting " -"default values---see below.)" +msgid "Here we have two different options with the same destination, which is perfectly OK. (It just means you have to be a bit careful when setting default values---see below.)" msgstr "" -#: ../../library/optparse.rst:506 -msgid "" -"When :mod:`!optparse` encounters ``-v`` on the command line, it sets " -"``options.verbose`` to ``True``; when it encounters ``-q``, " -"``options.verbose`` is set to ``False``." +msgid "When :mod:`!optparse` encounters ``-v`` on the command line, it sets ``options.verbose`` to ``True``; when it encounters ``-q``, ``options.verbose`` is set to ``False``." msgstr "" -#: ../../library/optparse.rst:514 msgid "Other actions" msgstr "" -#: ../../library/optparse.rst:516 msgid "Some other actions supported by :mod:`!optparse` are:" msgstr "" -#: ../../library/optparse.rst:518 ../../library/optparse.rst:1040 msgid "``\"store_const\"``" msgstr "" -#: ../../library/optparse.rst:519 ../../library/optparse.rst:1041 msgid "store a constant value, pre-set via :attr:`Option.const`" msgstr "" -#: ../../library/optparse.rst:521 ../../library/optparse.rst:1049 msgid "``\"append\"``" msgstr "" -#: ../../library/optparse.rst:522 ../../library/optparse.rst:1050 msgid "append this option's argument to a list" msgstr "" -#: ../../library/optparse.rst:524 ../../library/optparse.rst:1055 msgid "``\"count\"``" msgstr "" -#: ../../library/optparse.rst:525 ../../library/optparse.rst:1056 msgid "increment a counter by one" msgstr "" -#: ../../library/optparse.rst:527 ../../library/optparse.rst:1058 msgid "``\"callback\"``" msgstr "" -#: ../../library/optparse.rst:528 ../../library/optparse.rst:1059 msgid "call a specified function" msgstr "" -#: ../../library/optparse.rst:530 -msgid "" -"These are covered in section :ref:`optparse-reference-guide`, and " -"section :ref:`optparse-option-callbacks`." +msgid "These are covered in section :ref:`optparse-reference-guide`, and section :ref:`optparse-option-callbacks`." msgstr "" -#: ../../library/optparse.rst:537 msgid "Default values" msgstr "" -#: ../../library/optparse.rst:539 -msgid "" -"All of the above examples involve setting some variable (the " -"\"destination\") when certain command-line options are seen. What happens " -"if those options are never seen? Since we didn't supply any defaults, they " -"are all set to ``None``. This is usually fine, but sometimes you want more " -"control. :mod:`!optparse` lets you supply a default value for each " -"destination, which is assigned before the command line is parsed." +msgid "All of the above examples involve setting some variable (the \"destination\") when certain command-line options are seen. What happens if those options are never seen? Since we didn't supply any defaults, they are all set to ``None``. This is usually fine, but sometimes you want more control. :mod:`!optparse` lets you supply a default value for each destination, which is assigned before the command line is parsed." msgstr "" -#: ../../library/optparse.rst:546 -msgid "" -"First, consider the verbose/quiet example. If we want :mod:`!optparse` to " -"set ``verbose`` to ``True`` unless ``-q`` is seen, then we can do this::" +msgid "First, consider the verbose/quiet example. If we want :mod:`!optparse` to set ``verbose`` to ``True`` unless ``-q`` is seen, then we can do this::" msgstr "" -#: ../../library/optparse.rst:549 msgid "" -"parser.add_option(\"-v\", action=\"store_true\", dest=\"verbose\", " -"default=True)\n" +"parser.add_option(\"-v\", action=\"store_true\", dest=\"verbose\", default=True)\n" "parser.add_option(\"-q\", action=\"store_false\", dest=\"verbose\")" msgstr "" -#: ../../library/optparse.rst:552 -msgid "" -"Since default values apply to the *destination* rather than to any " -"particular option, and these two options happen to have the same " -"destination, this is exactly equivalent::" +msgid "Since default values apply to the *destination* rather than to any particular option, and these two options happen to have the same destination, this is exactly equivalent::" msgstr "" -#: ../../library/optparse.rst:556 msgid "" "parser.add_option(\"-v\", action=\"store_true\", dest=\"verbose\")\n" -"parser.add_option(\"-q\", action=\"store_false\", dest=\"verbose\", " -"default=True)" +"parser.add_option(\"-q\", action=\"store_false\", dest=\"verbose\", default=True)" msgstr "" -#: ../../library/optparse.rst:559 msgid "Consider this::" msgstr "" -#: ../../library/optparse.rst:561 msgid "" -"parser.add_option(\"-v\", action=\"store_true\", dest=\"verbose\", " -"default=False)\n" -"parser.add_option(\"-q\", action=\"store_false\", dest=\"verbose\", " -"default=True)" +"parser.add_option(\"-v\", action=\"store_true\", dest=\"verbose\", default=False)\n" +"parser.add_option(\"-q\", action=\"store_false\", dest=\"verbose\", default=True)" msgstr "" -#: ../../library/optparse.rst:564 -msgid "" -"Again, the default value for ``verbose`` will be ``True``: the last default " -"value supplied for any particular destination is the one that counts." +msgid "Again, the default value for ``verbose`` will be ``True``: the last default value supplied for any particular destination is the one that counts." msgstr "" -#: ../../library/optparse.rst:567 -msgid "" -"A clearer way to specify default values is the :meth:`set_defaults` method " -"of OptionParser, which you can call at any time before " -"calling :meth:`~OptionParser.parse_args`::" +msgid "A clearer way to specify default values is the :meth:`set_defaults` method of OptionParser, which you can call at any time before calling :meth:`~OptionParser.parse_args`::" msgstr "" -#: ../../library/optparse.rst:571 msgid "" "parser.set_defaults(verbose=True)\n" "parser.add_option(...)\n" "(options, args) = parser.parse_args()" msgstr "" -#: ../../library/optparse.rst:575 -msgid "" -"As before, the last value specified for a given option destination is the " -"one that counts. For clarity, try to use one method or the other of setting " -"default values, not both." +msgid "As before, the last value specified for a given option destination is the one that counts. For clarity, try to use one method or the other of setting default values, not both." msgstr "" -#: ../../library/optparse.rst:583 msgid "Generating help" msgstr "" -#: ../../library/optparse.rst:585 -msgid "" -":mod:`!optparse`'s ability to generate help and usage text automatically is " -"useful for creating user-friendly command-line interfaces. All you have to " -"do is supply a :attr:`~Option.help` value for each option, and optionally a " -"short usage message for your whole program. Here's an OptionParser " -"populated with user-friendly (documented) options::" +msgid ":mod:`!optparse`'s ability to generate help and usage text automatically is useful for creating user-friendly command-line interfaces. All you have to do is supply a :attr:`~Option.help` value for each option, and optionally a short usage message for your whole program. Here's an OptionParser populated with user-friendly (documented) options::" msgstr "" -#: ../../library/optparse.rst:591 msgid "" "usage = \"usage: %prog [options] arg1 arg2\"\n" "parser = OptionParser(usage=usage)\n" @@ -983,14 +543,9 @@ msgid "" " \"or expert [default: %default]\")" msgstr "" -#: ../../library/optparse.rst:606 -msgid "" -"If :mod:`!optparse` encounters either ``-h`` or ``--help`` on the command-" -"line, or if you just call :meth:`parser.print_help`, it prints the following " -"to standard output:" +msgid "If :mod:`!optparse` encounters either ``-h`` or ``--help`` on the command-line, or if you just call :meth:`parser.print_help`, it prints the following to standard output:" msgstr "" -#: ../../library/optparse.rst:610 msgid "" "Usage: [options] arg1 arg2\n" "\n" @@ -1004,142 +559,75 @@ msgid "" " expert [default: intermediate]" msgstr "" -#: ../../library/optparse.rst:623 -msgid "" -"(If the help output is triggered by a help option, :mod:`!optparse` exits " -"after printing the help text.)" +msgid "(If the help output is triggered by a help option, :mod:`!optparse` exits after printing the help text.)" msgstr "" -#: ../../library/optparse.rst:626 -msgid "" -"There's a lot going on here to help :mod:`!optparse` generate the best " -"possible help message:" +msgid "There's a lot going on here to help :mod:`!optparse` generate the best possible help message:" msgstr "" -#: ../../library/optparse.rst:629 msgid "the script defines its own usage message::" msgstr "" -#: ../../library/optparse.rst:631 msgid "usage = \"usage: %prog [options] arg1 arg2\"" msgstr "" -#: ../../library/optparse.rst:633 -msgid "" -":mod:`!optparse` expands ``%prog`` in the usage string to the name of the " -"current program, i.e. ``os.path.basename(sys.argv[0])``. The expanded " -"string is then printed before the detailed option help." +msgid ":mod:`!optparse` expands ``%prog`` in the usage string to the name of the current program, i.e. ``os.path.basename(sys.argv[0])``. The expanded string is then printed before the detailed option help." msgstr "" -#: ../../library/optparse.rst:637 -msgid "" -"If you don't supply a usage string, :mod:`!optparse` uses a bland but " -"sensible default: ``\"Usage: %prog [options]\"``, which is fine if your " -"script doesn't take any positional arguments." +msgid "If you don't supply a usage string, :mod:`!optparse` uses a bland but sensible default: ``\"Usage: %prog [options]\"``, which is fine if your script doesn't take any positional arguments." msgstr "" -#: ../../library/optparse.rst:641 -msgid "" -"every option defines a help string, and doesn't worry about line-wrapping---" -"\\ :mod:`!optparse` takes care of wrapping lines and making the help output " -"look good." +msgid "every option defines a help string, and doesn't worry about line-wrapping---\\ :mod:`!optparse` takes care of wrapping lines and making the help output look good." msgstr "" -#: ../../library/optparse.rst:645 -msgid "" -"options that take a value indicate this fact in their automatically " -"generated help message, e.g. for the \"mode\" option::" +msgid "options that take a value indicate this fact in their automatically generated help message, e.g. for the \"mode\" option::" msgstr "" -#: ../../library/optparse.rst:648 msgid "-m MODE, --mode=MODE" msgstr "" -#: ../../library/optparse.rst:650 -msgid "" -"Here, \"MODE\" is called the meta-variable: it stands for the argument that " -"the user is expected to supply to ``-m``/``--mode``. By default, :mod:`!" -"optparse` converts the destination variable name to uppercase and uses that " -"for the meta-variable. Sometimes, that's not what you want---for example, " -"the ``--filename`` option explicitly sets ``metavar=\"FILE\"``, resulting in " -"this automatically generated option description::" +msgid "Here, \"MODE\" is called the meta-variable: it stands for the argument that the user is expected to supply to ``-m``/``--mode``. By default, :mod:`!optparse` converts the destination variable name to uppercase and uses that for the meta-variable. Sometimes, that's not what you want---for example, the ``--filename`` option explicitly sets ``metavar=\"FILE\"``, resulting in this automatically generated option description::" msgstr "" -#: ../../library/optparse.rst:657 msgid "-f FILE, --filename=FILE" msgstr "" -#: ../../library/optparse.rst:659 -msgid "" -"This is important for more than just saving space, though: the manually " -"written help text uses the meta-variable ``FILE`` to clue the user in that " -"there's a connection between the semi-formal syntax ``-f FILE`` and the " -"informal semantic description \"write output to FILE\". This is a simple but " -"effective way to make your help text a lot clearer and more useful for end " -"users." +msgid "This is important for more than just saving space, though: the manually written help text uses the meta-variable ``FILE`` to clue the user in that there's a connection between the semi-formal syntax ``-f FILE`` and the informal semantic description \"write output to FILE\". This is a simple but effective way to make your help text a lot clearer and more useful for end users." msgstr "" -#: ../../library/optparse.rst:665 -msgid "" -"options that have a default value can include ``%default`` in the help " -"string---\\ :mod:`!optparse` will replace it with :func:`str` of the " -"option's default value. If an option has no default value (or the default " -"value is ``None``), ``%default`` expands to ``none``." +msgid "options that have a default value can include ``%default`` in the help string---\\ :mod:`!optparse` will replace it with :func:`str` of the option's default value. If an option has no default value (or the default value is ``None``), ``%default`` expands to ``none``." msgstr "" -#: ../../library/optparse.rst:671 msgid "Grouping Options" msgstr "" -#: ../../library/optparse.rst:673 -msgid "" -"When dealing with many options, it is convenient to group these options for " -"better help output. An :class:`OptionParser` can contain several option " -"groups, each of which can contain several options." +msgid "When dealing with many options, it is convenient to group these options for better help output. An :class:`OptionParser` can contain several option groups, each of which can contain several options." msgstr "" -#: ../../library/optparse.rst:677 msgid "An option group is obtained using the class :class:`OptionGroup`:" msgstr "" -#: ../../library/optparse.rst:681 ../../library/optparse.rst:1752 msgid "where" msgstr "" -#: ../../library/optparse.rst:683 -msgid "" -"parser is the :class:`OptionParser` instance the group will be inserted in to" +msgid "parser is the :class:`OptionParser` instance the group will be inserted in to" msgstr "" -#: ../../library/optparse.rst:685 msgid "title is the group title" msgstr "" -#: ../../library/optparse.rst:686 msgid "description, optional, is a long description of the group" msgstr "" -#: ../../library/optparse.rst:688 -msgid "" -":class:`OptionGroup` inherits from :class:`OptionContainer` " -"(like :class:`OptionParser`) and so the :meth:`add_option` method can be " -"used to add an option to the group." +msgid ":class:`OptionGroup` inherits from :class:`OptionContainer` (like :class:`OptionParser`) and so the :meth:`add_option` method can be used to add an option to the group." msgstr "" -#: ../../library/optparse.rst:692 -msgid "" -"Once all the options are declared, using the :class:`OptionParser` " -"method :meth:`add_option_group` the group is added to the previously defined " -"parser." +msgid "Once all the options are declared, using the :class:`OptionParser` method :meth:`add_option_group` the group is added to the previously defined parser." msgstr "" -#: ../../library/optparse.rst:695 -msgid "" -"Continuing with the parser defined in the previous section, adding " -"an :class:`OptionGroup` to a parser is easy::" +msgid "Continuing with the parser defined in the previous section, adding an :class:`OptionGroup` to a parser is easy::" msgstr "" -#: ../../library/optparse.rst:698 msgid "" "group = OptionGroup(parser, \"Dangerous Options\",\n" " \"Caution: use these options at your own risk. \"\n" @@ -1148,11 +636,9 @@ msgid "" "parser.add_option_group(group)" msgstr "" -#: ../../library/optparse.rst:704 msgid "This would result in the following help output:" msgstr "" -#: ../../library/optparse.rst:706 msgid "" "Usage: [options] arg1 arg2\n" "\n" @@ -1172,13 +658,9 @@ msgid "" " -g Group option." msgstr "" -#: ../../library/optparse.rst:725 -msgid "" -"A bit more complete example might involve using more than one group: still " -"extending the previous example::" +msgid "A bit more complete example might involve using more than one group: still extending the previous example::" msgstr "" -#: ../../library/optparse.rst:728 msgid "" "group = OptionGroup(parser, \"Dangerous Options\",\n" " \"Caution: use these options at your own risk. \"\n" @@ -1191,16 +673,13 @@ msgid "" " help=\"Print debug information\")\n" "group.add_option(\"-s\", \"--sql\", action=\"store_true\",\n" " help=\"Print all SQL statements executed\")\n" -"group.add_option(\"-e\", action=\"store_true\", help=\"Print every action " -"done\")\n" +"group.add_option(\"-e\", action=\"store_true\", help=\"Print every action done\")\n" "parser.add_option_group(group)" msgstr "" -#: ../../library/optparse.rst:742 msgid "that results in the following output:" msgstr "" -#: ../../library/optparse.rst:744 msgid "" "Usage: [options] arg1 arg2\n" "\n" @@ -1225,100 +704,50 @@ msgid "" " -e Print every action done" msgstr "" -#: ../../library/optparse.rst:768 -msgid "" -"Another interesting method, in particular when working programmatically with " -"option groups is:" +msgid "Another interesting method, in particular when working programmatically with option groups is:" msgstr "" -#: ../../library/optparse.rst:773 -msgid "" -"Return the :class:`OptionGroup` to which the short or long option string " -"*opt_str* (e.g. ``'-o'`` or ``'--option'``) belongs. If there's no " -"such :class:`OptionGroup`, return ``None``." +msgid "Return the :class:`OptionGroup` to which the short or long option string *opt_str* (e.g. ``'-o'`` or ``'--option'``) belongs. If there's no such :class:`OptionGroup`, return ``None``." msgstr "" -#: ../../library/optparse.rst:780 msgid "Printing a version string" msgstr "" -#: ../../library/optparse.rst:782 -msgid "" -"Similar to the brief usage string, :mod:`!optparse` can also print a version " -"string for your program. You have to supply the string as the ``version`` " -"argument to OptionParser::" +msgid "Similar to the brief usage string, :mod:`!optparse` can also print a version string for your program. You have to supply the string as the ``version`` argument to OptionParser::" msgstr "" -#: ../../library/optparse.rst:786 msgid "parser = OptionParser(usage=\"%prog [-f] [-q]\", version=\"%prog 1.0\")" msgstr "" -#: ../../library/optparse.rst:788 -msgid "" -"``%prog`` is expanded just like it is in ``usage``. Apart from that, " -"``version`` can contain anything you like. When you supply it, :mod:`!" -"optparse` automatically adds a ``--version`` option to your parser. If it " -"encounters this option on the command line, it expands your ``version`` " -"string (by replacing ``%prog``), prints it to stdout, and exits." +msgid "``%prog`` is expanded just like it is in ``usage``. Apart from that, ``version`` can contain anything you like. When you supply it, :mod:`!optparse` automatically adds a ``--version`` option to your parser. If it encounters this option on the command line, it expands your ``version`` string (by replacing ``%prog``), prints it to stdout, and exits." msgstr "" -#: ../../library/optparse.rst:794 msgid "For example, if your script is called ``/usr/bin/foo``:" msgstr "" -#: ../../library/optparse.rst:796 msgid "" "$ /usr/bin/foo --version\n" "foo 1.0" msgstr "" -#: ../../library/optparse.rst:801 -msgid "" -"The following two methods can be used to print and get the ``version`` " -"string:" +msgid "The following two methods can be used to print and get the ``version`` string:" msgstr "" -#: ../../library/optparse.rst:805 -msgid "" -"Print the version message for the current program (``self.version``) to " -"*file* (default stdout). As with :meth:`print_usage`, any occurrence of " -"``%prog`` in ``self.version`` is replaced with the name of the current " -"program. Does nothing if ``self.version`` is empty or undefined." +msgid "Print the version message for the current program (``self.version``) to *file* (default stdout). As with :meth:`print_usage`, any occurrence of ``%prog`` in ``self.version`` is replaced with the name of the current program. Does nothing if ``self.version`` is empty or undefined." msgstr "" -#: ../../library/optparse.rst:812 -msgid "" -"Same as :meth:`print_version` but returns the version string instead of " -"printing it." +msgid "Same as :meth:`print_version` but returns the version string instead of printing it." msgstr "" -#: ../../library/optparse.rst:819 msgid "How :mod:`!optparse` handles errors" msgstr "" -#: ../../library/optparse.rst:821 -msgid "" -"There are two broad classes of errors that :mod:`!optparse` has to worry " -"about: programmer errors and user errors. Programmer errors are usually " -"erroneous calls to :func:`OptionParser.add_option`, e.g. invalid option " -"strings, unknown option attributes, missing option attributes, etc. These " -"are dealt with in the usual way: raise an exception " -"(either :exc:`optparse.OptionError` or :exc:`TypeError`) and let the program " -"crash." +msgid "There are two broad classes of errors that :mod:`!optparse` has to worry about: programmer errors and user errors. Programmer errors are usually erroneous calls to :func:`OptionParser.add_option`, e.g. invalid option strings, unknown option attributes, missing option attributes, etc. These are dealt with in the usual way: raise an exception (either :exc:`optparse.OptionError` or :exc:`TypeError`) and let the program crash." msgstr "" -#: ../../library/optparse.rst:828 -msgid "" -"Handling user errors is much more important, since they are guaranteed to " -"happen no matter how stable your code is. :mod:`!optparse` can " -"automatically detect some user errors, such as bad option arguments (passing " -"``-n 4x`` where ``-n`` takes an integer argument), missing arguments (``-n`` " -"at the end of the command line, where ``-n`` takes an argument of any " -"type). Also, you can call :func:`OptionParser.error` to signal an " -"application-defined error condition::" +msgid "Handling user errors is much more important, since they are guaranteed to happen no matter how stable your code is. :mod:`!optparse` can automatically detect some user errors, such as bad option arguments (passing ``-n 4x`` where ``-n`` takes an integer argument), missing arguments (``-n`` at the end of the command line, where ``-n`` takes an argument of any type). Also, you can call :func:`OptionParser.error` to signal an application-defined error condition::" msgstr "" -#: ../../library/optparse.rst:836 msgid "" "(options, args) = parser.parse_args()\n" "...\n" @@ -1326,20 +755,12 @@ msgid "" " parser.error(\"options -a and -b are mutually exclusive\")" msgstr "" -#: ../../library/optparse.rst:841 -msgid "" -"In either case, :mod:`!optparse` handles the error the same way: it prints " -"the program's usage message and an error message to standard error and exits " -"with error status 2." +msgid "In either case, :mod:`!optparse` handles the error the same way: it prints the program's usage message and an error message to standard error and exits with error status 2." msgstr "" -#: ../../library/optparse.rst:845 -msgid "" -"Consider the first example above, where the user passes ``4x`` to an option " -"that takes an integer:" +msgid "Consider the first example above, where the user passes ``4x`` to an option that takes an integer:" msgstr "" -#: ../../library/optparse.rst:848 msgid "" "$ /usr/bin/foo -n 4x\n" "Usage: foo [options]\n" @@ -1347,11 +768,9 @@ msgid "" "foo: error: option -n: invalid integer value: '4x'" msgstr "" -#: ../../library/optparse.rst:855 msgid "Or, where the user fails to pass a value at all:" msgstr "" -#: ../../library/optparse.rst:857 msgid "" "$ /usr/bin/foo -n\n" "Usage: foo [options]\n" @@ -1359,29 +778,18 @@ msgid "" "foo: error: -n option requires an argument" msgstr "" -#: ../../library/optparse.rst:864 -msgid "" -":mod:`!optparse`\\ -generated error messages take care always to mention the " -"option involved in the error; be sure to do the same when " -"calling :func:`OptionParser.error` from your application code." +msgid ":mod:`!optparse`\\ -generated error messages take care always to mention the option involved in the error; be sure to do the same when calling :func:`OptionParser.error` from your application code." msgstr "" -#: ../../library/optparse.rst:868 -msgid "" -"If :mod:`!optparse`'s default error-handling behaviour does not suit your " -"needs, you'll need to subclass OptionParser and override " -"its :meth:`~OptionParser.exit` and/or :meth:`~OptionParser.error` methods." +msgid "If :mod:`!optparse`'s default error-handling behaviour does not suit your needs, you'll need to subclass OptionParser and override its :meth:`~OptionParser.exit` and/or :meth:`~OptionParser.error` methods." msgstr "" -#: ../../library/optparse.rst:876 msgid "Putting it all together" msgstr "" -#: ../../library/optparse.rst:878 msgid "Here's what :mod:`!optparse`\\ -based scripts usually look like::" msgstr "" -#: ../../library/optparse.rst:880 msgid "" "from optparse import OptionParser\n" "...\n" @@ -1406,164 +814,93 @@ msgid "" " main()" msgstr "" -#: ../../library/optparse.rst:906 msgid "Reference Guide" msgstr "" -#: ../../library/optparse.rst:912 msgid "Creating the parser" msgstr "" -#: ../../library/optparse.rst:914 -msgid "" -"The first step in using :mod:`!optparse` is to create an OptionParser " -"instance." +msgid "The first step in using :mod:`!optparse` is to create an OptionParser instance." msgstr "" -#: ../../library/optparse.rst:918 -msgid "" -"The OptionParser constructor has no required arguments, but a number of " -"optional keyword arguments. You should always pass them as keyword " -"arguments, i.e. do not rely on the order in which the arguments are declared." +msgid "The OptionParser constructor has no required arguments, but a number of optional keyword arguments. You should always pass them as keyword arguments, i.e. do not rely on the order in which the arguments are declared." msgstr "" -#: ../../library/optparse.rst:922 msgid "``usage`` (default: ``\"%prog [options]\"``)" msgstr "" -#: ../../library/optparse.rst:923 -msgid "" -"The usage summary to print when your program is run incorrectly or with a " -"help option. When :mod:`!optparse` prints the usage string, it expands " -"``%prog`` to ``os.path.basename(sys.argv[0])`` (or to ``prog`` if you passed " -"that keyword argument). To suppress a usage message, pass the special " -"value :const:`optparse.SUPPRESS_USAGE`." +msgid "The usage summary to print when your program is run incorrectly or with a help option. When :mod:`!optparse` prints the usage string, it expands ``%prog`` to ``os.path.basename(sys.argv[0])`` (or to ``prog`` if you passed that keyword argument). To suppress a usage message, pass the special value :const:`optparse.SUPPRESS_USAGE`." msgstr "" -#: ../../library/optparse.rst:929 msgid "``option_list`` (default: ``[]``)" msgstr "" -#: ../../library/optparse.rst:930 -msgid "" -"A list of Option objects to populate the parser with. The options in " -"``option_list`` are added after any options in ``standard_option_list`` (a " -"class attribute that may be set by OptionParser subclasses), but before any " -"version or help options. Deprecated; use :meth:`add_option` after creating " -"the parser instead." +msgid "A list of Option objects to populate the parser with. The options in ``option_list`` are added after any options in ``standard_option_list`` (a class attribute that may be set by OptionParser subclasses), but before any version or help options. Deprecated; use :meth:`add_option` after creating the parser instead." msgstr "" -#: ../../library/optparse.rst:936 msgid "``option_class`` (default: optparse.Option)" msgstr "" -#: ../../library/optparse.rst:937 msgid "Class to use when adding options to the parser in :meth:`add_option`." msgstr "" -#: ../../library/optparse.rst:939 msgid "``version`` (default: ``None``)" msgstr "" -#: ../../library/optparse.rst:940 -msgid "" -"A version string to print when the user supplies a version option. If you " -"supply a true value for ``version``, :mod:`!optparse` automatically adds a " -"version option with the single option string ``--version``. The substring " -"``%prog`` is expanded the same as for ``usage``." +msgid "A version string to print when the user supplies a version option. If you supply a true value for ``version``, :mod:`!optparse` automatically adds a version option with the single option string ``--version``. The substring ``%prog`` is expanded the same as for ``usage``." msgstr "" -#: ../../library/optparse.rst:945 msgid "``conflict_handler`` (default: ``\"error\"``)" msgstr "" -#: ../../library/optparse.rst:946 -msgid "" -"Specifies what to do when options with conflicting option strings are added " -"to the parser; see section :ref:`optparse-conflicts-between-options`." +msgid "Specifies what to do when options with conflicting option strings are added to the parser; see section :ref:`optparse-conflicts-between-options`." msgstr "" -#: ../../library/optparse.rst:950 msgid "``description`` (default: ``None``)" msgstr "" -#: ../../library/optparse.rst:951 -msgid "" -"A paragraph of text giving a brief overview of your program. :mod:`!" -"optparse` reformats this paragraph to fit the current terminal width and " -"prints it when the user requests help (after ``usage``, but before the list " -"of options)." +msgid "A paragraph of text giving a brief overview of your program. :mod:`!optparse` reformats this paragraph to fit the current terminal width and prints it when the user requests help (after ``usage``, but before the list of options)." msgstr "" -#: ../../library/optparse.rst:956 msgid "``formatter`` (default: a new :class:`IndentedHelpFormatter`)" msgstr "" -#: ../../library/optparse.rst:957 -msgid "" -"An instance of optparse.HelpFormatter that will be used for printing help " -"text. :mod:`!optparse` provides two concrete classes for this purpose: " -"IndentedHelpFormatter and TitledHelpFormatter." +msgid "An instance of optparse.HelpFormatter that will be used for printing help text. :mod:`!optparse` provides two concrete classes for this purpose: IndentedHelpFormatter and TitledHelpFormatter." msgstr "" -#: ../../library/optparse.rst:961 msgid "``add_help_option`` (default: ``True``)" msgstr "" -#: ../../library/optparse.rst:962 -msgid "" -"If true, :mod:`!optparse` will add a help option (with option strings ``-h`` " -"and ``--help``) to the parser." +msgid "If true, :mod:`!optparse` will add a help option (with option strings ``-h`` and ``--help``) to the parser." msgstr "" -#: ../../library/optparse.rst:965 msgid "``prog``" msgstr "" -#: ../../library/optparse.rst:966 -msgid "" -"The string to use when expanding ``%prog`` in ``usage`` and ``version`` " -"instead of ``os.path.basename(sys.argv[0])``." +msgid "The string to use when expanding ``%prog`` in ``usage`` and ``version`` instead of ``os.path.basename(sys.argv[0])``." msgstr "" -#: ../../library/optparse.rst:969 msgid "``epilog`` (default: ``None``)" msgstr "" -#: ../../library/optparse.rst:970 msgid "A paragraph of help text to print after the option help." msgstr "" -#: ../../library/optparse.rst:975 msgid "Populating the parser" msgstr "" -#: ../../library/optparse.rst:977 -msgid "" -"There are several ways to populate the parser with options. The preferred " -"way is by using :meth:`OptionParser.add_option`, as shown in " -"section :ref:`optparse-tutorial`. :meth:`add_option` can be called in one " -"of two ways:" +msgid "There are several ways to populate the parser with options. The preferred way is by using :meth:`OptionParser.add_option`, as shown in section :ref:`optparse-tutorial`. :meth:`add_option` can be called in one of two ways:" msgstr "" -#: ../../library/optparse.rst:981 msgid "pass it an Option instance (as returned by :func:`make_option`)" msgstr "" -#: ../../library/optparse.rst:983 -msgid "" -"pass it any combination of positional and keyword arguments that are " -"acceptable to :func:`make_option` (i.e., to the Option constructor), and it " -"will create the Option instance for you" +msgid "pass it any combination of positional and keyword arguments that are acceptable to :func:`make_option` (i.e., to the Option constructor), and it will create the Option instance for you" msgstr "" -#: ../../library/optparse.rst:987 -msgid "" -"The other alternative is to pass a list of pre-constructed Option instances " -"to the OptionParser constructor, as in::" +msgid "The other alternative is to pass a list of pre-constructed Option instances to the OptionParser constructor, as in::" msgstr "" -#: ../../library/optparse.rst:990 msgid "" "option_list = [\n" " make_option(\"-f\", \"--filename\",\n" @@ -1574,168 +911,99 @@ msgid "" "parser = OptionParser(option_list=option_list)" msgstr "" -#: ../../library/optparse.rst:998 -msgid "" -"(:func:`make_option` is a factory function for creating Option instances; " -"currently it is an alias for the Option constructor. A future version " -"of :mod:`!optparse` may split Option into several classes, " -"and :func:`make_option` will pick the right class to instantiate. Do not " -"instantiate Option directly.)" +msgid "(:func:`make_option` is a factory function for creating Option instances; currently it is an alias for the Option constructor. A future version of :mod:`!optparse` may split Option into several classes, and :func:`make_option` will pick the right class to instantiate. Do not instantiate Option directly.)" msgstr "" -#: ../../library/optparse.rst:1007 msgid "Defining options" msgstr "" -#: ../../library/optparse.rst:1009 -msgid "" -"Each Option instance represents a set of synonymous command-line option " -"strings, e.g. ``-f`` and ``--file``. You can specify any number of short or " -"long option strings, but you must specify at least one overall option string." +msgid "Each Option instance represents a set of synonymous command-line option strings, e.g. ``-f`` and ``--file``. You can specify any number of short or long option strings, but you must specify at least one overall option string." msgstr "" -#: ../../library/optparse.rst:1013 -msgid "" -"The canonical way to create an :class:`Option` instance is with " -"the :meth:`add_option` method of :class:`OptionParser`." +msgid "The canonical way to create an :class:`Option` instance is with the :meth:`add_option` method of :class:`OptionParser`." msgstr "" -#: ../../library/optparse.rst:1019 msgid "To define an option with only a short option string::" msgstr "" -#: ../../library/optparse.rst:1021 msgid "parser.add_option(\"-f\", attr=value, ...)" msgstr "" -#: ../../library/optparse.rst:1023 msgid "And to define an option with only a long option string::" msgstr "" -#: ../../library/optparse.rst:1025 msgid "parser.add_option(\"--foo\", attr=value, ...)" msgstr "" -#: ../../library/optparse.rst:1027 -msgid "" -"The keyword arguments define attributes of the new Option object. The most " -"important option attribute is :attr:`~Option.action`, and it largely " -"determines which other attributes are relevant or required. If you pass " -"irrelevant option attributes, or fail to pass required ones, :mod:`!" -"optparse` raises an :exc:`OptionError` exception explaining your mistake." +msgid "The keyword arguments define attributes of the new Option object. The most important option attribute is :attr:`~Option.action`, and it largely determines which other attributes are relevant or required. If you pass irrelevant option attributes, or fail to pass required ones, :mod:`!optparse` raises an :exc:`OptionError` exception explaining your mistake." msgstr "" -#: ../../library/optparse.rst:1033 -msgid "" -"An option's *action* determines what :mod:`!optparse` does when it " -"encounters this option on the command-line. The standard option actions " -"hard-coded into :mod:`!optparse` are:" +msgid "An option's *action* determines what :mod:`!optparse` does when it encounters this option on the command-line. The standard option actions hard-coded into :mod:`!optparse` are:" msgstr "" -#: ../../library/optparse.rst:1037 msgid "``\"store\"``" msgstr "" -#: ../../library/optparse.rst:1038 msgid "store this option's argument (default)" msgstr "" -#: ../../library/optparse.rst:1043 msgid "``\"store_true\"``" msgstr "" -#: ../../library/optparse.rst:1044 msgid "store ``True``" msgstr "" -#: ../../library/optparse.rst:1046 msgid "``\"store_false\"``" msgstr "" -#: ../../library/optparse.rst:1047 msgid "store ``False``" msgstr "" -#: ../../library/optparse.rst:1052 msgid "``\"append_const\"``" msgstr "" -#: ../../library/optparse.rst:1053 msgid "append a constant value to a list, pre-set via :attr:`Option.const`" msgstr "" -#: ../../library/optparse.rst:1061 ../../library/optparse.rst:1356 msgid "``\"help\"``" msgstr "" -#: ../../library/optparse.rst:1062 -msgid "" -"print a usage message including all options and the documentation for them" +msgid "print a usage message including all options and the documentation for them" msgstr "" -#: ../../library/optparse.rst:1064 -msgid "" -"(If you don't supply an action, the default is ``\"store\"``. For this " -"action, you may also supply :attr:`~Option.type` and :attr:`~Option.dest` " -"option attributes; see :ref:`optparse-standard-option-actions`.)" +msgid "(If you don't supply an action, the default is ``\"store\"``. For this action, you may also supply :attr:`~Option.type` and :attr:`~Option.dest` option attributes; see :ref:`optparse-standard-option-actions`.)" msgstr "" -#: ../../library/optparse.rst:1068 -msgid "" -"As you can see, most actions involve storing or updating a value " -"somewhere. :mod:`!optparse` always creates a special object for this, " -"conventionally called ``options``, which is an instance " -"of :class:`optparse.Values`." +msgid "As you can see, most actions involve storing or updating a value somewhere. :mod:`!optparse` always creates a special object for this, conventionally called ``options``, which is an instance of :class:`optparse.Values`." msgstr "" -#: ../../library/optparse.rst:1074 -msgid "" -"An object holding parsed argument names and values as attributes. Normally " -"created by calling when calling :meth:`OptionParser.parse_args`, and can be " -"overridden by a custom subclass passed to the *values* argument " -"of :meth:`OptionParser.parse_args` (as described in :ref:`optparse-parsing-" -"arguments`)." +msgid "An object holding parsed argument names and values as attributes. Normally created by calling when calling :meth:`OptionParser.parse_args`, and can be overridden by a custom subclass passed to the *values* argument of :meth:`OptionParser.parse_args` (as described in :ref:`optparse-parsing-arguments`)." msgstr "" -#: ../../library/optparse.rst:1079 -msgid "" -"Option arguments (and various other values) are stored as attributes of this " -"object, according to the :attr:`~Option.dest` (destination) option attribute." +msgid "Option arguments (and various other values) are stored as attributes of this object, according to the :attr:`~Option.dest` (destination) option attribute." msgstr "" -#: ../../library/optparse.rst:1083 msgid "For example, when you call ::" msgstr "" -#: ../../library/optparse.rst:1085 msgid "parser.parse_args()" msgstr "" -#: ../../library/optparse.rst:1087 -msgid "" -"one of the first things :mod:`!optparse` does is create the ``options`` " -"object::" +msgid "one of the first things :mod:`!optparse` does is create the ``options`` object::" msgstr "" -#: ../../library/optparse.rst:1089 msgid "options = Values()" msgstr "" -#: ../../library/optparse.rst:1091 msgid "If one of the options in this parser is defined with ::" msgstr "" -#: ../../library/optparse.rst:1093 -msgid "" -"parser.add_option(\"-f\", \"--file\", action=\"store\", type=\"string\", " -"dest=\"filename\")" +msgid "parser.add_option(\"-f\", \"--file\", action=\"store\", type=\"string\", dest=\"filename\")" msgstr "" -#: ../../library/optparse.rst:1095 msgid "and the command-line being parsed includes any of the following::" msgstr "" -#: ../../library/optparse.rst:1097 msgid "" "-ffoo\n" "-f foo\n" @@ -1743,219 +1011,119 @@ msgid "" "--file foo" msgstr "" -#: ../../library/optparse.rst:1102 -msgid "" -"then :mod:`!optparse`, on seeing this option, will do the equivalent of ::" +msgid "then :mod:`!optparse`, on seeing this option, will do the equivalent of ::" msgstr "" -#: ../../library/optparse.rst:1104 msgid "options.filename = \"foo\"" msgstr "" -#: ../../library/optparse.rst:1106 -msgid "" -"The :attr:`~Option.type` and :attr:`~Option.dest` option attributes are " -"almost as important as :attr:`~Option.action`, but :attr:`~Option.action` is " -"the only one that makes sense for *all* options." +msgid "The :attr:`~Option.type` and :attr:`~Option.dest` option attributes are almost as important as :attr:`~Option.action`, but :attr:`~Option.action` is the only one that makes sense for *all* options." msgstr "" -#: ../../library/optparse.rst:1114 msgid "Option attributes" msgstr "" -#: ../../library/optparse.rst:1118 -msgid "" -"A single command line argument, with various attributes passed by keyword to " -"the constructor. Normally created with :meth:`OptionParser.add_option` " -"rather than directly, and can be overridden by a custom class via the " -"*option_class* argument to :class:`OptionParser`." +msgid "A single command line argument, with various attributes passed by keyword to the constructor. Normally created with :meth:`OptionParser.add_option` rather than directly, and can be overridden by a custom class via the *option_class* argument to :class:`OptionParser`." msgstr "" -#: ../../library/optparse.rst:1124 -msgid "" -"The following option attributes may be passed as keyword arguments " -"to :meth:`OptionParser.add_option`. If you pass an option attribute that is " -"not relevant to a particular option, or fail to pass a required option " -"attribute, :mod:`!optparse` raises :exc:`OptionError`." +msgid "The following option attributes may be passed as keyword arguments to :meth:`OptionParser.add_option`. If you pass an option attribute that is not relevant to a particular option, or fail to pass a required option attribute, :mod:`!optparse` raises :exc:`OptionError`." msgstr "" -#: ../../library/optparse.rst:1131 msgid "(default: ``\"store\"``)" msgstr "" -#: ../../library/optparse.rst:1133 -msgid "" -"Determines :mod:`!optparse`'s behaviour when this option is seen on the " -"command line; the available options are documented :ref:`here `." +msgid "Determines :mod:`!optparse`'s behaviour when this option is seen on the command line; the available options are documented :ref:`here `." msgstr "" -#: ../../library/optparse.rst:1139 msgid "(default: ``\"string\"``)" msgstr "" -#: ../../library/optparse.rst:1141 -msgid "" -"The argument type expected by this option (e.g., ``\"string\"`` or " -"``\"int\"``); the available option types are documented :ref:`here `." +msgid "The argument type expected by this option (e.g., ``\"string\"`` or ``\"int\"``); the available option types are documented :ref:`here `." msgstr "" -#: ../../library/optparse.rst:1147 ../../library/optparse.rst:1197 msgid "(default: derived from option strings)" msgstr "" -#: ../../library/optparse.rst:1149 -msgid "" -"If the option's action implies writing or modifying a value somewhere, this " -"tells :mod:`!optparse` where to write it: :attr:`~Option.dest` names an " -"attribute of the ``options`` object that :mod:`!optparse` builds as it " -"parses the command line." +msgid "If the option's action implies writing or modifying a value somewhere, this tells :mod:`!optparse` where to write it: :attr:`~Option.dest` names an attribute of the ``options`` object that :mod:`!optparse` builds as it parses the command line." msgstr "" -#: ../../library/optparse.rst:1156 -msgid "" -"The value to use for this option's destination if the option is not seen on " -"the command line. See also :meth:`OptionParser.set_defaults`." +msgid "The value to use for this option's destination if the option is not seen on the command line. See also :meth:`OptionParser.set_defaults`." msgstr "" -#: ../../library/optparse.rst:1161 msgid "(default: 1)" msgstr "" -#: ../../library/optparse.rst:1163 -msgid "" -"How many arguments of type :attr:`~Option.type` should be consumed when this " -"option is seen. If > 1, :mod:`!optparse` will store a tuple of values " -"to :attr:`~Option.dest`." +msgid "How many arguments of type :attr:`~Option.type` should be consumed when this option is seen. If > 1, :mod:`!optparse` will store a tuple of values to :attr:`~Option.dest`." msgstr "" -#: ../../library/optparse.rst:1169 msgid "For actions that store a constant value, the constant value to store." msgstr "" -#: ../../library/optparse.rst:1173 -msgid "" -"For options of type ``\"choice\"``, the list of strings the user may choose " -"from." +msgid "For options of type ``\"choice\"``, the list of strings the user may choose from." msgstr "" -#: ../../library/optparse.rst:1178 -msgid "" -"For options with action ``\"callback\"``, the callable to call when this " -"option is seen. See section :ref:`optparse-option-callbacks` for detail on " -"the arguments passed to the callable." +msgid "For options with action ``\"callback\"``, the callable to call when this option is seen. See section :ref:`optparse-option-callbacks` for detail on the arguments passed to the callable." msgstr "" -#: ../../library/optparse.rst:1185 -msgid "" -"Additional positional and keyword arguments to pass to ``callback`` after " -"the four standard callback arguments." +msgid "Additional positional and keyword arguments to pass to ``callback`` after the four standard callback arguments." msgstr "" -#: ../../library/optparse.rst:1190 -msgid "" -"Help text to print for this option when listing all available options after " -"the user supplies a :attr:`~Option.help` option (such as ``--help``). If no " -"help text is supplied, the option will be listed without help text. To hide " -"this option, use the special value :const:`optparse.SUPPRESS_HELP`." +msgid "Help text to print for this option when listing all available options after the user supplies a :attr:`~Option.help` option (such as ``--help``). If no help text is supplied, the option will be listed without help text. To hide this option, use the special value :const:`optparse.SUPPRESS_HELP`." msgstr "" -#: ../../library/optparse.rst:1199 -msgid "" -"Stand-in for the option argument(s) to use when printing help text. See " -"section :ref:`optparse-tutorial` for an example." +msgid "Stand-in for the option argument(s) to use when printing help text. See section :ref:`optparse-tutorial` for an example." msgstr "" -#: ../../library/optparse.rst:1206 msgid "Standard option actions" msgstr "" -#: ../../library/optparse.rst:1208 -msgid "" -"The various option actions all have slightly different requirements and " -"effects. Most actions have several relevant option attributes which you may " -"specify to guide :mod:`!optparse`'s behaviour; a few have required " -"attributes, which you must specify for any option using that action." +msgid "The various option actions all have slightly different requirements and effects. Most actions have several relevant option attributes which you may specify to guide :mod:`!optparse`'s behaviour; a few have required attributes, which you must specify for any option using that action." msgstr "" -#: ../../library/optparse.rst:1213 -msgid "" -"``\"store\"`` " -"[relevant: :attr:`~Option.type`, :attr:`~Option.dest`, :attr:`~Option.nargs`, :attr:`~Option.choices`]" +msgid "``\"store\"`` [relevant: :attr:`~Option.type`, :attr:`~Option.dest`, :attr:`~Option.nargs`, :attr:`~Option.choices`]" msgstr "" -#: ../../library/optparse.rst:1216 -msgid "" -"The option must be followed by an argument, which is converted to a value " -"according to :attr:`~Option.type` and stored in :attr:`~Option.dest`. " -"If :attr:`~Option.nargs` > 1, multiple arguments will be consumed from the " -"command line; all will be converted according to :attr:`~Option.type` and " -"stored to :attr:`~Option.dest` as a tuple. See the :ref:`optparse-standard-" -"option-types` section." +msgid "The option must be followed by an argument, which is converted to a value according to :attr:`~Option.type` and stored in :attr:`~Option.dest`. If :attr:`~Option.nargs` > 1, multiple arguments will be consumed from the command line; all will be converted according to :attr:`~Option.type` and stored to :attr:`~Option.dest` as a tuple. See the :ref:`optparse-standard-option-types` section." msgstr "" -#: ../../library/optparse.rst:1223 -msgid "" -"If :attr:`~Option.choices` is supplied (a list or tuple of strings), the " -"type defaults to ``\"choice\"``." +msgid "If :attr:`~Option.choices` is supplied (a list or tuple of strings), the type defaults to ``\"choice\"``." msgstr "" -#: ../../library/optparse.rst:1226 msgid "If :attr:`~Option.type` is not supplied, it defaults to ``\"string\"``." msgstr "" -#: ../../library/optparse.rst:1228 -msgid "" -"If :attr:`~Option.dest` is not supplied, :mod:`!optparse` derives a " -"destination from the first long option string (e.g., ``--foo-bar`` implies " -"``foo_bar``). If there are no long option strings, :mod:`!optparse` derives " -"a destination from the first short option string (e.g., ``-f`` implies " -"``f``)." +msgid "If :attr:`~Option.dest` is not supplied, :mod:`!optparse` derives a destination from the first long option string (e.g., ``--foo-bar`` implies ``foo_bar``). If there are no long option strings, :mod:`!optparse` derives a destination from the first short option string (e.g., ``-f`` implies ``f``)." msgstr "" -#: ../../library/optparse.rst:1233 ../../library/optparse.rst:1253 -#: ../../library/optparse.rst:1275 ../../library/optparse.rst:1293 -#: ../../library/optparse.rst:1332 ../../library/optparse.rst:1370 msgid "Example::" msgstr "" -#: ../../library/optparse.rst:1235 msgid "" "parser.add_option(\"-f\")\n" "parser.add_option(\"-p\", type=\"float\", nargs=3, dest=\"point\")" msgstr "" -#: ../../library/optparse.rst:1238 msgid "As it parses the command line ::" msgstr "" -#: ../../library/optparse.rst:1240 msgid "-f foo.txt -p 1 -3.5 4 -fbar.txt" msgstr "" -#: ../../library/optparse.rst:1242 msgid ":mod:`!optparse` will set ::" msgstr "" -#: ../../library/optparse.rst:1244 msgid "" "options.f = \"foo.txt\"\n" "options.point = (1.0, -3.5, 4.0)\n" "options.f = \"bar.txt\"" msgstr "" -#: ../../library/optparse.rst:1248 -msgid "" -"``\"store_const\"`` [required: :attr:`~Option.const`; " -"relevant: :attr:`~Option.dest`]" +msgid "``\"store_const\"`` [required: :attr:`~Option.const`; relevant: :attr:`~Option.dest`]" msgstr "" -#: ../../library/optparse.rst:1251 msgid "The value :attr:`~Option.const` is stored in :attr:`~Option.dest`." msgstr "" -#: ../../library/optparse.rst:1255 msgid "" "parser.add_option(\"-q\", \"--quiet\",\n" " action=\"store_const\", const=0, dest=\"verbose\")\n" @@ -1965,194 +1133,115 @@ msgid "" " action=\"store_const\", const=2, dest=\"verbose\")" msgstr "" -#: ../../library/optparse.rst:1262 msgid "If ``--noisy`` is seen, :mod:`!optparse` will set ::" msgstr "" -#: ../../library/optparse.rst:1264 msgid "options.verbose = 2" msgstr "" -#: ../../library/optparse.rst:1266 msgid "``\"store_true\"`` [relevant: :attr:`~Option.dest`]" msgstr "" -#: ../../library/optparse.rst:1268 -msgid "" -"A special case of ``\"store_const\"`` that stores ``True`` " -"to :attr:`~Option.dest`." +msgid "A special case of ``\"store_const\"`` that stores ``True`` to :attr:`~Option.dest`." msgstr "" -#: ../../library/optparse.rst:1271 msgid "``\"store_false\"`` [relevant: :attr:`~Option.dest`]" msgstr "" -#: ../../library/optparse.rst:1273 msgid "Like ``\"store_true\"``, but stores ``False``." msgstr "" -#: ../../library/optparse.rst:1277 msgid "" "parser.add_option(\"--clobber\", action=\"store_true\", dest=\"clobber\")\n" "parser.add_option(\"--no-clobber\", action=\"store_false\", dest=\"clobber\")" msgstr "" -#: ../../library/optparse.rst:1280 -msgid "" -"``\"append\"`` " -"[relevant: :attr:`~Option.type`, :attr:`~Option.dest`, :attr:`~Option.nargs`, :attr:`~Option.choices`]" +msgid "``\"append\"`` [relevant: :attr:`~Option.type`, :attr:`~Option.dest`, :attr:`~Option.nargs`, :attr:`~Option.choices`]" msgstr "" -#: ../../library/optparse.rst:1283 -msgid "" -"The option must be followed by an argument, which is appended to the list " -"in :attr:`~Option.dest`. If no default value for :attr:`~Option.dest` is " -"supplied, an empty list is automatically created when :mod:`!optparse` first " -"encounters this option on the command-line. If :attr:`~Option.nargs` > 1, " -"multiple arguments are consumed, and a tuple of length :attr:`~Option.nargs` " -"is appended to :attr:`~Option.dest`." +msgid "The option must be followed by an argument, which is appended to the list in :attr:`~Option.dest`. If no default value for :attr:`~Option.dest` is supplied, an empty list is automatically created when :mod:`!optparse` first encounters this option on the command-line. If :attr:`~Option.nargs` > 1, multiple arguments are consumed, and a tuple of length :attr:`~Option.nargs` is appended to :attr:`~Option.dest`." msgstr "" -#: ../../library/optparse.rst:1290 -msgid "" -"The defaults for :attr:`~Option.type` and :attr:`~Option.dest` are the same " -"as for the ``\"store\"`` action." +msgid "The defaults for :attr:`~Option.type` and :attr:`~Option.dest` are the same as for the ``\"store\"`` action." msgstr "" -#: ../../library/optparse.rst:1295 -msgid "" -"parser.add_option(\"-t\", \"--tracks\", action=\"append\", type=\"int\")" +msgid "parser.add_option(\"-t\", \"--tracks\", action=\"append\", type=\"int\")" msgstr "" -#: ../../library/optparse.rst:1297 -msgid "" -"If ``-t3`` is seen on the command-line, :mod:`!optparse` does the equivalent " -"of::" +msgid "If ``-t3`` is seen on the command-line, :mod:`!optparse` does the equivalent of::" msgstr "" -#: ../../library/optparse.rst:1300 msgid "" "options.tracks = []\n" "options.tracks.append(int(\"3\"))" msgstr "" -#: ../../library/optparse.rst:1303 msgid "If, a little later on, ``--tracks=4`` is seen, it does::" msgstr "" -#: ../../library/optparse.rst:1305 msgid "options.tracks.append(int(\"4\"))" msgstr "" -#: ../../library/optparse.rst:1307 -msgid "" -"The ``append`` action calls the ``append`` method on the current value of " -"the option. This means that any default value specified must have an " -"``append`` method. It also means that if the default value is non-empty, " -"the default elements will be present in the parsed value for the option, " -"with any values from the command line appended after those default values::" +msgid "The ``append`` action calls the ``append`` method on the current value of the option. This means that any default value specified must have an ``append`` method. It also means that if the default value is non-empty, the default elements will be present in the parsed value for the option, with any values from the command line appended after those default values::" msgstr "" -#: ../../library/optparse.rst:1313 msgid "" -">>> parser.add_option(\"--files\", action=\"append\", default=['~/.mypkg/" -"defaults'])\n" +">>> parser.add_option(\"--files\", action=\"append\", default=['~/.mypkg/defaults'])\n" ">>> opts, args = parser.parse_args(['--files', 'overrides.mypkg'])\n" ">>> opts.files\n" "['~/.mypkg/defaults', 'overrides.mypkg']" msgstr "" -#: ../../library/optparse.rst:1318 -msgid "" -"``\"append_const\"`` [required: :attr:`~Option.const`; " -"relevant: :attr:`~Option.dest`]" +msgid "``\"append_const\"`` [required: :attr:`~Option.const`; relevant: :attr:`~Option.dest`]" msgstr "" -#: ../../library/optparse.rst:1321 -msgid "" -"Like ``\"store_const\"``, but the value :attr:`~Option.const` is appended " -"to :attr:`~Option.dest`; as with ``\"append\"``, :attr:`~Option.dest` " -"defaults to ``None``, and an empty list is automatically created the first " -"time the option is encountered." +msgid "Like ``\"store_const\"``, but the value :attr:`~Option.const` is appended to :attr:`~Option.dest`; as with ``\"append\"``, :attr:`~Option.dest` defaults to ``None``, and an empty list is automatically created the first time the option is encountered." msgstr "" -#: ../../library/optparse.rst:1326 msgid "``\"count\"`` [relevant: :attr:`~Option.dest`]" msgstr "" -#: ../../library/optparse.rst:1328 -msgid "" -"Increment the integer stored at :attr:`~Option.dest`. If no default value " -"is supplied, :attr:`~Option.dest` is set to zero before being incremented " -"the first time." +msgid "Increment the integer stored at :attr:`~Option.dest`. If no default value is supplied, :attr:`~Option.dest` is set to zero before being incremented the first time." msgstr "" -#: ../../library/optparse.rst:1334 msgid "parser.add_option(\"-v\", action=\"count\", dest=\"verbosity\")" msgstr "" -#: ../../library/optparse.rst:1336 -msgid "" -"The first time ``-v`` is seen on the command line, :mod:`!optparse` does the " -"equivalent of::" +msgid "The first time ``-v`` is seen on the command line, :mod:`!optparse` does the equivalent of::" msgstr "" -#: ../../library/optparse.rst:1339 msgid "" "options.verbosity = 0\n" "options.verbosity += 1" msgstr "" -#: ../../library/optparse.rst:1342 msgid "Every subsequent occurrence of ``-v`` results in ::" msgstr "" -#: ../../library/optparse.rst:1344 msgid "options.verbosity += 1" msgstr "" -#: ../../library/optparse.rst:1346 -msgid "" -"``\"callback\"`` [required: :attr:`~Option.callback`; " -"relevant: :attr:`~Option.type`, :attr:`~Option.nargs`, :attr:`~Option.callback_args`, :attr:`~Option.callback_kwargs`]" +msgid "``\"callback\"`` [required: :attr:`~Option.callback`; relevant: :attr:`~Option.type`, :attr:`~Option.nargs`, :attr:`~Option.callback_args`, :attr:`~Option.callback_kwargs`]" msgstr "" -#: ../../library/optparse.rst:1350 -msgid "" -"Call the function specified by :attr:`~Option.callback`, which is called " -"as ::" +msgid "Call the function specified by :attr:`~Option.callback`, which is called as ::" msgstr "" -#: ../../library/optparse.rst:1352 ../../library/optparse.rst:1750 msgid "func(option, opt_str, value, parser, *args, **kwargs)" msgstr "" -#: ../../library/optparse.rst:1354 msgid "See section :ref:`optparse-option-callbacks` for more detail." msgstr "" -#: ../../library/optparse.rst:1358 -msgid "" -"Prints a complete help message for all the options in the current option " -"parser. The help message is constructed from the ``usage`` string passed to " -"OptionParser's constructor and the :attr:`~Option.help` string passed to " -"every option." +msgid "Prints a complete help message for all the options in the current option parser. The help message is constructed from the ``usage`` string passed to OptionParser's constructor and the :attr:`~Option.help` string passed to every option." msgstr "" -#: ../../library/optparse.rst:1363 -msgid "" -"If no :attr:`~Option.help` string is supplied for an option, it will still " -"be listed in the help message. To omit an option entirely, use the special " -"value :const:`optparse.SUPPRESS_HELP`." +msgid "If no :attr:`~Option.help` string is supplied for an option, it will still be listed in the help message. To omit an option entirely, use the special value :const:`optparse.SUPPRESS_HELP`." msgstr "" -#: ../../library/optparse.rst:1367 -msgid "" -":mod:`!optparse` automatically adds a :attr:`~Option.help` option to all " -"OptionParsers, so you do not normally need to create one." +msgid ":mod:`!optparse` automatically adds a :attr:`~Option.help` option to all OptionParsers, so you do not normally need to create one." msgstr "" -#: ../../library/optparse.rst:1372 msgid "" "from optparse import OptionParser, SUPPRESS_HELP\n" "\n" @@ -2168,14 +1257,9 @@ msgid "" "parser.add_option(\"--secret\", help=SUPPRESS_HELP)" msgstr "" -#: ../../library/optparse.rst:1385 -msgid "" -"If :mod:`!optparse` sees either ``-h`` or ``--help`` on the command line, it " -"will print something like the following help message to stdout (assuming " -"``sys.argv[0]`` is ``\"foo.py\"``):" +msgid "If :mod:`!optparse` sees either ``-h`` or ``--help`` on the command line, it will print something like the following help message to stdout (assuming ``sys.argv[0]`` is ``\"foo.py\"``):" msgstr "" -#: ../../library/optparse.rst:1389 msgid "" "Usage: foo.py [options]\n" "\n" @@ -2185,317 +1269,180 @@ msgid "" " --file=FILENAME Input file to read data from" msgstr "" -#: ../../library/optparse.rst:1398 -msgid "" -"After printing the help message, :mod:`!optparse` terminates your process " -"with ``sys.exit(0)``." +msgid "After printing the help message, :mod:`!optparse` terminates your process with ``sys.exit(0)``." msgstr "" -#: ../../library/optparse.rst:1401 msgid "``\"version\"``" msgstr "" -#: ../../library/optparse.rst:1403 -msgid "" -"Prints the version number supplied to the OptionParser to stdout and exits. " -"The version number is actually formatted and printed by the " -"``print_version()`` method of OptionParser. Generally only relevant if the " -"``version`` argument is supplied to the OptionParser constructor. As " -"with :attr:`~Option.help` options, you will rarely create ``version`` " -"options, since :mod:`!optparse` automatically adds them when needed." +msgid "Prints the version number supplied to the OptionParser to stdout and exits. The version number is actually formatted and printed by the ``print_version()`` method of OptionParser. Generally only relevant if the ``version`` argument is supplied to the OptionParser constructor. As with :attr:`~Option.help` options, you will rarely create ``version`` options, since :mod:`!optparse` automatically adds them when needed." msgstr "" -#: ../../library/optparse.rst:1414 msgid "Standard option types" msgstr "" -#: ../../library/optparse.rst:1416 -msgid "" -":mod:`!optparse` has five built-in option types: ``\"string\"``, " -"``\"int\"``, ``\"choice\"``, ``\"float\"`` and ``\"complex\"``. If you need " -"to add new option types, see section :ref:`optparse-extending-optparse`." +msgid ":mod:`!optparse` has five built-in option types: ``\"string\"``, ``\"int\"``, ``\"choice\"``, ``\"float\"`` and ``\"complex\"``. If you need to add new option types, see section :ref:`optparse-extending-optparse`." msgstr "" -#: ../../library/optparse.rst:1420 -msgid "" -"Arguments to string options are not checked or converted in any way: the " -"text on the command line is stored in the destination (or passed to the " -"callback) as-is." +msgid "Arguments to string options are not checked or converted in any way: the text on the command line is stored in the destination (or passed to the callback) as-is." msgstr "" -#: ../../library/optparse.rst:1423 msgid "Integer arguments (type ``\"int\"``) are parsed as follows:" msgstr "" -#: ../../library/optparse.rst:1425 msgid "if the number starts with ``0x``, it is parsed as a hexadecimal number" msgstr "" -#: ../../library/optparse.rst:1427 msgid "if the number starts with ``0``, it is parsed as an octal number" msgstr "" -#: ../../library/optparse.rst:1429 msgid "if the number starts with ``0b``, it is parsed as a binary number" msgstr "" -#: ../../library/optparse.rst:1431 msgid "otherwise, the number is parsed as a decimal number" msgstr "" -#: ../../library/optparse.rst:1434 -msgid "" -"The conversion is done by calling :func:`int` with the appropriate base (2, " -"8, 10, or 16). If this fails, so will :mod:`!optparse`, although with a " -"more useful error message." +msgid "The conversion is done by calling :func:`int` with the appropriate base (2, 8, 10, or 16). If this fails, so will :mod:`!optparse`, although with a more useful error message." msgstr "" -#: ../../library/optparse.rst:1438 -msgid "" -"``\"float\"`` and ``\"complex\"`` option arguments are converted directly " -"with :func:`float` and :func:`complex`, with similar error-handling." +msgid "``\"float\"`` and ``\"complex\"`` option arguments are converted directly with :func:`float` and :func:`complex`, with similar error-handling." msgstr "" -#: ../../library/optparse.rst:1441 -msgid "" -"``\"choice\"`` options are a subtype of ``\"string\"`` options. " -"The :attr:`~Option.choices` option attribute (a sequence of strings) defines " -"the set of allowed option arguments. :func:`optparse.check_choice` compares " -"user-supplied option arguments against this master list and " -"raises :exc:`OptionValueError` if an invalid string is given." +msgid "``\"choice\"`` options are a subtype of ``\"string\"`` options. The :attr:`~Option.choices` option attribute (a sequence of strings) defines the set of allowed option arguments. :func:`optparse.check_choice` compares user-supplied option arguments against this master list and raises :exc:`OptionValueError` if an invalid string is given." msgstr "" -#: ../../library/optparse.rst:1451 msgid "Parsing arguments" msgstr "" -#: ../../library/optparse.rst:1453 -msgid "" -"The whole point of creating and populating an OptionParser is to call " -"its :meth:`~OptionParser.parse_args` method." +msgid "The whole point of creating and populating an OptionParser is to call its :meth:`~OptionParser.parse_args` method." msgstr "" -#: ../../library/optparse.rst:1458 msgid "Parse the command-line options found in *args*." msgstr "" -#: ../../library/optparse.rst:1460 msgid "The input parameters are" msgstr "" -#: ../../library/optparse.rst:1462 ../../library/optparse.rst:1476 -#: ../../library/optparse.rst:1794 msgid "``args``" msgstr "" -#: ../../library/optparse.rst:1463 msgid "the list of arguments to process (default: ``sys.argv[1:]``)" msgstr "" -#: ../../library/optparse.rst:1465 msgid "``values``" msgstr "" -#: ../../library/optparse.rst:1466 -msgid "" -"a :class:`Values` object to store option arguments in (default: a new " -"instance of :class:`Values`) -- if you give an existing object, the option " -"defaults will not be initialized on it" +msgid "a :class:`Values` object to store option arguments in (default: a new instance of :class:`Values`) -- if you give an existing object, the option defaults will not be initialized on it" msgstr "" -#: ../../library/optparse.rst:1470 msgid "and the return value is a pair ``(options, args)`` where" msgstr "" -#: ../../library/optparse.rst:1472 msgid "``options``" msgstr "" -#: ../../library/optparse.rst:1473 -msgid "" -"the same object that was passed in as *values*, or the ``optparse.Values`` " -"instance created by :mod:`!optparse`" +msgid "the same object that was passed in as *values*, or the ``optparse.Values`` instance created by :mod:`!optparse`" msgstr "" -#: ../../library/optparse.rst:1477 msgid "the leftover positional arguments after all options have been processed" msgstr "" -#: ../../library/optparse.rst:1479 -msgid "" -"The most common usage is to supply neither keyword argument. If you supply " -"``values``, it will be modified with repeated :func:`setattr` calls (roughly " -"one for every option argument stored to an option destination) and returned " -"by :meth:`~OptionParser.parse_args`." +msgid "The most common usage is to supply neither keyword argument. If you supply ``values``, it will be modified with repeated :func:`setattr` calls (roughly one for every option argument stored to an option destination) and returned by :meth:`~OptionParser.parse_args`." msgstr "" -#: ../../library/optparse.rst:1484 -msgid "" -"If :meth:`~OptionParser.parse_args` encounters any errors in the argument " -"list, it calls the OptionParser's :meth:`error` method with an appropriate " -"end-user error message. This ultimately terminates your process with an exit " -"status of 2 (the traditional Unix exit status for command-line errors)." +msgid "If :meth:`~OptionParser.parse_args` encounters any errors in the argument list, it calls the OptionParser's :meth:`error` method with an appropriate end-user error message. This ultimately terminates your process with an exit status of 2 (the traditional Unix exit status for command-line errors)." msgstr "" -#: ../../library/optparse.rst:1493 msgid "Querying and manipulating your option parser" msgstr "" -#: ../../library/optparse.rst:1495 -msgid "" -"The default behavior of the option parser can be customized slightly, and " -"you can also poke around your option parser and see what's there. " -"OptionParser provides several methods to help you out:" +msgid "The default behavior of the option parser can be customized slightly, and you can also poke around your option parser and see what's there. OptionParser provides several methods to help you out:" msgstr "" -#: ../../library/optparse.rst:1501 -msgid "" -"Set parsing to stop on the first non-option. For example, if ``-a`` and ``-" -"b`` are both simple options that take no arguments, :mod:`!optparse` " -"normally accepts this syntax::" +msgid "Set parsing to stop on the first non-option. For example, if ``-a`` and ``-b`` are both simple options that take no arguments, :mod:`!optparse` normally accepts this syntax::" msgstr "" -#: ../../library/optparse.rst:1505 msgid "prog -a arg1 -b arg2" msgstr "" -#: ../../library/optparse.rst:1507 msgid "and treats it as equivalent to ::" msgstr "" -#: ../../library/optparse.rst:1509 msgid "prog -a -b arg1 arg2" msgstr "" -#: ../../library/optparse.rst:1511 -msgid "" -"To disable this feature, call :meth:`disable_interspersed_args`. This " -"restores traditional Unix syntax, where option parsing stops with the first " -"non-option argument." +msgid "To disable this feature, call :meth:`disable_interspersed_args`. This restores traditional Unix syntax, where option parsing stops with the first non-option argument." msgstr "" -#: ../../library/optparse.rst:1515 -msgid "" -"Use this if you have a command processor which runs another command which " -"has options of its own and you want to make sure these options don't get " -"confused. For example, each command might have a different set of options." +msgid "Use this if you have a command processor which runs another command which has options of its own and you want to make sure these options don't get confused. For example, each command might have a different set of options." msgstr "" -#: ../../library/optparse.rst:1521 -msgid "" -"Set parsing to not stop on the first non-option, allowing interspersing " -"switches with command arguments. This is the default behavior." +msgid "Set parsing to not stop on the first non-option, allowing interspersing switches with command arguments. This is the default behavior." msgstr "" -#: ../../library/optparse.rst:1526 -msgid "" -"Returns the Option instance with the option string *opt_str*, or ``None`` if " -"no options have that option string." +msgid "Returns the Option instance with the option string *opt_str*, or ``None`` if no options have that option string." msgstr "" -#: ../../library/optparse.rst:1531 -msgid "" -"Return ``True`` if the OptionParser has an option with option string " -"*opt_str* (e.g., ``-q`` or ``--verbose``)." +msgid "Return ``True`` if the OptionParser has an option with option string *opt_str* (e.g., ``-q`` or ``--verbose``)." msgstr "" -#: ../../library/optparse.rst:1536 -msgid "" -"If the :class:`OptionParser` has an option corresponding to *opt_str*, that " -"option is removed. If that option provided any other option strings, all of " -"those option strings become invalid. If *opt_str* does not occur in any " -"option belonging to this :class:`OptionParser`, raises :exc:`ValueError`." +msgid "If the :class:`OptionParser` has an option corresponding to *opt_str*, that option is removed. If that option provided any other option strings, all of those option strings become invalid. If *opt_str* does not occur in any option belonging to this :class:`OptionParser`, raises :exc:`ValueError`." msgstr "" -#: ../../library/optparse.rst:1545 msgid "Conflicts between options" msgstr "" -#: ../../library/optparse.rst:1547 -msgid "" -"If you're not careful, it's easy to define options with conflicting option " -"strings::" +msgid "If you're not careful, it's easy to define options with conflicting option strings::" msgstr "" -#: ../../library/optparse.rst:1550 msgid "" "parser.add_option(\"-n\", \"--dry-run\", ...)\n" "...\n" "parser.add_option(\"-n\", \"--noisy\", ...)" msgstr "" -#: ../../library/optparse.rst:1554 -msgid "" -"(This is particularly true if you've defined your own OptionParser subclass " -"with some standard options.)" +msgid "(This is particularly true if you've defined your own OptionParser subclass with some standard options.)" msgstr "" -#: ../../library/optparse.rst:1557 -msgid "" -"Every time you add an option, :mod:`!optparse` checks for conflicts with " -"existing options. If it finds any, it invokes the current conflict-handling " -"mechanism. You can set the conflict-handling mechanism either in the " -"constructor::" +msgid "Every time you add an option, :mod:`!optparse` checks for conflicts with existing options. If it finds any, it invokes the current conflict-handling mechanism. You can set the conflict-handling mechanism either in the constructor::" msgstr "" -#: ../../library/optparse.rst:1561 msgid "parser = OptionParser(..., conflict_handler=handler)" msgstr "" -#: ../../library/optparse.rst:1563 msgid "or with a separate call::" msgstr "" -#: ../../library/optparse.rst:1565 msgid "parser.set_conflict_handler(handler)" msgstr "" -#: ../../library/optparse.rst:1567 msgid "The available conflict handlers are:" msgstr "" -#: ../../library/optparse.rst:1569 msgid "``\"error\"`` (default)" msgstr "" -#: ../../library/optparse.rst:1570 -msgid "" -"assume option conflicts are a programming error and " -"raise :exc:`OptionConflictError`" +msgid "assume option conflicts are a programming error and raise :exc:`OptionConflictError`" msgstr "" -#: ../../library/optparse.rst:1573 msgid "``\"resolve\"``" msgstr "" -#: ../../library/optparse.rst:1574 msgid "resolve option conflicts intelligently (see below)" msgstr "" -#: ../../library/optparse.rst:1577 -msgid "" -"As an example, let's define an :class:`OptionParser` that resolves conflicts " -"intelligently and add conflicting options to it::" +msgid "As an example, let's define an :class:`OptionParser` that resolves conflicts intelligently and add conflicting options to it::" msgstr "" -#: ../../library/optparse.rst:1580 msgid "" "parser = OptionParser(conflict_handler=\"resolve\")\n" "parser.add_option(\"-n\", \"--dry-run\", ..., help=\"do no harm\")\n" "parser.add_option(\"-n\", \"--noisy\", ..., help=\"be noisy\")" msgstr "" -#: ../../library/optparse.rst:1584 -msgid "" -"At this point, :mod:`!optparse` detects that a previously added option is " -"already using the ``-n`` option string. Since ``conflict_handler`` is " -"``\"resolve\"``, it resolves the situation by removing ``-n`` from the " -"earlier option's list of option strings. Now ``--dry-run`` is the only way " -"for the user to activate that option. If the user asks for help, the help " -"message will reflect that::" +msgid "At this point, :mod:`!optparse` detects that a previously added option is already using the ``-n`` option string. Since ``conflict_handler`` is ``\"resolve\"``, it resolves the situation by removing ``-n`` from the earlier option's list of option strings. Now ``--dry-run`` is the only way for the user to activate that option. If the user asks for help, the help message will reflect that::" msgstr "" -#: ../../library/optparse.rst:1590 msgid "" "Options:\n" " --dry-run do no harm\n" @@ -2503,26 +1450,15 @@ msgid "" " -n, --noisy be noisy" msgstr "" -#: ../../library/optparse.rst:1595 -msgid "" -"It's possible to whittle away the option strings for a previously added " -"option until there are none left, and the user has no way of invoking that " -"option from the command-line. In that case, :mod:`!optparse` removes that " -"option completely, so it doesn't show up in help text or anywhere else. " -"Carrying on with our existing OptionParser::" +msgid "It's possible to whittle away the option strings for a previously added option until there are none left, and the user has no way of invoking that option from the command-line. In that case, :mod:`!optparse` removes that option completely, so it doesn't show up in help text or anywhere else. Carrying on with our existing OptionParser::" msgstr "" -#: ../../library/optparse.rst:1601 msgid "parser.add_option(\"--dry-run\", ..., help=\"new dry-run option\")" msgstr "" -#: ../../library/optparse.rst:1603 -msgid "" -"At this point, the original ``-n``/``--dry-run`` option is no longer " -"accessible, so :mod:`!optparse` removes it, leaving this help text::" +msgid "At this point, the original ``-n``/``--dry-run`` option is no longer accessible, so :mod:`!optparse` removes it, leaving this help text::" msgstr "" -#: ../../library/optparse.rst:1606 msgid "" "Options:\n" " ...\n" @@ -2530,60 +1466,30 @@ msgid "" " --dry-run new dry-run option" msgstr "" -#: ../../library/optparse.rst:1615 msgid "Cleanup" msgstr "" -#: ../../library/optparse.rst:1617 -msgid "" -"OptionParser instances have several cyclic references. This should not be a " -"problem for Python's garbage collector, but you may wish to break the cyclic " -"references explicitly by calling :meth:`~OptionParser.destroy` on your " -"OptionParser once you are done with it. This is particularly useful in long-" -"running applications where large object graphs are reachable from your " -"OptionParser." +msgid "OptionParser instances have several cyclic references. This should not be a problem for Python's garbage collector, but you may wish to break the cyclic references explicitly by calling :meth:`~OptionParser.destroy` on your OptionParser once you are done with it. This is particularly useful in long-running applications where large object graphs are reachable from your OptionParser." msgstr "" -#: ../../library/optparse.rst:1628 msgid "Other methods" msgstr "" -#: ../../library/optparse.rst:1630 msgid "OptionParser supports several other public methods:" msgstr "" -#: ../../library/optparse.rst:1634 -msgid "" -"Set the usage string according to the rules described above for the " -"``usage`` constructor keyword argument. Passing ``None`` sets the default " -"usage string; use :const:`optparse.SUPPRESS_USAGE` to suppress a usage " -"message." +msgid "Set the usage string according to the rules described above for the ``usage`` constructor keyword argument. Passing ``None`` sets the default usage string; use :const:`optparse.SUPPRESS_USAGE` to suppress a usage message." msgstr "" -#: ../../library/optparse.rst:1640 -msgid "" -"Print the usage message for the current program (``self.usage``) to *file* " -"(default stdout). Any occurrence of the string ``%prog`` in ``self.usage`` " -"is replaced with the name of the current program. Does nothing if " -"``self.usage`` is empty or not defined." +msgid "Print the usage message for the current program (``self.usage``) to *file* (default stdout). Any occurrence of the string ``%prog`` in ``self.usage`` is replaced with the name of the current program. Does nothing if ``self.usage`` is empty or not defined." msgstr "" -#: ../../library/optparse.rst:1647 -msgid "" -"Same as :meth:`print_usage` but returns the usage string instead of printing " -"it." +msgid "Same as :meth:`print_usage` but returns the usage string instead of printing it." msgstr "" -#: ../../library/optparse.rst:1652 -msgid "" -"Set default values for several option destinations at once. " -"Using :meth:`set_defaults` is the preferred way to set default values for " -"options, since multiple options can share the same destination. For " -"example, if several \"mode\" options all set the same destination, any one " -"of them can set the default, and the last one wins::" +msgid "Set default values for several option destinations at once. Using :meth:`set_defaults` is the preferred way to set default values for options, since multiple options can share the same destination. For example, if several \"mode\" options all set the same destination, any one of them can set the default, and the last one wins::" msgstr "" -#: ../../library/optparse.rst:1658 msgid "" "parser.add_option(\"--advanced\", action=\"store_const\",\n" " dest=\"mode\", const=\"advanced\",\n" @@ -2593,11 +1499,9 @@ msgid "" " default=\"advanced\") # overrides above setting" msgstr "" -#: ../../library/optparse.rst:1665 msgid "To avoid this confusion, use :meth:`set_defaults`::" msgstr "" -#: ../../library/optparse.rst:1667 msgid "" "parser.set_defaults(mode=\"advanced\")\n" "parser.add_option(\"--advanced\", action=\"store_const\",\n" @@ -2606,253 +1510,138 @@ msgid "" " dest=\"mode\", const=\"novice\")" msgstr "" -#: ../../library/optparse.rst:1677 msgid "Option Callbacks" msgstr "" -#: ../../library/optparse.rst:1679 -msgid "" -"When :mod:`!optparse`'s built-in actions and types aren't quite enough for " -"your needs, you have two choices: extend :mod:`!optparse` or define a " -"callback option. Extending :mod:`!optparse` is more general, but overkill " -"for a lot of simple cases. Quite often a simple callback is all you need." +msgid "When :mod:`!optparse`'s built-in actions and types aren't quite enough for your needs, you have two choices: extend :mod:`!optparse` or define a callback option. Extending :mod:`!optparse` is more general, but overkill for a lot of simple cases. Quite often a simple callback is all you need." msgstr "" -#: ../../library/optparse.rst:1684 msgid "There are two steps to defining a callback option:" msgstr "" -#: ../../library/optparse.rst:1686 msgid "define the option itself using the ``\"callback\"`` action" msgstr "" -#: ../../library/optparse.rst:1688 -msgid "" -"write the callback; this is a function (or method) that takes at least four " -"arguments, as described below" +msgid "write the callback; this is a function (or method) that takes at least four arguments, as described below" msgstr "" -#: ../../library/optparse.rst:1695 msgid "Defining a callback option" msgstr "" -#: ../../library/optparse.rst:1697 -msgid "" -"As always, the easiest way to define a callback option is by using " -"the :meth:`OptionParser.add_option` method. Apart " -"from :attr:`~Option.action`, the only option attribute you must specify is " -"``callback``, the function to call::" +msgid "As always, the easiest way to define a callback option is by using the :meth:`OptionParser.add_option` method. Apart from :attr:`~Option.action`, the only option attribute you must specify is ``callback``, the function to call::" msgstr "" -#: ../../library/optparse.rst:1701 msgid "parser.add_option(\"-c\", action=\"callback\", callback=my_callback)" msgstr "" -#: ../../library/optparse.rst:1703 -msgid "" -"``callback`` is a function (or other callable object), so you must have " -"already defined ``my_callback()`` when you create this callback option. In " -"this simple case, :mod:`!optparse` doesn't even know if ``-c`` takes any " -"arguments, which usually means that the option takes no arguments---the mere " -"presence of ``-c`` on the command-line is all it needs to know. In some " -"circumstances, though, you might want your callback to consume an arbitrary " -"number of command-line arguments. This is where writing callbacks gets " -"tricky; it's covered later in this section." +msgid "``callback`` is a function (or other callable object), so you must have already defined ``my_callback()`` when you create this callback option. In this simple case, :mod:`!optparse` doesn't even know if ``-c`` takes any arguments, which usually means that the option takes no arguments---the mere presence of ``-c`` on the command-line is all it needs to know. In some circumstances, though, you might want your callback to consume an arbitrary number of command-line arguments. This is where writing callbacks gets tricky; it's covered later in this section." msgstr "" -#: ../../library/optparse.rst:1712 -msgid "" -":mod:`!optparse` always passes four particular arguments to your callback, " -"and it will only pass additional arguments if you specify them " -"via :attr:`~Option.callback_args` and :attr:`~Option.callback_kwargs`. " -"Thus, the minimal callback function signature is::" +msgid ":mod:`!optparse` always passes four particular arguments to your callback, and it will only pass additional arguments if you specify them via :attr:`~Option.callback_args` and :attr:`~Option.callback_kwargs`. Thus, the minimal callback function signature is::" msgstr "" -#: ../../library/optparse.rst:1717 msgid "def my_callback(option, opt, value, parser):" msgstr "" -#: ../../library/optparse.rst:1719 msgid "The four arguments to a callback are described below." msgstr "" -#: ../../library/optparse.rst:1721 -msgid "" -"There are several other option attributes that you can supply when you " -"define a callback option:" +msgid "There are several other option attributes that you can supply when you define a callback option:" msgstr "" -#: ../../library/optparse.rst:1724 msgid ":attr:`~Option.type`" msgstr "" -#: ../../library/optparse.rst:1725 -msgid "" -"has its usual meaning: as with the ``\"store\"`` or ``\"append\"`` actions, " -"it instructs :mod:`!optparse` to consume one argument and convert it " -"to :attr:`~Option.type`. Rather than storing the converted value(s) " -"anywhere, though, :mod:`!optparse` passes it to your callback function." +msgid "has its usual meaning: as with the ``\"store\"`` or ``\"append\"`` actions, it instructs :mod:`!optparse` to consume one argument and convert it to :attr:`~Option.type`. Rather than storing the converted value(s) anywhere, though, :mod:`!optparse` passes it to your callback function." msgstr "" -#: ../../library/optparse.rst:1730 msgid ":attr:`~Option.nargs`" msgstr "" -#: ../../library/optparse.rst:1731 -msgid "" -"also has its usual meaning: if it is supplied and > 1, :mod:`!optparse` will " -"consume :attr:`~Option.nargs` arguments, each of which must be convertible " -"to :attr:`~Option.type`. It then passes a tuple of converted values to your " -"callback." +msgid "also has its usual meaning: if it is supplied and > 1, :mod:`!optparse` will consume :attr:`~Option.nargs` arguments, each of which must be convertible to :attr:`~Option.type`. It then passes a tuple of converted values to your callback." msgstr "" -#: ../../library/optparse.rst:1736 msgid ":attr:`~Option.callback_args`" msgstr "" -#: ../../library/optparse.rst:1737 msgid "a tuple of extra positional arguments to pass to the callback" msgstr "" -#: ../../library/optparse.rst:1739 msgid ":attr:`~Option.callback_kwargs`" msgstr "" -#: ../../library/optparse.rst:1740 msgid "a dictionary of extra keyword arguments to pass to the callback" msgstr "" -#: ../../library/optparse.rst:1746 msgid "How callbacks are called" msgstr "" -#: ../../library/optparse.rst:1748 msgid "All callbacks are called as follows::" msgstr "" -#: ../../library/optparse.rst:1754 msgid "``option``" msgstr "" -#: ../../library/optparse.rst:1755 msgid "is the Option instance that's calling the callback" msgstr "" -#: ../../library/optparse.rst:1757 msgid "``opt_str``" msgstr "" -#: ../../library/optparse.rst:1758 -msgid "" -"is the option string seen on the command-line that's triggering the " -"callback. (If an abbreviated long option was used, ``opt_str`` will be the " -"full, canonical option string---e.g. if the user puts ``--foo`` on the " -"command-line as an abbreviation for ``--foobar``, then ``opt_str`` will be " -"``\"--foobar\"``.)" +msgid "is the option string seen on the command-line that's triggering the callback. (If an abbreviated long option was used, ``opt_str`` will be the full, canonical option string---e.g. if the user puts ``--foo`` on the command-line as an abbreviation for ``--foobar``, then ``opt_str`` will be ``\"--foobar\"``.)" msgstr "" -#: ../../library/optparse.rst:1764 msgid "``value``" msgstr "" -#: ../../library/optparse.rst:1765 -msgid "" -"is the argument to this option seen on the command-line. :mod:`!optparse` " -"will only expect an argument if :attr:`~Option.type` is set; the type of " -"``value`` will be the type implied by the option's type. " -"If :attr:`~Option.type` for this option is ``None`` (no argument expected), " -"then ``value`` will be ``None``. If :attr:`~Option.nargs` > 1, ``value`` " -"will be a tuple of values of the appropriate type." +msgid "is the argument to this option seen on the command-line. :mod:`!optparse` will only expect an argument if :attr:`~Option.type` is set; the type of ``value`` will be the type implied by the option's type. If :attr:`~Option.type` for this option is ``None`` (no argument expected), then ``value`` will be ``None``. If :attr:`~Option.nargs` > 1, ``value`` will be a tuple of values of the appropriate type." msgstr "" -#: ../../library/optparse.rst:1771 msgid "``parser``" msgstr "" -#: ../../library/optparse.rst:1772 -msgid "" -"is the OptionParser instance driving the whole thing, mainly useful because " -"you can access some other interesting data through its instance attributes:" +msgid "is the OptionParser instance driving the whole thing, mainly useful because you can access some other interesting data through its instance attributes:" msgstr "" -#: ../../library/optparse.rst:1775 msgid "``parser.largs``" msgstr "" -#: ../../library/optparse.rst:1776 -msgid "" -"the current list of leftover arguments, ie. arguments that have been " -"consumed but are neither options nor option arguments. Feel free to modify " -"``parser.largs``, e.g. by adding more arguments to it. (This list will " -"become ``args``, the second return value " -"of :meth:`~OptionParser.parse_args`.)" +msgid "the current list of leftover arguments, ie. arguments that have been consumed but are neither options nor option arguments. Feel free to modify ``parser.largs``, e.g. by adding more arguments to it. (This list will become ``args``, the second return value of :meth:`~OptionParser.parse_args`.)" msgstr "" -#: ../../library/optparse.rst:1781 msgid "``parser.rargs``" msgstr "" -#: ../../library/optparse.rst:1782 -msgid "" -"the current list of remaining arguments, ie. with ``opt_str`` and ``value`` " -"(if applicable) removed, and only the arguments following them still there. " -"Feel free to modify ``parser.rargs``, e.g. by consuming more arguments." +msgid "the current list of remaining arguments, ie. with ``opt_str`` and ``value`` (if applicable) removed, and only the arguments following them still there. Feel free to modify ``parser.rargs``, e.g. by consuming more arguments." msgstr "" -#: ../../library/optparse.rst:1787 msgid "``parser.values``" msgstr "" -#: ../../library/optparse.rst:1788 -msgid "" -"the object where option values are by default stored (an instance of " -"optparse.OptionValues). This lets callbacks use the same mechanism as the " -"rest of :mod:`!optparse` for storing option values; you don't need to mess " -"around with globals or closures. You can also access or modify the value(s) " -"of any options already encountered on the command-line." +msgid "the object where option values are by default stored (an instance of optparse.OptionValues). This lets callbacks use the same mechanism as the rest of :mod:`!optparse` for storing option values; you don't need to mess around with globals or closures. You can also access or modify the value(s) of any options already encountered on the command-line." msgstr "" -#: ../../library/optparse.rst:1795 -msgid "" -"is a tuple of arbitrary positional arguments supplied via " -"the :attr:`~Option.callback_args` option attribute." +msgid "is a tuple of arbitrary positional arguments supplied via the :attr:`~Option.callback_args` option attribute." msgstr "" -#: ../../library/optparse.rst:1798 msgid "``kwargs``" msgstr "" -#: ../../library/optparse.rst:1799 -msgid "" -"is a dictionary of arbitrary keyword arguments supplied " -"via :attr:`~Option.callback_kwargs`." +msgid "is a dictionary of arbitrary keyword arguments supplied via :attr:`~Option.callback_kwargs`." msgstr "" -#: ../../library/optparse.rst:1806 msgid "Raising errors in a callback" msgstr "" -#: ../../library/optparse.rst:1808 -msgid "" -"The callback function should raise :exc:`OptionValueError` if there are any " -"problems with the option or its argument(s). :mod:`!optparse` catches this " -"and terminates the program, printing the error message you supply to " -"stderr. Your message should be clear, concise, accurate, and mention the " -"option at fault. Otherwise, the user will have a hard time figuring out what " -"they did wrong." +msgid "The callback function should raise :exc:`OptionValueError` if there are any problems with the option or its argument(s). :mod:`!optparse` catches this and terminates the program, printing the error message you supply to stderr. Your message should be clear, concise, accurate, and mention the option at fault. Otherwise, the user will have a hard time figuring out what they did wrong." msgstr "" -#: ../../library/optparse.rst:1818 msgid "Callback example 1: trivial callback" msgstr "" -#: ../../library/optparse.rst:1820 -msgid "" -"Here's an example of a callback option that takes no arguments, and simply " -"records that the option was seen::" +msgid "Here's an example of a callback option that takes no arguments, and simply records that the option was seen::" msgstr "" -#: ../../library/optparse.rst:1823 msgid "" "def record_foo_seen(option, opt_str, value, parser):\n" " parser.values.saw_foo = True\n" @@ -2860,21 +1649,15 @@ msgid "" "parser.add_option(\"--foo\", action=\"callback\", callback=record_foo_seen)" msgstr "" -#: ../../library/optparse.rst:1828 msgid "Of course, you could do that with the ``\"store_true\"`` action." msgstr "" -#: ../../library/optparse.rst:1834 msgid "Callback example 2: check option order" msgstr "" -#: ../../library/optparse.rst:1836 -msgid "" -"Here's a slightly more interesting example: record the fact that ``-a`` is " -"seen, but blow up if it comes after ``-b`` in the command-line. ::" +msgid "Here's a slightly more interesting example: record the fact that ``-a`` is seen, but blow up if it comes after ``-b`` in the command-line. ::" msgstr "" -#: ../../library/optparse.rst:1839 msgid "" "def check_order(option, opt_str, value, parser):\n" " if parser.values.b:\n" @@ -2885,44 +1668,29 @@ msgid "" "parser.add_option(\"-b\", action=\"store_true\", dest=\"b\")" msgstr "" -#: ../../library/optparse.rst:1851 msgid "Callback example 3: check option order (generalized)" msgstr "" -#: ../../library/optparse.rst:1853 -msgid "" -"If you want to reuse this callback for several similar options (set a flag, " -"but blow up if ``-b`` has already been seen), it needs a bit of work: the " -"error message and the flag that it sets must be generalized. ::" +msgid "If you want to reuse this callback for several similar options (set a flag, but blow up if ``-b`` has already been seen), it needs a bit of work: the error message and the flag that it sets must be generalized. ::" msgstr "" -#: ../../library/optparse.rst:1857 msgid "" "def check_order(option, opt_str, value, parser):\n" " if parser.values.b:\n" " raise OptionValueError(\"can't use %s after -b\" % opt_str)\n" " setattr(parser.values, option.dest, 1)\n" "...\n" -"parser.add_option(\"-a\", action=\"callback\", callback=check_order, " -"dest='a')\n" +"parser.add_option(\"-a\", action=\"callback\", callback=check_order, dest='a')\n" "parser.add_option(\"-b\", action=\"store_true\", dest=\"b\")\n" -"parser.add_option(\"-c\", action=\"callback\", callback=check_order, " -"dest='c')" +"parser.add_option(\"-c\", action=\"callback\", callback=check_order, dest='c')" msgstr "" -#: ../../library/optparse.rst:1870 msgid "Callback example 4: check arbitrary condition" msgstr "" -#: ../../library/optparse.rst:1872 -msgid "" -"Of course, you could put any condition in there---you're not limited to " -"checking the values of already-defined options. For example, if you have " -"options that should not be called when the moon is full, all you have to do " -"is this::" +msgid "Of course, you could put any condition in there---you're not limited to checking the values of already-defined options. For example, if you have options that should not be called when the moon is full, all you have to do is this::" msgstr "" -#: ../../library/optparse.rst:1876 msgid "" "def check_moon(option, opt_str, value, parser):\n" " if is_moon_full():\n" @@ -2934,32 +1702,18 @@ msgid "" " action=\"callback\", callback=check_moon, dest=\"foo\")" msgstr "" -#: ../../library/optparse.rst:1885 -msgid "" -"(The definition of ``is_moon_full()`` is left as an exercise for the reader.)" +msgid "(The definition of ``is_moon_full()`` is left as an exercise for the reader.)" msgstr "" -#: ../../library/optparse.rst:1891 msgid "Callback example 5: fixed arguments" msgstr "" -#: ../../library/optparse.rst:1893 -msgid "" -"Things get slightly more interesting when you define callback options that " -"take a fixed number of arguments. Specifying that a callback option takes " -"arguments is similar to defining a ``\"store\"`` or ``\"append\"`` option: " -"if you define :attr:`~Option.type`, then the option takes one argument that " -"must be convertible to that type; if you further " -"define :attr:`~Option.nargs`, then the option takes :attr:`~Option.nargs` " -"arguments." +msgid "Things get slightly more interesting when you define callback options that take a fixed number of arguments. Specifying that a callback option takes arguments is similar to defining a ``\"store\"`` or ``\"append\"`` option: if you define :attr:`~Option.type`, then the option takes one argument that must be convertible to that type; if you further define :attr:`~Option.nargs`, then the option takes :attr:`~Option.nargs` arguments." msgstr "" -#: ../../library/optparse.rst:1900 -msgid "" -"Here's an example that just emulates the standard ``\"store\"`` action::" +msgid "Here's an example that just emulates the standard ``\"store\"`` action::" msgstr "" -#: ../../library/optparse.rst:1902 msgid "" "def store_value(option, opt_str, value, parser):\n" " setattr(parser.values, option.dest, value)\n" @@ -2969,59 +1723,30 @@ msgid "" " type=\"int\", nargs=3, dest=\"foo\")" msgstr "" -#: ../../library/optparse.rst:1909 -msgid "" -"Note that :mod:`!optparse` takes care of consuming 3 arguments and " -"converting them to integers for you; all you have to do is store them. (Or " -"whatever; obviously you don't need a callback for this example.)" +msgid "Note that :mod:`!optparse` takes care of consuming 3 arguments and converting them to integers for you; all you have to do is store them. (Or whatever; obviously you don't need a callback for this example.)" msgstr "" -#: ../../library/optparse.rst:1917 msgid "Callback example 6: variable arguments" msgstr "" -#: ../../library/optparse.rst:1919 -msgid "" -"Things get hairy when you want an option to take a variable number of " -"arguments. For this case, you must write a callback, as :mod:`!optparse` " -"doesn't provide any built-in capabilities for it. And you have to deal with " -"certain intricacies of conventional Unix command-line parsing that :mod:`!" -"optparse` normally handles for you. In particular, callbacks should " -"implement the conventional rules for bare ``--`` and ``-`` arguments:" +msgid "Things get hairy when you want an option to take a variable number of arguments. For this case, you must write a callback, as :mod:`!optparse` doesn't provide any built-in capabilities for it. And you have to deal with certain intricacies of conventional Unix command-line parsing that :mod:`!optparse` normally handles for you. In particular, callbacks should implement the conventional rules for bare ``--`` and ``-`` arguments:" msgstr "" -#: ../../library/optparse.rst:1926 msgid "either ``--`` or ``-`` can be option arguments" msgstr "" -#: ../../library/optparse.rst:1928 -msgid "" -"bare ``--`` (if not the argument to some option): halt command-line " -"processing and discard the ``--``" +msgid "bare ``--`` (if not the argument to some option): halt command-line processing and discard the ``--``" msgstr "" -#: ../../library/optparse.rst:1931 -msgid "" -"bare ``-`` (if not the argument to some option): halt command-line " -"processing but keep the ``-`` (append it to ``parser.largs``)" +msgid "bare ``-`` (if not the argument to some option): halt command-line processing but keep the ``-`` (append it to ``parser.largs``)" msgstr "" -#: ../../library/optparse.rst:1934 -msgid "" -"If you want an option that takes a variable number of arguments, there are " -"several subtle, tricky issues to worry about. The exact implementation you " -"choose will be based on which trade-offs you're willing to make for your " -"application (which is why :mod:`!optparse` doesn't support this sort of " -"thing directly)." +msgid "If you want an option that takes a variable number of arguments, there are several subtle, tricky issues to worry about. The exact implementation you choose will be based on which trade-offs you're willing to make for your application (which is why :mod:`!optparse` doesn't support this sort of thing directly)." msgstr "" -#: ../../library/optparse.rst:1940 -msgid "" -"Nevertheless, here's a stab at a callback for an option with variable " -"arguments::" +msgid "Nevertheless, here's a stab at a callback for an option with variable arguments::" msgstr "" -#: ../../library/optparse.rst:1943 msgid "" "def vararg_callback(option, opt_str, value, parser):\n" " assert value is None\n" @@ -3051,90 +1776,47 @@ msgid "" " action=\"callback\", callback=vararg_callback)" msgstr "" -#: ../../library/optparse.rst:1974 msgid "Extending :mod:`!optparse`" msgstr "" -#: ../../library/optparse.rst:1976 -msgid "" -"Since the two major controlling factors in how :mod:`!optparse` interprets " -"command-line options are the action and type of each option, the most likely " -"direction of extension is to add new actions and new types." +msgid "Since the two major controlling factors in how :mod:`!optparse` interprets command-line options are the action and type of each option, the most likely direction of extension is to add new actions and new types." msgstr "" -#: ../../library/optparse.rst:1984 msgid "Adding new types" msgstr "" -#: ../../library/optparse.rst:1986 -msgid "" -"To add new types, you need to define your own subclass of :mod:`!" -"optparse`'s :class:`Option` class. This class has a couple of attributes " -"that define :mod:`!optparse`'s types: :attr:`~Option.TYPES` " -"and :attr:`~Option.TYPE_CHECKER`." +msgid "To add new types, you need to define your own subclass of :mod:`!optparse`'s :class:`Option` class. This class has a couple of attributes that define :mod:`!optparse`'s types: :attr:`~Option.TYPES` and :attr:`~Option.TYPE_CHECKER`." msgstr "" -#: ../../library/optparse.rst:1992 -msgid "" -"A tuple of type names; in your subclass, simply define a new " -"tuple :attr:`TYPES` that builds on the standard one." +msgid "A tuple of type names; in your subclass, simply define a new tuple :attr:`TYPES` that builds on the standard one." msgstr "" -#: ../../library/optparse.rst:1997 -msgid "" -"A dictionary mapping type names to type-checking functions. A type-checking " -"function has the following signature::" +msgid "A dictionary mapping type names to type-checking functions. A type-checking function has the following signature::" msgstr "" -#: ../../library/optparse.rst:2000 msgid "def check_mytype(option, opt, value)" msgstr "" -#: ../../library/optparse.rst:2002 -msgid "" -"where ``option`` is an :class:`Option` instance, ``opt`` is an option string " -"(e.g., ``-f``), and ``value`` is the string from the command line that must " -"be checked and converted to your desired type. ``check_mytype()`` should " -"return an object of the hypothetical type ``mytype``. The value returned by " -"a type-checking function will wind up in the OptionValues instance returned " -"by :meth:`OptionParser.parse_args`, or be passed to a callback as the " -"``value`` parameter." +msgid "where ``option`` is an :class:`Option` instance, ``opt`` is an option string (e.g., ``-f``), and ``value`` is the string from the command line that must be checked and converted to your desired type. ``check_mytype()`` should return an object of the hypothetical type ``mytype``. The value returned by a type-checking function will wind up in the OptionValues instance returned by :meth:`OptionParser.parse_args`, or be passed to a callback as the ``value`` parameter." msgstr "" -#: ../../library/optparse.rst:2010 -msgid "" -"Your type-checking function should raise :exc:`OptionValueError` if it " -"encounters any problems. :exc:`OptionValueError` takes a single string " -"argument, which is passed as-is to :class:`OptionParser`'s :meth:`error` " -"method, which in turn prepends the program name and the string ``\"error:" -"\"`` and prints everything to stderr before terminating the process." +msgid "Your type-checking function should raise :exc:`OptionValueError` if it encounters any problems. :exc:`OptionValueError` takes a single string argument, which is passed as-is to :class:`OptionParser`'s :meth:`error` method, which in turn prepends the program name and the string ``\"error:\"`` and prints everything to stderr before terminating the process." msgstr "" -#: ../../library/optparse.rst:2016 -msgid "" -"Here's a silly example that demonstrates adding a ``\"complex\"`` option " -"type to parse Python-style complex numbers on the command line. (This is " -"even sillier than it used to be, because :mod:`!optparse` 1.3 added built-in " -"support for complex numbers, but never mind.)" +msgid "Here's a silly example that demonstrates adding a ``\"complex\"`` option type to parse Python-style complex numbers on the command line. (This is even sillier than it used to be, because :mod:`!optparse` 1.3 added built-in support for complex numbers, but never mind.)" msgstr "" -#: ../../library/optparse.rst:2021 msgid "First, the necessary imports::" msgstr "" -#: ../../library/optparse.rst:2023 msgid "" "from copy import copy\n" "from optparse import Option, OptionValueError" msgstr "" -#: ../../library/optparse.rst:2026 -msgid "" -"You need to define your type-checker first, since it's referred to later (in " -"the :attr:`~Option.TYPE_CHECKER` class attribute of your Option subclass)::" +msgid "You need to define your type-checker first, since it's referred to later (in the :attr:`~Option.TYPE_CHECKER` class attribute of your Option subclass)::" msgstr "" -#: ../../library/optparse.rst:2029 msgid "" "def check_complex(option, opt, value):\n" " try:\n" @@ -3144,11 +1826,9 @@ msgid "" " \"option %s: invalid complex value: %r\" % (opt, value))" msgstr "" -#: ../../library/optparse.rst:2036 msgid "Finally, the Option subclass::" msgstr "" -#: ../../library/optparse.rst:2038 msgid "" "class MyOption (Option):\n" " TYPES = Option.TYPES + (\"complex\",)\n" @@ -3156,142 +1836,79 @@ msgid "" " TYPE_CHECKER[\"complex\"] = check_complex" msgstr "" -#: ../../library/optparse.rst:2043 -msgid "" -"(If we didn't make a :func:`copy` of :attr:`Option.TYPE_CHECKER`, we would " -"end up modifying the :attr:`~Option.TYPE_CHECKER` attribute of :mod:`!" -"optparse`'s Option class. This being Python, nothing stops you from doing " -"that except good manners and common sense.)" +msgid "(If we didn't make a :func:`copy` of :attr:`Option.TYPE_CHECKER`, we would end up modifying the :attr:`~Option.TYPE_CHECKER` attribute of :mod:`!optparse`'s Option class. This being Python, nothing stops you from doing that except good manners and common sense.)" msgstr "" -#: ../../library/optparse.rst:2048 -msgid "" -"That's it! Now you can write a script that uses the new option type just " -"like any other :mod:`!optparse`\\ -based script, except you have to instruct " -"your OptionParser to use MyOption instead of Option::" +msgid "That's it! Now you can write a script that uses the new option type just like any other :mod:`!optparse`\\ -based script, except you have to instruct your OptionParser to use MyOption instead of Option::" msgstr "" -#: ../../library/optparse.rst:2052 msgid "" "parser = OptionParser(option_class=MyOption)\n" "parser.add_option(\"-c\", type=\"complex\")" msgstr "" -#: ../../library/optparse.rst:2055 -msgid "" -"Alternately, you can build your own option list and pass it to OptionParser; " -"if you don't use :meth:`add_option` in the above way, you don't need to tell " -"OptionParser which option class to use::" +msgid "Alternately, you can build your own option list and pass it to OptionParser; if you don't use :meth:`add_option` in the above way, you don't need to tell OptionParser which option class to use::" msgstr "" -#: ../../library/optparse.rst:2059 msgid "" -"option_list = [MyOption(\"-c\", action=\"store\", type=\"complex\", " -"dest=\"c\")]\n" +"option_list = [MyOption(\"-c\", action=\"store\", type=\"complex\", dest=\"c\")]\n" "parser = OptionParser(option_list=option_list)" msgstr "" -#: ../../library/optparse.rst:2066 msgid "Adding new actions" msgstr "" -#: ../../library/optparse.rst:2068 -msgid "" -"Adding new actions is a bit trickier, because you have to understand " -"that :mod:`!optparse` has a couple of classifications for actions:" +msgid "Adding new actions is a bit trickier, because you have to understand that :mod:`!optparse` has a couple of classifications for actions:" msgstr "" -#: ../../library/optparse.rst:2071 msgid "\"store\" actions" msgstr "" -#: ../../library/optparse.rst:2072 -msgid "" -"actions that result in :mod:`!optparse` storing a value to an attribute of " -"the current OptionValues instance; these options require " -"a :attr:`~Option.dest` attribute to be supplied to the Option constructor." +msgid "actions that result in :mod:`!optparse` storing a value to an attribute of the current OptionValues instance; these options require a :attr:`~Option.dest` attribute to be supplied to the Option constructor." msgstr "" -#: ../../library/optparse.rst:2076 msgid "\"typed\" actions" msgstr "" -#: ../../library/optparse.rst:2077 -msgid "" -"actions that take a value from the command line and expect it to be of a " -"certain type; or rather, a string that can be converted to a certain type. " -"These options require a :attr:`~Option.type` attribute to the Option " -"constructor." +msgid "actions that take a value from the command line and expect it to be of a certain type; or rather, a string that can be converted to a certain type. These options require a :attr:`~Option.type` attribute to the Option constructor." msgstr "" -#: ../../library/optparse.rst:2082 -msgid "" -"These are overlapping sets: some default \"store\" actions are " -"``\"store\"``, ``\"store_const\"``, ``\"append\"``, and ``\"count\"``, while " -"the default \"typed\" actions are ``\"store\"``, ``\"append\"``, and " -"``\"callback\"``." +msgid "These are overlapping sets: some default \"store\" actions are ``\"store\"``, ``\"store_const\"``, ``\"append\"``, and ``\"count\"``, while the default \"typed\" actions are ``\"store\"``, ``\"append\"``, and ``\"callback\"``." msgstr "" -#: ../../library/optparse.rst:2086 -msgid "" -"When you add an action, you need to categorize it by listing it in at least " -"one of the following class attributes of Option (all are lists of strings):" +msgid "When you add an action, you need to categorize it by listing it in at least one of the following class attributes of Option (all are lists of strings):" msgstr "" -#: ../../library/optparse.rst:2091 msgid "All actions must be listed in ACTIONS." msgstr "" -#: ../../library/optparse.rst:2095 msgid "\"store\" actions are additionally listed here." msgstr "" -#: ../../library/optparse.rst:2099 msgid "\"typed\" actions are additionally listed here." msgstr "" -#: ../../library/optparse.rst:2103 -msgid "" -"Actions that always take a type (i.e. whose options always take a value) are " -"additionally listed here. The only effect of this is that :mod:`!optparse` " -"assigns the default type, ``\"string\"``, to options with no explicit type " -"whose action is listed in :attr:`ALWAYS_TYPED_ACTIONS`." +msgid "Actions that always take a type (i.e. whose options always take a value) are additionally listed here. The only effect of this is that :mod:`!optparse` assigns the default type, ``\"string\"``, to options with no explicit type whose action is listed in :attr:`ALWAYS_TYPED_ACTIONS`." msgstr "" -#: ../../library/optparse.rst:2108 -msgid "" -"In order to actually implement your new action, you must override " -"Option's :meth:`take_action` method and add a case that recognizes your " -"action." +msgid "In order to actually implement your new action, you must override Option's :meth:`take_action` method and add a case that recognizes your action." msgstr "" -#: ../../library/optparse.rst:2111 -msgid "" -"For example, let's add an ``\"extend\"`` action. This is similar to the " -"standard ``\"append\"`` action, but instead of taking a single value from " -"the command-line and appending it to an existing list, ``\"extend\"`` will " -"take multiple values in a single comma-delimited string, and extend an " -"existing list with them. That is, if ``--names`` is an ``\"extend\"`` " -"option of type ``\"string\"``, the command line ::" +msgid "For example, let's add an ``\"extend\"`` action. This is similar to the standard ``\"append\"`` action, but instead of taking a single value from the command-line and appending it to an existing list, ``\"extend\"`` will take multiple values in a single comma-delimited string, and extend an existing list with them. That is, if ``--names`` is an ``\"extend\"`` option of type ``\"string\"``, the command line ::" msgstr "" -#: ../../library/optparse.rst:2118 msgid "--names=foo,bar --names blah --names ding,dong" msgstr "" -#: ../../library/optparse.rst:2120 msgid "would result in a list ::" msgstr "" -#: ../../library/optparse.rst:2122 msgid "[\"foo\", \"bar\", \"blah\", \"ding\", \"dong\"]" msgstr "" -#: ../../library/optparse.rst:2124 msgid "Again we define a subclass of Option::" msgstr "" -#: ../../library/optparse.rst:2126 msgid "" "class MyOption(Option):\n" "\n" @@ -3309,77 +1926,41 @@ msgid "" " self, action, dest, opt, value, values, parser)" msgstr "" -#: ../../library/optparse.rst:2141 msgid "Features of note:" msgstr "" -#: ../../library/optparse.rst:2143 -msgid "" -"``\"extend\"`` both expects a value on the command-line and stores that " -"value somewhere, so it goes in both :attr:`~Option.STORE_ACTIONS` " -"and :attr:`~Option.TYPED_ACTIONS`." +msgid "``\"extend\"`` both expects a value on the command-line and stores that value somewhere, so it goes in both :attr:`~Option.STORE_ACTIONS` and :attr:`~Option.TYPED_ACTIONS`." msgstr "" -#: ../../library/optparse.rst:2147 -msgid "" -"to ensure that :mod:`!optparse` assigns the default type of ``\"string\"`` " -"to ``\"extend\"`` actions, we put the ``\"extend\"`` action " -"in :attr:`~Option.ALWAYS_TYPED_ACTIONS` as well." +msgid "to ensure that :mod:`!optparse` assigns the default type of ``\"string\"`` to ``\"extend\"`` actions, we put the ``\"extend\"`` action in :attr:`~Option.ALWAYS_TYPED_ACTIONS` as well." msgstr "" -#: ../../library/optparse.rst:2151 -msgid "" -":meth:`MyOption.take_action` implements just this one new action, and passes " -"control back to :meth:`Option.take_action` for the standard :mod:`!optparse` " -"actions." +msgid ":meth:`MyOption.take_action` implements just this one new action, and passes control back to :meth:`Option.take_action` for the standard :mod:`!optparse` actions." msgstr "" -#: ../../library/optparse.rst:2155 -msgid "" -"``values`` is an instance of the optparse_parser.Values class, which " -"provides the very useful :meth:`ensure_value` method. :meth:`ensure_value` " -"is essentially :func:`getattr` with a safety valve; it is called as ::" +msgid "``values`` is an instance of the optparse_parser.Values class, which provides the very useful :meth:`ensure_value` method. :meth:`ensure_value` is essentially :func:`getattr` with a safety valve; it is called as ::" msgstr "" -#: ../../library/optparse.rst:2159 msgid "values.ensure_value(attr, value)" msgstr "" -#: ../../library/optparse.rst:2161 -msgid "" -"If the ``attr`` attribute of ``values`` doesn't exist or is ``None``, then " -"ensure_value() first sets it to ``value``, and then returns ``value``. This " -"is very handy for actions like ``\"extend\"``, ``\"append\"``, and " -"``\"count\"``, all of which accumulate data in a variable and expect that " -"variable to be of a certain type (a list for the first two, an integer for " -"the latter). Using :meth:`ensure_value` means that scripts using your " -"action don't have to worry about setting a default value for the option " -"destinations in question; they can just leave the default as ``None`` " -"and :meth:`ensure_value` will take care of getting it right when it's needed." -msgstr "" - -#: ../../library/optparse.rst:2172 +msgid "If the ``attr`` attribute of ``values`` doesn't exist or is ``None``, then ensure_value() first sets it to ``value``, and then returns ``value``. This is very handy for actions like ``\"extend\"``, ``\"append\"``, and ``\"count\"``, all of which accumulate data in a variable and expect that variable to be of a certain type (a list for the first two, an integer for the latter). Using :meth:`ensure_value` means that scripts using your action don't have to worry about setting a default value for the option destinations in question; they can just leave the default as ``None`` and :meth:`ensure_value` will take care of getting it right when it's needed." +msgstr "" + msgid "Exceptions" msgstr "" -#: ../../library/optparse.rst:2176 -msgid "" -"Raised if an :class:`Option` instance is created with invalid or " -"inconsistent arguments." +msgid "Raised if an :class:`Option` instance is created with invalid or inconsistent arguments." msgstr "" -#: ../../library/optparse.rst:2181 msgid "Raised if conflicting options are added to an :class:`OptionParser`." msgstr "" -#: ../../library/optparse.rst:2185 msgid "Raised if an invalid option value is encountered on the command line." msgstr "" -#: ../../library/optparse.rst:2189 msgid "Raised if an invalid option is passed on the command line." msgstr "" -#: ../../library/optparse.rst:2193 msgid "Raised if an ambiguous option is passed on the command line." msgstr "" diff --git a/library/os.path.po b/library/os.path.po index 0785021c..568eaf38 100644 --- a/library/os.path.po +++ b/library/os.path.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:10+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,137 +23,63 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/os.path.rst:2 msgid ":mod:`!os.path` --- Common pathname manipulations" msgstr "" -#: ../../library/os.path.rst:7 -msgid "" -"**Source code:** :source:`Lib/genericpath.py`, :source:`Lib/posixpath.py` " -"(for POSIX) and :source:`Lib/ntpath.py` (for Windows)." +msgid "**Source code:** :source:`Lib/genericpath.py`, :source:`Lib/posixpath.py` (for POSIX) and :source:`Lib/ntpath.py` (for Windows)." msgstr "" -#: ../../library/os.path.rst:14 -msgid "" -"This module implements some useful functions on pathnames. To read or write " -"files see :func:`open`, and for accessing the filesystem see the :mod:`os` " -"module. The path parameters can be passed as strings, or bytes, or any " -"object implementing the :class:`os.PathLike` protocol." +msgid "This module implements some useful functions on pathnames. To read or write files see :func:`open`, and for accessing the filesystem see the :mod:`os` module. The path parameters can be passed as strings, or bytes, or any object implementing the :class:`os.PathLike` protocol." msgstr "" -#: ../../library/os.path.rst:19 -msgid "" -"Unlike a Unix shell, Python does not do any *automatic* path expansions. " -"Functions such as :func:`expanduser` and :func:`expandvars` can be invoked " -"explicitly when an application desires shell-like path expansion. (See also " -"the :mod:`glob` module.)" +msgid "Unlike a Unix shell, Python does not do any *automatic* path expansions. Functions such as :func:`expanduser` and :func:`expandvars` can be invoked explicitly when an application desires shell-like path expansion. (See also the :mod:`glob` module.)" msgstr "" -#: ../../library/os.path.rst:26 msgid "The :mod:`pathlib` module offers high-level path objects." msgstr "" -#: ../../library/os.path.rst:31 -msgid "" -"All of these functions accept either only bytes or only string objects as " -"their parameters. The result is an object of the same type, if a path or " -"file name is returned." +msgid "All of these functions accept either only bytes or only string objects as their parameters. The result is an object of the same type, if a path or file name is returned." msgstr "" -#: ../../library/os.path.rst:37 -msgid "" -"Since different operating systems have different path name conventions, " -"there are several versions of this module in the standard library. " -"The :mod:`!os.path` module is always the path module suitable for the " -"operating system Python is running on, and therefore usable for local " -"paths. However, you can also import and use the individual modules if you " -"want to manipulate a path that is *always* in one of the different formats. " -"They all have the same interface:" +msgid "Since different operating systems have different path name conventions, there are several versions of this module in the standard library. The :mod:`!os.path` module is always the path module suitable for the operating system Python is running on, and therefore usable for local paths. However, you can also import and use the individual modules if you want to manipulate a path that is *always* in one of the different formats. They all have the same interface:" msgstr "" -#: ../../library/os.path.rst:45 msgid ":mod:`!posixpath` for UNIX-style paths" msgstr "" -#: ../../library/os.path.rst:46 msgid ":mod:`!ntpath` for Windows paths" msgstr "" -#: ../../library/os.path.rst:51 -msgid "" -":func:`exists`, :func:`lexists`, :func:`isdir`, :func:`isfile`, :func:`islink`, " -"and :func:`ismount` now return ``False`` instead of raising an exception for " -"paths that contain characters or bytes unrepresentable at the OS level." +msgid ":func:`exists`, :func:`lexists`, :func:`isdir`, :func:`isfile`, :func:`islink`, and :func:`ismount` now return ``False`` instead of raising an exception for paths that contain characters or bytes unrepresentable at the OS level." msgstr "" -#: ../../library/os.path.rst:59 -msgid "" -"Return a normalized absolutized version of the pathname *path*. On most " -"platforms, this is equivalent to calling ``normpath(join(os.getcwd(), " -"path))``." +msgid "Return a normalized absolutized version of the pathname *path*. On most platforms, this is equivalent to calling ``normpath(join(os.getcwd(), path))``." msgstr "" -#: ../../library/os.path.rst:62 msgid ":func:`os.path.join` and :func:`os.path.normpath`." msgstr "" -#: ../../library/os.path.rst:64 ../../library/os.path.rst:77 -#: ../../library/os.path.rst:120 ../../library/os.path.rst:129 -#: ../../library/os.path.rst:145 ../../library/os.path.rst:155 -#: ../../library/os.path.rst:181 ../../library/os.path.rst:201 -#: ../../library/os.path.rst:218 ../../library/os.path.rst:230 -#: ../../library/os.path.rst:239 ../../library/os.path.rst:251 -#: ../../library/os.path.rst:265 ../../library/os.path.rst:275 -#: ../../library/os.path.rst:294 ../../library/os.path.rst:314 -#: ../../library/os.path.rst:400 ../../library/os.path.rst:420 -#: ../../library/os.path.rst:460 ../../library/os.path.rst:489 -#: ../../library/os.path.rst:505 ../../library/os.path.rst:516 -#: ../../library/os.path.rst:543 ../../library/os.path.rst:568 -#: ../../library/os.path.rst:632 msgid "Accepts a :term:`path-like object`." msgstr "" -#: ../../library/os.path.rst:70 -msgid "" -"Return the base name of pathname *path*. This is the second element of the " -"pair returned by passing *path* to the function :func:`split`. Note that " -"the result of this function is different from the Unix :program:`basename` " -"program; where :program:`basename` for ``'/foo/bar/'`` returns ``'bar'``, " -"the :func:`basename` function returns an empty string (``''``)." +msgid "Return the base name of pathname *path*. This is the second element of the pair returned by passing *path* to the function :func:`split`. Note that the result of this function is different from the Unix :program:`basename` program; where :program:`basename` for ``'/foo/bar/'`` returns ``'bar'``, the :func:`basename` function returns an empty string (``''``)." msgstr "" -#: ../../library/os.path.rst:83 -msgid "" -"Return the longest common sub-path of each pathname in the iterable " -"*paths*. Raise :exc:`ValueError` if *paths* contain both absolute and " -"relative pathnames, if *paths* are on different drives, or if *paths* is " -"empty. Unlike :func:`commonprefix`, this returns a valid path." +msgid "Return the longest common sub-path of each pathname in the iterable *paths*. Raise :exc:`ValueError` if *paths* contain both absolute and relative pathnames, if *paths* are on different drives, or if *paths* is empty. Unlike :func:`commonprefix`, this returns a valid path." msgstr "" -#: ../../library/os.path.rst:91 msgid "Accepts a sequence of :term:`path-like objects `." msgstr "" -#: ../../library/os.path.rst:94 msgid "Any iterable can now be passed, rather than just sequences." msgstr "" -#: ../../library/os.path.rst:100 -msgid "" -"Return the longest string prefix (taken character-by-character) that is a " -"prefix of all strings in *list*. If *list* is empty, return the empty " -"string (``''``)." +msgid "Return the longest string prefix (taken character-by-character) that is a prefix of all strings in *list*. If *list* is empty, return the empty string (``''``)." msgstr "" -#: ../../library/os.path.rst:106 -msgid "" -"This function may return invalid paths because it works a character at a " -"time. If you need a **common path prefix**, then the algorithm implemented " -"in this function is not secure. Use :func:`commonpath` for finding a common " -"path prefix." +msgid "This function may return invalid paths because it works a character at a time. If you need a **common path prefix**, then the algorithm implemented in this function is not secure. Use :func:`commonpath` for finding a common path prefix." msgstr "" -#: ../../library/os.path.rst:114 msgid "" ">>> os.path.commonprefix(['/usr/lib', '/usr/local/lib'])\n" "'/usr/l'\n" @@ -162,242 +88,105 @@ msgid "" "'/usr'" msgstr "" -#: ../../library/os.path.rst:126 -msgid "" -"Return the directory name of pathname *path*. This is the first element of " -"the pair returned by passing *path* to the function :func:`split`." +msgid "Return the directory name of pathname *path*. This is the first element of the pair returned by passing *path* to the function :func:`split`." msgstr "" -#: ../../library/os.path.rst:135 -msgid "" -"Return ``True`` if *path* refers to an existing path or an open file " -"descriptor. Returns ``False`` for broken symbolic links. On some " -"platforms, this function may return ``False`` if permission is not granted " -"to execute :func:`os.stat` on the requested file, even if the *path* " -"physically exists." +msgid "Return ``True`` if *path* refers to an existing path or an open file descriptor. Returns ``False`` for broken symbolic links. On some platforms, this function may return ``False`` if permission is not granted to execute :func:`os.stat` on the requested file, even if the *path* physically exists." msgstr "" -#: ../../library/os.path.rst:141 -msgid "" -"*path* can now be an integer: ``True`` is returned if it is an open file " -"descriptor, ``False`` otherwise." +msgid "*path* can now be an integer: ``True`` is returned if it is an open file descriptor, ``False`` otherwise." msgstr "" -#: ../../library/os.path.rst:151 -msgid "" -"Return ``True`` if *path* refers to an existing path, including broken " -"symbolic links. Equivalent to :func:`exists` on platforms " -"lacking :func:`os.lstat`." +msgid "Return ``True`` if *path* refers to an existing path, including broken symbolic links. Equivalent to :func:`exists` on platforms lacking :func:`os.lstat`." msgstr "" -#: ../../library/os.path.rst:163 -msgid "" -"On Unix and Windows, return the argument with an initial component of ``~`` " -"or ``~user`` replaced by that *user*'s home directory." +msgid "On Unix and Windows, return the argument with an initial component of ``~`` or ``~user`` replaced by that *user*'s home directory." msgstr "" -#: ../../library/os.path.rst:168 -msgid "" -"On Unix, an initial ``~`` is replaced by the environment " -"variable :envvar:`HOME` if it is set; otherwise the current user's home " -"directory is looked up in the password directory through the built-in " -"module :mod:`pwd`. An initial ``~user`` is looked up directly in the " -"password directory." +msgid "On Unix, an initial ``~`` is replaced by the environment variable :envvar:`HOME` if it is set; otherwise the current user's home directory is looked up in the password directory through the built-in module :mod:`pwd`. An initial ``~user`` is looked up directly in the password directory." msgstr "" -#: ../../library/os.path.rst:173 -msgid "" -"On Windows, :envvar:`USERPROFILE` will be used if set, otherwise a " -"combination of :envvar:`HOMEPATH` and :envvar:`HOMEDRIVE` will be used. An " -"initial ``~user`` is handled by checking that the last directory component " -"of the current user's home directory matches :envvar:`USERNAME`, and " -"replacing it if so." +msgid "On Windows, :envvar:`USERPROFILE` will be used if set, otherwise a combination of :envvar:`HOMEPATH` and :envvar:`HOMEDRIVE` will be used. An initial ``~user`` is handled by checking that the last directory component of the current user's home directory matches :envvar:`USERNAME`, and replacing it if so." msgstr "" -#: ../../library/os.path.rst:178 -msgid "" -"If the expansion fails or if the path does not begin with a tilde, the path " -"is returned unchanged." +msgid "If the expansion fails or if the path does not begin with a tilde, the path is returned unchanged." msgstr "" -#: ../../library/os.path.rst:184 msgid "No longer uses :envvar:`HOME` on Windows." msgstr "" -#: ../../library/os.path.rst:193 -msgid "" -"Return the argument with environment variables expanded. Substrings of the " -"form ``$name`` or ``${name}`` are replaced by the value of environment " -"variable *name*. Malformed variable names and references to non-existing " -"variables are left unchanged." +msgid "Return the argument with environment variables expanded. Substrings of the form ``$name`` or ``${name}`` are replaced by the value of environment variable *name*. Malformed variable names and references to non-existing variables are left unchanged." msgstr "" -#: ../../library/os.path.rst:198 -msgid "" -"On Windows, ``%name%`` expansions are supported in addition to ``$name`` and " -"``${name}``." +msgid "On Windows, ``%name%`` expansions are supported in addition to ``$name`` and ``${name}``." msgstr "" -#: ../../library/os.path.rst:207 -msgid "" -"Return the time of last access of *path*. The return value is a floating-" -"point number giving the number of seconds since the epoch (see " -"the :mod:`time` module). Raise :exc:`OSError` if the file does not exist " -"or is inaccessible." +msgid "Return the time of last access of *path*. The return value is a floating-point number giving the number of seconds since the epoch (see the :mod:`time` module). Raise :exc:`OSError` if the file does not exist or is inaccessible." msgstr "" -#: ../../library/os.path.rst:214 -msgid "" -"Return the time of last modification of *path*. The return value is a " -"floating-point number giving the number of seconds since the epoch (see " -"the :mod:`time` module). Raise :exc:`OSError` if the file does not exist or " -"is inaccessible." +msgid "Return the time of last modification of *path*. The return value is a floating-point number giving the number of seconds since the epoch (see the :mod:`time` module). Raise :exc:`OSError` if the file does not exist or is inaccessible." msgstr "" -#: ../../library/os.path.rst:224 -msgid "" -"Return the system's ctime which, on some systems (like Unix) is the time of " -"the last metadata change, and, on others (like Windows), is the creation " -"time for *path*. The return value is a number giving the number of seconds " -"since the epoch (see the :mod:`time` module). Raise :exc:`OSError` if the " -"file does not exist or is inaccessible." +msgid "Return the system's ctime which, on some systems (like Unix) is the time of the last metadata change, and, on others (like Windows), is the creation time for *path*. The return value is a number giving the number of seconds since the epoch (see the :mod:`time` module). Raise :exc:`OSError` if the file does not exist or is inaccessible." msgstr "" -#: ../../library/os.path.rst:236 -msgid "" -"Return the size, in bytes, of *path*. Raise :exc:`OSError` if the file does " -"not exist or is inaccessible." +msgid "Return the size, in bytes, of *path*. Raise :exc:`OSError` if the file does not exist or is inaccessible." msgstr "" -#: ../../library/os.path.rst:245 -msgid "" -"Return ``True`` if *path* is an absolute pathname. On Unix, that means it " -"begins with a slash, on Windows that it begins with two (back)slashes, or a " -"drive letter, colon, and (back)slash together." +msgid "Return ``True`` if *path* is an absolute pathname. On Unix, that means it begins with a slash, on Windows that it begins with two (back)slashes, or a drive letter, colon, and (back)slash together." msgstr "" -#: ../../library/os.path.rst:249 msgid ":func:`abspath`" msgstr "" -#: ../../library/os.path.rst:254 -msgid "" -"On Windows, returns ``False`` if the given path starts with exactly one " -"(back)slash." +msgid "On Windows, returns ``False`` if the given path starts with exactly one (back)slash." msgstr "" -#: ../../library/os.path.rst:261 -msgid "" -"Return ``True`` if *path* is an :func:`existing ` regular file. This " -"follows symbolic links, so both :func:`islink` and :func:`isfile` can be " -"true for the same path." +msgid "Return ``True`` if *path* is an :func:`existing ` regular file. This follows symbolic links, so both :func:`islink` and :func:`isfile` can be true for the same path." msgstr "" -#: ../../library/os.path.rst:271 -msgid "" -"Return ``True`` if *path* is an :func:`existing ` directory. This " -"follows symbolic links, so both :func:`islink` and :func:`isdir` can be true " -"for the same path." +msgid "Return ``True`` if *path* is an :func:`existing ` directory. This follows symbolic links, so both :func:`islink` and :func:`isdir` can be true for the same path." msgstr "" -#: ../../library/os.path.rst:281 -msgid "" -"Return ``True`` if *path* refers to an :func:`existing ` directory " -"entry that is a junction. Always return ``False`` if junctions are not " -"supported on the current platform." +msgid "Return ``True`` if *path* refers to an :func:`existing ` directory entry that is a junction. Always return ``False`` if junctions are not supported on the current platform." msgstr "" -#: ../../library/os.path.rst:290 -msgid "" -"Return ``True`` if *path* refers to an :func:`existing ` directory " -"entry that is a symbolic link. Always ``False`` if symbolic links are not " -"supported by the Python runtime." +msgid "Return ``True`` if *path* refers to an :func:`existing ` directory entry that is a symbolic link. Always ``False`` if symbolic links are not supported by the Python runtime." +msgstr "" + +msgid "Return ``True`` if pathname *path* is a :dfn:`mount point`: a point in a file system where a different file system has been mounted. On POSIX, the function checks whether *path*'s parent, :file:`{path}/..`, is on a different device than *path*, or whether :file:`{path}/..` and *path* point to the same i-node on the same device --- this should detect mount points for all Unix and POSIX variants. It is not able to reliably detect bind mounts on the same filesystem. On Linux systems, it will always return ``True`` for btrfs subvolumes, even if they aren't mount points. On Windows, a drive letter root and a share UNC are always mount points, and for any other path ``GetVolumePathName`` is called to see if it is different from the input path." msgstr "" -#: ../../library/os.path.rst:300 -msgid "" -"Return ``True`` if pathname *path* is a :dfn:`mount point`: a point in a " -"file system where a different file system has been mounted. On POSIX, the " -"function checks whether *path*'s parent, :file:`{path}/..`, is on a " -"different device than *path*, or whether :file:`{path}/..` and *path* point " -"to the same i-node on the same device --- this should detect mount points " -"for all Unix and POSIX variants. It is not able to reliably detect bind " -"mounts on the same filesystem. On Linux systems, it will always return " -"``True`` for btrfs subvolumes, even if they aren't mount points. On Windows, " -"a drive letter root and a share UNC are always mount points, and for any " -"other path ``GetVolumePathName`` is called to see if it is different from " -"the input path." -msgstr "" - -#: ../../library/os.path.rst:311 msgid "Added support for detecting non-root mount points on Windows." msgstr "" -#: ../../library/os.path.rst:320 -msgid "" -"Return ``True`` if pathname *path* is located on a Windows Dev Drive. A Dev " -"Drive is optimized for developer scenarios, and offers faster performance " -"for reading and writing files. It is recommended for use for source code, " -"temporary build directories, package caches, and other IO-intensive " -"operations." +msgid "Return ``True`` if pathname *path* is located on a Windows Dev Drive. A Dev Drive is optimized for developer scenarios, and offers faster performance for reading and writing files. It is recommended for use for source code, temporary build directories, package caches, and other IO-intensive operations." msgstr "" -#: ../../library/os.path.rst:326 -msgid "" -"May raise an error for an invalid path, for example, one without a " -"recognizable drive, but returns ``False`` on platforms that do not support " -"Dev Drives. See `the Windows documentation `_ for information on enabling and creating Dev Drives." +msgid "May raise an error for an invalid path, for example, one without a recognizable drive, but returns ``False`` on platforms that do not support Dev Drives. See `the Windows documentation `_ for information on enabling and creating Dev Drives." msgstr "" -#: ../../library/os.path.rst:333 -msgid "" -"The function is now available on all platforms, and will always return " -"``False`` on those that have no support for Dev Drives" +msgid "The function is now available on all platforms, and will always return ``False`` on those that have no support for Dev Drives" msgstr "" -#: ../../library/os.path.rst:339 msgid "Return ``True`` if *path* is a reserved pathname on the current system." msgstr "" -#: ../../library/os.path.rst:341 -msgid "" -"On Windows, reserved filenames include those that end with a space or dot; " -"those that contain colons (i.e. file streams such as \"name:stream\"), " -"wildcard characters (i.e. ``'*?\"<>'``), pipe, or ASCII control characters; " -"as well as DOS device names such as \"NUL\", \"CON\", \"CONIN$\", \"CONOUT$" -"\", \"AUX\", \"PRN\", \"COM1\", and \"LPT1\"." +msgid "On Windows, reserved filenames include those that end with a space or dot; those that contain colons (i.e. file streams such as \"name:stream\"), wildcard characters (i.e. ``'*?\"<>'``), pipe, or ASCII control characters; as well as DOS device names such as \"NUL\", \"CON\", \"CONIN$\", \"CONOUT$\", \"AUX\", \"PRN\", \"COM1\", and \"LPT1\"." msgstr "" -#: ../../library/os.path.rst:349 -msgid "" -"This function approximates rules for reserved paths on most Windows systems. " -"These rules change over time in various Windows releases. This function may " -"be updated in future Python releases as changes to the rules become broadly " -"available." +msgid "This function approximates rules for reserved paths on most Windows systems. These rules change over time in various Windows releases. This function may be updated in future Python releases as changes to the rules become broadly available." msgstr "" -#: ../../library/os.path.rst:354 msgid "Availability" msgstr "" -#: ../../library/os.path.rst:361 -msgid "" -"Join one or more path segments intelligently. The return value is the " -"concatenation of *path* and all members of *\\*paths*, with exactly one " -"directory separator following each non-empty part, except the last. That is, " -"the result will only end in a separator if the last part is either empty or " -"ends in a separator." +msgid "Join one or more path segments intelligently. The return value is the concatenation of *path* and all members of *\\*paths*, with exactly one directory separator following each non-empty part, except the last. That is, the result will only end in a separator if the last part is either empty or ends in a separator." msgstr "" -#: ../../library/os.path.rst:367 -msgid "" -"If a segment is an absolute path (which on Windows requires both a drive and " -"a root), then all previous segments are ignored and joining continues from " -"the absolute path segment. On Linux, for example::" +msgid "If a segment is an absolute path (which on Windows requires both a drive and a root), then all previous segments are ignored and joining continues from the absolute path segment. On Linux, for example::" msgstr "" -#: ../../library/os.path.rst:371 msgid "" ">>> os.path.join('/home/foo', 'bar')\n" "'/home/foo/bar'\n" @@ -405,15 +194,9 @@ msgid "" "'/home/bar'" msgstr "" -#: ../../library/os.path.rst:376 -msgid "" -"On Windows, the drive is not reset when a rooted path segment (e.g., " -"``r'\\foo'``) is encountered. If a segment is on a different drive or is an " -"absolute path, all previous segments are ignored and the drive is reset. For " -"example::" +msgid "On Windows, the drive is not reset when a rooted path segment (e.g., ``r'\\foo'``) is encountered. If a segment is on a different drive or is an absolute path, all previous segments are ignored and the drive is reset. For example::" msgstr "" -#: ../../library/os.path.rst:381 msgid "" ">>> os.path.join('c:\\\\', 'foo')\n" "'c:\\\\foo'\n" @@ -421,230 +204,109 @@ msgid "" "'d:\\\\bar'" msgstr "" -#: ../../library/os.path.rst:386 -msgid "" -"Note that since there is a current directory for each drive, " -"``os.path.join(\"c:\", \"foo\")`` represents a path relative to the current " -"directory on drive :file:`C:` (:file:`c:foo`), not :file:`c:\\\\foo`." +msgid "Note that since there is a current directory for each drive, ``os.path.join(\"c:\", \"foo\")`` represents a path relative to the current directory on drive :file:`C:` (:file:`c:foo`), not :file:`c:\\\\foo`." msgstr "" -#: ../../library/os.path.rst:390 msgid "Accepts a :term:`path-like object` for *path* and *paths*." msgstr "" -#: ../../library/os.path.rst:396 -msgid "" -"Normalize the case of a pathname. On Windows, convert all characters in the " -"pathname to lowercase, and also convert forward slashes to backward slashes. " -"On other operating systems, return the path unchanged." +msgid "Normalize the case of a pathname. On Windows, convert all characters in the pathname to lowercase, and also convert forward slashes to backward slashes. On other operating systems, return the path unchanged." msgstr "" -#: ../../library/os.path.rst:406 -msgid "" -"Normalize a pathname by collapsing redundant separators and up-level " -"references so that ``A//B``, ``A/B/``, ``A/./B`` and ``A/foo/../B`` all " -"become ``A/B``. This string manipulation may change the meaning of a path " -"that contains symbolic links. On Windows, it converts forward slashes to " -"backward slashes. To normalize case, use :func:`normcase`." +msgid "Normalize a pathname by collapsing redundant separators and up-level references so that ``A//B``, ``A/B/``, ``A/./B`` and ``A/foo/../B`` all become ``A/B``. This string manipulation may change the meaning of a path that contains symbolic links. On Windows, it converts forward slashes to backward slashes. To normalize case, use :func:`normcase`." msgstr "" -#: ../../library/os.path.rst:413 -msgid "" -"On POSIX systems, in accordance with `IEEE Std 1003.1 2013 Edition; 4.13 " -"Pathname Resolution `_, if a pathname begins with exactly two " -"slashes, the first component following the leading characters may be " -"interpreted in an implementation-defined manner, although more than two " -"leading characters shall be treated as a single character." +msgid "On POSIX systems, in accordance with `IEEE Std 1003.1 2013 Edition; 4.13 Pathname Resolution `_, if a pathname begins with exactly two slashes, the first component following the leading characters may be interpreted in an implementation-defined manner, although more than two leading characters shall be treated as a single character." msgstr "" -#: ../../library/os.path.rst:426 -msgid "" -"Return the canonical path of the specified filename, eliminating any " -"symbolic links encountered in the path (if they are supported by the " -"operating system). On Windows, this function will also resolve MS-DOS (also " -"called 8.3) style names such as ``C:\\\\PROGRA~1`` to ``C:\\\\Program " -"Files``." +msgid "Return the canonical path of the specified filename, eliminating any symbolic links encountered in the path (if they are supported by the operating system). On Windows, this function will also resolve MS-DOS (also called 8.3) style names such as ``C:\\\\PROGRA~1`` to ``C:\\\\Program Files``." msgstr "" -#: ../../library/os.path.rst:431 -msgid "" -"By default, the path is evaluated up to the first component that does not " -"exist, is a symlink loop, or whose evaluation raises :exc:`OSError`. All " -"such components are appended unchanged to the existing part of the path." +msgid "By default, the path is evaluated up to the first component that does not exist, is a symlink loop, or whose evaluation raises :exc:`OSError`. All such components are appended unchanged to the existing part of the path." msgstr "" -#: ../../library/os.path.rst:435 -msgid "" -"Some errors that are handled this way include \"access denied\", \"not a " -"directory\", or \"bad argument to internal function\". Thus, the resulting " -"path may be missing or inaccessible, may still contain links or loops, and " -"may traverse non-directories." +msgid "Some errors that are handled this way include \"access denied\", \"not a directory\", or \"bad argument to internal function\". Thus, the resulting path may be missing or inaccessible, may still contain links or loops, and may traverse non-directories." msgstr "" -#: ../../library/os.path.rst:440 msgid "This behavior can be modified by keyword arguments:" msgstr "" -#: ../../library/os.path.rst:442 -msgid "" -"If *strict* is ``True``, the first error encountered when evaluating the " -"path is re-raised. In particular, :exc:`FileNotFoundError` is raised if " -"*path* does not exist, or another :exc:`OSError` if it is otherwise " -"inaccessible." +msgid "If *strict* is ``True``, the first error encountered when evaluating the path is re-raised. In particular, :exc:`FileNotFoundError` is raised if *path* does not exist, or another :exc:`OSError` if it is otherwise inaccessible." msgstr "" -#: ../../library/os.path.rst:447 -msgid "" -"If *strict* is :py:data:`os.path.ALLOW_MISSING`, errors other " -"than :exc:`FileNotFoundError` are re-raised (as with ``strict=True``). Thus, " -"the returned path will not contain any symbolic links, but the named file " -"and some of its parent directories may be missing." +msgid "If *strict* is :py:data:`os.path.ALLOW_MISSING`, errors other than :exc:`FileNotFoundError` are re-raised (as with ``strict=True``). Thus, the returned path will not contain any symbolic links, but the named file and some of its parent directories may be missing." msgstr "" -#: ../../library/os.path.rst:453 -msgid "" -"This function emulates the operating system's procedure for making a path " -"canonical, which differs slightly between Windows and UNIX with respect to " -"how links and subsequent path components interact." +msgid "This function emulates the operating system's procedure for making a path canonical, which differs slightly between Windows and UNIX with respect to how links and subsequent path components interact." msgstr "" -#: ../../library/os.path.rst:457 -msgid "" -"Operating system APIs make paths canonical as needed, so it's not normally " -"necessary to call this function." +msgid "Operating system APIs make paths canonical as needed, so it's not normally necessary to call this function." msgstr "" -#: ../../library/os.path.rst:463 msgid "Symbolic links and junctions are now resolved on Windows." msgstr "" -#: ../../library/os.path.rst:466 msgid "The *strict* parameter was added." msgstr "" -#: ../../library/os.path.rst:469 -msgid "" -"The :py:data:`~os.path.ALLOW_MISSING` value for the *strict* parameter was " -"added." +msgid "The :py:data:`~os.path.ALLOW_MISSING` value for the *strict* parameter was added." msgstr "" -#: ../../library/os.path.rst:475 msgid "Special value used for the *strict* argument in :func:`realpath`." msgstr "" -#: ../../library/os.path.rst:481 -msgid "" -"Return a relative filepath to *path* either from the current directory or " -"from an optional *start* directory. This is a path computation: the " -"filesystem is not accessed to confirm the existence or nature of *path* or " -"*start*. On Windows, :exc:`ValueError` is raised when *path* and *start* " -"are on different drives." +msgid "Return a relative filepath to *path* either from the current directory or from an optional *start* directory. This is a path computation: the filesystem is not accessed to confirm the existence or nature of *path* or *start*. On Windows, :exc:`ValueError` is raised when *path* and *start* are on different drives." msgstr "" -#: ../../library/os.path.rst:487 msgid "*start* defaults to :data:`os.curdir`." msgstr "" -#: ../../library/os.path.rst:495 -msgid "" -"Return ``True`` if both pathname arguments refer to the same file or " -"directory. This is determined by the device number and i-node number and " -"raises an exception if an :func:`os.stat` call on either pathname fails." +msgid "Return ``True`` if both pathname arguments refer to the same file or directory. This is determined by the device number and i-node number and raises an exception if an :func:`os.stat` call on either pathname fails." msgstr "" -#: ../../library/os.path.rst:499 ../../library/os.path.rst:513 -#: ../../library/os.path.rst:527 msgid "Added Windows support." msgstr "" -#: ../../library/os.path.rst:502 msgid "Windows now uses the same implementation as all other platforms." msgstr "" -#: ../../library/os.path.rst:511 -msgid "" -"Return ``True`` if the file descriptors *fp1* and *fp2* refer to the same " -"file." +msgid "Return ``True`` if the file descriptors *fp1* and *fp2* refer to the same file." msgstr "" -#: ../../library/os.path.rst:522 -msgid "" -"Return ``True`` if the stat tuples *stat1* and *stat2* refer to the same " -"file. These structures may have been returned " -"by :func:`os.fstat`, :func:`os.lstat`, or :func:`os.stat`. This function " -"implements the underlying comparison used by :func:`samefile` " -"and :func:`sameopenfile`." +msgid "Return ``True`` if the stat tuples *stat1* and *stat2* refer to the same file. These structures may have been returned by :func:`os.fstat`, :func:`os.lstat`, or :func:`os.stat`. This function implements the underlying comparison used by :func:`samefile` and :func:`sameopenfile`." msgstr "" -#: ../../library/os.path.rst:533 -msgid "" -"Split the pathname *path* into a pair, ``(head, tail)`` where *tail* is the " -"last pathname component and *head* is everything leading up to that. The " -"*tail* part will never contain a slash; if *path* ends in a slash, *tail* " -"will be empty. If there is no slash in *path*, *head* will be empty. If " -"*path* is empty, both *head* and *tail* are empty. Trailing slashes are " -"stripped from *head* unless it is the root (one or more slashes only). In " -"all cases, ``join(head, tail)`` returns a path to the same location as " -"*path* (but the strings may differ). Also see the " -"functions :func:`join`, :func:`dirname` and :func:`basename`." -msgstr "" - -#: ../../library/os.path.rst:549 -msgid "" -"Split the pathname *path* into a pair ``(drive, tail)`` where *drive* is " -"either a mount point or the empty string. On systems which do not use drive " -"specifications, *drive* will always be the empty string. In all cases, " -"``drive + tail`` will be the same as *path*." +msgid "Split the pathname *path* into a pair, ``(head, tail)`` where *tail* is the last pathname component and *head* is everything leading up to that. The *tail* part will never contain a slash; if *path* ends in a slash, *tail* will be empty. If there is no slash in *path*, *head* will be empty. If *path* is empty, both *head* and *tail* are empty. Trailing slashes are stripped from *head* unless it is the root (one or more slashes only). In all cases, ``join(head, tail)`` returns a path to the same location as *path* (but the strings may differ). Also see the functions :func:`join`, :func:`dirname` and :func:`basename`." msgstr "" -#: ../../library/os.path.rst:554 -msgid "" -"On Windows, splits a pathname into drive/UNC sharepoint and relative path." +msgid "Split the pathname *path* into a pair ``(drive, tail)`` where *drive* is either a mount point or the empty string. On systems which do not use drive specifications, *drive* will always be the empty string. In all cases, ``drive + tail`` will be the same as *path*." msgstr "" -#: ../../library/os.path.rst:556 -msgid "" -"If the path contains a drive letter, drive will contain everything up to and " -"including the colon::" +msgid "On Windows, splits a pathname into drive/UNC sharepoint and relative path." +msgstr "" + +msgid "If the path contains a drive letter, drive will contain everything up to and including the colon::" msgstr "" -#: ../../library/os.path.rst:559 msgid "" ">>> splitdrive(\"c:/dir\")\n" "(\"c:\", \"/dir\")" msgstr "" -#: ../../library/os.path.rst:562 -msgid "" -"If the path contains a UNC path, drive will contain the host name and share::" +msgid "If the path contains a UNC path, drive will contain the host name and share::" msgstr "" -#: ../../library/os.path.rst:565 msgid "" ">>> splitdrive(\"//host/computer/dir\")\n" "(\"//host/computer\", \"/dir\")" msgstr "" -#: ../../library/os.path.rst:574 -msgid "" -"Split the pathname *path* into a 3-item tuple ``(drive, root, tail)`` where " -"*drive* is a device name or mount point, *root* is a string of separators " -"after the drive, and *tail* is everything after the root. Any of these items " -"may be the empty string. In all cases, ``drive + root + tail`` will be the " -"same as *path*." +msgid "Split the pathname *path* into a 3-item tuple ``(drive, root, tail)`` where *drive* is a device name or mount point, *root* is a string of separators after the drive, and *tail* is everything after the root. Any of these items may be the empty string. In all cases, ``drive + root + tail`` will be the same as *path*." msgstr "" -#: ../../library/os.path.rst:580 -msgid "" -"On POSIX systems, *drive* is always empty. The *root* may be empty (if " -"*path* is relative), a single forward slash (if *path* is absolute), or two " -"forward slashes (implementation-defined per `IEEE Std 1003.1-2017; 4.13 " -"Pathname Resolution `_.) For example::" +msgid "On POSIX systems, *drive* is always empty. The *root* may be empty (if *path* is relative), a single forward slash (if *path* is absolute), or two forward slashes (implementation-defined per `IEEE Std 1003.1-2017; 4.13 Pathname Resolution `_.) For example::" msgstr "" -#: ../../library/os.path.rst:586 msgid "" ">>> splitroot('/home/sam')\n" "('', '/', 'home/sam')\n" @@ -654,14 +316,9 @@ msgid "" "('', '/', '//home/sam')" msgstr "" -#: ../../library/os.path.rst:593 -msgid "" -"On Windows, *drive* may be empty, a drive-letter name, a UNC share, or a " -"device name. The *root* may be empty, a forward slash, or a backward slash. " -"For example::" +msgid "On Windows, *drive* may be empty, a drive-letter name, a UNC share, or a device name. The *root* may be empty, a forward slash, or a backward slash. For example::" msgstr "" -#: ../../library/os.path.rst:597 msgid "" ">>> splitroot('C:/Users/Sam')\n" "('C:', '/', 'Users/Sam')\n" @@ -669,30 +326,20 @@ msgid "" "('//Server/Share', '/', 'Users/Sam')" msgstr "" -#: ../../library/os.path.rst:607 -msgid "" -"Split the pathname *path* into a pair ``(root, ext)`` such that ``root + " -"ext == path``, and the extension, *ext*, is empty or begins with a period " -"and contains at most one period." +msgid "Split the pathname *path* into a pair ``(root, ext)`` such that ``root + ext == path``, and the extension, *ext*, is empty or begins with a period and contains at most one period." msgstr "" -#: ../../library/os.path.rst:611 msgid "If the path contains no extension, *ext* will be ``''``::" msgstr "" -#: ../../library/os.path.rst:613 msgid "" ">>> splitext('bar')\n" "('bar', '')" msgstr "" -#: ../../library/os.path.rst:616 -msgid "" -"If the path contains an extension, then *ext* will be set to this extension, " -"including the leading period. Note that previous periods will be ignored::" +msgid "If the path contains an extension, then *ext* will be set to this extension, including the leading period. Note that previous periods will be ignored::" msgstr "" -#: ../../library/os.path.rst:619 msgid "" ">>> splitext('foo.bar.exe')\n" "('foo.bar', '.exe')\n" @@ -700,13 +347,9 @@ msgid "" "('/foo/bar', '.exe')" msgstr "" -#: ../../library/os.path.rst:624 -msgid "" -"Leading periods of the last component of the path are considered to be part " -"of the root::" +msgid "Leading periods of the last component of the path are considered to be part of the root::" msgstr "" -#: ../../library/os.path.rst:627 msgid "" ">>> splitext('.cshrc')\n" "('.cshrc', '')\n" @@ -714,48 +357,35 @@ msgid "" "('/foo/....jpg', '')" msgstr "" -#: ../../library/os.path.rst:638 -msgid "" -"``True`` if arbitrary Unicode strings can be used as file names (within " -"limitations imposed by the file system)." +msgid "``True`` if arbitrary Unicode strings can be used as file names (within limitations imposed by the file system)." msgstr "" -#: ../../library/os.path.rst:10 msgid "path" msgstr "" -#: ../../library/os.path.rst:10 msgid "operations" msgstr "" -#: ../../library/os.path.rst:159 msgid "~ (tilde)" msgstr "" -#: ../../library/os.path.rst:159 msgid "home directory expansion" msgstr "" -#: ../../library/os.path.rst:166 msgid "module" msgstr "" -#: ../../library/os.path.rst:166 msgid "pwd" msgstr "" -#: ../../library/os.path.rst:187 msgid "$ (dollar)" msgstr "" -#: ../../library/os.path.rst:187 msgid "environment variables expansion" msgstr "" -#: ../../library/os.path.rst:187 msgid "% (percent)" msgstr "" -#: ../../library/os.path.rst:187 msgid "environment variables expansion (Windows)" msgstr "" diff --git a/library/os.po b/library/os.po index 2f64eb8a..18f3f99a 100644 --- a/library/os.po +++ b/library/os.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:10+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,1056 +23,465 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/os.rst:2 msgid ":mod:`!os` --- Miscellaneous operating system interfaces" msgstr "" -#: ../../library/os.rst:7 msgid "**Source code:** :source:`Lib/os.py`" msgstr "" -#: ../../library/os.rst:11 -msgid "" -"This module provides a portable way of using operating system dependent " -"functionality. If you just want to read or write a file see :func:`open`, " -"if you want to manipulate paths, see the :mod:`os.path` module, and if you " -"want to read all the lines in all the files on the command line see " -"the :mod:`fileinput` module. For creating temporary files and directories " -"see the :mod:`tempfile` module, and for high-level file and directory " -"handling see the :mod:`shutil` module." +msgid "This module provides a portable way of using operating system dependent functionality. If you just want to read or write a file see :func:`open`, if you want to manipulate paths, see the :mod:`os.path` module, and if you want to read all the lines in all the files on the command line see the :mod:`fileinput` module. For creating temporary files and directories see the :mod:`tempfile` module, and for high-level file and directory handling see the :mod:`shutil` module." msgstr "" -#: ../../library/os.rst:19 msgid "Notes on the availability of these functions:" msgstr "" -#: ../../library/os.rst:21 -msgid "" -"The design of all built-in operating system dependent modules of Python is " -"such that as long as the same functionality is available, it uses the same " -"interface; for example, the function ``os.stat(path)`` returns stat " -"information about *path* in the same format (which happens to have " -"originated with the POSIX interface)." +msgid "The design of all built-in operating system dependent modules of Python is such that as long as the same functionality is available, it uses the same interface; for example, the function ``os.stat(path)`` returns stat information about *path* in the same format (which happens to have originated with the POSIX interface)." msgstr "" -#: ../../library/os.rst:27 -msgid "" -"Extensions peculiar to a particular operating system are also available " -"through the :mod:`!os` module, but using them is of course a threat to " -"portability." +msgid "Extensions peculiar to a particular operating system are also available through the :mod:`!os` module, but using them is of course a threat to portability." msgstr "" -#: ../../library/os.rst:31 -msgid "" -"All functions accepting path or file names accept both bytes and string " -"objects, and result in an object of the same type, if a path or file name is " -"returned." +msgid "All functions accepting path or file names accept both bytes and string objects, and result in an object of the same type, if a path or file name is returned." msgstr "" -#: ../../library/os.rst:35 -msgid "" -"On VxWorks, os.popen, os.fork, os.execv and os.spawn*p* are not supported." +msgid "On VxWorks, os.popen, os.fork, os.execv and os.spawn*p* are not supported." msgstr "" -#: ../../library/os.rst:37 -msgid "" -"On WebAssembly platforms, Android and iOS, large parts of the :mod:`!os` " -"module are not available or behave differently. APIs related to processes " -"(e.g. :func:`~os.fork`, :func:`~os.execve`) and resources " -"(e.g. :func:`~os.nice`) are not available. Others like :func:`~os.getuid` " -"and :func:`~os.getpid` are emulated or stubs. WebAssembly platforms also " -"lack support for signals (e.g. :func:`~os.kill`, :func:`~os.wait`)." +msgid "On WebAssembly platforms, Android and iOS, large parts of the :mod:`!os` module are not available or behave differently. APIs related to processes (e.g. :func:`~os.fork`, :func:`~os.execve`) and resources (e.g. :func:`~os.nice`) are not available. Others like :func:`~os.getuid` and :func:`~os.getpid` are emulated or stubs. WebAssembly platforms also lack support for signals (e.g. :func:`~os.kill`, :func:`~os.wait`)." msgstr "" -#: ../../library/os.rst:47 -msgid "" -"All functions in this module raise :exc:`OSError` (or subclasses thereof) in " -"the case of invalid or inaccessible file names and paths, or other arguments " -"that have the correct type, but are not accepted by the operating system." +msgid "All functions in this module raise :exc:`OSError` (or subclasses thereof) in the case of invalid or inaccessible file names and paths, or other arguments that have the correct type, but are not accepted by the operating system." msgstr "" -#: ../../library/os.rst:53 msgid "An alias for the built-in :exc:`OSError` exception." msgstr "" -#: ../../library/os.rst:58 -msgid "" -"The name of the operating system dependent module imported. The following " -"names have currently been registered: ``'posix'``, ``'nt'``, ``'java'``." +msgid "The name of the operating system dependent module imported. The following names have currently been registered: ``'posix'``, ``'nt'``, ``'java'``." msgstr "" -#: ../../library/os.rst:63 -msgid "" -":data:`sys.platform` has a finer granularity. :func:`os.uname` gives system-" -"dependent version information." +msgid ":data:`sys.platform` has a finer granularity. :func:`os.uname` gives system-dependent version information." msgstr "" -#: ../../library/os.rst:66 ../../library/os.rst:804 -msgid "" -"The :mod:`platform` module provides detailed checks for the system's " -"identity." +msgid "The :mod:`platform` module provides detailed checks for the system's identity." msgstr "" -#: ../../library/os.rst:74 msgid "File Names, Command Line Arguments, and Environment Variables" msgstr "" -#: ../../library/os.rst:76 -msgid "" -"In Python, file names, command line arguments, and environment variables are " -"represented using the string type. On some systems, decoding these strings " -"to and from bytes is necessary before passing them to the operating system. " -"Python uses the :term:`filesystem encoding and error handler` to perform " -"this conversion (see :func:`sys.getfilesystemencoding`)." +msgid "In Python, file names, command line arguments, and environment variables are represented using the string type. On some systems, decoding these strings to and from bytes is necessary before passing them to the operating system. Python uses the :term:`filesystem encoding and error handler` to perform this conversion (see :func:`sys.getfilesystemencoding`)." msgstr "" -#: ../../library/os.rst:82 -msgid "" -"The :term:`filesystem encoding and error handler` are configured at Python " -"startup by the :c:func:`PyConfig_Read` function: " -"see :c:member:`~PyConfig.filesystem_encoding` " -"and :c:member:`~PyConfig.filesystem_errors` members of :c:type:`PyConfig`." +msgid "The :term:`filesystem encoding and error handler` are configured at Python startup by the :c:func:`PyConfig_Read` function: see :c:member:`~PyConfig.filesystem_encoding` and :c:member:`~PyConfig.filesystem_errors` members of :c:type:`PyConfig`." msgstr "" -#: ../../library/os.rst:87 -msgid "" -"On some systems, conversion using the file system encoding may fail. In this " -"case, Python uses the :ref:`surrogateescape encoding error handler " -"`, which means that undecodable bytes are replaced by a " -"Unicode character U+DC\\ *xx* on decoding, and these are again translated to " -"the original byte on encoding." +msgid "On some systems, conversion using the file system encoding may fail. In this case, Python uses the :ref:`surrogateescape encoding error handler `, which means that undecodable bytes are replaced by a Unicode character U+DC\\ *xx* on decoding, and these are again translated to the original byte on encoding." msgstr "" -#: ../../library/os.rst:95 -msgid "" -"The :term:`file system encoding ` " -"must guarantee to successfully decode all bytes below 128. If the file " -"system encoding fails to provide this guarantee, API functions can " -"raise :exc:`UnicodeError`." +msgid "The :term:`file system encoding ` must guarantee to successfully decode all bytes below 128. If the file system encoding fails to provide this guarantee, API functions can raise :exc:`UnicodeError`." msgstr "" -#: ../../library/os.rst:100 msgid "See also the :term:`locale encoding`." msgstr "" -#: ../../library/os.rst:106 msgid "Python UTF-8 Mode" msgstr "" -#: ../../library/os.rst:108 msgid "See :pep:`540` for more details." msgstr "" -#: ../../library/os.rst:111 -msgid "" -"The Python UTF-8 Mode ignores the :term:`locale encoding` and forces the " -"usage of the UTF-8 encoding:" +msgid "The Python UTF-8 Mode ignores the :term:`locale encoding` and forces the usage of the UTF-8 encoding:" msgstr "" -#: ../../library/os.rst:114 -msgid "" -"Use UTF-8 as the :term:`filesystem encoding `." +msgid "Use UTF-8 as the :term:`filesystem encoding `." msgstr "" -#: ../../library/os.rst:116 msgid ":func:`sys.getfilesystemencoding` returns ``'utf-8'``." msgstr "" -#: ../../library/os.rst:117 -msgid "" -":func:`locale.getpreferredencoding` returns ``'utf-8'`` (the *do_setlocale* " -"argument has no effect)." +msgid ":func:`locale.getpreferredencoding` returns ``'utf-8'`` (the *do_setlocale* argument has no effect)." msgstr "" -#: ../../library/os.rst:119 -msgid "" -":data:`sys.stdin`, :data:`sys.stdout`, and :data:`sys.stderr` all use UTF-8 " -"as their text encoding, with the ``surrogateescape`` :ref:`error handler " -"` being enabled for :data:`sys.stdin` and :data:`sys.stdout` " -"(:data:`sys.stderr` continues to use ``backslashreplace`` as it does in the " -"default locale-aware mode)" +msgid ":data:`sys.stdin`, :data:`sys.stdout`, and :data:`sys.stderr` all use UTF-8 as their text encoding, with the ``surrogateescape`` :ref:`error handler ` being enabled for :data:`sys.stdin` and :data:`sys.stdout` (:data:`sys.stderr` continues to use ``backslashreplace`` as it does in the default locale-aware mode)" msgstr "" -#: ../../library/os.rst:124 -msgid "" -"On Unix, :func:`os.device_encoding` returns ``'utf-8'`` rather than the " -"device encoding." +msgid "On Unix, :func:`os.device_encoding` returns ``'utf-8'`` rather than the device encoding." msgstr "" -#: ../../library/os.rst:127 -msgid "" -"Note that the standard stream settings in UTF-8 mode can be overridden " -"by :envvar:`PYTHONIOENCODING` (just as they can be in the default locale-" -"aware mode)." +msgid "Note that the standard stream settings in UTF-8 mode can be overridden by :envvar:`PYTHONIOENCODING` (just as they can be in the default locale-aware mode)." msgstr "" -#: ../../library/os.rst:131 -msgid "" -"As a consequence of the changes in those lower level APIs, other higher " -"level APIs also exhibit different default behaviours:" +msgid "As a consequence of the changes in those lower level APIs, other higher level APIs also exhibit different default behaviours:" msgstr "" -#: ../../library/os.rst:134 -msgid "" -"Command line arguments, environment variables and filenames are decoded to " -"text using the UTF-8 encoding." +msgid "Command line arguments, environment variables and filenames are decoded to text using the UTF-8 encoding." msgstr "" -#: ../../library/os.rst:136 msgid ":func:`os.fsdecode` and :func:`os.fsencode` use the UTF-8 encoding." msgstr "" -#: ../../library/os.rst:137 -msgid "" -":func:`open`, :func:`io.open`, and :func:`codecs.open` use the UTF-8 " -"encoding by default. However, they still use the strict error handler by " -"default so that attempting to open a binary file in text mode is likely to " -"raise an exception rather than producing nonsense data." +msgid ":func:`open`, :func:`io.open`, and :func:`codecs.open` use the UTF-8 encoding by default. However, they still use the strict error handler by default so that attempting to open a binary file in text mode is likely to raise an exception rather than producing nonsense data." msgstr "" -#: ../../library/os.rst:142 -msgid "" -"The :ref:`Python UTF-8 Mode ` is enabled if the LC_CTYPE locale " -"is ``C`` or ``POSIX`` at Python startup (see the :c:func:`PyConfig_Read` " -"function)." +msgid "The :ref:`Python UTF-8 Mode ` is enabled if the LC_CTYPE locale is ``C`` or ``POSIX`` at Python startup (see the :c:func:`PyConfig_Read` function)." msgstr "" -#: ../../library/os.rst:146 -msgid "" -"It can be enabled or disabled using the :option:`-X utf8 <-X>` command line " -"option and the :envvar:`PYTHONUTF8` environment variable." +msgid "It can be enabled or disabled using the :option:`-X utf8 <-X>` command line option and the :envvar:`PYTHONUTF8` environment variable." msgstr "" -#: ../../library/os.rst:149 -msgid "" -"If the :envvar:`PYTHONUTF8` environment variable is not set at all, then the " -"interpreter defaults to using the current locale settings, *unless* the " -"current locale is identified as a legacy ASCII-based locale (as described " -"for :envvar:`PYTHONCOERCECLOCALE`), and locale coercion is either disabled " -"or fails. In such legacy locales, the interpreter will default to enabling " -"UTF-8 mode unless explicitly instructed not to do so." +msgid "If the :envvar:`PYTHONUTF8` environment variable is not set at all, then the interpreter defaults to using the current locale settings, *unless* the current locale is identified as a legacy ASCII-based locale (as described for :envvar:`PYTHONCOERCECLOCALE`), and locale coercion is either disabled or fails. In such legacy locales, the interpreter will default to enabling UTF-8 mode unless explicitly instructed not to do so." msgstr "" -#: ../../library/os.rst:156 -msgid "" -"The Python UTF-8 Mode can only be enabled at the Python startup. Its value " -"can be read from :data:`sys.flags.utf8_mode `." +msgid "The Python UTF-8 Mode can only be enabled at the Python startup. Its value can be read from :data:`sys.flags.utf8_mode `." msgstr "" -#: ../../library/os.rst:159 -msgid "" -"See also the :ref:`UTF-8 mode on Windows ` and " -"the :term:`filesystem encoding and error handler`." +msgid "See also the :ref:`UTF-8 mode on Windows ` and the :term:`filesystem encoding and error handler`." msgstr "" -#: ../../library/os.rst:164 msgid ":pep:`686`" msgstr "" -#: ../../library/os.rst:165 msgid "Python 3.15 will make :ref:`utf8-mode` default." msgstr "" -#: ../../library/os.rst:171 msgid "Process Parameters" msgstr "" -#: ../../library/os.rst:173 -msgid "" -"These functions and data items provide information and operate on the " -"current process and user." +msgid "These functions and data items provide information and operate on the current process and user." +msgstr "" + +msgid "Return the filename corresponding to the controlling terminal of the process." msgstr "" -#: ../../library/os.rst:179 -msgid "" -"Return the filename corresponding to the controlling terminal of the process." -msgstr "" - -#: ../../library/os.rst:181 ../../library/os.rst:345 ../../library/os.rst:360 -#: ../../library/os.rst:381 ../../library/os.rst:390 ../../library/os.rst:399 -#: ../../library/os.rst:412 ../../library/os.rst:421 ../../library/os.rst:449 -#: ../../library/os.rst:457 ../../library/os.rst:465 ../../library/os.rst:485 -#: ../../library/os.rst:503 ../../library/os.rst:514 ../../library/os.rst:526 -#: ../../library/os.rst:535 ../../library/os.rst:545 ../../library/os.rst:556 -#: ../../library/os.rst:568 ../../library/os.rst:604 ../../library/os.rst:611 -#: ../../library/os.rst:618 ../../library/os.rst:627 ../../library/os.rst:664 -#: ../../library/os.rst:677 ../../library/os.rst:686 ../../library/os.rst:703 -#: ../../library/os.rst:712 ../../library/os.rst:719 ../../library/os.rst:728 -#: ../../library/os.rst:737 ../../library/os.rst:744 ../../library/os.rst:751 -#: ../../library/os.rst:760 ../../library/os.rst:807 ../../library/os.rst:883 -#: ../../library/os.rst:1005 ../../library/os.rst:1031 -#: ../../library/os.rst:1044 ../../library/os.rst:1061 -#: ../../library/os.rst:1079 ../../library/os.rst:1090 -#: ../../library/os.rst:1110 ../../library/os.rst:1131 -#: ../../library/os.rst:1143 ../../library/os.rst:1154 -#: ../../library/os.rst:1167 ../../library/os.rst:1188 -#: ../../library/os.rst:1209 ../../library/os.rst:1221 -#: ../../library/os.rst:1232 ../../library/os.rst:1293 -#: ../../library/os.rst:1416 ../../library/os.rst:1428 -#: ../../library/os.rst:1442 ../../library/os.rst:1452 -#: ../../library/os.rst:1467 ../../library/os.rst:1482 -#: ../../library/os.rst:1495 ../../library/os.rst:1512 -#: ../../library/os.rst:1538 ../../library/os.rst:1555 -#: ../../library/os.rst:1569 ../../library/os.rst:1584 -#: ../../library/os.rst:1596 ../../library/os.rst:1623 -#: ../../library/os.rst:1635 ../../library/os.rst:1645 -#: ../../library/os.rst:1659 ../../library/os.rst:1738 -#: ../../library/os.rst:1758 ../../library/os.rst:1767 -#: ../../library/os.rst:1779 ../../library/os.rst:1833 -#: ../../library/os.rst:1857 ../../library/os.rst:1867 -#: ../../library/os.rst:1875 ../../library/os.rst:1884 -#: ../../library/os.rst:1895 ../../library/os.rst:1932 -#: ../../library/os.rst:1959 ../../library/os.rst:2011 -#: ../../library/os.rst:2017 ../../library/os.rst:2188 -#: ../../library/os.rst:2265 ../../library/os.rst:2282 -#: ../../library/os.rst:2296 ../../library/os.rst:2322 -#: ../../library/os.rst:2340 ../../library/os.rst:2356 -#: ../../library/os.rst:2373 ../../library/os.rst:2436 -#: ../../library/os.rst:2460 ../../library/os.rst:2480 -#: ../../library/os.rst:2616 ../../library/os.rst:2638 -#: ../../library/os.rst:2682 ../../library/os.rst:2694 -#: ../../library/os.rst:2716 ../../library/os.rst:3417 -#: ../../library/os.rst:3503 ../../library/os.rst:3511 -#: ../../library/os.rst:3519 ../../library/os.rst:3527 -#: ../../library/os.rst:3535 ../../library/os.rst:3543 -#: ../../library/os.rst:3551 ../../library/os.rst:3559 -#: ../../library/os.rst:3567 ../../library/os.rst:3575 -#: ../../library/os.rst:3696 ../../library/os.rst:3719 -#: ../../library/os.rst:3733 ../../library/os.rst:3953 -#: ../../library/os.rst:3978 ../../library/os.rst:4003 -#: ../../library/os.rst:4057 ../../library/os.rst:4066 -#: ../../library/os.rst:4075 ../../library/os.rst:4083 -#: ../../library/os.rst:4092 ../../library/os.rst:4101 -#: ../../library/os.rst:4173 ../../library/os.rst:4236 -#: ../../library/os.rst:4246 ../../library/os.rst:4264 -#: ../../library/os.rst:4273 ../../library/os.rst:4283 -#: ../../library/os.rst:4293 ../../library/os.rst:4303 -#: ../../library/os.rst:4314 ../../library/os.rst:4459 -#: ../../library/os.rst:4528 ../../library/os.rst:4563 -#: ../../library/os.rst:4571 ../../library/os.rst:4578 -#: ../../library/os.rst:4585 ../../library/os.rst:4592 -#: ../../library/os.rst:4599 ../../library/os.rst:4606 -#: ../../library/os.rst:4613 ../../library/os.rst:4621 -#: ../../library/os.rst:4629 ../../library/os.rst:4636 -#: ../../library/os.rst:4643 ../../library/os.rst:4652 -#: ../../library/os.rst:4660 ../../library/os.rst:4668 -#: ../../library/os.rst:4675 ../../library/os.rst:4682 -#: ../../library/os.rst:4731 ../../library/os.rst:4758 -#: ../../library/os.rst:4781 ../../library/os.rst:4797 -#: ../../library/os.rst:4804 ../../library/os.rst:4815 -#: ../../library/os.rst:4825 ../../library/os.rst:4834 -#: ../../library/os.rst:4866 ../../library/os.rst:4977 -#: ../../library/os.rst:4993 ../../library/os.rst:5026 -#: ../../library/os.rst:5095 ../../library/os.rst:5117 -#: ../../library/os.rst:5128 ../../library/os.rst:5140 -#: ../../library/os.rst:5185 ../../library/os.rst:5222 -#: ../../library/os.rst:5245 ../../library/os.rst:5266 -#: ../../library/os.rst:5300 ../../library/os.rst:5341 -#: ../../library/os.rst:5361 ../../library/os.rst:5375 -#: ../../library/os.rst:5392 ../../library/os.rst:5407 -#: ../../library/os.rst:5418 ../../library/os.rst:5430 -#: ../../library/os.rst:5443 ../../library/os.rst:5452 -#: ../../library/os.rst:5462 ../../library/os.rst:5475 -#: ../../library/os.rst:5510 ../../library/os.rst:5526 -#: ../../library/os.rst:5537 ../../library/os.rst:5549 -#: ../../library/os.rst:5556 ../../library/os.rst:5565 -#: ../../library/os.rst:5574 ../../library/os.rst:5583 -#: ../../library/os.rst:5592 ../../library/os.rst:5756 -#: ../../library/os.rst:5765 ../../library/os.rst:5789 -#: ../../library/os.rst:5816 ../../library/os.rst:5825 -#: ../../library/os.rst:5948 msgid "Availability" msgstr "" -#: ../../library/os.rst:186 -msgid "" -"A :term:`mapping` object where keys and values are strings that represent " -"the process environment. For example, ``environ['HOME']`` is the pathname " -"of your home directory (on some platforms), and is equivalent to " -"``getenv(\"HOME\")`` in C." +msgid "A :term:`mapping` object where keys and values are strings that represent the process environment. For example, ``environ['HOME']`` is the pathname of your home directory (on some platforms), and is equivalent to ``getenv(\"HOME\")`` in C." msgstr "" -#: ../../library/os.rst:191 -msgid "" -"This mapping is captured the first time the :mod:`!os` module is imported, " -"typically during Python startup as part of processing :file:`site.py`. " -"Changes to the environment made after this time are not reflected " -"in :data:`os.environ`, except for changes made by " -"modifying :data:`os.environ` directly." +msgid "This mapping is captured the first time the :mod:`!os` module is imported, typically during Python startup as part of processing :file:`site.py`. Changes to the environment made after this time are not reflected in :data:`os.environ`, except for changes made by modifying :data:`os.environ` directly." msgstr "" -#: ../../library/os.rst:196 -msgid "" -"This mapping may be used to modify the environment as well as query the " -"environment. :func:`putenv` will be called automatically when the mapping " -"is modified." +msgid "This mapping may be used to modify the environment as well as query the environment. :func:`putenv` will be called automatically when the mapping is modified." msgstr "" -#: ../../library/os.rst:200 -msgid "" -"On Unix, keys and values use :func:`sys.getfilesystemencoding` and " -"``'surrogateescape'`` error handler. Use :data:`environb` if you would like " -"to use a different encoding." +msgid "On Unix, keys and values use :func:`sys.getfilesystemencoding` and ``'surrogateescape'`` error handler. Use :data:`environb` if you would like to use a different encoding." msgstr "" -#: ../../library/os.rst:204 -msgid "" -"On Windows, the keys are converted to uppercase. This also applies when " -"getting, setting, or deleting an item. For example, ``environ['monty'] = " -"'python'`` maps the key ``'MONTY'`` to the value ``'python'``." +msgid "On Windows, the keys are converted to uppercase. This also applies when getting, setting, or deleting an item. For example, ``environ['monty'] = 'python'`` maps the key ``'MONTY'`` to the value ``'python'``." msgstr "" -#: ../../library/os.rst:211 -msgid "" -"Calling :func:`putenv` directly does not change :data:`os.environ`, so it's " -"better to modify :data:`os.environ`." +msgid "Calling :func:`putenv` directly does not change :data:`os.environ`, so it's better to modify :data:`os.environ`." msgstr "" -#: ../../library/os.rst:216 -msgid "" -"On some platforms, including FreeBSD and macOS, setting ``environ`` may " -"cause memory leaks. Refer to the system documentation for :c:func:`!putenv`." +msgid "On some platforms, including FreeBSD and macOS, setting ``environ`` may cause memory leaks. Refer to the system documentation for :c:func:`!putenv`." msgstr "" -#: ../../library/os.rst:220 -msgid "" -"You can delete items in this mapping to unset environment " -"variables. :func:`unsetenv` will be called automatically when an item is " -"deleted from :data:`os.environ`, and when one of the :meth:`pop` " -"or :meth:`clear` methods is called." +msgid "You can delete items in this mapping to unset environment variables. :func:`unsetenv` will be called automatically when an item is deleted from :data:`os.environ`, and when one of the :meth:`pop` or :meth:`clear` methods is called." msgstr "" -#: ../../library/os.rst:227 msgid "The :func:`os.reload_environ` function." msgstr "" -#: ../../library/os.rst:229 ../../library/os.rst:245 -msgid "" -"Updated to support :pep:`584`'s merge (``|``) and update (``|=``) operators." +msgid "Updated to support :pep:`584`'s merge (``|``) and update (``|=``) operators." msgstr "" -#: ../../library/os.rst:235 -msgid "" -"Bytes version of :data:`environ`: a :term:`mapping` object where both keys " -"and values are :class:`bytes` objects representing the process " -"environment. :data:`environ` and :data:`environb` are synchronized " -"(modifying :data:`environb` updates :data:`environ`, and vice versa)." +msgid "Bytes version of :data:`environ`: a :term:`mapping` object where both keys and values are :class:`bytes` objects representing the process environment. :data:`environ` and :data:`environb` are synchronized (modifying :data:`environb` updates :data:`environ`, and vice versa)." msgstr "" -#: ../../library/os.rst:240 -msgid "" -":data:`environb` is only available if :const:`supports_bytes_environ` is " -"``True``." +msgid ":data:`environb` is only available if :const:`supports_bytes_environ` is ``True``." msgstr "" -#: ../../library/os.rst:251 -msgid "" -"The :data:`os.environ` and :data:`os.environb` mappings are a cache of " -"environment variables at the time that Python started. As such, changes to " -"the current process environment are not reflected if made outside Python, or " -"by :func:`os.putenv` or :func:`os.unsetenv`. Use :func:`!os.reload_environ` " -"to update :data:`os.environ` and :data:`os.environb` with any such changes " -"to the current process environment." +msgid "The :data:`os.environ` and :data:`os.environb` mappings are a cache of environment variables at the time that Python started. As such, changes to the current process environment are not reflected if made outside Python, or by :func:`os.putenv` or :func:`os.unsetenv`. Use :func:`!os.reload_environ` to update :data:`os.environ` and :data:`os.environb` with any such changes to the current process environment." msgstr "" -#: ../../library/os.rst:259 -msgid "" -"This function is not thread-safe. Calling it while the environment is being " -"modified in another thread is an undefined behavior. Reading " -"from :data:`os.environ` or :data:`os.environb`, or calling :func:`os.getenv` " -"while reloading, may return an empty result." +msgid "This function is not thread-safe. Calling it while the environment is being modified in another thread is an undefined behavior. Reading from :data:`os.environ` or :data:`os.environb`, or calling :func:`os.getenv` while reloading, may return an empty result." msgstr "" -#: ../../library/os.rst:272 msgid "These functions are described in :ref:`os-file-dir`." msgstr "" -#: ../../library/os.rst:277 -msgid "" -"Encode :term:`path-like ` *filename* to " -"the :term:`filesystem encoding and error handler`; return :class:`bytes` " -"unchanged." +msgid "Encode :term:`path-like ` *filename* to the :term:`filesystem encoding and error handler`; return :class:`bytes` unchanged." msgstr "" -#: ../../library/os.rst:281 msgid ":func:`fsdecode` is the reverse function." msgstr "" -#: ../../library/os.rst:285 ../../library/os.rst:300 -msgid "" -"Support added to accept objects implementing the :class:`os.PathLike` " -"interface." +msgid "Support added to accept objects implementing the :class:`os.PathLike` interface." msgstr "" -#: ../../library/os.rst:292 -msgid "" -"Decode the :term:`path-like ` *filename* from " -"the :term:`filesystem encoding and error handler`; return :class:`str` " -"unchanged." +msgid "Decode the :term:`path-like ` *filename* from the :term:`filesystem encoding and error handler`; return :class:`str` unchanged." msgstr "" -#: ../../library/os.rst:296 msgid ":func:`fsencode` is the reverse function." msgstr "" -#: ../../library/os.rst:307 msgid "Return the file system representation of the path." msgstr "" -#: ../../library/os.rst:309 -msgid "" -"If :class:`str` or :class:`bytes` is passed in, it is returned unchanged. " -"Otherwise :meth:`~os.PathLike.__fspath__` is called and its value is " -"returned as long as it is a :class:`str` or :class:`bytes` object. In all " -"other cases, :exc:`TypeError` is raised." +msgid "If :class:`str` or :class:`bytes` is passed in, it is returned unchanged. Otherwise :meth:`~os.PathLike.__fspath__` is called and its value is returned as long as it is a :class:`str` or :class:`bytes` object. In all other cases, :exc:`TypeError` is raised." msgstr "" -#: ../../library/os.rst:319 -msgid "" -"An :term:`abstract base class` for objects representing a file system path, " -"e.g. :class:`pathlib.PurePath`." +msgid "An :term:`abstract base class` for objects representing a file system path, e.g. :class:`pathlib.PurePath`." msgstr "" -#: ../../library/os.rst:327 msgid "Return the file system path representation of the object." msgstr "" -#: ../../library/os.rst:329 -msgid "" -"The method should only return a :class:`str` or :class:`bytes` object, with " -"the preference being for :class:`str`." +msgid "The method should only return a :class:`str` or :class:`bytes` object, with the preference being for :class:`str`." msgstr "" -#: ../../library/os.rst:335 -msgid "" -"Return the value of the environment variable *key* as a string if it exists, " -"or *default* if it doesn't. *key* is a string. Note that " -"since :func:`getenv` uses :data:`os.environ`, the mapping of :func:`getenv` " -"is similarly also captured on import, and the function may not reflect " -"future environment changes." +msgid "Return the value of the environment variable *key* as a string if it exists, or *default* if it doesn't. *key* is a string. Note that since :func:`getenv` uses :data:`os.environ`, the mapping of :func:`getenv` is similarly also captured on import, and the function may not reflect future environment changes." msgstr "" -#: ../../library/os.rst:341 -msgid "" -"On Unix, keys and values are decoded with :func:`sys.getfilesystemencoding` " -"and ``'surrogateescape'`` error handler. Use :func:`os.getenvb` if you would " -"like to use a different encoding." +msgid "On Unix, keys and values are decoded with :func:`sys.getfilesystemencoding` and ``'surrogateescape'`` error handler. Use :func:`os.getenvb` if you would like to use a different encoding." msgstr "" -#: ../../library/os.rst:350 -msgid "" -"Return the value of the environment variable *key* as bytes if it exists, or " -"*default* if it doesn't. *key* must be bytes. Note that " -"since :func:`getenvb` uses :data:`os.environb`, the mapping " -"of :func:`getenvb` is similarly also captured on import, and the function " -"may not reflect future environment changes." +msgid "Return the value of the environment variable *key* as bytes if it exists, or *default* if it doesn't. *key* must be bytes. Note that since :func:`getenvb` uses :data:`os.environb`, the mapping of :func:`getenvb` is similarly also captured on import, and the function may not reflect future environment changes." msgstr "" -#: ../../library/os.rst:357 -msgid "" -":func:`getenvb` is only available if :const:`supports_bytes_environ` is " -"``True``." +msgid ":func:`getenvb` is only available if :const:`supports_bytes_environ` is ``True``." msgstr "" -#: ../../library/os.rst:367 -msgid "" -"Returns the list of directories that will be searched for a named " -"executable, similar to a shell, when launching a process. *env*, when " -"specified, should be an environment variable dictionary to lookup the PATH " -"in. By default, when *env* is ``None``, :data:`environ` is used." +msgid "Returns the list of directories that will be searched for a named executable, similar to a shell, when launching a process. *env*, when specified, should be an environment variable dictionary to lookup the PATH in. By default, when *env* is ``None``, :data:`environ` is used." msgstr "" -#: ../../library/os.rst:378 -msgid "" -"Return the effective group id of the current process. This corresponds to " -"the \"set id\" bit on the file being executed in the current process." +msgid "Return the effective group id of the current process. This corresponds to the \"set id\" bit on the file being executed in the current process." msgstr "" -#: ../../library/os.rst:388 msgid "Return the current process's effective user id." msgstr "" -#: ../../library/os.rst:397 msgid "Return the real group id of the current process." msgstr "" -#: ../../library/os.rst:401 ../../library/os.rst:474 ../../library/os.rst:558 -#: ../../library/os.rst:783 -msgid "" -"The function is a stub on WASI, see :ref:`wasm-availability` for more " -"information." +msgid "The function is a stub on WASI, see :ref:`wasm-availability` for more information." msgstr "" -#: ../../library/os.rst:407 -msgid "" -"Return list of group ids that *user* belongs to. If *group* is not in the " -"list, it is included; typically, *group* is specified as the group ID field " -"from the password record for *user*, because that group ID will otherwise be " -"potentially omitted." +msgid "Return list of group ids that *user* belongs to. If *group* is not in the list, it is included; typically, *group* is specified as the group ID field from the password record for *user*, because that group ID will otherwise be potentially omitted." msgstr "" -#: ../../library/os.rst:419 -msgid "" -"Return list of supplemental group ids associated with the current process." +msgid "Return list of supplemental group ids associated with the current process." msgstr "" -#: ../../library/os.rst:425 -msgid "" -"On macOS, :func:`getgroups` behavior differs somewhat from other Unix " -"platforms. If the Python interpreter was built with a deployment target of " -"``10.5`` or earlier, :func:`getgroups` returns the list of effective group " -"ids associated with the current user process; this list is limited to a " -"system-defined number of entries, typically 16, and may be modified by calls " -"to :func:`setgroups` if suitably privileged. If built with a deployment " -"target greater than ``10.5``, :func:`getgroups` returns the current group " -"access list for the user associated with the effective user id of the " -"process; the group access list may change over the lifetime of the process, " -"it is not affected by calls to :func:`setgroups`, and its length is not " -"limited to 16. The deployment target " -"value, :const:`MACOSX_DEPLOYMENT_TARGET`, can be obtained " -"with :func:`sysconfig.get_config_var`." -msgstr "" - -#: ../../library/os.rst:442 -msgid "" -"Return the name of the user logged in on the controlling terminal of the " -"process. For most purposes, it is more useful to " -"use :func:`getpass.getuser` since the latter checks the environment " -"variables :envvar:`LOGNAME` or :envvar:`USERNAME` to find out who the user " -"is, and falls back to ``pwd.getpwuid(os.getuid())[0]`` to get the login name " -"of the current real user id." +msgid "On macOS, :func:`getgroups` behavior differs somewhat from other Unix platforms. If the Python interpreter was built with a deployment target of ``10.5`` or earlier, :func:`getgroups` returns the list of effective group ids associated with the current user process; this list is limited to a system-defined number of entries, typically 16, and may be modified by calls to :func:`setgroups` if suitably privileged. If built with a deployment target greater than ``10.5``, :func:`getgroups` returns the current group access list for the user associated with the effective user id of the process; the group access list may change over the lifetime of the process, it is not affected by calls to :func:`setgroups`, and its length is not limited to 16. The deployment target value, :const:`MACOSX_DEPLOYMENT_TARGET`, can be obtained with :func:`sysconfig.get_config_var`." msgstr "" -#: ../../library/os.rst:454 -msgid "" -"Return the process group id of the process with process id *pid*. If *pid* " -"is 0, the process group id of the current process is returned." +msgid "Return the name of the user logged in on the controlling terminal of the process. For most purposes, it is more useful to use :func:`getpass.getuser` since the latter checks the environment variables :envvar:`LOGNAME` or :envvar:`USERNAME` to find out who the user is, and falls back to ``pwd.getpwuid(os.getuid())[0]`` to get the login name of the current real user id." +msgstr "" + +msgid "Return the process group id of the process with process id *pid*. If *pid* is 0, the process group id of the current process is returned." msgstr "" -#: ../../library/os.rst:463 msgid "Return the id of the current process group." msgstr "" -#: ../../library/os.rst:472 msgid "Return the current process id." msgstr "" -#: ../../library/os.rst:481 -msgid "" -"Return the parent's process id. When the parent process has exited, on Unix " -"the id returned is the one of the init process (1), on Windows it is still " -"the same id, which may be already reused by another process." +msgid "Return the parent's process id. When the parent process has exited, on Unix the id returned is the one of the init process (1), on Windows it is still the same id, which may be already reused by another process." msgstr "" -#: ../../library/os.rst:487 msgid "Added support for Windows." msgstr "" -#: ../../library/os.rst:495 -msgid "" -"Get program scheduling priority. The value *which* is one " -"of :const:`PRIO_PROCESS`, :const:`PRIO_PGRP`, or :const:`PRIO_USER`, and " -"*who* is interpreted relative to *which* (a process identifier " -"for :const:`PRIO_PROCESS`, process group identifier for :const:`PRIO_PGRP`, " -"and a user ID for :const:`PRIO_USER`). A zero value for *who* denotes " -"(respectively) the calling process, the process group of the calling " -"process, or the real user ID of the calling process." +msgid "Get program scheduling priority. The value *which* is one of :const:`PRIO_PROCESS`, :const:`PRIO_PGRP`, or :const:`PRIO_USER`, and *who* is interpreted relative to *which* (a process identifier for :const:`PRIO_PROCESS`, process group identifier for :const:`PRIO_PGRP`, and a user ID for :const:`PRIO_USER`). A zero value for *who* denotes (respectively) the calling process, the process group of the calling process, or the real user ID of the calling process." msgstr "" -#: ../../library/os.rst:512 ../../library/os.rst:524 -msgid "" -"Parameters for the :func:`getpriority` and :func:`setpriority` functions." +msgid "Parameters for the :func:`getpriority` and :func:`setpriority` functions." msgstr "" -#: ../../library/os.rst:532 -msgid "" -"Return a tuple (ruid, euid, suid) denoting the current process's real, " -"effective, and saved user ids." +msgid "Return a tuple (ruid, euid, suid) denoting the current process's real, effective, and saved user ids." msgstr "" -#: ../../library/os.rst:542 -msgid "" -"Return a tuple (rgid, egid, sgid) denoting the current process's real, " -"effective, and saved group ids." +msgid "Return a tuple (rgid, egid, sgid) denoting the current process's real, effective, and saved group ids." msgstr "" -#: ../../library/os.rst:554 msgid "Return the current process's real user id." msgstr "" -#: ../../library/os.rst:564 -msgid "" -"Call the system ``initgroups()`` to initialize the group access list with " -"all of the groups of which the specified username is a member, plus the " -"specified group id." +msgid "Call the system ``initgroups()`` to initialize the group access list with all of the groups of which the specified username is a member, plus the specified group id." msgstr "" -#: ../../library/os.rst:577 -msgid "" -"Set the environment variable named *key* to the string *value*. Such " -"changes to the environment affect subprocesses started " -"with :func:`os.system`, :func:`popen` or :func:`fork` and :func:`execv`." +msgid "Set the environment variable named *key* to the string *value*. Such changes to the environment affect subprocesses started with :func:`os.system`, :func:`popen` or :func:`fork` and :func:`execv`." msgstr "" -#: ../../library/os.rst:581 -msgid "" -"Assignments to items in :data:`os.environ` are automatically translated into " -"corresponding calls to :func:`putenv`; however, calls to :func:`putenv` " -"don't update :data:`os.environ`, so it is actually preferable to assign to " -"items of :data:`os.environ`. This also applies to :func:`getenv` " -"and :func:`getenvb`, which respectively use :data:`os.environ` " -"and :data:`os.environb` in their implementations." +msgid "Assignments to items in :data:`os.environ` are automatically translated into corresponding calls to :func:`putenv`; however, calls to :func:`putenv` don't update :data:`os.environ`, so it is actually preferable to assign to items of :data:`os.environ`. This also applies to :func:`getenv` and :func:`getenvb`, which respectively use :data:`os.environ` and :data:`os.environb` in their implementations." msgstr "" -#: ../../library/os.rst:587 ../../library/os.rst:862 msgid "See also the :func:`os.reload_environ` function." msgstr "" -#: ../../library/os.rst:591 -msgid "" -"On some platforms, including FreeBSD and macOS, setting ``environ`` may " -"cause memory leaks. Refer to the system documentation for :c:func:`!putenv`." +msgid "On some platforms, including FreeBSD and macOS, setting ``environ`` may cause memory leaks. Refer to the system documentation for :c:func:`!putenv`." msgstr "" -#: ../../library/os.rst:594 -msgid "" -"Raises an :ref:`auditing event ` ``os.putenv`` with arguments " -"``key``, ``value``." +msgid "Raises an :ref:`auditing event ` ``os.putenv`` with arguments ``key``, ``value``." msgstr "" -#: ../../library/os.rst:596 msgid "The function is now always available." msgstr "" -#: ../../library/os.rst:602 msgid "Set the current process's effective group id." msgstr "" -#: ../../library/os.rst:609 msgid "Set the current process's effective user id." msgstr "" -#: ../../library/os.rst:616 msgid "Set the current process' group id." msgstr "" -#: ../../library/os.rst:623 -msgid "" -"Set the list of supplemental group ids associated with the current process " -"to *groups*. *groups* must be a sequence, and each element must be an " -"integer identifying a group. This operation is typically available only to " -"the superuser." +msgid "Set the list of supplemental group ids associated with the current process to *groups*. *groups* must be a sequence, and each element must be an integer identifying a group. This operation is typically available only to the superuser." msgstr "" -#: ../../library/os.rst:629 -msgid "" -"On macOS, the length of *groups* may not exceed the system-defined maximum " -"number of effective group ids, typically 16. See the documentation " -"for :func:`getgroups` for cases where it may not return the same group list " -"set by calling setgroups()." +msgid "On macOS, the length of *groups* may not exceed the system-defined maximum number of effective group ids, typically 16. See the documentation for :func:`getgroups` for cases where it may not return the same group list set by calling setgroups()." msgstr "" -#: ../../library/os.rst:636 -msgid "" -"Reassociate the current thread with a Linux namespace. See " -"the :manpage:`setns(2)` and :manpage:`namespaces(7)` man pages for more " -"details." +msgid "Reassociate the current thread with a Linux namespace. See the :manpage:`setns(2)` and :manpage:`namespaces(7)` man pages for more details." msgstr "" -#: ../../library/os.rst:640 -msgid "" -"If *fd* refers to a :file:`/proc/{pid}/ns/` link, ``setns()`` reassociates " -"the calling thread with the namespace associated with that link, and " -"*nstype* may be set to one of the :ref:`CLONE_NEW* constants ` to impose constraints on the operation (``0`` means no " -"constraints)." +msgid "If *fd* refers to a :file:`/proc/{pid}/ns/` link, ``setns()`` reassociates the calling thread with the namespace associated with that link, and *nstype* may be set to one of the :ref:`CLONE_NEW* constants ` to impose constraints on the operation (``0`` means no constraints)." msgstr "" -#: ../../library/os.rst:647 -msgid "" -"Since Linux 5.8, *fd* may refer to a PID file descriptor obtained " -"from :func:`~os.pidfd_open`. In this case, ``setns()`` reassociates the " -"calling thread into one or more of the same namespaces as the thread " -"referred to by *fd*. This is subject to any constraints imposed by *nstype*, " -"which is a bit mask combining one or more of the :ref:`CLONE_NEW* constants " -"`, e.g. ``setns(fd, os.CLONE_NEWUTS | " -"os.CLONE_NEWPID)``. The caller's memberships in unspecified namespaces are " -"left unchanged." +msgid "Since Linux 5.8, *fd* may refer to a PID file descriptor obtained from :func:`~os.pidfd_open`. In this case, ``setns()`` reassociates the calling thread into one or more of the same namespaces as the thread referred to by *fd*. This is subject to any constraints imposed by *nstype*, which is a bit mask combining one or more of the :ref:`CLONE_NEW* constants `, e.g. ``setns(fd, os.CLONE_NEWUTS | os.CLONE_NEWPID)``. The caller's memberships in unspecified namespaces are left unchanged." msgstr "" -#: ../../library/os.rst:656 -msgid "" -"*fd* can be any object with a :meth:`~io.IOBase.fileno` method, or a raw " -"file descriptor." +msgid "*fd* can be any object with a :meth:`~io.IOBase.fileno` method, or a raw file descriptor." msgstr "" -#: ../../library/os.rst:658 -msgid "" -"This example reassociates the thread with the ``init`` process's network " -"namespace::" +msgid "This example reassociates the thread with the ``init`` process's network namespace::" msgstr "" -#: ../../library/os.rst:660 msgid "" "fd = os.open(\"/proc/1/ns/net\", os.O_RDONLY)\n" "os.setns(fd, os.CLONE_NEWNET)\n" "os.close(fd)" msgstr "" -#: ../../library/os.rst:670 msgid "The :func:`~os.unshare` function." msgstr "" -#: ../../library/os.rst:674 -msgid "" -"Call the system call :c:func:`!setpgrp` or ``setpgrp(0, 0)`` depending on " -"which version is implemented (if any). See the Unix manual for the " -"semantics." +msgid "Call the system call :c:func:`!setpgrp` or ``setpgrp(0, 0)`` depending on which version is implemented (if any). See the Unix manual for the semantics." msgstr "" -#: ../../library/os.rst:682 -msgid "" -"Call the system call :c:func:`!setpgid` to set the process group id of the " -"process with id *pid* to the process group with id *pgrp*. See the Unix " -"manual for the semantics." +msgid "Call the system call :c:func:`!setpgid` to set the process group id of the process with id *pid* to the process group with id *pgrp*. See the Unix manual for the semantics." +msgstr "" + +msgid "Set program scheduling priority. The value *which* is one of :const:`PRIO_PROCESS`, :const:`PRIO_PGRP`, or :const:`PRIO_USER`, and *who* is interpreted relative to *which* (a process identifier for :const:`PRIO_PROCESS`, process group identifier for :const:`PRIO_PGRP`, and a user ID for :const:`PRIO_USER`). A zero value for *who* denotes (respectively) the calling process, the process group of the calling process, or the real user ID of the calling process. *priority* is a value in the range -20 to 19. The default priority is 0; lower priorities cause more favorable scheduling." msgstr "" -#: ../../library/os.rst:693 -msgid "" -"Set program scheduling priority. The value *which* is one " -"of :const:`PRIO_PROCESS`, :const:`PRIO_PGRP`, or :const:`PRIO_USER`, and " -"*who* is interpreted relative to *which* (a process identifier " -"for :const:`PRIO_PROCESS`, process group identifier for :const:`PRIO_PGRP`, " -"and a user ID for :const:`PRIO_USER`). A zero value for *who* denotes " -"(respectively) the calling process, the process group of the calling " -"process, or the real user ID of the calling process. *priority* is a value " -"in the range -20 to 19. The default priority is 0; lower priorities cause " -"more favorable scheduling." -msgstr "" - -#: ../../library/os.rst:710 msgid "Set the current process's real and effective group ids." msgstr "" -#: ../../library/os.rst:717 msgid "Set the current process's real, effective, and saved group ids." msgstr "" -#: ../../library/os.rst:726 msgid "Set the current process's real, effective, and saved user ids." msgstr "" -#: ../../library/os.rst:735 msgid "Set the current process's real and effective user ids." msgstr "" -#: ../../library/os.rst:742 -msgid "" -"Call the system call :c:func:`!getsid`. See the Unix manual for the " -"semantics." +msgid "Call the system call :c:func:`!getsid`. See the Unix manual for the semantics." msgstr "" -#: ../../library/os.rst:749 -msgid "" -"Call the system call :c:func:`!setsid`. See the Unix manual for the " -"semantics." +msgid "Call the system call :c:func:`!setsid`. See the Unix manual for the semantics." msgstr "" -#: ../../library/os.rst:758 msgid "Set the current process's user id." msgstr "" -#: ../../library/os.rst:766 -msgid "" -"Return the error message corresponding to the error code in *code*. On " -"platforms where :c:func:`!strerror` returns ``NULL`` when given an unknown " -"error number, :exc:`ValueError` is raised." +msgid "Return the error message corresponding to the error code in *code*. On platforms where :c:func:`!strerror` returns ``NULL`` when given an unknown error number, :exc:`ValueError` is raised." msgstr "" -#: ../../library/os.rst:773 -msgid "" -"``True`` if the native OS type of the environment is bytes (eg. ``False`` on " -"Windows)." +msgid "``True`` if the native OS type of the environment is bytes (eg. ``False`` on Windows)." msgstr "" -#: ../../library/os.rst:781 msgid "Set the current numeric umask and return the previous umask." msgstr "" -#: ../../library/os.rst:793 -msgid "" -"Returns information identifying the current operating system. The return " -"value is a :class:`uname_result`." +msgid "Returns information identifying the current operating system. The return value is a :class:`uname_result`." msgstr "" -#: ../../library/os.rst:796 -msgid "" -"On macOS, iOS and Android, this returns the *kernel* name and release (i.e., " -"``'Darwin'`` on macOS and iOS; ``'Linux'`` on " -"Android). :func:`platform.uname` can be used to get the user-facing " -"operating system name and release on iOS and Android." +msgid "On macOS, iOS and Android, this returns the *kernel* name and release (i.e., ``'Darwin'`` on macOS and iOS; ``'Linux'`` on Android). :func:`platform.uname` can be used to get the user-facing operating system name and release on iOS and Android." msgstr "" -#: ../../library/os.rst:802 msgid ":data:`sys.platform` which has finer granularity." msgstr "" -#: ../../library/os.rst:809 ../../library/os.rst:5247 -msgid "" -"Return type changed from a tuple to a tuple-like object with named " -"attributes." +msgid "Return type changed from a tuple to a tuple-like object with named attributes." msgstr "" -#: ../../library/os.rst:816 -msgid "" -"Name and information about the system returned by :func:`os.uname`. These " -"attributes correspond to the members described in :manpage:`uname(2)`." +msgid "Name and information about the system returned by :func:`os.uname`. These attributes correspond to the members described in :manpage:`uname(2)`." msgstr "" -#: ../../library/os.rst:819 -msgid "" -"For backwards compatibility, this object is also iterable, behaving like a " -"five-tuple " -"containing :attr:`~uname_result.sysname`, :attr:`~uname_result.nodename`, :attr:`~uname_result.release`, :attr:`~uname_result.version`, " -"and :attr:`~uname_result.machine` in that order." +msgid "For backwards compatibility, this object is also iterable, behaving like a five-tuple containing :attr:`~uname_result.sysname`, :attr:`~uname_result.nodename`, :attr:`~uname_result.release`, :attr:`~uname_result.version`, and :attr:`~uname_result.machine` in that order." msgstr "" -#: ../../library/os.rst:827 msgid "Operating system name." msgstr "" -#: ../../library/os.rst:831 -msgid "" -"Name of machine on network. Some systems " -"truncate :attr:`~uname_result.nodename` to 8 characters or to the leading " -"component; a better way to get the hostname is :func:`socket.gethostname` or " -"even ``socket.gethostbyaddr(socket.gethostname())``." +msgid "Name of machine on network. Some systems truncate :attr:`~uname_result.nodename` to 8 characters or to the leading component; a better way to get the hostname is :func:`socket.gethostname` or even ``socket.gethostbyaddr(socket.gethostname())``." msgstr "" -#: ../../library/os.rst:838 msgid "Operating system release." msgstr "" -#: ../../library/os.rst:842 msgid "Operating system version." msgstr "" -#: ../../library/os.rst:846 msgid "Hardware identifier." msgstr "" -#: ../../library/os.rst:853 -msgid "" -"Unset (delete) the environment variable named *key*. Such changes to the " -"environment affect subprocesses started " -"with :func:`os.system`, :func:`popen` or :func:`fork` and :func:`execv`." +msgid "Unset (delete) the environment variable named *key*. Such changes to the environment affect subprocesses started with :func:`os.system`, :func:`popen` or :func:`fork` and :func:`execv`." msgstr "" -#: ../../library/os.rst:857 -msgid "" -"Deletion of items in :data:`os.environ` is automatically translated into a " -"corresponding call to :func:`unsetenv`; however, calls to :func:`unsetenv` " -"don't update :data:`os.environ`, so it is actually preferable to delete " -"items of :data:`os.environ`." +msgid "Deletion of items in :data:`os.environ` is automatically translated into a corresponding call to :func:`unsetenv`; however, calls to :func:`unsetenv` don't update :data:`os.environ`, so it is actually preferable to delete items of :data:`os.environ`." msgstr "" -#: ../../library/os.rst:864 -msgid "" -"Raises an :ref:`auditing event ` ``os.unsetenv`` with argument " -"``key``." +msgid "Raises an :ref:`auditing event ` ``os.unsetenv`` with argument ``key``." msgstr "" -#: ../../library/os.rst:866 msgid "The function is now always available and is also available on Windows." msgstr "" -#: ../../library/os.rst:872 -msgid "" -"Disassociate parts of the process execution context, and move them into a " -"newly created namespace. See the :manpage:`unshare(2)` man page for more " -"details. The *flags* argument is a bit mask, combining zero or more of " -"the :ref:`CLONE_* constants `, that specifies which " -"parts of the execution context should be unshared from their existing " -"associations and moved to a new namespace. If the *flags* argument is ``0``, " -"no changes are made to the calling process's execution context." +msgid "Disassociate parts of the process execution context, and move them into a newly created namespace. See the :manpage:`unshare(2)` man page for more details. The *flags* argument is a bit mask, combining zero or more of the :ref:`CLONE_* constants `, that specifies which parts of the execution context should be unshared from their existing associations and moved to a new namespace. If the *flags* argument is ``0``, no changes are made to the calling process's execution context." msgstr "" -#: ../../library/os.rst:889 msgid "The :func:`~os.setns` function." msgstr "" -#: ../../library/os.rst:893 -msgid "" -"Flags to the :func:`unshare` function, if the implementation supports them. " -"See :manpage:`unshare(2)` in the Linux manual for their exact effect and " -"availability." +msgid "Flags to the :func:`unshare` function, if the implementation supports them. See :manpage:`unshare(2)` in the Linux manual for their exact effect and availability." msgstr "" -#: ../../library/os.rst:916 msgid "File Object Creation" msgstr "" -#: ../../library/os.rst:918 -msgid "" -"These functions create new :term:`file objects `. (See " -"also :func:`~os.open` for opening file descriptors.)" +msgid "These functions create new :term:`file objects `. (See also :func:`~os.open` for opening file descriptors.)" msgstr "" -#: ../../library/os.rst:924 -msgid "" -"Return an open file object connected to the file descriptor *fd*. This is " -"an alias of the :func:`open` built-in function and accepts the same " -"arguments. The only difference is that the first argument of :func:`fdopen` " -"must always be an integer." +msgid "Return an open file object connected to the file descriptor *fd*. This is an alias of the :func:`open` built-in function and accepts the same arguments. The only difference is that the first argument of :func:`fdopen` must always be an integer." msgstr "" -#: ../../library/os.rst:933 msgid "File Descriptor Operations" msgstr "" -#: ../../library/os.rst:935 -msgid "" -"These functions operate on I/O streams referenced using file descriptors." +msgid "These functions operate on I/O streams referenced using file descriptors." msgstr "" -#: ../../library/os.rst:937 -msgid "" -"File descriptors are small integers corresponding to a file that has been " -"opened by the current process. For example, standard input is usually file " -"descriptor 0, standard output is 1, and standard error is 2. Further files " -"opened by a process will then be assigned 3, 4, 5, and so forth. The name " -"\"file descriptor\" is slightly deceptive; on Unix platforms, sockets and " -"pipes are also referenced by file descriptors." +msgid "File descriptors are small integers corresponding to a file that has been opened by the current process. For example, standard input is usually file descriptor 0, standard output is 1, and standard error is 2. Further files opened by a process will then be assigned 3, 4, 5, and so forth. The name \"file descriptor\" is slightly deceptive; on Unix platforms, sockets and pipes are also referenced by file descriptors." msgstr "" -#: ../../library/os.rst:944 -msgid "" -"The :meth:`~io.IOBase.fileno` method can be used to obtain the file " -"descriptor associated with a :term:`file object` when required. Note that " -"using the file descriptor directly will bypass the file object methods, " -"ignoring aspects such as internal buffering of data." +msgid "The :meth:`~io.IOBase.fileno` method can be used to obtain the file descriptor associated with a :term:`file object` when required. Note that using the file descriptor directly will bypass the file object methods, ignoring aspects such as internal buffering of data." msgstr "" -#: ../../library/os.rst:952 msgid "Close file descriptor *fd*." msgstr "" -#: ../../library/os.rst:956 -msgid "" -"This function is intended for low-level I/O and must be applied to a file " -"descriptor as returned by :func:`os.open` or :func:`pipe`. To close a " -"\"file object\" returned by the built-in function :func:`open` or " -"by :func:`popen` or :func:`fdopen`, use its :meth:`~io.IOBase.close` method." +msgid "This function is intended for low-level I/O and must be applied to a file descriptor as returned by :func:`os.open` or :func:`pipe`. To close a \"file object\" returned by the built-in function :func:`open` or by :func:`popen` or :func:`fdopen`, use its :meth:`~io.IOBase.close` method." msgstr "" -#: ../../library/os.rst:964 -msgid "" -"Close all file descriptors from *fd_low* (inclusive) to *fd_high* " -"(exclusive), ignoring errors. Equivalent to (but much faster than)::" +msgid "Close all file descriptors from *fd_low* (inclusive) to *fd_high* (exclusive), ignoring errors. Equivalent to (but much faster than)::" msgstr "" -#: ../../library/os.rst:967 msgid "" "for fd in range(fd_low, fd_high):\n" " try:\n" @@ -1081,1174 +490,570 @@ msgid "" " pass" msgstr "" -#: ../../library/os.rst:976 -msgid "" -"Copy *count* bytes from file descriptor *src*, starting from offset " -"*offset_src*, to file descriptor *dst*, starting from offset *offset_dst*. " -"If *offset_src* is ``None``, then *src* is read from the current position; " -"respectively for *offset_dst*." +msgid "Copy *count* bytes from file descriptor *src*, starting from offset *offset_src*, to file descriptor *dst*, starting from offset *offset_dst*. If *offset_src* is ``None``, then *src* is read from the current position; respectively for *offset_dst*." msgstr "" -#: ../../library/os.rst:981 -msgid "" -"In Linux kernel older than 5.3, the files pointed to by *src* and *dst* must " -"reside in the same filesystem, otherwise an :exc:`OSError` is raised " -"with :attr:`~OSError.errno` set to :const:`errno.EXDEV`." +msgid "In Linux kernel older than 5.3, the files pointed to by *src* and *dst* must reside in the same filesystem, otherwise an :exc:`OSError` is raised with :attr:`~OSError.errno` set to :const:`errno.EXDEV`." msgstr "" -#: ../../library/os.rst:985 -msgid "" -"This copy is done without the additional cost of transferring data from the " -"kernel to user space and then back into the kernel. Additionally, some " -"filesystems could implement extra optimizations, such as the use of reflinks " -"(i.e., two or more inodes that share pointers to the same copy-on-write disk " -"blocks; supported file systems include btrfs and XFS) and server-side copy " -"(in the case of NFS)." +msgid "This copy is done without the additional cost of transferring data from the kernel to user space and then back into the kernel. Additionally, some filesystems could implement extra optimizations, such as the use of reflinks (i.e., two or more inodes that share pointers to the same copy-on-write disk blocks; supported file systems include btrfs and XFS) and server-side copy (in the case of NFS)." msgstr "" -#: ../../library/os.rst:992 -msgid "" -"The function copies bytes between two file descriptors. Text options, like " -"the encoding and the line ending, are ignored." +msgid "The function copies bytes between two file descriptors. Text options, like the encoding and the line ending, are ignored." msgstr "" -#: ../../library/os.rst:995 -msgid "" -"The return value is the amount of bytes copied. This could be less than the " -"amount requested." +msgid "The return value is the amount of bytes copied. This could be less than the amount requested." msgstr "" -#: ../../library/os.rst:1000 -msgid "" -"On Linux, :func:`os.copy_file_range` should not be used for copying a range " -"of a pseudo file from a special filesystem like procfs and sysfs. It will " -"always copy no bytes and return 0 as if the file was empty because of a " -"known Linux kernel issue." +msgid "On Linux, :func:`os.copy_file_range` should not be used for copying a range of a pseudo file from a special filesystem like procfs and sysfs. It will always copy no bytes and return 0 as if the file was empty because of a known Linux kernel issue." msgstr "" -#: ../../library/os.rst:1012 -msgid "" -"Return a string describing the encoding of the device associated with *fd* " -"if it is connected to a terminal; else return :const:`None`." +msgid "Return a string describing the encoding of the device associated with *fd* if it is connected to a terminal; else return :const:`None`." msgstr "" -#: ../../library/os.rst:1015 -msgid "" -"On Unix, if the :ref:`Python UTF-8 Mode ` is enabled, return " -"``'UTF-8'`` rather than the device encoding." +msgid "On Unix, if the :ref:`Python UTF-8 Mode ` is enabled, return ``'UTF-8'`` rather than the device encoding." msgstr "" -#: ../../library/os.rst:1018 msgid "On Unix, the function now implements the Python UTF-8 Mode." msgstr "" -#: ../../library/os.rst:1024 -msgid "" -"Return a duplicate of file descriptor *fd*. The new file descriptor " -"is :ref:`non-inheritable `." +msgid "Return a duplicate of file descriptor *fd*. The new file descriptor is :ref:`non-inheritable `." msgstr "" -#: ../../library/os.rst:1027 -msgid "" -"On Windows, when duplicating a standard stream (0: stdin, 1: stdout, 2: " -"stderr), the new file descriptor is :ref:`inheritable `." +msgid "On Windows, when duplicating a standard stream (0: stdin, 1: stdout, 2: stderr), the new file descriptor is :ref:`inheritable `." msgstr "" -#: ../../library/os.rst:1033 ../../library/os.rst:1315 msgid "The new file descriptor is now non-inheritable." msgstr "" -#: ../../library/os.rst:1039 -msgid "" -"Duplicate file descriptor *fd* to *fd2*, closing the latter first if " -"necessary. Return *fd2*. The new file descriptor is :ref:`inheritable " -"` by default or non-inheritable if *inheritable* is " -"``False``." +msgid "Duplicate file descriptor *fd* to *fd2*, closing the latter first if necessary. Return *fd2*. The new file descriptor is :ref:`inheritable ` by default or non-inheritable if *inheritable* is ``False``." msgstr "" -#: ../../library/os.rst:1046 msgid "Add the optional *inheritable* parameter." msgstr "" -#: ../../library/os.rst:1049 msgid "Return *fd2* on success. Previously, ``None`` was always returned." msgstr "" -#: ../../library/os.rst:1055 -msgid "" -"Change the mode of the file given by *fd* to the numeric *mode*. See the " -"docs for :func:`chmod` for possible values of *mode*. As of Python 3.3, " -"this is equivalent to ``os.chmod(fd, mode)``." +msgid "Change the mode of the file given by *fd* to the numeric *mode*. See the docs for :func:`chmod` for possible values of *mode*. As of Python 3.3, this is equivalent to ``os.chmod(fd, mode)``." msgstr "" -#: ../../library/os.rst:1059 ../../library/os.rst:2237 -#: ../../library/os.rst:2338 -msgid "" -"Raises an :ref:`auditing event ` ``os.chmod`` with arguments " -"``path``, ``mode``, ``dir_fd``." +msgid "Raises an :ref:`auditing event ` ``os.chmod`` with arguments ``path``, ``mode``, ``dir_fd``." msgstr "" -#: ../../library/os.rst:1063 ../../library/os.rst:1081 -#: ../../library/os.rst:1169 ../../library/os.rst:1781 -#: ../../library/os.rst:2234 ../../library/os.rst:2267 -#: ../../library/os.rst:3698 -msgid "" -"The function is limited on WASI, see :ref:`wasm-availability` for more " -"information." +msgid "The function is limited on WASI, see :ref:`wasm-availability` for more information." msgstr "" -#: ../../library/os.rst:1066 ../../library/os.rst:2345 msgid "Added support on Windows." msgstr "" -#: ../../library/os.rst:1072 -msgid "" -"Change the owner and group id of the file given by *fd* to the numeric *uid* " -"and *gid*. To leave one of the ids unchanged, set it to -1. " -"See :func:`chown`. As of Python 3.3, this is equivalent to ``os.chown(fd, " -"uid, gid)``." +msgid "Change the owner and group id of the file given by *fd* to the numeric *uid* and *gid*. To leave one of the ids unchanged, set it to -1. See :func:`chown`. As of Python 3.3, this is equivalent to ``os.chown(fd, uid, gid)``." msgstr "" -#: ../../library/os.rst:1077 ../../library/os.rst:2263 -#: ../../library/os.rst:2354 -msgid "" -"Raises an :ref:`auditing event ` ``os.chown`` with arguments " -"``path``, ``uid``, ``gid``, ``dir_fd``." +msgid "Raises an :ref:`auditing event ` ``os.chown`` with arguments ``path``, ``uid``, ``gid``, ``dir_fd``." msgstr "" -#: ../../library/os.rst:1087 -msgid "" -"Force write of file with filedescriptor *fd* to disk. Does not force update " -"of metadata." +msgid "Force write of file with filedescriptor *fd* to disk. Does not force update of metadata." msgstr "" -#: ../../library/os.rst:1095 -msgid "" -"Return system configuration information relevant to an open file. *name* " -"specifies the configuration value to retrieve; it may be a string which is " -"the name of a defined system value; these names are specified in a number of " -"standards (POSIX.1, Unix 95, Unix 98, and others). Some platforms define " -"additional names as well. The names known to the host operating system are " -"given in the ``pathconf_names`` dictionary. For configuration variables not " -"included in that mapping, passing an integer for *name* is also accepted." +msgid "Return system configuration information relevant to an open file. *name* specifies the configuration value to retrieve; it may be a string which is the name of a defined system value; these names are specified in a number of standards (POSIX.1, Unix 95, Unix 98, and others). Some platforms define additional names as well. The names known to the host operating system are given in the ``pathconf_names`` dictionary. For configuration variables not included in that mapping, passing an integer for *name* is also accepted." msgstr "" -#: ../../library/os.rst:1103 ../../library/os.rst:2674 -msgid "" -"If *name* is a string and is not known, :exc:`ValueError` is raised. If a " -"specific value for *name* is not supported by the host system, even if it is " -"included in ``pathconf_names``, an :exc:`OSError` is raised " -"with :const:`errno.EINVAL` for the error number." +msgid "If *name* is a string and is not known, :exc:`ValueError` is raised. If a specific value for *name* is not supported by the host system, even if it is included in ``pathconf_names``, an :exc:`OSError` is raised with :const:`errno.EINVAL` for the error number." msgstr "" -#: ../../library/os.rst:1108 msgid "As of Python 3.3, this is equivalent to ``os.pathconf(fd, name)``." msgstr "" -#: ../../library/os.rst:1115 -msgid "" -"Get the status of the file descriptor *fd*. Return a :class:`stat_result` " -"object." +msgid "Get the status of the file descriptor *fd*. Return a :class:`stat_result` object." msgstr "" -#: ../../library/os.rst:1118 msgid "As of Python 3.3, this is equivalent to ``os.stat(fd)``." msgstr "" -#: ../../library/os.rst:1122 ../../library/os.rst:2502 msgid "The :func:`.stat` function." msgstr "" -#: ../../library/os.rst:1127 -msgid "" -"Return information about the filesystem containing the file associated with " -"file descriptor *fd* in a :class:`statvfs_result`, like :func:`statvfs`. As " -"of Python 3.3, this is equivalent to ``os.statvfs(fd)``." +msgid "Return information about the filesystem containing the file associated with file descriptor *fd* in a :class:`statvfs_result`, like :func:`statvfs`. As of Python 3.3, this is equivalent to ``os.statvfs(fd)``." msgstr "" -#: ../../library/os.rst:1136 -msgid "" -"Force write of file with filedescriptor *fd* to disk. On Unix, this calls " -"the native :c:func:`!fsync` function; on Windows, the MS :c:func:`!_commit` " -"function." +msgid "Force write of file with filedescriptor *fd* to disk. On Unix, this calls the native :c:func:`!fsync` function; on Windows, the MS :c:func:`!_commit` function." msgstr "" -#: ../../library/os.rst:1139 -msgid "" -"If you're starting with a buffered Python :term:`file object` *f*, first do " -"``f.flush()``, and then do ``os.fsync(f.fileno())``, to ensure that all " -"internal buffers associated with *f* are written to disk." +msgid "If you're starting with a buffered Python :term:`file object` *f*, first do ``f.flush()``, and then do ``os.fsync(f.fileno())``, to ensure that all internal buffers associated with *f* are written to disk." msgstr "" -#: ../../library/os.rst:1148 -msgid "" -"Truncate the file corresponding to file descriptor *fd*, so that it is at " -"most *length* bytes in size. As of Python 3.3, this is equivalent to " -"``os.truncate(fd, length)``." +msgid "Truncate the file corresponding to file descriptor *fd*, so that it is at most *length* bytes in size. As of Python 3.3, this is equivalent to ``os.truncate(fd, length)``." msgstr "" -#: ../../library/os.rst:1152 -msgid "" -"Raises an :ref:`auditing event ` ``os.truncate`` with arguments " -"``fd``, ``length``." +msgid "Raises an :ref:`auditing event ` ``os.truncate`` with arguments ``fd``, ``length``." msgstr "" -#: ../../library/os.rst:1156 ../../library/os.rst:3737 msgid "Added support for Windows" msgstr "" -#: ../../library/os.rst:1162 -msgid "" -"Get the blocking mode of the file descriptor: ``False`` if " -"the :data:`O_NONBLOCK` flag is set, ``True`` if the flag is cleared." +msgid "Get the blocking mode of the file descriptor: ``False`` if the :data:`O_NONBLOCK` flag is set, ``True`` if the flag is cleared." msgstr "" -#: ../../library/os.rst:1165 msgid "See also :func:`set_blocking` and :meth:`socket.socket.setblocking`." msgstr "" -#: ../../library/os.rst:1172 ../../library/os.rst:1784 msgid "On Windows, this function is limited to pipes." msgstr "" -#: ../../library/os.rst:1176 ../../library/os.rst:1788 msgid "Added support for pipes on Windows." msgstr "" -#: ../../library/os.rst:1182 -msgid "" -"Grant access to the slave pseudo-terminal device associated with the master " -"pseudo-terminal device to which the file descriptor *fd* refers. The file " -"descriptor *fd* is not closed upon failure." +msgid "Grant access to the slave pseudo-terminal device associated with the master pseudo-terminal device to which the file descriptor *fd* refers. The file descriptor *fd* is not closed upon failure." msgstr "" -#: ../../library/os.rst:1186 msgid "Calls the C standard library function :c:func:`grantpt`." msgstr "" -#: ../../library/os.rst:1195 -msgid "" -"Return ``True`` if the file descriptor *fd* is open and connected to a tty(-" -"like) device, else ``False``." +msgid "Return ``True`` if the file descriptor *fd* is open and connected to a tty(-like) device, else ``False``." msgstr "" -#: ../../library/os.rst:1201 -msgid "" -"Apply, test or remove a POSIX lock on an open file descriptor. *fd* is an " -"open file descriptor. *cmd* specifies the command to use - one " -"of :data:`F_LOCK`, :data:`F_TLOCK`, :data:`F_ULOCK` or :data:`F_TEST`. *len* " -"specifies the section of the file to lock." +msgid "Apply, test or remove a POSIX lock on an open file descriptor. *fd* is an open file descriptor. *cmd* specifies the command to use - one of :data:`F_LOCK`, :data:`F_TLOCK`, :data:`F_ULOCK` or :data:`F_TEST`. *len* specifies the section of the file to lock." msgstr "" -#: ../../library/os.rst:1207 -msgid "" -"Raises an :ref:`auditing event ` ``os.lockf`` with arguments " -"``fd``, ``cmd``, ``len``." +msgid "Raises an :ref:`auditing event ` ``os.lockf`` with arguments ``fd``, ``cmd``, ``len``." msgstr "" -#: ../../library/os.rst:1219 msgid "Flags that specify what action :func:`lockf` will take." msgstr "" -#: ../../library/os.rst:1228 -msgid "" -"Prepare the tty of which fd is a file descriptor for a new login session. " -"Make the calling process a session leader; make the tty the controlling tty, " -"the stdin, the stdout, and the stderr of the calling process; close fd." +msgid "Prepare the tty of which fd is a file descriptor for a new login session. Make the calling process a session leader; make the tty the controlling tty, the stdin, the stdout, and the stderr of the calling process; close fd." msgstr "" -#: ../../library/os.rst:1239 -msgid "" -"Set the current position of file descriptor *fd* to position *pos*, modified " -"by *whence*, and return the new position in bytes relative to the start of " -"the file. Valid values for *whence* are:" +msgid "Set the current position of file descriptor *fd* to position *pos*, modified by *whence*, and return the new position in bytes relative to the start of the file. Valid values for *whence* are:" msgstr "" -#: ../../library/os.rst:1244 -msgid "" -":const:`SEEK_SET` or ``0`` -- set *pos* relative to the beginning of the file" +msgid ":const:`SEEK_SET` or ``0`` -- set *pos* relative to the beginning of the file" msgstr "" -#: ../../library/os.rst:1245 -msgid "" -":const:`SEEK_CUR` or ``1`` -- set *pos* relative to the current file position" +msgid ":const:`SEEK_CUR` or ``1`` -- set *pos* relative to the current file position" msgstr "" -#: ../../library/os.rst:1246 msgid ":const:`SEEK_END` or ``2`` -- set *pos* relative to the end of the file" msgstr "" -#: ../../library/os.rst:1247 -msgid "" -":const:`SEEK_HOLE` -- set *pos* to the next data location, relative to *pos*" +msgid ":const:`SEEK_HOLE` -- set *pos* to the next data location, relative to *pos*" msgstr "" -#: ../../library/os.rst:1248 -msgid "" -":const:`SEEK_DATA` -- set *pos* to the next data hole, relative to *pos*" +msgid ":const:`SEEK_DATA` -- set *pos* to the next data hole, relative to *pos*" msgstr "" -#: ../../library/os.rst:1252 msgid "Add support for :const:`!SEEK_HOLE` and :const:`!SEEK_DATA`." msgstr "" -#: ../../library/os.rst:1259 -msgid "" -"Parameters to the :func:`lseek` function and the :meth:`~io.IOBase.seek` " -"method on :term:`file-like objects `, for whence to adjust the " -"file position indicator." +msgid "Parameters to the :func:`lseek` function and the :meth:`~io.IOBase.seek` method on :term:`file-like objects `, for whence to adjust the file position indicator." msgstr "" -#: ../../library/os.rst:1263 msgid ":const:`SEEK_SET`" msgstr "" -#: ../../library/os.rst:1264 msgid "Adjust the file position relative to the beginning of the file." msgstr "" -#: ../../library/os.rst:1265 msgid ":const:`SEEK_CUR`" msgstr "" -#: ../../library/os.rst:1266 msgid "Adjust the file position relative to the current file position." msgstr "" -#: ../../library/os.rst:1267 msgid ":const:`SEEK_END`" msgstr "" -#: ../../library/os.rst:1268 msgid "Adjust the file position relative to the end of the file." msgstr "" -#: ../../library/os.rst:1270 msgid "Their values are 0, 1, and 2, respectively." msgstr "" -#: ../../library/os.rst:1276 -msgid "" -"Parameters to the :func:`lseek` function and the :meth:`~io.IOBase.seek` " -"method on :term:`file-like objects `, for seeking file data and " -"holes on sparsely allocated files." +msgid "Parameters to the :func:`lseek` function and the :meth:`~io.IOBase.seek` method on :term:`file-like objects `, for seeking file data and holes on sparsely allocated files." msgstr "" -#: ../../library/os.rst:1280 msgid ":data:`!SEEK_DATA`" msgstr "" -#: ../../library/os.rst:1281 -msgid "" -"Adjust the file offset to the next location containing data, relative to the " -"seek position." +msgid "Adjust the file offset to the next location containing data, relative to the seek position." msgstr "" -#: ../../library/os.rst:1284 msgid ":data:`!SEEK_HOLE`" msgstr "" -#: ../../library/os.rst:1285 -msgid "" -"Adjust the file offset to the next location containing a hole, relative to " -"the seek position. A hole is defined as a sequence of zeros." +msgid "Adjust the file offset to the next location containing a hole, relative to the seek position. A hole is defined as a sequence of zeros." msgstr "" -#: ../../library/os.rst:1291 msgid "These operations only make sense for filesystems that support them." msgstr "" -#: ../../library/os.rst:1300 -msgid "" -"Open the file *path* and set various flags according to *flags* and possibly " -"its mode according to *mode*. When computing *mode*, the current umask " -"value is first masked out. Return the file descriptor for the newly opened " -"file. The new file descriptor is :ref:`non-inheritable `." +msgid "Open the file *path* and set various flags according to *flags* and possibly its mode according to *mode*. When computing *mode*, the current umask value is first masked out. Return the file descriptor for the newly opened file. The new file descriptor is :ref:`non-inheritable `." msgstr "" -#: ../../library/os.rst:1305 -msgid "" -"For a description of the flag and mode values, see the C run-time " -"documentation; flag constants (like :const:`O_RDONLY` and :const:`O_WRONLY`) " -"are defined in the :mod:`!os` module. In particular, on Windows " -"adding :const:`O_BINARY` is needed to open files in binary mode." +msgid "For a description of the flag and mode values, see the C run-time documentation; flag constants (like :const:`O_RDONLY` and :const:`O_WRONLY`) are defined in the :mod:`!os` module. In particular, on Windows adding :const:`O_BINARY` is needed to open files in binary mode." msgstr "" -#: ../../library/os.rst:1310 -msgid "" -"This function can support :ref:`paths relative to directory descriptors " -"` with the *dir_fd* parameter." +msgid "This function can support :ref:`paths relative to directory descriptors ` with the *dir_fd* parameter." msgstr "" -#: ../../library/os.rst:1313 -msgid "" -"Raises an :ref:`auditing event ` ``open`` with arguments ``path``, " -"``mode``, ``flags``." +msgid "Raises an :ref:`auditing event ` ``open`` with arguments ``path``, ``mode``, ``flags``." msgstr "" -#: ../../library/os.rst:1320 -msgid "" -"This function is intended for low-level I/O. For normal usage, use the " -"built-in function :func:`open`, which returns a :term:`file object` " -"with :meth:`~io.BufferedIOBase.read` and :meth:`~io.BufferedIOBase.write` " -"methods. To wrap a file descriptor in a file object, use :func:`fdopen`." +msgid "This function is intended for low-level I/O. For normal usage, use the built-in function :func:`open`, which returns a :term:`file object` with :meth:`~io.BufferedIOBase.read` and :meth:`~io.BufferedIOBase.write` methods. To wrap a file descriptor in a file object, use :func:`fdopen`." msgstr "" -#: ../../library/os.rst:1325 ../../library/os.rst:2507 -#: ../../library/os.rst:2547 ../../library/os.rst:2618 -#: ../../library/os.rst:2640 ../../library/os.rst:2721 -#: ../../library/os.rst:2751 ../../library/os.rst:2858 -#: ../../library/os.rst:3753 msgid "Added the *dir_fd* parameter." msgstr "" -#: ../../library/os.rst:1328 ../../library/os.rst:1679 -#: ../../library/os.rst:1914 ../../library/os.rst:5343 -msgid "" -"If the system call is interrupted and the signal handler does not raise an " -"exception, the function now retries the system call instead of raising " -"an :exc:`InterruptedError` exception (see :pep:`475` for the rationale)." -msgstr "" - -#: ../../library/os.rst:1333 ../../library/os.rst:2125 -#: ../../library/os.rst:2162 ../../library/os.rst:2193 -#: ../../library/os.rst:2243 ../../library/os.rst:2284 -#: ../../library/os.rst:2324 ../../library/os.rst:2342 -#: ../../library/os.rst:2358 ../../library/os.rst:2418 -#: ../../library/os.rst:2510 ../../library/os.rst:2550 -#: ../../library/os.rst:2594 ../../library/os.rst:2621 -#: ../../library/os.rst:2643 ../../library/os.rst:2684 -#: ../../library/os.rst:2754 ../../library/os.rst:2773 -#: ../../library/os.rst:2861 ../../library/os.rst:3160 -#: ../../library/os.rst:3422 ../../library/os.rst:3740 -#: ../../library/os.rst:3756 ../../library/os.rst:3796 -#: ../../library/os.rst:3896 ../../library/os.rst:3957 -#: ../../library/os.rst:4354 ../../library/os.rst:4534 -#: ../../library/os.rst:5102 +msgid "If the system call is interrupted and the signal handler does not raise an exception, the function now retries the system call instead of raising an :exc:`InterruptedError` exception (see :pep:`475` for the rationale)." +msgstr "" + msgid "Accepts a :term:`path-like object`." msgstr "" -#: ../../library/os.rst:1336 -msgid "" -"The following constants are options for the *flags* parameter to " -"the :func:`~os.open` function. They can be combined using the bitwise OR " -"operator ``|``. Some of them are not available on all platforms. For " -"descriptions of their availability and use, consult the :manpage:`open(2)` " -"manual page on Unix or `the MSDN `_ on Windows." +msgid "The following constants are options for the *flags* parameter to the :func:`~os.open` function. They can be combined using the bitwise OR operator ``|``. Some of them are not available on all platforms. For descriptions of their availability and use, consult the :manpage:`open(2)` manual page on Unix or `the MSDN `_ on Windows." msgstr "" -#: ../../library/os.rst:1351 msgid "The above constants are available on Unix and Windows." msgstr "" -#: ../../library/os.rst:1362 msgid "The above constants are only available on Unix." msgstr "" -#: ../../library/os.rst:1364 msgid "Add :data:`O_CLOEXEC` constant." msgstr "" -#: ../../library/os.rst:1375 msgid "The above constants are only available on Windows." msgstr "" -#: ../../library/os.rst:1382 msgid "The above constants are only available on macOS." msgstr "" -#: ../../library/os.rst:1384 -msgid "" -"Add :data:`O_EVTONLY`, :data:`O_FSYNC`, :data:`O_SYMLINK` " -"and :data:`O_NOFOLLOW_ANY` constants." +msgid "Add :data:`O_EVTONLY`, :data:`O_FSYNC`, :data:`O_SYMLINK` and :data:`O_NOFOLLOW_ANY` constants." msgstr "" -#: ../../library/os.rst:1398 -msgid "" -"The above constants are extensions and not present if they are not defined " -"by the C library." +msgid "The above constants are extensions and not present if they are not defined by the C library." msgstr "" -#: ../../library/os.rst:1401 -msgid "" -"Add :data:`O_PATH` on systems that support it. Add :data:`O_TMPFILE`, only " -"available on Linux Kernel 3.11 or newer." +msgid "Add :data:`O_PATH` on systems that support it. Add :data:`O_TMPFILE`, only available on Linux Kernel 3.11 or newer." msgstr "" -#: ../../library/os.rst:1411 -msgid "" -"Open a new pseudo-terminal pair. Return a pair of file descriptors " -"``(master, slave)`` for the pty and the tty, respectively. The new file " -"descriptors are :ref:`non-inheritable `. For a (slightly) " -"more portable approach, use the :mod:`pty` module." +msgid "Open a new pseudo-terminal pair. Return a pair of file descriptors ``(master, slave)`` for the pty and the tty, respectively. The new file descriptors are :ref:`non-inheritable `. For a (slightly) more portable approach, use the :mod:`pty` module." msgstr "" -#: ../../library/os.rst:1418 ../../library/os.rst:1430 msgid "The new file descriptors are now non-inheritable." msgstr "" -#: ../../library/os.rst:1424 -msgid "" -"Create a pipe. Return a pair of file descriptors ``(r, w)`` usable for " -"reading and writing, respectively. The new file descriptor is :ref:`non-" -"inheritable `." +msgid "Create a pipe. Return a pair of file descriptors ``(r, w)`` usable for reading and writing, respectively. The new file descriptor is :ref:`non-inheritable `." msgstr "" -#: ../../library/os.rst:1436 -msgid "" -"Create a pipe with *flags* set atomically. *flags* can be constructed by " -"ORing together one or more of these " -"values: :data:`O_NONBLOCK`, :data:`O_CLOEXEC`. Return a pair of file " -"descriptors ``(r, w)`` usable for reading and writing, respectively." +msgid "Create a pipe with *flags* set atomically. *flags* can be constructed by ORing together one or more of these values: :data:`O_NONBLOCK`, :data:`O_CLOEXEC`. Return a pair of file descriptors ``(r, w)`` usable for reading and writing, respectively." msgstr "" -#: ../../library/os.rst:1449 -msgid "" -"Ensures that enough disk space is allocated for the file specified by *fd* " -"starting from *offset* and continuing for *len* bytes." +msgid "Ensures that enough disk space is allocated for the file specified by *fd* starting from *offset* and continuing for *len* bytes." msgstr "" -#: ../../library/os.rst:1459 -msgid "" -"Announces an intention to access data in a specific pattern thus allowing " -"the kernel to make optimizations. The advice applies to the region of the " -"file specified by *fd* starting at *offset* and continuing for *len* bytes. " -"*advice* is one " -"of :data:`POSIX_FADV_NORMAL`, :data:`POSIX_FADV_SEQUENTIAL`, :data:`POSIX_FADV_RANDOM`, :data:`POSIX_FADV_NOREUSE`, :data:`POSIX_FADV_WILLNEED` " -"or :data:`POSIX_FADV_DONTNEED`." +msgid "Announces an intention to access data in a specific pattern thus allowing the kernel to make optimizations. The advice applies to the region of the file specified by *fd* starting at *offset* and continuing for *len* bytes. *advice* is one of :data:`POSIX_FADV_NORMAL`, :data:`POSIX_FADV_SEQUENTIAL`, :data:`POSIX_FADV_RANDOM`, :data:`POSIX_FADV_NOREUSE`, :data:`POSIX_FADV_WILLNEED` or :data:`POSIX_FADV_DONTNEED`." msgstr "" -#: ../../library/os.rst:1479 -msgid "" -"Flags that can be used in *advice* in :func:`posix_fadvise` that specify the " -"access pattern that is likely to be used." +msgid "Flags that can be used in *advice* in :func:`posix_fadvise` that specify the access pattern that is likely to be used." msgstr "" -#: ../../library/os.rst:1489 -msgid "" -"Read at most *n* bytes from file descriptor *fd* at a position of *offset*, " -"leaving the file offset unchanged." +msgid "Read at most *n* bytes from file descriptor *fd* at a position of *offset*, leaving the file offset unchanged." msgstr "" -#: ../../library/os.rst:1492 ../../library/os.rst:1668 -msgid "" -"Return a bytestring containing the bytes read. If the end of the file " -"referred to by *fd* has been reached, an empty bytes object is returned." +msgid "Return a bytestring containing the bytes read. If the end of the file referred to by *fd* has been reached, an empty bytes object is returned." msgstr "" -#: ../../library/os.rst:1502 msgid "Open and return a file descriptor for a master pseudo-terminal device." msgstr "" -#: ../../library/os.rst:1504 -msgid "" -"Calls the C standard library function :c:func:`posix_openpt`. The *oflag* " -"argument is used to set file status flags and file access modes as specified " -"in the manual page of :c:func:`posix_openpt` of your system." +msgid "Calls the C standard library function :c:func:`posix_openpt`. The *oflag* argument is used to set file status flags and file access modes as specified in the manual page of :c:func:`posix_openpt` of your system." msgstr "" -#: ../../library/os.rst:1508 -msgid "" -"The returned file descriptor is :ref:`non-inheritable `. If " -"the value :data:`O_CLOEXEC` is available on the system, it is added to " -"*oflag*." +msgid "The returned file descriptor is :ref:`non-inheritable `. If the value :data:`O_CLOEXEC` is available on the system, it is added to *oflag*." msgstr "" -#: ../../library/os.rst:1519 -msgid "" -"Read from a file descriptor *fd* at a position of *offset* into " -"mutable :term:`bytes-like objects ` *buffers*, leaving " -"the file offset unchanged. Transfer data into each buffer until it is full " -"and then move on to the next buffer in the sequence to hold the rest of the " -"data." +msgid "Read from a file descriptor *fd* at a position of *offset* into mutable :term:`bytes-like objects ` *buffers*, leaving the file offset unchanged. Transfer data into each buffer until it is full and then move on to the next buffer in the sequence to hold the rest of the data." msgstr "" -#: ../../library/os.rst:1524 ../../library/os.rst:1609 -msgid "" -"The flags argument contains a bitwise OR of zero or more of the following " -"flags:" +msgid "The flags argument contains a bitwise OR of zero or more of the following flags:" msgstr "" -#: ../../library/os.rst:1527 msgid ":data:`RWF_HIPRI`" msgstr "" -#: ../../library/os.rst:1528 msgid ":data:`RWF_NOWAIT`" msgstr "" -#: ../../library/os.rst:1530 ../../library/os.rst:1851 -msgid "" -"Return the total number of bytes actually read which can be less than the " -"total capacity of all the objects." +msgid "Return the total number of bytes actually read which can be less than the total capacity of all the objects." msgstr "" -#: ../../library/os.rst:1533 ../../library/os.rst:1618 -#: ../../library/os.rst:1854 ../../library/os.rst:1929 -msgid "" -"The operating system may set a limit (:func:`sysconf` value " -"``'SC_IOV_MAX'``) on the number of buffers that can be used." +msgid "The operating system may set a limit (:func:`sysconf` value ``'SC_IOV_MAX'``) on the number of buffers that can be used." msgstr "" -#: ../../library/os.rst:1536 msgid "Combine the functionality of :func:`os.readv` and :func:`os.pread`." msgstr "" -#: ../../library/os.rst:1540 ../../library/os.rst:1625 msgid "Using flags requires Linux >= 4.6." msgstr "" -#: ../../library/os.rst:1547 -msgid "" -"Do not wait for data which is not immediately available. If this flag is " -"specified, the system call will return instantly if it would have to read " -"data from the backing storage or wait for a lock." +msgid "Do not wait for data which is not immediately available. If this flag is specified, the system call will return instantly if it would have to read data from the backing storage or wait for a lock." msgstr "" -#: ../../library/os.rst:1551 -msgid "" -"If some data was successfully read, it will return the number of bytes read. " -"If no bytes were read, it will return ``-1`` and set errno " -"to :const:`errno.EAGAIN`." +msgid "If some data was successfully read, it will return the number of bytes read. If no bytes were read, it will return ``-1`` and set errno to :const:`errno.EAGAIN`." msgstr "" -#: ../../library/os.rst:1562 -msgid "" -"High priority read/write. Allows block-based filesystems to use polling of " -"the device, which provides lower latency, but may use additional resources." +msgid "High priority read/write. Allows block-based filesystems to use polling of the device, which provides lower latency, but may use additional resources." msgstr "" -#: ../../library/os.rst:1566 -msgid "" -"Currently, on Linux, this feature is usable only on a file descriptor opened " -"using the :data:`O_DIRECT` flag." +msgid "Currently, on Linux, this feature is usable only on a file descriptor opened using the :data:`O_DIRECT` flag." msgstr "" -#: ../../library/os.rst:1576 -msgid "" -"Return the name of the slave pseudo-terminal device associated with the " -"master pseudo-terminal device to which the file descriptor *fd* refers. The " -"file descriptor *fd* is not closed upon failure." +msgid "Return the name of the slave pseudo-terminal device associated with the master pseudo-terminal device to which the file descriptor *fd* refers. The file descriptor *fd* is not closed upon failure." msgstr "" -#: ../../library/os.rst:1580 -msgid "" -"Calls the reentrant C standard library function :c:func:`ptsname_r` if it is " -"available; otherwise, the C standard library function :c:func:`ptsname`, " -"which is not guaranteed to be thread-safe, is called." +msgid "Calls the reentrant C standard library function :c:func:`ptsname_r` if it is available; otherwise, the C standard library function :c:func:`ptsname`, which is not guaranteed to be thread-safe, is called." msgstr "" -#: ../../library/os.rst:1591 -msgid "" -"Write the bytestring in *str* to file descriptor *fd* at position of " -"*offset*, leaving the file offset unchanged." +msgid "Write the bytestring in *str* to file descriptor *fd* at position of *offset*, leaving the file offset unchanged." msgstr "" -#: ../../library/os.rst:1594 ../../library/os.rst:1904 msgid "Return the number of bytes actually written." msgstr "" -#: ../../library/os.rst:1603 -msgid "" -"Write the *buffers* contents to file descriptor *fd* at an offset *offset*, " -"leaving the file offset unchanged. *buffers* must be a sequence " -"of :term:`bytes-like objects `. Buffers are processed in " -"array order. Entire contents of the first buffer is written before " -"proceeding to the second, and so on." +msgid "Write the *buffers* contents to file descriptor *fd* at an offset *offset*, leaving the file offset unchanged. *buffers* must be a sequence of :term:`bytes-like objects `. Buffers are processed in array order. Entire contents of the first buffer is written before proceeding to the second, and so on." msgstr "" -#: ../../library/os.rst:1612 msgid ":data:`RWF_DSYNC`" msgstr "" -#: ../../library/os.rst:1613 msgid ":data:`RWF_SYNC`" msgstr "" -#: ../../library/os.rst:1614 msgid ":data:`RWF_APPEND`" msgstr "" -#: ../../library/os.rst:1616 msgid "Return the total number of bytes actually written." msgstr "" -#: ../../library/os.rst:1621 msgid "Combine the functionality of :func:`os.writev` and :func:`os.pwrite`." msgstr "" -#: ../../library/os.rst:1632 -msgid "" -"Provide a per-write equivalent of the :data:`O_DSYNC` :func:`os.open` flag. " -"This flag effect applies only to the data range written by the system call." +msgid "Provide a per-write equivalent of the :data:`O_DSYNC` :func:`os.open` flag. This flag effect applies only to the data range written by the system call." msgstr "" -#: ../../library/os.rst:1642 -msgid "" -"Provide a per-write equivalent of the :data:`O_SYNC` :func:`os.open` flag. " -"This flag effect applies only to the data range written by the system call." +msgid "Provide a per-write equivalent of the :data:`O_SYNC` :func:`os.open` flag. This flag effect applies only to the data range written by the system call." msgstr "" -#: ../../library/os.rst:1652 -msgid "" -"Provide a per-write equivalent of the :data:`O_APPEND` :func:`os.open` flag. " -"This flag is meaningful only for :func:`os.pwritev`, and its effect applies " -"only to the data range written by the system call. The *offset* argument " -"does not affect the write operation; the data is always appended to the end " -"of the file. However, if the *offset* argument is ``-1``, the current file " -"*offset* is updated." +msgid "Provide a per-write equivalent of the :data:`O_APPEND` :func:`os.open` flag. This flag is meaningful only for :func:`os.pwritev`, and its effect applies only to the data range written by the system call. The *offset* argument does not affect the write operation; the data is always appended to the end of the file. However, if the *offset* argument is ``-1``, the current file *offset* is updated." msgstr "" -#: ../../library/os.rst:1666 msgid "Read at most *n* bytes from file descriptor *fd*." msgstr "" -#: ../../library/os.rst:1673 -msgid "" -"This function is intended for low-level I/O and must be applied to a file " -"descriptor as returned by :func:`os.open` or :func:`pipe`. To read a \"file " -"object\" returned by the built-in function :func:`open` or by :func:`popen` " -"or :func:`fdopen`, or :data:`sys.stdin`, use its :meth:`~io.TextIOBase.read` " -"or :meth:`~io.IOBase.readline` methods." +msgid "This function is intended for low-level I/O and must be applied to a file descriptor as returned by :func:`os.open` or :func:`pipe`. To read a \"file object\" returned by the built-in function :func:`open` or by :func:`popen` or :func:`fdopen`, or :data:`sys.stdin`, use its :meth:`~io.TextIOBase.read` or :meth:`~io.IOBase.readline` methods." msgstr "" -#: ../../library/os.rst:1687 -msgid "" -"Read from a file descriptor *fd* into a mutable :ref:`buffer object " -"` *buffer*." +msgid "Read from a file descriptor *fd* into a mutable :ref:`buffer object ` *buffer*." msgstr "" -#: ../../library/os.rst:1690 -msgid "" -"The *buffer* should be mutable and :term:`bytes-like `. " -"On success, returns the number of bytes read. Less bytes may be read than " -"the size of the buffer. The underlying system call will be retried when " -"interrupted by a signal, unless the signal handler raises an exception. " -"Other errors will not be retried and an error will be raised." +msgid "The *buffer* should be mutable and :term:`bytes-like `. On success, returns the number of bytes read. Less bytes may be read than the size of the buffer. The underlying system call will be retried when interrupted by a signal, unless the signal handler raises an exception. Other errors will not be retried and an error will be raised." msgstr "" -#: ../../library/os.rst:1696 -msgid "" -"Returns 0 if *fd* is at end of file or if the provided *buffer* has length 0 " -"(which can be used to check for errors without reading data). Never returns " -"negative." +msgid "Returns 0 if *fd* is at end of file or if the provided *buffer* has length 0 (which can be used to check for errors without reading data). Never returns negative." msgstr "" -#: ../../library/os.rst:1702 -msgid "" -"This function is intended for low-level I/O and must be applied to a file " -"descriptor as returned by :func:`os.open` or :func:`os.pipe`. To read a " -"\"file object\" returned by the built-in function :func:`open`, " -"or :data:`sys.stdin`, use its member functions, for " -"example :meth:`io.BufferedIOBase.readinto`, :meth:`io.BufferedIOBase.read`, " -"or :meth:`io.TextIOBase.read`" +msgid "This function is intended for low-level I/O and must be applied to a file descriptor as returned by :func:`os.open` or :func:`os.pipe`. To read a \"file object\" returned by the built-in function :func:`open`, or :data:`sys.stdin`, use its member functions, for example :meth:`io.BufferedIOBase.readinto`, :meth:`io.BufferedIOBase.read`, or :meth:`io.TextIOBase.read`" msgstr "" -#: ../../library/os.rst:1715 -msgid "" -"Copy *count* bytes from file descriptor *in_fd* to file descriptor *out_fd* " -"starting at *offset*. Return the number of bytes sent. When EOF is reached " -"return ``0``." +msgid "Copy *count* bytes from file descriptor *in_fd* to file descriptor *out_fd* starting at *offset*. Return the number of bytes sent. When EOF is reached return ``0``." msgstr "" -#: ../../library/os.rst:1719 -msgid "" -"The first function notation is supported by all platforms that " -"define :func:`sendfile`." +msgid "The first function notation is supported by all platforms that define :func:`sendfile`." msgstr "" -#: ../../library/os.rst:1722 -msgid "" -"On Linux, if *offset* is given as ``None``, the bytes are read from the " -"current position of *in_fd* and the position of *in_fd* is updated." +msgid "On Linux, if *offset* is given as ``None``, the bytes are read from the current position of *in_fd* and the position of *in_fd* is updated." msgstr "" -#: ../../library/os.rst:1725 -msgid "" -"The second case may be used on macOS and FreeBSD where *headers* and " -"*trailers* are arbitrary sequences of buffers that are written before and " -"after the data from *in_fd* is written. It returns the same as the first " -"case." +msgid "The second case may be used on macOS and FreeBSD where *headers* and *trailers* are arbitrary sequences of buffers that are written before and after the data from *in_fd* is written. It returns the same as the first case." msgstr "" -#: ../../library/os.rst:1729 -msgid "" -"On macOS and FreeBSD, a value of ``0`` for *count* specifies to send until " -"the end of *in_fd* is reached." +msgid "On macOS and FreeBSD, a value of ``0`` for *count* specifies to send until the end of *in_fd* is reached." msgstr "" -#: ../../library/os.rst:1732 -msgid "" -"All platforms support sockets as *out_fd* file descriptor, and some " -"platforms allow other types (e.g. regular file, pipe) as well." +msgid "All platforms support sockets as *out_fd* file descriptor, and some platforms allow other types (e.g. regular file, pipe) as well." msgstr "" -#: ../../library/os.rst:1735 -msgid "" -"Cross-platform applications should not use *headers*, *trailers* and *flags* " -"arguments." +msgid "Cross-platform applications should not use *headers*, *trailers* and *flags* arguments." msgstr "" -#: ../../library/os.rst:1742 -msgid "" -"For a higher-level wrapper of :func:`sendfile`, " -"see :meth:`socket.socket.sendfile`." +msgid "For a higher-level wrapper of :func:`sendfile`, see :meth:`socket.socket.sendfile`." msgstr "" -#: ../../library/os.rst:1747 msgid "Parameters *out* and *in* was renamed to *out_fd* and *in_fd*." msgstr "" -#: ../../library/os.rst:1755 -msgid "" -"Parameters to the :func:`sendfile` function, if the implementation supports " -"them." +msgid "Parameters to the :func:`sendfile` function, if the implementation supports them." msgstr "" -#: ../../library/os.rst:1764 -msgid "" -"Parameter to the :func:`sendfile` function, if the implementation supports " -"it. The data won't be cached in the virtual memory and will be freed " -"afterwards." +msgid "Parameter to the :func:`sendfile` function, if the implementation supports it. The data won't be cached in the virtual memory and will be freed afterwards." msgstr "" -#: ../../library/os.rst:1774 -msgid "" -"Set the blocking mode of the specified file descriptor. Set " -"the :data:`O_NONBLOCK` flag if blocking is ``False``, clear the flag " -"otherwise." +msgid "Set the blocking mode of the specified file descriptor. Set the :data:`O_NONBLOCK` flag if blocking is ``False``, clear the flag otherwise." msgstr "" -#: ../../library/os.rst:1777 msgid "See also :func:`get_blocking` and :meth:`socket.socket.setblocking`." msgstr "" -#: ../../library/os.rst:1794 -msgid "" -"Transfer *count* bytes from file descriptor *src*, starting from offset " -"*offset_src*, to file descriptor *dst*, starting from offset *offset_dst*." +msgid "Transfer *count* bytes from file descriptor *src*, starting from offset *offset_src*, to file descriptor *dst*, starting from offset *offset_dst*." msgstr "" -#: ../../library/os.rst:1797 -msgid "" -"The splicing behaviour can be modified by specifying a *flags* value. Any of " -"the following variables may used, combined using bitwise OR (the ``|`` " -"operator):" +msgid "The splicing behaviour can be modified by specifying a *flags* value. Any of the following variables may used, combined using bitwise OR (the ``|`` operator):" msgstr "" -#: ../../library/os.rst:1801 -msgid "" -"If :const:`SPLICE_F_MOVE` is specified, the kernel is asked to move pages " -"instead of copying, but pages may still be copied if the kernel cannot move " -"the pages from the pipe." +msgid "If :const:`SPLICE_F_MOVE` is specified, the kernel is asked to move pages instead of copying, but pages may still be copied if the kernel cannot move the pages from the pipe." msgstr "" -#: ../../library/os.rst:1805 -msgid "" -"If :const:`SPLICE_F_NONBLOCK` is specified, the kernel is asked to not block " -"on I/O. This makes the splice pipe operations nonblocking, but splice may " -"nevertheless block because the spliced file descriptors may block." +msgid "If :const:`SPLICE_F_NONBLOCK` is specified, the kernel is asked to not block on I/O. This makes the splice pipe operations nonblocking, but splice may nevertheless block because the spliced file descriptors may block." msgstr "" -#: ../../library/os.rst:1810 -msgid "" -"If :const:`SPLICE_F_MORE` is specified, it hints to the kernel that more " -"data will be coming in a subsequent splice." +msgid "If :const:`SPLICE_F_MORE` is specified, it hints to the kernel that more data will be coming in a subsequent splice." msgstr "" -#: ../../library/os.rst:1813 -msgid "" -"At least one of the file descriptors must refer to a pipe. If *offset_src* " -"is ``None``, then *src* is read from the current position; respectively for " -"*offset_dst*. The offset associated to the file descriptor that refers to a " -"pipe must be ``None``. The files pointed to by *src* and *dst* must reside " -"in the same filesystem, otherwise an :exc:`OSError` is raised " -"with :attr:`~OSError.errno` set to :const:`errno.EXDEV`." +msgid "At least one of the file descriptors must refer to a pipe. If *offset_src* is ``None``, then *src* is read from the current position; respectively for *offset_dst*. The offset associated to the file descriptor that refers to a pipe must be ``None``. The files pointed to by *src* and *dst* must reside in the same filesystem, otherwise an :exc:`OSError` is raised with :attr:`~OSError.errno` set to :const:`errno.EXDEV`." msgstr "" -#: ../../library/os.rst:1820 -msgid "" -"This copy is done without the additional cost of transferring data from the " -"kernel to user space and then back into the kernel. Additionally, some " -"filesystems could implement extra optimizations. The copy is done as if both " -"files are opened as binary." +msgid "This copy is done without the additional cost of transferring data from the kernel to user space and then back into the kernel. Additionally, some filesystems could implement extra optimizations. The copy is done as if both files are opened as binary." msgstr "" -#: ../../library/os.rst:1825 -msgid "" -"Upon successful completion, returns the number of bytes spliced to or from " -"the pipe. A return value of 0 means end of input. If *src* refers to a pipe, " -"then this means that there was no data to transfer, and it would not make " -"sense to block because there are no writers connected to the write end of " -"the pipe." +msgid "Upon successful completion, returns the number of bytes spliced to or from the pipe. A return value of 0 means end of input. If *src* refers to a pipe, then this means that there was no data to transfer, and it would not make sense to block because there are no writers connected to the write end of the pipe." msgstr "" -#: ../../library/os.rst:1831 msgid "The :manpage:`splice(2)` man page." msgstr "" -#: ../../library/os.rst:1846 -msgid "" -"Read from a file descriptor *fd* into a number of mutable :term:`bytes-like " -"objects ` *buffers*. Transfer data into each buffer until " -"it is full and then move on to the next buffer in the sequence to hold the " -"rest of the data." +msgid "Read from a file descriptor *fd* into a number of mutable :term:`bytes-like objects ` *buffers*. Transfer data into each buffer until it is full and then move on to the next buffer in the sequence to hold the rest of the data." msgstr "" -#: ../../library/os.rst:1864 -msgid "" -"Return the process group associated with the terminal given by *fd* (an open " -"file descriptor as returned by :func:`os.open`)." +msgid "Return the process group associated with the terminal given by *fd* (an open file descriptor as returned by :func:`os.open`)." msgstr "" -#: ../../library/os.rst:1872 -msgid "" -"Set the process group associated with the terminal given by *fd* (an open " -"file descriptor as returned by :func:`os.open`) to *pg*." +msgid "Set the process group associated with the terminal given by *fd* (an open file descriptor as returned by :func:`os.open`) to *pg*." msgstr "" -#: ../../library/os.rst:1880 -msgid "" -"Return a string which specifies the terminal device associated with file " -"descriptor *fd*. If *fd* is not associated with a terminal device, an " -"exception is raised." +msgid "Return a string which specifies the terminal device associated with file descriptor *fd*. If *fd* is not associated with a terminal device, an exception is raised." msgstr "" -#: ../../library/os.rst:1889 -msgid "" -"Unlock the slave pseudo-terminal device associated with the master pseudo-" -"terminal device to which the file descriptor *fd* refers. The file " -"descriptor *fd* is not closed upon failure." +msgid "Unlock the slave pseudo-terminal device associated with the master pseudo-terminal device to which the file descriptor *fd* refers. The file descriptor *fd* is not closed upon failure." msgstr "" -#: ../../library/os.rst:1893 msgid "Calls the C standard library function :c:func:`unlockpt`." msgstr "" -#: ../../library/os.rst:1902 msgid "Write the bytestring in *str* to file descriptor *fd*." msgstr "" -#: ../../library/os.rst:1908 -msgid "" -"This function is intended for low-level I/O and must be applied to a file " -"descriptor as returned by :func:`os.open` or :func:`pipe`. To write a " -"\"file object\" returned by the built-in function :func:`open` or " -"by :func:`popen` or :func:`fdopen`, or :data:`sys.stdout` " -"or :data:`sys.stderr`, use its :meth:`~io.TextIOBase.write` method." +msgid "This function is intended for low-level I/O and must be applied to a file descriptor as returned by :func:`os.open` or :func:`pipe`. To write a \"file object\" returned by the built-in function :func:`open` or by :func:`popen` or :func:`fdopen`, or :data:`sys.stdout` or :data:`sys.stderr`, use its :meth:`~io.TextIOBase.write` method." msgstr "" -#: ../../library/os.rst:1922 -msgid "" -"Write the contents of *buffers* to file descriptor *fd*. *buffers* must be a " -"sequence of :term:`bytes-like objects `. Buffers are " -"processed in array order. Entire contents of the first buffer is written " -"before proceeding to the second, and so on." +msgid "Write the contents of *buffers* to file descriptor *fd*. *buffers* must be a sequence of :term:`bytes-like objects `. Buffers are processed in array order. Entire contents of the first buffer is written before proceeding to the second, and so on." msgstr "" -#: ../../library/os.rst:1927 msgid "Returns the total number of bytes actually written." msgstr "" -#: ../../library/os.rst:1940 msgid "Querying the size of a terminal" msgstr "" -#: ../../library/os.rst:1946 -msgid "" -"Return the size of the terminal window as ``(columns, lines)``, tuple of " -"type :class:`terminal_size`." +msgid "Return the size of the terminal window as ``(columns, lines)``, tuple of type :class:`terminal_size`." msgstr "" -#: ../../library/os.rst:1949 -msgid "" -"The optional argument ``fd`` (default ``STDOUT_FILENO``, or standard output) " -"specifies which file descriptor should be queried." +msgid "The optional argument ``fd`` (default ``STDOUT_FILENO``, or standard output) specifies which file descriptor should be queried." msgstr "" -#: ../../library/os.rst:1952 -msgid "" -"If the file descriptor is not connected to a terminal, an :exc:`OSError` is " -"raised." +msgid "If the file descriptor is not connected to a terminal, an :exc:`OSError` is raised." msgstr "" -#: ../../library/os.rst:1955 -msgid "" -":func:`shutil.get_terminal_size` is the high-level function which should " -"normally be used, ``os.get_terminal_size`` is the low-level implementation." +msgid ":func:`shutil.get_terminal_size` is the high-level function which should normally be used, ``os.get_terminal_size`` is the low-level implementation." msgstr "" -#: ../../library/os.rst:1963 -msgid "" -"A subclass of tuple, holding ``(columns, lines)`` of the terminal window " -"size." +msgid "A subclass of tuple, holding ``(columns, lines)`` of the terminal window size." msgstr "" -#: ../../library/os.rst:1967 msgid "Width of the terminal window in characters." msgstr "" -#: ../../library/os.rst:1971 msgid "Height of the terminal window in characters." msgstr "" -#: ../../library/os.rst:1977 msgid "Inheritance of File Descriptors" msgstr "" -#: ../../library/os.rst:1981 -msgid "" -"A file descriptor has an \"inheritable\" flag which indicates if the file " -"descriptor can be inherited by child processes. Since Python 3.4, file " -"descriptors created by Python are non-inheritable by default." +msgid "A file descriptor has an \"inheritable\" flag which indicates if the file descriptor can be inherited by child processes. Since Python 3.4, file descriptors created by Python are non-inheritable by default." msgstr "" -#: ../../library/os.rst:1985 -msgid "" -"On UNIX, non-inheritable file descriptors are closed in child processes at " -"the execution of a new program, other file descriptors are inherited. Note " -"that non-inheritable file descriptors are still *inherited* by child " -"processes on :func:`os.fork`." +msgid "On UNIX, non-inheritable file descriptors are closed in child processes at the execution of a new program, other file descriptors are inherited. Note that non-inheritable file descriptors are still *inherited* by child processes on :func:`os.fork`." msgstr "" -#: ../../library/os.rst:1989 -msgid "" -"On Windows, non-inheritable handles and file descriptors are closed in child " -"processes, except for standard streams (file descriptors 0, 1 and 2: stdin, " -"stdout and stderr), which are always inherited. Using :func:`spawn\\* " -"` functions, all inheritable handles and all inheritable file " -"descriptors are inherited. Using the :mod:`subprocess` module, all file " -"descriptors except standard streams are closed, and inheritable handles are " -"only inherited if the *close_fds* parameter is ``False``." +msgid "On Windows, non-inheritable handles and file descriptors are closed in child processes, except for standard streams (file descriptors 0, 1 and 2: stdin, stdout and stderr), which are always inherited. Using :func:`spawn\\* ` functions, all inheritable handles and all inheritable file descriptors are inherited. Using the :mod:`subprocess` module, all file descriptors except standard streams are closed, and inheritable handles are only inherited if the *close_fds* parameter is ``False``." msgstr "" -#: ../../library/os.rst:1997 msgid "On WebAssembly platforms, the file descriptor cannot be modified." msgstr "" -#: ../../library/os.rst:2001 -msgid "" -"Get the \"inheritable\" flag of the specified file descriptor (a boolean)." +msgid "Get the \"inheritable\" flag of the specified file descriptor (a boolean)." msgstr "" -#: ../../library/os.rst:2005 msgid "Set the \"inheritable\" flag of the specified file descriptor." msgstr "" -#: ../../library/os.rst:2009 msgid "Get the \"inheritable\" flag of the specified handle (a boolean)." msgstr "" -#: ../../library/os.rst:2015 msgid "Set the \"inheritable\" flag of the specified handle." msgstr "" -#: ../../library/os.rst:2023 msgid "Files and Directories" msgstr "" -#: ../../library/os.rst:2025 -msgid "" -"On some Unix platforms, many of these functions support one or more of these " -"features:" +msgid "On some Unix platforms, many of these functions support one or more of these features:" msgstr "" -#: ../../library/os.rst:2030 -msgid "" -"**specifying a file descriptor:** Normally the *path* argument provided to " -"functions in the :mod:`!os` module must be a string specifying a file path. " -"However, some functions now alternatively accept an open file descriptor for " -"their *path* argument. The function will then operate on the file referred " -"to by the descriptor. For POSIX systems, Python will call the variant of the " -"function prefixed with ``f`` (e.g. call ``fchdir`` instead of ``chdir``)." +msgid "**specifying a file descriptor:** Normally the *path* argument provided to functions in the :mod:`!os` module must be a string specifying a file path. However, some functions now alternatively accept an open file descriptor for their *path* argument. The function will then operate on the file referred to by the descriptor. For POSIX systems, Python will call the variant of the function prefixed with ``f`` (e.g. call ``fchdir`` instead of ``chdir``)." msgstr "" -#: ../../library/os.rst:2038 -msgid "" -"You can check whether or not *path* can be specified as a file descriptor " -"for a particular function on your platform using :data:`os.supports_fd`. If " -"this functionality is unavailable, using it will raise " -"a :exc:`NotImplementedError`." +msgid "You can check whether or not *path* can be specified as a file descriptor for a particular function on your platform using :data:`os.supports_fd`. If this functionality is unavailable, using it will raise a :exc:`NotImplementedError`." msgstr "" -#: ../../library/os.rst:2043 -msgid "" -"If the function also supports *dir_fd* or *follow_symlinks* arguments, it's " -"an error to specify one of those when supplying *path* as a file descriptor." +msgid "If the function also supports *dir_fd* or *follow_symlinks* arguments, it's an error to specify one of those when supplying *path* as a file descriptor." msgstr "" -#: ../../library/os.rst:2048 -msgid "" -"**paths relative to directory descriptors:** If *dir_fd* is not ``None``, it " -"should be a file descriptor referring to a directory, and the path to " -"operate on should be relative; path will then be relative to that " -"directory. If the path is absolute, *dir_fd* is ignored. For POSIX " -"systems, Python will call the variant of the function with an ``at`` suffix " -"and possibly prefixed with ``f`` (e.g. call ``faccessat`` instead of " -"``access``)." +msgid "**paths relative to directory descriptors:** If *dir_fd* is not ``None``, it should be a file descriptor referring to a directory, and the path to operate on should be relative; path will then be relative to that directory. If the path is absolute, *dir_fd* is ignored. For POSIX systems, Python will call the variant of the function with an ``at`` suffix and possibly prefixed with ``f`` (e.g. call ``faccessat`` instead of ``access``)." msgstr "" -#: ../../library/os.rst:2055 -msgid "" -"You can check whether or not *dir_fd* is supported for a particular function " -"on your platform using :data:`os.supports_dir_fd`. If it's unavailable, " -"using it will raise a :exc:`NotImplementedError`." +msgid "You can check whether or not *dir_fd* is supported for a particular function on your platform using :data:`os.supports_dir_fd`. If it's unavailable, using it will raise a :exc:`NotImplementedError`." msgstr "" -#: ../../library/os.rst:2061 -msgid "" -"**not following symlinks:** If *follow_symlinks* is ``False``, and the last " -"element of the path to operate on is a symbolic link, the function will " -"operate on the symbolic link itself rather than the file pointed to by the " -"link. For POSIX systems, Python will call the ``l...`` variant of the " -"function." +msgid "**not following symlinks:** If *follow_symlinks* is ``False``, and the last element of the path to operate on is a symbolic link, the function will operate on the symbolic link itself rather than the file pointed to by the link. For POSIX systems, Python will call the ``l...`` variant of the function." msgstr "" -#: ../../library/os.rst:2067 -msgid "" -"You can check whether or not *follow_symlinks* is supported for a particular " -"function on your platform using :data:`os.supports_follow_symlinks`. If it's " -"unavailable, using it will raise a :exc:`NotImplementedError`." +msgid "You can check whether or not *follow_symlinks* is supported for a particular function on your platform using :data:`os.supports_follow_symlinks`. If it's unavailable, using it will raise a :exc:`NotImplementedError`." msgstr "" -#: ../../library/os.rst:2075 -msgid "" -"Use the real uid/gid to test for access to *path*. Note that most " -"operations will use the effective uid/gid, therefore this routine can be " -"used in a suid/sgid environment to test if the invoking user has the " -"specified access to *path*. *mode* should be :const:`F_OK` to test the " -"existence of *path*, or it can be the inclusive OR of one or more " -"of :const:`R_OK`, :const:`W_OK`, and :const:`X_OK` to test permissions. " -"Return :const:`True` if access is allowed, :const:`False` if not. See the " -"Unix man page :manpage:`access(2)` for more information." +msgid "Use the real uid/gid to test for access to *path*. Note that most operations will use the effective uid/gid, therefore this routine can be used in a suid/sgid environment to test if the invoking user has the specified access to *path*. *mode* should be :const:`F_OK` to test the existence of *path*, or it can be the inclusive OR of one or more of :const:`R_OK`, :const:`W_OK`, and :const:`X_OK` to test permissions. Return :const:`True` if access is allowed, :const:`False` if not. See the Unix man page :manpage:`access(2)` for more information." msgstr "" -#: ../../library/os.rst:2084 -msgid "" -"This function can support specifying :ref:`paths relative to directory " -"descriptors ` and :ref:`not following symlinks `." +msgid "This function can support specifying :ref:`paths relative to directory descriptors ` and :ref:`not following symlinks `." msgstr "" -#: ../../library/os.rst:2087 -msgid "" -"If *effective_ids* is ``True``, :func:`access` will perform its access " -"checks using the effective uid/gid instead of the real uid/gid. " -"*effective_ids* may not be supported on your platform; you can check whether " -"or not it is available using :data:`os.supports_effective_ids`. If it is " -"unavailable, using it will raise a :exc:`NotImplementedError`." +msgid "If *effective_ids* is ``True``, :func:`access` will perform its access checks using the effective uid/gid instead of the real uid/gid. *effective_ids* may not be supported on your platform; you can check whether or not it is available using :data:`os.supports_effective_ids`. If it is unavailable, using it will raise a :exc:`NotImplementedError`." msgstr "" -#: ../../library/os.rst:2095 -msgid "" -"Using :func:`access` to check if a user is authorized to e.g. open a file " -"before actually doing so using :func:`open` creates a security hole, because " -"the user might exploit the short time interval between checking and opening " -"the file to manipulate it. It's preferable to use :term:`EAFP` techniques. " -"For example::" +msgid "Using :func:`access` to check if a user is authorized to e.g. open a file before actually doing so using :func:`open` creates a security hole, because the user might exploit the short time interval between checking and opening the file to manipulate it. It's preferable to use :term:`EAFP` techniques. For example::" msgstr "" -#: ../../library/os.rst:2101 msgid "" "if os.access(\"myfile\", os.R_OK):\n" " with open(\"myfile\") as fp:\n" @@ -2256,11 +1061,9 @@ msgid "" "return \"some default data\"" msgstr "" -#: ../../library/os.rst:2106 msgid "is better written as::" msgstr "" -#: ../../library/os.rst:2108 msgid "" "try:\n" " fp = open(\"myfile\")\n" @@ -2271,899 +1074,459 @@ msgid "" " return fp.read()" msgstr "" -#: ../../library/os.rst:2118 -msgid "" -"I/O operations may fail even when :func:`access` indicates that they would " -"succeed, particularly for operations on network filesystems which may have " -"permissions semantics beyond the usual POSIX permission-bit model." +msgid "I/O operations may fail even when :func:`access` indicates that they would succeed, particularly for operations on network filesystems which may have permissions semantics beyond the usual POSIX permission-bit model." msgstr "" -#: ../../library/os.rst:2122 msgid "Added the *dir_fd*, *effective_ids*, and *follow_symlinks* parameters." msgstr "" -#: ../../library/os.rst:2134 -msgid "" -"Values to pass as the *mode* parameter of :func:`access` to test the " -"existence, readability, writability and executability of *path*, " -"respectively." +msgid "Values to pass as the *mode* parameter of :func:`access` to test the existence, readability, writability and executability of *path*, respectively." msgstr "" -#: ../../library/os.rst:2143 msgid "Change the current working directory to *path*." msgstr "" -#: ../../library/os.rst:2145 -msgid "" -"This function can support :ref:`specifying a file descriptor `. " -"The descriptor must refer to an opened directory, not an open file." +msgid "This function can support :ref:`specifying a file descriptor `. The descriptor must refer to an opened directory, not an open file." msgstr "" -#: ../../library/os.rst:2148 -msgid "" -"This function can raise :exc:`OSError` and subclasses such " -"as :exc:`FileNotFoundError`, :exc:`PermissionError`, " -"and :exc:`NotADirectoryError`." +msgid "This function can raise :exc:`OSError` and subclasses such as :exc:`FileNotFoundError`, :exc:`PermissionError`, and :exc:`NotADirectoryError`." msgstr "" -#: ../../library/os.rst:2151 ../../library/os.rst:2294 -msgid "" -"Raises an :ref:`auditing event ` ``os.chdir`` with argument " -"``path``." +msgid "Raises an :ref:`auditing event ` ``os.chdir`` with argument ``path``." msgstr "" -#: ../../library/os.rst:2155 -msgid "" -"The :func:`contextlib.chdir` context manager, which changes the current " -"working directory on entering and restores the previous one on exit." +msgid "The :func:`contextlib.chdir` context manager, which changes the current working directory on entering and restores the previous one on exit." msgstr "" -#: ../../library/os.rst:2158 -msgid "" -"Added support for specifying *path* as a file descriptor on some platforms." +msgid "Added support for specifying *path* as a file descriptor on some platforms." msgstr "" -#: ../../library/os.rst:2168 -msgid "" -"Set the flags of *path* to the numeric *flags*. *flags* may take a " -"combination (bitwise OR) of the following values (as defined in " -"the :mod:`stat` module):" +msgid "Set the flags of *path* to the numeric *flags*. *flags* may take a combination (bitwise OR) of the following values (as defined in the :mod:`stat` module):" msgstr "" -#: ../../library/os.rst:2171 msgid ":const:`stat.UF_NODUMP`" msgstr "" -#: ../../library/os.rst:2172 msgid ":const:`stat.UF_IMMUTABLE`" msgstr "" -#: ../../library/os.rst:2173 msgid ":const:`stat.UF_APPEND`" msgstr "" -#: ../../library/os.rst:2174 msgid ":const:`stat.UF_OPAQUE`" msgstr "" -#: ../../library/os.rst:2175 msgid ":const:`stat.UF_NOUNLINK`" msgstr "" -#: ../../library/os.rst:2176 msgid ":const:`stat.UF_COMPRESSED`" msgstr "" -#: ../../library/os.rst:2177 msgid ":const:`stat.UF_HIDDEN`" msgstr "" -#: ../../library/os.rst:2178 msgid ":const:`stat.SF_ARCHIVED`" msgstr "" -#: ../../library/os.rst:2179 msgid ":const:`stat.SF_IMMUTABLE`" msgstr "" -#: ../../library/os.rst:2180 msgid ":const:`stat.SF_APPEND`" msgstr "" -#: ../../library/os.rst:2181 msgid ":const:`stat.SF_NOUNLINK`" msgstr "" -#: ../../library/os.rst:2182 msgid ":const:`stat.SF_SNAPSHOT`" msgstr "" -#: ../../library/os.rst:2184 -msgid "" -"This function can support :ref:`not following symlinks `." +msgid "This function can support :ref:`not following symlinks `." msgstr "" -#: ../../library/os.rst:2186 ../../library/os.rst:2320 -msgid "" -"Raises an :ref:`auditing event ` ``os.chflags`` with arguments " -"``path``, ``flags``." +msgid "Raises an :ref:`auditing event ` ``os.chflags`` with arguments ``path``, ``flags``." msgstr "" -#: ../../library/os.rst:2190 msgid "Added the *follow_symlinks* parameter." msgstr "" -#: ../../library/os.rst:2199 -msgid "" -"Change the mode of *path* to the numeric *mode*. *mode* may take one of the " -"following values (as defined in the :mod:`stat` module) or bitwise ORed " -"combinations of them:" +msgid "Change the mode of *path* to the numeric *mode*. *mode* may take one of the following values (as defined in the :mod:`stat` module) or bitwise ORed combinations of them:" msgstr "" -#: ../../library/os.rst:2203 msgid ":const:`stat.S_ISUID`" msgstr "" -#: ../../library/os.rst:2204 msgid ":const:`stat.S_ISGID`" msgstr "" -#: ../../library/os.rst:2205 msgid ":const:`stat.S_ENFMT`" msgstr "" -#: ../../library/os.rst:2206 msgid ":const:`stat.S_ISVTX`" msgstr "" -#: ../../library/os.rst:2207 msgid ":const:`stat.S_IREAD`" msgstr "" -#: ../../library/os.rst:2208 msgid ":const:`stat.S_IWRITE`" msgstr "" -#: ../../library/os.rst:2209 msgid ":const:`stat.S_IEXEC`" msgstr "" -#: ../../library/os.rst:2210 msgid ":const:`stat.S_IRWXU`" msgstr "" -#: ../../library/os.rst:2211 msgid ":const:`stat.S_IRUSR`" msgstr "" -#: ../../library/os.rst:2212 msgid ":const:`stat.S_IWUSR`" msgstr "" -#: ../../library/os.rst:2213 msgid ":const:`stat.S_IXUSR`" msgstr "" -#: ../../library/os.rst:2214 msgid ":const:`stat.S_IRWXG`" msgstr "" -#: ../../library/os.rst:2215 msgid ":const:`stat.S_IRGRP`" msgstr "" -#: ../../library/os.rst:2216 msgid ":const:`stat.S_IWGRP`" msgstr "" -#: ../../library/os.rst:2217 msgid ":const:`stat.S_IXGRP`" msgstr "" -#: ../../library/os.rst:2218 msgid ":const:`stat.S_IRWXO`" msgstr "" -#: ../../library/os.rst:2219 msgid ":const:`stat.S_IROTH`" msgstr "" -#: ../../library/os.rst:2220 msgid ":const:`stat.S_IWOTH`" msgstr "" -#: ../../library/os.rst:2221 msgid ":const:`stat.S_IXOTH`" msgstr "" -#: ../../library/os.rst:2223 ../../library/os.rst:2256 -#: ../../library/os.rst:3786 -msgid "" -"This function can support :ref:`specifying a file descriptor " -"`, :ref:`paths relative to directory descriptors ` " -"and :ref:`not following symlinks `." +msgid "This function can support :ref:`specifying a file descriptor `, :ref:`paths relative to directory descriptors ` and :ref:`not following symlinks `." msgstr "" -#: ../../library/os.rst:2229 -msgid "" -"Although Windows supports :func:`chmod`, you can only set the file's read-" -"only flag with it (via the ``stat.S_IWRITE`` and ``stat.S_IREAD`` constants " -"or a corresponding integer value). All other bits are ignored. The default " -"value of *follow_symlinks* is ``False`` on Windows." +msgid "Although Windows supports :func:`chmod`, you can only set the file's read-only flag with it (via the ``stat.S_IWRITE`` and ``stat.S_IREAD`` constants or a corresponding integer value). All other bits are ignored. The default value of *follow_symlinks* is ``False`` on Windows." msgstr "" -#: ../../library/os.rst:2239 ../../library/os.rst:2270 -msgid "" -"Added support for specifying *path* as an open file descriptor, and the " -"*dir_fd* and *follow_symlinks* arguments." +msgid "Added support for specifying *path* as an open file descriptor, and the *dir_fd* and *follow_symlinks* arguments." msgstr "" -#: ../../library/os.rst:2246 -msgid "" -"Added support for a file descriptor and the *follow_symlinks* argument on " -"Windows." +msgid "Added support for a file descriptor and the *follow_symlinks* argument on Windows." msgstr "" -#: ../../library/os.rst:2253 -msgid "" -"Change the owner and group id of *path* to the numeric *uid* and *gid*. To " -"leave one of the ids unchanged, set it to -1." +msgid "Change the owner and group id of *path* to the numeric *uid* and *gid*. To leave one of the ids unchanged, set it to -1." msgstr "" -#: ../../library/os.rst:2260 -msgid "" -"See :func:`shutil.chown` for a higher-level function that accepts names in " -"addition to numeric ids." +msgid "See :func:`shutil.chown` for a higher-level function that accepts names in addition to numeric ids." msgstr "" -#: ../../library/os.rst:2274 msgid "Supports a :term:`path-like object`." msgstr "" -#: ../../library/os.rst:2280 msgid "Change the root directory of the current process to *path*." msgstr "" -#: ../../library/os.rst:2290 -msgid "" -"Change the current working directory to the directory represented by the " -"file descriptor *fd*. The descriptor must refer to an opened directory, not " -"an open file. As of Python 3.3, this is equivalent to ``os.chdir(fd)``." +msgid "Change the current working directory to the directory represented by the file descriptor *fd*. The descriptor must refer to an opened directory, not an open file. As of Python 3.3, this is equivalent to ``os.chdir(fd)``." msgstr "" -#: ../../library/os.rst:2301 msgid "Return a string representing the current working directory." msgstr "" -#: ../../library/os.rst:2306 msgid "Return a bytestring representing the current working directory." msgstr "" -#: ../../library/os.rst:2308 -msgid "" -"The function now uses the UTF-8 encoding on Windows, rather than the ANSI " -"code page: see :pep:`529` for the rationale. The function is no longer " -"deprecated on Windows." +msgid "The function now uses the UTF-8 encoding on Windows, rather than the ANSI code page: see :pep:`529` for the rationale. The function is no longer deprecated on Windows." msgstr "" -#: ../../library/os.rst:2316 -msgid "" -"Set the flags of *path* to the numeric *flags*, like :func:`chflags`, but do " -"not follow symbolic links. As of Python 3.3, this is equivalent to " -"``os.chflags(path, flags, follow_symlinks=False)``." +msgid "Set the flags of *path* to the numeric *flags*, like :func:`chflags`, but do not follow symbolic links. As of Python 3.3, this is equivalent to ``os.chflags(path, flags, follow_symlinks=False)``." msgstr "" -#: ../../library/os.rst:2330 -msgid "" -"Change the mode of *path* to the numeric *mode*. If path is a symlink, this " -"affects the symlink rather than the target. See the docs for :func:`chmod` " -"for possible values of *mode*. As of Python 3.3, this is equivalent to " -"``os.chmod(path, mode, follow_symlinks=False)``." +msgid "Change the mode of *path* to the numeric *mode*. If path is a symlink, this affects the symlink rather than the target. See the docs for :func:`chmod` for possible values of *mode*. As of Python 3.3, this is equivalent to ``os.chmod(path, mode, follow_symlinks=False)``." msgstr "" -#: ../../library/os.rst:2335 -msgid "" -"``lchmod()`` is not part of POSIX, but Unix implementations may have it if " -"changing the mode of symbolic links is supported." +msgid "``lchmod()`` is not part of POSIX, but Unix implementations may have it if changing the mode of symbolic links is supported." msgstr "" -#: ../../library/os.rst:2350 -msgid "" -"Change the owner and group id of *path* to the numeric *uid* and *gid*. " -"This function will not follow symbolic links. As of Python 3.3, this is " -"equivalent to ``os.chown(path, uid, gid, follow_symlinks=False)``." +msgid "Change the owner and group id of *path* to the numeric *uid* and *gid*. This function will not follow symbolic links. As of Python 3.3, this is equivalent to ``os.chown(path, uid, gid, follow_symlinks=False)``." msgstr "" -#: ../../library/os.rst:2364 msgid "Create a hard link pointing to *src* named *dst*." msgstr "" -#: ../../library/os.rst:2366 -msgid "" -"This function can support specifying *src_dir_fd* and/or *dst_dir_fd* to " -"supply :ref:`paths relative to directory descriptors `, " -"and :ref:`not following symlinks `. The default value of " -"*follow_symlinks* is ``False`` on Windows." +msgid "This function can support specifying *src_dir_fd* and/or *dst_dir_fd* to supply :ref:`paths relative to directory descriptors `, and :ref:`not following symlinks `. The default value of *follow_symlinks* is ``False`` on Windows." msgstr "" -#: ../../library/os.rst:2371 -msgid "" -"Raises an :ref:`auditing event ` ``os.link`` with arguments " -"``src``, ``dst``, ``src_dir_fd``, ``dst_dir_fd``." +msgid "Raises an :ref:`auditing event ` ``os.link`` with arguments ``src``, ``dst``, ``src_dir_fd``, ``dst_dir_fd``." msgstr "" -#: ../../library/os.rst:2375 ../../library/os.rst:4783 msgid "Added Windows support." msgstr "" -#: ../../library/os.rst:2378 msgid "Added the *src_dir_fd*, *dst_dir_fd*, and *follow_symlinks* parameters." msgstr "" -#: ../../library/os.rst:2381 ../../library/os.rst:2805 -#: ../../library/os.rst:2842 ../../library/os.rst:3708 msgid "Accepts a :term:`path-like object` for *src* and *dst*." msgstr "" -#: ../../library/os.rst:2387 -msgid "" -"Return a list containing the names of the entries in the directory given by " -"*path*. The list is in arbitrary order, and does not include the special " -"entries ``'.'`` and ``'..'`` even if they are present in the directory. If a " -"file is removed from or added to the directory during the call of this " -"function, whether a name for that file be included is unspecified." +msgid "Return a list containing the names of the entries in the directory given by *path*. The list is in arbitrary order, and does not include the special entries ``'.'`` and ``'..'`` even if they are present in the directory. If a file is removed from or added to the directory during the call of this function, whether a name for that file be included is unspecified." msgstr "" -#: ../../library/os.rst:2393 -msgid "" -"*path* may be a :term:`path-like object`. If *path* is of type ``bytes`` " -"(directly or indirectly through the :class:`PathLike` interface), the " -"filenames returned will also be of type ``bytes``; in all other " -"circumstances, they will be of type ``str``." +msgid "*path* may be a :term:`path-like object`. If *path* is of type ``bytes`` (directly or indirectly through the :class:`PathLike` interface), the filenames returned will also be of type ``bytes``; in all other circumstances, they will be of type ``str``." msgstr "" -#: ../../library/os.rst:2398 ../../library/os.rst:2890 -msgid "" -"This function can also support :ref:`specifying a file descriptor " -"`; the file descriptor must refer to a directory." +msgid "This function can also support :ref:`specifying a file descriptor `; the file descriptor must refer to a directory." msgstr "" -#: ../../library/os.rst:2401 -msgid "" -"Raises an :ref:`auditing event ` ``os.listdir`` with argument " -"``path``." +msgid "Raises an :ref:`auditing event ` ``os.listdir`` with argument ``path``." msgstr "" -#: ../../library/os.rst:2404 msgid "To encode ``str`` filenames to ``bytes``, use :func:`~os.fsencode`." msgstr "" -#: ../../library/os.rst:2408 -msgid "" -"The :func:`scandir` function returns directory entries along with file " -"attribute information, giving better performance for many common use cases." +msgid "The :func:`scandir` function returns directory entries along with file attribute information, giving better performance for many common use cases." msgstr "" -#: ../../library/os.rst:2412 msgid "The *path* parameter became optional." msgstr "" -#: ../../library/os.rst:2415 ../../library/os.rst:3419 msgid "Added support for specifying *path* as an open file descriptor." msgstr "" -#: ../../library/os.rst:2424 msgid "Return a list containing the names of drives on a Windows system." msgstr "" -#: ../../library/os.rst:2426 -msgid "" -"A drive name typically looks like ``'C:\\\\'``. Not every drive name will be " -"associated with a volume, and some may be inaccessible for a variety of " -"reasons, including permissions, network connectivity or missing media. This " -"function does not test for access." +msgid "A drive name typically looks like ``'C:\\\\'``. Not every drive name will be associated with a volume, and some may be inaccessible for a variety of reasons, including permissions, network connectivity or missing media. This function does not test for access." msgstr "" -#: ../../library/os.rst:2431 msgid "May raise :exc:`OSError` if an error occurs collecting the drive names." msgstr "" -#: ../../library/os.rst:2434 -msgid "" -"Raises an :ref:`auditing event ` ``os.listdrives`` with no " -"arguments." +msgid "Raises an :ref:`auditing event ` ``os.listdrives`` with no arguments." msgstr "" -#: ../../library/os.rst:2443 -msgid "" -"Return a list containing the mount points for a volume on a Windows system." +msgid "Return a list containing the mount points for a volume on a Windows system." msgstr "" -#: ../../library/os.rst:2446 -msgid "" -"*volume* must be represented as a GUID path, like those returned " -"by :func:`os.listvolumes`. Volumes may be mounted in multiple locations or " -"not at all. In the latter case, the list will be empty. Mount points that " -"are not associated with a volume will not be returned by this function." +msgid "*volume* must be represented as a GUID path, like those returned by :func:`os.listvolumes`. Volumes may be mounted in multiple locations or not at all. In the latter case, the list will be empty. Mount points that are not associated with a volume will not be returned by this function." msgstr "" -#: ../../library/os.rst:2452 -msgid "" -"The mount points return by this function will be absolute paths, and may be " -"longer than the drive name." +msgid "The mount points return by this function will be absolute paths, and may be longer than the drive name." msgstr "" -#: ../../library/os.rst:2455 -msgid "" -"Raises :exc:`OSError` if the volume is not recognized or if an error occurs " -"collecting the paths." +msgid "Raises :exc:`OSError` if the volume is not recognized or if an error occurs collecting the paths." msgstr "" -#: ../../library/os.rst:2458 -msgid "" -"Raises an :ref:`auditing event ` ``os.listmounts`` with argument " -"``volume``." +msgid "Raises an :ref:`auditing event ` ``os.listmounts`` with argument ``volume``." msgstr "" -#: ../../library/os.rst:2467 msgid "Return a list containing the volumes in the system." msgstr "" -#: ../../library/os.rst:2469 -msgid "" -"Volumes are typically represented as a GUID path that looks like ``\\\\?" -"\\Volume{xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx}\\``. Files can usually be " -"accessed through a GUID path, permissions allowing. However, users are " -"generally not familiar with them, and so the recommended use of this " -"function is to retrieve mount points using :func:`os.listmounts`." +msgid "Volumes are typically represented as a GUID path that looks like ``\\\\?\\Volume{xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx}\\``. Files can usually be accessed through a GUID path, permissions allowing. However, users are generally not familiar with them, and so the recommended use of this function is to retrieve mount points using :func:`os.listmounts`." msgstr "" -#: ../../library/os.rst:2476 msgid "May raise :exc:`OSError` if an error occurs collecting the volumes." msgstr "" -#: ../../library/os.rst:2478 -msgid "" -"Raises an :ref:`auditing event ` ``os.listvolumes`` with no " -"arguments." +msgid "Raises an :ref:`auditing event ` ``os.listvolumes`` with no arguments." msgstr "" -#: ../../library/os.rst:2487 -msgid "" -"Perform the equivalent of an :c:func:`!lstat` system call on the given path. " -"Similar to :func:`~os.stat`, but does not follow symbolic links. Return " -"a :class:`stat_result` object." +msgid "Perform the equivalent of an :c:func:`!lstat` system call on the given path. Similar to :func:`~os.stat`, but does not follow symbolic links. Return a :class:`stat_result` object." msgstr "" -#: ../../library/os.rst:2491 -msgid "" -"On platforms that do not support symbolic links, this is an alias " -"for :func:`~os.stat`." +msgid "On platforms that do not support symbolic links, this is an alias for :func:`~os.stat`." msgstr "" -#: ../../library/os.rst:2494 -msgid "" -"As of Python 3.3, this is equivalent to ``os.stat(path, dir_fd=dir_fd, " -"follow_symlinks=False)``." +msgid "As of Python 3.3, this is equivalent to ``os.stat(path, dir_fd=dir_fd, follow_symlinks=False)``." msgstr "" -#: ../../library/os.rst:2497 ../../library/os.rst:2539 -#: ../../library/os.rst:2607 ../../library/os.rst:2635 -#: ../../library/os.rst:2709 -msgid "" -"This function can also support :ref:`paths relative to directory descriptors " -"`." +msgid "This function can also support :ref:`paths relative to directory descriptors `." msgstr "" -#: ../../library/os.rst:2504 ../../library/os.rst:2718 -#: ../../library/os.rst:3701 msgid "Added support for Windows 6.0 (Vista) symbolic links." msgstr "" -#: ../../library/os.rst:2513 -msgid "" -"On Windows, now opens reparse points that represent another path (name " -"surrogates), including symbolic links and directory junctions. Other kinds " -"of reparse points are resolved by the operating system as " -"for :func:`~os.stat`." +msgid "On Windows, now opens reparse points that represent another path (name surrogates), including symbolic links and directory junctions. Other kinds of reparse points are resolved by the operating system as for :func:`~os.stat`." msgstr "" -#: ../../library/os.rst:2522 msgid "Create a directory named *path* with numeric mode *mode*." msgstr "" -#: ../../library/os.rst:2524 -msgid "" -"If the directory already exists, :exc:`FileExistsError` is raised. If a " -"parent directory in the path does not exist, :exc:`FileNotFoundError` is " -"raised." +msgid "If the directory already exists, :exc:`FileExistsError` is raised. If a parent directory in the path does not exist, :exc:`FileNotFoundError` is raised." msgstr "" -#: ../../library/os.rst:2529 -msgid "" -"On some systems, *mode* is ignored. Where it is used, the current umask " -"value is first masked out. If bits other than the last 9 (i.e. the last 3 " -"digits of the octal representation of the *mode*) are set, their meaning is " -"platform-dependent. On some platforms, they are ignored and you should " -"call :func:`chmod` explicitly to set them." +msgid "On some systems, *mode* is ignored. Where it is used, the current umask value is first masked out. If bits other than the last 9 (i.e. the last 3 digits of the octal representation of the *mode*) are set, their meaning is platform-dependent. On some platforms, they are ignored and you should call :func:`chmod` explicitly to set them." msgstr "" -#: ../../library/os.rst:2535 -msgid "" -"On Windows, a *mode* of ``0o700`` is specifically handled to apply access " -"control to the new directory such that only the current user and " -"administrators have access. Other values of *mode* are ignored." +msgid "On Windows, a *mode* of ``0o700`` is specifically handled to apply access control to the new directory such that only the current user and administrators have access. Other values of *mode* are ignored." msgstr "" -#: ../../library/os.rst:2542 -msgid "" -"It is also possible to create temporary directories; see the :mod:`tempfile` " -"module's :func:`tempfile.mkdtemp` function." +msgid "It is also possible to create temporary directories; see the :mod:`tempfile` module's :func:`tempfile.mkdtemp` function." msgstr "" -#: ../../library/os.rst:2545 ../../library/os.rst:2582 -msgid "" -"Raises an :ref:`auditing event ` ``os.mkdir`` with arguments " -"``path``, ``mode``, ``dir_fd``." +msgid "Raises an :ref:`auditing event ` ``os.mkdir`` with arguments ``path``, ``mode``, ``dir_fd``." msgstr "" -#: ../../library/os.rst:2553 msgid "Windows now handles a *mode* of ``0o700``." msgstr "" -#: ../../library/os.rst:2563 -msgid "" -"Recursive directory creation function. Like :func:`mkdir`, but makes all " -"intermediate-level directories needed to contain the leaf directory." +msgid "Recursive directory creation function. Like :func:`mkdir`, but makes all intermediate-level directories needed to contain the leaf directory." msgstr "" -#: ../../library/os.rst:2566 -msgid "" -"The *mode* parameter is passed to :func:`mkdir` for creating the leaf " -"directory; see :ref:`the mkdir() description ` for how it is " -"interpreted. To set the file permission bits of any newly created parent " -"directories you can set the umask before invoking :func:`makedirs`. The " -"file permission bits of existing parent directories are not changed." +msgid "The *mode* parameter is passed to :func:`mkdir` for creating the leaf directory; see :ref:`the mkdir() description ` for how it is interpreted. To set the file permission bits of any newly created parent directories you can set the umask before invoking :func:`makedirs`. The file permission bits of existing parent directories are not changed." msgstr "" -#: ../../library/os.rst:2572 -msgid "" -"If *exist_ok* is ``False`` (the default), a :exc:`FileExistsError` is raised " -"if the target directory already exists." +msgid "If *exist_ok* is ``False`` (the default), a :exc:`FileExistsError` is raised if the target directory already exists." msgstr "" -#: ../../library/os.rst:2577 -msgid "" -":func:`makedirs` will become confused if the path elements to create " -"include :data:`pardir` (eg. \"..\" on UNIX systems)." +msgid ":func:`makedirs` will become confused if the path elements to create include :data:`pardir` (eg. \"..\" on UNIX systems)." msgstr "" -#: ../../library/os.rst:2580 msgid "This function handles UNC paths correctly." msgstr "" -#: ../../library/os.rst:2584 msgid "Added the *exist_ok* parameter." msgstr "" -#: ../../library/os.rst:2589 -msgid "" -"Before Python 3.4.1, if *exist_ok* was ``True`` and the directory " -"existed, :func:`makedirs` would still raise an error if *mode* did not match " -"the mode of the existing directory. Since this behavior was impossible to " -"implement safely, it was removed in Python 3.4.1. See :issue:`21082`." +msgid "Before Python 3.4.1, if *exist_ok* was ``True`` and the directory existed, :func:`makedirs` would still raise an error if *mode* did not match the mode of the existing directory. Since this behavior was impossible to implement safely, it was removed in Python 3.4.1. See :issue:`21082`." msgstr "" -#: ../../library/os.rst:2597 -msgid "" -"The *mode* argument no longer affects the file permission bits of newly " -"created intermediate-level directories." +msgid "The *mode* argument no longer affects the file permission bits of newly created intermediate-level directories." msgstr "" -#: ../../library/os.rst:2604 -msgid "" -"Create a FIFO (a named pipe) named *path* with numeric mode *mode*. The " -"current umask value is first masked out from the mode." +msgid "Create a FIFO (a named pipe) named *path* with numeric mode *mode*. The current umask value is first masked out from the mode." msgstr "" -#: ../../library/os.rst:2610 -msgid "" -"FIFOs are pipes that can be accessed like regular files. FIFOs exist until " -"they are deleted (for example with :func:`os.unlink`). Generally, FIFOs are " -"used as rendezvous between \"client\" and \"server\" type processes: the " -"server opens the FIFO for reading, and the client opens it for writing. " -"Note that :func:`mkfifo` doesn't open the FIFO --- it just creates the " -"rendezvous point." +msgid "FIFOs are pipes that can be accessed like regular files. FIFOs exist until they are deleted (for example with :func:`os.unlink`). Generally, FIFOs are used as rendezvous between \"client\" and \"server\" type processes: the server opens the FIFO for reading, and the client opens it for writing. Note that :func:`mkfifo` doesn't open the FIFO --- it just creates the rendezvous point." msgstr "" -#: ../../library/os.rst:2627 -msgid "" -"Create a filesystem node (file, device special file or named pipe) named " -"*path*. *mode* specifies both the permissions to use and the type of node to " -"be created, being combined (bitwise OR) with one of ``stat.S_IFREG``, " -"``stat.S_IFCHR``, ``stat.S_IFBLK``, and ``stat.S_IFIFO`` (those constants " -"are available in :mod:`stat`). For ``stat.S_IFCHR`` and ``stat.S_IFBLK``, " -"*device* defines the newly created device special file (probably " -"using :func:`os.makedev`), otherwise it is ignored." +msgid "Create a filesystem node (file, device special file or named pipe) named *path*. *mode* specifies both the permissions to use and the type of node to be created, being combined (bitwise OR) with one of ``stat.S_IFREG``, ``stat.S_IFCHR``, ``stat.S_IFBLK``, and ``stat.S_IFIFO`` (those constants are available in :mod:`stat`). For ``stat.S_IFCHR`` and ``stat.S_IFBLK``, *device* defines the newly created device special file (probably using :func:`os.makedev`), otherwise it is ignored." msgstr "" -#: ../../library/os.rst:2649 -msgid "" -"Extract the device major number from a raw device number (usually " -"the :attr:`st_dev` or :attr:`st_rdev` field from :c:struct:`stat`)." +msgid "Extract the device major number from a raw device number (usually the :attr:`st_dev` or :attr:`st_rdev` field from :c:struct:`stat`)." msgstr "" -#: ../../library/os.rst:2655 -msgid "" -"Extract the device minor number from a raw device number (usually " -"the :attr:`st_dev` or :attr:`st_rdev` field from :c:struct:`stat`)." +msgid "Extract the device minor number from a raw device number (usually the :attr:`st_dev` or :attr:`st_rdev` field from :c:struct:`stat`)." msgstr "" -#: ../../library/os.rst:2661 msgid "Compose a raw device number from the major and minor device numbers." msgstr "" -#: ../../library/os.rst:2666 -msgid "" -"Return system configuration information relevant to a named file. *name* " -"specifies the configuration value to retrieve; it may be a string which is " -"the name of a defined system value; these names are specified in a number of " -"standards (POSIX.1, Unix 95, Unix 98, and others). Some platforms define " -"additional names as well. The names known to the host operating system are " -"given in the ``pathconf_names`` dictionary. For configuration variables not " -"included in that mapping, passing an integer for *name* is also accepted." +msgid "Return system configuration information relevant to a named file. *name* specifies the configuration value to retrieve; it may be a string which is the name of a defined system value; these names are specified in a number of standards (POSIX.1, Unix 95, Unix 98, and others). Some platforms define additional names as well. The names known to the host operating system are given in the ``pathconf_names`` dictionary. For configuration variables not included in that mapping, passing an integer for *name* is also accepted." msgstr "" -#: ../../library/os.rst:2679 ../../library/os.rst:3415 -#: ../../library/os.rst:3729 -msgid "" -"This function can support :ref:`specifying a file descriptor `." +msgid "This function can support :ref:`specifying a file descriptor `." msgstr "" -#: ../../library/os.rst:2690 -msgid "" -"Dictionary mapping names accepted by :func:`pathconf` and :func:`fpathconf` " -"to the integer values defined for those names by the host operating system. " -"This can be used to determine the set of names known to the system." +msgid "Dictionary mapping names accepted by :func:`pathconf` and :func:`fpathconf` to the integer values defined for those names by the host operating system. This can be used to determine the set of names known to the system." msgstr "" -#: ../../library/os.rst:2699 -msgid "" -"Return a string representing the path to which the symbolic link points. " -"The result may be either an absolute or relative pathname; if it is " -"relative, it may be converted to an absolute pathname using " -"``os.path.join(os.path.dirname(path), result)``." +msgid "Return a string representing the path to which the symbolic link points. The result may be either an absolute or relative pathname; if it is relative, it may be converted to an absolute pathname using ``os.path.join(os.path.dirname(path), result)``." msgstr "" -#: ../../library/os.rst:2704 -msgid "" -"If the *path* is a string object (directly or indirectly through " -"a :class:`PathLike` interface), the result will also be a string object, and " -"the call may raise a UnicodeDecodeError. If the *path* is a bytes object " -"(direct or indirectly), the result will be a bytes object." +msgid "If the *path* is a string object (directly or indirectly through a :class:`PathLike` interface), the result will also be a string object, and the call may raise a UnicodeDecodeError. If the *path* is a bytes object (direct or indirectly), the result will be a bytes object." msgstr "" -#: ../../library/os.rst:2712 -msgid "" -"When trying to resolve a path that may contain links, " -"use :func:`~os.path.realpath` to properly handle recursion and platform " -"differences." +msgid "When trying to resolve a path that may contain links, use :func:`~os.path.realpath` to properly handle recursion and platform differences." msgstr "" -#: ../../library/os.rst:2724 msgid "Accepts a :term:`path-like object` on Unix." msgstr "" -#: ../../library/os.rst:2727 msgid "Accepts a :term:`path-like object` and a bytes object on Windows." msgstr "" -#: ../../library/os.rst:2730 -msgid "" -"Added support for directory junctions, and changed to return the " -"substitution path (which typically includes ``\\\\?\\`` prefix) rather than " -"the optional \"print name\" field that was previously returned." +msgid "Added support for directory junctions, and changed to return the substitution path (which typically includes ``\\\\?\\`` prefix) rather than the optional \"print name\" field that was previously returned." msgstr "" -#: ../../library/os.rst:2736 -msgid "" -"Remove (delete) the file *path*. If *path* is a directory, " -"an :exc:`OSError` is raised. Use :func:`rmdir` to remove directories. If " -"the file does not exist, a :exc:`FileNotFoundError` is raised." +msgid "Remove (delete) the file *path*. If *path* is a directory, an :exc:`OSError` is raised. Use :func:`rmdir` to remove directories. If the file does not exist, a :exc:`FileNotFoundError` is raised." msgstr "" -#: ../../library/os.rst:2740 ../../library/os.rst:2853 -#: ../../library/os.rst:3680 -msgid "" -"This function can support :ref:`paths relative to directory descriptors " -"`." +msgid "This function can support :ref:`paths relative to directory descriptors `." msgstr "" -#: ../../library/os.rst:2743 -msgid "" -"On Windows, attempting to remove a file that is in use causes an exception " -"to be raised; on Unix, the directory entry is removed but the storage " -"allocated to the file is not made available until the original file is no " -"longer in use." +msgid "On Windows, attempting to remove a file that is in use causes an exception to be raised; on Unix, the directory entry is removed but the storage allocated to the file is not made available until the original file is no longer in use." msgstr "" -#: ../../library/os.rst:2747 msgid "This function is semantically identical to :func:`unlink`." msgstr "" -#: ../../library/os.rst:2749 ../../library/os.rst:2771 -#: ../../library/os.rst:3751 -msgid "" -"Raises an :ref:`auditing event ` ``os.remove`` with arguments " -"``path``, ``dir_fd``." +msgid "Raises an :ref:`auditing event ` ``os.remove`` with arguments ``path``, ``dir_fd``." msgstr "" -#: ../../library/os.rst:2762 -msgid "" -"Remove directories recursively. Works like :func:`rmdir` except that, if " -"the leaf directory is successfully removed, :func:`removedirs` tries to " -"successively remove every parent directory mentioned in *path* until an " -"error is raised (which is ignored, because it generally means that a parent " -"directory is not empty). For example, ``os.removedirs('foo/bar/baz')`` will " -"first remove the directory ``'foo/bar/baz'``, and then remove ``'foo/bar'`` " -"and ``'foo'`` if they are empty. Raises :exc:`OSError` if the leaf directory " -"could not be successfully removed." +msgid "Remove directories recursively. Works like :func:`rmdir` except that, if the leaf directory is successfully removed, :func:`removedirs` tries to successively remove every parent directory mentioned in *path* until an error is raised (which is ignored, because it generally means that a parent directory is not empty). For example, ``os.removedirs('foo/bar/baz')`` will first remove the directory ``'foo/bar/baz'``, and then remove ``'foo/bar'`` and ``'foo'`` if they are empty. Raises :exc:`OSError` if the leaf directory could not be successfully removed." msgstr "" -#: ../../library/os.rst:2779 -msgid "" -"Rename the file or directory *src* to *dst*. If *dst* exists, the operation " -"will fail with an :exc:`OSError` subclass in a number of cases:" +msgid "Rename the file or directory *src* to *dst*. If *dst* exists, the operation will fail with an :exc:`OSError` subclass in a number of cases:" msgstr "" -#: ../../library/os.rst:2782 -msgid "" -"On Windows, if *dst* exists a :exc:`FileExistsError` is always raised. The " -"operation may fail if *src* and *dst* are on different filesystems. " -"Use :func:`shutil.move` to support moves to a different filesystem." +msgid "On Windows, if *dst* exists a :exc:`FileExistsError` is always raised. The operation may fail if *src* and *dst* are on different filesystems. Use :func:`shutil.move` to support moves to a different filesystem." msgstr "" -#: ../../library/os.rst:2786 -msgid "" -"On Unix, if *src* is a file and *dst* is a directory or vice-versa, " -"an :exc:`IsADirectoryError` or a :exc:`NotADirectoryError` will be raised " -"respectively. If both are directories and *dst* is empty, *dst* will be " -"silently replaced. If *dst* is a non-empty directory, an :exc:`OSError` is " -"raised. If both are files, *dst* will be replaced silently if the user has " -"permission. The operation may fail on some Unix flavors if *src* and *dst* " -"are on different filesystems. If successful, the renaming will be an atomic " -"operation (this is a POSIX requirement)." +msgid "On Unix, if *src* is a file and *dst* is a directory or vice-versa, an :exc:`IsADirectoryError` or a :exc:`NotADirectoryError` will be raised respectively. If both are directories and *dst* is empty, *dst* will be silently replaced. If *dst* is a non-empty directory, an :exc:`OSError` is raised. If both are files, *dst* will be replaced silently if the user has permission. The operation may fail on some Unix flavors if *src* and *dst* are on different filesystems. If successful, the renaming will be an atomic operation (this is a POSIX requirement)." msgstr "" -#: ../../library/os.rst:2795 ../../library/os.rst:2835 -msgid "" -"This function can support specifying *src_dir_fd* and/or *dst_dir_fd* to " -"supply :ref:`paths relative to directory descriptors `." +msgid "This function can support specifying *src_dir_fd* and/or *dst_dir_fd* to supply :ref:`paths relative to directory descriptors `." msgstr "" -#: ../../library/os.rst:2798 -msgid "" -"If you want cross-platform overwriting of the destination, " -"use :func:`replace`." +msgid "If you want cross-platform overwriting of the destination, use :func:`replace`." msgstr "" -#: ../../library/os.rst:2800 ../../library/os.rst:2821 -#: ../../library/os.rst:2838 -msgid "" -"Raises an :ref:`auditing event ` ``os.rename`` with arguments " -"``src``, ``dst``, ``src_dir_fd``, ``dst_dir_fd``." +msgid "Raises an :ref:`auditing event ` ``os.rename`` with arguments ``src``, ``dst``, ``src_dir_fd``, ``dst_dir_fd``." msgstr "" -#: ../../library/os.rst:2802 msgid "Added the *src_dir_fd* and *dst_dir_fd* parameters." msgstr "" -#: ../../library/os.rst:2811 -msgid "" -"Recursive directory or file renaming function. Works like :func:`rename`, " -"except creation of any intermediate directories needed to make the new " -"pathname good is attempted first. After the rename, directories " -"corresponding to rightmost path segments of the old name will be pruned away " -"using :func:`removedirs`." +msgid "Recursive directory or file renaming function. Works like :func:`rename`, except creation of any intermediate directories needed to make the new pathname good is attempted first. After the rename, directories corresponding to rightmost path segments of the old name will be pruned away using :func:`removedirs`." msgstr "" -#: ../../library/os.rst:2818 -msgid "" -"This function can fail with the new directory structure made if you lack " -"permissions needed to remove the leaf directory or file." +msgid "This function can fail with the new directory structure made if you lack permissions needed to remove the leaf directory or file." msgstr "" -#: ../../library/os.rst:2823 msgid "Accepts a :term:`path-like object` for *old* and *new*." msgstr "" -#: ../../library/os.rst:2829 -msgid "" -"Rename the file or directory *src* to *dst*. If *dst* is a non-empty " -"directory, :exc:`OSError` will be raised. If *dst* exists and is a file, it " -"will be replaced silently if the user has permission. The operation may " -"fail if *src* and *dst* are on different filesystems. If successful, the " -"renaming will be an atomic operation (this is a POSIX requirement)." +msgid "Rename the file or directory *src* to *dst*. If *dst* is a non-empty directory, :exc:`OSError` will be raised. If *dst* exists and is a file, it will be replaced silently if the user has permission. The operation may fail if *src* and *dst* are on different filesystems. If successful, the renaming will be an atomic operation (this is a POSIX requirement)." msgstr "" -#: ../../library/os.rst:2848 -msgid "" -"Remove (delete) the directory *path*. If the directory does not exist or is " -"not empty, a :exc:`FileNotFoundError` or an :exc:`OSError` is raised " -"respectively. In order to remove whole directory " -"trees, :func:`shutil.rmtree` can be used." +msgid "Remove (delete) the directory *path*. If the directory does not exist or is not empty, a :exc:`FileNotFoundError` or an :exc:`OSError` is raised respectively. In order to remove whole directory trees, :func:`shutil.rmtree` can be used." msgstr "" -#: ../../library/os.rst:2856 -msgid "" -"Raises an :ref:`auditing event ` ``os.rmdir`` with arguments " -"``path``, ``dir_fd``." +msgid "Raises an :ref:`auditing event ` ``os.rmdir`` with arguments ``path``, ``dir_fd``." msgstr "" -#: ../../library/os.rst:2867 -msgid "" -"Return an iterator of :class:`os.DirEntry` objects corresponding to the " -"entries in the directory given by *path*. The entries are yielded in " -"arbitrary order, and the special entries ``'.'`` and ``'..'`` are not " -"included. If a file is removed from or added to the directory after " -"creating the iterator, whether an entry for that file be included is " -"unspecified." +msgid "Return an iterator of :class:`os.DirEntry` objects corresponding to the entries in the directory given by *path*. The entries are yielded in arbitrary order, and the special entries ``'.'`` and ``'..'`` are not included. If a file is removed from or added to the directory after creating the iterator, whether an entry for that file be included is unspecified." msgstr "" -#: ../../library/os.rst:2874 -msgid "" -"Using :func:`scandir` instead of :func:`listdir` can significantly increase " -"the performance of code that also needs file type or file attribute " -"information, because :class:`os.DirEntry` objects expose this information if " -"the operating system provides it when scanning a directory. " -"All :class:`os.DirEntry` methods may perform a system call, " -"but :func:`~os.DirEntry.is_dir` and :func:`~os.DirEntry.is_file` usually " -"only require a system call for symbolic links; :func:`os.DirEntry.stat` " -"always requires a system call on Unix but only requires one for symbolic " -"links on Windows." -msgstr "" - -#: ../../library/os.rst:2884 -msgid "" -"*path* may be a :term:`path-like object`. If *path* is of type ``bytes`` " -"(directly or indirectly through the :class:`PathLike` interface), the type " -"of the :attr:`~os.DirEntry.name` and :attr:`~os.DirEntry.path` attributes of " -"each :class:`os.DirEntry` will be ``bytes``; in all other circumstances, " -"they will be of type ``str``." +msgid "Using :func:`scandir` instead of :func:`listdir` can significantly increase the performance of code that also needs file type or file attribute information, because :class:`os.DirEntry` objects expose this information if the operating system provides it when scanning a directory. All :class:`os.DirEntry` methods may perform a system call, but :func:`~os.DirEntry.is_dir` and :func:`~os.DirEntry.is_file` usually only require a system call for symbolic links; :func:`os.DirEntry.stat` always requires a system call on Unix but only requires one for symbolic links on Windows." msgstr "" -#: ../../library/os.rst:2893 -msgid "" -"Raises an :ref:`auditing event ` ``os.scandir`` with argument " -"``path``." +msgid "*path* may be a :term:`path-like object`. If *path* is of type ``bytes`` (directly or indirectly through the :class:`PathLike` interface), the type of the :attr:`~os.DirEntry.name` and :attr:`~os.DirEntry.path` attributes of each :class:`os.DirEntry` will be ``bytes``; in all other circumstances, they will be of type ``str``." msgstr "" -#: ../../library/os.rst:2895 -msgid "" -"The :func:`scandir` iterator supports the :term:`context manager` protocol " -"and has the following method:" +msgid "Raises an :ref:`auditing event ` ``os.scandir`` with argument ``path``." +msgstr "" + +msgid "The :func:`scandir` iterator supports the :term:`context manager` protocol and has the following method:" msgstr "" -#: ../../library/os.rst:2900 msgid "Close the iterator and free acquired resources." msgstr "" -#: ../../library/os.rst:2902 -msgid "" -"This is called automatically when the iterator is exhausted or garbage " -"collected, or when an error happens during iterating. However it is " -"advisable to call it explicitly or use the :keyword:`with` statement." +msgid "This is called automatically when the iterator is exhausted or garbage collected, or when an error happens during iterating. However it is advisable to call it explicitly or use the :keyword:`with` statement." msgstr "" -#: ../../library/os.rst:2909 -msgid "" -"The following example shows a simple use of :func:`scandir` to display all " -"the files (excluding directories) in the given *path* that don't start with " -"``'.'``. The ``entry.is_file()`` call will generally not make an additional " -"system call::" +msgid "The following example shows a simple use of :func:`scandir` to display all the files (excluding directories) in the given *path* that don't start with ``'.'``. The ``entry.is_file()`` call will generally not make an additional system call::" msgstr "" -#: ../../library/os.rst:2914 msgid "" "with os.scandir(path) as it:\n" " for entry in it:\n" @@ -3171,313 +1534,135 @@ msgid "" " print(entry.name)" msgstr "" -#: ../../library/os.rst:2921 -msgid "" -"On Unix-based systems, :func:`scandir` uses the system's `opendir() `_ and " -"`readdir() `_ functions. On Windows, it uses the Win32 `FindFirstFileW " -"`_ and `FindNextFileW `_ functions." +msgid "On Unix-based systems, :func:`scandir` uses the system's `opendir() `_ and `readdir() `_ functions. On Windows, it uses the Win32 `FindFirstFileW `_ and `FindNextFileW `_ functions." msgstr "" -#: ../../library/os.rst:2933 -msgid "" -"Added support for the :term:`context manager` protocol and " -"the :func:`~scandir.close` method. If a :func:`scandir` iterator is neither " -"exhausted nor explicitly closed a :exc:`ResourceWarning` will be emitted in " -"its destructor." +msgid "Added support for the :term:`context manager` protocol and the :func:`~scandir.close` method. If a :func:`scandir` iterator is neither exhausted nor explicitly closed a :exc:`ResourceWarning` will be emitted in its destructor." msgstr "" -#: ../../library/os.rst:2939 msgid "The function accepts a :term:`path-like object`." msgstr "" -#: ../../library/os.rst:2941 msgid "Added support for :ref:`file descriptors ` on Unix." msgstr "" -#: ../../library/os.rst:2947 -msgid "" -"Object yielded by :func:`scandir` to expose the file path and other file " -"attributes of a directory entry." +msgid "Object yielded by :func:`scandir` to expose the file path and other file attributes of a directory entry." msgstr "" -#: ../../library/os.rst:2950 -msgid "" -":func:`scandir` will provide as much of this information as possible without " -"making additional system calls. When a ``stat()`` or ``lstat()`` system call " -"is made, the ``os.DirEntry`` object will cache the result." +msgid ":func:`scandir` will provide as much of this information as possible without making additional system calls. When a ``stat()`` or ``lstat()`` system call is made, the ``os.DirEntry`` object will cache the result." msgstr "" -#: ../../library/os.rst:2954 -msgid "" -"``os.DirEntry`` instances are not intended to be stored in long-lived data " -"structures; if you know the file metadata has changed or if a long time has " -"elapsed since calling :func:`scandir`, call ``os.stat(entry.path)`` to fetch " -"up-to-date information." +msgid "``os.DirEntry`` instances are not intended to be stored in long-lived data structures; if you know the file metadata has changed or if a long time has elapsed since calling :func:`scandir`, call ``os.stat(entry.path)`` to fetch up-to-date information." msgstr "" -#: ../../library/os.rst:2959 -msgid "" -"Because the ``os.DirEntry`` methods can make operating system calls, they " -"may also raise :exc:`OSError`. If you need very fine-grained control over " -"errors, you can catch :exc:`OSError` when calling one of the ``os.DirEntry`` " -"methods and handle as appropriate." +msgid "Because the ``os.DirEntry`` methods can make operating system calls, they may also raise :exc:`OSError`. If you need very fine-grained control over errors, you can catch :exc:`OSError` when calling one of the ``os.DirEntry`` methods and handle as appropriate." msgstr "" -#: ../../library/os.rst:2964 -msgid "" -"To be directly usable as a :term:`path-like object`, ``os.DirEntry`` " -"implements the :class:`PathLike` interface." +msgid "To be directly usable as a :term:`path-like object`, ``os.DirEntry`` implements the :class:`PathLike` interface." msgstr "" -#: ../../library/os.rst:2967 -msgid "" -":class:`!DirEntry` objects are :ref:`generic ` over the type of " -"the path (:class:`str` or :class:`bytes`)." +msgid ":class:`!DirEntry` objects are :ref:`generic ` over the type of the path (:class:`str` or :class:`bytes`)." msgstr "" -#: ../../library/os.rst:2970 msgid "Attributes and methods on a ``os.DirEntry`` instance are as follows:" msgstr "" -#: ../../library/os.rst:2974 -msgid "" -"The entry's base filename, relative to the :func:`scandir` *path* argument." +msgid "The entry's base filename, relative to the :func:`scandir` *path* argument." msgstr "" -#: ../../library/os.rst:2977 -msgid "" -"The :attr:`name` attribute will be ``bytes`` if the :func:`scandir` *path* " -"argument is of type ``bytes`` and ``str`` otherwise. " -"Use :func:`~os.fsdecode` to decode byte filenames." +msgid "The :attr:`name` attribute will be ``bytes`` if the :func:`scandir` *path* argument is of type ``bytes`` and ``str`` otherwise. Use :func:`~os.fsdecode` to decode byte filenames." msgstr "" -#: ../../library/os.rst:2983 -msgid "" -"The entry's path name: equivalent to ``os.path.join(scandir_path, " -"entry.name)`` where *scandir_path* is the original :func:`scandir` *path* " -"argument. Apart from the filename, the path preserves the " -"original :func:`scandir` argument. If the :func:`scandir` *path* argument " -"was relative, the :attr:`path` attribute is also relative. Changing the " -"current working directory after creating the :func:`scandir` iterator may " -"cause later uses of :attr:`path` to resolve differently. On some platforms, " -"the constructed path may not be valid if the original :func:`scandir` " -"argument was usable for enumeration but not for joining with the entry " -"name. If the :func:`scandir` *path* argument was a :ref:`file descriptor " -"`, the :attr:`path` attribute is the same as the :attr:`name` " -"attribute." -msgstr "" - -#: ../../library/os.rst:2996 -msgid "" -"The :attr:`path` attribute will be ``bytes`` if the :func:`scandir` *path* " -"argument is of type ``bytes`` and ``str`` otherwise. " -"Use :func:`~os.fsdecode` to decode byte filenames." +msgid "The entry's path name: equivalent to ``os.path.join(scandir_path, entry.name)`` where *scandir_path* is the original :func:`scandir` *path* argument. Apart from the filename, the path preserves the original :func:`scandir` argument. If the :func:`scandir` *path* argument was relative, the :attr:`path` attribute is also relative. Changing the current working directory after creating the :func:`scandir` iterator may cause later uses of :attr:`path` to resolve differently. On some platforms, the constructed path may not be valid if the original :func:`scandir` argument was usable for enumeration but not for joining with the entry name. If the :func:`scandir` *path* argument was a :ref:`file descriptor `, the :attr:`path` attribute is the same as the :attr:`name` attribute." +msgstr "" + +msgid "The :attr:`path` attribute will be ``bytes`` if the :func:`scandir` *path* argument is of type ``bytes`` and ``str`` otherwise. Use :func:`~os.fsdecode` to decode byte filenames." msgstr "" -#: ../../library/os.rst:3002 msgid "Return the inode number of the entry." msgstr "" -#: ../../library/os.rst:3004 -msgid "" -"The result is cached on the ``os.DirEntry`` object. Use " -"``os.stat(entry.path, follow_symlinks=False).st_ino`` to fetch up-to-date " -"information." +msgid "The result is cached on the ``os.DirEntry`` object. Use ``os.stat(entry.path, follow_symlinks=False).st_ino`` to fetch up-to-date information." msgstr "" -#: ../../library/os.rst:3008 -msgid "" -"On the first, uncached call, a system call is required on Windows but not on " -"Unix." +msgid "On the first, uncached call, a system call is required on Windows but not on Unix." msgstr "" -#: ../../library/os.rst:3013 -msgid "" -"Return ``True`` if this entry is a directory or a symbolic link pointing to " -"a directory; return ``False`` if the entry is or points to any other kind of " -"file, or if it doesn't exist anymore." +msgid "Return ``True`` if this entry is a directory or a symbolic link pointing to a directory; return ``False`` if the entry is or points to any other kind of file, or if it doesn't exist anymore." msgstr "" -#: ../../library/os.rst:3017 -msgid "" -"If *follow_symlinks* is ``False``, return ``True`` only if this entry is a " -"directory (without following symlinks); return ``False`` if the entry is any " -"other kind of file or if it doesn't exist anymore." +msgid "If *follow_symlinks* is ``False``, return ``True`` only if this entry is a directory (without following symlinks); return ``False`` if the entry is any other kind of file or if it doesn't exist anymore." msgstr "" -#: ../../library/os.rst:3021 -msgid "" -"The result is cached on the ``os.DirEntry`` object, with a separate cache " -"for *follow_symlinks* ``True`` and ``False``. Call :func:`os.stat` along " -"with :func:`stat.S_ISDIR` to fetch up-to-date information." +msgid "The result is cached on the ``os.DirEntry`` object, with a separate cache for *follow_symlinks* ``True`` and ``False``. Call :func:`os.stat` along with :func:`stat.S_ISDIR` to fetch up-to-date information." msgstr "" -#: ../../library/os.rst:3025 -msgid "" -"On the first, uncached call, no system call is required in most cases. " -"Specifically, for non-symlinks, neither Windows or Unix require a system " -"call, except on certain Unix file systems, such as network file systems, " -"that return ``dirent.d_type == DT_UNKNOWN``. If the entry is a symlink, a " -"system call will be required to follow the symlink unless *follow_symlinks* " -"is ``False``." +msgid "On the first, uncached call, no system call is required in most cases. Specifically, for non-symlinks, neither Windows or Unix require a system call, except on certain Unix file systems, such as network file systems, that return ``dirent.d_type == DT_UNKNOWN``. If the entry is a symlink, a system call will be required to follow the symlink unless *follow_symlinks* is ``False``." msgstr "" -#: ../../library/os.rst:3032 ../../library/os.rst:3062 -msgid "" -"This method can raise :exc:`OSError`, such as :exc:`PermissionError`, " -"but :exc:`FileNotFoundError` is caught and not raised." +msgid "This method can raise :exc:`OSError`, such as :exc:`PermissionError`, but :exc:`FileNotFoundError` is caught and not raised." msgstr "" -#: ../../library/os.rst:3037 -msgid "" -"Return ``True`` if this entry is a file or a symbolic link pointing to a " -"file; return ``False`` if the entry is or points to a directory or other non-" -"file entry, or if it doesn't exist anymore." +msgid "Return ``True`` if this entry is a file or a symbolic link pointing to a file; return ``False`` if the entry is or points to a directory or other non-file entry, or if it doesn't exist anymore." msgstr "" -#: ../../library/os.rst:3041 -msgid "" -"If *follow_symlinks* is ``False``, return ``True`` only if this entry is a " -"file (without following symlinks); return ``False`` if the entry is a " -"directory or other non-file entry, or if it doesn't exist anymore." +msgid "If *follow_symlinks* is ``False``, return ``True`` only if this entry is a file (without following symlinks); return ``False`` if the entry is a directory or other non-file entry, or if it doesn't exist anymore." msgstr "" -#: ../../library/os.rst:3045 -msgid "" -"The result is cached on the ``os.DirEntry`` object. Caching, system calls " -"made, and exceptions raised are as per :func:`~os.DirEntry.is_dir`." +msgid "The result is cached on the ``os.DirEntry`` object. Caching, system calls made, and exceptions raised are as per :func:`~os.DirEntry.is_dir`." msgstr "" -#: ../../library/os.rst:3050 -msgid "" -"Return ``True`` if this entry is a symbolic link (even if broken); return " -"``False`` if the entry points to a directory or any kind of file, or if it " -"doesn't exist anymore." +msgid "Return ``True`` if this entry is a symbolic link (even if broken); return ``False`` if the entry points to a directory or any kind of file, or if it doesn't exist anymore." msgstr "" -#: ../../library/os.rst:3054 -msgid "" -"The result is cached on the ``os.DirEntry`` object. " -"Call :func:`os.path.islink` to fetch up-to-date information." +msgid "The result is cached on the ``os.DirEntry`` object. Call :func:`os.path.islink` to fetch up-to-date information." msgstr "" -#: ../../library/os.rst:3057 -msgid "" -"On the first, uncached call, no system call is required in most cases. " -"Specifically, neither Windows or Unix require a system call, except on " -"certain Unix file systems, such as network file systems, that return " -"``dirent.d_type == DT_UNKNOWN``." +msgid "On the first, uncached call, no system call is required in most cases. Specifically, neither Windows or Unix require a system call, except on certain Unix file systems, such as network file systems, that return ``dirent.d_type == DT_UNKNOWN``." msgstr "" -#: ../../library/os.rst:3067 -msgid "" -"Return ``True`` if this entry is a junction (even if broken); return " -"``False`` if the entry points to a regular directory, any kind of file, a " -"symlink, or if it doesn't exist anymore." +msgid "Return ``True`` if this entry is a junction (even if broken); return ``False`` if the entry points to a regular directory, any kind of file, a symlink, or if it doesn't exist anymore." msgstr "" -#: ../../library/os.rst:3071 -msgid "" -"The result is cached on the ``os.DirEntry`` object. " -"Call :func:`os.path.isjunction` to fetch up-to-date information." +msgid "The result is cached on the ``os.DirEntry`` object. Call :func:`os.path.isjunction` to fetch up-to-date information." msgstr "" -#: ../../library/os.rst:3078 -msgid "" -"Return a :class:`stat_result` object for this entry. This method follows " -"symbolic links by default; to stat a symbolic link add the " -"``follow_symlinks=False`` argument." +msgid "Return a :class:`stat_result` object for this entry. This method follows symbolic links by default; to stat a symbolic link add the ``follow_symlinks=False`` argument." msgstr "" -#: ../../library/os.rst:3082 -msgid "" -"On Unix, this method always requires a system call. On Windows, it only " -"requires a system call if *follow_symlinks* is ``True`` and the entry is a " -"reparse point (for example, a symbolic link or directory junction)." +msgid "On Unix, this method always requires a system call. On Windows, it only requires a system call if *follow_symlinks* is ``True`` and the entry is a reparse point (for example, a symbolic link or directory junction)." msgstr "" -#: ../../library/os.rst:3087 -msgid "" -"On Windows, the ``st_ino``, ``st_dev`` and ``st_nlink`` attributes of " -"the :class:`stat_result` are always set to zero. Call :func:`os.stat` to get " -"these attributes." +msgid "On Windows, the ``st_ino``, ``st_dev`` and ``st_nlink`` attributes of the :class:`stat_result` are always set to zero. Call :func:`os.stat` to get these attributes." msgstr "" -#: ../../library/os.rst:3091 -msgid "" -"The result is cached on the ``os.DirEntry`` object, with a separate cache " -"for *follow_symlinks* ``True`` and ``False``. Call :func:`os.stat` to fetch " -"up-to-date information." +msgid "The result is cached on the ``os.DirEntry`` object, with a separate cache for *follow_symlinks* ``True`` and ``False``. Call :func:`os.stat` to fetch up-to-date information." msgstr "" -#: ../../library/os.rst:3095 -msgid "" -"Note that there is a nice correspondence between several attributes and " -"methods of ``os.DirEntry`` and of :class:`pathlib.Path`. In particular, the " -"``name`` attribute has the same meaning, as do the ``is_dir()``, " -"``is_file()``, ``is_symlink()``, ``is_junction()``, and ``stat()`` methods." +msgid "Note that there is a nice correspondence between several attributes and methods of ``os.DirEntry`` and of :class:`pathlib.Path`. In particular, the ``name`` attribute has the same meaning, as do the ``is_dir()``, ``is_file()``, ``is_symlink()``, ``is_junction()``, and ``stat()`` methods." msgstr "" -#: ../../library/os.rst:3103 -msgid "" -"Added support for the :class:`~os.PathLike` interface. Added support " -"for :class:`bytes` paths on Windows." +msgid "Added support for the :class:`~os.PathLike` interface. Added support for :class:`bytes` paths on Windows." msgstr "" -#: ../../library/os.rst:3107 -msgid "" -"The ``st_ctime`` attribute of a stat result is deprecated on Windows. The " -"file creation time is properly available as ``st_birthtime``, and in the " -"future ``st_ctime`` may be changed to return zero or the metadata change " -"time, if available." +msgid "The ``st_ctime`` attribute of a stat result is deprecated on Windows. The file creation time is properly available as ``st_birthtime``, and in the future ``st_ctime`` may be changed to return zero or the metadata change time, if available." msgstr "" -#: ../../library/os.rst:3116 -msgid "" -"Get the status of a file or a file descriptor. Perform the equivalent of " -"a :c:func:`stat` system call on the given path. *path* may be specified as " -"either a string or bytes -- directly or indirectly through " -"the :class:`PathLike` interface -- or as an open file descriptor. Return " -"a :class:`stat_result` object." +msgid "Get the status of a file or a file descriptor. Perform the equivalent of a :c:func:`stat` system call on the given path. *path* may be specified as either a string or bytes -- directly or indirectly through the :class:`PathLike` interface -- or as an open file descriptor. Return a :class:`stat_result` object." msgstr "" -#: ../../library/os.rst:3122 -msgid "" -"This function normally follows symlinks; to stat a symlink add the argument " -"``follow_symlinks=False``, or use :func:`lstat`." +msgid "This function normally follows symlinks; to stat a symlink add the argument ``follow_symlinks=False``, or use :func:`lstat`." msgstr "" -#: ../../library/os.rst:3125 ../../library/os.rst:4333 -#: ../../library/os.rst:4349 ../../library/os.rst:4365 -#: ../../library/os.rst:4385 -msgid "" -"This function can support :ref:`specifying a file descriptor ` " -"and :ref:`not following symlinks `." +msgid "This function can support :ref:`specifying a file descriptor ` and :ref:`not following symlinks `." +msgstr "" + +msgid "On Windows, passing ``follow_symlinks=False`` will disable following all name-surrogate reparse points, which includes symlinks and directory junctions. Other types of reparse points that do not resemble links or that the operating system is unable to follow will be opened directly. When following a chain of multiple links, this may result in the original link being returned instead of the non-link that prevented full traversal. To obtain stat results for the final path in this case, use the :func:`os.path.realpath` function to resolve the path name as far as possible and call :func:`lstat` on the result. This does not apply to dangling symlinks or junction points, which will raise the usual exceptions." msgstr "" -#: ../../library/os.rst:3128 -msgid "" -"On Windows, passing ``follow_symlinks=False`` will disable following all " -"name-surrogate reparse points, which includes symlinks and directory " -"junctions. Other types of reparse points that do not resemble links or that " -"the operating system is unable to follow will be opened directly. When " -"following a chain of multiple links, this may result in the original link " -"being returned instead of the non-link that prevented full traversal. To " -"obtain stat results for the final path in this case, use " -"the :func:`os.path.realpath` function to resolve the path name as far as " -"possible and call :func:`lstat` on the result. This does not apply to " -"dangling symlinks or junction points, which will raise the usual exceptions." -msgstr "" - -#: ../../library/os.rst:3141 ../../library/os.rst:4040 msgid "Example::" msgstr "" -#: ../../library/os.rst:3143 msgid "" ">>> import os\n" ">>> statinfo = os.stat('somefile.txt')\n" @@ -3489,740 +1674,378 @@ msgid "" "264" msgstr "" -#: ../../library/os.rst:3154 msgid ":func:`fstat` and :func:`lstat` functions." msgstr "" -#: ../../library/os.rst:3156 -msgid "" -"Added the *dir_fd* and *follow_symlinks* parameters, specifying a file " -"descriptor instead of a path." +msgid "Added the *dir_fd* and *follow_symlinks* parameters, specifying a file descriptor instead of a path." msgstr "" -#: ../../library/os.rst:3163 -msgid "" -"On Windows, all reparse points that can be resolved by the operating system " -"are now followed, and passing ``follow_symlinks=False`` disables following " -"all name surrogate reparse points. If the operating system reaches a reparse " -"point that it is not able to follow, *stat* now returns the information for " -"the original path as if ``follow_symlinks=False`` had been specified instead " -"of raising an error." +msgid "On Windows, all reparse points that can be resolved by the operating system are now followed, and passing ``follow_symlinks=False`` disables following all name surrogate reparse points. If the operating system reaches a reparse point that it is not able to follow, *stat* now returns the information for the original path as if ``follow_symlinks=False`` had been specified instead of raising an error." msgstr "" -#: ../../library/os.rst:3174 -msgid "" -"Object whose attributes correspond roughly to the members of " -"the :c:struct:`stat` structure. It is used for the result " -"of :func:`os.stat`, :func:`os.fstat` and :func:`os.lstat`." +msgid "Object whose attributes correspond roughly to the members of the :c:struct:`stat` structure. It is used for the result of :func:`os.stat`, :func:`os.fstat` and :func:`os.lstat`." msgstr "" -#: ../../library/os.rst:3178 msgid "Attributes:" msgstr "" -#: ../../library/os.rst:3182 msgid "File mode: file type and file mode bits (permissions)." msgstr "" -#: ../../library/os.rst:3186 -msgid "" -"Platform dependent, but if non-zero, uniquely identifies the file for a " -"given value of ``st_dev``. Typically:" +msgid "Platform dependent, but if non-zero, uniquely identifies the file for a given value of ``st_dev``. Typically:" msgstr "" -#: ../../library/os.rst:3189 msgid "the inode number on Unix," msgstr "" -#: ../../library/os.rst:3190 -msgid "" -"the `file index `_ on " -"Windows" +msgid "the `file index `_ on Windows" msgstr "" -#: ../../library/os.rst:3196 msgid "Identifier of the device on which this file resides." msgstr "" -#: ../../library/os.rst:3200 msgid "Number of hard links." msgstr "" -#: ../../library/os.rst:3204 msgid "User identifier of the file owner." msgstr "" -#: ../../library/os.rst:3208 msgid "Group identifier of the file owner." msgstr "" -#: ../../library/os.rst:3212 -msgid "" -"Size of the file in bytes, if it is a regular file or a symbolic link. The " -"size of a symbolic link is the length of the pathname it contains, without a " -"terminating null byte." +msgid "Size of the file in bytes, if it is a regular file or a symbolic link. The size of a symbolic link is the length of the pathname it contains, without a terminating null byte." msgstr "" -#: ../../library/os.rst:3216 msgid "Timestamps:" msgstr "" -#: ../../library/os.rst:3220 msgid "Time of most recent access expressed in seconds." msgstr "" -#: ../../library/os.rst:3224 msgid "Time of most recent content modification expressed in seconds." msgstr "" -#: ../../library/os.rst:3228 msgid "Time of most recent metadata change expressed in seconds." msgstr "" -#: ../../library/os.rst:3230 -msgid "" -"``st_ctime`` is deprecated on Windows. Use ``st_birthtime`` for the file " -"creation time. In the future, ``st_ctime`` will contain the time of the most " -"recent metadata change, as for other platforms." +msgid "``st_ctime`` is deprecated on Windows. Use ``st_birthtime`` for the file creation time. In the future, ``st_ctime`` will contain the time of the most recent metadata change, as for other platforms." msgstr "" -#: ../../library/os.rst:3237 msgid "Time of most recent access expressed in nanoseconds as an integer." msgstr "" -#: ../../library/os.rst:3243 -msgid "" -"Time of most recent content modification expressed in nanoseconds as an " -"integer." +msgid "Time of most recent content modification expressed in nanoseconds as an integer." msgstr "" -#: ../../library/os.rst:3250 -msgid "" -"Time of most recent metadata change expressed in nanoseconds as an integer." +msgid "Time of most recent metadata change expressed in nanoseconds as an integer." msgstr "" -#: ../../library/os.rst:3255 -msgid "" -"``st_ctime_ns`` is deprecated on Windows. Use ``st_birthtime_ns`` for the " -"file creation time. In the future, ``st_ctime`` will contain the time of the " -"most recent metadata change, as for other platforms." +msgid "``st_ctime_ns`` is deprecated on Windows. Use ``st_birthtime_ns`` for the file creation time. In the future, ``st_ctime`` will contain the time of the most recent metadata change, as for other platforms." msgstr "" -#: ../../library/os.rst:3262 -msgid "" -"Time of file creation expressed in seconds. This attribute is not always " -"available, and may raise :exc:`AttributeError`." +msgid "Time of file creation expressed in seconds. This attribute is not always available, and may raise :exc:`AttributeError`." msgstr "" -#: ../../library/os.rst:3265 msgid "``st_birthtime`` is now available on Windows." msgstr "" -#: ../../library/os.rst:3270 -msgid "" -"Time of file creation expressed in nanoseconds as an integer. This attribute " -"is not always available, and may raise :exc:`AttributeError`." +msgid "Time of file creation expressed in nanoseconds as an integer. This attribute is not always available, and may raise :exc:`AttributeError`." msgstr "" -#: ../../library/os.rst:3278 -msgid "" -"The exact meaning and resolution of " -"the :attr:`st_atime`, :attr:`st_mtime`, :attr:`st_ctime` " -"and :attr:`st_birthtime` attributes depend on the operating system and the " -"file system. For example, on Windows systems using the FAT32 file " -"systems, :attr:`st_mtime` has 2-second resolution, and :attr:`st_atime` has " -"only 1-day resolution. See your operating system documentation for details." +msgid "The exact meaning and resolution of the :attr:`st_atime`, :attr:`st_mtime`, :attr:`st_ctime` and :attr:`st_birthtime` attributes depend on the operating system and the file system. For example, on Windows systems using the FAT32 file systems, :attr:`st_mtime` has 2-second resolution, and :attr:`st_atime` has only 1-day resolution. See your operating system documentation for details." msgstr "" -#: ../../library/os.rst:3285 -msgid "" -"Similarly, " -"although :attr:`st_atime_ns`, :attr:`st_mtime_ns`, :attr:`st_ctime_ns` " -"and :attr:`st_birthtime_ns` are always expressed in nanoseconds, many " -"systems do not provide nanosecond precision. On systems that do provide " -"nanosecond precision, the floating-point object used to " -"store :attr:`st_atime`, :attr:`st_mtime`, :attr:`st_ctime` " -"and :attr:`st_birthtime` cannot preserve all of it, and as such will be " -"slightly inexact. If you need the exact timestamps you should always " -"use :attr:`st_atime_ns`, :attr:`st_mtime_ns`, :attr:`st_ctime_ns` " -"and :attr:`st_birthtime_ns`." -msgstr "" - -#: ../../library/os.rst:3295 -msgid "" -"On some Unix systems (such as Linux), the following attributes may also be " -"available:" +msgid "Similarly, although :attr:`st_atime_ns`, :attr:`st_mtime_ns`, :attr:`st_ctime_ns` and :attr:`st_birthtime_ns` are always expressed in nanoseconds, many systems do not provide nanosecond precision. On systems that do provide nanosecond precision, the floating-point object used to store :attr:`st_atime`, :attr:`st_mtime`, :attr:`st_ctime` and :attr:`st_birthtime` cannot preserve all of it, and as such will be slightly inexact. If you need the exact timestamps you should always use :attr:`st_atime_ns`, :attr:`st_mtime_ns`, :attr:`st_ctime_ns` and :attr:`st_birthtime_ns`." msgstr "" -#: ../../library/os.rst:3300 -msgid "" -"Number of 512-byte blocks allocated for file. This may be smaller " -"than :attr:`st_size`/512 when the file has holes." +msgid "On some Unix systems (such as Linux), the following attributes may also be available:" msgstr "" -#: ../../library/os.rst:3305 -msgid "" -"\"Preferred\" blocksize for efficient file system I/O. Writing to a file in " -"smaller chunks may cause an inefficient read-modify-rewrite." +msgid "Number of 512-byte blocks allocated for file. This may be smaller than :attr:`st_size`/512 when the file has holes." +msgstr "" + +msgid "\"Preferred\" blocksize for efficient file system I/O. Writing to a file in smaller chunks may cause an inefficient read-modify-rewrite." msgstr "" -#: ../../library/os.rst:3310 msgid "Type of device if an inode device." msgstr "" -#: ../../library/os.rst:3314 msgid "User defined flags for file." msgstr "" -#: ../../library/os.rst:3316 -msgid "" -"On other Unix systems (such as FreeBSD), the following attributes may be " -"available (but may be only filled out if root tries to use them):" +msgid "On other Unix systems (such as FreeBSD), the following attributes may be available (but may be only filled out if root tries to use them):" msgstr "" -#: ../../library/os.rst:3321 msgid "File generation number." msgstr "" -#: ../../library/os.rst:3323 -msgid "" -"On Solaris and derivatives, the following attributes may also be available:" +msgid "On Solaris and derivatives, the following attributes may also be available:" msgstr "" -#: ../../library/os.rst:3328 -msgid "" -"String that uniquely identifies the type of the filesystem that contains the " -"file." +msgid "String that uniquely identifies the type of the filesystem that contains the file." msgstr "" -#: ../../library/os.rst:3331 msgid "On macOS systems, the following attributes may also be available:" msgstr "" -#: ../../library/os.rst:3335 msgid "Real size of the file." msgstr "" -#: ../../library/os.rst:3339 msgid "Creator of the file." msgstr "" -#: ../../library/os.rst:3343 msgid "File type." msgstr "" -#: ../../library/os.rst:3345 msgid "On Windows systems, the following attributes are also available:" msgstr "" -#: ../../library/os.rst:3349 -msgid "" -"Windows file attributes: ``dwFileAttributes`` member of the " -"``BY_HANDLE_FILE_INFORMATION`` structure returned by :c:func:`!" -"GetFileInformationByHandle`. See the :const:`!FILE_ATTRIBUTE_* " -"` constants in the :mod:`stat` module." +msgid "Windows file attributes: ``dwFileAttributes`` member of the ``BY_HANDLE_FILE_INFORMATION`` structure returned by :c:func:`!GetFileInformationByHandle`. See the :const:`!FILE_ATTRIBUTE_* ` constants in the :mod:`stat` module." msgstr "" -#: ../../library/os.rst:3359 -msgid "" -"When :attr:`st_file_attributes` has " -"the :const:`~stat.FILE_ATTRIBUTE_REPARSE_POINT` set, this field contains the " -"tag identifying the type of reparse point. See the :const:`IO_REPARSE_TAG_* " -"` constants in the :mod:`stat` module." +msgid "When :attr:`st_file_attributes` has the :const:`~stat.FILE_ATTRIBUTE_REPARSE_POINT` set, this field contains the tag identifying the type of reparse point. See the :const:`IO_REPARSE_TAG_* ` constants in the :mod:`stat` module." msgstr "" -#: ../../library/os.rst:3364 -msgid "" -"The standard module :mod:`stat` defines functions and constants that are " -"useful for extracting information from a :c:struct:`stat` structure. (On " -"Windows, some items are filled with dummy values.)" +msgid "The standard module :mod:`stat` defines functions and constants that are useful for extracting information from a :c:struct:`stat` structure. (On Windows, some items are filled with dummy values.)" msgstr "" -#: ../../library/os.rst:3368 -msgid "" -"For backward compatibility, a :class:`stat_result` instance is also " -"accessible as a tuple of at least 10 integers giving the most important (and " -"portable) members of the :c:struct:`stat` structure, in the " -"order :attr:`st_mode`, :attr:`st_ino`, :attr:`st_dev`, :attr:`st_nlink`, :attr:`st_uid`, :attr:`st_gid`, :attr:`st_size`, :attr:`st_atime`, :attr:`st_mtime`, :attr:`st_ctime`. " -"More items may be added at the end by some implementations. For " -"compatibility with older Python versions, accessing :class:`stat_result` as " -"a tuple always returns integers." +msgid "For backward compatibility, a :class:`stat_result` instance is also accessible as a tuple of at least 10 integers giving the most important (and portable) members of the :c:struct:`stat` structure, in the order :attr:`st_mode`, :attr:`st_ino`, :attr:`st_dev`, :attr:`st_nlink`, :attr:`st_uid`, :attr:`st_gid`, :attr:`st_size`, :attr:`st_atime`, :attr:`st_mtime`, :attr:`st_ctime`. More items may be added at the end by some implementations. For compatibility with older Python versions, accessing :class:`stat_result` as a tuple always returns integers." msgstr "" -#: ../../library/os.rst:3377 msgid "Windows now returns the file index as :attr:`st_ino` when available." msgstr "" -#: ../../library/os.rst:3381 msgid "Added the :attr:`st_fstype` member to Solaris/derivatives." msgstr "" -#: ../../library/os.rst:3384 msgid "Added the :attr:`st_reparse_tag` member on Windows." msgstr "" -#: ../../library/os.rst:3387 -msgid "" -"On Windows, the :attr:`st_mode` member now identifies special files " -"as :const:`S_IFCHR`, :const:`S_IFIFO` or :const:`S_IFBLK` as appropriate." +msgid "On Windows, the :attr:`st_mode` member now identifies special files as :const:`S_IFCHR`, :const:`S_IFIFO` or :const:`S_IFBLK` as appropriate." msgstr "" -#: ../../library/os.rst:3392 -msgid "" -"On Windows, :attr:`st_ctime` is deprecated. Eventually, it will contain the " -"last metadata change time, for consistency with other platforms, but for now " -"still contains creation time. Use :attr:`st_birthtime` for the creation time." +msgid "On Windows, :attr:`st_ctime` is deprecated. Eventually, it will contain the last metadata change time, for consistency with other platforms, but for now still contains creation time. Use :attr:`st_birthtime` for the creation time." msgstr "" -#: ../../library/os.rst:3398 -msgid "" -"On Windows, :attr:`st_ino` may now be up to 128 bits, depending on the file " -"system. Previously it would not be above 64 bits, and larger file " -"identifiers would be arbitrarily packed." +msgid "On Windows, :attr:`st_ino` may now be up to 128 bits, depending on the file system. Previously it would not be above 64 bits, and larger file identifiers would be arbitrarily packed." msgstr "" -#: ../../library/os.rst:3402 -msgid "" -"On Windows, :attr:`st_rdev` no longer returns a value. Previously it would " -"contain the same as :attr:`st_dev`, which was incorrect." +msgid "On Windows, :attr:`st_rdev` no longer returns a value. Previously it would contain the same as :attr:`st_dev`, which was incorrect." msgstr "" -#: ../../library/os.rst:3405 msgid "Added the :attr:`st_birthtime` member on Windows." msgstr "" -#: ../../library/os.rst:3410 -msgid "" -"Perform a :manpage:`statvfs(3)` system call on the given path. The return " -"value is a :class:`statvfs_result` whose attributes describe the filesystem " -"on the given path and correspond to the members of the :c:struct:`statvfs` " -"structure." +msgid "Perform a :manpage:`statvfs(3)` system call on the given path. The return value is a :class:`statvfs_result` whose attributes describe the filesystem on the given path and correspond to the members of the :c:struct:`statvfs` structure." msgstr "" -#: ../../library/os.rst:3428 -msgid "" -"Filesystem statistics returned by :func:`os.statvfs` " -"and :func:`os.fstatvfs`. See :manpage:`statvfs(3)` for more details." +msgid "Filesystem statistics returned by :func:`os.statvfs` and :func:`os.fstatvfs`. See :manpage:`statvfs(3)` for more details." msgstr "" -#: ../../library/os.rst:3433 msgid "Block size." msgstr "" -#: ../../library/os.rst:3437 msgid "Fragment size." msgstr "" -#: ../../library/os.rst:3441 -msgid "" -"Number of :attr:`~statvfs_result.f_frsize` sized blocks the filesystem can " -"contain." +msgid "Number of :attr:`~statvfs_result.f_frsize` sized blocks the filesystem can contain." msgstr "" -#: ../../library/os.rst:3446 msgid "Number of free blocks." msgstr "" -#: ../../library/os.rst:3450 msgid "Number of free blocks for unprivileged users." msgstr "" -#: ../../library/os.rst:3454 msgid "Number of file entries, inodes, the filesystem can contain." msgstr "" -#: ../../library/os.rst:3458 msgid "Number of free files entries." msgstr "" -#: ../../library/os.rst:3462 msgid "Number of free file entries for unprivileged users." msgstr "" -#: ../../library/os.rst:3466 -msgid "" -"Bit-mask of mount flags. The following flags are " -"defined: :data:`ST_RDONLY`, :data:`ST_NOSUID`, :data:`ST_NODEV`, :data:`ST_NOEXEC`, :data:`ST_SYNCHRONOUS`, :data:`ST_MANDLOCK`, :data:`ST_WRITE`, :data:`ST_APPEND`, :data:`ST_IMMUTABLE`, :data:`ST_NOATIME`, :data:`ST_NODIRATIME`, " -"and :data:`ST_RELATIME`." +msgid "Bit-mask of mount flags. The following flags are defined: :data:`ST_RDONLY`, :data:`ST_NOSUID`, :data:`ST_NODEV`, :data:`ST_NOEXEC`, :data:`ST_SYNCHRONOUS`, :data:`ST_MANDLOCK`, :data:`ST_WRITE`, :data:`ST_APPEND`, :data:`ST_IMMUTABLE`, :data:`ST_NOATIME`, :data:`ST_NODIRATIME`, and :data:`ST_RELATIME`." msgstr "" -#: ../../library/os.rst:3474 -msgid "" -"Filesystem max filename length. OS specific limitations such " -"as :ref:`Windows MAX_PATH ` and those described in " -"Linux :manpage:`pathname(7)` may exist." +msgid "Filesystem max filename length. OS specific limitations such as :ref:`Windows MAX_PATH ` and those described in Linux :manpage:`pathname(7)` may exist." msgstr "" -#: ../../library/os.rst:3480 msgid "Filesystem ID." msgstr "" -#: ../../library/os.rst:3485 msgid "The following flags are used in :attr:`statvfs_result.f_flag`." msgstr "" -#: ../../library/os.rst:3489 msgid "Read-only filesystem." msgstr "" -#: ../../library/os.rst:3495 msgid "Setuid/setgid bits are disabled or not supported." msgstr "" -#: ../../library/os.rst:3501 msgid "Disallow access to device special files." msgstr "" -#: ../../library/os.rst:3509 msgid "Disallow program execution." msgstr "" -#: ../../library/os.rst:3517 msgid "Writes are synced at once." msgstr "" -#: ../../library/os.rst:3525 msgid "Allow mandatory locks on an FS." msgstr "" -#: ../../library/os.rst:3533 msgid "Write on file/directory/symlink." msgstr "" -#: ../../library/os.rst:3541 msgid "Append-only file." msgstr "" -#: ../../library/os.rst:3549 msgid "Immutable file." msgstr "" -#: ../../library/os.rst:3557 msgid "Do not update access times." msgstr "" -#: ../../library/os.rst:3565 msgid "Do not update directory access times." msgstr "" -#: ../../library/os.rst:3573 msgid "Update atime relative to mtime/ctime." msgstr "" -#: ../../library/os.rst:3582 -msgid "" -"A :class:`set` object indicating which functions in the :mod:`!os` module " -"accept an open file descriptor for their *dir_fd* parameter. Different " -"platforms provide different features, and the underlying functionality " -"Python uses to implement the *dir_fd* parameter is not available on all " -"platforms Python supports. For consistency's sake, functions that may " -"support *dir_fd* always allow specifying the parameter, but will throw an " -"exception if the functionality is used when it's not locally available. " -"(Specifying ``None`` for *dir_fd* is always supported on all platforms.)" +msgid "A :class:`set` object indicating which functions in the :mod:`!os` module accept an open file descriptor for their *dir_fd* parameter. Different platforms provide different features, and the underlying functionality Python uses to implement the *dir_fd* parameter is not available on all platforms Python supports. For consistency's sake, functions that may support *dir_fd* always allow specifying the parameter, but will throw an exception if the functionality is used when it's not locally available. (Specifying ``None`` for *dir_fd* is always supported on all platforms.)" msgstr "" -#: ../../library/os.rst:3592 -msgid "" -"To check whether a particular function accepts an open file descriptor for " -"its *dir_fd* parameter, use the ``in`` operator on ``supports_dir_fd``. As " -"an example, this expression evaluates to ``True`` if :func:`os.stat` accepts " -"open file descriptors for *dir_fd* on the local platform::" +msgid "To check whether a particular function accepts an open file descriptor for its *dir_fd* parameter, use the ``in`` operator on ``supports_dir_fd``. As an example, this expression evaluates to ``True`` if :func:`os.stat` accepts open file descriptors for *dir_fd* on the local platform::" msgstr "" -#: ../../library/os.rst:3597 msgid "os.stat in os.supports_dir_fd" msgstr "" -#: ../../library/os.rst:3599 -msgid "" -"Currently *dir_fd* parameters only work on Unix platforms; none of them work " -"on Windows." +msgid "Currently *dir_fd* parameters only work on Unix platforms; none of them work on Windows." msgstr "" -#: ../../library/os.rst:3607 -msgid "" -"A :class:`set` object indicating whether :func:`os.access` permits " -"specifying ``True`` for its *effective_ids* parameter on the local platform. " -"(Specifying ``False`` for *effective_ids* is always supported on all " -"platforms.) If the local platform supports it, the collection will " -"contain :func:`os.access`; otherwise it will be empty." +msgid "A :class:`set` object indicating whether :func:`os.access` permits specifying ``True`` for its *effective_ids* parameter on the local platform. (Specifying ``False`` for *effective_ids* is always supported on all platforms.) If the local platform supports it, the collection will contain :func:`os.access`; otherwise it will be empty." msgstr "" -#: ../../library/os.rst:3613 -msgid "" -"This expression evaluates to ``True`` if :func:`os.access` supports " -"``effective_ids=True`` on the local platform::" +msgid "This expression evaluates to ``True`` if :func:`os.access` supports ``effective_ids=True`` on the local platform::" msgstr "" -#: ../../library/os.rst:3616 msgid "os.access in os.supports_effective_ids" msgstr "" -#: ../../library/os.rst:3618 -msgid "" -"Currently *effective_ids* is only supported on Unix platforms; it does not " -"work on Windows." +msgid "Currently *effective_ids* is only supported on Unix platforms; it does not work on Windows." msgstr "" -#: ../../library/os.rst:3626 -msgid "" -"A :class:`set` object indicating which functions in the :mod:`!os` module " -"permit specifying their *path* parameter as an open file descriptor on the " -"local platform. Different platforms provide different features, and the " -"underlying functionality Python uses to accept open file descriptors as " -"*path* arguments is not available on all platforms Python supports." +msgid "A :class:`set` object indicating which functions in the :mod:`!os` module permit specifying their *path* parameter as an open file descriptor on the local platform. Different platforms provide different features, and the underlying functionality Python uses to accept open file descriptors as *path* arguments is not available on all platforms Python supports." msgstr "" -#: ../../library/os.rst:3633 -msgid "" -"To determine whether a particular function permits specifying an open file " -"descriptor for its *path* parameter, use the ``in`` operator on " -"``supports_fd``. As an example, this expression evaluates to ``True`` " -"if :func:`os.chdir` accepts open file descriptors for *path* on your local " -"platform::" +msgid "To determine whether a particular function permits specifying an open file descriptor for its *path* parameter, use the ``in`` operator on ``supports_fd``. As an example, this expression evaluates to ``True`` if :func:`os.chdir` accepts open file descriptors for *path* on your local platform::" msgstr "" -#: ../../library/os.rst:3639 msgid "os.chdir in os.supports_fd" msgstr "" -#: ../../library/os.rst:3646 -msgid "" -"A :class:`set` object indicating which functions in the :mod:`!os` module " -"accept ``False`` for their *follow_symlinks* parameter on the local " -"platform. Different platforms provide different features, and the underlying " -"functionality Python uses to implement *follow_symlinks* is not available on " -"all platforms Python supports. For consistency's sake, functions that may " -"support *follow_symlinks* always allow specifying the parameter, but will " -"throw an exception if the functionality is used when it's not locally " -"available. (Specifying ``True`` for *follow_symlinks* is always supported " -"on all platforms.)" -msgstr "" - -#: ../../library/os.rst:3656 -msgid "" -"To check whether a particular function accepts ``False`` for its " -"*follow_symlinks* parameter, use the ``in`` operator on " -"``supports_follow_symlinks``. As an example, this expression evaluates to " -"``True`` if you may specify ``follow_symlinks=False`` when " -"calling :func:`os.stat` on the local platform::" +msgid "A :class:`set` object indicating which functions in the :mod:`!os` module accept ``False`` for their *follow_symlinks* parameter on the local platform. Different platforms provide different features, and the underlying functionality Python uses to implement *follow_symlinks* is not available on all platforms Python supports. For consistency's sake, functions that may support *follow_symlinks* always allow specifying the parameter, but will throw an exception if the functionality is used when it's not locally available. (Specifying ``True`` for *follow_symlinks* is always supported on all platforms.)" +msgstr "" + +msgid "To check whether a particular function accepts ``False`` for its *follow_symlinks* parameter, use the ``in`` operator on ``supports_follow_symlinks``. As an example, this expression evaluates to ``True`` if you may specify ``follow_symlinks=False`` when calling :func:`os.stat` on the local platform::" msgstr "" -#: ../../library/os.rst:3662 msgid "os.stat in os.supports_follow_symlinks" msgstr "" -#: ../../library/os.rst:3669 msgid "Create a symbolic link pointing to *src* named *dst*." msgstr "" -#: ../../library/os.rst:3671 -msgid "" -"The *src* parameter refers to the target of the link (the file or directory " -"being linked to), and *dst* is the name of the link being created." +msgid "The *src* parameter refers to the target of the link (the file or directory being linked to), and *dst* is the name of the link being created." msgstr "" -#: ../../library/os.rst:3674 -msgid "" -"On Windows, a symlink represents either a file or a directory, and does not " -"morph to the target dynamically. If the target is present, the type of the " -"symlink will be created to match. Otherwise, the symlink will be created as " -"a directory if *target_is_directory* is ``True`` or a file symlink (the " -"default) otherwise. On non-Windows platforms, *target_is_directory* is " -"ignored." +msgid "On Windows, a symlink represents either a file or a directory, and does not morph to the target dynamically. If the target is present, the type of the symlink will be created to match. Otherwise, the symlink will be created as a directory if *target_is_directory* is ``True`` or a file symlink (the default) otherwise. On non-Windows platforms, *target_is_directory* is ignored." msgstr "" -#: ../../library/os.rst:3685 -msgid "" -"On newer versions of Windows 10, unprivileged accounts can create symlinks " -"if Developer Mode is enabled. When Developer Mode is not available/enabled, " -"the *SeCreateSymbolicLinkPrivilege* privilege is required, or the process " -"must be run as an administrator." +msgid "On newer versions of Windows 10, unprivileged accounts can create symlinks if Developer Mode is enabled. When Developer Mode is not available/enabled, the *SeCreateSymbolicLinkPrivilege* privilege is required, or the process must be run as an administrator." msgstr "" -#: ../../library/os.rst:3691 -msgid "" -":exc:`OSError` is raised when the function is called by an unprivileged user." +msgid ":exc:`OSError` is raised when the function is called by an unprivileged user." msgstr "" -#: ../../library/os.rst:3694 -msgid "" -"Raises an :ref:`auditing event ` ``os.symlink`` with arguments " -"``src``, ``dst``, ``dir_fd``." +msgid "Raises an :ref:`auditing event ` ``os.symlink`` with arguments ``src``, ``dst``, ``dir_fd``." msgstr "" -#: ../../library/os.rst:3704 -msgid "" -"Added the *dir_fd* parameter, and now allow *target_is_directory* on non-" -"Windows platforms." +msgid "Added the *dir_fd* parameter, and now allow *target_is_directory* on non-Windows platforms." msgstr "" -#: ../../library/os.rst:3711 msgid "Added support for unelevated symlinks on Windows with Developer Mode." msgstr "" -#: ../../library/os.rst:3717 msgid "Force write of everything to disk." msgstr "" -#: ../../library/os.rst:3726 -msgid "" -"Truncate the file corresponding to *path*, so that it is at most *length* " -"bytes in size." +msgid "Truncate the file corresponding to *path*, so that it is at most *length* bytes in size." msgstr "" -#: ../../library/os.rst:3731 -msgid "" -"Raises an :ref:`auditing event ` ``os.truncate`` with arguments " -"``path``, ``length``." +msgid "Raises an :ref:`auditing event ` ``os.truncate`` with arguments ``path``, ``length``." msgstr "" -#: ../../library/os.rst:3746 -msgid "" -"Remove (delete) the file *path*. This function is semantically identical " -"to :func:`remove`; the ``unlink`` name is its traditional Unix name. Please " -"see the documentation for :func:`remove` for further information." +msgid "Remove (delete) the file *path*. This function is semantically identical to :func:`remove`; the ``unlink`` name is its traditional Unix name. Please see the documentation for :func:`remove` for further information." msgstr "" -#: ../../library/os.rst:3762 msgid "Set the access and modified times of the file specified by *path*." msgstr "" -#: ../../library/os.rst:3764 -msgid "" -":func:`utime` takes two optional parameters, *times* and *ns*. These specify " -"the times set on *path* and are used as follows:" +msgid ":func:`utime` takes two optional parameters, *times* and *ns*. These specify the times set on *path* and are used as follows:" msgstr "" -#: ../../library/os.rst:3767 -msgid "" -"If *ns* is specified, it must be a 2-tuple of the form ``(atime_ns, " -"mtime_ns)`` where each member is an int expressing nanoseconds." +msgid "If *ns* is specified, it must be a 2-tuple of the form ``(atime_ns, mtime_ns)`` where each member is an int expressing nanoseconds." msgstr "" -#: ../../library/os.rst:3770 -msgid "" -"If *times* is not ``None``, it must be a 2-tuple of the form ``(atime, " -"mtime)`` where each member is an int or float expressing seconds." +msgid "If *times* is not ``None``, it must be a 2-tuple of the form ``(atime, mtime)`` where each member is an int or float expressing seconds." msgstr "" -#: ../../library/os.rst:3773 -msgid "" -"If *times* is ``None`` and *ns* is unspecified, this is equivalent to " -"specifying ``ns=(atime_ns, mtime_ns)`` where both times are the current time." +msgid "If *times* is ``None`` and *ns* is unspecified, this is equivalent to specifying ``ns=(atime_ns, mtime_ns)`` where both times are the current time." msgstr "" -#: ../../library/os.rst:3777 msgid "It is an error to specify tuples for both *times* and *ns*." msgstr "" -#: ../../library/os.rst:3779 -msgid "" -"Note that the exact times you set here may not be returned by a " -"subsequent :func:`~os.stat` call, depending on the resolution with which " -"your operating system records access and modification times; " -"see :func:`~os.stat`. The best way to preserve exact times is to use the " -"*st_atime_ns* and *st_mtime_ns* fields from the :func:`os.stat` result " -"object with the *ns* parameter to :func:`utime`." +msgid "Note that the exact times you set here may not be returned by a subsequent :func:`~os.stat` call, depending on the resolution with which your operating system records access and modification times; see :func:`~os.stat`. The best way to preserve exact times is to use the *st_atime_ns* and *st_mtime_ns* fields from the :func:`os.stat` result object with the *ns* parameter to :func:`utime`." msgstr "" -#: ../../library/os.rst:3790 -msgid "" -"Raises an :ref:`auditing event ` ``os.utime`` with arguments " -"``path``, ``times``, ``ns``, ``dir_fd``." +msgid "Raises an :ref:`auditing event ` ``os.utime`` with arguments ``path``, ``times``, ``ns``, ``dir_fd``." msgstr "" -#: ../../library/os.rst:3792 -msgid "" -"Added support for specifying *path* as an open file descriptor, and the " -"*dir_fd*, *follow_symlinks*, and *ns* parameters." +msgid "Added support for specifying *path* as an open file descriptor, and the *dir_fd*, *follow_symlinks*, and *ns* parameters." msgstr "" -#: ../../library/os.rst:3806 -msgid "" -"Generate the file names in a directory tree by walking the tree either top-" -"down or bottom-up. For each directory in the tree rooted at directory *top* " -"(including *top* itself), it yields a 3-tuple ``(dirpath, dirnames, " -"filenames)``." +msgid "Generate the file names in a directory tree by walking the tree either top-down or bottom-up. For each directory in the tree rooted at directory *top* (including *top* itself), it yields a 3-tuple ``(dirpath, dirnames, filenames)``." msgstr "" -#: ../../library/os.rst:3811 -msgid "" -"*dirpath* is a string, the path to the directory. *dirnames* is a list of " -"the names of the subdirectories in *dirpath* (including symlinks to " -"directories, and excluding ``'.'`` and ``'..'``). *filenames* is a list of " -"the names of the non-directory files in *dirpath*. Note that the names in " -"the lists contain no path components. To get a full path (which begins with " -"*top*) to a file or directory in *dirpath*, do ``os.path.join(dirpath, " -"name)``. Whether or not the lists are sorted depends on the file system. " -"If a file is removed from or added to the *dirpath* directory during " -"generating the lists, whether a name for that file be included is " -"unspecified." -msgstr "" - -#: ../../library/os.rst:3822 -msgid "" -"If optional argument *topdown* is ``True`` or not specified, the triple for " -"a directory is generated before the triples for any of its subdirectories " -"(directories are generated top-down). If *topdown* is ``False``, the triple " -"for a directory is generated after the triples for all of its subdirectories " -"(directories are generated bottom-up). No matter the value of *topdown*, the " -"list of subdirectories is retrieved before the tuples for the directory and " -"its subdirectories are generated." +msgid "*dirpath* is a string, the path to the directory. *dirnames* is a list of the names of the subdirectories in *dirpath* (including symlinks to directories, and excluding ``'.'`` and ``'..'``). *filenames* is a list of the names of the non-directory files in *dirpath*. Note that the names in the lists contain no path components. To get a full path (which begins with *top*) to a file or directory in *dirpath*, do ``os.path.join(dirpath, name)``. Whether or not the lists are sorted depends on the file system. If a file is removed from or added to the *dirpath* directory during generating the lists, whether a name for that file be included is unspecified." msgstr "" -#: ../../library/os.rst:3830 -msgid "" -"When *topdown* is ``True``, the caller can modify the *dirnames* list in-" -"place (perhaps using :keyword:`del` or slice assignment), and :func:`walk` " -"will only recurse into the subdirectories whose names remain in *dirnames*; " -"this can be used to prune the search, impose a specific order of visiting, " -"or even to inform :func:`walk` about directories the caller creates or " -"renames before it resumes :func:`walk` again. Modifying *dirnames* when " -"*topdown* is ``False`` has no effect on the behavior of the walk, because in " -"bottom-up mode the directories in *dirnames* are generated before *dirpath* " -"itself is generated." -msgstr "" - -#: ../../library/os.rst:3839 -msgid "" -"By default, errors from the :func:`scandir` call are ignored. If optional " -"argument *onerror* is specified, it should be a function; it will be called " -"with one argument, an :exc:`OSError` instance. It can report the error to " -"continue with the walk, or raise the exception to abort the walk. Note that " -"the filename is available as the ``filename`` attribute of the exception " -"object." +msgid "If optional argument *topdown* is ``True`` or not specified, the triple for a directory is generated before the triples for any of its subdirectories (directories are generated top-down). If *topdown* is ``False``, the triple for a directory is generated after the triples for all of its subdirectories (directories are generated bottom-up). No matter the value of *topdown*, the list of subdirectories is retrieved before the tuples for the directory and its subdirectories are generated." msgstr "" -#: ../../library/os.rst:3845 -msgid "" -"By default, :func:`walk` will not walk down into symbolic links that resolve " -"to directories. Set *followlinks* to ``True`` to visit directories pointed " -"to by symlinks, on systems that support them." +msgid "When *topdown* is ``True``, the caller can modify the *dirnames* list in-place (perhaps using :keyword:`del` or slice assignment), and :func:`walk` will only recurse into the subdirectories whose names remain in *dirnames*; this can be used to prune the search, impose a specific order of visiting, or even to inform :func:`walk` about directories the caller creates or renames before it resumes :func:`walk` again. Modifying *dirnames* when *topdown* is ``False`` has no effect on the behavior of the walk, because in bottom-up mode the directories in *dirnames* are generated before *dirpath* itself is generated." msgstr "" -#: ../../library/os.rst:3851 -msgid "" -"Be aware that setting *followlinks* to ``True`` can lead to infinite " -"recursion if a link points to a parent directory of itself. :func:`walk` " -"does not keep track of the directories it visited already." +msgid "By default, errors from the :func:`scandir` call are ignored. If optional argument *onerror* is specified, it should be a function; it will be called with one argument, an :exc:`OSError` instance. It can report the error to continue with the walk, or raise the exception to abort the walk. Note that the filename is available as the ``filename`` attribute of the exception object." msgstr "" -#: ../../library/os.rst:3857 -msgid "" -"If you pass a relative pathname, don't change the current working directory " -"between resumptions of :func:`walk`. :func:`walk` never changes the current " -"directory, and assumes that its caller doesn't either." +msgid "By default, :func:`walk` will not walk down into symbolic links that resolve to directories. Set *followlinks* to ``True`` to visit directories pointed to by symlinks, on systems that support them." msgstr "" -#: ../../library/os.rst:3861 ../../library/os.rst:3923 -msgid "" -"This example displays the number of bytes taken by non-directory files in " -"each directory under the starting directory, except that it doesn't look " -"under any ``__pycache__`` subdirectory::" +msgid "Be aware that setting *followlinks* to ``True`` can lead to infinite recursion if a link points to a parent directory of itself. :func:`walk` does not keep track of the directories it visited already." +msgstr "" + +msgid "If you pass a relative pathname, don't change the current working directory between resumptions of :func:`walk`. :func:`walk` never changes the current directory, and assumes that its caller doesn't either." +msgstr "" + +msgid "This example displays the number of bytes taken by non-directory files in each directory under the starting directory, except that it doesn't look under any ``__pycache__`` subdirectory::" msgstr "" -#: ../../library/os.rst:3865 msgid "" "import os\n" "from os.path import join, getsize\n" @@ -4234,14 +2057,9 @@ msgid "" " dirs.remove('__pycache__') # don't visit __pycache__ directories" msgstr "" -#: ../../library/os.rst:3874 -msgid "" -"In the next example (simple implementation of :func:`shutil.rmtree`), " -"walking the tree bottom-up is essential, :func:`rmdir` doesn't allow " -"deleting a directory before the directory is empty::" +msgid "In the next example (simple implementation of :func:`shutil.rmtree`), walking the tree bottom-up is essential, :func:`rmdir` doesn't allow deleting a directory before the directory is empty::" msgstr "" -#: ../../library/os.rst:3878 msgid "" "# Delete everything reachable from the directory named in \"top\",\n" "# assuming there are no symbolic links.\n" @@ -4256,46 +2074,24 @@ msgid "" "os.rmdir(top)" msgstr "" -#: ../../library/os.rst:3890 -msgid "" -"Raises an :ref:`auditing event ` ``os.walk`` with arguments " -"``top``, ``topdown``, ``onerror``, ``followlinks``." +msgid "Raises an :ref:`auditing event ` ``os.walk`` with arguments ``top``, ``topdown``, ``onerror``, ``followlinks``." msgstr "" -#: ../../library/os.rst:3892 -msgid "" -"This function now calls :func:`os.scandir` instead of :func:`os.listdir`, " -"making it faster by reducing the number of calls to :func:`os.stat`." +msgid "This function now calls :func:`os.scandir` instead of :func:`os.listdir`, making it faster by reducing the number of calls to :func:`os.stat`." msgstr "" -#: ../../library/os.rst:3906 -msgid "" -"This behaves exactly like :func:`walk`, except that it yields a 4-tuple " -"``(dirpath, dirnames, filenames, dirfd)``, and it supports ``dir_fd``." +msgid "This behaves exactly like :func:`walk`, except that it yields a 4-tuple ``(dirpath, dirnames, filenames, dirfd)``, and it supports ``dir_fd``." msgstr "" -#: ../../library/os.rst:3909 -msgid "" -"*dirpath*, *dirnames* and *filenames* are identical to :func:`walk` output, " -"and *dirfd* is a file descriptor referring to the directory *dirpath*." +msgid "*dirpath*, *dirnames* and *filenames* are identical to :func:`walk` output, and *dirfd* is a file descriptor referring to the directory *dirpath*." msgstr "" -#: ../../library/os.rst:3912 -msgid "" -"This function always supports :ref:`paths relative to directory descriptors " -"` and :ref:`not following symlinks `. Note however " -"that, unlike other functions, the :func:`fwalk` default value for " -"*follow_symlinks* is ``False``." +msgid "This function always supports :ref:`paths relative to directory descriptors ` and :ref:`not following symlinks `. Note however that, unlike other functions, the :func:`fwalk` default value for *follow_symlinks* is ``False``." msgstr "" -#: ../../library/os.rst:3919 -msgid "" -"Since :func:`fwalk` yields file descriptors, those are only valid until the " -"next iteration step, so you should duplicate them (e.g. with :func:`dup`) if " -"you want to keep them longer." +msgid "Since :func:`fwalk` yields file descriptors, those are only valid until the next iteration step, so you should duplicate them (e.g. with :func:`dup`) if you want to keep them longer." msgstr "" -#: ../../library/os.rst:3927 msgid "" "import os\n" "for root, dirs, files, rootfd in os.fwalk('python/Lib/xml'):\n" @@ -4307,13 +2103,9 @@ msgid "" " dirs.remove('__pycache__') # don't visit __pycache__ directories" msgstr "" -#: ../../library/os.rst:3936 -msgid "" -"In the next example, walking the tree bottom-up is essential: :func:`rmdir` " -"doesn't allow deleting a directory before the directory is empty::" +msgid "In the next example, walking the tree bottom-up is essential: :func:`rmdir` doesn't allow deleting a directory before the directory is empty::" msgstr "" -#: ../../library/os.rst:3940 msgid "" "# Delete everything reachable from the directory named in \"top\",\n" "# assuming there are no symbolic links.\n" @@ -4327,92 +2119,45 @@ msgid "" " os.rmdir(name, dir_fd=rootfd)" msgstr "" -#: ../../library/os.rst:3951 -msgid "" -"Raises an :ref:`auditing event ` ``os.fwalk`` with arguments " -"``top``, ``topdown``, ``onerror``, ``follow_symlinks``, ``dir_fd``." +msgid "Raises an :ref:`auditing event ` ``os.fwalk`` with arguments ``top``, ``topdown``, ``onerror``, ``follow_symlinks``, ``dir_fd``." msgstr "" -#: ../../library/os.rst:3960 msgid "Added support for :class:`bytes` paths." msgstr "" -#: ../../library/os.rst:3966 -msgid "" -"Create an anonymous file and return a file descriptor that refers to it. " -"*flags* must be one of the ``os.MFD_*`` constants available on the system " -"(or a bitwise ORed combination of them). By default, the new file " -"descriptor is :ref:`non-inheritable `." +msgid "Create an anonymous file and return a file descriptor that refers to it. *flags* must be one of the ``os.MFD_*`` constants available on the system (or a bitwise ORed combination of them). By default, the new file descriptor is :ref:`non-inheritable `." msgstr "" -#: ../../library/os.rst:3971 -msgid "" -"The name supplied in *name* is used as a filename and will be displayed as " -"the target of the corresponding symbolic link in the directory ``/proc/self/" -"fd/``. The displayed name is always prefixed with ``memfd:`` and serves only " -"for debugging purposes. Names do not affect the behavior of the file " -"descriptor, and as such multiple files can have the same name without any " -"side effects." +msgid "The name supplied in *name* is used as a filename and will be displayed as the target of the corresponding symbolic link in the directory ``/proc/self/fd/``. The displayed name is always prefixed with ``memfd:`` and serves only for debugging purposes. Names do not affect the behavior of the file descriptor, and as such multiple files can have the same name without any side effects." msgstr "" -#: ../../library/os.rst:4001 msgid "These flags can be passed to :func:`memfd_create`." msgstr "" -#: ../../library/os.rst:4005 msgid "The ``MFD_HUGE*`` flags are only available since Linux 4.14." msgstr "" -#: ../../library/os.rst:4012 -msgid "" -"Create and return an event file descriptor. The file descriptors supports " -"raw :func:`read` and :func:`write` with a buffer size of " -"8, :func:`~select.select`, :func:`~select.poll` and similar. See man " -"page :manpage:`eventfd(2)` for more information. By default, the new file " -"descriptor is :ref:`non-inheritable `." +msgid "Create and return an event file descriptor. The file descriptors supports raw :func:`read` and :func:`write` with a buffer size of 8, :func:`~select.select`, :func:`~select.poll` and similar. See man page :manpage:`eventfd(2)` for more information. By default, the new file descriptor is :ref:`non-inheritable `." msgstr "" -#: ../../library/os.rst:4018 -msgid "" -"*initval* is the initial value of the event counter. The initial value must " -"be a 32 bit unsigned integer. Please note that the initial value is limited " -"to a 32 bit unsigned int although the event counter is an unsigned 64 bit " -"integer with a maximum value of 2\\ :sup:`64`\\ -\\ 2." +msgid "*initval* is the initial value of the event counter. The initial value must be a 32 bit unsigned integer. Please note that the initial value is limited to a 32 bit unsigned int although the event counter is an unsigned 64 bit integer with a maximum value of 2\\ :sup:`64`\\ -\\ 2." msgstr "" -#: ../../library/os.rst:4023 -msgid "" -"*flags* can be constructed from :const:`EFD_CLOEXEC`, :const:`EFD_NONBLOCK`, " -"and :const:`EFD_SEMAPHORE`." +msgid "*flags* can be constructed from :const:`EFD_CLOEXEC`, :const:`EFD_NONBLOCK`, and :const:`EFD_SEMAPHORE`." msgstr "" -#: ../../library/os.rst:4026 -msgid "" -"If :const:`EFD_SEMAPHORE` is specified and the event counter is non-" -"zero, :func:`eventfd_read` returns 1 and decrements the counter by one." +msgid "If :const:`EFD_SEMAPHORE` is specified and the event counter is non-zero, :func:`eventfd_read` returns 1 and decrements the counter by one." msgstr "" -#: ../../library/os.rst:4029 -msgid "" -"If :const:`EFD_SEMAPHORE` is not specified and the event counter is non-" -"zero, :func:`eventfd_read` returns the current event counter value and " -"resets the counter to zero." +msgid "If :const:`EFD_SEMAPHORE` is not specified and the event counter is non-zero, :func:`eventfd_read` returns the current event counter value and resets the counter to zero." msgstr "" -#: ../../library/os.rst:4033 -msgid "" -"If the event counter is zero and :const:`EFD_NONBLOCK` is not " -"specified, :func:`eventfd_read` blocks." +msgid "If the event counter is zero and :const:`EFD_NONBLOCK` is not specified, :func:`eventfd_read` blocks." msgstr "" -#: ../../library/os.rst:4036 -msgid "" -":func:`eventfd_write` increments the event counter. Write blocks if the " -"write operation would increment the counter to a value larger than " -"2\\ :sup:`64`\\ -\\ 2." +msgid ":func:`eventfd_write` increments the event counter. Write blocks if the write operation would increment the counter to a value larger than 2\\ :sup:`64`\\ -\\ 2." msgstr "" -#: ../../library/os.rst:4042 msgid "" "import os\n" "\n" @@ -4430,1156 +2175,555 @@ msgid "" " os.close(fd)" msgstr "" -#: ../../library/os.rst:4063 -msgid "" -"Read value from an :func:`eventfd` file descriptor and return a 64 bit " -"unsigned int. The function does not verify that *fd* is an :func:`eventfd`." +msgid "Read value from an :func:`eventfd` file descriptor and return a 64 bit unsigned int. The function does not verify that *fd* is an :func:`eventfd`." msgstr "" -#: ../../library/os.rst:4072 -msgid "" -"Add value to an :func:`eventfd` file descriptor. *value* must be a 64 bit " -"unsigned int. The function does not verify that *fd* is an :func:`eventfd`." +msgid "Add value to an :func:`eventfd` file descriptor. *value* must be a 64 bit unsigned int. The function does not verify that *fd* is an :func:`eventfd`." msgstr "" -#: ../../library/os.rst:4081 msgid "Set close-on-exec flag for new :func:`eventfd` file descriptor." msgstr "" -#: ../../library/os.rst:4089 -msgid "" -"Set :const:`O_NONBLOCK` status flag for new :func:`eventfd` file descriptor." +msgid "Set :const:`O_NONBLOCK` status flag for new :func:`eventfd` file descriptor." msgstr "" -#: ../../library/os.rst:4098 -msgid "" -"Provide semaphore-like semantics for reads from an :func:`eventfd` file " -"descriptor. On read the internal counter is decremented by one." +msgid "Provide semaphore-like semantics for reads from an :func:`eventfd` file descriptor. On read the internal counter is decremented by one." msgstr "" -#: ../../library/os.rst:4109 msgid "Timer File Descriptors" msgstr "" -#: ../../library/os.rst:4113 -msgid "" -"These functions provide support for Linux's *timer file descriptor* API. " -"Naturally, they are all only available on Linux." +msgid "These functions provide support for Linux's *timer file descriptor* API. Naturally, they are all only available on Linux." msgstr "" -#: ../../library/os.rst:4118 msgid "Create and return a timer file descriptor (*timerfd*)." msgstr "" -#: ../../library/os.rst:4120 msgid "The file descriptor returned by :func:`timerfd_create` supports:" msgstr "" -#: ../../library/os.rst:4122 msgid ":func:`read`" msgstr "" -#: ../../library/os.rst:4123 msgid ":func:`~select.select`" msgstr "" -#: ../../library/os.rst:4124 msgid ":func:`~select.poll`" msgstr "" -#: ../../library/os.rst:4126 -msgid "" -"The file descriptor's :func:`read` method can be called with a buffer size " -"of 8. If the timer has already expired one or more times, :func:`read` " -"returns the number of expirations with the host's endianness, which may be " -"converted to an :class:`int` by ``int.from_bytes(x, " -"byteorder=sys.byteorder)``." +msgid "The file descriptor's :func:`read` method can be called with a buffer size of 8. If the timer has already expired one or more times, :func:`read` returns the number of expirations with the host's endianness, which may be converted to an :class:`int` by ``int.from_bytes(x, byteorder=sys.byteorder)``." msgstr "" -#: ../../library/os.rst:4131 -msgid "" -":func:`~select.select` and :func:`~select.poll` can be used to wait until " -"timer expires and the file descriptor is readable." +msgid ":func:`~select.select` and :func:`~select.poll` can be used to wait until timer expires and the file descriptor is readable." msgstr "" -#: ../../library/os.rst:4134 -msgid "" -"*clockid* must be a valid :ref:`clock ID `, as " -"defined in the :py:mod:`time` module:" +msgid "*clockid* must be a valid :ref:`clock ID `, as defined in the :py:mod:`time` module:" msgstr "" -#: ../../library/os.rst:4137 msgid ":const:`time.CLOCK_REALTIME`" msgstr "" -#: ../../library/os.rst:4138 msgid ":const:`time.CLOCK_MONOTONIC`" msgstr "" -#: ../../library/os.rst:4139 msgid ":const:`time.CLOCK_BOOTTIME` (Since Linux 3.15 for timerfd_create)" msgstr "" -#: ../../library/os.rst:4141 -msgid "" -"If *clockid* is :const:`time.CLOCK_REALTIME`, a settable system-wide real-" -"time clock is used. If system clock is changed, timer setting need to be " -"updated. To cancel timer when system clock is changed, " -"see :const:`TFD_TIMER_CANCEL_ON_SET`." +msgid "If *clockid* is :const:`time.CLOCK_REALTIME`, a settable system-wide real-time clock is used. If system clock is changed, timer setting need to be updated. To cancel timer when system clock is changed, see :const:`TFD_TIMER_CANCEL_ON_SET`." msgstr "" -#: ../../library/os.rst:4146 -msgid "" -"If *clockid* is :const:`time.CLOCK_MONOTONIC`, a non-settable monotonically " -"increasing clock is used. Even if the system clock is changed, the timer " -"setting will not be affected." +msgid "If *clockid* is :const:`time.CLOCK_MONOTONIC`, a non-settable monotonically increasing clock is used. Even if the system clock is changed, the timer setting will not be affected." msgstr "" -#: ../../library/os.rst:4150 -msgid "" -"If *clockid* is :const:`time.CLOCK_BOOTTIME`, same " -"as :const:`time.CLOCK_MONOTONIC` except it includes any time that the system " -"is suspended." +msgid "If *clockid* is :const:`time.CLOCK_BOOTTIME`, same as :const:`time.CLOCK_MONOTONIC` except it includes any time that the system is suspended." msgstr "" -#: ../../library/os.rst:4153 -msgid "" -"The file descriptor's behaviour can be modified by specifying a *flags* " -"value. Any of the following variables may be used, combined using bitwise OR " -"(the ``|`` operator):" +msgid "The file descriptor's behaviour can be modified by specifying a *flags* value. Any of the following variables may be used, combined using bitwise OR (the ``|`` operator):" msgstr "" -#: ../../library/os.rst:4157 msgid ":const:`TFD_NONBLOCK`" msgstr "" -#: ../../library/os.rst:4158 msgid ":const:`TFD_CLOEXEC`" msgstr "" -#: ../../library/os.rst:4160 -msgid "" -"If :const:`TFD_NONBLOCK` is not set as a flag, :func:`read` blocks until the " -"timer expires. If it is set as a flag, :func:`read` doesn't block, but If " -"there hasn't been an expiration since the last call to read, :func:`read` " -"raises :class:`OSError` with ``errno`` is set to :const:`errno.EAGAIN`." +msgid "If :const:`TFD_NONBLOCK` is not set as a flag, :func:`read` blocks until the timer expires. If it is set as a flag, :func:`read` doesn't block, but If there hasn't been an expiration since the last call to read, :func:`read` raises :class:`OSError` with ``errno`` is set to :const:`errno.EAGAIN`." msgstr "" -#: ../../library/os.rst:4166 msgid ":const:`TFD_CLOEXEC` is always set by Python automatically." msgstr "" -#: ../../library/os.rst:4168 -msgid "" -"The file descriptor must be closed with :func:`os.close` when it is no " -"longer needed, or else the file descriptor will be leaked." +msgid "The file descriptor must be closed with :func:`os.close` when it is no longer needed, or else the file descriptor will be leaked." msgstr "" -#: ../../library/os.rst:4171 msgid "The :manpage:`timerfd_create(2)` man page." msgstr "" -#: ../../library/os.rst:4180 -msgid "" -"Alter a timer file descriptor's internal timer. This function operates the " -"same interval timer as :func:`timerfd_settime_ns`." +msgid "Alter a timer file descriptor's internal timer. This function operates the same interval timer as :func:`timerfd_settime_ns`." msgstr "" -#: ../../library/os.rst:4183 msgid "*fd* must be a valid timer file descriptor." msgstr "" -#: ../../library/os.rst:4185 -msgid "" -"The timer's behaviour can be modified by specifying a *flags* value. Any of " -"the following variables may be used, combined using bitwise OR (the ``|`` " -"operator):" +msgid "The timer's behaviour can be modified by specifying a *flags* value. Any of the following variables may be used, combined using bitwise OR (the ``|`` operator):" msgstr "" -#: ../../library/os.rst:4189 msgid ":const:`TFD_TIMER_ABSTIME`" msgstr "" -#: ../../library/os.rst:4190 msgid ":const:`TFD_TIMER_CANCEL_ON_SET`" msgstr "" -#: ../../library/os.rst:4192 -msgid "" -"The timer is disabled by setting *initial* to zero (``0``). If *initial* is " -"equal to or greater than zero, the timer is enabled. If *initial* is less " -"than zero, it raises an :class:`OSError` exception with ``errno`` set " -"to :const:`errno.EINVAL`" +msgid "The timer is disabled by setting *initial* to zero (``0``). If *initial* is equal to or greater than zero, the timer is enabled. If *initial* is less than zero, it raises an :class:`OSError` exception with ``errno`` set to :const:`errno.EINVAL`" msgstr "" -#: ../../library/os.rst:4197 -msgid "" -"By default the timer will fire when *initial* seconds have elapsed. (If " -"*initial* is zero, timer will fire immediately.)" +msgid "By default the timer will fire when *initial* seconds have elapsed. (If *initial* is zero, timer will fire immediately.)" msgstr "" -#: ../../library/os.rst:4200 -msgid "" -"However, if the :const:`TFD_TIMER_ABSTIME` flag is set, the timer will fire " -"when the timer's clock (set by *clockid* in :func:`timerfd_create`) reaches " -"*initial* seconds." +msgid "However, if the :const:`TFD_TIMER_ABSTIME` flag is set, the timer will fire when the timer's clock (set by *clockid* in :func:`timerfd_create`) reaches *initial* seconds." msgstr "" -#: ../../library/os.rst:4204 -msgid "" -"The timer's interval is set by the *interval* :py:class:`float`. If " -"*interval* is zero, the timer only fires once, on the initial expiration. If " -"*interval* is greater than zero, the timer fires every time *interval* " -"seconds have elapsed since the previous expiration. If *interval* is less " -"than zero, it raises :class:`OSError` with ``errno`` set " -"to :const:`errno.EINVAL`" +msgid "The timer's interval is set by the *interval* :py:class:`float`. If *interval* is zero, the timer only fires once, on the initial expiration. If *interval* is greater than zero, the timer fires every time *interval* seconds have elapsed since the previous expiration. If *interval* is less than zero, it raises :class:`OSError` with ``errno`` set to :const:`errno.EINVAL`" msgstr "" -#: ../../library/os.rst:4211 -msgid "" -"If the :const:`TFD_TIMER_CANCEL_ON_SET` flag is set along " -"with :const:`TFD_TIMER_ABSTIME` and the clock for this timer " -"is :const:`time.CLOCK_REALTIME`, the timer is marked as cancelable if the " -"real-time clock is changed discontinuously. Reading the descriptor is " -"aborted with the error ECANCELED." +msgid "If the :const:`TFD_TIMER_CANCEL_ON_SET` flag is set along with :const:`TFD_TIMER_ABSTIME` and the clock for this timer is :const:`time.CLOCK_REALTIME`, the timer is marked as cancelable if the real-time clock is changed discontinuously. Reading the descriptor is aborted with the error ECANCELED." msgstr "" -#: ../../library/os.rst:4217 -msgid "" -"Linux manages system clock as UTC. A daylight-savings time transition is " -"done by changing time offset only and doesn't cause discontinuous system " -"clock change." +msgid "Linux manages system clock as UTC. A daylight-savings time transition is done by changing time offset only and doesn't cause discontinuous system clock change." msgstr "" -#: ../../library/os.rst:4221 -msgid "" -"Discontinuous system clock change will be caused by the following events:" +msgid "Discontinuous system clock change will be caused by the following events:" msgstr "" -#: ../../library/os.rst:4223 msgid "``settimeofday``" msgstr "" -#: ../../library/os.rst:4224 msgid "``clock_settime``" msgstr "" -#: ../../library/os.rst:4225 msgid "set the system date and time by ``date`` command" msgstr "" -#: ../../library/os.rst:4227 -msgid "" -"Return a two-item tuple of (``next_expiration``, ``interval``) from the " -"previous timer state, before this function executed." +msgid "Return a two-item tuple of (``next_expiration``, ``interval``) from the previous timer state, before this function executed." msgstr "" -#: ../../library/os.rst:4232 -msgid "" -":manpage:`timerfd_create(2)`, :manpage:`timerfd_settime(2)`, :manpage:`settimeofday(2)`, :manpage:`clock_settime(2)`, " -"and :manpage:`date(1)`." +msgid ":manpage:`timerfd_create(2)`, :manpage:`timerfd_settime(2)`, :manpage:`settimeofday(2)`, :manpage:`clock_settime(2)`, and :manpage:`date(1)`." msgstr "" -#: ../../library/os.rst:4243 -msgid "" -"Similar to :func:`timerfd_settime`, but use time as nanoseconds. This " -"function operates the same interval timer as :func:`timerfd_settime`." +msgid "Similar to :func:`timerfd_settime`, but use time as nanoseconds. This function operates the same interval timer as :func:`timerfd_settime`." msgstr "" -#: ../../library/os.rst:4253 msgid "Return a two-item tuple of floats (``next_expiration``, ``interval``)." msgstr "" -#: ../../library/os.rst:4255 -msgid "" -"``next_expiration`` denotes the relative time until the timer next fires, " -"regardless of if the :const:`TFD_TIMER_ABSTIME` flag is set." +msgid "``next_expiration`` denotes the relative time until the timer next fires, regardless of if the :const:`TFD_TIMER_ABSTIME` flag is set." msgstr "" -#: ../../library/os.rst:4258 -msgid "" -"``interval`` denotes the timer's interval. If zero, the timer will only fire " -"once, after ``next_expiration`` seconds have elapsed." +msgid "``interval`` denotes the timer's interval. If zero, the timer will only fire once, after ``next_expiration`` seconds have elapsed." msgstr "" -#: ../../library/os.rst:4262 msgid ":manpage:`timerfd_gettime(2)`" msgstr "" -#: ../../library/os.rst:4271 msgid "Similar to :func:`timerfd_gettime`, but return time as nanoseconds." msgstr "" -#: ../../library/os.rst:4279 -msgid "" -"A flag for the :func:`timerfd_create` function, which sets " -"the :const:`O_NONBLOCK` status flag for the new timer file descriptor. " -"If :const:`TFD_NONBLOCK` is not set as a flag, :func:`read` blocks." +msgid "A flag for the :func:`timerfd_create` function, which sets the :const:`O_NONBLOCK` status flag for the new timer file descriptor. If :const:`TFD_NONBLOCK` is not set as a flag, :func:`read` blocks." msgstr "" -#: ../../library/os.rst:4289 -msgid "" -"A flag for the :func:`timerfd_create` function, If :const:`TFD_CLOEXEC` is " -"set as a flag, set close-on-exec flag for new file descriptor." +msgid "A flag for the :func:`timerfd_create` function, If :const:`TFD_CLOEXEC` is set as a flag, set close-on-exec flag for new file descriptor." msgstr "" -#: ../../library/os.rst:4299 -msgid "" -"A flag for the :func:`timerfd_settime` and :func:`timerfd_settime_ns` " -"functions. If this flag is set, *initial* is interpreted as an absolute " -"value on the timer's clock (in UTC seconds or nanoseconds since the Unix " -"Epoch)." +msgid "A flag for the :func:`timerfd_settime` and :func:`timerfd_settime_ns` functions. If this flag is set, *initial* is interpreted as an absolute value on the timer's clock (in UTC seconds or nanoseconds since the Unix Epoch)." msgstr "" -#: ../../library/os.rst:4309 -msgid "" -"A flag for the :func:`timerfd_settime` and :func:`timerfd_settime_ns` " -"functions along with :const:`TFD_TIMER_ABSTIME`. The timer is cancelled when " -"the time of the underlying clock changes discontinuously." +msgid "A flag for the :func:`timerfd_settime` and :func:`timerfd_settime_ns` functions along with :const:`TFD_TIMER_ABSTIME`. The timer is cancelled when the time of the underlying clock changes discontinuously." msgstr "" -#: ../../library/os.rst:4320 msgid "Linux extended attributes" msgstr "" -#: ../../library/os.rst:4324 msgid "These functions are all available on Linux only." msgstr "" -#: ../../library/os.rst:4328 -msgid "" -"Return the value of the extended filesystem attribute *attribute* for " -"*path*. *attribute* can be bytes or str (directly or indirectly through " -"the :class:`PathLike` interface). If it is str, it is encoded with the " -"filesystem encoding." +msgid "Return the value of the extended filesystem attribute *attribute* for *path*. *attribute* can be bytes or str (directly or indirectly through the :class:`PathLike` interface). If it is str, it is encoded with the filesystem encoding." msgstr "" -#: ../../library/os.rst:4336 -msgid "" -"Raises an :ref:`auditing event ` ``os.getxattr`` with arguments " -"``path``, ``attribute``." +msgid "Raises an :ref:`auditing event ` ``os.getxattr`` with arguments ``path``, ``attribute``." msgstr "" -#: ../../library/os.rst:4338 ../../library/os.rst:4370 -#: ../../library/os.rst:4395 msgid "Accepts a :term:`path-like object` for *path* and *attribute*." msgstr "" -#: ../../library/os.rst:4344 -msgid "" -"Return a list of the extended filesystem attributes on *path*. The " -"attributes in the list are represented as strings decoded with the " -"filesystem encoding. If *path* is ``None``, :func:`listxattr` will examine " -"the current directory." +msgid "Return a list of the extended filesystem attributes on *path*. The attributes in the list are represented as strings decoded with the filesystem encoding. If *path* is ``None``, :func:`listxattr` will examine the current directory." msgstr "" -#: ../../library/os.rst:4352 -msgid "" -"Raises an :ref:`auditing event ` ``os.listxattr`` with argument " -"``path``." +msgid "Raises an :ref:`auditing event ` ``os.listxattr`` with argument ``path``." msgstr "" -#: ../../library/os.rst:4360 -msgid "" -"Removes the extended filesystem attribute *attribute* from *path*. " -"*attribute* should be bytes or str (directly or indirectly through " -"the :class:`PathLike` interface). If it is a string, it is encoded with " -"the :term:`filesystem encoding and error handler`." +msgid "Removes the extended filesystem attribute *attribute* from *path*. *attribute* should be bytes or str (directly or indirectly through the :class:`PathLike` interface). If it is a string, it is encoded with the :term:`filesystem encoding and error handler`." msgstr "" -#: ../../library/os.rst:4368 -msgid "" -"Raises an :ref:`auditing event ` ``os.removexattr`` with arguments " -"``path``, ``attribute``." +msgid "Raises an :ref:`auditing event ` ``os.removexattr`` with arguments ``path``, ``attribute``." msgstr "" -#: ../../library/os.rst:4376 -msgid "" -"Set the extended filesystem attribute *attribute* on *path* to *value*. " -"*attribute* must be a bytes or str with no embedded NULs (directly or " -"indirectly through the :class:`PathLike` interface). If it is a str, it is " -"encoded with the :term:`filesystem encoding and error handler`. *flags* may " -"be :data:`XATTR_REPLACE` or :data:`XATTR_CREATE`. If :data:`XATTR_REPLACE` " -"is given and the attribute does not exist, ``ENODATA`` will be raised. " -"If :data:`XATTR_CREATE` is given and the attribute already exists, the " -"attribute will not be created and ``EEXISTS`` will be raised." +msgid "Set the extended filesystem attribute *attribute* on *path* to *value*. *attribute* must be a bytes or str with no embedded NULs (directly or indirectly through the :class:`PathLike` interface). If it is a str, it is encoded with the :term:`filesystem encoding and error handler`. *flags* may be :data:`XATTR_REPLACE` or :data:`XATTR_CREATE`. If :data:`XATTR_REPLACE` is given and the attribute does not exist, ``ENODATA`` will be raised. If :data:`XATTR_CREATE` is given and the attribute already exists, the attribute will not be created and ``EEXISTS`` will be raised." msgstr "" -#: ../../library/os.rst:4390 -msgid "" -"A bug in Linux kernel versions less than 2.6.39 caused the flags argument to " -"be ignored on some filesystems." +msgid "A bug in Linux kernel versions less than 2.6.39 caused the flags argument to be ignored on some filesystems." msgstr "" -#: ../../library/os.rst:4393 -msgid "" -"Raises an :ref:`auditing event ` ``os.setxattr`` with arguments " -"``path``, ``attribute``, ``value``, ``flags``." +msgid "Raises an :ref:`auditing event ` ``os.setxattr`` with arguments ``path``, ``attribute``, ``value``, ``flags``." msgstr "" -#: ../../library/os.rst:4401 -msgid "" -"The maximum size the value of an extended attribute can be. Currently, this " -"is 64 KiB on Linux." +msgid "The maximum size the value of an extended attribute can be. Currently, this is 64 KiB on Linux." msgstr "" -#: ../../library/os.rst:4407 -msgid "" -"This is a possible value for the flags argument in :func:`setxattr`. It " -"indicates the operation must create an attribute." +msgid "This is a possible value for the flags argument in :func:`setxattr`. It indicates the operation must create an attribute." msgstr "" -#: ../../library/os.rst:4413 -msgid "" -"This is a possible value for the flags argument in :func:`setxattr`. It " -"indicates the operation must replace an existing attribute." +msgid "This is a possible value for the flags argument in :func:`setxattr`. It indicates the operation must replace an existing attribute." msgstr "" -#: ../../library/os.rst:4420 msgid "Process Management" msgstr "" -#: ../../library/os.rst:4422 msgid "These functions may be used to create and manage processes." msgstr "" -#: ../../library/os.rst:4424 -msgid "" -"The various :func:`exec\\* ` functions take a list of arguments for " -"the new program loaded into the process. In each case, the first of these " -"arguments is passed to the new program as its own name rather than as an " -"argument a user may have typed on a command line. For the C programmer, " -"this is the ``argv[0]`` passed to a program's :c:func:`main`. For example, " -"``os.execv('/bin/echo', ['foo', 'bar'])`` will only print ``bar`` on " -"standard output; ``foo`` will seem to be ignored." +msgid "The various :func:`exec\\* ` functions take a list of arguments for the new program loaded into the process. In each case, the first of these arguments is passed to the new program as its own name rather than as an argument a user may have typed on a command line. For the C programmer, this is the ``argv[0]`` passed to a program's :c:func:`main`. For example, ``os.execv('/bin/echo', ['foo', 'bar'])`` will only print ``bar`` on standard output; ``foo`` will seem to be ignored." msgstr "" -#: ../../library/os.rst:4435 -msgid "" -"Generate a :const:`SIGABRT` signal to the current process. On Unix, the " -"default behavior is to produce a core dump; on Windows, the process " -"immediately returns an exit code of ``3``. Be aware that calling this " -"function will not call the Python signal handler registered " -"for :const:`SIGABRT` with :func:`signal.signal`." +msgid "Generate a :const:`SIGABRT` signal to the current process. On Unix, the default behavior is to produce a core dump; on Windows, the process immediately returns an exit code of ``3``. Be aware that calling this function will not call the Python signal handler registered for :const:`SIGABRT` with :func:`signal.signal`." msgstr "" -#: ../../library/os.rst:4444 msgid "Add a path to the DLL search path." msgstr "" -#: ../../library/os.rst:4446 -msgid "" -"This search path is used when resolving dependencies for imported extension " -"modules (the module itself is resolved through :data:`sys.path`), and also " -"by :mod:`ctypes`." +msgid "This search path is used when resolving dependencies for imported extension modules (the module itself is resolved through :data:`sys.path`), and also by :mod:`ctypes`." msgstr "" -#: ../../library/os.rst:4450 -msgid "" -"Remove the directory by calling **close()** on the returned object or using " -"it in a :keyword:`with` statement." +msgid "Remove the directory by calling **close()** on the returned object or using it in a :keyword:`with` statement." msgstr "" -#: ../../library/os.rst:4453 -msgid "" -"See the `Microsoft documentation `_ for more information about how DLLs " -"are loaded." +msgid "See the `Microsoft documentation `_ for more information about how DLLs are loaded." msgstr "" -#: ../../library/os.rst:4457 -msgid "" -"Raises an :ref:`auditing event ` ``os.add_dll_directory`` with " -"argument ``path``." +msgid "Raises an :ref:`auditing event ` ``os.add_dll_directory`` with argument ``path``." msgstr "" -#: ../../library/os.rst:4461 -msgid "" -"Previous versions of CPython would resolve DLLs using the default behavior " -"for the current process. This led to inconsistencies, such as only sometimes " -"searching :envvar:`PATH` or the current working directory, and OS functions " -"such as ``AddDllDirectory`` having no effect." +msgid "Previous versions of CPython would resolve DLLs using the default behavior for the current process. This led to inconsistencies, such as only sometimes searching :envvar:`PATH` or the current working directory, and OS functions such as ``AddDllDirectory`` having no effect." msgstr "" -#: ../../library/os.rst:4468 -msgid "" -"In 3.8, the two primary ways DLLs are loaded now explicitly override the " -"process-wide behavior to ensure consistency. See the :ref:`porting notes " -"` for information on updating libraries." +msgid "In 3.8, the two primary ways DLLs are loaded now explicitly override the process-wide behavior to ensure consistency. See the :ref:`porting notes ` for information on updating libraries." msgstr "" -#: ../../library/os.rst:4483 -msgid "" -"These functions all execute a new program, replacing the current process; " -"they do not return. On Unix, the new executable is loaded into the current " -"process, and will have the same process id as the caller. Errors will be " -"reported as :exc:`OSError` exceptions." +msgid "These functions all execute a new program, replacing the current process; they do not return. On Unix, the new executable is loaded into the current process, and will have the same process id as the caller. Errors will be reported as :exc:`OSError` exceptions." msgstr "" -#: ../../library/os.rst:4488 -msgid "" -"The current process is replaced immediately. Open file objects and " -"descriptors are not flushed, so if there may be data buffered on these open " -"files, you should flush them using :func:`~io.IOBase.flush` " -"or :func:`os.fsync` before calling an :func:`exec\\* ` function." +msgid "The current process is replaced immediately. Open file objects and descriptors are not flushed, so if there may be data buffered on these open files, you should flush them using :func:`~io.IOBase.flush` or :func:`os.fsync` before calling an :func:`exec\\* ` function." msgstr "" -#: ../../library/os.rst:4494 -msgid "" -"The \"l\" and \"v\" variants of the :func:`exec\\* ` functions differ " -"in how command-line arguments are passed. The \"l\" variants are perhaps " -"the easiest to work with if the number of parameters is fixed when the code " -"is written; the individual parameters simply become additional parameters to " -"the :func:`!execl\\*` functions. The \"v\" variants are good when the " -"number of parameters is variable, with the arguments being passed in a list " -"or tuple as the *args* parameter. In either case, the arguments to the " -"child process should start with the name of the command being run, but this " -"is not enforced." -msgstr "" - -#: ../../library/os.rst:4503 -msgid "" -"The variants which include a \"p\" near the end " -"(:func:`execlp`, :func:`execlpe`, :func:`execvp`, and :func:`execvpe`) will " -"use the :envvar:`PATH` environment variable to locate the program *file*. " -"When the environment is being replaced (using one of the :func:`exec\\*e " -"` variants, discussed in the next paragraph), the new environment is " -"used as the source of the :envvar:`PATH` variable. The other " -"variants, :func:`execl`, :func:`execle`, :func:`execv`, and :func:`execve`, " -"will not use the :envvar:`PATH` variable to locate the executable; *path* " -"must contain an appropriate absolute or relative path. Relative paths must " -"include at least one slash, even on Windows, as plain names will not be " -"resolved." -msgstr "" - -#: ../../library/os.rst:4514 -msgid "" -"For :func:`execle`, :func:`execlpe`, :func:`execve`, and :func:`execvpe` " -"(note that these all end in \"e\"), the *env* parameter must be a mapping " -"which is used to define the environment variables for the new process (these " -"are used instead of the current process' environment); the " -"functions :func:`execl`, :func:`execlp`, :func:`execv`, and :func:`execvp` " -"all cause the new process to inherit the environment of the current process." +msgid "The \"l\" and \"v\" variants of the :func:`exec\\* ` functions differ in how command-line arguments are passed. The \"l\" variants are perhaps the easiest to work with if the number of parameters is fixed when the code is written; the individual parameters simply become additional parameters to the :func:`!execl\\*` functions. The \"v\" variants are good when the number of parameters is variable, with the arguments being passed in a list or tuple as the *args* parameter. In either case, the arguments to the child process should start with the name of the command being run, but this is not enforced." msgstr "" -#: ../../library/os.rst:4521 -msgid "" -"For :func:`execve` on some platforms, *path* may also be specified as an " -"open file descriptor. This functionality may not be supported on your " -"platform; you can check whether or not it is available " -"using :data:`os.supports_fd`. If it is unavailable, using it will raise " -"a :exc:`NotImplementedError`." +msgid "The variants which include a \"p\" near the end (:func:`execlp`, :func:`execlpe`, :func:`execvp`, and :func:`execvpe`) will use the :envvar:`PATH` environment variable to locate the program *file*. When the environment is being replaced (using one of the :func:`exec\\*e ` variants, discussed in the next paragraph), the new environment is used as the source of the :envvar:`PATH` variable. The other variants, :func:`execl`, :func:`execle`, :func:`execv`, and :func:`execve`, will not use the :envvar:`PATH` variable to locate the executable; *path* must contain an appropriate absolute or relative path. Relative paths must include at least one slash, even on Windows, as plain names will not be resolved." msgstr "" -#: ../../library/os.rst:4526 -msgid "" -"Raises an :ref:`auditing event ` ``os.exec`` with arguments " -"``path``, ``args``, ``env``." +msgid "For :func:`execle`, :func:`execlpe`, :func:`execve`, and :func:`execvpe` (note that these all end in \"e\"), the *env* parameter must be a mapping which is used to define the environment variables for the new process (these are used instead of the current process' environment); the functions :func:`execl`, :func:`execlp`, :func:`execv`, and :func:`execvp` all cause the new process to inherit the environment of the current process." msgstr "" -#: ../../library/os.rst:4530 -msgid "" -"Added support for specifying *path* as an open file descriptor " -"for :func:`execve`." +msgid "For :func:`execve` on some platforms, *path* may also be specified as an open file descriptor. This functionality may not be supported on your platform; you can check whether or not it is available using :data:`os.supports_fd`. If it is unavailable, using it will raise a :exc:`NotImplementedError`." msgstr "" -#: ../../library/os.rst:4539 -msgid "" -"Exit the process with status *n*, without calling cleanup handlers, flushing " -"stdio buffers, etc." +msgid "Raises an :ref:`auditing event ` ``os.exec`` with arguments ``path``, ``args``, ``env``." msgstr "" -#: ../../library/os.rst:4544 -msgid "" -"The standard way to exit is :func:`sys.exit(n) `. :func:`!_exit` " -"should normally only be used in the child process after a :func:`fork`." +msgid "Added support for specifying *path* as an open file descriptor for :func:`execve`." msgstr "" -#: ../../library/os.rst:4547 -msgid "" -"The following exit codes are defined and can be used with :func:`_exit`, " -"although they are not required. These are typically used for system " -"programs written in Python, such as a mail server's external command " -"delivery program." +msgid "Exit the process with status *n*, without calling cleanup handlers, flushing stdio buffers, etc." msgstr "" -#: ../../library/os.rst:4553 -msgid "" -"Some of these may not be available on all Unix platforms, since there is " -"some variation. These constants are defined where they are defined by the " -"underlying platform." +msgid "The standard way to exit is :func:`sys.exit(n) `. :func:`!_exit` should normally only be used in the child process after a :func:`fork`." msgstr "" -#: ../../library/os.rst:4560 -msgid "" -"Exit code that means no error occurred. May be taken from the defined value " -"of ``EXIT_SUCCESS`` on some platforms. Generally has a value of zero." +msgid "The following exit codes are defined and can be used with :func:`_exit`, although they are not required. These are typically used for system programs written in Python, such as a mail server's external command delivery program." msgstr "" -#: ../../library/os.rst:4568 -msgid "" -"Exit code that means the command was used incorrectly, such as when the " -"wrong number of arguments are given." +msgid "Some of these may not be available on all Unix platforms, since there is some variation. These constants are defined where they are defined by the underlying platform." +msgstr "" + +msgid "Exit code that means no error occurred. May be taken from the defined value of ``EXIT_SUCCESS`` on some platforms. Generally has a value of zero." +msgstr "" + +msgid "Exit code that means the command was used incorrectly, such as when the wrong number of arguments are given." msgstr "" -#: ../../library/os.rst:4576 msgid "Exit code that means the input data was incorrect." msgstr "" -#: ../../library/os.rst:4583 msgid "Exit code that means an input file did not exist or was not readable." msgstr "" -#: ../../library/os.rst:4590 msgid "Exit code that means a specified user did not exist." msgstr "" -#: ../../library/os.rst:4597 msgid "Exit code that means a specified host did not exist." msgstr "" -#: ../../library/os.rst:4604 msgid "Exit code that means that a required service is unavailable." msgstr "" -#: ../../library/os.rst:4611 msgid "Exit code that means an internal software error was detected." msgstr "" -#: ../../library/os.rst:4618 -msgid "" -"Exit code that means an operating system error was detected, such as the " -"inability to fork or create a pipe." +msgid "Exit code that means an operating system error was detected, such as the inability to fork or create a pipe." msgstr "" -#: ../../library/os.rst:4626 -msgid "" -"Exit code that means some system file did not exist, could not be opened, or " -"had some other kind of error." +msgid "Exit code that means some system file did not exist, could not be opened, or had some other kind of error." msgstr "" -#: ../../library/os.rst:4634 msgid "Exit code that means a user specified output file could not be created." msgstr "" -#: ../../library/os.rst:4641 -msgid "" -"Exit code that means that an error occurred while doing I/O on some file." +msgid "Exit code that means that an error occurred while doing I/O on some file." msgstr "" -#: ../../library/os.rst:4648 -msgid "" -"Exit code that means a temporary failure occurred. This indicates something " -"that may not really be an error, such as a network connection that couldn't " -"be made during a retryable operation." +msgid "Exit code that means a temporary failure occurred. This indicates something that may not really be an error, such as a network connection that couldn't be made during a retryable operation." msgstr "" -#: ../../library/os.rst:4657 -msgid "" -"Exit code that means that a protocol exchange was illegal, invalid, or not " -"understood." +msgid "Exit code that means that a protocol exchange was illegal, invalid, or not understood." msgstr "" -#: ../../library/os.rst:4665 -msgid "" -"Exit code that means that there were insufficient permissions to perform the " -"operation (but not intended for file system problems)." +msgid "Exit code that means that there were insufficient permissions to perform the operation (but not intended for file system problems)." msgstr "" -#: ../../library/os.rst:4673 msgid "Exit code that means that some kind of configuration error occurred." msgstr "" -#: ../../library/os.rst:4680 msgid "Exit code that means something like \"an entry was not found\"." msgstr "" -#: ../../library/os.rst:4687 -msgid "" -"Fork a child process. Return ``0`` in the child and the child's process id " -"in the parent. If an error occurs :exc:`OSError` is raised." +msgid "Fork a child process. Return ``0`` in the child and the child's process id in the parent. If an error occurs :exc:`OSError` is raised." msgstr "" -#: ../../library/os.rst:4690 -msgid "" -"Note that some platforms including FreeBSD <= 6.3 and Cygwin have known " -"issues when using ``fork()`` from a thread." +msgid "Note that some platforms including FreeBSD <= 6.3 and Cygwin have known issues when using ``fork()`` from a thread." msgstr "" -#: ../../library/os.rst:4693 -msgid "" -"Raises an :ref:`auditing event ` ``os.fork`` with no arguments." +msgid "Raises an :ref:`auditing event ` ``os.fork`` with no arguments." msgstr "" -#: ../../library/os.rst:4697 -msgid "" -"If you use TLS sockets in an application calling ``fork()``, see the warning " -"in the :mod:`ssl` documentation." +msgid "If you use TLS sockets in an application calling ``fork()``, see the warning in the :mod:`ssl` documentation." msgstr "" -#: ../../library/os.rst:4702 ../../library/os.rst:4746 -msgid "" -"On macOS the use of this function is unsafe when mixed with using higher-" -"level system APIs, and that includes using :mod:`urllib.request`." +msgid "On macOS the use of this function is unsafe when mixed with using higher-level system APIs, and that includes using :mod:`urllib.request`." msgstr "" -#: ../../library/os.rst:4705 -msgid "" -"Calling ``fork()`` in a subinterpreter is no longer supported " -"(:exc:`RuntimeError` is raised)." +msgid "Calling ``fork()`` in a subinterpreter is no longer supported (:exc:`RuntimeError` is raised)." msgstr "" -#: ../../library/os.rst:4709 -msgid "" -"If Python is able to detect that your process has multiple " -"threads, :func:`os.fork` now raises a :exc:`DeprecationWarning`." +msgid "If Python is able to detect that your process has multiple threads, :func:`os.fork` now raises a :exc:`DeprecationWarning`." msgstr "" -#: ../../library/os.rst:4713 -msgid "" -"We chose to surface this as a warning, when detectable, to better inform " -"developers of a design problem that the POSIX platform specifically notes as " -"not supported. Even in code that *appears* to work, it has never been safe " -"to mix threading with :func:`os.fork` on POSIX platforms. The CPython " -"runtime itself has always made API calls that are not safe for use in the " -"child process when threads existed in the parent (such as ``malloc`` and " -"``free``)." +msgid "We chose to surface this as a warning, when detectable, to better inform developers of a design problem that the POSIX platform specifically notes as not supported. Even in code that *appears* to work, it has never been safe to mix threading with :func:`os.fork` on POSIX platforms. The CPython runtime itself has always made API calls that are not safe for use in the child process when threads existed in the parent (such as ``malloc`` and ``free``)." msgstr "" -#: ../../library/os.rst:4722 -msgid "" -"Users of macOS or users of libc or malloc implementations other than those " -"typically found in glibc to date are among those already more likely to " -"experience deadlocks running such code." +msgid "Users of macOS or users of libc or malloc implementations other than those typically found in glibc to date are among those already more likely to experience deadlocks running such code." msgstr "" -#: ../../library/os.rst:4726 -msgid "" -"See `this discussion on fork being incompatible with threads `_ for technical details of why we're surfacing " -"this longstanding platform compatibility problem to developers." +msgid "See `this discussion on fork being incompatible with threads `_ for technical details of why we're surfacing this longstanding platform compatibility problem to developers." msgstr "" -#: ../../library/os.rst:4736 -msgid "" -"Fork a child process, using a new pseudo-terminal as the child's controlling " -"terminal. Return a pair of ``(pid, fd)``, where *pid* is ``0`` in the child, " -"the new child's process id in the parent, and *fd* is the file descriptor of " -"the master end of the pseudo-terminal. For a more portable approach, use " -"the :mod:`pty` module. If an error occurs :exc:`OSError` is raised." +msgid "Fork a child process, using a new pseudo-terminal as the child's controlling terminal. Return a pair of ``(pid, fd)``, where *pid* is ``0`` in the child, the new child's process id in the parent, and *fd* is the file descriptor of the master end of the pseudo-terminal. For a more portable approach, use the :mod:`pty` module. If an error occurs :exc:`OSError` is raised." msgstr "" -#: ../../library/os.rst:4742 -msgid "" -"Raises an :ref:`auditing event ` ``os.forkpty`` with no arguments." +msgid "Raises an :ref:`auditing event ` ``os.forkpty`` with no arguments." msgstr "" -#: ../../library/os.rst:4749 -msgid "" -"Calling ``forkpty()`` in a subinterpreter is no longer supported " -"(:exc:`RuntimeError` is raised)." +msgid "Calling ``forkpty()`` in a subinterpreter is no longer supported (:exc:`RuntimeError` is raised)." msgstr "" -#: ../../library/os.rst:4753 -msgid "" -"If Python is able to detect that your process has multiple threads, this now " -"raises a :exc:`DeprecationWarning`. See the longer explanation " -"on :func:`os.fork`." +msgid "If Python is able to detect that your process has multiple threads, this now raises a :exc:`DeprecationWarning`. See the longer explanation on :func:`os.fork`." msgstr "" -#: ../../library/os.rst:4767 -msgid "" -"Send signal *sig* to the process *pid*. Constants for the specific signals " -"available on the host platform are defined in the :mod:`signal` module." +msgid "Send signal *sig* to the process *pid*. Constants for the specific signals available on the host platform are defined in the :mod:`signal` module." msgstr "" -#: ../../library/os.rst:4770 -msgid "" -"Windows: The :const:`signal.CTRL_C_EVENT` " -"and :const:`signal.CTRL_BREAK_EVENT` signals are special signals which can " -"only be sent to console processes which share a common console window, e.g., " -"some subprocesses. Any other value for *sig* will cause the process to be " -"unconditionally killed by the TerminateProcess API, and the exit code will " -"be set to *sig*." +msgid "Windows: The :const:`signal.CTRL_C_EVENT` and :const:`signal.CTRL_BREAK_EVENT` signals are special signals which can only be sent to console processes which share a common console window, e.g., some subprocesses. Any other value for *sig* will cause the process to be unconditionally killed by the TerminateProcess API, and the exit code will be set to *sig*." msgstr "" -#: ../../library/os.rst:4777 msgid "See also :func:`signal.pthread_kill`." msgstr "" -#: ../../library/os.rst:4779 -msgid "" -"Raises an :ref:`auditing event ` ``os.kill`` with arguments " -"``pid``, ``sig``." +msgid "Raises an :ref:`auditing event ` ``os.kill`` with arguments ``pid``, ``sig``." msgstr "" -#: ../../library/os.rst:4793 msgid "Send the signal *sig* to the process group *pgid*." msgstr "" -#: ../../library/os.rst:4795 -msgid "" -"Raises an :ref:`auditing event ` ``os.killpg`` with arguments " -"``pgid``, ``sig``." +msgid "Raises an :ref:`auditing event ` ``os.killpg`` with arguments ``pgid``, ``sig``." msgstr "" -#: ../../library/os.rst:4802 -msgid "" -"Add *increment* to the process's \"niceness\". Return the new niceness." +msgid "Add *increment* to the process's \"niceness\". Return the new niceness." msgstr "" -#: ../../library/os.rst:4809 -msgid "" -"Return a file descriptor referring to the process *pid* with *flags* set. " -"This descriptor can be used to perform process management without races and " -"signals." +msgid "Return a file descriptor referring to the process *pid* with *flags* set. This descriptor can be used to perform process management without races and signals." msgstr "" -#: ../../library/os.rst:4813 msgid "See the :manpage:`pidfd_open(2)` man page for more details." msgstr "" -#: ../../library/os.rst:4820 -msgid "" -"This flag indicates that the file descriptor will be non-blocking. If the " -"process referred to by the file descriptor has not yet terminated, then an " -"attempt to wait on the file descriptor using :manpage:`waitid(2)` will " -"immediately return the error :const:`~errno.EAGAIN` rather than blocking." +msgid "This flag indicates that the file descriptor will be non-blocking. If the process referred to by the file descriptor has not yet terminated, then an attempt to wait on the file descriptor using :manpage:`waitid(2)` will immediately return the error :const:`~errno.EAGAIN` rather than blocking." msgstr "" -#: ../../library/os.rst:4831 -msgid "" -"Lock program segments into memory. The value of *op* (defined in ````) determines which segments are locked." +msgid "Lock program segments into memory. The value of *op* (defined in ````) determines which segments are locked." msgstr "" -#: ../../library/os.rst:4839 -msgid "" -"Open a pipe to or from command *cmd*. The return value is an open file " -"object connected to the pipe, which can be read or written depending on " -"whether *mode* is ``'r'`` (default) or ``'w'``. The *buffering* argument " -"have the same meaning as the corresponding argument to the built-" -"in :func:`open` function. The returned file object reads or writes text " -"strings rather than bytes." +msgid "Open a pipe to or from command *cmd*. The return value is an open file object connected to the pipe, which can be read or written depending on whether *mode* is ``'r'`` (default) or ``'w'``. The *buffering* argument have the same meaning as the corresponding argument to the built-in :func:`open` function. The returned file object reads or writes text strings rather than bytes." msgstr "" -#: ../../library/os.rst:4847 -msgid "" -"The ``close`` method returns :const:`None` if the subprocess exited " -"successfully, or the subprocess's return code if there was an error. On " -"POSIX systems, if the return code is positive it represents the return value " -"of the process left-shifted by one byte. If the return code is negative, " -"the process was terminated by the signal given by the negated value of the " -"return code. (For example, the return value might be ``- signal.SIGKILL`` " -"if the subprocess was killed.) On Windows systems, the return value " -"contains the signed integer return code from the child process." +msgid "The ``close`` method returns :const:`None` if the subprocess exited successfully, or the subprocess's return code if there was an error. On POSIX systems, if the return code is positive it represents the return value of the process left-shifted by one byte. If the return code is negative, the process was terminated by the signal given by the negated value of the return code. (For example, the return value might be ``- signal.SIGKILL`` if the subprocess was killed.) On Windows systems, the return value contains the signed integer return code from the child process." msgstr "" -#: ../../library/os.rst:4857 -msgid "" -"On Unix, :func:`waitstatus_to_exitcode` can be used to convert the ``close`` " -"method result (exit status) into an exit code if it is not ``None``. On " -"Windows, the ``close`` method result is directly the exit code (or ``None``)." +msgid "On Unix, :func:`waitstatus_to_exitcode` can be used to convert the ``close`` method result (exit status) into an exit code if it is not ``None``. On Windows, the ``close`` method result is directly the exit code (or ``None``)." msgstr "" -#: ../../library/os.rst:4862 -msgid "" -"This is implemented using :class:`subprocess.Popen`; see that class's " -"documentation for more powerful ways to manage and communicate with " -"subprocesses." +msgid "This is implemented using :class:`subprocess.Popen`; see that class's documentation for more powerful ways to manage and communicate with subprocesses." msgstr "" -#: ../../library/os.rst:4869 -msgid "" -"The :ref:`Python UTF-8 Mode ` affects encodings used for *cmd* " -"and pipe contents." +msgid "The :ref:`Python UTF-8 Mode ` affects encodings used for *cmd* and pipe contents." msgstr "" -#: ../../library/os.rst:4872 -msgid "" -":func:`popen` is a simple wrapper around :class:`subprocess.Popen`. " -"Use :class:`subprocess.Popen` or :func:`subprocess.run` to control options " -"like encodings." +msgid ":func:`popen` is a simple wrapper around :class:`subprocess.Popen`. Use :class:`subprocess.Popen` or :func:`subprocess.run` to control options like encodings." msgstr "" -#: ../../library/os.rst:4876 ../../library/os.rst:5105 msgid "The :mod:`subprocess` module is recommended instead." msgstr "" -#: ../../library/os.rst:4884 msgid "Wraps the :c:func:`!posix_spawn` C library API for use from Python." msgstr "" -#: ../../library/os.rst:4886 -msgid "" -"Most users should use :func:`subprocess.run` instead of :func:`posix_spawn`." +msgid "Most users should use :func:`subprocess.run` instead of :func:`posix_spawn`." msgstr "" -#: ../../library/os.rst:4888 -msgid "" -"The positional-only arguments *path*, *args*, and *env* are similar " -"to :func:`execve`. *env* is allowed to be ``None``, in which case current " -"process' environment is used." +msgid "The positional-only arguments *path*, *args*, and *env* are similar to :func:`execve`. *env* is allowed to be ``None``, in which case current process' environment is used." msgstr "" -#: ../../library/os.rst:4892 -msgid "" -"The *path* parameter is the path to the executable file. The *path* should " -"contain a directory. Use :func:`posix_spawnp` to pass an executable file " -"without directory." +msgid "The *path* parameter is the path to the executable file. The *path* should contain a directory. Use :func:`posix_spawnp` to pass an executable file without directory." msgstr "" -#: ../../library/os.rst:4896 -msgid "" -"The *file_actions* argument may be a sequence of tuples describing actions " -"to take on specific file descriptors in the child process between the C " -"library implementation's :c:func:`fork` and :c:func:`exec` steps. The first " -"item in each tuple must be one of the three type indicator listed below " -"describing the remaining tuple elements:" +msgid "The *file_actions* argument may be a sequence of tuples describing actions to take on specific file descriptors in the child process between the C library implementation's :c:func:`fork` and :c:func:`exec` steps. The first item in each tuple must be one of the three type indicator listed below describing the remaining tuple elements:" msgstr "" -#: ../../library/os.rst:4904 msgid "(``os.POSIX_SPAWN_OPEN``, *fd*, *path*, *flags*, *mode*)" msgstr "" -#: ../../library/os.rst:4906 msgid "Performs ``os.dup2(os.open(path, flags, mode), fd)``." msgstr "" -#: ../../library/os.rst:4910 msgid "(``os.POSIX_SPAWN_CLOSE``, *fd*)" msgstr "" -#: ../../library/os.rst:4912 msgid "Performs ``os.close(fd)``." msgstr "" -#: ../../library/os.rst:4916 msgid "(``os.POSIX_SPAWN_DUP2``, *fd*, *new_fd*)" msgstr "" -#: ../../library/os.rst:4918 msgid "Performs ``os.dup2(fd, new_fd)``." msgstr "" -#: ../../library/os.rst:4922 msgid "(``os.POSIX_SPAWN_CLOSEFROM``, *fd*)" msgstr "" -#: ../../library/os.rst:4924 msgid "Performs ``os.closerange(fd, INF)``." msgstr "" -#: ../../library/os.rst:4926 -msgid "" -"These tuples correspond to the C library :c:func:`!" -"posix_spawn_file_actions_addopen`, :c:func:`!" -"posix_spawn_file_actions_addclose`, :c:func:`!" -"posix_spawn_file_actions_adddup2`, and :c:func:`!" -"posix_spawn_file_actions_addclosefrom_np` API calls used to prepare for " -"the :c:func:`!posix_spawn` call itself." +msgid "These tuples correspond to the C library :c:func:`!posix_spawn_file_actions_addopen`, :c:func:`!posix_spawn_file_actions_addclose`, :c:func:`!posix_spawn_file_actions_adddup2`, and :c:func:`!posix_spawn_file_actions_addclosefrom_np` API calls used to prepare for the :c:func:`!posix_spawn` call itself." msgstr "" -#: ../../library/os.rst:4933 -msgid "" -"The *setpgroup* argument will set the process group of the child to the " -"value specified. If the value specified is 0, the child's process group ID " -"will be made the same as its process ID. If the value of *setpgroup* is not " -"set, the child will inherit the parent's process group ID. This argument " -"corresponds to the C library :c:macro:`!POSIX_SPAWN_SETPGROUP` flag." +msgid "The *setpgroup* argument will set the process group of the child to the value specified. If the value specified is 0, the child's process group ID will be made the same as its process ID. If the value of *setpgroup* is not set, the child will inherit the parent's process group ID. This argument corresponds to the C library :c:macro:`!POSIX_SPAWN_SETPGROUP` flag." msgstr "" -#: ../../library/os.rst:4939 -msgid "" -"If the *resetids* argument is ``True`` it will reset the effective UID and " -"GID of the child to the real UID and GID of the parent process. If the " -"argument is ``False``, then the child retains the effective UID and GID of " -"the parent. In either case, if the set-user-ID and set-group-ID permission " -"bits are enabled on the executable file, their effect will override the " -"setting of the effective UID and GID. This argument corresponds to the C " -"library :c:macro:`!POSIX_SPAWN_RESETIDS` flag." +msgid "If the *resetids* argument is ``True`` it will reset the effective UID and GID of the child to the real UID and GID of the parent process. If the argument is ``False``, then the child retains the effective UID and GID of the parent. In either case, if the set-user-ID and set-group-ID permission bits are enabled on the executable file, their effect will override the setting of the effective UID and GID. This argument corresponds to the C library :c:macro:`!POSIX_SPAWN_RESETIDS` flag." msgstr "" -#: ../../library/os.rst:4947 -msgid "" -"If the *setsid* argument is ``True``, it will create a new session ID for " -"``posix_spawn``. *setsid* requires :c:macro:`!POSIX_SPAWN_SETSID` " -"or :c:macro:`!POSIX_SPAWN_SETSID_NP` flag. " -"Otherwise, :exc:`NotImplementedError` is raised." +msgid "If the *setsid* argument is ``True``, it will create a new session ID for ``posix_spawn``. *setsid* requires :c:macro:`!POSIX_SPAWN_SETSID` or :c:macro:`!POSIX_SPAWN_SETSID_NP` flag. Otherwise, :exc:`NotImplementedError` is raised." msgstr "" -#: ../../library/os.rst:4952 -msgid "" -"The *setsigmask* argument will set the signal mask to the signal set " -"specified. If the parameter is not used, then the child inherits the " -"parent's signal mask. This argument corresponds to the C library :c:macro:`!" -"POSIX_SPAWN_SETSIGMASK` flag." +msgid "The *setsigmask* argument will set the signal mask to the signal set specified. If the parameter is not used, then the child inherits the parent's signal mask. This argument corresponds to the C library :c:macro:`!POSIX_SPAWN_SETSIGMASK` flag." msgstr "" -#: ../../library/os.rst:4957 -msgid "" -"The *sigdef* argument will reset the disposition of all signals in the set " -"specified. This argument corresponds to the C library :c:macro:`!" -"POSIX_SPAWN_SETSIGDEF` flag." +msgid "The *sigdef* argument will reset the disposition of all signals in the set specified. This argument corresponds to the C library :c:macro:`!POSIX_SPAWN_SETSIGDEF` flag." msgstr "" -#: ../../library/os.rst:4961 -msgid "" -"The *scheduler* argument must be a tuple containing the (optional) scheduler " -"policy and an instance of :class:`sched_param` with the scheduler " -"parameters. A value of ``None`` in the place of the scheduler policy " -"indicates that is not being provided. This argument is a combination of the " -"C library :c:macro:`!POSIX_SPAWN_SETSCHEDPARAM` and :c:macro:`!" -"POSIX_SPAWN_SETSCHEDULER` flags." +msgid "The *scheduler* argument must be a tuple containing the (optional) scheduler policy and an instance of :class:`sched_param` with the scheduler parameters. A value of ``None`` in the place of the scheduler policy indicates that is not being provided. This argument is a combination of the C library :c:macro:`!POSIX_SPAWN_SETSCHEDPARAM` and :c:macro:`!POSIX_SPAWN_SETSCHEDULER` flags." msgstr "" -#: ../../library/os.rst:4968 ../../library/os.rst:4989 -msgid "" -"Raises an :ref:`auditing event ` ``os.posix_spawn`` with arguments " -"``path``, ``argv``, ``env``." +msgid "Raises an :ref:`auditing event ` ``os.posix_spawn`` with arguments ``path``, ``argv``, ``env``." msgstr "" -#: ../../library/os.rst:4972 -msgid "" -"*env* parameter accepts ``None``. ``os.POSIX_SPAWN_CLOSEFROM`` is available " -"on platforms where :c:func:`!posix_spawn_file_actions_addclosefrom_np` " -"exists." +msgid "*env* parameter accepts ``None``. ``os.POSIX_SPAWN_CLOSEFROM`` is available on platforms where :c:func:`!posix_spawn_file_actions_addclosefrom_np` exists." msgstr "" -#: ../../library/os.rst:4983 msgid "Wraps the :c:func:`!posix_spawnp` C library API for use from Python." msgstr "" -#: ../../library/os.rst:4985 -msgid "" -"Similar to :func:`posix_spawn` except that the system searches for the " -"*executable* file in the list of directories specified by the :envvar:`PATH` " -"environment variable (in the same way as for ``execvp(3)``)." +msgid "Similar to :func:`posix_spawn` except that the system searches for the *executable* file in the list of directories specified by the :envvar:`PATH` environment variable (in the same way as for ``execvp(3)``)." msgstr "" -#: ../../library/os.rst:4995 msgid "See :func:`posix_spawn` documentation." msgstr "" -#: ../../library/os.rst:5001 -msgid "" -"Register callables to be executed when a new child process is forked " -"using :func:`os.fork` or similar process cloning APIs. The parameters are " -"optional and keyword-only. Each specifies a different call point." +msgid "Register callables to be executed when a new child process is forked using :func:`os.fork` or similar process cloning APIs. The parameters are optional and keyword-only. Each specifies a different call point." msgstr "" -#: ../../library/os.rst:5006 msgid "*before* is a function called before forking a child process." msgstr "" -#: ../../library/os.rst:5007 -msgid "" -"*after_in_parent* is a function called from the parent process after forking " -"a child process." +msgid "*after_in_parent* is a function called from the parent process after forking a child process." msgstr "" -#: ../../library/os.rst:5009 msgid "*after_in_child* is a function called from the child process." msgstr "" -#: ../../library/os.rst:5011 -msgid "" -"These calls are only made if control is expected to return to the Python " -"interpreter. A typical :mod:`subprocess` launch will not trigger them as " -"the child is not going to re-enter the interpreter." +msgid "These calls are only made if control is expected to return to the Python interpreter. A typical :mod:`subprocess` launch will not trigger them as the child is not going to re-enter the interpreter." msgstr "" -#: ../../library/os.rst:5015 -msgid "" -"Functions registered for execution before forking are called in reverse " -"registration order. Functions registered for execution after forking " -"(either in the parent or in the child) are called in registration order." +msgid "Functions registered for execution before forking are called in reverse registration order. Functions registered for execution after forking (either in the parent or in the child) are called in registration order." msgstr "" -#: ../../library/os.rst:5020 -msgid "" -"Note that :c:func:`fork` calls made by third-party C code may not call those " -"functions, unless it explicitly " -"calls :c:func:`PyOS_BeforeFork`, :c:func:`PyOS_AfterFork_Parent` " -"and :c:func:`PyOS_AfterFork_Child`." +msgid "Note that :c:func:`fork` calls made by third-party C code may not call those functions, unless it explicitly calls :c:func:`PyOS_BeforeFork`, :c:func:`PyOS_AfterFork_Parent` and :c:func:`PyOS_AfterFork_Child`." msgstr "" -#: ../../library/os.rst:5024 msgid "There is no way to unregister a function." msgstr "" -#: ../../library/os.rst:5040 msgid "Execute the program *path* in a new process." msgstr "" -#: ../../library/os.rst:5042 -msgid "" -"(Note that the :mod:`subprocess` module provides more powerful facilities " -"for spawning new processes and retrieving their results; using that module " -"is preferable to using these functions. Check especially " -"the :ref:`subprocess-replacements` section.)" +msgid "(Note that the :mod:`subprocess` module provides more powerful facilities for spawning new processes and retrieving their results; using that module is preferable to using these functions. Check especially the :ref:`subprocess-replacements` section.)" msgstr "" -#: ../../library/os.rst:5047 -msgid "" -"If *mode* is :const:`P_NOWAIT`, this function returns the process id of the " -"new process; if *mode* is :const:`P_WAIT`, returns the process's exit code " -"if it exits normally, or ``-signal``, where *signal* is the signal that " -"killed the process. On Windows, the process id will actually be the process " -"handle, so can be used with the :func:`waitpid` function." +msgid "If *mode* is :const:`P_NOWAIT`, this function returns the process id of the new process; if *mode* is :const:`P_WAIT`, returns the process's exit code if it exits normally, or ``-signal``, where *signal* is the signal that killed the process. On Windows, the process id will actually be the process handle, so can be used with the :func:`waitpid` function." msgstr "" -#: ../../library/os.rst:5053 -msgid "" -"Note on VxWorks, this function doesn't return ``-signal`` when the new " -"process is killed. Instead it raises OSError exception." +msgid "Note on VxWorks, this function doesn't return ``-signal`` when the new process is killed. Instead it raises OSError exception." msgstr "" -#: ../../library/os.rst:5056 -msgid "" -"The \"l\" and \"v\" variants of the :func:`spawn\\* ` functions " -"differ in how command-line arguments are passed. The \"l\" variants are " -"perhaps the easiest to work with if the number of parameters is fixed when " -"the code is written; the individual parameters simply become additional " -"parameters to the :func:`!spawnl\\*` functions. The \"v\" variants are good " -"when the number of parameters is variable, with the arguments being passed " -"in a list or tuple as the *args* parameter. In either case, the arguments " -"to the child process must start with the name of the command being run." +msgid "The \"l\" and \"v\" variants of the :func:`spawn\\* ` functions differ in how command-line arguments are passed. The \"l\" variants are perhaps the easiest to work with if the number of parameters is fixed when the code is written; the individual parameters simply become additional parameters to the :func:`!spawnl\\*` functions. The \"v\" variants are good when the number of parameters is variable, with the arguments being passed in a list or tuple as the *args* parameter. In either case, the arguments to the child process must start with the name of the command being run." msgstr "" -#: ../../library/os.rst:5065 -msgid "" -"The variants which include a second \"p\" near the end " -"(:func:`spawnlp`, :func:`spawnlpe`, :func:`spawnvp`, and :func:`spawnvpe`) " -"will use the :envvar:`PATH` environment variable to locate the program " -"*file*. When the environment is being replaced (using one of " -"the :func:`spawn\\*e ` variants, discussed in the next paragraph), " -"the new environment is used as the source of the :envvar:`PATH` variable. " -"The other variants, :func:`spawnl`, :func:`spawnle`, :func:`spawnv`, " -"and :func:`spawnve`, will not use the :envvar:`PATH` variable to locate the " -"executable; *path* must contain an appropriate absolute or relative path." -msgstr "" - -#: ../../library/os.rst:5075 -msgid "" -"For :func:`spawnle`, :func:`spawnlpe`, :func:`spawnve`, and :func:`spawnvpe` " -"(note that these all end in \"e\"), the *env* parameter must be a mapping " -"which is used to define the environment variables for the new process (they " -"are used instead of the current process' environment); the " -"functions :func:`spawnl`, :func:`spawnlp`, :func:`spawnv`, " -"and :func:`spawnvp` all cause the new process to inherit the environment of " -"the current process. Note that keys and values in the *env* dictionary must " -"be strings; invalid keys or values will cause the function to fail, with a " -"return value of ``127``." -msgstr "" - -#: ../../library/os.rst:5084 -msgid "" -"As an example, the following calls to :func:`spawnlp` and :func:`spawnvpe` " -"are equivalent::" +msgid "The variants which include a second \"p\" near the end (:func:`spawnlp`, :func:`spawnlpe`, :func:`spawnvp`, and :func:`spawnvpe`) will use the :envvar:`PATH` environment variable to locate the program *file*. When the environment is being replaced (using one of the :func:`spawn\\*e ` variants, discussed in the next paragraph), the new environment is used as the source of the :envvar:`PATH` variable. The other variants, :func:`spawnl`, :func:`spawnle`, :func:`spawnv`, and :func:`spawnve`, will not use the :envvar:`PATH` variable to locate the executable; *path* must contain an appropriate absolute or relative path." +msgstr "" + +msgid "For :func:`spawnle`, :func:`spawnlpe`, :func:`spawnve`, and :func:`spawnvpe` (note that these all end in \"e\"), the *env* parameter must be a mapping which is used to define the environment variables for the new process (they are used instead of the current process' environment); the functions :func:`spawnl`, :func:`spawnlp`, :func:`spawnv`, and :func:`spawnvp` all cause the new process to inherit the environment of the current process. Note that keys and values in the *env* dictionary must be strings; invalid keys or values will cause the function to fail, with a return value of ``127``." +msgstr "" + +msgid "As an example, the following calls to :func:`spawnlp` and :func:`spawnvpe` are equivalent::" msgstr "" -#: ../../library/os.rst:5087 msgid "" "import os\n" "os.spawnlp(os.P_WAIT, 'cp', 'cp', 'index.html', '/dev/null')\n" @@ -5588,1173 +2732,605 @@ msgid "" "os.spawnvpe(os.P_WAIT, 'cp', L, os.environ)" msgstr "" -#: ../../library/os.rst:5093 -msgid "" -"Raises an :ref:`auditing event ` ``os.spawn`` with arguments " -"``mode``, ``path``, ``args``, ``env``." +msgid "Raises an :ref:`auditing event ` ``os.spawn`` with arguments ``mode``, ``path``, ``args``, ``env``." msgstr "" -#: ../../library/os.rst:5097 -msgid "" -":func:`spawnlp`, :func:`spawnlpe`, :func:`spawnvp` and :func:`spawnvpe` are " -"not available on Windows. :func:`spawnle` and :func:`spawnve` are not " -"thread-safe on Windows; we advise you to use the :mod:`subprocess` module " -"instead." +msgid ":func:`spawnlp`, :func:`spawnlpe`, :func:`spawnvp` and :func:`spawnvpe` are not available on Windows. :func:`spawnle` and :func:`spawnve` are not thread-safe on Windows; we advise you to use the :mod:`subprocess` module instead." msgstr "" -#: ../../library/os.rst:5112 -msgid "" -"Possible values for the *mode* parameter to the :func:`spawn\\* ` " -"family of functions. If either of these values is given, " -"the :func:`spawn\\* ` functions will return as soon as the new " -"process has been created, with the process id as the return value." +msgid "Possible values for the *mode* parameter to the :func:`spawn\\* ` family of functions. If either of these values is given, the :func:`spawn\\* ` functions will return as soon as the new process has been created, with the process id as the return value." msgstr "" -#: ../../library/os.rst:5122 -msgid "" -"Possible value for the *mode* parameter to the :func:`spawn\\* ` " -"family of functions. If this is given as *mode*, the :func:`spawn\\* " -"` functions will not return until the new process has run to " -"completion and will return the exit code of the process the run is " -"successful, or ``-signal`` if a signal kills the process." +msgid "Possible value for the *mode* parameter to the :func:`spawn\\* ` family of functions. If this is given as *mode*, the :func:`spawn\\* ` functions will not return until the new process has run to completion and will return the exit code of the process the run is successful, or ``-signal`` if a signal kills the process." msgstr "" -#: ../../library/os.rst:5134 -msgid "" -"Possible values for the *mode* parameter to the :func:`spawn\\* ` " -"family of functions. These are less portable than those listed " -"above. :const:`P_DETACH` is similar to :const:`P_NOWAIT`, but the new " -"process is detached from the console of the calling process. " -"If :const:`P_OVERLAY` is used, the current process will be replaced; " -"the :func:`spawn\\* ` function will not return." +msgid "Possible values for the *mode* parameter to the :func:`spawn\\* ` family of functions. These are less portable than those listed above. :const:`P_DETACH` is similar to :const:`P_NOWAIT`, but the new process is detached from the console of the calling process. If :const:`P_OVERLAY` is used, the current process will be replaced; the :func:`spawn\\* ` function will not return." msgstr "" -#: ../../library/os.rst:5145 msgid "Start a file with its associated application." msgstr "" -#: ../../library/os.rst:5147 -msgid "" -"When *operation* is not specified, this acts like double-clicking the file " -"in Windows Explorer, or giving the file name as an argument to " -"the :program:`start` command from the interactive command shell: the file is " -"opened with whatever application (if any) its extension is associated." +msgid "When *operation* is not specified, this acts like double-clicking the file in Windows Explorer, or giving the file name as an argument to the :program:`start` command from the interactive command shell: the file is opened with whatever application (if any) its extension is associated." msgstr "" -#: ../../library/os.rst:5152 -msgid "" -"When another *operation* is given, it must be a \"command verb\" that " -"specifies what should be done with the file. Common verbs documented by " -"Microsoft are ``'open'``, ``'print'`` and ``'edit'`` (to be used on files) " -"as well as ``'explore'`` and ``'find'`` (to be used on directories)." +msgid "When another *operation* is given, it must be a \"command verb\" that specifies what should be done with the file. Common verbs documented by Microsoft are ``'open'``, ``'print'`` and ``'edit'`` (to be used on files) as well as ``'explore'`` and ``'find'`` (to be used on directories)." msgstr "" -#: ../../library/os.rst:5157 -msgid "" -"When launching an application, specify *arguments* to be passed as a single " -"string. This argument may have no effect when using this function to launch " -"a document." +msgid "When launching an application, specify *arguments* to be passed as a single string. This argument may have no effect when using this function to launch a document." msgstr "" -#: ../../library/os.rst:5161 -msgid "" -"The default working directory is inherited, but may be overridden by the " -"*cwd* argument. This should be an absolute path. A relative *path* will be " -"resolved against this argument." +msgid "The default working directory is inherited, but may be overridden by the *cwd* argument. This should be an absolute path. A relative *path* will be resolved against this argument." msgstr "" -#: ../../library/os.rst:5165 -msgid "" -"Use *show_cmd* to override the default window style. Whether this has any " -"effect will depend on the application being launched. Values are integers as " -"supported by the Win32 :c:func:`!ShellExecute` function." +msgid "Use *show_cmd* to override the default window style. Whether this has any effect will depend on the application being launched. Values are integers as supported by the Win32 :c:func:`!ShellExecute` function." msgstr "" -#: ../../library/os.rst:5169 -msgid "" -":func:`startfile` returns as soon as the associated application is launched. " -"There is no option to wait for the application to close, and no way to " -"retrieve the application's exit status. The *path* parameter is relative to " -"the current directory or *cwd*. If you want to use an absolute path, make " -"sure the first character is not a slash (``'/'``) Use :mod:`pathlib` or " -"the :func:`os.path.normpath` function to ensure that paths are properly " -"encoded for Win32." +msgid ":func:`startfile` returns as soon as the associated application is launched. There is no option to wait for the application to close, and no way to retrieve the application's exit status. The *path* parameter is relative to the current directory or *cwd*. If you want to use an absolute path, make sure the first character is not a slash (``'/'``) Use :mod:`pathlib` or the :func:`os.path.normpath` function to ensure that paths are properly encoded for Win32." msgstr "" -#: ../../library/os.rst:5177 -msgid "" -"To reduce interpreter startup overhead, the Win32 :c:func:`!ShellExecute` " -"function is not resolved until this function is first called. If the " -"function cannot be resolved, :exc:`NotImplementedError` will be raised." +msgid "To reduce interpreter startup overhead, the Win32 :c:func:`!ShellExecute` function is not resolved until this function is first called. If the function cannot be resolved, :exc:`NotImplementedError` will be raised." msgstr "" -#: ../../library/os.rst:5181 -msgid "" -"Raises an :ref:`auditing event ` ``os.startfile`` with arguments " -"``path``, ``operation``." +msgid "Raises an :ref:`auditing event ` ``os.startfile`` with arguments ``path``, ``operation``." msgstr "" -#: ../../library/os.rst:5183 -msgid "" -"Raises an :ref:`auditing event ` ``os.startfile/2`` with arguments " -"``path``, ``operation``, ``arguments``, ``cwd``, ``show_cmd``." +msgid "Raises an :ref:`auditing event ` ``os.startfile/2`` with arguments ``path``, ``operation``, ``arguments``, ``cwd``, ``show_cmd``." msgstr "" -#: ../../library/os.rst:5187 -msgid "" -"Added the *arguments*, *cwd* and *show_cmd* arguments, and the " -"``os.startfile/2`` audit event." +msgid "Added the *arguments*, *cwd* and *show_cmd* arguments, and the ``os.startfile/2`` audit event." msgstr "" -#: ../../library/os.rst:5194 -msgid "" -"Execute the command (a string) in a subshell. This is implemented by " -"calling the Standard C function :c:func:`system`, and has the same " -"limitations. Changes to :data:`sys.stdin`, etc. are not reflected in the " -"environment of the executed command. If *command* generates any output, it " -"will be sent to the interpreter standard output stream. The C standard does " -"not specify the meaning of the return value of the C function, so the return " -"value of the Python function is system-dependent." +msgid "Execute the command (a string) in a subshell. This is implemented by calling the Standard C function :c:func:`system`, and has the same limitations. Changes to :data:`sys.stdin`, etc. are not reflected in the environment of the executed command. If *command* generates any output, it will be sent to the interpreter standard output stream. The C standard does not specify the meaning of the return value of the C function, so the return value of the Python function is system-dependent." msgstr "" -#: ../../library/os.rst:5202 -msgid "" -"On Unix, the return value is the exit status of the process encoded in the " -"format specified for :func:`wait`." +msgid "On Unix, the return value is the exit status of the process encoded in the format specified for :func:`wait`." msgstr "" -#: ../../library/os.rst:5205 -msgid "" -"On Windows, the return value is that returned by the system shell after " -"running *command*. The shell is given by the Windows environment " -"variable :envvar:`COMSPEC`: it is usually :program:`cmd.exe`, which returns " -"the exit status of the command run; on systems using a non-native shell, " -"consult your shell documentation." +msgid "On Windows, the return value is that returned by the system shell after running *command*. The shell is given by the Windows environment variable :envvar:`COMSPEC`: it is usually :program:`cmd.exe`, which returns the exit status of the command run; on systems using a non-native shell, consult your shell documentation." msgstr "" -#: ../../library/os.rst:5211 -msgid "" -"The :mod:`subprocess` module provides more powerful facilities for spawning " -"new processes and retrieving their results; using that module is recommended " -"to using this function. See the :ref:`subprocess-replacements` section in " -"the :mod:`subprocess` documentation for some helpful recipes." +msgid "The :mod:`subprocess` module provides more powerful facilities for spawning new processes and retrieving their results; using that module is recommended to using this function. See the :ref:`subprocess-replacements` section in the :mod:`subprocess` documentation for some helpful recipes." msgstr "" -#: ../../library/os.rst:5216 -msgid "" -"On Unix, :func:`waitstatus_to_exitcode` can be used to convert the result " -"(exit status) into an exit code. On Windows, the result is directly the exit " -"code." +msgid "On Unix, :func:`waitstatus_to_exitcode` can be used to convert the result (exit status) into an exit code. On Windows, the result is directly the exit code." msgstr "" -#: ../../library/os.rst:5220 -msgid "" -"Raises an :ref:`auditing event ` ``os.system`` with argument " -"``command``." +msgid "Raises an :ref:`auditing event ` ``os.system`` with argument ``command``." msgstr "" -#: ../../library/os.rst:5227 -msgid "" -"Returns the current global process times. The return value is an object with " -"five attributes:" +msgid "Returns the current global process times. The return value is an object with five attributes:" msgstr "" -#: ../../library/os.rst:5230 msgid ":attr:`!user` - user time" msgstr "" -#: ../../library/os.rst:5231 msgid ":attr:`!system` - system time" msgstr "" -#: ../../library/os.rst:5232 msgid ":attr:`!children_user` - user time of all child processes" msgstr "" -#: ../../library/os.rst:5233 msgid ":attr:`!children_system` - system time of all child processes" msgstr "" -#: ../../library/os.rst:5234 msgid ":attr:`!elapsed` - elapsed real time since a fixed point in the past" msgstr "" -#: ../../library/os.rst:5236 -msgid "" -"For backwards compatibility, this object also behaves like a five-tuple " -"containing :attr:`!user`, :attr:`!system`, :attr:`!children_user`, :attr:`!" -"children_system`, and :attr:`!elapsed` in that order." +msgid "For backwards compatibility, this object also behaves like a five-tuple containing :attr:`!user`, :attr:`!system`, :attr:`!children_user`, :attr:`!children_system`, and :attr:`!elapsed` in that order." msgstr "" -#: ../../library/os.rst:5240 -msgid "" -"See the Unix manual page :manpage:`times(2)` and `times(3) `_ manual page on Unix or `the " -"GetProcessTimes MSDN `_ on Windows. On " -"Windows, only :attr:`!user` and :attr:`!system` are known; the other " -"attributes are zero." +msgid "See the Unix manual page :manpage:`times(2)` and `times(3) `_ manual page on Unix or `the GetProcessTimes MSDN `_ on Windows. On Windows, only :attr:`!user` and :attr:`!system` are known; the other attributes are zero." msgstr "" -#: ../../library/os.rst:5254 -msgid "" -"Wait for completion of a child process, and return a tuple containing its " -"pid and exit status indication: a 16-bit number, whose low byte is the " -"signal number that killed the process, and whose high byte is the exit " -"status (if the signal number is zero); the high bit of the low byte is set " -"if a core file was produced." +msgid "Wait for completion of a child process, and return a tuple containing its pid and exit status indication: a 16-bit number, whose low byte is the signal number that killed the process, and whose high byte is the exit status (if the signal number is zero); the high bit of the low byte is set if a core file was produced." msgstr "" -#: ../../library/os.rst:5260 -msgid "" -"If there are no children that could be waited for, :exc:`ChildProcessError` " -"is raised." +msgid "If there are no children that could be waited for, :exc:`ChildProcessError` is raised." msgstr "" -#: ../../library/os.rst:5263 ../../library/os.rst:5338 -msgid "" -":func:`waitstatus_to_exitcode` can be used to convert the exit status into " -"an exit code." +msgid ":func:`waitstatus_to_exitcode` can be used to convert the exit status into an exit code." msgstr "" -#: ../../library/os.rst:5270 -msgid "" -"The other :func:`!wait*` functions documented below can be used to wait for " -"the completion of a specific child process and have more " -"options. :func:`waitpid` is the only one also available on Windows." +msgid "The other :func:`!wait*` functions documented below can be used to wait for the completion of a specific child process and have more options. :func:`waitpid` is the only one also available on Windows." msgstr "" -#: ../../library/os.rst:5277 msgid "Wait for the completion of a child process." msgstr "" -#: ../../library/os.rst:5279 -msgid "" -"*idtype* can be :data:`P_PID`, :data:`P_PGID`, :data:`P_ALL`, or (on " -"Linux) :data:`P_PIDFD`. The interpretation of *id* depends on it; see their " -"individual descriptions." +msgid "*idtype* can be :data:`P_PID`, :data:`P_PGID`, :data:`P_ALL`, or (on Linux) :data:`P_PIDFD`. The interpretation of *id* depends on it; see their individual descriptions." msgstr "" -#: ../../library/os.rst:5282 -msgid "" -"*options* is an OR combination of flags. At least one " -"of :data:`WEXITED`, :data:`WSTOPPED` or :data:`WCONTINUED` is " -"required; :data:`WNOHANG` and :data:`WNOWAIT` are additional optional flags." +msgid "*options* is an OR combination of flags. At least one of :data:`WEXITED`, :data:`WSTOPPED` or :data:`WCONTINUED` is required; :data:`WNOHANG` and :data:`WNOWAIT` are additional optional flags." msgstr "" -#: ../../library/os.rst:5286 -msgid "" -"The return value is an object representing the data contained in " -"the :c:type:`siginfo_t` structure with the following attributes:" +msgid "The return value is an object representing the data contained in the :c:type:`siginfo_t` structure with the following attributes:" msgstr "" -#: ../../library/os.rst:5289 msgid ":attr:`!si_pid` (process ID)" msgstr "" -#: ../../library/os.rst:5290 msgid ":attr:`!si_uid` (real user ID of the child)" msgstr "" -#: ../../library/os.rst:5291 msgid ":attr:`!si_signo` (always :const:`~signal.SIGCHLD`)" msgstr "" -#: ../../library/os.rst:5292 -msgid "" -":attr:`!si_status` (the exit status or signal number, depending on :attr:`!" -"si_code`)" +msgid ":attr:`!si_status` (the exit status or signal number, depending on :attr:`!si_code`)" msgstr "" -#: ../../library/os.rst:5293 msgid ":attr:`!si_code` (see :data:`CLD_EXITED` for possible values)" msgstr "" -#: ../../library/os.rst:5295 -msgid "" -"If :data:`WNOHANG` is specified and there are no matching children in the " -"requested state, ``None`` is returned. Otherwise, if there are no matching " -"children that could be waited for, :exc:`ChildProcessError` is raised." +msgid "If :data:`WNOHANG` is specified and there are no matching children in the requested state, ``None`` is returned. Otherwise, if there are no matching children that could be waited for, :exc:`ChildProcessError` is raised." msgstr "" -#: ../../library/os.rst:5304 msgid "This function is now available on macOS as well." msgstr "" -#: ../../library/os.rst:5310 msgid "The details of this function differ on Unix and Windows." msgstr "" -#: ../../library/os.rst:5312 -msgid "" -"On Unix: Wait for completion of a child process given by process id *pid*, " -"and return a tuple containing its process id and exit status indication " -"(encoded as for :func:`wait`). The semantics of the call are affected by " -"the value of the integer *options*, which should be ``0`` for normal " -"operation." +msgid "On Unix: Wait for completion of a child process given by process id *pid*, and return a tuple containing its process id and exit status indication (encoded as for :func:`wait`). The semantics of the call are affected by the value of the integer *options*, which should be ``0`` for normal operation." msgstr "" -#: ../../library/os.rst:5317 -msgid "" -"If *pid* is greater than ``0``, :func:`waitpid` requests status information " -"for that specific process. If *pid* is ``0``, the request is for the status " -"of any child in the process group of the current process. If *pid* is " -"``-1``, the request pertains to any child of the current process. If *pid* " -"is less than ``-1``, status is requested for any process in the process " -"group ``-pid`` (the absolute value of *pid*)." +msgid "If *pid* is greater than ``0``, :func:`waitpid` requests status information for that specific process. If *pid* is ``0``, the request is for the status of any child in the process group of the current process. If *pid* is ``-1``, the request pertains to any child of the current process. If *pid* is less than ``-1``, status is requested for any process in the process group ``-pid`` (the absolute value of *pid*)." msgstr "" -#: ../../library/os.rst:5324 -msgid "" -"*options* is an OR combination of flags. If it contains :data:`WNOHANG` and " -"there are no matching children in the requested state, ``(0, 0)`` is " -"returned. Otherwise, if there are no matching children that could be waited " -"for, :exc:`ChildProcessError` is raised. Other options that can be used " -"are :data:`WUNTRACED` and :data:`WCONTINUED`." +msgid "*options* is an OR combination of flags. If it contains :data:`WNOHANG` and there are no matching children in the requested state, ``(0, 0)`` is returned. Otherwise, if there are no matching children that could be waited for, :exc:`ChildProcessError` is raised. Other options that can be used are :data:`WUNTRACED` and :data:`WCONTINUED`." msgstr "" -#: ../../library/os.rst:5330 -msgid "" -"On Windows: Wait for completion of a process given by process handle *pid*, " -"and return a tuple containing *pid*, and its exit status shifted left by 8 " -"bits (shifting makes cross-platform use of the function easier). A *pid* " -"less than or equal to ``0`` has no special meaning on Windows, and raises an " -"exception. The value of integer *options* has no effect. *pid* can refer to " -"any process whose id is known, not necessarily a child process. " -"The :func:`spawn\\* ` functions called with :const:`P_NOWAIT` return " -"suitable process handles." +msgid "On Windows: Wait for completion of a process given by process handle *pid*, and return a tuple containing *pid*, and its exit status shifted left by 8 bits (shifting makes cross-platform use of the function easier). A *pid* less than or equal to ``0`` has no special meaning on Windows, and raises an exception. The value of integer *options* has no effect. *pid* can refer to any process whose id is known, not necessarily a child process. The :func:`spawn\\* ` functions called with :const:`P_NOWAIT` return suitable process handles." msgstr "" -#: ../../library/os.rst:5351 -msgid "" -"Similar to :func:`waitpid`, except no process id argument is given and a 3-" -"element tuple containing the child's process id, exit status indication, and " -"resource usage information is returned. Refer to :func:`resource.getrusage` " -"for details on resource usage information. The *options* argument is the " -"same as that provided to :func:`waitpid` and :func:`wait4`." +msgid "Similar to :func:`waitpid`, except no process id argument is given and a 3-element tuple containing the child's process id, exit status indication, and resource usage information is returned. Refer to :func:`resource.getrusage` for details on resource usage information. The *options* argument is the same as that provided to :func:`waitpid` and :func:`wait4`." msgstr "" -#: ../../library/os.rst:5358 ../../library/os.rst:5372 -msgid "" -":func:`waitstatus_to_exitcode` can be used to convert the exit status into " -"an exitcode." +msgid ":func:`waitstatus_to_exitcode` can be used to convert the exit status into an exitcode." msgstr "" -#: ../../library/os.rst:5366 -msgid "" -"Similar to :func:`waitpid`, except a 3-element tuple, containing the child's " -"process id, exit status indication, and resource usage information is " -"returned. Refer to :func:`resource.getrusage` for details on resource usage " -"information. The arguments to :func:`wait4` are the same as those provided " -"to :func:`waitpid`." +msgid "Similar to :func:`waitpid`, except a 3-element tuple, containing the child's process id, exit status indication, and resource usage information is returned. Refer to :func:`resource.getrusage` for details on resource usage information. The arguments to :func:`wait4` are the same as those provided to :func:`waitpid`." msgstr "" -#: ../../library/os.rst:5383 -msgid "" -"These are the possible values for *idtype* in :func:`waitid`. They affect " -"how *id* is interpreted:" +msgid "These are the possible values for *idtype* in :func:`waitid`. They affect how *id* is interpreted:" msgstr "" -#: ../../library/os.rst:5386 msgid ":data:`!P_PID` - wait for the child whose PID is *id*." msgstr "" -#: ../../library/os.rst:5387 msgid ":data:`!P_PGID` - wait for any child whose progress group ID is *id*." msgstr "" -#: ../../library/os.rst:5388 msgid ":data:`!P_ALL` - wait for any child; *id* is ignored." msgstr "" -#: ../../library/os.rst:5389 -msgid "" -":data:`!P_PIDFD` - wait for the child identified by the file descriptor *id* " -"(a process file descriptor created with :func:`pidfd_open`)." +msgid ":data:`!P_PIDFD` - wait for the child identified by the file descriptor *id* (a process file descriptor created with :func:`pidfd_open`)." msgstr "" -#: ../../library/os.rst:5394 msgid ":data:`!P_PIDFD` is only available on Linux >= 5.4." msgstr "" -#: ../../library/os.rst:5397 msgid "The :data:`!P_PIDFD` constant." msgstr "" -#: ../../library/os.rst:5403 -msgid "" -"This *options* flag for :func:`waitpid`, :func:`wait3`, :func:`wait4`, " -"and :func:`waitid` causes child processes to be reported if they have been " -"continued from a job control stop since they were last reported." +msgid "This *options* flag for :func:`waitpid`, :func:`wait3`, :func:`wait4`, and :func:`waitid` causes child processes to be reported if they have been continued from a job control stop since they were last reported." msgstr "" -#: ../../library/os.rst:5412 -msgid "" -"This *options* flag for :func:`waitid` causes child processes that have " -"terminated to be reported." +msgid "This *options* flag for :func:`waitid` causes child processes that have terminated to be reported." msgstr "" -#: ../../library/os.rst:5415 -msgid "" -"The other ``wait*`` functions always report children that have terminated, " -"so this option is not available for them." +msgid "The other ``wait*`` functions always report children that have terminated, so this option is not available for them." msgstr "" -#: ../../library/os.rst:5425 -msgid "" -"This *options* flag for :func:`waitid` causes child processes that have been " -"stopped by the delivery of a signal to be reported." +msgid "This *options* flag for :func:`waitid` causes child processes that have been stopped by the delivery of a signal to be reported." msgstr "" -#: ../../library/os.rst:5428 ../../library/os.rst:5460 msgid "This option is not available for the other ``wait*`` functions." msgstr "" -#: ../../library/os.rst:5437 -msgid "" -"This *options* flag for :func:`waitpid`, :func:`wait3`, and :func:`wait4` " -"causes child processes to also be reported if they have been stopped but " -"their current state has not been reported since they were stopped." +msgid "This *options* flag for :func:`waitpid`, :func:`wait3`, and :func:`wait4` causes child processes to also be reported if they have been stopped but their current state has not been reported since they were stopped." msgstr "" -#: ../../library/os.rst:5441 msgid "This option is not available for :func:`waitid`." msgstr "" -#: ../../library/os.rst:5448 -msgid "" -"This *options* flag causes :func:`waitpid`, :func:`wait3`, :func:`wait4`, " -"and :func:`waitid` to return right away if no child process status is " -"available immediately." +msgid "This *options* flag causes :func:`waitpid`, :func:`wait3`, :func:`wait4`, and :func:`waitid` to return right away if no child process status is available immediately." msgstr "" -#: ../../library/os.rst:5457 -msgid "" -"This *options* flag causes :func:`waitid` to leave the child in a waitable " -"state, so that a later :func:`!wait*` call can be used to retrieve the child " -"status information again." +msgid "This *options* flag causes :func:`waitid` to leave the child in a waitable state, so that a later :func:`!wait*` call can be used to retrieve the child status information again." msgstr "" -#: ../../library/os.rst:5472 -msgid "" -"These are the possible values for :attr:`!si_code` in the result returned " -"by :func:`waitid`." +msgid "These are the possible values for :attr:`!si_code` in the result returned by :func:`waitid`." msgstr "" -#: ../../library/os.rst:5479 msgid "Added :data:`CLD_KILLED` and :data:`CLD_STOPPED` values." msgstr "" -#: ../../library/os.rst:5485 msgid "Convert a wait status to an exit code." msgstr "" -#: ../../library/os.rst:5487 msgid "On Unix:" msgstr "" -#: ../../library/os.rst:5489 -msgid "" -"If the process exited normally (if ``WIFEXITED(status)`` is true), return " -"the process exit status (return ``WEXITSTATUS(status)``): result greater " -"than or equal to 0." +msgid "If the process exited normally (if ``WIFEXITED(status)`` is true), return the process exit status (return ``WEXITSTATUS(status)``): result greater than or equal to 0." msgstr "" -#: ../../library/os.rst:5492 -msgid "" -"If the process was terminated by a signal (if ``WIFSIGNALED(status)`` is " -"true), return ``-signum`` where *signum* is the number of the signal that " -"caused the process to terminate (return ``-WTERMSIG(status)``): result less " -"than 0." +msgid "If the process was terminated by a signal (if ``WIFSIGNALED(status)`` is true), return ``-signum`` where *signum* is the number of the signal that caused the process to terminate (return ``-WTERMSIG(status)``): result less than 0." msgstr "" -#: ../../library/os.rst:5496 msgid "Otherwise, raise a :exc:`ValueError`." msgstr "" -#: ../../library/os.rst:5498 msgid "On Windows, return *status* shifted right by 8 bits." msgstr "" -#: ../../library/os.rst:5500 -msgid "" -"On Unix, if the process is being traced or if :func:`waitpid` was called " -"with :data:`WUNTRACED` option, the caller must first check if " -"``WIFSTOPPED(status)`` is true. This function must not be called if " -"``WIFSTOPPED(status)`` is true." +msgid "On Unix, if the process is being traced or if :func:`waitpid` was called with :data:`WUNTRACED` option, the caller must first check if ``WIFSTOPPED(status)`` is true. This function must not be called if ``WIFSTOPPED(status)`` is true." msgstr "" -#: ../../library/os.rst:5507 -msgid "" -":func:`WIFEXITED`, :func:`WEXITSTATUS`, :func:`WIFSIGNALED`, :func:`WTERMSIG`, :func:`WIFSTOPPED`, :func:`WSTOPSIG` " -"functions." +msgid ":func:`WIFEXITED`, :func:`WEXITSTATUS`, :func:`WIFSIGNALED`, :func:`WTERMSIG`, :func:`WIFSTOPPED`, :func:`WSTOPSIG` functions." msgstr "" -#: ../../library/os.rst:5515 -msgid "" -"The following functions take a process status code as returned " -"by :func:`system`, :func:`wait`, or :func:`waitpid` as a parameter. They " -"may be used to determine the disposition of a process." +msgid "The following functions take a process status code as returned by :func:`system`, :func:`wait`, or :func:`waitpid` as a parameter. They may be used to determine the disposition of a process." msgstr "" -#: ../../library/os.rst:5521 -msgid "" -"Return ``True`` if a core dump was generated for the process, otherwise " -"return ``False``." +msgid "Return ``True`` if a core dump was generated for the process, otherwise return ``False``." msgstr "" -#: ../../library/os.rst:5524 ../../library/os.rst:5590 msgid "This function should be employed only if :func:`WIFSIGNALED` is true." msgstr "" -#: ../../library/os.rst:5531 -msgid "" -"Return ``True`` if a stopped child has been resumed by delivery " -"of :const:`~signal.SIGCONT` (if the process has been continued from a job " -"control stop), otherwise return ``False``." +msgid "Return ``True`` if a stopped child has been resumed by delivery of :const:`~signal.SIGCONT` (if the process has been continued from a job control stop), otherwise return ``False``." msgstr "" -#: ../../library/os.rst:5535 msgid "See :data:`WCONTINUED` option." msgstr "" -#: ../../library/os.rst:5542 -msgid "" -"Return ``True`` if the process was stopped by delivery of a signal, " -"otherwise return ``False``." +msgid "Return ``True`` if the process was stopped by delivery of a signal, otherwise return ``False``." msgstr "" -#: ../../library/os.rst:5545 -msgid "" -":func:`WIFSTOPPED` only returns ``True`` if the :func:`waitpid` call was " -"done using :data:`WUNTRACED` option or when the process is being traced " -"(see :manpage:`ptrace(2)`)." +msgid ":func:`WIFSTOPPED` only returns ``True`` if the :func:`waitpid` call was done using :data:`WUNTRACED` option or when the process is being traced (see :manpage:`ptrace(2)`)." msgstr "" -#: ../../library/os.rst:5553 -msgid "" -"Return ``True`` if the process was terminated by a signal, otherwise return " -"``False``." +msgid "Return ``True`` if the process was terminated by a signal, otherwise return ``False``." msgstr "" -#: ../../library/os.rst:5561 -msgid "" -"Return ``True`` if the process exited terminated normally, that is, by " -"calling ``exit()`` or ``_exit()``, or by returning from ``main()``; " -"otherwise return ``False``." +msgid "Return ``True`` if the process exited terminated normally, that is, by calling ``exit()`` or ``_exit()``, or by returning from ``main()``; otherwise return ``False``." msgstr "" -#: ../../library/os.rst:5570 msgid "Return the process exit status." msgstr "" -#: ../../library/os.rst:5572 msgid "This function should be employed only if :func:`WIFEXITED` is true." msgstr "" -#: ../../library/os.rst:5579 msgid "Return the signal which caused the process to stop." msgstr "" -#: ../../library/os.rst:5581 msgid "This function should be employed only if :func:`WIFSTOPPED` is true." msgstr "" -#: ../../library/os.rst:5588 msgid "Return the number of the signal that caused the process to terminate." msgstr "" -#: ../../library/os.rst:5596 msgid "Interface to the scheduler" msgstr "" -#: ../../library/os.rst:5598 -msgid "" -"These functions control how a process is allocated CPU time by the operating " -"system. They are only available on some Unix platforms. For more detailed " -"information, consult your Unix manpages." +msgid "These functions control how a process is allocated CPU time by the operating system. They are only available on some Unix platforms. For more detailed information, consult your Unix manpages." msgstr "" -#: ../../library/os.rst:5604 -msgid "" -"The following scheduling policies are exposed if they are supported by the " -"operating system." +msgid "The following scheduling policies are exposed if they are supported by the operating system." msgstr "" -#: ../../library/os.rst:5611 msgid "The default scheduling policy." msgstr "" -#: ../../library/os.rst:5615 -msgid "" -"Scheduling policy for CPU-intensive processes that tries to preserve " -"interactivity on the rest of the computer." +msgid "Scheduling policy for CPU-intensive processes that tries to preserve interactivity on the rest of the computer." msgstr "" -#: ../../library/os.rst:5620 msgid "Scheduling policy for tasks with deadline constraints." msgstr "" -#: ../../library/os.rst:5626 msgid "Scheduling policy for extremely low priority background tasks." msgstr "" -#: ../../library/os.rst:5630 msgid "Alias for :data:`SCHED_OTHER`." msgstr "" -#: ../../library/os.rst:5636 msgid "Scheduling policy for sporadic server programs." msgstr "" -#: ../../library/os.rst:5640 msgid "A First In First Out scheduling policy." msgstr "" -#: ../../library/os.rst:5644 msgid "A round-robin scheduling policy." msgstr "" -#: ../../library/os.rst:5648 -msgid "" -"This flag can be OR'ed with any other scheduling policy. When a process with " -"this flag set forks, its child's scheduling policy and priority are reset to " -"the default." +msgid "This flag can be OR'ed with any other scheduling policy. When a process with this flag set forks, its child's scheduling policy and priority are reset to the default." msgstr "" -#: ../../library/os.rst:5655 -msgid "" -"This class represents tunable scheduling parameters used " -"in :func:`sched_setparam`, :func:`sched_setscheduler`, " -"and :func:`sched_getparam`. It is immutable." +msgid "This class represents tunable scheduling parameters used in :func:`sched_setparam`, :func:`sched_setscheduler`, and :func:`sched_getparam`. It is immutable." msgstr "" -#: ../../library/os.rst:5659 msgid "At the moment, there is only one possible parameter:" msgstr "" -#: ../../library/os.rst:5663 msgid "The scheduling priority for a scheduling policy." msgstr "" -#: ../../library/os.rst:5668 -msgid "" -"Get the minimum priority value for *policy*. *policy* is one of the " -"scheduling policy constants above." +msgid "Get the minimum priority value for *policy*. *policy* is one of the scheduling policy constants above." msgstr "" -#: ../../library/os.rst:5674 -msgid "" -"Get the maximum priority value for *policy*. *policy* is one of the " -"scheduling policy constants above." +msgid "Get the maximum priority value for *policy*. *policy* is one of the scheduling policy constants above." msgstr "" -#: ../../library/os.rst:5680 -msgid "" -"Set the scheduling policy for the process with PID *pid*. A *pid* of 0 means " -"the calling process. *policy* is one of the scheduling policy constants " -"above. *param* is a :class:`sched_param` instance." +msgid "Set the scheduling policy for the process with PID *pid*. A *pid* of 0 means the calling process. *policy* is one of the scheduling policy constants above. *param* is a :class:`sched_param` instance." msgstr "" -#: ../../library/os.rst:5687 -msgid "" -"Return the scheduling policy for the process with PID *pid*. A *pid* of 0 " -"means the calling process. The result is one of the scheduling policy " -"constants above." +msgid "Return the scheduling policy for the process with PID *pid*. A *pid* of 0 means the calling process. The result is one of the scheduling policy constants above." msgstr "" -#: ../../library/os.rst:5694 -msgid "" -"Set the scheduling parameters for the process with PID *pid*. A *pid* of 0 " -"means the calling process. *param* is a :class:`sched_param` instance." +msgid "Set the scheduling parameters for the process with PID *pid*. A *pid* of 0 means the calling process. *param* is a :class:`sched_param` instance." msgstr "" -#: ../../library/os.rst:5700 -msgid "" -"Return the scheduling parameters as a :class:`sched_param` instance for the " -"process with PID *pid*. A *pid* of 0 means the calling process." +msgid "Return the scheduling parameters as a :class:`sched_param` instance for the process with PID *pid*. A *pid* of 0 means the calling process." msgstr "" -#: ../../library/os.rst:5706 -msgid "" -"Return the round-robin quantum in seconds for the process with PID *pid*. A " -"*pid* of 0 means the calling process." +msgid "Return the round-robin quantum in seconds for the process with PID *pid*. A *pid* of 0 means the calling process." msgstr "" -#: ../../library/os.rst:5712 -msgid "" -"Voluntarily relinquish the CPU. See :manpage:`sched_yield(2)` for details." +msgid "Voluntarily relinquish the CPU. See :manpage:`sched_yield(2)` for details." msgstr "" -#: ../../library/os.rst:5717 -msgid "" -"Restrict the process with PID *pid* (or the current process if zero) to a " -"set of CPUs. *mask* is an iterable of integers representing the set of CPUs " -"to which the process should be restricted." +msgid "Restrict the process with PID *pid* (or the current process if zero) to a set of CPUs. *mask* is an iterable of integers representing the set of CPUs to which the process should be restricted." msgstr "" -#: ../../library/os.rst:5724 msgid "Return the set of CPUs the process with PID *pid* is restricted to." msgstr "" -#: ../../library/os.rst:5726 -msgid "" -"If *pid* is zero, return the set of CPUs the calling thread of the current " -"process is restricted to." +msgid "If *pid* is zero, return the set of CPUs the calling thread of the current process is restricted to." msgstr "" -#: ../../library/os.rst:5729 msgid "See also the :func:`process_cpu_count` function." msgstr "" -#: ../../library/os.rst:5735 msgid "Miscellaneous System Information" msgstr "" -#: ../../library/os.rst:5740 -msgid "" -"Return string-valued system configuration values. *name* specifies the " -"configuration value to retrieve; it may be a string which is the name of a " -"defined system value; these names are specified in a number of standards " -"(POSIX, Unix 95, Unix 98, and others). Some platforms define additional " -"names as well. The names known to the host operating system are given as the " -"keys of the ``confstr_names`` dictionary. For configuration variables not " -"included in that mapping, passing an integer for *name* is also accepted." +msgid "Return string-valued system configuration values. *name* specifies the configuration value to retrieve; it may be a string which is the name of a defined system value; these names are specified in a number of standards (POSIX, Unix 95, Unix 98, and others). Some platforms define additional names as well. The names known to the host operating system are given as the keys of the ``confstr_names`` dictionary. For configuration variables not included in that mapping, passing an integer for *name* is also accepted." msgstr "" -#: ../../library/os.rst:5748 -msgid "" -"If the configuration value specified by *name* isn't defined, ``None`` is " -"returned." +msgid "If the configuration value specified by *name* isn't defined, ``None`` is returned." msgstr "" -#: ../../library/os.rst:5751 -msgid "" -"If *name* is a string and is not known, :exc:`ValueError` is raised. If a " -"specific value for *name* is not supported by the host system, even if it is " -"included in ``confstr_names``, an :exc:`OSError` is raised " -"with :const:`errno.EINVAL` for the error number." +msgid "If *name* is a string and is not known, :exc:`ValueError` is raised. If a specific value for *name* is not supported by the host system, even if it is included in ``confstr_names``, an :exc:`OSError` is raised with :const:`errno.EINVAL` for the error number." msgstr "" -#: ../../library/os.rst:5761 -msgid "" -"Dictionary mapping names accepted by :func:`confstr` to the integer values " -"defined for those names by the host operating system. This can be used to " -"determine the set of names known to the system." +msgid "Dictionary mapping names accepted by :func:`confstr` to the integer values defined for those names by the host operating system. This can be used to determine the set of names known to the system." msgstr "" -#: ../../library/os.rst:5770 -msgid "" -"Return the number of logical CPUs in the **system**. Returns ``None`` if " -"undetermined." +msgid "Return the number of logical CPUs in the **system**. Returns ``None`` if undetermined." msgstr "" -#: ../../library/os.rst:5773 -msgid "" -"The :func:`process_cpu_count` function can be used to get the number of " -"logical CPUs usable by the calling thread of the **current process**." +msgid "The :func:`process_cpu_count` function can be used to get the number of logical CPUs usable by the calling thread of the **current process**." msgstr "" -#: ../../library/os.rst:5778 -msgid "" -"If :option:`-X cpu_count <-X>` is given or :envvar:`PYTHON_CPU_COUNT` is " -"set, :func:`cpu_count` returns the override value *n*." +msgid "If :option:`-X cpu_count <-X>` is given or :envvar:`PYTHON_CPU_COUNT` is set, :func:`cpu_count` returns the override value *n*." msgstr "" -#: ../../library/os.rst:5785 -msgid "" -"Return the number of processes in the system run queue averaged over the " -"last 1, 5, and 15 minutes or raises :exc:`OSError` if the load average was " -"unobtainable." +msgid "Return the number of processes in the system run queue averaged over the last 1, 5, and 15 minutes or raises :exc:`OSError` if the load average was unobtainable." msgstr "" -#: ../../library/os.rst:5794 -msgid "" -"Get the number of logical CPUs usable by the calling thread of the **current " -"process**. Returns ``None`` if undetermined. It can be less " -"than :func:`cpu_count` depending on the CPU affinity." +msgid "Get the number of logical CPUs usable by the calling thread of the **current process**. Returns ``None`` if undetermined. It can be less than :func:`cpu_count` depending on the CPU affinity." msgstr "" -#: ../../library/os.rst:5798 -msgid "" -"The :func:`cpu_count` function can be used to get the number of logical CPUs " -"in the **system**." +msgid "The :func:`cpu_count` function can be used to get the number of logical CPUs in the **system**." msgstr "" -#: ../../library/os.rst:5801 -msgid "" -"If :option:`-X cpu_count <-X>` is given or :envvar:`PYTHON_CPU_COUNT` is " -"set, :func:`process_cpu_count` returns the override value *n*." +msgid "If :option:`-X cpu_count <-X>` is given or :envvar:`PYTHON_CPU_COUNT` is set, :func:`process_cpu_count` returns the override value *n*." msgstr "" -#: ../../library/os.rst:5804 msgid "See also the :func:`sched_getaffinity` function." msgstr "" -#: ../../library/os.rst:5811 -msgid "" -"Return integer-valued system configuration values. If the configuration " -"value specified by *name* isn't defined, ``-1`` is returned. The comments " -"regarding the *name* parameter for :func:`confstr` apply here as well; the " -"dictionary that provides information on the known names is given by " -"``sysconf_names``." +msgid "Return integer-valued system configuration values. If the configuration value specified by *name* isn't defined, ``-1`` is returned. The comments regarding the *name* parameter for :func:`confstr` apply here as well; the dictionary that provides information on the known names is given by ``sysconf_names``." msgstr "" -#: ../../library/os.rst:5821 -msgid "" -"Dictionary mapping names accepted by :func:`sysconf` to the integer values " -"defined for those names by the host operating system. This can be used to " -"determine the set of names known to the system." +msgid "Dictionary mapping names accepted by :func:`sysconf` to the integer values defined for those names by the host operating system. This can be used to determine the set of names known to the system." msgstr "" -#: ../../library/os.rst:5827 msgid "Add ``'SC_MINSIGSTKSZ'`` name." msgstr "" -#: ../../library/os.rst:5830 -msgid "" -"The following data values are used to support path manipulation operations. " -"These are defined for all platforms." +msgid "The following data values are used to support path manipulation operations. These are defined for all platforms." msgstr "" -#: ../../library/os.rst:5833 -msgid "" -"Higher-level operations on pathnames are defined in the :mod:`os.path` " -"module." +msgid "Higher-level operations on pathnames are defined in the :mod:`os.path` module." msgstr "" -#: ../../library/os.rst:5839 -msgid "" -"The constant string used by the operating system to refer to the current " -"directory. This is ``'.'`` for Windows and POSIX. Also available " -"via :mod:`os.path`." +msgid "The constant string used by the operating system to refer to the current directory. This is ``'.'`` for Windows and POSIX. Also available via :mod:`os.path`." msgstr "" -#: ../../library/os.rst:5847 -msgid "" -"The constant string used by the operating system to refer to the parent " -"directory. This is ``'..'`` for Windows and POSIX. Also available " -"via :mod:`os.path`." +msgid "The constant string used by the operating system to refer to the parent directory. This is ``'..'`` for Windows and POSIX. Also available via :mod:`os.path`." msgstr "" -#: ../../library/os.rst:5856 -msgid "" -"The character used by the operating system to separate pathname components. " -"This is ``'/'`` for POSIX and ``'\\\\'`` for Windows. Note that knowing " -"this is not sufficient to be able to parse or concatenate pathnames --- " -"use :func:`os.path.split` and :func:`os.path.join` --- but it is " -"occasionally useful. Also available via :mod:`os.path`." +msgid "The character used by the operating system to separate pathname components. This is ``'/'`` for POSIX and ``'\\\\'`` for Windows. Note that knowing this is not sufficient to be able to parse or concatenate pathnames --- use :func:`os.path.split` and :func:`os.path.join` --- but it is occasionally useful. Also available via :mod:`os.path`." msgstr "" -#: ../../library/os.rst:5866 -msgid "" -"An alternative character used by the operating system to separate pathname " -"components, or ``None`` if only one separator character exists. This is set " -"to ``'/'`` on Windows systems where ``sep`` is a backslash. Also available " -"via :mod:`os.path`." +msgid "An alternative character used by the operating system to separate pathname components, or ``None`` if only one separator character exists. This is set to ``'/'`` on Windows systems where ``sep`` is a backslash. Also available via :mod:`os.path`." msgstr "" -#: ../../library/os.rst:5875 -msgid "" -"The character which separates the base filename from the extension; for " -"example, the ``'.'`` in :file:`os.py`. Also available via :mod:`os.path`." +msgid "The character which separates the base filename from the extension; for example, the ``'.'`` in :file:`os.py`. Also available via :mod:`os.path`." msgstr "" -#: ../../library/os.rst:5883 -msgid "" -"The character conventionally used by the operating system to separate search " -"path components (as in :envvar:`PATH`), such as ``':'`` for POSIX or ``';'`` " -"for Windows. Also available via :mod:`os.path`." +msgid "The character conventionally used by the operating system to separate search path components (as in :envvar:`PATH`), such as ``':'`` for POSIX or ``';'`` for Windows. Also available via :mod:`os.path`." msgstr "" -#: ../../library/os.rst:5890 -msgid "" -"The default search path used by :func:`exec\\*p\\* ` " -"and :func:`spawn\\*p\\* ` if the environment doesn't have a " -"``'PATH'`` key. Also available via :mod:`os.path`." +msgid "The default search path used by :func:`exec\\*p\\* ` and :func:`spawn\\*p\\* ` if the environment doesn't have a ``'PATH'`` key. Also available via :mod:`os.path`." msgstr "" -#: ../../library/os.rst:5897 -msgid "" -"The string used to separate (or, rather, terminate) lines on the current " -"platform. This may be a single character, such as ``'\\n'`` for POSIX, or " -"multiple characters, for example, ``'\\r\\n'`` for Windows. Do not use " -"*os.linesep* as a line terminator when writing files opened in text mode " -"(the default); use a single ``'\\n'`` instead, on all platforms." +msgid "The string used to separate (or, rather, terminate) lines on the current platform. This may be a single character, such as ``'\\n'`` for POSIX, or multiple characters, for example, ``'\\r\\n'`` for Windows. Do not use *os.linesep* as a line terminator when writing files opened in text mode (the default); use a single ``'\\n'`` instead, on all platforms." msgstr "" -#: ../../library/os.rst:5906 -msgid "" -"The file path of the null device. For example: ``'/dev/null'`` for POSIX, " -"``'nul'`` for Windows. Also available via :mod:`os.path`." +msgid "The file path of the null device. For example: ``'/dev/null'`` for POSIX, ``'nul'`` for Windows. Also available via :mod:`os.path`." msgstr "" -#: ../../library/os.rst:5917 -msgid "" -"Flags for use with the :func:`~sys.setdlopenflags` " -"and :func:`~sys.getdlopenflags` functions. See the Unix manual " -"page :manpage:`dlopen(3)` for what the different flags mean." +msgid "Flags for use with the :func:`~sys.setdlopenflags` and :func:`~sys.getdlopenflags` functions. See the Unix manual page :manpage:`dlopen(3)` for what the different flags mean." msgstr "" -#: ../../library/os.rst:5925 msgid "Random numbers" msgstr "" -#: ../../library/os.rst:5930 -msgid "" -"Get up to *size* random bytes. The function can return less bytes than " -"requested." +msgid "Get up to *size* random bytes. The function can return less bytes than requested." msgstr "" -#: ../../library/os.rst:5933 -msgid "" -"These bytes can be used to seed user-space random number generators or for " -"cryptographic purposes." +msgid "These bytes can be used to seed user-space random number generators or for cryptographic purposes." msgstr "" -#: ../../library/os.rst:5936 -msgid "" -"``getrandom()`` relies on entropy gathered from device drivers and other " -"sources of environmental noise. Unnecessarily reading large quantities of " -"data will have a negative impact on other users of the ``/dev/random`` and " -"``/dev/urandom`` devices." +msgid "``getrandom()`` relies on entropy gathered from device drivers and other sources of environmental noise. Unnecessarily reading large quantities of data will have a negative impact on other users of the ``/dev/random`` and ``/dev/urandom`` devices." msgstr "" -#: ../../library/os.rst:5941 -msgid "" -"The flags argument is a bit mask that can contain zero or more of the " -"following values ORed together: :py:const:`os.GRND_RANDOM` " -"and :py:data:`GRND_NONBLOCK`." +msgid "The flags argument is a bit mask that can contain zero or more of the following values ORed together: :py:const:`os.GRND_RANDOM` and :py:data:`GRND_NONBLOCK`." msgstr "" -#: ../../library/os.rst:5945 -msgid "" -"See also the `Linux getrandom() manual page `_." +msgid "See also the `Linux getrandom() manual page `_." msgstr "" -#: ../../library/os.rst:5954 -msgid "" -"Return a bytestring of *size* random bytes suitable for cryptographic use." +msgid "Return a bytestring of *size* random bytes suitable for cryptographic use." msgstr "" -#: ../../library/os.rst:5956 -msgid "" -"This function returns random bytes from an OS-specific randomness source. " -"The returned data should be unpredictable enough for cryptographic " -"applications, though its exact quality depends on the OS implementation." +msgid "This function returns random bytes from an OS-specific randomness source. The returned data should be unpredictable enough for cryptographic applications, though its exact quality depends on the OS implementation." msgstr "" -#: ../../library/os.rst:5960 -msgid "" -"On Linux, if the ``getrandom()`` syscall is available, it is used in " -"blocking mode: block until the system urandom entropy pool is initialized " -"(128 bits of entropy are collected by the kernel). See the :pep:`524` for " -"the rationale. On Linux, the :func:`getrandom` function can be used to get " -"random bytes in non-blocking mode (using the :data:`GRND_NONBLOCK` flag) or " -"to poll until the system urandom entropy pool is initialized." +msgid "On Linux, if the ``getrandom()`` syscall is available, it is used in blocking mode: block until the system urandom entropy pool is initialized (128 bits of entropy are collected by the kernel). See the :pep:`524` for the rationale. On Linux, the :func:`getrandom` function can be used to get random bytes in non-blocking mode (using the :data:`GRND_NONBLOCK` flag) or to poll until the system urandom entropy pool is initialized." msgstr "" -#: ../../library/os.rst:5967 -msgid "" -"On a Unix-like system, random bytes are read from the ``/dev/urandom`` " -"device. If the ``/dev/urandom`` device is not available or not readable, " -"the :exc:`NotImplementedError` exception is raised." +msgid "On a Unix-like system, random bytes are read from the ``/dev/urandom`` device. If the ``/dev/urandom`` device is not available or not readable, the :exc:`NotImplementedError` exception is raised." msgstr "" -#: ../../library/os.rst:5971 msgid "On Windows, it will use ``BCryptGenRandom()``." msgstr "" -#: ../../library/os.rst:5974 -msgid "" -"The :mod:`secrets` module provides higher level functions. For an easy-to-" -"use interface to the random number generator provided by your platform, " -"please see :class:`random.SystemRandom`." +msgid "The :mod:`secrets` module provides higher level functions. For an easy-to-use interface to the random number generator provided by your platform, please see :class:`random.SystemRandom`." msgstr "" -#: ../../library/os.rst:5978 -msgid "" -"On Linux 3.17 and newer, the ``getrandom()`` syscall is now used when " -"available. On OpenBSD 5.6 and newer, the C ``getentropy()`` function is now " -"used. These functions avoid the usage of an internal file descriptor." +msgid "On Linux 3.17 and newer, the ``getrandom()`` syscall is now used when available. On OpenBSD 5.6 and newer, the C ``getentropy()`` function is now used. These functions avoid the usage of an internal file descriptor." msgstr "" -#: ../../library/os.rst:5984 -msgid "" -"On Linux, if the ``getrandom()`` syscall blocks (the urandom entropy pool is " -"not initialized yet), fall back on reading ``/dev/urandom``." +msgid "On Linux, if the ``getrandom()`` syscall blocks (the urandom entropy pool is not initialized yet), fall back on reading ``/dev/urandom``." msgstr "" -#: ../../library/os.rst:5988 -msgid "" -"On Linux, ``getrandom()`` is now used in blocking mode to increase the " -"security." +msgid "On Linux, ``getrandom()`` is now used in blocking mode to increase the security." msgstr "" -#: ../../library/os.rst:5992 -msgid "" -"On Windows, ``BCryptGenRandom()`` is used instead of ``CryptGenRandom()`` " -"which is deprecated." +msgid "On Windows, ``BCryptGenRandom()`` is used instead of ``CryptGenRandom()`` which is deprecated." msgstr "" -#: ../../library/os.rst:5998 -msgid "" -"By default, when reading from ``/dev/random``, :func:`getrandom` blocks if " -"no random bytes are available, and when reading from ``/dev/urandom``, it " -"blocks if the entropy pool has not yet been initialized." +msgid "By default, when reading from ``/dev/random``, :func:`getrandom` blocks if no random bytes are available, and when reading from ``/dev/urandom``, it blocks if the entropy pool has not yet been initialized." msgstr "" -#: ../../library/os.rst:6002 -msgid "" -"If the :py:data:`GRND_NONBLOCK` flag is set, then :func:`getrandom` does not " -"block in these cases, but instead immediately raises :exc:`BlockingIOError`." +msgid "If the :py:data:`GRND_NONBLOCK` flag is set, then :func:`getrandom` does not block in these cases, but instead immediately raises :exc:`BlockingIOError`." msgstr "" -#: ../../library/os.rst:6009 -msgid "" -"If this bit is set, then random bytes are drawn from the ``/dev/" -"random`` pool instead of the ``/dev/urandom`` pool." +msgid "If this bit is set, then random bytes are drawn from the ``/dev/random`` pool instead of the ``/dev/urandom`` pool." msgstr "" -#: ../../library/os.rst:386 ../../library/os.rst:552 ../../library/os.rst:756 msgid "user" msgstr "" -#: ../../library/os.rst:386 msgid "effective id" msgstr "" -#: ../../library/os.rst:395 ../../library/os.rst:461 ../../library/os.rst:470 -#: ../../library/os.rst:479 ../../library/os.rst:493 ../../library/os.rst:691 -#: ../../library/os.rst:4763 ../../library/os.rst:4789 msgid "process" msgstr "" -#: ../../library/os.rst:395 ../../library/os.rst:461 msgid "group" msgstr "" -#: ../../library/os.rst:470 ../../library/os.rst:552 msgid "id" msgstr "" -#: ../../library/os.rst:479 msgid "id of parent" msgstr "" -#: ../../library/os.rst:493 ../../library/os.rst:691 msgid "scheduling priority" msgstr "" -#: ../../library/os.rst:575 ../../library/os.rst:851 msgid "environment variables" msgstr "" -#: ../../library/os.rst:575 msgid "setting" msgstr "" -#: ../../library/os.rst:756 msgid "id, setting" msgstr "" -#: ../../library/os.rst:789 msgid "gethostname() (in module socket)" msgstr "" -#: ../../library/os.rst:789 msgid "gethostbyaddr() (in module socket)" msgstr "" -#: ../../library/os.rst:851 ../../library/os.rst:2760 msgid "deleting" msgstr "" -#: ../../library/os.rst:1409 ../../library/os.rst:3139 msgid "module" msgstr "" -#: ../../library/os.rst:1409 msgid "pty" msgstr "" -#: ../../library/os.rst:2141 ../../library/os.rst:2559 -#: ../../library/os.rst:2760 ../../library/os.rst:3802 -#: ../../library/os.rst:3902 msgid "directory" msgstr "" -#: ../../library/os.rst:2141 msgid "changing" msgstr "" -#: ../../library/os.rst:2559 msgid "creating" msgstr "" -#: ../../library/os.rst:2559 msgid "UNC paths" msgstr "" -#: ../../library/os.rst:2559 msgid "and os.makedirs()" msgstr "" -#: ../../library/os.rst:3139 msgid "stat" msgstr "" -#: ../../library/os.rst:3802 ../../library/os.rst:3902 msgid "walking" msgstr "" -#: ../../library/os.rst:3802 ../../library/os.rst:3902 msgid "traversal" msgstr "" -#: ../../library/os.rst:4763 ../../library/os.rst:4789 msgid "killing" msgstr "" -#: ../../library/os.rst:4763 ../../library/os.rst:4789 msgid "signalling" msgstr "" -#: ../../library/os.rst:5836 ../../library/os.rst:5872 msgid ". (dot)" msgstr "" -#: ../../library/os.rst:5836 ../../library/os.rst:5844 -#: ../../library/os.rst:5852 ../../library/os.rst:5863 -#: ../../library/os.rst:5872 msgid "in pathnames" msgstr "" -#: ../../library/os.rst:5844 msgid ".." msgstr "" -#: ../../library/os.rst:5852 ../../library/os.rst:5863 msgid "/ (slash)" msgstr "" -#: ../../library/os.rst:5853 msgid "\\ (backslash)" msgstr "" -#: ../../library/os.rst:5853 msgid "in pathnames (Windows)" msgstr "" -#: ../../library/os.rst:5879 msgid ": (colon)" msgstr "" -#: ../../library/os.rst:5879 msgid "path separator (POSIX)" msgstr "" -#: ../../library/os.rst:5879 msgid "; (semicolon)" msgstr "" diff --git a/library/ossaudiodev.po b/library/ossaudiodev.po index 33d0b17d..919d7d0f 100644 --- a/library/ossaudiodev.po +++ b/library/ossaudiodev.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2024-11-19 01:03+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,19 +21,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/ossaudiodev.rst:2 msgid ":mod:`!ossaudiodev` --- Access to OSS-compatible audio devices" msgstr "" -#: ../../library/ossaudiodev.rst:10 -msgid "" -"This module is no longer part of the Python standard library. It " -"was :ref:`removed in Python 3.13 ` after being " -"deprecated in Python 3.11. The removal was decided in :pep:`594`." +msgid "This module is no longer part of the Python standard library. It was :ref:`removed in Python 3.13 ` after being deprecated in Python 3.11. The removal was decided in :pep:`594`." msgstr "" -#: ../../library/ossaudiodev.rst:14 -msgid "" -"The last version of Python that provided the :mod:`!ossaudiodev` module was " -"`Python 3.12 `_." +msgid "The last version of Python that provided the :mod:`!ossaudiodev` module was `Python 3.12 `_." msgstr "" diff --git a/library/pathlib.po b/library/pathlib.po index 8bc7a261..983abfd0 100644 --- a/library/pathlib.po +++ b/library/pathlib.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:11+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,24 +23,15 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/pathlib.rst:2 msgid ":mod:`!pathlib` --- Object-oriented filesystem paths" msgstr "" -#: ../../library/pathlib.rst:9 msgid "**Source code:** :source:`Lib/pathlib/`" msgstr "" -#: ../../library/pathlib.rst:15 -msgid "" -"This module offers classes representing filesystem paths with semantics " -"appropriate for different operating systems. Path classes are divided " -"between :ref:`pure paths `, which provide purely computational " -"operations without I/O, and :ref:`concrete paths `, which " -"inherit from pure paths but also provide I/O operations." +msgid "This module offers classes representing filesystem paths with semantics appropriate for different operating systems. Path classes are divided between :ref:`pure paths `, which provide purely computational operations without I/O, and :ref:`concrete paths `, which inherit from pure paths but also provide I/O operations." msgstr "" -#: ../../library/pathlib.rst:21 msgid "" "Inheritance diagram showing the classes available in pathlib. The\n" "most basic class is PurePath, which has three direct subclasses:\n" @@ -50,59 +41,36 @@ msgid "" "subclasses PureWindowsPath and Path." msgstr "" -#: ../../library/pathlib.rst:31 -msgid "" -"If you've never used this module before or just aren't sure which class is " -"right for your task, :class:`Path` is most likely what you need. It " -"instantiates a :ref:`concrete path ` for the platform the " -"code is running on." +msgid "If you've never used this module before or just aren't sure which class is right for your task, :class:`Path` is most likely what you need. It instantiates a :ref:`concrete path ` for the platform the code is running on." msgstr "" -#: ../../library/pathlib.rst:35 msgid "Pure paths are useful in some special cases; for example:" msgstr "" -#: ../../library/pathlib.rst:37 -msgid "" -"If you want to manipulate Windows paths on a Unix machine (or vice versa). " -"You cannot instantiate a :class:`WindowsPath` when running on Unix, but you " -"can instantiate :class:`PureWindowsPath`." +msgid "If you want to manipulate Windows paths on a Unix machine (or vice versa). You cannot instantiate a :class:`WindowsPath` when running on Unix, but you can instantiate :class:`PureWindowsPath`." msgstr "" -#: ../../library/pathlib.rst:40 -msgid "" -"You want to make sure that your code only manipulates paths without actually " -"accessing the OS. In this case, instantiating one of the pure classes may be " -"useful since those simply don't have any OS-accessing operations." +msgid "You want to make sure that your code only manipulates paths without actually accessing the OS. In this case, instantiating one of the pure classes may be useful since those simply don't have any OS-accessing operations." msgstr "" -#: ../../library/pathlib.rst:45 msgid ":pep:`428`: The pathlib module -- object-oriented filesystem paths." msgstr "" -#: ../../library/pathlib.rst:48 -msgid "" -"For low-level path manipulation on strings, you can also use " -"the :mod:`os.path` module." +msgid "For low-level path manipulation on strings, you can also use the :mod:`os.path` module." msgstr "" -#: ../../library/pathlib.rst:53 msgid "Basic use" msgstr "" -#: ../../library/pathlib.rst:55 msgid "Importing the main class::" msgstr "" -#: ../../library/pathlib.rst:57 msgid ">>> from pathlib import Path" msgstr "" -#: ../../library/pathlib.rst:59 msgid "Listing subdirectories::" msgstr "" -#: ../../library/pathlib.rst:61 msgid "" ">>> p = Path('.')\n" ">>> [x for x in p.iterdir() if x.is_dir()]\n" @@ -110,11 +78,9 @@ msgid "" " PosixPath('__pycache__'), PosixPath('build')]" msgstr "" -#: ../../library/pathlib.rst:66 msgid "Listing Python source files in this directory tree::" msgstr "" -#: ../../library/pathlib.rst:68 msgid "" ">>> list(p.glob('**/*.py'))\n" "[PosixPath('test_pathlib.py'), PosixPath('setup.py'),\n" @@ -122,11 +88,9 @@ msgid "" " PosixPath('build/lib/pathlib.py')]" msgstr "" -#: ../../library/pathlib.rst:73 msgid "Navigating inside a directory tree::" msgstr "" -#: ../../library/pathlib.rst:75 msgid "" ">>> p = Path('/etc')\n" ">>> q = p / 'init.d' / 'reboot'\n" @@ -136,11 +100,9 @@ msgid "" "PosixPath('/etc/rc.d/init.d/halt')" msgstr "" -#: ../../library/pathlib.rst:82 msgid "Querying path properties::" msgstr "" -#: ../../library/pathlib.rst:84 msgid "" ">>> q.exists()\n" "True\n" @@ -148,59 +110,38 @@ msgid "" "False" msgstr "" -#: ../../library/pathlib.rst:89 msgid "Opening a file::" msgstr "" -#: ../../library/pathlib.rst:91 msgid "" ">>> with q.open() as f: f.readline()\n" "...\n" "'#!/bin/bash\\n'" msgstr "" -#: ../../library/pathlib.rst:97 msgid "Exceptions" msgstr "" -#: ../../library/pathlib.rst:101 -msgid "" -"An exception inheriting :exc:`NotImplementedError` that is raised when an " -"unsupported operation is called on a path object." +msgid "An exception inheriting :exc:`NotImplementedError` that is raised when an unsupported operation is called on a path object." msgstr "" -#: ../../library/pathlib.rst:110 msgid "Pure paths" msgstr "" -#: ../../library/pathlib.rst:112 -msgid "" -"Pure path objects provide path-handling operations which don't actually " -"access a filesystem. There are three ways to access these classes, which we " -"also call *flavours*:" +msgid "Pure path objects provide path-handling operations which don't actually access a filesystem. There are three ways to access these classes, which we also call *flavours*:" msgstr "" -#: ../../library/pathlib.rst:118 -msgid "" -"A generic class that represents the system's path flavour (instantiating it " -"creates either a :class:`PurePosixPath` or a :class:`PureWindowsPath`)::" +msgid "A generic class that represents the system's path flavour (instantiating it creates either a :class:`PurePosixPath` or a :class:`PureWindowsPath`)::" msgstr "" -#: ../../library/pathlib.rst:121 msgid "" ">>> PurePath('setup.py') # Running on a Unix machine\n" "PurePosixPath('setup.py')" msgstr "" -#: ../../library/pathlib.rst:124 -msgid "" -"Each element of *pathsegments* can be either a string representing a path " -"segment, or an object implementing the :class:`os.PathLike` interface where " -"the :meth:`~os.PathLike.__fspath__` method returns a string, such as another " -"path object::" +msgid "Each element of *pathsegments* can be either a string representing a path segment, or an object implementing the :class:`os.PathLike` interface where the :meth:`~os.PathLike.__fspath__` method returns a string, such as another path object::" msgstr "" -#: ../../library/pathlib.rst:129 msgid "" ">>> PurePath('foo', 'some/path', 'bar')\n" "PurePosixPath('foo/some/path/bar')\n" @@ -208,23 +149,17 @@ msgid "" "PurePosixPath('foo/bar')" msgstr "" -#: ../../library/pathlib.rst:134 msgid "When *pathsegments* is empty, the current directory is assumed::" msgstr "" -#: ../../library/pathlib.rst:136 msgid "" ">>> PurePath()\n" "PurePosixPath('.')" msgstr "" -#: ../../library/pathlib.rst:139 -msgid "" -"If a segment is an absolute path, all previous segments are ignored " -"(like :func:`os.path.join`)::" +msgid "If a segment is an absolute path, all previous segments are ignored (like :func:`os.path.join`)::" msgstr "" -#: ../../library/pathlib.rst:142 msgid "" ">>> PurePath('/etc', '/usr', 'lib64')\n" "PurePosixPath('/usr/lib64')\n" @@ -232,26 +167,17 @@ msgid "" "PureWindowsPath('d:bar')" msgstr "" -#: ../../library/pathlib.rst:147 -msgid "" -"On Windows, the drive is not reset when a rooted relative path segment " -"(e.g., ``r'\\foo'``) is encountered::" +msgid "On Windows, the drive is not reset when a rooted relative path segment (e.g., ``r'\\foo'``) is encountered::" msgstr "" -#: ../../library/pathlib.rst:150 msgid "" ">>> PureWindowsPath('c:/Windows', '/Program Files')\n" "PureWindowsPath('c:/Program Files')" msgstr "" -#: ../../library/pathlib.rst:153 -msgid "" -"Spurious slashes and single dots are collapsed, but double dots (``'..'``) " -"and leading double slashes (``'//'``) are not, since this would change the " -"meaning of a path for various reasons (e.g. symbolic links, UNC paths)::" +msgid "Spurious slashes and single dots are collapsed, but double dots (``'..'``) and leading double slashes (``'//'``) are not, since this would change the meaning of a path for various reasons (e.g. symbolic links, UNC paths)::" msgstr "" -#: ../../library/pathlib.rst:157 msgid "" ">>> PurePath('foo//bar')\n" "PurePosixPath('foo/bar')\n" @@ -263,48 +189,29 @@ msgid "" "PurePosixPath('foo/../bar')" msgstr "" -#: ../../library/pathlib.rst:166 -msgid "" -"(a naïve approach would make ``PurePosixPath('foo/../bar')`` equivalent to " -"``PurePosixPath('bar')``, which is wrong if ``foo`` is a symbolic link to " -"another directory)" +msgid "(a naïve approach would make ``PurePosixPath('foo/../bar')`` equivalent to ``PurePosixPath('bar')``, which is wrong if ``foo`` is a symbolic link to another directory)" msgstr "" -#: ../../library/pathlib.rst:170 -msgid "" -"Pure path objects implement the :class:`os.PathLike` interface, allowing " -"them to be used anywhere the interface is accepted." +msgid "Pure path objects implement the :class:`os.PathLike` interface, allowing them to be used anywhere the interface is accepted." msgstr "" -#: ../../library/pathlib.rst:173 msgid "Added support for the :class:`os.PathLike` interface." msgstr "" -#: ../../library/pathlib.rst:178 -msgid "" -"A subclass of :class:`PurePath`, this path flavour represents non-Windows " -"filesystem paths::" +msgid "A subclass of :class:`PurePath`, this path flavour represents non-Windows filesystem paths::" msgstr "" -#: ../../library/pathlib.rst:181 msgid "" ">>> PurePosixPath('/etc/hosts')\n" "PurePosixPath('/etc/hosts')" msgstr "" -#: ../../library/pathlib.rst:184 ../../library/pathlib.rst:196 -#: ../../library/pathlib.rst:783 ../../library/pathlib.rst:793 -#: ../../library/pathlib.rst:808 msgid "*pathsegments* is specified similarly to :class:`PurePath`." msgstr "" -#: ../../library/pathlib.rst:188 -msgid "" -"A subclass of :class:`PurePath`, this path flavour represents Windows " -"filesystem paths, including `UNC paths`_::" +msgid "A subclass of :class:`PurePath`, this path flavour represents Windows filesystem paths, including `UNC paths`_::" msgstr "" -#: ../../library/pathlib.rst:191 msgid "" ">>> PureWindowsPath('c:/', 'Users', 'Ximénez')\n" "PureWindowsPath('c:/Users/Ximénez')\n" @@ -312,24 +219,15 @@ msgid "" "PureWindowsPath('//server/share/file')" msgstr "" -#: ../../library/pathlib.rst:200 -msgid "" -"Regardless of the system you're running on, you can instantiate all of these " -"classes, since they don't provide any operation that does system calls." +msgid "Regardless of the system you're running on, you can instantiate all of these classes, since they don't provide any operation that does system calls." msgstr "" -#: ../../library/pathlib.rst:205 msgid "General properties" msgstr "" -#: ../../library/pathlib.rst:207 -msgid "" -"Paths are immutable and :term:`hashable`. Paths of a same flavour are " -"comparable and orderable. These properties respect the flavour's case-" -"folding semantics::" +msgid "Paths are immutable and :term:`hashable`. Paths of a same flavour are comparable and orderable. These properties respect the flavour's case-folding semantics::" msgstr "" -#: ../../library/pathlib.rst:211 msgid "" ">>> PurePosixPath('foo') == PurePosixPath('FOO')\n" "False\n" @@ -341,34 +239,24 @@ msgid "" "True" msgstr "" -#: ../../library/pathlib.rst:220 msgid "Paths of a different flavour compare unequal and cannot be ordered::" msgstr "" -#: ../../library/pathlib.rst:222 msgid "" ">>> PureWindowsPath('foo') == PurePosixPath('foo')\n" "False\n" ">>> PureWindowsPath('foo') < PurePosixPath('foo')\n" "Traceback (most recent call last):\n" " File \"\", line 1, in \n" -"TypeError: '<' not supported between instances of 'PureWindowsPath' and " -"'PurePosixPath'" +"TypeError: '<' not supported between instances of 'PureWindowsPath' and 'PurePosixPath'" msgstr "" -#: ../../library/pathlib.rst:231 msgid "Operators" msgstr "" -#: ../../library/pathlib.rst:233 -msgid "" -"The slash operator helps create child paths, like :func:`os.path.join`. If " -"the argument is an absolute path, the previous path is ignored. On Windows, " -"the drive is not reset when the argument is a rooted relative path (e.g., " -"``r'\\foo'``)::" +msgid "The slash operator helps create child paths, like :func:`os.path.join`. If the argument is an absolute path, the previous path is ignored. On Windows, the drive is not reset when the argument is a rooted relative path (e.g., ``r'\\foo'``)::" msgstr "" -#: ../../library/pathlib.rst:238 msgid "" ">>> p = PurePath('/etc')\n" ">>> p\n" @@ -384,13 +272,9 @@ msgid "" "PureWindowsPath('c:/Program Files')" msgstr "" -#: ../../library/pathlib.rst:251 -msgid "" -"A path object can be used anywhere an object " -"implementing :class:`os.PathLike` is accepted::" +msgid "A path object can be used anywhere an object implementing :class:`os.PathLike` is accepted::" msgstr "" -#: ../../library/pathlib.rst:254 msgid "" ">>> import os\n" ">>> p = PurePath('/etc')\n" @@ -398,14 +282,9 @@ msgid "" "'/etc'" msgstr "" -#: ../../library/pathlib.rst:259 -msgid "" -"The string representation of a path is the raw filesystem path itself (in " -"native form, e.g. with backslashes under Windows), which you can pass to any " -"function taking a file path as a string::" +msgid "The string representation of a path is the raw filesystem path itself (in native form, e.g. with backslashes under Windows), which you can pass to any function taking a file path as a string::" msgstr "" -#: ../../library/pathlib.rst:263 msgid "" ">>> p = PurePath('/etc')\n" ">>> str(p)\n" @@ -415,39 +294,26 @@ msgid "" "'c:\\\\Program Files'" msgstr "" -#: ../../library/pathlib.rst:270 -msgid "" -"Similarly, calling :class:`bytes` on a path gives the raw filesystem path as " -"a bytes object, as encoded by :func:`os.fsencode`::" +msgid "Similarly, calling :class:`bytes` on a path gives the raw filesystem path as a bytes object, as encoded by :func:`os.fsencode`::" msgstr "" -#: ../../library/pathlib.rst:273 msgid "" ">>> bytes(p)\n" "b'/etc'" msgstr "" -#: ../../library/pathlib.rst:277 -msgid "" -"Calling :class:`bytes` is only recommended under Unix. Under Windows, the " -"unicode form is the canonical representation of filesystem paths." +msgid "Calling :class:`bytes` is only recommended under Unix. Under Windows, the unicode form is the canonical representation of filesystem paths." msgstr "" -#: ../../library/pathlib.rst:282 msgid "Accessing individual parts" msgstr "" -#: ../../library/pathlib.rst:284 -msgid "" -"To access the individual \"parts\" (components) of a path, use the following " -"property:" +msgid "To access the individual \"parts\" (components) of a path, use the following property:" msgstr "" -#: ../../library/pathlib.rst:289 msgid "A tuple giving access to the path's various components::" msgstr "" -#: ../../library/pathlib.rst:291 msgid "" ">>> p = PurePath('/usr/bin/python3')\n" ">>> p.parts\n" @@ -458,29 +324,21 @@ msgid "" "('c:\\\\', 'Program Files', 'PSF')" msgstr "" -#: ../../library/pathlib.rst:299 msgid "(note how the drive and local root are regrouped in a single part)" msgstr "" -#: ../../library/pathlib.rst:303 msgid "Methods and properties" msgstr "" -#: ../../library/pathlib.rst:309 msgid "Pure paths provide the following methods and properties:" msgstr "" -#: ../../library/pathlib.rst:313 -msgid "" -"The implementation of the :mod:`os.path` module used for low-level path " -"parsing and joining: either :mod:`!posixpath` or :mod:`!ntpath`." +msgid "The implementation of the :mod:`os.path` module used for low-level path parsing and joining: either :mod:`!posixpath` or :mod:`!ntpath`." msgstr "" -#: ../../library/pathlib.rst:320 msgid "A string representing the drive letter or name, if any::" msgstr "" -#: ../../library/pathlib.rst:322 msgid "" ">>> PureWindowsPath('c:/Program Files/').drive\n" "'c:'\n" @@ -490,21 +348,17 @@ msgid "" "''" msgstr "" -#: ../../library/pathlib.rst:329 msgid "UNC shares are also considered drives::" msgstr "" -#: ../../library/pathlib.rst:331 msgid "" ">>> PureWindowsPath('//host/share/foo.txt').drive\n" "'\\\\\\\\host\\\\share'" msgstr "" -#: ../../library/pathlib.rst:336 msgid "A string representing the (local or global) root, if any::" msgstr "" -#: ../../library/pathlib.rst:338 msgid "" ">>> PureWindowsPath('c:/Program Files/').root\n" "'\\\\'\n" @@ -514,23 +368,17 @@ msgid "" "'/'" msgstr "" -#: ../../library/pathlib.rst:345 msgid "UNC shares always have a root::" msgstr "" -#: ../../library/pathlib.rst:347 msgid "" ">>> PureWindowsPath('//host/share').root\n" "'\\\\'" msgstr "" -#: ../../library/pathlib.rst:350 -msgid "" -"If the path starts with more than two successive " -"slashes, :class:`~pathlib.PurePosixPath` collapses them::" +msgid "If the path starts with more than two successive slashes, :class:`~pathlib.PurePosixPath` collapses them::" msgstr "" -#: ../../library/pathlib.rst:353 msgid "" ">>> PurePosixPath('//etc').root\n" "'//'\n" @@ -540,25 +388,15 @@ msgid "" "'/'" msgstr "" -#: ../../library/pathlib.rst:362 -msgid "" -"This behavior conforms to *The Open Group Base Specifications Issue 6*, " -"paragraph `4.11 Pathname Resolution `_:" +msgid "This behavior conforms to *The Open Group Base Specifications Issue 6*, paragraph `4.11 Pathname Resolution `_:" msgstr "" -#: ../../library/pathlib.rst:366 -msgid "" -"*\"A pathname that begins with two successive slashes may be interpreted in " -"an implementation-defined manner, although more than two leading slashes " -"shall be treated as a single slash.\"*" +msgid "*\"A pathname that begins with two successive slashes may be interpreted in an implementation-defined manner, although more than two leading slashes shall be treated as a single slash.\"*" msgstr "" -#: ../../library/pathlib.rst:372 msgid "The concatenation of the drive and root::" msgstr "" -#: ../../library/pathlib.rst:374 msgid "" ">>> PureWindowsPath('c:/Program Files/').anchor\n" "'c:\\\\'\n" @@ -570,12 +408,9 @@ msgid "" "'\\\\\\\\host\\\\share\\\\'" msgstr "" -#: ../../library/pathlib.rst:386 -msgid "" -"An immutable sequence providing access to the logical ancestors of the path::" +msgid "An immutable sequence providing access to the logical ancestors of the path::" msgstr "" -#: ../../library/pathlib.rst:389 msgid "" ">>> p = PureWindowsPath('c:/foo/bar/setup.py')\n" ">>> p.parents[0]\n" @@ -586,28 +421,21 @@ msgid "" "PureWindowsPath('c:/')" msgstr "" -#: ../../library/pathlib.rst:397 -msgid "" -"The parents sequence now supports :term:`slices ` and negative index " -"values." +msgid "The parents sequence now supports :term:`slices ` and negative index values." msgstr "" -#: ../../library/pathlib.rst:402 msgid "The logical parent of the path::" msgstr "" -#: ../../library/pathlib.rst:404 msgid "" ">>> p = PurePosixPath('/a/b/c/d')\n" ">>> p.parent\n" "PurePosixPath('/a/b/c')" msgstr "" -#: ../../library/pathlib.rst:408 msgid "You cannot go past an anchor, or empty path::" msgstr "" -#: ../../library/pathlib.rst:410 msgid "" ">>> p = PurePosixPath('/')\n" ">>> p.parent\n" @@ -617,41 +445,29 @@ msgid "" "PurePosixPath('.')" msgstr "" -#: ../../library/pathlib.rst:418 msgid "This is a purely lexical operation, hence the following behaviour::" msgstr "" -#: ../../library/pathlib.rst:420 msgid "" ">>> p = PurePosixPath('foo/..')\n" ">>> p.parent\n" "PurePosixPath('foo')" msgstr "" -#: ../../library/pathlib.rst:424 -msgid "" -"If you want to walk an arbitrary filesystem path upwards, it is recommended " -"to first call :meth:`Path.resolve` so as to resolve symlinks and eliminate " -"``\"..\"`` components." +msgid "If you want to walk an arbitrary filesystem path upwards, it is recommended to first call :meth:`Path.resolve` so as to resolve symlinks and eliminate ``\"..\"`` components." msgstr "" -#: ../../library/pathlib.rst:431 -msgid "" -"A string representing the final path component, excluding the drive and " -"root, if any::" +msgid "A string representing the final path component, excluding the drive and root, if any::" msgstr "" -#: ../../library/pathlib.rst:434 msgid "" ">>> PurePosixPath('my/library/setup.py').name\n" "'setup.py'" msgstr "" -#: ../../library/pathlib.rst:437 msgid "UNC drive names are not considered::" msgstr "" -#: ../../library/pathlib.rst:439 msgid "" ">>> PureWindowsPath('//some/share/setup.py').name\n" "'setup.py'\n" @@ -659,11 +475,9 @@ msgid "" "''" msgstr "" -#: ../../library/pathlib.rst:447 msgid "The last dot-separated portion of the final component, if any::" msgstr "" -#: ../../library/pathlib.rst:449 msgid "" ">>> PurePosixPath('my/library/setup.py').suffix\n" "'.py'\n" @@ -673,20 +487,15 @@ msgid "" "''" msgstr "" -#: ../../library/pathlib.rst:456 msgid "This is commonly called the file extension." msgstr "" -#: ../../library/pathlib.rst:460 ../../library/pathlib.rst:475 -#: ../../library/pathlib.rst:491 msgid "A single dot (\"``.``\") is considered a valid suffix." msgstr "" -#: ../../library/pathlib.rst:464 msgid "A list of the path's suffixes, often called file extensions::" msgstr "" -#: ../../library/pathlib.rst:466 msgid "" ">>> PurePosixPath('my/library.tar.gar').suffixes\n" "['.tar', '.gar']\n" @@ -696,11 +505,9 @@ msgid "" "[]" msgstr "" -#: ../../library/pathlib.rst:480 msgid "The final path component, without its suffix::" msgstr "" -#: ../../library/pathlib.rst:482 msgid "" ">>> PurePosixPath('my/library.tar.gz').stem\n" "'library.tar'\n" @@ -710,12 +517,9 @@ msgid "" "'library'" msgstr "" -#: ../../library/pathlib.rst:496 -msgid "" -"Return a string representation of the path with forward slashes (``/``)::" +msgid "Return a string representation of the path with forward slashes (``/``)::" msgstr "" -#: ../../library/pathlib.rst:498 msgid "" ">>> p = PureWindowsPath('c:\\\\windows')\n" ">>> str(p)\n" @@ -724,13 +528,9 @@ msgid "" "'c:/windows'" msgstr "" -#: ../../library/pathlib.rst:507 -msgid "" -"Return whether the path is absolute or not. A path is considered absolute " -"if it has both a root and (if the flavour allows) a drive::" +msgid "Return whether the path is absolute or not. A path is considered absolute if it has both a root and (if the flavour allows) a drive::" msgstr "" -#: ../../library/pathlib.rst:510 msgid "" ">>> PurePosixPath('/a/b').is_absolute()\n" "True\n" @@ -747,48 +547,27 @@ msgid "" "True" msgstr "" -#: ../../library/pathlib.rst:527 msgid "Return whether or not this path is relative to the *other* path." msgstr "" -#: ../../library/pathlib.rst:535 -msgid "" -"This method is string-based; it neither accesses the filesystem nor treats " -"\"``..``\" segments specially. The following code is equivalent:" +msgid "This method is string-based; it neither accesses the filesystem nor treats \"``..``\" segments specially. The following code is equivalent:" msgstr "" -#: ../../library/pathlib.rst:546 -msgid "" -"Passing additional arguments is deprecated; if supplied, they are joined " -"with *other*." +msgid "Passing additional arguments is deprecated; if supplied, they are joined with *other*." msgstr "" -#: ../../library/pathlib.rst:551 -msgid "" -"With :class:`PureWindowsPath`, return ``True`` if the path is considered " -"reserved under Windows, ``False`` otherwise. With :class:`PurePosixPath`, " -"``False`` is always returned." +msgid "With :class:`PureWindowsPath`, return ``True`` if the path is considered reserved under Windows, ``False`` otherwise. With :class:`PurePosixPath`, ``False`` is always returned." msgstr "" -#: ../../library/pathlib.rst:555 -msgid "" -"Windows path names that contain a colon, or end with a dot or a space, are " -"considered reserved. UNC paths may be reserved." +msgid "Windows path names that contain a colon, or end with a dot or a space, are considered reserved. UNC paths may be reserved." msgstr "" -#: ../../library/pathlib.rst:559 -msgid "" -"This method is deprecated; use :func:`os.path.isreserved` to detect reserved " -"paths on Windows." +msgid "This method is deprecated; use :func:`os.path.isreserved` to detect reserved paths on Windows." msgstr "" -#: ../../library/pathlib.rst:565 -msgid "" -"Calling this method is equivalent to combining the path with each of the " -"given *pathsegments* in turn::" +msgid "Calling this method is equivalent to combining the path with each of the given *pathsegments* in turn::" msgstr "" -#: ../../library/pathlib.rst:568 msgid "" ">>> PurePosixPath('/etc').joinpath('passwd')\n" "PurePosixPath('/etc/passwd')\n" @@ -800,13 +579,9 @@ msgid "" "PureWindowsPath('c:/Program Files')" msgstr "" -#: ../../library/pathlib.rst:580 -msgid "" -"Match this path against the provided glob-style pattern. Return ``True`` if " -"matching is successful, ``False`` otherwise. For example::" +msgid "Match this path against the provided glob-style pattern. Return ``True`` if matching is successful, ``False`` otherwise. For example::" msgstr "" -#: ../../library/pathlib.rst:583 msgid "" ">>> PurePath('a/b.py').full_match('a/*.py')\n" "True\n" @@ -818,15 +593,12 @@ msgid "" "True" msgstr "" -#: ../../library/pathlib.rst:593 ../../library/pathlib.rst:1357 msgid ":ref:`pathlib-pattern-language` documentation." msgstr "" -#: ../../library/pathlib.rst:595 msgid "As with other methods, case-sensitivity follows platform defaults::" msgstr "" -#: ../../library/pathlib.rst:597 msgid "" ">>> PurePosixPath('b.py').full_match('*.PY')\n" "False\n" @@ -834,26 +606,15 @@ msgid "" "True" msgstr "" -#: ../../library/pathlib.rst:602 -msgid "" -"Set *case_sensitive* to ``True`` or ``False`` to override this behaviour." +msgid "Set *case_sensitive* to ``True`` or ``False`` to override this behaviour." msgstr "" -#: ../../library/pathlib.rst:609 -msgid "" -"Match this path against the provided non-recursive glob-style pattern. " -"Return ``True`` if matching is successful, ``False`` otherwise." +msgid "Match this path against the provided non-recursive glob-style pattern. Return ``True`` if matching is successful, ``False`` otherwise." msgstr "" -#: ../../library/pathlib.rst:612 -msgid "" -"This method is similar to :meth:`~PurePath.full_match`, but empty patterns " -"aren't allowed (:exc:`ValueError` is raised), the recursive wildcard " -"\"``**``\" isn't supported (it acts like non-recursive \"``*``\"), and if a " -"relative pattern is provided, then matching is done from the right::" +msgid "This method is similar to :meth:`~PurePath.full_match`, but empty patterns aren't allowed (:exc:`ValueError` is raised), the recursive wildcard \"``**``\" isn't supported (it acts like non-recursive \"``*``\"), and if a relative pattern is provided, then matching is done from the right::" msgstr "" -#: ../../library/pathlib.rst:617 msgid "" ">>> PurePath('a/b.py').match('*.py')\n" "True\n" @@ -863,23 +624,15 @@ msgid "" "False" msgstr "" -#: ../../library/pathlib.rst:624 ../../library/pathlib.rst:1381 -#: ../../library/pathlib.rst:1415 msgid "The *pattern* parameter accepts a :term:`path-like object`." msgstr "" -#: ../../library/pathlib.rst:627 ../../library/pathlib.rst:1375 -#: ../../library/pathlib.rst:1409 msgid "The *case_sensitive* parameter was added." msgstr "" -#: ../../library/pathlib.rst:633 -msgid "" -"Compute a version of this path relative to the path represented by *other*. " -"If it's impossible, :exc:`ValueError` is raised::" +msgid "Compute a version of this path relative to the path represented by *other*. If it's impossible, :exc:`ValueError` is raised::" msgstr "" -#: ../../library/pathlib.rst:636 msgid "" ">>> p = PurePosixPath('/etc/passwd')\n" ">>> p.relative_to('/')\n" @@ -891,19 +644,12 @@ msgid "" " File \"\", line 1, in \n" " File \"pathlib.py\", line 941, in relative_to\n" " raise ValueError(error_message.format(str(self), str(formatted)))\n" -"ValueError: '/etc/passwd' is not in the subpath of '/usr' OR one path is " -"relative and the other is absolute." +"ValueError: '/etc/passwd' is not in the subpath of '/usr' OR one path is relative and the other is absolute." msgstr "" -#: ../../library/pathlib.rst:648 -msgid "" -"When *walk_up* is false (the default), the path must start with *other*. " -"When the argument is true, ``..`` entries may be added to form the relative " -"path. In all other cases, such as the paths referencing different " -"drives, :exc:`ValueError` is raised.::" +msgid "When *walk_up* is false (the default), the path must start with *other*. When the argument is true, ``..`` entries may be added to form the relative path. In all other cases, such as the paths referencing different drives, :exc:`ValueError` is raised.::" msgstr "" -#: ../../library/pathlib.rst:653 msgid "" ">>> p.relative_to('/usr', walk_up=True)\n" "PurePosixPath('../etc/passwd')\n" @@ -912,37 +658,21 @@ msgid "" " File \"\", line 1, in \n" " File \"pathlib.py\", line 941, in relative_to\n" " raise ValueError(error_message.format(str(self), str(formatted)))\n" -"ValueError: '/etc/passwd' is not on the same drive as 'foo' OR one path is " -"relative and the other is absolute." +"ValueError: '/etc/passwd' is not on the same drive as 'foo' OR one path is relative and the other is absolute." msgstr "" -#: ../../library/pathlib.rst:663 -msgid "" -"This function is part of :class:`PurePath` and works with strings. It does " -"not check or access the underlying file structure. This can impact the " -"*walk_up* option as it assumes that no symlinks are present in the path; " -"call :meth:`~Path.resolve` first if necessary to resolve symlinks." +msgid "This function is part of :class:`PurePath` and works with strings. It does not check or access the underlying file structure. This can impact the *walk_up* option as it assumes that no symlinks are present in the path; call :meth:`~Path.resolve` first if necessary to resolve symlinks." msgstr "" -#: ../../library/pathlib.rst:669 -msgid "" -"The *walk_up* parameter was added (old behavior is the same as " -"``walk_up=False``)." +msgid "The *walk_up* parameter was added (old behavior is the same as ``walk_up=False``)." msgstr "" -#: ../../library/pathlib.rst:674 -msgid "" -"Passing additional positional arguments is deprecated; if supplied, they are " -"joined with *other*." +msgid "Passing additional positional arguments is deprecated; if supplied, they are joined with *other*." msgstr "" -#: ../../library/pathlib.rst:679 -msgid "" -"Return a new path with the :attr:`name` changed. If the original path " -"doesn't have a name, ValueError is raised::" +msgid "Return a new path with the :attr:`name` changed. If the original path doesn't have a name, ValueError is raised::" msgstr "" -#: ../../library/pathlib.rst:682 msgid "" ">>> p = PureWindowsPath('c:/Downloads/pathlib.tar.gz')\n" ">>> p.with_name('setup.py')\n" @@ -951,19 +681,14 @@ msgid "" ">>> p.with_name('setup.py')\n" "Traceback (most recent call last):\n" " File \"\", line 1, in \n" -" File \"/home/antoine/cpython/default/Lib/pathlib.py\", line 751, in " -"with_name\n" +" File \"/home/antoine/cpython/default/Lib/pathlib.py\", line 751, in with_name\n" " raise ValueError(\"%r has an empty name\" % (self,))\n" "ValueError: PureWindowsPath('c:/') has an empty name" msgstr "" -#: ../../library/pathlib.rst:696 -msgid "" -"Return a new path with the :attr:`stem` changed. If the original path " -"doesn't have a name, ValueError is raised::" +msgid "Return a new path with the :attr:`stem` changed. If the original path doesn't have a name, ValueError is raised::" msgstr "" -#: ../../library/pathlib.rst:699 msgid "" ">>> p = PureWindowsPath('c:/Downloads/draft.txt')\n" ">>> p.with_stem('final')\n" @@ -975,23 +700,16 @@ msgid "" ">>> p.with_stem('')\n" "Traceback (most recent call last):\n" " File \"\", line 1, in \n" -" File \"/home/antoine/cpython/default/Lib/pathlib.py\", line 861, in " -"with_stem\n" +" File \"/home/antoine/cpython/default/Lib/pathlib.py\", line 861, in with_stem\n" " return self.with_name(stem + self.suffix)\n" -" File \"/home/antoine/cpython/default/Lib/pathlib.py\", line 851, in " -"with_name\n" +" File \"/home/antoine/cpython/default/Lib/pathlib.py\", line 851, in with_name\n" " raise ValueError(\"%r has an empty name\" % (self,))\n" "ValueError: PureWindowsPath('c:/') has an empty name" msgstr "" -#: ../../library/pathlib.rst:720 -msgid "" -"Return a new path with the :attr:`suffix` changed. If the original path " -"doesn't have a suffix, the new *suffix* is appended instead. If the " -"*suffix* is an empty string, the original suffix is removed::" +msgid "Return a new path with the :attr:`suffix` changed. If the original path doesn't have a suffix, the new *suffix* is appended instead. If the *suffix* is an empty string, the original suffix is removed::" msgstr "" -#: ../../library/pathlib.rst:724 msgid "" ">>> p = PureWindowsPath('c:/Downloads/pathlib.tar.gz')\n" ">>> p.with_suffix('.bz2')\n" @@ -1004,21 +722,12 @@ msgid "" "PureWindowsPath('README')" msgstr "" -#: ../../library/pathlib.rst:736 -msgid "" -"A single dot (\"``.``\") is considered a valid suffix. In previous " -"versions, :exc:`ValueError` is raised if a single dot is supplied." +msgid "A single dot (\"``.``\") is considered a valid suffix. In previous versions, :exc:`ValueError` is raised if a single dot is supplied." msgstr "" -#: ../../library/pathlib.rst:742 -msgid "" -"Create a new path object of the same type by combining the given " -"*pathsegments*. This method is called whenever a derivative path is created, " -"such as from :attr:`parent` and :meth:`relative_to`. Subclasses may override " -"this method to pass information to derivative paths, for example::" +msgid "Create a new path object of the same type by combining the given *pathsegments*. This method is called whenever a derivative path is created, such as from :attr:`parent` and :meth:`relative_to`. Subclasses may override this method to pass information to derivative paths, for example::" msgstr "" -#: ../../library/pathlib.rst:747 msgid "" "from pathlib import PurePosixPath\n" "\n" @@ -1035,74 +744,45 @@ msgid "" "print(hosts.session_id) # 42" msgstr "" -#: ../../library/pathlib.rst:768 msgid "Concrete paths" msgstr "" -#: ../../library/pathlib.rst:770 -msgid "" -"Concrete paths are subclasses of the pure path classes. In addition to " -"operations provided by the latter, they also provide methods to do system " -"calls on path objects. There are three ways to instantiate concrete paths:" +msgid "Concrete paths are subclasses of the pure path classes. In addition to operations provided by the latter, they also provide methods to do system calls on path objects. There are three ways to instantiate concrete paths:" msgstr "" -#: ../../library/pathlib.rst:776 -msgid "" -"A subclass of :class:`PurePath`, this class represents concrete paths of the " -"system's path flavour (instantiating it creates either a :class:`PosixPath` " -"or a :class:`WindowsPath`)::" +msgid "A subclass of :class:`PurePath`, this class represents concrete paths of the system's path flavour (instantiating it creates either a :class:`PosixPath` or a :class:`WindowsPath`)::" msgstr "" -#: ../../library/pathlib.rst:780 msgid "" ">>> Path('setup.py')\n" "PosixPath('setup.py')" msgstr "" -#: ../../library/pathlib.rst:787 -msgid "" -"A subclass of :class:`Path` and :class:`PurePosixPath`, this class " -"represents concrete non-Windows filesystem paths::" +msgid "A subclass of :class:`Path` and :class:`PurePosixPath`, this class represents concrete non-Windows filesystem paths::" msgstr "" -#: ../../library/pathlib.rst:790 msgid "" ">>> PosixPath('/etc/hosts')\n" "PosixPath('/etc/hosts')" msgstr "" -#: ../../library/pathlib.rst:795 -msgid "" -"Raises :exc:`UnsupportedOperation` on Windows. In previous " -"versions, :exc:`NotImplementedError` was raised instead." +msgid "Raises :exc:`UnsupportedOperation` on Windows. In previous versions, :exc:`NotImplementedError` was raised instead." msgstr "" -#: ../../library/pathlib.rst:802 -msgid "" -"A subclass of :class:`Path` and :class:`PureWindowsPath`, this class " -"represents concrete Windows filesystem paths::" +msgid "A subclass of :class:`Path` and :class:`PureWindowsPath`, this class represents concrete Windows filesystem paths::" msgstr "" -#: ../../library/pathlib.rst:805 msgid "" ">>> WindowsPath('c:/', 'Users', 'Ximénez')\n" "WindowsPath('c:/Users/Ximénez')" msgstr "" -#: ../../library/pathlib.rst:810 -msgid "" -"Raises :exc:`UnsupportedOperation` on non-Windows platforms. In previous " -"versions, :exc:`NotImplementedError` was raised instead." +msgid "Raises :exc:`UnsupportedOperation` on non-Windows platforms. In previous versions, :exc:`NotImplementedError` was raised instead." msgstr "" -#: ../../library/pathlib.rst:815 -msgid "" -"You can only instantiate the class flavour that corresponds to your system " -"(allowing system calls on non-compatible path flavours could lead to bugs or " -"failures in your application)::" +msgid "You can only instantiate the class flavour that corresponds to your system (allowing system calls on non-compatible path flavours could lead to bugs or failures in your application)::" msgstr "" -#: ../../library/pathlib.rst:819 msgid "" ">>> import os\n" ">>> os.name\n" @@ -1119,43 +799,29 @@ msgid "" "UnsupportedOperation: cannot instantiate 'WindowsPath' on your system" msgstr "" -#: ../../library/pathlib.rst:833 -msgid "" -"Some concrete path methods can raise an :exc:`OSError` if a system call " -"fails (for example because the path doesn't exist)." +msgid "Some concrete path methods can raise an :exc:`OSError` if a system call fails (for example because the path doesn't exist)." msgstr "" -#: ../../library/pathlib.rst:838 msgid "Parsing and generating URIs" msgstr "" -#: ../../library/pathlib.rst:840 -msgid "" -"Concrete path objects can be created from, and represented as, 'file' URIs " -"conforming to :rfc:`8089`." +msgid "Concrete path objects can be created from, and represented as, 'file' URIs conforming to :rfc:`8089`." msgstr "" -#: ../../library/pathlib.rst:845 -msgid "" -"File URIs are not portable across machines with different :ref:`filesystem " -"encodings `." +msgid "File URIs are not portable across machines with different :ref:`filesystem encodings `." msgstr "" -#: ../../library/pathlib.rst:850 msgid "Return a new path object from parsing a 'file' URI. For example::" msgstr "" -#: ../../library/pathlib.rst:852 msgid "" ">>> p = Path.from_uri('file:///etc/hosts')\n" "PosixPath('/etc/hosts')" msgstr "" -#: ../../library/pathlib.rst:855 msgid "On Windows, DOS device and UNC paths may be parsed from URIs::" msgstr "" -#: ../../library/pathlib.rst:857 msgid "" ">>> p = Path.from_uri('file:///c:/windows')\n" "WindowsPath('c:/windows')\n" @@ -1163,11 +829,9 @@ msgid "" "WindowsPath('//server/share')" msgstr "" -#: ../../library/pathlib.rst:862 msgid "Several variant forms are supported::" msgstr "" -#: ../../library/pathlib.rst:864 msgid "" ">>> p = Path.from_uri('file:////server/share')\n" "WindowsPath('//server/share')\n" @@ -1179,26 +843,15 @@ msgid "" "WindowsPath('c:/windows')" msgstr "" -#: ../../library/pathlib.rst:873 -msgid "" -":exc:`ValueError` is raised if the URI does not start with ``file:``, or the " -"parsed path isn't absolute." +msgid ":exc:`ValueError` is raised if the URI does not start with ``file:``, or the parsed path isn't absolute." msgstr "" -#: ../../library/pathlib.rst:878 -msgid "" -"The URL authority is discarded if it matches the local hostname. Otherwise, " -"if the authority isn't empty or ``localhost``, then on Windows a UNC path is " -"returned (as before), and on other platforms a :exc:`ValueError` is raised." +msgid "The URL authority is discarded if it matches the local hostname. Otherwise, if the authority isn't empty or ``localhost``, then on Windows a UNC path is returned (as before), and on other platforms a :exc:`ValueError` is raised." msgstr "" -#: ../../library/pathlib.rst:887 -msgid "" -"Represent the path as a 'file' URI. :exc:`ValueError` is raised if the path " -"isn't absolute." +msgid "Represent the path as a 'file' URI. :exc:`ValueError` is raised if the path isn't absolute." msgstr "" -#: ../../library/pathlib.rst:890 msgid "" ">>> p = PosixPath('/etc/passwd')\n" ">>> p.as_uri()\n" @@ -1208,63 +861,40 @@ msgid "" "'file:///c:/Windows'" msgstr "" -#: ../../library/pathlib.rst:901 -msgid "" -"Calling this method from :class:`PurePath` rather than :class:`Path` is " -"possible but deprecated. The method's use of :func:`os.fsencode` makes it " -"strictly impure." +msgid "Calling this method from :class:`PurePath` rather than :class:`Path` is possible but deprecated. The method's use of :func:`os.fsencode` makes it strictly impure." msgstr "" -#: ../../library/pathlib.rst:907 msgid "Expanding and resolving paths" msgstr "" -#: ../../library/pathlib.rst:911 -msgid "" -"Return a new path object representing the user's home directory (as returned " -"by :func:`os.path.expanduser` with ``~`` construct). If the home directory " -"can't be resolved, :exc:`RuntimeError` is raised." +msgid "Return a new path object representing the user's home directory (as returned by :func:`os.path.expanduser` with ``~`` construct). If the home directory can't be resolved, :exc:`RuntimeError` is raised." msgstr "" -#: ../../library/pathlib.rst:917 msgid "" ">>> Path.home()\n" "PosixPath('/home/antoine')" msgstr "" -#: ../../library/pathlib.rst:925 -msgid "" -"Return a new path with expanded ``~`` and ``~user`` constructs, as returned " -"by :meth:`os.path.expanduser`. If a home directory can't be " -"resolved, :exc:`RuntimeError` is raised." +msgid "Return a new path with expanded ``~`` and ``~user`` constructs, as returned by :meth:`os.path.expanduser`. If a home directory can't be resolved, :exc:`RuntimeError` is raised." msgstr "" -#: ../../library/pathlib.rst:931 msgid "" ">>> p = PosixPath('~/films/Monty Python')\n" ">>> p.expanduser()\n" "PosixPath('/home/eric/films/Monty Python')" msgstr "" -#: ../../library/pathlib.rst:940 -msgid "" -"Return a new path object representing the current directory (as returned " -"by :func:`os.getcwd`)::" +msgid "Return a new path object representing the current directory (as returned by :func:`os.getcwd`)::" msgstr "" -#: ../../library/pathlib.rst:943 msgid "" ">>> Path.cwd()\n" "PosixPath('/home/antoine/pathlib')" msgstr "" -#: ../../library/pathlib.rst:949 -msgid "" -"Make the path absolute, without normalization or resolving symlinks. Returns " -"a new path object::" +msgid "Make the path absolute, without normalization or resolving symlinks. Returns a new path object::" msgstr "" -#: ../../library/pathlib.rst:952 msgid "" ">>> p = Path('tests')\n" ">>> p\n" @@ -1273,13 +903,9 @@ msgid "" "PosixPath('/home/antoine/pathlib/tests')" msgstr "" -#: ../../library/pathlib.rst:961 -msgid "" -"Make the path absolute, resolving any symlinks. A new path object is " -"returned::" +msgid "Make the path absolute, resolving any symlinks. A new path object is returned::" msgstr "" -#: ../../library/pathlib.rst:964 msgid "" ">>> p = Path()\n" ">>> p\n" @@ -1288,45 +914,27 @@ msgid "" "PosixPath('/home/antoine/pathlib')" msgstr "" -#: ../../library/pathlib.rst:970 -msgid "" -"\"``..``\" components are also eliminated (this is the only method to do " -"so)::" +msgid "\"``..``\" components are also eliminated (this is the only method to do so)::" msgstr "" -#: ../../library/pathlib.rst:972 msgid "" ">>> p = Path('docs/../setup.py')\n" ">>> p.resolve()\n" "PosixPath('/home/antoine/pathlib/setup.py')" msgstr "" -#: ../../library/pathlib.rst:976 -msgid "" -"If a path doesn't exist or a symlink loop is encountered, and *strict* is " -"``True``, :exc:`OSError` is raised. If *strict* is ``False``, the path is " -"resolved as far as possible and any remainder is appended without checking " -"whether it exists." +msgid "If a path doesn't exist or a symlink loop is encountered, and *strict* is ``True``, :exc:`OSError` is raised. If *strict* is ``False``, the path is resolved as far as possible and any remainder is appended without checking whether it exists." msgstr "" -#: ../../library/pathlib.rst:981 msgid "The *strict* parameter was added (pre-3.6 behavior is strict)." msgstr "" -#: ../../library/pathlib.rst:984 -msgid "" -"Symlink loops are treated like other errors: :exc:`OSError` is raised in " -"strict mode, and no exception is raised in non-strict mode. In previous " -"versions, :exc:`RuntimeError` is raised no matter the value of *strict*." +msgid "Symlink loops are treated like other errors: :exc:`OSError` is raised in strict mode, and no exception is raised in non-strict mode. In previous versions, :exc:`RuntimeError` is raised no matter the value of *strict*." msgstr "" -#: ../../library/pathlib.rst:992 -msgid "" -"Return the path to which the symbolic link points (as returned " -"by :func:`os.readlink`)::" +msgid "Return the path to which the symbolic link points (as returned by :func:`os.readlink`)::" msgstr "" -#: ../../library/pathlib.rst:995 msgid "" ">>> p = Path('mylink')\n" ">>> p.symlink_to('setup.py')\n" @@ -1334,48 +942,24 @@ msgid "" "PosixPath('setup.py')" msgstr "" -#: ../../library/pathlib.rst:1002 -msgid "" -"Raises :exc:`UnsupportedOperation` if :func:`os.readlink` is not available. " -"In previous versions, :exc:`NotImplementedError` was raised." +msgid "Raises :exc:`UnsupportedOperation` if :func:`os.readlink` is not available. In previous versions, :exc:`NotImplementedError` was raised." msgstr "" -#: ../../library/pathlib.rst:1008 msgid "Querying file type and status" msgstr "" -#: ../../library/pathlib.rst:1012 -msgid "" -":meth:`~Path.exists`, :meth:`~Path.is_dir`, :meth:`~Path.is_file`, :meth:`~Path.is_mount`, :meth:`~Path.is_symlink`, :meth:`~Path.is_block_device`, :meth:`~Path.is_char_device`, :meth:`~Path.is_fifo`, :meth:`~Path.is_socket` " -"now return ``False`` instead of raising an exception for paths that contain " -"characters unrepresentable at the OS level." +msgid ":meth:`~Path.exists`, :meth:`~Path.is_dir`, :meth:`~Path.is_file`, :meth:`~Path.is_mount`, :meth:`~Path.is_symlink`, :meth:`~Path.is_block_device`, :meth:`~Path.is_char_device`, :meth:`~Path.is_fifo`, :meth:`~Path.is_socket` now return ``False`` instead of raising an exception for paths that contain characters unrepresentable at the OS level." msgstr "" -#: ../../library/pathlib.rst:1021 -msgid "" -"The methods given above now return ``False`` instead of raising " -"any :exc:`OSError` exception from the operating system. In previous " -"versions, some kinds of :exc:`OSError` exception are raised, and others " -"suppressed. The new behaviour is consistent " -"with :func:`os.path.exists`, :func:`os.path.isdir`, etc. " -"Use :meth:`~Path.stat` to retrieve the file status without suppressing " -"exceptions." +msgid "The methods given above now return ``False`` instead of raising any :exc:`OSError` exception from the operating system. In previous versions, some kinds of :exc:`OSError` exception are raised, and others suppressed. The new behaviour is consistent with :func:`os.path.exists`, :func:`os.path.isdir`, etc. Use :meth:`~Path.stat` to retrieve the file status without suppressing exceptions." msgstr "" -#: ../../library/pathlib.rst:1031 -msgid "" -"Return an :class:`os.stat_result` object containing information about this " -"path, like :func:`os.stat`. The result is looked up at each call to this " -"method." +msgid "Return an :class:`os.stat_result` object containing information about this path, like :func:`os.stat`. The result is looked up at each call to this method." msgstr "" -#: ../../library/pathlib.rst:1034 -msgid "" -"This method normally follows symlinks; to stat a symlink add the argument " -"``follow_symlinks=False``, or use :meth:`~Path.lstat`." +msgid "This method normally follows symlinks; to stat a symlink add the argument ``follow_symlinks=False``, or use :meth:`~Path.lstat`." msgstr "" -#: ../../library/pathlib.rst:1039 msgid "" ">>> p = Path('setup.py')\n" ">>> p.stat().st_size\n" @@ -1384,33 +968,18 @@ msgid "" "1327883547.852554" msgstr "" -#: ../../library/pathlib.rst:1045 ../../library/pathlib.rst:1075 -#: ../../library/pathlib.rst:1089 ../../library/pathlib.rst:1103 -#: ../../library/pathlib.rst:1742 ../../library/pathlib.rst:1758 -#: ../../library/pathlib.rst:1779 msgid "The *follow_symlinks* parameter was added." msgstr "" -#: ../../library/pathlib.rst:1051 -msgid "" -"Like :meth:`Path.stat` but, if the path points to a symbolic link, return " -"the symbolic link's information rather than its target's." +msgid "Like :meth:`Path.stat` but, if the path points to a symbolic link, return the symbolic link's information rather than its target's." msgstr "" -#: ../../library/pathlib.rst:1057 -msgid "" -"Return ``True`` if the path points to an existing file or directory. " -"``False`` will be returned if the path is invalid, inaccessible or missing. " -"Use :meth:`Path.stat` to distinguish between these cases." +msgid "Return ``True`` if the path points to an existing file or directory. ``False`` will be returned if the path is invalid, inaccessible or missing. Use :meth:`Path.stat` to distinguish between these cases." msgstr "" -#: ../../library/pathlib.rst:1061 -msgid "" -"This method normally follows symlinks; to check if a symlink exists, add the " -"argument ``follow_symlinks=False``." +msgid "This method normally follows symlinks; to check if a symlink exists, add the argument ``follow_symlinks=False``." msgstr "" -#: ../../library/pathlib.rst:1066 msgid "" ">>> Path('.').exists()\n" "True\n" @@ -1422,109 +991,48 @@ msgid "" "False" msgstr "" -#: ../../library/pathlib.rst:1081 -msgid "" -"Return ``True`` if the path points to a regular file. ``False`` will be " -"returned if the path is invalid, inaccessible or missing, or if it points to " -"something other than a regular file. Use :meth:`Path.stat` to distinguish " -"between these cases." +msgid "Return ``True`` if the path points to a regular file. ``False`` will be returned if the path is invalid, inaccessible or missing, or if it points to something other than a regular file. Use :meth:`Path.stat` to distinguish between these cases." msgstr "" -#: ../../library/pathlib.rst:1086 -msgid "" -"This method normally follows symlinks; to exclude symlinks, add the argument " -"``follow_symlinks=False``." +msgid "This method normally follows symlinks; to exclude symlinks, add the argument ``follow_symlinks=False``." msgstr "" -#: ../../library/pathlib.rst:1095 -msgid "" -"Return ``True`` if the path points to a directory. ``False`` will be " -"returned if the path is invalid, inaccessible or missing, or if it points to " -"something other than a directory. Use :meth:`Path.stat` to distinguish " -"between these cases." +msgid "Return ``True`` if the path points to a directory. ``False`` will be returned if the path is invalid, inaccessible or missing, or if it points to something other than a directory. Use :meth:`Path.stat` to distinguish between these cases." msgstr "" -#: ../../library/pathlib.rst:1100 -msgid "" -"This method normally follows symlinks; to exclude symlinks to directories, " -"add the argument ``follow_symlinks=False``." +msgid "This method normally follows symlinks; to exclude symlinks to directories, add the argument ``follow_symlinks=False``." msgstr "" -#: ../../library/pathlib.rst:1109 -msgid "" -"Return ``True`` if the path points to a symbolic link, even if that symlink " -"is broken. ``False`` will be returned if the path is invalid, inaccessible " -"or missing, or if it points to something other than a symbolic link. " -"Use :meth:`Path.stat` to distinguish between these cases." +msgid "Return ``True`` if the path points to a symbolic link, even if that symlink is broken. ``False`` will be returned if the path is invalid, inaccessible or missing, or if it points to something other than a symbolic link. Use :meth:`Path.stat` to distinguish between these cases." msgstr "" -#: ../../library/pathlib.rst:1117 -msgid "" -"Return ``True`` if the path points to a junction, and ``False`` for any " -"other type of file. Currently only Windows supports junctions." +msgid "Return ``True`` if the path points to a junction, and ``False`` for any other type of file. Currently only Windows supports junctions." msgstr "" -#: ../../library/pathlib.rst:1125 -msgid "" -"Return ``True`` if the path is a :dfn:`mount point`: a point in a file " -"system where a different file system has been mounted. On POSIX, the " -"function checks whether *path*'s parent, :file:`path/..`, is on a different " -"device than *path*, or whether :file:`path/..` and *path* point to the same " -"i-node on the same device --- this should detect mount points for all Unix " -"and POSIX variants. On Windows, a mount point is considered to be a drive " -"letter root (e.g. ``c:\\``), a UNC share (e.g. ``\\\\server\\share``), or a " -"mounted filesystem directory." +msgid "Return ``True`` if the path is a :dfn:`mount point`: a point in a file system where a different file system has been mounted. On POSIX, the function checks whether *path*'s parent, :file:`path/..`, is on a different device than *path*, or whether :file:`path/..` and *path* point to the same i-node on the same device --- this should detect mount points for all Unix and POSIX variants. On Windows, a mount point is considered to be a drive letter root (e.g. ``c:\\``), a UNC share (e.g. ``\\\\server\\share``), or a mounted filesystem directory." msgstr "" -#: ../../library/pathlib.rst:1136 msgid "Windows support was added." msgstr "" -#: ../../library/pathlib.rst:1141 -msgid "" -"Return ``True`` if the path points to a Unix socket. ``False`` will be " -"returned if the path is invalid, inaccessible or missing, or if it points to " -"something other than a Unix socket. Use :meth:`Path.stat` to distinguish " -"between these cases." +msgid "Return ``True`` if the path points to a Unix socket. ``False`` will be returned if the path is invalid, inaccessible or missing, or if it points to something other than a Unix socket. Use :meth:`Path.stat` to distinguish between these cases." msgstr "" -#: ../../library/pathlib.rst:1149 -msgid "" -"Return ``True`` if the path points to a FIFO. ``False`` will be returned if " -"the path is invalid, inaccessible or missing, or if it points to something " -"other than a FIFO. Use :meth:`Path.stat` to distinguish between these cases." +msgid "Return ``True`` if the path points to a FIFO. ``False`` will be returned if the path is invalid, inaccessible or missing, or if it points to something other than a FIFO. Use :meth:`Path.stat` to distinguish between these cases." msgstr "" -#: ../../library/pathlib.rst:1157 -msgid "" -"Return ``True`` if the path points to a block device. ``False`` will be " -"returned if the path is invalid, inaccessible or missing, or if it points to " -"something other than a block device. Use :meth:`Path.stat` to distinguish " -"between these cases." +msgid "Return ``True`` if the path points to a block device. ``False`` will be returned if the path is invalid, inaccessible or missing, or if it points to something other than a block device. Use :meth:`Path.stat` to distinguish between these cases." msgstr "" -#: ../../library/pathlib.rst:1165 -msgid "" -"Return ``True`` if the path points to a character device. ``False`` will be " -"returned if the path is invalid, inaccessible or missing, or if it points to " -"something other than a character device. Use :meth:`Path.stat` to " -"distinguish between these cases." +msgid "Return ``True`` if the path points to a character device. ``False`` will be returned if the path is invalid, inaccessible or missing, or if it points to something other than a character device. Use :meth:`Path.stat` to distinguish between these cases." msgstr "" -#: ../../library/pathlib.rst:1173 -msgid "" -"Return whether this path points to the same file as *other_path*, which can " -"be either a Path object, or a string. The semantics are similar " -"to :func:`os.path.samefile` and :func:`os.path.samestat`." +msgid "Return whether this path points to the same file as *other_path*, which can be either a Path object, or a string. The semantics are similar to :func:`os.path.samefile` and :func:`os.path.samestat`." msgstr "" -#: ../../library/pathlib.rst:1177 -msgid "" -"An :exc:`OSError` can be raised if either file cannot be accessed for some " -"reason." +msgid "An :exc:`OSError` can be raised if either file cannot be accessed for some reason." msgstr "" -#: ../../library/pathlib.rst:1182 msgid "" ">>> p = Path('spam')\n" ">>> q = Path('eggs')\n" @@ -1534,15 +1042,9 @@ msgid "" "True" msgstr "" -#: ../../library/pathlib.rst:1194 -msgid "" -"A :class:`~pathlib.types.PathInfo` object that supports querying file type " -"information. The object exposes methods that cache their results, which can " -"help reduce the number of system calls needed when switching on file type. " -"For example::" +msgid "A :class:`~pathlib.types.PathInfo` object that supports querying file type information. The object exposes methods that cache their results, which can help reduce the number of system calls needed when switching on file type. For example::" msgstr "" -#: ../../library/pathlib.rst:1199 msgid "" ">>> p = Path('src')\n" ">>> if p.info.is_symlink():\n" @@ -1557,34 +1059,18 @@ msgid "" "directory" msgstr "" -#: ../../library/pathlib.rst:1211 -msgid "" -"If the path was generated from :meth:`Path.iterdir` then this attribute is " -"initialized with some information about the file type gleaned from scanning " -"the parent directory. Merely accessing :attr:`Path.info` does not perform " -"any filesystem queries." +msgid "If the path was generated from :meth:`Path.iterdir` then this attribute is initialized with some information about the file type gleaned from scanning the parent directory. Merely accessing :attr:`Path.info` does not perform any filesystem queries." msgstr "" -#: ../../library/pathlib.rst:1216 -msgid "" -"To fetch up-to-date information, it's best to " -"call :meth:`Path.is_dir`, :meth:`~Path.is_file` and :meth:`~Path.is_symlink` " -"rather than methods of this attribute. There is no way to reset the cache; " -"instead you can create a new path object with an empty info cache via ``p = " -"Path(p)``." +msgid "To fetch up-to-date information, it's best to call :meth:`Path.is_dir`, :meth:`~Path.is_file` and :meth:`~Path.is_symlink` rather than methods of this attribute. There is no way to reset the cache; instead you can create a new path object with an empty info cache via ``p = Path(p)``." msgstr "" -#: ../../library/pathlib.rst:1225 msgid "Reading and writing files" msgstr "" -#: ../../library/pathlib.rst:1230 -msgid "" -"Open the file pointed to by the path, like the built-in :func:`open` " -"function does::" +msgid "Open the file pointed to by the path, like the built-in :func:`open` function does::" msgstr "" -#: ../../library/pathlib.rst:1233 msgid "" ">>> p = Path('setup.py')\n" ">>> with p.open() as f:\n" @@ -1593,11 +1079,9 @@ msgid "" "'#!/usr/bin/env python3\\n'" msgstr "" -#: ../../library/pathlib.rst:1242 msgid "Return the decoded contents of the pointed-to file as a string::" msgstr "" -#: ../../library/pathlib.rst:1244 ../../library/pathlib.rst:1277 msgid "" ">>> p = Path('my_text_file')\n" ">>> p.write_text('Text file contents')\n" @@ -1606,21 +1090,15 @@ msgid "" "'Text file contents'" msgstr "" -#: ../../library/pathlib.rst:1250 -msgid "" -"The file is opened and then closed. The optional parameters have the same " -"meaning as in :func:`open`." +msgid "The file is opened and then closed. The optional parameters have the same meaning as in :func:`open`." msgstr "" -#: ../../library/pathlib.rst:1255 ../../library/pathlib.rst:1288 msgid "The *newline* parameter was added." msgstr "" -#: ../../library/pathlib.rst:1261 msgid "Return the binary contents of the pointed-to file as a bytes object::" msgstr "" -#: ../../library/pathlib.rst:1263 ../../library/pathlib.rst:1297 msgid "" ">>> p = Path('my_binary_file')\n" ">>> p.write_bytes(b'Binary file contents')\n" @@ -1629,39 +1107,24 @@ msgid "" "b'Binary file contents'" msgstr "" -#: ../../library/pathlib.rst:1274 -msgid "" -"Open the file pointed to in text mode, write *data* to it, and close the " -"file::" +msgid "Open the file pointed to in text mode, write *data* to it, and close the file::" msgstr "" -#: ../../library/pathlib.rst:1283 -msgid "" -"An existing file of the same name is overwritten. The optional parameters " -"have the same meaning as in :func:`open`." +msgid "An existing file of the same name is overwritten. The optional parameters have the same meaning as in :func:`open`." msgstr "" -#: ../../library/pathlib.rst:1294 -msgid "" -"Open the file pointed to in bytes mode, write *data* to it, and close the " -"file::" +msgid "Open the file pointed to in bytes mode, write *data* to it, and close the file::" msgstr "" -#: ../../library/pathlib.rst:1303 msgid "An existing file of the same name is overwritten." msgstr "" -#: ../../library/pathlib.rst:1309 msgid "Reading directories" msgstr "" -#: ../../library/pathlib.rst:1313 -msgid "" -"When the path points to a directory, yield path objects of the directory " -"contents::" +msgid "When the path points to a directory, yield path objects of the directory contents::" msgstr "" -#: ../../library/pathlib.rst:1316 msgid "" ">>> p = Path('docs')\n" ">>> for child in p.iterdir(): child\n" @@ -1675,31 +1138,18 @@ msgid "" "PosixPath('docs/Makefile')" msgstr "" -#: ../../library/pathlib.rst:1327 -msgid "" -"The children are yielded in arbitrary order, and the special entries ``'.'`` " -"and ``'..'`` are not included. If a file is removed from or added to the " -"directory after creating the iterator, it is unspecified whether a path " -"object for that file is included." +msgid "The children are yielded in arbitrary order, and the special entries ``'.'`` and ``'..'`` are not included. If a file is removed from or added to the directory after creating the iterator, it is unspecified whether a path object for that file is included." msgstr "" -#: ../../library/pathlib.rst:1332 -msgid "" -"If the path is not a directory or otherwise inaccessible, :exc:`OSError` is " -"raised." +msgid "If the path is not a directory or otherwise inaccessible, :exc:`OSError` is raised." msgstr "" -#: ../../library/pathlib.rst:1338 -msgid "" -"Glob the given relative *pattern* in the directory represented by this path, " -"yielding all matching files (of any kind)::" +msgid "Glob the given relative *pattern* in the directory represented by this path, yielding all matching files (of any kind)::" msgstr "" -#: ../../library/pathlib.rst:1341 msgid "" ">>> sorted(Path('.').glob('*.py'))\n" -"[PosixPath('pathlib.py'), PosixPath('setup.py'), " -"PosixPath('test_pathlib.py')]\n" +"[PosixPath('pathlib.py'), PosixPath('setup.py'), PosixPath('test_pathlib.py')]\n" ">>> sorted(Path('.').glob('*/*.py'))\n" "[PosixPath('docs/conf.py')]\n" ">>> sorted(Path('.').glob('**/*.py'))\n" @@ -1710,167 +1160,72 @@ msgid "" " PosixPath('test_pathlib.py')]" msgstr "" -#: ../../library/pathlib.rst:1353 ../../library/pathlib.rst:1396 -msgid "" -"The paths are returned in no particular order. If you need a specific order, " -"sort the results." +msgid "The paths are returned in no particular order. If you need a specific order, sort the results." msgstr "" -#: ../../library/pathlib.rst:1359 -msgid "" -"By default, or when the *case_sensitive* keyword-only argument is set to " -"``None``, this method matches paths using platform-specific casing rules: " -"typically, case-sensitive on POSIX, and case-insensitive on Windows. Set " -"*case_sensitive* to ``True`` or ``False`` to override this behaviour." +msgid "By default, or when the *case_sensitive* keyword-only argument is set to ``None``, this method matches paths using platform-specific casing rules: typically, case-sensitive on POSIX, and case-insensitive on Windows. Set *case_sensitive* to ``True`` or ``False`` to override this behaviour." msgstr "" -#: ../../library/pathlib.rst:1364 -msgid "" -"By default, or when the *recurse_symlinks* keyword-only argument is set to " -"``False``, this method follows symlinks except when expanding \"``**``\" " -"wildcards. Set *recurse_symlinks* to ``True`` to always follow symlinks." +msgid "By default, or when the *recurse_symlinks* keyword-only argument is set to ``False``, this method follows symlinks except when expanding \"``**``\" wildcards. Set *recurse_symlinks* to ``True`` to always follow symlinks." msgstr "" -#: ../../library/pathlib.rst:1369 ../../library/pathlib.rst:1400 -msgid "" -"Any :exc:`OSError` exceptions raised from scanning the filesystem are " -"suppressed. This includes :exc:`PermissionError` when accessing directories " -"without read permission." +msgid "Any :exc:`OSError` exceptions raised from scanning the filesystem are suppressed. This includes :exc:`PermissionError` when accessing directories without read permission." msgstr "" -#: ../../library/pathlib.rst:1373 -msgid "" -"Raises an :ref:`auditing event ` ``pathlib.Path.glob`` with " -"arguments ``self``, ``pattern``." +msgid "Raises an :ref:`auditing event ` ``pathlib.Path.glob`` with arguments ``self``, ``pattern``." msgstr "" -#: ../../library/pathlib.rst:1378 ../../library/pathlib.rst:1412 msgid "The *recurse_symlinks* parameter was added." msgstr "" -#: ../../library/pathlib.rst:1384 -msgid "" -"Any :exc:`OSError` exceptions raised from scanning the filesystem are " -"suppressed. In previous versions, such exceptions are suppressed in many " -"cases, but not all." +msgid "Any :exc:`OSError` exceptions raised from scanning the filesystem are suppressed. In previous versions, such exceptions are suppressed in many cases, but not all." msgstr "" -#: ../../library/pathlib.rst:1392 -msgid "" -"Glob the given relative *pattern* recursively. This is like " -"calling :func:`Path.glob` with \"``**/``\" added in front of the *pattern*." +msgid "Glob the given relative *pattern* recursively. This is like calling :func:`Path.glob` with \"``**/``\" added in front of the *pattern*." msgstr "" -#: ../../library/pathlib.rst:1405 msgid ":ref:`pathlib-pattern-language` and :meth:`Path.glob` documentation." msgstr "" -#: ../../library/pathlib.rst:1407 -msgid "" -"Raises an :ref:`auditing event ` ``pathlib.Path.rglob`` with " -"arguments ``self``, ``pattern``." +msgid "Raises an :ref:`auditing event ` ``pathlib.Path.rglob`` with arguments ``self``, ``pattern``." msgstr "" -#: ../../library/pathlib.rst:1421 -msgid "" -"Generate the file names in a directory tree by walking the tree either top-" -"down or bottom-up." +msgid "Generate the file names in a directory tree by walking the tree either top-down or bottom-up." msgstr "" -#: ../../library/pathlib.rst:1424 -msgid "" -"For each directory in the directory tree rooted at *self* (including *self* " -"but excluding '.' and '..'), the method yields a 3-tuple of ``(dirpath, " -"dirnames, filenames)``." +msgid "For each directory in the directory tree rooted at *self* (including *self* but excluding '.' and '..'), the method yields a 3-tuple of ``(dirpath, dirnames, filenames)``." msgstr "" -#: ../../library/pathlib.rst:1428 -msgid "" -"*dirpath* is a :class:`Path` to the directory currently being walked, " -"*dirnames* is a list of strings for the names of subdirectories in *dirpath* " -"(excluding ``'.'`` and ``'..'``), and *filenames* is a list of strings for " -"the names of the non-directory files in *dirpath*. To get a full path (which " -"begins with *self*) to a file or directory in *dirpath*, do ``dirpath / " -"name``. Whether or not the lists are sorted is file system-dependent." +msgid "*dirpath* is a :class:`Path` to the directory currently being walked, *dirnames* is a list of strings for the names of subdirectories in *dirpath* (excluding ``'.'`` and ``'..'``), and *filenames* is a list of strings for the names of the non-directory files in *dirpath*. To get a full path (which begins with *self*) to a file or directory in *dirpath*, do ``dirpath / name``. Whether or not the lists are sorted is file system-dependent." msgstr "" -#: ../../library/pathlib.rst:1436 -msgid "" -"If the optional argument *top_down* is true (which is the default), the " -"triple for a directory is generated before the triples for any of its " -"subdirectories (directories are walked top-down). If *top_down* is false, " -"the triple for a directory is generated after the triples for all of its " -"subdirectories (directories are walked bottom-up). No matter the value of " -"*top_down*, the list of subdirectories is retrieved before the triples for " -"the directory and its subdirectories are walked." +msgid "If the optional argument *top_down* is true (which is the default), the triple for a directory is generated before the triples for any of its subdirectories (directories are walked top-down). If *top_down* is false, the triple for a directory is generated after the triples for all of its subdirectories (directories are walked bottom-up). No matter the value of *top_down*, the list of subdirectories is retrieved before the triples for the directory and its subdirectories are walked." msgstr "" -#: ../../library/pathlib.rst:1444 -msgid "" -"When *top_down* is true, the caller can modify the *dirnames* list in-place " -"(for example, using :keyword:`del` or slice assignment), " -"and :meth:`Path.walk` will only recurse into the subdirectories whose names " -"remain in *dirnames*. This can be used to prune the search, or to impose a " -"specific order of visiting, or even to inform :meth:`Path.walk` about " -"directories the caller creates or renames before it " -"resumes :meth:`Path.walk` again. Modifying *dirnames* when *top_down* is " -"false has no effect on the behavior of :meth:`Path.walk` since the " -"directories in *dirnames* have already been generated by the time *dirnames* " -"is yielded to the caller." +msgid "When *top_down* is true, the caller can modify the *dirnames* list in-place (for example, using :keyword:`del` or slice assignment), and :meth:`Path.walk` will only recurse into the subdirectories whose names remain in *dirnames*. This can be used to prune the search, or to impose a specific order of visiting, or even to inform :meth:`Path.walk` about directories the caller creates or renames before it resumes :meth:`Path.walk` again. Modifying *dirnames* when *top_down* is false has no effect on the behavior of :meth:`Path.walk` since the directories in *dirnames* have already been generated by the time *dirnames* is yielded to the caller." msgstr "" -#: ../../library/pathlib.rst:1454 -msgid "" -"By default, errors from :func:`os.scandir` are ignored. If the optional " -"argument *on_error* is specified, it should be a callable; it will be called " -"with one argument, an :exc:`OSError` instance. The callable can handle the " -"error to continue the walk or re-raise it to stop the walk. Note that the " -"filename is available as the ``filename`` attribute of the exception object." +msgid "By default, errors from :func:`os.scandir` are ignored. If the optional argument *on_error* is specified, it should be a callable; it will be called with one argument, an :exc:`OSError` instance. The callable can handle the error to continue the walk or re-raise it to stop the walk. Note that the filename is available as the ``filename`` attribute of the exception object." msgstr "" -#: ../../library/pathlib.rst:1460 -msgid "" -"By default, :meth:`Path.walk` does not follow symbolic links, and instead " -"adds them to the *filenames* list. Set *follow_symlinks* to true to resolve " -"symlinks and place them in *dirnames* and *filenames* as appropriate for " -"their targets, and consequently visit directories pointed to by symlinks " -"(where supported)." +msgid "By default, :meth:`Path.walk` does not follow symbolic links, and instead adds them to the *filenames* list. Set *follow_symlinks* to true to resolve symlinks and place them in *dirnames* and *filenames* as appropriate for their targets, and consequently visit directories pointed to by symlinks (where supported)." msgstr "" -#: ../../library/pathlib.rst:1467 -msgid "" -"Be aware that setting *follow_symlinks* to true can lead to infinite " -"recursion if a link points to a parent directory of " -"itself. :meth:`Path.walk` does not keep track of the directories it has " -"already visited." +msgid "Be aware that setting *follow_symlinks* to true can lead to infinite recursion if a link points to a parent directory of itself. :meth:`Path.walk` does not keep track of the directories it has already visited." msgstr "" -#: ../../library/pathlib.rst:1472 -msgid "" -":meth:`Path.walk` assumes the directories it walks are not modified during " -"execution. For example, if a directory from *dirnames* has been replaced " -"with a symlink and *follow_symlinks* is false, :meth:`Path.walk` will still " -"try to descend into it. To prevent such behavior, remove directories from " -"*dirnames* as appropriate." +msgid ":meth:`Path.walk` assumes the directories it walks are not modified during execution. For example, if a directory from *dirnames* has been replaced with a symlink and *follow_symlinks* is false, :meth:`Path.walk` will still try to descend into it. To prevent such behavior, remove directories from *dirnames* as appropriate." msgstr "" -#: ../../library/pathlib.rst:1480 -msgid "" -"Unlike :func:`os.walk`, :meth:`Path.walk` lists symlinks to directories in " -"*filenames* if *follow_symlinks* is false." +msgid "Unlike :func:`os.walk`, :meth:`Path.walk` lists symlinks to directories in *filenames* if *follow_symlinks* is false." msgstr "" -#: ../../library/pathlib.rst:1483 -msgid "" -"This example displays the number of bytes used by all files in each " -"directory, while ignoring ``__pycache__`` directories::" +msgid "This example displays the number of bytes used by all files in each directory, while ignoring ``__pycache__`` directories::" msgstr "" -#: ../../library/pathlib.rst:1486 msgid "" "from pathlib import Path\n" -"for root, dirs, files in Path(\"cpython/Lib/" -"concurrent\").walk(on_error=print):\n" +"for root, dirs, files in Path(\"cpython/Lib/concurrent\").walk(on_error=print):\n" " print(\n" " root,\n" " \"consumes\",\n" @@ -1883,14 +1238,9 @@ msgid "" " dirs.remove('__pycache__')" msgstr "" -#: ../../library/pathlib.rst:1499 -msgid "" -"This next example is a simple implementation of :func:`shutil.rmtree`. " -"Walking the tree bottom-up is essential as :func:`rmdir` doesn't allow " -"deleting a directory before it is empty::" +msgid "This next example is a simple implementation of :func:`shutil.rmtree`. Walking the tree bottom-up is essential as :func:`rmdir` doesn't allow deleting a directory before it is empty::" msgstr "" -#: ../../library/pathlib.rst:1503 msgid "" "# Delete everything reachable from the directory \"top\".\n" "# CAUTION: This is dangerous! For example, if top == Path('/'),\n" @@ -1902,76 +1252,39 @@ msgid "" " (root / name).rmdir()" msgstr "" -#: ../../library/pathlib.rst:1516 msgid "Creating files and directories" msgstr "" -#: ../../library/pathlib.rst:1520 -msgid "" -"Create a file at this given path. If *mode* is given, it is combined with " -"the process's ``umask`` value to determine the file mode and access flags. " -"If the file already exists, the function succeeds when *exist_ok* is true " -"(and its modification time is updated to the current time), " -"otherwise :exc:`FileExistsError` is raised." +msgid "Create a file at this given path. If *mode* is given, it is combined with the process's ``umask`` value to determine the file mode and access flags. If the file already exists, the function succeeds when *exist_ok* is true (and its modification time is updated to the current time), otherwise :exc:`FileExistsError` is raised." msgstr "" -#: ../../library/pathlib.rst:1527 -msgid "" -"The :meth:`~Path.open`, :meth:`~Path.write_text` " -"and :meth:`~Path.write_bytes` methods are often used to create files." +msgid "The :meth:`~Path.open`, :meth:`~Path.write_text` and :meth:`~Path.write_bytes` methods are often used to create files." msgstr "" -#: ../../library/pathlib.rst:1533 -msgid "" -"Create a new directory at this given path. If *mode* is given, it is " -"combined with the process's ``umask`` value to determine the file mode and " -"access flags. If the path already exists, :exc:`FileExistsError` is raised." +msgid "Create a new directory at this given path. If *mode* is given, it is combined with the process's ``umask`` value to determine the file mode and access flags. If the path already exists, :exc:`FileExistsError` is raised." msgstr "" -#: ../../library/pathlib.rst:1538 -msgid "" -"If *parents* is true, any missing parents of this path are created as " -"needed; they are created with the default permissions without taking *mode* " -"into account (mimicking the POSIX ``mkdir -p`` command)." +msgid "If *parents* is true, any missing parents of this path are created as needed; they are created with the default permissions without taking *mode* into account (mimicking the POSIX ``mkdir -p`` command)." msgstr "" -#: ../../library/pathlib.rst:1542 -msgid "" -"If *parents* is false (the default), a missing parent " -"raises :exc:`FileNotFoundError`." +msgid "If *parents* is false (the default), a missing parent raises :exc:`FileNotFoundError`." msgstr "" -#: ../../library/pathlib.rst:1545 -msgid "" -"If *exist_ok* is false (the default), :exc:`FileExistsError` is raised if " -"the target directory already exists." +msgid "If *exist_ok* is false (the default), :exc:`FileExistsError` is raised if the target directory already exists." msgstr "" -#: ../../library/pathlib.rst:1548 -msgid "" -"If *exist_ok* is true, :exc:`FileExistsError` will not be raised unless the " -"given path already exists in the file system and is not a directory (same " -"behavior as the POSIX ``mkdir -p`` command)." +msgid "If *exist_ok* is true, :exc:`FileExistsError` will not be raised unless the given path already exists in the file system and is not a directory (same behavior as the POSIX ``mkdir -p`` command)." msgstr "" -#: ../../library/pathlib.rst:1552 msgid "The *exist_ok* parameter was added." msgstr "" -#: ../../library/pathlib.rst:1558 msgid "Make this path a symbolic link pointing to *target*." msgstr "" -#: ../../library/pathlib.rst:1560 -msgid "" -"On Windows, a symlink represents either a file or a directory, and does not " -"morph to the target dynamically. If the target is present, the type of the " -"symlink will be created to match. Otherwise, the symlink will be created as " -"a directory if *target_is_directory* is true or a file symlink (the default) " -"otherwise. On non-Windows platforms, *target_is_directory* is ignored." +msgid "On Windows, a symlink represents either a file or a directory, and does not morph to the target dynamically. If the target is present, the type of the symlink will be created to match. Otherwise, the symlink will be created as a directory if *target_is_directory* is true or a file symlink (the default) otherwise. On non-Windows platforms, *target_is_directory* is ignored." msgstr "" -#: ../../library/pathlib.rst:1568 msgid "" ">>> p = Path('mylink')\n" ">>> p.symlink_to('setup.py')\n" @@ -1983,85 +1296,42 @@ msgid "" "8" msgstr "" -#: ../../library/pathlib.rst:1578 -msgid "" -"The order of arguments (link, target) is the reverse of :func:`os.symlink`'s." +msgid "The order of arguments (link, target) is the reverse of :func:`os.symlink`'s." msgstr "" -#: ../../library/pathlib.rst:1581 -msgid "" -"Raises :exc:`UnsupportedOperation` if :func:`os.symlink` is not available. " -"In previous versions, :exc:`NotImplementedError` was raised." +msgid "Raises :exc:`UnsupportedOperation` if :func:`os.symlink` is not available. In previous versions, :exc:`NotImplementedError` was raised." msgstr "" -#: ../../library/pathlib.rst:1588 msgid "Make this path a hard link to the same file as *target*." msgstr "" -#: ../../library/pathlib.rst:1591 -msgid "" -"The order of arguments (link, target) is the reverse of :func:`os.link`'s." +msgid "The order of arguments (link, target) is the reverse of :func:`os.link`'s." msgstr "" -#: ../../library/pathlib.rst:1596 -msgid "" -"Raises :exc:`UnsupportedOperation` if :func:`os.link` is not available. In " -"previous versions, :exc:`NotImplementedError` was raised." +msgid "Raises :exc:`UnsupportedOperation` if :func:`os.link` is not available. In previous versions, :exc:`NotImplementedError` was raised." msgstr "" -#: ../../library/pathlib.rst:1602 msgid "Copying, moving and deleting" msgstr "" -#: ../../library/pathlib.rst:1606 -msgid "" -"Copy this file or directory tree to the given *target*, and return a " -"new :class:`!Path` instance pointing to *target*." +msgid "Copy this file or directory tree to the given *target*, and return a new :class:`!Path` instance pointing to *target*." msgstr "" -#: ../../library/pathlib.rst:1609 -msgid "" -"If the source is a file, the target will be replaced if it is an existing " -"file. If the source is a symlink and *follow_symlinks* is true (the " -"default), the symlink's target is copied. Otherwise, the symlink is " -"recreated at the destination." +msgid "If the source is a file, the target will be replaced if it is an existing file. If the source is a symlink and *follow_symlinks* is true (the default), the symlink's target is copied. Otherwise, the symlink is recreated at the destination." msgstr "" -#: ../../library/pathlib.rst:1614 -msgid "" -"If *preserve_metadata* is false (the default), only directory structures and " -"file data are guaranteed to be copied. Set *preserve_metadata* to true to " -"ensure that file and directory permissions, flags, last access and " -"modification times, and extended attributes are copied where supported. This " -"argument has no effect when copying files on Windows (where metadata is " -"always preserved)." +msgid "If *preserve_metadata* is false (the default), only directory structures and file data are guaranteed to be copied. Set *preserve_metadata* to true to ensure that file and directory permissions, flags, last access and modification times, and extended attributes are copied where supported. This argument has no effect when copying files on Windows (where metadata is always preserved)." msgstr "" -#: ../../library/pathlib.rst:1622 -msgid "" -"Where supported by the operating system and file system, this method " -"performs a lightweight copy, where data blocks are only copied when " -"modified. This is known as copy-on-write." +msgid "Where supported by the operating system and file system, this method performs a lightweight copy, where data blocks are only copied when modified. This is known as copy-on-write." msgstr "" -#: ../../library/pathlib.rst:1632 -msgid "" -"Copy this file or directory tree into the given *target_dir*, which should " -"be an existing directory. Other arguments are handled identically " -"to :meth:`Path.copy`. Returns a new :class:`!Path` instance pointing to the " -"copy." +msgid "Copy this file or directory tree into the given *target_dir*, which should be an existing directory. Other arguments are handled identically to :meth:`Path.copy`. Returns a new :class:`!Path` instance pointing to the copy." msgstr "" -#: ../../library/pathlib.rst:1642 -msgid "" -"Rename this file or directory to the given *target*, and return a " -"new :class:`!Path` instance pointing to *target*. On Unix, if *target* " -"exists and is a file, it will be replaced silently if the user has " -"permission. On Windows, if *target* exists, :exc:`FileExistsError` will be " -"raised. *target* can be either a string or another path object::" +msgid "Rename this file or directory to the given *target*, and return a new :class:`!Path` instance pointing to *target*. On Unix, if *target* exists and is a file, it will be replaced silently if the user has permission. On Windows, if *target* exists, :exc:`FileExistsError` will be raised. *target* can be either a string or another path object::" msgstr "" -#: ../../library/pathlib.rst:1648 msgid "" ">>> p = Path('foo')\n" ">>> p.open('w').write('some text')\n" @@ -2073,136 +1343,72 @@ msgid "" "'some text'" msgstr "" -#: ../../library/pathlib.rst:1657 ../../library/pathlib.rst:1673 -msgid "" -"The target path may be absolute or relative. Relative paths are interpreted " -"relative to the current working directory, *not* the directory of " -"the :class:`!Path` object." +msgid "The target path may be absolute or relative. Relative paths are interpreted relative to the current working directory, *not* the directory of the :class:`!Path` object." msgstr "" -#: ../../library/pathlib.rst:1661 -msgid "" -"It is implemented in terms of :func:`os.rename` and gives the same " -"guarantees." +msgid "It is implemented in terms of :func:`os.rename` and gives the same guarantees." msgstr "" -#: ../../library/pathlib.rst:1663 ../../library/pathlib.rst:1677 msgid "Added return value, return the new :class:`!Path` instance." msgstr "" -#: ../../library/pathlib.rst:1669 -msgid "" -"Rename this file or directory to the given *target*, and return a " -"new :class:`!Path` instance pointing to *target*. If *target* points to an " -"existing file or empty directory, it will be unconditionally replaced." +msgid "Rename this file or directory to the given *target*, and return a new :class:`!Path` instance pointing to *target*. If *target* points to an existing file or empty directory, it will be unconditionally replaced." msgstr "" -#: ../../library/pathlib.rst:1683 -msgid "" -"Move this file or directory tree to the given *target*, and return a " -"new :class:`!Path` instance pointing to *target*." +msgid "Move this file or directory tree to the given *target*, and return a new :class:`!Path` instance pointing to *target*." msgstr "" -#: ../../library/pathlib.rst:1686 -msgid "" -"If the *target* doesn't exist it will be created. If both this path and the " -"*target* are existing files, then the target is overwritten. If both paths " -"point to the same file or directory, or the *target* is a non-empty " -"directory, then :exc:`OSError` is raised." +msgid "If the *target* doesn't exist it will be created. If both this path and the *target* are existing files, then the target is overwritten. If both paths point to the same file or directory, or the *target* is a non-empty directory, then :exc:`OSError` is raised." msgstr "" -#: ../../library/pathlib.rst:1691 -msgid "" -"If both paths are on the same filesystem, the move is performed " -"with :func:`os.replace`. Otherwise, this path is copied (preserving metadata " -"and symlinks) and then deleted." +msgid "If both paths are on the same filesystem, the move is performed with :func:`os.replace`. Otherwise, this path is copied (preserving metadata and symlinks) and then deleted." msgstr "" -#: ../../library/pathlib.rst:1700 -msgid "" -"Move this file or directory tree into the given *target_dir*, which should " -"be an existing directory. Returns a new :class:`!Path` instance pointing to " -"the moved path." +msgid "Move this file or directory tree into the given *target_dir*, which should be an existing directory. Returns a new :class:`!Path` instance pointing to the moved path." msgstr "" -#: ../../library/pathlib.rst:1709 -msgid "" -"Remove this file or symbolic link. If the path points to a directory, " -"use :func:`Path.rmdir` instead." +msgid "Remove this file or symbolic link. If the path points to a directory, use :func:`Path.rmdir` instead." msgstr "" -#: ../../library/pathlib.rst:1712 -msgid "" -"If *missing_ok* is false (the default), :exc:`FileNotFoundError` is raised " -"if the path does not exist." +msgid "If *missing_ok* is false (the default), :exc:`FileNotFoundError` is raised if the path does not exist." msgstr "" -#: ../../library/pathlib.rst:1715 -msgid "" -"If *missing_ok* is true, :exc:`FileNotFoundError` exceptions will be ignored " -"(same behavior as the POSIX ``rm -f`` command)." +msgid "If *missing_ok* is true, :exc:`FileNotFoundError` exceptions will be ignored (same behavior as the POSIX ``rm -f`` command)." msgstr "" -#: ../../library/pathlib.rst:1718 msgid "The *missing_ok* parameter was added." msgstr "" -#: ../../library/pathlib.rst:1724 msgid "Remove this directory. The directory must be empty." msgstr "" -#: ../../library/pathlib.rst:1728 msgid "Permissions and ownership" msgstr "" -#: ../../library/pathlib.rst:1732 -msgid "" -"Return the name of the user owning the file. :exc:`KeyError` is raised if " -"the file's user identifier (UID) isn't found in the system database." +msgid "Return the name of the user owning the file. :exc:`KeyError` is raised if the file's user identifier (UID) isn't found in the system database." msgstr "" -#: ../../library/pathlib.rst:1735 -msgid "" -"This method normally follows symlinks; to get the owner of the symlink, add " -"the argument ``follow_symlinks=False``." +msgid "This method normally follows symlinks; to get the owner of the symlink, add the argument ``follow_symlinks=False``." msgstr "" -#: ../../library/pathlib.rst:1738 -msgid "" -"Raises :exc:`UnsupportedOperation` if the :mod:`pwd` module is not " -"available. In earlier versions, :exc:`NotImplementedError` was raised." +msgid "Raises :exc:`UnsupportedOperation` if the :mod:`pwd` module is not available. In earlier versions, :exc:`NotImplementedError` was raised." msgstr "" -#: ../../library/pathlib.rst:1748 -msgid "" -"Return the name of the group owning the file. :exc:`KeyError` is raised if " -"the file's group identifier (GID) isn't found in the system database." +msgid "Return the name of the group owning the file. :exc:`KeyError` is raised if the file's group identifier (GID) isn't found in the system database." msgstr "" -#: ../../library/pathlib.rst:1751 -msgid "" -"This method normally follows symlinks; to get the group of the symlink, add " -"the argument ``follow_symlinks=False``." +msgid "This method normally follows symlinks; to get the group of the symlink, add the argument ``follow_symlinks=False``." msgstr "" -#: ../../library/pathlib.rst:1754 -msgid "" -"Raises :exc:`UnsupportedOperation` if the :mod:`grp` module is not " -"available. In earlier versions, :exc:`NotImplementedError` was raised." +msgid "Raises :exc:`UnsupportedOperation` if the :mod:`grp` module is not available. In earlier versions, :exc:`NotImplementedError` was raised." msgstr "" -#: ../../library/pathlib.rst:1764 msgid "Change the file mode and permissions, like :func:`os.chmod`." msgstr "" -#: ../../library/pathlib.rst:1766 -msgid "" -"This method normally follows symlinks. Some Unix flavours support changing " -"permissions on the symlink itself; on these platforms you may add the " -"argument ``follow_symlinks=False``, or use :meth:`~Path.lchmod`." +msgid "This method normally follows symlinks. Some Unix flavours support changing permissions on the symlink itself; on these platforms you may add the argument ``follow_symlinks=False``, or use :meth:`~Path.lchmod`." msgstr "" -#: ../../library/pathlib.rst:1772 msgid "" ">>> p = Path('setup.py')\n" ">>> p.stat().st_mode\n" @@ -2212,632 +1418,395 @@ msgid "" "33060" msgstr "" -#: ../../library/pathlib.rst:1785 -msgid "" -"Like :meth:`Path.chmod` but, if the path points to a symbolic link, the " -"symbolic link's mode is changed rather than its target's." +msgid "Like :meth:`Path.chmod` but, if the path points to a symbolic link, the symbolic link's mode is changed rather than its target's." msgstr "" -#: ../../library/pathlib.rst:1792 msgid "Pattern language" msgstr "" -#: ../../library/pathlib.rst:1794 -msgid "" -"The following wildcards are supported in patterns " -"for :meth:`~PurePath.full_match`, :meth:`~Path.glob` and :meth:`~Path.rglob`:" +msgid "The following wildcards are supported in patterns for :meth:`~PurePath.full_match`, :meth:`~Path.glob` and :meth:`~Path.rglob`:" msgstr "" -#: ../../library/pathlib.rst:1797 msgid "``**`` (entire segment)" msgstr "" -#: ../../library/pathlib.rst:1798 msgid "Matches any number of file or directory segments, including zero." msgstr "" -#: ../../library/pathlib.rst:1799 msgid "``*`` (entire segment)" msgstr "" -#: ../../library/pathlib.rst:1800 msgid "Matches one file or directory segment." msgstr "" -#: ../../library/pathlib.rst:1801 msgid "``*`` (part of a segment)" msgstr "" -#: ../../library/pathlib.rst:1802 msgid "Matches any number of non-separator characters, including zero." msgstr "" -#: ../../library/pathlib.rst:1803 msgid "``?``" msgstr "" -#: ../../library/pathlib.rst:1804 msgid "Matches one non-separator character." msgstr "" -#: ../../library/pathlib.rst:1805 msgid "``[seq]``" msgstr "" -#: ../../library/pathlib.rst:1806 -msgid "" -"Matches one character in *seq*, where *seq* is a sequence of characters. " -"Range expressions are supported; for example, ``[a-z]`` matches any " -"lowercase ASCII letter. Multiple ranges can be combined: ``[a-zA-Z0-9_]`` " -"matches any ASCII letter, digit, or underscore." +msgid "Matches one character in *seq*, where *seq* is a sequence of characters. Range expressions are supported; for example, ``[a-z]`` matches any lowercase ASCII letter. Multiple ranges can be combined: ``[a-zA-Z0-9_]`` matches any ASCII letter, digit, or underscore." msgstr "" -#: ../../library/pathlib.rst:1810 msgid "``[!seq]``" msgstr "" -#: ../../library/pathlib.rst:1811 -msgid "" -"Matches one character not in *seq*, where *seq* follows the same rules as " -"above." +msgid "Matches one character not in *seq*, where *seq* follows the same rules as above." msgstr "" -#: ../../library/pathlib.rst:1813 -msgid "" -"For a literal match, wrap the meta-characters in brackets. For example, " -"``\"[?]\"`` matches the character ``\"?\"``." +msgid "For a literal match, wrap the meta-characters in brackets. For example, ``\"[?]\"`` matches the character ``\"?\"``." msgstr "" -#: ../../library/pathlib.rst:1816 msgid "The \"``**``\" wildcard enables recursive globbing. A few examples:" msgstr "" -#: ../../library/pathlib.rst:1819 msgid "Pattern" msgstr "" -#: ../../library/pathlib.rst:1819 msgid "Meaning" msgstr "" -#: ../../library/pathlib.rst:1821 msgid "\"``**/*``\"" msgstr "" -#: ../../library/pathlib.rst:1821 msgid "Any path with at least one segment." msgstr "" -#: ../../library/pathlib.rst:1822 msgid "\"``**/*.py``\"" msgstr "" -#: ../../library/pathlib.rst:1822 msgid "Any path with a final segment ending \"``.py``\"." msgstr "" -#: ../../library/pathlib.rst:1823 msgid "\"``assets/**``\"" msgstr "" -#: ../../library/pathlib.rst:1823 msgid "Any path starting with \"``assets/``\"." msgstr "" -#: ../../library/pathlib.rst:1824 msgid "\"``assets/**/*``\"" msgstr "" -#: ../../library/pathlib.rst:1824 -msgid "" -"Any path starting with \"``assets/``\", excluding \"``assets/``\" itself." +msgid "Any path starting with \"``assets/``\", excluding \"``assets/``\" itself." msgstr "" -#: ../../library/pathlib.rst:1828 -msgid "" -"Globbing with the \"``**``\" wildcard visits every directory in the tree. " -"Large directory trees may take a long time to search." +msgid "Globbing with the \"``**``\" wildcard visits every directory in the tree. Large directory trees may take a long time to search." msgstr "" -#: ../../library/pathlib.rst:1831 -msgid "" -"Globbing with a pattern that ends with \"``**``\" returns both files and " -"directories. In previous versions, only directories were returned." +msgid "Globbing with a pattern that ends with \"``**``\" returns both files and directories. In previous versions, only directories were returned." msgstr "" -#: ../../library/pathlib.rst:1835 -msgid "" -"In :meth:`Path.glob` and :meth:`~Path.rglob`, a trailing slash may be added " -"to the pattern to match only directories." +msgid "In :meth:`Path.glob` and :meth:`~Path.rglob`, a trailing slash may be added to the pattern to match only directories." msgstr "" -#: ../../library/pathlib.rst:1838 -msgid "" -"Globbing with a pattern that ends with a pathname components separator " -"(:data:`~os.sep` or :data:`~os.altsep`) returns only directories." +msgid "Globbing with a pattern that ends with a pathname components separator (:data:`~os.sep` or :data:`~os.altsep`) returns only directories." msgstr "" -#: ../../library/pathlib.rst:1844 msgid "Comparison to the :mod:`glob` module" msgstr "" -#: ../../library/pathlib.rst:1846 -msgid "" -"The patterns accepted and results generated by :meth:`Path.glob` " -"and :meth:`Path.rglob` differ slightly from those by the :mod:`glob` module:" +msgid "The patterns accepted and results generated by :meth:`Path.glob` and :meth:`Path.rglob` differ slightly from those by the :mod:`glob` module:" msgstr "" -#: ../../library/pathlib.rst:1849 -msgid "" -"Files beginning with a dot are not special in pathlib. This is like passing " -"``include_hidden=True`` to :func:`glob.glob`." +msgid "Files beginning with a dot are not special in pathlib. This is like passing ``include_hidden=True`` to :func:`glob.glob`." msgstr "" -#: ../../library/pathlib.rst:1851 -msgid "" -"\"``**``\" pattern components are always recursive in pathlib. This is like " -"passing ``recursive=True`` to :func:`glob.glob`." +msgid "\"``**``\" pattern components are always recursive in pathlib. This is like passing ``recursive=True`` to :func:`glob.glob`." msgstr "" -#: ../../library/pathlib.rst:1853 -msgid "" -"\"``**``\" pattern components do not follow symlinks by default in pathlib. " -"This behaviour has no equivalent in :func:`glob.glob`, but you can pass " -"``recurse_symlinks=True`` to :meth:`Path.glob` for compatible behaviour." +msgid "\"``**``\" pattern components do not follow symlinks by default in pathlib. This behaviour has no equivalent in :func:`glob.glob`, but you can pass ``recurse_symlinks=True`` to :meth:`Path.glob` for compatible behaviour." msgstr "" -#: ../../library/pathlib.rst:1856 -msgid "" -"Like all :class:`PurePath` and :class:`Path` objects, the values returned " -"from :meth:`Path.glob` and :meth:`Path.rglob` don't include trailing slashes." +msgid "Like all :class:`PurePath` and :class:`Path` objects, the values returned from :meth:`Path.glob` and :meth:`Path.rglob` don't include trailing slashes." msgstr "" -#: ../../library/pathlib.rst:1859 -msgid "" -"The values returned from pathlib's ``path.glob()`` and ``path.rglob()`` " -"include the *path* as a prefix, unlike the results of " -"``glob.glob(root_dir=path)``." +msgid "The values returned from pathlib's ``path.glob()`` and ``path.rglob()`` include the *path* as a prefix, unlike the results of ``glob.glob(root_dir=path)``." msgstr "" -#: ../../library/pathlib.rst:1862 -msgid "" -"The values returned from pathlib's ``path.glob()`` and ``path.rglob()`` may " -"include *path* itself, for example when globbing \"``**``\", whereas the " -"results of ``glob.glob(root_dir=path)`` never include an empty string that " -"would correspond to *path*." +msgid "The values returned from pathlib's ``path.glob()`` and ``path.rglob()`` may include *path* itself, for example when globbing \"``**``\", whereas the results of ``glob.glob(root_dir=path)`` never include an empty string that would correspond to *path*." msgstr "" -#: ../../library/pathlib.rst:1869 msgid "Comparison to the :mod:`os` and :mod:`os.path` modules" msgstr "" -#: ../../library/pathlib.rst:1871 -msgid "" -"pathlib implements path operations using :class:`PurePath` and :class:`Path` " -"objects, and so it's said to be *object-oriented*. On the other hand, " -"the :mod:`os` and :mod:`os.path` modules supply functions that work with low-" -"level ``str`` and ``bytes`` objects, which is a more *procedural* approach. " -"Some users consider the object-oriented style to be more readable." +msgid "pathlib implements path operations using :class:`PurePath` and :class:`Path` objects, and so it's said to be *object-oriented*. On the other hand, the :mod:`os` and :mod:`os.path` modules supply functions that work with low-level ``str`` and ``bytes`` objects, which is a more *procedural* approach. Some users consider the object-oriented style to be more readable." msgstr "" -#: ../../library/pathlib.rst:1877 -msgid "" -"Many functions in :mod:`os` and :mod:`os.path` support ``bytes`` paths " -"and :ref:`paths relative to directory descriptors `. These features " -"aren't available in pathlib." +msgid "Many functions in :mod:`os` and :mod:`os.path` support ``bytes`` paths and :ref:`paths relative to directory descriptors `. These features aren't available in pathlib." msgstr "" -#: ../../library/pathlib.rst:1881 -msgid "" -"Python's ``str`` and ``bytes`` types, and portions of the :mod:`os` " -"and :mod:`os.path` modules, are written in C and are very speedy. pathlib is " -"written in pure Python and is often slower, but rarely slow enough to matter." +msgid "Python's ``str`` and ``bytes`` types, and portions of the :mod:`os` and :mod:`os.path` modules, are written in C and are very speedy. pathlib is written in pure Python and is often slower, but rarely slow enough to matter." msgstr "" -#: ../../library/pathlib.rst:1885 -msgid "" -"pathlib's path normalization is slightly more opinionated and consistent " -"than :mod:`os.path`. For example, whereas :func:`os.path.abspath` eliminates " -"\"``..``\" segments from a path, which may change its meaning if symlinks " -"are involved, :meth:`Path.absolute` preserves these segments for greater " -"safety." +msgid "pathlib's path normalization is slightly more opinionated and consistent than :mod:`os.path`. For example, whereas :func:`os.path.abspath` eliminates \"``..``\" segments from a path, which may change its meaning if symlinks are involved, :meth:`Path.absolute` preserves these segments for greater safety." msgstr "" -#: ../../library/pathlib.rst:1890 -msgid "" -"pathlib's path normalization may render it unsuitable for some applications:" +msgid "pathlib's path normalization may render it unsuitable for some applications:" msgstr "" -#: ../../library/pathlib.rst:1892 -msgid "" -"pathlib normalizes ``Path(\"my_folder/\")`` to ``Path(\"my_folder\")``, " -"which changes a path's meaning when supplied to various operating system " -"APIs and command-line utilities. Specifically, the absence of a trailing " -"separator may allow the path to be resolved as either a file or directory, " -"rather than a directory only." +msgid "pathlib normalizes ``Path(\"my_folder/\")`` to ``Path(\"my_folder\")``, which changes a path's meaning when supplied to various operating system APIs and command-line utilities. Specifically, the absence of a trailing separator may allow the path to be resolved as either a file or directory, rather than a directory only." msgstr "" -#: ../../library/pathlib.rst:1897 -msgid "" -"pathlib normalizes ``Path(\"./my_program\")`` to ``Path(\"my_program\")``, " -"which changes a path's meaning when used as an executable search path, such " -"as in a shell or when spawning a child process. Specifically, the absence of " -"a separator in the path may force it to be looked up in :envvar:`PATH` " -"rather than the current directory." +msgid "pathlib normalizes ``Path(\"./my_program\")`` to ``Path(\"my_program\")``, which changes a path's meaning when used as an executable search path, such as in a shell or when spawning a child process. Specifically, the absence of a separator in the path may force it to be looked up in :envvar:`PATH` rather than the current directory." msgstr "" -#: ../../library/pathlib.rst:1903 -msgid "" -"As a consequence of these differences, pathlib is not a drop-in replacement " -"for :mod:`os.path`." +msgid "As a consequence of these differences, pathlib is not a drop-in replacement for :mod:`os.path`." msgstr "" -#: ../../library/pathlib.rst:1908 msgid "Corresponding tools" msgstr "" -#: ../../library/pathlib.rst:1910 -msgid "" -"Below is a table mapping various :mod:`os` functions to their " -"corresponding :class:`PurePath`/:class:`Path` equivalent." +msgid "Below is a table mapping various :mod:`os` functions to their corresponding :class:`PurePath`/:class:`Path` equivalent." msgstr "" -#: ../../library/pathlib.rst:1914 msgid ":mod:`os` and :mod:`os.path`" msgstr "" -#: ../../library/pathlib.rst:1914 msgid ":mod:`!pathlib`" msgstr "" -#: ../../library/pathlib.rst:1916 msgid ":func:`os.path.dirname`" msgstr "" -#: ../../library/pathlib.rst:1916 msgid ":attr:`PurePath.parent`" msgstr "" -#: ../../library/pathlib.rst:1917 msgid ":func:`os.path.basename`" msgstr "" -#: ../../library/pathlib.rst:1917 msgid ":attr:`PurePath.name`" msgstr "" -#: ../../library/pathlib.rst:1918 msgid ":func:`os.path.splitext`" msgstr "" -#: ../../library/pathlib.rst:1918 msgid ":attr:`PurePath.stem`, :attr:`PurePath.suffix`" msgstr "" -#: ../../library/pathlib.rst:1919 msgid ":func:`os.path.join`" msgstr "" -#: ../../library/pathlib.rst:1919 msgid ":meth:`PurePath.joinpath`" msgstr "" -#: ../../library/pathlib.rst:1920 msgid ":func:`os.path.isabs`" msgstr "" -#: ../../library/pathlib.rst:1920 msgid ":meth:`PurePath.is_absolute`" msgstr "" -#: ../../library/pathlib.rst:1921 msgid ":func:`os.path.relpath`" msgstr "" -#: ../../library/pathlib.rst:1921 msgid ":meth:`PurePath.relative_to` [1]_" msgstr "" -#: ../../library/pathlib.rst:1922 msgid ":func:`os.path.expanduser`" msgstr "" -#: ../../library/pathlib.rst:1922 msgid ":meth:`Path.expanduser` [2]_" msgstr "" -#: ../../library/pathlib.rst:1923 msgid ":func:`os.path.realpath`" msgstr "" -#: ../../library/pathlib.rst:1923 msgid ":meth:`Path.resolve`" msgstr "" -#: ../../library/pathlib.rst:1924 msgid ":func:`os.path.abspath`" msgstr "" -#: ../../library/pathlib.rst:1924 msgid ":meth:`Path.absolute` [3]_" msgstr "" -#: ../../library/pathlib.rst:1925 msgid ":func:`os.path.exists`" msgstr "" -#: ../../library/pathlib.rst:1925 msgid ":meth:`Path.exists`" msgstr "" -#: ../../library/pathlib.rst:1926 msgid ":func:`os.path.isfile`" msgstr "" -#: ../../library/pathlib.rst:1926 msgid ":meth:`Path.is_file`" msgstr "" -#: ../../library/pathlib.rst:1927 msgid ":func:`os.path.isdir`" msgstr "" -#: ../../library/pathlib.rst:1927 msgid ":meth:`Path.is_dir`" msgstr "" -#: ../../library/pathlib.rst:1928 msgid ":func:`os.path.islink`" msgstr "" -#: ../../library/pathlib.rst:1928 msgid ":meth:`Path.is_symlink`" msgstr "" -#: ../../library/pathlib.rst:1929 msgid ":func:`os.path.isjunction`" msgstr "" -#: ../../library/pathlib.rst:1929 msgid ":meth:`Path.is_junction`" msgstr "" -#: ../../library/pathlib.rst:1930 msgid ":func:`os.path.ismount`" msgstr "" -#: ../../library/pathlib.rst:1930 msgid ":meth:`Path.is_mount`" msgstr "" -#: ../../library/pathlib.rst:1931 msgid ":func:`os.path.samefile`" msgstr "" -#: ../../library/pathlib.rst:1931 msgid ":meth:`Path.samefile`" msgstr "" -#: ../../library/pathlib.rst:1932 msgid ":func:`os.getcwd`" msgstr "" -#: ../../library/pathlib.rst:1932 msgid ":meth:`Path.cwd`" msgstr "" -#: ../../library/pathlib.rst:1933 msgid ":func:`os.stat`" msgstr "" -#: ../../library/pathlib.rst:1933 msgid ":meth:`Path.stat`" msgstr "" -#: ../../library/pathlib.rst:1934 msgid ":func:`os.lstat`" msgstr "" -#: ../../library/pathlib.rst:1934 msgid ":meth:`Path.lstat`" msgstr "" -#: ../../library/pathlib.rst:1935 msgid ":func:`os.listdir`" msgstr "" -#: ../../library/pathlib.rst:1935 msgid ":meth:`Path.iterdir`" msgstr "" -#: ../../library/pathlib.rst:1936 msgid ":func:`os.walk`" msgstr "" -#: ../../library/pathlib.rst:1936 msgid ":meth:`Path.walk` [4]_" msgstr "" -#: ../../library/pathlib.rst:1937 msgid ":func:`os.mkdir`, :func:`os.makedirs`" msgstr "" -#: ../../library/pathlib.rst:1937 msgid ":meth:`Path.mkdir`" msgstr "" -#: ../../library/pathlib.rst:1938 msgid ":func:`os.link`" msgstr "" -#: ../../library/pathlib.rst:1938 msgid ":meth:`Path.hardlink_to`" msgstr "" -#: ../../library/pathlib.rst:1939 msgid ":func:`os.symlink`" msgstr "" -#: ../../library/pathlib.rst:1939 msgid ":meth:`Path.symlink_to`" msgstr "" -#: ../../library/pathlib.rst:1940 msgid ":func:`os.readlink`" msgstr "" -#: ../../library/pathlib.rst:1940 msgid ":meth:`Path.readlink`" msgstr "" -#: ../../library/pathlib.rst:1941 msgid ":func:`os.rename`" msgstr "" -#: ../../library/pathlib.rst:1941 msgid ":meth:`Path.rename`" msgstr "" -#: ../../library/pathlib.rst:1942 msgid ":func:`os.replace`" msgstr "" -#: ../../library/pathlib.rst:1942 msgid ":meth:`Path.replace`" msgstr "" -#: ../../library/pathlib.rst:1943 msgid ":func:`os.remove`, :func:`os.unlink`" msgstr "" -#: ../../library/pathlib.rst:1943 msgid ":meth:`Path.unlink`" msgstr "" -#: ../../library/pathlib.rst:1944 msgid ":func:`os.rmdir`" msgstr "" -#: ../../library/pathlib.rst:1944 msgid ":meth:`Path.rmdir`" msgstr "" -#: ../../library/pathlib.rst:1945 msgid ":func:`os.chmod`" msgstr "" -#: ../../library/pathlib.rst:1945 msgid ":meth:`Path.chmod`" msgstr "" -#: ../../library/pathlib.rst:1946 msgid ":func:`os.lchmod`" msgstr "" -#: ../../library/pathlib.rst:1946 msgid ":meth:`Path.lchmod`" msgstr "" -#: ../../library/pathlib.rst:1950 msgid "Footnotes" msgstr "" -#: ../../library/pathlib.rst:1951 -msgid "" -":func:`os.path.relpath` calls :func:`~os.path.abspath` to make paths " -"absolute and remove \"``..``\" parts, whereas :meth:`PurePath.relative_to` " -"is a lexical operation that raises :exc:`ValueError` when its inputs' " -"anchors differ (e.g. if one path is absolute and the other relative.)" +msgid ":func:`os.path.relpath` calls :func:`~os.path.abspath` to make paths absolute and remove \"``..``\" parts, whereas :meth:`PurePath.relative_to` is a lexical operation that raises :exc:`ValueError` when its inputs' anchors differ (e.g. if one path is absolute and the other relative.)" msgstr "" -#: ../../library/pathlib.rst:1955 -msgid "" -":func:`os.path.expanduser` returns the path unchanged if the home directory " -"can't be resolved, whereas :meth:`Path.expanduser` " -"raises :exc:`RuntimeError`." +msgid ":func:`os.path.expanduser` returns the path unchanged if the home directory can't be resolved, whereas :meth:`Path.expanduser` raises :exc:`RuntimeError`." msgstr "" -#: ../../library/pathlib.rst:1958 -msgid "" -":func:`os.path.abspath` removes \"``..``\" components without resolving " -"symlinks, which may change the meaning of the path, " -"whereas :meth:`Path.absolute` leaves any \"``..``\" components in the path." +msgid ":func:`os.path.abspath` removes \"``..``\" components without resolving symlinks, which may change the meaning of the path, whereas :meth:`Path.absolute` leaves any \"``..``\" components in the path." msgstr "" -#: ../../library/pathlib.rst:1961 -msgid "" -":func:`os.walk` always follows symlinks when categorizing paths into " -"*dirnames* and *filenames*, whereas :meth:`Path.walk` categorizes all " -"symlinks into *filenames* when *follow_symlinks* is false (the default.)" +msgid ":func:`os.walk` always follows symlinks when categorizing paths into *dirnames* and *filenames*, whereas :meth:`Path.walk` categorizes all symlinks into *filenames* when *follow_symlinks* is false (the default.)" msgstr "" -#: ../../library/pathlib.rst:1967 msgid "Protocols" msgstr "" -#: ../../library/pathlib.rst:1973 -msgid "" -"The :mod:`!pathlib.types` module provides types for static type checking." +msgid "The :mod:`!pathlib.types` module provides types for static type checking." msgstr "" -#: ../../library/pathlib.rst:1980 -msgid "" -"A :class:`typing.Protocol` describing the :attr:`Path.info " -"` attribute. Implementations may return cached results " -"from their methods." +msgid "A :class:`typing.Protocol` describing the :attr:`Path.info ` attribute. Implementations may return cached results from their methods." msgstr "" -#: ../../library/pathlib.rst:1986 -msgid "" -"Return ``True`` if the path is an existing file or directory, or any other " -"kind of file; return ``False`` if the path doesn't exist." +msgid "Return ``True`` if the path is an existing file or directory, or any other kind of file; return ``False`` if the path doesn't exist." msgstr "" -#: ../../library/pathlib.rst:1989 -msgid "" -"If *follow_symlinks* is ``False``, return ``True`` for symlinks without " -"checking if their targets exist." +msgid "If *follow_symlinks* is ``False``, return ``True`` for symlinks without checking if their targets exist." msgstr "" -#: ../../library/pathlib.rst:1994 -msgid "" -"Return ``True`` if the path is a directory, or a symbolic link pointing to a " -"directory; return ``False`` if the path is (or points to) any other kind of " -"file, or if it doesn't exist." +msgid "Return ``True`` if the path is a directory, or a symbolic link pointing to a directory; return ``False`` if the path is (or points to) any other kind of file, or if it doesn't exist." msgstr "" -#: ../../library/pathlib.rst:1998 -msgid "" -"If *follow_symlinks* is ``False``, return ``True`` only if the path is a " -"directory (without following symlinks); return ``False`` if the path is any " -"other kind of file, or if it doesn't exist." +msgid "If *follow_symlinks* is ``False``, return ``True`` only if the path is a directory (without following symlinks); return ``False`` if the path is any other kind of file, or if it doesn't exist." msgstr "" -#: ../../library/pathlib.rst:2004 -msgid "" -"Return ``True`` if the path is a file, or a symbolic link pointing to a " -"file; return ``False`` if the path is (or points to) a directory or other " -"non-file, or if it doesn't exist." +msgid "Return ``True`` if the path is a file, or a symbolic link pointing to a file; return ``False`` if the path is (or points to) a directory or other non-file, or if it doesn't exist." msgstr "" -#: ../../library/pathlib.rst:2008 -msgid "" -"If *follow_symlinks* is ``False``, return ``True`` only if the path is a " -"file (without following symlinks); return ``False`` if the path is a " -"directory or other non-file, or if it doesn't exist." +msgid "If *follow_symlinks* is ``False``, return ``True`` only if the path is a file (without following symlinks); return ``False`` if the path is a directory or other non-file, or if it doesn't exist." msgstr "" -#: ../../library/pathlib.rst:2014 -msgid "" -"Return ``True`` if the path is a symbolic link (even if broken); return " -"``False`` if the path is a directory or any kind of file, or if it doesn't " -"exist." +msgid "Return ``True`` if the path is a symbolic link (even if broken); return ``False`` if the path is a directory or any kind of file, or if it doesn't exist." msgstr "" -#: ../../library/pathlib.rst:11 msgid "path" msgstr "" -#: ../../library/pathlib.rst:11 msgid "operations" msgstr "" diff --git a/library/pdb.po b/library/pdb.po index 23768665..abd517f9 100644 --- a/library/pdb.po +++ b/library/pdb.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:11+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,82 +23,48 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/pdb.rst:4 msgid ":mod:`!pdb` --- The Python Debugger" msgstr "" -#: ../../library/pdb.rst:9 msgid "**Source code:** :source:`Lib/pdb.py`" msgstr "" -#: ../../library/pdb.rst:15 -msgid "" -"The module :mod:`!pdb` defines an interactive source code debugger for " -"Python programs. It supports setting (conditional) breakpoints and single " -"stepping at the source line level, inspection of stack frames, source code " -"listing, and evaluation of arbitrary Python code in the context of any stack " -"frame. It also supports post-mortem debugging and can be called under " -"program control." +msgid "The module :mod:`!pdb` defines an interactive source code debugger for Python programs. It supports setting (conditional) breakpoints and single stepping at the source line level, inspection of stack frames, source code listing, and evaluation of arbitrary Python code in the context of any stack frame. It also supports post-mortem debugging and can be called under program control." msgstr "" -#: ../../library/pdb.rst:26 -msgid "" -"The debugger is extensible -- it is actually defined as the " -"class :class:`Pdb`. This is currently undocumented but easily understood by " -"reading the source. The extension interface uses the modules :mod:`bdb` " -"and :mod:`cmd`." +msgid "The debugger is extensible -- it is actually defined as the class :class:`Pdb`. This is currently undocumented but easily understood by reading the source. The extension interface uses the modules :mod:`bdb` and :mod:`cmd`." msgstr "" -#: ../../library/pdb.rst:32 msgid "Module :mod:`faulthandler`" msgstr "" -#: ../../library/pdb.rst:33 -msgid "" -"Used to dump Python tracebacks explicitly, on a fault, after a timeout, or " -"on a user signal." +msgid "Used to dump Python tracebacks explicitly, on a fault, after a timeout, or on a user signal." msgstr "" -#: ../../library/pdb.rst:36 msgid "Module :mod:`traceback`" msgstr "" -#: ../../library/pdb.rst:37 -msgid "" -"Standard interface to extract, format and print stack traces of Python " -"programs." +msgid "Standard interface to extract, format and print stack traces of Python programs." msgstr "" -#: ../../library/pdb.rst:39 msgid "The typical usage to break into the debugger is to insert::" msgstr "" -#: ../../library/pdb.rst:41 msgid "import pdb; pdb.set_trace()" msgstr "" -#: ../../library/pdb.rst:43 msgid "Or::" msgstr "" -#: ../../library/pdb.rst:45 msgid "breakpoint()" msgstr "" -#: ../../library/pdb.rst:47 -msgid "" -"at the location you want to break into the debugger, and then run the " -"program. You can then step through the code following this statement, and " -"continue running without the debugger using the :pdbcmd:`continue` command." +msgid "at the location you want to break into the debugger, and then run the program. You can then step through the code following this statement, and continue running without the debugger using the :pdbcmd:`continue` command." msgstr "" -#: ../../library/pdb.rst:51 -msgid "" -"The built-in :func:`breakpoint`, when called with defaults, can be used " -"instead of ``import pdb; pdb.set_trace()``." +msgid "The built-in :func:`breakpoint`, when called with defaults, can be used instead of ``import pdb; pdb.set_trace()``." msgstr "" -#: ../../library/pdb.rst:57 msgid "" "def double(x):\n" " breakpoint()\n" @@ -107,13 +73,9 @@ msgid "" "print(f\"{val} * 2 is {double(val)}\")" msgstr "" -#: ../../library/pdb.rst:63 -msgid "" -"The debugger's prompt is ``(Pdb)``, which is the indicator that you are in " -"debug mode::" +msgid "The debugger's prompt is ``(Pdb)``, which is the indicator that you are in debug mode::" msgstr "" -#: ../../library/pdb.rst:65 msgid "" "> ...(2)double()\n" "-> breakpoint()\n" @@ -123,82 +85,48 @@ msgid "" "3 * 2 is 6" msgstr "" -#: ../../library/pdb.rst:72 -msgid "" -"Tab-completion via the :mod:`readline` module is available for commands and " -"command arguments, e.g. the current global and local names are offered as " -"arguments of the ``p`` command." +msgid "Tab-completion via the :mod:`readline` module is available for commands and command arguments, e.g. the current global and local names are offered as arguments of the ``p`` command." msgstr "" -#: ../../library/pdb.rst:81 msgid "Command-line interface" msgstr "" -#: ../../library/pdb.rst:85 -msgid "" -"You can also invoke :mod:`!pdb` from the command line to debug other " -"scripts. For example::" +msgid "You can also invoke :mod:`!pdb` from the command line to debug other scripts. For example::" msgstr "" -#: ../../library/pdb.rst:88 msgid "python -m pdb [-c command] (-m module | -p pid | pyfile) [args ...]" msgstr "" -#: ../../library/pdb.rst:90 -msgid "" -"When invoked as a module, pdb will automatically enter post-mortem debugging " -"if the program being debugged exits abnormally. After post-mortem debugging " -"(or after normal exit of the program), pdb will restart the program. " -"Automatic restarting preserves pdb's state (such as breakpoints) and in most " -"cases is more useful than quitting the debugger upon program's exit." +msgid "When invoked as a module, pdb will automatically enter post-mortem debugging if the program being debugged exits abnormally. After post-mortem debugging (or after normal exit of the program), pdb will restart the program. Automatic restarting preserves pdb's state (such as breakpoints) and in most cases is more useful than quitting the debugger upon program's exit." msgstr "" -#: ../../library/pdb.rst:98 -msgid "" -"To execute commands as if given in a :file:`.pdbrc` file; see :ref:`debugger-" -"commands`." +msgid "To execute commands as if given in a :file:`.pdbrc` file; see :ref:`debugger-commands`." msgstr "" -#: ../../library/pdb.rst:101 msgid "Added the ``-c`` option." msgstr "" -#: ../../library/pdb.rst:106 -msgid "" -"To execute modules similar to the way ``python -m`` does. As with a script, " -"the debugger will pause execution just before the first line of the module." +msgid "To execute modules similar to the way ``python -m`` does. As with a script, the debugger will pause execution just before the first line of the module." msgstr "" -#: ../../library/pdb.rst:109 msgid "Added the ``-m`` option." msgstr "" -#: ../../library/pdb.rst:114 msgid "Attach to the process with the specified PID." msgstr "" -#: ../../library/pdb.rst:119 -msgid "" -"To attach to a running Python process for remote debugging, use the ``-p`` " -"or ``--pid`` option with the target process's PID::" +msgid "To attach to a running Python process for remote debugging, use the ``-p`` or ``--pid`` option with the target process's PID::" msgstr "" -#: ../../library/pdb.rst:122 msgid "python -m pdb -p 1234" msgstr "" -#: ../../library/pdb.rst:126 -msgid "" -"Attaching to a process that is blocked in a system call or waiting for I/O " -"will only work once the next bytecode instruction is executed or when the " -"process receives a signal." +msgid "Attaching to a process that is blocked in a system call or waiting for I/O will only work once the next bytecode instruction is executed or when the process receives a signal." msgstr "" -#: ../../library/pdb.rst:130 msgid "Typical usage to execute a statement under control of the debugger is::" msgstr "" -#: ../../library/pdb.rst:132 msgid "" ">>> import pdb\n" ">>> def f(x):\n" @@ -210,11 +138,9 @@ msgid "" ">>>" msgstr "" -#: ../../library/pdb.rst:141 msgid "The typical usage to inspect a crashed program is::" msgstr "" -#: ../../library/pdb.rst:143 msgid "" ">>> import pdb\n" ">>> def f(x):\n" @@ -232,471 +158,227 @@ msgid "" "(Pdb)" msgstr "" -#: ../../library/pdb.rst:158 -msgid "" -"The implementation of :pep:`667` means that name assignments made via " -"``pdb`` will immediately affect the active scope, even when running inside " -"an :term:`optimized scope`." +msgid "The implementation of :pep:`667` means that name assignments made via ``pdb`` will immediately affect the active scope, even when running inside an :term:`optimized scope`." msgstr "" -#: ../../library/pdb.rst:164 -msgid "" -"The module defines the following functions; each enters the debugger in a " -"slightly different way:" +msgid "The module defines the following functions; each enters the debugger in a slightly different way:" msgstr "" -#: ../../library/pdb.rst:169 -msgid "" -"Execute the *statement* (given as a string or a code object) under debugger " -"control. The debugger prompt appears before any code is executed; you can " -"set breakpoints and type :pdbcmd:`continue`, or you can step through the " -"statement using :pdbcmd:`step` or :pdbcmd:`next` (all these commands are " -"explained below). The optional *globals* and *locals* arguments specify the " -"environment in which the code is executed; by default the dictionary of the " -"module :mod:`__main__` is used. (See the explanation of the built-" -"in :func:`exec` or :func:`eval` functions.)" +msgid "Execute the *statement* (given as a string or a code object) under debugger control. The debugger prompt appears before any code is executed; you can set breakpoints and type :pdbcmd:`continue`, or you can step through the statement using :pdbcmd:`step` or :pdbcmd:`next` (all these commands are explained below). The optional *globals* and *locals* arguments specify the environment in which the code is executed; by default the dictionary of the module :mod:`__main__` is used. (See the explanation of the built-in :func:`exec` or :func:`eval` functions.)" msgstr "" -#: ../../library/pdb.rst:181 -msgid "" -"Evaluate the *expression* (given as a string or a code object) under " -"debugger control. When :func:`runeval` returns, it returns the value of the " -"*expression*. Otherwise this function is similar to :func:`run`." +msgid "Evaluate the *expression* (given as a string or a code object) under debugger control. When :func:`runeval` returns, it returns the value of the *expression*. Otherwise this function is similar to :func:`run`." msgstr "" -#: ../../library/pdb.rst:188 -msgid "" -"Call the *function* (a function or method object, not a string) with the " -"given arguments. When :func:`runcall` returns, it returns whatever the " -"function call returned. The debugger prompt appears as soon as the function " -"is entered." +msgid "Call the *function* (a function or method object, not a string) with the given arguments. When :func:`runcall` returns, it returns whatever the function call returned. The debugger prompt appears as soon as the function is entered." msgstr "" -#: ../../library/pdb.rst:196 -msgid "" -"Enter the debugger at the calling stack frame. This is useful to hard-code " -"a breakpoint at a given point in a program, even if the code is not " -"otherwise being debugged (e.g. when an assertion fails). If given, *header* " -"is printed to the console just before debugging begins. The *commands* " -"argument, if given, is a list of commands to execute when the debugger " -"starts." +msgid "Enter the debugger at the calling stack frame. This is useful to hard-code a breakpoint at a given point in a program, even if the code is not otherwise being debugged (e.g. when an assertion fails). If given, *header* is printed to the console just before debugging begins. The *commands* argument, if given, is a list of commands to execute when the debugger starts." msgstr "" -#: ../../library/pdb.rst:204 msgid "The keyword-only argument *header*." msgstr "" -#: ../../library/pdb.rst:207 -msgid "" -":func:`set_trace` will enter the debugger immediately, rather than on the " -"next line of code to be executed." +msgid ":func:`set_trace` will enter the debugger immediately, rather than on the next line of code to be executed." msgstr "" -#: ../../library/pdb.rst:211 msgid "The *commands* argument." msgstr "" -#: ../../library/pdb.rst:217 -msgid "" -"async version of :func:`set_trace`. This function should be used inside an " -"async function with :keyword:`await`." +msgid "async version of :func:`set_trace`. This function should be used inside an async function with :keyword:`await`." msgstr "" -#: ../../library/pdb.rst:220 msgid "" "async def f():\n" " await pdb.set_trace_async()" msgstr "" -#: ../../library/pdb.rst:225 -msgid "" -":keyword:`await` statements are supported if the debugger is invoked by this " -"function." +msgid ":keyword:`await` statements are supported if the debugger is invoked by this function." msgstr "" -#: ../../library/pdb.rst:231 -msgid "" -"Enter post-mortem debugging of the given exception or :ref:`traceback object " -"`. If no value is given, it uses the exception that is " -"currently being handled, or raises ``ValueError`` if there isn’t one." +msgid "Enter post-mortem debugging of the given exception or :ref:`traceback object `. If no value is given, it uses the exception that is currently being handled, or raises ``ValueError`` if there isn’t one." msgstr "" -#: ../../library/pdb.rst:236 msgid "Support for exception objects was added." msgstr "" -#: ../../library/pdb.rst:241 -msgid "" -"Enter post-mortem debugging of the exception found in :data:`sys.last_exc`." +msgid "Enter post-mortem debugging of the exception found in :data:`sys.last_exc`." msgstr "" -#: ../../library/pdb.rst:246 -msgid "" -"There are two supported backends for pdb: ``'settrace'`` and " -"``'monitoring'``. See :class:`bdb.Bdb` for details. The user can set the " -"default backend to use if none is specified when instantiating :class:`Pdb`. " -"If no backend is specified, the default is ``'settrace'``." +msgid "There are two supported backends for pdb: ``'settrace'`` and ``'monitoring'``. See :class:`bdb.Bdb` for details. The user can set the default backend to use if none is specified when instantiating :class:`Pdb`. If no backend is specified, the default is ``'settrace'``." msgstr "" -#: ../../library/pdb.rst:253 -msgid "" -":func:`breakpoint` and :func:`set_trace` will not be affected by this " -"function. They always use ``'monitoring'`` backend." +msgid ":func:`breakpoint` and :func:`set_trace` will not be affected by this function. They always use ``'monitoring'`` backend." msgstr "" -#: ../../library/pdb.rst:260 msgid "Returns the default backend for pdb." msgstr "" -#: ../../library/pdb.rst:264 -msgid "" -"The ``run*`` functions and :func:`set_trace` are aliases for instantiating " -"the :class:`Pdb` class and calling the method of the same name. If you want " -"to access further features, you have to do this yourself:" +msgid "The ``run*`` functions and :func:`set_trace` are aliases for instantiating the :class:`Pdb` class and calling the method of the same name. If you want to access further features, you have to do this yourself:" msgstr "" -#: ../../library/pdb.rst:271 msgid ":class:`Pdb` is the debugger class." msgstr "" -#: ../../library/pdb.rst:273 -msgid "" -"The *completekey*, *stdin* and *stdout* arguments are passed to the " -"underlying :class:`cmd.Cmd` class; see the description there." +msgid "The *completekey*, *stdin* and *stdout* arguments are passed to the underlying :class:`cmd.Cmd` class; see the description there." msgstr "" -#: ../../library/pdb.rst:276 -msgid "" -"The *skip* argument, if given, must be an iterable of glob-style module name " -"patterns. The debugger will not step into frames that originate in a module " -"that matches one of these patterns. [1]_" +msgid "The *skip* argument, if given, must be an iterable of glob-style module name patterns. The debugger will not step into frames that originate in a module that matches one of these patterns. [1]_" msgstr "" -#: ../../library/pdb.rst:280 -msgid "" -"By default, Pdb sets a handler for the SIGINT signal (which is sent when the " -"user presses :kbd:`Ctrl-C` on the console) when you give " -"a :pdbcmd:`continue` command. This allows you to break into the debugger " -"again by pressing :kbd:`Ctrl-C`. If you want Pdb not to touch the SIGINT " -"handler, set *nosigint* to true." +msgid "By default, Pdb sets a handler for the SIGINT signal (which is sent when the user presses :kbd:`Ctrl-C` on the console) when you give a :pdbcmd:`continue` command. This allows you to break into the debugger again by pressing :kbd:`Ctrl-C`. If you want Pdb not to touch the SIGINT handler, set *nosigint* to true." msgstr "" -#: ../../library/pdb.rst:285 -msgid "" -"The *readrc* argument defaults to true and controls whether Pdb will " -"load .pdbrc files from the filesystem." +msgid "The *readrc* argument defaults to true and controls whether Pdb will load .pdbrc files from the filesystem." msgstr "" -#: ../../library/pdb.rst:288 -msgid "" -"The *mode* argument specifies how the debugger was invoked. It impacts the " -"workings of some debugger commands. Valid values are ``'inline'`` (used by " -"the breakpoint() builtin), ``'cli'`` (used by the command line invocation) " -"or ``None`` (for backwards compatible behaviour, as before the *mode* " -"argument was added)." +msgid "The *mode* argument specifies how the debugger was invoked. It impacts the workings of some debugger commands. Valid values are ``'inline'`` (used by the breakpoint() builtin), ``'cli'`` (used by the command line invocation) or ``None`` (for backwards compatible behaviour, as before the *mode* argument was added)." msgstr "" -#: ../../library/pdb.rst:295 -msgid "" -"The *backend* argument specifies the backend to use for the debugger. If " -"``None`` is passed, the default backend will be used. " -"See :func:`set_default_backend`. Otherwise the supported backends are " -"``'settrace'`` and ``'monitoring'``." +msgid "The *backend* argument specifies the backend to use for the debugger. If ``None`` is passed, the default backend will be used. See :func:`set_default_backend`. Otherwise the supported backends are ``'settrace'`` and ``'monitoring'``." msgstr "" -#: ../../library/pdb.rst:299 -msgid "" -"The *colorize* argument, if set to ``True``, will enable colorized output in " -"the debugger, if color is supported. This will highlight source code " -"displayed in pdb." +msgid "The *colorize* argument, if set to ``True``, will enable colorized output in the debugger, if color is supported. This will highlight source code displayed in pdb." msgstr "" -#: ../../library/pdb.rst:302 msgid "Example call to enable tracing with *skip*::" msgstr "" -#: ../../library/pdb.rst:304 msgid "import pdb; pdb.Pdb(skip=['django.*']).set_trace()" msgstr "" -#: ../../library/pdb.rst:306 -msgid "" -"Raises an :ref:`auditing event ` ``pdb.Pdb`` with no arguments." +msgid "Raises an :ref:`auditing event ` ``pdb.Pdb`` with no arguments." msgstr "" -#: ../../library/pdb.rst:308 msgid "Added the *skip* parameter." msgstr "" -#: ../../library/pdb.rst:311 -msgid "" -"Added the *nosigint* parameter. Previously, a SIGINT handler was never set " -"by Pdb." +msgid "Added the *nosigint* parameter. Previously, a SIGINT handler was never set by Pdb." msgstr "" -#: ../../library/pdb.rst:315 msgid "The *readrc* argument." msgstr "" -#: ../../library/pdb.rst:318 msgid "Added the *mode* argument." msgstr "" -#: ../../library/pdb.rst:321 msgid "Added the *backend* argument." msgstr "" -#: ../../library/pdb.rst:324 msgid "Added the *colorize* argument." msgstr "" -#: ../../library/pdb.rst:327 -msgid "" -"Inline breakpoints like :func:`breakpoint` or :func:`pdb.set_trace` will " -"always stop the program at calling frame, ignoring the *skip* pattern (if " -"any)." +msgid "Inline breakpoints like :func:`breakpoint` or :func:`pdb.set_trace` will always stop the program at calling frame, ignoring the *skip* pattern (if any)." msgstr "" -#: ../../library/pdb.rst:336 msgid "See the documentation for the functions explained above." msgstr "" -#: ../../library/pdb.rst:342 msgid "Debugger commands" msgstr "" -#: ../../library/pdb.rst:344 -msgid "" -"The commands recognized by the debugger are listed below. Most commands can " -"be abbreviated to one or two letters as indicated; e.g. ``h(elp)`` means " -"that either ``h`` or ``help`` can be used to enter the help command (but not " -"``he`` or ``hel``, nor ``H`` or ``Help`` or ``HELP``). Arguments to " -"commands must be separated by whitespace (spaces or tabs). Optional " -"arguments are enclosed in square brackets (``[]``) in the command syntax; " -"the square brackets must not be typed. Alternatives in the command syntax " -"are separated by a vertical bar (``|``)." +msgid "The commands recognized by the debugger are listed below. Most commands can be abbreviated to one or two letters as indicated; e.g. ``h(elp)`` means that either ``h`` or ``help`` can be used to enter the help command (but not ``he`` or ``hel``, nor ``H`` or ``Help`` or ``HELP``). Arguments to commands must be separated by whitespace (spaces or tabs). Optional arguments are enclosed in square brackets (``[]``) in the command syntax; the square brackets must not be typed. Alternatives in the command syntax are separated by a vertical bar (``|``)." msgstr "" -#: ../../library/pdb.rst:353 -msgid "" -"Entering a blank line repeats the last command entered. Exception: if the " -"last command was a :pdbcmd:`list` command, the next 11 lines are listed." +msgid "Entering a blank line repeats the last command entered. Exception: if the last command was a :pdbcmd:`list` command, the next 11 lines are listed." msgstr "" -#: ../../library/pdb.rst:356 -msgid "" -"Commands that the debugger doesn't recognize are assumed to be Python " -"statements and are executed in the context of the program being debugged. " -"Python statements can also be prefixed with an exclamation point (``!``). " -"This is a powerful way to inspect the program being debugged; it is even " -"possible to change a variable or call a function. When an exception occurs " -"in such a statement, the exception name is printed but the debugger's state " -"is not changed." +msgid "Commands that the debugger doesn't recognize are assumed to be Python statements and are executed in the context of the program being debugged. Python statements can also be prefixed with an exclamation point (``!``). This is a powerful way to inspect the program being debugged; it is even possible to change a variable or call a function. When an exception occurs in such a statement, the exception name is printed but the debugger's state is not changed." msgstr "" -#: ../../library/pdb.rst:364 -msgid "" -"Expressions/Statements whose prefix is a pdb command are now correctly " -"identified and executed." +msgid "Expressions/Statements whose prefix is a pdb command are now correctly identified and executed." msgstr "" -#: ../../library/pdb.rst:368 -msgid "" -"The debugger supports :ref:`aliases `. Aliases can have " -"parameters which allows one a certain level of adaptability to the context " -"under examination." +msgid "The debugger supports :ref:`aliases `. Aliases can have parameters which allows one a certain level of adaptability to the context under examination." msgstr "" -#: ../../library/pdb.rst:372 -msgid "" -"Multiple commands may be entered on a single line, separated by ``;;``. (A " -"single ``;`` is not used as it is the separator for multiple commands in a " -"line that is passed to the Python parser.) No intelligence is applied to " -"separating the commands; the input is split at the first ``;;`` pair, even " -"if it is in the middle of a quoted string. A workaround for strings with " -"double semicolons is to use implicit string concatenation ``';'';'`` or ``\";" -"\"\";\"``." +msgid "Multiple commands may be entered on a single line, separated by ``;;``. (A single ``;`` is not used as it is the separator for multiple commands in a line that is passed to the Python parser.) No intelligence is applied to separating the commands; the input is split at the first ``;;`` pair, even if it is in the middle of a quoted string. A workaround for strings with double semicolons is to use implicit string concatenation ``';'';'`` or ``\";\"\";\"``." msgstr "" -#: ../../library/pdb.rst:379 -msgid "" -"To set a temporary global variable, use a *convenience variable*. A " -"*convenience variable* is a variable whose name starts with ``$``. For " -"example, ``$foo = 1`` sets a global variable ``$foo`` which you can use in " -"the debugger session. The *convenience variables* are cleared when the " -"program resumes execution so it's less likely to interfere with your program " -"compared to using normal variables like ``foo = 1``." +msgid "To set a temporary global variable, use a *convenience variable*. A *convenience variable* is a variable whose name starts with ``$``. For example, ``$foo = 1`` sets a global variable ``$foo`` which you can use in the debugger session. The *convenience variables* are cleared when the program resumes execution so it's less likely to interfere with your program compared to using normal variables like ``foo = 1``." msgstr "" -#: ../../library/pdb.rst:386 msgid "There are four preset *convenience variables*:" msgstr "" -#: ../../library/pdb.rst:388 msgid "``$_frame``: the current frame you are debugging" msgstr "" -#: ../../library/pdb.rst:389 msgid "``$_retval``: the return value if the frame is returning" msgstr "" -#: ../../library/pdb.rst:390 msgid "``$_exception``: the exception if the frame is raising an exception" msgstr "" -#: ../../library/pdb.rst:391 msgid "``$_asynctask``: the asyncio task if pdb stops in an async function" msgstr "" -#: ../../library/pdb.rst:395 msgid "Added the *convenience variable* feature." msgstr "" -#: ../../library/pdb.rst:397 msgid "Added the ``$_asynctask`` convenience variable." msgstr "" -#: ../../library/pdb.rst:404 -msgid "" -"If a file :file:`.pdbrc` exists in the user's home directory or in the " -"current directory, it is read with ``'utf-8'`` encoding and executed as if " -"it had been typed at the debugger prompt, with the exception that empty " -"lines and lines starting with ``#`` are ignored. This is particularly " -"useful for aliases. If both files exist, the one in the home directory is " -"read first and aliases defined there can be overridden by the local file." +msgid "If a file :file:`.pdbrc` exists in the user's home directory or in the current directory, it is read with ``'utf-8'`` encoding and executed as if it had been typed at the debugger prompt, with the exception that empty lines and lines starting with ``#`` are ignored. This is particularly useful for aliases. If both files exist, the one in the home directory is read first and aliases defined there can be overridden by the local file." msgstr "" -#: ../../library/pdb.rst:411 -msgid "" -":file:`.pdbrc` can now contain commands that continue debugging, such " -"as :pdbcmd:`continue` or :pdbcmd:`next`. Previously, these commands had no " -"effect." +msgid ":file:`.pdbrc` can now contain commands that continue debugging, such as :pdbcmd:`continue` or :pdbcmd:`next`. Previously, these commands had no effect." msgstr "" -#: ../../library/pdb.rst:416 -msgid "" -":file:`.pdbrc` is now read with ``'utf-8'`` encoding. Previously, it was " -"read with the system locale encoding." +msgid ":file:`.pdbrc` is now read with ``'utf-8'`` encoding. Previously, it was read with the system locale encoding." msgstr "" -#: ../../library/pdb.rst:423 -msgid "" -"Without argument, print the list of available commands. With a *command* as " -"argument, print help about that command. ``help pdb`` displays the full " -"documentation (the docstring of the :mod:`pdb` module). Since the *command* " -"argument must be an identifier, ``help exec`` must be entered to get help on " -"the ``!`` command." +msgid "Without argument, print the list of available commands. With a *command* as argument, print help about that command. ``help pdb`` displays the full documentation (the docstring of the :mod:`pdb` module). Since the *command* argument must be an identifier, ``help exec`` must be entered to get help on the ``!`` command." msgstr "" -#: ../../library/pdb.rst:431 -msgid "" -"Print a stack trace, with the most recent frame at the bottom. if *count* " -"is 0, print the current frame entry. If *count* is negative, print the least " -"recent - *count* frames. If *count* is positive, print the most recent " -"*count* frames. An arrow (``>``) indicates the current frame, which " -"determines the context of most commands." +msgid "Print a stack trace, with the most recent frame at the bottom. if *count* is 0, print the current frame entry. If *count* is negative, print the least recent - *count* frames. If *count* is positive, print the most recent *count* frames. An arrow (``>``) indicates the current frame, which determines the context of most commands." msgstr "" -#: ../../library/pdb.rst:437 msgid "*count* argument is added." msgstr "" -#: ../../library/pdb.rst:442 -msgid "" -"Move the current frame *count* (default one) levels down in the stack trace " -"(to a newer frame)." +msgid "Move the current frame *count* (default one) levels down in the stack trace (to a newer frame)." msgstr "" -#: ../../library/pdb.rst:447 -msgid "" -"Move the current frame *count* (default one) levels up in the stack trace " -"(to an older frame)." +msgid "Move the current frame *count* (default one) levels up in the stack trace (to an older frame)." msgstr "" -#: ../../library/pdb.rst:452 -msgid "" -"With a *lineno* argument, set a break at line *lineno* in the current file. " -"The line number may be prefixed with a *filename* and a colon, to specify a " -"breakpoint in another file (possibly one that hasn't been loaded yet). The " -"file is searched on :data:`sys.path`. Acceptable forms of *filename* are ``/" -"abspath/to/file.py``, ``relpath/file.py``, ``module`` and ``package.module``." +msgid "With a *lineno* argument, set a break at line *lineno* in the current file. The line number may be prefixed with a *filename* and a colon, to specify a breakpoint in another file (possibly one that hasn't been loaded yet). The file is searched on :data:`sys.path`. Acceptable forms of *filename* are ``/abspath/to/file.py``, ``relpath/file.py``, ``module`` and ``package.module``." msgstr "" -#: ../../library/pdb.rst:459 -msgid "" -"With a *function* argument, set a break at the first executable statement " -"within that function. *function* can be any expression that evaluates to a " -"function in the current namespace." +msgid "With a *function* argument, set a break at the first executable statement within that function. *function* can be any expression that evaluates to a function in the current namespace." msgstr "" -#: ../../library/pdb.rst:463 -msgid "" -"If a second argument is present, it is an expression which must evaluate to " -"true before the breakpoint is honored." +msgid "If a second argument is present, it is an expression which must evaluate to true before the breakpoint is honored." msgstr "" -#: ../../library/pdb.rst:466 -msgid "" -"Without argument, list all breaks, including for each breakpoint, the number " -"of times that breakpoint has been hit, the current ignore count, and the " -"associated condition if any." +msgid "Without argument, list all breaks, including for each breakpoint, the number of times that breakpoint has been hit, the current ignore count, and the associated condition if any." msgstr "" -#: ../../library/pdb.rst:470 -msgid "" -"Each breakpoint is assigned a number to which all the other breakpoint " -"commands refer." +msgid "Each breakpoint is assigned a number to which all the other breakpoint commands refer." msgstr "" -#: ../../library/pdb.rst:475 -msgid "" -"Temporary breakpoint, which is removed automatically when it is first hit. " -"The arguments are the same as for :pdbcmd:`break`." +msgid "Temporary breakpoint, which is removed automatically when it is first hit. The arguments are the same as for :pdbcmd:`break`." msgstr "" -#: ../../library/pdb.rst:480 -msgid "" -"With a *filename:lineno* argument, clear all the breakpoints at this line. " -"With a space separated list of breakpoint numbers, clear those breakpoints. " -"Without argument, clear all breaks (but first ask confirmation)." +msgid "With a *filename:lineno* argument, clear all the breakpoints at this line. With a space separated list of breakpoint numbers, clear those breakpoints. Without argument, clear all breaks (but first ask confirmation)." msgstr "" -#: ../../library/pdb.rst:486 -msgid "" -"Disable the breakpoints given as a space separated list of breakpoint " -"numbers. Disabling a breakpoint means it cannot cause the program to stop " -"execution, but unlike clearing a breakpoint, it remains in the list of " -"breakpoints and can be (re-)enabled." +msgid "Disable the breakpoints given as a space separated list of breakpoint numbers. Disabling a breakpoint means it cannot cause the program to stop execution, but unlike clearing a breakpoint, it remains in the list of breakpoints and can be (re-)enabled." msgstr "" -#: ../../library/pdb.rst:493 msgid "Enable the breakpoints specified." msgstr "" -#: ../../library/pdb.rst:497 -msgid "" -"Set the ignore count for the given breakpoint number. If *count* is " -"omitted, the ignore count is set to 0. A breakpoint becomes active when the " -"ignore count is zero. When non-zero, the *count* is decremented each time " -"the breakpoint is reached and the breakpoint is not disabled and any " -"associated condition evaluates to true." +msgid "Set the ignore count for the given breakpoint number. If *count* is omitted, the ignore count is set to 0. A breakpoint becomes active when the ignore count is zero. When non-zero, the *count* is decremented each time the breakpoint is reached and the breakpoint is not disabled and any associated condition evaluates to true." msgstr "" -#: ../../library/pdb.rst:505 -msgid "" -"Set a new *condition* for the breakpoint, an expression which must evaluate " -"to true before the breakpoint is honored. If *condition* is absent, any " -"existing condition is removed; i.e., the breakpoint is made unconditional." +msgid "Set a new *condition* for the breakpoint, an expression which must evaluate to true before the breakpoint is honored. If *condition* is absent, any existing condition is removed; i.e., the breakpoint is made unconditional." msgstr "" -#: ../../library/pdb.rst:511 -msgid "" -"Specify a list of commands for breakpoint number *bpnumber*. The commands " -"themselves appear on the following lines. Type a line containing just " -"``end`` to terminate the commands. An example::" +msgid "Specify a list of commands for breakpoint number *bpnumber*. The commands themselves appear on the following lines. Type a line containing just ``end`` to terminate the commands. An example::" msgstr "" -#: ../../library/pdb.rst:515 msgid "" "(Pdb) commands 1\n" "(com) p some_variable\n" @@ -704,180 +386,93 @@ msgid "" "(Pdb)" msgstr "" -#: ../../library/pdb.rst:520 -msgid "" -"To remove all commands from a breakpoint, type ``commands`` and follow it " -"immediately with ``end``; that is, give no commands." +msgid "To remove all commands from a breakpoint, type ``commands`` and follow it immediately with ``end``; that is, give no commands." msgstr "" -#: ../../library/pdb.rst:523 -msgid "" -"With no *bpnumber* argument, ``commands`` refers to the last breakpoint set." +msgid "With no *bpnumber* argument, ``commands`` refers to the last breakpoint set." msgstr "" -#: ../../library/pdb.rst:525 -msgid "" -"You can use breakpoint commands to start your program up again. Simply use " -"the :pdbcmd:`continue` command, or :pdbcmd:`step`, or any other command that " -"resumes execution." +msgid "You can use breakpoint commands to start your program up again. Simply use the :pdbcmd:`continue` command, or :pdbcmd:`step`, or any other command that resumes execution." msgstr "" -#: ../../library/pdb.rst:529 -msgid "" -"Specifying any command resuming execution " -"(currently :pdbcmd:`continue`, :pdbcmd:`step`, :pdbcmd:`next`, :pdbcmd:`return`, :pdbcmd:`until`, :pdbcmd:`jump`, :pdbcmd:`quit` " -"and their abbreviations) terminates the command list (as if that command was " -"immediately followed by end). This is because any time you resume execution " -"(even with a simple next or step), you may encounter another breakpoint—" -"which could have its own command list, leading to ambiguities about which " -"list to execute." +msgid "Specifying any command resuming execution (currently :pdbcmd:`continue`, :pdbcmd:`step`, :pdbcmd:`next`, :pdbcmd:`return`, :pdbcmd:`until`, :pdbcmd:`jump`, :pdbcmd:`quit` and their abbreviations) terminates the command list (as if that command was immediately followed by end). This is because any time you resume execution (even with a simple next or step), you may encounter another breakpoint—which could have its own command list, leading to ambiguities about which list to execute." msgstr "" -#: ../../library/pdb.rst:538 -msgid "" -"If the list of commands contains the ``silent`` command, or a command that " -"resumes execution, then the breakpoint message containing information about " -"the frame is not displayed." +msgid "If the list of commands contains the ``silent`` command, or a command that resumes execution, then the breakpoint message containing information about the frame is not displayed." msgstr "" -#: ../../library/pdb.rst:542 -msgid "" -"Frame information will not be displayed if a command that resumes execution " -"is present in the command list." +msgid "Frame information will not be displayed if a command that resumes execution is present in the command list." msgstr "" -#: ../../library/pdb.rst:548 -msgid "" -"Execute the current line, stop at the first possible occasion (either in a " -"function that is called or on the next line in the current function)." +msgid "Execute the current line, stop at the first possible occasion (either in a function that is called or on the next line in the current function)." msgstr "" -#: ../../library/pdb.rst:553 -msgid "" -"Continue execution until the next line in the current function is reached or " -"it returns. (The difference between :pdbcmd:`next` and :pdbcmd:`step` is " -"that :pdbcmd:`step` stops inside a called function, while :pdbcmd:`next` " -"executes called functions at (nearly) full speed, only stopping at the next " -"line in the current function.)" +msgid "Continue execution until the next line in the current function is reached or it returns. (The difference between :pdbcmd:`next` and :pdbcmd:`step` is that :pdbcmd:`step` stops inside a called function, while :pdbcmd:`next` executes called functions at (nearly) full speed, only stopping at the next line in the current function.)" msgstr "" -#: ../../library/pdb.rst:561 -msgid "" -"Without argument, continue execution until the line with a number greater " -"than the current one is reached." +msgid "Without argument, continue execution until the line with a number greater than the current one is reached." msgstr "" -#: ../../library/pdb.rst:564 -msgid "" -"With *lineno*, continue execution until a line with a number greater or " -"equal to *lineno* is reached. In both cases, also stop when the current " -"frame returns." +msgid "With *lineno*, continue execution until a line with a number greater or equal to *lineno* is reached. In both cases, also stop when the current frame returns." msgstr "" -#: ../../library/pdb.rst:568 msgid "Allow giving an explicit line number." msgstr "" -#: ../../library/pdb.rst:573 msgid "Continue execution until the current function returns." msgstr "" -#: ../../library/pdb.rst:577 msgid "Continue execution, only stop when a breakpoint is encountered." msgstr "" -#: ../../library/pdb.rst:581 -msgid "" -"Set the next line that will be executed. Only available in the bottom-most " -"frame. This lets you jump back and execute code again, or jump forward to " -"skip code that you don't want to run." +msgid "Set the next line that will be executed. Only available in the bottom-most frame. This lets you jump back and execute code again, or jump forward to skip code that you don't want to run." msgstr "" -#: ../../library/pdb.rst:585 -msgid "" -"It should be noted that not all jumps are allowed -- for instance it is not " -"possible to jump into the middle of a :keyword:`for` loop or out of " -"a :keyword:`finally` clause." +msgid "It should be noted that not all jumps are allowed -- for instance it is not possible to jump into the middle of a :keyword:`for` loop or out of a :keyword:`finally` clause." msgstr "" -#: ../../library/pdb.rst:591 -msgid "" -"List source code for the current file. Without arguments, list 11 lines " -"around the current line or continue the previous listing. With ``.`` as " -"argument, list 11 lines around the current line. With one argument, list 11 " -"lines around at that line. With two arguments, list the given range; if the " -"second argument is less than the first, it is interpreted as a count." +msgid "List source code for the current file. Without arguments, list 11 lines around the current line or continue the previous listing. With ``.`` as argument, list 11 lines around the current line. With one argument, list 11 lines around at that line. With two arguments, list the given range; if the second argument is less than the first, it is interpreted as a count." msgstr "" -#: ../../library/pdb.rst:597 -msgid "" -"The current line in the current frame is indicated by ``->``. If an " -"exception is being debugged, the line where the exception was originally " -"raised or propagated is indicated by ``>>``, if it differs from the current " -"line." +msgid "The current line in the current frame is indicated by ``->``. If an exception is being debugged, the line where the exception was originally raised or propagated is indicated by ``>>``, if it differs from the current line." msgstr "" -#: ../../library/pdb.rst:602 msgid "Added the ``>>`` marker." msgstr "" -#: ../../library/pdb.rst:607 -msgid "" -"List all source code for the current function or frame. Interesting lines " -"are marked as for :pdbcmd:`list`." +msgid "List all source code for the current function or frame. Interesting lines are marked as for :pdbcmd:`list`." msgstr "" -#: ../../library/pdb.rst:614 msgid "Print the arguments of the current function and their current values." msgstr "" -#: ../../library/pdb.rst:618 msgid "Evaluate *expression* in the current context and print its value." msgstr "" -#: ../../library/pdb.rst:622 -msgid "" -"``print()`` can also be used, but is not a debugger command --- this " -"executes the Python :func:`print` function." +msgid "``print()`` can also be used, but is not a debugger command --- this executes the Python :func:`print` function." msgstr "" -#: ../../library/pdb.rst:628 -msgid "" -"Like the :pdbcmd:`p` command, except the value of *expression* is pretty-" -"printed using the :mod:`pprint` module." +msgid "Like the :pdbcmd:`p` command, except the value of *expression* is pretty-printed using the :mod:`pprint` module." msgstr "" -#: ../../library/pdb.rst:633 msgid "Print the type of *expression*." msgstr "" -#: ../../library/pdb.rst:637 msgid "Try to get source code of *expression* and display it." msgstr "" -#: ../../library/pdb.rst:643 -msgid "" -"Display the value of *expression* if it changed, each time execution stops " -"in the current frame." +msgid "Display the value of *expression* if it changed, each time execution stops in the current frame." msgstr "" -#: ../../library/pdb.rst:646 -msgid "" -"Without *expression*, list all display expressions for the current frame." +msgid "Without *expression*, list all display expressions for the current frame." msgstr "" -#: ../../library/pdb.rst:650 -msgid "" -"Display evaluates *expression* and compares to the result of the previous " -"evaluation of *expression*, so when the result is mutable, display may not " -"be able to pick up the changes." +msgid "Display evaluates *expression* and compares to the result of the previous evaluation of *expression*, so when the result is mutable, display may not be able to pick up the changes." msgstr "" -#: ../../library/pdb.rst:654 ../../library/pdb.rst:819 msgid "Example::" msgstr "" -#: ../../library/pdb.rst:656 msgid "" "lst = []\n" "breakpoint()\n" @@ -886,13 +481,9 @@ msgid "" "print(lst)" msgstr "" -#: ../../library/pdb.rst:662 -msgid "" -"Display won't realize ``lst`` has been changed because the result of " -"evaluation is modified in place by ``lst.append(1)`` before being compared::" +msgid "Display won't realize ``lst`` has been changed because the result of evaluation is modified in place by ``lst.append(1)`` before being compared::" msgstr "" -#: ../../library/pdb.rst:665 msgid "" "> example.py(3)()\n" "-> pass\n" @@ -907,11 +498,9 @@ msgid "" "(Pdb)" msgstr "" -#: ../../library/pdb.rst:677 msgid "You can do some tricks with copy mechanism to make it work::" msgstr "" -#: ../../library/pdb.rst:679 msgid "" "> example.py(3)()\n" "-> pass\n" @@ -927,64 +516,30 @@ msgid "" "(Pdb)" msgstr "" -#: ../../library/pdb.rst:696 -msgid "" -"Do not display *expression* anymore in the current frame. Without " -"*expression*, clear all display expressions for the current frame." +msgid "Do not display *expression* anymore in the current frame. Without *expression*, clear all display expressions for the current frame." msgstr "" -#: ../../library/pdb.rst:703 -msgid "" -"Start an interactive interpreter (using the :mod:`code` module) in a new " -"global namespace initialised from the local and global namespaces for the " -"current scope. Use ``exit()`` or ``quit()`` to exit the interpreter and " -"return to the debugger." +msgid "Start an interactive interpreter (using the :mod:`code` module) in a new global namespace initialised from the local and global namespaces for the current scope. Use ``exit()`` or ``quit()`` to exit the interpreter and return to the debugger." msgstr "" -#: ../../library/pdb.rst:710 -msgid "" -"As ``interact`` creates a new dedicated namespace for code execution, " -"assignments to variables will not affect the original namespaces. However, " -"modifications to any referenced mutable objects will be reflected in the " -"original namespaces as usual." +msgid "As ``interact`` creates a new dedicated namespace for code execution, assignments to variables will not affect the original namespaces. However, modifications to any referenced mutable objects will be reflected in the original namespaces as usual." msgstr "" -#: ../../library/pdb.rst:717 -msgid "" -"``exit()`` and ``quit()`` can be used to exit the :pdbcmd:`interact` command." +msgid "``exit()`` and ``quit()`` can be used to exit the :pdbcmd:`interact` command." msgstr "" -#: ../../library/pdb.rst:721 -msgid "" -":pdbcmd:`interact` directs its output to the debugger's output channel " -"rather than :data:`sys.stderr`." +msgid ":pdbcmd:`interact` directs its output to the debugger's output channel rather than :data:`sys.stderr`." msgstr "" -#: ../../library/pdb.rst:729 -msgid "" -"Create an alias called *name* that executes *command*. The *command* must " -"*not* be enclosed in quotes. Replaceable parameters can be indicated by " -"``%1``, ``%2``, ... and ``%9``, while ``%*`` is replaced by all the " -"parameters. If *command* is omitted, the current alias for *name* is shown. " -"If no arguments are given, all aliases are listed." +msgid "Create an alias called *name* that executes *command*. The *command* must *not* be enclosed in quotes. Replaceable parameters can be indicated by ``%1``, ``%2``, ... and ``%9``, while ``%*`` is replaced by all the parameters. If *command* is omitted, the current alias for *name* is shown. If no arguments are given, all aliases are listed." msgstr "" -#: ../../library/pdb.rst:735 -msgid "" -"Aliases may be nested and can contain anything that can be legally typed at " -"the pdb prompt. Note that internal pdb commands *can* be overridden by " -"aliases. Such a command is then hidden until the alias is removed. " -"Aliasing is recursively applied to the first word of the command line; all " -"other words in the line are left alone." +msgid "Aliases may be nested and can contain anything that can be legally typed at the pdb prompt. Note that internal pdb commands *can* be overridden by aliases. Such a command is then hidden until the alias is removed. Aliasing is recursively applied to the first word of the command line; all other words in the line are left alone." msgstr "" -#: ../../library/pdb.rst:741 -msgid "" -"As an example, here are two useful aliases (especially when placed in " -"the :file:`.pdbrc` file)::" +msgid "As an example, here are two useful aliases (especially when placed in the :file:`.pdbrc` file)::" msgstr "" -#: ../../library/pdb.rst:744 msgid "" "# Print instance variables (usage \"pi classInst\")\n" "alias pi for k in %1.__dict__.keys(): print(f\"%1.{k} = {%1.__dict__[k]}\")\n" @@ -992,93 +547,52 @@ msgid "" "alias ps pi self" msgstr "" -#: ../../library/pdb.rst:751 msgid "Delete the specified alias *name*." msgstr "" -#: ../../library/pdb.rst:755 -msgid "" -"Execute the (one-line) *statement* in the context of the current stack " -"frame. The exclamation point can be omitted unless the first word of the " -"statement resembles a debugger command, e.g.:" +msgid "Execute the (one-line) *statement* in the context of the current stack frame. The exclamation point can be omitted unless the first word of the statement resembles a debugger command, e.g.:" msgstr "" -#: ../../library/pdb.rst:759 msgid "" "(Pdb) ! n=42\n" "(Pdb)" msgstr "" -#: ../../library/pdb.rst:764 -msgid "" -"To set a global variable, you can prefix the assignment command with " -"a :keyword:`global` statement on the same line, e.g.:" +msgid "To set a global variable, you can prefix the assignment command with a :keyword:`global` statement on the same line, e.g.:" msgstr "" -#: ../../library/pdb.rst:767 msgid "" "(Pdb) global list_options; list_options = ['-l']\n" "(Pdb)" msgstr "" -#: ../../library/pdb.rst:775 -msgid "" -"Restart the debugged Python program. If *args* is supplied, it is split " -"with :mod:`shlex` and the result is used as the new :data:`sys.argv`. " -"History, breakpoints, actions and debugger options are " -"preserved. :pdbcmd:`restart` is an alias for :pdbcmd:`run`." +msgid "Restart the debugged Python program. If *args* is supplied, it is split with :mod:`shlex` and the result is used as the new :data:`sys.argv`. History, breakpoints, actions and debugger options are preserved. :pdbcmd:`restart` is an alias for :pdbcmd:`run`." msgstr "" -#: ../../library/pdb.rst:780 -msgid "" -":pdbcmd:`run` and :pdbcmd:`restart` commands are disabled when the debugger " -"is invoked in ``'inline'`` mode." +msgid ":pdbcmd:`run` and :pdbcmd:`restart` commands are disabled when the debugger is invoked in ``'inline'`` mode." msgstr "" -#: ../../library/pdb.rst:786 -msgid "" -"Quit from the debugger. The program being executed is aborted. An end-of-" -"file input is equivalent to :pdbcmd:`quit`." +msgid "Quit from the debugger. The program being executed is aborted. An end-of-file input is equivalent to :pdbcmd:`quit`." msgstr "" -#: ../../library/pdb.rst:789 -msgid "" -"A confirmation prompt will be shown if the debugger is invoked in " -"``'inline'`` mode. Either ``y``, ``Y``, ```` or ``EOF`` will confirm " -"the quit." +msgid "A confirmation prompt will be shown if the debugger is invoked in ``'inline'`` mode. Either ``y``, ``Y``, ```` or ``EOF`` will confirm the quit." msgstr "" -#: ../../library/pdb.rst:793 -msgid "" -"A confirmation prompt will be shown if the debugger is invoked in " -"``'inline'`` mode. After the confirmation, the debugger will " -"call :func:`sys.exit` immediately, instead of raising :exc:`bdb.BdbQuit` in " -"the next trace event." +msgid "A confirmation prompt will be shown if the debugger is invoked in ``'inline'`` mode. After the confirmation, the debugger will call :func:`sys.exit` immediately, instead of raising :exc:`bdb.BdbQuit` in the next trace event." msgstr "" -#: ../../library/pdb.rst:801 -msgid "" -"Enter a recursive debugger that steps through *code* (which is an arbitrary " -"expression or statement to be executed in the current environment)." +msgid "Enter a recursive debugger that steps through *code* (which is an arbitrary expression or statement to be executed in the current environment)." msgstr "" -#: ../../library/pdb.rst:807 msgid "Print the return value for the last return of the current function." msgstr "" -#: ../../library/pdb.rst:811 msgid "List or jump between chained exceptions." msgstr "" -#: ../../library/pdb.rst:813 -msgid "" -"When using ``pdb.pm()`` or ``Pdb.post_mortem(...)`` with a chained " -"exception instead of a traceback, it allows the user to move between the " -"chained exceptions using ``exceptions`` command to list exceptions, and " -"``exceptions `` to switch to that exception." +msgid "When using ``pdb.pm()`` or ``Pdb.post_mortem(...)`` with a chained exception instead of a traceback, it allows the user to move between the chained exceptions using ``exceptions`` command to list exceptions, and ``exceptions `` to switch to that exception." msgstr "" -#: ../../library/pdb.rst:821 msgid "" "def out():\n" " try:\n" @@ -1098,11 +612,9 @@ msgid "" " out()" msgstr "" -#: ../../library/pdb.rst:838 msgid "calling ``pdb.pm()`` will allow to move between exceptions::" msgstr "" -#: ../../library/pdb.rst:840 msgid "" "> example.py(5)out()\n" "-> raise ValueError(\"reraise middle() error\") from e\n" @@ -1121,48 +633,35 @@ msgid "" "-> return inner(0)" msgstr "" -#: ../../library/pdb.rst:859 msgid "Footnotes" msgstr "" -#: ../../library/pdb.rst:860 -msgid "" -"Whether a frame is considered to originate in a certain module is determined " -"by the ``__name__`` in the frame globals." +msgid "Whether a frame is considered to originate in a certain module is determined by the ``__name__`` in the frame globals." msgstr "" -#: ../../library/pdb.rst:11 msgid "debugging" msgstr "" -#: ../../library/pdb.rst:21 msgid "Pdb (class in pdb)" msgstr "" -#: ../../library/pdb.rst:21 msgid "module" msgstr "" -#: ../../library/pdb.rst:21 msgid "bdb" msgstr "" -#: ../../library/pdb.rst:21 msgid "cmd" msgstr "" -#: ../../library/pdb.rst:400 msgid ".pdbrc" msgstr "" -#: ../../library/pdb.rst:400 msgid "file" msgstr "" -#: ../../library/pdb.rst:400 msgid "debugger" msgstr "" -#: ../../library/pdb.rst:400 msgid "configuration" msgstr "" diff --git a/library/persistence.po b/library/persistence.po index 70e226b1..c46dc12f 100644 --- a/library/persistence.po +++ b/library/persistence.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:11+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,19 +21,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/persistence.rst:5 msgid "Data Persistence" msgstr "" -#: ../../library/persistence.rst:7 -msgid "" -"The modules described in this chapter support storing Python data in a " -"persistent form on disk. The :mod:`pickle` and :mod:`marshal` modules can " -"turn many Python data types into a stream of bytes and then recreate the " -"objects from the bytes. The various DBM-related modules support a family of " -"hash-based file formats that store a mapping of strings to other strings." +msgid "The modules described in this chapter support storing Python data in a persistent form on disk. The :mod:`pickle` and :mod:`marshal` modules can turn many Python data types into a stream of bytes and then recreate the objects from the bytes. The various DBM-related modules support a family of hash-based file formats that store a mapping of strings to other strings." msgstr "" -#: ../../library/persistence.rst:13 msgid "The list of modules described in this chapter is:" msgstr "" diff --git a/library/pickle.po b/library/pickle.po index b47a9838..3a0800d3 100644 --- a/library/pickle.po +++ b/library/pickle.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:11+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,727 +24,339 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/pickle.rst:2 msgid ":mod:`!pickle` --- Python object serialization" msgstr "" -#: ../../library/pickle.rst:10 msgid "**Source code:** :source:`Lib/pickle.py`" msgstr "" -#: ../../library/pickle.rst:22 -msgid "" -"The :mod:`!pickle` module implements binary protocols for serializing and de-" -"serializing a Python object structure. *\"Pickling\"* is the process " -"whereby a Python object hierarchy is converted into a byte stream, and " -"*\"unpickling\"* is the inverse operation, whereby a byte stream (from " -"a :term:`binary file` or :term:`bytes-like object`) is converted back into " -"an object hierarchy. Pickling (and unpickling) is alternatively known as " -"\"serialization\", \"marshalling,\" [#]_ or \"flattening\"; however, to " -"avoid confusion, the terms used here are \"pickling\" and \"unpickling\"." +msgid "The :mod:`!pickle` module implements binary protocols for serializing and de-serializing a Python object structure. *\"Pickling\"* is the process whereby a Python object hierarchy is converted into a byte stream, and *\"unpickling\"* is the inverse operation, whereby a byte stream (from a :term:`binary file` or :term:`bytes-like object`) is converted back into an object hierarchy. Pickling (and unpickling) is alternatively known as \"serialization\", \"marshalling,\" [#]_ or \"flattening\"; however, to avoid confusion, the terms used here are \"pickling\" and \"unpickling\"." msgstr "" -#: ../../library/pickle.rst:33 msgid "The ``pickle`` module **is not secure**. Only unpickle data you trust." msgstr "" -#: ../../library/pickle.rst:35 -msgid "" -"It is possible to construct malicious pickle data which will **execute " -"arbitrary code during unpickling**. Never unpickle data that could have come " -"from an untrusted source, or that could have been tampered with." +msgid "It is possible to construct malicious pickle data which will **execute arbitrary code during unpickling**. Never unpickle data that could have come from an untrusted source, or that could have been tampered with." msgstr "" -#: ../../library/pickle.rst:39 -msgid "" -"Consider signing data with :mod:`hmac` if you need to ensure that it has not " -"been tampered with." +msgid "Consider signing data with :mod:`hmac` if you need to ensure that it has not been tampered with." msgstr "" -#: ../../library/pickle.rst:42 -msgid "" -"Safer serialization formats such as :mod:`json` may be more appropriate if " -"you are processing untrusted data. See :ref:`comparison-with-json`." +msgid "Safer serialization formats such as :mod:`json` may be more appropriate if you are processing untrusted data. See :ref:`comparison-with-json`." msgstr "" -#: ../../library/pickle.rst:47 msgid "Relationship to other Python modules" msgstr "" -#: ../../library/pickle.rst:50 msgid "Comparison with ``marshal``" msgstr "" -#: ../../library/pickle.rst:52 -msgid "" -"Python has a more primitive serialization module called :mod:`marshal`, but " -"in general :mod:`!pickle` should always be the preferred way to serialize " -"Python objects. :mod:`marshal` exists primarily to support " -"Python's :file:`.pyc` files." +msgid "Python has a more primitive serialization module called :mod:`marshal`, but in general :mod:`!pickle` should always be the preferred way to serialize Python objects. :mod:`marshal` exists primarily to support Python's :file:`.pyc` files." msgstr "" -#: ../../library/pickle.rst:57 -msgid "" -"The :mod:`!pickle` module differs from :mod:`marshal` in several significant " -"ways:" +msgid "The :mod:`!pickle` module differs from :mod:`marshal` in several significant ways:" msgstr "" -#: ../../library/pickle.rst:59 -msgid "" -":mod:`marshal` cannot be used to serialize user-defined classes and their " -"instances. :mod:`!pickle` can save and restore class instances " -"transparently, however the class definition must be importable and live in " -"the same module as when the object was pickled." +msgid ":mod:`marshal` cannot be used to serialize user-defined classes and their instances. :mod:`!pickle` can save and restore class instances transparently, however the class definition must be importable and live in the same module as when the object was pickled." +msgstr "" + +msgid "The :mod:`marshal` serialization format is not guaranteed to be portable across Python versions. Because its primary job in life is to support :file:`.pyc` files, the Python implementers reserve the right to change the serialization format in non-backwards compatible ways should the need arise. The :mod:`!pickle` serialization format is guaranteed to be backwards compatible across Python releases provided a compatible pickle protocol is chosen and pickling and unpickling code deals with Python 2 to Python 3 type differences if your data is crossing that unique breaking change language boundary." msgstr "" -#: ../../library/pickle.rst:64 -msgid "" -"The :mod:`marshal` serialization format is not guaranteed to be portable " -"across Python versions. Because its primary job in life is to " -"support :file:`.pyc` files, the Python implementers reserve the right to " -"change the serialization format in non-backwards compatible ways should the " -"need arise. The :mod:`!pickle` serialization format is guaranteed to be " -"backwards compatible across Python releases provided a compatible pickle " -"protocol is chosen and pickling and unpickling code deals with Python 2 to " -"Python 3 type differences if your data is crossing that unique breaking " -"change language boundary." -msgstr "" - -#: ../../library/pickle.rst:77 msgid "Comparison with ``json``" msgstr "" -#: ../../library/pickle.rst:79 -msgid "" -"There are fundamental differences between the pickle protocols and `JSON " -"(JavaScript Object Notation) `_:" +msgid "There are fundamental differences between the pickle protocols and `JSON (JavaScript Object Notation) `_:" msgstr "" -#: ../../library/pickle.rst:82 -msgid "" -"JSON is a text serialization format (it outputs unicode text, although most " -"of the time it is then encoded to ``utf-8``), while pickle is a binary " -"serialization format;" +msgid "JSON is a text serialization format (it outputs unicode text, although most of the time it is then encoded to ``utf-8``), while pickle is a binary serialization format;" msgstr "" -#: ../../library/pickle.rst:86 msgid "JSON is human-readable, while pickle is not;" msgstr "" -#: ../../library/pickle.rst:88 -msgid "" -"JSON is interoperable and widely used outside of the Python ecosystem, while " -"pickle is Python-specific;" +msgid "JSON is interoperable and widely used outside of the Python ecosystem, while pickle is Python-specific;" msgstr "" -#: ../../library/pickle.rst:91 -msgid "" -"JSON, by default, can only represent a subset of the Python built-in types, " -"and no custom classes; pickle can represent an extremely large number of " -"Python types (many of them automatically, by clever usage of Python's " -"introspection facilities; complex cases can be tackled by " -"implementing :ref:`specific object APIs `);" +msgid "JSON, by default, can only represent a subset of the Python built-in types, and no custom classes; pickle can represent an extremely large number of Python types (many of them automatically, by clever usage of Python's introspection facilities; complex cases can be tackled by implementing :ref:`specific object APIs `);" msgstr "" -#: ../../library/pickle.rst:97 -msgid "" -"Unlike pickle, deserializing untrusted JSON does not in itself create an " -"arbitrary code execution vulnerability." +msgid "Unlike pickle, deserializing untrusted JSON does not in itself create an arbitrary code execution vulnerability." msgstr "" -#: ../../library/pickle.rst:101 -msgid "" -"The :mod:`json` module: a standard library module allowing JSON " -"serialization and deserialization." +msgid "The :mod:`json` module: a standard library module allowing JSON serialization and deserialization." msgstr "" -#: ../../library/pickle.rst:108 msgid "Data stream format" msgstr "" -#: ../../library/pickle.rst:113 -msgid "" -"The data format used by :mod:`!pickle` is Python-specific. This has the " -"advantage that there are no restrictions imposed by external standards such " -"as JSON (which can't represent pointer sharing); however it means that non-" -"Python programs may not be able to reconstruct pickled Python objects." +msgid "The data format used by :mod:`!pickle` is Python-specific. This has the advantage that there are no restrictions imposed by external standards such as JSON (which can't represent pointer sharing); however it means that non-Python programs may not be able to reconstruct pickled Python objects." msgstr "" -#: ../../library/pickle.rst:118 -msgid "" -"By default, the :mod:`!pickle` data format uses a relatively compact binary " -"representation. If you need optimal size characteristics, you can " -"efficiently :doc:`compress ` pickled data." +msgid "By default, the :mod:`!pickle` data format uses a relatively compact binary representation. If you need optimal size characteristics, you can efficiently :doc:`compress ` pickled data." msgstr "" -#: ../../library/pickle.rst:122 -msgid "" -"The module :mod:`pickletools` contains tools for analyzing data streams " -"generated by :mod:`!pickle`. :mod:`pickletools` source code has extensive " -"comments about opcodes used by pickle protocols." +msgid "The module :mod:`pickletools` contains tools for analyzing data streams generated by :mod:`!pickle`. :mod:`pickletools` source code has extensive comments about opcodes used by pickle protocols." msgstr "" -#: ../../library/pickle.rst:126 -msgid "" -"There are currently 6 different protocols which can be used for pickling. " -"The higher the protocol used, the more recent the version of Python needed " -"to read the pickle produced." +msgid "There are currently 6 different protocols which can be used for pickling. The higher the protocol used, the more recent the version of Python needed to read the pickle produced." msgstr "" -#: ../../library/pickle.rst:130 -msgid "" -"Protocol version 0 is the original \"human-readable\" protocol and is " -"backwards compatible with earlier versions of Python." +msgid "Protocol version 0 is the original \"human-readable\" protocol and is backwards compatible with earlier versions of Python." msgstr "" -#: ../../library/pickle.rst:133 -msgid "" -"Protocol version 1 is an old binary format which is also compatible with " -"earlier versions of Python." +msgid "Protocol version 1 is an old binary format which is also compatible with earlier versions of Python." msgstr "" -#: ../../library/pickle.rst:136 -msgid "" -"Protocol version 2 was introduced in Python 2.3. It provides much more " -"efficient pickling of :term:`new-style classes `. Refer " -"to :pep:`307` for information about improvements brought by protocol 2." +msgid "Protocol version 2 was introduced in Python 2.3. It provides much more efficient pickling of :term:`new-style classes `. Refer to :pep:`307` for information about improvements brought by protocol 2." msgstr "" -#: ../../library/pickle.rst:140 -msgid "" -"Protocol version 3 was added in Python 3.0. It has explicit support " -"for :class:`bytes` objects and cannot be unpickled by Python 2.x. This was " -"the default protocol in Python 3.0--3.7." +msgid "Protocol version 3 was added in Python 3.0. It has explicit support for :class:`bytes` objects and cannot be unpickled by Python 2.x. This was the default protocol in Python 3.0--3.7." msgstr "" -#: ../../library/pickle.rst:144 -msgid "" -"Protocol version 4 was added in Python 3.4. It adds support for very large " -"objects, pickling more kinds of objects, and some data format " -"optimizations. This was the default protocol in Python 3.8--3.13. Refer " -"to :pep:`3154` for information about improvements brought by protocol 4." +msgid "Protocol version 4 was added in Python 3.4. It adds support for very large objects, pickling more kinds of objects, and some data format optimizations. This was the default protocol in Python 3.8--3.13. Refer to :pep:`3154` for information about improvements brought by protocol 4." msgstr "" -#: ../../library/pickle.rst:150 -msgid "" -"Protocol version 5 was added in Python 3.8. It adds support for out-of-band " -"data and speedup for in-band data. It is the default protocol starting with " -"Python 3.14. Refer to :pep:`574` for information about improvements brought " -"by protocol 5." +msgid "Protocol version 5 was added in Python 3.8. It adds support for out-of-band data and speedup for in-band data. It is the default protocol starting with Python 3.14. Refer to :pep:`574` for information about improvements brought by protocol 5." +msgstr "" + +msgid "Serialization is a more primitive notion than persistence; although :mod:`!pickle` reads and writes file objects, it does not handle the issue of naming persistent objects, nor the (even more complicated) issue of concurrent access to persistent objects. The :mod:`!pickle` module can transform a complex object into a byte stream and it can transform the byte stream into an object with the same internal structure. Perhaps the most obvious thing to do with these byte streams is to write them onto a file, but it is also conceivable to send them across a network or store them in a database. The :mod:`shelve` module provides a simple interface to pickle and unpickle objects on DBM-style database files." msgstr "" -#: ../../library/pickle.rst:156 -msgid "" -"Serialization is a more primitive notion than persistence; although :mod:`!" -"pickle` reads and writes file objects, it does not handle the issue of " -"naming persistent objects, nor the (even more complicated) issue of " -"concurrent access to persistent objects. The :mod:`!pickle` module can " -"transform a complex object into a byte stream and it can transform the byte " -"stream into an object with the same internal structure. Perhaps the most " -"obvious thing to do with these byte streams is to write them onto a file, " -"but it is also conceivable to send them across a network or store them in a " -"database. The :mod:`shelve` module provides a simple interface to pickle " -"and unpickle objects on DBM-style database files." -msgstr "" - -#: ../../library/pickle.rst:169 msgid "Module Interface" msgstr "" -#: ../../library/pickle.rst:171 -msgid "" -"To serialize an object hierarchy, you simply call the :func:`dumps` " -"function. Similarly, to de-serialize a data stream, you call " -"the :func:`loads` function. However, if you want more control over " -"serialization and de-serialization, you can create a :class:`Pickler` or " -"an :class:`Unpickler` object, respectively." +msgid "To serialize an object hierarchy, you simply call the :func:`dumps` function. Similarly, to de-serialize a data stream, you call the :func:`loads` function. However, if you want more control over serialization and de-serialization, you can create a :class:`Pickler` or an :class:`Unpickler` object, respectively." msgstr "" -#: ../../library/pickle.rst:176 msgid "The :mod:`!pickle` module provides the following constants:" msgstr "" -#: ../../library/pickle.rst:181 -msgid "" -"An integer, the highest :ref:`protocol version ` " -"available. This value can be passed as a *protocol* value to " -"functions :func:`dump` and :func:`dumps` as well as the :class:`Pickler` " -"constructor." +msgid "An integer, the highest :ref:`protocol version ` available. This value can be passed as a *protocol* value to functions :func:`dump` and :func:`dumps` as well as the :class:`Pickler` constructor." msgstr "" -#: ../../library/pickle.rst:188 -msgid "" -"An integer, the default :ref:`protocol version ` used for " -"pickling. May be less than :data:`HIGHEST_PROTOCOL`. Currently the default " -"protocol is 5, introduced in Python 3.8 and incompatible with previous " -"versions. This version introduces support for out-of-band buffers, " -"where :pep:`3118`-compatible data can be transmitted separately from the " -"main pickle stream." +msgid "An integer, the default :ref:`protocol version ` used for pickling. May be less than :data:`HIGHEST_PROTOCOL`. Currently the default protocol is 5, introduced in Python 3.8 and incompatible with previous versions. This version introduces support for out-of-band buffers, where :pep:`3118`-compatible data can be transmitted separately from the main pickle stream." msgstr "" -#: ../../library/pickle.rst:197 msgid "The default protocol is 3." msgstr "" -#: ../../library/pickle.rst:201 msgid "The default protocol is 4." msgstr "" -#: ../../library/pickle.rst:205 msgid "The default protocol is 5." msgstr "" -#: ../../library/pickle.rst:207 -msgid "" -"The :mod:`!pickle` module provides the following functions to make the " -"pickling process more convenient:" +msgid "The :mod:`!pickle` module provides the following functions to make the pickling process more convenient:" msgstr "" -#: ../../library/pickle.rst:212 -msgid "" -"Write the pickled representation of the object *obj* to the open :term:`file " -"object` *file*. This is equivalent to ``Pickler(file, protocol).dump(obj)``." +msgid "Write the pickled representation of the object *obj* to the open :term:`file object` *file*. This is equivalent to ``Pickler(file, protocol).dump(obj)``." msgstr "" -#: ../../library/pickle.rst:216 -msgid "" -"Arguments *file*, *protocol*, *fix_imports* and *buffer_callback* have the " -"same meaning as in the :class:`Pickler` constructor." +msgid "Arguments *file*, *protocol*, *fix_imports* and *buffer_callback* have the same meaning as in the :class:`Pickler` constructor." msgstr "" -#: ../../library/pickle.rst:219 ../../library/pickle.rst:230 -#: ../../library/pickle.rst:322 msgid "The *buffer_callback* argument was added." msgstr "" -#: ../../library/pickle.rst:224 -msgid "" -"Return the pickled representation of the object *obj* as a :class:`bytes` " -"object, instead of writing it to a file." +msgid "Return the pickled representation of the object *obj* as a :class:`bytes` object, instead of writing it to a file." msgstr "" -#: ../../library/pickle.rst:227 -msgid "" -"Arguments *protocol*, *fix_imports* and *buffer_callback* have the same " -"meaning as in the :class:`Pickler` constructor." +msgid "Arguments *protocol*, *fix_imports* and *buffer_callback* have the same meaning as in the :class:`Pickler` constructor." msgstr "" -#: ../../library/pickle.rst:235 -msgid "" -"Read the pickled representation of an object from the open :term:`file " -"object` *file* and return the reconstituted object hierarchy specified " -"therein. This is equivalent to ``Unpickler(file).load()``." +msgid "Read the pickled representation of an object from the open :term:`file object` *file* and return the reconstituted object hierarchy specified therein. This is equivalent to ``Unpickler(file).load()``." msgstr "" -#: ../../library/pickle.rst:239 ../../library/pickle.rst:254 -msgid "" -"The protocol version of the pickle is detected automatically, so no protocol " -"argument is needed. Bytes past the pickled representation of the object are " -"ignored." +msgid "The protocol version of the pickle is detected automatically, so no protocol argument is needed. Bytes past the pickled representation of the object are ignored." msgstr "" -#: ../../library/pickle.rst:243 -msgid "" -"Arguments *file*, *fix_imports*, *encoding*, *errors*, *strict* and " -"*buffers* have the same meaning as in the :class:`Unpickler` constructor." +msgid "Arguments *file*, *fix_imports*, *encoding*, *errors*, *strict* and *buffers* have the same meaning as in the :class:`Unpickler` constructor." msgstr "" -#: ../../library/pickle.rst:246 ../../library/pickle.rst:261 -#: ../../library/pickle.rst:436 msgid "The *buffers* argument was added." msgstr "" -#: ../../library/pickle.rst:251 -msgid "" -"Return the reconstituted object hierarchy of the pickled representation " -"*data* of an object. *data* must be a :term:`bytes-like object`." +msgid "Return the reconstituted object hierarchy of the pickled representation *data* of an object. *data* must be a :term:`bytes-like object`." msgstr "" -#: ../../library/pickle.rst:258 -msgid "" -"Arguments *fix_imports*, *encoding*, *errors*, *strict* and *buffers* have " -"the same meaning as in the :class:`Unpickler` constructor." +msgid "Arguments *fix_imports*, *encoding*, *errors*, *strict* and *buffers* have the same meaning as in the :class:`Unpickler` constructor." msgstr "" -#: ../../library/pickle.rst:265 msgid "The :mod:`!pickle` module defines three exceptions:" msgstr "" -#: ../../library/pickle.rst:269 -msgid "" -"Common base class for the other pickling exceptions. It inherits " -"from :exc:`Exception`." +msgid "Common base class for the other pickling exceptions. It inherits from :exc:`Exception`." msgstr "" -#: ../../library/pickle.rst:274 -msgid "" -"Error raised when an unpicklable object is encountered by :class:`Pickler`. " -"It inherits from :exc:`PickleError`." +msgid "Error raised when an unpicklable object is encountered by :class:`Pickler`. It inherits from :exc:`PickleError`." msgstr "" -#: ../../library/pickle.rst:277 -msgid "" -"Refer to :ref:`pickle-picklable` to learn what kinds of objects can be " -"pickled." +msgid "Refer to :ref:`pickle-picklable` to learn what kinds of objects can be pickled." msgstr "" -#: ../../library/pickle.rst:282 -msgid "" -"Error raised when there is a problem unpickling an object, such as a data " -"corruption or a security violation. It inherits from :exc:`PickleError`." +msgid "Error raised when there is a problem unpickling an object, such as a data corruption or a security violation. It inherits from :exc:`PickleError`." msgstr "" -#: ../../library/pickle.rst:285 -msgid "" -"Note that other exceptions may also be raised during unpickling, including " -"(but not necessarily limited to) AttributeError, EOFError, ImportError, and " -"IndexError." +msgid "Note that other exceptions may also be raised during unpickling, including (but not necessarily limited to) AttributeError, EOFError, ImportError, and IndexError." msgstr "" -#: ../../library/pickle.rst:290 -msgid "" -"The :mod:`!pickle` module exports three " -"classes, :class:`Pickler`, :class:`Unpickler` and :class:`PickleBuffer`:" +msgid "The :mod:`!pickle` module exports three classes, :class:`Pickler`, :class:`Unpickler` and :class:`PickleBuffer`:" msgstr "" -#: ../../library/pickle.rst:295 msgid "This takes a binary file for writing a pickle data stream." msgstr "" -#: ../../library/pickle.rst:297 -msgid "" -"The optional *protocol* argument, an integer, tells the pickler to use the " -"given protocol; supported protocols are 0 to :data:`HIGHEST_PROTOCOL`. If " -"not specified, the default is :data:`DEFAULT_PROTOCOL`. If a negative " -"number is specified, :data:`HIGHEST_PROTOCOL` is selected." +msgid "The optional *protocol* argument, an integer, tells the pickler to use the given protocol; supported protocols are 0 to :data:`HIGHEST_PROTOCOL`. If not specified, the default is :data:`DEFAULT_PROTOCOL`. If a negative number is specified, :data:`HIGHEST_PROTOCOL` is selected." msgstr "" -#: ../../library/pickle.rst:302 -msgid "" -"The *file* argument must have a write() method that accepts a single bytes " -"argument. It can thus be an on-disk file opened for binary writing, " -"an :class:`io.BytesIO` instance, or any other custom object that meets this " -"interface." +msgid "The *file* argument must have a write() method that accepts a single bytes argument. It can thus be an on-disk file opened for binary writing, an :class:`io.BytesIO` instance, or any other custom object that meets this interface." msgstr "" -#: ../../library/pickle.rst:307 -msgid "" -"If *fix_imports* is true and *protocol* is less than 3, pickle will try to " -"map the new Python 3 names to the old module names used in Python 2, so that " -"the pickle data stream is readable with Python 2." +msgid "If *fix_imports* is true and *protocol* is less than 3, pickle will try to map the new Python 3 names to the old module names used in Python 2, so that the pickle data stream is readable with Python 2." msgstr "" -#: ../../library/pickle.rst:311 -msgid "" -"If *buffer_callback* is ``None`` (the default), buffer views are serialized " -"into *file* as part of the pickle stream." +msgid "If *buffer_callback* is ``None`` (the default), buffer views are serialized into *file* as part of the pickle stream." msgstr "" -#: ../../library/pickle.rst:314 -msgid "" -"If *buffer_callback* is not ``None``, then it can be called any number of " -"times with a buffer view. If the callback returns a false value (such as " -"``None``), the given buffer is :ref:`out-of-band `; otherwise " -"the buffer is serialized in-band, i.e. inside the pickle stream." +msgid "If *buffer_callback* is not ``None``, then it can be called any number of times with a buffer view. If the callback returns a false value (such as ``None``), the given buffer is :ref:`out-of-band `; otherwise the buffer is serialized in-band, i.e. inside the pickle stream." msgstr "" -#: ../../library/pickle.rst:319 -msgid "" -"It is an error if *buffer_callback* is not ``None`` and *protocol* is " -"``None`` or smaller than 5." +msgid "It is an error if *buffer_callback* is not ``None`` and *protocol* is ``None`` or smaller than 5." msgstr "" -#: ../../library/pickle.rst:327 -msgid "" -"Write the pickled representation of *obj* to the open file object given in " -"the constructor." +msgid "Write the pickled representation of *obj* to the open file object given in the constructor." msgstr "" -#: ../../library/pickle.rst:332 msgid "Do nothing by default. This exists so a subclass can override it." msgstr "" -#: ../../library/pickle.rst:334 -msgid "" -"If :meth:`persistent_id` returns ``None``, *obj* is pickled as usual. Any " -"other value causes :class:`Pickler` to emit the returned value as a " -"persistent ID for *obj*. The meaning of this persistent ID should be " -"defined by :meth:`Unpickler.persistent_load`. Note that the value returned " -"by :meth:`persistent_id` cannot itself have a persistent ID." +msgid "If :meth:`persistent_id` returns ``None``, *obj* is pickled as usual. Any other value causes :class:`Pickler` to emit the returned value as a persistent ID for *obj*. The meaning of this persistent ID should be defined by :meth:`Unpickler.persistent_load`. Note that the value returned by :meth:`persistent_id` cannot itself have a persistent ID." msgstr "" -#: ../../library/pickle.rst:340 ../../library/pickle.rst:454 msgid "See :ref:`pickle-persistent` for details and examples of uses." msgstr "" -#: ../../library/pickle.rst:342 -msgid "" -"Add the default implementation of this method in the C implementation " -"of :class:`!Pickler`." +msgid "Add the default implementation of this method in the C implementation of :class:`!Pickler`." msgstr "" -#: ../../library/pickle.rst:348 -msgid "" -"A pickler object's dispatch table is a registry of *reduction functions* of " -"the kind which can be declared using :func:`copyreg.pickle`. It is a " -"mapping whose keys are classes and whose values are reduction functions. A " -"reduction function takes a single argument of the associated class and " -"should conform to the same interface as a :meth:`~object.__reduce__` method." +msgid "A pickler object's dispatch table is a registry of *reduction functions* of the kind which can be declared using :func:`copyreg.pickle`. It is a mapping whose keys are classes and whose values are reduction functions. A reduction function takes a single argument of the associated class and should conform to the same interface as a :meth:`~object.__reduce__` method." msgstr "" -#: ../../library/pickle.rst:356 -msgid "" -"By default, a pickler object will not have a :attr:`dispatch_table` " -"attribute, and it will instead use the global dispatch table managed by " -"the :mod:`copyreg` module. However, to customize the pickling for a specific " -"pickler object one can set the :attr:`dispatch_table` attribute to a dict-" -"like object. Alternatively, if a subclass of :class:`Pickler` has " -"a :attr:`dispatch_table` attribute then this will be used as the default " -"dispatch table for instances of that class." +msgid "By default, a pickler object will not have a :attr:`dispatch_table` attribute, and it will instead use the global dispatch table managed by the :mod:`copyreg` module. However, to customize the pickling for a specific pickler object one can set the :attr:`dispatch_table` attribute to a dict-like object. Alternatively, if a subclass of :class:`Pickler` has a :attr:`dispatch_table` attribute then this will be used as the default dispatch table for instances of that class." msgstr "" -#: ../../library/pickle.rst:365 msgid "See :ref:`pickle-dispatch` for usage examples." msgstr "" -#: ../../library/pickle.rst:371 -msgid "" -"Special reducer that can be defined in :class:`Pickler` subclasses. This " -"method has priority over any reducer in the :attr:`dispatch_table`. It " -"should conform to the same interface as a :meth:`~object.__reduce__` method, " -"and can optionally return :data:`NotImplemented` to fallback " -"on :attr:`dispatch_table`-registered reducers to pickle ``obj``." +msgid "Special reducer that can be defined in :class:`Pickler` subclasses. This method has priority over any reducer in the :attr:`dispatch_table`. It should conform to the same interface as a :meth:`~object.__reduce__` method, and can optionally return :data:`NotImplemented` to fallback on :attr:`dispatch_table`-registered reducers to pickle ``obj``." msgstr "" -#: ../../library/pickle.rst:377 msgid "For a detailed example, see :ref:`reducer_override`." msgstr "" -#: ../../library/pickle.rst:383 -msgid "" -"Deprecated. Enable fast mode if set to a true value. The fast mode disables " -"the usage of memo, therefore speeding the pickling process by not generating " -"superfluous PUT opcodes. It should not be used with self-referential " -"objects, doing otherwise will cause :class:`Pickler` to recurse infinitely." +msgid "Deprecated. Enable fast mode if set to a true value. The fast mode disables the usage of memo, therefore speeding the pickling process by not generating superfluous PUT opcodes. It should not be used with self-referential objects, doing otherwise will cause :class:`Pickler` to recurse infinitely." msgstr "" -#: ../../library/pickle.rst:389 msgid "Use :func:`pickletools.optimize` if you need more compact pickles." msgstr "" -#: ../../library/pickle.rst:393 msgid "Clears the pickler's \"memo\"." msgstr "" -#: ../../library/pickle.rst:395 -msgid "" -"The memo is the data structure that remembers which objects the pickler has " -"already seen, so that shared or recursive objects are pickled by reference " -"and not by value. This method is useful when re-using picklers." +msgid "The memo is the data structure that remembers which objects the pickler has already seen, so that shared or recursive objects are pickled by reference and not by value. This method is useful when re-using picklers." msgstr "" -#: ../../library/pickle.rst:403 msgid "This takes a binary file for reading a pickle data stream." msgstr "" -#: ../../library/pickle.rst:405 -msgid "" -"The protocol version of the pickle is detected automatically, so no protocol " -"argument is needed." +msgid "The protocol version of the pickle is detected automatically, so no protocol argument is needed." msgstr "" -#: ../../library/pickle.rst:408 -msgid "" -"The argument *file* must have three methods, a read() method that takes an " -"integer argument, a readinto() method that takes a buffer argument and a " -"readline() method that requires no arguments, as in " -"the :class:`io.BufferedIOBase` interface. Thus *file* can be an on-disk " -"file opened for binary reading, an :class:`io.BytesIO` object, or any other " -"custom object that meets this interface." +msgid "The argument *file* must have three methods, a read() method that takes an integer argument, a readinto() method that takes a buffer argument and a readline() method that requires no arguments, as in the :class:`io.BufferedIOBase` interface. Thus *file* can be an on-disk file opened for binary reading, an :class:`io.BytesIO` object, or any other custom object that meets this interface." msgstr "" -#: ../../library/pickle.rst:415 -msgid "" -"The optional arguments *fix_imports*, *encoding* and *errors* are used to " -"control compatibility support for pickle stream generated by Python 2. If " -"*fix_imports* is true, pickle will try to map the old Python 2 names to the " -"new names used in Python 3. The *encoding* and *errors* tell pickle how to " -"decode 8-bit string instances pickled by Python 2; these default to 'ASCII' " -"and 'strict', respectively. The *encoding* can be 'bytes' to read these 8-" -"bit string instances as bytes objects. Using ``encoding='latin1'`` is " -"required for unpickling NumPy arrays and instances " -"of :class:`~datetime.datetime`, :class:`~datetime.date` " -"and :class:`~datetime.time` pickled by Python 2." -msgstr "" - -#: ../../library/pickle.rst:426 -msgid "" -"If *buffers* is ``None`` (the default), then all data necessary for " -"deserialization must be contained in the pickle stream. This means that the " -"*buffer_callback* argument was ``None`` when a :class:`Pickler` was " -"instantiated (or when :func:`dump` or :func:`dumps` was called)." +msgid "The optional arguments *fix_imports*, *encoding* and *errors* are used to control compatibility support for pickle stream generated by Python 2. If *fix_imports* is true, pickle will try to map the old Python 2 names to the new names used in Python 3. The *encoding* and *errors* tell pickle how to decode 8-bit string instances pickled by Python 2; these default to 'ASCII' and 'strict', respectively. The *encoding* can be 'bytes' to read these 8-bit string instances as bytes objects. Using ``encoding='latin1'`` is required for unpickling NumPy arrays and instances of :class:`~datetime.datetime`, :class:`~datetime.date` and :class:`~datetime.time` pickled by Python 2." msgstr "" -#: ../../library/pickle.rst:431 -msgid "" -"If *buffers* is not ``None``, it should be an iterable of buffer-enabled " -"objects that is consumed each time the pickle stream references an :ref:`out-" -"of-band ` buffer view. Such buffers have been given in order to " -"the *buffer_callback* of a Pickler object." +msgid "If *buffers* is ``None`` (the default), then all data necessary for deserialization must be contained in the pickle stream. This means that the *buffer_callback* argument was ``None`` when a :class:`Pickler` was instantiated (or when :func:`dump` or :func:`dumps` was called)." msgstr "" -#: ../../library/pickle.rst:441 -msgid "" -"Read the pickled representation of an object from the open file object given " -"in the constructor, and return the reconstituted object hierarchy specified " -"therein. Bytes past the pickled representation of the object are ignored." +msgid "If *buffers* is not ``None``, it should be an iterable of buffer-enabled objects that is consumed each time the pickle stream references an :ref:`out-of-band ` buffer view. Such buffers have been given in order to the *buffer_callback* of a Pickler object." +msgstr "" + +msgid "Read the pickled representation of an object from the open file object given in the constructor, and return the reconstituted object hierarchy specified therein. Bytes past the pickled representation of the object are ignored." msgstr "" -#: ../../library/pickle.rst:448 msgid "Raise an :exc:`UnpicklingError` by default." msgstr "" -#: ../../library/pickle.rst:450 -msgid "" -"If defined, :meth:`persistent_load` should return the object specified by " -"the persistent ID *pid*. If an invalid persistent ID is encountered, " -"an :exc:`UnpicklingError` should be raised." +msgid "If defined, :meth:`persistent_load` should return the object specified by the persistent ID *pid*. If an invalid persistent ID is encountered, an :exc:`UnpicklingError` should be raised." msgstr "" -#: ../../library/pickle.rst:456 -msgid "" -"Add the default implementation of this method in the C implementation " -"of :class:`!Unpickler`." +msgid "Add the default implementation of this method in the C implementation of :class:`!Unpickler`." msgstr "" -#: ../../library/pickle.rst:462 -msgid "" -"Import *module* if necessary and return the object called *name* from it, " -"where the *module* and *name* arguments are :class:`str` objects. Note, " -"unlike its name suggests, :meth:`find_class` is also used for finding " -"functions." +msgid "Import *module* if necessary and return the object called *name* from it, where the *module* and *name* arguments are :class:`str` objects. Note, unlike its name suggests, :meth:`find_class` is also used for finding functions." msgstr "" -#: ../../library/pickle.rst:467 -msgid "" -"Subclasses may override this to gain control over what type of objects and " -"how they can be loaded, potentially reducing security risks. Refer " -"to :ref:`pickle-restrict` for details." +msgid "Subclasses may override this to gain control over what type of objects and how they can be loaded, potentially reducing security risks. Refer to :ref:`pickle-restrict` for details." msgstr "" -#: ../../library/pickle.rst:471 -msgid "" -"Raises an :ref:`auditing event ` ``pickle.find_class`` with " -"arguments ``module``, ``name``." +msgid "Raises an :ref:`auditing event ` ``pickle.find_class`` with arguments ``module``, ``name``." msgstr "" -#: ../../library/pickle.rst:475 -msgid "" -"A wrapper for a buffer representing picklable data. *buffer* must be " -"a :ref:`buffer-providing ` object, such as a :term:`bytes-" -"like object` or a N-dimensional array." +msgid "A wrapper for a buffer representing picklable data. *buffer* must be a :ref:`buffer-providing ` object, such as a :term:`bytes-like object` or a N-dimensional array." msgstr "" -#: ../../library/pickle.rst:479 -msgid "" -":class:`PickleBuffer` is itself a buffer provider, therefore it is possible " -"to pass it to other APIs expecting a buffer-providing object, such " -"as :class:`memoryview`." +msgid ":class:`PickleBuffer` is itself a buffer provider, therefore it is possible to pass it to other APIs expecting a buffer-providing object, such as :class:`memoryview`." msgstr "" -#: ../../library/pickle.rst:483 -msgid "" -":class:`PickleBuffer` objects can only be serialized using pickle protocol 5 " -"or higher. They are eligible for :ref:`out-of-band serialization `." +msgid ":class:`PickleBuffer` objects can only be serialized using pickle protocol 5 or higher. They are eligible for :ref:`out-of-band serialization `." msgstr "" -#: ../../library/pickle.rst:491 -msgid "" -"Return a :class:`memoryview` of the memory area underlying this buffer. The " -"returned object is a one-dimensional, C-contiguous memoryview with format " -"``B`` (unsigned bytes). :exc:`BufferError` is raised if the buffer is " -"neither C- nor Fortran-contiguous." +msgid "Return a :class:`memoryview` of the memory area underlying this buffer. The returned object is a one-dimensional, C-contiguous memoryview with format ``B`` (unsigned bytes). :exc:`BufferError` is raised if the buffer is neither C- nor Fortran-contiguous." msgstr "" -#: ../../library/pickle.rst:498 msgid "Release the underlying buffer exposed by the PickleBuffer object." msgstr "" -#: ../../library/pickle.rst:504 msgid "What can be pickled and unpickled?" msgstr "" -#: ../../library/pickle.rst:506 msgid "The following types can be pickled:" msgstr "" -#: ../../library/pickle.rst:508 -msgid "" -"built-in constants (``None``, ``True``, ``False``, ``Ellipsis``, " -"and :data:`NotImplemented`);" +msgid "built-in constants (``None``, ``True``, ``False``, ``Ellipsis``, and :data:`NotImplemented`);" msgstr "" -#: ../../library/pickle.rst:511 msgid "integers, floating-point numbers, complex numbers;" msgstr "" -#: ../../library/pickle.rst:513 msgid "strings, bytes, bytearrays;" msgstr "" -#: ../../library/pickle.rst:515 -msgid "" -"tuples, lists, sets, and dictionaries containing only picklable objects;" +msgid "tuples, lists, sets, and dictionaries containing only picklable objects;" msgstr "" -#: ../../library/pickle.rst:517 -msgid "" -"functions (built-in and user-defined) accessible from the top level of a " -"module (using :keyword:`def`, not :keyword:`lambda`);" +msgid "functions (built-in and user-defined) accessible from the top level of a module (using :keyword:`def`, not :keyword:`lambda`);" msgstr "" -#: ../../library/pickle.rst:520 msgid "classes accessible from the top level of a module;" msgstr "" -#: ../../library/pickle.rst:522 -msgid "" -"instances of such classes for which the result of " -"calling :meth:`~object.__getstate__` is picklable (see section :ref:`pickle-" -"inst` for details)." +msgid "instances of such classes for which the result of calling :meth:`~object.__getstate__` is picklable (see section :ref:`pickle-inst` for details)." msgstr "" -#: ../../library/pickle.rst:525 -msgid "" -"Attempts to pickle unpicklable objects will raise the :exc:`PicklingError` " -"exception; when this happens, an unspecified number of bytes may have " -"already been written to the underlying file. Trying to pickle a highly " -"recursive data structure may exceed the maximum recursion depth, " -"a :exc:`RecursionError` will be raised in this case. You can carefully " -"raise this limit with :func:`sys.setrecursionlimit`." +msgid "Attempts to pickle unpicklable objects will raise the :exc:`PicklingError` exception; when this happens, an unspecified number of bytes may have already been written to the underlying file. Trying to pickle a highly recursive data structure may exceed the maximum recursion depth, a :exc:`RecursionError` will be raised in this case. You can carefully raise this limit with :func:`sys.setrecursionlimit`." msgstr "" -#: ../../library/pickle.rst:532 -msgid "" -"Note that functions (built-in and user-defined) are pickled by " -"fully :term:`qualified name`, not by value. [#]_ This means that only the " -"function name is pickled, along with the name of the containing module and " -"classes. Neither the function's code, nor any of its function attributes " -"are pickled. Thus the defining module must be importable in the unpickling " -"environment, and the module must contain the named object, otherwise an " -"exception will be raised. [#]_" +msgid "Note that functions (built-in and user-defined) are pickled by fully :term:`qualified name`, not by value. [#]_ This means that only the function name is pickled, along with the name of the containing module and classes. Neither the function's code, nor any of its function attributes are pickled. Thus the defining module must be importable in the unpickling environment, and the module must contain the named object, otherwise an exception will be raised. [#]_" msgstr "" -#: ../../library/pickle.rst:539 -msgid "" -"Similarly, classes are pickled by fully qualified name, so the same " -"restrictions in the unpickling environment apply. Note that none of the " -"class's code or data is pickled, so in the following example the class " -"attribute ``attr`` is not restored in the unpickling environment::" +msgid "Similarly, classes are pickled by fully qualified name, so the same restrictions in the unpickling environment apply. Note that none of the class's code or data is pickled, so in the following example the class attribute ``attr`` is not restored in the unpickling environment::" msgstr "" -#: ../../library/pickle.rst:544 msgid "" "class Foo:\n" " attr = 'A class attribute'\n" @@ -752,46 +364,21 @@ msgid "" "picklestring = pickle.dumps(Foo)" msgstr "" -#: ../../library/pickle.rst:549 -msgid "" -"These restrictions are why picklable functions and classes must be defined " -"at the top level of a module." +msgid "These restrictions are why picklable functions and classes must be defined at the top level of a module." msgstr "" -#: ../../library/pickle.rst:552 -msgid "" -"Similarly, when class instances are pickled, their class's code and data are " -"not pickled along with them. Only the instance data are pickled. This is " -"done on purpose, so you can fix bugs in a class or add methods to the class " -"and still load objects that were created with an earlier version of the " -"class. If you plan to have long-lived objects that will see many versions " -"of a class, it may be worthwhile to put a version number in the objects so " -"that suitable conversions can be made by the " -"class's :meth:`~object.__setstate__` method." +msgid "Similarly, when class instances are pickled, their class's code and data are not pickled along with them. Only the instance data are pickled. This is done on purpose, so you can fix bugs in a class or add methods to the class and still load objects that were created with an earlier version of the class. If you plan to have long-lived objects that will see many versions of a class, it may be worthwhile to put a version number in the objects so that suitable conversions can be made by the class's :meth:`~object.__setstate__` method." msgstr "" -#: ../../library/pickle.rst:564 msgid "Pickling Class Instances" msgstr "" -#: ../../library/pickle.rst:568 -msgid "" -"In this section, we describe the general mechanisms available to you to " -"define, customize, and control how class instances are pickled and unpickled." +msgid "In this section, we describe the general mechanisms available to you to define, customize, and control how class instances are pickled and unpickled." msgstr "" -#: ../../library/pickle.rst:571 -msgid "" -"In most cases, no additional code is needed to make instances picklable. By " -"default, pickle will retrieve the class and the attributes of an instance " -"via introspection. When a class instance is unpickled, " -"its :meth:`~object.__init__` method is usually *not* invoked. The default " -"behaviour first creates an uninitialized instance and then restores the " -"saved attributes. The following code shows an implementation of this " -"behaviour::" +msgid "In most cases, no additional code is needed to make instances picklable. By default, pickle will retrieve the class and the attributes of an instance via introspection. When a class instance is unpickled, its :meth:`~object.__init__` method is usually *not* invoked. The default behaviour first creates an uninitialized instance and then restores the saved attributes. The following code shows an implementation of this behaviour::" msgstr "" -#: ../../library/pickle.rst:578 msgid "" "def save(obj):\n" " return (obj.__class__, obj.__dict__)\n" @@ -802,280 +389,114 @@ msgid "" " return obj" msgstr "" -#: ../../library/pickle.rst:586 -msgid "" -"Classes can alter the default behaviour by providing one or several special " -"methods:" +msgid "Classes can alter the default behaviour by providing one or several special methods:" msgstr "" -#: ../../library/pickle.rst:591 -msgid "" -"In protocols 2 and newer, classes that implement " -"the :meth:`__getnewargs_ex__` method can dictate the values passed to " -"the :meth:`__new__` method upon unpickling. The method must return a pair " -"``(args, kwargs)`` where *args* is a tuple of positional arguments and " -"*kwargs* a dictionary of named arguments for constructing the object. Those " -"will be passed to the :meth:`__new__` method upon unpickling." +msgid "In protocols 2 and newer, classes that implement the :meth:`__getnewargs_ex__` method can dictate the values passed to the :meth:`__new__` method upon unpickling. The method must return a pair ``(args, kwargs)`` where *args* is a tuple of positional arguments and *kwargs* a dictionary of named arguments for constructing the object. Those will be passed to the :meth:`__new__` method upon unpickling." msgstr "" -#: ../../library/pickle.rst:599 -msgid "" -"You should implement this method if the :meth:`__new__` method of your class " -"requires keyword-only arguments. Otherwise, it is recommended for " -"compatibility to implement :meth:`__getnewargs__`." +msgid "You should implement this method if the :meth:`__new__` method of your class requires keyword-only arguments. Otherwise, it is recommended for compatibility to implement :meth:`__getnewargs__`." msgstr "" -#: ../../library/pickle.rst:603 msgid ":meth:`__getnewargs_ex__` is now used in protocols 2 and 3." msgstr "" -#: ../../library/pickle.rst:609 -msgid "" -"This method serves a similar purpose as :meth:`__getnewargs_ex__`, but " -"supports only positional arguments. It must return a tuple of arguments " -"``args`` which will be passed to the :meth:`__new__` method upon unpickling." +msgid "This method serves a similar purpose as :meth:`__getnewargs_ex__`, but supports only positional arguments. It must return a tuple of arguments ``args`` which will be passed to the :meth:`__new__` method upon unpickling." msgstr "" -#: ../../library/pickle.rst:613 -msgid "" -":meth:`__getnewargs__` will not be called if :meth:`__getnewargs_ex__` is " -"defined." +msgid ":meth:`__getnewargs__` will not be called if :meth:`__getnewargs_ex__` is defined." msgstr "" -#: ../../library/pickle.rst:616 -msgid "" -"Before Python 3.6, :meth:`__getnewargs__` was called instead " -"of :meth:`__getnewargs_ex__` in protocols 2 and 3." +msgid "Before Python 3.6, :meth:`__getnewargs__` was called instead of :meth:`__getnewargs_ex__` in protocols 2 and 3." msgstr "" -#: ../../library/pickle.rst:623 -msgid "" -"Classes can further influence how their instances are pickled by overriding " -"the method :meth:`__getstate__`. It is called and the returned object is " -"pickled as the contents for the instance, instead of a default state. There " -"are several cases:" +msgid "Classes can further influence how their instances are pickled by overriding the method :meth:`__getstate__`. It is called and the returned object is pickled as the contents for the instance, instead of a default state. There are several cases:" msgstr "" -#: ../../library/pickle.rst:628 -msgid "" -"For a class that has no instance :attr:`~object.__dict__` and " -"no :attr:`~object.__slots__`, the default state is ``None``." +msgid "For a class that has no instance :attr:`~object.__dict__` and no :attr:`~object.__slots__`, the default state is ``None``." msgstr "" -#: ../../library/pickle.rst:631 -msgid "" -"For a class that has an instance :attr:`~object.__dict__` and " -"no :attr:`~object.__slots__`, the default state is ``self.__dict__``." +msgid "For a class that has an instance :attr:`~object.__dict__` and no :attr:`~object.__slots__`, the default state is ``self.__dict__``." msgstr "" -#: ../../library/pickle.rst:634 -msgid "" -"For a class that has an instance :attr:`~object.__dict__` " -"and :attr:`~object.__slots__`, the default state is a tuple consisting of " -"two dictionaries: ``self.__dict__``, and a dictionary mapping slot names to " -"slot values. Only slots that have a value are included in the latter." +msgid "For a class that has an instance :attr:`~object.__dict__` and :attr:`~object.__slots__`, the default state is a tuple consisting of two dictionaries: ``self.__dict__``, and a dictionary mapping slot names to slot values. Only slots that have a value are included in the latter." msgstr "" -#: ../../library/pickle.rst:640 -msgid "" -"For a class that has :attr:`~object.__slots__` and no " -"instance :attr:`~object.__dict__`, the default state is a tuple whose first " -"item is ``None`` and whose second item is a dictionary mapping slot names to " -"slot values described in the previous bullet." +msgid "For a class that has :attr:`~object.__slots__` and no instance :attr:`~object.__dict__`, the default state is a tuple whose first item is ``None`` and whose second item is a dictionary mapping slot names to slot values described in the previous bullet." msgstr "" -#: ../../library/pickle.rst:645 -msgid "" -"Added the default implementation of the ``__getstate__()`` method in " -"the :class:`object` class." +msgid "Added the default implementation of the ``__getstate__()`` method in the :class:`object` class." msgstr "" -#: ../../library/pickle.rst:652 -msgid "" -"Upon unpickling, if the class defines :meth:`__setstate__`, it is called " -"with the unpickled state. In that case, there is no requirement for the " -"state object to be a dictionary. Otherwise, the pickled state must be a " -"dictionary and its items are assigned to the new instance's dictionary." +msgid "Upon unpickling, if the class defines :meth:`__setstate__`, it is called with the unpickled state. In that case, there is no requirement for the state object to be a dictionary. Otherwise, the pickled state must be a dictionary and its items are assigned to the new instance's dictionary." msgstr "" -#: ../../library/pickle.rst:659 -msgid "" -"If :meth:`__reduce__` returns a state with value ``None`` at pickling, " -"the :meth:`__setstate__` method will not be called upon unpickling." +msgid "If :meth:`__reduce__` returns a state with value ``None`` at pickling, the :meth:`__setstate__` method will not be called upon unpickling." msgstr "" -#: ../../library/pickle.rst:663 -msgid "" -"Refer to the section :ref:`pickle-state` for more information about how to " -"use the methods :meth:`~object.__getstate__` " -"and :meth:`~object.__setstate__`." +msgid "Refer to the section :ref:`pickle-state` for more information about how to use the methods :meth:`~object.__getstate__` and :meth:`~object.__setstate__`." msgstr "" -#: ../../library/pickle.rst:668 -msgid "" -"At unpickling time, some methods " -"like :meth:`~object.__getattr__`, :meth:`~object.__getattribute__`, " -"or :meth:`~object.__setattr__` may be called upon the instance. In case " -"those methods rely on some internal invariant being true, the type should " -"implement :meth:`~object.__new__` to establish such an invariant, " -"as :meth:`~object.__init__` is not called when unpickling an instance." +msgid "At unpickling time, some methods like :meth:`~object.__getattr__`, :meth:`~object.__getattribute__`, or :meth:`~object.__setattr__` may be called upon the instance. In case those methods rely on some internal invariant being true, the type should implement :meth:`~object.__new__` to establish such an invariant, as :meth:`~object.__init__` is not called when unpickling an instance." msgstr "" -#: ../../library/pickle.rst:677 -msgid "" -"As we shall see, pickle does not use directly the methods described above. " -"In fact, these methods are part of the copy protocol which implements " -"the :meth:`~object.__reduce__` special method. The copy protocol provides a " -"unified interface for retrieving the data necessary for pickling and copying " -"objects. [#]_" +msgid "As we shall see, pickle does not use directly the methods described above. In fact, these methods are part of the copy protocol which implements the :meth:`~object.__reduce__` special method. The copy protocol provides a unified interface for retrieving the data necessary for pickling and copying objects. [#]_" msgstr "" -#: ../../library/pickle.rst:683 -msgid "" -"Although powerful, implementing :meth:`~object.__reduce__` directly in your " -"classes is error prone. For this reason, class designers should use the " -"high-level interface " -"(i.e., :meth:`~object.__getnewargs_ex__`, :meth:`~object.__getstate__` " -"and :meth:`~object.__setstate__`) whenever possible. We will show, however, " -"cases where using :meth:`!__reduce__` is the only option or leads to more " -"efficient pickling or both." +msgid "Although powerful, implementing :meth:`~object.__reduce__` directly in your classes is error prone. For this reason, class designers should use the high-level interface (i.e., :meth:`~object.__getnewargs_ex__`, :meth:`~object.__getstate__` and :meth:`~object.__setstate__`) whenever possible. We will show, however, cases where using :meth:`!__reduce__` is the only option or leads to more efficient pickling or both." msgstr "" -#: ../../library/pickle.rst:692 -msgid "" -"The interface is currently defined as follows. The :meth:`__reduce__` " -"method takes no argument and shall return either a string or preferably a " -"tuple (the returned object is often referred to as the \"reduce value\")." +msgid "The interface is currently defined as follows. The :meth:`__reduce__` method takes no argument and shall return either a string or preferably a tuple (the returned object is often referred to as the \"reduce value\")." msgstr "" -#: ../../library/pickle.rst:696 -msgid "" -"If a string is returned, the string should be interpreted as the name of a " -"global variable. It should be the object's local name relative to its " -"module; the pickle module searches the module namespace to determine the " -"object's module: for a given ``obj`` to be pickled, the ``__module__`` " -"attribute is looked up on ``obj`` directly, which falls back to a lookup on " -"the type of ``obj`` if no ``__module__`` instance attribute is set. This " -"behaviour is typically useful for singletons." +msgid "If a string is returned, the string should be interpreted as the name of a global variable. It should be the object's local name relative to its module; the pickle module searches the module namespace to determine the object's module: for a given ``obj`` to be pickled, the ``__module__`` attribute is looked up on ``obj`` directly, which falls back to a lookup on the type of ``obj`` if no ``__module__`` instance attribute is set. This behaviour is typically useful for singletons." msgstr "" -#: ../../library/pickle.rst:704 -msgid "" -"When a tuple is returned, it must be between two and six items long. " -"Optional items can either be omitted, or ``None`` can be provided as their " -"value. The semantics of each item are in order:" +msgid "When a tuple is returned, it must be between two and six items long. Optional items can either be omitted, or ``None`` can be provided as their value. The semantics of each item are in order:" msgstr "" -#: ../../library/pickle.rst:710 -msgid "" -"A callable object that will be called to create the initial version of the " -"object." +msgid "A callable object that will be called to create the initial version of the object." msgstr "" -#: ../../library/pickle.rst:713 -msgid "" -"A tuple of arguments for the callable object. An empty tuple must be given " -"if the callable does not accept any argument." +msgid "A tuple of arguments for the callable object. An empty tuple must be given if the callable does not accept any argument." msgstr "" -#: ../../library/pickle.rst:716 -msgid "" -"Optionally, the object's state, which will be passed to the " -"object's :meth:`__setstate__` method as previously described. If the object " -"has no such method then, the value must be a dictionary and it will be added " -"to the object's :attr:`~object.__dict__` attribute." +msgid "Optionally, the object's state, which will be passed to the object's :meth:`__setstate__` method as previously described. If the object has no such method then, the value must be a dictionary and it will be added to the object's :attr:`~object.__dict__` attribute." msgstr "" -#: ../../library/pickle.rst:721 -msgid "" -"Optionally, an iterator (and not a sequence) yielding successive items. " -"These items will be appended to the object either using ``obj.append(item)`` " -"or, in batch, using ``obj.extend(list_of_items)``. This is primarily used " -"for list subclasses, but may be used by other classes as long as they " -"have :meth:`~sequence.append` and :meth:`~sequence.extend` methods with the " -"appropriate signature. (Whether :meth:`!append` or :meth:`!extend` is used " -"depends on which pickle protocol version is used as well as the number of " -"items to append, so both must be supported.)" +msgid "Optionally, an iterator (and not a sequence) yielding successive items. These items will be appended to the object either using ``obj.append(item)`` or, in batch, using ``obj.extend(list_of_items)``. This is primarily used for list subclasses, but may be used by other classes as long as they have :meth:`~sequence.append` and :meth:`~sequence.extend` methods with the appropriate signature. (Whether :meth:`!append` or :meth:`!extend` is used depends on which pickle protocol version is used as well as the number of items to append, so both must be supported.)" msgstr "" -#: ../../library/pickle.rst:731 -msgid "" -"Optionally, an iterator (not a sequence) yielding successive key-value " -"pairs. These items will be stored to the object using ``obj[key] = " -"value``. This is primarily used for dictionary subclasses, but may be used " -"by other classes as long as they implement :meth:`__setitem__`." +msgid "Optionally, an iterator (not a sequence) yielding successive key-value pairs. These items will be stored to the object using ``obj[key] = value``. This is primarily used for dictionary subclasses, but may be used by other classes as long as they implement :meth:`__setitem__`." msgstr "" -#: ../../library/pickle.rst:736 -msgid "" -"Optionally, a callable with a ``(obj, state)`` signature. This callable " -"allows the user to programmatically control the state-updating behavior of a " -"specific object, instead of using ``obj``'s static :meth:`__setstate__` " -"method. If not ``None``, this callable will have priority over " -"``obj``'s :meth:`__setstate__`." +msgid "Optionally, a callable with a ``(obj, state)`` signature. This callable allows the user to programmatically control the state-updating behavior of a specific object, instead of using ``obj``'s static :meth:`__setstate__` method. If not ``None``, this callable will have priority over ``obj``'s :meth:`__setstate__`." msgstr "" -#: ../../library/pickle.rst:742 msgid "The optional sixth tuple item, ``(obj, state)``, was added." msgstr "" -#: ../../library/pickle.rst:748 -msgid "" -"Alternatively, a :meth:`__reduce_ex__` method may be defined. The only " -"difference is this method should take a single integer argument, the " -"protocol version. When defined, pickle will prefer it over " -"the :meth:`__reduce__` method. In addition, :meth:`__reduce__` " -"automatically becomes a synonym for the extended version. The main use for " -"this method is to provide backwards-compatible reduce values for older " -"Python releases." +msgid "Alternatively, a :meth:`__reduce_ex__` method may be defined. The only difference is this method should take a single integer argument, the protocol version. When defined, pickle will prefer it over the :meth:`__reduce__` method. In addition, :meth:`__reduce__` automatically becomes a synonym for the extended version. The main use for this method is to provide backwards-compatible reduce values for older Python releases." msgstr "" -#: ../../library/pickle.rst:760 msgid "Persistence of External Objects" msgstr "" -#: ../../library/pickle.rst:766 -msgid "" -"For the benefit of object persistence, the :mod:`!pickle` module supports " -"the notion of a reference to an object outside the pickled data stream. " -"Such objects are referenced by a persistent ID, which should be either a " -"string of alphanumeric characters (for protocol 0) [#]_ or just an arbitrary " -"object (for any newer protocol)." +msgid "For the benefit of object persistence, the :mod:`!pickle` module supports the notion of a reference to an object outside the pickled data stream. Such objects are referenced by a persistent ID, which should be either a string of alphanumeric characters (for protocol 0) [#]_ or just an arbitrary object (for any newer protocol)." msgstr "" -#: ../../library/pickle.rst:772 -msgid "" -"The resolution of such persistent IDs is not defined by the :mod:`!pickle` " -"module; it will delegate this resolution to the user-defined methods on the " -"pickler and unpickler, :meth:`~Pickler.persistent_id` " -"and :meth:`~Unpickler.persistent_load` respectively." +msgid "The resolution of such persistent IDs is not defined by the :mod:`!pickle` module; it will delegate this resolution to the user-defined methods on the pickler and unpickler, :meth:`~Pickler.persistent_id` and :meth:`~Unpickler.persistent_load` respectively." msgstr "" -#: ../../library/pickle.rst:777 -msgid "" -"To pickle objects that have an external persistent ID, the pickler must have " -"a custom :meth:`~Pickler.persistent_id` method that takes an object as an " -"argument and returns either ``None`` or the persistent ID for that object. " -"When ``None`` is returned, the pickler simply pickles the object as normal. " -"When a persistent ID string is returned, the pickler will pickle that " -"object, along with a marker so that the unpickler will recognize it as a " -"persistent ID." +msgid "To pickle objects that have an external persistent ID, the pickler must have a custom :meth:`~Pickler.persistent_id` method that takes an object as an argument and returns either ``None`` or the persistent ID for that object. When ``None`` is returned, the pickler simply pickles the object as normal. When a persistent ID string is returned, the pickler will pickle that object, along with a marker so that the unpickler will recognize it as a persistent ID." msgstr "" -#: ../../library/pickle.rst:784 -msgid "" -"To unpickle external objects, the unpickler must have a " -"custom :meth:`~Unpickler.persistent_load` method that takes a persistent ID " -"object and returns the referenced object." +msgid "To unpickle external objects, the unpickler must have a custom :meth:`~Unpickler.persistent_load` method that takes a persistent ID object and returns the referenced object." msgstr "" -#: ../../library/pickle.rst:788 -msgid "" -"Here is a comprehensive example presenting how persistent ID can be used to " -"pickle external objects by reference." +msgid "Here is a comprehensive example presenting how persistent ID can be used to pickle external objects by reference." msgstr "" -#: ../../library/pickle.rst:791 msgid "" "# Simple example presenting how persistent ID can be used to pickle\n" "# external objects by reference.\n" @@ -1090,17 +511,14 @@ msgid "" "class DBPickler(pickle.Pickler):\n" "\n" " def persistent_id(self, obj):\n" -" # Instead of pickling MemoRecord as a regular class instance, we " -"emit a\n" +" # Instead of pickling MemoRecord as a regular class instance, we emit a\n" " # persistent ID.\n" " if isinstance(obj, MemoRecord):\n" -" # Here, our persistent ID is simply a tuple, containing a tag " -"and a\n" +" # Here, our persistent ID is simply a tuple, containing a tag and a\n" " # key, which refers to a specific record in the database.\n" " return (\"MemoRecord\", obj.key)\n" " else:\n" -" # If obj does not have a persistent ID, return None. This means " -"obj\n" +" # If obj does not have a persistent ID, return None. This means obj\n" " # needs to be pickled as usual.\n" " return None\n" "\n" @@ -1118,15 +536,12 @@ msgid "" " type_tag, key_id = pid\n" " if type_tag == \"MemoRecord\":\n" " # Fetch the referenced record from the database and return it.\n" -" cursor.execute(\"SELECT * FROM memos WHERE key=?\", " -"(str(key_id),))\n" +" cursor.execute(\"SELECT * FROM memos WHERE key=?\", (str(key_id),))\n" " key, task = cursor.fetchone()\n" " return MemoRecord(key, task)\n" " else:\n" -" # Always raises an error if you cannot return the correct " -"object.\n" -" # Otherwise, the unpickler will think None is the object " -"referenced\n" +" # Always raises an error if you cannot return the correct object.\n" +" # Otherwise, the unpickler will think None is the object referenced\n" " # by the persistent ID.\n" " raise pickle.UnpicklingError(\"unsupported persistent object\")\n" "\n" @@ -1138,8 +553,7 @@ msgid "" " # Initialize and populate our database.\n" " conn = sqlite3.connect(\":memory:\")\n" " cursor = conn.cursor()\n" -" cursor.execute(\"CREATE TABLE memos(key INTEGER PRIMARY KEY, task TEXT)" -"\")\n" +" cursor.execute(\"CREATE TABLE memos(key INTEGER PRIMARY KEY, task TEXT)\")\n" " tasks = (\n" " 'give food to fish',\n" " 'prepare group meeting',\n" @@ -1173,29 +587,18 @@ msgid "" " main()\n" msgstr "" -#: ../../library/pickle.rst:796 msgid "Dispatch Tables" msgstr "" -#: ../../library/pickle.rst:798 -msgid "" -"If one wants to customize pickling of some classes without disturbing any " -"other code which depends on pickling, then one can create a pickler with a " -"private dispatch table." +msgid "If one wants to customize pickling of some classes without disturbing any other code which depends on pickling, then one can create a pickler with a private dispatch table." msgstr "" -#: ../../library/pickle.rst:802 -msgid "" -"The global dispatch table managed by the :mod:`copyreg` module is available " -"as :data:`!copyreg.dispatch_table`. Therefore, one may choose to use a " -"modified copy of :data:`!copyreg.dispatch_table` as a private dispatch table." +msgid "The global dispatch table managed by the :mod:`copyreg` module is available as :data:`!copyreg.dispatch_table`. Therefore, one may choose to use a modified copy of :data:`!copyreg.dispatch_table` as a private dispatch table." msgstr "" -#: ../../library/pickle.rst:807 msgid "For example ::" msgstr "" -#: ../../library/pickle.rst:809 msgid "" "f = io.BytesIO()\n" "p = pickle.Pickler(f)\n" @@ -1203,13 +606,9 @@ msgid "" "p.dispatch_table[SomeClass] = reduce_SomeClass" msgstr "" -#: ../../library/pickle.rst:814 -msgid "" -"creates an instance of :class:`pickle.Pickler` with a private dispatch table " -"which handles the ``SomeClass`` class specially. Alternatively, the code ::" +msgid "creates an instance of :class:`pickle.Pickler` with a private dispatch table which handles the ``SomeClass`` class specially. Alternatively, the code ::" msgstr "" -#: ../../library/pickle.rst:818 msgid "" "class MyPickler(pickle.Pickler):\n" " dispatch_table = copyreg.dispatch_table.copy()\n" @@ -1218,42 +617,24 @@ msgid "" "p = MyPickler(f)" msgstr "" -#: ../../library/pickle.rst:824 -msgid "" -"does the same but all instances of ``MyPickler`` will by default share the " -"private dispatch table. On the other hand, the code ::" +msgid "does the same but all instances of ``MyPickler`` will by default share the private dispatch table. On the other hand, the code ::" msgstr "" -#: ../../library/pickle.rst:827 msgid "" "copyreg.pickle(SomeClass, reduce_SomeClass)\n" "f = io.BytesIO()\n" "p = pickle.Pickler(f)" msgstr "" -#: ../../library/pickle.rst:831 -msgid "" -"modifies the global dispatch table shared by all users of the :mod:`copyreg` " -"module." +msgid "modifies the global dispatch table shared by all users of the :mod:`copyreg` module." msgstr "" -#: ../../library/pickle.rst:836 msgid "Handling Stateful Objects" msgstr "" -#: ../../library/pickle.rst:842 -msgid "" -"Here's an example that shows how to modify pickling behavior for a class. " -"The :class:`!TextReader` class below opens a text file, and returns the line " -"number and line contents each time its :meth:`!readline` method is called. " -"If a :class:`!TextReader` instance is pickled, all attributes *except* the " -"file object member are saved. When the instance is unpickled, the file is " -"reopened, and reading resumes from the last location. The :meth:`!" -"__setstate__` and :meth:`!__getstate__` methods are used to implement this " -"behavior. ::" +msgid "Here's an example that shows how to modify pickling behavior for a class. The :class:`!TextReader` class below opens a text file, and returns the line number and line contents each time its :meth:`!readline` method is called. If a :class:`!TextReader` instance is pickled, all attributes *except* the file object member are saved. When the instance is unpickled, the file is reopened, and reading resumes from the last location. The :meth:`!__setstate__` and :meth:`!__getstate__` methods are used to implement this behavior. ::" msgstr "" -#: ../../library/pickle.rst:850 msgid "" "class TextReader:\n" " \"\"\"Print and number lines in a text file.\"\"\"\n" @@ -1293,11 +674,9 @@ msgid "" " self.file = file" msgstr "" -#: ../../library/pickle.rst:888 msgid "A sample usage might be something like this::" msgstr "" -#: ../../library/pickle.rst:890 msgid "" ">>> reader = TextReader(\"hello.txt\")\n" ">>> reader.readline()\n" @@ -1309,50 +688,24 @@ msgid "" "'3: Goodbye!'" msgstr "" -#: ../../library/pickle.rst:902 msgid "Custom Reduction for Types, Functions, and Other Objects" msgstr "" -#: ../../library/pickle.rst:906 -msgid "" -"Sometimes, :attr:`~Pickler.dispatch_table` may not be flexible enough. In " -"particular we may want to customize pickling based on another criterion than " -"the object's type, or we may want to customize the pickling of functions and " -"classes." +msgid "Sometimes, :attr:`~Pickler.dispatch_table` may not be flexible enough. In particular we may want to customize pickling based on another criterion than the object's type, or we may want to customize the pickling of functions and classes." msgstr "" -#: ../../library/pickle.rst:911 -msgid "" -"For those cases, it is possible to subclass from the :class:`Pickler` class " -"and implement a :meth:`~Pickler.reducer_override` method. This method can " -"return an arbitrary reduction tuple (see :meth:`~object.__reduce__`). It can " -"alternatively return :data:`NotImplemented` to fallback to the traditional " -"behavior." +msgid "For those cases, it is possible to subclass from the :class:`Pickler` class and implement a :meth:`~Pickler.reducer_override` method. This method can return an arbitrary reduction tuple (see :meth:`~object.__reduce__`). It can alternatively return :data:`NotImplemented` to fallback to the traditional behavior." msgstr "" -#: ../../library/pickle.rst:916 -msgid "" -"If both the :attr:`~Pickler.dispatch_table` " -"and :meth:`~Pickler.reducer_override` are defined, " -"then :meth:`~Pickler.reducer_override` method takes priority." +msgid "If both the :attr:`~Pickler.dispatch_table` and :meth:`~Pickler.reducer_override` are defined, then :meth:`~Pickler.reducer_override` method takes priority." msgstr "" -#: ../../library/pickle.rst:921 -msgid "" -"For performance reasons, :meth:`~Pickler.reducer_override` may not be called " -"for the following objects: ``None``, ``True``, ``False``, and exact " -"instances " -"of :class:`int`, :class:`float`, :class:`bytes`, :class:`str`, :class:`dict`, :class:`set`, :class:`frozenset`, :class:`list` " -"and :class:`tuple`." +msgid "For performance reasons, :meth:`~Pickler.reducer_override` may not be called for the following objects: ``None``, ``True``, ``False``, and exact instances of :class:`int`, :class:`float`, :class:`bytes`, :class:`str`, :class:`dict`, :class:`set`, :class:`frozenset`, :class:`list` and :class:`tuple`." msgstr "" -#: ../../library/pickle.rst:927 -msgid "" -"Here is a simple example where we allow pickling and reconstructing a given " -"class::" +msgid "Here is a simple example where we allow pickling and reconstructing a given class::" msgstr "" -#: ../../library/pickle.rst:930 msgid "" "import io\n" "import pickle\n" @@ -1383,99 +736,45 @@ msgid "" "assert unpickled_class.my_attribute == 1" msgstr "" -#: ../../library/pickle.rst:962 msgid "Out-of-band Buffers" msgstr "" -#: ../../library/pickle.rst:966 -msgid "" -"In some contexts, the :mod:`!pickle` module is used to transfer massive " -"amounts of data. Therefore, it can be important to minimize the number of " -"memory copies, to preserve performance and resource consumption. However, " -"normal operation of the :mod:`!pickle` module, as it transforms a graph-like " -"structure of objects into a sequential stream of bytes, intrinsically " -"involves copying data to and from the pickle stream." +msgid "In some contexts, the :mod:`!pickle` module is used to transfer massive amounts of data. Therefore, it can be important to minimize the number of memory copies, to preserve performance and resource consumption. However, normal operation of the :mod:`!pickle` module, as it transforms a graph-like structure of objects into a sequential stream of bytes, intrinsically involves copying data to and from the pickle stream." msgstr "" -#: ../../library/pickle.rst:973 -msgid "" -"This constraint can be eschewed if both the *provider* (the implementation " -"of the object types to be transferred) and the *consumer* (the " -"implementation of the communications system) support the out-of-band " -"transfer facilities provided by pickle protocol 5 and higher." +msgid "This constraint can be eschewed if both the *provider* (the implementation of the object types to be transferred) and the *consumer* (the implementation of the communications system) support the out-of-band transfer facilities provided by pickle protocol 5 and higher." msgstr "" -#: ../../library/pickle.rst:979 msgid "Provider API" msgstr "" -#: ../../library/pickle.rst:981 -msgid "" -"The large data objects to be pickled must implement " -"a :meth:`~object.__reduce_ex__` method specialized for protocol 5 and " -"higher, which returns a :class:`PickleBuffer` instance (instead of e.g. " -"a :class:`bytes` object) for any large data." +msgid "The large data objects to be pickled must implement a :meth:`~object.__reduce_ex__` method specialized for protocol 5 and higher, which returns a :class:`PickleBuffer` instance (instead of e.g. a :class:`bytes` object) for any large data." msgstr "" -#: ../../library/pickle.rst:986 -msgid "" -"A :class:`PickleBuffer` object *signals* that the underlying buffer is " -"eligible for out-of-band data transfer. Those objects remain compatible " -"with normal usage of the :mod:`!pickle` module. However, consumers can also " -"opt-in to tell :mod:`!pickle` that they will handle those buffers by " -"themselves." +msgid "A :class:`PickleBuffer` object *signals* that the underlying buffer is eligible for out-of-band data transfer. Those objects remain compatible with normal usage of the :mod:`!pickle` module. However, consumers can also opt-in to tell :mod:`!pickle` that they will handle those buffers by themselves." msgstr "" -#: ../../library/pickle.rst:993 msgid "Consumer API" msgstr "" -#: ../../library/pickle.rst:995 -msgid "" -"A communications system can enable custom handling of " -"the :class:`PickleBuffer` objects generated when serializing an object graph." +msgid "A communications system can enable custom handling of the :class:`PickleBuffer` objects generated when serializing an object graph." msgstr "" -#: ../../library/pickle.rst:998 -msgid "" -"On the sending side, it needs to pass a *buffer_callback* argument " -"to :class:`Pickler` (or to the :func:`dump` or :func:`dumps` function), " -"which will be called with each :class:`PickleBuffer` generated while " -"pickling the object graph. Buffers accumulated by the *buffer_callback* " -"will not see their data copied into the pickle stream, only a cheap marker " -"will be inserted." +msgid "On the sending side, it needs to pass a *buffer_callback* argument to :class:`Pickler` (or to the :func:`dump` or :func:`dumps` function), which will be called with each :class:`PickleBuffer` generated while pickling the object graph. Buffers accumulated by the *buffer_callback* will not see their data copied into the pickle stream, only a cheap marker will be inserted." msgstr "" -#: ../../library/pickle.rst:1005 -msgid "" -"On the receiving side, it needs to pass a *buffers* argument " -"to :class:`Unpickler` (or to the :func:`load` or :func:`loads` function), " -"which is an iterable of the buffers which were passed to *buffer_callback*. " -"That iterable should produce buffers in the same order as they were passed " -"to *buffer_callback*. Those buffers will provide the data expected by the " -"reconstructors of the objects whose pickling produced the " -"original :class:`PickleBuffer` objects." +msgid "On the receiving side, it needs to pass a *buffers* argument to :class:`Unpickler` (or to the :func:`load` or :func:`loads` function), which is an iterable of the buffers which were passed to *buffer_callback*. That iterable should produce buffers in the same order as they were passed to *buffer_callback*. Those buffers will provide the data expected by the reconstructors of the objects whose pickling produced the original :class:`PickleBuffer` objects." msgstr "" -#: ../../library/pickle.rst:1013 -msgid "" -"Between the sending side and the receiving side, the communications system " -"is free to implement its own transfer mechanism for out-of-band buffers. " -"Potential optimizations include the use of shared memory or datatype-" -"dependent compression." +msgid "Between the sending side and the receiving side, the communications system is free to implement its own transfer mechanism for out-of-band buffers. Potential optimizations include the use of shared memory or datatype-dependent compression." msgstr "" -#: ../../library/pickle.rst:1019 msgid "Example" msgstr "" -#: ../../library/pickle.rst:1021 -msgid "" -"Here is a trivial example where we implement a :class:`bytearray` subclass " -"able to participate in out-of-band buffer pickling::" +msgid "Here is a trivial example where we implement a :class:`bytearray` subclass able to participate in out-of-band buffer pickling::" msgstr "" -#: ../../library/pickle.rst:1024 msgid "" "class ZeroCopyByteArray(bytearray):\n" "\n" @@ -1499,20 +798,12 @@ msgid "" " return cls(obj)" msgstr "" -#: ../../library/pickle.rst:1045 -msgid "" -"The reconstructor (the ``_reconstruct`` class method) returns the buffer's " -"providing object if it has the right type. This is an easy way to simulate " -"zero-copy behaviour on this toy example." +msgid "The reconstructor (the ``_reconstruct`` class method) returns the buffer's providing object if it has the right type. This is an easy way to simulate zero-copy behaviour on this toy example." msgstr "" -#: ../../library/pickle.rst:1049 -msgid "" -"On the consumer side, we can pickle those objects the usual way, which when " -"unserialized will give us a copy of the original object::" +msgid "On the consumer side, we can pickle those objects the usual way, which when unserialized will give us a copy of the original object::" msgstr "" -#: ../../library/pickle.rst:1052 msgid "" "b = ZeroCopyByteArray(b\"abc\")\n" "data = pickle.dumps(b, protocol=5)\n" @@ -1521,13 +812,9 @@ msgid "" "print(b is new_b) # False: a copy was made" msgstr "" -#: ../../library/pickle.rst:1058 -msgid "" -"But if we pass a *buffer_callback* and then give back the accumulated " -"buffers when unserializing, we are able to get back the original object::" +msgid "But if we pass a *buffer_callback* and then give back the accumulated buffers when unserializing, we are able to get back the original object::" msgstr "" -#: ../../library/pickle.rst:1061 msgid "" "b = ZeroCopyByteArray(b\"abc\")\n" "buffers = []\n" @@ -1537,33 +824,18 @@ msgid "" "print(b is new_b) # True: no copy was made" msgstr "" -#: ../../library/pickle.rst:1068 -msgid "" -"This example is limited by the fact that :class:`bytearray` allocates its " -"own memory: you cannot create a :class:`bytearray` instance that is backed " -"by another object's memory. However, third-party datatypes such as NumPy " -"arrays do not have this limitation, and allow use of zero-copy pickling (or " -"making as few copies as possible) when transferring between distinct " -"processes or systems." +msgid "This example is limited by the fact that :class:`bytearray` allocates its own memory: you cannot create a :class:`bytearray` instance that is backed by another object's memory. However, third-party datatypes such as NumPy arrays do not have this limitation, and allow use of zero-copy pickling (or making as few copies as possible) when transferring between distinct processes or systems." msgstr "" -#: ../../library/pickle.rst:1075 msgid ":pep:`574` -- Pickle protocol 5 with out-of-band data" msgstr "" -#: ../../library/pickle.rst:1081 msgid "Restricting Globals" msgstr "" -#: ../../library/pickle.rst:1086 -msgid "" -"By default, unpickling will import any class or function that it finds in " -"the pickle data. For many applications, this behaviour is unacceptable as " -"it permits the unpickler to import and invoke arbitrary code. Just consider " -"what this hand-crafted pickle data stream does when loaded::" +msgid "By default, unpickling will import any class or function that it finds in the pickle data. For many applications, this behaviour is unacceptable as it permits the unpickler to import and invoke arbitrary code. Just consider what this hand-crafted pickle data stream does when loaded::" msgstr "" -#: ../../library/pickle.rst:1091 msgid "" ">>> import pickle\n" ">>> pickle.loads(b\"cos\\nsystem\\n(S'echo hello world'\\ntR.\")\n" @@ -1571,30 +843,15 @@ msgid "" "0" msgstr "" -#: ../../library/pickle.rst:1096 -msgid "" -"In this example, the unpickler imports the :func:`os.system` function and " -"then apply the string argument \"echo hello world\". Although this example " -"is inoffensive, it is not difficult to imagine one that could damage your " -"system." +msgid "In this example, the unpickler imports the :func:`os.system` function and then apply the string argument \"echo hello world\". Although this example is inoffensive, it is not difficult to imagine one that could damage your system." msgstr "" -#: ../../library/pickle.rst:1100 -msgid "" -"For this reason, you may want to control what gets unpickled by " -"customizing :meth:`Unpickler.find_class`. Unlike its name " -"suggests, :meth:`Unpickler.find_class` is called whenever a global (i.e., a " -"class or a function) is requested. Thus it is possible to either completely " -"forbid globals or restrict them to a safe subset." +msgid "For this reason, you may want to control what gets unpickled by customizing :meth:`Unpickler.find_class`. Unlike its name suggests, :meth:`Unpickler.find_class` is called whenever a global (i.e., a class or a function) is requested. Thus it is possible to either completely forbid globals or restrict them to a safe subset." msgstr "" -#: ../../library/pickle.rst:1106 -msgid "" -"Here is an example of an unpickler allowing only few safe classes from " -"the :mod:`builtins` module to be loaded::" +msgid "Here is an example of an unpickler allowing only few safe classes from the :mod:`builtins` module to be loaded::" msgstr "" -#: ../../library/pickle.rst:1109 msgid "" "import builtins\n" "import io\n" @@ -1623,11 +880,9 @@ msgid "" " return RestrictedUnpickler(io.BytesIO(s)).load()" msgstr "" -#: ../../library/pickle.rst:1135 msgid "A sample usage of our unpickler working as intended::" msgstr "" -#: ../../library/pickle.rst:1137 msgid "" ">>> restricted_loads(pickle.dumps([1, 2, range(15)]))\n" "[1, 2, range(0, 15)]\n" @@ -1643,35 +898,21 @@ msgid "" "pickle.UnpicklingError: global 'builtins.eval' is forbidden" msgstr "" -#: ../../library/pickle.rst:1154 -msgid "" -"As our examples shows, you have to be careful with what you allow to be " -"unpickled. Therefore if security is a concern, you may want to consider " -"alternatives such as the marshalling API in :mod:`xmlrpc.client` or third-" -"party solutions." +msgid "As our examples shows, you have to be careful with what you allow to be unpickled. Therefore if security is a concern, you may want to consider alternatives such as the marshalling API in :mod:`xmlrpc.client` or third-party solutions." msgstr "" -#: ../../library/pickle.rst:1161 msgid "Performance" msgstr "" -#: ../../library/pickle.rst:1163 -msgid "" -"Recent versions of the pickle protocol (from protocol 2 and upwards) feature " -"efficient binary encodings for several common features and built-in types. " -"Also, the :mod:`!pickle` module has a transparent optimizer written in C." +msgid "Recent versions of the pickle protocol (from protocol 2 and upwards) feature efficient binary encodings for several common features and built-in types. Also, the :mod:`!pickle` module has a transparent optimizer written in C." msgstr "" -#: ../../library/pickle.rst:1171 msgid "Examples" msgstr "" -#: ../../library/pickle.rst:1173 -msgid "" -"For the simplest code, use the :func:`dump` and :func:`load` functions. ::" +msgid "For the simplest code, use the :func:`dump` and :func:`load` functions. ::" msgstr "" -#: ../../library/pickle.rst:1175 msgid "" "import pickle\n" "\n" @@ -1687,11 +928,9 @@ msgid "" " pickle.dump(data, f, pickle.HIGHEST_PROTOCOL)" msgstr "" -#: ../../library/pickle.rst:1189 msgid "The following example reads the resulting pickled data. ::" msgstr "" -#: ../../library/pickle.rst:1191 msgid "" "import pickle\n" "\n" @@ -1701,162 +940,110 @@ msgid "" " data = pickle.load(f)" msgstr "" -#: ../../library/pickle.rst:1206 msgid "Command-line interface" msgstr "" -#: ../../library/pickle.rst:1208 -msgid "" -"The :mod:`!pickle` module can be invoked as a script from the command line, " -"it will display contents of the pickle files. However, when the pickle file " -"that you want to examine comes from an untrusted source, ``-m pickletools`` " -"is a safer option because it does not execute pickle bytecode, " -"see :ref:`pickletools CLI usage `." +msgid "The :mod:`!pickle` module can be invoked as a script from the command line, it will display contents of the pickle files. However, when the pickle file that you want to examine comes from an untrusted source, ``-m pickletools`` is a safer option because it does not execute pickle bytecode, see :ref:`pickletools CLI usage `." msgstr "" -#: ../../library/pickle.rst:1214 msgid "python -m pickle pickle_file [pickle_file ...]" msgstr "" -#: ../../library/pickle.rst:1218 msgid "The following option is accepted:" msgstr "" -#: ../../library/pickle.rst:1224 -msgid "" -"A pickle file to read, or ``-`` to indicate reading from standard input." +msgid "A pickle file to read, or ``-`` to indicate reading from standard input." msgstr "" -#: ../../library/pickle.rst:1229 msgid "Module :mod:`copyreg`" msgstr "" -#: ../../library/pickle.rst:1230 msgid "Pickle interface constructor registration for extension types." msgstr "" -#: ../../library/pickle.rst:1232 msgid "Module :mod:`pickletools`" msgstr "" -#: ../../library/pickle.rst:1233 msgid "Tools for working with and analyzing pickled data." msgstr "" -#: ../../library/pickle.rst:1235 msgid "Module :mod:`shelve`" msgstr "" -#: ../../library/pickle.rst:1236 msgid "Indexed databases of objects; uses :mod:`!pickle`." msgstr "" -#: ../../library/pickle.rst:1238 msgid "Module :mod:`copy`" msgstr "" -#: ../../library/pickle.rst:1239 msgid "Shallow and deep object copying." msgstr "" -#: ../../library/pickle.rst:1241 msgid "Module :mod:`marshal`" msgstr "" -#: ../../library/pickle.rst:1242 msgid "High-performance serialization of built-in types." msgstr "" -#: ../../library/pickle.rst:1246 msgid "Footnotes" msgstr "" -#: ../../library/pickle.rst:1247 msgid "Don't confuse this with the :mod:`marshal` module" msgstr "" -#: ../../library/pickle.rst:1249 -msgid "" -"This is why :keyword:`lambda` functions cannot be pickled: all :keyword:`!" -"lambda` functions share the same name: ````." +msgid "This is why :keyword:`lambda` functions cannot be pickled: all :keyword:`!lambda` functions share the same name: ````." msgstr "" -#: ../../library/pickle.rst:1252 -msgid "" -"The exception raised will likely be an :exc:`ImportError` or " -"an :exc:`AttributeError` but it could be something else." +msgid "The exception raised will likely be an :exc:`ImportError` or an :exc:`AttributeError` but it could be something else." msgstr "" -#: ../../library/pickle.rst:1255 -msgid "" -"The :mod:`copy` module uses this protocol for shallow and deep copying " -"operations." +msgid "The :mod:`copy` module uses this protocol for shallow and deep copying operations." msgstr "" -#: ../../library/pickle.rst:1258 -msgid "" -"The limitation on alphanumeric characters is due to the fact that persistent " -"IDs in protocol 0 are delimited by the newline character. Therefore if any " -"kind of newline characters occurs in persistent IDs, the resulting pickled " -"data will become unreadable." +msgid "The limitation on alphanumeric characters is due to the fact that persistent IDs in protocol 0 are delimited by the newline character. Therefore if any kind of newline characters occurs in persistent IDs, the resulting pickled data will become unreadable." msgstr "" -#: ../../library/pickle.rst:12 msgid "persistence" msgstr "" -#: ../../library/pickle.rst:12 msgid "persistent" msgstr "" -#: ../../library/pickle.rst:12 msgid "objects" msgstr "" -#: ../../library/pickle.rst:12 msgid "serializing" msgstr "" -#: ../../library/pickle.rst:12 msgid "marshalling" msgstr "" -#: ../../library/pickle.rst:12 msgid "flattening" msgstr "" -#: ../../library/pickle.rst:12 msgid "pickling" msgstr "" -#: ../../library/pickle.rst:110 msgid "External Data Representation" msgstr "" -#: ../../library/pickle.rst:675 msgid "copy" msgstr "" -#: ../../library/pickle.rst:675 msgid "protocol" msgstr "" -#: ../../library/pickle.rst:762 msgid "persistent_id (pickle protocol)" msgstr "" -#: ../../library/pickle.rst:762 msgid "persistent_load (pickle protocol)" msgstr "" -#: ../../library/pickle.rst:838 msgid "__getstate__() (copy protocol)" msgstr "" -#: ../../library/pickle.rst:838 msgid "__setstate__() (copy protocol)" msgstr "" -#: ../../library/pickle.rst:1083 msgid "find_class() (pickle protocol)" msgstr "" diff --git a/library/pickletools.po b/library/pickletools.po index 49d5748f..9cd66982 100644 --- a/library/pickletools.po +++ b/library/pickletools.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:11+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,43 +23,24 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/pickletools.rst:2 msgid ":mod:`!pickletools` --- Tools for pickle developers" msgstr "" -#: ../../library/pickletools.rst:8 msgid "**Source code:** :source:`Lib/pickletools.py`" msgstr "" -#: ../../library/pickletools.rst:13 -msgid "" -"This module contains various constants relating to the intimate details of " -"the :mod:`pickle` module, some lengthy comments about the implementation, " -"and a few useful functions for analyzing pickled data. The contents of this " -"module are useful for Python core developers who are working on " -"the :mod:`pickle`; ordinary users of the :mod:`pickle` module probably won't " -"find the :mod:`!pickletools` module relevant." +msgid "This module contains various constants relating to the intimate details of the :mod:`pickle` module, some lengthy comments about the implementation, and a few useful functions for analyzing pickled data. The contents of this module are useful for Python core developers who are working on the :mod:`pickle`; ordinary users of the :mod:`pickle` module probably won't find the :mod:`!pickletools` module relevant." msgstr "" -#: ../../library/pickletools.rst:23 msgid "Command-line usage" msgstr "" -#: ../../library/pickletools.rst:27 -msgid "" -"When invoked from the command line, ``python -m pickletools`` will " -"disassemble the contents of one or more pickle files. Note that if you want " -"to see the Python object stored in the pickle rather than the details of " -"pickle format, you may want to use ``-m pickle`` instead. However, when the " -"pickle file that you want to examine comes from an untrusted source, ``-m " -"pickletools`` is a safer option because it does not execute pickle bytecode." +msgid "When invoked from the command line, ``python -m pickletools`` will disassemble the contents of one or more pickle files. Note that if you want to see the Python object stored in the pickle rather than the details of pickle format, you may want to use ``-m pickle`` instead. However, when the pickle file that you want to examine comes from an untrusted source, ``-m pickletools`` is a safer option because it does not execute pickle bytecode." msgstr "" -#: ../../library/pickletools.rst:35 msgid "For example, with a tuple ``(1, 2)`` pickled in file ``x.pickle``:" msgstr "" -#: ../../library/pickletools.rst:37 msgid "" "$ python -m pickle x.pickle\n" "(1, 2)\n" @@ -74,71 +55,38 @@ msgid "" "highest protocol among opcodes = 2" msgstr "" -#: ../../library/pickletools.rst:52 msgid "Command-line options" msgstr "" -#: ../../library/pickletools.rst:58 msgid "Annotate each line with a short opcode description." msgstr "" -#: ../../library/pickletools.rst:62 msgid "Name of a file where the output should be written." msgstr "" -#: ../../library/pickletools.rst:66 msgid "The number of blanks by which to indent a new MARK level." msgstr "" -#: ../../library/pickletools.rst:70 -msgid "" -"When multiple objects are disassembled, preserve memo between disassemblies." +msgid "When multiple objects are disassembled, preserve memo between disassemblies." msgstr "" -#: ../../library/pickletools.rst:75 -msgid "" -"When more than one pickle file is specified, print given preamble before " -"each disassembly." +msgid "When more than one pickle file is specified, print given preamble before each disassembly." msgstr "" -#: ../../library/pickletools.rst:80 -msgid "" -"A pickle file to read, or ``-`` to indicate reading from standard input." +msgid "A pickle file to read, or ``-`` to indicate reading from standard input." msgstr "" -#: ../../library/pickletools.rst:85 msgid "Programmatic interface" msgstr "" -#: ../../library/pickletools.rst:90 -msgid "" -"Outputs a symbolic disassembly of the pickle to the file-like object *out*, " -"defaulting to ``sys.stdout``. *pickle* can be a string or a file-like " -"object. *memo* can be a Python dictionary that will be used as the pickle's " -"memo; it can be used to perform disassemblies across multiple pickles " -"created by the same pickler. Successive levels, indicated by ``MARK`` " -"opcodes in the stream, are indented by *indentlevel* spaces. If a nonzero " -"value is given to *annotate*, each opcode in the output is annotated with a " -"short description. The value of *annotate* is used as a hint for the column " -"where annotation should start." -msgstr "" - -#: ../../library/pickletools.rst:101 +msgid "Outputs a symbolic disassembly of the pickle to the file-like object *out*, defaulting to ``sys.stdout``. *pickle* can be a string or a file-like object. *memo* can be a Python dictionary that will be used as the pickle's memo; it can be used to perform disassemblies across multiple pickles created by the same pickler. Successive levels, indicated by ``MARK`` opcodes in the stream, are indented by *indentlevel* spaces. If a nonzero value is given to *annotate*, each opcode in the output is annotated with a short description. The value of *annotate* is used as a hint for the column where annotation should start." +msgstr "" + msgid "Added the *annotate* parameter." msgstr "" -#: ../../library/pickletools.rst:106 -msgid "" -"Provides an :term:`iterator` over all of the opcodes in a pickle, returning " -"a sequence of ``(opcode, arg, pos)`` triples. *opcode* is an instance of " -"an :class:`OpcodeInfo` class; *arg* is the decoded value, as a Python " -"object, of the opcode's argument; *pos* is the position at which this opcode " -"is located. *pickle* can be a string or a file-like object." +msgid "Provides an :term:`iterator` over all of the opcodes in a pickle, returning a sequence of ``(opcode, arg, pos)`` triples. *opcode* is an instance of an :class:`OpcodeInfo` class; *arg* is the decoded value, as a Python object, of the opcode's argument; *pos* is the position at which this opcode is located. *pickle* can be a string or a file-like object." msgstr "" -#: ../../library/pickletools.rst:114 -msgid "" -"Returns a new equivalent pickle string after eliminating unused ``PUT`` " -"opcodes. The optimized pickle is shorter, takes less transmission time, " -"requires less storage space, and unpickles more efficiently." +msgid "Returns a new equivalent pickle string after eliminating unused ``PUT`` opcodes. The optimized pickle is shorter, takes less transmission time, requires less storage space, and unpickles more efficiently." msgstr "" diff --git a/library/pipes.po b/library/pipes.po index 3e1a34e6..e3e1f477 100644 --- a/library/pipes.po +++ b/library/pipes.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2024-11-19 01:03+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,23 +21,14 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/pipes.rst:2 msgid ":mod:`!pipes` --- Interface to shell pipelines" msgstr "" -#: ../../library/pipes.rst:10 -msgid "" -"This module is no longer part of the Python standard library. It " -"was :ref:`removed in Python 3.13 ` after being " -"deprecated in Python 3.11. The removal was decided in :pep:`594`." +msgid "This module is no longer part of the Python standard library. It was :ref:`removed in Python 3.13 ` after being deprecated in Python 3.11. The removal was decided in :pep:`594`." msgstr "" -#: ../../library/pipes.rst:14 msgid "Applications should use the :mod:`subprocess` module instead." msgstr "" -#: ../../library/pipes.rst:16 -msgid "" -"The last version of Python that provided the :mod:`!pipes` module was " -"`Python 3.12 `_." +msgid "The last version of Python that provided the :mod:`!pipes` module was `Python 3.12 `_." msgstr "" diff --git a/library/pkgutil.po b/library/pkgutil.po index 54bd0b46..77aad388 100644 --- a/library/pkgutil.po +++ b/library/pkgutil.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:11+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,168 +23,86 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/pkgutil.rst:2 msgid ":mod:`!pkgutil` --- Package extension utility" msgstr "" -#: ../../library/pkgutil.rst:7 msgid "**Source code:** :source:`Lib/pkgutil.py`" msgstr "" -#: ../../library/pkgutil.rst:11 -msgid "" -"This module provides utilities for the import system, in particular package " -"support." +msgid "This module provides utilities for the import system, in particular package support." msgstr "" -#: ../../library/pkgutil.rst:16 msgid "A namedtuple that holds a brief summary of a module's info." msgstr "" -#: ../../library/pkgutil.rst:22 -msgid "" -"Extend the search path for the modules which comprise a package. Intended " -"use is to place the following code in a package's :file:`__init__.py`::" +msgid "Extend the search path for the modules which comprise a package. Intended use is to place the following code in a package's :file:`__init__.py`::" msgstr "" -#: ../../library/pkgutil.rst:25 msgid "" "from pkgutil import extend_path\n" "__path__ = extend_path(__path__, __name__)" msgstr "" -#: ../../library/pkgutil.rst:28 -msgid "" -"For each directory on :data:`sys.path` that has a subdirectory that matches " -"the package name, add the subdirectory to the " -"package's :attr:`~module.__path__`. This is useful if one wants to " -"distribute different parts of a single logical package as multiple " -"directories." +msgid "For each directory on :data:`sys.path` that has a subdirectory that matches the package name, add the subdirectory to the package's :attr:`~module.__path__`. This is useful if one wants to distribute different parts of a single logical package as multiple directories." msgstr "" -#: ../../library/pkgutil.rst:34 -msgid "" -"It also looks for :file:`\\*.pkg` files beginning where ``*`` matches the " -"*name* argument. This feature is similar to :file:`\\*.pth` files (see " -"the :mod:`site` module for more information), except that it doesn't special-" -"case lines starting with ``import``. A :file:`\\*.pkg` file is trusted at " -"face value: apart from skipping blank lines and ignoring comments, all " -"entries found in a :file:`\\*.pkg` file are added to the path, regardless of " -"whether they exist on the filesystem (this is a feature)." +msgid "It also looks for :file:`\\*.pkg` files beginning where ``*`` matches the *name* argument. This feature is similar to :file:`\\*.pth` files (see the :mod:`site` module for more information), except that it doesn't special-case lines starting with ``import``. A :file:`\\*.pkg` file is trusted at face value: apart from skipping blank lines and ignoring comments, all entries found in a :file:`\\*.pkg` file are added to the path, regardless of whether they exist on the filesystem (this is a feature)." msgstr "" -#: ../../library/pkgutil.rst:42 -msgid "" -"If the input path is not a list (as is the case for frozen packages) it is " -"returned unchanged. The input path is not modified; an extended copy is " -"returned. Items are only appended to the copy at the end." +msgid "If the input path is not a list (as is the case for frozen packages) it is returned unchanged. The input path is not modified; an extended copy is returned. Items are only appended to the copy at the end." msgstr "" -#: ../../library/pkgutil.rst:46 -msgid "" -"It is assumed that :data:`sys.path` is a sequence. Items " -"of :data:`sys.path` that are not strings referring to existing directories " -"are ignored. Unicode items on :data:`sys.path` that cause errors when used " -"as filenames may cause this function to raise an exception (in line " -"with :func:`os.path.isdir` behavior)." +msgid "It is assumed that :data:`sys.path` is a sequence. Items of :data:`sys.path` that are not strings referring to existing directories are ignored. Unicode items on :data:`sys.path` that cause errors when used as filenames may cause this function to raise an exception (in line with :func:`os.path.isdir` behavior)." msgstr "" -#: ../../library/pkgutil.rst:55 msgid "Retrieve a :term:`finder` for the given *path_item*." msgstr "" -#: ../../library/pkgutil.rst:57 -msgid "" -"The returned finder is cached in :data:`sys.path_importer_cache` if it was " -"newly created by a path hook." +msgid "The returned finder is cached in :data:`sys.path_importer_cache` if it was newly created by a path hook." msgstr "" -#: ../../library/pkgutil.rst:60 -msgid "" -"The cache (or part of it) can be cleared manually if a rescan " -"of :data:`sys.path_hooks` is necessary." +msgid "The cache (or part of it) can be cleared manually if a rescan of :data:`sys.path_hooks` is necessary." msgstr "" -#: ../../library/pkgutil.rst:63 ../../library/pkgutil.rst:81 -#: ../../library/pkgutil.rst:102 ../../library/pkgutil.rst:141 -msgid "" -"Updated to be based directly on :mod:`importlib` rather than relying on the " -"package internal :pep:`302` import emulation." +msgid "Updated to be based directly on :mod:`importlib` rather than relying on the package internal :pep:`302` import emulation." msgstr "" -#: ../../library/pkgutil.rst:70 msgid "Yield :term:`finder` objects for the given module name." msgstr "" -#: ../../library/pkgutil.rst:72 -msgid "" -"If *fullname* contains a ``'.'``, the finders will be for the package " -"containing *fullname*, otherwise they will be all registered top level " -"finders (i.e. those on both :data:`sys.meta_path` " -"and :data:`sys.path_hooks`)." +msgid "If *fullname* contains a ``'.'``, the finders will be for the package containing *fullname*, otherwise they will be all registered top level finders (i.e. those on both :data:`sys.meta_path` and :data:`sys.path_hooks`)." msgstr "" -#: ../../library/pkgutil.rst:76 -msgid "" -"If the named module is in a package, that package is imported as a side " -"effect of invoking this function." +msgid "If the named module is in a package, that package is imported as a side effect of invoking this function." msgstr "" -#: ../../library/pkgutil.rst:79 msgid "If no module name is specified, all top level finders are produced." msgstr "" -#: ../../library/pkgutil.rst:88 -msgid "" -"Yields :class:`ModuleInfo` for all submodules on *path*, or, if *path* is " -"``None``, all top-level modules on :data:`sys.path`." +msgid "Yields :class:`ModuleInfo` for all submodules on *path*, or, if *path* is ``None``, all top-level modules on :data:`sys.path`." msgstr "" -#: ../../library/pkgutil.rst:91 ../../library/pkgutil.rst:112 -msgid "" -"*path* should be either ``None`` or a list of paths to look for modules in." +msgid "*path* should be either ``None`` or a list of paths to look for modules in." msgstr "" -#: ../../library/pkgutil.rst:93 ../../library/pkgutil.rst:114 -msgid "" -"*prefix* is a string to output on the front of every module name on output." +msgid "*prefix* is a string to output on the front of every module name on output." msgstr "" -#: ../../library/pkgutil.rst:97 ../../library/pkgutil.rst:136 -msgid "" -"Only works for a :term:`finder` which defines an ``iter_modules()`` method. " -"This interface is non-standard, so the module also provides implementations " -"for :class:`importlib.machinery.FileFinder` " -"and :class:`zipimport.zipimporter`." +msgid "Only works for a :term:`finder` which defines an ``iter_modules()`` method. This interface is non-standard, so the module also provides implementations for :class:`importlib.machinery.FileFinder` and :class:`zipimport.zipimporter`." msgstr "" -#: ../../library/pkgutil.rst:109 -msgid "" -"Yields :class:`ModuleInfo` for all modules recursively on *path*, or, if " -"*path* is ``None``, all accessible modules." +msgid "Yields :class:`ModuleInfo` for all modules recursively on *path*, or, if *path* is ``None``, all accessible modules." msgstr "" -#: ../../library/pkgutil.rst:116 -msgid "" -"Note that this function must import all *packages* (*not* all modules!) on " -"the given *path*, in order to access the ``__path__`` attribute to find " -"submodules." +msgid "Note that this function must import all *packages* (*not* all modules!) on the given *path*, in order to access the ``__path__`` attribute to find submodules." msgstr "" -#: ../../library/pkgutil.rst:120 -msgid "" -"*onerror* is a function which gets called with one argument (the name of the " -"package which was being imported) if any exception occurs while trying to " -"import a package. If no *onerror* function is " -"supplied, :exc:`ImportError`\\s are caught and ignored, while all other " -"exceptions are propagated, terminating the search." +msgid "*onerror* is a function which gets called with one argument (the name of the package which was being imported) if any exception occurs while trying to import a package. If no *onerror* function is supplied, :exc:`ImportError`\\s are caught and ignored, while all other exceptions are propagated, terminating the search." msgstr "" -#: ../../library/pkgutil.rst:126 msgid "Examples::" msgstr "" -#: ../../library/pkgutil.rst:128 msgid "" "# list all modules python can access\n" "walk_packages()\n" @@ -193,144 +111,70 @@ msgid "" "walk_packages(ctypes.__path__, ctypes.__name__ + '.')" msgstr "" -#: ../../library/pkgutil.rst:148 msgid "Get a resource from a package." msgstr "" -#: ../../library/pkgutil.rst:150 -msgid "" -"This is a wrapper for the :term:`loader` :meth:`get_data " -"` API. The *package* argument should " -"be the name of a package, in standard module format (``foo.bar``). The " -"*resource* argument should be in the form of a relative filename, using ``/" -"`` as the path separator." +msgid "This is a wrapper for the :term:`loader` :meth:`get_data ` API. The *package* argument should be the name of a package, in standard module format (``foo.bar``). The *resource* argument should be in the form of a relative filename, using ``/`` as the path separator." msgstr "" -#: ../../library/pkgutil.rst:156 -msgid "" -"The function returns a binary string that is the contents of the specified " -"resource." +msgid "The function returns a binary string that is the contents of the specified resource." msgstr "" -#: ../../library/pkgutil.rst:159 -msgid "" -"This function uses the :term:`loader` " -"method :func:`~importlib.abc.FileLoader.get_data` to support modules " -"installed in the filesystem, but also in zip files, databases, or elsewhere." +msgid "This function uses the :term:`loader` method :func:`~importlib.abc.FileLoader.get_data` to support modules installed in the filesystem, but also in zip files, databases, or elsewhere." msgstr "" -#: ../../library/pkgutil.rst:164 -msgid "" -"For packages located in the filesystem, which have already been imported, " -"this is the rough equivalent of::" +msgid "For packages located in the filesystem, which have already been imported, this is the rough equivalent of::" msgstr "" -#: ../../library/pkgutil.rst:167 msgid "" "d = os.path.dirname(sys.modules[package].__file__)\n" "data = open(os.path.join(d, resource), 'rb').read()" msgstr "" -#: ../../library/pkgutil.rst:170 -msgid "" -"Like the :func:`open` function, :func:`!get_data` can follow parent " -"directories (``../``) and absolute paths (starting with ``/`` or ``C:/``, " -"for example). It can open compilation/installation artifacts like ``.py`` " -"and ``.pyc`` files or files with :func:`reserved filenames " -"`. To be compatible with non-filesystem loaders, avoid " -"using these features." +msgid "Like the :func:`open` function, :func:`!get_data` can follow parent directories (``../``) and absolute paths (starting with ``/`` or ``C:/``, for example). It can open compilation/installation artifacts like ``.py`` and ``.pyc`` files or files with :func:`reserved filenames `. To be compatible with non-filesystem loaders, avoid using these features." msgstr "" -#: ../../library/pkgutil.rst:179 -msgid "" -"This function is intended for trusted input. It does not verify that " -"*resource* \"belongs\" to *package*." +msgid "This function is intended for trusted input. It does not verify that *resource* \"belongs\" to *package*." msgstr "" -#: ../../library/pkgutil.rst:182 -msgid "" -"If you use a user-provided *resource* path, consider verifying it. For " -"example, require an alphanumeric filename with a known extension, or install " -"and check a list of known resources." +msgid "If you use a user-provided *resource* path, consider verifying it. For example, require an alphanumeric filename with a known extension, or install and check a list of known resources." msgstr "" -#: ../../library/pkgutil.rst:186 -msgid "" -"If the package cannot be located or loaded, or it uses a :term:`loader` " -"which does not support :meth:`get_data " -"`, then ``None`` is returned. In " -"particular, the :term:`loader` for :term:`namespace packages ` does not support :meth:`get_data " -"`." +msgid "If the package cannot be located or loaded, or it uses a :term:`loader` which does not support :meth:`get_data `, then ``None`` is returned. In particular, the :term:`loader` for :term:`namespace packages ` does not support :meth:`get_data `." msgstr "" -#: ../../library/pkgutil.rst:194 -msgid "" -"The :mod:`importlib.resources` module provides structured access to module " -"resources." +msgid "The :mod:`importlib.resources` module provides structured access to module resources." msgstr "" -#: ../../library/pkgutil.rst:199 msgid "Resolve a name to an object." msgstr "" -#: ../../library/pkgutil.rst:201 -msgid "" -"This functionality is used in numerous places in the standard library " -"(see :issue:`12915`) - and equivalent functionality is also in widely used " -"third-party packages such as setuptools, Django and Pyramid." +msgid "This functionality is used in numerous places in the standard library (see :issue:`12915`) - and equivalent functionality is also in widely used third-party packages such as setuptools, Django and Pyramid." msgstr "" -#: ../../library/pkgutil.rst:205 -msgid "" -"It is expected that *name* will be a string in one of the following formats, " -"where W is shorthand for a valid Python identifier and dot stands for a " -"literal period in these pseudo-regexes:" +msgid "It is expected that *name* will be a string in one of the following formats, where W is shorthand for a valid Python identifier and dot stands for a literal period in these pseudo-regexes:" msgstr "" -#: ../../library/pkgutil.rst:209 msgid "``W(.W)*``" msgstr "" -#: ../../library/pkgutil.rst:210 msgid "``W(.W)*:(W(.W)*)?``" msgstr "" -#: ../../library/pkgutil.rst:212 -msgid "" -"The first form is intended for backward compatibility only. It assumes that " -"some part of the dotted name is a package, and the rest is an object " -"somewhere within that package, possibly nested inside other objects. Because " -"the place where the package stops and the object hierarchy starts can't be " -"inferred by inspection, repeated attempts to import must be done with this " -"form." +msgid "The first form is intended for backward compatibility only. It assumes that some part of the dotted name is a package, and the rest is an object somewhere within that package, possibly nested inside other objects. Because the place where the package stops and the object hierarchy starts can't be inferred by inspection, repeated attempts to import must be done with this form." msgstr "" -#: ../../library/pkgutil.rst:219 -msgid "" -"In the second form, the caller makes the division point clear through the " -"provision of a single colon: the dotted name to the left of the colon is a " -"package to be imported, and the dotted name to the right is the object " -"hierarchy within that package. Only one import is needed in this form. If it " -"ends with the colon, then a module object is returned." +msgid "In the second form, the caller makes the division point clear through the provision of a single colon: the dotted name to the left of the colon is a package to be imported, and the dotted name to the right is the object hierarchy within that package. Only one import is needed in this form. If it ends with the colon, then a module object is returned." msgstr "" -#: ../../library/pkgutil.rst:225 -msgid "" -"The function will return an object (which might be a module), or raise one " -"of the following exceptions:" +msgid "The function will return an object (which might be a module), or raise one of the following exceptions:" msgstr "" -#: ../../library/pkgutil.rst:228 msgid ":exc:`ValueError` -- if *name* isn't in a recognised format." msgstr "" -#: ../../library/pkgutil.rst:230 msgid ":exc:`ImportError` -- if an import failed when it shouldn't have." msgstr "" -#: ../../library/pkgutil.rst:232 -msgid "" -":exc:`AttributeError` -- If a failure occurred when traversing the object " -"hierarchy within the imported package to get to the desired object." +msgid ":exc:`AttributeError` -- If a failure occurred when traversing the object hierarchy within the imported package to get to the desired object." msgstr "" diff --git a/library/platform.po b/library/platform.po index 579a9b00..32106052 100644 --- a/library/platform.po +++ b/library/platform.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:11+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,427 +23,222 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/platform.rst:2 msgid ":mod:`!platform` --- Access to underlying platform's identifying data" msgstr "" -#: ../../library/platform.rst:10 msgid "**Source code:** :source:`Lib/platform.py`" msgstr "" -#: ../../library/platform.rst:16 -msgid "" -"Specific platforms listed alphabetically, with Linux included in the Unix " -"section." +msgid "Specific platforms listed alphabetically, with Linux included in the Unix section." msgstr "" -#: ../../library/platform.rst:21 msgid "Cross platform" msgstr "" -#: ../../library/platform.rst:26 -msgid "" -"Queries the given executable (defaults to the Python interpreter binary) for " -"various architecture information." +msgid "Queries the given executable (defaults to the Python interpreter binary) for various architecture information." msgstr "" -#: ../../library/platform.rst:29 -msgid "" -"Returns a tuple ``(bits, linkage)`` which contain information about the bit " -"architecture and the linkage format used for the executable. Both values are " -"returned as strings." +msgid "Returns a tuple ``(bits, linkage)`` which contain information about the bit architecture and the linkage format used for the executable. Both values are returned as strings." msgstr "" -#: ../../library/platform.rst:33 -msgid "" -"Values that cannot be determined are returned as given by the parameter " -"presets. If bits is given as ``''``, the ``sizeof(pointer)`` (or " -"``sizeof(long)`` on Python version < 1.5.2) is used as indicator for the " -"supported pointer size." +msgid "Values that cannot be determined are returned as given by the parameter presets. If bits is given as ``''``, the ``sizeof(pointer)`` (or ``sizeof(long)`` on Python version < 1.5.2) is used as indicator for the supported pointer size." msgstr "" -#: ../../library/platform.rst:38 -msgid "" -"The function relies on the system's :file:`file` command to do the actual " -"work. This is available on most if not all Unix platforms and some non-Unix " -"platforms and then only if the executable points to the Python interpreter. " -"Reasonable defaults are used when the above needs are not met." +msgid "The function relies on the system's :file:`file` command to do the actual work. This is available on most if not all Unix platforms and some non-Unix platforms and then only if the executable points to the Python interpreter. Reasonable defaults are used when the above needs are not met." msgstr "" -#: ../../library/platform.rst:45 -msgid "" -"On macOS (and perhaps other platforms), executable files may be universal " -"files containing multiple architectures." +msgid "On macOS (and perhaps other platforms), executable files may be universal files containing multiple architectures." msgstr "" -#: ../../library/platform.rst:48 -msgid "" -"To get at the \"64-bitness\" of the current interpreter, it is more reliable " -"to query the :data:`sys.maxsize` attribute::" +msgid "To get at the \"64-bitness\" of the current interpreter, it is more reliable to query the :data:`sys.maxsize` attribute::" msgstr "" -#: ../../library/platform.rst:51 msgid "is_64bits = sys.maxsize > 2**32" msgstr "" -#: ../../library/platform.rst:56 -msgid "" -"Returns the machine type, e.g. ``'AMD64'``. An empty string is returned if " -"the value cannot be determined." +msgid "Returns the machine type, e.g. ``'AMD64'``. An empty string is returned if the value cannot be determined." msgstr "" -#: ../../library/platform.rst:59 -msgid "" -"The output is platform-dependent and may differ in casing and naming " -"conventions." +msgid "The output is platform-dependent and may differ in casing and naming conventions." msgstr "" -#: ../../library/platform.rst:64 -msgid "" -"Returns the computer's network name (may not be fully qualified!). An empty " -"string is returned if the value cannot be determined." +msgid "Returns the computer's network name (may not be fully qualified!). An empty string is returned if the value cannot be determined." msgstr "" -#: ../../library/platform.rst:70 -msgid "" -"Returns a single string identifying the underlying platform with as much " -"useful information as possible." +msgid "Returns a single string identifying the underlying platform with as much useful information as possible." msgstr "" -#: ../../library/platform.rst:73 -msgid "" -"The output is intended to be *human readable* rather than machine parseable. " -"It may look different on different platforms and this is intended." +msgid "The output is intended to be *human readable* rather than machine parseable. It may look different on different platforms and this is intended." msgstr "" -#: ../../library/platform.rst:76 -msgid "" -"If *aliased* is true, the function will use aliases for various platforms " -"that report system names which differ from their common names, for example " -"SunOS will be reported as Solaris. The :func:`system_alias` function is " -"used to implement this." +msgid "If *aliased* is true, the function will use aliases for various platforms that report system names which differ from their common names, for example SunOS will be reported as Solaris. The :func:`system_alias` function is used to implement this." msgstr "" -#: ../../library/platform.rst:81 -msgid "" -"Setting *terse* to true causes the function to return only the absolute " -"minimum information needed to identify the platform." +msgid "Setting *terse* to true causes the function to return only the absolute minimum information needed to identify the platform." msgstr "" -#: ../../library/platform.rst:84 -msgid "" -"On macOS, the function now uses :func:`mac_ver`, if it returns a non-empty " -"release string, to get the macOS version rather than the darwin version." +msgid "On macOS, the function now uses :func:`mac_ver`, if it returns a non-empty release string, to get the macOS version rather than the darwin version." msgstr "" -#: ../../library/platform.rst:92 msgid "Returns the (real) processor name, e.g. ``'amdk6'``." msgstr "" -#: ../../library/platform.rst:94 -msgid "" -"An empty string is returned if the value cannot be determined. Note that " -"many platforms do not provide this information or simply return the same " -"value as for :func:`machine`. NetBSD does this." +msgid "An empty string is returned if the value cannot be determined. Note that many platforms do not provide this information or simply return the same value as for :func:`machine`. NetBSD does this." msgstr "" -#: ../../library/platform.rst:101 -msgid "" -"Returns a tuple ``(buildno, builddate)`` stating the Python build number and " -"date as strings." +msgid "Returns a tuple ``(buildno, builddate)`` stating the Python build number and date as strings." msgstr "" -#: ../../library/platform.rst:107 msgid "Returns a string identifying the compiler used for compiling Python." msgstr "" -#: ../../library/platform.rst:112 msgid "Returns a string identifying the Python implementation SCM branch." msgstr "" -#: ../../library/platform.rst:117 -msgid "" -"Returns a string identifying the Python implementation. Possible return " -"values are: 'CPython', 'IronPython', 'Jython', 'PyPy'." +msgid "Returns a string identifying the Python implementation. Possible return values are: 'CPython', 'IronPython', 'Jython', 'PyPy'." msgstr "" -#: ../../library/platform.rst:123 msgid "Returns a string identifying the Python implementation SCM revision." msgstr "" -#: ../../library/platform.rst:128 msgid "Returns the Python version as string ``'major.minor.patchlevel'``." msgstr "" -#: ../../library/platform.rst:130 -msgid "" -"Note that unlike the Python ``sys.version``, the returned value will always " -"include the patchlevel (it defaults to 0)." +msgid "Note that unlike the Python ``sys.version``, the returned value will always include the patchlevel (it defaults to 0)." msgstr "" -#: ../../library/platform.rst:136 -msgid "" -"Returns the Python version as tuple ``(major, minor, patchlevel)`` of " -"strings." +msgid "Returns the Python version as tuple ``(major, minor, patchlevel)`` of strings." msgstr "" -#: ../../library/platform.rst:138 -msgid "" -"Note that unlike the Python ``sys.version``, the returned value will always " -"include the patchlevel (it defaults to ``'0'``)." +msgid "Note that unlike the Python ``sys.version``, the returned value will always include the patchlevel (it defaults to ``'0'``)." msgstr "" -#: ../../library/platform.rst:144 -msgid "" -"Returns the system's release, e.g. ``'2.2.0'`` or ``'NT'``. An empty string " -"is returned if the value cannot be determined." +msgid "Returns the system's release, e.g. ``'2.2.0'`` or ``'NT'``. An empty string is returned if the value cannot be determined." msgstr "" -#: ../../library/platform.rst:147 -msgid "" -"On iOS and Android, this is the user-facing OS release. To obtain the Darwin " -"or Linux kernel release, use :func:`os.uname`." +msgid "On iOS and Android, this is the user-facing OS release. To obtain the Darwin or Linux kernel release, use :func:`os.uname`." msgstr "" -#: ../../library/platform.rst:152 -msgid "" -"Returns the system/OS name, such as ``'Linux'``, ``'Darwin'``, ``'Java'``, " -"``'Windows'``. An empty string is returned if the value cannot be determined." +msgid "Returns the system/OS name, such as ``'Linux'``, ``'Darwin'``, ``'Java'``, ``'Windows'``. An empty string is returned if the value cannot be determined." msgstr "" -#: ../../library/platform.rst:155 -msgid "" -"On iOS and Android, this returns the user-facing OS name (i.e, ``'iOS``, " -"``'iPadOS'`` or ``'Android'``). To obtain the kernel name (``'Darwin'`` or " -"``'Linux'``), use :func:`os.uname`." +msgid "On iOS and Android, this returns the user-facing OS name (i.e, ``'iOS``, ``'iPadOS'`` or ``'Android'``). To obtain the kernel name (``'Darwin'`` or ``'Linux'``), use :func:`os.uname`." msgstr "" -#: ../../library/platform.rst:161 -msgid "" -"Returns ``(system, release, version)`` aliased to common marketing names " -"used for some systems. It also does some reordering of the information in " -"some cases where it would otherwise cause confusion." +msgid "Returns ``(system, release, version)`` aliased to common marketing names used for some systems. It also does some reordering of the information in some cases where it would otherwise cause confusion." msgstr "" -#: ../../library/platform.rst:168 -msgid "" -"Returns the system's release version, e.g. ``'#3 on degas'``. An empty " -"string is returned if the value cannot be determined." +msgid "Returns the system's release version, e.g. ``'#3 on degas'``. An empty string is returned if the value cannot be determined." msgstr "" -#: ../../library/platform.rst:173 -msgid "" -"Fairly portable uname interface. Returns a :func:`~collections.namedtuple` " -"containing six " -"attributes: :attr:`system`, :attr:`node`, :attr:`release`, :attr:`version`, :attr:`machine`, " -"and :attr:`processor`." +msgid "Fairly portable uname interface. Returns a :func:`~collections.namedtuple` containing six attributes: :attr:`system`, :attr:`node`, :attr:`release`, :attr:`version`, :attr:`machine`, and :attr:`processor`." msgstr "" -#: ../../library/platform.rst:177 msgid ":attr:`processor` is resolved late, on demand." msgstr "" -#: ../../library/platform.rst:179 -msgid "" -"Note: the first two attribute names differ from the names presented " -"by :func:`os.uname`, where they are named :attr:`!sysname` and :attr:`!" -"nodename`." +msgid "Note: the first two attribute names differ from the names presented by :func:`os.uname`, where they are named :attr:`!sysname` and :attr:`!nodename`." msgstr "" -#: ../../library/platform.rst:183 msgid "Entries which cannot be determined are set to ``''``." msgstr "" -#: ../../library/platform.rst:185 msgid "Result changed from a tuple to a :func:`~collections.namedtuple`." msgstr "" -#: ../../library/platform.rst:188 msgid ":attr:`processor` is resolved late instead of immediately." msgstr "" -#: ../../library/platform.rst:193 -msgid "" -"Clear out the internal cache of information, such as the :func:`uname`. This " -"is typically useful when the platform's :func:`node` is changed by an " -"external process and one needs to retrieve the updated value." +msgid "Clear out the internal cache of information, such as the :func:`uname`. This is typically useful when the platform's :func:`node` is changed by an external process and one needs to retrieve the updated value." msgstr "" -#: ../../library/platform.rst:201 msgid "Java platform" msgstr "" -#: ../../library/platform.rst:206 msgid "Version interface for Jython." msgstr "" -#: ../../library/platform.rst:208 -msgid "" -"Returns a tuple ``(release, vendor, vminfo, osinfo)`` with *vminfo* being a " -"tuple ``(vm_name, vm_release, vm_vendor)`` and *osinfo* being a tuple " -"``(os_name, os_version, os_arch)``. Values which cannot be determined are " -"set to the defaults given as parameters (which all default to ``''``)." +msgid "Returns a tuple ``(release, vendor, vminfo, osinfo)`` with *vminfo* being a tuple ``(vm_name, vm_release, vm_vendor)`` and *osinfo* being a tuple ``(os_name, os_version, os_arch)``. Values which cannot be determined are set to the defaults given as parameters (which all default to ``''``)." msgstr "" -#: ../../library/platform.rst:213 -msgid "" -"It was largely untested, had a confusing API, and was only useful for Jython " -"support." +msgid "It was largely untested, had a confusing API, and was only useful for Jython support." msgstr "" -#: ../../library/platform.rst:219 msgid "Windows platform" msgstr "" -#: ../../library/platform.rst:224 -msgid "" -"Get additional version information from the Windows Registry and return a " -"tuple ``(release, version, csd, ptype)`` referring to OS release, version " -"number, CSD level (service pack) and OS type (multi/single processor). " -"Values which cannot be determined are set to the defaults given as " -"parameters (which all default to an empty string)." +msgid "Get additional version information from the Windows Registry and return a tuple ``(release, version, csd, ptype)`` referring to OS release, version number, CSD level (service pack) and OS type (multi/single processor). Values which cannot be determined are set to the defaults given as parameters (which all default to an empty string)." msgstr "" -#: ../../library/platform.rst:230 -msgid "" -"As a hint: *ptype* is ``'Uniprocessor Free'`` on single processor NT " -"machines and ``'Multiprocessor Free'`` on multi processor machines. The " -"``'Free'`` refers to the OS version being free of debugging code. It could " -"also state ``'Checked'`` which means the OS version uses debugging code, " -"i.e. code that checks arguments, ranges, etc." +msgid "As a hint: *ptype* is ``'Uniprocessor Free'`` on single processor NT machines and ``'Multiprocessor Free'`` on multi processor machines. The ``'Free'`` refers to the OS version being free of debugging code. It could also state ``'Checked'`` which means the OS version uses debugging code, i.e. code that checks arguments, ranges, etc." msgstr "" -#: ../../library/platform.rst:238 -msgid "" -"Returns a string representing the current Windows edition, or ``None`` if " -"the value cannot be determined. Possible values include but are not limited " -"to ``'Enterprise'``, ``'IoTUAP'``, ``'ServerStandard'``, and " -"``'nanoserver'``." +msgid "Returns a string representing the current Windows edition, or ``None`` if the value cannot be determined. Possible values include but are not limited to ``'Enterprise'``, ``'IoTUAP'``, ``'ServerStandard'``, and ``'nanoserver'``." msgstr "" -#: ../../library/platform.rst:246 -msgid "" -"Return ``True`` if the Windows edition returned by :func:`win32_edition` is " -"recognized as an IoT edition." +msgid "Return ``True`` if the Windows edition returned by :func:`win32_edition` is recognized as an IoT edition." msgstr "" -#: ../../library/platform.rst:253 msgid "macOS platform" msgstr "" -#: ../../library/platform.rst:257 -msgid "" -"Get macOS version information and return it as tuple ``(release, " -"versioninfo, machine)`` with *versioninfo* being a tuple ``(version, " -"dev_stage, non_release_version)``." +msgid "Get macOS version information and return it as tuple ``(release, versioninfo, machine)`` with *versioninfo* being a tuple ``(version, dev_stage, non_release_version)``." msgstr "" -#: ../../library/platform.rst:261 -msgid "" -"Entries which cannot be determined are set to ``''``. All tuple entries are " -"strings." +msgid "Entries which cannot be determined are set to ``''``. All tuple entries are strings." msgstr "" -#: ../../library/platform.rst:265 msgid "iOS platform" msgstr "" -#: ../../library/platform.rst:269 -msgid "" -"Get iOS version information and return it as " -"a :func:`~collections.namedtuple` with the following attributes:" +msgid "Get iOS version information and return it as a :func:`~collections.namedtuple` with the following attributes:" msgstr "" -#: ../../library/platform.rst:272 msgid "``system`` is the OS name; either ``'iOS'`` or ``'iPadOS'``." msgstr "" -#: ../../library/platform.rst:273 msgid "``release`` is the iOS version number as a string (e.g., ``'17.2'``)." msgstr "" -#: ../../library/platform.rst:274 -msgid "" -"``model`` is the device model identifier; this will be a string like " -"``'iPhone13,2'`` for a physical device, or ``'iPhone'`` on a simulator." +msgid "``model`` is the device model identifier; this will be a string like ``'iPhone13,2'`` for a physical device, or ``'iPhone'`` on a simulator." msgstr "" -#: ../../library/platform.rst:276 -msgid "" -"``is_simulator`` is a boolean describing if the app is running on a " -"simulator or a physical device." +msgid "``is_simulator`` is a boolean describing if the app is running on a simulator or a physical device." msgstr "" -#: ../../library/platform.rst:279 -msgid "" -"Entries which cannot be determined are set to the defaults given as " -"parameters." +msgid "Entries which cannot be determined are set to the defaults given as parameters." msgstr "" -#: ../../library/platform.rst:284 msgid "Unix platforms" msgstr "" -#: ../../library/platform.rst:288 -msgid "" -"Tries to determine the libc version against which the file executable " -"(defaults to the Python interpreter) is linked. Returns a tuple of strings " -"``(lib, version)`` which default to the given parameters in case the lookup " -"fails." +msgid "Tries to determine the libc version against which the file executable (defaults to the Python interpreter) is linked. Returns a tuple of strings ``(lib, version)`` which default to the given parameters in case the lookup fails." msgstr "" -#: ../../library/platform.rst:292 -msgid "" -"Note that this function has intimate knowledge of how different libc " -"versions add symbols to the executable is probably only usable for " -"executables compiled using :program:`gcc`." +msgid "Note that this function has intimate knowledge of how different libc versions add symbols to the executable is probably only usable for executables compiled using :program:`gcc`." msgstr "" -#: ../../library/platform.rst:296 msgid "The file is read and scanned in chunks of *chunksize* bytes." msgstr "" -#: ../../library/platform.rst:300 msgid "Linux platforms" msgstr "" -#: ../../library/platform.rst:304 -msgid "" -"Get operating system identification from ``os-release`` file and return it " -"as a dict. The ``os-release`` file is a `freedesktop.org standard `_ and is available " -"in most Linux distributions. A noticeable exception is Android and Android-" -"based distributions." +msgid "Get operating system identification from ``os-release`` file and return it as a dict. The ``os-release`` file is a `freedesktop.org standard `_ and is available in most Linux distributions. A noticeable exception is Android and Android-based distributions." msgstr "" -#: ../../library/platform.rst:310 -msgid "" -"Raises :exc:`OSError` or subclass when neither ``/etc/os-release`` nor ``/" -"usr/lib/os-release`` can be read." +msgid "Raises :exc:`OSError` or subclass when neither ``/etc/os-release`` nor ``/usr/lib/os-release`` can be read." msgstr "" -#: ../../library/platform.rst:313 -msgid "" -"On success, the function returns a dictionary where keys and values are " -"strings. Values have their special characters like ``\"`` and ``$`` " -"unquoted. The fields ``NAME``, ``ID``, and ``PRETTY_NAME`` are always " -"defined according to the standard. All other fields are optional. Vendors " -"may include additional fields." +msgid "On success, the function returns a dictionary where keys and values are strings. Values have their special characters like ``\"`` and ``$`` unquoted. The fields ``NAME``, ``ID``, and ``PRETTY_NAME`` are always defined according to the standard. All other fields are optional. Vendors may include additional fields." msgstr "" -#: ../../library/platform.rst:319 -msgid "" -"Note that fields like ``NAME``, ``VERSION``, and ``VARIANT`` are strings " -"suitable for presentation to users. Programs should use fields like ``ID``, " -"``ID_LIKE``, ``VERSION_ID``, or ``VARIANT_ID`` to identify Linux " -"distributions." +msgid "Note that fields like ``NAME``, ``VERSION``, and ``VARIANT`` are strings suitable for presentation to users. Programs should use fields like ``ID``, ``ID_LIKE``, ``VERSION_ID``, or ``VARIANT_ID`` to identify Linux distributions." msgstr "" -#: ../../library/platform.rst:324 msgid "Example::" msgstr "" -#: ../../library/platform.rst:326 msgid "" "def get_like_distro():\n" " info = platform.freedesktop_os_release()\n" @@ -454,92 +249,50 @@ msgid "" " return ids" msgstr "" -#: ../../library/platform.rst:338 msgid "Android platform" msgstr "" -#: ../../library/platform.rst:343 -msgid "" -"Get Android device information. Returns a :func:`~collections.namedtuple` " -"with the following attributes. Values which cannot be determined are set to " -"the defaults given as parameters." +msgid "Get Android device information. Returns a :func:`~collections.namedtuple` with the following attributes. Values which cannot be determined are set to the defaults given as parameters." msgstr "" -#: ../../library/platform.rst:347 msgid "``release`` - Android version, as a string (e.g. ``\"14\"``)." msgstr "" -#: ../../library/platform.rst:349 -msgid "" -"``api_level`` - API level of the running device, as an integer (e.g. ``34`` " -"for Android 14). To get the API level which Python was built against, " -"see :func:`sys.getandroidapilevel`." +msgid "``api_level`` - API level of the running device, as an integer (e.g. ``34`` for Android 14). To get the API level which Python was built against, see :func:`sys.getandroidapilevel`." msgstr "" -#: ../../library/platform.rst:353 -msgid "" -"``manufacturer`` - `Manufacturer name `__." +msgid "``manufacturer`` - `Manufacturer name `__." msgstr "" -#: ../../library/platform.rst:356 -msgid "" -"``model`` - `Model name `__ – typically the marketing name or model number." +msgid "``model`` - `Model name `__ – typically the marketing name or model number." msgstr "" -#: ../../library/platform.rst:360 -msgid "" -"``device`` - `Device name `__ – typically the model number or a codename." +msgid "``device`` - `Device name `__ – typically the model number or a codename." msgstr "" -#: ../../library/platform.rst:364 -msgid "" -"``is_emulator`` - ``True`` if the device is an emulator; ``False`` if it's a " -"physical device." +msgid "``is_emulator`` - ``True`` if the device is an emulator; ``False`` if it's a physical device." msgstr "" -#: ../../library/platform.rst:367 -msgid "" -"Google maintains a `list of known model and device names `__." +msgid "Google maintains a `list of known model and device names `__." msgstr "" -#: ../../library/platform.rst:375 msgid "Command-line usage" msgstr "" -#: ../../library/platform.rst:377 -msgid "" -":mod:`!platform` can also be invoked directly using the :option:`-m` switch " -"of the interpreter::" +msgid ":mod:`!platform` can also be invoked directly using the :option:`-m` switch of the interpreter::" msgstr "" -#: ../../library/platform.rst:380 msgid "python -m platform [--terse] [--nonaliased] [{nonaliased,terse} ...]" msgstr "" -#: ../../library/platform.rst:382 msgid "The following options are accepted:" msgstr "" -#: ../../library/platform.rst:388 -msgid "" -"Print terse information about the platform. This is equivalent to " -"calling :func:`platform.platform` with the *terse* argument set to ``True``." +msgid "Print terse information about the platform. This is equivalent to calling :func:`platform.platform` with the *terse* argument set to ``True``." msgstr "" -#: ../../library/platform.rst:393 -msgid "" -"Print platform information without system/OS name aliasing. This is " -"equivalent to calling :func:`platform.platform` with the *aliased* argument " -"set to ``True``." +msgid "Print platform information without system/OS name aliasing. This is equivalent to calling :func:`platform.platform` with the *aliased* argument set to ``True``." msgstr "" -#: ../../library/platform.rst:397 -msgid "" -"You can also pass one or more positional arguments (``terse``, " -"``nonaliased``) to explicitly control the output format. These behave " -"similarly to their corresponding options." +msgid "You can also pass one or more positional arguments (``terse``, ``nonaliased``) to explicitly control the output format. These behave similarly to their corresponding options." msgstr "" diff --git a/library/plistlib.po b/library/plistlib.po index b1cb39d8..26395911 100644 --- a/library/plistlib.po +++ b/library/plistlib.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:11+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,238 +24,141 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/plistlib.rst:2 msgid ":mod:`!plistlib` --- Generate and parse Apple ``.plist`` files" msgstr "" -#: ../../library/plistlib.rst:11 msgid "**Source code:** :source:`Lib/plistlib.py`" msgstr "" -#: ../../library/plistlib.rst:19 -msgid "" -"This module provides an interface for reading and writing the \"property " -"list\" files used by Apple, primarily on macOS and iOS. This module supports " -"both binary and XML plist files." +msgid "This module provides an interface for reading and writing the \"property list\" files used by Apple, primarily on macOS and iOS. This module supports both binary and XML plist files." msgstr "" -#: ../../library/plistlib.rst:23 -msgid "" -"The property list (``.plist``) file format is a simple serialization " -"supporting basic object types, like dictionaries, lists, numbers and " -"strings. Usually the top level object is a dictionary." +msgid "The property list (``.plist``) file format is a simple serialization supporting basic object types, like dictionaries, lists, numbers and strings. Usually the top level object is a dictionary." msgstr "" -#: ../../library/plistlib.rst:27 -msgid "" -"To write out and to parse a plist file, use the :func:`dump` " -"and :func:`load` functions." +msgid "To write out and to parse a plist file, use the :func:`dump` and :func:`load` functions." msgstr "" -#: ../../library/plistlib.rst:30 -msgid "" -"To work with plist data in bytes or string objects, use :func:`dumps` " -"and :func:`loads`." +msgid "To work with plist data in bytes or string objects, use :func:`dumps` and :func:`loads`." msgstr "" -#: ../../library/plistlib.rst:33 -msgid "" -"Values can be strings, integers, floats, booleans, tuples, lists, " -"dictionaries (but only with string keys), :class:`bytes`, :class:`bytearray` " -"or :class:`datetime.datetime` objects." +msgid "Values can be strings, integers, floats, booleans, tuples, lists, dictionaries (but only with string keys), :class:`bytes`, :class:`bytearray` or :class:`datetime.datetime` objects." msgstr "" -#: ../../library/plistlib.rst:37 msgid "New API, old API deprecated. Support for binary format plists added." msgstr "" -#: ../../library/plistlib.rst:40 -msgid "" -"Support added for reading and writing :class:`UID` tokens in binary plists " -"as used by NSKeyedArchiver and NSKeyedUnarchiver." +msgid "Support added for reading and writing :class:`UID` tokens in binary plists as used by NSKeyedArchiver and NSKeyedUnarchiver." msgstr "" -#: ../../library/plistlib.rst:44 msgid "Old API removed." msgstr "" -#: ../../library/plistlib.rst:49 -msgid "" -"`PList manual page `_" +msgid "`PList manual page `_" msgstr "" -#: ../../library/plistlib.rst:50 msgid "Apple's documentation of the file format." msgstr "" -#: ../../library/plistlib.rst:53 msgid "This module defines the following functions:" msgstr "" -#: ../../library/plistlib.rst:57 -msgid "" -"Read a plist file. *fp* should be a readable and binary file object. Return " -"the unpacked root object (which usually is a dictionary)." +msgid "Read a plist file. *fp* should be a readable and binary file object. Return the unpacked root object (which usually is a dictionary)." msgstr "" -#: ../../library/plistlib.rst:61 msgid "The *fmt* is the format of the file and the following values are valid:" msgstr "" -#: ../../library/plistlib.rst:63 msgid ":data:`None`: Autodetect the file format" msgstr "" -#: ../../library/plistlib.rst:65 msgid ":data:`FMT_XML`: XML file format" msgstr "" -#: ../../library/plistlib.rst:67 msgid ":data:`FMT_BINARY`: Binary plist format" msgstr "" -#: ../../library/plistlib.rst:69 -msgid "" -"The *dict_type* is the type used for dictionaries that are read from the " -"plist file." +msgid "The *dict_type* is the type used for dictionaries that are read from the plist file." msgstr "" -#: ../../library/plistlib.rst:72 -msgid "" -"When *aware_datetime* is true, fields with type ``datetime.datetime`` will " -"be created as :ref:`aware object `, with :attr:`!" -"tzinfo` as :const:`datetime.UTC`." +msgid "When *aware_datetime* is true, fields with type ``datetime.datetime`` will be created as :ref:`aware object `, with :attr:`!tzinfo` as :const:`datetime.UTC`." msgstr "" -#: ../../library/plistlib.rst:76 -msgid "" -"XML data for the :data:`FMT_XML` format is parsed using the Expat parser " -"from :mod:`xml.parsers.expat` -- see its documentation for possible " -"exceptions on ill-formed XML. Unknown elements will simply be ignored by " -"the plist parser." +msgid "XML data for the :data:`FMT_XML` format is parsed using the Expat parser from :mod:`xml.parsers.expat` -- see its documentation for possible exceptions on ill-formed XML. Unknown elements will simply be ignored by the plist parser." msgstr "" -#: ../../library/plistlib.rst:81 -msgid "" -"The parser raises :exc:`InvalidFileException` when the file cannot be parsed." +msgid "The parser raises :exc:`InvalidFileException` when the file cannot be parsed." msgstr "" -#: ../../library/plistlib.rst:85 ../../library/plistlib.rst:130 msgid "The keyword-only parameter *aware_datetime* has been added." msgstr "" -#: ../../library/plistlib.rst:91 -msgid "" -"Load a plist from a bytes or string object. See :func:`load` for an " -"explanation of the keyword arguments." +msgid "Load a plist from a bytes or string object. See :func:`load` for an explanation of the keyword arguments." msgstr "" -#: ../../library/plistlib.rst:96 msgid "*data* can be a string when *fmt* equals :data:`FMT_XML`." msgstr "" -#: ../../library/plistlib.rst:101 -msgid "" -"Write *value* to a plist file. *fp* should be a writable, binary file object." +msgid "Write *value* to a plist file. *fp* should be a writable, binary file object." msgstr "" -#: ../../library/plistlib.rst:104 -msgid "" -"The *fmt* argument specifies the format of the plist file and can be one of " -"the following values:" +msgid "The *fmt* argument specifies the format of the plist file and can be one of the following values:" msgstr "" -#: ../../library/plistlib.rst:107 msgid ":data:`FMT_XML`: XML formatted plist file" msgstr "" -#: ../../library/plistlib.rst:109 msgid ":data:`FMT_BINARY`: Binary formatted plist file" msgstr "" -#: ../../library/plistlib.rst:111 -msgid "" -"When *sort_keys* is true (the default) the keys for dictionaries will be " -"written to the plist in sorted order, otherwise they will be written in the " -"iteration order of the dictionary." +msgid "When *sort_keys* is true (the default) the keys for dictionaries will be written to the plist in sorted order, otherwise they will be written in the iteration order of the dictionary." msgstr "" -#: ../../library/plistlib.rst:115 -msgid "" -"When *skipkeys* is false (the default) the function raises :exc:`TypeError` " -"when a key of a dictionary is not a string, otherwise such keys are skipped." +msgid "When *skipkeys* is false (the default) the function raises :exc:`TypeError` when a key of a dictionary is not a string, otherwise such keys are skipped." msgstr "" -#: ../../library/plistlib.rst:118 -msgid "" -"When *aware_datetime* is true and any field with type ``datetime.datetime`` " -"is set as an :ref:`aware object `, it will convert to " -"UTC timezone before writing it." +msgid "When *aware_datetime* is true and any field with type ``datetime.datetime`` is set as an :ref:`aware object `, it will convert to UTC timezone before writing it." msgstr "" -#: ../../library/plistlib.rst:122 -msgid "" -"A :exc:`TypeError` will be raised if the object is of an unsupported type or " -"a container that contains objects of unsupported types." +msgid "A :exc:`TypeError` will be raised if the object is of an unsupported type or a container that contains objects of unsupported types." msgstr "" -#: ../../library/plistlib.rst:125 -msgid "" -"An :exc:`OverflowError` will be raised for integer values that cannot be " -"represented in (binary) plist files." +msgid "An :exc:`OverflowError` will be raised for integer values that cannot be represented in (binary) plist files." msgstr "" -#: ../../library/plistlib.rst:136 -msgid "" -"Return *value* as a plist-formatted bytes object. See the documentation " -"for :func:`dump` for an explanation of the keyword arguments of this " -"function." +msgid "Return *value* as a plist-formatted bytes object. See the documentation for :func:`dump` for an explanation of the keyword arguments of this function." msgstr "" -#: ../../library/plistlib.rst:143 msgid "The following classes are available:" msgstr "" -#: ../../library/plistlib.rst:147 -msgid "" -"Wraps an :class:`int`. This is used when reading or writing NSKeyedArchiver " -"encoded data, which contains UID (see PList manual)." +msgid "Wraps an :class:`int`. This is used when reading or writing NSKeyedArchiver encoded data, which contains UID (see PList manual)." msgstr "" -#: ../../library/plistlib.rst:152 msgid "Int value of the UID. It must be in the range ``0 <= data < 2**64``." msgstr "" -#: ../../library/plistlib.rst:157 msgid "The following constants are available:" msgstr "" -#: ../../library/plistlib.rst:161 msgid "The XML format for plist files." msgstr "" -#: ../../library/plistlib.rst:168 msgid "The binary format for plist files" msgstr "" -#: ../../library/plistlib.rst:173 msgid "The module defines the following exceptions:" msgstr "" -#: ../../library/plistlib.rst:177 msgid "Raised when a file cannot be parsed." msgstr "" -#: ../../library/plistlib.rst:183 msgid "Examples" msgstr "" -#: ../../library/plistlib.rst:185 msgid "Generating a plist::" msgstr "" -#: ../../library/plistlib.rst:187 msgid "" "import datetime as dt\n" "import plistlib\n" @@ -278,11 +181,9 @@ msgid "" "print(plistlib.dumps(pl).decode())" msgstr "" -#: ../../library/plistlib.rst:207 msgid "Parsing a plist::" msgstr "" -#: ../../library/plistlib.rst:209 msgid "" "import plistlib\n" "\n" @@ -296,14 +197,11 @@ msgid "" "print(pl[\"foo\"])" msgstr "" -#: ../../library/plistlib.rst:13 msgid "plist" msgstr "" -#: ../../library/plistlib.rst:13 msgid "file" msgstr "" -#: ../../library/plistlib.rst:13 msgid "property list" msgstr "" diff --git a/library/poplib.po b/library/poplib.po index f211b6f4..b948ff0a 100644 --- a/library/poplib.po +++ b/library/poplib.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:11+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,298 +23,153 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/poplib.rst:2 msgid ":mod:`!poplib` --- POP3 protocol client" msgstr "" -#: ../../library/poplib.rst:10 msgid "**Source code:** :source:`Lib/poplib.py`" msgstr "" -#: ../../library/poplib.rst:16 -msgid "" -"This module defines a class, :class:`POP3`, which encapsulates a connection " -"to a POP3 server and implements the protocol as defined in :rfc:`1939`. " -"The :class:`POP3` class supports both the minimal and optional command sets " -"from :rfc:`1939`. The :class:`POP3` class also supports the ``STLS`` command " -"introduced in :rfc:`2595` to enable encrypted communication on an already " -"established connection." +msgid "This module defines a class, :class:`POP3`, which encapsulates a connection to a POP3 server and implements the protocol as defined in :rfc:`1939`. The :class:`POP3` class supports both the minimal and optional command sets from :rfc:`1939`. The :class:`POP3` class also supports the ``STLS`` command introduced in :rfc:`2595` to enable encrypted communication on an already established connection." msgstr "" -#: ../../library/poplib.rst:22 -msgid "" -"Additionally, this module provides a class :class:`POP3_SSL`, which provides " -"support for connecting to POP3 servers that use SSL as an underlying " -"protocol layer." +msgid "Additionally, this module provides a class :class:`POP3_SSL`, which provides support for connecting to POP3 servers that use SSL as an underlying protocol layer." msgstr "" -#: ../../library/poplib.rst:26 -msgid "" -"Note that POP3, though widely supported, is obsolescent. The implementation " -"quality of POP3 servers varies widely, and too many are quite poor. If your " -"mailserver supports IMAP, you would be better off using " -"the :class:`imaplib.IMAP4` class, as IMAP servers tend to be better " -"implemented." +msgid "Note that POP3, though widely supported, is obsolescent. The implementation quality of POP3 servers varies widely, and too many are quite poor. If your mailserver supports IMAP, you would be better off using the :class:`imaplib.IMAP4` class, as IMAP servers tend to be better implemented." msgstr "" -#: ../../includes/wasm-notavail.rst:3 msgid "Availability" msgstr "" -#: ../../includes/wasm-notavail.rst:5 -msgid "" -"This module does not work or is not available on WebAssembly. See :ref:`wasm-" -"availability` for more information." +msgid "This module does not work or is not available on WebAssembly. See :ref:`wasm-availability` for more information." msgstr "" -#: ../../library/poplib.rst:33 msgid "The :mod:`!poplib` module provides two classes:" msgstr "" -#: ../../library/poplib.rst:38 -msgid "" -"This class implements the actual POP3 protocol. The connection is created " -"when the instance is initialized. If *port* is omitted, the standard POP3 " -"port (110) is used. The optional *timeout* parameter specifies a timeout in " -"seconds for the connection attempt (if not specified, the global default " -"timeout setting will be used)." +msgid "This class implements the actual POP3 protocol. The connection is created when the instance is initialized. If *port* is omitted, the standard POP3 port (110) is used. The optional *timeout* parameter specifies a timeout in seconds for the connection attempt (if not specified, the global default timeout setting will be used)." msgstr "" -#: ../../library/poplib.rst:44 ../../library/poplib.rst:66 -msgid "" -"Raises an :ref:`auditing event ` ``poplib.connect`` with arguments " -"``self``, ``host``, ``port``." +msgid "Raises an :ref:`auditing event ` ``poplib.connect`` with arguments ``self``, ``host``, ``port``." msgstr "" -#: ../../library/poplib.rst:46 ../../library/poplib.rst:48 -#: ../../library/poplib.rst:68 ../../library/poplib.rst:70 -msgid "" -"All commands will raise an :ref:`auditing event ` " -"``poplib.putline`` with arguments ``self`` and ``line``, where ``line`` is " -"the bytes about to be sent to the remote host." +msgid "All commands will raise an :ref:`auditing event ` ``poplib.putline`` with arguments ``self`` and ``line``, where ``line`` is the bytes about to be sent to the remote host." msgstr "" -#: ../../library/poplib.rst:52 ../../library/poplib.rst:82 -msgid "" -"If the *timeout* parameter is set to be zero, it will raise " -"a :class:`ValueError` to prevent the creation of a non-blocking socket." +msgid "If the *timeout* parameter is set to be zero, it will raise a :class:`ValueError` to prevent the creation of a non-blocking socket." msgstr "" -#: ../../library/poplib.rst:58 -msgid "" -"This is a subclass of :class:`POP3` that connects to the server over an SSL " -"encrypted socket. If *port* is not specified, 995, the standard POP3-over-" -"SSL port is used. *timeout* works as in the :class:`POP3` constructor. " -"*context* is an optional :class:`ssl.SSLContext` object which allows " -"bundling SSL configuration options, certificates and private keys into a " -"single (potentially long-lived) structure. Please read :ref:`ssl-security` " -"for best practices." +msgid "This is a subclass of :class:`POP3` that connects to the server over an SSL encrypted socket. If *port* is not specified, 995, the standard POP3-over-SSL port is used. *timeout* works as in the :class:`POP3` constructor. *context* is an optional :class:`ssl.SSLContext` object which allows bundling SSL configuration options, certificates and private keys into a single (potentially long-lived) structure. Please read :ref:`ssl-security` for best practices." msgstr "" -#: ../../library/poplib.rst:74 msgid "*context* parameter added." msgstr "" -#: ../../library/poplib.rst:77 -msgid "" -"The class now supports hostname check " -"with :attr:`ssl.SSLContext.check_hostname` and *Server Name Indication* " -"(see :const:`ssl.HAS_SNI`)." +msgid "The class now supports hostname check with :attr:`ssl.SSLContext.check_hostname` and *Server Name Indication* (see :const:`ssl.HAS_SNI`)." msgstr "" -#: ../../library/poplib.rst:86 msgid "The deprecated *keyfile* and *certfile* parameters have been removed." msgstr "" -#: ../../library/poplib.rst:89 msgid "One exception is defined as an attribute of the :mod:`!poplib` module:" msgstr "" -#: ../../library/poplib.rst:94 -msgid "" -"Exception raised on any errors from this module (errors from :mod:`socket` " -"module are not caught). The reason for the exception is passed to the " -"constructor as a string." +msgid "Exception raised on any errors from this module (errors from :mod:`socket` module are not caught). The reason for the exception is passed to the constructor as a string." msgstr "" -#: ../../library/poplib.rst:101 msgid "Module :mod:`imaplib`" msgstr "" -#: ../../library/poplib.rst:102 msgid "The standard Python IMAP module." msgstr "" -#: ../../library/poplib.rst:104 -msgid "" -"`Frequently Asked Questions About Fetchmail `_" +msgid "`Frequently Asked Questions About Fetchmail `_" msgstr "" -#: ../../library/poplib.rst:105 -msgid "" -"The FAQ for the :program:`fetchmail` POP/IMAP client collects information on " -"POP3 server variations and RFC noncompliance that may be useful if you need " -"to write an application based on the POP protocol." +msgid "The FAQ for the :program:`fetchmail` POP/IMAP client collects information on POP3 server variations and RFC noncompliance that may be useful if you need to write an application based on the POP protocol." msgstr "" -#: ../../library/poplib.rst:113 msgid "POP3 Objects" msgstr "" -#: ../../library/poplib.rst:115 -msgid "" -"All POP3 commands are represented by methods of the same name, in lowercase; " -"most return the response text sent by the server." +msgid "All POP3 commands are represented by methods of the same name, in lowercase; most return the response text sent by the server." msgstr "" -#: ../../library/poplib.rst:118 msgid "A :class:`POP3` instance has the following methods:" msgstr "" -#: ../../library/poplib.rst:123 -msgid "" -"Set the instance's debugging level. This controls the amount of debugging " -"output printed. The default, ``0``, produces no debugging output. A value " -"of ``1`` produces a moderate amount of debugging output, generally a single " -"line per request. A value of ``2`` or higher produces the maximum amount of " -"debugging output, logging each line sent and received on the control " -"connection." +msgid "Set the instance's debugging level. This controls the amount of debugging output printed. The default, ``0``, produces no debugging output. A value of ``1`` produces a moderate amount of debugging output, generally a single line per request. A value of ``2`` or higher produces the maximum amount of debugging output, logging each line sent and received on the control connection." msgstr "" -#: ../../library/poplib.rst:132 msgid "Returns the greeting string sent by the POP3 server." msgstr "" -#: ../../library/poplib.rst:137 -msgid "" -"Query the server's capabilities as specified in :rfc:`2449`. Returns a " -"dictionary in the form ``{'name': ['param'...]}``." +msgid "Query the server's capabilities as specified in :rfc:`2449`. Returns a dictionary in the form ``{'name': ['param'...]}``." msgstr "" -#: ../../library/poplib.rst:145 -msgid "" -"Send user command, response should indicate that a password is required." +msgid "Send user command, response should indicate that a password is required." msgstr "" -#: ../../library/poplib.rst:150 -msgid "" -"Send password, response includes message count and mailbox size. Note: the " -"mailbox on the server is locked until :meth:`~POP3.quit` is called." +msgid "Send password, response includes message count and mailbox size. Note: the mailbox on the server is locked until :meth:`~POP3.quit` is called." msgstr "" -#: ../../library/poplib.rst:156 msgid "Use the more secure APOP authentication to log into the POP3 server." msgstr "" -#: ../../library/poplib.rst:161 -msgid "" -"Use RPOP authentication (similar to UNIX r-commands) to log into POP3 server." +msgid "Use RPOP authentication (similar to UNIX r-commands) to log into POP3 server." msgstr "" -#: ../../library/poplib.rst:166 -msgid "" -"Get mailbox status. The result is a tuple of 2 integers: ``(message count, " -"mailbox size)``." +msgid "Get mailbox status. The result is a tuple of 2 integers: ``(message count, mailbox size)``." msgstr "" -#: ../../library/poplib.rst:172 -msgid "" -"Request message list, result is in the form ``(response, ['mesg_num " -"octets', ...], octets)``. If *which* is set, it is the message to list." +msgid "Request message list, result is in the form ``(response, ['mesg_num octets', ...], octets)``. If *which* is set, it is the message to list." msgstr "" -#: ../../library/poplib.rst:178 -msgid "" -"Retrieve whole message number *which*, and set its seen flag. Result is in " -"form ``(response, ['line', ...], octets)``." +msgid "Retrieve whole message number *which*, and set its seen flag. Result is in form ``(response, ['line', ...], octets)``." msgstr "" -#: ../../library/poplib.rst:184 -msgid "" -"Flag message number *which* for deletion. On most servers deletions are not " -"actually performed until QUIT (the major exception is Eudora QPOP, which " -"deliberately violates the RFCs by doing pending deletes on any disconnect)." +msgid "Flag message number *which* for deletion. On most servers deletions are not actually performed until QUIT (the major exception is Eudora QPOP, which deliberately violates the RFCs by doing pending deletes on any disconnect)." msgstr "" -#: ../../library/poplib.rst:191 msgid "Remove any deletion marks for the mailbox." msgstr "" -#: ../../library/poplib.rst:196 msgid "Do nothing. Might be used as a keep-alive." msgstr "" -#: ../../library/poplib.rst:201 msgid "Signoff: commit changes, unlock mailbox, drop connection." msgstr "" -#: ../../library/poplib.rst:206 -msgid "" -"Retrieves the message header plus *howmuch* lines of the message after the " -"header of message number *which*. Result is in form ``(response, " -"['line', ...], octets)``." +msgid "Retrieves the message header plus *howmuch* lines of the message after the header of message number *which*. Result is in form ``(response, ['line', ...], octets)``." msgstr "" -#: ../../library/poplib.rst:210 -msgid "" -"The POP3 TOP command this method uses, unlike the RETR command, doesn't set " -"the message's seen flag; unfortunately, TOP is poorly specified in the RFCs " -"and is frequently broken in off-brand servers. Test this method by hand " -"against the POP3 servers you will use before trusting it." +msgid "The POP3 TOP command this method uses, unlike the RETR command, doesn't set the message's seen flag; unfortunately, TOP is poorly specified in the RFCs and is frequently broken in off-brand servers. Test this method by hand against the POP3 servers you will use before trusting it." msgstr "" -#: ../../library/poplib.rst:218 -msgid "" -"Return message digest (unique id) list. If *which* is specified, result " -"contains the unique id for that message in the form ``'response mesgnum " -"uid``, otherwise result is list ``(response, ['mesgnum uid', ...], octets)``." +msgid "Return message digest (unique id) list. If *which* is specified, result contains the unique id for that message in the form ``'response mesgnum uid``, otherwise result is list ``(response, ['mesgnum uid', ...], octets)``." msgstr "" -#: ../../library/poplib.rst:225 -msgid "" -"Try to switch to UTF-8 mode. Returns the server response if successful, " -"raises :class:`error_proto` if not. Specified in :RFC:`6856`." +msgid "Try to switch to UTF-8 mode. Returns the server response if successful, raises :class:`error_proto` if not. Specified in :RFC:`6856`." msgstr "" -#: ../../library/poplib.rst:233 -msgid "" -"Start a TLS session on the active connection as specified in :rfc:`2595`. " -"This is only allowed before user authentication" +msgid "Start a TLS session on the active connection as specified in :rfc:`2595`. This is only allowed before user authentication" msgstr "" -#: ../../library/poplib.rst:236 -msgid "" -"*context* parameter is a :class:`ssl.SSLContext` object which allows " -"bundling SSL configuration options, certificates and private keys into a " -"single (potentially long-lived) structure. Please read :ref:`ssl-security` " -"for best practices." +msgid "*context* parameter is a :class:`ssl.SSLContext` object which allows bundling SSL configuration options, certificates and private keys into a single (potentially long-lived) structure. Please read :ref:`ssl-security` for best practices." msgstr "" -#: ../../library/poplib.rst:241 -msgid "" -"This method supports hostname checking " -"via :attr:`ssl.SSLContext.check_hostname` and *Server Name Indication* " -"(see :const:`ssl.HAS_SNI`)." +msgid "This method supports hostname checking via :attr:`ssl.SSLContext.check_hostname` and *Server Name Indication* (see :const:`ssl.HAS_SNI`)." msgstr "" -#: ../../library/poplib.rst:248 -msgid "" -"Instances of :class:`POP3_SSL` have no additional methods. The interface of " -"this subclass is identical to its parent." +msgid "Instances of :class:`POP3_SSL` have no additional methods. The interface of this subclass is identical to its parent." msgstr "" -#: ../../library/poplib.rst:255 msgid "POP3 Example" msgstr "" -#: ../../library/poplib.rst:257 -msgid "" -"Here is a minimal example (without error checking) that opens a mailbox and " -"retrieves and prints all messages::" +msgid "Here is a minimal example (without error checking) that opens a mailbox and retrieves and prints all messages::" msgstr "" -#: ../../library/poplib.rst:260 msgid "" "import getpass, poplib\n" "\n" @@ -327,16 +182,11 @@ msgid "" " print(j)" msgstr "" -#: ../../library/poplib.rst:270 -msgid "" -"At the end of the module, there is a test section that contains a more " -"extensive example of usage." +msgid "At the end of the module, there is a test section that contains a more extensive example of usage." msgstr "" -#: ../../library/poplib.rst:12 msgid "POP3" msgstr "" -#: ../../library/poplib.rst:12 msgid "protocol" msgstr "" diff --git a/library/posix.po b/library/posix.po index 64140bce..85ba7e92 100644 --- a/library/posix.po +++ b/library/posix.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:11+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -22,131 +22,69 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/posix.rst:2 msgid ":mod:`!posix` --- The most common POSIX system calls" msgstr "" -#: ../../library/posix.rst:9 -msgid "" -"This module provides access to operating system functionality that is " -"standardized by the C Standard and the POSIX standard (a thinly disguised " -"Unix interface)." +msgid "This module provides access to operating system functionality that is standardized by the C Standard and the POSIX standard (a thinly disguised Unix interface)." msgstr "" -#: ../../library/posix.rst:13 msgid "Availability" msgstr "" -#: ../../library/posix.rst:17 -msgid "" -"**Do not import this module directly.** Instead, import the " -"module :mod:`os`, which provides a *portable* version of this interface. On " -"Unix, the :mod:`os` module provides a superset of the :mod:`!posix` " -"interface. On non-Unix operating systems the :mod:`!posix` module is not " -"available, but a subset is always available through the :mod:`os` " -"interface. Once :mod:`os` is imported, there is *no* performance penalty in " -"using it instead of :mod:`!posix`. In addition, :mod:`os` provides some " -"additional functionality, such as automatically calling :func:`~os.putenv` " -"when an entry in ``os.environ`` is changed." -msgstr "" - -#: ../../library/posix.rst:26 -msgid "" -"Errors are reported as exceptions; the usual exceptions are given for type " -"errors, while errors reported by the system calls raise :exc:`OSError`." +msgid "**Do not import this module directly.** Instead, import the module :mod:`os`, which provides a *portable* version of this interface. On Unix, the :mod:`os` module provides a superset of the :mod:`!posix` interface. On non-Unix operating systems the :mod:`!posix` module is not available, but a subset is always available through the :mod:`os` interface. Once :mod:`os` is imported, there is *no* performance penalty in using it instead of :mod:`!posix`. In addition, :mod:`os` provides some additional functionality, such as automatically calling :func:`~os.putenv` when an entry in ``os.environ`` is changed." +msgstr "" + +msgid "Errors are reported as exceptions; the usual exceptions are given for type errors, while errors reported by the system calls raise :exc:`OSError`." msgstr "" -#: ../../library/posix.rst:33 msgid "Large File Support" msgstr "" -#: ../../library/posix.rst:41 -msgid "" -"Several operating systems (including AIX and Solaris) provide support for " -"files that are larger than 2 GiB from a C programming model " -"where :c:expr:`int` and :c:expr:`long` are 32-bit values. This is typically " -"accomplished by defining the relevant size and offset types as 64-bit " -"values. Such files are sometimes referred to as :dfn:`large files`." +msgid "Several operating systems (including AIX and Solaris) provide support for files that are larger than 2 GiB from a C programming model where :c:expr:`int` and :c:expr:`long` are 32-bit values. This is typically accomplished by defining the relevant size and offset types as 64-bit values. Such files are sometimes referred to as :dfn:`large files`." msgstr "" -#: ../../library/posix.rst:47 -msgid "" -"Large file support is enabled in Python when the size of an :c:type:`off_t` " -"is larger than a :c:expr:`long` and the :c:expr:`long long` is at least as " -"large as an :c:type:`off_t`. It may be necessary to configure and compile " -"Python with certain compiler flags to enable this mode. For example, with " -"Solaris 2.6 and 2.7 you need to do something like::" +msgid "Large file support is enabled in Python when the size of an :c:type:`off_t` is larger than a :c:expr:`long` and the :c:expr:`long long` is at least as large as an :c:type:`off_t`. It may be necessary to configure and compile Python with certain compiler flags to enable this mode. For example, with Solaris 2.6 and 2.7 you need to do something like::" msgstr "" -#: ../../library/posix.rst:54 msgid "" "CFLAGS=\"`getconf LFS_CFLAGS`\" OPT=\"-g -O2 $CFLAGS\" \\\n" " ./configure" msgstr "" -#: ../../library/posix.rst:57 msgid "On large-file-capable Linux systems, this might work::" msgstr "" -#: ../../library/posix.rst:59 msgid "" -"CFLAGS='-D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64' OPT=\"-g -O2 $CFLAGS\" " -"\\\n" +"CFLAGS='-D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64' OPT=\"-g -O2 $CFLAGS\" \\\n" " ./configure" msgstr "" -#: ../../library/posix.rst:66 msgid "Notable Module Contents" msgstr "" -#: ../../library/posix.rst:68 -msgid "" -"In addition to many functions described in the :mod:`os` module " -"documentation, :mod:`!posix` defines the following data item:" +msgid "In addition to many functions described in the :mod:`os` module documentation, :mod:`!posix` defines the following data item:" msgstr "" -#: ../../library/posix.rst:73 -msgid "" -"A dictionary representing the string environment at the time the interpreter " -"was started. Keys and values are bytes on Unix and str on Windows. For " -"example, ``environ[b'HOME']`` (``environ['HOME']`` on Windows) is the " -"pathname of your home directory, equivalent to ``getenv(\"HOME\")`` in C." +msgid "A dictionary representing the string environment at the time the interpreter was started. Keys and values are bytes on Unix and str on Windows. For example, ``environ[b'HOME']`` (``environ['HOME']`` on Windows) is the pathname of your home directory, equivalent to ``getenv(\"HOME\")`` in C." msgstr "" -#: ../../library/posix.rst:78 -msgid "" -"Modifying this dictionary does not affect the string environment passed on " -"by :func:`~os.execv`, :func:`~os.popen` or :func:`~os.system`; if you need " -"to change the environment, pass ``environ`` to :func:`~os.execve` or add " -"variable assignments and export statements to the command string " -"for :func:`~os.system` or :func:`~os.popen`." +msgid "Modifying this dictionary does not affect the string environment passed on by :func:`~os.execv`, :func:`~os.popen` or :func:`~os.system`; if you need to change the environment, pass ``environ`` to :func:`~os.execve` or add variable assignments and export statements to the command string for :func:`~os.system` or :func:`~os.popen`." msgstr "" -#: ../../library/posix.rst:84 msgid "On Unix, keys and values are bytes." msgstr "" -#: ../../library/posix.rst:89 -msgid "" -"The :mod:`os` module provides an alternate implementation of ``environ`` " -"which updates the environment on modification. Note also that " -"updating :data:`os.environ` will render this dictionary obsolete. Use of " -"the :mod:`os` module version of this is recommended over direct access to " -"the :mod:`!posix` module." +msgid "The :mod:`os` module provides an alternate implementation of ``environ`` which updates the environment on modification. Note also that updating :data:`os.environ` will render this dictionary obsolete. Use of the :mod:`os` module version of this is recommended over direct access to the :mod:`!posix` module." msgstr "" -#: ../../library/posix.rst:15 msgid "module" msgstr "" -#: ../../library/posix.rst:15 msgid "os" msgstr "" -#: ../../library/posix.rst:35 msgid "large files" msgstr "" -#: ../../library/posix.rst:35 msgid "file" msgstr "" diff --git a/library/pprint.po b/library/pprint.po index 121fc927..69e7bd2c 100644 --- a/library/pprint.po +++ b/library/pprint.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:11+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,249 +24,123 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/pprint.rst:2 msgid ":mod:`!pprint` --- Data pretty printer" msgstr "" -#: ../../library/pprint.rst:10 msgid "**Source code:** :source:`Lib/pprint.py`" msgstr "" -#: ../../library/pprint.rst:14 -msgid "" -"The :mod:`!pprint` module provides a capability to \"pretty-print\" " -"arbitrary Python data structures in a form which can be used as input to the " -"interpreter. If the formatted structures include objects which are not " -"fundamental Python types, the representation may not be loadable. This may " -"be the case if objects such as files, sockets or classes are included, as " -"well as many other objects which are not representable as Python literals." +msgid "The :mod:`!pprint` module provides a capability to \"pretty-print\" arbitrary Python data structures in a form which can be used as input to the interpreter. If the formatted structures include objects which are not fundamental Python types, the representation may not be loadable. This may be the case if objects such as files, sockets or classes are included, as well as many other objects which are not representable as Python literals." msgstr "" -#: ../../library/pprint.rst:21 -msgid "" -"The formatted representation keeps objects on a single line if it can, and " -"breaks them onto multiple lines if they don't fit within the allowed width, " -"adjustable by the *width* parameter defaulting to 80 characters." +msgid "The formatted representation keeps objects on a single line if it can, and breaks them onto multiple lines if they don't fit within the allowed width, adjustable by the *width* parameter defaulting to 80 characters." msgstr "" -#: ../../library/pprint.rst:25 msgid "Added support for pretty-printing :class:`types.SimpleNamespace`." msgstr "" -#: ../../library/pprint.rst:28 msgid "Added support for pretty-printing :class:`dataclasses.dataclass`." msgstr "" -#: ../../library/pprint.rst:34 msgid "Functions" msgstr "" -#: ../../library/pprint.rst:39 -msgid "" -"Prints the formatted representation of *object*, followed by a newline. This " -"function may be used in the interactive interpreter instead of " -"the :func:`print` function for inspecting values. Tip: you can reassign " -"``print = pprint.pp`` for use within a scope." +msgid "Prints the formatted representation of *object*, followed by a newline. This function may be used in the interactive interpreter instead of the :func:`print` function for inspecting values. Tip: you can reassign ``print = pprint.pp`` for use within a scope." msgstr "" -#: ../../library/pprint.rst:0 msgid "Parameters" msgstr "" -#: ../../library/pprint.rst:44 msgid "The object to be printed." msgstr "" -#: ../../library/pprint.rst:47 -msgid "" -"A file-like object to which the output will be written by calling " -"its :meth:`!write` method. If ``None`` (the default), :data:`sys.stdout` is " -"used." +msgid "A file-like object to which the output will be written by calling its :meth:`!write` method. If ``None`` (the default), :data:`sys.stdout` is used." msgstr "" -#: ../../library/pprint.rst:53 msgid "The amount of indentation added for each nesting level." msgstr "" -#: ../../library/pprint.rst:56 -msgid "" -"The desired maximum number of characters per line in the output. If a " -"structure cannot be formatted within the width constraint, a best effort " -"will be made." +msgid "The desired maximum number of characters per line in the output. If a structure cannot be formatted within the width constraint, a best effort will be made." msgstr "" -#: ../../library/pprint.rst:61 -msgid "" -"The number of nesting levels which may be printed. If the data structure " -"being printed is too deep, the next contained level is replaced by ``...``. " -"If ``None`` (the default), there is no constraint on the depth of the " -"objects being formatted." +msgid "The number of nesting levels which may be printed. If the data structure being printed is too deep, the next contained level is replaced by ``...``. If ``None`` (the default), there is no constraint on the depth of the objects being formatted." msgstr "" -#: ../../library/pprint.rst:69 -msgid "" -"Control the way long :term:`sequences ` are formatted. If " -"``False`` (the default), each item of a sequence will be formatted on a " -"separate line, otherwise as many items as will fit within the *width* will " -"be formatted on each output line." +msgid "Control the way long :term:`sequences ` are formatted. If ``False`` (the default), each item of a sequence will be formatted on a separate line, otherwise as many items as will fit within the *width* will be formatted on each output line." msgstr "" -#: ../../library/pprint.rst:76 -msgid "" -"If ``True``, dictionaries will be formatted with their keys sorted, " -"otherwise they will be displayed in insertion order (the default)." +msgid "If ``True``, dictionaries will be formatted with their keys sorted, otherwise they will be displayed in insertion order (the default)." msgstr "" -#: ../../library/pprint.rst:81 -msgid "" -"If ``True``, integers will be formatted with the ``_`` character for a " -"thousands separator, otherwise underscores are not displayed (the default)." +msgid "If ``True``, integers will be formatted with the ``_`` character for a thousands separator, otherwise underscores are not displayed (the default)." msgstr "" -#: ../../library/pprint.rst:103 -msgid "" -"Alias for :func:`~pprint.pp` with *sort_dicts* set to ``True`` by default, " -"which would automatically sort the dictionaries' keys, you might want to " -"use :func:`~pprint.pp` instead where it is ``False`` by default." +msgid "Alias for :func:`~pprint.pp` with *sort_dicts* set to ``True`` by default, which would automatically sort the dictionaries' keys, you might want to use :func:`~pprint.pp` instead where it is ``False`` by default." msgstr "" -#: ../../library/pprint.rst:111 -msgid "" -"Return the formatted representation of *object* as a string. *indent*, " -"*width*, *depth*, *compact*, *sort_dicts* and *underscore_numbers* are " -"passed to the :class:`PrettyPrinter` constructor as formatting parameters " -"and their meanings are as described in the documentation above." +msgid "Return the formatted representation of *object* as a string. *indent*, *width*, *depth*, *compact*, *sort_dicts* and *underscore_numbers* are passed to the :class:`PrettyPrinter` constructor as formatting parameters and their meanings are as described in the documentation above." msgstr "" -#: ../../library/pprint.rst:121 -msgid "" -"Determine if the formatted representation of *object* is \"readable\", or " -"can be used to reconstruct the value using :func:`eval`. This always " -"returns ``False`` for recursive objects." +msgid "Determine if the formatted representation of *object* is \"readable\", or can be used to reconstruct the value using :func:`eval`. This always returns ``False`` for recursive objects." msgstr "" -#: ../../library/pprint.rst:131 -msgid "" -"Determine if *object* requires a recursive representation. This function is " -"subject to the same limitations as noted in :func:`saferepr` below and may " -"raise an :exc:`RecursionError` if it fails to detect a recursive object." +msgid "Determine if *object* requires a recursive representation. This function is subject to the same limitations as noted in :func:`saferepr` below and may raise an :exc:`RecursionError` if it fails to detect a recursive object." msgstr "" -#: ../../library/pprint.rst:138 -msgid "" -"Return a string representation of *object*, protected against recursion in " -"some common data structures, namely instances " -"of :class:`dict`, :class:`list` and :class:`tuple` or subclasses whose " -"``__repr__`` has not been overridden. If the representation of object " -"exposes a recursive entry, the recursive reference will be represented as " -"````. The representation is not " -"otherwise formatted." +msgid "Return a string representation of *object*, protected against recursion in some common data structures, namely instances of :class:`dict`, :class:`list` and :class:`tuple` or subclasses whose ``__repr__`` has not been overridden. If the representation of object exposes a recursive entry, the recursive reference will be represented as ````. The representation is not otherwise formatted." msgstr "" -#: ../../library/pprint.rst:151 msgid "PrettyPrinter Objects" msgstr "" -#: ../../library/pprint.rst:158 msgid "Construct a :class:`PrettyPrinter` instance." msgstr "" -#: ../../library/pprint.rst:160 -msgid "" -"Arguments have the same meaning as for :func:`~pprint.pp`. Note that they " -"are in a different order, and that *sort_dicts* defaults to ``True``." +msgid "Arguments have the same meaning as for :func:`~pprint.pp`. Note that they are in a different order, and that *sort_dicts* defaults to ``True``." msgstr "" -#: ../../library/pprint.rst:187 msgid "Added the *compact* parameter." msgstr "" -#: ../../library/pprint.rst:190 msgid "Added the *sort_dicts* parameter." msgstr "" -#: ../../library/pprint.rst:193 msgid "Added the *underscore_numbers* parameter." msgstr "" -#: ../../library/pprint.rst:196 msgid "No longer attempts to write to :data:`!sys.stdout` if it is ``None``." msgstr "" -#: ../../library/pprint.rst:200 msgid ":class:`PrettyPrinter` instances have the following methods:" msgstr "" -#: ../../library/pprint.rst:205 -msgid "" -"Return the formatted representation of *object*. This takes into account " -"the options passed to the :class:`PrettyPrinter` constructor." +msgid "Return the formatted representation of *object*. This takes into account the options passed to the :class:`PrettyPrinter` constructor." msgstr "" -#: ../../library/pprint.rst:211 -msgid "" -"Print the formatted representation of *object* on the configured stream, " -"followed by a newline." +msgid "Print the formatted representation of *object* on the configured stream, followed by a newline." msgstr "" -#: ../../library/pprint.rst:214 -msgid "" -"The following methods provide the implementations for the corresponding " -"functions of the same names. Using these methods on an instance is slightly " -"more efficient since new :class:`PrettyPrinter` objects don't need to be " -"created." +msgid "The following methods provide the implementations for the corresponding functions of the same names. Using these methods on an instance is slightly more efficient since new :class:`PrettyPrinter` objects don't need to be created." msgstr "" -#: ../../library/pprint.rst:224 -msgid "" -"Determine if the formatted representation of the object is \"readable,\" or " -"can be used to reconstruct the value using :func:`eval`. Note that this " -"returns ``False`` for recursive objects. If the *depth* parameter of " -"the :class:`PrettyPrinter` is set and the object is deeper than allowed, " -"this returns ``False``." +msgid "Determine if the formatted representation of the object is \"readable,\" or can be used to reconstruct the value using :func:`eval`. Note that this returns ``False`` for recursive objects. If the *depth* parameter of the :class:`PrettyPrinter` is set and the object is deeper than allowed, this returns ``False``." msgstr "" -#: ../../library/pprint.rst:233 msgid "Determine if the object requires a recursive representation." msgstr "" -#: ../../library/pprint.rst:235 -msgid "" -"This method is provided as a hook to allow subclasses to modify the way " -"objects are converted to strings. The default implementation uses the " -"internals of the :func:`saferepr` implementation." +msgid "This method is provided as a hook to allow subclasses to modify the way objects are converted to strings. The default implementation uses the internals of the :func:`saferepr` implementation." +msgstr "" + +msgid "Returns three values: the formatted version of *object* as a string, a flag indicating whether the result is readable, and a flag indicating whether recursion was detected. The first argument is the object to be presented. The second is a dictionary which contains the :func:`id` of objects that are part of the current presentation context (direct and indirect containers for *object* that are affecting the presentation) as the keys; if an object needs to be presented which is already represented in *context*, the third return value should be ``True``. Recursive calls to the :meth:`.format` method should add additional entries for containers to this dictionary. The third argument, *maxlevels*, gives the requested limit to recursion; this will be ``0`` if there is no requested limit. This argument should be passed unmodified to recursive calls. The fourth argument, *level*, gives the current level; recursive calls should be passed a value less than that of the current call." msgstr "" -#: ../../library/pprint.rst:242 -msgid "" -"Returns three values: the formatted version of *object* as a string, a flag " -"indicating whether the result is readable, and a flag indicating whether " -"recursion was detected. The first argument is the object to be presented. " -"The second is a dictionary which contains the :func:`id` of objects that are " -"part of the current presentation context (direct and indirect containers for " -"*object* that are affecting the presentation) as the keys; if an object " -"needs to be presented which is already represented in *context*, the third " -"return value should be ``True``. Recursive calls to the :meth:`.format` " -"method should add additional entries for containers to this dictionary. The " -"third argument, *maxlevels*, gives the requested limit to recursion; this " -"will be ``0`` if there is no requested limit. This argument should be " -"passed unmodified to recursive calls. The fourth argument, *level*, gives " -"the current level; recursive calls should be passed a value less than that " -"of the current call." -msgstr "" - -#: ../../library/pprint.rst:260 msgid "Example" msgstr "" -#: ../../library/pprint.rst:262 -msgid "" -"To demonstrate several uses of the :func:`~pprint.pp` function and its " -"parameters, let's fetch information about a project from `PyPI `_::" +msgid "To demonstrate several uses of the :func:`~pprint.pp` function and its parameters, let's fetch information about a project from `PyPI `_::" msgstr "" -#: ../../library/pprint.rst:265 msgid "" ">>> import json\n" ">>> import pprint\n" @@ -275,11 +149,9 @@ msgid "" "... project_info = json.load(resp)['info']" msgstr "" -#: ../../library/pprint.rst:271 msgid "In its basic form, :func:`~pprint.pp` shows the whole object::" msgstr "" -#: ../../library/pprint.rst:273 msgid "" ">>> pprint.pp(project_info)\n" "{'author': 'The Python Packaging Authority',\n" @@ -303,18 +175,15 @@ msgid "" " '\\n'\n" " 'The file should use UTF-8 encoding and be written using '\n" " 'ReStructured Text. It\\n'\n" -" 'will be used to generate the project webpage on PyPI, and " -"'\n" +" 'will be used to generate the project webpage on PyPI, and '\n" " 'should be written for\\n'\n" " 'that purpose.\\n'\n" " '\\n'\n" -" 'Typical contents for this file would include an overview of " -"'\n" +" 'Typical contents for this file would include an overview of '\n" " 'the project, basic\\n'\n" " 'usage examples, etc. Generally, including the project '\n" " 'changelog in here is not\\n'\n" -" 'a good idea, although a simple \"What\\'s New\" section for " -"the '\n" +" 'a good idea, although a simple \"What\\'s New\" section for the '\n" " 'most recent version\\n'\n" " 'may be appropriate.',\n" " 'description_content_type': None,\n" @@ -339,13 +208,9 @@ msgid "" " 'version': '1.2.0'}" msgstr "" -#: ../../library/pprint.rst:327 -msgid "" -"The result can be limited to a certain *depth* (ellipsis is used for deeper " -"contents)::" +msgid "The result can be limited to a certain *depth* (ellipsis is used for deeper contents)::" msgstr "" -#: ../../library/pprint.rst:330 msgid "" ">>> pprint.pp(project_info, depth=1)\n" "{'author': 'The Python Packaging Authority',\n" @@ -359,18 +224,15 @@ msgid "" " '\\n'\n" " 'The file should use UTF-8 encoding and be written using '\n" " 'ReStructured Text. It\\n'\n" -" 'will be used to generate the project webpage on PyPI, and " -"'\n" +" 'will be used to generate the project webpage on PyPI, and '\n" " 'should be written for\\n'\n" " 'that purpose.\\n'\n" " '\\n'\n" -" 'Typical contents for this file would include an overview of " -"'\n" +" 'Typical contents for this file would include an overview of '\n" " 'the project, basic\\n'\n" " 'usage examples, etc. Generally, including the project '\n" " 'changelog in here is not\\n'\n" -" 'a good idea, although a simple \"What\\'s New\" section for " -"the '\n" +" 'a good idea, although a simple \"What\\'s New\" section for the '\n" " 'most recent version\\n'\n" " 'may be appropriate.',\n" " 'description_content_type': None,\n" @@ -394,13 +256,9 @@ msgid "" " 'version': '1.2.0'}" msgstr "" -#: ../../library/pprint.rst:373 -msgid "" -"Additionally, maximum character *width* can be suggested. If a long object " -"cannot be split, the specified width will be exceeded::" +msgid "Additionally, maximum character *width* can be suggested. If a long object cannot be split, the specified width will be exceeded::" msgstr "" -#: ../../library/pprint.rst:376 msgid "" ">>> pprint.pp(project_info, depth=1, width=60)\n" "{'author': 'The Python Packaging Authority',\n" @@ -449,18 +307,14 @@ msgid "" " 'version': '1.2.0'}" msgstr "" -#: ../../library/pprint.rst:119 ../../library/pprint.rst:222 msgid "built-in function" msgstr "" -#: ../../library/pprint.rst:119 ../../library/pprint.rst:222 msgid "eval" msgstr "" -#: ../../library/pprint.rst:153 msgid "..." msgstr "" -#: ../../library/pprint.rst:153 msgid "placeholder" msgstr "" diff --git a/library/profile.po b/library/profile.po index 30356584..698b56f4 100644 --- a/library/profile.po +++ b/library/profile.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:11+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,94 +23,51 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/profile.rst:5 msgid "The Python Profilers" msgstr "" -#: ../../library/profile.rst:7 msgid "**Source code:** :source:`Lib/profile.py` and :source:`Lib/pstats.py`" msgstr "" -#: ../../library/profile.rst:14 msgid "Introduction to the profilers" msgstr "" -#: ../../library/profile.rst:20 -msgid "" -":mod:`cProfile` and :mod:`profile` provide :dfn:`deterministic profiling` of " -"Python programs. A :dfn:`profile` is a set of statistics that describes how " -"often and for how long various parts of the program executed. These " -"statistics can be formatted into reports via the :mod:`pstats` module." +msgid ":mod:`cProfile` and :mod:`profile` provide :dfn:`deterministic profiling` of Python programs. A :dfn:`profile` is a set of statistics that describes how often and for how long various parts of the program executed. These statistics can be formatted into reports via the :mod:`pstats` module." msgstr "" -#: ../../library/profile.rst:25 -msgid "" -"The Python standard library provides two different implementations of the " -"same profiling interface:" +msgid "The Python standard library provides two different implementations of the same profiling interface:" msgstr "" -#: ../../library/profile.rst:28 -msgid "" -":mod:`cProfile` is recommended for most users; it's a C extension with " -"reasonable overhead that makes it suitable for profiling long-running " -"programs. Based on :mod:`lsprof`, contributed by Brett Rosen and Ted " -"Czotter." +msgid ":mod:`cProfile` is recommended for most users; it's a C extension with reasonable overhead that makes it suitable for profiling long-running programs. Based on :mod:`lsprof`, contributed by Brett Rosen and Ted Czotter." msgstr "" -#: ../../library/profile.rst:33 -msgid "" -":mod:`profile`, a pure Python module whose interface is imitated " -"by :mod:`cProfile`, but which adds significant overhead to profiled " -"programs. If you're trying to extend the profiler in some way, the task " -"might be easier with this module. Originally designed and written by Jim " -"Roskind." +msgid ":mod:`profile`, a pure Python module whose interface is imitated by :mod:`cProfile`, but which adds significant overhead to profiled programs. If you're trying to extend the profiler in some way, the task might be easier with this module. Originally designed and written by Jim Roskind." msgstr "" -#: ../../library/profile.rst:40 -msgid "" -"The profiler modules are designed to provide an execution profile for a " -"given program, not for benchmarking purposes (for that, there " -"is :mod:`timeit` for reasonably accurate results). This particularly " -"applies to benchmarking Python code against C code: the profilers introduce " -"overhead for Python code, but not for C-level functions, and so the C code " -"would seem faster than any Python one." +msgid "The profiler modules are designed to provide an execution profile for a given program, not for benchmarking purposes (for that, there is :mod:`timeit` for reasonably accurate results). This particularly applies to benchmarking Python code against C code: the profilers introduce overhead for Python code, but not for C-level functions, and so the C code would seem faster than any Python one." msgstr "" -#: ../../library/profile.rst:51 msgid "Instant User's Manual" msgstr "" -#: ../../library/profile.rst:53 -msgid "" -"This section is provided for users that \"don't want to read the manual.\" " -"It provides a very brief overview, and allows a user to rapidly perform " -"profiling on an existing application." +msgid "This section is provided for users that \"don't want to read the manual.\" It provides a very brief overview, and allows a user to rapidly perform profiling on an existing application." msgstr "" -#: ../../library/profile.rst:57 msgid "To profile a function that takes a single argument, you can do::" msgstr "" -#: ../../library/profile.rst:59 msgid "" "import cProfile\n" "import re\n" "cProfile.run('re.compile(\"foo|bar\")')" msgstr "" -#: ../../library/profile.rst:63 -msgid "" -"(Use :mod:`profile` instead of :mod:`cProfile` if the latter is not " -"available on your system.)" +msgid "(Use :mod:`profile` instead of :mod:`cProfile` if the latter is not available on your system.)" msgstr "" -#: ../../library/profile.rst:66 -msgid "" -"The above action would run :func:`re.compile` and print profile results like " -"the following::" +msgid "The above action would run :func:`re.compile` and print profile results like the following::" msgstr "" -#: ../../library/profile.rst:69 msgid "" " 214 function calls (207 primitive calls) in 0.002 seconds\n" "\n" @@ -127,132 +84,81 @@ msgid "" " 1 0.000 0.000 0.000 0.000 _parser.py:435(_parse_sub)" msgstr "" -#: ../../library/profile.rst:83 -msgid "" -"The first line indicates that 214 calls were monitored. Of those calls, 207 " -"were :dfn:`primitive`, meaning that the call was not induced via recursion. " -"The next line: ``Ordered by: cumulative time`` indicates the output is " -"sorted by the ``cumtime`` values. The column headings include:" +msgid "The first line indicates that 214 calls were monitored. Of those calls, 207 were :dfn:`primitive`, meaning that the call was not induced via recursion. The next line: ``Ordered by: cumulative time`` indicates the output is sorted by the ``cumtime`` values. The column headings include:" msgstr "" -#: ../../library/profile.rst:88 msgid "ncalls" msgstr "" -#: ../../library/profile.rst:89 msgid "for the number of calls." msgstr "" -#: ../../library/profile.rst:91 msgid "tottime" msgstr "" -#: ../../library/profile.rst:92 -msgid "" -"for the total time spent in the given function (and excluding time made in " -"calls to sub-functions)" +msgid "for the total time spent in the given function (and excluding time made in calls to sub-functions)" msgstr "" -#: ../../library/profile.rst:95 ../../library/profile.rst:102 msgid "percall" msgstr "" -#: ../../library/profile.rst:96 msgid "is the quotient of ``tottime`` divided by ``ncalls``" msgstr "" -#: ../../library/profile.rst:98 msgid "cumtime" msgstr "" -#: ../../library/profile.rst:99 -msgid "" -"is the cumulative time spent in this and all subfunctions (from invocation " -"till exit). This figure is accurate *even* for recursive functions." +msgid "is the cumulative time spent in this and all subfunctions (from invocation till exit). This figure is accurate *even* for recursive functions." msgstr "" -#: ../../library/profile.rst:103 msgid "is the quotient of ``cumtime`` divided by primitive calls" msgstr "" -#: ../../library/profile.rst:105 msgid "filename:lineno(function)" msgstr "" -#: ../../library/profile.rst:106 msgid "provides the respective data of each function" msgstr "" -#: ../../library/profile.rst:108 -msgid "" -"When there are two numbers in the first column (for example ``3/1``), it " -"means that the function recursed. The second value is the number of " -"primitive calls and the former is the total number of calls. Note that when " -"the function does not recurse, these two values are the same, and only the " -"single figure is printed." +msgid "When there are two numbers in the first column (for example ``3/1``), it means that the function recursed. The second value is the number of primitive calls and the former is the total number of calls. Note that when the function does not recurse, these two values are the same, and only the single figure is printed." msgstr "" -#: ../../library/profile.rst:114 -msgid "" -"Instead of printing the output at the end of the profile run, you can save " -"the results to a file by specifying a filename to the :func:`run` function::" +msgid "Instead of printing the output at the end of the profile run, you can save the results to a file by specifying a filename to the :func:`run` function::" msgstr "" -#: ../../library/profile.rst:117 msgid "" "import cProfile\n" "import re\n" "cProfile.run('re.compile(\"foo|bar\")', 'restats')" msgstr "" -#: ../../library/profile.rst:121 -msgid "" -"The :class:`pstats.Stats` class reads profile results from a file and " -"formats them in various ways." +msgid "The :class:`pstats.Stats` class reads profile results from a file and formats them in various ways." msgstr "" -#: ../../library/profile.rst:128 -msgid "" -"The files :mod:`cProfile` and :mod:`profile` can also be invoked as a script " -"to profile another script. For example::" +msgid "The files :mod:`cProfile` and :mod:`profile` can also be invoked as a script to profile another script. For example::" msgstr "" -#: ../../library/profile.rst:131 -msgid "" -"python -m cProfile [-o output_file] [-s sort_order] (-m module | myscript.py)" +msgid "python -m cProfile [-o output_file] [-s sort_order] (-m module | myscript.py)" msgstr "" -#: ../../library/profile.rst:135 msgid "Writes the profile results to a file instead of to stdout." msgstr "" -#: ../../library/profile.rst:139 -msgid "" -"Specifies one of the :func:`~pstats.Stats.sort_stats` sort values to sort " -"the output by. This only applies when :option:`-o ` is not " -"supplied." +msgid "Specifies one of the :func:`~pstats.Stats.sort_stats` sort values to sort the output by. This only applies when :option:`-o ` is not supplied." msgstr "" -#: ../../library/profile.rst:145 msgid "Specifies that a module is being profiled instead of a script." msgstr "" -#: ../../library/profile.rst:147 msgid "Added the ``-m`` option to :mod:`cProfile`." msgstr "" -#: ../../library/profile.rst:150 msgid "Added the ``-m`` option to :mod:`profile`." msgstr "" -#: ../../library/profile.rst:153 -msgid "" -"The :mod:`pstats` module's :class:`~pstats.Stats` class has a variety of " -"methods for manipulating and printing the data saved into a profile results " -"file::" +msgid "The :mod:`pstats` module's :class:`~pstats.Stats` class has a variety of methods for manipulating and printing the data saved into a profile results file::" msgstr "" -#: ../../library/profile.rst:156 msgid "" "import pstats\n" "from pstats import SortKey\n" @@ -260,182 +166,100 @@ msgid "" "p.strip_dirs().sort_stats(-1).print_stats()" msgstr "" -#: ../../library/profile.rst:161 -msgid "" -"The :meth:`~pstats.Stats.strip_dirs` method removed the extraneous path from " -"all the module names. The :meth:`~pstats.Stats.sort_stats` method sorted all " -"the entries according to the standard module/line/name string that is " -"printed. The :meth:`~pstats.Stats.print_stats` method printed out all the " -"statistics. You might try the following sort calls::" +msgid "The :meth:`~pstats.Stats.strip_dirs` method removed the extraneous path from all the module names. The :meth:`~pstats.Stats.sort_stats` method sorted all the entries according to the standard module/line/name string that is printed. The :meth:`~pstats.Stats.print_stats` method printed out all the statistics. You might try the following sort calls::" msgstr "" -#: ../../library/profile.rst:167 msgid "" "p.sort_stats(SortKey.NAME)\n" "p.print_stats()" msgstr "" -#: ../../library/profile.rst:170 -msgid "" -"The first call will actually sort the list by function name, and the second " -"call will print out the statistics. The following are some interesting " -"calls to experiment with::" +msgid "The first call will actually sort the list by function name, and the second call will print out the statistics. The following are some interesting calls to experiment with::" msgstr "" -#: ../../library/profile.rst:174 msgid "p.sort_stats(SortKey.CUMULATIVE).print_stats(10)" msgstr "" -#: ../../library/profile.rst:176 -msgid "" -"This sorts the profile by cumulative time in a function, and then only " -"prints the ten most significant lines. If you want to understand what " -"algorithms are taking time, the above line is what you would use." +msgid "This sorts the profile by cumulative time in a function, and then only prints the ten most significant lines. If you want to understand what algorithms are taking time, the above line is what you would use." msgstr "" -#: ../../library/profile.rst:180 -msgid "" -"If you were looking to see what functions were looping a lot, and taking a " -"lot of time, you would do::" +msgid "If you were looking to see what functions were looping a lot, and taking a lot of time, you would do::" msgstr "" -#: ../../library/profile.rst:183 msgid "p.sort_stats(SortKey.TIME).print_stats(10)" msgstr "" -#: ../../library/profile.rst:185 -msgid "" -"to sort according to time spent within each function, and then print the " -"statistics for the top ten functions." +msgid "to sort according to time spent within each function, and then print the statistics for the top ten functions." msgstr "" -#: ../../library/profile.rst:188 msgid "You might also try::" msgstr "" -#: ../../library/profile.rst:190 msgid "p.sort_stats(SortKey.FILENAME).print_stats('__init__')" msgstr "" -#: ../../library/profile.rst:192 -msgid "" -"This will sort all the statistics by file name, and then print out " -"statistics for only the class init methods (since they are spelled with " -"``__init__`` in them). As one final example, you could try::" +msgid "This will sort all the statistics by file name, and then print out statistics for only the class init methods (since they are spelled with ``__init__`` in them). As one final example, you could try::" msgstr "" -#: ../../library/profile.rst:196 msgid "p.sort_stats(SortKey.TIME, SortKey.CUMULATIVE).print_stats(.5, 'init')" msgstr "" -#: ../../library/profile.rst:198 -msgid "" -"This line sorts statistics with a primary key of time, and a secondary key " -"of cumulative time, and then prints out some of the statistics. To be " -"specific, the list is first culled down to 50% (re: ``.5``) of its original " -"size, then only lines containing ``init`` are maintained, and that sub-sub-" -"list is printed." +msgid "This line sorts statistics with a primary key of time, and a secondary key of cumulative time, and then prints out some of the statistics. To be specific, the list is first culled down to 50% (re: ``.5``) of its original size, then only lines containing ``init`` are maintained, and that sub-sub-list is printed." msgstr "" -#: ../../library/profile.rst:203 -msgid "" -"If you wondered what functions called the above functions, you could now " -"(``p`` is still sorted according to the last criteria) do::" +msgid "If you wondered what functions called the above functions, you could now (``p`` is still sorted according to the last criteria) do::" msgstr "" -#: ../../library/profile.rst:206 msgid "p.print_callers(.5, 'init')" msgstr "" -#: ../../library/profile.rst:208 msgid "and you would get a list of callers for each of the listed functions." msgstr "" -#: ../../library/profile.rst:210 -msgid "" -"If you want more functionality, you're going to have to read the manual, or " -"guess what the following functions do::" +msgid "If you want more functionality, you're going to have to read the manual, or guess what the following functions do::" msgstr "" -#: ../../library/profile.rst:213 msgid "" "p.print_callees()\n" "p.add('restats')" msgstr "" -#: ../../library/profile.rst:216 -msgid "" -"Invoked as a script, the :mod:`pstats` module is a statistics browser for " -"reading and examining profile dumps. It has a simple line-oriented " -"interface (implemented using :mod:`cmd`) and interactive help." +msgid "Invoked as a script, the :mod:`pstats` module is a statistics browser for reading and examining profile dumps. It has a simple line-oriented interface (implemented using :mod:`cmd`) and interactive help." msgstr "" -#: ../../library/profile.rst:221 msgid ":mod:`profile` and :mod:`!cProfile` Module Reference" msgstr "" -#: ../../library/profile.rst:227 -msgid "" -"Both the :mod:`profile` and :mod:`!cProfile` modules provide the following " -"functions:" +msgid "Both the :mod:`profile` and :mod:`!cProfile` modules provide the following functions:" msgstr "" -#: ../../library/profile.rst:232 -msgid "" -"This function takes a single argument that can be passed to the :func:`exec` " -"function, and an optional file name. In all cases this routine executes::" +msgid "This function takes a single argument that can be passed to the :func:`exec` function, and an optional file name. In all cases this routine executes::" msgstr "" -#: ../../library/profile.rst:235 msgid "exec(command, __main__.__dict__, __main__.__dict__)" msgstr "" -#: ../../library/profile.rst:237 -msgid "" -"and gathers profiling statistics from the execution. If no file name is " -"present, then this function automatically creates a :class:`~pstats.Stats` " -"instance and prints a simple profiling report. If the sort value is " -"specified, it is passed to this :class:`~pstats.Stats` instance to control " -"how the results are sorted." +msgid "and gathers profiling statistics from the execution. If no file name is present, then this function automatically creates a :class:`~pstats.Stats` instance and prints a simple profiling report. If the sort value is specified, it is passed to this :class:`~pstats.Stats` instance to control how the results are sorted." msgstr "" -#: ../../library/profile.rst:245 -msgid "" -"This function is similar to :func:`run`, with added arguments to supply the " -"globals and locals mappings for the *command* string. This routine executes::" +msgid "This function is similar to :func:`run`, with added arguments to supply the globals and locals mappings for the *command* string. This routine executes::" msgstr "" -#: ../../library/profile.rst:249 msgid "exec(command, globals, locals)" msgstr "" -#: ../../library/profile.rst:251 msgid "and gathers profiling statistics as in the :func:`run` function above." msgstr "" -#: ../../library/profile.rst:255 -msgid "" -"This class is normally only used if more precise control over profiling is " -"needed than what the :func:`cProfile.run` function provides." +msgid "This class is normally only used if more precise control over profiling is needed than what the :func:`cProfile.run` function provides." msgstr "" -#: ../../library/profile.rst:258 -msgid "" -"A custom timer can be supplied for measuring how long code takes to run via " -"the *timer* argument. This must be a function that returns a single number " -"representing the current time. If the number is an integer, the *timeunit* " -"specifies a multiplier that specifies the duration of each unit of time. For " -"example, if the timer returns times measured in thousands of seconds, the " -"time unit would be ``.001``." +msgid "A custom timer can be supplied for measuring how long code takes to run via the *timer* argument. This must be a function that returns a single number representing the current time. If the number is an integer, the *timeunit* specifies a multiplier that specifies the duration of each unit of time. For example, if the timer returns times measured in thousands of seconds, the time unit would be ``.001``." msgstr "" -#: ../../library/profile.rst:265 -msgid "" -"Directly using the :class:`Profile` class allows formatting profile results " -"without writing the profile data to a file::" +msgid "Directly using the :class:`Profile` class allows formatting profile results without writing the profile data to a file::" msgstr "" -#: ../../library/profile.rst:268 msgid "" "import cProfile, pstats, io\n" "from pstats import SortKey\n" @@ -450,13 +274,9 @@ msgid "" "print(s.getvalue())" msgstr "" -#: ../../library/profile.rst:280 -msgid "" -"The :class:`Profile` class can also be used as a context manager (supported " -"only in :mod:`!cProfile` module. see :ref:`typecontextmanager`)::" +msgid "The :class:`Profile` class can also be used as a context manager (supported only in :mod:`!cProfile` module. see :ref:`typecontextmanager`)::" msgstr "" -#: ../../library/profile.rst:283 msgid "" "import cProfile\n" "\n" @@ -466,540 +286,270 @@ msgid "" " pr.print_stats()" msgstr "" -#: ../../library/profile.rst:290 msgid "Added context manager support." msgstr "" -#: ../../library/profile.rst:295 msgid "Start collecting profiling data. Only in :mod:`!cProfile`." msgstr "" -#: ../../library/profile.rst:299 msgid "Stop collecting profiling data. Only in :mod:`!cProfile`." msgstr "" -#: ../../library/profile.rst:303 -msgid "" -"Stop collecting profiling data and record the results internally as the " -"current profile." +msgid "Stop collecting profiling data and record the results internally as the current profile." msgstr "" -#: ../../library/profile.rst:308 -msgid "" -"Create a :class:`~pstats.Stats` object based on the current profile and " -"print the results to stdout." +msgid "Create a :class:`~pstats.Stats` object based on the current profile and print the results to stdout." msgstr "" -#: ../../library/profile.rst:311 -msgid "" -"The *sort* parameter specifies the sorting order of the displayed " -"statistics. It accepts a single key or a tuple of keys to enable multi-level " -"sorting, as in :func:`Stats.sort_stats `." +msgid "The *sort* parameter specifies the sorting order of the displayed statistics. It accepts a single key or a tuple of keys to enable multi-level sorting, as in :func:`Stats.sort_stats `." msgstr "" -#: ../../library/profile.rst:315 msgid ":meth:`~Profile.print_stats` now accepts a tuple of keys." msgstr "" -#: ../../library/profile.rst:320 msgid "Write the results of the current profile to *filename*." msgstr "" -#: ../../library/profile.rst:324 msgid "Profile the cmd via :func:`exec`." msgstr "" -#: ../../library/profile.rst:328 -msgid "" -"Profile the cmd via :func:`exec` with the specified global and local " -"environment." +msgid "Profile the cmd via :func:`exec` with the specified global and local environment." msgstr "" -#: ../../library/profile.rst:333 msgid "Profile ``func(*args, **kwargs)``" msgstr "" -#: ../../library/profile.rst:335 -msgid "" -"Note that profiling will only work if the called command/function actually " -"returns. If the interpreter is terminated (e.g. via a :func:`sys.exit` call " -"during the called command/function execution) no profiling results will be " -"printed." +msgid "Note that profiling will only work if the called command/function actually returns. If the interpreter is terminated (e.g. via a :func:`sys.exit` call during the called command/function execution) no profiling results will be printed." msgstr "" -#: ../../library/profile.rst:343 msgid "The :class:`Stats` Class" msgstr "" -#: ../../library/profile.rst:345 -msgid "" -"Analysis of the profiler data is done using the :class:`~pstats.Stats` class." +msgid "Analysis of the profiler data is done using the :class:`~pstats.Stats` class." msgstr "" -#: ../../library/profile.rst:352 -msgid "" -"This class constructor creates an instance of a \"statistics object\" from a " -"*filename* (or list of filenames) or from a :class:`Profile` instance. " -"Output will be printed to the stream specified by *stream*." +msgid "This class constructor creates an instance of a \"statistics object\" from a *filename* (or list of filenames) or from a :class:`Profile` instance. Output will be printed to the stream specified by *stream*." msgstr "" -#: ../../library/profile.rst:356 -msgid "" -"The file selected by the above constructor must have been created by the " -"corresponding version of :mod:`profile` or :mod:`cProfile`. To be specific, " -"there is *no* file compatibility guaranteed with future versions of this " -"profiler, and there is no compatibility with files produced by other " -"profilers, or the same profiler run on a different operating system. If " -"several files are provided, all the statistics for identical functions will " -"be coalesced, so that an overall view of several processes can be considered " -"in a single report. If additional files need to be combined with data in an " -"existing :class:`~pstats.Stats` object, the :meth:`~pstats.Stats.add` method " -"can be used." -msgstr "" - -#: ../../library/profile.rst:367 -msgid "" -"Instead of reading the profile data from a file, a :class:`cProfile.Profile` " -"or :class:`profile.Profile` object can be used as the profile data source." +msgid "The file selected by the above constructor must have been created by the corresponding version of :mod:`profile` or :mod:`cProfile`. To be specific, there is *no* file compatibility guaranteed with future versions of this profiler, and there is no compatibility with files produced by other profilers, or the same profiler run on a different operating system. If several files are provided, all the statistics for identical functions will be coalesced, so that an overall view of several processes can be considered in a single report. If additional files need to be combined with data in an existing :class:`~pstats.Stats` object, the :meth:`~pstats.Stats.add` method can be used." +msgstr "" + +msgid "Instead of reading the profile data from a file, a :class:`cProfile.Profile` or :class:`profile.Profile` object can be used as the profile data source." msgstr "" -#: ../../library/profile.rst:370 msgid ":class:`Stats` objects have the following methods:" msgstr "" -#: ../../library/profile.rst:374 -msgid "" -"This method for the :class:`Stats` class removes all leading path " -"information from file names. It is very useful in reducing the size of the " -"printout to fit within (close to) 80 columns. This method modifies the " -"object, and the stripped information is lost. After performing a strip " -"operation, the object is considered to have its entries in a \"random\" " -"order, as it was just after object initialization and loading. " -"If :meth:`~pstats.Stats.strip_dirs` causes two function names to be " -"indistinguishable (they are on the same line of the same filename, and have " -"the same function name), then the statistics for these two entries are " -"accumulated into a single entry." -msgstr "" - -#: ../../library/profile.rst:388 -msgid "" -"This method of the :class:`Stats` class accumulates additional profiling " -"information into the current profiling object. Its arguments should refer " -"to filenames created by the corresponding version of :func:`profile.run` " -"or :func:`cProfile.run`. Statistics for identically named (re: file, line, " -"name) functions are automatically accumulated into single function " -"statistics." +msgid "This method for the :class:`Stats` class removes all leading path information from file names. It is very useful in reducing the size of the printout to fit within (close to) 80 columns. This method modifies the object, and the stripped information is lost. After performing a strip operation, the object is considered to have its entries in a \"random\" order, as it was just after object initialization and loading. If :meth:`~pstats.Stats.strip_dirs` causes two function names to be indistinguishable (they are on the same line of the same filename, and have the same function name), then the statistics for these two entries are accumulated into a single entry." msgstr "" -#: ../../library/profile.rst:398 -msgid "" -"Save the data loaded into the :class:`Stats` object to a file named " -"*filename*. The file is created if it does not exist, and is overwritten if " -"it already exists. This is equivalent to the method of the same name on " -"the :class:`profile.Profile` and :class:`cProfile.Profile` classes." +msgid "This method of the :class:`Stats` class accumulates additional profiling information into the current profiling object. Its arguments should refer to filenames created by the corresponding version of :func:`profile.run` or :func:`cProfile.run`. Statistics for identically named (re: file, line, name) functions are automatically accumulated into single function statistics." msgstr "" -#: ../../library/profile.rst:406 -msgid "" -"This method modifies the :class:`Stats` object by sorting it according to " -"the supplied criteria. The argument can be either a string or a SortKey " -"enum identifying the basis of a sort (example: ``'time'``, ``'name'``, " -"``SortKey.TIME`` or ``SortKey.NAME``). The SortKey enums argument have " -"advantage over the string argument in that it is more robust and less error " -"prone." +msgid "Save the data loaded into the :class:`Stats` object to a file named *filename*. The file is created if it does not exist, and is overwritten if it already exists. This is equivalent to the method of the same name on the :class:`profile.Profile` and :class:`cProfile.Profile` classes." msgstr "" -#: ../../library/profile.rst:413 -msgid "" -"When more than one key is provided, then additional keys are used as " -"secondary criteria when there is equality in all keys selected before them. " -"For example, ``sort_stats(SortKey.NAME, SortKey.FILE)`` will sort all the " -"entries according to their function name, and resolve all ties (identical " -"function names) by sorting by file name." +msgid "This method modifies the :class:`Stats` object by sorting it according to the supplied criteria. The argument can be either a string or a SortKey enum identifying the basis of a sort (example: ``'time'``, ``'name'``, ``SortKey.TIME`` or ``SortKey.NAME``). The SortKey enums argument have advantage over the string argument in that it is more robust and less error prone." msgstr "" -#: ../../library/profile.rst:419 -msgid "" -"For the string argument, abbreviations can be used for any key names, as " -"long as the abbreviation is unambiguous." +msgid "When more than one key is provided, then additional keys are used as secondary criteria when there is equality in all keys selected before them. For example, ``sort_stats(SortKey.NAME, SortKey.FILE)`` will sort all the entries according to their function name, and resolve all ties (identical function names) by sorting by file name." +msgstr "" + +msgid "For the string argument, abbreviations can be used for any key names, as long as the abbreviation is unambiguous." msgstr "" -#: ../../library/profile.rst:422 msgid "The following are the valid string and SortKey:" msgstr "" -#: ../../library/profile.rst:425 msgid "Valid String Arg" msgstr "" -#: ../../library/profile.rst:425 msgid "Valid enum Arg" msgstr "" -#: ../../library/profile.rst:425 msgid "Meaning" msgstr "" -#: ../../library/profile.rst:427 msgid "``'calls'``" msgstr "" -#: ../../library/profile.rst:427 msgid "SortKey.CALLS" msgstr "" -#: ../../library/profile.rst:427 ../../library/profile.rst:439 msgid "call count" msgstr "" -#: ../../library/profile.rst:429 msgid "``'cumulative'``" msgstr "" -#: ../../library/profile.rst:429 msgid "SortKey.CUMULATIVE" msgstr "" -#: ../../library/profile.rst:429 ../../library/profile.rst:431 msgid "cumulative time" msgstr "" -#: ../../library/profile.rst:431 msgid "``'cumtime'``" msgstr "" -#: ../../library/profile.rst:431 ../../library/profile.rst:433 -#: ../../library/profile.rst:437 ../../library/profile.rst:439 -#: ../../library/profile.rst:453 msgid "N/A" msgstr "" -#: ../../library/profile.rst:433 msgid "``'file'``" msgstr "" -#: ../../library/profile.rst:433 ../../library/profile.rst:435 -#: ../../library/profile.rst:437 msgid "file name" msgstr "" -#: ../../library/profile.rst:435 msgid "``'filename'``" msgstr "" -#: ../../library/profile.rst:435 msgid "SortKey.FILENAME" msgstr "" -#: ../../library/profile.rst:437 msgid "``'module'``" msgstr "" -#: ../../library/profile.rst:439 msgid "``'ncalls'``" msgstr "" -#: ../../library/profile.rst:441 msgid "``'pcalls'``" msgstr "" -#: ../../library/profile.rst:441 msgid "SortKey.PCALLS" msgstr "" -#: ../../library/profile.rst:441 msgid "primitive call count" msgstr "" -#: ../../library/profile.rst:443 msgid "``'line'``" msgstr "" -#: ../../library/profile.rst:443 msgid "SortKey.LINE" msgstr "" -#: ../../library/profile.rst:443 msgid "line number" msgstr "" -#: ../../library/profile.rst:445 msgid "``'name'``" msgstr "" -#: ../../library/profile.rst:445 msgid "SortKey.NAME" msgstr "" -#: ../../library/profile.rst:445 msgid "function name" msgstr "" -#: ../../library/profile.rst:447 msgid "``'nfl'``" msgstr "" -#: ../../library/profile.rst:447 msgid "SortKey.NFL" msgstr "" -#: ../../library/profile.rst:447 msgid "name/file/line" msgstr "" -#: ../../library/profile.rst:449 msgid "``'stdname'``" msgstr "" -#: ../../library/profile.rst:449 msgid "SortKey.STDNAME" msgstr "" -#: ../../library/profile.rst:449 msgid "standard name" msgstr "" -#: ../../library/profile.rst:451 msgid "``'time'``" msgstr "" -#: ../../library/profile.rst:451 msgid "SortKey.TIME" msgstr "" -#: ../../library/profile.rst:451 ../../library/profile.rst:453 msgid "internal time" msgstr "" -#: ../../library/profile.rst:453 msgid "``'tottime'``" msgstr "" -#: ../../library/profile.rst:456 -msgid "" -"Note that all sorts on statistics are in descending order (placing most time " -"consuming items first), where as name, file, and line number searches are in " -"ascending order (alphabetical). The subtle distinction between " -"``SortKey.NFL`` and ``SortKey.STDNAME`` is that the standard name is a sort " -"of the name as printed, which means that the embedded line numbers get " -"compared in an odd way. For example, lines 3, 20, and 40 would (if the file " -"names were the same) appear in the string order 20, 3 and 40. In contrast, " -"``SortKey.NFL`` does a numeric compare of the line numbers. In fact, " -"``sort_stats(SortKey.NFL)`` is the same as ``sort_stats(SortKey.NAME, " -"SortKey.FILENAME, SortKey.LINE)``." -msgstr "" - -#: ../../library/profile.rst:467 -msgid "" -"For backward-compatibility reasons, the numeric arguments ``-1``, ``0``, " -"``1``, and ``2`` are permitted. They are interpreted as ``'stdname'``, " -"``'calls'``, ``'time'``, and ``'cumulative'`` respectively. If this old " -"style format (numeric) is used, only one sort key (the numeric key) will be " -"used, and additional arguments will be silently ignored." +msgid "Note that all sorts on statistics are in descending order (placing most time consuming items first), where as name, file, and line number searches are in ascending order (alphabetical). The subtle distinction between ``SortKey.NFL`` and ``SortKey.STDNAME`` is that the standard name is a sort of the name as printed, which means that the embedded line numbers get compared in an odd way. For example, lines 3, 20, and 40 would (if the file names were the same) appear in the string order 20, 3 and 40. In contrast, ``SortKey.NFL`` does a numeric compare of the line numbers. In fact, ``sort_stats(SortKey.NFL)`` is the same as ``sort_stats(SortKey.NAME, SortKey.FILENAME, SortKey.LINE)``." +msgstr "" + +msgid "For backward-compatibility reasons, the numeric arguments ``-1``, ``0``, ``1``, and ``2`` are permitted. They are interpreted as ``'stdname'``, ``'calls'``, ``'time'``, and ``'cumulative'`` respectively. If this old style format (numeric) is used, only one sort key (the numeric key) will be used, and additional arguments will be silently ignored." msgstr "" -#: ../../library/profile.rst:475 msgid "Added the SortKey enum." msgstr "" -#: ../../library/profile.rst:480 -msgid "" -"This method for the :class:`Stats` class reverses the ordering of the basic " -"list within the object. Note that by default ascending vs descending order " -"is properly selected based on the sort key of choice." +msgid "This method for the :class:`Stats` class reverses the ordering of the basic list within the object. Note that by default ascending vs descending order is properly selected based on the sort key of choice." msgstr "" -#: ../../library/profile.rst:490 -msgid "" -"This method for the :class:`Stats` class prints out a report as described in " -"the :func:`profile.run` definition." +msgid "This method for the :class:`Stats` class prints out a report as described in the :func:`profile.run` definition." msgstr "" -#: ../../library/profile.rst:493 -msgid "" -"The order of the printing is based on the " -"last :meth:`~pstats.Stats.sort_stats` operation done on the object (subject " -"to caveats in :meth:`~pstats.Stats.add` " -"and :meth:`~pstats.Stats.strip_dirs`)." +msgid "The order of the printing is based on the last :meth:`~pstats.Stats.sort_stats` operation done on the object (subject to caveats in :meth:`~pstats.Stats.add` and :meth:`~pstats.Stats.strip_dirs`)." msgstr "" -#: ../../library/profile.rst:498 -msgid "" -"The arguments provided (if any) can be used to limit the list down to the " -"significant entries. Initially, the list is taken to be the complete set of " -"profiled functions. Each restriction is either an integer (to select a " -"count of lines), or a decimal fraction between 0.0 and 1.0 inclusive (to " -"select a percentage of lines), or a string that will be interpreted as a " -"regular expression (to pattern match the standard name that is printed). If " -"several restrictions are provided, then they are applied sequentially. For " -"example::" +msgid "The arguments provided (if any) can be used to limit the list down to the significant entries. Initially, the list is taken to be the complete set of profiled functions. Each restriction is either an integer (to select a count of lines), or a decimal fraction between 0.0 and 1.0 inclusive (to select a percentage of lines), or a string that will be interpreted as a regular expression (to pattern match the standard name that is printed). If several restrictions are provided, then they are applied sequentially. For example::" msgstr "" -#: ../../library/profile.rst:507 msgid "print_stats(.1, 'foo:')" msgstr "" -#: ../../library/profile.rst:509 -msgid "" -"would first limit the printing to first 10% of list, and then only print " -"functions that were part of filename :file:`.\\*foo:`. In contrast, the " -"command::" +msgid "would first limit the printing to first 10% of list, and then only print functions that were part of filename :file:`.\\*foo:`. In contrast, the command::" msgstr "" -#: ../../library/profile.rst:513 msgid "print_stats('foo:', .1)" msgstr "" -#: ../../library/profile.rst:515 -msgid "" -"would limit the list to all functions having file names :file:`.\\*foo:`, " -"and then proceed to only print the first 10% of them." +msgid "would limit the list to all functions having file names :file:`.\\*foo:`, and then proceed to only print the first 10% of them." msgstr "" -#: ../../library/profile.rst:521 -msgid "" -"This method for the :class:`Stats` class prints a list of all functions that " -"called each function in the profiled database. The ordering is identical to " -"that provided by :meth:`~pstats.Stats.print_stats`, and the definition of " -"the restricting argument is also identical. Each caller is reported on its " -"own line. The format differs slightly depending on the profiler that " -"produced the stats:" +msgid "This method for the :class:`Stats` class prints a list of all functions that called each function in the profiled database. The ordering is identical to that provided by :meth:`~pstats.Stats.print_stats`, and the definition of the restricting argument is also identical. Each caller is reported on its own line. The format differs slightly depending on the profiler that produced the stats:" msgstr "" -#: ../../library/profile.rst:528 -msgid "" -"With :mod:`profile`, a number is shown in parentheses after each caller to " -"show how many times this specific call was made. For convenience, a second " -"non-parenthesized number repeats the cumulative time spent in the function " -"at the right." +msgid "With :mod:`profile`, a number is shown in parentheses after each caller to show how many times this specific call was made. For convenience, a second non-parenthesized number repeats the cumulative time spent in the function at the right." msgstr "" -#: ../../library/profile.rst:533 -msgid "" -"With :mod:`cProfile`, each caller is preceded by three numbers: the number " -"of times this specific call was made, and the total and cumulative times " -"spent in the current function while it was invoked by this specific caller." +msgid "With :mod:`cProfile`, each caller is preceded by three numbers: the number of times this specific call was made, and the total and cumulative times spent in the current function while it was invoked by this specific caller." msgstr "" -#: ../../library/profile.rst:541 -msgid "" -"This method for the :class:`Stats` class prints a list of all function that " -"were called by the indicated function. Aside from this reversal of " -"direction of calls (re: called vs was called by), the arguments and ordering " -"are identical to the :meth:`~pstats.Stats.print_callers` method." +msgid "This method for the :class:`Stats` class prints a list of all function that were called by the indicated function. Aside from this reversal of direction of calls (re: called vs was called by), the arguments and ordering are identical to the :meth:`~pstats.Stats.print_callers` method." msgstr "" -#: ../../library/profile.rst:549 -msgid "" -"This method returns an instance of StatsProfile, which contains a mapping of " -"function names to instances of FunctionProfile. Each FunctionProfile " -"instance holds information related to the function's profile such as how " -"long the function took to run, how many times it was called, etc..." +msgid "This method returns an instance of StatsProfile, which contains a mapping of function names to instances of FunctionProfile. Each FunctionProfile instance holds information related to the function's profile such as how long the function took to run, how many times it was called, etc..." msgstr "" -#: ../../library/profile.rst:554 -msgid "" -"Added the following dataclasses: StatsProfile, FunctionProfile. Added the " -"following function: get_stats_profile." +msgid "Added the following dataclasses: StatsProfile, FunctionProfile. Added the following function: get_stats_profile." msgstr "" -#: ../../library/profile.rst:561 msgid "What Is Deterministic Profiling?" msgstr "" -#: ../../library/profile.rst:563 -msgid "" -":dfn:`Deterministic profiling` is meant to reflect the fact that all " -"*function call*, *function return*, and *exception* events are monitored, " -"and precise timings are made for the intervals between these events (during " -"which time the user's code is executing). In contrast, :dfn:`statistical " -"profiling` (which is not done by this module) randomly samples the effective " -"instruction pointer, and deduces where time is being spent. The latter " -"technique traditionally involves less overhead (as the code does not need to " -"be instrumented), but provides only relative indications of where time is " -"being spent." -msgstr "" - -#: ../../library/profile.rst:572 -msgid "" -"In Python, since there is an interpreter active during execution, the " -"presence of instrumented code is not required in order to do deterministic " -"profiling. Python automatically provides a :dfn:`hook` (optional callback) " -"for each event. In addition, the interpreted nature of Python tends to add " -"so much overhead to execution, that deterministic profiling tends to only " -"add small processing overhead in typical applications. The result is that " -"deterministic profiling is not that expensive, yet provides extensive run " -"time statistics about the execution of a Python program." +msgid ":dfn:`Deterministic profiling` is meant to reflect the fact that all *function call*, *function return*, and *exception* events are monitored, and precise timings are made for the intervals between these events (during which time the user's code is executing). In contrast, :dfn:`statistical profiling` (which is not done by this module) randomly samples the effective instruction pointer, and deduces where time is being spent. The latter technique traditionally involves less overhead (as the code does not need to be instrumented), but provides only relative indications of where time is being spent." msgstr "" -#: ../../library/profile.rst:581 -msgid "" -"Call count statistics can be used to identify bugs in code (surprising " -"counts), and to identify possible inline-expansion points (high call " -"counts). Internal time statistics can be used to identify \"hot loops\" " -"that should be carefully optimized. Cumulative time statistics should be " -"used to identify high level errors in the selection of algorithms. Note " -"that the unusual handling of cumulative times in this profiler allows " -"statistics for recursive implementations of algorithms to be directly " -"compared to iterative implementations." +msgid "In Python, since there is an interpreter active during execution, the presence of instrumented code is not required in order to do deterministic profiling. Python automatically provides a :dfn:`hook` (optional callback) for each event. In addition, the interpreted nature of Python tends to add so much overhead to execution, that deterministic profiling tends to only add small processing overhead in typical applications. The result is that deterministic profiling is not that expensive, yet provides extensive run time statistics about the execution of a Python program." +msgstr "" + +msgid "Call count statistics can be used to identify bugs in code (surprising counts), and to identify possible inline-expansion points (high call counts). Internal time statistics can be used to identify \"hot loops\" that should be carefully optimized. Cumulative time statistics should be used to identify high level errors in the selection of algorithms. Note that the unusual handling of cumulative times in this profiler allows statistics for recursive implementations of algorithms to be directly compared to iterative implementations." msgstr "" -#: ../../library/profile.rst:594 msgid "Limitations" msgstr "" -#: ../../library/profile.rst:596 -msgid "" -"One limitation has to do with accuracy of timing information. There is a " -"fundamental problem with deterministic profilers involving accuracy. The " -"most obvious restriction is that the underlying \"clock\" is only ticking at " -"a rate (typically) of about .001 seconds. Hence no measurements will be " -"more accurate than the underlying clock. If enough measurements are taken, " -"then the \"error\" will tend to average out. Unfortunately, removing this " -"first error induces a second source of error." +msgid "One limitation has to do with accuracy of timing information. There is a fundamental problem with deterministic profilers involving accuracy. The most obvious restriction is that the underlying \"clock\" is only ticking at a rate (typically) of about .001 seconds. Hence no measurements will be more accurate than the underlying clock. If enough measurements are taken, then the \"error\" will tend to average out. Unfortunately, removing this first error induces a second source of error." +msgstr "" + +msgid "The second problem is that it \"takes a while\" from when an event is dispatched until the profiler's call to get the time actually *gets* the state of the clock. Similarly, there is a certain lag when exiting the profiler event handler from the time that the clock's value was obtained (and then squirreled away), until the user's code is once again executing. As a result, functions that are called many times, or call many functions, will typically accumulate this error. The error that accumulates in this fashion is typically less than the accuracy of the clock (less than one clock tick), but it *can* accumulate and become very significant." +msgstr "" + +msgid "The problem is more important with :mod:`profile` than with the lower-overhead :mod:`cProfile`. For this reason, :mod:`profile` provides a means of calibrating itself for a given platform so that this error can be probabilistically (on the average) removed. After the profiler is calibrated, it will be more accurate (in a least square sense), but it will sometimes produce negative numbers (when call counts are exceptionally low, and the gods of probability work against you :-). ) Do *not* be alarmed by negative numbers in the profile. They should *only* appear if you have calibrated your profiler, and the results are actually better than without calibration." msgstr "" -#: ../../library/profile.rst:604 -msgid "" -"The second problem is that it \"takes a while\" from when an event is " -"dispatched until the profiler's call to get the time actually *gets* the " -"state of the clock. Similarly, there is a certain lag when exiting the " -"profiler event handler from the time that the clock's value was obtained " -"(and then squirreled away), until the user's code is once again executing. " -"As a result, functions that are called many times, or call many functions, " -"will typically accumulate this error. The error that accumulates in this " -"fashion is typically less than the accuracy of the clock (less than one " -"clock tick), but it *can* accumulate and become very significant." -msgstr "" - -#: ../../library/profile.rst:614 -msgid "" -"The problem is more important with :mod:`profile` than with the lower-" -"overhead :mod:`cProfile`. For this reason, :mod:`profile` provides a means " -"of calibrating itself for a given platform so that this error can be " -"probabilistically (on the average) removed. After the profiler is " -"calibrated, it will be more accurate (in a least square sense), but it will " -"sometimes produce negative numbers (when call counts are exceptionally low, " -"and the gods of probability work against you :-). ) Do *not* be alarmed by " -"negative numbers in the profile. They should *only* appear if you have " -"calibrated your profiler, and the results are actually better than without " -"calibration." -msgstr "" - -#: ../../library/profile.rst:628 msgid "Calibration" msgstr "" -#: ../../library/profile.rst:630 -msgid "" -"The profiler of the :mod:`profile` module subtracts a constant from each " -"event handling time to compensate for the overhead of calling the time " -"function, and socking away the results. By default, the constant is 0. The " -"following procedure can be used to obtain a better constant for a given " -"platform (see :ref:`profile-limitations`). ::" +msgid "The profiler of the :mod:`profile` module subtracts a constant from each event handling time to compensate for the overhead of calling the time function, and socking away the results. By default, the constant is 0. The following procedure can be used to obtain a better constant for a given platform (see :ref:`profile-limitations`). ::" msgstr "" -#: ../../library/profile.rst:636 msgid "" "import profile\n" "pr = profile.Profile()\n" @@ -1007,29 +557,15 @@ msgid "" " print(pr.calibrate(10000))" msgstr "" -#: ../../library/profile.rst:641 -msgid "" -"The method executes the number of Python calls given by the argument, " -"directly and again under the profiler, measuring the time for both. It then " -"computes the hidden overhead per profiler event, and returns that as a " -"float. For example, on a 1.8Ghz Intel Core i5 running macOS, and using " -"Python's time.process_time() as the timer, the magical number is about " -"4.04e-6." +msgid "The method executes the number of Python calls given by the argument, directly and again under the profiler, measuring the time for both. It then computes the hidden overhead per profiler event, and returns that as a float. For example, on a 1.8Ghz Intel Core i5 running macOS, and using Python's time.process_time() as the timer, the magical number is about 4.04e-6." msgstr "" -#: ../../library/profile.rst:647 -msgid "" -"The object of this exercise is to get a fairly consistent result. If your " -"computer is *very* fast, or your timer function has poor resolution, you " -"might have to pass 100000, or even 1000000, to get consistent results." +msgid "The object of this exercise is to get a fairly consistent result. If your computer is *very* fast, or your timer function has poor resolution, you might have to pass 100000, or even 1000000, to get consistent results." msgstr "" -#: ../../library/profile.rst:651 -msgid "" -"When you have a consistent answer, there are three ways you can use it::" +msgid "When you have a consistent answer, there are three ways you can use it::" msgstr "" -#: ../../library/profile.rst:653 msgid "" "import profile\n" "\n" @@ -1044,96 +580,47 @@ msgid "" "pr = profile.Profile(bias=your_computed_bias)" msgstr "" -#: ../../library/profile.rst:665 -msgid "" -"If you have a choice, you are better off choosing a smaller constant, and " -"then your results will \"less often\" show up as negative in profile " -"statistics." +msgid "If you have a choice, you are better off choosing a smaller constant, and then your results will \"less often\" show up as negative in profile statistics." msgstr "" -#: ../../library/profile.rst:671 msgid "Using a custom timer" msgstr "" -#: ../../library/profile.rst:673 -msgid "" -"If you want to change how current time is determined (for example, to force " -"use of wall-clock time or elapsed process time), pass the timing function " -"you want to the :class:`Profile` class constructor::" +msgid "If you want to change how current time is determined (for example, to force use of wall-clock time or elapsed process time), pass the timing function you want to the :class:`Profile` class constructor::" msgstr "" -#: ../../library/profile.rst:677 msgid "pr = profile.Profile(your_time_func)" msgstr "" -#: ../../library/profile.rst:679 -msgid "" -"The resulting profiler will then call ``your_time_func``. Depending on " -"whether you are using :class:`profile.Profile` or :class:`cProfile.Profile`, " -"``your_time_func``'s return value will be interpreted differently:" +msgid "The resulting profiler will then call ``your_time_func``. Depending on whether you are using :class:`profile.Profile` or :class:`cProfile.Profile`, ``your_time_func``'s return value will be interpreted differently:" msgstr "" -#: ../../library/profile.rst:683 msgid ":class:`profile.Profile`" msgstr "" -#: ../../library/profile.rst:684 -msgid "" -"``your_time_func`` should return a single number, or a list of numbers whose " -"sum is the current time (like what :func:`os.times` returns). If the " -"function returns a single time number, or the list of returned numbers has " -"length 2, then you will get an especially fast version of the dispatch " -"routine." +msgid "``your_time_func`` should return a single number, or a list of numbers whose sum is the current time (like what :func:`os.times` returns). If the function returns a single time number, or the list of returned numbers has length 2, then you will get an especially fast version of the dispatch routine." msgstr "" -#: ../../library/profile.rst:690 -msgid "" -"Be warned that you should calibrate the profiler class for the timer " -"function that you choose (see :ref:`profile-calibration`). For most " -"machines, a timer that returns a lone integer value will provide the best " -"results in terms of low overhead during profiling. (:func:`os.times` is " -"*pretty* bad, as it returns a tuple of floating-point values). If you want " -"to substitute a better timer in the cleanest fashion, derive a class and " -"hardwire a replacement dispatch method that best handles your timer call, " -"along with the appropriate calibration constant." +msgid "Be warned that you should calibrate the profiler class for the timer function that you choose (see :ref:`profile-calibration`). For most machines, a timer that returns a lone integer value will provide the best results in terms of low overhead during profiling. (:func:`os.times` is *pretty* bad, as it returns a tuple of floating-point values). If you want to substitute a better timer in the cleanest fashion, derive a class and hardwire a replacement dispatch method that best handles your timer call, along with the appropriate calibration constant." msgstr "" -#: ../../library/profile.rst:699 msgid ":class:`cProfile.Profile`" msgstr "" -#: ../../library/profile.rst:700 -msgid "" -"``your_time_func`` should return a single number. If it returns integers, " -"you can also invoke the class constructor with a second argument specifying " -"the real duration of one unit of time. For example, if " -"``your_integer_time_func`` returns times measured in thousands of seconds, " -"you would construct the :class:`Profile` instance as follows::" +msgid "``your_time_func`` should return a single number. If it returns integers, you can also invoke the class constructor with a second argument specifying the real duration of one unit of time. For example, if ``your_integer_time_func`` returns times measured in thousands of seconds, you would construct the :class:`Profile` instance as follows::" msgstr "" -#: ../../library/profile.rst:706 msgid "pr = cProfile.Profile(your_integer_time_func, 0.001)" msgstr "" -#: ../../library/profile.rst:708 -msgid "" -"As the :class:`cProfile.Profile` class cannot be calibrated, custom timer " -"functions should be used with care and should be as fast as possible. For " -"the best results with a custom timer, it might be necessary to hard-code it " -"in the C source of the internal :mod:`!_lsprof` module." +msgid "As the :class:`cProfile.Profile` class cannot be calibrated, custom timer functions should be used with care and should be as fast as possible. For the best results with a custom timer, it might be necessary to hard-code it in the C source of the internal :mod:`!_lsprof` module." msgstr "" -#: ../../library/profile.rst:713 -msgid "" -"Python 3.3 adds several new functions in :mod:`time` that can be used to " -"make precise measurements of process or wall-clock time. For example, " -"see :func:`time.perf_counter`." +msgid "Python 3.3 adds several new functions in :mod:`time` that can be used to make precise measurements of process or wall-clock time. For example, see :func:`time.perf_counter`." msgstr "" -#: ../../library/profile.rst:16 msgid "deterministic profiling" msgstr "" -#: ../../library/profile.rst:16 msgid "profiling, deterministic" msgstr "" diff --git a/library/pty.po b/library/pty.po index 6448b428..1d147b7a 100644 --- a/library/pty.po +++ b/library/pty.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:11+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,136 +24,66 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/pty.rst:2 msgid ":mod:`!pty` --- Pseudo-terminal utilities" msgstr "" -#: ../../library/pty.rst:10 msgid "**Source code:** :source:`Lib/pty.py`" msgstr "" -#: ../../library/pty.rst:14 -msgid "" -"The :mod:`!pty` module defines operations for handling the pseudo-terminal " -"concept: starting another process and being able to write to and read from " -"its controlling terminal programmatically." +msgid "The :mod:`!pty` module defines operations for handling the pseudo-terminal concept: starting another process and being able to write to and read from its controlling terminal programmatically." msgstr "" -#: ../../library/pty.rst:18 msgid "Availability" msgstr "" -#: ../../library/pty.rst:20 -msgid "" -"Pseudo-terminal handling is highly platform dependent. This code is mainly " -"tested on Linux, FreeBSD, and macOS (it is supposed to work on other POSIX " -"platforms but it's not been thoroughly tested)." +msgid "Pseudo-terminal handling is highly platform dependent. This code is mainly tested on Linux, FreeBSD, and macOS (it is supposed to work on other POSIX platforms but it's not been thoroughly tested)." msgstr "" -#: ../../library/pty.rst:24 msgid "The :mod:`!pty` module defines the following functions:" msgstr "" -#: ../../library/pty.rst:29 -msgid "" -"Fork. Connect the child's controlling terminal to a pseudo-terminal. Return " -"value is ``(pid, fd)``. Note that the child gets *pid* 0, and the *fd* is " -"*invalid*. The parent's return value is the *pid* of the child, and *fd* is " -"a file descriptor connected to the child's controlling terminal (and also to " -"the child's standard input and output)." +msgid "Fork. Connect the child's controlling terminal to a pseudo-terminal. Return value is ``(pid, fd)``. Note that the child gets *pid* 0, and the *fd* is *invalid*. The parent's return value is the *pid* of the child, and *fd* is a file descriptor connected to the child's controlling terminal (and also to the child's standard input and output)." msgstr "" -#: ../../library/pty.rst:35 -msgid "" -"On macOS the use of this function is unsafe when mixed with using higher-" -"level system APIs, and that includes using :mod:`urllib.request`." +msgid "On macOS the use of this function is unsafe when mixed with using higher-level system APIs, and that includes using :mod:`urllib.request`." msgstr "" -#: ../../library/pty.rst:41 -msgid "" -"Open a new pseudo-terminal pair, using :func:`os.openpty` if possible, or " -"emulation code for generic Unix systems. Return a pair of file descriptors " -"``(master, slave)``, for the master and the slave end, respectively." +msgid "Open a new pseudo-terminal pair, using :func:`os.openpty` if possible, or emulation code for generic Unix systems. Return a pair of file descriptors ``(master, slave)``, for the master and the slave end, respectively." msgstr "" -#: ../../library/pty.rst:48 -msgid "" -"Spawn a process, and connect its controlling terminal with the current " -"process's standard io. This is often used to baffle programs which insist on " -"reading from the controlling terminal. It is expected that the process " -"spawned behind the pty will eventually terminate, and when it does *spawn* " -"will return." +msgid "Spawn a process, and connect its controlling terminal with the current process's standard io. This is often used to baffle programs which insist on reading from the controlling terminal. It is expected that the process spawned behind the pty will eventually terminate, and when it does *spawn* will return." msgstr "" -#: ../../library/pty.rst:54 -msgid "" -"A loop copies STDIN of the current process to the child and data received " -"from the child to STDOUT of the current process. It is not signaled to the " -"child if STDIN of the current process closes down." +msgid "A loop copies STDIN of the current process to the child and data received from the child to STDOUT of the current process. It is not signaled to the child if STDIN of the current process closes down." msgstr "" -#: ../../library/pty.rst:58 -msgid "" -"The functions *master_read* and *stdin_read* are passed a file descriptor " -"which they should read from, and they should always return a byte string. In " -"order to force spawn to return before the child process exits an empty byte " -"array should be returned to signal end of file." +msgid "The functions *master_read* and *stdin_read* are passed a file descriptor which they should read from, and they should always return a byte string. In order to force spawn to return before the child process exits an empty byte array should be returned to signal end of file." msgstr "" -#: ../../library/pty.rst:63 -msgid "" -"The default implementation for both functions will read and return up to " -"1024 bytes each time the function is called. The *master_read* callback is " -"passed the pseudoterminal’s master file descriptor to read output from the " -"child process, and *stdin_read* is passed file descriptor 0, to read from " -"the parent process's standard input." +msgid "The default implementation for both functions will read and return up to 1024 bytes each time the function is called. The *master_read* callback is passed the pseudoterminal’s master file descriptor to read output from the child process, and *stdin_read* is passed file descriptor 0, to read from the parent process's standard input." msgstr "" -#: ../../library/pty.rst:69 -msgid "" -"Returning an empty byte string from either callback is interpreted as an end-" -"of-file (EOF) condition, and that callback will not be called after that. If " -"*stdin_read* signals EOF the controlling terminal can no longer communicate " -"with the parent process OR the child process. Unless the child process will " -"quit without any input, *spawn* will then loop forever. If *master_read* " -"signals EOF the same behavior results (on linux at least)." +msgid "Returning an empty byte string from either callback is interpreted as an end-of-file (EOF) condition, and that callback will not be called after that. If *stdin_read* signals EOF the controlling terminal can no longer communicate with the parent process OR the child process. Unless the child process will quit without any input, *spawn* will then loop forever. If *master_read* signals EOF the same behavior results (on linux at least)." msgstr "" -#: ../../library/pty.rst:76 -msgid "" -"Return the exit status value from :func:`os.waitpid` on the child process." +msgid "Return the exit status value from :func:`os.waitpid` on the child process." msgstr "" -#: ../../library/pty.rst:78 -msgid "" -":func:`os.waitstatus_to_exitcode` can be used to convert the exit status " -"into an exit code." +msgid ":func:`os.waitstatus_to_exitcode` can be used to convert the exit status into an exit code." msgstr "" -#: ../../library/pty.rst:81 -msgid "" -"Raises an :ref:`auditing event ` ``pty.spawn`` with argument " -"``argv``." +msgid "Raises an :ref:`auditing event ` ``pty.spawn`` with argument ``argv``." msgstr "" -#: ../../library/pty.rst:83 -msgid "" -":func:`spawn` now returns the status value from :func:`os.waitpid` on the " -"child process." +msgid ":func:`spawn` now returns the status value from :func:`os.waitpid` on the child process." msgstr "" -#: ../../library/pty.rst:88 msgid "Example" msgstr "" -#: ../../library/pty.rst:92 -msgid "" -"The following program acts like the Unix command :manpage:`script(1)`, using " -"a pseudo-terminal to record all input and output of a terminal session in a " -"\"typescript\". ::" +msgid "The following program acts like the Unix command :manpage:`script(1)`, using a pseudo-terminal to record all input and output of a terminal session in a \"typescript\". ::" msgstr "" -#: ../../library/pty.rst:96 msgid "" "import argparse\n" "import os\n" @@ -167,8 +97,7 @@ msgid "" "parser.add_argument('filename', nargs='?', default='typescript')\n" "options = parser.parse_args()\n" "\n" -"shell = sys.executable if options.use_python else os.environ.get('SHELL', " -"'sh')\n" +"shell = sys.executable if options.use_python else os.environ.get('SHELL', 'sh')\n" "filename = options.filename\n" "mode = 'ab' if options.append else 'wb'\n" "\n" diff --git a/library/pwd.po b/library/pwd.po index c898106c..e7ae4444 100644 --- a/library/pwd.po +++ b/library/pwd.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:11+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,161 +24,110 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/pwd.rst:2 msgid ":mod:`!pwd` --- The password database" msgstr "" -#: ../../library/pwd.rst:9 -msgid "" -"This module provides access to the Unix user account and password database. " -"It is available on all Unix versions." +msgid "This module provides access to the Unix user account and password database. It is available on all Unix versions." msgstr "" -#: ../../library/pwd.rst:12 msgid "Availability" msgstr "" -#: ../../library/pwd.rst:14 -msgid "" -"Password database entries are reported as a tuple-like object, whose " -"attributes correspond to the members of the ``passwd`` structure (Attribute " -"field below, see ````):" +msgid "Password database entries are reported as a tuple-like object, whose attributes correspond to the members of the ``passwd`` structure (Attribute field below, see ````):" msgstr "" -#: ../../library/pwd.rst:19 msgid "Index" msgstr "" -#: ../../library/pwd.rst:19 msgid "Attribute" msgstr "" -#: ../../library/pwd.rst:19 msgid "Meaning" msgstr "" -#: ../../library/pwd.rst:21 msgid "0" msgstr "" -#: ../../library/pwd.rst:21 msgid "``pw_name``" msgstr "" -#: ../../library/pwd.rst:21 msgid "Login name" msgstr "" -#: ../../library/pwd.rst:23 msgid "1" msgstr "" -#: ../../library/pwd.rst:23 msgid "``pw_passwd``" msgstr "" -#: ../../library/pwd.rst:23 msgid "Optional encrypted password" msgstr "" -#: ../../library/pwd.rst:25 msgid "2" msgstr "" -#: ../../library/pwd.rst:25 msgid "``pw_uid``" msgstr "" -#: ../../library/pwd.rst:25 msgid "Numerical user ID" msgstr "" -#: ../../library/pwd.rst:27 msgid "3" msgstr "" -#: ../../library/pwd.rst:27 msgid "``pw_gid``" msgstr "" -#: ../../library/pwd.rst:27 msgid "Numerical group ID" msgstr "" -#: ../../library/pwd.rst:29 msgid "4" msgstr "" -#: ../../library/pwd.rst:29 msgid "``pw_gecos``" msgstr "" -#: ../../library/pwd.rst:29 msgid "User name or comment field" msgstr "" -#: ../../library/pwd.rst:31 msgid "5" msgstr "" -#: ../../library/pwd.rst:31 msgid "``pw_dir``" msgstr "" -#: ../../library/pwd.rst:31 msgid "User home directory" msgstr "" -#: ../../library/pwd.rst:33 msgid "6" msgstr "" -#: ../../library/pwd.rst:33 msgid "``pw_shell``" msgstr "" -#: ../../library/pwd.rst:33 msgid "User command interpreter" msgstr "" -#: ../../library/pwd.rst:36 -msgid "" -"The uid and gid items are integers, all others are strings. :exc:`KeyError` " -"is raised if the entry asked for cannot be found." +msgid "The uid and gid items are integers, all others are strings. :exc:`KeyError` is raised if the entry asked for cannot be found." msgstr "" -#: ../../library/pwd.rst:41 -msgid "" -"In traditional Unix the field ``pw_passwd`` usually contains a password " -"encrypted with a DES derived algorithm. However most modern unices use a " -"so-called *shadow password* system. On those unices the *pw_passwd* field " -"only contains an asterisk (``'*'``) or the letter ``'x'`` where the " -"encrypted password is stored in a file :file:`/etc/shadow` which is not " -"world readable. Whether the *pw_passwd* field contains anything useful is " -"system-dependent." +msgid "In traditional Unix the field ``pw_passwd`` usually contains a password encrypted with a DES derived algorithm. However most modern unices use a so-called *shadow password* system. On those unices the *pw_passwd* field only contains an asterisk (``'*'``) or the letter ``'x'`` where the encrypted password is stored in a file :file:`/etc/shadow` which is not world readable. Whether the *pw_passwd* field contains anything useful is system-dependent." msgstr "" -#: ../../library/pwd.rst:49 msgid "It defines the following items:" msgstr "" -#: ../../library/pwd.rst:54 msgid "Return the password database entry for the given numeric user ID." msgstr "" -#: ../../library/pwd.rst:59 msgid "Return the password database entry for the given user name." msgstr "" -#: ../../library/pwd.rst:64 -msgid "" -"Return a list of all available password database entries, in arbitrary order." +msgid "Return a list of all available password database entries, in arbitrary order." msgstr "" -#: ../../library/pwd.rst:69 msgid "Module :mod:`grp`" msgstr "" -#: ../../library/pwd.rst:70 msgid "An interface to the group database, similar to this." msgstr "" diff --git a/library/py_compile.po b/library/py_compile.po index 623ca38c..d4ef4dfd 100644 --- a/library/py_compile.po +++ b/library/py_compile.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:11+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,199 +23,92 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/py_compile.rst:2 msgid ":mod:`!py_compile` --- Compile Python source files" msgstr "" -#: ../../library/py_compile.rst:10 msgid "**Source code:** :source:`Lib/py_compile.py`" msgstr "" -#: ../../library/py_compile.rst:16 -msgid "" -"The :mod:`!py_compile` module provides a function to generate a byte-code " -"file from a source file, and another function used when the module source " -"file is invoked as a script." +msgid "The :mod:`!py_compile` module provides a function to generate a byte-code file from a source file, and another function used when the module source file is invoked as a script." msgstr "" -#: ../../library/py_compile.rst:20 -msgid "" -"Though not often needed, this function can be useful when installing modules " -"for shared use, especially if some of the users may not have permission to " -"write the byte-code cache files in the directory containing the source code." +msgid "Though not often needed, this function can be useful when installing modules for shared use, especially if some of the users may not have permission to write the byte-code cache files in the directory containing the source code." msgstr "" -#: ../../library/py_compile.rst:27 -msgid "" -"Exception raised when an error occurs while attempting to compile the file." +msgid "Exception raised when an error occurs while attempting to compile the file." msgstr "" -#: ../../library/py_compile.rst:32 -msgid "" -"Compile a source file to byte-code and write out the byte-code cache file. " -"The source code is loaded from the file named *file*. The byte-code is " -"written to *cfile*, which defaults to the :pep:`3147`/:pep:`488` path, " -"ending in ``.pyc``. For example, if *file* is ``/foo/bar/baz.py`` *cfile* " -"will default to ``/foo/bar/__pycache__/baz.cpython-32.pyc`` for Python 3.2. " -"If *dfile* is specified, it is used instead of *file* as the name of the " -"source file from which source lines are obtained for display in exception " -"tracebacks. If *doraise* is true, a :exc:`PyCompileError` is raised when an " -"error is encountered while compiling *file*. If *doraise* is false (the " -"default), an error string is written to ``sys.stderr``, but no exception is " -"raised. This function returns the path to byte-compiled file, i.e. whatever " -"*cfile* value was used." -msgstr "" - -#: ../../library/py_compile.rst:46 -msgid "" -"The *doraise* and *quiet* arguments determine how errors are handled while " -"compiling file. If *quiet* is 0 or 1, and *doraise* is false, the default " -"behaviour is enabled: an error string is written to ``sys.stderr``, and the " -"function returns ``None`` instead of a path. If *doraise* is true, " -"a :exc:`PyCompileError` is raised instead. However if *quiet* is 2, no " -"message is written, and *doraise* has no effect." +msgid "Compile a source file to byte-code and write out the byte-code cache file. The source code is loaded from the file named *file*. The byte-code is written to *cfile*, which defaults to the :pep:`3147`/:pep:`488` path, ending in ``.pyc``. For example, if *file* is ``/foo/bar/baz.py`` *cfile* will default to ``/foo/bar/__pycache__/baz.cpython-32.pyc`` for Python 3.2. If *dfile* is specified, it is used instead of *file* as the name of the source file from which source lines are obtained for display in exception tracebacks. If *doraise* is true, a :exc:`PyCompileError` is raised when an error is encountered while compiling *file*. If *doraise* is false (the default), an error string is written to ``sys.stderr``, but no exception is raised. This function returns the path to byte-compiled file, i.e. whatever *cfile* value was used." msgstr "" -#: ../../library/py_compile.rst:53 -msgid "" -"If the path that *cfile* becomes (either explicitly specified or computed) " -"is a symlink or non-regular file, :exc:`FileExistsError` will be raised. " -"This is to act as a warning that import will turn those paths into regular " -"files if it is allowed to write byte-compiled files to those paths. This is " -"a side-effect of import using file renaming to place the final byte-compiled " -"file into place to prevent concurrent file writing issues." +msgid "The *doraise* and *quiet* arguments determine how errors are handled while compiling file. If *quiet* is 0 or 1, and *doraise* is false, the default behaviour is enabled: an error string is written to ``sys.stderr``, and the function returns ``None`` instead of a path. If *doraise* is true, a :exc:`PyCompileError` is raised instead. However if *quiet* is 2, no message is written, and *doraise* has no effect." msgstr "" -#: ../../library/py_compile.rst:60 -msgid "" -"*optimize* controls the optimization level and is passed to the built-" -"in :func:`compile` function. The default of ``-1`` selects the optimization " -"level of the current interpreter." +msgid "If the path that *cfile* becomes (either explicitly specified or computed) is a symlink or non-regular file, :exc:`FileExistsError` will be raised. This is to act as a warning that import will turn those paths into regular files if it is allowed to write byte-compiled files to those paths. This is a side-effect of import using file renaming to place the final byte-compiled file into place to prevent concurrent file writing issues." msgstr "" -#: ../../library/py_compile.rst:64 -msgid "" -"*invalidation_mode* should be a member of the :class:`PycInvalidationMode` " -"enum and controls how the generated bytecode cache is invalidated at " -"runtime. The default is :attr:`PycInvalidationMode.CHECKED_HASH` if " -"the :envvar:`SOURCE_DATE_EPOCH` environment variable is set, otherwise the " -"default is :attr:`PycInvalidationMode.TIMESTAMP`." +msgid "*optimize* controls the optimization level and is passed to the built-in :func:`compile` function. The default of ``-1`` selects the optimization level of the current interpreter." msgstr "" -#: ../../library/py_compile.rst:70 -msgid "" -"Changed default value of *cfile* to be :PEP:`3147`-compliant. Previous " -"default was *file* + ``'c'`` (``'o'`` if optimization was enabled). Also " -"added the *optimize* parameter." +msgid "*invalidation_mode* should be a member of the :class:`PycInvalidationMode` enum and controls how the generated bytecode cache is invalidated at runtime. The default is :attr:`PycInvalidationMode.CHECKED_HASH` if the :envvar:`SOURCE_DATE_EPOCH` environment variable is set, otherwise the default is :attr:`PycInvalidationMode.TIMESTAMP`." msgstr "" -#: ../../library/py_compile.rst:75 -msgid "" -"Changed code to use :mod:`importlib` for the byte-code cache file writing. " -"This means file creation/writing semantics now match what :mod:`importlib` " -"does, e.g. permissions, write-and-move semantics, etc. Also added the caveat " -"that :exc:`FileExistsError` is raised if *cfile* is a symlink or non-regular " -"file." +msgid "Changed default value of *cfile* to be :PEP:`3147`-compliant. Previous default was *file* + ``'c'`` (``'o'`` if optimization was enabled). Also added the *optimize* parameter." msgstr "" -#: ../../library/py_compile.rst:82 -msgid "" -"The *invalidation_mode* parameter was added as specified in :pep:`552`. If " -"the :envvar:`SOURCE_DATE_EPOCH` environment variable is set, " -"*invalidation_mode* will be forced " -"to :attr:`PycInvalidationMode.CHECKED_HASH`." +msgid "Changed code to use :mod:`importlib` for the byte-code cache file writing. This means file creation/writing semantics now match what :mod:`importlib` does, e.g. permissions, write-and-move semantics, etc. Also added the caveat that :exc:`FileExistsError` is raised if *cfile* is a symlink or non-regular file." msgstr "" -#: ../../library/py_compile.rst:88 -msgid "" -"The :envvar:`SOURCE_DATE_EPOCH` environment variable no longer overrides the " -"value of the *invalidation_mode* argument, and determines its default value " -"instead." +msgid "The *invalidation_mode* parameter was added as specified in :pep:`552`. If the :envvar:`SOURCE_DATE_EPOCH` environment variable is set, *invalidation_mode* will be forced to :attr:`PycInvalidationMode.CHECKED_HASH`." +msgstr "" + +msgid "The :envvar:`SOURCE_DATE_EPOCH` environment variable no longer overrides the value of the *invalidation_mode* argument, and determines its default value instead." msgstr "" -#: ../../library/py_compile.rst:93 msgid "The *quiet* parameter was added." msgstr "" -#: ../../library/py_compile.rst:99 -msgid "" -"An enumeration of possible methods the interpreter can use to determine " -"whether a bytecode file is up to date with a source file. The ``.pyc`` file " -"indicates the desired invalidation mode in its header. See :ref:`pyc-" -"invalidation` for more information on how Python invalidates ``.pyc`` files " -"at runtime." +msgid "An enumeration of possible methods the interpreter can use to determine whether a bytecode file is up to date with a source file. The ``.pyc`` file indicates the desired invalidation mode in its header. See :ref:`pyc-invalidation` for more information on how Python invalidates ``.pyc`` files at runtime." msgstr "" -#: ../../library/py_compile.rst:109 -msgid "" -"The ``.pyc`` file includes the timestamp and size of the source file, which " -"Python will compare against the metadata of the source file at runtime to " -"determine if the ``.pyc`` file needs to be regenerated." +msgid "The ``.pyc`` file includes the timestamp and size of the source file, which Python will compare against the metadata of the source file at runtime to determine if the ``.pyc`` file needs to be regenerated." msgstr "" -#: ../../library/py_compile.rst:115 -msgid "" -"The ``.pyc`` file includes a hash of the source file content, which Python " -"will compare against the source at runtime to determine if the ``.pyc`` file " -"needs to be regenerated." +msgid "The ``.pyc`` file includes a hash of the source file content, which Python will compare against the source at runtime to determine if the ``.pyc`` file needs to be regenerated." msgstr "" -#: ../../library/py_compile.rst:121 -msgid "" -"Like :attr:`CHECKED_HASH`, the ``.pyc`` file includes a hash of the source " -"file content. However, Python will at runtime assume the ``.pyc`` file is up " -"to date and not validate the ``.pyc`` against the source file at all." +msgid "Like :attr:`CHECKED_HASH`, the ``.pyc`` file includes a hash of the source file content. However, Python will at runtime assume the ``.pyc`` file is up to date and not validate the ``.pyc`` against the source file at all." msgstr "" -#: ../../library/py_compile.rst:125 -msgid "" -"This option is useful when the ``.pycs`` are kept up to date by some system " -"external to Python like a build system." +msgid "This option is useful when the ``.pycs`` are kept up to date by some system external to Python like a build system." msgstr "" -#: ../../library/py_compile.rst:131 msgid "Command-Line Interface" msgstr "" -#: ../../library/py_compile.rst:133 -msgid "" -"This module can be invoked as a script to compile several source files. The " -"files named in *filenames* are compiled and the resulting bytecode is cached " -"in the normal manner. This program does not search a directory structure to " -"locate source files; it only compiles files named explicitly. The exit " -"status is nonzero if one of the files could not be compiled." +msgid "This module can be invoked as a script to compile several source files. The files named in *filenames* are compiled and the resulting bytecode is cached in the normal manner. This program does not search a directory structure to locate source files; it only compiles files named explicitly. The exit status is nonzero if one of the files could not be compiled." msgstr "" -#: ../../library/py_compile.rst:145 -msgid "" -"Positional arguments are files to compile. If ``-`` is the only parameter, " -"the list of files is taken from standard input." +msgid "Positional arguments are files to compile. If ``-`` is the only parameter, the list of files is taken from standard input." msgstr "" -#: ../../library/py_compile.rst:150 msgid "Suppress errors output." msgstr "" -#: ../../library/py_compile.rst:152 msgid "Added support for ``-``." msgstr "" -#: ../../library/py_compile.rst:155 msgid "Added support for :option:`-q`." msgstr "" -#: ../../library/py_compile.rst:161 msgid "Module :mod:`compileall`" msgstr "" -#: ../../library/py_compile.rst:162 msgid "Utilities to compile all Python source files in a directory tree." msgstr "" -#: ../../library/py_compile.rst:12 msgid "file" msgstr "" -#: ../../library/py_compile.rst:12 msgid "byte-code" msgstr "" diff --git a/library/pyclbr.po b/library/pyclbr.po index 835821d3..535234be 100644 --- a/library/pyclbr.po +++ b/library/pyclbr.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:11+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,150 +23,80 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/pyclbr.rst:2 msgid ":mod:`!pyclbr` --- Python module browser support" msgstr "" -#: ../../library/pyclbr.rst:9 msgid "**Source code:** :source:`Lib/pyclbr.py`" msgstr "" -#: ../../library/pyclbr.rst:13 -msgid "" -"The :mod:`!pyclbr` module provides limited information about the functions, " -"classes, and methods defined in a Python-coded module. The information is " -"sufficient to implement a module browser. The information is extracted from " -"the Python source code rather than by importing the module, so this module " -"is safe to use with untrusted code. This restriction makes it impossible to " -"use this module with modules not implemented in Python, including all " -"standard and optional extension modules." +msgid "The :mod:`!pyclbr` module provides limited information about the functions, classes, and methods defined in a Python-coded module. The information is sufficient to implement a module browser. The information is extracted from the Python source code rather than by importing the module, so this module is safe to use with untrusted code. This restriction makes it impossible to use this module with modules not implemented in Python, including all standard and optional extension modules." msgstr "" -#: ../../library/pyclbr.rst:25 -msgid "" -"Return a dictionary mapping module-level class names to class descriptors. " -"If possible, descriptors for imported base classes are included. Parameter " -"*module* is a string with the name of the module to read; it may be the name " -"of a module within a package. If given, *path* is a sequence of directory " -"paths prepended to ``sys.path``, which is used to locate the module source " -"code." +msgid "Return a dictionary mapping module-level class names to class descriptors. If possible, descriptors for imported base classes are included. Parameter *module* is a string with the name of the module to read; it may be the name of a module within a package. If given, *path* is a sequence of directory paths prepended to ``sys.path``, which is used to locate the module source code." msgstr "" -#: ../../library/pyclbr.rst:32 -msgid "" -"This function is the original interface and is only kept for back " -"compatibility. It returns a filtered version of the following." +msgid "This function is the original interface and is only kept for back compatibility. It returns a filtered version of the following." msgstr "" -#: ../../library/pyclbr.rst:38 -msgid "" -"Return a dictionary-based tree containing a function or class descriptors " -"for each function and class defined in the module with a ``def`` or " -"``class`` statement. The returned dictionary maps module-level function and " -"class names to their descriptors. Nested objects are entered into the " -"children dictionary of their parent. As with readmodule, *module* names the " -"module to be read and *path* is prepended to sys.path. If the module being " -"read is a package, the returned dictionary has a key ``'__path__'`` whose " -"value is a list containing the package search path." +msgid "Return a dictionary-based tree containing a function or class descriptors for each function and class defined in the module with a ``def`` or ``class`` statement. The returned dictionary maps module-level function and class names to their descriptors. Nested objects are entered into the children dictionary of their parent. As with readmodule, *module* names the module to be read and *path* is prepended to sys.path. If the module being read is a package, the returned dictionary has a key ``'__path__'`` whose value is a list containing the package search path." msgstr "" -#: ../../library/pyclbr.rst:48 -msgid "" -"Descriptors for nested definitions. They are accessed through the new " -"children attribute. Each has a new parent attribute." +msgid "Descriptors for nested definitions. They are accessed through the new children attribute. Each has a new parent attribute." msgstr "" -#: ../../library/pyclbr.rst:52 -msgid "" -"The descriptors returned by these functions are instances of Function and " -"Class classes. Users are not expected to create instances of these classes." +msgid "The descriptors returned by these functions are instances of Function and Class classes. Users are not expected to create instances of these classes." msgstr "" -#: ../../library/pyclbr.rst:60 msgid "Function Objects" msgstr "" -#: ../../library/pyclbr.rst:64 -msgid "" -"Class :class:`!Function` instances describe functions defined by def " -"statements. They have the following attributes:" +msgid "Class :class:`!Function` instances describe functions defined by def statements. They have the following attributes:" msgstr "" -#: ../../library/pyclbr.rst:70 msgid "Name of the file in which the function is defined." msgstr "" -#: ../../library/pyclbr.rst:75 msgid "The name of the module defining the function described." msgstr "" -#: ../../library/pyclbr.rst:80 msgid "The name of the function." msgstr "" -#: ../../library/pyclbr.rst:85 ../../library/pyclbr.rst:140 msgid "The line number in the file where the definition starts." msgstr "" -#: ../../library/pyclbr.rst:90 msgid "For top-level functions, ``None``. For nested functions, the parent." msgstr "" -#: ../../library/pyclbr.rst:97 -msgid "" -"A :class:`dictionary ` mapping names to descriptors for nested " -"functions and classes." +msgid "A :class:`dictionary ` mapping names to descriptors for nested functions and classes." msgstr "" -#: ../../library/pyclbr.rst:105 -msgid "" -"``True`` for functions that are defined with the :keyword:`async ` prefix, ``False`` otherwise." +msgid "``True`` for functions that are defined with the :keyword:`async ` prefix, ``False`` otherwise." msgstr "" -#: ../../library/pyclbr.rst:114 msgid "Class Objects" msgstr "" -#: ../../library/pyclbr.rst:118 -msgid "" -"Class :class:`!Class` instances describe classes defined by class " -"statements. They have the same attributes as :class:`Functions ` " -"and two more." +msgid "Class :class:`!Class` instances describe classes defined by class statements. They have the same attributes as :class:`Functions ` and two more." msgstr "" -#: ../../library/pyclbr.rst:125 msgid "Name of the file in which the class is defined." msgstr "" -#: ../../library/pyclbr.rst:130 msgid "The name of the module defining the class described." msgstr "" -#: ../../library/pyclbr.rst:135 msgid "The name of the class." msgstr "" -#: ../../library/pyclbr.rst:145 msgid "For top-level classes, ``None``. For nested classes, the parent." msgstr "" -#: ../../library/pyclbr.rst:152 -msgid "" -"A dictionary mapping names to descriptors for nested functions and classes." +msgid "A dictionary mapping names to descriptors for nested functions and classes." msgstr "" -#: ../../library/pyclbr.rst:160 -msgid "" -"A list of :class:`!Class` objects which describe the immediate base classes " -"of the class being described. Classes which are named as superclasses but " -"which are not discoverable by :func:`readmodule_ex` are listed as a string " -"with the class name instead of as :class:`!Class` objects." +msgid "A list of :class:`!Class` objects which describe the immediate base classes of the class being described. Classes which are named as superclasses but which are not discoverable by :func:`readmodule_ex` are listed as a string with the class name instead of as :class:`!Class` objects." msgstr "" -#: ../../library/pyclbr.rst:169 -msgid "" -"A :class:`dictionary ` mapping method names to line numbers. This can " -"be derived from the newer :attr:`children` dictionary, but remains for back-" -"compatibility." +msgid "A :class:`dictionary ` mapping method names to line numbers. This can be derived from the newer :attr:`children` dictionary, but remains for back-compatibility." msgstr "" diff --git a/library/pydoc.po b/library/pydoc.po index c5526c7e..d09c9097 100644 --- a/library/pydoc.po +++ b/library/pydoc.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:12+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -22,171 +22,77 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/pydoc.rst:2 msgid ":mod:`!pydoc` --- Documentation generator and online help system" msgstr "" -#: ../../library/pydoc.rst:10 msgid "**Source code:** :source:`Lib/pydoc.py`" msgstr "" -#: ../../library/pydoc.rst:19 -msgid "" -"The :mod:`!pydoc` module automatically generates documentation from Python " -"modules. The documentation can be presented as pages of text on the " -"console, served to a web browser, or saved to HTML files." +msgid "The :mod:`!pydoc` module automatically generates documentation from Python modules. The documentation can be presented as pages of text on the console, served to a web browser, or saved to HTML files." msgstr "" -#: ../../library/pydoc.rst:23 -msgid "" -"For modules, classes, functions and methods, the displayed documentation is " -"derived from the docstring (i.e. the :attr:`~definition.__doc__` attribute) " -"of the object, and recursively of its documentable members. If there is no " -"docstring, :mod:`!pydoc` tries to obtain a description from the block of " -"comment lines just above the definition of the class, function or method in " -"the source file, or at the top of the module " -"(see :func:`inspect.getcomments`)." +msgid "For modules, classes, functions and methods, the displayed documentation is derived from the docstring (i.e. the :attr:`~definition.__doc__` attribute) of the object, and recursively of its documentable members. If there is no docstring, :mod:`!pydoc` tries to obtain a description from the block of comment lines just above the definition of the class, function or method in the source file, or at the top of the module (see :func:`inspect.getcomments`)." msgstr "" -#: ../../library/pydoc.rst:30 -msgid "" -"The built-in function :func:`help` invokes the online help system in the " -"interactive interpreter, which uses :mod:`!pydoc` to generate its " -"documentation as text on the console. The same text documentation can also " -"be viewed from outside the Python interpreter by running :program:`pydoc` as " -"a script at the operating system's command prompt. For example, running ::" +msgid "The built-in function :func:`help` invokes the online help system in the interactive interpreter, which uses :mod:`!pydoc` to generate its documentation as text on the console. The same text documentation can also be viewed from outside the Python interpreter by running :program:`pydoc` as a script at the operating system's command prompt. For example, running ::" msgstr "" -#: ../../library/pydoc.rst:36 msgid "python -m pydoc sys" msgstr "" -#: ../../library/pydoc.rst:38 -msgid "" -"at a shell prompt will display documentation on the :mod:`sys` module, in a " -"style similar to the manual pages shown by the Unix :program:`man` command. " -"The argument to :program:`pydoc` can be the name of a function, module, or " -"package, or a dotted reference to a class, method, or function within a " -"module or module in a package. If the argument to :program:`pydoc` looks " -"like a path (that is, it contains the path separator for your operating " -"system, such as a slash in Unix), and refers to an existing Python source " -"file, then documentation is produced for that file." +msgid "at a shell prompt will display documentation on the :mod:`sys` module, in a style similar to the manual pages shown by the Unix :program:`man` command. The argument to :program:`pydoc` can be the name of a function, module, or package, or a dotted reference to a class, method, or function within a module or module in a package. If the argument to :program:`pydoc` looks like a path (that is, it contains the path separator for your operating system, such as a slash in Unix), and refers to an existing Python source file, then documentation is produced for that file." msgstr "" -#: ../../library/pydoc.rst:49 -msgid "" -"In order to find objects and their documentation, :mod:`!pydoc` imports the " -"module(s) to be documented. Therefore, any code on module level will be " -"executed on that occasion. Use an ``if __name__ == '__main__':`` guard to " -"only execute code when a file is invoked as a script and not just imported." +msgid "In order to find objects and their documentation, :mod:`!pydoc` imports the module(s) to be documented. Therefore, any code on module level will be executed on that occasion. Use an ``if __name__ == '__main__':`` guard to only execute code when a file is invoked as a script and not just imported." msgstr "" -#: ../../library/pydoc.rst:54 -msgid "" -"When printing output to the console, :program:`pydoc` attempts to paginate " -"the output for easier reading. If either the :envvar:`MANPAGER` or " -"the :envvar:`PAGER` environment variable is set, :program:`pydoc` will use " -"its value as a pagination program. When both are set, :envvar:`MANPAGER` is " -"used." +msgid "When printing output to the console, :program:`pydoc` attempts to paginate the output for easier reading. If either the :envvar:`MANPAGER` or the :envvar:`PAGER` environment variable is set, :program:`pydoc` will use its value as a pagination program. When both are set, :envvar:`MANPAGER` is used." msgstr "" -#: ../../library/pydoc.rst:59 -msgid "" -"Specifying a ``-w`` flag before the argument will cause HTML documentation " -"to be written out to a file in the current directory, instead of displaying " -"text on the console." +msgid "Specifying a ``-w`` flag before the argument will cause HTML documentation to be written out to a file in the current directory, instead of displaying text on the console." msgstr "" -#: ../../library/pydoc.rst:63 -msgid "" -"Specifying a ``-k`` flag before the argument will search the synopsis lines " -"of all available modules for the keyword given as the argument, again in a " -"manner similar to the Unix :program:`man` command. The synopsis line of a " -"module is the first line of its documentation string." +msgid "Specifying a ``-k`` flag before the argument will search the synopsis lines of all available modules for the keyword given as the argument, again in a manner similar to the Unix :program:`man` command. The synopsis line of a module is the first line of its documentation string." msgstr "" -#: ../../library/pydoc.rst:68 -msgid "" -"You can also use :program:`pydoc` to start an HTTP server on the local " -"machine that will serve documentation to visiting web " -"browsers. :program:`python -m pydoc -p 1234` will start a HTTP server on " -"port 1234, allowing you to browse the documentation at ``http://" -"localhost:1234/`` in your preferred web browser. Specifying ``0`` as the " -"port number will select an arbitrary unused port." +msgid "You can also use :program:`pydoc` to start an HTTP server on the local machine that will serve documentation to visiting web browsers. :program:`python -m pydoc -p 1234` will start a HTTP server on port 1234, allowing you to browse the documentation at ``http://localhost:1234/`` in your preferred web browser. Specifying ``0`` as the port number will select an arbitrary unused port." msgstr "" -#: ../../library/pydoc.rst:76 -msgid "" -"The :mod:`!pydoc` HTTP server is intended for local use during development " -"and is not suitable for production use." +msgid "The :mod:`!pydoc` HTTP server is intended for local use during development and is not suitable for production use." msgstr "" -#: ../../library/pydoc.rst:79 -msgid "" -":program:`python -m pydoc -n ` will start the server listening at " -"the given hostname. By default the hostname is 'localhost' but if you want " -"the server to be reached from other machines, you may want to change the " -"host name that the server responds to. During development this is " -"especially useful if you want to run pydoc from within a container." +msgid ":program:`python -m pydoc -n ` will start the server listening at the given hostname. By default the hostname is 'localhost' but if you want the server to be reached from other machines, you may want to change the host name that the server responds to. During development this is especially useful if you want to run pydoc from within a container." msgstr "" -#: ../../library/pydoc.rst:85 -msgid "" -":program:`python -m pydoc -b` will start the server and additionally open a " -"web browser to a module index page. Each served page has a navigation bar " -"at the top where you can *Get* help on an individual item, *Search* all " -"modules with a keyword in their synopsis line, and go to the *Module index*, " -"*Topics* and *Keywords* pages." +msgid ":program:`python -m pydoc -b` will start the server and additionally open a web browser to a module index page. Each served page has a navigation bar at the top where you can *Get* help on an individual item, *Search* all modules with a keyword in their synopsis line, and go to the *Module index*, *Topics* and *Keywords* pages." msgstr "" -#: ../../library/pydoc.rst:91 -msgid "" -"When :program:`pydoc` generates documentation, it uses the current " -"environment and path to locate modules. Thus, invoking :program:`pydoc " -"spam` documents precisely the version of the module you would get if you " -"started the Python interpreter and typed ``import spam``." +msgid "When :program:`pydoc` generates documentation, it uses the current environment and path to locate modules. Thus, invoking :program:`pydoc spam` documents precisely the version of the module you would get if you started the Python interpreter and typed ``import spam``." msgstr "" -#: ../../library/pydoc.rst:96 -msgid "" -"Module docs for core modules are assumed to reside in ``https://" -"docs.python.org/X.Y/library/`` where ``X`` and ``Y`` are the major and minor " -"version numbers of the Python interpreter. This can be overridden by " -"setting the :envvar:`!PYTHONDOCS` environment variable to a different URL or " -"to a local directory containing the Library Reference Manual pages." +msgid "Module docs for core modules are assumed to reside in ``https://docs.python.org/X.Y/library/`` where ``X`` and ``Y`` are the major and minor version numbers of the Python interpreter. This can be overridden by setting the :envvar:`!PYTHONDOCS` environment variable to a different URL or to a local directory containing the Library Reference Manual pages." msgstr "" -#: ../../library/pydoc.rst:103 msgid "Added the ``-b`` option." msgstr "" -#: ../../library/pydoc.rst:106 msgid "The ``-g`` command line option was removed." msgstr "" -#: ../../library/pydoc.rst:109 -msgid "" -":mod:`!pydoc` now uses :func:`inspect.signature` rather " -"than :func:`inspect.getfullargspec` to extract signature information from " -"callables." +msgid ":mod:`!pydoc` now uses :func:`inspect.signature` rather than :func:`inspect.getfullargspec` to extract signature information from callables." msgstr "" -#: ../../library/pydoc.rst:114 msgid "Added the ``-n`` option." msgstr "" -#: ../../library/pydoc.rst:12 msgid "documentation" msgstr "" -#: ../../library/pydoc.rst:12 msgid "generation" msgstr "" -#: ../../library/pydoc.rst:12 msgid "online" msgstr "" -#: ../../library/pydoc.rst:12 msgid "help" msgstr "" diff --git a/library/pyexpat.po b/library/pyexpat.po index a9fa00e1..7aa2334c 100644 --- a/library/pyexpat.po +++ b/library/pyexpat.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:12+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,100 +24,48 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/pyexpat.rst:2 msgid ":mod:`!xml.parsers.expat` --- Fast XML parsing using Expat" msgstr "" -#: ../../library/pyexpat.rst:21 -msgid "" -"If you need to parse untrusted or unauthenticated data, see :ref:`xml-" -"security`." +msgid "If you need to parse untrusted or unauthenticated data, see :ref:`xml-security`." msgstr "" -#: ../../library/pyexpat.rst:27 -msgid "" -"The :mod:`!xml.parsers.expat` module is a Python interface to the Expat non-" -"validating XML parser. The module provides a single extension " -"type, :class:`xmlparser`, that represents the current state of an XML " -"parser. After an :class:`xmlparser` object has been created, various " -"attributes of the object can be set to handler functions. When an XML " -"document is then fed to the parser, the handler functions are called for the " -"character data and markup in the XML document." +msgid "The :mod:`!xml.parsers.expat` module is a Python interface to the Expat non-validating XML parser. The module provides a single extension type, :class:`xmlparser`, that represents the current state of an XML parser. After an :class:`xmlparser` object has been created, various attributes of the object can be set to handler functions. When an XML document is then fed to the parser, the handler functions are called for the character data and markup in the XML document." msgstr "" -#: ../../library/pyexpat.rst:37 -msgid "" -"This module uses the :mod:`pyexpat` module to provide access to the Expat " -"parser. Direct use of the :mod:`pyexpat` module is deprecated." +msgid "This module uses the :mod:`pyexpat` module to provide access to the Expat parser. Direct use of the :mod:`pyexpat` module is deprecated." msgstr "" -#: ../../library/pyexpat.rst:40 msgid "This module provides one exception and one type object:" msgstr "" -#: ../../library/pyexpat.rst:45 -msgid "" -"The exception raised when Expat reports an error. See " -"section :ref:`expaterror-objects` for more information on interpreting Expat " -"errors." +msgid "The exception raised when Expat reports an error. See section :ref:`expaterror-objects` for more information on interpreting Expat errors." msgstr "" -#: ../../library/pyexpat.rst:51 msgid "Alias for :exc:`ExpatError`." msgstr "" -#: ../../library/pyexpat.rst:56 msgid "The type of the return values from the :func:`ParserCreate` function." msgstr "" -#: ../../library/pyexpat.rst:58 msgid "The :mod:`!xml.parsers.expat` module contains two functions:" msgstr "" -#: ../../library/pyexpat.rst:63 msgid "Returns an explanatory string for a given error number *errno*." msgstr "" -#: ../../library/pyexpat.rst:68 -msgid "" -"Creates and returns a new :class:`xmlparser` object. *encoding*, if " -"specified, must be a string naming the encoding used by the XML data. " -"Expat doesn't support as many encodings as Python does, and its repertoire " -"of encodings can't be extended; it supports UTF-8, UTF-16, ISO-8859-1 " -"(Latin1), and ASCII. If *encoding* [1]_ is given it will override the " -"implicit or explicit encoding of the document." +msgid "Creates and returns a new :class:`xmlparser` object. *encoding*, if specified, must be a string naming the encoding used by the XML data. Expat doesn't support as many encodings as Python does, and its repertoire of encodings can't be extended; it supports UTF-8, UTF-16, ISO-8859-1 (Latin1), and ASCII. If *encoding* [1]_ is given it will override the implicit or explicit encoding of the document." msgstr "" -#: ../../library/pyexpat.rst:77 -msgid "" -"Parsers created through :func:`!ParserCreate` are called \"root\" parsers, " -"in the sense that they do not have any parent parser attached. Non-root " -"parsers are created by :meth:`parser.ExternalEntityParserCreate " -"`." +msgid "Parsers created through :func:`!ParserCreate` are called \"root\" parsers, in the sense that they do not have any parent parser attached. Non-root parsers are created by :meth:`parser.ExternalEntityParserCreate `." msgstr "" -#: ../../library/pyexpat.rst:82 -msgid "" -"Expat can optionally do XML namespace processing for you, enabled by " -"providing a value for *namespace_separator*. The value must be a one-" -"character string; a :exc:`ValueError` will be raised if the string has an " -"illegal length (``None`` is considered the same as omission). When " -"namespace processing is enabled, element type names and attribute names that " -"belong to a namespace will be expanded. The element name passed to the " -"element handlers :attr:`StartElementHandler` and :attr:`EndElementHandler` " -"will be the concatenation of the namespace URI, the namespace separator " -"character, and the local part of the name. If the namespace separator is a " -"zero byte (``chr(0)``) then the namespace URI and the local part will be " -"concatenated without any separator." -msgstr "" - -#: ../../library/pyexpat.rst:94 -msgid "" -"For example, if *namespace_separator* is set to a space character (``' '``) " -"and the following document is parsed:" +msgid "Expat can optionally do XML namespace processing for you, enabled by providing a value for *namespace_separator*. The value must be a one-character string; a :exc:`ValueError` will be raised if the string has an illegal length (``None`` is considered the same as omission). When namespace processing is enabled, element type names and attribute names that belong to a namespace will be expanded. The element name passed to the element handlers :attr:`StartElementHandler` and :attr:`EndElementHandler` will be the concatenation of the namespace URI, the namespace separator character, and the local part of the name. If the namespace separator is a zero byte (``chr(0)``) then the namespace URI and the local part will be concatenated without any separator." +msgstr "" + +msgid "For example, if *namespace_separator* is set to a space character (``' '``) and the following document is parsed:" msgstr "" -#: ../../library/pyexpat.rst:97 msgid "" "\n" "" msgstr "" -#: ../../library/pyexpat.rst:106 -msgid "" -":attr:`StartElementHandler` will receive the following strings for each " -"element::" +msgid ":attr:`StartElementHandler` will receive the following strings for each element::" msgstr "" -#: ../../library/pyexpat.rst:109 msgid "" "http://default-namespace.org/ root\n" "http://www.python.org/ns/ elem1\n" "elem2" msgstr "" -#: ../../library/pyexpat.rst:113 -msgid "" -"Due to limitations in the ``Expat`` library used by :mod:`pyexpat`, " -"the :class:`xmlparser` instance returned can only be used to parse a single " -"XML document. Call ``ParserCreate`` for each document to provide unique " -"parser instances." +msgid "Due to limitations in the ``Expat`` library used by :mod:`pyexpat`, the :class:`xmlparser` instance returned can only be used to parse a single XML document. Call ``ParserCreate`` for each document to provide unique parser instances." msgstr "" -#: ../../library/pyexpat.rst:121 msgid "`The Expat XML Parser `_" msgstr "" -#: ../../library/pyexpat.rst:122 msgid "Home page of the Expat project." msgstr "" -#: ../../library/pyexpat.rst:128 msgid "XMLParser Objects" msgstr "" -#: ../../library/pyexpat.rst:130 msgid ":class:`xmlparser` objects have the following methods:" msgstr "" -#: ../../library/pyexpat.rst:135 -msgid "" -"Parses the contents of the string *data*, calling the appropriate handler " -"functions to process the parsed data. *isfinal* must be true on the final " -"call to this method; it allows the parsing of a single file in fragments, " -"not the submission of multiple files. *data* can be the empty string at any " -"time." +msgid "Parses the contents of the string *data*, calling the appropriate handler functions to process the parsed data. *isfinal* must be true on the final call to this method; it allows the parsing of a single file in fragments, not the submission of multiple files. *data* can be the empty string at any time." msgstr "" -#: ../../library/pyexpat.rst:144 -msgid "" -"Parse XML data reading from the object *file*. *file* only needs to provide " -"the ``read(nbytes)`` method, returning the empty string when there's no more " -"data." +msgid "Parse XML data reading from the object *file*. *file* only needs to provide the ``read(nbytes)`` method, returning the empty string when there's no more data." msgstr "" -#: ../../library/pyexpat.rst:151 -msgid "" -"Sets the base to be used for resolving relative URIs in system identifiers " -"in declarations. Resolving relative identifiers is left to the application: " -"this value will be passed through as the *base* argument to " -"the :func:`ExternalEntityRefHandler`, :func:`NotationDeclHandler`, " -"and :func:`UnparsedEntityDeclHandler` functions." +msgid "Sets the base to be used for resolving relative URIs in system identifiers in declarations. Resolving relative identifiers is left to the application: this value will be passed through as the *base* argument to the :func:`ExternalEntityRefHandler`, :func:`NotationDeclHandler`, and :func:`UnparsedEntityDeclHandler` functions." msgstr "" -#: ../../library/pyexpat.rst:160 -msgid "" -"Returns a string containing the base set by a previous call " -"to :meth:`SetBase`, or ``None`` if :meth:`SetBase` hasn't been called." +msgid "Returns a string containing the base set by a previous call to :meth:`SetBase`, or ``None`` if :meth:`SetBase` hasn't been called." msgstr "" -#: ../../library/pyexpat.rst:166 -msgid "" -"Returns the input data that generated the current event as a string. The " -"data is in the encoding of the entity which contains the text. When called " -"while an event handler is not active, the return value is ``None``." +msgid "Returns the input data that generated the current event as a string. The data is in the encoding of the entity which contains the text. When called while an event handler is not active, the return value is ``None``." msgstr "" -#: ../../library/pyexpat.rst:173 -msgid "" -"Create a \"child\" parser which can be used to parse an external parsed " -"entity referred to by content parsed by the parent parser. The *context* " -"parameter should be the string passed to " -"the :meth:`ExternalEntityRefHandler` handler function, described below. The " -"child parser is created with the :attr:`ordered_attributes` " -"and :attr:`specified_attributes` set to the values of this parser." +msgid "Create a \"child\" parser which can be used to parse an external parsed entity referred to by content parsed by the parent parser. The *context* parameter should be the string passed to the :meth:`ExternalEntityRefHandler` handler function, described below. The child parser is created with the :attr:`ordered_attributes` and :attr:`specified_attributes` set to the values of this parser." msgstr "" -#: ../../library/pyexpat.rst:182 -msgid "" -"Control parsing of parameter entities (including the external DTD subset). " -"Possible *flag* values " -"are :const:`XML_PARAM_ENTITY_PARSING_NEVER`, :const:`XML_PARAM_ENTITY_PARSING_UNLESS_STANDALONE` " -"and :const:`XML_PARAM_ENTITY_PARSING_ALWAYS`. Return true if setting the " -"flag was successful." +msgid "Control parsing of parameter entities (including the external DTD subset). Possible *flag* values are :const:`XML_PARAM_ENTITY_PARSING_NEVER`, :const:`XML_PARAM_ENTITY_PARSING_UNLESS_STANDALONE` and :const:`XML_PARAM_ENTITY_PARSING_ALWAYS`. Return true if setting the flag was successful." msgstr "" -#: ../../library/pyexpat.rst:190 -msgid "" -"Calling this with a true value for *flag* (the default) will cause Expat to " -"call the :attr:`ExternalEntityRefHandler` with :const:`None` for all " -"arguments to allow an alternate DTD to be loaded. If the document does not " -"contain a document type declaration, the :attr:`ExternalEntityRefHandler` " -"will still be called, but the :attr:`StartDoctypeDeclHandler` " -"and :attr:`EndDoctypeDeclHandler` will not be called." +msgid "Calling this with a true value for *flag* (the default) will cause Expat to call the :attr:`ExternalEntityRefHandler` with :const:`None` for all arguments to allow an alternate DTD to be loaded. If the document does not contain a document type declaration, the :attr:`ExternalEntityRefHandler` will still be called, but the :attr:`StartDoctypeDeclHandler` and :attr:`EndDoctypeDeclHandler` will not be called." msgstr "" -#: ../../library/pyexpat.rst:197 -msgid "" -"Passing a false value for *flag* will cancel a previous call that passed a " -"true value, but otherwise has no effect." +msgid "Passing a false value for *flag* will cancel a previous call that passed a true value, but otherwise has no effect." msgstr "" -#: ../../library/pyexpat.rst:200 -msgid "" -"This method can only be called before the :meth:`Parse` or :meth:`ParseFile` " -"methods are called; calling it after either of those have been called " -"causes :exc:`ExpatError` to be raised with the :attr:`code` attribute set to " -"``errors.codes[errors.XML_ERROR_CANT_CHANGE_FEATURE_ONCE_PARSING]``." +msgid "This method can only be called before the :meth:`Parse` or :meth:`ParseFile` methods are called; calling it after either of those have been called causes :exc:`ExpatError` to be raised with the :attr:`code` attribute set to ``errors.codes[errors.XML_ERROR_CANT_CHANGE_FEATURE_ONCE_PARSING]``." msgstr "" -#: ../../library/pyexpat.rst:209 -msgid "" -"Calling ``SetReparseDeferralEnabled(False)`` has security implications, as " -"detailed below; please make sure to understand these consequences prior to " -"using the ``SetReparseDeferralEnabled`` method." +msgid "Calling ``SetReparseDeferralEnabled(False)`` has security implications, as detailed below; please make sure to understand these consequences prior to using the ``SetReparseDeferralEnabled`` method." msgstr "" -#: ../../library/pyexpat.rst:213 -msgid "" -"Expat 2.6.0 introduced a security mechanism called \"reparse deferral\" " -"where instead of causing denial of service through quadratic runtime from " -"reparsing large tokens, reparsing of unfinished tokens is now delayed by " -"default until a sufficient amount of input is reached. Due to this delay, " -"registered handlers may — depending of the sizing of input chunks pushed to " -"Expat — no longer be called right after pushing new input to the parser. " -"Where immediate feedback and taking over responsibility of protecting " -"against denial of service from large tokens are both wanted, calling " -"``SetReparseDeferralEnabled(False)`` disables reparse deferral for the " -"current Expat parser instance, temporarily or altogether. Calling " -"``SetReparseDeferralEnabled(True)`` allows re-enabling reparse deferral." -msgstr "" - -#: ../../library/pyexpat.rst:226 -msgid "" -"Note that :meth:`SetReparseDeferralEnabled` has been backported to some " -"prior releases of CPython as a security fix. Check for availability " -"of :meth:`SetReparseDeferralEnabled` using :func:`hasattr` if used in code " -"running across a variety of Python versions." +msgid "Expat 2.6.0 introduced a security mechanism called \"reparse deferral\" where instead of causing denial of service through quadratic runtime from reparsing large tokens, reparsing of unfinished tokens is now delayed by default until a sufficient amount of input is reached. Due to this delay, registered handlers may — depending of the sizing of input chunks pushed to Expat — no longer be called right after pushing new input to the parser. Where immediate feedback and taking over responsibility of protecting against denial of service from large tokens are both wanted, calling ``SetReparseDeferralEnabled(False)`` disables reparse deferral for the current Expat parser instance, temporarily or altogether. Calling ``SetReparseDeferralEnabled(True)`` allows re-enabling reparse deferral." msgstr "" -#: ../../library/pyexpat.rst:235 -msgid "" -"Returns whether reparse deferral is currently enabled for the given Expat " -"parser instance." +msgid "Note that :meth:`SetReparseDeferralEnabled` has been backported to some prior releases of CPython as a security fix. Check for availability of :meth:`SetReparseDeferralEnabled` using :func:`hasattr` if used in code running across a variety of Python versions." msgstr "" -#: ../../library/pyexpat.rst:241 -msgid "" -":class:`!xmlparser` objects have the following methods to tune protections " -"against some common XML vulnerabilities." +msgid "Returns whether reparse deferral is currently enabled for the given Expat parser instance." msgstr "" -#: ../../library/pyexpat.rst:246 -msgid "" -"Sets the number of output bytes needed to activate protection against " -"`billion laughs`_ attacks." +msgid ":class:`!xmlparser` objects have the following methods to tune protections against some common XML vulnerabilities." msgstr "" -#: ../../library/pyexpat.rst:249 -msgid "" -"The number of output bytes includes amplification from entity expansion and " -"reading DTD files." +msgid "Sets the number of output bytes needed to activate protection against `billion laughs`_ attacks." msgstr "" -#: ../../library/pyexpat.rst:252 -msgid "" -"Parser objects usually have a protection activation threshold of 8 MiB, but " -"the actual default value depends on the underlying Expat library." +msgid "The number of output bytes includes amplification from entity expansion and reading DTD files." msgstr "" -#: ../../library/pyexpat.rst:255 ../../library/pyexpat.rst:307 -msgid "" -"An :exc:`ExpatError` is raised if this method is called on a |xml-non-root-" -"parser| parser. The corresponding :attr:`~ExpatError.lineno` " -"and :attr:`~ExpatError.offset` should not be used as they may have no " -"special meaning." +msgid "Parser objects usually have a protection activation threshold of 8 MiB, but the actual default value depends on the underlying Expat library." msgstr "" -#: ../../library/pyexpat.rst:262 -msgid "" -"Activation thresholds below 4 MiB are known to break support for DITA 1.3 " -"payload and are hence not recommended." +msgid "An :exc:`ExpatError` is raised if this method is called on a |xml-non-root-parser| parser. The corresponding :attr:`~ExpatError.lineno` and :attr:`~ExpatError.offset` should not be used as they may have no special meaning." msgstr "" -#: ../../library/pyexpat.rst:269 -msgid "" -"Sets the maximum tolerated amplification factor for protection against " -"`billion laughs`_ attacks." +msgid "Activation thresholds below 4 MiB are known to break support for DITA 1.3 payload and are hence not recommended." msgstr "" -#: ../../library/pyexpat.rst:272 -msgid "" -"The amplification factor is calculated as ``(direct + indirect) / direct`` " -"while parsing, where ``direct`` is the number of bytes read from the primary " -"document in parsing and ``indirect`` is the number of bytes added by " -"expanding entities and reading of external DTD files." +msgid "Sets the maximum tolerated amplification factor for protection against `billion laughs`_ attacks." msgstr "" -#: ../../library/pyexpat.rst:277 -msgid "" -"The *max_factor* value must be a non-NaN :class:`float` value greater than " -"or equal to 1.0. Peak amplifications of factor 15,000 for the entire payload " -"and of factor 30,000 in the middle of parsing have been observed with small " -"benign files in practice. In particular, the activation threshold should be " -"carefully chosen to avoid false positives." +msgid "The amplification factor is calculated as ``(direct + indirect) / direct`` while parsing, where ``direct`` is the number of bytes read from the primary document in parsing and ``indirect`` is the number of bytes added by expanding entities and reading of external DTD files." msgstr "" -#: ../../library/pyexpat.rst:283 ../../library/pyexpat.rst:329 -msgid "" -"Parser objects usually have a maximum amplification factor of 100, but the " -"actual default value depends on the underlying Expat library." +msgid "The *max_factor* value must be a non-NaN :class:`float` value greater than or equal to 1.0. Peak amplifications of factor 15,000 for the entire payload and of factor 30,000 in the middle of parsing have been observed with small benign files in practice. In particular, the activation threshold should be carefully chosen to avoid false positives." msgstr "" -#: ../../library/pyexpat.rst:286 ../../library/pyexpat.rst:332 -msgid "" -"An :exc:`ExpatError` is raised if this method is called on a |xml-non-root-" -"parser| parser or if *max_factor* is outside the valid range. The " -"corresponding :attr:`~ExpatError.lineno` and :attr:`~ExpatError.offset` " -"should not be used as they may have no special meaning." +msgid "Parser objects usually have a maximum amplification factor of 100, but the actual default value depends on the underlying Expat library." msgstr "" -#: ../../library/pyexpat.rst:293 -msgid "" -"The maximum amplification factor is only considered if the threshold that " -"can be adjusted " -"by :meth:`.SetBillionLaughsAttackProtectionActivationThreshold` is exceeded." +msgid "An :exc:`ExpatError` is raised if this method is called on a |xml-non-root-parser| parser or if *max_factor* is outside the valid range. The corresponding :attr:`~ExpatError.lineno` and :attr:`~ExpatError.offset` should not be used as they may have no special meaning." msgstr "" -#: ../../library/pyexpat.rst:301 -msgid "" -"Sets the number of allocated bytes of dynamic memory needed to activate " -"protection against disproportionate use of RAM." +msgid "The maximum amplification factor is only considered if the threshold that can be adjusted by :meth:`.SetBillionLaughsAttackProtectionActivationThreshold` is exceeded." msgstr "" -#: ../../library/pyexpat.rst:304 -msgid "" -"Parser objects usually have an allocation activation threshold of 64 MiB, " -"but the actual default value depends on the underlying Expat library." +msgid "Sets the number of allocated bytes of dynamic memory needed to activate protection against disproportionate use of RAM." msgstr "" -#: ../../library/pyexpat.rst:316 -msgid "" -"Sets the maximum amplification factor between direct input and bytes of " -"dynamic memory allocated." +msgid "Parser objects usually have an allocation activation threshold of 64 MiB, but the actual default value depends on the underlying Expat library." msgstr "" -#: ../../library/pyexpat.rst:319 -msgid "" -"The amplification factor is calculated as ``allocated / direct`` while " -"parsing, where ``direct`` is the number of bytes read from the primary " -"document in parsing and ``allocated`` is the number of bytes of dynamic " -"memory allocated in the parser hierarchy." +msgid "Sets the maximum amplification factor between direct input and bytes of dynamic memory allocated." msgstr "" -#: ../../library/pyexpat.rst:324 -msgid "" -"The *max_factor* value must be a non-NaN :class:`float` value greater than " -"or equal to 1.0. Amplification factors greater than 100.0 can be observed " -"near the start of parsing even with benign files in practice. In particular, " -"the activation threshold should be carefully chosen to avoid false positives." +msgid "The amplification factor is calculated as ``allocated / direct`` while parsing, where ``direct`` is the number of bytes read from the primary document in parsing and ``allocated`` is the number of bytes of dynamic memory allocated in the parser hierarchy." msgstr "" -#: ../../library/pyexpat.rst:339 -msgid "" -"The maximum amplification factor is only considered if the threshold that " -"can be adjusted by :meth:`.SetAllocTrackerActivationThreshold` is exceeded." +msgid "The *max_factor* value must be a non-NaN :class:`float` value greater than or equal to 1.0. Amplification factors greater than 100.0 can be observed near the start of parsing even with benign files in practice. In particular, the activation threshold should be carefully chosen to avoid false positives." +msgstr "" + +msgid "The maximum amplification factor is only considered if the threshold that can be adjusted by :meth:`.SetAllocTrackerActivationThreshold` is exceeded." msgstr "" -#: ../../library/pyexpat.rst:346 msgid ":class:`xmlparser` objects have the following attributes:" msgstr "" -#: ../../library/pyexpat.rst:351 -msgid "" -"The size of the buffer used when :attr:`buffer_text` is true. A new buffer " -"size can be set by assigning a new integer value to this attribute. When the " -"size is changed, the buffer will be flushed." +msgid "The size of the buffer used when :attr:`buffer_text` is true. A new buffer size can be set by assigning a new integer value to this attribute. When the size is changed, the buffer will be flushed." msgstr "" -#: ../../library/pyexpat.rst:359 -msgid "" -"Setting this to true causes the :class:`xmlparser` object to buffer textual " -"content returned by Expat to avoid multiple calls to " -"the :meth:`CharacterDataHandler` callback whenever possible. This can " -"improve performance substantially since Expat normally breaks character data " -"into chunks at every line ending. This attribute is false by default, and " -"may be changed at any time. Note that when it is false, data that does not " -"contain newlines may be chunked too." +msgid "Setting this to true causes the :class:`xmlparser` object to buffer textual content returned by Expat to avoid multiple calls to the :meth:`CharacterDataHandler` callback whenever possible. This can improve performance substantially since Expat normally breaks character data into chunks at every line ending. This attribute is false by default, and may be changed at any time. Note that when it is false, data that does not contain newlines may be chunked too." msgstr "" -#: ../../library/pyexpat.rst:370 -msgid "" -"If :attr:`buffer_text` is enabled, the number of bytes stored in the buffer. " -"These bytes represent UTF-8 encoded text. This attribute has no meaningful " -"interpretation when :attr:`buffer_text` is false." +msgid "If :attr:`buffer_text` is enabled, the number of bytes stored in the buffer. These bytes represent UTF-8 encoded text. This attribute has no meaningful interpretation when :attr:`buffer_text` is false." msgstr "" -#: ../../library/pyexpat.rst:377 -msgid "" -"Setting this attribute to a non-zero integer causes the attributes to be " -"reported as a list rather than a dictionary. The attributes are presented " -"in the order found in the document text. For each attribute, two list " -"entries are presented: the attribute name and the attribute value. (Older " -"versions of this module also used this format.) By default, this attribute " -"is false; it may be changed at any time." +msgid "Setting this attribute to a non-zero integer causes the attributes to be reported as a list rather than a dictionary. The attributes are presented in the order found in the document text. For each attribute, two list entries are presented: the attribute name and the attribute value. (Older versions of this module also used this format.) By default, this attribute is false; it may be changed at any time." msgstr "" -#: ../../library/pyexpat.rst:387 -msgid "" -"If set to a non-zero integer, the parser will report only those attributes " -"which were specified in the document instance and not those which were " -"derived from attribute declarations. Applications which set this need to be " -"especially careful to use what additional information is available from the " -"declarations as needed to comply with the standards for the behavior of XML " -"processors. By default, this attribute is false; it may be changed at any " -"time." +msgid "If set to a non-zero integer, the parser will report only those attributes which were specified in the document instance and not those which were derived from attribute declarations. Applications which set this need to be especially careful to use what additional information is available from the declarations as needed to comply with the standards for the behavior of XML processors. By default, this attribute is false; it may be changed at any time." msgstr "" -#: ../../library/pyexpat.rst:395 -msgid "" -"The following attributes contain values relating to the most recent error " -"encountered by an :class:`xmlparser` object, and will only have correct " -"values once a call to :meth:`Parse` or :meth:`ParseFile` has raised " -"an :exc:`xml.parsers.expat.ExpatError` exception." +msgid "The following attributes contain values relating to the most recent error encountered by an :class:`xmlparser` object, and will only have correct values once a call to :meth:`Parse` or :meth:`ParseFile` has raised an :exc:`xml.parsers.expat.ExpatError` exception." msgstr "" -#: ../../library/pyexpat.rst:403 msgid "Byte index at which an error occurred." msgstr "" -#: ../../library/pyexpat.rst:408 -msgid "" -"Numeric code specifying the problem. This value can be passed to " -"the :func:`ErrorString` function, or compared to one of the constants " -"defined in the ``errors`` object." +msgid "Numeric code specifying the problem. This value can be passed to the :func:`ErrorString` function, or compared to one of the constants defined in the ``errors`` object." msgstr "" -#: ../../library/pyexpat.rst:415 msgid "Column number at which an error occurred." msgstr "" -#: ../../library/pyexpat.rst:420 msgid "Line number at which an error occurred." msgstr "" -#: ../../library/pyexpat.rst:422 -msgid "" -"The following attributes contain values relating to the current parse " -"location in an :class:`xmlparser` object. During a callback reporting a " -"parse event they indicate the location of the first of the sequence of " -"characters that generated the event. When called outside of a callback, the " -"position indicated will be just past the last parse event (regardless of " -"whether there was an associated callback)." +msgid "The following attributes contain values relating to the current parse location in an :class:`xmlparser` object. During a callback reporting a parse event they indicate the location of the first of the sequence of characters that generated the event. When called outside of a callback, the position indicated will be just past the last parse event (regardless of whether there was an associated callback)." msgstr "" -#: ../../library/pyexpat.rst:432 msgid "Current byte index in the parser input." msgstr "" -#: ../../library/pyexpat.rst:437 msgid "Current column number in the parser input." msgstr "" -#: ../../library/pyexpat.rst:442 msgid "Current line number in the parser input." msgstr "" -#: ../../library/pyexpat.rst:444 -msgid "" -"Here is the list of handlers that can be set. To set a handler on " -"an :class:`xmlparser` object *o*, use ``o.handlername = func``. " -"*handlername* must be taken from the following list, and *func* must be a " -"callable object accepting the correct number of arguments. The arguments " -"are all strings, unless otherwise stated." +msgid "Here is the list of handlers that can be set. To set a handler on an :class:`xmlparser` object *o*, use ``o.handlername = func``. *handlername* must be taken from the following list, and *func* must be a callable object accepting the correct number of arguments. The arguments are all strings, unless otherwise stated." msgstr "" -#: ../../library/pyexpat.rst:453 -msgid "" -"Called when the XML declaration is parsed. The XML declaration is the " -"(optional) declaration of the applicable version of the XML recommendation, " -"the encoding of the document text, and an optional \"standalone\" " -"declaration. *version* and *encoding* will be strings, and *standalone* will " -"be ``1`` if the document is declared standalone, ``0`` if it is declared not " -"to be standalone, or ``-1`` if the standalone clause was omitted. This is " -"only available with Expat version 1.95.0 or newer." +msgid "Called when the XML declaration is parsed. The XML declaration is the (optional) declaration of the applicable version of the XML recommendation, the encoding of the document text, and an optional \"standalone\" declaration. *version* and *encoding* will be strings, and *standalone* will be ``1`` if the document is declared standalone, ``0`` if it is declared not to be standalone, or ``-1`` if the standalone clause was omitted. This is only available with Expat version 1.95.0 or newer." msgstr "" -#: ../../library/pyexpat.rst:464 -msgid "" -"Called when Expat begins parsing the document type declaration (``'``." +msgid "Called for comments. *data* is the text of the comment, excluding the leading ``''``." msgstr "" -#: ../../library/pyexpat.rst:581 -msgid "" -"Called at the start of a CDATA section. This " -"and :attr:`EndCdataSectionHandler` are needed to be able to identify the " -"syntactical start and end for CDATA sections." +msgid "Called at the start of a CDATA section. This and :attr:`EndCdataSectionHandler` are needed to be able to identify the syntactical start and end for CDATA sections." msgstr "" -#: ../../library/pyexpat.rst:588 msgid "Called at the end of a CDATA section." msgstr "" -#: ../../library/pyexpat.rst:593 -msgid "" -"Called for any characters in the XML document for which no applicable " -"handler has been specified. This means characters that are part of a " -"construct which could be reported, but for which no handler has been " -"supplied." +msgid "Called for any characters in the XML document for which no applicable handler has been specified. This means characters that are part of a construct which could be reported, but for which no handler has been supplied." msgstr "" -#: ../../library/pyexpat.rst:600 -msgid "" -"This is the same as the :func:`DefaultHandler`, but doesn't inhibit " -"expansion of internal entities. The entity reference will not be passed to " -"the default handler." +msgid "This is the same as the :func:`DefaultHandler`, but doesn't inhibit expansion of internal entities. The entity reference will not be passed to the default handler." msgstr "" -#: ../../library/pyexpat.rst:607 -msgid "" -"Called if the XML document hasn't been declared as being a standalone " -"document. This happens when there is an external subset or a reference to a " -"parameter entity, but the XML declaration does not set standalone to ``yes`` " -"in an XML declaration. If this handler returns ``0``, then the parser will " -"raise an :const:`XML_ERROR_NOT_STANDALONE` error. If this handler is not " -"set, no exception is raised by the parser for this condition." +msgid "Called if the XML document hasn't been declared as being a standalone document. This happens when there is an external subset or a reference to a parameter entity, but the XML declaration does not set standalone to ``yes`` in an XML declaration. If this handler returns ``0``, then the parser will raise an :const:`XML_ERROR_NOT_STANDALONE` error. If this handler is not set, no exception is raised by the parser for this condition." msgstr "" -#: ../../library/pyexpat.rst:619 -msgid "" -"Implementing a handler that accesses local files and/or the network may " -"create a vulnerability to `external entity attacks `_ if :class:`xmlparser` is used with user-" -"provided XML content. Please reflect on your `threat model `_ before implementing this handler." +msgid "Implementing a handler that accesses local files and/or the network may create a vulnerability to `external entity attacks `_ if :class:`xmlparser` is used with user-provided XML content. Please reflect on your `threat model `_ before implementing this handler." msgstr "" -#: ../../library/pyexpat.rst:626 -msgid "" -"Called for references to external entities. *base* is the current base, as " -"set by a previous call to :meth:`SetBase`. The public and system " -"identifiers, *systemId* and *publicId*, are strings if given; if the public " -"identifier is not given, *publicId* will be ``None``. The *context* value " -"is opaque and should only be used as described below." +msgid "Called for references to external entities. *base* is the current base, as set by a previous call to :meth:`SetBase`. The public and system identifiers, *systemId* and *publicId*, are strings if given; if the public identifier is not given, *publicId* will be ``None``. The *context* value is opaque and should only be used as described below." msgstr "" -#: ../../library/pyexpat.rst:632 -msgid "" -"For external entities to be parsed, this handler must be implemented. It is " -"responsible for creating the sub-parser using " -"``ExternalEntityParserCreate(context)``, initializing it with the " -"appropriate callbacks, and parsing the entity. This handler should return " -"an integer; if it returns ``0``, the parser will raise " -"an :const:`XML_ERROR_EXTERNAL_ENTITY_HANDLING` error, otherwise parsing will " -"continue." +msgid "For external entities to be parsed, this handler must be implemented. It is responsible for creating the sub-parser using ``ExternalEntityParserCreate(context)``, initializing it with the appropriate callbacks, and parsing the entity. This handler should return an integer; if it returns ``0``, the parser will raise an :const:`XML_ERROR_EXTERNAL_ENTITY_HANDLING` error, otherwise parsing will continue." msgstr "" -#: ../../library/pyexpat.rst:640 -msgid "" -"If this handler is not provided, external entities are reported by " -"the :attr:`DefaultHandler` callback, if provided." +msgid "If this handler is not provided, external entities are reported by the :attr:`DefaultHandler` callback, if provided." msgstr "" -#: ../../library/pyexpat.rst:647 msgid "ExpatError Exceptions" msgstr "" -#: ../../library/pyexpat.rst:652 msgid ":exc:`ExpatError` exceptions have a number of interesting attributes:" msgstr "" -#: ../../library/pyexpat.rst:657 -msgid "" -"Expat's internal error number for the specific error. " -"The :data:`errors.messages ` dictionary " -"maps these error numbers to Expat's error messages. For example::" +msgid "Expat's internal error number for the specific error. The :data:`errors.messages ` dictionary maps these error numbers to Expat's error messages. For example::" msgstr "" -#: ../../library/pyexpat.rst:661 msgid "" "from xml.parsers.expat import ParserCreate, ExpatError, errors\n" "\n" @@ -735,36 +334,21 @@ msgid "" " print(\"Error:\", errors.messages[err.code])" msgstr "" -#: ../../library/pyexpat.rst:669 -msgid "" -"The :mod:`~xml.parsers.expat.errors` module also provides error message " -"constants and a dictionary :data:`~xml.parsers.expat.errors.codes` mapping " -"these messages back to the error codes, see below." +msgid "The :mod:`~xml.parsers.expat.errors` module also provides error message constants and a dictionary :data:`~xml.parsers.expat.errors.codes` mapping these messages back to the error codes, see below." msgstr "" -#: ../../library/pyexpat.rst:676 -msgid "" -"Line number on which the error was detected. The first line is numbered " -"``1``." +msgid "Line number on which the error was detected. The first line is numbered ``1``." msgstr "" -#: ../../library/pyexpat.rst:681 -msgid "" -"Character offset into the line where the error occurred. The first column " -"is numbered ``0``." +msgid "Character offset into the line where the error occurred. The first column is numbered ``0``." msgstr "" -#: ../../library/pyexpat.rst:688 msgid "Example" msgstr "" -#: ../../library/pyexpat.rst:690 -msgid "" -"The following program defines three handlers that just print out their " -"arguments. ::" +msgid "The following program defines three handlers that just print out their arguments. ::" msgstr "" -#: ../../library/pyexpat.rst:693 msgid "" "import xml.parsers.expat\n" "\n" @@ -788,11 +372,9 @@ msgid "" "\"\"\", 1)" msgstr "" -#: ../../library/pyexpat.rst:714 msgid "The output from this program is::" msgstr "" -#: ../../library/pyexpat.rst:716 msgid "" "Start element: parent {'id': 'top'}\n" "Start element: child1 {'name': 'paul'}\n" @@ -806,305 +388,179 @@ msgid "" "End element: parent" msgstr "" -#: ../../library/pyexpat.rst:731 msgid "Content Model Descriptions" msgstr "" -#: ../../library/pyexpat.rst:737 -msgid "" -"Content models are described using nested tuples. Each tuple contains four " -"values: the type, the quantifier, the name, and a tuple of children. " -"Children are simply additional content model descriptions." +msgid "Content models are described using nested tuples. Each tuple contains four values: the type, the quantifier, the name, and a tuple of children. Children are simply additional content model descriptions." msgstr "" -#: ../../library/pyexpat.rst:741 -msgid "" -"The values of the first two fields are constants defined in the :mod:`!" -"xml.parsers.expat.model` module. These constants can be collected in two " -"groups: the model type group and the quantifier group." +msgid "The values of the first two fields are constants defined in the :mod:`!xml.parsers.expat.model` module. These constants can be collected in two groups: the model type group and the quantifier group." msgstr "" -#: ../../library/pyexpat.rst:745 msgid "The constants in the model type group are:" msgstr "" -#: ../../library/pyexpat.rst:751 -msgid "" -"The element named by the model name was declared to have a content model of " -"``ANY``." +msgid "The element named by the model name was declared to have a content model of ``ANY``." msgstr "" -#: ../../library/pyexpat.rst:758 -msgid "" -"The named element allows a choice from a number of options; this is used for " -"content models such as ``(A | B | C)``." +msgid "The named element allows a choice from a number of options; this is used for content models such as ``(A | B | C)``." msgstr "" -#: ../../library/pyexpat.rst:765 msgid "Elements which are declared to be ``EMPTY`` have this model type." msgstr "" -#: ../../library/pyexpat.rst:779 -msgid "" -"Models which represent a series of models which follow one after the other " -"are indicated with this model type. This is used for models such as ``(A, " -"B, C)``." +msgid "Models which represent a series of models which follow one after the other are indicated with this model type. This is used for models such as ``(A, B, C)``." msgstr "" -#: ../../library/pyexpat.rst:782 msgid "The constants in the quantifier group are:" msgstr "" -#: ../../library/pyexpat.rst:788 msgid "No modifier is given, so it can appear exactly once, as for ``A``." msgstr "" -#: ../../library/pyexpat.rst:794 msgid "The model is optional: it can appear once or not at all, as for ``A?``." msgstr "" -#: ../../library/pyexpat.rst:800 msgid "The model must occur one or more times (like ``A+``)." msgstr "" -#: ../../library/pyexpat.rst:806 msgid "The model must occur zero or more times, as for ``A*``." msgstr "" -#: ../../library/pyexpat.rst:812 msgid "Expat error constants" msgstr "" -#: ../../library/pyexpat.rst:816 -msgid "" -"The following constants are provided in the :mod:`!xml.parsers.expat.errors` " -"module. These constants are useful in interpreting some of the attributes " -"of the :exc:`ExpatError` exception objects raised when an error has " -"occurred. Since for backwards compatibility reasons, the constants' value is " -"the error *message* and not the numeric error *code*, you do this by " -"comparing its :attr:`code` attribute " -"with :samp:`errors.codes[errors.XML_ERROR_{CONSTANT_NAME}]`." +msgid "The following constants are provided in the :mod:`!xml.parsers.expat.errors` module. These constants are useful in interpreting some of the attributes of the :exc:`ExpatError` exception objects raised when an error has occurred. Since for backwards compatibility reasons, the constants' value is the error *message* and not the numeric error *code*, you do this by comparing its :attr:`code` attribute with :samp:`errors.codes[errors.XML_ERROR_{CONSTANT_NAME}]`." msgstr "" -#: ../../library/pyexpat.rst:824 msgid "The ``errors`` module has the following attributes:" msgstr "" -#: ../../library/pyexpat.rst:828 msgid "A dictionary mapping string descriptions to their error codes." msgstr "" -#: ../../library/pyexpat.rst:835 msgid "A dictionary mapping numeric error codes to their string descriptions." msgstr "" -#: ../../library/pyexpat.rst:845 -msgid "" -"An entity reference in an attribute value referred to an external entity " -"instead of an internal entity." +msgid "An entity reference in an attribute value referred to an external entity instead of an internal entity." msgstr "" -#: ../../library/pyexpat.rst:851 -msgid "" -"A character reference referred to a character which is illegal in XML (for " -"example, character ``0``, or '``�``')." +msgid "A character reference referred to a character which is illegal in XML (for example, character ``0``, or '``�``')." msgstr "" -#: ../../library/pyexpat.rst:857 -msgid "" -"An entity reference referred to an entity which was declared with a " -"notation, so cannot be parsed." +msgid "An entity reference referred to an entity which was declared with a notation, so cannot be parsed." msgstr "" -#: ../../library/pyexpat.rst:863 msgid "An attribute was used more than once in a start tag." msgstr "" -#: ../../library/pyexpat.rst:871 -msgid "" -"Raised when an input byte could not properly be assigned to a character; for " -"example, a NUL byte (value ``0``) in a UTF-8 input stream." +msgid "Raised when an input byte could not properly be assigned to a character; for example, a NUL byte (value ``0``) in a UTF-8 input stream." msgstr "" -#: ../../library/pyexpat.rst:877 msgid "Something other than whitespace occurred after the document element." msgstr "" -#: ../../library/pyexpat.rst:882 -msgid "" -"An XML declaration was found somewhere other than the start of the input " -"data." +msgid "An XML declaration was found somewhere other than the start of the input data." msgstr "" -#: ../../library/pyexpat.rst:887 -msgid "" -"The document contains no elements (XML requires all documents to contain " -"exactly one top-level element).." +msgid "The document contains no elements (XML requires all documents to contain exactly one top-level element).." msgstr "" -#: ../../library/pyexpat.rst:893 msgid "Expat was not able to allocate memory internally." msgstr "" -#: ../../library/pyexpat.rst:898 msgid "A parameter entity reference was found where it was not allowed." msgstr "" -#: ../../library/pyexpat.rst:903 msgid "An incomplete character was found in the input." msgstr "" -#: ../../library/pyexpat.rst:908 -msgid "" -"An entity reference contained another reference to the same entity; possibly " -"via a different name, and possibly indirectly." +msgid "An entity reference contained another reference to the same entity; possibly via a different name, and possibly indirectly." msgstr "" -#: ../../library/pyexpat.rst:914 msgid "Some unspecified syntax error was encountered." msgstr "" -#: ../../library/pyexpat.rst:919 msgid "An end tag did not match the innermost open start tag." msgstr "" -#: ../../library/pyexpat.rst:924 -msgid "" -"Some token (such as a start tag) was not closed before the end of the stream " -"or the next token was encountered." +msgid "Some token (such as a start tag) was not closed before the end of the stream or the next token was encountered." msgstr "" -#: ../../library/pyexpat.rst:930 msgid "A reference was made to an entity which was not defined." msgstr "" -#: ../../library/pyexpat.rst:935 msgid "The document encoding is not supported by Expat." msgstr "" -#: ../../library/pyexpat.rst:940 msgid "A CDATA marked section was not closed." msgstr "" -#: ../../library/pyexpat.rst:948 -msgid "" -"The parser determined that the document was not \"standalone\" though it " -"declared itself to be in the XML declaration, and " -"the :attr:`NotStandaloneHandler` was set and returned ``0``." +msgid "The parser determined that the document was not \"standalone\" though it declared itself to be in the XML declaration, and the :attr:`NotStandaloneHandler` was set and returned ``0``." msgstr "" -#: ../../library/pyexpat.rst:961 -msgid "" -"An operation was requested that requires DTD support to be compiled in, but " -"Expat was configured without DTD support. This should never be reported by " -"a standard build of the :mod:`!xml.parsers.expat` module." +msgid "An operation was requested that requires DTD support to be compiled in, but Expat was configured without DTD support. This should never be reported by a standard build of the :mod:`!xml.parsers.expat` module." msgstr "" -#: ../../library/pyexpat.rst:968 -msgid "" -"A behavioral change was requested after parsing started that can only be " -"changed before parsing has started. This is (currently) only raised " -"by :meth:`UseForeignDTD`." +msgid "A behavioral change was requested after parsing started that can only be changed before parsing has started. This is (currently) only raised by :meth:`UseForeignDTD`." msgstr "" -#: ../../library/pyexpat.rst:975 msgid "An undeclared prefix was found when namespace processing was enabled." msgstr "" -#: ../../library/pyexpat.rst:980 -msgid "" -"The document attempted to remove the namespace declaration associated with a " -"prefix." +msgid "The document attempted to remove the namespace declaration associated with a prefix." msgstr "" -#: ../../library/pyexpat.rst:986 msgid "A parameter entity contained incomplete markup." msgstr "" -#: ../../library/pyexpat.rst:991 msgid "The document contained no document element at all." msgstr "" -#: ../../library/pyexpat.rst:996 msgid "There was an error parsing a text declaration in an external entity." msgstr "" -#: ../../library/pyexpat.rst:1001 msgid "Characters were found in the public id that are not allowed." msgstr "" -#: ../../library/pyexpat.rst:1006 -msgid "" -"The requested operation was made on a suspended parser, but isn't allowed. " -"This includes attempts to provide additional input or to stop the parser." +msgid "The requested operation was made on a suspended parser, but isn't allowed. This includes attempts to provide additional input or to stop the parser." msgstr "" -#: ../../library/pyexpat.rst:1012 -msgid "" -"An attempt to resume the parser was made when the parser had not been " -"suspended." +msgid "An attempt to resume the parser was made when the parser had not been suspended." msgstr "" -#: ../../library/pyexpat.rst:1017 ../../library/pyexpat.rst:1050 -#: ../../library/pyexpat.rst:1055 msgid "This should not be reported to Python applications." msgstr "" -#: ../../library/pyexpat.rst:1022 -msgid "" -"The requested operation was made on a parser which was finished parsing " -"input, but isn't allowed. This includes attempts to provide additional " -"input or to stop the parser." +msgid "The requested operation was made on a parser which was finished parsing input, but isn't allowed. This includes attempts to provide additional input or to stop the parser." msgstr "" -#: ../../library/pyexpat.rst:1032 -msgid "" -"An attempt was made to undeclare reserved namespace prefix ``xml`` or to " -"bind it to another namespace URI." +msgid "An attempt was made to undeclare reserved namespace prefix ``xml`` or to bind it to another namespace URI." msgstr "" -#: ../../library/pyexpat.rst:1039 -msgid "" -"An attempt was made to declare or undeclare reserved namespace prefix " -"``xmlns``." +msgid "An attempt was made to declare or undeclare reserved namespace prefix ``xmlns``." msgstr "" -#: ../../library/pyexpat.rst:1044 -msgid "" -"An attempt was made to bind the URI of one the reserved namespace prefixes " -"``xml`` and ``xmlns`` to another namespace prefix." +msgid "An attempt was made to bind the URI of one the reserved namespace prefixes ``xml`` and ``xmlns`` to another namespace prefix." msgstr "" -#: ../../library/pyexpat.rst:1060 -msgid "" -"The limit on input amplification factor (from DTD and entities) has been " -"breached." +msgid "The limit on input amplification factor (from DTD and entities) has been breached." msgstr "" -#: ../../library/pyexpat.rst:1066 msgid "The parser was tried to be stopped or suspended before it started." msgstr "" -#: ../../library/pyexpat.rst:1072 msgid "Footnotes" msgstr "" -#: ../../library/pyexpat.rst:1073 -msgid "" -"The encoding string included in XML output should conform to the appropriate " -"standards. For example, \"UTF-8\" is valid, but \"UTF8\" is not. See https://" -"www.w3.org/TR/2006/REC-xml11-20060816/#NT-EncodingDecl and https://" -"www.iana.org/assignments/character-sets/character-sets.xhtml." +msgid "The encoding string included in XML output should conform to the appropriate standards. For example, \"UTF-8\" is valid, but \"UTF8\" is not. See https://www.w3.org/TR/2006/REC-xml11-20060816/#NT-EncodingDecl and https://www.iana.org/assignments/character-sets/character-sets.xhtml." msgstr "" -#: ../../library/pyexpat.rst:25 msgid "Expat" msgstr "" -#: ../../library/pyexpat.rst:35 msgid "module" msgstr "" -#: ../../library/pyexpat.rst:35 msgid "pyexpat" msgstr "" diff --git a/library/python.po b/library/python.po index 70296758..445c6f9c 100644 --- a/library/python.po +++ b/library/python.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:12+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,19 +21,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/python.rst:5 msgid "Python Runtime Services" msgstr "" -#: ../../library/python.rst:7 -msgid "" -"The modules described in this chapter provide a wide range of services " -"related to the Python interpreter and its interaction with its environment. " -"Here's an overview:" +msgid "The modules described in this chapter provide a wide range of services related to the Python interpreter and its interaction with its environment. Here's an overview:" msgstr "" -#: ../../library/python.rst:33 -msgid "" -"See the :mod:`concurrent.interpreters` module, which similarly exposes core " -"runtime functionality." +msgid "See the :mod:`concurrent.interpreters` module, which similarly exposes core runtime functionality." msgstr "" diff --git a/library/queue.po b/library/queue.po index ac42bd97..77818ec8 100644 --- a/library/queue.po +++ b/library/queue.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:12+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,92 +21,42 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/queue.rst:2 msgid ":mod:`!queue` --- A synchronized queue class" msgstr "" -#: ../../library/queue.rst:7 msgid "**Source code:** :source:`Lib/queue.py`" msgstr "" -#: ../../library/queue.rst:11 -msgid "" -"The :mod:`!queue` module implements multi-producer, multi-consumer queues. " -"It is especially useful in threaded programming when information must be " -"exchanged safely between multiple threads. The :class:`Queue` class in this " -"module implements all the required locking semantics." +msgid "The :mod:`!queue` module implements multi-producer, multi-consumer queues. It is especially useful in threaded programming when information must be exchanged safely between multiple threads. The :class:`Queue` class in this module implements all the required locking semantics." msgstr "" -#: ../../library/queue.rst:16 -msgid "" -"The module implements three types of queue, which differ only in the order " -"in which the entries are retrieved. In a :abbr:`FIFO (first-in, first-out)` " -"queue, the first tasks added are the first retrieved. In a :abbr:`LIFO " -"(last-in, first-out)` queue, the most recently added entry is the first " -"retrieved (operating like a stack). With a priority queue, the entries are " -"kept sorted (using the :mod:`heapq` module) and the lowest valued entry is " -"retrieved first." +msgid "The module implements three types of queue, which differ only in the order in which the entries are retrieved. In a :abbr:`FIFO (first-in, first-out)` queue, the first tasks added are the first retrieved. In a :abbr:`LIFO (last-in, first-out)` queue, the most recently added entry is the first retrieved (operating like a stack). With a priority queue, the entries are kept sorted (using the :mod:`heapq` module) and the lowest valued entry is retrieved first." msgstr "" -#: ../../library/queue.rst:24 -msgid "" -"Internally, those three types of queues use locks to temporarily block " -"competing threads; however, they are not designed to handle reentrancy " -"within a thread." +msgid "Internally, those three types of queues use locks to temporarily block competing threads; however, they are not designed to handle reentrancy within a thread." msgstr "" -#: ../../library/queue.rst:28 -msgid "" -"In addition, the module implements a \"simple\" :abbr:`FIFO (first-in, first-" -"out)` queue type, :class:`SimpleQueue`, whose specific implementation " -"provides additional guarantees in exchange for the smaller functionality." +msgid "In addition, the module implements a \"simple\" :abbr:`FIFO (first-in, first-out)` queue type, :class:`SimpleQueue`, whose specific implementation provides additional guarantees in exchange for the smaller functionality." msgstr "" -#: ../../library/queue.rst:33 msgid "The :mod:`!queue` module defines the following classes and exceptions:" msgstr "" -#: ../../library/queue.rst:37 -msgid "" -"Constructor for a :abbr:`FIFO (first-in, first-out)` queue. *maxsize* is an " -"integer that sets the upperbound limit on the number of items that can be " -"placed in the queue. Insertion will block once this size has been reached, " -"until queue items are consumed. If *maxsize* is less than or equal to zero, " -"the queue size is infinite." +msgid "Constructor for a :abbr:`FIFO (first-in, first-out)` queue. *maxsize* is an integer that sets the upperbound limit on the number of items that can be placed in the queue. Insertion will block once this size has been reached, until queue items are consumed. If *maxsize* is less than or equal to zero, the queue size is infinite." msgstr "" -#: ../../library/queue.rst:45 -msgid "" -"Constructor for a :abbr:`LIFO (last-in, first-out)` queue. *maxsize* is an " -"integer that sets the upperbound limit on the number of items that can be " -"placed in the queue. Insertion will block once this size has been reached, " -"until queue items are consumed. If *maxsize* is less than or equal to zero, " -"the queue size is infinite." +msgid "Constructor for a :abbr:`LIFO (last-in, first-out)` queue. *maxsize* is an integer that sets the upperbound limit on the number of items that can be placed in the queue. Insertion will block once this size has been reached, until queue items are consumed. If *maxsize* is less than or equal to zero, the queue size is infinite." msgstr "" -#: ../../library/queue.rst:54 -msgid "" -"Constructor for a priority queue. *maxsize* is an integer that sets the " -"upperbound limit on the number of items that can be placed in the queue. " -"Insertion will block once this size has been reached, until queue items are " -"consumed. If *maxsize* is less than or equal to zero, the queue size is " -"infinite." +msgid "Constructor for a priority queue. *maxsize* is an integer that sets the upperbound limit on the number of items that can be placed in the queue. Insertion will block once this size has been reached, until queue items are consumed. If *maxsize* is less than or equal to zero, the queue size is infinite." msgstr "" -#: ../../library/queue.rst:59 -msgid "" -"The lowest valued entries are retrieved first (the lowest valued entry is " -"the one that would be returned by ``min(entries)``). A typical pattern for " -"entries is a tuple in the form: ``(priority_number, data)``." +msgid "The lowest valued entries are retrieved first (the lowest valued entry is the one that would be returned by ``min(entries)``). A typical pattern for entries is a tuple in the form: ``(priority_number, data)``." msgstr "" -#: ../../library/queue.rst:63 -msgid "" -"If the *data* elements are not comparable, the data can be wrapped in a " -"class that ignores the data item and only compares the priority number::" +msgid "If the *data* elements are not comparable, the data can be wrapped in a class that ignores the data item and only compares the priority number::" msgstr "" -#: ../../library/queue.rst:66 msgid "" "from dataclasses import dataclass, field\n" "from typing import Any\n" @@ -117,168 +67,81 @@ msgid "" " item: Any=field(compare=False)" msgstr "" -#: ../../library/queue.rst:76 -msgid "" -"Constructor for an unbounded :abbr:`FIFO (first-in, first-out)` queue. " -"Simple queues lack advanced functionality such as task tracking." +msgid "Constructor for an unbounded :abbr:`FIFO (first-in, first-out)` queue. Simple queues lack advanced functionality such as task tracking." msgstr "" -#: ../../library/queue.rst:79 -msgid "" -"Simple queues are :ref:`generic ` over the type of their items." +msgid "Simple queues are :ref:`generic ` over the type of their items." msgstr "" -#: ../../library/queue.rst:86 -msgid "" -"Exception raised when non-blocking :meth:`~Queue.get` " -"(or :meth:`~Queue.get_nowait`) is called on a :class:`Queue` object which is " -"empty." +msgid "Exception raised when non-blocking :meth:`~Queue.get` (or :meth:`~Queue.get_nowait`) is called on a :class:`Queue` object which is empty." msgstr "" -#: ../../library/queue.rst:93 -msgid "" -"Exception raised when non-blocking :meth:`~Queue.put` " -"(or :meth:`~Queue.put_nowait`) is called on a :class:`Queue` object which is " -"full." +msgid "Exception raised when non-blocking :meth:`~Queue.put` (or :meth:`~Queue.put_nowait`) is called on a :class:`Queue` object which is full." msgstr "" -#: ../../library/queue.rst:100 -msgid "" -"Exception raised when :meth:`~Queue.put` or :meth:`~Queue.get` is called on " -"a :class:`Queue` object which has been shut down." +msgid "Exception raised when :meth:`~Queue.put` or :meth:`~Queue.get` is called on a :class:`Queue` object which has been shut down." msgstr "" -#: ../../library/queue.rst:109 msgid "Queue Objects" msgstr "" -#: ../../library/queue.rst:111 -msgid "" -"Queue objects (:class:`Queue`, :class:`LifoQueue`, " -"or :class:`PriorityQueue`) provide the public methods described below." +msgid "Queue objects (:class:`Queue`, :class:`LifoQueue`, or :class:`PriorityQueue`) provide the public methods described below." msgstr "" -#: ../../library/queue.rst:117 -msgid "" -"Return the approximate size of the queue. Note, qsize() > 0 doesn't " -"guarantee that a subsequent get() will not block, nor will qsize() < maxsize " -"guarantee that put() will not block." +msgid "Return the approximate size of the queue. Note, qsize() > 0 doesn't guarantee that a subsequent get() will not block, nor will qsize() < maxsize guarantee that put() will not block." msgstr "" -#: ../../library/queue.rst:124 -msgid "" -"Return ``True`` if the queue is empty, ``False`` otherwise. If empty() " -"returns ``True`` it doesn't guarantee that a subsequent call to put() will " -"not block. Similarly, if empty() returns ``False`` it doesn't guarantee " -"that a subsequent call to get() will not block." +msgid "Return ``True`` if the queue is empty, ``False`` otherwise. If empty() returns ``True`` it doesn't guarantee that a subsequent call to put() will not block. Similarly, if empty() returns ``False`` it doesn't guarantee that a subsequent call to get() will not block." msgstr "" -#: ../../library/queue.rst:132 -msgid "" -"Return ``True`` if the queue is full, ``False`` otherwise. If full() " -"returns ``True`` it doesn't guarantee that a subsequent call to get() will " -"not block. Similarly, if full() returns ``False`` it doesn't guarantee that " -"a subsequent call to put() will not block." +msgid "Return ``True`` if the queue is full, ``False`` otherwise. If full() returns ``True`` it doesn't guarantee that a subsequent call to get() will not block. Similarly, if full() returns ``False`` it doesn't guarantee that a subsequent call to put() will not block." msgstr "" -#: ../../library/queue.rst:140 -msgid "" -"Put *item* into the queue. If optional args *block* is true and *timeout* " -"is ``None`` (the default), block if necessary until a free slot is " -"available. If *timeout* is a positive number, it blocks at most *timeout* " -"seconds and raises the :exc:`Full` exception if no free slot was available " -"within that time. Otherwise (*block* is false), put an item on the queue if " -"a free slot is immediately available, else raise the :exc:`Full` exception " -"(*timeout* is ignored in that case)." +msgid "Put *item* into the queue. If optional args *block* is true and *timeout* is ``None`` (the default), block if necessary until a free slot is available. If *timeout* is a positive number, it blocks at most *timeout* seconds and raises the :exc:`Full` exception if no free slot was available within that time. Otherwise (*block* is false), put an item on the queue if a free slot is immediately available, else raise the :exc:`Full` exception (*timeout* is ignored in that case)." msgstr "" -#: ../../library/queue.rst:148 msgid "Raises :exc:`ShutDown` if the queue has been shut down." msgstr "" -#: ../../library/queue.rst:153 msgid "Equivalent to ``put(item, block=False)``." msgstr "" -#: ../../library/queue.rst:158 ../../library/queue.rst:316 -msgid "" -"Remove and return an item from the queue. If optional args *block* is true " -"and *timeout* is ``None`` (the default), block if necessary until an item is " -"available. If *timeout* is a positive number, it blocks at most *timeout* " -"seconds and raises the :exc:`Empty` exception if no item was available " -"within that time. Otherwise (*block* is false), return an item if one is " -"immediately available, else raise the :exc:`Empty` exception (*timeout* is " -"ignored in that case)." +msgid "Remove and return an item from the queue. If optional args *block* is true and *timeout* is ``None`` (the default), block if necessary until an item is available. If *timeout* is a positive number, it blocks at most *timeout* seconds and raises the :exc:`Empty` exception if no item was available within that time. Otherwise (*block* is false), return an item if one is immediately available, else raise the :exc:`Empty` exception (*timeout* is ignored in that case)." msgstr "" -#: ../../library/queue.rst:165 -msgid "" -"Prior to 3.0 on POSIX systems, and for all versions on Windows, if *block* " -"is true and *timeout* is ``None``, this operation goes into an " -"uninterruptible wait on an underlying lock. This means that no exceptions " -"can occur, and in particular a SIGINT will not trigger " -"a :exc:`KeyboardInterrupt`." +msgid "Prior to 3.0 on POSIX systems, and for all versions on Windows, if *block* is true and *timeout* is ``None``, this operation goes into an uninterruptible wait on an underlying lock. This means that no exceptions can occur, and in particular a SIGINT will not trigger a :exc:`KeyboardInterrupt`." msgstr "" -#: ../../library/queue.rst:170 -msgid "" -"Raises :exc:`ShutDown` if the queue has been shut down and is empty, or if " -"the queue has been shut down immediately." +msgid "Raises :exc:`ShutDown` if the queue has been shut down and is empty, or if the queue has been shut down immediately." msgstr "" -#: ../../library/queue.rst:176 ../../library/queue.rst:326 msgid "Equivalent to ``get(False)``." msgstr "" -#: ../../library/queue.rst:178 -msgid "" -"Two methods are offered to support tracking whether enqueued tasks have been " -"fully processed by daemon consumer threads." +msgid "Two methods are offered to support tracking whether enqueued tasks have been fully processed by daemon consumer threads." msgstr "" -#: ../../library/queue.rst:184 -msgid "" -"Indicate that a formerly enqueued task is complete. Used by queue consumer " -"threads. For each :meth:`get` used to fetch a task, a subsequent call " -"to :meth:`task_done` tells the queue that the processing on the task is " -"complete." +msgid "Indicate that a formerly enqueued task is complete. Used by queue consumer threads. For each :meth:`get` used to fetch a task, a subsequent call to :meth:`task_done` tells the queue that the processing on the task is complete." msgstr "" -#: ../../library/queue.rst:188 -msgid "" -"If a :meth:`join` is currently blocking, it will resume when all items have " -"been processed (meaning that a :meth:`task_done` call was received for every " -"item that had been :meth:`put` into the queue)." +msgid "If a :meth:`join` is currently blocking, it will resume when all items have been processed (meaning that a :meth:`task_done` call was received for every item that had been :meth:`put` into the queue)." msgstr "" -#: ../../library/queue.rst:192 -msgid "" -"Raises a :exc:`ValueError` if called more times than there were items placed " -"in the queue." +msgid "Raises a :exc:`ValueError` if called more times than there were items placed in the queue." msgstr "" -#: ../../library/queue.rst:198 msgid "Blocks until all items in the queue have been gotten and processed." msgstr "" -#: ../../library/queue.rst:200 -msgid "" -"The count of unfinished tasks goes up whenever an item is added to the " -"queue. The count goes down whenever a consumer thread " -"calls :meth:`task_done` to indicate that the item was retrieved and all work " -"on it is complete. When the count of unfinished tasks drops to " -"zero, :meth:`join` unblocks." +msgid "The count of unfinished tasks goes up whenever an item is added to the queue. The count goes down whenever a consumer thread calls :meth:`task_done` to indicate that the item was retrieved and all work on it is complete. When the count of unfinished tasks drops to zero, :meth:`join` unblocks." msgstr "" -#: ../../library/queue.rst:207 msgid "Waiting for task completion" msgstr "" -#: ../../library/queue.rst:209 msgid "Example of how to wait for enqueued tasks to be completed::" msgstr "" -#: ../../library/queue.rst:211 msgid "" "import threading\n" "import queue\n" @@ -304,121 +167,59 @@ msgid "" "print('All work completed')" msgstr "" -#: ../../library/queue.rst:236 msgid "Terminating queues" msgstr "" -#: ../../library/queue.rst:238 -msgid "" -"When no longer needed, :class:`Queue` objects can be wound down until empty " -"or terminated immediately with a hard shutdown." +msgid "When no longer needed, :class:`Queue` objects can be wound down until empty or terminated immediately with a hard shutdown." msgstr "" -#: ../../library/queue.rst:243 msgid "Put a :class:`Queue` instance into a shutdown mode." msgstr "" -#: ../../library/queue.rst:245 -msgid "" -"The queue can no longer grow. Future calls to :meth:`~Queue.put` " -"raise :exc:`ShutDown`. Currently blocked callers of :meth:`~Queue.put` will " -"be unblocked and will raise :exc:`ShutDown` in the formerly blocked thread." +msgid "The queue can no longer grow. Future calls to :meth:`~Queue.put` raise :exc:`ShutDown`. Currently blocked callers of :meth:`~Queue.put` will be unblocked and will raise :exc:`ShutDown` in the formerly blocked thread." msgstr "" -#: ../../library/queue.rst:250 -msgid "" -"If *immediate* is false (the default), the queue can be wound down normally " -"with :meth:`~Queue.get` calls to extract tasks that have already been loaded." +msgid "If *immediate* is false (the default), the queue can be wound down normally with :meth:`~Queue.get` calls to extract tasks that have already been loaded." msgstr "" -#: ../../library/queue.rst:254 -msgid "" -"And if :meth:`~Queue.task_done` is called for each remaining task, a " -"pending :meth:`~Queue.join` will be unblocked normally." +msgid "And if :meth:`~Queue.task_done` is called for each remaining task, a pending :meth:`~Queue.join` will be unblocked normally." msgstr "" -#: ../../library/queue.rst:257 -msgid "" -"Once the queue is empty, future calls to :meth:`~Queue.get` will " -"raise :exc:`ShutDown`." +msgid "Once the queue is empty, future calls to :meth:`~Queue.get` will raise :exc:`ShutDown`." msgstr "" -#: ../../library/queue.rst:260 -msgid "" -"If *immediate* is true, the queue is terminated immediately. The queue is " -"drained to be completely empty and the count of unfinished tasks is reduced " -"by the number of tasks drained. If unfinished tasks is zero, callers " -"of :meth:`~Queue.join` are unblocked. Also, blocked callers " -"of :meth:`~Queue.get` are unblocked and will raise :exc:`ShutDown` because " -"the queue is empty." +msgid "If *immediate* is true, the queue is terminated immediately. The queue is drained to be completely empty and the count of unfinished tasks is reduced by the number of tasks drained. If unfinished tasks is zero, callers of :meth:`~Queue.join` are unblocked. Also, blocked callers of :meth:`~Queue.get` are unblocked and will raise :exc:`ShutDown` because the queue is empty." msgstr "" -#: ../../library/queue.rst:268 -msgid "" -"Use caution when using :meth:`~Queue.join` with *immediate* set to true. " -"This unblocks the join even when no work has been done on the tasks, " -"violating the usual invariant for joining a queue." +msgid "Use caution when using :meth:`~Queue.join` with *immediate* set to true. This unblocks the join even when no work has been done on the tasks, violating the usual invariant for joining a queue." msgstr "" -#: ../../library/queue.rst:276 msgid "SimpleQueue Objects" msgstr "" -#: ../../library/queue.rst:278 -msgid "" -":class:`SimpleQueue` objects provide the public methods described below." +msgid ":class:`SimpleQueue` objects provide the public methods described below." msgstr "" -#: ../../library/queue.rst:282 -msgid "" -"Return the approximate size of the queue. Note, qsize() > 0 doesn't " -"guarantee that a subsequent get() will not block." +msgid "Return the approximate size of the queue. Note, qsize() > 0 doesn't guarantee that a subsequent get() will not block." msgstr "" -#: ../../library/queue.rst:288 -msgid "" -"Return ``True`` if the queue is empty, ``False`` otherwise. If empty() " -"returns ``False`` it doesn't guarantee that a subsequent call to get() will " -"not block." +msgid "Return ``True`` if the queue is empty, ``False`` otherwise. If empty() returns ``False`` it doesn't guarantee that a subsequent call to get() will not block." msgstr "" -#: ../../library/queue.rst:295 -msgid "" -"Put *item* into the queue. The method never blocks and always succeeds " -"(except for potential low-level errors such as failure to allocate memory). " -"The optional args *block* and *timeout* are ignored and only provided for " -"compatibility with :meth:`Queue.put`." +msgid "Put *item* into the queue. The method never blocks and always succeeds (except for potential low-level errors such as failure to allocate memory). The optional args *block* and *timeout* are ignored and only provided for compatibility with :meth:`Queue.put`." msgstr "" -#: ../../library/queue.rst:301 -msgid "" -"This method has a C implementation which is reentrant. That is, a ``put()`` " -"or ``get()`` call can be interrupted by another ``put()`` call in the same " -"thread without deadlocking or corrupting internal state inside the queue. " -"This makes it appropriate for use in destructors such as ``__del__`` methods " -"or :mod:`weakref` callbacks." +msgid "This method has a C implementation which is reentrant. That is, a ``put()`` or ``get()`` call can be interrupted by another ``put()`` call in the same thread without deadlocking or corrupting internal state inside the queue. This makes it appropriate for use in destructors such as ``__del__`` methods or :mod:`weakref` callbacks." msgstr "" -#: ../../library/queue.rst:310 -msgid "" -"Equivalent to ``put(item, block=False)``, provided for compatibility " -"with :meth:`Queue.put_nowait`." +msgid "Equivalent to ``put(item, block=False)``, provided for compatibility with :meth:`Queue.put_nowait`." msgstr "" -#: ../../library/queue.rst:331 msgid "Class :class:`multiprocessing.Queue`" msgstr "" -#: ../../library/queue.rst:332 -msgid "" -"A queue class for use in a multi-processing (rather than multi-threading) " -"context." +msgid "A queue class for use in a multi-processing (rather than multi-threading) context." msgstr "" -#: ../../library/queue.rst:335 -msgid "" -":class:`collections.deque` is an alternative implementation of unbounded " -"queues with fast atomic :meth:`~collections.deque.append` " -"and :meth:`~collections.deque.popleft` operations that do not require " -"locking and also support indexing." +msgid ":class:`collections.deque` is an alternative implementation of unbounded queues with fast atomic :meth:`~collections.deque.append` and :meth:`~collections.deque.popleft` operations that do not require locking and also support indexing." msgstr "" diff --git a/library/quopri.po b/library/quopri.po index cf1de011..693d12c3 100644 --- a/library/quopri.po +++ b/library/quopri.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:12+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,80 +23,41 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/quopri.rst:2 msgid ":mod:`!quopri` --- Encode and decode MIME quoted-printable data" msgstr "" -#: ../../library/quopri.rst:7 msgid "**Source code:** :source:`Lib/quopri.py`" msgstr "" -#: ../../library/quopri.rst:15 -msgid "" -"This module performs quoted-printable transport encoding and decoding, as " -"defined in :rfc:`1521`: \"MIME (Multipurpose Internet Mail Extensions) Part " -"One: Mechanisms for Specifying and Describing the Format of Internet Message " -"Bodies\". The quoted-printable encoding is designed for data where there are " -"relatively few nonprintable characters; the base64 encoding scheme available " -"via the :mod:`base64` module is more compact if there are many such " -"characters, as when sending a graphics file." +msgid "This module performs quoted-printable transport encoding and decoding, as defined in :rfc:`1521`: \"MIME (Multipurpose Internet Mail Extensions) Part One: Mechanisms for Specifying and Describing the Format of Internet Message Bodies\". The quoted-printable encoding is designed for data where there are relatively few nonprintable characters; the base64 encoding scheme available via the :mod:`base64` module is more compact if there are many such characters, as when sending a graphics file." msgstr "" -#: ../../library/quopri.rst:25 -msgid "" -"Decode the contents of the *input* file and write the resulting decoded " -"binary data to the *output* file. *input* and *output* must be :term:`binary " -"file objects `. If the optional argument *header* is present " -"and true, underscore will be decoded as space. This is used to decode \"Q\"-" -"encoded headers as described in :rfc:`1522`: \"MIME (Multipurpose Internet " -"Mail Extensions) Part Two: Message Header Extensions for Non-ASCII Text\"." +msgid "Decode the contents of the *input* file and write the resulting decoded binary data to the *output* file. *input* and *output* must be :term:`binary file objects `. If the optional argument *header* is present and true, underscore will be decoded as space. This is used to decode \"Q\"-encoded headers as described in :rfc:`1522`: \"MIME (Multipurpose Internet Mail Extensions) Part Two: Message Header Extensions for Non-ASCII Text\"." msgstr "" -#: ../../library/quopri.rst:35 -msgid "" -"Encode the contents of the *input* file and write the resulting quoted-" -"printable data to the *output* file. *input* and *output* must " -"be :term:`binary file objects `. *quotetabs*, a non-optional " -"flag which controls whether to encode embedded spaces and tabs; when true it " -"encodes such embedded whitespace, and when false it leaves them unencoded. " -"Note that spaces and tabs appearing at the end of lines are always encoded, " -"as per :rfc:`1521`. *header* is a flag which controls if spaces are encoded " -"as underscores as per :rfc:`1522`." +msgid "Encode the contents of the *input* file and write the resulting quoted-printable data to the *output* file. *input* and *output* must be :term:`binary file objects `. *quotetabs*, a non-optional flag which controls whether to encode embedded spaces and tabs; when true it encodes such embedded whitespace, and when false it leaves them unencoded. Note that spaces and tabs appearing at the end of lines are always encoded, as per :rfc:`1521`. *header* is a flag which controls if spaces are encoded as underscores as per :rfc:`1522`." msgstr "" -#: ../../library/quopri.rst:48 -msgid "" -"Like :func:`decode`, except that it accepts a source :class:`bytes` and " -"returns the corresponding decoded :class:`bytes`." +msgid "Like :func:`decode`, except that it accepts a source :class:`bytes` and returns the corresponding decoded :class:`bytes`." msgstr "" -#: ../../library/quopri.rst:54 -msgid "" -"Like :func:`encode`, except that it accepts a source :class:`bytes` and " -"returns the corresponding encoded :class:`bytes`. By default, it sends a " -"``False`` value to *quotetabs* parameter of the :func:`encode` function." +msgid "Like :func:`encode`, except that it accepts a source :class:`bytes` and returns the corresponding encoded :class:`bytes`. By default, it sends a ``False`` value to *quotetabs* parameter of the :func:`encode` function." msgstr "" -#: ../../library/quopri.rst:62 msgid "Module :mod:`base64`" msgstr "" -#: ../../library/quopri.rst:63 msgid "Encode and decode MIME base64 data" msgstr "" -#: ../../library/quopri.rst:9 msgid "quoted-printable" msgstr "" -#: ../../library/quopri.rst:9 msgid "encoding" msgstr "" -#: ../../library/quopri.rst:9 msgid "MIME" msgstr "" -#: ../../library/quopri.rst:9 msgid "quoted-printable encoding" msgstr "" diff --git a/library/random.po b/library/random.po index 3f668899..f62984a8 100644 --- a/library/random.po +++ b/library/random.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:12+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,632 +24,312 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/random.rst:2 msgid ":mod:`!random` --- Generate pseudo-random numbers" msgstr "" -#: ../../library/random.rst:7 msgid "**Source code:** :source:`Lib/random.py`" msgstr "" -#: ../../library/random.rst:11 -msgid "" -"This module implements pseudo-random number generators for various " -"distributions." +msgid "This module implements pseudo-random number generators for various distributions." msgstr "" -#: ../../library/random.rst:14 -msgid "" -"For integers, there is uniform selection from a range. For sequences, there " -"is uniform selection of a random element, a function to generate a random " -"permutation of a list in-place, and a function for random sampling without " -"replacement." +msgid "For integers, there is uniform selection from a range. For sequences, there is uniform selection of a random element, a function to generate a random permutation of a list in-place, and a function for random sampling without replacement." msgstr "" -#: ../../library/random.rst:19 -msgid "" -"On the real line, there are functions to compute uniform, normal (Gaussian), " -"lognormal, negative exponential, gamma, and beta distributions. For " -"generating distributions of angles, the von Mises distribution is available." +msgid "On the real line, there are functions to compute uniform, normal (Gaussian), lognormal, negative exponential, gamma, and beta distributions. For generating distributions of angles, the von Mises distribution is available." msgstr "" -#: ../../library/random.rst:23 -msgid "" -"Almost all module functions depend on the basic function :func:`.random`, " -"which generates a random float uniformly in the half-open range ``0.0 <= X < " -"1.0``. Python uses the Mersenne Twister as the core generator. It produces " -"53-bit precision floats and has a period of 2\\*\\*19937-1. The underlying " -"implementation in C is both fast and threadsafe. The Mersenne Twister is " -"one of the most extensively tested random number generators in existence. " -"However, being completely deterministic, it is not suitable for all " -"purposes, and is completely unsuitable for cryptographic purposes." +msgid "Almost all module functions depend on the basic function :func:`.random`, which generates a random float uniformly in the half-open range ``0.0 <= X < 1.0``. Python uses the Mersenne Twister as the core generator. It produces 53-bit precision floats and has a period of 2\\*\\*19937-1. The underlying implementation in C is both fast and threadsafe. The Mersenne Twister is one of the most extensively tested random number generators in existence. However, being completely deterministic, it is not suitable for all purposes, and is completely unsuitable for cryptographic purposes." msgstr "" -#: ../../library/random.rst:32 -msgid "" -"The functions supplied by this module are actually bound methods of a hidden " -"instance of the :class:`random.Random` class. You can instantiate your own " -"instances of :class:`Random` to get generators that don't share state." +msgid "The functions supplied by this module are actually bound methods of a hidden instance of the :class:`random.Random` class. You can instantiate your own instances of :class:`Random` to get generators that don't share state." msgstr "" -#: ../../library/random.rst:36 -msgid "" -"Class :class:`Random` can also be subclassed if you want to use a different " -"basic generator of your own devising: see the documentation on that class " -"for more details." +msgid "Class :class:`Random` can also be subclassed if you want to use a different basic generator of your own devising: see the documentation on that class for more details." msgstr "" -#: ../../library/random.rst:40 -msgid "" -"The :mod:`!random` module also provides the :class:`SystemRandom` class " -"which uses the system function :func:`os.urandom` to generate random numbers " -"from sources provided by the operating system." +msgid "The :mod:`!random` module also provides the :class:`SystemRandom` class which uses the system function :func:`os.urandom` to generate random numbers from sources provided by the operating system." msgstr "" -#: ../../library/random.rst:46 -msgid "" -"The pseudo-random generators of this module should not be used for security " -"purposes. For security or cryptographic uses, see the :mod:`secrets` module." +msgid "The pseudo-random generators of this module should not be used for security purposes. For security or cryptographic uses, see the :mod:`secrets` module." msgstr "" -#: ../../library/random.rst:52 -msgid "" -"M. Matsumoto and T. Nishimura, \"Mersenne Twister: A 623-dimensionally " -"equidistributed uniform pseudorandom number generator\", ACM Transactions on " -"Modeling and Computer Simulation Vol. 8, No. 1, January pp.3--30 1998." +msgid "M. Matsumoto and T. Nishimura, \"Mersenne Twister: A 623-dimensionally equidistributed uniform pseudorandom number generator\", ACM Transactions on Modeling and Computer Simulation Vol. 8, No. 1, January pp.3--30 1998." msgstr "" -#: ../../library/random.rst:57 -msgid "" -"`Complementary-Multiply-with-Carry recipe `_ for a compatible " -"alternative random number generator with a long period and comparatively " -"simple update operations." +msgid "`Complementary-Multiply-with-Carry recipe `_ for a compatible alternative random number generator with a long period and comparatively simple update operations." msgstr "" -#: ../../library/random.rst:63 -msgid "" -"The global random number generator and instances of :class:`Random` are " -"thread-safe. However, in the free-threaded build, concurrent calls to the " -"global generator or to the same instance of :class:`Random` may encounter " -"contention and poor performance. Consider using separate instances " -"of :class:`Random` per thread instead." +msgid "The global random number generator and instances of :class:`Random` are thread-safe. However, in the free-threaded build, concurrent calls to the global generator or to the same instance of :class:`Random` may encounter contention and poor performance. Consider using separate instances of :class:`Random` per thread instead." msgstr "" -#: ../../library/random.rst:70 msgid "Bookkeeping functions" msgstr "" -#: ../../library/random.rst:74 msgid "Initialize the random number generator." msgstr "" -#: ../../library/random.rst:76 -msgid "" -"If *a* is omitted or ``None``, the current system time is used. If " -"randomness sources are provided by the operating system, they are used " -"instead of the system time (see the :func:`os.urandom` function for details " -"on availability)." +msgid "If *a* is omitted or ``None``, the current system time is used. If randomness sources are provided by the operating system, they are used instead of the system time (see the :func:`os.urandom` function for details on availability)." msgstr "" -#: ../../library/random.rst:81 msgid "If *a* is an int, its absolute value is used directly." msgstr "" -#: ../../library/random.rst:83 -msgid "" -"With version 2 (the default), a :class:`str`, :class:`bytes`, " -"or :class:`bytearray` object gets converted to an :class:`int` and all of " -"its bits are used." +msgid "With version 2 (the default), a :class:`str`, :class:`bytes`, or :class:`bytearray` object gets converted to an :class:`int` and all of its bits are used." msgstr "" -#: ../../library/random.rst:86 -msgid "" -"With version 1 (provided for reproducing random sequences from older " -"versions of Python), the algorithm for :class:`str` and :class:`bytes` " -"generates a narrower range of seeds." +msgid "With version 1 (provided for reproducing random sequences from older versions of Python), the algorithm for :class:`str` and :class:`bytes` generates a narrower range of seeds." msgstr "" -#: ../../library/random.rst:90 -msgid "" -"Moved to the version 2 scheme which uses all of the bits in a string seed." +msgid "Moved to the version 2 scheme which uses all of the bits in a string seed." msgstr "" -#: ../../library/random.rst:93 -msgid "" -"The *seed* must be one of the following types: " -"``None``, :class:`int`, :class:`float`, :class:`str`, :class:`bytes`, " -"or :class:`bytearray`." +msgid "The *seed* must be one of the following types: ``None``, :class:`int`, :class:`float`, :class:`str`, :class:`bytes`, or :class:`bytearray`." msgstr "" -#: ../../library/random.rst:100 -msgid "" -"Return an object capturing the current internal state of the generator. " -"This object can be passed to :func:`setstate` to restore the state." +msgid "Return an object capturing the current internal state of the generator. This object can be passed to :func:`setstate` to restore the state." msgstr "" -#: ../../library/random.rst:106 -msgid "" -"*state* should have been obtained from a previous call to :func:`getstate`, " -"and :func:`setstate` restores the internal state of the generator to what it " -"was at the time :func:`getstate` was called." +msgid "*state* should have been obtained from a previous call to :func:`getstate`, and :func:`setstate` restores the internal state of the generator to what it was at the time :func:`getstate` was called." msgstr "" -#: ../../library/random.rst:112 msgid "Functions for bytes" msgstr "" -#: ../../library/random.rst:116 msgid "Generate *n* random bytes." msgstr "" -#: ../../library/random.rst:118 -msgid "" -"This method should not be used for generating security tokens. " -"Use :func:`secrets.token_bytes` instead." +msgid "This method should not be used for generating security tokens. Use :func:`secrets.token_bytes` instead." msgstr "" -#: ../../library/random.rst:125 msgid "Functions for integers" msgstr "" -#: ../../library/random.rst:130 msgid "Return a randomly selected element from ``range(start, stop, step)``." msgstr "" -#: ../../library/random.rst:132 -msgid "" -"This is roughly equivalent to ``choice(range(start, stop, step))`` but " -"supports arbitrarily large ranges and is optimized for common cases." +msgid "This is roughly equivalent to ``choice(range(start, stop, step))`` but supports arbitrarily large ranges and is optimized for common cases." msgstr "" -#: ../../library/random.rst:135 msgid "The positional argument pattern matches the :func:`range` function." msgstr "" -#: ../../library/random.rst:137 -msgid "" -"Keyword arguments should not be used because they can be interpreted in " -"unexpected ways. For example ``randrange(start=100)`` is interpreted as " -"``randrange(0, 100, 1)``." +msgid "Keyword arguments should not be used because they can be interpreted in unexpected ways. For example ``randrange(start=100)`` is interpreted as ``randrange(0, 100, 1)``." msgstr "" -#: ../../library/random.rst:141 -msgid "" -":meth:`randrange` is more sophisticated about producing equally distributed " -"values. Formerly it used a style like ``int(random()*n)`` which could " -"produce slightly uneven distributions." +msgid ":meth:`randrange` is more sophisticated about producing equally distributed values. Formerly it used a style like ``int(random()*n)`` which could produce slightly uneven distributions." msgstr "" -#: ../../library/random.rst:146 -msgid "" -"Automatic conversion of non-integer types is no longer supported. Calls such " -"as ``randrange(10.0)`` and ``randrange(Fraction(10, 1))`` now raise " -"a :exc:`TypeError`." +msgid "Automatic conversion of non-integer types is no longer supported. Calls such as ``randrange(10.0)`` and ``randrange(Fraction(10, 1))`` now raise a :exc:`TypeError`." msgstr "" -#: ../../library/random.rst:153 -msgid "" -"Return a random integer *N* such that ``a <= N <= b``. Alias for " -"``randrange(a, b+1)``." +msgid "Return a random integer *N* such that ``a <= N <= b``. Alias for ``randrange(a, b+1)``." msgstr "" -#: ../../library/random.rst:158 -msgid "" -"Returns a non-negative Python integer with *k* random bits. This method is " -"supplied with the Mersenne Twister generator and some other generators may " -"also provide it as an optional part of the API. When " -"available, :meth:`getrandbits` enables :meth:`randrange` to handle " -"arbitrarily large ranges." +msgid "Returns a non-negative Python integer with *k* random bits. This method is supplied with the Mersenne Twister generator and some other generators may also provide it as an optional part of the API. When available, :meth:`getrandbits` enables :meth:`randrange` to handle arbitrarily large ranges." msgstr "" -#: ../../library/random.rst:164 msgid "This method now accepts zero for *k*." msgstr "" -#: ../../library/random.rst:169 msgid "Functions for sequences" msgstr "" -#: ../../library/random.rst:173 -msgid "" -"Return a random element from the non-empty sequence *seq*. If *seq* is " -"empty, raises :exc:`IndexError`." +msgid "Return a random element from the non-empty sequence *seq*. If *seq* is empty, raises :exc:`IndexError`." msgstr "" -#: ../../library/random.rst:178 -msgid "" -"Return a *k* sized list of elements chosen from the *population* with " -"replacement. If the *population* is empty, raises :exc:`IndexError`." +msgid "Return a *k* sized list of elements chosen from the *population* with replacement. If the *population* is empty, raises :exc:`IndexError`." msgstr "" -#: ../../library/random.rst:181 -msgid "" -"If a *weights* sequence is specified, selections are made according to the " -"relative weights. Alternatively, if a *cum_weights* sequence is given, the " -"selections are made according to the cumulative weights (perhaps computed " -"using :func:`itertools.accumulate`). For example, the relative weights " -"``[10, 5, 30, 5]`` are equivalent to the cumulative weights ``[10, 15, 45, " -"50]``. Internally, the relative weights are converted to cumulative weights " -"before making selections, so supplying the cumulative weights saves work." +msgid "If a *weights* sequence is specified, selections are made according to the relative weights. Alternatively, if a *cum_weights* sequence is given, the selections are made according to the cumulative weights (perhaps computed using :func:`itertools.accumulate`). For example, the relative weights ``[10, 5, 30, 5]`` are equivalent to the cumulative weights ``[10, 15, 45, 50]``. Internally, the relative weights are converted to cumulative weights before making selections, so supplying the cumulative weights saves work." msgstr "" -#: ../../library/random.rst:190 -msgid "" -"If neither *weights* nor *cum_weights* are specified, selections are made " -"with equal probability. If a weights sequence is supplied, it must be the " -"same length as the *population* sequence. It is a :exc:`TypeError` to " -"specify both *weights* and *cum_weights*." +msgid "If neither *weights* nor *cum_weights* are specified, selections are made with equal probability. If a weights sequence is supplied, it must be the same length as the *population* sequence. It is a :exc:`TypeError` to specify both *weights* and *cum_weights*." msgstr "" -#: ../../library/random.rst:195 -msgid "" -"The *weights* or *cum_weights* can use any numeric type that interoperates " -"with the :class:`float` values returned by :func:`random` (that includes " -"integers, floats, and fractions but excludes decimals). Weights are assumed " -"to be non-negative and finite. A :exc:`ValueError` is raised if all weights " -"are zero." +msgid "The *weights* or *cum_weights* can use any numeric type that interoperates with the :class:`float` values returned by :func:`random` (that includes integers, floats, and fractions but excludes decimals). Weights are assumed to be non-negative and finite. A :exc:`ValueError` is raised if all weights are zero." msgstr "" -#: ../../library/random.rst:201 -msgid "" -"For a given seed, the :func:`choices` function with equal weighting " -"typically produces a different sequence than repeated calls " -"to :func:`choice`. The algorithm used by :func:`choices` uses floating-" -"point arithmetic for internal consistency and speed. The algorithm used " -"by :func:`choice` defaults to integer arithmetic with repeated selections to " -"avoid small biases from round-off error." +msgid "For a given seed, the :func:`choices` function with equal weighting typically produces a different sequence than repeated calls to :func:`choice`. The algorithm used by :func:`choices` uses floating-point arithmetic for internal consistency and speed. The algorithm used by :func:`choice` defaults to integer arithmetic with repeated selections to avoid small biases from round-off error." msgstr "" -#: ../../library/random.rst:210 msgid "Raises a :exc:`ValueError` if all weights are zero." msgstr "" -#: ../../library/random.rst:216 msgid "Shuffle the sequence *x* in place." msgstr "" -#: ../../library/random.rst:218 -msgid "" -"To shuffle an immutable sequence and return a new shuffled list, use " -"``sample(x, k=len(x))`` instead." +msgid "To shuffle an immutable sequence and return a new shuffled list, use ``sample(x, k=len(x))`` instead." msgstr "" -#: ../../library/random.rst:221 -msgid "" -"Note that even for small ``len(x)``, the total number of permutations of *x* " -"can quickly grow larger than the period of most random number generators. " -"This implies that most permutations of a long sequence can never be " -"generated. For example, a sequence of length 2080 is the largest that can " -"fit within the period of the Mersenne Twister random number generator." +msgid "Note that even for small ``len(x)``, the total number of permutations of *x* can quickly grow larger than the period of most random number generators. This implies that most permutations of a long sequence can never be generated. For example, a sequence of length 2080 is the largest that can fit within the period of the Mersenne Twister random number generator." msgstr "" -#: ../../library/random.rst:227 msgid "Removed the optional parameter *random*." msgstr "" -#: ../../library/random.rst:233 -msgid "" -"Return a *k* length list of unique elements chosen from the population " -"sequence. Used for random sampling without replacement." +msgid "Return a *k* length list of unique elements chosen from the population sequence. Used for random sampling without replacement." msgstr "" -#: ../../library/random.rst:236 -msgid "" -"Returns a new list containing elements from the population while leaving the " -"original population unchanged. The resulting list is in selection order so " -"that all sub-slices will also be valid random samples. This allows raffle " -"winners (the sample) to be partitioned into grand prize and second place " -"winners (the subslices)." +msgid "Returns a new list containing elements from the population while leaving the original population unchanged. The resulting list is in selection order so that all sub-slices will also be valid random samples. This allows raffle winners (the sample) to be partitioned into grand prize and second place winners (the subslices)." msgstr "" -#: ../../library/random.rst:242 -msgid "" -"Members of the population need not be :term:`hashable` or unique. If the " -"population contains repeats, then each occurrence is a possible selection in " -"the sample." +msgid "Members of the population need not be :term:`hashable` or unique. If the population contains repeats, then each occurrence is a possible selection in the sample." msgstr "" -#: ../../library/random.rst:245 -msgid "" -"Repeated elements can be specified one at a time or with the optional " -"keyword-only *counts* parameter. For example, ``sample(['red', 'blue'], " -"counts=[4, 2], k=5)`` is equivalent to ``sample(['red', 'red', 'red', 'red', " -"'blue', 'blue'], k=5)``." +msgid "Repeated elements can be specified one at a time or with the optional keyword-only *counts* parameter. For example, ``sample(['red', 'blue'], counts=[4, 2], k=5)`` is equivalent to ``sample(['red', 'red', 'red', 'red', 'blue', 'blue'], k=5)``." msgstr "" -#: ../../library/random.rst:250 -msgid "" -"To choose a sample from a range of integers, use a :func:`range` object as " -"an argument. This is especially fast and space efficient for sampling from " -"a large population: ``sample(range(10000000), k=60)``." +msgid "To choose a sample from a range of integers, use a :func:`range` object as an argument. This is especially fast and space efficient for sampling from a large population: ``sample(range(10000000), k=60)``." msgstr "" -#: ../../library/random.rst:254 -msgid "" -"If the sample size is larger than the population size, a :exc:`ValueError` " -"is raised." +msgid "If the sample size is larger than the population size, a :exc:`ValueError` is raised." msgstr "" -#: ../../library/random.rst:257 msgid "Added the *counts* parameter." msgstr "" -#: ../../library/random.rst:262 -msgid "" -"The *population* must be a sequence. Automatic conversion of sets to lists " -"is no longer supported." +msgid "The *population* must be a sequence. Automatic conversion of sets to lists is no longer supported." msgstr "" -#: ../../library/random.rst:266 msgid "Discrete distributions" msgstr "" -#: ../../library/random.rst:268 msgid "The following function generates a discrete distribution." msgstr "" -#: ../../library/random.rst:272 -msgid "" -"`Binomial distribution `_. Return the number of successes for *n* " -"independent trials with the probability of success in each trial being *p*:" +msgid "`Binomial distribution `_. Return the number of successes for *n* independent trials with the probability of success in each trial being *p*:" msgstr "" -#: ../../library/random.rst:277 msgid "Mathematically equivalent to::" msgstr "" -#: ../../library/random.rst:279 msgid "sum(random() < p for i in range(n))" msgstr "" -#: ../../library/random.rst:281 -msgid "" -"The number of trials *n* should be a non-negative integer. The probability " -"of success *p* should be between ``0.0 <= p <= 1.0``. The result is an " -"integer in the range ``0 <= X <= n``." +msgid "The number of trials *n* should be a non-negative integer. The probability of success *p* should be between ``0.0 <= p <= 1.0``. The result is an integer in the range ``0 <= X <= n``." msgstr "" -#: ../../library/random.rst:291 msgid "Real-valued distributions" msgstr "" -#: ../../library/random.rst:293 -msgid "" -"The following functions generate specific real-valued distributions. " -"Function parameters are named after the corresponding variables in the " -"distribution's equation, as used in common mathematical practice; most of " -"these equations can be found in any statistics text." +msgid "The following functions generate specific real-valued distributions. Function parameters are named after the corresponding variables in the distribution's equation, as used in common mathematical practice; most of these equations can be found in any statistics text." msgstr "" -#: ../../library/random.rst:301 -msgid "" -"Return the next random floating-point number in the range ``0.0 <= X < 1.0``" +msgid "Return the next random floating-point number in the range ``0.0 <= X < 1.0``" msgstr "" -#: ../../library/random.rst:306 -msgid "" -"Return a random floating-point number *N* such that ``a <= N <= b`` for ``a " -"<= b`` and ``b <= N <= a`` for ``b < a``." +msgid "Return a random floating-point number *N* such that ``a <= N <= b`` for ``a <= b`` and ``b <= N <= a`` for ``b < a``." msgstr "" -#: ../../library/random.rst:309 -msgid "" -"The end-point value ``b`` may or may not be included in the range depending " -"on floating-point rounding in the expression ``a + (b-a) * random()``." +msgid "The end-point value ``b`` may or may not be included in the range depending on floating-point rounding in the expression ``a + (b-a) * random()``." msgstr "" -#: ../../library/random.rst:316 -msgid "" -"Return a random floating-point number *N* such that ``low <= N <= high`` and " -"with the specified *mode* between those bounds. The *low* and *high* bounds " -"default to zero and one. The *mode* argument defaults to the midpoint " -"between the bounds, giving a symmetric distribution." +msgid "Return a random floating-point number *N* such that ``low <= N <= high`` and with the specified *mode* between those bounds. The *low* and *high* bounds default to zero and one. The *mode* argument defaults to the midpoint between the bounds, giving a symmetric distribution." msgstr "" -#: ../../library/random.rst:324 -msgid "" -"Beta distribution. Conditions on the parameters are ``alpha > 0`` and " -"``beta > 0``. Returned values range between 0 and 1." +msgid "Beta distribution. Conditions on the parameters are ``alpha > 0`` and ``beta > 0``. Returned values range between 0 and 1." msgstr "" -#: ../../library/random.rst:330 -msgid "" -"Exponential distribution. *lambd* is 1.0 divided by the desired mean. It " -"should be nonzero. (The parameter would be called \"lambda\", but that is a " -"reserved word in Python.) Returned values range from 0 to positive infinity " -"if *lambd* is positive, and from negative infinity to 0 if *lambd* is " -"negative." +msgid "Exponential distribution. *lambd* is 1.0 divided by the desired mean. It should be nonzero. (The parameter would be called \"lambda\", but that is a reserved word in Python.) Returned values range from 0 to positive infinity if *lambd* is positive, and from negative infinity to 0 if *lambd* is negative." msgstr "" -#: ../../library/random.rst:336 msgid "Added the default value for ``lambd``." msgstr "" -#: ../../library/random.rst:342 -msgid "" -"Gamma distribution. (*Not* the gamma function!) The shape and scale " -"parameters, *alpha* and *beta*, must have positive values. (Calling " -"conventions vary and some sources define 'beta' as the inverse of the scale)." +msgid "Gamma distribution. (*Not* the gamma function!) The shape and scale parameters, *alpha* and *beta*, must have positive values. (Calling conventions vary and some sources define 'beta' as the inverse of the scale)." msgstr "" -#: ../../library/random.rst:347 msgid "The probability distribution function is::" msgstr "" -#: ../../library/random.rst:349 msgid "" " x ** (alpha - 1) * math.exp(-x / beta)\n" "pdf(x) = --------------------------------------\n" " math.gamma(alpha) * beta ** alpha" msgstr "" -#: ../../library/random.rst:356 -msgid "" -"Normal distribution, also called the Gaussian distribution. *mu* is the " -"mean, and *sigma* is the standard deviation. This is slightly faster than " -"the :func:`normalvariate` function defined below." +msgid "Normal distribution, also called the Gaussian distribution. *mu* is the mean, and *sigma* is the standard deviation. This is slightly faster than the :func:`normalvariate` function defined below." msgstr "" -#: ../../library/random.rst:361 -msgid "" -"Multithreading note: When two threads call this function simultaneously, it " -"is possible that they will receive the same return value. This can be " -"avoided in three ways. 1) Have each thread use a different instance of the " -"random number generator. 2) Put locks around all calls. 3) Use the slower, " -"but thread-safe :func:`normalvariate` function instead." +msgid "Multithreading note: When two threads call this function simultaneously, it is possible that they will receive the same return value. This can be avoided in three ways. 1) Have each thread use a different instance of the random number generator. 2) Put locks around all calls. 3) Use the slower, but thread-safe :func:`normalvariate` function instead." msgstr "" -#: ../../library/random.rst:368 ../../library/random.rst:384 msgid "*mu* and *sigma* now have default arguments." msgstr "" -#: ../../library/random.rst:374 -msgid "" -"Log normal distribution. If you take the natural logarithm of this " -"distribution, you'll get a normal distribution with mean *mu* and standard " -"deviation *sigma*. *mu* can have any value, and *sigma* must be greater " -"than zero." +msgid "Log normal distribution. If you take the natural logarithm of this distribution, you'll get a normal distribution with mean *mu* and standard deviation *sigma*. *mu* can have any value, and *sigma* must be greater than zero." msgstr "" -#: ../../library/random.rst:382 -msgid "" -"Normal distribution. *mu* is the mean, and *sigma* is the standard " -"deviation." +msgid "Normal distribution. *mu* is the mean, and *sigma* is the standard deviation." msgstr "" -#: ../../library/random.rst:390 -msgid "" -"*mu* is the mean angle, expressed in radians between 0 and 2\\*\\ *pi*, and " -"*kappa* is the concentration parameter, which must be greater than or equal " -"to zero. If *kappa* is equal to zero, this distribution reduces to a " -"uniform random angle over the range 0 to 2\\*\\ *pi*." +msgid "*mu* is the mean angle, expressed in radians between 0 and 2\\*\\ *pi*, and *kappa* is the concentration parameter, which must be greater than or equal to zero. If *kappa* is equal to zero, this distribution reduces to a uniform random angle over the range 0 to 2\\*\\ *pi*." msgstr "" -#: ../../library/random.rst:398 msgid "Pareto distribution. *alpha* is the shape parameter." msgstr "" -#: ../../library/random.rst:403 -msgid "" -"Weibull distribution. *alpha* is the scale parameter and *beta* is the " -"shape parameter." +msgid "Weibull distribution. *alpha* is the scale parameter and *beta* is the shape parameter." msgstr "" -#: ../../library/random.rst:408 msgid "Alternative Generator" msgstr "" -#: ../../library/random.rst:412 -msgid "" -"Class that implements the default pseudo-random number generator used by " -"the :mod:`!random` module." +msgid "Class that implements the default pseudo-random number generator used by the :mod:`!random` module." msgstr "" -#: ../../library/random.rst:415 -msgid "" -"Formerly the *seed* could be any hashable object. Now it is limited to: " -"``None``, :class:`int`, :class:`float`, :class:`str`, :class:`bytes`, " -"or :class:`bytearray`." +msgid "Formerly the *seed* could be any hashable object. Now it is limited to: ``None``, :class:`int`, :class:`float`, :class:`str`, :class:`bytes`, or :class:`bytearray`." msgstr "" -#: ../../library/random.rst:420 -msgid "" -"Subclasses of :class:`!Random` should override the following methods if they " -"wish to make use of a different basic generator:" +msgid "Subclasses of :class:`!Random` should override the following methods if they wish to make use of a different basic generator:" msgstr "" -#: ../../library/random.rst:425 -msgid "" -"Override this method in subclasses to customise the :meth:`~random.seed` " -"behaviour of :class:`!Random` instances." +msgid "Override this method in subclasses to customise the :meth:`~random.seed` behaviour of :class:`!Random` instances." msgstr "" -#: ../../library/random.rst:430 -msgid "" -"Override this method in subclasses to customise the :meth:`~random.getstate` " -"behaviour of :class:`!Random` instances." +msgid "Override this method in subclasses to customise the :meth:`~random.getstate` behaviour of :class:`!Random` instances." msgstr "" -#: ../../library/random.rst:435 -msgid "" -"Override this method in subclasses to customise the :meth:`~random.setstate` " -"behaviour of :class:`!Random` instances." +msgid "Override this method in subclasses to customise the :meth:`~random.setstate` behaviour of :class:`!Random` instances." msgstr "" -#: ../../library/random.rst:440 -msgid "" -"Override this method in subclasses to customise the :meth:`~random.random` " -"behaviour of :class:`!Random` instances." +msgid "Override this method in subclasses to customise the :meth:`~random.random` behaviour of :class:`!Random` instances." msgstr "" -#: ../../library/random.rst:443 -msgid "" -"Optionally, a custom generator subclass can also supply the following method:" +msgid "Optionally, a custom generator subclass can also supply the following method:" msgstr "" -#: ../../library/random.rst:447 -msgid "" -"Override this method in subclasses to customise " -"the :meth:`~random.getrandbits` behaviour of :class:`!Random` instances." +msgid "Override this method in subclasses to customise the :meth:`~random.getrandbits` behaviour of :class:`!Random` instances." msgstr "" -#: ../../library/random.rst:452 -msgid "" -"Override this method in subclasses to customise " -"the :meth:`~random.randbytes` behaviour of :class:`!Random` instances." +msgid "Override this method in subclasses to customise the :meth:`~random.randbytes` behaviour of :class:`!Random` instances." msgstr "" -#: ../../library/random.rst:458 -msgid "" -"Class that uses the :func:`os.urandom` function for generating random " -"numbers from sources provided by the operating system. Not available on all " -"systems. Does not rely on software state, and sequences are not " -"reproducible. Accordingly, the :meth:`seed` method has no effect and is " -"ignored. The :meth:`getstate` and :meth:`setstate` methods " -"raise :exc:`NotImplementedError` if called." +msgid "Class that uses the :func:`os.urandom` function for generating random numbers from sources provided by the operating system. Not available on all systems. Does not rely on software state, and sequences are not reproducible. Accordingly, the :meth:`seed` method has no effect and is ignored. The :meth:`getstate` and :meth:`setstate` methods raise :exc:`NotImplementedError` if called." msgstr "" -#: ../../library/random.rst:467 msgid "Notes on Reproducibility" msgstr "" -#: ../../library/random.rst:469 -msgid "" -"Sometimes it is useful to be able to reproduce the sequences given by a " -"pseudo-random number generator. By reusing a seed value, the same sequence " -"should be reproducible from run to run as long as multiple threads are not " -"running." +msgid "Sometimes it is useful to be able to reproduce the sequences given by a pseudo-random number generator. By reusing a seed value, the same sequence should be reproducible from run to run as long as multiple threads are not running." msgstr "" -#: ../../library/random.rst:473 -msgid "" -"Most of the random module's algorithms and seeding functions are subject to " -"change across Python versions, but two aspects are guaranteed not to change:" +msgid "Most of the random module's algorithms and seeding functions are subject to change across Python versions, but two aspects are guaranteed not to change:" msgstr "" -#: ../../library/random.rst:476 -msgid "" -"If a new seeding method is added, then a backward compatible seeder will be " -"offered." +msgid "If a new seeding method is added, then a backward compatible seeder will be offered." msgstr "" -#: ../../library/random.rst:479 -msgid "" -"The generator's :meth:`~Random.random` method will continue to produce the " -"same sequence when the compatible seeder is given the same seed." +msgid "The generator's :meth:`~Random.random` method will continue to produce the same sequence when the compatible seeder is given the same seed." msgstr "" -#: ../../library/random.rst:485 msgid "Examples" msgstr "" -#: ../../library/random.rst:487 msgid "Basic examples::" msgstr "" -#: ../../library/random.rst:489 msgid "" ">>> random() # Random float: 0.0 <= x < 1.0\n" "0.37444887175646646\n" @@ -657,19 +337,16 @@ msgid "" ">>> uniform(2.5, 10.0) # Random float: 2.5 <= x <= 10.0\n" "3.1800146073117523\n" "\n" -">>> expovariate(1 / 5) # Interval between arrivals averaging " -"5 seconds\n" +">>> expovariate(1 / 5) # Interval between arrivals averaging 5 seconds\n" "5.148957571865031\n" "\n" ">>> randrange(10) # Integer from 0 to 9 inclusive\n" "7\n" "\n" -">>> randrange(0, 101, 2) # Even integer from 0 to 100 " -"inclusive\n" +">>> randrange(0, 101, 2) # Even integer from 0 to 100 inclusive\n" "26\n" "\n" -">>> choice(['win', 'lose', 'draw']) # Single random element from a " -"sequence\n" +">>> choice(['win', 'lose', 'draw']) # Single random element from a sequence\n" "'draw'\n" "\n" ">>> deck = 'ace two three four'.split()\n" @@ -681,11 +358,9 @@ msgid "" "[40, 10, 50, 30]" msgstr "" -#: ../../library/random.rst:515 msgid "Simulations::" msgstr "" -#: ../../library/random.rst:517 msgid "" ">>> # Six roulette wheel spins (weighted sampling with replacement)\n" ">>> choices(['red', 'black', 'green'], [18, 18, 2], k=6)\n" @@ -711,14 +386,9 @@ msgid "" "0.7958" msgstr "" -#: ../../library/random.rst:540 -msgid "" -"Example of `statistical bootstrapping `_ using resampling with replacement to estimate " -"a confidence interval for the mean of a sample::" +msgid "Example of `statistical bootstrapping `_ using resampling with replacement to estimate a confidence interval for the mean of a sample::" msgstr "" -#: ../../library/random.rst:544 msgid "" "# https://www.thoughtco.com/example-of-bootstrapping-3126155\n" "from statistics import fmean as mean\n" @@ -730,15 +400,9 @@ msgid "" " f'interval from {means[5]:.1f} to {means[94]:.1f}')" msgstr "" -#: ../../library/random.rst:553 -msgid "" -"Example of a `resampling permutation test `_ to determine the statistical " -"significance or `p-value `_ of an " -"observed difference between the effects of a drug versus a placebo::" +msgid "Example of a `resampling permutation test `_ to determine the statistical significance or `p-value `_ of an observed difference between the effects of a drug versus a placebo::" msgstr "" -#: ../../library/random.rst:559 msgid "" "# Example from \"Statistics is Easy\" by Dennis Shasha and Manda Wilson\n" "from statistics import fmean as mean\n" @@ -756,22 +420,15 @@ msgid "" " new_diff = mean(combined[:len(drug)]) - mean(combined[len(drug):])\n" " count += (new_diff >= observed_diff)\n" "\n" -"print(f'{n} label reshufflings produced only {count} instances with a " -"difference')\n" -"print(f'at least as extreme as the observed difference of " -"{observed_diff:.1f}.')\n" -"print(f'The one-sided p-value of {count / n:.4f} leads us to reject the " -"null')\n" -"print(f'hypothesis that there is no difference between the drug and the " -"placebo.')" +"print(f'{n} label reshufflings produced only {count} instances with a difference')\n" +"print(f'at least as extreme as the observed difference of {observed_diff:.1f}.')\n" +"print(f'The one-sided p-value of {count / n:.4f} leads us to reject the null')\n" +"print(f'hypothesis that there is no difference between the drug and the placebo.')" msgstr "" -#: ../../library/random.rst:580 -msgid "" -"Simulation of arrival times and service deliveries for a multiserver queue::" +msgid "Simulation of arrival times and service deliveries for a multiserver queue::" msgstr "" -#: ../../library/random.rst:582 msgid "" "from heapq import heapify, heapreplace\n" "from random import expovariate, gauss\n" @@ -791,8 +448,7 @@ msgid "" " next_server_available = servers[0]\n" " wait = max(0.0, next_server_available - arrival_time)\n" " waits.append(wait)\n" -" service_duration = max(0.0, gauss(average_service_time, " -"stdev_service_time))\n" +" service_duration = max(0.0, gauss(average_service_time, stdev_service_time))\n" " service_completed = arrival_time + wait + service_duration\n" " heapreplace(servers, service_completed)\n" "\n" @@ -800,42 +456,21 @@ msgid "" "print('Quartiles:', [round(q, 1) for q in quantiles(waits)])" msgstr "" -#: ../../library/random.rst:609 -msgid "" -"`Statistics for Hackers `_ a " -"video tutorial by `Jake Vanderplas `_ on statistical analysis using just a few fundamental " -"concepts including simulation, sampling, shuffling, and cross-validation." +msgid "`Statistics for Hackers `_ a video tutorial by `Jake Vanderplas `_ on statistical analysis using just a few fundamental concepts including simulation, sampling, shuffling, and cross-validation." msgstr "" -#: ../../library/random.rst:615 -msgid "" -"`Economics Simulation `_ a simulation of a marketplace by `Peter Norvig `_ that shows effective use of many of the tools and " -"distributions provided by this module (gauss, uniform, sample, betavariate, " -"choice, triangular, and randrange)." +msgid "`Economics Simulation `_ a simulation of a marketplace by `Peter Norvig `_ that shows effective use of many of the tools and distributions provided by this module (gauss, uniform, sample, betavariate, choice, triangular, and randrange)." msgstr "" -#: ../../library/random.rst:622 -msgid "" -"`A Concrete Introduction to Probability (using Python) `_ a tutorial by `Peter Norvig " -"`_ covering the basics of probability theory, " -"how to write simulations, and how to perform data analysis using Python." +msgid "`A Concrete Introduction to Probability (using Python) `_ a tutorial by `Peter Norvig `_ covering the basics of probability theory, how to write simulations, and how to perform data analysis using Python." msgstr "" -#: ../../library/random.rst:630 msgid "Recipes" msgstr "" -#: ../../library/random.rst:632 -msgid "" -"These recipes show how to efficiently make random selections from the " -"combinatoric iterators in the :mod:`itertools` module:" +msgid "These recipes show how to efficiently make random selections from the combinatoric iterators in the :mod:`itertools` module:" msgstr "" -#: ../../library/random.rst:635 msgid "" "import random\n" "\n" @@ -858,18 +493,15 @@ msgid "" " return tuple(pool[i] for i in indices)\n" "\n" "def random_combination_with_replacement(iterable, r):\n" -" \"Choose r elements with replacement. Order the result to match the " -"iterable.\"\n" -" # Result will be in " -"set(itertools.combinations_with_replacement(iterable, r)).\n" +" \"Choose r elements with replacement. Order the result to match the iterable.\"\n" +" # Result will be in set(itertools.combinations_with_replacement(iterable, r)).\n" " pool = tuple(iterable)\n" " n = len(pool)\n" " indices = sorted(random.choices(range(n), k=r))\n" " return tuple(pool[i] for i in indices)\n" "\n" "def random_derangement(iterable):\n" -" \"Choose a permutation where no element stays in its original position." -"\"\n" +" \"Choose a permutation where no element stays in its original position.\"\n" " seq = tuple(iterable)\n" " if len(seq) < 2:\n" " if not seq:\n" @@ -883,25 +515,12 @@ msgid "" " return tuple([seq[i] for i in perm])" msgstr "" -#: ../../library/random.rst:750 -msgid "" -"The default :func:`.random` returns multiples of 2⁻⁵³ in the range *0.0 ≤ x " -"< 1.0*. All such numbers are evenly spaced and are exactly representable as " -"Python floats. However, many other representable floats in that interval " -"are not possible selections. For example, ``0.05954861408025609`` isn't an " -"integer multiple of 2⁻⁵³." +msgid "The default :func:`.random` returns multiples of 2⁻⁵³ in the range *0.0 ≤ x < 1.0*. All such numbers are evenly spaced and are exactly representable as Python floats. However, many other representable floats in that interval are not possible selections. For example, ``0.05954861408025609`` isn't an integer multiple of 2⁻⁵³." msgstr "" -#: ../../library/random.rst:756 -msgid "" -"The following recipe takes a different approach. All floats in the interval " -"are possible selections. The mantissa comes from a uniform distribution of " -"integers in the range *2⁵² ≤ mantissa < 2⁵³*. The exponent comes from a " -"geometric distribution where exponents smaller than *-53* occur half as " -"often as the next larger exponent." +msgid "The following recipe takes a different approach. All floats in the interval are possible selections. The mantissa comes from a uniform distribution of integers in the range *2⁵² ≤ mantissa < 2⁵³*. The exponent comes from a geometric distribution where exponents smaller than *-53* occur half as often as the next larger exponent." msgstr "" -#: ../../library/random.rst:764 msgid "" "from random import Random\n" "from math import ldexp\n" @@ -918,13 +537,9 @@ msgid "" " return ldexp(mantissa, exponent)" msgstr "" -#: ../../library/random.rst:778 -msgid "" -"All :ref:`real valued distributions ` in the " -"class will use the new method::" +msgid "All :ref:`real valued distributions ` in the class will use the new method::" msgstr "" -#: ../../library/random.rst:781 msgid "" ">>> fr = FullRandom()\n" ">>> fr.random()\n" @@ -933,88 +548,57 @@ msgid "" "8.87925541791544" msgstr "" -#: ../../library/random.rst:787 -msgid "" -"The recipe is conceptually equivalent to an algorithm that chooses from all " -"the multiples of 2⁻¹⁰⁷⁴ in the range *0.0 ≤ x < 1.0*. All such numbers are " -"evenly spaced, but most have to be rounded down to the nearest representable " -"Python float. (The value 2⁻¹⁰⁷⁴ is the smallest positive unnormalized float " -"and is equal to ``math.ulp(0.0)``.)" +msgid "The recipe is conceptually equivalent to an algorithm that chooses from all the multiples of 2⁻¹⁰⁷⁴ in the range *0.0 ≤ x < 1.0*. All such numbers are evenly spaced, but most have to be rounded down to the nearest representable Python float. (The value 2⁻¹⁰⁷⁴ is the smallest positive unnormalized float and is equal to ``math.ulp(0.0)``.)" msgstr "" -#: ../../library/random.rst:796 -msgid "" -"`Generating Pseudo-random Floating-Point Values `_ a paper by Allen B. Downey describing " -"ways to generate more fine-grained floats than normally generated " -"by :func:`.random`." +msgid "`Generating Pseudo-random Floating-Point Values `_ a paper by Allen B. Downey describing ways to generate more fine-grained floats than normally generated by :func:`.random`." msgstr "" -#: ../../library/random.rst:804 msgid "Command-line usage" msgstr "" -#: ../../library/random.rst:808 msgid "The :mod:`!random` module can be executed from the command line." msgstr "" -#: ../../library/random.rst:810 -msgid "" -"python -m random [-h] [-c CHOICE [CHOICE ...] | -i N | -f N] [input ...]" +msgid "python -m random [-h] [-c CHOICE [CHOICE ...] | -i N | -f N] [input ...]" msgstr "" -#: ../../library/random.rst:814 msgid "The following options are accepted:" msgstr "" -#: ../../library/random.rst:820 msgid "Show the help message and exit." msgstr "" -#: ../../library/random.rst:825 msgid "Print a random choice, using :meth:`choice`." msgstr "" -#: ../../library/random.rst:830 -msgid "" -"Print a random integer between 1 and N inclusive, using :meth:`randint`." +msgid "Print a random integer between 1 and N inclusive, using :meth:`randint`." msgstr "" -#: ../../library/random.rst:835 -msgid "" -"Print a random floating-point number between 0 and N inclusive, " -"using :meth:`uniform`." +msgid "Print a random floating-point number between 0 and N inclusive, using :meth:`uniform`." msgstr "" -#: ../../library/random.rst:838 msgid "If no options are given, the output depends on the input:" msgstr "" -#: ../../library/random.rst:840 msgid "String or multiple: same as :option:`--choice`." msgstr "" -#: ../../library/random.rst:841 msgid "Integer: same as :option:`--integer`." msgstr "" -#: ../../library/random.rst:842 msgid "Float: same as :option:`--float`." msgstr "" -#: ../../library/random.rst:847 msgid "Command-line example" msgstr "" -#: ../../library/random.rst:849 msgid "Here are some examples of the :mod:`!random` command-line interface:" msgstr "" -#: ../../library/random.rst:851 msgid "" "$ # Choose one at random\n" -"$ python -m random egg bacon sausage spam \"Lobster Thermidor aux crevettes " -"with a Mornay sauce\"\n" +"$ python -m random egg bacon sausage spam \"Lobster Thermidor aux crevettes with a Mornay sauce\"\n" "Lobster Thermidor aux crevettes with a Mornay sauce\n" "\n" "$ # Random integer\n" @@ -1026,8 +610,7 @@ msgid "" "1.7080016272295635\n" "\n" "$ # With explicit arguments\n" -"$ python -m random --choice egg bacon sausage spam \"Lobster Thermidor aux " -"crevettes with a Mornay sauce\"\n" +"$ python -m random --choice egg bacon sausage spam \"Lobster Thermidor aux crevettes with a Mornay sauce\"\n" "egg\n" "\n" "$ python -m random --integer 6\n" diff --git a/library/re.po b/library/re.po index 45aa9d61..c87aef03 100644 --- a/library/re.po +++ b/library/re.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:12+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,1182 +24,575 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/re.rst:2 msgid ":mod:`!re` --- Regular expression operations" msgstr "" -#: ../../library/re.rst:10 msgid "**Source code:** :source:`Lib/re/`" msgstr "" -#: ../../library/re.rst:14 -msgid "" -"This module provides regular expression matching operations similar to those " -"found in Perl." +msgid "This module provides regular expression matching operations similar to those found in Perl." msgstr "" -#: ../../library/re.rst:17 -msgid "" -"Both patterns and strings to be searched can be Unicode strings " -"(:class:`str`) as well as 8-bit strings (:class:`bytes`). However, Unicode " -"strings and 8-bit strings cannot be mixed: that is, you cannot match a " -"Unicode string with a bytes pattern or vice-versa; similarly, when asking " -"for a substitution, the replacement string must be of the same type as both " -"the pattern and the search string." +msgid "Both patterns and strings to be searched can be Unicode strings (:class:`str`) as well as 8-bit strings (:class:`bytes`). However, Unicode strings and 8-bit strings cannot be mixed: that is, you cannot match a Unicode string with a bytes pattern or vice-versa; similarly, when asking for a substitution, the replacement string must be of the same type as both the pattern and the search string." msgstr "" -#: ../../library/re.rst:24 -msgid "" -"Regular expressions use the backslash character (``'\\'``) to indicate " -"special forms or to allow special characters to be used without invoking " -"their special meaning. This collides with Python's usage of the same " -"character for the same purpose in string literals; for example, to match a " -"literal backslash, one might have to write ``'\\\\\\\\'`` as the pattern " -"string, because the regular expression must be ``\\\\``, and each backslash " -"must be expressed as ``\\\\`` inside a regular Python string literal. Also, " -"please note that any invalid escape sequences in Python's usage of the " -"backslash in string literals now generate a :exc:`SyntaxWarning` and in the " -"future this will become a :exc:`SyntaxError`. This behaviour will happen " -"even if it is a valid escape sequence for a regular expression." -msgstr "" - -#: ../../library/re.rst:36 -msgid "" -"The solution is to use Python's raw string notation for regular expression " -"patterns; backslashes are not handled in any special way in a string literal " -"prefixed with ``'r'``. So ``r\"\\n\"`` is a two-character string containing " -"``'\\'`` and ``'n'``, while ``\"\\n\"`` is a one-character string containing " -"a newline. Usually patterns will be expressed in Python code using this raw " -"string notation." +msgid "Regular expressions use the backslash character (``'\\'``) to indicate special forms or to allow special characters to be used without invoking their special meaning. This collides with Python's usage of the same character for the same purpose in string literals; for example, to match a literal backslash, one might have to write ``'\\\\\\\\'`` as the pattern string, because the regular expression must be ``\\\\``, and each backslash must be expressed as ``\\\\`` inside a regular Python string literal. Also, please note that any invalid escape sequences in Python's usage of the backslash in string literals now generate a :exc:`SyntaxWarning` and in the future this will become a :exc:`SyntaxError`. This behaviour will happen even if it is a valid escape sequence for a regular expression." msgstr "" -#: ../../library/re.rst:43 -msgid "" -"It is important to note that most regular expression operations are " -"available as module-level functions and methods on :ref:`compiled regular " -"expressions `. The functions are shortcuts that don't require " -"you to compile a regex object first, but miss some fine-tuning parameters." +msgid "The solution is to use Python's raw string notation for regular expression patterns; backslashes are not handled in any special way in a string literal prefixed with ``'r'``. So ``r\"\\n\"`` is a two-character string containing ``'\\'`` and ``'n'``, while ``\"\\n\"`` is a one-character string containing a newline. Usually patterns will be expressed in Python code using this raw string notation." msgstr "" -#: ../../library/re.rst:51 -msgid "" -"The third-party :pypi:`regex` module, which has an API compatible with the " -"standard library :mod:`!re` module, but offers additional functionality and " -"a more thorough Unicode support." +msgid "It is important to note that most regular expression operations are available as module-level functions and methods on :ref:`compiled regular expressions `. The functions are shortcuts that don't require you to compile a regex object first, but miss some fine-tuning parameters." +msgstr "" + +msgid "The third-party :pypi:`regex` module, which has an API compatible with the standard library :mod:`!re` module, but offers additional functionality and a more thorough Unicode support." msgstr "" -#: ../../library/re.rst:59 msgid "Regular Expression Syntax" msgstr "" -#: ../../library/re.rst:61 -msgid "" -"A regular expression (or RE) specifies a set of strings that matches it; the " -"functions in this module let you check if a particular string matches a " -"given regular expression (or if a given regular expression matches a " -"particular string, which comes down to the same thing)." +msgid "A regular expression (or RE) specifies a set of strings that matches it; the functions in this module let you check if a particular string matches a given regular expression (or if a given regular expression matches a particular string, which comes down to the same thing)." msgstr "" -#: ../../library/re.rst:66 -msgid "" -"Regular expressions can be concatenated to form new regular expressions; if " -"*A* and *B* are both regular expressions, then *AB* is also a regular " -"expression. In general, if a string *p* matches *A* and another string *q* " -"matches *B*, the string *pq* will match AB. This holds unless *A* or *B* " -"contain low precedence operations; boundary conditions between *A* and *B*; " -"or have numbered group references. Thus, complex expressions can easily be " -"constructed from simpler primitive expressions like the ones described " -"here. For details of the theory and implementation of regular expressions, " -"consult the Friedl book [Frie09]_, or almost any textbook about compiler " -"construction." -msgstr "" - -#: ../../library/re.rst:76 -msgid "" -"A brief explanation of the format of regular expressions follows. For " -"further information and a gentler presentation, consult the :ref:`regex-" -"howto`." +msgid "Regular expressions can be concatenated to form new regular expressions; if *A* and *B* are both regular expressions, then *AB* is also a regular expression. In general, if a string *p* matches *A* and another string *q* matches *B*, the string *pq* will match AB. This holds unless *A* or *B* contain low precedence operations; boundary conditions between *A* and *B*; or have numbered group references. Thus, complex expressions can easily be constructed from simpler primitive expressions like the ones described here. For details of the theory and implementation of regular expressions, consult the Friedl book [Frie09]_, or almost any textbook about compiler construction." msgstr "" -#: ../../library/re.rst:79 -msgid "" -"Regular expressions can contain both special and ordinary characters. Most " -"ordinary characters, like ``'A'``, ``'a'``, or ``'0'``, are the simplest " -"regular expressions; they simply match themselves. You can concatenate " -"ordinary characters, so ``last`` matches the string ``'last'``. (In the " -"rest of this section, we'll write RE's in ``this special style``, usually " -"without quotes, and strings to be matched ``'in single quotes'``.)" +msgid "A brief explanation of the format of regular expressions follows. For further information and a gentler presentation, consult the :ref:`regex-howto`." msgstr "" -#: ../../library/re.rst:86 -msgid "" -"Some characters, like ``'|'`` or ``'('``, are special. Special characters " -"either stand for classes of ordinary characters, or affect how the regular " -"expressions around them are interpreted." +msgid "Regular expressions can contain both special and ordinary characters. Most ordinary characters, like ``'A'``, ``'a'``, or ``'0'``, are the simplest regular expressions; they simply match themselves. You can concatenate ordinary characters, so ``last`` matches the string ``'last'``. (In the rest of this section, we'll write RE's in ``this special style``, usually without quotes, and strings to be matched ``'in single quotes'``.)" msgstr "" -#: ../../library/re.rst:90 -msgid "" -"Repetition operators or quantifiers (``*``, ``+``, ``?``, ``{m,n}``, etc) " -"cannot be directly nested. This avoids ambiguity with the non-greedy " -"modifier suffix ``?``, and with other modifiers in other implementations. To " -"apply a second repetition to an inner repetition, parentheses may be used. " -"For example, the expression ``(?:a{6})*`` matches any multiple of six " -"``'a'`` characters." +msgid "Some characters, like ``'|'`` or ``'('``, are special. Special characters either stand for classes of ordinary characters, or affect how the regular expressions around them are interpreted." +msgstr "" + +msgid "Repetition operators or quantifiers (``*``, ``+``, ``?``, ``{m,n}``, etc) cannot be directly nested. This avoids ambiguity with the non-greedy modifier suffix ``?``, and with other modifiers in other implementations. To apply a second repetition to an inner repetition, parentheses may be used. For example, the expression ``(?:a{6})*`` matches any multiple of six ``'a'`` characters." msgstr "" -#: ../../library/re.rst:97 msgid "The special characters are:" msgstr "" -#: ../../library/re.rst:101 ../../library/re.rst:1670 msgid "``.``" msgstr "" -#: ../../library/re.rst:102 -msgid "" -"(Dot.) In the default mode, this matches any character except a newline. " -"If the :const:`DOTALL` flag has been specified, this matches any character " -"including a newline. ``(?s:.)`` matches any character regardless of flags." +msgid "(Dot.) In the default mode, this matches any character except a newline. If the :const:`DOTALL` flag has been specified, this matches any character including a newline. ``(?s:.)`` matches any character regardless of flags." msgstr "" -#: ../../library/re.rst:108 msgid "``^``" msgstr "" -#: ../../library/re.rst:109 -msgid "" -"(Caret.) Matches the start of the string, and in :const:`MULTILINE` mode " -"also matches immediately after each newline." +msgid "(Caret.) Matches the start of the string, and in :const:`MULTILINE` mode also matches immediately after each newline." msgstr "" -#: ../../library/re.rst:114 msgid "``$``" msgstr "" -#: ../../library/re.rst:115 -msgid "" -"Matches the end of the string or just before the newline at the end of the " -"string, and in :const:`MULTILINE` mode also matches before a newline. " -"``foo`` matches both 'foo' and 'foobar', while the regular expression " -"``foo$`` matches only 'foo'. More interestingly, searching for ``foo.$`` in " -"``'foo1\\nfoo2\\n'`` matches 'foo2' normally, but 'foo1' " -"in :const:`MULTILINE` mode; searching for a single ``$`` in ``'foo\\n'`` " -"will find two (empty) matches: one just before the newline, and one at the " -"end of the string." +msgid "Matches the end of the string or just before the newline at the end of the string, and in :const:`MULTILINE` mode also matches before a newline. ``foo`` matches both 'foo' and 'foobar', while the regular expression ``foo$`` matches only 'foo'. More interestingly, searching for ``foo.$`` in ``'foo1\\nfoo2\\n'`` matches 'foo2' normally, but 'foo1' in :const:`MULTILINE` mode; searching for a single ``$`` in ``'foo\\n'`` will find two (empty) matches: one just before the newline, and one at the end of the string." msgstr "" -#: ../../library/re.rst:125 msgid "``*``" msgstr "" -#: ../../library/re.rst:126 -msgid "" -"Causes the resulting RE to match 0 or more repetitions of the preceding RE, " -"as many repetitions as are possible. ``ab*`` will match 'a', 'ab', or 'a' " -"followed by any number of 'b's." +msgid "Causes the resulting RE to match 0 or more repetitions of the preceding RE, as many repetitions as are possible. ``ab*`` will match 'a', 'ab', or 'a' followed by any number of 'b's." msgstr "" -#: ../../library/re.rst:132 msgid "``+``" msgstr "" -#: ../../library/re.rst:133 -msgid "" -"Causes the resulting RE to match 1 or more repetitions of the preceding RE. " -"``ab+`` will match 'a' followed by any non-zero number of 'b's; it will not " -"match just 'a'." +msgid "Causes the resulting RE to match 1 or more repetitions of the preceding RE. ``ab+`` will match 'a' followed by any non-zero number of 'b's; it will not match just 'a'." msgstr "" -#: ../../library/re.rst:139 msgid "``?``" msgstr "" -#: ../../library/re.rst:140 -msgid "" -"Causes the resulting RE to match 0 or 1 repetitions of the preceding RE. " -"``ab?`` will match either 'a' or 'ab'." +msgid "Causes the resulting RE to match 0 or 1 repetitions of the preceding RE. ``ab?`` will match either 'a' or 'ab'." msgstr "" -#: ../../library/re.rst:148 msgid "``*?``, ``+?``, ``??``" msgstr "" -#: ../../library/re.rst:149 -msgid "" -"The ``'*'``, ``'+'``, and ``'?'`` quantifiers are all :dfn:`greedy`; they " -"match as much text as possible. Sometimes this behaviour isn't desired; if " -"the RE ``<.*>`` is matched against ``' b '``, it will match the entire " -"string, and not just ``''``. Adding ``?`` after the quantifier makes it " -"perform the match in :dfn:`non-greedy` or :dfn:`minimal` fashion; as *few* " -"characters as possible will be matched. Using the RE ``<.*?>`` will match " -"only ``''``." +msgid "The ``'*'``, ``'+'``, and ``'?'`` quantifiers are all :dfn:`greedy`; they match as much text as possible. Sometimes this behaviour isn't desired; if the RE ``<.*>`` is matched against ``' b '``, it will match the entire string, and not just ``''``. Adding ``?`` after the quantifier makes it perform the match in :dfn:`non-greedy` or :dfn:`minimal` fashion; as *few* characters as possible will be matched. Using the RE ``<.*?>`` will match only ``''``." msgstr "" -#: ../../library/re.rst:162 msgid "``*+``, ``++``, ``?+``" msgstr "" -#: ../../library/re.rst:163 -msgid "" -"Like the ``'*'``, ``'+'``, and ``'?'`` quantifiers, those where ``'+'`` is " -"appended also match as many times as possible. However, unlike the true " -"greedy quantifiers, these do not allow back-tracking when the expression " -"following it fails to match. These are known as :dfn:`possessive` " -"quantifiers. For example, ``a*a`` will match ``'aaaa'`` because the ``a*`` " -"will match all 4 ``'a'``\\ s, but, when the final ``'a'`` is encountered, " -"the expression is backtracked so that in the end the ``a*`` ends up matching " -"3 ``'a'``\\ s total, and the fourth ``'a'`` is matched by the final ``'a'``. " -"However, when ``a*+a`` is used to match ``'aaaa'``, the ``a*+`` will match " -"all 4 ``'a'``, but when the final ``'a'`` fails to find any more characters " -"to match, the expression cannot be backtracked and will thus fail to match. " -"``x*+``, ``x++`` and ``x?+`` are equivalent to ``(?>x*)``, ``(?>x+)`` and " -"``(?>x?)`` correspondingly." -msgstr "" - -#: ../../library/re.rst:184 +msgid "Like the ``'*'``, ``'+'``, and ``'?'`` quantifiers, those where ``'+'`` is appended also match as many times as possible. However, unlike the true greedy quantifiers, these do not allow back-tracking when the expression following it fails to match. These are known as :dfn:`possessive` quantifiers. For example, ``a*a`` will match ``'aaaa'`` because the ``a*`` will match all 4 ``'a'``\\ s, but, when the final ``'a'`` is encountered, the expression is backtracked so that in the end the ``a*`` ends up matching 3 ``'a'``\\ s total, and the fourth ``'a'`` is matched by the final ``'a'``. However, when ``a*+a`` is used to match ``'aaaa'``, the ``a*+`` will match all 4 ``'a'``, but when the final ``'a'`` fails to find any more characters to match, the expression cannot be backtracked and will thus fail to match. ``x*+``, ``x++`` and ``x?+`` are equivalent to ``(?>x*)``, ``(?>x+)`` and ``(?>x?)`` correspondingly." +msgstr "" + msgid "``{m}``" msgstr "" -#: ../../library/re.rst:185 -msgid "" -"Specifies that exactly *m* copies of the previous RE should be matched; " -"fewer matches cause the entire RE not to match. For example, ``a{6}`` will " -"match exactly six ``'a'`` characters, but not five." +msgid "Specifies that exactly *m* copies of the previous RE should be matched; fewer matches cause the entire RE not to match. For example, ``a{6}`` will match exactly six ``'a'`` characters, but not five." msgstr "" -#: ../../library/re.rst:189 msgid "``{m,n}``" msgstr "" -#: ../../library/re.rst:190 -msgid "" -"Causes the resulting RE to match from *m* to *n* repetitions of the " -"preceding RE, attempting to match as many repetitions as possible. For " -"example, ``a{3,5}`` will match from 3 to 5 ``'a'`` characters. Omitting *m* " -"specifies a lower bound of zero, and omitting *n* specifies an infinite " -"upper bound. As an example, ``a{4,}b`` will match ``'aaaab'`` or a thousand " -"``'a'`` characters followed by a ``'b'``, but not ``'aaab'``. The comma may " -"not be omitted or the modifier would be confused with the previously " -"described form." +msgid "Causes the resulting RE to match from *m* to *n* repetitions of the preceding RE, attempting to match as many repetitions as possible. For example, ``a{3,5}`` will match from 3 to 5 ``'a'`` characters. Omitting *m* specifies a lower bound of zero, and omitting *n* specifies an infinite upper bound. As an example, ``a{4,}b`` will match ``'aaaab'`` or a thousand ``'a'`` characters followed by a ``'b'``, but not ``'aaab'``. The comma may not be omitted or the modifier would be confused with the previously described form." msgstr "" -#: ../../library/re.rst:198 msgid "``{m,n}?``" msgstr "" -#: ../../library/re.rst:199 -msgid "" -"Causes the resulting RE to match from *m* to *n* repetitions of the " -"preceding RE, attempting to match as *few* repetitions as possible. This is " -"the non-greedy version of the previous quantifier. For example, on the 6-" -"character string ``'aaaaaa'``, ``a{3,5}`` will match 5 ``'a'`` characters, " -"while ``a{3,5}?`` will only match 3 characters." +msgid "Causes the resulting RE to match from *m* to *n* repetitions of the preceding RE, attempting to match as *few* repetitions as possible. This is the non-greedy version of the previous quantifier. For example, on the 6-character string ``'aaaaaa'``, ``a{3,5}`` will match 5 ``'a'`` characters, while ``a{3,5}?`` will only match 3 characters." msgstr "" -#: ../../library/re.rst:205 msgid "``{m,n}+``" msgstr "" -#: ../../library/re.rst:206 -msgid "" -"Causes the resulting RE to match from *m* to *n* repetitions of the " -"preceding RE, attempting to match as many repetitions as possible *without* " -"establishing any backtracking points. This is the possessive version of the " -"quantifier above. For example, on the 6-character string ``'aaaaaa'``, " -"``a{3,5}+aa`` attempt to match 5 ``'a'`` characters, then, requiring 2 more " -"``'a'``\\ s, will need more characters than available and thus fail, while " -"``a{3,5}aa`` will match with ``a{3,5}`` capturing 5, then 4 ``'a'``\\ s by " -"backtracking and then the final 2 ``'a'``\\ s are matched by the final " -"``aa`` in the pattern. ``x{m,n}+`` is equivalent to ``(?>x{m,n})``." -msgstr "" - -#: ../../library/re.rst:222 +msgid "Causes the resulting RE to match from *m* to *n* repetitions of the preceding RE, attempting to match as many repetitions as possible *without* establishing any backtracking points. This is the possessive version of the quantifier above. For example, on the 6-character string ``'aaaaaa'``, ``a{3,5}+aa`` attempt to match 5 ``'a'`` characters, then, requiring 2 more ``'a'``\\ s, will need more characters than available and thus fail, while ``a{3,5}aa`` will match with ``a{3,5}`` capturing 5, then 4 ``'a'``\\ s by backtracking and then the final 2 ``'a'``\\ s are matched by the final ``aa`` in the pattern. ``x{m,n}+`` is equivalent to ``(?>x{m,n})``." +msgstr "" + msgid "``\\``" msgstr "" -#: ../../library/re.rst:223 -msgid "" -"Either escapes special characters (permitting you to match characters like " -"``'*'``, ``'?'``, and so forth), or signals a special sequence; special " -"sequences are discussed below." +msgid "Either escapes special characters (permitting you to match characters like ``'*'``, ``'?'``, and so forth), or signals a special sequence; special sequences are discussed below." msgstr "" -#: ../../library/re.rst:227 -msgid "" -"If you're not using a raw string to express the pattern, remember that " -"Python also uses the backslash as an escape sequence in string literals; if " -"the escape sequence isn't recognized by Python's parser, the backslash and " -"subsequent character are included in the resulting string. However, if " -"Python would recognize the resulting sequence, the backslash should be " -"repeated twice. This is complicated and hard to understand, so it's highly " -"recommended that you use raw strings for all but the simplest expressions." +msgid "If you're not using a raw string to express the pattern, remember that Python also uses the backslash as an escape sequence in string literals; if the escape sequence isn't recognized by Python's parser, the backslash and subsequent character are included in the resulting string. However, if Python would recognize the resulting sequence, the backslash should be repeated twice. This is complicated and hard to understand, so it's highly recommended that you use raw strings for all but the simplest expressions." msgstr "" -#: ../../library/re.rst:238 msgid "``[]``" msgstr "" -#: ../../library/re.rst:239 msgid "Used to indicate a set of characters. In a set:" msgstr "" -#: ../../library/re.rst:241 -msgid "" -"Characters can be listed individually, e.g. ``[amk]`` will match ``'a'``, " -"``'m'``, or ``'k'``." +msgid "Characters can be listed individually, e.g. ``[amk]`` will match ``'a'``, ``'m'``, or ``'k'``." msgstr "" -#: ../../library/re.rst:246 -msgid "" -"Ranges of characters can be indicated by giving two characters and " -"separating them by a ``'-'``, for example ``[a-z]`` will match any lowercase " -"ASCII letter, ``[0-5][0-9]`` will match all the two-digits numbers from " -"``00`` to ``59``, and ``[0-9A-Fa-f]`` will match any hexadecimal digit. If " -"``-`` is escaped (e.g. ``[a\\-z]``) or if it's placed as the first or last " -"character (e.g. ``[-a]`` or ``[a-]``), it will match a literal ``'-'``." +msgid "Ranges of characters can be indicated by giving two characters and separating them by a ``'-'``, for example ``[a-z]`` will match any lowercase ASCII letter, ``[0-5][0-9]`` will match all the two-digits numbers from ``00`` to ``59``, and ``[0-9A-Fa-f]`` will match any hexadecimal digit. If ``-`` is escaped (e.g. ``[a\\-z]``) or if it's placed as the first or last character (e.g. ``[-a]`` or ``[a-]``), it will match a literal ``'-'``." msgstr "" -#: ../../library/re.rst:253 -msgid "" -"Special characters except backslash lose their special meaning inside sets. " -"For example, ``[(+*)]`` will match any of the literal characters ``'('``, " -"``'+'``, ``'*'``, or ``')'``." +msgid "Special characters except backslash lose their special meaning inside sets. For example, ``[(+*)]`` will match any of the literal characters ``'('``, ``'+'``, ``'*'``, or ``')'``." msgstr "" -#: ../../library/re.rst:260 -msgid "" -"Backslash either escapes characters which have special meaning in a set such " -"as ``'-'``, ``']'``, ``'^'`` and ``'\\\\'`` itself or signals a special " -"sequence which represents a single character such as ``\\xa0`` or ``\\n`` or " -"a character class such as ``\\w`` or ``\\S`` (defined below). Note that " -"``\\b`` represents a single \"backspace\" character, not a word boundary as " -"outside a set, and numeric escapes such as ``\\1`` are always octal escapes, " -"not group references. Special sequences which do not match a single " -"character such as ``\\A`` and ``\\z`` are not allowed." +msgid "Backslash either escapes characters which have special meaning in a set such as ``'-'``, ``']'``, ``'^'`` and ``'\\\\'`` itself or signals a special sequence which represents a single character such as ``\\xa0`` or ``\\n`` or a character class such as ``\\w`` or ``\\S`` (defined below). Note that ``\\b`` represents a single \"backspace\" character, not a word boundary as outside a set, and numeric escapes such as ``\\1`` are always octal escapes, not group references. Special sequences which do not match a single character such as ``\\A`` and ``\\z`` are not allowed." msgstr "" -#: ../../library/re.rst:273 -msgid "" -"Characters that are not within a range can be matched " -"by :dfn:`complementing` the set. If the first character of the set is " -"``'^'``, all the characters that are *not* in the set will be matched. For " -"example, ``[^5]`` will match any character except ``'5'``, and ``[^^]`` will " -"match any character except ``'^'``. ``^`` has no special meaning if it's " -"not the first character in the set." +msgid "Characters that are not within a range can be matched by :dfn:`complementing` the set. If the first character of the set is ``'^'``, all the characters that are *not* in the set will be matched. For example, ``[^5]`` will match any character except ``'5'``, and ``[^^]`` will match any character except ``'^'``. ``^`` has no special meaning if it's not the first character in the set." msgstr "" -#: ../../library/re.rst:280 -msgid "" -"To match a literal ``']'`` inside a set, precede it with a backslash, or " -"place it at the beginning of the set. For example, both ``[()[\\]{}]`` and " -"``[]()[{}]`` will match a right bracket, as well as left bracket, braces, " -"and parentheses." +msgid "To match a literal ``']'`` inside a set, precede it with a backslash, or place it at the beginning of the set. For example, both ``[()[\\]{}]`` and ``[]()[{}]`` will match a right bracket, as well as left bracket, braces, and parentheses." msgstr "" -#: ../../library/re.rst:290 -msgid "" -"Support of nested sets and set operations as in `Unicode Technical Standard " -"#18`_ might be added in the future. This would change the syntax, so to " -"facilitate this change a :exc:`FutureWarning` will be raised in ambiguous " -"cases for the time being. That includes sets starting with a literal ``'['`` " -"or containing literal character sequences ``'--'``, ``'&&'``, ``'~~'``, and " -"``'||'``. To avoid a warning escape them with a backslash." +msgid "Support of nested sets and set operations as in `Unicode Technical Standard #18`_ might be added in the future. This would change the syntax, so to facilitate this change a :exc:`FutureWarning` will be raised in ambiguous cases for the time being. That includes sets starting with a literal ``'['`` or containing literal character sequences ``'--'``, ``'&&'``, ``'~~'``, and ``'||'``. To avoid a warning escape them with a backslash." msgstr "" -#: ../../library/re.rst:300 -msgid "" -":exc:`FutureWarning` is raised if a character set contains constructs that " -"will change semantically in the future." +msgid ":exc:`FutureWarning` is raised if a character set contains constructs that will change semantically in the future." msgstr "" -#: ../../library/re.rst:306 msgid "``|``" msgstr "" -#: ../../library/re.rst:307 -msgid "" -"``A|B``, where *A* and *B* can be arbitrary REs, creates a regular " -"expression that will match either *A* or *B*. An arbitrary number of REs " -"can be separated by the ``'|'`` in this way. This can be used inside groups " -"(see below) as well. As the target string is scanned, REs separated by " -"``'|'`` are tried from left to right. When one pattern completely matches, " -"that branch is accepted. This means that once *A* matches, *B* will not be " -"tested further, even if it would produce a longer overall match. In other " -"words, the ``'|'`` operator is never greedy. To match a literal ``'|'``, " -"use ``\\|``, or enclose it inside a character class, as in ``[|]``." -msgstr "" - -#: ../../library/re.rst:320 +msgid "``A|B``, where *A* and *B* can be arbitrary REs, creates a regular expression that will match either *A* or *B*. An arbitrary number of REs can be separated by the ``'|'`` in this way. This can be used inside groups (see below) as well. As the target string is scanned, REs separated by ``'|'`` are tried from left to right. When one pattern completely matches, that branch is accepted. This means that once *A* matches, *B* will not be tested further, even if it would produce a longer overall match. In other words, the ``'|'`` operator is never greedy. To match a literal ``'|'``, use ``\\|``, or enclose it inside a character class, as in ``[|]``." +msgstr "" + msgid "``(...)``" msgstr "" -#: ../../library/re.rst:321 -msgid "" -"Matches whatever regular expression is inside the parentheses, and indicates " -"the start and end of a group; the contents of a group can be retrieved after " -"a match has been performed, and can be matched later in the string with the " -"``\\number`` special sequence, described below. To match the literals " -"``'('`` or ``')'``, use ``\\(`` or ``\\)``, or enclose them inside a " -"character class: ``[(]``, ``[)]``." +msgid "Matches whatever regular expression is inside the parentheses, and indicates the start and end of a group; the contents of a group can be retrieved after a match has been performed, and can be matched later in the string with the ``\\number`` special sequence, described below. To match the literals ``'('`` or ``')'``, use ``\\(`` or ``\\)``, or enclose them inside a character class: ``[(]``, ``[)]``." msgstr "" -#: ../../library/re.rst:329 msgid "``(?...)``" msgstr "" -#: ../../library/re.rst:330 -msgid "" -"This is an extension notation (a ``'?'`` following a ``'('`` is not " -"meaningful otherwise). The first character after the ``'?'`` determines " -"what the meaning and further syntax of the construct is. Extensions usually " -"do not create a new group; ``(?P...)`` is the only exception to this " -"rule. Following are the currently supported extensions." +msgid "This is an extension notation (a ``'?'`` following a ``'('`` is not meaningful otherwise). The first character after the ``'?'`` determines what the meaning and further syntax of the construct is. Extensions usually do not create a new group; ``(?P...)`` is the only exception to this rule. Following are the currently supported extensions." msgstr "" -#: ../../library/re.rst:336 msgid "``(?aiLmsux)``" msgstr "" -#: ../../library/re.rst:337 -msgid "" -"(One or more letters from the set ``'a'``, ``'i'``, ``'L'``, ``'m'``, " -"``'s'``, ``'u'``, ``'x'``.) The group matches the empty string; the letters " -"set the corresponding flags for the entire regular expression:" +msgid "(One or more letters from the set ``'a'``, ``'i'``, ``'L'``, ``'m'``, ``'s'``, ``'u'``, ``'x'``.) The group matches the empty string; the letters set the corresponding flags for the entire regular expression:" msgstr "" -#: ../../library/re.rst:342 ../../library/re.rst:374 msgid ":const:`re.A` (ASCII-only matching)" msgstr "" -#: ../../library/re.rst:343 ../../library/re.rst:375 msgid ":const:`re.I` (ignore case)" msgstr "" -#: ../../library/re.rst:344 ../../library/re.rst:376 msgid ":const:`re.L` (locale dependent)" msgstr "" -#: ../../library/re.rst:345 ../../library/re.rst:377 msgid ":const:`re.M` (multi-line)" msgstr "" -#: ../../library/re.rst:346 ../../library/re.rst:378 msgid ":const:`re.S` (dot matches all)" msgstr "" -#: ../../library/re.rst:347 ../../library/re.rst:379 msgid ":const:`re.U` (Unicode matching)" msgstr "" -#: ../../library/re.rst:348 ../../library/re.rst:380 msgid ":const:`re.X` (verbose)" msgstr "" -#: ../../library/re.rst:350 -msgid "" -"(The flags are described in :ref:`contents-of-module-re`.) This is useful if " -"you wish to include the flags as part of the regular expression, instead of " -"passing a *flag* argument to the :func:`re.compile` function. Flags should " -"be used first in the expression string." +msgid "(The flags are described in :ref:`contents-of-module-re`.) This is useful if you wish to include the flags as part of the regular expression, instead of passing a *flag* argument to the :func:`re.compile` function. Flags should be used first in the expression string." msgstr "" -#: ../../library/re.rst:356 msgid "This construction can only be used at the start of the expression." msgstr "" -#: ../../library/re.rst:361 msgid "``(?:...)``" msgstr "" -#: ../../library/re.rst:362 -msgid "" -"A non-capturing version of regular parentheses. Matches whatever regular " -"expression is inside the parentheses, but the substring matched by the group " -"*cannot* be retrieved after performing a match or referenced later in the " -"pattern." +msgid "A non-capturing version of regular parentheses. Matches whatever regular expression is inside the parentheses, but the substring matched by the group *cannot* be retrieved after performing a match or referenced later in the pattern." msgstr "" -#: ../../library/re.rst:367 msgid "``(?aiLmsux-imsx:...)``" msgstr "" -#: ../../library/re.rst:368 -msgid "" -"(Zero or more letters from the set ``'a'``, ``'i'``, ``'L'``, ``'m'``, " -"``'s'``, ``'u'``, ``'x'``, optionally followed by ``'-'`` followed by one or " -"more letters from the ``'i'``, ``'m'``, ``'s'``, ``'x'``.) The letters set " -"or remove the corresponding flags for the part of the expression:" +msgid "(Zero or more letters from the set ``'a'``, ``'i'``, ``'L'``, ``'m'``, ``'s'``, ``'u'``, ``'x'``, optionally followed by ``'-'`` followed by one or more letters from the ``'i'``, ``'m'``, ``'s'``, ``'x'``.) The letters set or remove the corresponding flags for the part of the expression:" msgstr "" -#: ../../library/re.rst:382 msgid "(The flags are described in :ref:`contents-of-module-re`.)" msgstr "" -#: ../../library/re.rst:384 -msgid "" -"The letters ``'a'``, ``'L'`` and ``'u'`` are mutually exclusive when used as " -"inline flags, so they can't be combined or follow ``'-'``. Instead, when " -"one of them appears in an inline group, it overrides the matching mode in " -"the enclosing group. In Unicode patterns ``(?a:...)`` switches to ASCII-" -"only matching, and ``(?u:...)`` switches to Unicode matching (default). In " -"bytes patterns ``(?L:...)`` switches to locale dependent matching, and ``(?" -"a:...)`` switches to ASCII-only matching (default). This override is only in " -"effect for the narrow inline group, and the original matching mode is " -"restored outside of the group." -msgstr "" - -#: ../../library/re.rst:396 +msgid "The letters ``'a'``, ``'L'`` and ``'u'`` are mutually exclusive when used as inline flags, so they can't be combined or follow ``'-'``. Instead, when one of them appears in an inline group, it overrides the matching mode in the enclosing group. In Unicode patterns ``(?a:...)`` switches to ASCII-only matching, and ``(?u:...)`` switches to Unicode matching (default). In bytes patterns ``(?L:...)`` switches to locale dependent matching, and ``(?a:...)`` switches to ASCII-only matching (default). This override is only in effect for the narrow inline group, and the original matching mode is restored outside of the group." +msgstr "" + msgid "The letters ``'a'``, ``'L'`` and ``'u'`` also can be used in a group." msgstr "" -#: ../../library/re.rst:399 msgid "``(?>...)``" msgstr "" -#: ../../library/re.rst:400 -msgid "" -"Attempts to match ``...`` as if it was a separate regular expression, and if " -"successful, continues to match the rest of the pattern following it. If the " -"subsequent pattern fails to match, the stack can only be unwound to a point " -"*before* the ``(?>...)`` because once exited, the expression, known as " -"an :dfn:`atomic group`, has thrown away all stack points within itself. " -"Thus, ``(?>.*).`` would never match anything because first the ``.*`` would " -"match all characters possible, then, having nothing left to match, the final " -"``.`` would fail to match. Since there are no stack points saved in the " -"Atomic Group, and there is no stack point before it, the entire expression " -"would thus fail to match." -msgstr "" - -#: ../../library/re.rst:416 +msgid "Attempts to match ``...`` as if it was a separate regular expression, and if successful, continues to match the rest of the pattern following it. If the subsequent pattern fails to match, the stack can only be unwound to a point *before* the ``(?>...)`` because once exited, the expression, known as an :dfn:`atomic group`, has thrown away all stack points within itself. Thus, ``(?>.*).`` would never match anything because first the ``.*`` would match all characters possible, then, having nothing left to match, the final ``.`` would fail to match. Since there are no stack points saved in the Atomic Group, and there is no stack point before it, the entire expression would thus fail to match." +msgstr "" + msgid "``(?P...)``" msgstr "" -#: ../../library/re.rst:417 -msgid "" -"Similar to regular parentheses, but the substring matched by the group is " -"accessible via the symbolic group name *name*. Group names must be valid " -"Python identifiers, and in :class:`bytes` patterns they can only contain " -"bytes in the ASCII range. Each group name must be defined only once within " -"a regular expression. A symbolic group is also a numbered group, just as if " -"the group were not named." +msgid "Similar to regular parentheses, but the substring matched by the group is accessible via the symbolic group name *name*. Group names must be valid Python identifiers, and in :class:`bytes` patterns they can only contain bytes in the ASCII range. Each group name must be defined only once within a regular expression. A symbolic group is also a numbered group, just as if the group were not named." msgstr "" -#: ../../library/re.rst:424 -msgid "" -"Named groups can be referenced in three contexts. If the pattern is ``(?" -"P['\"]).*?(?P=quote)`` (i.e. matching a string quoted with either " -"single or double quotes):" +msgid "Named groups can be referenced in three contexts. If the pattern is ``(?P['\"]).*?(?P=quote)`` (i.e. matching a string quoted with either single or double quotes):" msgstr "" -#: ../../library/re.rst:429 msgid "Context of reference to group \"quote\"" msgstr "" -#: ../../library/re.rst:429 msgid "Ways to reference it" msgstr "" -#: ../../library/re.rst:431 msgid "in the same pattern itself" msgstr "" -#: ../../library/re.rst:431 msgid "``(?P=quote)`` (as shown)" msgstr "" -#: ../../library/re.rst:432 ../../library/re.rst:439 msgid "``\\1``" msgstr "" -#: ../../library/re.rst:434 msgid "when processing match object *m*" msgstr "" -#: ../../library/re.rst:434 msgid "``m.group('quote')``" msgstr "" -#: ../../library/re.rst:435 msgid "``m.end('quote')`` (etc.)" msgstr "" -#: ../../library/re.rst:437 msgid "in a string passed to the *repl* argument of ``re.sub()``" msgstr "" -#: ../../library/re.rst:437 msgid "``\\g``" msgstr "" -#: ../../library/re.rst:438 msgid "``\\g<1>``" msgstr "" -#: ../../library/re.rst:442 -msgid "" -"In :class:`bytes` patterns, group *name* can only contain bytes in the ASCII " -"range (``b'\\x00'``-``b'\\x7f'``)." +msgid "In :class:`bytes` patterns, group *name* can only contain bytes in the ASCII range (``b'\\x00'``-``b'\\x7f'``)." msgstr "" -#: ../../library/re.rst:448 msgid "``(?P=name)``" msgstr "" -#: ../../library/re.rst:449 -msgid "" -"A backreference to a named group; it matches whatever text was matched by " -"the earlier group named *name*." +msgid "A backreference to a named group; it matches whatever text was matched by the earlier group named *name*." msgstr "" -#: ../../library/re.rst:454 msgid "``(?#...)``" msgstr "" -#: ../../library/re.rst:455 msgid "A comment; the contents of the parentheses are simply ignored." msgstr "" -#: ../../library/re.rst:459 msgid "``(?=...)``" msgstr "" -#: ../../library/re.rst:460 -msgid "" -"Matches if ``...`` matches next, but doesn't consume any of the string. " -"This is called a :dfn:`lookahead assertion`. For example, ``Isaac (?" -"=Asimov)`` will match ``'Isaac '`` only if it's followed by ``'Asimov'``." +msgid "Matches if ``...`` matches next, but doesn't consume any of the string. This is called a :dfn:`lookahead assertion`. For example, ``Isaac (?=Asimov)`` will match ``'Isaac '`` only if it's followed by ``'Asimov'``." msgstr "" -#: ../../library/re.rst:466 msgid "``(?!...)``" msgstr "" -#: ../../library/re.rst:467 -msgid "" -"Matches if ``...`` doesn't match next. This is a :dfn:`negative lookahead " -"assertion`. For example, ``Isaac (?!Asimov)`` will match ``'Isaac '`` only " -"if it's *not* followed by ``'Asimov'``." +msgid "Matches if ``...`` doesn't match next. This is a :dfn:`negative lookahead assertion`. For example, ``Isaac (?!Asimov)`` will match ``'Isaac '`` only if it's *not* followed by ``'Asimov'``." msgstr "" -#: ../../library/re.rst:473 msgid "``(?<=...)``" msgstr "" -#: ../../library/re.rst:474 -msgid "" -"Matches if the current position in the string is preceded by a match for " -"``...`` that ends at the current position. This is called a :dfn:`positive " -"lookbehind assertion`. ``(?<=abc)def`` will find a match in ``'abcdef'``, " -"since the lookbehind will back up 3 characters and check if the contained " -"pattern matches. The contained pattern must only match strings of some fixed " -"length, meaning that ``abc`` or ``a|b`` are allowed, but ``a*`` and ``a{3,4}" -"`` are not. Note that patterns which start with positive lookbehind " -"assertions will not match at the beginning of the string being searched; you " -"will most likely want to use the :func:`search` function rather than " -"the :func:`match` function:" -msgstr "" - -#: ../../library/re.rst:489 +msgid "Matches if the current position in the string is preceded by a match for ``...`` that ends at the current position. This is called a :dfn:`positive lookbehind assertion`. ``(?<=abc)def`` will find a match in ``'abcdef'``, since the lookbehind will back up 3 characters and check if the contained pattern matches. The contained pattern must only match strings of some fixed length, meaning that ``abc`` or ``a|b`` are allowed, but ``a*`` and ``a{3,4}`` are not. Note that patterns which start with positive lookbehind assertions will not match at the beginning of the string being searched; you will most likely want to use the :func:`search` function rather than the :func:`match` function:" +msgstr "" + msgid "This example looks for a word following a hyphen:" msgstr "" -#: ../../library/re.rst:495 msgid "Added support for group references of fixed length." msgstr "" -#: ../../library/re.rst:500 msgid "``(?|$)`` is a poor email matching pattern, which matches " -"``''`` as well as ``'user@host.com'``, but does not match " -"``''`` in their entirety " -"(:func:`re.search` finds only ``'user@host.com'`` in the former)." +msgid "Will try to match with ``yes-pattern`` if the group with given *id* or *name* exists, and with ``no-pattern`` if it doesn't. ``no-pattern`` is optional and can be omitted. For example, ``(<)?(\\w+@\\w+(?:\\.\\w+)+)(?(1)>|$)`` is a poor email matching pattern, which matches ``''`` as well as ``'user@host.com'``, but does not match ``''`` in their entirety (:func:`re.search` finds only ``'user@host.com'`` in the former)." msgstr "" -#: ../../library/re.rst:519 -msgid "" -"Group *id* can only contain ASCII digits. In :class:`bytes` patterns, group " -"*name* can only contain bytes in the ASCII range (``b'\\x00'``-``b'\\x7f'``)." +msgid "Group *id* can only contain ASCII digits. In :class:`bytes` patterns, group *name* can only contain bytes in the ASCII range (``b'\\x00'``-``b'\\x7f'``)." msgstr "" -#: ../../library/re.rst:527 -msgid "" -"The special sequences consist of ``'\\'`` and a character from the list " -"below. If the ordinary character is not an ASCII digit or an ASCII letter, " -"then the resulting RE will match the second character. For example, ``\\$`` " -"matches the character ``'$'``." +msgid "The special sequences consist of ``'\\'`` and a character from the list below. If the ordinary character is not an ASCII digit or an ASCII letter, then the resulting RE will match the second character. For example, ``\\$`` matches the character ``'$'``." msgstr "" -#: ../../library/re.rst:534 msgid "``\\number``" msgstr "" -#: ../../library/re.rst:535 -msgid "" -"Matches the contents of the group of the same number. Groups are numbered " -"starting from 1. For example, ``(.+) \\1`` matches ``'the the'`` or ``'55 " -"55'``, but not ``'thethe'`` (note the space after the group). This special " -"sequence can only be used to match one of the first 99 groups. If the first " -"digit of *number* is 0, or *number* is 3 octal digits long, it will not be " -"interpreted as a group match, but as the character with octal value " -"*number*. Inside the ``'['`` and ``']'`` of a character class, all numeric " -"escapes are treated as characters." +msgid "Matches the contents of the group of the same number. Groups are numbered starting from 1. For example, ``(.+) \\1`` matches ``'the the'`` or ``'55 55'``, but not ``'thethe'`` (note the space after the group). This special sequence can only be used to match one of the first 99 groups. If the first digit of *number* is 0, or *number* is 3 octal digits long, it will not be interpreted as a group match, but as the character with octal value *number*. Inside the ``'['`` and ``']'`` of a character class, all numeric escapes are treated as characters." msgstr "" -#: ../../library/re.rst:546 msgid "``\\A``" msgstr "" -#: ../../library/re.rst:547 msgid "Matches only at the start of the string." msgstr "" -#: ../../library/re.rst:551 msgid "``\\b``" msgstr "" -#: ../../library/re.rst:552 -msgid "" -"Matches the empty string, but only at the beginning or end of a word. A word " -"is defined as a sequence of word characters. Note that formally, ``\\b`` is " -"defined as the boundary between a ``\\w`` and a ``\\W`` character (or vice " -"versa), or between ``\\w`` and the beginning or end of the string. This " -"means that ``r'\\bat\\b'`` matches ``'at'``, ``'at.'``, ``'(at)'``, and " -"``'as at ay'`` but not ``'attempt'`` or ``'atlas'``." +msgid "Matches the empty string, but only at the beginning or end of a word. A word is defined as a sequence of word characters. Note that formally, ``\\b`` is defined as the boundary between a ``\\w`` and a ``\\W`` character (or vice versa), or between ``\\w`` and the beginning or end of the string. This means that ``r'\\bat\\b'`` matches ``'at'``, ``'at.'``, ``'(at)'``, and ``'as at ay'`` but not ``'attempt'`` or ``'atlas'``." msgstr "" -#: ../../library/re.rst:560 -msgid "" -"The default word characters in Unicode (str) patterns are Unicode " -"alphanumerics and the underscore, but this can be changed by using " -"the :py:const:`~re.ASCII` flag. Word boundaries are determined by the " -"current locale if the :py:const:`~re.LOCALE` flag is used." +msgid "The default word characters in Unicode (str) patterns are Unicode alphanumerics and the underscore, but this can be changed by using the :py:const:`~re.ASCII` flag. Word boundaries are determined by the current locale if the :py:const:`~re.LOCALE` flag is used." msgstr "" -#: ../../library/re.rst:568 -msgid "" -"Inside a character range, ``\\b`` represents the backspace character, for " -"compatibility with Python's string literals." +msgid "Inside a character range, ``\\b`` represents the backspace character, for compatibility with Python's string literals." msgstr "" -#: ../../library/re.rst:573 msgid "``\\B``" msgstr "" -#: ../../library/re.rst:574 -msgid "" -"Matches the empty string, but only when it is *not* at the beginning or end " -"of a word. This means that ``r'at\\B'`` matches ``'athens'``, ``'atom'``, " -"``'attorney'``, but not ``'at'``, ``'at.'``, or ``'at!'``. ``\\B`` is the " -"opposite of ``\\b``, so word characters in Unicode (str) patterns are " -"Unicode alphanumerics or the underscore, although this can be changed by " -"using the :py:const:`~re.ASCII` flag. Word boundaries are determined by the " -"current locale if the :py:const:`~re.LOCALE` flag is used." +msgid "Matches the empty string, but only when it is *not* at the beginning or end of a word. This means that ``r'at\\B'`` matches ``'athens'``, ``'atom'``, ``'attorney'``, but not ``'at'``, ``'at.'``, or ``'at!'``. ``\\B`` is the opposite of ``\\b``, so word characters in Unicode (str) patterns are Unicode alphanumerics or the underscore, although this can be changed by using the :py:const:`~re.ASCII` flag. Word boundaries are determined by the current locale if the :py:const:`~re.LOCALE` flag is used." msgstr "" -#: ../../library/re.rst:585 msgid "``\\B`` now matches empty input string." msgstr "" -#: ../../library/re.rst:590 msgid "``\\d``" msgstr "" -#: ../../library/re.rst:591 ../../library/re.rst:615 ../../library/re.rst:637 msgid "For Unicode (str) patterns:" msgstr "" -#: ../../library/re.rst:592 -msgid "" -"Matches any Unicode decimal digit (that is, any character in Unicode " -"character category `[Nd]`__). This includes ``[0-9]``, and also many other " -"digit characters." +msgid "Matches any Unicode decimal digit (that is, any character in Unicode character category `[Nd]`__). This includes ``[0-9]``, and also many other digit characters." msgstr "" -#: ../../library/re.rst:596 msgid "Matches ``[0-9]`` if the :py:const:`~re.ASCII` flag is used." msgstr "" -#: ../../library/re.rst:600 ../../library/re.rst:622 ../../library/re.rst:645 msgid "For 8-bit (bytes) patterns:" msgstr "" -#: ../../library/re.rst:601 -msgid "" -"Matches any decimal digit in the ASCII character set; this is equivalent to " -"``[0-9]``." +msgid "Matches any decimal digit in the ASCII character set; this is equivalent to ``[0-9]``." msgstr "" -#: ../../library/re.rst:606 msgid "``\\D``" msgstr "" -#: ../../library/re.rst:607 -msgid "" -"Matches any character which is not a decimal digit. This is the opposite of " -"``\\d``." +msgid "Matches any character which is not a decimal digit. This is the opposite of ``\\d``." msgstr "" -#: ../../library/re.rst:610 msgid "Matches ``[^0-9]`` if the :py:const:`~re.ASCII` flag is used." msgstr "" -#: ../../library/re.rst:614 msgid "``\\s``" msgstr "" -#: ../../library/re.rst:616 -msgid "" -"Matches Unicode whitespace characters (as defined " -"by :py:meth:`str.isspace`). This includes ``[ \\t\\n\\r\\f\\v]``, and also " -"many other characters, for example the non-breaking spaces mandated by " -"typography rules in many languages." +msgid "Matches Unicode whitespace characters (as defined by :py:meth:`str.isspace`). This includes ``[ \\t\\n\\r\\f\\v]``, and also many other characters, for example the non-breaking spaces mandated by typography rules in many languages." msgstr "" -#: ../../library/re.rst:620 -msgid "" -"Matches ``[ \\t\\n\\r\\f\\v]`` if the :py:const:`~re.ASCII` flag is used." +msgid "Matches ``[ \\t\\n\\r\\f\\v]`` if the :py:const:`~re.ASCII` flag is used." msgstr "" -#: ../../library/re.rst:623 -msgid "" -"Matches characters considered whitespace in the ASCII character set; this is " -"equivalent to ``[ \\t\\n\\r\\f\\v]``." +msgid "Matches characters considered whitespace in the ASCII character set; this is equivalent to ``[ \\t\\n\\r\\f\\v]``." msgstr "" -#: ../../library/re.rst:628 msgid "``\\S``" msgstr "" -#: ../../library/re.rst:629 -msgid "" -"Matches any character which is not a whitespace character. This is the " -"opposite of ``\\s``." +msgid "Matches any character which is not a whitespace character. This is the opposite of ``\\s``." msgstr "" -#: ../../library/re.rst:632 -msgid "" -"Matches ``[^ \\t\\n\\r\\f\\v]`` if the :py:const:`~re.ASCII` flag is used." +msgid "Matches ``[^ \\t\\n\\r\\f\\v]`` if the :py:const:`~re.ASCII` flag is used." msgstr "" -#: ../../library/re.rst:636 msgid "``\\w``" msgstr "" -#: ../../library/re.rst:638 -msgid "" -"Matches Unicode word characters; this includes all Unicode alphanumeric " -"characters (as defined by :py:meth:`str.isalnum`), as well as the underscore " -"(``_``)." +msgid "Matches Unicode word characters; this includes all Unicode alphanumeric characters (as defined by :py:meth:`str.isalnum`), as well as the underscore (``_``)." msgstr "" -#: ../../library/re.rst:643 msgid "Matches ``[a-zA-Z0-9_]`` if the :py:const:`~re.ASCII` flag is used." msgstr "" -#: ../../library/re.rst:646 -msgid "" -"Matches characters considered alphanumeric in the ASCII character set; this " -"is equivalent to ``[a-zA-Z0-9_]``. If the :py:const:`~re.LOCALE` flag is " -"used, matches characters considered alphanumeric in the current locale and " -"the underscore." +msgid "Matches characters considered alphanumeric in the ASCII character set; this is equivalent to ``[a-zA-Z0-9_]``. If the :py:const:`~re.LOCALE` flag is used, matches characters considered alphanumeric in the current locale and the underscore." msgstr "" -#: ../../library/re.rst:653 msgid "``\\W``" msgstr "" -#: ../../library/re.rst:654 -msgid "" -"Matches any character which is not a word character. This is the opposite of " -"``\\w``. By default, matches non-underscore (``_``) characters for " -"which :py:meth:`str.isalnum` returns ``False``." +msgid "Matches any character which is not a word character. This is the opposite of ``\\w``. By default, matches non-underscore (``_``) characters for which :py:meth:`str.isalnum` returns ``False``." msgstr "" -#: ../../library/re.rst:659 msgid "Matches ``[^a-zA-Z0-9_]`` if the :py:const:`~re.ASCII` flag is used." msgstr "" -#: ../../library/re.rst:661 -msgid "" -"If the :py:const:`~re.LOCALE` flag is used, matches characters which are " -"neither alphanumeric in the current locale nor the underscore." +msgid "If the :py:const:`~re.LOCALE` flag is used, matches characters which are neither alphanumeric in the current locale nor the underscore." msgstr "" -#: ../../library/re.rst:668 msgid "``\\z``" msgstr "" -#: ../../library/re.rst:669 msgid "Matches only at the end of the string." msgstr "" -#: ../../library/re.rst:673 msgid "``\\Z``" msgstr "" -#: ../../library/re.rst:674 msgid "The same as ``\\z``. For compatibility with old Python versions." msgstr "" -#: ../../library/re.rst:690 -msgid "" -"Most of the :ref:`escape sequences ` supported by Python " -"string literals are also accepted by the regular expression parser::" +msgid "Most of the :ref:`escape sequences ` supported by Python string literals are also accepted by the regular expression parser::" msgstr "" -#: ../../library/re.rst:693 msgid "" "\\a \\b \\f \\n\n" "\\N \\r \\t \\u\n" "\\U \\v \\x \\\\" msgstr "" -#: ../../library/re.rst:697 -msgid "" -"(Note that ``\\b`` is used to represent word boundaries, and means " -"\"backspace\" only inside character classes.)" +msgid "(Note that ``\\b`` is used to represent word boundaries, and means \"backspace\" only inside character classes.)" msgstr "" -#: ../../library/re.rst:700 -msgid "" -"``'\\u'``, ``'\\U'``, and ``'\\N'`` escape sequences are only recognized in " -"Unicode (str) patterns. In bytes patterns they are errors. Unknown escapes " -"of ASCII letters are reserved for future use and treated as errors." +msgid "``'\\u'``, ``'\\U'``, and ``'\\N'`` escape sequences are only recognized in Unicode (str) patterns. In bytes patterns they are errors. Unknown escapes of ASCII letters are reserved for future use and treated as errors." msgstr "" -#: ../../library/re.rst:706 -msgid "" -"Octal escapes are included in a limited form. If the first digit is a 0, or " -"if there are three octal digits, it is considered an octal escape. " -"Otherwise, it is a group reference. As for string literals, octal escapes " -"are always at most three digits in length." +msgid "Octal escapes are included in a limited form. If the first digit is a 0, or if there are three octal digits, it is considered an octal escape. Otherwise, it is a group reference. As for string literals, octal escapes are always at most three digits in length." msgstr "" -#: ../../library/re.rst:711 msgid "The ``'\\u'`` and ``'\\U'`` escape sequences have been added." msgstr "" -#: ../../library/re.rst:714 -msgid "" -"Unknown escapes consisting of ``'\\'`` and an ASCII letter now are errors." +msgid "Unknown escapes consisting of ``'\\'`` and an ASCII letter now are errors." msgstr "" -#: ../../library/re.rst:717 -msgid "" -"The :samp:`'\\\\N\\\\{{name}\\\\}'` escape sequence has been added. As in " -"string literals, it expands to the named Unicode character (e.g. ``'\\N{EM " -"DASH}'``)." +msgid "The :samp:`'\\\\N\\\\{{name}\\\\}'` escape sequence has been added. As in string literals, it expands to the named Unicode character (e.g. ``'\\N{EM DASH}'``)." msgstr "" -#: ../../library/re.rst:725 msgid "Module Contents" msgstr "" -#: ../../library/re.rst:727 -msgid "" -"The module defines several functions, constants, and an exception. Some of " -"the functions are simplified versions of the full featured methods for " -"compiled regular expressions. Most non-trivial applications always use the " -"compiled form." +msgid "The module defines several functions, constants, and an exception. Some of the functions are simplified versions of the full featured methods for compiled regular expressions. Most non-trivial applications always use the compiled form." msgstr "" -#: ../../library/re.rst:734 msgid "Flags" msgstr "" -#: ../../library/re.rst:736 -msgid "" -"Flag constants are now instances of :class:`RegexFlag`, which is a subclass " -"of :class:`enum.IntFlag`." +msgid "Flag constants are now instances of :class:`RegexFlag`, which is a subclass of :class:`enum.IntFlag`." msgstr "" -#: ../../library/re.rst:743 -msgid "" -"An :class:`enum.IntFlag` class containing the regex options listed below." +msgid "An :class:`enum.IntFlag` class containing the regex options listed below." msgstr "" -#: ../../library/re.rst:745 msgid "- added to ``__all__``" msgstr "" -#: ../../library/re.rst:750 -msgid "" -"Make ``\\w``, ``\\W``, ``\\b``, ``\\B``, ``\\d``, ``\\D``, ``\\s`` and " -"``\\S`` perform ASCII-only matching instead of full Unicode matching. This " -"is only meaningful for Unicode (str) patterns, and is ignored for bytes " -"patterns." +msgid "Make ``\\w``, ``\\W``, ``\\b``, ``\\B``, ``\\d``, ``\\D``, ``\\s`` and ``\\S`` perform ASCII-only matching instead of full Unicode matching. This is only meaningful for Unicode (str) patterns, and is ignored for bytes patterns." msgstr "" -#: ../../library/re.rst:754 msgid "Corresponds to the inline flag ``(?a)``." msgstr "" -#: ../../library/re.rst:758 -msgid "" -"The :py:const:`~re.U` flag still exists for backward compatibility, but is " -"redundant in Python 3 since matches are Unicode by default for ``str`` " -"patterns, and Unicode matching isn't allowed for bytes " -"patterns. :py:const:`~re.UNICODE` and the inline flag ``(?u)`` are similarly " -"redundant." +msgid "The :py:const:`~re.U` flag still exists for backward compatibility, but is redundant in Python 3 since matches are Unicode by default for ``str`` patterns, and Unicode matching isn't allowed for bytes patterns. :py:const:`~re.UNICODE` and the inline flag ``(?u)`` are similarly redundant." msgstr "" -#: ../../library/re.rst:767 msgid "Display debug information about compiled expression." msgstr "" -#: ../../library/re.rst:769 msgid "No corresponding inline flag." msgstr "" -#: ../../library/re.rst:775 -msgid "" -"Perform case-insensitive matching; expressions like ``[A-Z]`` will also " -"match lowercase letters. Full Unicode matching (such as ``Ü`` matching " -"``ü``) also works unless the :py:const:`~re.ASCII` flag is used to disable " -"non-ASCII matches. The current locale does not change the effect of this " -"flag unless the :py:const:`~re.LOCALE` flag is also used." +msgid "Perform case-insensitive matching; expressions like ``[A-Z]`` will also match lowercase letters. Full Unicode matching (such as ``Ü`` matching ``ü``) also works unless the :py:const:`~re.ASCII` flag is used to disable non-ASCII matches. The current locale does not change the effect of this flag unless the :py:const:`~re.LOCALE` flag is also used." msgstr "" -#: ../../library/re.rst:783 msgid "Corresponds to the inline flag ``(?i)``." msgstr "" -#: ../../library/re.rst:785 -msgid "" -"Note that when the Unicode patterns ``[a-z]`` or ``[A-Z]`` are used in " -"combination with the :const:`IGNORECASE` flag, they will match the 52 ASCII " -"letters and 4 additional non-ASCII letters: 'İ' (U+0130, Latin capital " -"letter I with dot above), 'ı' (U+0131, Latin small letter dotless i), 'ſ' " -"(U+017F, Latin small letter long s) and 'K' (U+212A, Kelvin sign). If " -"the :py:const:`~re.ASCII` flag is used, only letters 'a' to 'z' and 'A' to " -"'Z' are matched." +msgid "Note that when the Unicode patterns ``[a-z]`` or ``[A-Z]`` are used in combination with the :const:`IGNORECASE` flag, they will match the 52 ASCII letters and 4 additional non-ASCII letters: 'İ' (U+0130, Latin capital letter I with dot above), 'ı' (U+0131, Latin small letter dotless i), 'ſ' (U+017F, Latin small letter long s) and 'K' (U+212A, Kelvin sign). If the :py:const:`~re.ASCII` flag is used, only letters 'a' to 'z' and 'A' to 'Z' are matched." msgstr "" -#: ../../library/re.rst:796 -msgid "" -"Make ``\\w``, ``\\W``, ``\\b``, ``\\B`` and case-insensitive matching " -"dependent on the current locale. This flag can be used only with bytes " -"patterns." +msgid "Make ``\\w``, ``\\W``, ``\\b``, ``\\B`` and case-insensitive matching dependent on the current locale. This flag can be used only with bytes patterns." msgstr "" -#: ../../library/re.rst:800 msgid "Corresponds to the inline flag ``(?L)``." msgstr "" -#: ../../library/re.rst:804 -msgid "" -"This flag is discouraged; consider Unicode matching instead. The locale " -"mechanism is very unreliable as it only handles one \"culture\" at a time " -"and only works with 8-bit locales. Unicode matching is enabled by default " -"for Unicode (str) patterns and it is able to handle different locales and " -"languages." +msgid "This flag is discouraged; consider Unicode matching instead. The locale mechanism is very unreliable as it only handles one \"culture\" at a time and only works with 8-bit locales. Unicode matching is enabled by default for Unicode (str) patterns and it is able to handle different locales and languages." msgstr "" -#: ../../library/re.rst:811 -msgid "" -":py:const:`~re.LOCALE` can be used only with bytes patterns and is not " -"compatible with :py:const:`~re.ASCII`." +msgid ":py:const:`~re.LOCALE` can be used only with bytes patterns and is not compatible with :py:const:`~re.ASCII`." msgstr "" -#: ../../library/re.rst:815 -msgid "" -"Compiled regular expression objects with the :py:const:`~re.LOCALE` flag no " -"longer depend on the locale at compile time. Only the locale at matching " -"time affects the result of matching." +msgid "Compiled regular expression objects with the :py:const:`~re.LOCALE` flag no longer depend on the locale at compile time. Only the locale at matching time affects the result of matching." msgstr "" -#: ../../library/re.rst:824 -msgid "" -"When specified, the pattern character ``'^'`` matches at the beginning of " -"the string and at the beginning of each line (immediately following each " -"newline); and the pattern character ``'$'`` matches at the end of the string " -"and at the end of each line (immediately preceding each newline). By " -"default, ``'^'`` matches only at the beginning of the string, and ``'$'`` " -"only at the end of the string and immediately before the newline (if any) at " -"the end of the string." +msgid "When specified, the pattern character ``'^'`` matches at the beginning of the string and at the beginning of each line (immediately following each newline); and the pattern character ``'$'`` matches at the end of the string and at the end of each line (immediately preceding each newline). By default, ``'^'`` matches only at the beginning of the string, and ``'$'`` only at the end of the string and immediately before the newline (if any) at the end of the string." msgstr "" -#: ../../library/re.rst:831 msgid "Corresponds to the inline flag ``(?m)``." msgstr "" -#: ../../library/re.rst:835 -msgid "" -"Indicates no flag being applied, the value is ``0``. This flag may be used " -"as a default value for a function keyword argument or as a base value that " -"will be conditionally ORed with other flags. Example of use as a default " -"value::" +msgid "Indicates no flag being applied, the value is ``0``. This flag may be used as a default value for a function keyword argument or as a base value that will be conditionally ORed with other flags. Example of use as a default value::" msgstr "" -#: ../../library/re.rst:840 msgid "" "def myfunc(text, flag=re.NOFLAG):\n" " return re.match(text, flag)" msgstr "" -#: ../../library/re.rst:848 -msgid "" -"Make the ``'.'`` special character match any character at all, including a " -"newline; without this flag, ``'.'`` will match anything *except* a newline." +msgid "Make the ``'.'`` special character match any character at all, including a newline; without this flag, ``'.'`` will match anything *except* a newline." msgstr "" -#: ../../library/re.rst:851 msgid "Corresponds to the inline flag ``(?s)``." msgstr "" -#: ../../library/re.rst:857 -msgid "" -"In Python 3, Unicode characters are matched by default for ``str`` patterns. " -"This flag is therefore redundant with **no effect** and is only kept for " -"backward compatibility." +msgid "In Python 3, Unicode characters are matched by default for ``str`` patterns. This flag is therefore redundant with **no effect** and is only kept for backward compatibility." msgstr "" -#: ../../library/re.rst:862 -msgid "" -"See :py:const:`~re.ASCII` to restrict matching to ASCII characters instead." +msgid "See :py:const:`~re.ASCII` to restrict matching to ASCII characters instead." msgstr "" -#: ../../library/re.rst:869 -msgid "" -"This flag allows you to write regular expressions that look nicer and are " -"more readable by allowing you to visually separate logical sections of the " -"pattern and add comments. Whitespace within the pattern is ignored, except " -"when in a character class, or when preceded by an unescaped backslash, or " -"within tokens like ``*?``, ``(?:`` or ``(?P<...>``. For example, ``(? :`` " -"and ``* ?`` are not allowed. When a line contains a ``#`` that is not in a " -"character class and is not preceded by an unescaped backslash, all " -"characters from the leftmost such ``#`` through the end of the line are " -"ignored." -msgstr "" - -#: ../../library/re.rst:879 -msgid "" -"This means that the two following regular expression objects that match a " -"decimal number are functionally equal::" +msgid "This flag allows you to write regular expressions that look nicer and are more readable by allowing you to visually separate logical sections of the pattern and add comments. Whitespace within the pattern is ignored, except when in a character class, or when preceded by an unescaped backslash, or within tokens like ``*?``, ``(?:`` or ``(?P<...>``. For example, ``(? :`` and ``* ?`` are not allowed. When a line contains a ``#`` that is not in a character class and is not preceded by an unescaped backslash, all characters from the leftmost such ``#`` through the end of the line are ignored." +msgstr "" + +msgid "This means that the two following regular expression objects that match a decimal number are functionally equal::" msgstr "" -#: ../../library/re.rst:882 msgid "" "a = re.compile(r\"\"\"\\d + # the integral part\n" " \\. # the decimal point\n" @@ -1207,111 +600,56 @@ msgid "" "b = re.compile(r\"\\d+\\.\\d*\")" msgstr "" -#: ../../library/re.rst:887 msgid "Corresponds to the inline flag ``(?x)``." msgstr "" -#: ../../library/re.rst:891 msgid "Functions" msgstr "" -#: ../../library/re.rst:895 -msgid "" -"Compile a regular expression pattern into a :ref:`regular expression object " -"`, which can be used for matching using " -"its :func:`~Pattern.match`, :func:`~Pattern.search` and other methods, " -"described below." +msgid "Compile a regular expression pattern into a :ref:`regular expression object `, which can be used for matching using its :func:`~Pattern.match`, :func:`~Pattern.search` and other methods, described below." msgstr "" -#: ../../library/re.rst:900 ../../library/re.rst:932 ../../library/re.rst:950 -#: ../../library/re.rst:961 ../../library/re.rst:1007 ../../library/re.rst:1041 -#: ../../library/re.rst:1056 ../../library/re.rst:1118 -#: ../../library/re.rst:1153 -msgid "" -"The expression's behaviour can be modified by specifying a *flags* value. " -"Values can be any of the `flags`_ variables, combined using bitwise OR (the " -"``|`` operator)." +msgid "The expression's behaviour can be modified by specifying a *flags* value. Values can be any of the `flags`_ variables, combined using bitwise OR (the ``|`` operator)." msgstr "" -#: ../../library/re.rst:904 msgid "The sequence ::" msgstr "" -#: ../../library/re.rst:906 msgid "" "prog = re.compile(pattern)\n" "result = prog.match(string)" msgstr "" -#: ../../library/re.rst:909 msgid "is equivalent to ::" msgstr "" -#: ../../library/re.rst:911 msgid "result = re.match(pattern, string)" msgstr "" -#: ../../library/re.rst:913 -msgid "" -"but using :func:`re.compile` and saving the resulting regular expression " -"object for reuse is more efficient when the expression will be used several " -"times in a single program." +msgid "but using :func:`re.compile` and saving the resulting regular expression object for reuse is more efficient when the expression will be used several times in a single program." msgstr "" -#: ../../library/re.rst:919 -msgid "" -"The compiled versions of the most recent patterns passed " -"to :func:`re.compile` and the module-level matching functions are cached, so " -"programs that use only a few regular expressions at a time needn't worry " -"about compiling regular expressions." +msgid "The compiled versions of the most recent patterns passed to :func:`re.compile` and the module-level matching functions are cached, so programs that use only a few regular expressions at a time needn't worry about compiling regular expressions." msgstr "" -#: ../../library/re.rst:927 -msgid "" -"Scan through *string* looking for the first location where the regular " -"expression *pattern* produces a match, and return a " -"corresponding :class:`~re.Match`. Return ``None`` if no position in the " -"string matches the pattern; note that this is different from finding a zero-" -"length match at some point in the string." +msgid "Scan through *string* looking for the first location where the regular expression *pattern* produces a match, and return a corresponding :class:`~re.Match`. Return ``None`` if no position in the string matches the pattern; note that this is different from finding a zero-length match at some point in the string." msgstr "" -#: ../../library/re.rst:939 -msgid "" -"If zero or more characters at the beginning of *string* match the regular " -"expression *pattern*, return a corresponding :class:`~re.Match`. Return " -"``None`` if the string does not match the pattern; note that this is " -"different from a zero-length match." +msgid "If zero or more characters at the beginning of *string* match the regular expression *pattern*, return a corresponding :class:`~re.Match`. Return ``None`` if the string does not match the pattern; note that this is different from a zero-length match." msgstr "" -#: ../../library/re.rst:944 -msgid "" -"Note that even in :const:`MULTILINE` mode, :func:`re.match` will only match " -"at the beginning of the string and not at the beginning of each line." +msgid "Note that even in :const:`MULTILINE` mode, :func:`re.match` will only match at the beginning of the string and not at the beginning of each line." msgstr "" -#: ../../library/re.rst:947 -msgid "" -"If you want to locate a match anywhere in *string*, use :func:`search` " -"instead (see also :ref:`search-vs-match`)." +msgid "If you want to locate a match anywhere in *string*, use :func:`search` instead (see also :ref:`search-vs-match`)." msgstr "" -#: ../../library/re.rst:957 -msgid "" -"If the whole *string* matches the regular expression *pattern*, return a " -"corresponding :class:`~re.Match`. Return ``None`` if the string does not " -"match the pattern; note that this is different from a zero-length match." +msgid "If the whole *string* matches the regular expression *pattern*, return a corresponding :class:`~re.Match`. Return ``None`` if the string does not match the pattern; note that this is different from a zero-length match." msgstr "" -#: ../../library/re.rst:970 -msgid "" -"Split *string* by the occurrences of *pattern*. If capturing parentheses " -"are used in *pattern*, then the text of all groups in the pattern are also " -"returned as part of the resulting list. If *maxsplit* is nonzero, at most " -"*maxsplit* splits occur, and the remainder of the string is returned as the " -"final element of the list. ::" +msgid "Split *string* by the occurrences of *pattern*. If capturing parentheses are used in *pattern*, then the text of all groups in the pattern are also returned as part of the resulting list. If *maxsplit* is nonzero, at most *maxsplit* splits occur, and the remainder of the string is returned as the final element of the list. ::" msgstr "" -#: ../../library/re.rst:976 msgid "" ">>> re.split(r'\\W+', 'Words, words, words.')\n" "['Words', 'words', 'words', '']\n" @@ -1323,102 +661,53 @@ msgid "" "['0', '3', '9']" msgstr "" -#: ../../library/re.rst:985 -msgid "" -"If there are capturing groups in the separator and it matches at the start " -"of the string, the result will start with an empty string. The same holds " -"for the end of the string::" +msgid "If there are capturing groups in the separator and it matches at the start of the string, the result will start with an empty string. The same holds for the end of the string::" msgstr "" -#: ../../library/re.rst:989 msgid "" ">>> re.split(r'(\\W+)', '...words, words...')\n" "['', '...', 'words', ', ', 'words', '...', '']" msgstr "" -#: ../../library/re.rst:992 -msgid "" -"That way, separator components are always found at the same relative indices " -"within the result list." +msgid "That way, separator components are always found at the same relative indices within the result list." msgstr "" -#: ../../library/re.rst:995 -msgid "" -"Adjacent empty matches are not possible, but an empty match can occur " -"immediately after a non-empty match." +msgid "Adjacent empty matches are not possible, but an empty match can occur immediately after a non-empty match." msgstr "" -#: ../../library/re.rst:998 msgid "" ">>> re.split(r'\\b', 'Words, words, words.')\n" "['', 'Words', ', ', 'words', ', ', 'words', '.']\n" ">>> re.split(r'\\W*', '...words...')\n" "['', '', 'w', 'o', 'r', 'd', 's', '', '']\n" ">>> re.split(r'(\\W*)', '...words...')\n" -"['', '...', '', '', 'w', '', 'o', '', 'r', '', 'd', '', 's', '...', '', '', " -"'']" +"['', '...', '', '', 'w', '', 'o', '', 'r', '', 'd', '', 's', '...', '', '', '']" msgstr "" -#: ../../library/re.rst:1011 ../../library/re.rst:1122 msgid "Added the optional flags argument." msgstr "" -#: ../../library/re.rst:1014 -msgid "" -"Added support of splitting on a pattern that could match an empty string." +msgid "Added support of splitting on a pattern that could match an empty string." msgstr "" -#: ../../library/re.rst:1017 -msgid "" -"Passing *maxsplit* and *flags* as positional arguments is deprecated. In " -"future Python versions they will be :ref:`keyword-only parameters `." +msgid "Passing *maxsplit* and *flags* as positional arguments is deprecated. In future Python versions they will be :ref:`keyword-only parameters `." msgstr "" -#: ../../library/re.rst:1025 -msgid "" -"Return all non-overlapping matches of *pattern* in *string*, as a list of " -"strings or tuples. The *string* is scanned left-to-right, and matches are " -"returned in the order found. Empty matches are included in the result." +msgid "Return all non-overlapping matches of *pattern* in *string*, as a list of strings or tuples. The *string* is scanned left-to-right, and matches are returned in the order found. Empty matches are included in the result." msgstr "" -#: ../../library/re.rst:1029 -msgid "" -"The result depends on the number of capturing groups in the pattern. If " -"there are no groups, return a list of strings matching the whole pattern. " -"If there is exactly one group, return a list of strings matching that " -"group. If multiple groups are present, return a list of tuples of strings " -"matching the groups. Non-capturing groups do not affect the form of the " -"result." +msgid "The result depends on the number of capturing groups in the pattern. If there are no groups, return a list of strings matching the whole pattern. If there is exactly one group, return a list of strings matching that group. If multiple groups are present, return a list of tuples of strings matching the groups. Non-capturing groups do not affect the form of the result." msgstr "" -#: ../../library/re.rst:1045 ../../library/re.rst:1060 msgid "Non-empty matches can now start just after a previous empty match." msgstr "" -#: ../../library/re.rst:1051 -msgid "" -"Return an :term:`iterator` yielding :class:`~re.Match` objects over all non-" -"overlapping matches for the RE *pattern* in *string*. The *string* is " -"scanned left-to-right, and matches are returned in the order found. Empty " -"matches are included in the result." +msgid "Return an :term:`iterator` yielding :class:`~re.Match` objects over all non-overlapping matches for the RE *pattern* in *string*. The *string* is scanned left-to-right, and matches are returned in the order found. Empty matches are included in the result." +msgstr "" + +msgid "Return the string obtained by replacing the leftmost non-overlapping occurrences of *pattern* in *string* by the replacement *repl*. If the pattern isn't found, *string* is returned unchanged. *repl* can be a string or a function; if it is a string, any backslash escapes in it are processed. That is, ``\\n`` is converted to a single newline character, ``\\r`` is converted to a carriage return, and so forth. Unknown escapes of ASCII letters are reserved for future use and treated as errors. Other unknown escapes such as ``\\&`` are left alone. Backreferences, such as ``\\6``, are replaced with the substring matched by group 6 in the pattern. For example::" msgstr "" -#: ../../library/re.rst:1066 -msgid "" -"Return the string obtained by replacing the leftmost non-overlapping " -"occurrences of *pattern* in *string* by the replacement *repl*. If the " -"pattern isn't found, *string* is returned unchanged. *repl* can be a string " -"or a function; if it is a string, any backslash escapes in it are " -"processed. That is, ``\\n`` is converted to a single newline character, " -"``\\r`` is converted to a carriage return, and so forth. Unknown escapes of " -"ASCII letters are reserved for future use and treated as errors. Other " -"unknown escapes such as ``\\&`` are left alone. Backreferences, such as " -"``\\6``, are replaced with the substring matched by group 6 in the pattern. " -"For example::" -msgstr "" - -#: ../../library/re.rst:1077 msgid "" ">>> re.sub(r'def\\s+([a-zA-Z_][a-zA-Z_0-9]*)\\s*\\(\\s*\\):',\n" "... r'static PyObject*\\npy_\\1(void)\\n{',\n" @@ -1426,14 +715,9 @@ msgid "" "'static PyObject*\\npy_myfunc(void)\\n{'" msgstr "" -#: ../../library/re.rst:1082 -msgid "" -"If *repl* is a function, it is called for every non-overlapping occurrence " -"of *pattern*. The function takes a single :class:`~re.Match` argument, and " -"returns the replacement string. For example::" +msgid "If *repl* is a function, it is called for every non-overlapping occurrence of *pattern*. The function takes a single :class:`~re.Match` argument, and returns the replacement string. For example::" msgstr "" -#: ../../library/re.rst:1086 msgid "" ">>> def dashrepl(matchobj):\n" "... if matchobj.group(0) == '-': return ' '\n" @@ -1441,92 +725,48 @@ msgid "" "...\n" ">>> re.sub('-{1,2}', dashrepl, 'pro----gram-files')\n" "'pro--gram files'\n" -">>> re.sub(r'\\sAND\\s', ' & ', 'Baked Beans And Spam', " -"flags=re.IGNORECASE)\n" +">>> re.sub(r'\\sAND\\s', ' & ', 'Baked Beans And Spam', flags=re.IGNORECASE)\n" "'Baked Beans & Spam'" msgstr "" -#: ../../library/re.rst:1095 msgid "The pattern may be a string or a :class:`~re.Pattern`." msgstr "" -#: ../../library/re.rst:1097 -msgid "" -"The optional argument *count* is the maximum number of pattern occurrences " -"to be replaced; *count* must be a non-negative integer. If omitted or zero, " -"all occurrences will be replaced." +msgid "The optional argument *count* is the maximum number of pattern occurrences to be replaced; *count* must be a non-negative integer. If omitted or zero, all occurrences will be replaced." msgstr "" -#: ../../library/re.rst:1101 -msgid "" -"Adjacent empty matches are not possible, but an empty match can occur " -"immediately after a non-empty match. As a result, ``sub('x*', '-', 'abxd')`` " -"returns ``'-a-b--d-'`` instead of ``'-a-b-d-'``." +msgid "Adjacent empty matches are not possible, but an empty match can occur immediately after a non-empty match. As a result, ``sub('x*', '-', 'abxd')`` returns ``'-a-b--d-'`` instead of ``'-a-b-d-'``." +msgstr "" + +msgid "In string-type *repl* arguments, in addition to the character escapes and backreferences described above, ``\\g`` will use the substring matched by the group named ``name``, as defined by the ``(?P...)`` syntax. ``\\g`` uses the corresponding group number; ``\\g<2>`` is therefore equivalent to ``\\2``, but isn't ambiguous in a replacement such as ``\\g<2>0``. ``\\20`` would be interpreted as a reference to group 20, not a reference to group 2 followed by the literal character ``'0'``. The backreference ``\\g<0>`` substitutes in the entire substring matched by the RE." msgstr "" -#: ../../library/re.rst:1108 -msgid "" -"In string-type *repl* arguments, in addition to the character escapes and " -"backreferences described above, ``\\g`` will use the substring matched " -"by the group named ``name``, as defined by the ``(?P...)`` syntax. " -"``\\g`` uses the corresponding group number; ``\\g<2>`` is therefore " -"equivalent to ``\\2``, but isn't ambiguous in a replacement such as " -"``\\g<2>0``. ``\\20`` would be interpreted as a reference to group 20, not " -"a reference to group 2 followed by the literal character ``'0'``. The " -"backreference ``\\g<0>`` substitutes in the entire substring matched by the " -"RE." -msgstr "" - -#: ../../library/re.rst:1125 ../../library/re.rst:1408 msgid "Unmatched groups are replaced with an empty string." msgstr "" -#: ../../library/re.rst:1128 -msgid "" -"Unknown escapes in *pattern* consisting of ``'\\'`` and an ASCII letter now " -"are errors." +msgid "Unknown escapes in *pattern* consisting of ``'\\'`` and an ASCII letter now are errors." msgstr "" -#: ../../library/re.rst:1132 -msgid "" -"Unknown escapes in *repl* consisting of ``'\\'`` and an ASCII letter now are " -"errors. An empty match can occur immediately after a non-empty match." +msgid "Unknown escapes in *repl* consisting of ``'\\'`` and an ASCII letter now are errors. An empty match can occur immediately after a non-empty match." msgstr "" -#: ../../library/re.rst:1137 -msgid "" -"Group *id* can only contain ASCII digits. In :class:`bytes` replacement " -"strings, group *name* can only contain bytes in the ASCII range " -"(``b'\\x00'``-``b'\\x7f'``)." +msgid "Group *id* can only contain ASCII digits. In :class:`bytes` replacement strings, group *name* can only contain bytes in the ASCII range (``b'\\x00'``-``b'\\x7f'``)." msgstr "" -#: ../../library/re.rst:1142 -msgid "" -"Passing *count* and *flags* as positional arguments is deprecated. In future " -"Python versions they will be :ref:`keyword-only parameters `." +msgid "Passing *count* and *flags* as positional arguments is deprecated. In future Python versions they will be :ref:`keyword-only parameters `." msgstr "" -#: ../../library/re.rst:1150 -msgid "" -"Perform the same operation as :func:`sub`, but return a tuple ``(new_string, " -"number_of_subs_made)``." +msgid "Perform the same operation as :func:`sub`, but return a tuple ``(new_string, number_of_subs_made)``." msgstr "" -#: ../../library/re.rst:1160 -msgid "" -"Escape special characters in *pattern*. This is useful if you want to match " -"an arbitrary literal string that may have regular expression metacharacters " -"in it. For example::" +msgid "Escape special characters in *pattern*. This is useful if you want to match an arbitrary literal string that may have regular expression metacharacters in it. For example::" msgstr "" -#: ../../library/re.rst:1164 msgid "" ">>> print(re.escape('https://www.python.org'))\n" "https://www\\.python\\.org\n" "\n" -">>> legal_chars = string.ascii_lowercase + string.digits + \"!#$%&'*+-.^_`|~:" -"\"\n" +">>> legal_chars = string.ascii_lowercase + string.digits + \"!#$%&'*+-.^_`|~:\"\n" ">>> print('[%s]+' % re.escape(legal_chars))\n" "[abcdefghijklmnopqrstuvwxyz0123456789!\\#\\$%\\&'\\*\\+\\-\\.\\^_`\\|\\~:]+\n" "\n" @@ -1535,13 +775,9 @@ msgid "" "/|\\-|\\+|\\*\\*|\\*" msgstr "" -#: ../../library/re.rst:1175 -msgid "" -"This function must not be used for the replacement string in :func:`sub` " -"and :func:`subn`, only backslashes should be escaped. For example::" +msgid "This function must not be used for the replacement string in :func:`sub` and :func:`subn`, only backslashes should be escaped. For example::" msgstr "" -#: ../../library/re.rst:1178 msgid "" ">>> digits_re = r'\\d+'\n" ">>> sample = '/usr/sbin/sendmail - 0 errors, 12 warnings'\n" @@ -1549,115 +785,63 @@ msgid "" "/usr/sbin/sendmail - \\d+ errors, \\d+ warnings" msgstr "" -#: ../../library/re.rst:1183 msgid "The ``'_'`` character is no longer escaped." msgstr "" -#: ../../library/re.rst:1186 -msgid "" -"Only characters that can have special meaning in a regular expression are " -"escaped. As a result, ``'!'``, ``'\"'``, ``'%'``, ``\"'\"``, ``','``, " -"``'/'``, ``':'``, ``';'``, ``'<'``, ``'='``, ``'>'``, ``'@'``, and ``\"`\"`` " -"are no longer escaped." +msgid "Only characters that can have special meaning in a regular expression are escaped. As a result, ``'!'``, ``'\"'``, ``'%'``, ``\"'\"``, ``','``, ``'/'``, ``':'``, ``';'``, ``'<'``, ``'='``, ``'>'``, ``'@'``, and ``\"`\"`` are no longer escaped." msgstr "" -#: ../../library/re.rst:1195 msgid "Clear the regular expression cache." msgstr "" -#: ../../library/re.rst:1199 msgid "Exceptions" msgstr "" -#: ../../library/re.rst:1203 -msgid "" -"Exception raised when a string passed to one of the functions here is not a " -"valid regular expression (for example, it might contain unmatched " -"parentheses) or when some other error occurs during compilation or " -"matching. It is never an error if a string contains no match for a " -"pattern. The ``PatternError`` instance has the following additional " -"attributes:" +msgid "Exception raised when a string passed to one of the functions here is not a valid regular expression (for example, it might contain unmatched parentheses) or when some other error occurs during compilation or matching. It is never an error if a string contains no match for a pattern. The ``PatternError`` instance has the following additional attributes:" msgstr "" -#: ../../library/re.rst:1211 msgid "The unformatted error message." msgstr "" -#: ../../library/re.rst:1215 msgid "The regular expression pattern." msgstr "" -#: ../../library/re.rst:1219 msgid "The index in *pattern* where compilation failed (may be ``None``)." msgstr "" -#: ../../library/re.rst:1223 msgid "The line corresponding to *pos* (may be ``None``)." msgstr "" -#: ../../library/re.rst:1227 msgid "The column corresponding to *pos* (may be ``None``)." msgstr "" -#: ../../library/re.rst:1229 msgid "Added additional attributes." msgstr "" -#: ../../library/re.rst:1232 -msgid "" -"``PatternError`` was originally named ``error``; the latter is kept as an " -"alias for backward compatibility." +msgid "``PatternError`` was originally named ``error``; the latter is kept as an alias for backward compatibility." msgstr "" -#: ../../library/re.rst:1239 msgid "Regular Expression Objects" msgstr "" -#: ../../library/re.rst:1243 msgid "Compiled regular expression object returned by :func:`re.compile`." msgstr "" -#: ../../library/re.rst:1245 -msgid "" -"Patterns are :ref:`generic ` over the type of string they handle " -"(:class:`str` or :class:`bytes`)." +msgid "Patterns are :ref:`generic ` over the type of string they handle (:class:`str` or :class:`bytes`)." msgstr "" -#: ../../library/re.rst:1248 -msgid "" -":py:class:`re.Pattern` supports ``[]`` to indicate a Unicode (str) or bytes " -"pattern. See :ref:`types-genericalias`." +msgid ":py:class:`re.Pattern` supports ``[]`` to indicate a Unicode (str) or bytes pattern. See :ref:`types-genericalias`." msgstr "" -#: ../../library/re.rst:1254 -msgid "" -"Scan through *string* looking for the first location where this regular " -"expression produces a match, and return a corresponding :class:`~re.Match`. " -"Return ``None`` if no position in the string matches the pattern; note that " -"this is different from finding a zero-length match at some point in the " -"string." +msgid "Scan through *string* looking for the first location where this regular expression produces a match, and return a corresponding :class:`~re.Match`. Return ``None`` if no position in the string matches the pattern; note that this is different from finding a zero-length match at some point in the string." msgstr "" -#: ../../library/re.rst:1259 -msgid "" -"The optional second parameter *pos* gives an index in the string where the " -"search is to start; it defaults to ``0``. This is not completely equivalent " -"to slicing the string; the ``'^'`` pattern character matches at the real " -"beginning of the string and at positions just after a newline, but not " -"necessarily at the index where the search is to start." +msgid "The optional second parameter *pos* gives an index in the string where the search is to start; it defaults to ``0``. This is not completely equivalent to slicing the string; the ``'^'`` pattern character matches at the real beginning of the string and at positions just after a newline, but not necessarily at the index where the search is to start." msgstr "" -#: ../../library/re.rst:1265 -msgid "" -"The optional parameter *endpos* limits how far the string will be searched; " -"it will be as if the string is *endpos* characters long, so only the " -"characters from *pos* to ``endpos - 1`` will be searched for a match. If " -"*endpos* is less than *pos*, no match will be found; otherwise, if *rx* is a " -"compiled regular expression object, ``rx.search(string, 0, 50)`` is " -"equivalent to ``rx.search(string[:50], 0)``. ::" +msgid "The optional parameter *endpos* limits how far the string will be searched; it will be as if the string is *endpos* characters long, so only the characters from *pos* to ``endpos - 1`` will be searched for a match. If *endpos* is less than *pos*, no match will be found; otherwise, if *rx* is a compiled regular expression object, ``rx.search(string, 0, 50)`` is equivalent to ``rx.search(string[:50], 0)``. ::" msgstr "" -#: ../../library/re.rst:1272 msgid "" ">>> pattern = re.compile(\"d\")\n" ">>> pattern.search(\"dog\") # Match at index 0\n" @@ -1665,170 +849,90 @@ msgid "" ">>> pattern.search(\"dog\", 1) # No match; search doesn't include the \"d\"" msgstr "" -#: ../../library/re.rst:1280 -msgid "" -"If zero or more characters at the *beginning* of *string* match this regular " -"expression, return a corresponding :class:`~re.Match`. Return ``None`` if " -"the string does not match the pattern; note that this is different from a " -"zero-length match." +msgid "If zero or more characters at the *beginning* of *string* match this regular expression, return a corresponding :class:`~re.Match`. Return ``None`` if the string does not match the pattern; note that this is different from a zero-length match." msgstr "" -#: ../../library/re.rst:1285 ../../library/re.rst:1303 -msgid "" -"The optional *pos* and *endpos* parameters have the same meaning as for " -"the :meth:`~Pattern.search` method. ::" +msgid "The optional *pos* and *endpos* parameters have the same meaning as for the :meth:`~Pattern.search` method. ::" msgstr "" -#: ../../library/re.rst:1288 msgid "" ">>> pattern = re.compile(\"o\")\n" -">>> pattern.match(\"dog\") # No match as \"o\" is not at the start of " -"\"dog\".\n" -">>> pattern.match(\"dog\", 1) # Match as \"o\" is the 2nd character of " -"\"dog\".\n" +">>> pattern.match(\"dog\") # No match as \"o\" is not at the start of \"dog\".\n" +">>> pattern.match(\"dog\", 1) # Match as \"o\" is the 2nd character of \"dog\".\n" "" msgstr "" -#: ../../library/re.rst:1293 -msgid "" -"If you want to locate a match anywhere in *string*, " -"use :meth:`~Pattern.search` instead (see also :ref:`search-vs-match`)." +msgid "If you want to locate a match anywhere in *string*, use :meth:`~Pattern.search` instead (see also :ref:`search-vs-match`)." msgstr "" -#: ../../library/re.rst:1299 -msgid "" -"If the whole *string* matches this regular expression, return a " -"corresponding :class:`~re.Match`. Return ``None`` if the string does not " -"match the pattern; note that this is different from a zero-length match." +msgid "If the whole *string* matches this regular expression, return a corresponding :class:`~re.Match`. Return ``None`` if the string does not match the pattern; note that this is different from a zero-length match." msgstr "" -#: ../../library/re.rst:1306 msgid "" ">>> pattern = re.compile(\"o[gh]\")\n" -">>> pattern.fullmatch(\"dog\") # No match as \"o\" is not at the start " -"of \"dog\".\n" -">>> pattern.fullmatch(\"ogre\") # No match as not the full string " -"matches.\n" +">>> pattern.fullmatch(\"dog\") # No match as \"o\" is not at the start of \"dog\".\n" +">>> pattern.fullmatch(\"ogre\") # No match as not the full string matches.\n" ">>> pattern.fullmatch(\"doggie\", 1, 3) # Matches within given limits.\n" "" msgstr "" -#: ../../library/re.rst:1317 msgid "Identical to the :func:`split` function, using the compiled pattern." msgstr "" -#: ../../library/re.rst:1322 -msgid "" -"Similar to the :func:`findall` function, using the compiled pattern, but " -"also accepts optional *pos* and *endpos* parameters that limit the search " -"region like for :meth:`search`." +msgid "Similar to the :func:`findall` function, using the compiled pattern, but also accepts optional *pos* and *endpos* parameters that limit the search region like for :meth:`search`." msgstr "" -#: ../../library/re.rst:1329 -msgid "" -"Similar to the :func:`finditer` function, using the compiled pattern, but " -"also accepts optional *pos* and *endpos* parameters that limit the search " -"region like for :meth:`search`." +msgid "Similar to the :func:`finditer` function, using the compiled pattern, but also accepts optional *pos* and *endpos* parameters that limit the search region like for :meth:`search`." msgstr "" -#: ../../library/re.rst:1336 msgid "Identical to the :func:`sub` function, using the compiled pattern." msgstr "" -#: ../../library/re.rst:1341 msgid "Identical to the :func:`subn` function, using the compiled pattern." msgstr "" -#: ../../library/re.rst:1346 -msgid "" -"The regex matching flags. This is a combination of the flags given " -"to :func:`.compile`, any ``(?...)`` inline flags in the pattern, and " -"implicit flags such as :py:const:`~re.UNICODE` if the pattern is a Unicode " -"string." +msgid "The regex matching flags. This is a combination of the flags given to :func:`.compile`, any ``(?...)`` inline flags in the pattern, and implicit flags such as :py:const:`~re.UNICODE` if the pattern is a Unicode string." msgstr "" -#: ../../library/re.rst:1353 msgid "The number of capturing groups in the pattern." msgstr "" -#: ../../library/re.rst:1358 -msgid "" -"A dictionary mapping any symbolic group names defined by ``(?P)`` to " -"group numbers. The dictionary is empty if no symbolic groups were used in " -"the pattern." +msgid "A dictionary mapping any symbolic group names defined by ``(?P)`` to group numbers. The dictionary is empty if no symbolic groups were used in the pattern." msgstr "" -#: ../../library/re.rst:1365 msgid "The pattern string from which the pattern object was compiled." msgstr "" -#: ../../library/re.rst:1368 -msgid "" -"Added support of :func:`copy.copy` and :func:`copy.deepcopy`. Compiled " -"regular expression objects are considered atomic." +msgid "Added support of :func:`copy.copy` and :func:`copy.deepcopy`. Compiled regular expression objects are considered atomic." msgstr "" -#: ../../library/re.rst:1376 msgid "Match Objects" msgstr "" -#: ../../library/re.rst:1378 -msgid "" -"Match objects always have a boolean value of ``True``. " -"Since :meth:`~Pattern.match` and :meth:`~Pattern.search` return ``None`` " -"when there is no match, you can test whether there was a match with a simple " -"``if`` statement::" +msgid "Match objects always have a boolean value of ``True``. Since :meth:`~Pattern.match` and :meth:`~Pattern.search` return ``None`` when there is no match, you can test whether there was a match with a simple ``if`` statement::" msgstr "" -#: ../../library/re.rst:1383 msgid "" "match = re.search(pattern, string)\n" "if match:\n" " process(match)" msgstr "" -#: ../../library/re.rst:1389 msgid "Match object returned by successful ``match``\\ es and ``search``\\ es." msgstr "" -#: ../../library/re.rst:1391 -msgid "" -"Matches are :ref:`generic ` over the type of string which was " -"matched (:class:`str` or :class:`bytes`)." +msgid "Matches are :ref:`generic ` over the type of string which was matched (:class:`str` or :class:`bytes`)." msgstr "" -#: ../../library/re.rst:1394 -msgid "" -":py:class:`re.Match` supports ``[]`` to indicate a Unicode (str) or bytes " -"match. See :ref:`types-genericalias`." +msgid ":py:class:`re.Match` supports ``[]`` to indicate a Unicode (str) or bytes match. See :ref:`types-genericalias`." msgstr "" -#: ../../library/re.rst:1400 -msgid "" -"Return the string obtained by doing backslash substitution on the template " -"string *template*, as done by the :meth:`~Pattern.sub` method. Escapes such " -"as ``\\n`` are converted to the appropriate characters, and numeric " -"backreferences (``\\1``, ``\\2``) and named backreferences (``\\g<1>``, " -"``\\g``) are replaced by the contents of the corresponding group. The " -"backreference ``\\g<0>`` will be replaced by the entire match." +msgid "Return the string obtained by doing backslash substitution on the template string *template*, as done by the :meth:`~Pattern.sub` method. Escapes such as ``\\n`` are converted to the appropriate characters, and numeric backreferences (``\\1``, ``\\2``) and named backreferences (``\\g<1>``, ``\\g``) are replaced by the contents of the corresponding group. The backreference ``\\g<0>`` will be replaced by the entire match." +msgstr "" + +msgid "Returns one or more subgroups of the match. If there is a single argument, the result is a single string; if there are multiple arguments, the result is a tuple with one item per argument. Without arguments, *group1* defaults to zero (the whole match is returned). If a *groupN* argument is zero, the corresponding return value is the entire matching string; if it is a positive integer, it is the string matching the corresponding parenthesized group. If a group number is negative or larger than the number of groups defined in the pattern, an :exc:`IndexError` exception is raised. If a group is contained in a part of the pattern that did not match, the corresponding result is ``None``. If a group is contained in a part of the pattern that matched multiple times, the last match is returned. ::" msgstr "" -#: ../../library/re.rst:1413 -msgid "" -"Returns one or more subgroups of the match. If there is a single argument, " -"the result is a single string; if there are multiple arguments, the result " -"is a tuple with one item per argument. Without arguments, *group1* defaults " -"to zero (the whole match is returned). If a *groupN* argument is zero, the " -"corresponding return value is the entire matching string; if it is a " -"positive integer, it is the string matching the corresponding parenthesized " -"group. If a group number is negative or larger than the number of groups " -"defined in the pattern, an :exc:`IndexError` exception is raised. If a group " -"is contained in a part of the pattern that did not match, the corresponding " -"result is ``None``. If a group is contained in a part of the pattern that " -"matched multiple times, the last match is returned. ::" -msgstr "" - -#: ../../library/re.rst:1425 msgid "" ">>> m = re.match(r\"(\\w+) (\\w+)\", \"Isaac Newton, physicist\")\n" ">>> m.group(0) # The entire match\n" @@ -1841,33 +945,23 @@ msgid "" "('Isaac', 'Newton')" msgstr "" -#: ../../library/re.rst:1435 -msgid "" -"If the regular expression uses the ``(?P...)`` syntax, the *groupN* " -"arguments may also be strings identifying groups by their group name. If a " -"string argument is not used as a group name in the pattern, " -"an :exc:`IndexError` exception is raised." +msgid "If the regular expression uses the ``(?P...)`` syntax, the *groupN* arguments may also be strings identifying groups by their group name. If a string argument is not used as a group name in the pattern, an :exc:`IndexError` exception is raised." msgstr "" -#: ../../library/re.rst:1440 msgid "A moderately complicated example::" msgstr "" -#: ../../library/re.rst:1442 msgid "" -">>> m = re.match(r\"(?P\\w+) (?P\\w+)\", \"Malcolm " -"Reynolds\")\n" +">>> m = re.match(r\"(?P\\w+) (?P\\w+)\", \"Malcolm Reynolds\")\n" ">>> m.group('first_name')\n" "'Malcolm'\n" ">>> m.group('last_name')\n" "'Reynolds'" msgstr "" -#: ../../library/re.rst:1448 msgid "Named groups can also be referred to by their index::" msgstr "" -#: ../../library/re.rst:1450 msgid "" ">>> m.group(1)\n" "'Malcolm'\n" @@ -1875,24 +969,18 @@ msgid "" "'Reynolds'" msgstr "" -#: ../../library/re.rst:1455 msgid "If a group matches multiple times, only the last match is accessible::" msgstr "" -#: ../../library/re.rst:1457 msgid "" ">>> m = re.match(r\"(..)+\", \"a1b2c3\") # Matches 3 times.\n" ">>> m.group(1) # Returns only the last match.\n" "'c3'" msgstr "" -#: ../../library/re.rst:1464 -msgid "" -"This is identical to ``m.group(g)``. This allows easier access to an " -"individual group from a match::" +msgid "This is identical to ``m.group(g)``. This allows easier access to an individual group from a match::" msgstr "" -#: ../../library/re.rst:1467 msgid "" ">>> m = re.match(r\"(\\w+) (\\w+)\", \"Isaac Newton, physicist\")\n" ">>> m[0] # The entire match\n" @@ -1903,46 +991,32 @@ msgid "" "'Newton'" msgstr "" -#: ../../library/re.rst:1475 msgid "Named groups are supported as well::" msgstr "" -#: ../../library/re.rst:1477 msgid "" -">>> m = re.match(r\"(?P\\w+) (?P\\w+)\", \"Isaac " -"Newton\")\n" +">>> m = re.match(r\"(?P\\w+) (?P\\w+)\", \"Isaac Newton\")\n" ">>> m['first_name']\n" "'Isaac'\n" ">>> m['last_name']\n" "'Newton'" msgstr "" -#: ../../library/re.rst:1488 -msgid "" -"Return a tuple containing all the subgroups of the match, from 1 up to " -"however many groups are in the pattern. The *default* argument is used for " -"groups that did not participate in the match; it defaults to ``None``." +msgid "Return a tuple containing all the subgroups of the match, from 1 up to however many groups are in the pattern. The *default* argument is used for groups that did not participate in the match; it defaults to ``None``." msgstr "" -#: ../../library/re.rst:1492 ../../library/re.rst:1717 msgid "For example::" msgstr "" -#: ../../library/re.rst:1494 msgid "" ">>> m = re.match(r\"(\\d+)\\.(\\d+)\", \"24.1632\")\n" ">>> m.groups()\n" "('24', '1632')" msgstr "" -#: ../../library/re.rst:1498 -msgid "" -"If we make the decimal place and everything after it optional, not all " -"groups might participate in the match. These groups will default to " -"``None`` unless the *default* argument is given::" +msgid "If we make the decimal place and everything after it optional, not all groups might participate in the match. These groups will default to ``None`` unless the *default* argument is given::" msgstr "" -#: ../../library/re.rst:1502 msgid "" ">>> m = re.match(r\"(\\d+)\\.?(\\d+)?\", \"24\")\n" ">>> m.groups() # Second group defaults to None.\n" @@ -1951,47 +1025,27 @@ msgid "" "('24', '0')" msgstr "" -#: ../../library/re.rst:1511 -msgid "" -"Return a dictionary containing all the *named* subgroups of the match, keyed " -"by the subgroup name. The *default* argument is used for groups that did " -"not participate in the match; it defaults to ``None``. For example::" +msgid "Return a dictionary containing all the *named* subgroups of the match, keyed by the subgroup name. The *default* argument is used for groups that did not participate in the match; it defaults to ``None``. For example::" msgstr "" -#: ../../library/re.rst:1515 msgid "" -">>> m = re.match(r\"(?P\\w+) (?P\\w+)\", \"Malcolm " -"Reynolds\")\n" +">>> m = re.match(r\"(?P\\w+) (?P\\w+)\", \"Malcolm Reynolds\")\n" ">>> m.groupdict()\n" "{'first_name': 'Malcolm', 'last_name': 'Reynolds'}" msgstr "" -#: ../../library/re.rst:1523 -msgid "" -"Return the indices of the start and end of the substring matched by *group*; " -"*group* defaults to zero (meaning the whole matched substring). Return " -"``-1`` if *group* exists but did not contribute to the match. For a match " -"object *m*, and a group *g* that did contribute to the match, the substring " -"matched by group *g* (equivalent to ``m.group(g)``) is ::" +msgid "Return the indices of the start and end of the substring matched by *group*; *group* defaults to zero (meaning the whole matched substring). Return ``-1`` if *group* exists but did not contribute to the match. For a match object *m*, and a group *g* that did contribute to the match, the substring matched by group *g* (equivalent to ``m.group(g)``) is ::" msgstr "" -#: ../../library/re.rst:1529 msgid "m.string[m.start(g):m.end(g)]" msgstr "" -#: ../../library/re.rst:1531 -msgid "" -"Note that ``m.start(group)`` will equal ``m.end(group)`` if *group* matched " -"a null string. For example, after ``m = re.search('b(c?)', 'cba')``, " -"``m.start(0)`` is 1, ``m.end(0)`` is 2, ``m.start(1)`` and ``m.end(1)`` are " -"both 2, and ``m.start(2)`` raises an :exc:`IndexError` exception." +msgid "Note that ``m.start(group)`` will equal ``m.end(group)`` if *group* matched a null string. For example, after ``m = re.search('b(c?)', 'cba')``, ``m.start(0)`` is 1, ``m.end(0)`` is 2, ``m.start(1)`` and ``m.end(1)`` are both 2, and ``m.start(2)`` raises an :exc:`IndexError` exception." msgstr "" -#: ../../library/re.rst:1536 msgid "An example that will remove *remove_this* from email addresses::" msgstr "" -#: ../../library/re.rst:1538 msgid "" ">>> email = \"tony@tiremove_thisger.net\"\n" ">>> m = re.search(\"remove_this\", email)\n" @@ -1999,75 +1053,39 @@ msgid "" "'tony@tiger.net'" msgstr "" -#: ../../library/re.rst:1546 -msgid "" -"For a match *m*, return the 2-tuple ``(m.start(group), m.end(group))``. Note " -"that if *group* did not contribute to the match, this is ``(-1, -1)``. " -"*group* defaults to zero, the entire match." +msgid "For a match *m*, return the 2-tuple ``(m.start(group), m.end(group))``. Note that if *group* did not contribute to the match, this is ``(-1, -1)``. *group* defaults to zero, the entire match." msgstr "" -#: ../../library/re.rst:1553 -msgid "" -"The value of *pos* which was passed to the :meth:`~Pattern.search` " -"or :meth:`~Pattern.match` method of a :ref:`regex object `. " -"This is the index into the string at which the RE engine started looking for " -"a match." +msgid "The value of *pos* which was passed to the :meth:`~Pattern.search` or :meth:`~Pattern.match` method of a :ref:`regex object `. This is the index into the string at which the RE engine started looking for a match." msgstr "" -#: ../../library/re.rst:1560 -msgid "" -"The value of *endpos* which was passed to the :meth:`~Pattern.search` " -"or :meth:`~Pattern.match` method of a :ref:`regex object `. " -"This is the index into the string beyond which the RE engine will not go." +msgid "The value of *endpos* which was passed to the :meth:`~Pattern.search` or :meth:`~Pattern.match` method of a :ref:`regex object `. This is the index into the string beyond which the RE engine will not go." msgstr "" -#: ../../library/re.rst:1567 -msgid "" -"The integer index of the last matched capturing group, or ``None`` if no " -"group was matched at all. For example, the expressions ``(a)b``, ``((a)" -"(b))``, and ``((ab))`` will have ``lastindex == 1`` if applied to the string " -"``'ab'``, while the expression ``(a)(b)`` will have ``lastindex == 2``, if " -"applied to the same string." +msgid "The integer index of the last matched capturing group, or ``None`` if no group was matched at all. For example, the expressions ``(a)b``, ``((a)(b))``, and ``((ab))`` will have ``lastindex == 1`` if applied to the string ``'ab'``, while the expression ``(a)(b)`` will have ``lastindex == 2``, if applied to the same string." msgstr "" -#: ../../library/re.rst:1576 -msgid "" -"The name of the last matched capturing group, or ``None`` if the group " -"didn't have a name, or if no group was matched at all." +msgid "The name of the last matched capturing group, or ``None`` if the group didn't have a name, or if no group was matched at all." msgstr "" -#: ../../library/re.rst:1582 -msgid "" -"The :ref:`regular expression object ` " -"whose :meth:`~Pattern.match` or :meth:`~Pattern.search` method produced this " -"match instance." +msgid "The :ref:`regular expression object ` whose :meth:`~Pattern.match` or :meth:`~Pattern.search` method produced this match instance." msgstr "" -#: ../../library/re.rst:1588 msgid "The string passed to :meth:`~Pattern.match` or :meth:`~Pattern.search`." msgstr "" -#: ../../library/re.rst:1591 -msgid "" -"Added support of :func:`copy.copy` and :func:`copy.deepcopy`. Match objects " -"are considered atomic." +msgid "Added support of :func:`copy.copy` and :func:`copy.deepcopy`. Match objects are considered atomic." msgstr "" -#: ../../library/re.rst:1599 msgid "Regular Expression Examples" msgstr "" -#: ../../library/re.rst:1603 msgid "Checking for a Pair" msgstr "" -#: ../../library/re.rst:1605 -msgid "" -"In this example, we'll use the following helper function to display match " -"objects a little more gracefully::" +msgid "In this example, we'll use the following helper function to display match objects a little more gracefully::" msgstr "" -#: ../../library/re.rst:1608 msgid "" "def displaymatch(match):\n" " if match is None:\n" @@ -2075,19 +1093,12 @@ msgid "" " return '' % (match.group(), match.groups())" msgstr "" -#: ../../library/re.rst:1613 -msgid "" -"Suppose you are writing a poker program where a player's hand is represented " -"as a 5-character string with each character representing a card, \"a\" for " -"ace, \"k\" for king, \"q\" for queen, \"j\" for jack, \"t\" for 10, and " -"\"2\" through \"9\" representing the card with that value." +msgid "Suppose you are writing a poker program where a player's hand is represented as a 5-character string with each character representing a card, \"a\" for ace, \"k\" for king, \"q\" for queen, \"j\" for jack, \"t\" for 10, and \"2\" through \"9\" representing the card with that value." msgstr "" -#: ../../library/re.rst:1618 msgid "To see if a given string is a valid hand, one could do the following::" msgstr "" -#: ../../library/re.rst:1620 msgid "" ">>> valid = re.compile(r\"^[a2-9tjqk]{5}$\")\n" ">>> displaymatch(valid.match(\"akt5q\")) # Valid.\n" @@ -2098,14 +1109,9 @@ msgid "" "\"\"" msgstr "" -#: ../../library/re.rst:1628 -msgid "" -"That last hand, ``\"727ak\"``, contained a pair, or two of the same valued " -"cards. To match this with a regular expression, one could use backreferences " -"as such::" +msgid "That last hand, ``\"727ak\"``, contained a pair, or two of the same valued cards. To match this with a regular expression, one could use backreferences as such::" msgstr "" -#: ../../library/re.rst:1631 msgid "" ">>> pair = re.compile(r\".*(.).*\\1\")\n" ">>> displaymatch(pair.match(\"717ak\")) # Pair of 7s.\n" @@ -2115,20 +1121,15 @@ msgid "" "\"\"" msgstr "" -#: ../../library/re.rst:1638 -msgid "" -"To find out what card the pair consists of, one could use " -"the :meth:`~Match.group` method of the match object in the following manner::" +msgid "To find out what card the pair consists of, one could use the :meth:`~Match.group` method of the match object in the following manner::" msgstr "" -#: ../../library/re.rst:1641 msgid "" ">>> pair = re.compile(r\".*(.).*\\1\")\n" ">>> pair.match(\"717ak\").group(1)\n" "'7'\n" "\n" -"# Error because re.match() returns None, which doesn't have a group() " -"method:\n" +"# Error because re.match() returns None, which doesn't have a group() method:\n" ">>> pair.match(\"718ak\").group(1)\n" "Traceback (most recent call last):\n" " File \"\", line 1, in \n" @@ -2139,143 +1140,102 @@ msgid "" "'a'" msgstr "" -#: ../../library/re.rst:1657 msgid "Simulating scanf()" msgstr "" -#: ../../library/re.rst:1661 -msgid "" -"Python does not currently have an equivalent to :c:func:`!scanf`. Regular " -"expressions are generally more powerful, though also more verbose, " -"than :c:func:`!scanf` format strings. The table below offers some more-or-" -"less equivalent mappings between :c:func:`!scanf` format tokens and regular " -"expressions." +msgid "Python does not currently have an equivalent to :c:func:`!scanf`. Regular expressions are generally more powerful, though also more verbose, than :c:func:`!scanf` format strings. The table below offers some more-or-less equivalent mappings between :c:func:`!scanf` format tokens and regular expressions." msgstr "" -#: ../../library/re.rst:1668 msgid ":c:func:`!scanf` Token" msgstr "" -#: ../../library/re.rst:1668 msgid "Regular Expression" msgstr "" -#: ../../library/re.rst:1670 msgid "``%c``" msgstr "" -#: ../../library/re.rst:1672 msgid "``%5c``" msgstr "" -#: ../../library/re.rst:1672 msgid "``.{5}``" msgstr "" -#: ../../library/re.rst:1674 msgid "``%d``" msgstr "" -#: ../../library/re.rst:1674 msgid "``[-+]?\\d+``" msgstr "" -#: ../../library/re.rst:1676 msgid "``%e``, ``%E``, ``%f``, ``%g``" msgstr "" -#: ../../library/re.rst:1676 msgid "``[-+]?(\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?``" msgstr "" -#: ../../library/re.rst:1678 msgid "``%i``" msgstr "" -#: ../../library/re.rst:1678 msgid "``[-+]?(0[xX][\\dA-Fa-f]+|0[0-7]*|\\d+)``" msgstr "" -#: ../../library/re.rst:1680 msgid "``%o``" msgstr "" -#: ../../library/re.rst:1680 msgid "``[-+]?[0-7]+``" msgstr "" -#: ../../library/re.rst:1682 msgid "``%s``" msgstr "" -#: ../../library/re.rst:1682 msgid "``\\S+``" msgstr "" -#: ../../library/re.rst:1684 msgid "``%u``" msgstr "" -#: ../../library/re.rst:1684 msgid "``\\d+``" msgstr "" -#: ../../library/re.rst:1686 msgid "``%x``, ``%X``" msgstr "" -#: ../../library/re.rst:1686 msgid "``[-+]?(0[xX])?[\\dA-Fa-f]+``" msgstr "" -#: ../../library/re.rst:1689 msgid "To extract the filename and numbers from a string like ::" msgstr "" -#: ../../library/re.rst:1691 msgid "/usr/sbin/sendmail - 0 errors, 4 warnings" msgstr "" -#: ../../library/re.rst:1693 msgid "you would use a :c:func:`!scanf` format like ::" msgstr "" -#: ../../library/re.rst:1695 msgid "%s - %d errors, %d warnings" msgstr "" -#: ../../library/re.rst:1697 msgid "The equivalent regular expression would be ::" msgstr "" -#: ../../library/re.rst:1699 msgid "(\\S+) - (\\d+) errors, (\\d+) warnings" msgstr "" -#: ../../library/re.rst:1705 msgid "search() vs. match()" msgstr "" -#: ../../library/re.rst:1709 -msgid "" -"Python offers different primitive operations based on regular expressions:" +msgid "Python offers different primitive operations based on regular expressions:" msgstr "" -#: ../../library/re.rst:1711 msgid ":func:`re.match` checks for a match only at the beginning of the string" msgstr "" -#: ../../library/re.rst:1712 -msgid "" -":func:`re.search` checks for a match anywhere in the string (this is what " -"Perl does by default)" +msgid ":func:`re.search` checks for a match anywhere in the string (this is what Perl does by default)" msgstr "" -#: ../../library/re.rst:1714 msgid ":func:`re.fullmatch` checks for entire string to be a match" msgstr "" -#: ../../library/re.rst:1719 msgid "" ">>> re.match(\"c\", \"abcdef\") # No match\n" ">>> re.search(\"c\", \"abcdef\") # Match\n" @@ -2285,13 +1245,9 @@ msgid "" ">>> re.fullmatch(\"r.*n\", \"python\") # No match" msgstr "" -#: ../../library/re.rst:1726 -msgid "" -"Regular expressions beginning with ``'^'`` can be used with :func:`search` " -"to restrict the match at the beginning of the string::" +msgid "Regular expressions beginning with ``'^'`` can be used with :func:`search` to restrict the match at the beginning of the string::" msgstr "" -#: ../../library/re.rst:1729 msgid "" ">>> re.match(\"c\", \"abcdef\") # No match\n" ">>> re.search(\"^c\", \"abcdef\") # No match\n" @@ -2299,40 +1255,24 @@ msgid "" "" msgstr "" -#: ../../library/re.rst:1734 -msgid "" -"Note however that in :const:`MULTILINE` mode :func:`match` only matches at " -"the beginning of the string, whereas using :func:`search` with a regular " -"expression beginning with ``'^'`` will match at the beginning of each " -"line. ::" +msgid "Note however that in :const:`MULTILINE` mode :func:`match` only matches at the beginning of the string, whereas using :func:`search` with a regular expression beginning with ``'^'`` will match at the beginning of each line. ::" msgstr "" -#: ../../library/re.rst:1738 msgid "" ">>> re.match(\"X\", \"A\\nB\\nX\", re.MULTILINE) # No match\n" ">>> re.search(\"^X\", \"A\\nB\\nX\", re.MULTILINE) # Match\n" "" msgstr "" -#: ../../library/re.rst:1744 msgid "Making a Phonebook" msgstr "" -#: ../../library/re.rst:1746 -msgid "" -":func:`split` splits a string into a list delimited by the passed pattern. " -"The method is invaluable for converting textual data into data structures " -"that can be easily read and modified by Python as demonstrated in the " -"following example that creates a phonebook." +msgid ":func:`split` splits a string into a list delimited by the passed pattern. The method is invaluable for converting textual data into data structures that can be easily read and modified by Python as demonstrated in the following example that creates a phonebook." msgstr "" -#: ../../library/re.rst:1751 -msgid "" -"First, here is the input. Normally it may come from a file, here we are " -"using triple-quoted string syntax" +msgid "First, here is the input. Normally it may come from a file, here we are using triple-quoted string syntax" msgstr "" -#: ../../library/re.rst:1754 msgid "" ">>> text = \"\"\"Ross McFluff: 834.345.1254 155 Elm Street\n" "...\n" @@ -2343,13 +1283,9 @@ msgid "" "... Heather Albrecht: 548.326.4584 919 Park Place\"\"\"" msgstr "" -#: ../../library/re.rst:1764 -msgid "" -"The entries are separated by one or more newlines. Now we convert the string " -"into a list with each nonempty line having its own entry:" +msgid "The entries are separated by one or more newlines. Now we convert the string into a list with each nonempty line having its own entry:" msgstr "" -#: ../../library/re.rst:1767 msgid "" ">>> entries = re.split(\"\\n+\", text)\n" ">>> entries\n" @@ -2359,14 +1295,9 @@ msgid "" "'Heather Albrecht: 548.326.4584 919 Park Place']" msgstr "" -#: ../../library/re.rst:1777 -msgid "" -"Finally, split each entry into a list with first name, last name, telephone " -"number, and address. We use the ``maxsplit`` parameter of :func:`split` " -"because the address has spaces, our splitting pattern, in it:" +msgid "Finally, split each entry into a list with first name, last name, telephone number, and address. We use the ``maxsplit`` parameter of :func:`split` because the address has spaces, our splitting pattern, in it:" msgstr "" -#: ../../library/re.rst:1781 msgid "" ">>> [re.split(\":? \", entry, maxsplit=3) for entry in entries]\n" "[['Ross', 'McFluff', '834.345.1254', '155 Elm Street'],\n" @@ -2375,14 +1306,9 @@ msgid "" "['Heather', 'Albrecht', '548.326.4584', '919 Park Place']]" msgstr "" -#: ../../library/re.rst:1790 -msgid "" -"The ``:?`` pattern matches the colon after the last name, so that it does " -"not occur in the result list. With a ``maxsplit`` of ``4``, we could " -"separate the house number from the street name:" +msgid "The ``:?`` pattern matches the colon after the last name, so that it does not occur in the result list. With a ``maxsplit`` of ``4``, we could separate the house number from the street name:" msgstr "" -#: ../../library/re.rst:1794 msgid "" ">>> [re.split(\":? \", entry, maxsplit=4) for entry in entries]\n" "[['Ross', 'McFluff', '834.345.1254', '155', 'Elm Street'],\n" @@ -2391,19 +1317,12 @@ msgid "" "['Heather', 'Albrecht', '548.326.4584', '919', 'Park Place']]" msgstr "" -#: ../../library/re.rst:1805 msgid "Text Munging" msgstr "" -#: ../../library/re.rst:1807 -msgid "" -":func:`sub` replaces every occurrence of a pattern with a string or the " -"result of a function. This example demonstrates using :func:`sub` with a " -"function to \"munge\" text, or randomize the order of all the characters in " -"each word of a sentence except for the first and last characters::" +msgid ":func:`sub` replaces every occurrence of a pattern with a string or the result of a function. This example demonstrates using :func:`sub` with a function to \"munge\" text, or randomize the order of all the characters in each word of a sentence except for the first and last characters::" msgstr "" -#: ../../library/re.rst:1812 msgid "" ">>> def repl(m):\n" "... inner_word = list(m.group(2))\n" @@ -2417,39 +1336,24 @@ msgid "" "'Pofsroser Aodlambelk, plasee reoprt yuor asnebces potlmrpy.'" msgstr "" -#: ../../library/re.rst:1825 msgid "Finding all Adverbs" msgstr "" -#: ../../library/re.rst:1827 -msgid "" -":func:`findall` matches *all* occurrences of a pattern, not just the first " -"one as :func:`search` does. For example, if a writer wanted to find all of " -"the adverbs in some text, they might use :func:`findall` in the following " -"manner::" +msgid ":func:`findall` matches *all* occurrences of a pattern, not just the first one as :func:`search` does. For example, if a writer wanted to find all of the adverbs in some text, they might use :func:`findall` in the following manner::" msgstr "" -#: ../../library/re.rst:1832 msgid "" ">>> text = \"He was carefully disguised but captured quickly by police.\"\n" ">>> re.findall(r\"\\w+ly\\b\", text)\n" "['carefully', 'quickly']" msgstr "" -#: ../../library/re.rst:1838 msgid "Finding all Adverbs and their Positions" msgstr "" -#: ../../library/re.rst:1840 -msgid "" -"If one wants more information about all matches of a pattern than the " -"matched text, :func:`finditer` is useful as it provides :class:`~re.Match` " -"objects instead of strings. Continuing with the previous example, if a " -"writer wanted to find all of the adverbs *and their positions* in some text, " -"they would use :func:`finditer` in the following manner::" +msgid "If one wants more information about all matches of a pattern than the matched text, :func:`finditer` is useful as it provides :class:`~re.Match` objects instead of strings. Continuing with the previous example, if a writer wanted to find all of the adverbs *and their positions* in some text, they would use :func:`finditer` in the following manner::" msgstr "" -#: ../../library/re.rst:1846 msgid "" ">>> text = \"He was carefully disguised but captured quickly by police.\"\n" ">>> for m in re.finditer(r\"\\w+ly\\b\", text):\n" @@ -2458,19 +1362,12 @@ msgid "" "40-47: quickly" msgstr "" -#: ../../library/re.rst:1854 msgid "Raw String Notation" msgstr "" -#: ../../library/re.rst:1856 -msgid "" -"Raw string notation (``r\"text\"``) keeps regular expressions sane. Without " -"it, every backslash (``'\\'``) in a regular expression would have to be " -"prefixed with another one to escape it. For example, the two following " -"lines of code are functionally identical::" +msgid "Raw string notation (``r\"text\"``) keeps regular expressions sane. Without it, every backslash (``'\\'``) in a regular expression would have to be prefixed with another one to escape it. For example, the two following lines of code are functionally identical::" msgstr "" -#: ../../library/re.rst:1861 msgid "" ">>> re.match(r\"\\W(.)\\1\\W\", \" ff \")\n" "\n" @@ -2478,15 +1375,9 @@ msgid "" "" msgstr "" -#: ../../library/re.rst:1866 -msgid "" -"When one wants to match a literal backslash, it must be escaped in the " -"regular expression. With raw string notation, this means ``r\"\\\\\"``. " -"Without raw string notation, one must use ``\"\\\\\\\\\"``, making the " -"following lines of code functionally identical::" +msgid "When one wants to match a literal backslash, it must be escaped in the regular expression. With raw string notation, this means ``r\"\\\\\"``. Without raw string notation, one must use ``\"\\\\\\\\\"``, making the following lines of code functionally identical::" msgstr "" -#: ../../library/re.rst:1871 msgid "" ">>> re.match(r\"\\\\\", r\"\\\\\")\n" "\n" @@ -2494,25 +1385,15 @@ msgid "" "" msgstr "" -#: ../../library/re.rst:1878 msgid "Writing a Tokenizer" msgstr "" -#: ../../library/re.rst:1880 -msgid "" -"A `tokenizer or scanner `_ " -"analyzes a string to categorize groups of characters. This is a useful " -"first step in writing a compiler or interpreter." +msgid "A `tokenizer or scanner `_ analyzes a string to categorize groups of characters. This is a useful first step in writing a compiler or interpreter." msgstr "" -#: ../../library/re.rst:1884 -msgid "" -"The text categories are specified with regular expressions. The technique " -"is to combine those into a single master regular expression and to loop over " -"successive matches::" +msgid "The text categories are specified with regular expressions. The technique is to combine those into a single master regular expression and to loop over successive matches::" msgstr "" -#: ../../library/re.rst:1888 msgid "" "from typing import NamedTuple\n" "import re\n" @@ -2535,8 +1416,7 @@ msgid "" " ('SKIP', r'[ \\t]+'), # Skip over spaces and tabs\n" " ('MISMATCH', r'.'), # Any other character\n" " ]\n" -" tok_regex = '|'.join('(?P<%s>%s)' % pair for pair in " -"token_specification)\n" +" tok_regex = '|'.join('(?P<%s>%s)' % pair for pair in token_specification)\n" " line_num = 1\n" " line_start = 0\n" " for mo in re.finditer(tok_regex, code):\n" @@ -2568,11 +1448,9 @@ msgid "" " print(token)" msgstr "" -#: ../../library/re.rst:1940 msgid "The tokenizer produces the following output::" msgstr "" -#: ../../library/re.rst:1942 msgid "" "Token(type='IF', value='IF', line=2, column=4)\n" "Token(type='ID', value='quantity', line=2, column=7)\n" @@ -2595,239 +1473,167 @@ msgid "" "Token(type='END', value=';', line=5, column=9)" msgstr "" -#: ../../library/re.rst:1963 -msgid "" -"Friedl, Jeffrey. Mastering Regular Expressions. 3rd ed., O'Reilly Media, " -"2009. The third edition of the book no longer covers Python at all, but the " -"first edition covered writing good regular expression patterns in great " -"detail." +msgid "Friedl, Jeffrey. Mastering Regular Expressions. 3rd ed., O'Reilly Media, 2009. The third edition of the book no longer covers Python at all, but the first edition covered writing good regular expression patterns in great detail." msgstr "" -#: ../../library/re.rst:99 msgid ". (dot)" msgstr "" -#: ../../library/re.rst:99 ../../library/re.rst:106 ../../library/re.rst:112 -#: ../../library/re.rst:123 ../../library/re.rst:130 ../../library/re.rst:137 -#: ../../library/re.rst:143 ../../library/re.rst:157 ../../library/re.rst:181 -#: ../../library/re.rst:220 ../../library/re.rst:235 ../../library/re.rst:244 -#: ../../library/re.rst:258 ../../library/re.rst:271 ../../library/re.rst:304 -#: ../../library/re.rst:317 ../../library/re.rst:327 ../../library/re.rst:359 -#: ../../library/re.rst:414 ../../library/re.rst:446 ../../library/re.rst:452 -#: ../../library/re.rst:457 ../../library/re.rst:464 ../../library/re.rst:471 -#: ../../library/re.rst:498 ../../library/re.rst:508 ../../library/re.rst:532 -#: ../../library/re.rst:544 ../../library/re.rst:549 ../../library/re.rst:571 -#: ../../library/re.rst:588 ../../library/re.rst:604 ../../library/re.rst:612 -#: ../../library/re.rst:626 ../../library/re.rst:634 ../../library/re.rst:651 -#: ../../library/re.rst:665 ../../library/re.rst:676 ../../library/re.rst:867 -#: ../../library/re.rst:1106 msgid "in regular expressions" msgstr "" -#: ../../library/re.rst:106 ../../library/re.rst:271 msgid "^ (caret)" msgstr "" -#: ../../library/re.rst:112 msgid "$ (dollar)" msgstr "" -#: ../../library/re.rst:123 msgid "* (asterisk)" msgstr "" -#: ../../library/re.rst:130 msgid "+ (plus)" msgstr "" -#: ../../library/re.rst:137 msgid "? (question mark)" msgstr "" -#: ../../library/re.rst:143 msgid "*?" msgstr "" -#: ../../library/re.rst:143 msgid "+?" msgstr "" -#: ../../library/re.rst:143 msgid "??" msgstr "" -#: ../../library/re.rst:157 msgid "*+" msgstr "" -#: ../../library/re.rst:157 msgid "++" msgstr "" -#: ../../library/re.rst:157 msgid "?+" msgstr "" -#: ../../library/re.rst:181 msgid "{} (curly brackets)" msgstr "" -#: ../../library/re.rst:220 ../../library/re.rst:258 ../../library/re.rst:532 msgid "\\ (backslash)" msgstr "" -#: ../../library/re.rst:235 msgid "[] (square brackets)" msgstr "" -#: ../../library/re.rst:244 msgid "- (minus)" msgstr "" -#: ../../library/re.rst:304 msgid "| (vertical bar)" msgstr "" -#: ../../library/re.rst:317 msgid "() (parentheses)" msgstr "" -#: ../../library/re.rst:327 msgid "(?" msgstr "" -#: ../../library/re.rst:359 msgid "(?:" msgstr "" -#: ../../library/re.rst:414 msgid "(?P<" msgstr "" -#: ../../library/re.rst:446 msgid "(?P=" msgstr "" -#: ../../library/re.rst:452 msgid "(?#" msgstr "" -#: ../../library/re.rst:457 msgid "(?=" msgstr "" -#: ../../library/re.rst:464 msgid "(?!" msgstr "" -#: ../../library/re.rst:471 msgid "(?<=" msgstr "" -#: ../../library/re.rst:498 msgid "(?, 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,360 +24,164 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/readline.rst:2 msgid ":mod:`!readline` --- GNU readline interface" msgstr "" -#: ../../library/readline.rst:11 -msgid "" -"The :mod:`!readline` module defines a number of functions to facilitate " -"completion and reading/writing of history files from the Python interpreter. " -"This module can be used directly, or via the :mod:`rlcompleter` module, " -"which supports completion of Python identifiers at the interactive prompt. " -"Settings made using this module affect the behaviour of both the " -"interpreter's interactive prompt and the prompts offered by the built-" -"in :func:`input` function." +msgid "The :mod:`!readline` module defines a number of functions to facilitate completion and reading/writing of history files from the Python interpreter. This module can be used directly, or via the :mod:`rlcompleter` module, which supports completion of Python identifiers at the interactive prompt. Settings made using this module affect the behaviour of both the interpreter's interactive prompt and the prompts offered by the built-in :func:`input` function." msgstr "" -#: ../../library/readline.rst:19 -msgid "" -"Readline keybindings may be configured via an initialization file, typically " -"``.inputrc`` in your home directory. See `Readline Init File `_ in " -"the GNU Readline manual for information about the format and allowable " -"constructs of that file, and the capabilities of the Readline library in " -"general." +msgid "Readline keybindings may be configured via an initialization file, typically ``.inputrc`` in your home directory. See `Readline Init File `_ in the GNU Readline manual for information about the format and allowable constructs of that file, and the capabilities of the Readline library in general." msgstr "" -#: ../../library/readline.rst:30 ../../includes/wasm-mobile-notavail.rst:3 msgid "Availability" msgstr "" -#: ../../includes/wasm-mobile-notavail.rst:5 -msgid "" -"This module is not supported on :ref:`mobile platforms ` or :ref:`WebAssembly platforms `." +msgid "This module is not supported on :ref:`mobile platforms ` or :ref:`WebAssembly platforms `." msgstr "" -#: ../../includes/optional-module.rst:1 -msgid "" -"This is an :term:`optional module`. If it is missing from your copy of " -"CPython, look for documentation from your distributor (that is, whoever " -"provided Python to you). If you are the distributor, see :ref:`optional-" -"module-requirements`." +msgid "This is an :term:`optional module`. If it is missing from your copy of CPython, look for documentation from your distributor (that is, whoever provided Python to you). If you are the distributor, see :ref:`optional-module-requirements`." msgstr "" -#: ../../library/readline.rst:34 -msgid "" -"The underlying Readline library API may be implemented by the ``editline`` " -"(``libedit``) library instead of GNU readline. On macOS the :mod:`!readline` " -"module detects which library is being used at run time." +msgid "The underlying Readline library API may be implemented by the ``editline`` (``libedit``) library instead of GNU readline. On macOS the :mod:`!readline` module detects which library is being used at run time." msgstr "" -#: ../../library/readline.rst:39 -msgid "" -"The configuration file for ``editline`` is different from that of GNU " -"readline. If you programmatically load configuration strings you can " -"use :data:`backend` to determine which library is being used." +msgid "The configuration file for ``editline`` is different from that of GNU readline. If you programmatically load configuration strings you can use :data:`backend` to determine which library is being used." msgstr "" -#: ../../library/readline.rst:43 -msgid "" -"If you use ``editline``/``libedit`` readline emulation on macOS, the " -"initialization file located in your home directory is named ``.editrc``. For " -"example, the following content in ``~/.editrc`` will turn ON *vi* " -"keybindings and TAB completion::" +msgid "If you use ``editline``/``libedit`` readline emulation on macOS, the initialization file located in your home directory is named ``.editrc``. For example, the following content in ``~/.editrc`` will turn ON *vi* keybindings and TAB completion::" msgstr "" -#: ../../library/readline.rst:48 msgid "" "python:bind -v\n" "python:bind ^I rl_complete" msgstr "" -#: ../../library/readline.rst:51 -msgid "" -"Also note that different libraries may use different history file formats. " -"When switching the underlying library, existing history files may become " -"unusable." +msgid "Also note that different libraries may use different history file formats. When switching the underlying library, existing history files may become unusable." msgstr "" -#: ../../library/readline.rst:57 -msgid "" -"The name of the underlying Readline library being used, either " -"``\"readline\"`` or ``\"editline\"``." +msgid "The name of the underlying Readline library being used, either ``\"readline\"`` or ``\"editline\"``." msgstr "" -#: ../../library/readline.rst:63 msgid "Init file" msgstr "" -#: ../../library/readline.rst:65 msgid "The following functions relate to the init file and user configuration:" msgstr "" -#: ../../library/readline.rst:70 -msgid "" -"Execute the init line provided in the *string* argument. This " -"calls :c:func:`!rl_parse_and_bind` in the underlying library." +msgid "Execute the init line provided in the *string* argument. This calls :c:func:`!rl_parse_and_bind` in the underlying library." msgstr "" -#: ../../library/readline.rst:76 -msgid "" -"Execute a readline initialization file. The default filename is the last " -"filename used. This calls :c:func:`!rl_read_init_file` in the underlying " -"library. It raises an :ref:`auditing event ` ``open`` with the " -"file name if given, and :code:`\"\"` otherwise, " -"regardless of which file the library resolves." +msgid "Execute a readline initialization file. The default filename is the last filename used. This calls :c:func:`!rl_read_init_file` in the underlying library. It raises an :ref:`auditing event ` ``open`` with the file name if given, and :code:`\"\"` otherwise, regardless of which file the library resolves." msgstr "" -#: ../../library/readline.rst:82 ../../library/readline.rst:125 -#: ../../library/readline.rst:137 ../../library/readline.rst:152 msgid "The auditing event was added." msgstr "" -#: ../../library/readline.rst:87 msgid "Line buffer" msgstr "" -#: ../../library/readline.rst:89 msgid "The following functions operate on the line buffer:" msgstr "" -#: ../../library/readline.rst:94 -msgid "" -"Return the current contents of the line buffer (:c:data:`!rl_line_buffer` in " -"the underlying library)." +msgid "Return the current contents of the line buffer (:c:data:`!rl_line_buffer` in the underlying library)." msgstr "" -#: ../../library/readline.rst:100 -msgid "" -"Insert text into the line buffer at the cursor position. This " -"calls :c:func:`!rl_insert_text` in the underlying library, but ignores the " -"return value." +msgid "Insert text into the line buffer at the cursor position. This calls :c:func:`!rl_insert_text` in the underlying library, but ignores the return value." msgstr "" -#: ../../library/readline.rst:107 -msgid "" -"Change what's displayed on the screen to reflect the current contents of the " -"line buffer. This calls :c:func:`!rl_redisplay` in the underlying library." +msgid "Change what's displayed on the screen to reflect the current contents of the line buffer. This calls :c:func:`!rl_redisplay` in the underlying library." msgstr "" -#: ../../library/readline.rst:112 msgid "History file" msgstr "" -#: ../../library/readline.rst:114 msgid "The following functions operate on a history file:" msgstr "" -#: ../../library/readline.rst:119 -msgid "" -"Load a readline history file, and append it to the history list. The default " -"filename is :file:`~/.history`. This calls :c:func:`!read_history` in the " -"underlying library and raises an :ref:`auditing event ` ``open`` " -"with the file name if given and :code:`\"~/.history\"` otherwise." +msgid "Load a readline history file, and append it to the history list. The default filename is :file:`~/.history`. This calls :c:func:`!read_history` in the underlying library and raises an :ref:`auditing event ` ``open`` with the file name if given and :code:`\"~/.history\"` otherwise." msgstr "" -#: ../../library/readline.rst:131 -msgid "" -"Save the history list to a readline history file, overwriting any existing " -"file. The default filename is :file:`~/.history`. This calls :c:func:`!" -"write_history` in the underlying library and raises an :ref:`auditing event " -"` ``open`` with the file name if given and :code:`\"~/.history\"` " -"otherwise." +msgid "Save the history list to a readline history file, overwriting any existing file. The default filename is :file:`~/.history`. This calls :c:func:`!write_history` in the underlying library and raises an :ref:`auditing event ` ``open`` with the file name if given and :code:`\"~/.history\"` otherwise." msgstr "" -#: ../../library/readline.rst:143 -msgid "" -"Append the last *nelements* items of history to a file. The default " -"filename is :file:`~/.history`. The file must already exist. This " -"calls :c:func:`!append_history` in the underlying library. This function " -"only exists if Python was compiled for a version of the library that " -"supports it. It raises an :ref:`auditing event ` ``open`` with the " -"file name if given and :code:`\"~/.history\"` otherwise." +msgid "Append the last *nelements* items of history to a file. The default filename is :file:`~/.history`. The file must already exist. This calls :c:func:`!append_history` in the underlying library. This function only exists if Python was compiled for a version of the library that supports it. It raises an :ref:`auditing event ` ``open`` with the file name if given and :code:`\"~/.history\"` otherwise." msgstr "" -#: ../../library/readline.rst:159 -msgid "" -"Set or return the desired number of lines to save in the history file. " -"The :func:`write_history_file` function uses this value to truncate the " -"history file, by calling :c:func:`!history_truncate_file` in the underlying " -"library. Negative values imply unlimited history file size." +msgid "Set or return the desired number of lines to save in the history file. The :func:`write_history_file` function uses this value to truncate the history file, by calling :c:func:`!history_truncate_file` in the underlying library. Negative values imply unlimited history file size." msgstr "" -#: ../../library/readline.rst:167 msgid "History list" msgstr "" -#: ../../library/readline.rst:169 msgid "The following functions operate on a global history list:" msgstr "" -#: ../../library/readline.rst:174 -msgid "" -"Clear the current history. This calls :c:func:`!clear_history` in the " -"underlying library. The Python function only exists if Python was compiled " -"for a version of the library that supports it." +msgid "Clear the current history. This calls :c:func:`!clear_history` in the underlying library. The Python function only exists if Python was compiled for a version of the library that supports it." msgstr "" -#: ../../library/readline.rst:181 -msgid "" -"Return the number of items currently in the history. (This is different " -"from :func:`get_history_length`, which returns the maximum number of lines " -"that will be written to a history file.)" +msgid "Return the number of items currently in the history. (This is different from :func:`get_history_length`, which returns the maximum number of lines that will be written to a history file.)" msgstr "" -#: ../../library/readline.rst:188 -msgid "" -"Return the current contents of history item at *index*. The item index is " -"one-based. This calls :c:func:`!history_get` in the underlying library." +msgid "Return the current contents of history item at *index*. The item index is one-based. This calls :c:func:`!history_get` in the underlying library." msgstr "" -#: ../../library/readline.rst:194 -msgid "" -"Remove history item specified by its position from the history. The position " -"is zero-based. This calls :c:func:`!remove_history` in the underlying " -"library." +msgid "Remove history item specified by its position from the history. The position is zero-based. This calls :c:func:`!remove_history` in the underlying library." msgstr "" -#: ../../library/readline.rst:201 -msgid "" -"Replace history item specified by its position with *line*. The position is " -"zero-based. This calls :c:func:`!replace_history_entry` in the underlying " -"library." +msgid "Replace history item specified by its position with *line*. The position is zero-based. This calls :c:func:`!replace_history_entry` in the underlying library." msgstr "" -#: ../../library/readline.rst:208 -msgid "" -"Append *line* to the history buffer, as if it was the last line typed. This " -"calls :c:func:`!add_history` in the underlying library." +msgid "Append *line* to the history buffer, as if it was the last line typed. This calls :c:func:`!add_history` in the underlying library." msgstr "" -#: ../../library/readline.rst:214 -msgid "" -"Enable or disable automatic calls to :c:func:`!add_history` when reading " -"input via readline. The *enabled* argument should be a Boolean value that " -"when true, enables auto history, and that when false, disables auto history." +msgid "Enable or disable automatic calls to :c:func:`!add_history` when reading input via readline. The *enabled* argument should be a Boolean value that when true, enables auto history, and that when false, disables auto history." msgstr "" -#: ../../library/readline.rst:222 -msgid "" -"Auto history is enabled by default, and changes to this do not persist " -"across multiple sessions." +msgid "Auto history is enabled by default, and changes to this do not persist across multiple sessions." msgstr "" -#: ../../library/readline.rst:227 msgid "Startup hooks" msgstr "" -#: ../../library/readline.rst:232 -msgid "" -"Set or remove the function invoked by the :c:data:`!rl_startup_hook` " -"callback of the underlying library. If *function* is specified, it will be " -"used as the new hook function; if omitted or ``None``, any function already " -"installed is removed. The hook is called with no arguments just before " -"readline prints the first prompt." +msgid "Set or remove the function invoked by the :c:data:`!rl_startup_hook` callback of the underlying library. If *function* is specified, it will be used as the new hook function; if omitted or ``None``, any function already installed is removed. The hook is called with no arguments just before readline prints the first prompt." msgstr "" -#: ../../library/readline.rst:241 -msgid "" -"Set or remove the function invoked by the :c:data:`!rl_pre_input_hook` " -"callback of the underlying library. If *function* is specified, it will be " -"used as the new hook function; if omitted or ``None``, any function already " -"installed is removed. The hook is called with no arguments after the first " -"prompt has been printed and just before readline starts reading input " -"characters. This function only exists if Python was compiled for a version " -"of the library that supports it." +msgid "Set or remove the function invoked by the :c:data:`!rl_pre_input_hook` callback of the underlying library. If *function* is specified, it will be used as the new hook function; if omitted or ``None``, any function already installed is removed. The hook is called with no arguments after the first prompt has been printed and just before readline starts reading input characters. This function only exists if Python was compiled for a version of the library that supports it." msgstr "" -#: ../../library/readline.rst:253 msgid "Completion" msgstr "" -#: ../../library/readline.rst:255 -msgid "" -"The following functions relate to implementing a custom word completion " -"function. This is typically operated by the Tab key, and can suggest and " -"automatically complete a word being typed. By default, Readline is set up " -"to be used by :mod:`rlcompleter` to complete Python identifiers for the " -"interactive interpreter. If the :mod:`!readline` module is to be used with " -"a custom completer, a different set of word delimiters should be set." +msgid "The following functions relate to implementing a custom word completion function. This is typically operated by the Tab key, and can suggest and automatically complete a word being typed. By default, Readline is set up to be used by :mod:`rlcompleter` to complete Python identifiers for the interactive interpreter. If the :mod:`!readline` module is to be used with a custom completer, a different set of word delimiters should be set." msgstr "" -#: ../../library/readline.rst:265 -msgid "" -"Set or remove the completer function. If *function* is specified, it will " -"be used as the new completer function; if omitted or ``None``, any completer " -"function already installed is removed. The completer function is called as " -"``function(text, state)``, for *state* in ``0``, ``1``, ``2``, ..., until it " -"returns a non-string value. It should return the next possible completion " -"starting with *text*." +msgid "Set or remove the completer function. If *function* is specified, it will be used as the new completer function; if omitted or ``None``, any completer function already installed is removed. The completer function is called as ``function(text, state)``, for *state* in ``0``, ``1``, ``2``, ..., until it returns a non-string value. It should return the next possible completion starting with *text*." msgstr "" -#: ../../library/readline.rst:272 -msgid "" -"The installed completer function is invoked by the *entry_func* callback " -"passed to :c:func:`!rl_completion_matches` in the underlying library. The " -"*text* string comes from the first parameter to the :c:data:`!" -"rl_attempted_completion_function` callback of the underlying library." +msgid "The installed completer function is invoked by the *entry_func* callback passed to :c:func:`!rl_completion_matches` in the underlying library. The *text* string comes from the first parameter to the :c:data:`!rl_attempted_completion_function` callback of the underlying library." msgstr "" -#: ../../library/readline.rst:281 -msgid "" -"Get the completer function, or ``None`` if no completer function has been " -"set." +msgid "Get the completer function, or ``None`` if no completer function has been set." msgstr "" -#: ../../library/readline.rst:286 -msgid "" -"Get the type of completion being attempted. This returns the :c:data:`!" -"rl_completion_type` variable in the underlying library as an integer." +msgid "Get the type of completion being attempted. This returns the :c:data:`!rl_completion_type` variable in the underlying library as an integer." msgstr "" -#: ../../library/readline.rst:294 -msgid "" -"Get the beginning or ending index of the completion scope. These indexes are " -"the *start* and *end* arguments passed to the :c:data:`!" -"rl_attempted_completion_function` callback of the underlying library. The " -"values may be different in the same input editing scenario based on the " -"underlying C readline implementation. Ex: libedit is known to behave " -"differently than libreadline." +msgid "Get the beginning or ending index of the completion scope. These indexes are the *start* and *end* arguments passed to the :c:data:`!rl_attempted_completion_function` callback of the underlying library. The values may be different in the same input editing scenario based on the underlying C readline implementation. Ex: libedit is known to behave differently than libreadline." msgstr "" -#: ../../library/readline.rst:305 -msgid "" -"Set or get the word delimiters for completion. These determine the start of " -"the word to be considered for completion (the completion scope). These " -"functions access the :c:data:`!rl_completer_word_break_characters` variable " -"in the underlying library." +msgid "Set or get the word delimiters for completion. These determine the start of the word to be considered for completion (the completion scope). These functions access the :c:data:`!rl_completer_word_break_characters` variable in the underlying library." msgstr "" -#: ../../library/readline.rst:313 -msgid "" -"Set or remove the completion display function. If *function* is specified, " -"it will be used as the new completion display function; if omitted or " -"``None``, any completion display function already installed is removed. " -"This sets or clears the :c:data:`!rl_completion_display_matches_hook` " -"callback in the underlying library. The completion display function is " -"called as ``function(substitution, [matches], longest_match_length)`` once " -"each time matches need to be displayed." +msgid "Set or remove the completion display function. If *function* is specified, it will be used as the new completion display function; if omitted or ``None``, any completion display function already installed is removed. This sets or clears the :c:data:`!rl_completion_display_matches_hook` callback in the underlying library. The completion display function is called as ``function(substitution, [matches], longest_match_length)`` once each time matches need to be displayed." msgstr "" -#: ../../library/readline.rst:326 msgid "Example" msgstr "" -#: ../../library/readline.rst:328 -msgid "" -"The following example demonstrates how to use the :mod:`!readline` module's " -"history reading and writing functions to automatically load and save a " -"history file named :file:`.python_history` from the user's home directory. " -"The code below would normally be executed automatically during interactive " -"sessions from the user's :envvar:`PYTHONSTARTUP` file. ::" +msgid "The following example demonstrates how to use the :mod:`!readline` module's history reading and writing functions to automatically load and save a history file named :file:`.python_history` from the user's home directory. The code below would normally be executed automatically during interactive sessions from the user's :envvar:`PYTHONSTARTUP` file. ::" msgstr "" -#: ../../library/readline.rst:334 msgid "" "import atexit\n" "import os\n" @@ -394,19 +198,12 @@ msgid "" "atexit.register(readline.write_history_file, histfile)" msgstr "" -#: ../../library/readline.rst:348 -msgid "" -"This code is actually automatically run when Python is run " -"in :ref:`interactive mode ` (see :ref:`rlcompleter-config`)." +msgid "This code is actually automatically run when Python is run in :ref:`interactive mode ` (see :ref:`rlcompleter-config`)." msgstr "" -#: ../../library/readline.rst:351 -msgid "" -"The following example achieves the same goal but supports concurrent " -"interactive sessions, by only appending the new history. ::" +msgid "The following example achieves the same goal but supports concurrent interactive sessions, by only appending the new history. ::" msgstr "" -#: ../../library/readline.rst:354 msgid "" "import atexit\n" "import os\n" @@ -427,13 +224,9 @@ msgid "" "atexit.register(save, h_len, histfile)" msgstr "" -#: ../../library/readline.rst:372 -msgid "" -"The following example extends the :class:`code.InteractiveConsole` class to " -"support history save/restore. ::" +msgid "The following example extends the :class:`code.InteractiveConsole` class to support history save/restore. ::" msgstr "" -#: ../../library/readline.rst:375 msgid "" "import atexit\n" "import code\n" @@ -460,9 +253,5 @@ msgid "" " readline.write_history_file(histfile)" msgstr "" -#: ../../library/readline.rst:401 -msgid "" -"The new :term:`REPL` introduced in version 3.13 doesn't support readline. " -"However, readline can still be used by setting " -"the :envvar:`PYTHON_BASIC_REPL` environment variable." +msgid "The new :term:`REPL` introduced in version 3.13 doesn't support readline. However, readline can still be used by setting the :envvar:`PYTHON_BASIC_REPL` environment variable." msgstr "" diff --git a/library/removed.po b/library/removed.po index cb4640b0..0be13142 100644 --- a/library/removed.po +++ b/library/removed.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2024-11-19 01:03+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,12 +21,8 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/removed.rst:7 msgid "Removed Modules" msgstr "" -#: ../../library/removed.rst:9 -msgid "" -"The modules described in this chapter have been removed from the Python " -"standard library. They are documented here to help people find replacements." +msgid "The modules described in this chapter have been removed from the Python standard library. They are documented here to help people find replacements." msgstr "" diff --git a/library/reprlib.po b/library/reprlib.po index 40a799fc..3c5e9eb6 100644 --- a/library/reprlib.po +++ b/library/reprlib.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:12+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,94 +23,53 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/reprlib.rst:2 msgid ":mod:`!reprlib` --- Alternate :func:`repr` implementation" msgstr "" -#: ../../library/reprlib.rst:9 msgid "**Source code:** :source:`Lib/reprlib.py`" msgstr "" -#: ../../library/reprlib.rst:13 -msgid "" -"The :mod:`!reprlib` module provides a means for producing object " -"representations with limits on the size of the resulting strings. This is " -"used in the Python debugger and may be useful in other contexts as well." +msgid "The :mod:`!reprlib` module provides a means for producing object representations with limits on the size of the resulting strings. This is used in the Python debugger and may be useful in other contexts as well." msgstr "" -#: ../../library/reprlib.rst:17 msgid "This module provides a class, an instance, and a function:" msgstr "" -#: ../../library/reprlib.rst:24 -msgid "" -"Class which provides formatting services useful in implementing functions " -"similar to the built-in :func:`repr`; size limits for different object " -"types are added to avoid the generation of representations which are " -"excessively long." +msgid "Class which provides formatting services useful in implementing functions similar to the built-in :func:`repr`; size limits for different object types are added to avoid the generation of representations which are excessively long." msgstr "" -#: ../../library/reprlib.rst:28 -msgid "" -"The keyword arguments of the constructor can be used as a shortcut to set " -"the attributes of the :class:`Repr` instance. Which means that the following " -"initialization::" +msgid "The keyword arguments of the constructor can be used as a shortcut to set the attributes of the :class:`Repr` instance. Which means that the following initialization::" msgstr "" -#: ../../library/reprlib.rst:32 msgid "aRepr = reprlib.Repr(maxlevel=3)" msgstr "" -#: ../../library/reprlib.rst:34 msgid "Is equivalent to::" msgstr "" -#: ../../library/reprlib.rst:36 msgid "" "aRepr = reprlib.Repr()\n" "aRepr.maxlevel = 3" msgstr "" -#: ../../library/reprlib.rst:39 -msgid "" -"See section `Repr Objects`_ for more information about :class:`Repr` " -"attributes." +msgid "See section `Repr Objects`_ for more information about :class:`Repr` attributes." msgstr "" -#: ../../library/reprlib.rst:42 msgid "Allow attributes to be set via keyword arguments." msgstr "" -#: ../../library/reprlib.rst:48 -msgid "" -"This is an instance of :class:`Repr` which is used to provide " -"the :func:`.repr` function described below. Changing the attributes of this " -"object will affect the size limits used by :func:`.repr` and the Python " -"debugger." +msgid "This is an instance of :class:`Repr` which is used to provide the :func:`.repr` function described below. Changing the attributes of this object will affect the size limits used by :func:`.repr` and the Python debugger." msgstr "" -#: ../../library/reprlib.rst:56 -msgid "" -"This is the :meth:`~Repr.repr` method of ``aRepr``. It returns a string " -"similar to that returned by the built-in function of the same name, but with " -"limits on most sizes." +msgid "This is the :meth:`~Repr.repr` method of ``aRepr``. It returns a string similar to that returned by the built-in function of the same name, but with limits on most sizes." msgstr "" -#: ../../library/reprlib.rst:60 -msgid "" -"In addition to size-limiting tools, the module also provides a decorator for " -"detecting recursive calls to :meth:`~object.__repr__` and substituting a " -"placeholder string instead." +msgid "In addition to size-limiting tools, the module also provides a decorator for detecting recursive calls to :meth:`~object.__repr__` and substituting a placeholder string instead." msgstr "" -#: ../../library/reprlib.rst:69 -msgid "" -"Decorator for :meth:`~object.__repr__` methods to detect recursive calls " -"within the same thread. If a recursive call is made, the *fillvalue* is " -"returned, otherwise, the usual :meth:`!__repr__` call is made. For example:" +msgid "Decorator for :meth:`~object.__repr__` methods to detect recursive calls within the same thread. If a recursive call is made, the *fillvalue* is returned, otherwise, the usual :meth:`!__repr__` call is made. For example:" msgstr "" -#: ../../library/reprlib.rst:73 msgid "" ">>> from reprlib import recursive_repr\n" ">>> class MyList(list):\n" @@ -125,64 +84,33 @@ msgid "" "<'a'|'b'|'c'|...|'x'>" msgstr "" -#: ../../library/reprlib.rst:93 msgid "Repr Objects" msgstr "" -#: ../../library/reprlib.rst:95 -msgid "" -":class:`Repr` instances provide several attributes which can be used to " -"provide size limits for the representations of different object types, and " -"methods which format specific object types." +msgid ":class:`Repr` instances provide several attributes which can be used to provide size limits for the representations of different object types, and methods which format specific object types." msgstr "" -#: ../../library/reprlib.rst:102 -msgid "" -"This string is displayed for recursive references. It defaults to ``...``." +msgid "This string is displayed for recursive references. It defaults to ``...``." msgstr "" -#: ../../library/reprlib.rst:110 -msgid "" -"Depth limit on the creation of recursive representations. The default is " -"``6``." +msgid "Depth limit on the creation of recursive representations. The default is ``6``." msgstr "" -#: ../../library/reprlib.rst:121 -msgid "" -"Limits on the number of entries represented for the named object type. The " -"default is ``4`` for :attr:`maxdict`, ``5`` for :attr:`maxarray`, and ``6`` " -"for the others." +msgid "Limits on the number of entries represented for the named object type. The default is ``4`` for :attr:`maxdict`, ``5`` for :attr:`maxarray`, and ``6`` for the others." msgstr "" -#: ../../library/reprlib.rst:128 -msgid "" -"Maximum number of characters in the representation for an integer. Digits " -"are dropped from the middle. The default is ``40``." +msgid "Maximum number of characters in the representation for an integer. Digits are dropped from the middle. The default is ``40``." msgstr "" -#: ../../library/reprlib.rst:134 -msgid "" -"Limit on the number of characters in the representation of the string. Note " -"that the \"normal\" representation of the string is used as the character " -"source: if escape sequences are needed in the representation, these may be " -"mangled when the representation is shortened. The default is ``30``." +msgid "Limit on the number of characters in the representation of the string. Note that the \"normal\" representation of the string is used as the character source: if escape sequences are needed in the representation, these may be mangled when the representation is shortened. The default is ``30``." msgstr "" -#: ../../library/reprlib.rst:142 -msgid "" -"This limit is used to control the size of object types for which no specific " -"formatting method is available on the :class:`Repr` object. It is applied in " -"a similar manner as :attr:`maxstring`. The default is ``20``." +msgid "This limit is used to control the size of object types for which no specific formatting method is available on the :class:`Repr` object. It is applied in a similar manner as :attr:`maxstring`. The default is ``20``." msgstr "" -#: ../../library/reprlib.rst:149 -msgid "" -"If this attribute is set to ``None`` (the default), the output is formatted " -"with no line breaks or indentation, like the standard :func:`repr`. For " -"example:" +msgid "If this attribute is set to ``None`` (the default), the output is formatted with no line breaks or indentation, like the standard :func:`repr`. For example:" msgstr "" -#: ../../library/reprlib.rst:153 msgid "" ">>> example = [\n" "... 1, 'spam', {'a': 2, 'b': 'spam eggs', 'c': {3: 4.5, 6: []}}, 'ham']\n" @@ -192,13 +120,9 @@ msgid "" "[1, 'spam', {'a': 2, 'b': 'spam eggs', 'c': {3: 4.5, 6: []}}, 'ham']" msgstr "" -#: ../../library/reprlib.rst:162 -msgid "" -"If :attr:`~Repr.indent` is set to a string, each recursion level is placed " -"on its own line, indented by that string:" +msgid "If :attr:`~Repr.indent` is set to a string, each recursion level is placed on its own line, indented by that string:" msgstr "" -#: ../../library/reprlib.rst:165 msgid "" ">>> aRepr.indent = '-->'\n" ">>> print(aRepr.repr(example))\n" @@ -217,13 +141,9 @@ msgid "" "]" msgstr "" -#: ../../library/reprlib.rst:183 -msgid "" -"Setting :attr:`~Repr.indent` to a positive integer value behaves as if it " -"was set to a string with that number of spaces:" +msgid "Setting :attr:`~Repr.indent` to a positive integer value behaves as if it was set to a string with that number of spaces:" msgstr "" -#: ../../library/reprlib.rst:186 msgid "" ">>> aRepr.indent = 4\n" ">>> print(aRepr.repr(example))\n" @@ -242,43 +162,21 @@ msgid "" "]" msgstr "" -#: ../../library/reprlib.rst:209 -msgid "" -"The equivalent to the built-in :func:`repr` that uses the formatting imposed " -"by the instance." +msgid "The equivalent to the built-in :func:`repr` that uses the formatting imposed by the instance." msgstr "" -#: ../../library/reprlib.rst:215 -msgid "" -"Recursive implementation used by :meth:`.repr`. This uses the type of *obj* " -"to determine which formatting method to call, passing it *obj* and *level*. " -"The type-specific methods should call :meth:`repr1` to perform recursive " -"formatting, with ``level - 1`` for the value of *level* in the recursive " -"call." +msgid "Recursive implementation used by :meth:`.repr`. This uses the type of *obj* to determine which formatting method to call, passing it *obj* and *level*. The type-specific methods should call :meth:`repr1` to perform recursive formatting, with ``level - 1`` for the value of *level* in the recursive call." msgstr "" -#: ../../library/reprlib.rst:224 -msgid "" -"Formatting methods for specific types are implemented as methods with a name " -"based on the type name. In the method name, **TYPE** is replaced by " -"``'_'.join(type(obj).__name__.split())``. Dispatch to these methods is " -"handled by :meth:`repr1`. Type-specific methods which need to recursively " -"format a value should call ``self.repr1(subobj, level - 1)``." +msgid "Formatting methods for specific types are implemented as methods with a name based on the type name. In the method name, **TYPE** is replaced by ``'_'.join(type(obj).__name__.split())``. Dispatch to these methods is handled by :meth:`repr1`. Type-specific methods which need to recursively format a value should call ``self.repr1(subobj, level - 1)``." msgstr "" -#: ../../library/reprlib.rst:234 msgid "Subclassing Repr Objects" msgstr "" -#: ../../library/reprlib.rst:236 -msgid "" -"The use of dynamic dispatching by :meth:`Repr.repr1` allows subclasses " -"of :class:`Repr` to add support for additional built-in object types or to " -"modify the handling of types already supported. This example shows how " -"special support for file objects could be added:" +msgid "The use of dynamic dispatching by :meth:`Repr.repr1` allows subclasses of :class:`Repr` to add support for additional built-in object types or to modify the handling of types already supported. This example shows how special support for file objects could be added:" msgstr "" -#: ../../library/reprlib.rst:241 msgid "" "import reprlib\n" "import sys\n" @@ -294,14 +192,11 @@ msgid "" "print(aRepr.repr(sys.stdin)) # prints ''" msgstr "" -#: ../../library/reprlib.rst:256 msgid "" msgstr "" -#: ../../library/reprlib.rst:65 msgid "..." msgstr "" -#: ../../library/reprlib.rst:65 msgid "placeholder" msgstr "" diff --git a/library/resource.po b/library/resource.po index 0a8c8aac..2577a87a 100644 --- a/library/resource.po +++ b/library/resource.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:12+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -25,288 +25,150 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/resource.rst:2 msgid ":mod:`!resource` --- Resource usage information" msgstr "" -#: ../../library/resource.rst:12 -msgid "" -"This module provides basic mechanisms for measuring and controlling system " -"resources utilized by a program." +msgid "This module provides basic mechanisms for measuring and controlling system resources utilized by a program." msgstr "" -#: ../../library/resource.rst:15 ../../library/resource.rst:103 -#: ../../library/resource.rst:180 ../../library/resource.rst:192 -#: ../../library/resource.rst:201 ../../library/resource.rst:210 -#: ../../library/resource.rst:220 ../../library/resource.rst:229 -#: ../../library/resource.rst:240 ../../library/resource.rst:254 -#: ../../library/resource.rst:263 ../../library/resource.rst:272 msgid "Availability" msgstr "" -#: ../../library/resource.rst:17 -msgid "" -"Symbolic constants are used to specify particular system resources and to " -"request usage information about either the current process or its children." +msgid "Symbolic constants are used to specify particular system resources and to request usage information about either the current process or its children." msgstr "" -#: ../../library/resource.rst:20 msgid "An :exc:`OSError` is raised on syscall failure." msgstr "" -#: ../../library/resource.rst:25 msgid "A deprecated alias of :exc:`OSError`." msgstr "" -#: ../../library/resource.rst:27 msgid "Following :pep:`3151`, this class was made an alias of :exc:`OSError`." msgstr "" -#: ../../library/resource.rst:32 msgid "Resource Limits" msgstr "" -#: ../../library/resource.rst:34 -msgid "" -"Resources usage can be limited using the :func:`setrlimit` function " -"described below. Each resource is controlled by a pair of limits: a soft " -"limit and a hard limit. The soft limit is the current limit, and may be " -"lowered or raised by a process over time. The soft limit can never exceed " -"the hard limit. The hard limit can be lowered to any value greater than the " -"soft limit, but not raised. (Only processes with the effective UID of the " -"super-user can raise a hard limit.)" +msgid "Resources usage can be limited using the :func:`setrlimit` function described below. Each resource is controlled by a pair of limits: a soft limit and a hard limit. The soft limit is the current limit, and may be lowered or raised by a process over time. The soft limit can never exceed the hard limit. The hard limit can be lowered to any value greater than the soft limit, but not raised. (Only processes with the effective UID of the super-user can raise a hard limit.)" msgstr "" -#: ../../library/resource.rst:42 -msgid "" -"The specific resources that can be limited are system dependent. They are " -"described in the :manpage:`getrlimit(2)` man page. The resources listed " -"below are supported when the underlying operating system supports them; " -"resources which cannot be checked or controlled by the operating system are " -"not defined in this module for those platforms." +msgid "The specific resources that can be limited are system dependent. They are described in the :manpage:`getrlimit(2)` man page. The resources listed below are supported when the underlying operating system supports them; resources which cannot be checked or controlled by the operating system are not defined in this module for those platforms." msgstr "" -#: ../../library/resource.rst:51 msgid "Constant used to represent the limit for an unlimited resource." msgstr "" -#: ../../library/resource.rst:56 -msgid "" -"Returns a tuple ``(soft, hard)`` with the current soft and hard limits of " -"*resource*. Raises :exc:`ValueError` if an invalid resource is specified, " -"or :exc:`error` if the underlying system call fails unexpectedly." +msgid "Returns a tuple ``(soft, hard)`` with the current soft and hard limits of *resource*. Raises :exc:`ValueError` if an invalid resource is specified, or :exc:`error` if the underlying system call fails unexpectedly." msgstr "" -#: ../../library/resource.rst:63 -msgid "" -"Sets new limits of consumption of *resource*. The *limits* argument must be " -"a tuple ``(soft, hard)`` of two integers describing the new limits. A value " -"of :const:`~resource.RLIM_INFINITY` can be used to request a limit that is " -"unlimited." +msgid "Sets new limits of consumption of *resource*. The *limits* argument must be a tuple ``(soft, hard)`` of two integers describing the new limits. A value of :const:`~resource.RLIM_INFINITY` can be used to request a limit that is unlimited." msgstr "" -#: ../../library/resource.rst:68 -msgid "" -"Raises :exc:`ValueError` if an invalid resource is specified, if the new " -"soft limit exceeds the hard limit, or if a process tries to raise its hard " -"limit. Specifying a limit of :const:`~resource.RLIM_INFINITY` when the hard " -"or system limit for that resource is not unlimited will result in " -"a :exc:`ValueError`. A process with the effective UID of super-user can " -"request any valid limit value, including unlimited, but :exc:`ValueError` " -"will still be raised if the requested limit exceeds the system imposed limit." +msgid "Raises :exc:`ValueError` if an invalid resource is specified, if the new soft limit exceeds the hard limit, or if a process tries to raise its hard limit. Specifying a limit of :const:`~resource.RLIM_INFINITY` when the hard or system limit for that resource is not unlimited will result in a :exc:`ValueError`. A process with the effective UID of super-user can request any valid limit value, including unlimited, but :exc:`ValueError` will still be raised if the requested limit exceeds the system imposed limit." msgstr "" -#: ../../library/resource.rst:77 -msgid "" -"``setrlimit`` may also raise :exc:`error` if the underlying system call " -"fails." +msgid "``setrlimit`` may also raise :exc:`error` if the underlying system call fails." msgstr "" -#: ../../library/resource.rst:80 msgid "VxWorks only supports setting :const:`RLIMIT_NOFILE`." msgstr "" -#: ../../library/resource.rst:82 -msgid "" -"Raises an :ref:`auditing event ` ``resource.setrlimit`` with " -"arguments ``resource``, ``limits``." +msgid "Raises an :ref:`auditing event ` ``resource.setrlimit`` with arguments ``resource``, ``limits``." msgstr "" -#: ../../library/resource.rst:87 -msgid "" -"Combines :func:`setrlimit` and :func:`getrlimit` in one function and " -"supports to get and set the resources limits of an arbitrary process. If " -"*pid* is 0, then the call applies to the current process. *resource* and " -"*limits* have the same meaning as in :func:`setrlimit`, except that *limits* " -"is optional." +msgid "Combines :func:`setrlimit` and :func:`getrlimit` in one function and supports to get and set the resources limits of an arbitrary process. If *pid* is 0, then the call applies to the current process. *resource* and *limits* have the same meaning as in :func:`setrlimit`, except that *limits* is optional." msgstr "" -#: ../../library/resource.rst:93 -msgid "" -"When *limits* is not given the function returns the *resource* limit of the " -"process *pid*. When *limits* is given the *resource* limit of the process is " -"set and the former resource limit is returned." +msgid "When *limits* is not given the function returns the *resource* limit of the process *pid*. When *limits* is given the *resource* limit of the process is set and the former resource limit is returned." msgstr "" -#: ../../library/resource.rst:97 -msgid "" -"Raises :exc:`ProcessLookupError` when *pid* can't be found " -"and :exc:`PermissionError` when the user doesn't have ``CAP_SYS_RESOURCE`` " -"for the process." +msgid "Raises :exc:`ProcessLookupError` when *pid* can't be found and :exc:`PermissionError` when the user doesn't have ``CAP_SYS_RESOURCE`` for the process." msgstr "" -#: ../../library/resource.rst:101 -msgid "" -"Raises an :ref:`auditing event ` ``resource.prlimit`` with " -"arguments ``pid``, ``resource``, ``limits``." +msgid "Raises an :ref:`auditing event ` ``resource.prlimit`` with arguments ``pid``, ``resource``, ``limits``." msgstr "" -#: ../../library/resource.rst:108 -msgid "" -"These symbols define resources whose consumption can be controlled using " -"the :func:`setrlimit` and :func:`getrlimit` functions described below. The " -"values of these symbols are exactly the constants used by C programs." +msgid "These symbols define resources whose consumption can be controlled using the :func:`setrlimit` and :func:`getrlimit` functions described below. The values of these symbols are exactly the constants used by C programs." msgstr "" -#: ../../library/resource.rst:112 -msgid "" -"The Unix man page for :manpage:`getrlimit(2)` lists the available resources. " -"Note that not all systems use the same symbol or same value to denote the " -"same resource. This module does not attempt to mask platform differences " -"--- symbols not defined for a platform will not be available from this " -"module on that platform." +msgid "The Unix man page for :manpage:`getrlimit(2)` lists the available resources. Note that not all systems use the same symbol or same value to denote the same resource. This module does not attempt to mask platform differences --- symbols not defined for a platform will not be available from this module on that platform." msgstr "" -#: ../../library/resource.rst:121 -msgid "" -"The maximum size (in bytes) of a core file that the current process can " -"create. This may result in the creation of a partial core file if a larger " -"core would be required to contain the entire process image." +msgid "The maximum size (in bytes) of a core file that the current process can create. This may result in the creation of a partial core file if a larger core would be required to contain the entire process image." msgstr "" -#: ../../library/resource.rst:128 -msgid "" -"The maximum amount of processor time (in seconds) that a process can use. If " -"this limit is exceeded, a :const:`~signal.SIGXCPU` signal is sent to the " -"process. (See the :mod:`signal` module documentation for information about " -"how to catch this signal and do something useful, e.g. flush open files to " -"disk.)" +msgid "The maximum amount of processor time (in seconds) that a process can use. If this limit is exceeded, a :const:`~signal.SIGXCPU` signal is sent to the process. (See the :mod:`signal` module documentation for information about how to catch this signal and do something useful, e.g. flush open files to disk.)" msgstr "" -#: ../../library/resource.rst:136 msgid "The maximum size of a file which the process may create." msgstr "" -#: ../../library/resource.rst:141 msgid "The maximum size (in bytes) of the process's heap." msgstr "" -#: ../../library/resource.rst:146 -msgid "" -"The maximum size (in bytes) of the call stack for the current process. This " -"only affects the stack of the main thread in a multi-threaded process." +msgid "The maximum size (in bytes) of the call stack for the current process. This only affects the stack of the main thread in a multi-threaded process." msgstr "" -#: ../../library/resource.rst:152 -msgid "" -"The maximum resident set size that should be made available to the process." +msgid "The maximum resident set size that should be made available to the process." msgstr "" -#: ../../library/resource.rst:157 msgid "The maximum number of processes the current process may create." msgstr "" -#: ../../library/resource.rst:162 msgid "The maximum number of open file descriptors for the current process." msgstr "" -#: ../../library/resource.rst:167 msgid "The BSD name for :const:`RLIMIT_NOFILE`." msgstr "" -#: ../../library/resource.rst:172 msgid "The maximum address space which may be locked in memory." msgstr "" -#: ../../library/resource.rst:177 -msgid "" -"The largest area of mapped memory which the process may occupy. Usually an " -"alias of :const:`RLIMIT_AS`." +msgid "The largest area of mapped memory which the process may occupy. Usually an alias of :const:`RLIMIT_AS`." msgstr "" -#: ../../library/resource.rst:185 -msgid "" -"The maximum area (in bytes) of address space which may be taken by the " -"process." +msgid "The maximum area (in bytes) of address space which may be taken by the process." msgstr "" -#: ../../library/resource.rst:190 msgid "The number of bytes that can be allocated for POSIX message queues." msgstr "" -#: ../../library/resource.rst:199 msgid "The ceiling for the process's nice level (calculated as 20 - rlim_cur)." msgstr "" -#: ../../library/resource.rst:208 msgid "The ceiling of the real-time priority." msgstr "" -#: ../../library/resource.rst:217 -msgid "" -"The time limit (in microseconds) on CPU time that a process can spend under " -"real-time scheduling without making a blocking syscall." +msgid "The time limit (in microseconds) on CPU time that a process can spend under real-time scheduling without making a blocking syscall." msgstr "" -#: ../../library/resource.rst:227 msgid "The number of signals which the process may queue." msgstr "" -#: ../../library/resource.rst:236 -msgid "" -"The maximum size (in bytes) of socket buffer usage for this user. This " -"limits the amount of network memory, and hence the amount of mbufs, that " -"this user may hold at any time." +msgid "The maximum size (in bytes) of socket buffer usage for this user. This limits the amount of network memory, and hence the amount of mbufs, that this user may hold at any time." msgstr "" -#: ../../library/resource.rst:247 -msgid "" -"The maximum size (in bytes) of the swap space that may be reserved or used " -"by all of this user id's processes. This limit is enforced only if bit 1 of " -"the vm.overcommit sysctl is set. Please see `tuning(7) `__ for a complete " -"description of this sysctl." +msgid "The maximum size (in bytes) of the swap space that may be reserved or used by all of this user id's processes. This limit is enforced only if bit 1 of the vm.overcommit sysctl is set. Please see `tuning(7) `__ for a complete description of this sysctl." msgstr "" -#: ../../library/resource.rst:261 msgid "The maximum number of pseudo-terminals created by this user id." msgstr "" -#: ../../library/resource.rst:270 msgid "The maximum number of kqueues this user id is allowed to create." msgstr "" -#: ../../library/resource.rst:278 msgid "Resource Usage" msgstr "" -#: ../../library/resource.rst:280 msgid "These functions are used to retrieve resource usage information:" msgstr "" -#: ../../library/resource.rst:285 -msgid "" -"This function returns an object that describes the resources consumed by " -"either the current process or its children, as specified by the *who* " -"parameter. The *who* parameter should be specified using one of " -"the :const:`!RUSAGE_\\*` constants described below." +msgid "This function returns an object that describes the resources consumed by either the current process or its children, as specified by the *who* parameter. The *who* parameter should be specified using one of the :const:`!RUSAGE_\\*` constants described below." msgstr "" -#: ../../library/resource.rst:290 msgid "A simple example::" msgstr "" -#: ../../library/resource.rst:292 msgid "" "from resource import *\n" "import time\n" @@ -321,275 +183,185 @@ msgid "" "print(getrusage(RUSAGE_SELF))" msgstr "" -#: ../../library/resource.rst:304 -msgid "" -"The fields of the return value each describe how a particular system " -"resource has been used, e.g. amount of time spent running in user mode or " -"number of times the process was swapped out of main memory. Some values are " -"dependent on the clock tick interval, e.g. the amount of memory the process " -"is using." +msgid "The fields of the return value each describe how a particular system resource has been used, e.g. amount of time spent running in user mode or number of times the process was swapped out of main memory. Some values are dependent on the clock tick interval, e.g. the amount of memory the process is using." msgstr "" -#: ../../library/resource.rst:309 -msgid "" -"For backward compatibility, the return value is also accessible as a tuple " -"of 16 elements." +msgid "For backward compatibility, the return value is also accessible as a tuple of 16 elements." msgstr "" -#: ../../library/resource.rst:312 -msgid "" -"The fields :attr:`!ru_utime` and :attr:`!ru_stime` of the return value are " -"floating-point values representing the amount of time spent executing in " -"user mode and the amount of time spent executing in system mode, " -"respectively. The remaining values are integers. Consult " -"the :manpage:`getrusage(2)` man page for detailed information about these " -"values. A brief summary is presented here:" +msgid "The fields :attr:`!ru_utime` and :attr:`!ru_stime` of the return value are floating-point values representing the amount of time spent executing in user mode and the amount of time spent executing in system mode, respectively. The remaining values are integers. Consult the :manpage:`getrusage(2)` man page for detailed information about these values. A brief summary is presented here:" msgstr "" -#: ../../library/resource.rst:319 msgid "Index" msgstr "" -#: ../../library/resource.rst:319 msgid "Field" msgstr "" -#: ../../library/resource.rst:319 msgid "Resource" msgstr "" -#: ../../library/resource.rst:321 msgid "``0``" msgstr "" -#: ../../library/resource.rst:321 msgid ":attr:`!ru_utime`" msgstr "" -#: ../../library/resource.rst:321 msgid "time in user mode (float seconds)" msgstr "" -#: ../../library/resource.rst:323 msgid "``1``" msgstr "" -#: ../../library/resource.rst:323 msgid ":attr:`!ru_stime`" msgstr "" -#: ../../library/resource.rst:323 msgid "time in system mode (float seconds)" msgstr "" -#: ../../library/resource.rst:325 msgid "``2``" msgstr "" -#: ../../library/resource.rst:325 msgid ":attr:`!ru_maxrss`" msgstr "" -#: ../../library/resource.rst:325 msgid "maximum resident set size" msgstr "" -#: ../../library/resource.rst:327 msgid "``3``" msgstr "" -#: ../../library/resource.rst:327 msgid ":attr:`!ru_ixrss`" msgstr "" -#: ../../library/resource.rst:327 msgid "shared memory size" msgstr "" -#: ../../library/resource.rst:329 msgid "``4``" msgstr "" -#: ../../library/resource.rst:329 msgid ":attr:`!ru_idrss`" msgstr "" -#: ../../library/resource.rst:329 msgid "unshared memory size" msgstr "" -#: ../../library/resource.rst:331 msgid "``5``" msgstr "" -#: ../../library/resource.rst:331 msgid ":attr:`!ru_isrss`" msgstr "" -#: ../../library/resource.rst:331 msgid "unshared stack size" msgstr "" -#: ../../library/resource.rst:333 msgid "``6``" msgstr "" -#: ../../library/resource.rst:333 msgid ":attr:`!ru_minflt`" msgstr "" -#: ../../library/resource.rst:333 msgid "page faults not requiring I/O" msgstr "" -#: ../../library/resource.rst:335 msgid "``7``" msgstr "" -#: ../../library/resource.rst:335 msgid ":attr:`!ru_majflt`" msgstr "" -#: ../../library/resource.rst:335 msgid "page faults requiring I/O" msgstr "" -#: ../../library/resource.rst:337 msgid "``8``" msgstr "" -#: ../../library/resource.rst:337 msgid ":attr:`!ru_nswap`" msgstr "" -#: ../../library/resource.rst:337 msgid "number of swap outs" msgstr "" -#: ../../library/resource.rst:339 msgid "``9``" msgstr "" -#: ../../library/resource.rst:339 msgid ":attr:`!ru_inblock`" msgstr "" -#: ../../library/resource.rst:339 msgid "block input operations" msgstr "" -#: ../../library/resource.rst:341 msgid "``10``" msgstr "" -#: ../../library/resource.rst:341 msgid ":attr:`!ru_oublock`" msgstr "" -#: ../../library/resource.rst:341 msgid "block output operations" msgstr "" -#: ../../library/resource.rst:343 msgid "``11``" msgstr "" -#: ../../library/resource.rst:343 msgid ":attr:`!ru_msgsnd`" msgstr "" -#: ../../library/resource.rst:343 msgid "messages sent" msgstr "" -#: ../../library/resource.rst:345 msgid "``12``" msgstr "" -#: ../../library/resource.rst:345 msgid ":attr:`!ru_msgrcv`" msgstr "" -#: ../../library/resource.rst:345 msgid "messages received" msgstr "" -#: ../../library/resource.rst:347 msgid "``13``" msgstr "" -#: ../../library/resource.rst:347 msgid ":attr:`!ru_nsignals`" msgstr "" -#: ../../library/resource.rst:347 msgid "signals received" msgstr "" -#: ../../library/resource.rst:349 msgid "``14``" msgstr "" -#: ../../library/resource.rst:349 msgid ":attr:`!ru_nvcsw`" msgstr "" -#: ../../library/resource.rst:349 msgid "voluntary context switches" msgstr "" -#: ../../library/resource.rst:351 msgid "``15``" msgstr "" -#: ../../library/resource.rst:351 msgid ":attr:`!ru_nivcsw`" msgstr "" -#: ../../library/resource.rst:351 msgid "involuntary context switches" msgstr "" -#: ../../library/resource.rst:354 -msgid "" -"This function will raise a :exc:`ValueError` if an invalid *who* parameter " -"is specified. It may also raise :exc:`error` exception in unusual " -"circumstances." +msgid "This function will raise a :exc:`ValueError` if an invalid *who* parameter is specified. It may also raise :exc:`error` exception in unusual circumstances." msgstr "" -#: ../../library/resource.rst:360 -msgid "" -"Returns the number of bytes in a system page. (This need not be the same as " -"the hardware page size.)" +msgid "Returns the number of bytes in a system page. (This need not be the same as the hardware page size.)" msgstr "" -#: ../../library/resource.rst:363 -msgid "" -"The following :const:`!RUSAGE_\\*` symbols are passed to " -"the :func:`getrusage` function to specify which processes information should " -"be provided for." +msgid "The following :const:`!RUSAGE_\\*` symbols are passed to the :func:`getrusage` function to specify which processes information should be provided for." msgstr "" -#: ../../library/resource.rst:369 -msgid "" -"Pass to :func:`getrusage` to request resources consumed by the calling " -"process, which is the sum of resources used by all threads in the process." +msgid "Pass to :func:`getrusage` to request resources consumed by the calling process, which is the sum of resources used by all threads in the process." msgstr "" -#: ../../library/resource.rst:375 -msgid "" -"Pass to :func:`getrusage` to request resources consumed by child processes " -"of the calling process which have been terminated and waited for." +msgid "Pass to :func:`getrusage` to request resources consumed by child processes of the calling process which have been terminated and waited for." msgstr "" -#: ../../library/resource.rst:381 -msgid "" -"Pass to :func:`getrusage` to request resources consumed by both the current " -"process and child processes. May not be available on all systems." +msgid "Pass to :func:`getrusage` to request resources consumed by both the current process and child processes. May not be available on all systems." msgstr "" -#: ../../library/resource.rst:387 -msgid "" -"Pass to :func:`getrusage` to request resources consumed by the current " -"thread. May not be available on all systems." +msgid "Pass to :func:`getrusage` to request resources consumed by the current thread. May not be available on all systems." msgstr "" diff --git a/library/rlcompleter.po b/library/rlcompleter.po index c4912620..31be62e1 100644 --- a/library/rlcompleter.po +++ b/library/rlcompleter.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:12+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,90 +23,49 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/rlcompleter.rst:2 msgid ":mod:`!rlcompleter` --- Completion function for GNU readline" msgstr "" -#: ../../library/rlcompleter.rst:9 msgid "**Source code:** :source:`Lib/rlcompleter.py`" msgstr "" -#: ../../library/rlcompleter.rst:13 -msgid "" -"The :mod:`!rlcompleter` module defines a completion function suitable to be " -"passed to :func:`~readline.set_completer` in the :mod:`readline` module." +msgid "The :mod:`!rlcompleter` module defines a completion function suitable to be passed to :func:`~readline.set_completer` in the :mod:`readline` module." msgstr "" -#: ../../library/rlcompleter.rst:16 -msgid "" -"When this module is imported on a Unix platform with the :mod:`readline` " -"module available, an instance of the :class:`Completer` class is " -"automatically created and its :meth:`~Completer.complete` method is set as " -"the :ref:`readline completer `. The method provides " -"completion of valid Python :ref:`identifiers and keywords `." +msgid "When this module is imported on a Unix platform with the :mod:`readline` module available, an instance of the :class:`Completer` class is automatically created and its :meth:`~Completer.complete` method is set as the :ref:`readline completer `. The method provides completion of valid Python :ref:`identifiers and keywords `." msgstr "" -#: ../../library/rlcompleter.rst:22 msgid "Example::" msgstr "" -#: ../../library/rlcompleter.rst:24 msgid "" ">>> import rlcompleter\n" ">>> import readline\n" ">>> readline.parse_and_bind(\"tab: complete\")\n" ">>> readline. \n" -"readline.__doc__ " -"readline.get_line_buffer( readline.read_init_file(\n" -"readline.__file__ " -"readline.insert_text( readline.set_completer(\n" +"readline.__doc__ readline.get_line_buffer( readline.read_init_file(\n" +"readline.__file__ readline.insert_text( readline.set_completer(\n" "readline.__name__ readline.parse_and_bind(\n" ">>> readline." msgstr "" -#: ../../library/rlcompleter.rst:33 -msgid "" -"The :mod:`!rlcompleter` module is designed for use with " -"Python's :ref:`interactive mode `. Unless Python is run " -"with the :option:`-S` option, the module is automatically imported and " -"configured (see :ref:`rlcompleter-config`)." +msgid "The :mod:`!rlcompleter` module is designed for use with Python's :ref:`interactive mode `. Unless Python is run with the :option:`-S` option, the module is automatically imported and configured (see :ref:`rlcompleter-config`)." msgstr "" -#: ../../library/rlcompleter.rst:38 -msgid "" -"On platforms without :mod:`readline`, the :class:`Completer` class defined " -"by this module can still be used for custom purposes." +msgid "On platforms without :mod:`readline`, the :class:`Completer` class defined by this module can still be used for custom purposes." msgstr "" -#: ../../library/rlcompleter.rst:46 msgid "Completer objects have the following method:" msgstr "" -#: ../../library/rlcompleter.rst:50 msgid "Return the next possible completion for *text*." msgstr "" -#: ../../library/rlcompleter.rst:52 -msgid "" -"When called by the :mod:`readline` module, this method is called " -"successively with ``state == 0, 1, 2, ...`` until the method returns " -"``None``." +msgid "When called by the :mod:`readline` module, this method is called successively with ``state == 0, 1, 2, ...`` until the method returns ``None``." msgstr "" -#: ../../library/rlcompleter.rst:56 -msgid "" -"If called for *text* that doesn't include a period character (``'.'``), it " -"will complete from names currently defined " -"in :mod:`__main__`, :mod:`builtins` and keywords (as defined by " -"the :mod:`keyword` module)." +msgid "If called for *text* that doesn't include a period character (``'.'``), it will complete from names currently defined in :mod:`__main__`, :mod:`builtins` and keywords (as defined by the :mod:`keyword` module)." msgstr "" -#: ../../library/rlcompleter.rst:60 -msgid "" -"If called for a dotted name, it will try to evaluate anything without " -"obvious side-effects (functions will not be evaluated, but it can generate " -"calls to :meth:`~object.__getattr__`) up to the last part, and find matches " -"for the rest via the :func:`dir` function. Any exception raised during the " -"evaluation of the expression is caught, silenced and :const:`None` is " -"returned." +msgid "If called for a dotted name, it will try to evaluate anything without obvious side-effects (functions will not be evaluated, but it can generate calls to :meth:`~object.__getattr__`) up to the last part, and find matches for the rest via the :func:`dir` function. Any exception raised during the evaluation of the expression is caught, silenced and :const:`None` is returned." msgstr "" diff --git a/library/runpy.po b/library/runpy.po index 856aa0e3..002755d8 100644 --- a/library/runpy.po +++ b/library/runpy.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:12+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -22,264 +22,122 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/runpy.rst:2 msgid ":mod:`!runpy` --- Locating and executing Python modules" msgstr "" -#: ../../library/runpy.rst:9 msgid "**Source code:** :source:`Lib/runpy.py`" msgstr "" -#: ../../library/runpy.rst:13 -msgid "" -"The :mod:`!runpy` module is used to locate and run Python modules without " -"importing them first. Its main use is to implement the :option:`-m` command " -"line switch that allows scripts to be located using the Python module " -"namespace rather than the filesystem." +msgid "The :mod:`!runpy` module is used to locate and run Python modules without importing them first. Its main use is to implement the :option:`-m` command line switch that allows scripts to be located using the Python module namespace rather than the filesystem." msgstr "" -#: ../../library/runpy.rst:18 -msgid "" -"Note that this is *not* a sandbox module - all code is executed in the " -"current process, and any side effects (such as cached imports of other " -"modules) will remain in place after the functions have returned." +msgid "Note that this is *not* a sandbox module - all code is executed in the current process, and any side effects (such as cached imports of other modules) will remain in place after the functions have returned." msgstr "" -#: ../../library/runpy.rst:22 -msgid "" -"Furthermore, any functions and classes defined by the executed code are not " -"guaranteed to work correctly after a :mod:`!runpy` function has returned. If " -"that limitation is not acceptable for a given use case, :mod:`importlib` is " -"likely to be a more suitable choice than this module." +msgid "Furthermore, any functions and classes defined by the executed code are not guaranteed to work correctly after a :mod:`!runpy` function has returned. If that limitation is not acceptable for a given use case, :mod:`importlib` is likely to be a more suitable choice than this module." msgstr "" -#: ../../library/runpy.rst:27 msgid "The :mod:`!runpy` module provides two functions:" msgstr "" -#: ../../library/runpy.rst:35 -msgid "" -"Execute the code of the specified module and return the resulting module's " -"globals dictionary. The module's code is first located using the standard " -"import mechanism (refer to :pep:`302` for details) and then executed in a " -"fresh module namespace." +msgid "Execute the code of the specified module and return the resulting module's globals dictionary. The module's code is first located using the standard import mechanism (refer to :pep:`302` for details) and then executed in a fresh module namespace." msgstr "" -#: ../../library/runpy.rst:40 -msgid "" -"The *mod_name* argument should be an absolute module name. If the module " -"name refers to a package rather than a normal module, then that package is " -"imported and the :mod:`__main__` submodule within that package is then " -"executed and the resulting module globals dictionary returned." +msgid "The *mod_name* argument should be an absolute module name. If the module name refers to a package rather than a normal module, then that package is imported and the :mod:`__main__` submodule within that package is then executed and the resulting module globals dictionary returned." msgstr "" -#: ../../library/runpy.rst:46 -msgid "" -"The optional dictionary argument *init_globals* may be used to pre-populate " -"the module's globals dictionary before the code is executed. *init_globals* " -"will not be modified. If any of the special global variables below are " -"defined in *init_globals*, those definitions are overridden " -"by :func:`run_module`." +msgid "The optional dictionary argument *init_globals* may be used to pre-populate the module's globals dictionary before the code is executed. *init_globals* will not be modified. If any of the special global variables below are defined in *init_globals*, those definitions are overridden by :func:`run_module`." msgstr "" -#: ../../library/runpy.rst:52 ../../library/runpy.rst:127 -msgid "" -"The special global variables ``__name__``, ``__spec__``, ``__file__``, " -"``__cached__``, ``__loader__`` and ``__package__`` are set in the globals " -"dictionary before the module code is executed. (Note that this is a minimal " -"set of variables - other variables may be set implicitly as an interpreter " -"implementation detail.)" +msgid "The special global variables ``__name__``, ``__spec__``, ``__file__``, ``__cached__``, ``__loader__`` and ``__package__`` are set in the globals dictionary before the module code is executed. (Note that this is a minimal set of variables - other variables may be set implicitly as an interpreter implementation detail.)" msgstr "" -#: ../../library/runpy.rst:58 -msgid "" -"``__name__`` is set to *run_name* if this optional argument is " -"not :const:`None`, to ``mod_name + '.__main__'`` if the named module is a " -"package and to the *mod_name* argument otherwise." +msgid "``__name__`` is set to *run_name* if this optional argument is not :const:`None`, to ``mod_name + '.__main__'`` if the named module is a package and to the *mod_name* argument otherwise." msgstr "" -#: ../../library/runpy.rst:62 -msgid "" -"``__spec__`` will be set appropriately for the *actually* imported module " -"(that is, ``__spec__.name`` will always be *mod_name* or ``mod_name + " -"'.__main__'``, never *run_name*)." +msgid "``__spec__`` will be set appropriately for the *actually* imported module (that is, ``__spec__.name`` will always be *mod_name* or ``mod_name + '.__main__'``, never *run_name*)." msgstr "" -#: ../../library/runpy.rst:66 -msgid "" -"``__file__``, ``__cached__``, ``__loader__`` and ``__package__`` " -"are :ref:`set as normal ` based on the module spec." +msgid "``__file__``, ``__cached__``, ``__loader__`` and ``__package__`` are :ref:`set as normal ` based on the module spec." msgstr "" -#: ../../library/runpy.rst:69 -msgid "" -"If the argument *alter_sys* is supplied and evaluates to :const:`True`, then " -"``sys.argv[0]`` is updated with the value of ``__file__`` and " -"``sys.modules[__name__]`` is updated with a temporary module object for the " -"module being executed. Both ``sys.argv[0]`` and ``sys.modules[__name__]`` " -"are restored to their original values before the function returns." +msgid "If the argument *alter_sys* is supplied and evaluates to :const:`True`, then ``sys.argv[0]`` is updated with the value of ``__file__`` and ``sys.modules[__name__]`` is updated with a temporary module object for the module being executed. Both ``sys.argv[0]`` and ``sys.modules[__name__]`` are restored to their original values before the function returns." msgstr "" -#: ../../library/runpy.rst:75 -msgid "" -"Note that this manipulation of :mod:`sys` is not thread-safe. Other threads " -"may see the partially initialised module, as well as the altered list of " -"arguments. It is recommended that the ``sys`` module be left alone when " -"invoking this function from threaded code." +msgid "Note that this manipulation of :mod:`sys` is not thread-safe. Other threads may see the partially initialised module, as well as the altered list of arguments. It is recommended that the ``sys`` module be left alone when invoking this function from threaded code." msgstr "" -#: ../../library/runpy.rst:81 -msgid "" -"The :option:`-m` option offering equivalent functionality from the command " -"line." +msgid "The :option:`-m` option offering equivalent functionality from the command line." msgstr "" -#: ../../library/runpy.rst:84 -msgid "" -"Added ability to execute packages by looking for a :mod:`__main__` submodule." +msgid "Added ability to execute packages by looking for a :mod:`__main__` submodule." msgstr "" -#: ../../library/runpy.rst:87 msgid "Added ``__cached__`` global variable (see :pep:`3147`)." msgstr "" -#: ../../library/runpy.rst:90 -msgid "" -"Updated to take advantage of the module spec feature added by :pep:`451`. " -"This allows ``__cached__`` to be set correctly for modules run this way, as " -"well as ensuring the real module name is always accessible as " -"``__spec__.name``." +msgid "Updated to take advantage of the module spec feature added by :pep:`451`. This allows ``__cached__`` to be set correctly for modules run this way, as well as ensuring the real module name is always accessible as ``__spec__.name``." msgstr "" -#: ../../library/runpy.rst:96 -msgid "" -"The setting of ``__cached__``, ``__loader__``, and ``__package__`` are " -"deprecated. See :class:`~importlib.machinery.ModuleSpec` for alternatives." +msgid "The setting of ``__cached__``, ``__loader__``, and ``__package__`` are deprecated. See :class:`~importlib.machinery.ModuleSpec` for alternatives." msgstr "" -#: ../../library/runpy.rst:106 -msgid "" -"Execute the code at the named filesystem location and return the resulting " -"module's globals dictionary. As with a script name supplied to the CPython " -"command line, *file_path* may refer to a Python source file, a compiled " -"bytecode file or a valid :data:`sys.path` entry containing a :mod:`__main__` " -"module (e.g. a zipfile containing a top-level :file:`__main__.py` file)." +msgid "Execute the code at the named filesystem location and return the resulting module's globals dictionary. As with a script name supplied to the CPython command line, *file_path* may refer to a Python source file, a compiled bytecode file or a valid :data:`sys.path` entry containing a :mod:`__main__` module (e.g. a zipfile containing a top-level :file:`__main__.py` file)." msgstr "" -#: ../../library/runpy.rst:113 -msgid "" -"For a simple script, the specified code is simply executed in a fresh module " -"namespace. For a valid :data:`sys.path` entry (typically a zipfile or " -"directory), the entry is first added to the beginning of ``sys.path``. The " -"function then looks for and executes a :mod:`__main__` module using the " -"updated path. Note that there is no special protection against invoking an " -"existing ``__main__`` entry located elsewhere on ``sys.path`` if there is no " -"such module at the specified location." +msgid "For a simple script, the specified code is simply executed in a fresh module namespace. For a valid :data:`sys.path` entry (typically a zipfile or directory), the entry is first added to the beginning of ``sys.path``. The function then looks for and executes a :mod:`__main__` module using the updated path. Note that there is no special protection against invoking an existing ``__main__`` entry located elsewhere on ``sys.path`` if there is no such module at the specified location." msgstr "" -#: ../../library/runpy.rst:121 -msgid "" -"The optional dictionary argument *init_globals* may be used to pre-populate " -"the module's globals dictionary before the code is executed. *init_globals* " -"will not be modified. If any of the special global variables below are " -"defined in *init_globals*, those definitions are overridden " -"by :func:`run_path`." +msgid "The optional dictionary argument *init_globals* may be used to pre-populate the module's globals dictionary before the code is executed. *init_globals* will not be modified. If any of the special global variables below are defined in *init_globals*, those definitions are overridden by :func:`run_path`." msgstr "" -#: ../../library/runpy.rst:133 -msgid "" -"``__name__`` is set to *run_name* if this optional argument is " -"not :const:`None` and to ``''`` otherwise." +msgid "``__name__`` is set to *run_name* if this optional argument is not :const:`None` and to ``''`` otherwise." msgstr "" -#: ../../library/runpy.rst:136 -msgid "" -"If *file_path* directly references a script file (whether as source or as " -"precompiled byte code), then ``__file__`` will be set to *file_path*, and " -"``__spec__``, ``__cached__``, ``__loader__`` and ``__package__`` will all be " -"set to :const:`None`." +msgid "If *file_path* directly references a script file (whether as source or as precompiled byte code), then ``__file__`` will be set to *file_path*, and ``__spec__``, ``__cached__``, ``__loader__`` and ``__package__`` will all be set to :const:`None`." msgstr "" -#: ../../library/runpy.rst:141 -msgid "" -"If *file_path* is a reference to a valid :data:`sys.path` entry, then " -"``__spec__`` will be set appropriately for the imported :mod:`__main__` " -"module (that is, ``__spec__.name`` will always be ``__main__``). " -"``__file__``, ``__cached__``, ``__loader__`` and ``__package__`` will " -"be :ref:`set as normal ` based on the module spec." +msgid "If *file_path* is a reference to a valid :data:`sys.path` entry, then ``__spec__`` will be set appropriately for the imported :mod:`__main__` module (that is, ``__spec__.name`` will always be ``__main__``). ``__file__``, ``__cached__``, ``__loader__`` and ``__package__`` will be :ref:`set as normal ` based on the module spec." msgstr "" -#: ../../library/runpy.rst:147 -msgid "" -"A number of alterations are also made to the :mod:`sys` module. " -"Firstly, :data:`sys.path` may be altered as described above. ``sys.argv[0]`` " -"is updated with the value of *file_path* and ``sys.modules[__name__]`` is " -"updated with a temporary module object for the module being executed. All " -"modifications to items in :mod:`sys` are reverted before the function " -"returns." +msgid "A number of alterations are also made to the :mod:`sys` module. Firstly, :data:`sys.path` may be altered as described above. ``sys.argv[0]`` is updated with the value of *file_path* and ``sys.modules[__name__]`` is updated with a temporary module object for the module being executed. All modifications to items in :mod:`sys` are reverted before the function returns." msgstr "" -#: ../../library/runpy.rst:154 -msgid "" -"Note that, unlike :func:`run_module`, the alterations made to :mod:`sys` are " -"not optional in this function as these adjustments are essential to allowing " -"the execution of :data:`sys.path` entries. As the thread-safety limitations " -"still apply, use of this function in threaded code should be either " -"serialised with the import lock or delegated to a separate process." +msgid "Note that, unlike :func:`run_module`, the alterations made to :mod:`sys` are not optional in this function as these adjustments are essential to allowing the execution of :data:`sys.path` entries. As the thread-safety limitations still apply, use of this function in threaded code should be either serialised with the import lock or delegated to a separate process." msgstr "" -#: ../../library/runpy.rst:161 -msgid "" -":ref:`using-on-interface-options` for equivalent functionality on the " -"command line (``python path/to/script``)." +msgid ":ref:`using-on-interface-options` for equivalent functionality on the command line (``python path/to/script``)." msgstr "" -#: ../../library/runpy.rst:166 -msgid "" -"Updated to take advantage of the module spec feature added by :pep:`451`. " -"This allows ``__cached__`` to be set correctly in the case where " -"``__main__`` is imported from a valid :data:`sys.path` entry rather than " -"being executed directly." +msgid "Updated to take advantage of the module spec feature added by :pep:`451`. This allows ``__cached__`` to be set correctly in the case where ``__main__`` is imported from a valid :data:`sys.path` entry rather than being executed directly." msgstr "" -#: ../../library/runpy.rst:172 -msgid "" -"The setting of ``__cached__``, ``__loader__``, and ``__package__`` are " -"deprecated." +msgid "The setting of ``__cached__``, ``__loader__``, and ``__package__`` are deprecated." msgstr "" -#: ../../library/runpy.rst:178 msgid ":pep:`338` -- Executing modules as scripts" msgstr "" -#: ../../library/runpy.rst:179 ../../library/runpy.rst:182 msgid "PEP written and implemented by Nick Coghlan." msgstr "" -#: ../../library/runpy.rst:181 msgid ":pep:`366` -- Main module explicit relative imports" msgstr "" -#: ../../library/runpy.rst:184 msgid ":pep:`451` -- A ModuleSpec Type for the Import System" msgstr "" -#: ../../library/runpy.rst:185 msgid "PEP written and implemented by Eric Snow" msgstr "" -#: ../../library/runpy.rst:187 msgid ":ref:`using-on-general` - CPython command line details" msgstr "" -#: ../../library/runpy.rst:189 msgid "The :func:`importlib.import_module` function" msgstr "" -#: ../../library/runpy.rst:32 ../../library/runpy.rst:103 msgid "module" msgstr "" -#: ../../library/runpy.rst:32 ../../library/runpy.rst:103 msgid "__main__" msgstr "" diff --git a/library/sched.po b/library/sched.po index 6b526ebf..79254d0c 100644 --- a/library/sched.po +++ b/library/sched.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:12+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,46 +23,27 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/sched.rst:2 msgid ":mod:`!sched` --- Event scheduler" msgstr "" -#: ../../library/sched.rst:9 msgid "**Source code:** :source:`Lib/sched.py`" msgstr "" -#: ../../library/sched.rst:15 -msgid "" -"The :mod:`!sched` module defines a class which implements a general purpose " -"event scheduler:" +msgid "The :mod:`!sched` module defines a class which implements a general purpose event scheduler:" msgstr "" -#: ../../library/sched.rst:20 -msgid "" -"The :class:`scheduler` class defines a generic interface to scheduling " -"events. It needs two functions to actually deal with the \"outside world\" " -"--- *timefunc* should be callable without arguments, and return a number " -"(the \"time\", in any units whatsoever). The *delayfunc* function should be " -"callable with one argument, compatible with the output of *timefunc*, and " -"should delay that many time units. *delayfunc* will also be called with the " -"argument ``0`` after each event is run to allow other threads an opportunity " -"to run in multi-threaded applications." +msgid "The :class:`scheduler` class defines a generic interface to scheduling events. It needs two functions to actually deal with the \"outside world\" --- *timefunc* should be callable without arguments, and return a number (the \"time\", in any units whatsoever). The *delayfunc* function should be callable with one argument, compatible with the output of *timefunc*, and should delay that many time units. *delayfunc* will also be called with the argument ``0`` after each event is run to allow other threads an opportunity to run in multi-threaded applications." msgstr "" -#: ../../library/sched.rst:29 msgid "*timefunc* and *delayfunc* parameters are optional." msgstr "" -#: ../../library/sched.rst:32 -msgid "" -":class:`scheduler` class can be safely used in multi-threaded environments." +msgid ":class:`scheduler` class can be safely used in multi-threaded environments." msgstr "" -#: ../../library/sched.rst:36 msgid "Example::" msgstr "" -#: ../../library/sched.rst:38 msgid "" ">>> import sched, time\n" ">>> s = sched.scheduler(time.time, time.sleep)\n" @@ -73,13 +54,10 @@ msgid "" "... print(time.time())\n" "... s.enter(10, 1, print_time)\n" "... s.enter(5, 2, print_time, argument=('positional',))\n" -"... # despite having higher priority, 'keyword' runs after 'positional' " -"as enter() is relative\n" +"... # despite having higher priority, 'keyword' runs after 'positional' as enter() is relative\n" "... s.enter(5, 1, print_time, kwargs={'a': 'keyword'})\n" -"... s.enterabs(1_650_000_000, 10, print_time, argument=(\"first " -"enterabs\",))\n" -"... s.enterabs(1_650_000_000, 5, print_time, argument=(\"second " -"enterabs\",))\n" +"... s.enterabs(1_650_000_000, 10, print_time, argument=(\"first enterabs\",))\n" +"... s.enterabs(1_650_000_000, 5, print_time, argument=(\"second enterabs\",))\n" "... s.run()\n" "... print(time.time())\n" "...\n" @@ -93,103 +71,53 @@ msgid "" "1652342840.3697174" msgstr "" -#: ../../library/sched.rst:67 msgid "Scheduler Objects" msgstr "" -#: ../../library/sched.rst:69 msgid ":class:`scheduler` instances have the following methods and attributes:" msgstr "" -#: ../../library/sched.rst:74 -msgid "" -"Schedule a new event. The *time* argument should be a numeric type " -"compatible with the return value of the *timefunc* function passed to the " -"constructor. Events scheduled for the same *time* will be executed in the " -"order of their *priority*. A lower number represents a higher priority." +msgid "Schedule a new event. The *time* argument should be a numeric type compatible with the return value of the *timefunc* function passed to the constructor. Events scheduled for the same *time* will be executed in the order of their *priority*. A lower number represents a higher priority." msgstr "" -#: ../../library/sched.rst:79 -msgid "" -"Executing the event means executing ``action(*argument, **kwargs)``. " -"*argument* is a sequence holding the positional arguments for *action*. " -"*kwargs* is a dictionary holding the keyword arguments for *action*." +msgid "Executing the event means executing ``action(*argument, **kwargs)``. *argument* is a sequence holding the positional arguments for *action*. *kwargs* is a dictionary holding the keyword arguments for *action*." msgstr "" -#: ../../library/sched.rst:83 -msgid "" -"Return value is an event which may be used for later cancellation of the " -"event (see :meth:`cancel`)." +msgid "Return value is an event which may be used for later cancellation of the event (see :meth:`cancel`)." msgstr "" -#: ../../library/sched.rst:86 ../../library/sched.rst:99 msgid "*argument* parameter is optional." msgstr "" -#: ../../library/sched.rst:89 ../../library/sched.rst:102 msgid "*kwargs* parameter was added." msgstr "" -#: ../../library/sched.rst:95 -msgid "" -"Schedule an event for *delay* more time units. Other than the relative time, " -"the other arguments, the effect and the return value are the same as those " -"for :meth:`enterabs`." +msgid "Schedule an event for *delay* more time units. Other than the relative time, the other arguments, the effect and the return value are the same as those for :meth:`enterabs`." msgstr "" -#: ../../library/sched.rst:107 -msgid "" -"Remove the event from the queue. If *event* is not an event currently in the " -"queue, this method will raise a :exc:`ValueError`." +msgid "Remove the event from the queue. If *event* is not an event currently in the queue, this method will raise a :exc:`ValueError`." msgstr "" -#: ../../library/sched.rst:113 msgid "Return ``True`` if the event queue is empty." msgstr "" -#: ../../library/sched.rst:118 -msgid "" -"Run all scheduled events. This method will wait (using the *delayfunc* " -"function passed to the constructor) for the next event, then execute it and " -"so on until there are no more scheduled events." +msgid "Run all scheduled events. This method will wait (using the *delayfunc* function passed to the constructor) for the next event, then execute it and so on until there are no more scheduled events." msgstr "" -#: ../../library/sched.rst:122 -msgid "" -"If *blocking* is false, immediately executes all events in the queue which " -"have a time value less than or equal to the current *timefunc* value (if " -"any) and returns the difference between the current *timefunc* value and the " -"time value of the next scheduled event in the scheduler's event queue. If " -"the queue is empty, returns ``None``." +msgid "If *blocking* is false, immediately executes all events in the queue which have a time value less than or equal to the current *timefunc* value (if any) and returns the difference between the current *timefunc* value and the time value of the next scheduled event in the scheduler's event queue. If the queue is empty, returns ``None``." msgstr "" -#: ../../library/sched.rst:128 -msgid "" -"Either *action* or *delayfunc* can raise an exception. In either case, the " -"scheduler will maintain a consistent state and propagate the exception. If " -"an exception is raised by *action*, the event will not be attempted in " -"future calls to :meth:`run`." +msgid "Either *action* or *delayfunc* can raise an exception. In either case, the scheduler will maintain a consistent state and propagate the exception. If an exception is raised by *action*, the event will not be attempted in future calls to :meth:`run`." msgstr "" -#: ../../library/sched.rst:133 -msgid "" -"If a sequence of events takes longer to run than the time available before " -"the next event, the scheduler will simply fall behind. No events will be " -"dropped; the calling code is responsible for canceling events which are no " -"longer pertinent." +msgid "If a sequence of events takes longer to run than the time available before the next event, the scheduler will simply fall behind. No events will be dropped; the calling code is responsible for canceling events which are no longer pertinent." msgstr "" -#: ../../library/sched.rst:138 msgid "*blocking* parameter was added." msgstr "" -#: ../../library/sched.rst:143 -msgid "" -"Read-only attribute returning a list of upcoming events in the order they " -"will be run. Each event is shown as a :term:`named tuple` with the " -"following fields: time, priority, action, argument, kwargs." +msgid "Read-only attribute returning a list of upcoming events in the order they will be run. Each event is shown as a :term:`named tuple` with the following fields: time, priority, action, argument, kwargs." msgstr "" -#: ../../library/sched.rst:11 msgid "event scheduling" msgstr "" diff --git a/library/secrets.po b/library/secrets.po index 31fa6548..5e9f40d4 100644 --- a/library/secrets.po +++ b/library/secrets.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:12+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,182 +23,105 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/secrets.rst:2 msgid ":mod:`!secrets` --- Generate secure random numbers for managing secrets" msgstr "" -#: ../../library/secrets.rst:16 msgid "**Source code:** :source:`Lib/secrets.py`" msgstr "" -#: ../../library/secrets.rst:20 -msgid "" -"The :mod:`!secrets` module is used for generating cryptographically strong " -"random numbers suitable for managing data such as passwords, account " -"authentication, security tokens, and related secrets." +msgid "The :mod:`!secrets` module is used for generating cryptographically strong random numbers suitable for managing data such as passwords, account authentication, security tokens, and related secrets." msgstr "" -#: ../../library/secrets.rst:24 -msgid "" -"In particular, :mod:`!secrets` should be used in preference to the default " -"pseudo-random number generator in the :mod:`random` module, which is " -"designed for modelling and simulation, not security or cryptography." +msgid "In particular, :mod:`!secrets` should be used in preference to the default pseudo-random number generator in the :mod:`random` module, which is designed for modelling and simulation, not security or cryptography." msgstr "" -#: ../../library/secrets.rst:30 msgid ":pep:`506`" msgstr "" -#: ../../library/secrets.rst:34 msgid "Random numbers" msgstr "" -#: ../../library/secrets.rst:36 -msgid "" -"The :mod:`!secrets` module provides access to the most secure source of " -"randomness that your operating system provides." +msgid "The :mod:`!secrets` module provides access to the most secure source of randomness that your operating system provides." msgstr "" -#: ../../library/secrets.rst:41 -msgid "" -"A class for generating random numbers using the highest-quality sources " -"provided by the operating system. See :class:`random.SystemRandom` for " -"additional details." +msgid "A class for generating random numbers using the highest-quality sources provided by the operating system. See :class:`random.SystemRandom` for additional details." msgstr "" -#: ../../library/secrets.rst:47 msgid "Return a randomly chosen element from a non-empty sequence." msgstr "" -#: ../../library/secrets.rst:51 msgid "Return a random int in the range [0, *exclusive_upper_bound*)." msgstr "" -#: ../../library/secrets.rst:55 msgid "Return a non-negative int with *k* random bits." msgstr "" -#: ../../library/secrets.rst:59 msgid "Generating tokens" msgstr "" -#: ../../library/secrets.rst:61 -msgid "" -"The :mod:`!secrets` module provides functions for generating secure tokens, " -"suitable for applications such as password resets, hard-to-guess URLs, and " -"similar." +msgid "The :mod:`!secrets` module provides functions for generating secure tokens, suitable for applications such as password resets, hard-to-guess URLs, and similar." msgstr "" -#: ../../library/secrets.rst:67 msgid "Return a random byte string containing *nbytes* number of bytes." msgstr "" -#: ../../library/secrets.rst:69 ../../library/secrets.rst:83 -#: ../../library/secrets.rst:97 -msgid "" -"If *nbytes* is not specified or ``None``, :const:`DEFAULT_ENTROPY` is used " -"instead." +msgid "If *nbytes* is not specified or ``None``, :const:`DEFAULT_ENTROPY` is used instead." msgstr "" -#: ../../library/secrets.rst:72 msgid "" ">>> token_bytes(16)\n" "b'\\xebr\\x17D*t\\xae\\xd4\\xe3S\\xb6\\xe2\\xebP1\\x8b'" msgstr "" -#: ../../library/secrets.rst:80 -msgid "" -"Return a random text string, in hexadecimal. The string has *nbytes* random " -"bytes, each byte converted to two hex digits." +msgid "Return a random text string, in hexadecimal. The string has *nbytes* random bytes, each byte converted to two hex digits." msgstr "" -#: ../../library/secrets.rst:86 msgid "" ">>> token_hex(16)\n" "'f9bf78b9a18ce6d46a0cd2b0b86df9da'" msgstr "" -#: ../../library/secrets.rst:93 -msgid "" -"Return a random URL-safe text string, containing *nbytes* random bytes. The " -"text is Base64 encoded, so on average each byte results in approximately 1.3 " -"characters." +msgid "Return a random URL-safe text string, containing *nbytes* random bytes. The text is Base64 encoded, so on average each byte results in approximately 1.3 characters." msgstr "" -#: ../../library/secrets.rst:100 msgid "" ">>> token_urlsafe(16)\n" "'Drmhze6EPcv0fN_81Bj-nA'" msgstr "" -#: ../../library/secrets.rst:107 msgid "How many bytes should tokens use?" msgstr "" -#: ../../library/secrets.rst:109 -msgid "" -"To be secure against `brute-force attacks `_, tokens need to have sufficient randomness. " -"Unfortunately, what is considered sufficient will necessarily increase as " -"computers get more powerful and able to make more guesses in a shorter " -"period. As of 2015, it is believed that 32 bytes (256 bits) of randomness " -"is sufficient for the typical use-case expected for the :mod:`!secrets` " -"module." +msgid "To be secure against `brute-force attacks `_, tokens need to have sufficient randomness. Unfortunately, what is considered sufficient will necessarily increase as computers get more powerful and able to make more guesses in a shorter period. As of 2015, it is believed that 32 bytes (256 bits) of randomness is sufficient for the typical use-case expected for the :mod:`!secrets` module." msgstr "" -#: ../../library/secrets.rst:117 -msgid "" -"For those who want to manage their own token length, you can explicitly " -"specify how much randomness is used for tokens by giving an :class:`int` " -"argument to the various ``token_*`` functions. That argument is taken as " -"the number of bytes of randomness to use." +msgid "For those who want to manage their own token length, you can explicitly specify how much randomness is used for tokens by giving an :class:`int` argument to the various ``token_*`` functions. That argument is taken as the number of bytes of randomness to use." msgstr "" -#: ../../library/secrets.rst:122 -msgid "" -"Otherwise, if no argument is provided, or if the argument is ``None``, the " -"``token_*`` functions use :const:`DEFAULT_ENTROPY` instead." +msgid "Otherwise, if no argument is provided, or if the argument is ``None``, the ``token_*`` functions use :const:`DEFAULT_ENTROPY` instead." msgstr "" -#: ../../library/secrets.rst:127 -msgid "" -"Default number of bytes of randomness used by the ``token_*`` functions." +msgid "Default number of bytes of randomness used by the ``token_*`` functions." msgstr "" -#: ../../library/secrets.rst:129 -msgid "" -"The exact value is subject to change at any time, including during " -"maintenance releases." +msgid "The exact value is subject to change at any time, including during maintenance releases." msgstr "" -#: ../../library/secrets.rst:134 msgid "Other functions" msgstr "" -#: ../../library/secrets.rst:138 -msgid "" -"Return ``True`` if strings or :term:`bytes-like objects ` " -"*a* and *b* are equal, otherwise ``False``, using a \"constant-time " -"compare\" to reduce the risk of `timing attacks `__. " -"See :func:`hmac.compare_digest` for additional details." +msgid "Return ``True`` if strings or :term:`bytes-like objects ` *a* and *b* are equal, otherwise ``False``, using a \"constant-time compare\" to reduce the risk of `timing attacks `__. See :func:`hmac.compare_digest` for additional details." msgstr "" -#: ../../library/secrets.rst:147 msgid "Recipes and best practices" msgstr "" -#: ../../library/secrets.rst:149 -msgid "" -"This section shows recipes and best practices for using :mod:`!secrets` to " -"manage a basic level of security." +msgid "This section shows recipes and best practices for using :mod:`!secrets` to manage a basic level of security." msgstr "" -#: ../../library/secrets.rst:152 msgid "Generate an eight-character alphanumeric password:" msgstr "" -#: ../../library/secrets.rst:154 msgid "" "import string\n" "import secrets\n" @@ -206,20 +129,12 @@ msgid "" "password = ''.join(secrets.choice(alphabet) for i in range(8))" msgstr "" -#: ../../library/secrets.rst:164 -msgid "" -"Applications should not :cwe:`store passwords in a recoverable format " -"<257>`, whether plain text or encrypted. They should be salted and hashed " -"using a cryptographically strong one-way (irreversible) hash function." +msgid "Applications should not :cwe:`store passwords in a recoverable format <257>`, whether plain text or encrypted. They should be salted and hashed using a cryptographically strong one-way (irreversible) hash function." msgstr "" -#: ../../library/secrets.rst:170 -msgid "" -"Generate a ten-character alphanumeric password with at least one lowercase " -"character, at least one uppercase character, and at least three digits:" +msgid "Generate a ten-character alphanumeric password with at least one lowercase character, at least one uppercase character, and at least three digits:" msgstr "" -#: ../../library/secrets.rst:174 msgid "" "import string\n" "import secrets\n" @@ -232,11 +147,9 @@ msgid "" " break" msgstr "" -#: ../../library/secrets.rst:187 msgid "Generate an `XKCD-style passphrase `_:" msgstr "" -#: ../../library/secrets.rst:189 msgid "" "import secrets\n" "# On standard Linux systems, use a convenient dictionary file.\n" @@ -246,13 +159,9 @@ msgid "" " password = ' '.join(secrets.choice(words) for i in range(4))" msgstr "" -#: ../../library/secrets.rst:199 -msgid "" -"Generate a hard-to-guess temporary URL containing a security token suitable " -"for password recovery applications:" +msgid "Generate a hard-to-guess temporary URL containing a security token suitable for password recovery applications:" msgstr "" -#: ../../library/secrets.rst:202 msgid "" "import secrets\n" "url = 'https://example.com/reset=' + secrets.token_urlsafe()" diff --git a/library/security_warnings.po b/library/security_warnings.po index dc03c28b..51116ab4 100644 --- a/library/security_warnings.po +++ b/library/security_warnings.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-08-10 13:22+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,97 +23,53 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/security_warnings.rst:6 msgid "Security Considerations" msgstr "" -#: ../../library/security_warnings.rst:8 msgid "The following modules have specific security considerations:" msgstr "" -#: ../../library/security_warnings.rst:10 -msgid "" -":mod:`base64`: :ref:`base64 security considerations ` " -"in :rfc:`4648`" +msgid ":mod:`base64`: :ref:`base64 security considerations ` in :rfc:`4648`" msgstr "" -#: ../../library/security_warnings.rst:12 -msgid "" -":mod:`hashlib`: :ref:`all constructors take a \"usedforsecurity\" keyword-" -"only argument disabling known insecure and blocked algorithms `" +msgid ":mod:`hashlib`: :ref:`all constructors take a \"usedforsecurity\" keyword-only argument disabling known insecure and blocked algorithms `" msgstr "" -#: ../../library/security_warnings.rst:15 -msgid "" -":mod:`http.server` is not suitable for production use, only implementing " -"basic security checks. See the :ref:`security considerations `." +msgid ":mod:`http.server` is not suitable for production use, only implementing basic security checks. See the :ref:`security considerations `." msgstr "" -#: ../../library/security_warnings.rst:17 -msgid "" -":mod:`logging`: :ref:`Logging configuration uses eval() `" +msgid ":mod:`logging`: :ref:`Logging configuration uses eval() `" msgstr "" -#: ../../library/security_warnings.rst:19 -msgid "" -":mod:`multiprocessing`: :ref:`Connection.recv() uses pickle `" +msgid ":mod:`multiprocessing`: :ref:`Connection.recv() uses pickle `" msgstr "" -#: ../../library/security_warnings.rst:21 msgid ":mod:`pickle`: :ref:`Restricting globals in pickle `" msgstr "" -#: ../../library/security_warnings.rst:22 -msgid "" -":mod:`random` shouldn't be used for security purposes, use :mod:`secrets` " -"instead" +msgid ":mod:`random` shouldn't be used for security purposes, use :mod:`secrets` instead" msgstr "" -#: ../../library/security_warnings.rst:24 -msgid "" -":mod:`shelve`: :ref:`shelve is based on pickle and thus unsuitable for " -"dealing with untrusted sources `" +msgid ":mod:`shelve`: :ref:`shelve is based on pickle and thus unsuitable for dealing with untrusted sources `" msgstr "" -#: ../../library/security_warnings.rst:26 msgid ":mod:`ssl`: :ref:`SSL/TLS security considerations `" msgstr "" -#: ../../library/security_warnings.rst:27 -msgid "" -":mod:`subprocess`: :ref:`Subprocess security considerations `" +msgid ":mod:`subprocess`: :ref:`Subprocess security considerations `" msgstr "" -#: ../../library/security_warnings.rst:29 -msgid "" -":mod:`tempfile`: :ref:`mktemp is deprecated due to vulnerability to race " -"conditions `" +msgid ":mod:`tempfile`: :ref:`mktemp is deprecated due to vulnerability to race conditions `" msgstr "" -#: ../../library/security_warnings.rst:31 msgid ":mod:`xml`: :ref:`XML security `" msgstr "" -#: ../../library/security_warnings.rst:32 -msgid "" -":mod:`zipfile`: :ref:`maliciously prepared .zip files can cause disk volume " -"exhaustion `" +msgid ":mod:`zipfile`: :ref:`maliciously prepared .zip files can cause disk volume exhaustion `" msgstr "" -#: ../../library/security_warnings.rst:35 -msgid "" -"The :option:`-I` command line option can be used to run Python in isolated " -"mode. When it cannot be used, the :option:`-P` option or " -"the :envvar:`PYTHONSAFEPATH` environment variable can be used to not prepend " -"a potentially unsafe path to :data:`sys.path` such as the current directory, " -"the script's directory or an empty string." +msgid "The :option:`-I` command line option can be used to run Python in isolated mode. When it cannot be used, the :option:`-P` option or the :envvar:`PYTHONSAFEPATH` environment variable can be used to not prepend a potentially unsafe path to :data:`sys.path` such as the current directory, the script's directory or an empty string." msgstr "" -#: ../../library/security_warnings.rst:3 msgid "security considerations" msgstr "" diff --git a/library/select.po b/library/select.po index a966b899..8c2752bf 100644 --- a/library/select.po +++ b/library/select.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:12+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,1014 +23,629 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/select.rst:2 msgid ":mod:`!select` --- Waiting for I/O completion" msgstr "" -#: ../../library/select.rst:9 -msgid "" -"This module provides access to the :c:func:`!select` and :c:func:`!poll` " -"functions available in most operating systems, :c:func:`!devpoll` available " -"on Solaris and derivatives, :c:func:`!epoll` available on Linux 2.5+ " -"and :c:func:`!kqueue` available on most BSD. Note that on Windows, it only " -"works for sockets; on other operating systems, it also works for other file " -"types (in particular, on Unix, it works on pipes). It cannot be used on " -"regular files to determine whether a file has grown since it was last read." +msgid "This module provides access to the :c:func:`!select` and :c:func:`!poll` functions available in most operating systems, :c:func:`!devpoll` available on Solaris and derivatives, :c:func:`!epoll` available on Linux 2.5+ and :c:func:`!kqueue` available on most BSD. Note that on Windows, it only works for sockets; on other operating systems, it also works for other file types (in particular, on Unix, it works on pipes). It cannot be used on regular files to determine whether a file has grown since it was last read." msgstr "" -#: ../../library/select.rst:20 -msgid "" -"The :mod:`selectors` module allows high-level and efficient I/O " -"multiplexing, built upon the :mod:`!select` module primitives. Users are " -"encouraged to use the :mod:`selectors` module instead, unless they want " -"precise control over the OS-level primitives used." +msgid "The :mod:`selectors` module allows high-level and efficient I/O multiplexing, built upon the :mod:`!select` module primitives. Users are encouraged to use the :mod:`selectors` module instead, unless they want precise control over the OS-level primitives used." msgstr "" -#: ../../library/select.rst:57 ../../library/select.rst:94 -#: ../../library/select.rst:104 ../../library/select.rst:117 -#: ../../library/select.rst:125 ../../library/select.rst:188 -#: ../../includes/wasm-notavail.rst:3 msgid "Availability" msgstr "" -#: ../../includes/wasm-notavail.rst:5 -msgid "" -"This module does not work or is not available on WebAssembly. See :ref:`wasm-" -"availability` for more information." +msgid "This module does not work or is not available on WebAssembly. See :ref:`wasm-availability` for more information." msgstr "" -#: ../../library/select.rst:27 msgid "The module defines the following:" msgstr "" -#: ../../library/select.rst:32 msgid "A deprecated alias of :exc:`OSError`." msgstr "" -#: ../../library/select.rst:34 msgid "Following :pep:`3151`, this class was made an alias of :exc:`OSError`." msgstr "" -#: ../../library/select.rst:40 -msgid "" -"Returns a ``/dev/poll`` polling object; see section :ref:`devpoll-objects` " -"below for the methods supported by devpoll objects." +msgid "Returns a ``/dev/poll`` polling object; see section :ref:`devpoll-objects` below for the methods supported by devpoll objects." msgstr "" -#: ../../library/select.rst:44 -msgid "" -":c:func:`!devpoll` objects are linked to the number of file descriptors " -"allowed at the time of instantiation. If your program reduces this " -"value, :c:func:`!devpoll` will fail. If your program increases this " -"value, :c:func:`!devpoll` may return an incomplete list of active file " -"descriptors." +msgid ":c:func:`!devpoll` objects are linked to the number of file descriptors allowed at the time of instantiation. If your program reduces this value, :c:func:`!devpoll` will fail. If your program increases this value, :c:func:`!devpoll` may return an incomplete list of active file descriptors." msgstr "" -#: ../../library/select.rst:50 ../../library/select.rst:81 -#: ../../library/select.rst:112 msgid "The new file descriptor is :ref:`non-inheritable `." msgstr "" -#: ../../library/select.rst:54 ../../library/select.rst:114 msgid "The new file descriptor is now non-inheritable." msgstr "" -#: ../../library/select.rst:61 -msgid "" -"Return an edge polling object, which can be used as Edge or Level Triggered " -"interface for I/O events." +msgid "Return an edge polling object, which can be used as Edge or Level Triggered interface for I/O events." msgstr "" -#: ../../library/select.rst:65 -msgid "" -"*sizehint* informs epoll about the expected number of events to be " -"registered. It must be positive, or ``-1`` to use the default. It is only " -"used on older systems where :c:func:`!epoll_create1` is not available; " -"otherwise it has no effect (though its value is still checked)." +msgid "*sizehint* informs epoll about the expected number of events to be registered. It must be positive, or ``-1`` to use the default. It is only used on older systems where :c:func:`!epoll_create1` is not available; otherwise it has no effect (though its value is still checked)." msgstr "" -#: ../../library/select.rst:70 -msgid "" -"*flags* is deprecated and completely ignored. However, when supplied, its " -"value must be ``0`` or ``select.EPOLL_CLOEXEC``, otherwise ``OSError`` is " -"raised." +msgid "*flags* is deprecated and completely ignored. However, when supplied, its value must be ``0`` or ``select.EPOLL_CLOEXEC``, otherwise ``OSError`` is raised." msgstr "" -#: ../../library/select.rst:74 -msgid "" -"See the :ref:`epoll-objects` section below for the methods supported by " -"epolling objects." +msgid "See the :ref:`epoll-objects` section below for the methods supported by epolling objects." msgstr "" -#: ../../library/select.rst:77 -msgid "" -"``epoll`` objects support the context management protocol: when used in " -"a :keyword:`with` statement, the new file descriptor is automatically closed " -"at the end of the block." +msgid "``epoll`` objects support the context management protocol: when used in a :keyword:`with` statement, the new file descriptor is automatically closed at the end of the block." msgstr "" -#: ../../library/select.rst:83 msgid "Added the *flags* parameter." msgstr "" -#: ../../library/select.rst:86 -msgid "" -"Support for the :keyword:`with` statement was added. The new file descriptor " -"is now non-inheritable." +msgid "Support for the :keyword:`with` statement was added. The new file descriptor is now non-inheritable." msgstr "" -#: ../../library/select.rst:90 -msgid "" -"The *flags* parameter. ``select.EPOLL_CLOEXEC`` is used by default now. " -"Use :func:`os.set_inheritable` to make the file descriptor inheritable." +msgid "The *flags* parameter. ``select.EPOLL_CLOEXEC`` is used by default now. Use :func:`os.set_inheritable` to make the file descriptor inheritable." msgstr "" -#: ../../library/select.rst:99 -msgid "" -"Returns a polling object, which supports registering and unregistering file " -"descriptors, and then polling them for I/O events; see section :ref:`poll-" -"objects` below for the methods supported by polling objects." +msgid "Returns a polling object, which supports registering and unregistering file descriptors, and then polling them for I/O events; see section :ref:`poll-objects` below for the methods supported by polling objects." msgstr "" -#: ../../library/select.rst:109 -msgid "" -"Returns a kernel queue object; see section :ref:`kqueue-objects` below for " -"the methods supported by kqueue objects." +msgid "Returns a kernel queue object; see section :ref:`kqueue-objects` below for the methods supported by kqueue objects." msgstr "" -#: ../../library/select.rst:122 -msgid "" -"Returns a kernel event object; see section :ref:`kevent-objects` below for " -"the methods supported by kevent objects." +msgid "Returns a kernel event object; see section :ref:`kevent-objects` below for the methods supported by kevent objects." msgstr "" -#: ../../library/select.rst:130 -msgid "" -"This is a straightforward interface to the Unix :c:func:`!select` system " -"call. The first three arguments are iterables of 'waitable objects': either " -"integers representing file descriptors or objects with a parameterless " -"method named :meth:`~io.IOBase.fileno` returning such an integer:" +msgid "This is a straightforward interface to the Unix :c:func:`!select` system call. The first three arguments are iterables of 'waitable objects': either integers representing file descriptors or objects with a parameterless method named :meth:`~io.IOBase.fileno` returning such an integer:" msgstr "" -#: ../../library/select.rst:135 msgid "*rlist*: wait until ready for reading" msgstr "" -#: ../../library/select.rst:136 msgid "*wlist*: wait until ready for writing" msgstr "" -#: ../../library/select.rst:137 -msgid "" -"*xlist*: wait for an \"exceptional condition\" (see the manual page for what " -"your system considers such a condition)" +msgid "*xlist*: wait for an \"exceptional condition\" (see the manual page for what your system considers such a condition)" msgstr "" -#: ../../library/select.rst:140 -msgid "" -"Empty iterables are allowed, but acceptance of three empty iterables is " -"platform-dependent. (It is known to work on Unix but not on Windows.) The " -"optional *timeout* argument specifies a time-out as a floating-point number " -"in seconds. When the *timeout* argument is omitted or ``None``, the function " -"blocks until at least one file descriptor is ready. A time-out value of " -"zero specifies a poll and never blocks." +msgid "Empty iterables are allowed, but acceptance of three empty iterables is platform-dependent. (It is known to work on Unix but not on Windows.) The optional *timeout* argument specifies a time-out as a floating-point number in seconds. When the *timeout* argument is omitted or ``None``, the function blocks until at least one file descriptor is ready. A time-out value of zero specifies a poll and never blocks." msgstr "" -#: ../../library/select.rst:148 -msgid "" -"The return value is a triple of lists of objects that are ready: subsets of " -"the first three arguments. When the time-out is reached without a file " -"descriptor becoming ready, three empty lists are returned." +msgid "The return value is a triple of lists of objects that are ready: subsets of the first three arguments. When the time-out is reached without a file descriptor becoming ready, three empty lists are returned." msgstr "" -#: ../../library/select.rst:156 -msgid "" -"Among the acceptable object types in the iterables are Python :term:`file " -"objects ` (e.g. ``sys.stdin``, or objects returned " -"by :func:`open` or :func:`os.popen`), socket objects returned " -"by :func:`socket.socket`. You may also define a :dfn:`wrapper` class " -"yourself, as long as it has an appropriate :meth:`~io.IOBase.fileno` method " -"(that really returns a file descriptor, not just a random integer)." +msgid "Among the acceptable object types in the iterables are Python :term:`file objects ` (e.g. ``sys.stdin``, or objects returned by :func:`open` or :func:`os.popen`), socket objects returned by :func:`socket.socket`. You may also define a :dfn:`wrapper` class yourself, as long as it has an appropriate :meth:`~io.IOBase.fileno` method (that really returns a file descriptor, not just a random integer)." msgstr "" -#: ../../library/select.rst:167 -msgid "" -"File objects on Windows are not acceptable, but sockets are. On Windows, " -"the underlying :c:func:`!select` function is provided by the WinSock " -"library, and does not handle file descriptors that don't originate from " -"WinSock." +msgid "File objects on Windows are not acceptable, but sockets are. On Windows, the underlying :c:func:`!select` function is provided by the WinSock library, and does not handle file descriptors that don't originate from WinSock." msgstr "" -#: ../../library/select.rst:172 ../../library/select.rst:278 -#: ../../library/select.rst:384 ../../library/select.rst:472 -#: ../../library/select.rst:513 -msgid "" -"The function is now retried with a recomputed timeout when interrupted by a " -"signal, except if the signal handler raises an exception (see :pep:`475` for " -"the rationale), instead of raising :exc:`InterruptedError`." +msgid "The function is now retried with a recomputed timeout when interrupted by a signal, except if the signal handler raises an exception (see :pep:`475` for the rationale), instead of raising :exc:`InterruptedError`." msgstr "" -#: ../../library/select.rst:181 -msgid "" -"The minimum number of bytes which can be written without blocking to a pipe " -"when the pipe has been reported as ready for writing " -"by :func:`~select.select`, :func:`!poll` or another interface in this " -"module. This doesn't apply to other kinds of file-like objects such as " -"sockets." +msgid "The minimum number of bytes which can be written without blocking to a pipe when the pipe has been reported as ready for writing by :func:`~select.select`, :func:`!poll` or another interface in this module. This doesn't apply to other kinds of file-like objects such as sockets." msgstr "" -#: ../../library/select.rst:186 msgid "This value is guaranteed by POSIX to be at least 512." msgstr "" -#: ../../library/select.rst:196 msgid "``/dev/poll`` polling objects" msgstr "" -#: ../../library/select.rst:198 -msgid "" -"Solaris and derivatives have ``/dev/poll``. While :c:func:`!select` is *O*\\ " -"(*highest file descriptor*) and :c:func:`!poll` is *O*\\ (*number of file " -"descriptors*), ``/dev/poll`` is *O*\\ (*active file descriptors*)." +msgid "Solaris and derivatives have ``/dev/poll``. While :c:func:`!select` is *O*\\ (*highest file descriptor*) and :c:func:`!poll` is *O*\\ (*number of file descriptors*), ``/dev/poll`` is *O*\\ (*active file descriptors*)." msgstr "" -#: ../../library/select.rst:202 -msgid "" -"``/dev/poll`` behaviour is very close to the standard :c:func:`!poll` object." +msgid "``/dev/poll`` behaviour is very close to the standard :c:func:`!poll` object." msgstr "" -#: ../../library/select.rst:208 msgid "Close the file descriptor of the polling object." msgstr "" -#: ../../library/select.rst:215 msgid "``True`` if the polling object is closed." msgstr "" -#: ../../library/select.rst:222 msgid "Return the file descriptor number of the polling object." msgstr "" -#: ../../library/select.rst:229 ../../library/select.rst:407 -msgid "" -"Register a file descriptor with the polling object. Future calls to " -"the :meth:`poll` method will then check whether the file descriptor has any " -"pending I/O events. *fd* can be either an integer, or an object with " -"a :meth:`~io.IOBase.fileno` method that returns an integer. File objects " -"implement :meth:`!fileno`, so they can also be used as the argument." +msgid "Register a file descriptor with the polling object. Future calls to the :meth:`poll` method will then check whether the file descriptor has any pending I/O events. *fd* can be either an integer, or an object with a :meth:`~io.IOBase.fileno` method that returns an integer. File objects implement :meth:`!fileno`, so they can also be used as the argument." msgstr "" -#: ../../library/select.rst:235 -msgid "" -"*eventmask* is an optional bitmask describing the type of events you want to " -"check for. The constants are the same as with :c:func:`!poll` object. The " -"default value is a combination of the " -"constants :const:`POLLIN`, :const:`POLLPRI`, and :const:`POLLOUT`." +msgid "*eventmask* is an optional bitmask describing the type of events you want to check for. The constants are the same as with :c:func:`!poll` object. The default value is a combination of the constants :const:`POLLIN`, :const:`POLLPRI`, and :const:`POLLOUT`." msgstr "" -#: ../../library/select.rst:242 -msgid "" -"Registering a file descriptor that's already registered is not an error, but " -"the result is undefined. The appropriate action is to unregister or modify " -"it first. This is an important difference compared with :c:func:`!poll`." +msgid "Registering a file descriptor that's already registered is not an error, but the result is undefined. The appropriate action is to unregister or modify it first. This is an important difference compared with :c:func:`!poll`." msgstr "" -#: ../../library/select.rst:250 -msgid "" -"This method does an :meth:`unregister` followed by a :meth:`register`. It is " -"(a bit) more efficient than doing the same explicitly." +msgid "This method does an :meth:`unregister` followed by a :meth:`register`. It is (a bit) more efficient than doing the same explicitly." msgstr "" -#: ../../library/select.rst:257 ../../library/select.rst:451 -msgid "" -"Remove a file descriptor being tracked by a polling object. Just like " -"the :meth:`register` method, *fd* can be an integer or an object with " -"a :meth:`~io.IOBase.fileno` method that returns an integer." +msgid "Remove a file descriptor being tracked by a polling object. Just like the :meth:`register` method, *fd* can be an integer or an object with a :meth:`~io.IOBase.fileno` method that returns an integer." msgstr "" -#: ../../library/select.rst:261 -msgid "" -"Attempting to remove a file descriptor that was never registered is safely " -"ignored." +msgid "Attempting to remove a file descriptor that was never registered is safely ignored." +msgstr "" + +msgid "Polls the set of registered file descriptors, and returns a possibly empty list containing ``(fd, event)`` 2-tuples for the descriptors that have events or errors to report. *fd* is the file descriptor, and *event* is a bitmask with bits set for the reported events for that descriptor --- :const:`POLLIN` for waiting input, :const:`POLLOUT` to indicate that the descriptor can be written to, and so forth. An empty list indicates that the call timed out and no file descriptors had any events to report. If *timeout* is given, it specifies the length of time in milliseconds which the system will wait for events before returning. If *timeout* is omitted, -1, or :const:`None`, the call will block until there is an event for this poll object." msgstr "" -#: ../../library/select.rst:267 -msgid "" -"Polls the set of registered file descriptors, and returns a possibly empty " -"list containing ``(fd, event)`` 2-tuples for the descriptors that have " -"events or errors to report. *fd* is the file descriptor, and *event* is a " -"bitmask with bits set for the reported events for that descriptor " -"--- :const:`POLLIN` for waiting input, :const:`POLLOUT` to indicate that the " -"descriptor can be written to, and so forth. An empty list indicates that the " -"call timed out and no file descriptors had any events to report. If " -"*timeout* is given, it specifies the length of time in milliseconds which " -"the system will wait for events before returning. If *timeout* is omitted, " -"-1, or :const:`None`, the call will block until there is an event for this " -"poll object." -msgstr "" - -#: ../../library/select.rst:288 msgid "Edge and level trigger polling (epoll) objects" msgstr "" -#: ../../library/select.rst:290 msgid "https://linux.die.net/man/4/epoll" msgstr "" -#: ../../library/select.rst:292 msgid "The *eventmask* is a bit mask using the following constants:" msgstr "" -#: ../../library/select.rst:295 ../../library/select.rst:419 -#: ../../library/select.rst:539 ../../library/select.rst:568 -#: ../../library/select.rst:599 ../../library/select.rst:607 -#: ../../library/select.rst:627 ../../library/select.rst:650 msgid "Constant" msgstr "" -#: ../../library/select.rst:295 ../../library/select.rst:419 -#: ../../library/select.rst:539 ../../library/select.rst:568 -#: ../../library/select.rst:599 ../../library/select.rst:607 -#: ../../library/select.rst:627 ../../library/select.rst:650 msgid "Meaning" msgstr "" -#: ../../library/select.rst:297 msgid ":const:`EPOLLIN`" msgstr "" -#: ../../library/select.rst:297 msgid "Available for read." msgstr "" -#: ../../library/select.rst:299 msgid ":const:`EPOLLOUT`" msgstr "" -#: ../../library/select.rst:299 msgid "Available for write." msgstr "" -#: ../../library/select.rst:301 msgid ":const:`EPOLLPRI`" msgstr "" -#: ../../library/select.rst:301 msgid "Urgent data for read." msgstr "" -#: ../../library/select.rst:303 msgid ":const:`EPOLLERR`" msgstr "" -#: ../../library/select.rst:303 msgid "Error condition happened on the associated fd." msgstr "" -#: ../../library/select.rst:305 msgid ":const:`EPOLLHUP`" msgstr "" -#: ../../library/select.rst:305 msgid "Hang up happened on the associated fd." msgstr "" -#: ../../library/select.rst:307 msgid ":const:`EPOLLET`" msgstr "" -#: ../../library/select.rst:307 msgid "Set Edge Trigger behavior, the default is Level Trigger behavior." msgstr "" -#: ../../library/select.rst:310 msgid ":const:`EPOLLONESHOT`" msgstr "" -#: ../../library/select.rst:310 -msgid "" -"Set one-shot behavior. After one event is pulled out, the fd is internally " -"disabled." +msgid "Set one-shot behavior. After one event is pulled out, the fd is internally disabled." msgstr "" -#: ../../library/select.rst:313 msgid ":const:`EPOLLEXCLUSIVE`" msgstr "" -#: ../../library/select.rst:313 -msgid "" -"Wake only one epoll object when the associated fd has an event. The default " -"(if this flag is not set) is to wake all epoll objects polling on an fd." +msgid "Wake only one epoll object when the associated fd has an event. The default (if this flag is not set) is to wake all epoll objects polling on an fd." msgstr "" -#: ../../library/select.rst:318 msgid ":const:`EPOLLRDHUP`" msgstr "" -#: ../../library/select.rst:318 -msgid "" -"Stream socket peer closed connection or shut down writing half of connection." +msgid "Stream socket peer closed connection or shut down writing half of connection." msgstr "" -#: ../../library/select.rst:321 msgid ":const:`EPOLLRDNORM`" msgstr "" -#: ../../library/select.rst:321 msgid "Equivalent to :const:`EPOLLIN`" msgstr "" -#: ../../library/select.rst:323 msgid ":const:`EPOLLRDBAND`" msgstr "" -#: ../../library/select.rst:323 msgid "Priority data band can be read." msgstr "" -#: ../../library/select.rst:325 msgid ":const:`EPOLLWRNORM`" msgstr "" -#: ../../library/select.rst:325 msgid "Equivalent to :const:`EPOLLOUT`." msgstr "" -#: ../../library/select.rst:327 msgid ":const:`EPOLLWRBAND`" msgstr "" -#: ../../library/select.rst:327 msgid "Priority data may be written." msgstr "" -#: ../../library/select.rst:329 msgid ":const:`EPOLLMSG`" msgstr "" -#: ../../library/select.rst:329 msgid "Ignored." msgstr "" -#: ../../library/select.rst:331 msgid ":const:`EPOLLWAKEUP`" msgstr "" -#: ../../library/select.rst:331 msgid "Prevents sleep during event waiting." msgstr "" -#: ../../library/select.rst:334 -msgid "" -":const:`EPOLLEXCLUSIVE` was added. It's only supported by Linux Kernel 4.5 " -"or later." +msgid ":const:`EPOLLEXCLUSIVE` was added. It's only supported by Linux Kernel 4.5 or later." msgstr "" -#: ../../library/select.rst:338 -msgid "" -":const:`EPOLLWAKEUP` was added. It's only supported by Linux Kernel 3.5 or " -"later." +msgid ":const:`EPOLLWAKEUP` was added. It's only supported by Linux Kernel 3.5 or later." msgstr "" -#: ../../library/select.rst:344 msgid "Close the control file descriptor of the epoll object." msgstr "" -#: ../../library/select.rst:349 msgid "``True`` if the epoll object is closed." msgstr "" -#: ../../library/select.rst:354 ../../library/select.rst:496 msgid "Return the file descriptor number of the control fd." msgstr "" -#: ../../library/select.rst:359 msgid "Create an epoll object from a given file descriptor." msgstr "" -#: ../../library/select.rst:364 msgid "Register a file descriptor *fd* with the epoll object." msgstr "" -#: ../../library/select.rst:369 msgid "Modify a registered file descriptor *fd*." msgstr "" -#: ../../library/select.rst:374 msgid "Remove a registered file descriptor from the epoll object." msgstr "" -#: ../../library/select.rst:376 msgid "The method no longer ignores the :data:`~errno.EBADF` error." msgstr "" -#: ../../library/select.rst:382 msgid "Wait for events. timeout in seconds (float)" msgstr "" -#: ../../library/select.rst:394 msgid "Polling objects" msgstr "" -#: ../../library/select.rst:396 -msgid "" -"The :c:func:`!poll` system call, supported on most Unix systems, provides " -"better scalability for network servers that service many, many clients at " -"the same time. :c:func:`!poll` scales better because the system call only " -"requires listing the file descriptors of interest, while :c:func:`!select` " -"builds a bitmap, turns on bits for the fds of interest, and then afterward " -"the whole bitmap has to be linearly scanned again. :c:func:`!select` is " -"*O*\\ (*highest file descriptor*), while :c:func:`!poll` is *O*\\ (*number " -"of file descriptors*)." +msgid "The :c:func:`!poll` system call, supported on most Unix systems, provides better scalability for network servers that service many, many clients at the same time. :c:func:`!poll` scales better because the system call only requires listing the file descriptors of interest, while :c:func:`!select` builds a bitmap, turns on bits for the fds of interest, and then afterward the whole bitmap has to be linearly scanned again. :c:func:`!select` is *O*\\ (*highest file descriptor*), while :c:func:`!poll` is *O*\\ (*number of file descriptors*)." msgstr "" -#: ../../library/select.rst:413 -msgid "" -"*eventmask* is an optional bitmask describing the type of events you want to " -"check for, and can be a combination of the " -"constants :const:`POLLIN`, :const:`POLLPRI`, and :const:`POLLOUT`, described " -"in the table below. If not specified, the default value used will check for " -"all 3 types of events." +msgid "*eventmask* is an optional bitmask describing the type of events you want to check for, and can be a combination of the constants :const:`POLLIN`, :const:`POLLPRI`, and :const:`POLLOUT`, described in the table below. If not specified, the default value used will check for all 3 types of events." msgstr "" -#: ../../library/select.rst:421 msgid ":const:`POLLIN`" msgstr "" -#: ../../library/select.rst:421 msgid "There is data to read." msgstr "" -#: ../../library/select.rst:423 msgid ":const:`POLLPRI`" msgstr "" -#: ../../library/select.rst:423 msgid "There is urgent data to read." msgstr "" -#: ../../library/select.rst:425 msgid ":const:`POLLOUT`" msgstr "" -#: ../../library/select.rst:425 msgid "Ready for output: writing will not block." msgstr "" -#: ../../library/select.rst:427 msgid ":const:`POLLERR`" msgstr "" -#: ../../library/select.rst:427 msgid "Error condition of some sort." msgstr "" -#: ../../library/select.rst:429 msgid ":const:`POLLHUP`" msgstr "" -#: ../../library/select.rst:429 msgid "Hung up." msgstr "" -#: ../../library/select.rst:431 msgid ":const:`POLLRDHUP`" msgstr "" -#: ../../library/select.rst:431 -msgid "" -"Stream socket peer closed connection, or shut down writing half of " -"connection." +msgid "Stream socket peer closed connection, or shut down writing half of connection." msgstr "" -#: ../../library/select.rst:434 msgid ":const:`POLLNVAL`" msgstr "" -#: ../../library/select.rst:434 msgid "Invalid request: descriptor not open." msgstr "" -#: ../../library/select.rst:437 -msgid "" -"Registering a file descriptor that's already registered is not an error, and " -"has the same effect as registering the descriptor exactly once." +msgid "Registering a file descriptor that's already registered is not an error, and has the same effect as registering the descriptor exactly once." msgstr "" -#: ../../library/select.rst:443 -msgid "" -"Modifies an already registered fd. This has the same effect as " -"``register(fd, eventmask)``. Attempting to modify a file descriptor that " -"was never registered causes an :exc:`OSError` exception with " -"errno :const:`ENOENT` to be raised." +msgid "Modifies an already registered fd. This has the same effect as ``register(fd, eventmask)``. Attempting to modify a file descriptor that was never registered causes an :exc:`OSError` exception with errno :const:`ENOENT` to be raised." msgstr "" -#: ../../library/select.rst:455 -msgid "" -"Attempting to remove a file descriptor that was never registered causes " -"a :exc:`KeyError` exception to be raised." +msgid "Attempting to remove a file descriptor that was never registered causes a :exc:`KeyError` exception to be raised." +msgstr "" + +msgid "Polls the set of registered file descriptors, and returns a possibly empty list containing ``(fd, event)`` 2-tuples for the descriptors that have events or errors to report. *fd* is the file descriptor, and *event* is a bitmask with bits set for the reported events for that descriptor --- :const:`POLLIN` for waiting input, :const:`POLLOUT` to indicate that the descriptor can be written to, and so forth. An empty list indicates that the call timed out and no file descriptors had any events to report. If *timeout* is given, it specifies the length of time in milliseconds which the system will wait for events before returning. If *timeout* is omitted, negative, or :const:`None`, the call will block until there is an event for this poll object." msgstr "" -#: ../../library/select.rst:461 -msgid "" -"Polls the set of registered file descriptors, and returns a possibly empty " -"list containing ``(fd, event)`` 2-tuples for the descriptors that have " -"events or errors to report. *fd* is the file descriptor, and *event* is a " -"bitmask with bits set for the reported events for that descriptor " -"--- :const:`POLLIN` for waiting input, :const:`POLLOUT` to indicate that the " -"descriptor can be written to, and so forth. An empty list indicates that the " -"call timed out and no file descriptors had any events to report. If " -"*timeout* is given, it specifies the length of time in milliseconds which " -"the system will wait for events before returning. If *timeout* is omitted, " -"negative, or :const:`None`, the call will block until there is an event for " -"this poll object." -msgstr "" - -#: ../../library/select.rst:482 msgid "Kqueue objects" msgstr "" -#: ../../library/select.rst:486 msgid "Close the control file descriptor of the kqueue object." msgstr "" -#: ../../library/select.rst:491 msgid "``True`` if the kqueue object is closed." msgstr "" -#: ../../library/select.rst:501 msgid "Create a kqueue object from a given file descriptor." msgstr "" -#: ../../library/select.rst:506 msgid "Low level interface to kevent" msgstr "" -#: ../../library/select.rst:508 msgid "changelist must be an iterable of kevent objects or ``None``" msgstr "" -#: ../../library/select.rst:509 msgid "max_events must be 0 or a positive integer" msgstr "" -#: ../../library/select.rst:510 -msgid "" -"timeout in seconds (floats possible); the default is ``None``, to wait " -"forever" +msgid "timeout in seconds (floats possible); the default is ``None``, to wait forever" msgstr "" -#: ../../library/select.rst:523 msgid "Kevent objects" msgstr "" -#: ../../library/select.rst:525 msgid "https://man.freebsd.org/cgi/man.cgi?query=kqueue&sektion=2" msgstr "" -#: ../../library/select.rst:529 -msgid "" -"Value used to identify the event. The interpretation depends on the filter " -"but it's usually the file descriptor. In the constructor ident can either be " -"an int or an object with a :meth:`~io.IOBase.fileno` method. kevent stores " -"the integer internally." +msgid "Value used to identify the event. The interpretation depends on the filter but it's usually the file descriptor. In the constructor ident can either be an int or an object with a :meth:`~io.IOBase.fileno` method. kevent stores the integer internally." msgstr "" -#: ../../library/select.rst:536 msgid "Name of the kernel filter." msgstr "" -#: ../../library/select.rst:541 msgid ":const:`KQ_FILTER_READ`" msgstr "" -#: ../../library/select.rst:541 -msgid "" -"Takes a descriptor and returns whenever there is data available to read." +msgid "Takes a descriptor and returns whenever there is data available to read." msgstr "" -#: ../../library/select.rst:544 msgid ":const:`KQ_FILTER_WRITE`" msgstr "" -#: ../../library/select.rst:544 -msgid "" -"Takes a descriptor and returns whenever there is data available to write." +msgid "Takes a descriptor and returns whenever there is data available to write." msgstr "" -#: ../../library/select.rst:547 msgid ":const:`KQ_FILTER_AIO`" msgstr "" -#: ../../library/select.rst:547 msgid "AIO requests." msgstr "" -#: ../../library/select.rst:549 msgid ":const:`KQ_FILTER_VNODE`" msgstr "" -#: ../../library/select.rst:549 -msgid "" -"Returns when one or more of the requested events watched in *fflag* occurs." +msgid "Returns when one or more of the requested events watched in *fflag* occurs." msgstr "" -#: ../../library/select.rst:552 msgid ":const:`KQ_FILTER_PROC`" msgstr "" -#: ../../library/select.rst:552 msgid "Watch for events on a process ID." msgstr "" -#: ../../library/select.rst:554 msgid ":const:`KQ_FILTER_NETDEV`" msgstr "" -#: ../../library/select.rst:554 msgid "Watch for events on a network device (not available on macOS)." msgstr "" -#: ../../library/select.rst:557 msgid ":const:`KQ_FILTER_SIGNAL`" msgstr "" -#: ../../library/select.rst:557 msgid "Returns whenever the watched signal is delivered to the process." msgstr "" -#: ../../library/select.rst:560 msgid ":const:`KQ_FILTER_TIMER`" msgstr "" -#: ../../library/select.rst:560 msgid "Establishes an arbitrary timer." msgstr "" -#: ../../library/select.rst:565 msgid "Filter action." msgstr "" -#: ../../library/select.rst:570 msgid ":const:`KQ_EV_ADD`" msgstr "" -#: ../../library/select.rst:570 msgid "Adds or modifies an event." msgstr "" -#: ../../library/select.rst:572 msgid ":const:`KQ_EV_DELETE`" msgstr "" -#: ../../library/select.rst:572 msgid "Removes an event from the queue." msgstr "" -#: ../../library/select.rst:574 msgid ":const:`KQ_EV_ENABLE`" msgstr "" -#: ../../library/select.rst:574 msgid "Permits control() to return the event." msgstr "" -#: ../../library/select.rst:576 msgid ":const:`KQ_EV_DISABLE`" msgstr "" -#: ../../library/select.rst:576 msgid "Disables event." msgstr "" -#: ../../library/select.rst:578 msgid ":const:`KQ_EV_ONESHOT`" msgstr "" -#: ../../library/select.rst:578 msgid "Removes event after first occurrence." msgstr "" -#: ../../library/select.rst:580 msgid ":const:`KQ_EV_CLEAR`" msgstr "" -#: ../../library/select.rst:580 msgid "Reset the state after an event is retrieved." msgstr "" -#: ../../library/select.rst:582 msgid ":const:`KQ_EV_SYSFLAGS`" msgstr "" -#: ../../library/select.rst:582 ../../library/select.rst:584 msgid "Internal event." msgstr "" -#: ../../library/select.rst:584 msgid ":const:`KQ_EV_FLAG1`" msgstr "" -#: ../../library/select.rst:586 msgid ":const:`KQ_EV_EOF`" msgstr "" -#: ../../library/select.rst:586 msgid "Filter-specific EOF condition." msgstr "" -#: ../../library/select.rst:588 msgid ":const:`KQ_EV_ERROR`" msgstr "" -#: ../../library/select.rst:588 msgid "See return values." msgstr "" -#: ../../library/select.rst:594 msgid "Filter-specific flags." msgstr "" -#: ../../library/select.rst:596 msgid ":const:`KQ_FILTER_READ` and :const:`KQ_FILTER_WRITE` filter flags:" msgstr "" -#: ../../library/select.rst:601 msgid ":const:`KQ_NOTE_LOWAT`" msgstr "" -#: ../../library/select.rst:601 msgid "Low water mark of a socket buffer." msgstr "" -#: ../../library/select.rst:604 msgid ":const:`KQ_FILTER_VNODE` filter flags:" msgstr "" -#: ../../library/select.rst:609 msgid ":const:`KQ_NOTE_DELETE`" msgstr "" -#: ../../library/select.rst:609 msgid "*unlink()* was called." msgstr "" -#: ../../library/select.rst:611 msgid ":const:`KQ_NOTE_WRITE`" msgstr "" -#: ../../library/select.rst:611 msgid "A write occurred." msgstr "" -#: ../../library/select.rst:613 msgid ":const:`KQ_NOTE_EXTEND`" msgstr "" -#: ../../library/select.rst:613 msgid "The file was extended." msgstr "" -#: ../../library/select.rst:615 msgid ":const:`KQ_NOTE_ATTRIB`" msgstr "" -#: ../../library/select.rst:615 msgid "An attribute was changed." msgstr "" -#: ../../library/select.rst:617 msgid ":const:`KQ_NOTE_LINK`" msgstr "" -#: ../../library/select.rst:617 msgid "The link count has changed." msgstr "" -#: ../../library/select.rst:619 msgid ":const:`KQ_NOTE_RENAME`" msgstr "" -#: ../../library/select.rst:619 msgid "The file was renamed." msgstr "" -#: ../../library/select.rst:621 msgid ":const:`KQ_NOTE_REVOKE`" msgstr "" -#: ../../library/select.rst:621 msgid "Access to the file was revoked." msgstr "" -#: ../../library/select.rst:624 msgid ":const:`KQ_FILTER_PROC` filter flags:" msgstr "" -#: ../../library/select.rst:629 msgid ":const:`KQ_NOTE_EXIT`" msgstr "" -#: ../../library/select.rst:629 msgid "The process has exited." msgstr "" -#: ../../library/select.rst:631 msgid ":const:`KQ_NOTE_FORK`" msgstr "" -#: ../../library/select.rst:631 msgid "The process has called *fork()*." msgstr "" -#: ../../library/select.rst:633 msgid ":const:`KQ_NOTE_EXEC`" msgstr "" -#: ../../library/select.rst:633 msgid "The process has executed a new process." msgstr "" -#: ../../library/select.rst:635 msgid ":const:`KQ_NOTE_PCTRLMASK`" msgstr "" -#: ../../library/select.rst:635 ../../library/select.rst:637 msgid "Internal filter flag." msgstr "" -#: ../../library/select.rst:637 msgid ":const:`KQ_NOTE_PDATAMASK`" msgstr "" -#: ../../library/select.rst:639 msgid ":const:`KQ_NOTE_TRACK`" msgstr "" -#: ../../library/select.rst:639 msgid "Follow a process across *fork()*." msgstr "" -#: ../../library/select.rst:641 msgid ":const:`KQ_NOTE_CHILD`" msgstr "" -#: ../../library/select.rst:641 msgid "Returned on the child process for *NOTE_TRACK*." msgstr "" -#: ../../library/select.rst:644 msgid ":const:`KQ_NOTE_TRACKERR`" msgstr "" -#: ../../library/select.rst:644 msgid "Unable to attach to a child." msgstr "" -#: ../../library/select.rst:647 msgid ":const:`KQ_FILTER_NETDEV` filter flags (not available on macOS):" msgstr "" -#: ../../library/select.rst:652 msgid ":const:`KQ_NOTE_LINKUP`" msgstr "" -#: ../../library/select.rst:652 msgid "Link is up." msgstr "" -#: ../../library/select.rst:654 msgid ":const:`KQ_NOTE_LINKDOWN`" msgstr "" -#: ../../library/select.rst:654 msgid "Link is down." msgstr "" -#: ../../library/select.rst:656 msgid ":const:`KQ_NOTE_LINKINV`" msgstr "" -#: ../../library/select.rst:656 msgid "Link state is invalid." msgstr "" -#: ../../library/select.rst:662 msgid "Filter-specific data." msgstr "" -#: ../../library/select.rst:667 msgid "User-defined value." msgstr "" -#: ../../library/select.rst:152 msgid "socket() (in module socket)" msgstr "" -#: ../../library/select.rst:152 msgid "popen() (in module os)" msgstr "" -#: ../../library/select.rst:165 msgid "WinSock" msgstr "" diff --git a/library/selectors.po b/library/selectors.po index 652251cf..9f631df2 100644 --- a/library/selectors.po +++ b/library/selectors.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:12+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,78 +24,45 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/selectors.rst:2 msgid ":mod:`!selectors` --- High-level I/O multiplexing" msgstr "" -#: ../../library/selectors.rst:9 msgid "**Source code:** :source:`Lib/selectors.py`" msgstr "" -#: ../../library/selectors.rst:14 msgid "Introduction" msgstr "" -#: ../../library/selectors.rst:16 -msgid "" -"This module allows high-level and efficient I/O multiplexing, built upon " -"the :mod:`select` module primitives. Users are encouraged to use this module " -"instead, unless they want precise control over the OS-level primitives used." +msgid "This module allows high-level and efficient I/O multiplexing, built upon the :mod:`select` module primitives. Users are encouraged to use this module instead, unless they want precise control over the OS-level primitives used." msgstr "" -#: ../../library/selectors.rst:20 -msgid "" -"It defines a :class:`BaseSelector` abstract base class, along with several " -"concrete implementations " -"(:class:`KqueueSelector`, :class:`EpollSelector`...), that can be used to " -"wait for I/O readiness notification on multiple file objects. In the " -"following, \"file object\" refers to any object with " -"a :meth:`~io.IOBase.fileno` method, or a raw file descriptor. " -"See :term:`file object`." +msgid "It defines a :class:`BaseSelector` abstract base class, along with several concrete implementations (:class:`KqueueSelector`, :class:`EpollSelector`...), that can be used to wait for I/O readiness notification on multiple file objects. In the following, \"file object\" refers to any object with a :meth:`~io.IOBase.fileno` method, or a raw file descriptor. See :term:`file object`." msgstr "" -#: ../../library/selectors.rst:26 -msgid "" -":class:`DefaultSelector` is an alias to the most efficient implementation " -"available on the current platform: this should be the default choice for " -"most users." +msgid ":class:`DefaultSelector` is an alias to the most efficient implementation available on the current platform: this should be the default choice for most users." msgstr "" -#: ../../library/selectors.rst:31 -msgid "" -"The type of file objects supported depends on the platform: on Windows, " -"sockets are supported, but not pipes, whereas on Unix, both are supported " -"(some other types may be supported as well, such as fifos or special file " -"devices)." +msgid "The type of file objects supported depends on the platform: on Windows, sockets are supported, but not pipes, whereas on Unix, both are supported (some other types may be supported as well, such as fifos or special file devices)." msgstr "" -#: ../../library/selectors.rst:38 msgid ":mod:`select`" msgstr "" -#: ../../library/selectors.rst:39 msgid "Low-level I/O multiplexing module." msgstr "" -#: ../../includes/wasm-notavail.rst:3 msgid "Availability" msgstr "" -#: ../../includes/wasm-notavail.rst:5 -msgid "" -"This module does not work or is not available on WebAssembly. See :ref:`wasm-" -"availability` for more information." +msgid "This module does not work or is not available on WebAssembly. See :ref:`wasm-availability` for more information." msgstr "" -#: ../../library/selectors.rst:44 msgid "Classes" msgstr "" -#: ../../library/selectors.rst:46 msgid "Classes hierarchy::" msgstr "" -#: ../../library/selectors.rst:48 msgid "" "BaseSelector\n" "+-- SelectSelector\n" @@ -105,246 +72,135 @@ msgid "" "+-- KqueueSelector" msgstr "" -#: ../../library/selectors.rst:56 -msgid "" -"In the following, *events* is a bitwise mask indicating which I/O events " -"should be waited for on a given file object. It can be a combination of the " -"module's constants below:" +msgid "In the following, *events* is a bitwise mask indicating which I/O events should be waited for on a given file object. It can be a combination of the module's constants below:" msgstr "" -#: ../../library/selectors.rst:61 msgid "Constant" msgstr "" -#: ../../library/selectors.rst:61 msgid "Meaning" msgstr "" -#: ../../library/selectors.rst:63 msgid "Available for read" msgstr "" -#: ../../library/selectors.rst:65 msgid "Available for write" msgstr "" -#: ../../library/selectors.rst:71 -msgid "" -"A :class:`SelectorKey` is a :class:`~collections.namedtuple` used to " -"associate a file object to its underlying file descriptor, selected event " -"mask and attached data. It is returned by several :class:`BaseSelector` " -"methods." +msgid "A :class:`SelectorKey` is a :class:`~collections.namedtuple` used to associate a file object to its underlying file descriptor, selected event mask and attached data. It is returned by several :class:`BaseSelector` methods." msgstr "" -#: ../../library/selectors.rst:78 msgid "File object registered." msgstr "" -#: ../../library/selectors.rst:82 msgid "Underlying file descriptor." msgstr "" -#: ../../library/selectors.rst:86 msgid "Events that must be waited for on this file object." msgstr "" -#: ../../library/selectors.rst:90 -msgid "" -"Optional opaque data associated to this file object: for example, this could " -"be used to store a per-client session ID." +msgid "Optional opaque data associated to this file object: for example, this could be used to store a per-client session ID." +msgstr "" + +msgid "A :class:`BaseSelector` is used to wait for I/O event readiness on multiple file objects. It supports file stream registration, unregistration, and a method to wait for I/O events on those streams, with an optional timeout. It's an abstract base class, so cannot be instantiated. Use :class:`DefaultSelector` instead, or one of :class:`SelectSelector`, :class:`KqueueSelector` etc. if you want to specifically use an implementation, and your platform supports it. :class:`BaseSelector` and its concrete implementations support the :term:`context manager` protocol." msgstr "" -#: ../../library/selectors.rst:96 -msgid "" -"A :class:`BaseSelector` is used to wait for I/O event readiness on multiple " -"file objects. It supports file stream registration, unregistration, and a " -"method to wait for I/O events on those streams, with an optional timeout. " -"It's an abstract base class, so cannot be instantiated. " -"Use :class:`DefaultSelector` instead, or one " -"of :class:`SelectSelector`, :class:`KqueueSelector` etc. if you want to " -"specifically use an implementation, and your platform supports " -"it. :class:`BaseSelector` and its concrete implementations support " -"the :term:`context manager` protocol." -msgstr "" - -#: ../../library/selectors.rst:109 msgid "Register a file object for selection, monitoring it for I/O events." msgstr "" -#: ../../library/selectors.rst:111 -msgid "" -"*fileobj* is the file object to monitor. It may either be an integer file " -"descriptor or an object with a ``fileno()`` method. *events* is a bitwise " -"mask of events to monitor. *data* is an opaque object." +msgid "*fileobj* is the file object to monitor. It may either be an integer file descriptor or an object with a ``fileno()`` method. *events* is a bitwise mask of events to monitor. *data* is an opaque object." msgstr "" -#: ../../library/selectors.rst:116 -msgid "" -"This returns a new :class:`SelectorKey` instance, or raises " -"a :exc:`ValueError` in case of invalid event mask or file descriptor, " -"or :exc:`KeyError` if the file object is already registered." +msgid "This returns a new :class:`SelectorKey` instance, or raises a :exc:`ValueError` in case of invalid event mask or file descriptor, or :exc:`KeyError` if the file object is already registered." msgstr "" -#: ../../library/selectors.rst:123 -msgid "" -"Unregister a file object from selection, removing it from monitoring. A file " -"object shall be unregistered prior to being closed." +msgid "Unregister a file object from selection, removing it from monitoring. A file object shall be unregistered prior to being closed." msgstr "" -#: ../../library/selectors.rst:126 msgid "*fileobj* must be a file object previously registered." msgstr "" -#: ../../library/selectors.rst:128 -msgid "" -"This returns the associated :class:`SelectorKey` instance, or raises " -"a :exc:`KeyError` if *fileobj* is not registered. It will " -"raise :exc:`ValueError` if *fileobj* is invalid (e.g. it has no ``fileno()`` " -"method or its ``fileno()`` method has an invalid return value)." +msgid "This returns the associated :class:`SelectorKey` instance, or raises a :exc:`KeyError` if *fileobj* is not registered. It will raise :exc:`ValueError` if *fileobj* is invalid (e.g. it has no ``fileno()`` method or its ``fileno()`` method has an invalid return value)." msgstr "" -#: ../../library/selectors.rst:135 msgid "Change a registered file object's monitored events or attached data." msgstr "" -#: ../../library/selectors.rst:137 -msgid "" -"This is equivalent to ``BaseSelector.unregister(fileobj)`` followed by " -"``BaseSelector.register(fileobj, events, data)``, except that it can be " -"implemented more efficiently." +msgid "This is equivalent to ``BaseSelector.unregister(fileobj)`` followed by ``BaseSelector.register(fileobj, events, data)``, except that it can be implemented more efficiently." msgstr "" -#: ../../library/selectors.rst:141 -msgid "" -"This returns a new :class:`SelectorKey` instance, or raises " -"a :exc:`ValueError` in case of invalid event mask or file descriptor, " -"or :exc:`KeyError` if the file object is not registered." +msgid "This returns a new :class:`SelectorKey` instance, or raises a :exc:`ValueError` in case of invalid event mask or file descriptor, or :exc:`KeyError` if the file object is not registered." msgstr "" -#: ../../library/selectors.rst:148 -msgid "" -"Wait until some registered file objects become ready, or the timeout expires." +msgid "Wait until some registered file objects become ready, or the timeout expires." msgstr "" -#: ../../library/selectors.rst:151 -msgid "" -"If ``timeout > 0``, this specifies the maximum wait time, in seconds. If " -"``timeout <= 0``, the call won't block, and will report the currently ready " -"file objects. If *timeout* is ``None``, the call will block until a " -"monitored file object becomes ready." +msgid "If ``timeout > 0``, this specifies the maximum wait time, in seconds. If ``timeout <= 0``, the call won't block, and will report the currently ready file objects. If *timeout* is ``None``, the call will block until a monitored file object becomes ready." msgstr "" -#: ../../library/selectors.rst:157 -msgid "" -"This returns a list of ``(key, events)`` tuples, one for each ready file " -"object." +msgid "This returns a list of ``(key, events)`` tuples, one for each ready file object." msgstr "" -#: ../../library/selectors.rst:160 -msgid "" -"*key* is the :class:`SelectorKey` instance corresponding to a ready file " -"object. *events* is a bitmask of events ready on this file object." +msgid "*key* is the :class:`SelectorKey` instance corresponding to a ready file object. *events* is a bitmask of events ready on this file object." msgstr "" -#: ../../library/selectors.rst:165 -msgid "" -"This method can return before any file object becomes ready or the timeout " -"has elapsed if the current process receives a signal: in this case, an empty " -"list will be returned." +msgid "This method can return before any file object becomes ready or the timeout has elapsed if the current process receives a signal: in this case, an empty list will be returned." msgstr "" -#: ../../library/selectors.rst:169 -msgid "" -"The selector is now retried with a recomputed timeout when interrupted by a " -"signal if the signal handler did not raise an exception (see :pep:`475` for " -"the rationale), instead of returning an empty list of events before the " -"timeout." +msgid "The selector is now retried with a recomputed timeout when interrupted by a signal if the signal handler did not raise an exception (see :pep:`475` for the rationale), instead of returning an empty list of events before the timeout." msgstr "" -#: ../../library/selectors.rst:177 msgid "Close the selector." msgstr "" -#: ../../library/selectors.rst:179 -msgid "" -"This must be called to make sure that any underlying resource is freed. The " -"selector shall not be used once it has been closed." +msgid "This must be called to make sure that any underlying resource is freed. The selector shall not be used once it has been closed." msgstr "" -#: ../../library/selectors.rst:184 msgid "Return the key associated with a registered file object." msgstr "" -#: ../../library/selectors.rst:186 -msgid "" -"This returns the :class:`SelectorKey` instance associated to this file " -"object, or raises :exc:`KeyError` if the file object is not registered." +msgid "This returns the :class:`SelectorKey` instance associated to this file object, or raises :exc:`KeyError` if the file object is not registered." msgstr "" -#: ../../library/selectors.rst:192 msgid "Return a mapping of file objects to selector keys." msgstr "" -#: ../../library/selectors.rst:194 -msgid "" -"This returns a :class:`~collections.abc.Mapping` instance mapping registered " -"file objects to their associated :class:`SelectorKey` instance." +msgid "This returns a :class:`~collections.abc.Mapping` instance mapping registered file objects to their associated :class:`SelectorKey` instance." msgstr "" -#: ../../library/selectors.rst:201 -msgid "" -"The default selector class, using the most efficient implementation " -"available on the current platform. This should be the default choice for " -"most users." +msgid "The default selector class, using the most efficient implementation available on the current platform. This should be the default choice for most users." msgstr "" -#: ../../library/selectors.rst:208 msgid ":func:`select.select`-based selector." msgstr "" -#: ../../library/selectors.rst:213 msgid ":func:`select.poll`-based selector." msgstr "" -#: ../../library/selectors.rst:218 msgid ":func:`select.epoll`-based selector." msgstr "" -#: ../../library/selectors.rst:222 -msgid "" -"This returns the file descriptor used by the underlying :func:`select.epoll` " -"object." +msgid "This returns the file descriptor used by the underlying :func:`select.epoll` object." msgstr "" -#: ../../library/selectors.rst:227 msgid ":func:`select.devpoll`-based selector." msgstr "" -#: ../../library/selectors.rst:231 -msgid "" -"This returns the file descriptor used by the " -"underlying :func:`select.devpoll` object." +msgid "This returns the file descriptor used by the underlying :func:`select.devpoll` object." msgstr "" -#: ../../library/selectors.rst:238 msgid ":func:`select.kqueue`-based selector." msgstr "" -#: ../../library/selectors.rst:242 -msgid "" -"This returns the file descriptor used by the " -"underlying :func:`select.kqueue` object." +msgid "This returns the file descriptor used by the underlying :func:`select.kqueue` object." msgstr "" -#: ../../library/selectors.rst:247 msgid "Examples" msgstr "" -#: ../../library/selectors.rst:249 msgid "Here is a simple echo server implementation::" msgstr "" -#: ../../library/selectors.rst:251 msgid "" "import selectors\n" "import socket\n" diff --git a/library/shelve.po b/library/shelve.po index df4d6348..2a5cee93 100644 --- a/library/shelve.po +++ b/library/shelve.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:12+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,227 +24,101 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/shelve.rst:2 msgid ":mod:`!shelve` --- Python object persistence" msgstr "" -#: ../../library/shelve.rst:7 msgid "**Source code:** :source:`Lib/shelve.py`" msgstr "" -#: ../../library/shelve.rst:13 -msgid "" -"A \"shelf\" is a persistent, dictionary-like object. The difference with " -"\"dbm\" databases is that the values (not the keys!) in a shelf can be " -"essentially arbitrary Python objects --- anything that the :mod:`pickle` " -"module can handle. This includes most class instances, recursive data types, " -"and objects containing lots of shared sub-objects. The keys are ordinary " -"strings." +msgid "A \"shelf\" is a persistent, dictionary-like object. The difference with \"dbm\" databases is that the values (not the keys!) in a shelf can be essentially arbitrary Python objects --- anything that the :mod:`pickle` module can handle. This includes most class instances, recursive data types, and objects containing lots of shared sub-objects. The keys are ordinary strings." msgstr "" -#: ../../library/shelve.rst:22 -msgid "" -"Open a persistent dictionary. The filename specified is the base filename " -"for the underlying database. As a side-effect, an extension may be added to " -"the filename and more than one file may be created. By default, the " -"underlying database file is opened for reading and writing. The optional " -"*flag* parameter has the same interpretation as the *flag* parameter " -"of :func:`dbm.open`." +msgid "Open a persistent dictionary. The filename specified is the base filename for the underlying database. As a side-effect, an extension may be added to the filename and more than one file may be created. By default, the underlying database file is opened for reading and writing. The optional *flag* parameter has the same interpretation as the *flag* parameter of :func:`dbm.open`." msgstr "" -#: ../../library/shelve.rst:28 -msgid "" -"By default, pickles created with :const:`pickle.DEFAULT_PROTOCOL` are used " -"to serialize values. The version of the pickle protocol can be specified " -"with the *protocol* parameter." +msgid "By default, pickles created with :const:`pickle.DEFAULT_PROTOCOL` are used to serialize values. The version of the pickle protocol can be specified with the *protocol* parameter." msgstr "" -#: ../../library/shelve.rst:32 -msgid "" -"Because of Python semantics, a shelf cannot know when a mutable persistent-" -"dictionary entry is modified. By default modified objects are written " -"*only* when assigned to the shelf (see :ref:`shelve-example`). If the " -"optional *writeback* parameter is set to ``True``, all entries accessed are " -"also cached in memory, and written back on :meth:`~Shelf.sync` " -"and :meth:`~Shelf.close`; this can make it handier to mutate mutable entries " -"in the persistent dictionary, but, if many entries are accessed, it can " -"consume vast amounts of memory for the cache, and it can make the close " -"operation very slow since all accessed entries are written back (there is no " -"way to determine which accessed entries are mutable, nor which ones were " -"actually mutated)." -msgstr "" - -#: ../../library/shelve.rst:44 ../../library/shelve.rst:148 -msgid "" -":const:`pickle.DEFAULT_PROTOCOL` is now used as the default pickle protocol." +msgid "Because of Python semantics, a shelf cannot know when a mutable persistent-dictionary entry is modified. By default modified objects are written *only* when assigned to the shelf (see :ref:`shelve-example`). If the optional *writeback* parameter is set to ``True``, all entries accessed are also cached in memory, and written back on :meth:`~Shelf.sync` and :meth:`~Shelf.close`; this can make it handier to mutate mutable entries in the persistent dictionary, but, if many entries are accessed, it can consume vast amounts of memory for the cache, and it can make the close operation very slow since all accessed entries are written back (there is no way to determine which accessed entries are mutable, nor which ones were actually mutated)." +msgstr "" + +msgid ":const:`pickle.DEFAULT_PROTOCOL` is now used as the default pickle protocol." msgstr "" -#: ../../library/shelve.rst:48 msgid "Accepts :term:`path-like object` for filename." msgstr "" -#: ../../library/shelve.rst:53 -msgid "" -"Do not rely on the shelf being closed automatically; always " -"call :meth:`~Shelf.close` explicitly when you don't need it any more, or " -"use :func:`shelve.open` as a context manager::" +msgid "Do not rely on the shelf being closed automatically; always call :meth:`~Shelf.close` explicitly when you don't need it any more, or use :func:`shelve.open` as a context manager::" msgstr "" -#: ../../library/shelve.rst:57 msgid "" "with shelve.open('spam') as db:\n" " db['eggs'] = 'eggs'" msgstr "" -#: ../../library/shelve.rst:64 -msgid "" -"Because the :mod:`!shelve` module is backed by :mod:`pickle`, it is insecure " -"to load a shelf from an untrusted source. Like with pickle, loading a shelf " -"can execute arbitrary code." +msgid "Because the :mod:`!shelve` module is backed by :mod:`pickle`, it is insecure to load a shelf from an untrusted source. Like with pickle, loading a shelf can execute arbitrary code." msgstr "" -#: ../../library/shelve.rst:68 -msgid "" -"Shelf objects support most of the methods and operations supported by " -"dictionaries (except copying, constructors and operators ``|`` and ``|=``). " -"This eases the transition from dictionary based scripts to those requiring " -"persistent storage." +msgid "Shelf objects support most of the methods and operations supported by dictionaries (except copying, constructors and operators ``|`` and ``|=``). This eases the transition from dictionary based scripts to those requiring persistent storage." msgstr "" -#: ../../library/shelve.rst:72 msgid "Two additional methods are supported:" msgstr "" -#: ../../library/shelve.rst:76 -msgid "" -"Write back all entries in the cache if the shelf was opened with *writeback* " -"set to :const:`True`. Also empty the cache and synchronize the persistent " -"dictionary on disk, if feasible. This is called automatically when the " -"shelf is closed with :meth:`close`." +msgid "Write back all entries in the cache if the shelf was opened with *writeback* set to :const:`True`. Also empty the cache and synchronize the persistent dictionary on disk, if feasible. This is called automatically when the shelf is closed with :meth:`close`." msgstr "" -#: ../../library/shelve.rst:83 -msgid "" -"Synchronize and close the persistent *dict* object. Operations on a closed " -"shelf will fail with a :exc:`ValueError`." +msgid "Synchronize and close the persistent *dict* object. Operations on a closed shelf will fail with a :exc:`ValueError`." msgstr "" -#: ../../library/shelve.rst:89 -msgid "" -"`Persistent dictionary recipe `_ with widely supported " -"storage formats and having the speed of native dictionaries." +msgid "`Persistent dictionary recipe `_ with widely supported storage formats and having the speed of native dictionaries." msgstr "" -#: ../../library/shelve.rst:95 msgid "Restrictions" msgstr "" -#: ../../library/shelve.rst:101 -msgid "" -"The choice of which database package will be used (such as :mod:`dbm.ndbm` " -"or :mod:`dbm.gnu`) depends on which interface is available. Therefore it is " -"not safe to open the database directly using :mod:`dbm`. The database is " -"also (unfortunately) subject to the limitations of :mod:`dbm`, if it is used " -"--- this means that (the pickled representation of) the objects stored in " -"the database should be fairly small, and in rare cases key collisions may " -"cause the database to refuse updates." +msgid "The choice of which database package will be used (such as :mod:`dbm.ndbm` or :mod:`dbm.gnu`) depends on which interface is available. Therefore it is not safe to open the database directly using :mod:`dbm`. The database is also (unfortunately) subject to the limitations of :mod:`dbm`, if it is used --- this means that (the pickled representation of) the objects stored in the database should be fairly small, and in rare cases key collisions may cause the database to refuse updates." msgstr "" -#: ../../library/shelve.rst:109 -msgid "" -"The :mod:`!shelve` module does not support *concurrent* read/write access to " -"shelved objects. (Multiple simultaneous read accesses are safe.) When a " -"program has a shelf open for writing, no other program should have it open " -"for reading or writing. Unix file locking can be used to solve this, but " -"this differs across Unix versions and requires knowledge about the database " -"implementation used." +msgid "The :mod:`!shelve` module does not support *concurrent* read/write access to shelved objects. (Multiple simultaneous read accesses are safe.) When a program has a shelf open for writing, no other program should have it open for reading or writing. Unix file locking can be used to solve this, but this differs across Unix versions and requires knowledge about the database implementation used." msgstr "" -#: ../../library/shelve.rst:116 -msgid "" -"On macOS :mod:`dbm.ndbm` can silently corrupt the database file on updates, " -"which can cause hard crashes when trying to read from the database." +msgid "On macOS :mod:`dbm.ndbm` can silently corrupt the database file on updates, which can cause hard crashes when trying to read from the database." msgstr "" -#: ../../library/shelve.rst:122 -msgid "" -"A subclass of :class:`collections.abc.MutableMapping` which stores pickled " -"values in the *dict* object." +msgid "A subclass of :class:`collections.abc.MutableMapping` which stores pickled values in the *dict* object." msgstr "" -#: ../../library/shelve.rst:125 -msgid "" -"By default, pickles created with :const:`pickle.DEFAULT_PROTOCOL` are used " -"to serialize values. The version of the pickle protocol can be specified " -"with the *protocol* parameter. See the :mod:`pickle` documentation for a " -"discussion of the pickle protocols." +msgid "By default, pickles created with :const:`pickle.DEFAULT_PROTOCOL` are used to serialize values. The version of the pickle protocol can be specified with the *protocol* parameter. See the :mod:`pickle` documentation for a discussion of the pickle protocols." msgstr "" -#: ../../library/shelve.rst:130 -msgid "" -"If the *writeback* parameter is ``True``, the object will hold a cache of " -"all entries accessed and write them back to the *dict* at sync and close " -"times. This allows natural operations on mutable entries, but can consume " -"much more memory and make sync and close take a long time." +msgid "If the *writeback* parameter is ``True``, the object will hold a cache of all entries accessed and write them back to the *dict* at sync and close times. This allows natural operations on mutable entries, but can consume much more memory and make sync and close take a long time." msgstr "" -#: ../../library/shelve.rst:135 -msgid "" -"The *keyencoding* parameter is the encoding used to encode keys before they " -"are used with the underlying dict." +msgid "The *keyencoding* parameter is the encoding used to encode keys before they are used with the underlying dict." msgstr "" -#: ../../library/shelve.rst:138 -msgid "" -"A :class:`Shelf` object can also be used as a context manager, in which case " -"it will be automatically closed when the :keyword:`with` block ends." +msgid "A :class:`Shelf` object can also be used as a context manager, in which case it will be automatically closed when the :keyword:`with` block ends." msgstr "" -#: ../../library/shelve.rst:141 -msgid "" -"Added the *keyencoding* parameter; previously, keys were always encoded in " -"UTF-8." +msgid "Added the *keyencoding* parameter; previously, keys were always encoded in UTF-8." msgstr "" -#: ../../library/shelve.rst:145 msgid "Added context manager support." msgstr "" -#: ../../library/shelve.rst:155 -msgid "" -"A subclass of :class:`Shelf` which exposes :meth:`!first`, :meth:`!" -"next`, :meth:`!previous`, :meth:`!last` and :meth:`!set_location` methods. " -"These are available in the third-party :mod:`!bsddb` module from `pybsddb " -"`_ but not in other database " -"modules. The *dict* object passed to the constructor must support those " -"methods. This is generally accomplished by calling one of :func:`!" -"bsddb.hashopen`, :func:`!bsddb.btopen` or :func:`!bsddb.rnopen`. The " -"optional *protocol*, *writeback*, and *keyencoding* parameters have the same " -"interpretation as for the :class:`Shelf` class." -msgstr "" - -#: ../../library/shelve.rst:169 -msgid "" -"A subclass of :class:`Shelf` which accepts a *filename* instead of a dict-" -"like object. The underlying file will be opened using :func:`dbm.open`. By " -"default, the file will be created and opened for both read and write. The " -"optional *flag* parameter has the same interpretation as for " -"the :func:`.open` function. The optional *protocol* and *writeback* " -"parameters have the same interpretation as for the :class:`Shelf` class." +msgid "A subclass of :class:`Shelf` which exposes :meth:`!first`, :meth:`!next`, :meth:`!previous`, :meth:`!last` and :meth:`!set_location` methods. These are available in the third-party :mod:`!bsddb` module from `pybsddb `_ but not in other database modules. The *dict* object passed to the constructor must support those methods. This is generally accomplished by calling one of :func:`!bsddb.hashopen`, :func:`!bsddb.btopen` or :func:`!bsddb.rnopen`. The optional *protocol*, *writeback*, and *keyencoding* parameters have the same interpretation as for the :class:`Shelf` class." +msgstr "" + +msgid "A subclass of :class:`Shelf` which accepts a *filename* instead of a dict-like object. The underlying file will be opened using :func:`dbm.open`. By default, the file will be created and opened for both read and write. The optional *flag* parameter has the same interpretation as for the :func:`.open` function. The optional *protocol* and *writeback* parameters have the same interpretation as for the :class:`Shelf` class." msgstr "" -#: ../../library/shelve.rst:180 msgid "Example" msgstr "" -#: ../../library/shelve.rst:182 -msgid "" -"To summarize the interface (``key`` is a string, ``data`` is an arbitrary " -"object)::" +msgid "To summarize the interface (``key`` is a string, ``data`` is an arbitrary object)::" msgstr "" -#: ../../library/shelve.rst:185 msgid "" "import shelve\n" "\n" @@ -277,34 +151,26 @@ msgid "" "d.close() # close it" msgstr "" -#: ../../library/shelve.rst:218 msgid "Module :mod:`dbm`" msgstr "" -#: ../../library/shelve.rst:219 msgid "Generic interface to ``dbm``-style databases." msgstr "" -#: ../../library/shelve.rst:221 msgid "Module :mod:`pickle`" msgstr "" -#: ../../library/shelve.rst:222 msgid "Object serialization used by :mod:`!shelve`." msgstr "" -#: ../../library/shelve.rst:9 ../../library/shelve.rst:97 msgid "module" msgstr "" -#: ../../library/shelve.rst:9 msgid "pickle" msgstr "" -#: ../../library/shelve.rst:97 msgid "dbm.ndbm" msgstr "" -#: ../../library/shelve.rst:97 msgid "dbm.gnu" msgstr "" diff --git a/library/shlex.po b/library/shlex.po index b8c41c56..91211439 100644 --- a/library/shlex.po +++ b/library/shlex.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:13+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,470 +21,213 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/shlex.rst:2 msgid ":mod:`!shlex` --- Simple lexical analysis" msgstr "" -#: ../../library/shlex.rst:12 msgid "**Source code:** :source:`Lib/shlex.py`" msgstr "" -#: ../../library/shlex.rst:16 -msgid "" -"The :class:`~shlex.shlex` class makes it easy to write lexical analyzers for " -"simple syntaxes resembling that of the Unix shell. This will often be " -"useful for writing minilanguages, (for example, in run control files for " -"Python applications) or for parsing quoted strings." +msgid "The :class:`~shlex.shlex` class makes it easy to write lexical analyzers for simple syntaxes resembling that of the Unix shell. This will often be useful for writing minilanguages, (for example, in run control files for Python applications) or for parsing quoted strings." msgstr "" -#: ../../library/shlex.rst:21 msgid "The :mod:`!shlex` module defines the following functions:" msgstr "" -#: ../../library/shlex.rst:26 -msgid "" -"Split the string *s* using shell-like syntax. If *comments* " -"is :const:`False` (the default), the parsing of comments in the given string " -"will be disabled (setting the :attr:`~shlex.commenters` attribute of " -"the :class:`~shlex.shlex` instance to the empty string). This function " -"operates in POSIX mode by default, but uses non-POSIX mode if the *posix* " -"argument is false." +msgid "Split the string *s* using shell-like syntax. If *comments* is :const:`False` (the default), the parsing of comments in the given string will be disabled (setting the :attr:`~shlex.commenters` attribute of the :class:`~shlex.shlex` instance to the empty string). This function operates in POSIX mode by default, but uses non-POSIX mode if the *posix* argument is false." msgstr "" -#: ../../library/shlex.rst:33 -msgid "" -"Passing ``None`` for *s* argument now raises an exception, rather than " -"reading :data:`sys.stdin`." +msgid "Passing ``None`` for *s* argument now raises an exception, rather than reading :data:`sys.stdin`." msgstr "" -#: ../../library/shlex.rst:39 -msgid "" -"Concatenate the tokens of the list *split_command* and return a string. This " -"function is the inverse of :func:`split`." +msgid "Concatenate the tokens of the list *split_command* and return a string. This function is the inverse of :func:`split`." msgstr "" -#: ../../library/shlex.rst:46 -msgid "" -"The returned value is shell-escaped to protect against injection " -"vulnerabilities (see :func:`quote`)." +msgid "The returned value is shell-escaped to protect against injection vulnerabilities (see :func:`quote`)." msgstr "" -#: ../../library/shlex.rst:54 -msgid "" -"Return a shell-escaped version of the string *s*. The returned value is a " -"string that can safely be used as one token in a shell command line, for " -"cases where you cannot use a list." +msgid "Return a shell-escaped version of the string *s*. The returned value is a string that can safely be used as one token in a shell command line, for cases where you cannot use a list." msgstr "" -#: ../../library/shlex.rst:62 msgid "The ``shlex`` module is **only designed for Unix shells**." msgstr "" -#: ../../library/shlex.rst:64 -msgid "" -"The :func:`quote` function is not guaranteed to be correct on non-POSIX " -"compliant shells or shells from other operating systems such as Windows. " -"Executing commands quoted by this module on such shells can open up the " -"possibility of a command injection vulnerability." +msgid "The :func:`quote` function is not guaranteed to be correct on non-POSIX compliant shells or shells from other operating systems such as Windows. Executing commands quoted by this module on such shells can open up the possibility of a command injection vulnerability." msgstr "" -#: ../../library/shlex.rst:69 -msgid "" -"Consider using functions that pass command arguments with lists such " -"as :func:`subprocess.run` with ``shell=False``." +msgid "Consider using functions that pass command arguments with lists such as :func:`subprocess.run` with ``shell=False``." msgstr "" -#: ../../library/shlex.rst:72 msgid "This idiom would be unsafe:" msgstr "" -#: ../../library/shlex.rst:79 msgid ":func:`quote` lets you plug the security hole:" msgstr "" -#: ../../library/shlex.rst:89 msgid "The quoting is compatible with UNIX shells and with :func:`split`:" msgstr "" -#: ../../library/shlex.rst:101 msgid "The :mod:`!shlex` module defines the following class:" msgstr "" -#: ../../library/shlex.rst:106 -msgid "" -"A :class:`~shlex.shlex` instance or subclass instance is a lexical analyzer " -"object. The initialization argument, if present, specifies where to read " -"characters from. It must be a file-/stream-like object " -"with :meth:`~io.TextIOBase.read` and :meth:`~io.TextIOBase.readline` " -"methods, or a string. If no argument is given, input will be taken from " -"``sys.stdin``. The second optional argument is a filename string, which sets " -"the initial value of the :attr:`~shlex.infile` attribute. If the *instream* " -"argument is omitted or equal to ``sys.stdin``, this second argument defaults " -"to \"stdin\". The *posix* argument defines the operational mode: when " -"*posix* is not true (default), the :class:`~shlex.shlex` instance will " -"operate in compatibility mode. When operating in POSIX " -"mode, :class:`~shlex.shlex` will try to be as close as possible to the POSIX " -"shell parsing rules. The *punctuation_chars* argument provides a way to " -"make the behaviour even closer to how real shells parse. This can take a " -"number of values: the default value, ``False``, preserves the behaviour seen " -"under Python 3.5 and earlier. If set to ``True``, then parsing of the " -"characters ``();<>|&`` is changed: any run of these characters (considered " -"punctuation characters) is returned as a single token. If set to a non-" -"empty string of characters, those characters will be used as the punctuation " -"characters. Any characters in the :attr:`wordchars` attribute that appear " -"in *punctuation_chars* will be removed from :attr:`wordchars`. " -"See :ref:`improved-shell-compatibility` for more information. " -"*punctuation_chars* can be set only upon :class:`~shlex.shlex` instance " -"creation and can't be modified later." -msgstr "" - -#: ../../library/shlex.rst:131 +msgid "A :class:`~shlex.shlex` instance or subclass instance is a lexical analyzer object. The initialization argument, if present, specifies where to read characters from. It must be a file-/stream-like object with :meth:`~io.TextIOBase.read` and :meth:`~io.TextIOBase.readline` methods, or a string. If no argument is given, input will be taken from ``sys.stdin``. The second optional argument is a filename string, which sets the initial value of the :attr:`~shlex.infile` attribute. If the *instream* argument is omitted or equal to ``sys.stdin``, this second argument defaults to \"stdin\". The *posix* argument defines the operational mode: when *posix* is not true (default), the :class:`~shlex.shlex` instance will operate in compatibility mode. When operating in POSIX mode, :class:`~shlex.shlex` will try to be as close as possible to the POSIX shell parsing rules. The *punctuation_chars* argument provides a way to make the behaviour even closer to how real shells parse. This can take a number of values: the default value, ``False``, preserves the behaviour seen under Python 3.5 and earlier. If set to ``True``, then parsing of the characters ``();<>|&`` is changed: any run of these characters (considered punctuation characters) is returned as a single token. If set to a non-empty string of characters, those characters will be used as the punctuation characters. Any characters in the :attr:`wordchars` attribute that appear in *punctuation_chars* will be removed from :attr:`wordchars`. See :ref:`improved-shell-compatibility` for more information. *punctuation_chars* can be set only upon :class:`~shlex.shlex` instance creation and can't be modified later." +msgstr "" + msgid "The *punctuation_chars* parameter was added." msgstr "" -#: ../../library/shlex.rst:136 msgid "Module :mod:`configparser`" msgstr "" -#: ../../library/shlex.rst:137 -msgid "" -"Parser for configuration files similar to the Windows :file:`.ini` files." +msgid "Parser for configuration files similar to the Windows :file:`.ini` files." msgstr "" -#: ../../library/shlex.rst:143 msgid "shlex Objects" msgstr "" -#: ../../library/shlex.rst:145 msgid "A :class:`~shlex.shlex` instance has the following methods:" msgstr "" -#: ../../library/shlex.rst:150 -msgid "" -"Return a token. If tokens have been stacked using :meth:`push_token`, pop a " -"token off the stack. Otherwise, read one from the input stream. If reading " -"encounters an immediate end-of-file, :attr:`eof` is returned (the empty " -"string (``''``) in non-POSIX mode, and ``None`` in POSIX mode)." +msgid "Return a token. If tokens have been stacked using :meth:`push_token`, pop a token off the stack. Otherwise, read one from the input stream. If reading encounters an immediate end-of-file, :attr:`eof` is returned (the empty string (``''``) in non-POSIX mode, and ``None`` in POSIX mode)." msgstr "" -#: ../../library/shlex.rst:158 msgid "Push the argument onto the token stack." msgstr "" -#: ../../library/shlex.rst:163 -msgid "" -"Read a raw token. Ignore the pushback stack, and do not interpret source " -"requests. (This is not ordinarily a useful entry point, and is documented " -"here only for the sake of completeness.)" +msgid "Read a raw token. Ignore the pushback stack, and do not interpret source requests. (This is not ordinarily a useful entry point, and is documented here only for the sake of completeness.)" msgstr "" -#: ../../library/shlex.rst:170 -msgid "" -"When :class:`~shlex.shlex` detects a source request (see :attr:`source` " -"below) this method is given the following token as argument, and expected to " -"return a tuple consisting of a filename and an open file-like object." +msgid "When :class:`~shlex.shlex` detects a source request (see :attr:`source` below) this method is given the following token as argument, and expected to return a tuple consisting of a filename and an open file-like object." msgstr "" -#: ../../library/shlex.rst:174 -msgid "" -"Normally, this method first strips any quotes off the argument. If the " -"result is an absolute pathname, or there was no previous source request in " -"effect, or the previous source was a stream (such as ``sys.stdin``), the " -"result is left alone. Otherwise, if the result is a relative pathname, the " -"directory part of the name of the file immediately before it on the source " -"inclusion stack is prepended (this behavior is like the way the C " -"preprocessor handles ``#include \"file.h\"``)." +msgid "Normally, this method first strips any quotes off the argument. If the result is an absolute pathname, or there was no previous source request in effect, or the previous source was a stream (such as ``sys.stdin``), the result is left alone. Otherwise, if the result is a relative pathname, the directory part of the name of the file immediately before it on the source inclusion stack is prepended (this behavior is like the way the C preprocessor handles ``#include \"file.h\"``)." msgstr "" -#: ../../library/shlex.rst:182 -msgid "" -"The result of the manipulations is treated as a filename, and returned as " -"the first component of the tuple, with :func:`open` called on it to yield " -"the second component. (Note: this is the reverse of the order of arguments " -"in instance initialization!)" +msgid "The result of the manipulations is treated as a filename, and returned as the first component of the tuple, with :func:`open` called on it to yield the second component. (Note: this is the reverse of the order of arguments in instance initialization!)" msgstr "" -#: ../../library/shlex.rst:187 -msgid "" -"This hook is exposed so that you can use it to implement directory search " -"paths, addition of file extensions, and other namespace hacks. There is no " -"corresponding 'close' hook, but a shlex instance will call " -"the :meth:`~io.IOBase.close` method of the sourced input stream when it " -"returns EOF." +msgid "This hook is exposed so that you can use it to implement directory search paths, addition of file extensions, and other namespace hacks. There is no corresponding 'close' hook, but a shlex instance will call the :meth:`~io.IOBase.close` method of the sourced input stream when it returns EOF." msgstr "" -#: ../../library/shlex.rst:193 -msgid "" -"For more explicit control of source stacking, use the :meth:`push_source` " -"and :meth:`pop_source` methods." +msgid "For more explicit control of source stacking, use the :meth:`push_source` and :meth:`pop_source` methods." msgstr "" -#: ../../library/shlex.rst:199 -msgid "" -"Push an input source stream onto the input stack. If the filename argument " -"is specified it will later be available for use in error messages. This is " -"the same method used internally by the :meth:`sourcehook` method." +msgid "Push an input source stream onto the input stack. If the filename argument is specified it will later be available for use in error messages. This is the same method used internally by the :meth:`sourcehook` method." msgstr "" -#: ../../library/shlex.rst:206 -msgid "" -"Pop the last-pushed input source from the input stack. This is the same " -"method used internally when the lexer reaches EOF on a stacked input stream." +msgid "Pop the last-pushed input source from the input stack. This is the same method used internally when the lexer reaches EOF on a stacked input stream." msgstr "" -#: ../../library/shlex.rst:212 -msgid "" -"This method generates an error message leader in the format of a Unix C " -"compiler error label; the format is ``'\"%s\", line %d: '``, where the " -"``%s`` is replaced with the name of the current source file and the ``%d`` " -"with the current input line number (the optional arguments can be used to " -"override these)." +msgid "This method generates an error message leader in the format of a Unix C compiler error label; the format is ``'\"%s\", line %d: '``, where the ``%s`` is replaced with the name of the current source file and the ``%d`` with the current input line number (the optional arguments can be used to override these)." msgstr "" -#: ../../library/shlex.rst:217 -msgid "" -"This convenience is provided to encourage :mod:`!shlex` users to generate " -"error messages in the standard, parseable format understood by Emacs and " -"other Unix tools." +msgid "This convenience is provided to encourage :mod:`!shlex` users to generate error messages in the standard, parseable format understood by Emacs and other Unix tools." msgstr "" -#: ../../library/shlex.rst:221 -msgid "" -"Instances of :class:`~shlex.shlex` subclasses have some public instance " -"variables which either control lexical analysis or can be used for debugging:" +msgid "Instances of :class:`~shlex.shlex` subclasses have some public instance variables which either control lexical analysis or can be used for debugging:" msgstr "" -#: ../../library/shlex.rst:227 -msgid "" -"The string of characters that are recognized as comment beginners. All " -"characters from the comment beginner to end of line are ignored. Includes " -"just ``'#'`` by default." +msgid "The string of characters that are recognized as comment beginners. All characters from the comment beginner to end of line are ignored. Includes just ``'#'`` by default." msgstr "" -#: ../../library/shlex.rst:234 -msgid "" -"The string of characters that will accumulate into multi-character tokens. " -"By default, includes all ASCII alphanumerics and underscore. In POSIX mode, " -"the accented characters in the Latin-1 set are also included. " -"If :attr:`punctuation_chars` is not empty, the characters ``~-./*?=``, which " -"can appear in filename specifications and command line parameters, will also " -"be included in this attribute, and any characters which appear in " -"``punctuation_chars`` will be removed from ``wordchars`` if they are present " -"there. If :attr:`whitespace_split` is set to ``True``, this will have no " -"effect." -msgstr "" - -#: ../../library/shlex.rst:247 -msgid "" -"Characters that will be considered whitespace and skipped. Whitespace " -"bounds tokens. By default, includes space, tab, linefeed and carriage-" -"return." +msgid "The string of characters that will accumulate into multi-character tokens. By default, includes all ASCII alphanumerics and underscore. In POSIX mode, the accented characters in the Latin-1 set are also included. If :attr:`punctuation_chars` is not empty, the characters ``~-./*?=``, which can appear in filename specifications and command line parameters, will also be included in this attribute, and any characters which appear in ``punctuation_chars`` will be removed from ``wordchars`` if they are present there. If :attr:`whitespace_split` is set to ``True``, this will have no effect." msgstr "" -#: ../../library/shlex.rst:253 -msgid "" -"Characters that will be considered as escape. This will be only used in " -"POSIX mode, and includes just ``'\\'`` by default." +msgid "Characters that will be considered whitespace and skipped. Whitespace bounds tokens. By default, includes space, tab, linefeed and carriage-return." msgstr "" -#: ../../library/shlex.rst:259 -msgid "" -"Characters that will be considered string quotes. The token accumulates " -"until the same quote is encountered again (thus, different quote types " -"protect each other as in the shell.) By default, includes ASCII single and " -"double quotes." +msgid "Characters that will be considered as escape. This will be only used in POSIX mode, and includes just ``'\\'`` by default." msgstr "" -#: ../../library/shlex.rst:266 -msgid "" -"Characters in :attr:`quotes` that will interpret escape characters defined " -"in :attr:`escape`. This is only used in POSIX mode, and includes just " -"``'\"'`` by default." +msgid "Characters that will be considered string quotes. The token accumulates until the same quote is encountered again (thus, different quote types protect each other as in the shell.) By default, includes ASCII single and double quotes." msgstr "" -#: ../../library/shlex.rst:273 -msgid "" -"If ``True``, tokens will only be split in whitespaces. This is useful, for " -"example, for parsing command lines with :class:`~shlex.shlex`, getting " -"tokens in a similar way to shell arguments. When used in combination " -"with :attr:`punctuation_chars`, tokens will be split on whitespace in " -"addition to those characters." +msgid "Characters in :attr:`quotes` that will interpret escape characters defined in :attr:`escape`. This is only used in POSIX mode, and includes just ``'\"'`` by default." msgstr "" -#: ../../library/shlex.rst:279 -msgid "" -"The :attr:`punctuation_chars` attribute was made compatible with " -"the :attr:`whitespace_split` attribute." +msgid "If ``True``, tokens will only be split in whitespaces. This is useful, for example, for parsing command lines with :class:`~shlex.shlex`, getting tokens in a similar way to shell arguments. When used in combination with :attr:`punctuation_chars`, tokens will be split on whitespace in addition to those characters." msgstr "" -#: ../../library/shlex.rst:286 -msgid "" -"The name of the current input file, as initially set at class instantiation " -"time or stacked by later source requests. It may be useful to examine this " -"when constructing error messages." +msgid "The :attr:`punctuation_chars` attribute was made compatible with the :attr:`whitespace_split` attribute." msgstr "" -#: ../../library/shlex.rst:293 -msgid "" -"The input stream from which this :class:`~shlex.shlex` instance is reading " -"characters." +msgid "The name of the current input file, as initially set at class instantiation time or stacked by later source requests. It may be useful to examine this when constructing error messages." msgstr "" -#: ../../library/shlex.rst:299 -msgid "" -"This attribute is ``None`` by default. If you assign a string to it, that " -"string will be recognized as a lexical-level inclusion request similar to " -"the ``source`` keyword in various shells. That is, the immediately " -"following token will be opened as a filename and input will be taken from " -"that stream until EOF, at which point the :meth:`~io.IOBase.close` method of " -"that stream will be called and the input source will again become the " -"original input stream. Source requests may be stacked any number of levels " -"deep." +msgid "The input stream from which this :class:`~shlex.shlex` instance is reading characters." msgstr "" -#: ../../library/shlex.rst:310 -msgid "" -"If this attribute is numeric and ``1`` or more, a :class:`~shlex.shlex` " -"instance will print verbose progress output on its behavior. If you need to " -"use this, you can read the module source code to learn the details." +msgid "This attribute is ``None`` by default. If you assign a string to it, that string will be recognized as a lexical-level inclusion request similar to the ``source`` keyword in various shells. That is, the immediately following token will be opened as a filename and input will be taken from that stream until EOF, at which point the :meth:`~io.IOBase.close` method of that stream will be called and the input source will again become the original input stream. Source requests may be stacked any number of levels deep." +msgstr "" + +msgid "If this attribute is numeric and ``1`` or more, a :class:`~shlex.shlex` instance will print verbose progress output on its behavior. If you need to use this, you can read the module source code to learn the details." msgstr "" -#: ../../library/shlex.rst:317 msgid "Source line number (count of newlines seen so far plus one)." msgstr "" -#: ../../library/shlex.rst:322 -msgid "" -"The token buffer. It may be useful to examine this when catching exceptions." +msgid "The token buffer. It may be useful to examine this when catching exceptions." msgstr "" -#: ../../library/shlex.rst:327 -msgid "" -"Token used to determine end of file. This will be set to the empty string " -"(``''``), in non-POSIX mode, and to ``None`` in POSIX mode." +msgid "Token used to determine end of file. This will be set to the empty string (``''``), in non-POSIX mode, and to ``None`` in POSIX mode." msgstr "" -#: ../../library/shlex.rst:333 -msgid "" -"A read-only property. Characters that will be considered punctuation. Runs " -"of punctuation characters will be returned as a single token. However, note " -"that no semantic validity checking will be performed: for example, '>>>' " -"could be returned as a token, even though it may not be recognised as such " -"by shells." +msgid "A read-only property. Characters that will be considered punctuation. Runs of punctuation characters will be returned as a single token. However, note that no semantic validity checking will be performed: for example, '>>>' could be returned as a token, even though it may not be recognised as such by shells." msgstr "" -#: ../../library/shlex.rst:344 msgid "Parsing Rules" msgstr "" -#: ../../library/shlex.rst:346 -msgid "" -"When operating in non-POSIX mode, :class:`~shlex.shlex` will try to obey the " -"following rules." +msgid "When operating in non-POSIX mode, :class:`~shlex.shlex` will try to obey the following rules." msgstr "" -#: ../../library/shlex.rst:349 -msgid "" -"Quote characters are not recognized within words (``Do\"Not\"Separate`` is " -"parsed as the single word ``Do\"Not\"Separate``);" +msgid "Quote characters are not recognized within words (``Do\"Not\"Separate`` is parsed as the single word ``Do\"Not\"Separate``);" msgstr "" -#: ../../library/shlex.rst:352 msgid "Escape characters are not recognized;" msgstr "" -#: ../../library/shlex.rst:354 -msgid "" -"Enclosing characters in quotes preserve the literal value of all characters " -"within the quotes;" +msgid "Enclosing characters in quotes preserve the literal value of all characters within the quotes;" msgstr "" -#: ../../library/shlex.rst:357 -msgid "" -"Closing quotes separate words (``\"Do\"Separate`` is parsed as ``\"Do\"`` " -"and ``Separate``);" +msgid "Closing quotes separate words (``\"Do\"Separate`` is parsed as ``\"Do\"`` and ``Separate``);" msgstr "" -#: ../../library/shlex.rst:360 -msgid "" -"If :attr:`~shlex.whitespace_split` is ``False``, any character not declared " -"to be a word character, whitespace, or a quote will be returned as a single-" -"character token. If it is ``True``, :class:`~shlex.shlex` will only split " -"words in whitespaces;" +msgid "If :attr:`~shlex.whitespace_split` is ``False``, any character not declared to be a word character, whitespace, or a quote will be returned as a single-character token. If it is ``True``, :class:`~shlex.shlex` will only split words in whitespaces;" msgstr "" -#: ../../library/shlex.rst:365 msgid "EOF is signaled with an empty string (``''``);" msgstr "" -#: ../../library/shlex.rst:367 msgid "It's not possible to parse empty strings, even if quoted." msgstr "" -#: ../../library/shlex.rst:369 -msgid "" -"When operating in POSIX mode, :class:`~shlex.shlex` will try to obey the " -"following parsing rules." +msgid "When operating in POSIX mode, :class:`~shlex.shlex` will try to obey the following parsing rules." msgstr "" -#: ../../library/shlex.rst:372 -msgid "" -"Quotes are stripped out, and do not separate words " -"(``\"Do\"Not\"Separate\"`` is parsed as the single word ``DoNotSeparate``);" +msgid "Quotes are stripped out, and do not separate words (``\"Do\"Not\"Separate\"`` is parsed as the single word ``DoNotSeparate``);" msgstr "" -#: ../../library/shlex.rst:375 -msgid "" -"Non-quoted escape characters (e.g. ``'\\'``) preserve the literal value of " -"the next character that follows;" +msgid "Non-quoted escape characters (e.g. ``'\\'``) preserve the literal value of the next character that follows;" msgstr "" -#: ../../library/shlex.rst:378 -msgid "" -"Enclosing characters in quotes which are not part " -"of :attr:`~shlex.escapedquotes` (e.g. ``\"'\"``) preserve the literal value " -"of all characters within the quotes;" +msgid "Enclosing characters in quotes which are not part of :attr:`~shlex.escapedquotes` (e.g. ``\"'\"``) preserve the literal value of all characters within the quotes;" msgstr "" -#: ../../library/shlex.rst:382 -msgid "" -"Enclosing characters in quotes which are part " -"of :attr:`~shlex.escapedquotes` (e.g. ``'\"'``) preserves the literal value " -"of all characters within the quotes, with the exception of the characters " -"mentioned in :attr:`~shlex.escape`. The escape characters retain their " -"special meaning only when followed by the quote in use, or the escape " -"character itself. Otherwise the escape character will be considered a normal " -"character." +msgid "Enclosing characters in quotes which are part of :attr:`~shlex.escapedquotes` (e.g. ``'\"'``) preserves the literal value of all characters within the quotes, with the exception of the characters mentioned in :attr:`~shlex.escape`. The escape characters retain their special meaning only when followed by the quote in use, or the escape character itself. Otherwise the escape character will be considered a normal character." msgstr "" -#: ../../library/shlex.rst:390 msgid "EOF is signaled with a :const:`None` value;" msgstr "" -#: ../../library/shlex.rst:392 msgid "Quoted empty strings (``''``) are allowed." msgstr "" -#: ../../library/shlex.rst:397 msgid "Improved Compatibility with Shells" msgstr "" -#: ../../library/shlex.rst:401 -msgid "" -"The :class:`shlex` class provides compatibility with the parsing performed " -"by common Unix shells like ``bash``, ``dash``, and ``sh``. To take " -"advantage of this compatibility, specify the ``punctuation_chars`` argument " -"in the constructor. This defaults to ``False``, which preserves pre-3.6 " -"behaviour. However, if it is set to ``True``, then parsing of the characters " -"``();<>|&`` is changed: any run of these characters is returned as a single " -"token. While this is short of a full parser for shells (which would be out " -"of scope for the standard library, given the multiplicity of shells out " -"there), it does allow you to perform processing of command lines more easily " -"than you could otherwise. To illustrate, you can see the difference in the " -"following snippet:" -msgstr "" - -#: ../../library/shlex.rst:412 +msgid "The :class:`shlex` class provides compatibility with the parsing performed by common Unix shells like ``bash``, ``dash``, and ``sh``. To take advantage of this compatibility, specify the ``punctuation_chars`` argument in the constructor. This defaults to ``False``, which preserves pre-3.6 behaviour. However, if it is set to ``True``, then parsing of the characters ``();<>|&`` is changed: any run of these characters is returned as a single token. While this is short of a full parser for shells (which would be out of scope for the standard library, given the multiplicity of shells out there), it does allow you to perform processing of command lines more easily than you could otherwise. To illustrate, you can see the difference in the following snippet:" +msgstr "" + msgid "" ">>> import shlex\n" ">>> text = \"a && b; c && d || e; f >'abc'; (def \\\"ghi\\\")\"\n" @@ -499,20 +242,12 @@ msgid "" "'(', 'def', 'ghi', ')']" msgstr "" -#: ../../library/shlex.rst:427 -msgid "" -"Of course, tokens will be returned which are not valid for shells, and " -"you'll need to implement your own error checks on the returned tokens." +msgid "Of course, tokens will be returned which are not valid for shells, and you'll need to implement your own error checks on the returned tokens." msgstr "" -#: ../../library/shlex.rst:430 -msgid "" -"Instead of passing ``True`` as the value for the punctuation_chars " -"parameter, you can pass a string with specific characters, which will be " -"used to determine which characters constitute punctuation. For example::" +msgid "Instead of passing ``True`` as the value for the punctuation_chars parameter, you can pass a string with specific characters, which will be used to determine which characters constitute punctuation. For example::" msgstr "" -#: ../../library/shlex.rst:434 msgid "" ">>> import shlex\n" ">>> s = shlex.shlex(\"a && b || c\", punctuation_chars=\"|\")\n" @@ -520,15 +255,9 @@ msgid "" "['a', '&', '&', 'b', '||', 'c']" msgstr "" -#: ../../library/shlex.rst:439 -msgid "" -"When ``punctuation_chars`` is specified, the :attr:`~shlex.wordchars` " -"attribute is augmented with the characters ``~-./*?=``. That is because " -"these characters can appear in file names (including wildcards) and command-" -"line arguments (e.g. ``--color=auto``). Hence::" +msgid "When ``punctuation_chars`` is specified, the :attr:`~shlex.wordchars` attribute is augmented with the characters ``~-./*?=``. That is because these characters can appear in file names (including wildcards) and command-line arguments (e.g. ``--color=auto``). Hence::" msgstr "" -#: ../../library/shlex.rst:444 msgid "" ">>> import shlex\n" ">>> s = shlex.shlex('~/a && b-c --color=auto || d *.py?',\n" @@ -537,17 +266,8 @@ msgid "" "['~/a', '&&', 'b-c', '--color=auto', '||', 'd', '*.py?']" msgstr "" -#: ../../library/shlex.rst:450 -msgid "" -"However, to match the shell as closely as possible, it is recommended to " -"always use ``posix`` and :attr:`~shlex.whitespace_split` when " -"using :attr:`~shlex.punctuation_chars`, which will " -"negate :attr:`~shlex.wordchars` entirely." +msgid "However, to match the shell as closely as possible, it is recommended to always use ``posix`` and :attr:`~shlex.whitespace_split` when using :attr:`~shlex.punctuation_chars`, which will negate :attr:`~shlex.wordchars` entirely." msgstr "" -#: ../../library/shlex.rst:455 -msgid "" -"For best effect, ``punctuation_chars`` should be set in conjunction with " -"``posix=True``. (Note that ``posix=False`` is the default " -"for :class:`~shlex.shlex`.)" +msgid "For best effect, ``punctuation_chars`` should be set in conjunction with ``posix=True``. (Note that ``posix=False`` is the default for :class:`~shlex.shlex`.)" msgstr "" diff --git a/library/shutil.po b/library/shutil.po index d892dfa9..7112314f 100644 --- a/library/shutil.po +++ b/library/shutil.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:13+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -22,742 +22,346 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/shutil.rst:2 msgid ":mod:`!shutil` --- High-level file operations" msgstr "" -#: ../../library/shutil.rst:10 msgid "**Source code:** :source:`Lib/shutil.py`" msgstr "" -#: ../../library/shutil.rst:18 -msgid "" -"The :mod:`!shutil` module offers a number of high-level operations on files " -"and collections of files. In particular, functions are provided which " -"support file copying and removal. For operations on individual files, see " -"also the :mod:`os` module." +msgid "The :mod:`!shutil` module offers a number of high-level operations on files and collections of files. In particular, functions are provided which support file copying and removal. For operations on individual files, see also the :mod:`os` module." msgstr "" -#: ../../library/shutil.rst:25 -msgid "" -"Even the higher-level file copying functions " -"(:func:`shutil.copy`, :func:`shutil.copy2`) cannot copy all file metadata." +msgid "Even the higher-level file copying functions (:func:`shutil.copy`, :func:`shutil.copy2`) cannot copy all file metadata." msgstr "" -#: ../../library/shutil.rst:28 -msgid "" -"On POSIX platforms, this means that file owner and group are lost as well as " -"ACLs. On Mac OS, the resource fork and other metadata are not used. This " -"means that resources will be lost and file type and creator codes will not " -"be correct. On Windows, file owners, ACLs and alternate data streams are not " -"copied." +msgid "On POSIX platforms, this means that file owner and group are lost as well as ACLs. On Mac OS, the resource fork and other metadata are not used. This means that resources will be lost and file type and creator codes will not be correct. On Windows, file owners, ACLs and alternate data streams are not copied." msgstr "" -#: ../../library/shutil.rst:38 msgid "Directory and files operations" msgstr "" -#: ../../library/shutil.rst:42 -msgid "" -"Copy the contents of the :term:`file-like object ` *fsrc* to " -"the file-like object *fdst*. The integer *length*, if given, is the buffer " -"size. In particular, a negative *length* value means to copy the data " -"without looping over the source data in chunks; by default the data is read " -"in chunks to avoid uncontrolled memory consumption. Note that if the current " -"file position of the *fsrc* object is not 0, only the contents from the " -"current file position to the end of the file will be copied." +msgid "Copy the contents of the :term:`file-like object ` *fsrc* to the file-like object *fdst*. The integer *length*, if given, is the buffer size. In particular, a negative *length* value means to copy the data without looping over the source data in chunks; by default the data is read in chunks to avoid uncontrolled memory consumption. Note that if the current file position of the *fsrc* object is not 0, only the contents from the current file position to the end of the file will be copied." msgstr "" -#: ../../library/shutil.rst:50 -msgid "" -":func:`copyfileobj` will *not* guarantee that the destination stream has " -"been flushed on completion of the copy. If you want to read from the " -"destination at the completion of the copy operation (for example, reading " -"the contents of a temporary file that has been copied from a HTTP stream), " -"you must ensure that you have called :func:`~io.IOBase.flush` " -"or :func:`~io.IOBase.close` on the file-like object before attempting to " -"read the destination file." +msgid ":func:`copyfileobj` will *not* guarantee that the destination stream has been flushed on completion of the copy. If you want to read from the destination at the completion of the copy operation (for example, reading the contents of a temporary file that has been copied from a HTTP stream), you must ensure that you have called :func:`~io.IOBase.flush` or :func:`~io.IOBase.close` on the file-like object before attempting to read the destination file." msgstr "" -#: ../../library/shutil.rst:60 -msgid "" -"Copy the contents (no metadata) of the file named *src* to a file named " -"*dst* and return *dst* in the most efficient way possible. *src* and *dst* " -"are :term:`path-like objects ` or path names given as " -"strings." +msgid "Copy the contents (no metadata) of the file named *src* to a file named *dst* and return *dst* in the most efficient way possible. *src* and *dst* are :term:`path-like objects ` or path names given as strings." msgstr "" -#: ../../library/shutil.rst:64 -msgid "" -"*dst* must be the complete target file name; look at :func:`~shutil.copy` " -"for a copy that accepts a target directory path. If *src* and *dst* specify " -"the same file, :exc:`SameFileError` is raised." +msgid "*dst* must be the complete target file name; look at :func:`~shutil.copy` for a copy that accepts a target directory path. If *src* and *dst* specify the same file, :exc:`SameFileError` is raised." msgstr "" -#: ../../library/shutil.rst:68 -msgid "" -"The destination location must be writable; otherwise, an :exc:`OSError` " -"exception will be raised. If *dst* already exists, it will be replaced. " -"Special files such as character or block devices and pipes cannot be copied " -"with this function." +msgid "The destination location must be writable; otherwise, an :exc:`OSError` exception will be raised. If *dst* already exists, it will be replaced. Special files such as character or block devices and pipes cannot be copied with this function." msgstr "" -#: ../../library/shutil.rst:73 -msgid "" -"If *follow_symlinks* is false and *src* is a symbolic link, a new symbolic " -"link will be created instead of copying the file *src* points to." +msgid "If *follow_symlinks* is false and *src* is a symbolic link, a new symbolic link will be created instead of copying the file *src* points to." msgstr "" -#: ../../library/shutil.rst:77 ../../library/shutil.rst:191 -#: ../../library/shutil.rst:222 -msgid "" -"Raises an :ref:`auditing event ` ``shutil.copyfile`` with " -"arguments ``src``, ``dst``." +msgid "Raises an :ref:`auditing event ` ``shutil.copyfile`` with arguments ``src``, ``dst``." msgstr "" -#: ../../library/shutil.rst:79 -msgid "" -":exc:`IOError` used to be raised instead of :exc:`OSError`. Added " -"*follow_symlinks* argument. Now returns *dst*." +msgid ":exc:`IOError` used to be raised instead of :exc:`OSError`. Added *follow_symlinks* argument. Now returns *dst*." msgstr "" -#: ../../library/shutil.rst:84 -msgid "" -"Raise :exc:`SameFileError` instead of :exc:`Error`. Since the former is a " -"subclass of the latter, this change is backward compatible." +msgid "Raise :exc:`SameFileError` instead of :exc:`Error`. Since the former is a subclass of the latter, this change is backward compatible." msgstr "" -#: ../../library/shutil.rst:88 ../../library/shutil.rst:199 -#: ../../library/shutil.rst:231 ../../library/shutil.rst:301 -#: ../../library/shutil.rst:418 -msgid "" -"Platform-specific fast-copy syscalls may be used internally in order to copy " -"the file more efficiently. See :ref:`shutil-platform-dependent-efficient-" -"copy-operations` section." +msgid "Platform-specific fast-copy syscalls may be used internally in order to copy the file more efficiently. See :ref:`shutil-platform-dependent-efficient-copy-operations` section." msgstr "" -#: ../../library/shutil.rst:95 -msgid "" -"This exception is raised when :func:`copyfile` or :func:`copytree` attempt " -"to copy a named pipe." +msgid "This exception is raised when :func:`copyfile` or :func:`copytree` attempt to copy a named pipe." msgstr "" -#: ../../library/shutil.rst:102 -msgid "" -"This exception is raised if source and destination in :func:`copyfile` are " -"the same file." +msgid "This exception is raised if source and destination in :func:`copyfile` are the same file." msgstr "" -#: ../../library/shutil.rst:110 -msgid "" -"Copy the permission bits from *src* to *dst*. The file contents, owner, and " -"group are unaffected. *src* and *dst* are :term:`path-like objects ` or path names given as strings. If *follow_symlinks* is false, " -"and both *src* and *dst* are symbolic links, :func:`copymode` will attempt " -"to modify the mode of *dst* itself (rather than the file it points to). " -"This functionality is not available on every platform; please " -"see :func:`copystat` for more information. If :func:`copymode` cannot " -"modify symbolic links on the local platform, and it is asked to do so, it " -"will do nothing and return." -msgstr "" - -#: ../../library/shutil.rst:120 ../../library/shutil.rst:193 -msgid "" -"Raises an :ref:`auditing event ` ``shutil.copymode`` with " -"arguments ``src``, ``dst``." +msgid "Copy the permission bits from *src* to *dst*. The file contents, owner, and group are unaffected. *src* and *dst* are :term:`path-like objects ` or path names given as strings. If *follow_symlinks* is false, and both *src* and *dst* are symbolic links, :func:`copymode` will attempt to modify the mode of *dst* itself (rather than the file it points to). This functionality is not available on every platform; please see :func:`copystat` for more information. If :func:`copymode` cannot modify symbolic links on the local platform, and it is asked to do so, it will do nothing and return." +msgstr "" + +msgid "Raises an :ref:`auditing event ` ``shutil.copymode`` with arguments ``src``, ``dst``." msgstr "" -#: ../../library/shutil.rst:122 msgid "Added *follow_symlinks* argument." msgstr "" -#: ../../library/shutil.rst:127 -msgid "" -"Copy the permission bits, last access time, last modification time, and " -"flags from *src* to *dst*. On Linux, :func:`copystat` also copies the " -"\"extended attributes\" where possible. The file contents, owner, and group " -"are unaffected. *src* and *dst* are :term:`path-like objects ` or path names given as strings." +msgid "Copy the permission bits, last access time, last modification time, and flags from *src* to *dst*. On Linux, :func:`copystat` also copies the \"extended attributes\" where possible. The file contents, owner, and group are unaffected. *src* and *dst* are :term:`path-like objects ` or path names given as strings." msgstr "" -#: ../../library/shutil.rst:133 -msgid "" -"If *follow_symlinks* is false, and *src* and *dst* both refer to symbolic " -"links, :func:`copystat` will operate on the symbolic links themselves rather " -"than the files the symbolic links refer to—reading the information from the " -"*src* symbolic link, and writing the information to the *dst* symbolic link." +msgid "If *follow_symlinks* is false, and *src* and *dst* both refer to symbolic links, :func:`copystat` will operate on the symbolic links themselves rather than the files the symbolic links refer to—reading the information from the *src* symbolic link, and writing the information to the *dst* symbolic link." msgstr "" -#: ../../library/shutil.rst:142 -msgid "" -"Not all platforms provide the ability to examine and modify symbolic links. " -"Python itself can tell you what functionality is locally available." +msgid "Not all platforms provide the ability to examine and modify symbolic links. Python itself can tell you what functionality is locally available." msgstr "" -#: ../../library/shutil.rst:146 -msgid "" -"If ``os.chmod in os.supports_follow_symlinks`` is ``True``, :func:`copystat` " -"can modify the permission bits of a symbolic link." +msgid "If ``os.chmod in os.supports_follow_symlinks`` is ``True``, :func:`copystat` can modify the permission bits of a symbolic link." msgstr "" -#: ../../library/shutil.rst:150 -msgid "" -"If ``os.utime in os.supports_follow_symlinks`` is ``True``, :func:`copystat` " -"can modify the last access and modification times of a symbolic link." +msgid "If ``os.utime in os.supports_follow_symlinks`` is ``True``, :func:`copystat` can modify the last access and modification times of a symbolic link." msgstr "" -#: ../../library/shutil.rst:154 -msgid "" -"If ``os.chflags in os.supports_follow_symlinks`` is " -"``True``, :func:`copystat` can modify the flags of a symbolic link. " -"(``os.chflags`` is not available on all platforms.)" +msgid "If ``os.chflags in os.supports_follow_symlinks`` is ``True``, :func:`copystat` can modify the flags of a symbolic link. (``os.chflags`` is not available on all platforms.)" msgstr "" -#: ../../library/shutil.rst:159 -msgid "" -"On platforms where some or all of this functionality is unavailable, when " -"asked to modify a symbolic link, :func:`copystat` will copy everything it " -"can. :func:`copystat` never returns failure." +msgid "On platforms where some or all of this functionality is unavailable, when asked to modify a symbolic link, :func:`copystat` will copy everything it can. :func:`copystat` never returns failure." msgstr "" -#: ../../library/shutil.rst:164 msgid "Please see :data:`os.supports_follow_symlinks` for more information." msgstr "" -#: ../../library/shutil.rst:167 ../../library/shutil.rst:224 -msgid "" -"Raises an :ref:`auditing event ` ``shutil.copystat`` with " -"arguments ``src``, ``dst``." +msgid "Raises an :ref:`auditing event ` ``shutil.copystat`` with arguments ``src``, ``dst``." msgstr "" -#: ../../library/shutil.rst:169 -msgid "" -"Added *follow_symlinks* argument and support for Linux extended attributes." +msgid "Added *follow_symlinks* argument and support for Linux extended attributes." msgstr "" -#: ../../library/shutil.rst:174 -msgid "" -"Copies the file *src* to the file or directory *dst*. *src* and *dst* " -"should be :term:`path-like objects ` or strings. If *dst* " -"specifies a directory, the file will be copied into *dst* using the base " -"filename from *src*. If *dst* specifies a file that already exists, it will " -"be replaced. Returns the path to the newly created file." +msgid "Copies the file *src* to the file or directory *dst*. *src* and *dst* should be :term:`path-like objects ` or strings. If *dst* specifies a directory, the file will be copied into *dst* using the base filename from *src*. If *dst* specifies a file that already exists, it will be replaced. Returns the path to the newly created file." msgstr "" -#: ../../library/shutil.rst:180 -msgid "" -"If *follow_symlinks* is false, and *src* is a symbolic link, *dst* will be " -"created as a symbolic link. If *follow_symlinks* is true and *src* is a " -"symbolic link, *dst* will be a copy of the file *src* refers to." +msgid "If *follow_symlinks* is false, and *src* is a symbolic link, *dst* will be created as a symbolic link. If *follow_symlinks* is true and *src* is a symbolic link, *dst* will be a copy of the file *src* refers to." msgstr "" -#: ../../library/shutil.rst:185 -msgid "" -":func:`~shutil.copy` copies the file data and the file's permission mode " -"(see :func:`os.chmod`). Other metadata, like the file's creation and " -"modification times, is not preserved. To preserve all file metadata from the " -"original, use :func:`~shutil.copy2` instead." +msgid ":func:`~shutil.copy` copies the file data and the file's permission mode (see :func:`os.chmod`). Other metadata, like the file's creation and modification times, is not preserved. To preserve all file metadata from the original, use :func:`~shutil.copy2` instead." msgstr "" -#: ../../library/shutil.rst:195 -msgid "" -"Added *follow_symlinks* argument. Now returns path to the newly created file." +msgid "Added *follow_symlinks* argument. Now returns path to the newly created file." msgstr "" -#: ../../library/shutil.rst:206 -msgid "" -"Identical to :func:`~shutil.copy` except that :func:`copy2` also attempts to " -"preserve file metadata." +msgid "Identical to :func:`~shutil.copy` except that :func:`copy2` also attempts to preserve file metadata." msgstr "" -#: ../../library/shutil.rst:209 -msgid "" -"When *follow_symlinks* is false, and *src* is a symbolic link, :func:`copy2` " -"attempts to copy all metadata from the *src* symbolic link to the newly " -"created *dst* symbolic link. However, this functionality is not available on " -"all platforms. On platforms where some or all of this functionality is " -"unavailable, :func:`copy2` will preserve all the metadata it " -"can; :func:`copy2` never raises an exception because it cannot preserve file " -"metadata." +msgid "When *follow_symlinks* is false, and *src* is a symbolic link, :func:`copy2` attempts to copy all metadata from the *src* symbolic link to the newly created *dst* symbolic link. However, this functionality is not available on all platforms. On platforms where some or all of this functionality is unavailable, :func:`copy2` will preserve all the metadata it can; :func:`copy2` never raises an exception because it cannot preserve file metadata." msgstr "" -#: ../../library/shutil.rst:218 -msgid "" -":func:`copy2` uses :func:`copystat` to copy the file metadata. Please " -"see :func:`copystat` for more information about platform support for " -"modifying symbolic link metadata." +msgid ":func:`copy2` uses :func:`copystat` to copy the file metadata. Please see :func:`copystat` for more information about platform support for modifying symbolic link metadata." msgstr "" -#: ../../library/shutil.rst:226 -msgid "" -"Added *follow_symlinks* argument, try to copy extended file system " -"attributes too (currently Linux only). Now returns path to the newly created " -"file." +msgid "Added *follow_symlinks* argument, try to copy extended file system attributes too (currently Linux only). Now returns path to the newly created file." msgstr "" -#: ../../library/shutil.rst:238 -msgid "" -"This factory function creates a function that can be used as a callable " -"for :func:`copytree`\\'s *ignore* argument, ignoring files and directories " -"that match one of the glob-style *patterns* provided. See the example below." +msgid "This factory function creates a function that can be used as a callable for :func:`copytree`\\'s *ignore* argument, ignoring files and directories that match one of the glob-style *patterns* provided. See the example below." msgstr "" -#: ../../library/shutil.rst:247 -msgid "" -"Recursively copy an entire directory tree rooted at *src* to a directory " -"named *dst* and return the destination directory. All intermediate " -"directories needed to contain *dst* will also be created by default." +msgid "Recursively copy an entire directory tree rooted at *src* to a directory named *dst* and return the destination directory. All intermediate directories needed to contain *dst* will also be created by default." msgstr "" -#: ../../library/shutil.rst:251 -msgid "" -"Permissions and times of directories are copied with :func:`copystat`, " -"individual files are copied using :func:`~shutil.copy2`." +msgid "Permissions and times of directories are copied with :func:`copystat`, individual files are copied using :func:`~shutil.copy2`." msgstr "" -#: ../../library/shutil.rst:254 -msgid "" -"If *symlinks* is true, symbolic links in the source tree are represented as " -"symbolic links in the new tree and the metadata of the original links will " -"be copied as far as the platform allows; if false or omitted, the contents " -"and metadata of the linked files are copied to the new tree." +msgid "If *symlinks* is true, symbolic links in the source tree are represented as symbolic links in the new tree and the metadata of the original links will be copied as far as the platform allows; if false or omitted, the contents and metadata of the linked files are copied to the new tree." msgstr "" -#: ../../library/shutil.rst:259 -msgid "" -"When *symlinks* is false, if the file pointed to by the symlink doesn't " -"exist, an exception will be added in the list of errors raised in " -"an :exc:`Error` exception at the end of the copy process. You can set the " -"optional *ignore_dangling_symlinks* flag to true if you want to silence this " -"exception. Notice that this option has no effect on platforms that don't " -"support :func:`os.symlink`." +msgid "When *symlinks* is false, if the file pointed to by the symlink doesn't exist, an exception will be added in the list of errors raised in an :exc:`Error` exception at the end of the copy process. You can set the optional *ignore_dangling_symlinks* flag to true if you want to silence this exception. Notice that this option has no effect on platforms that don't support :func:`os.symlink`." msgstr "" -#: ../../library/shutil.rst:266 -msgid "" -"If *ignore* is given, it must be a callable that will receive as its " -"arguments the directory being visited by :func:`copytree`, and a list of its " -"contents, as returned by :func:`os.listdir`. Since :func:`copytree` is " -"called recursively, the *ignore* callable will be called once for each " -"directory that is copied. The callable must return a sequence of directory " -"and file names relative to the current directory (i.e. a subset of the items " -"in its second argument); these names will then be ignored in the copy " -"process. :func:`ignore_patterns` can be used to create such a callable that " -"ignores names based on glob-style patterns." -msgstr "" - -#: ../../library/shutil.rst:276 -msgid "" -"If exception(s) occur, an :exc:`Error` is raised with a list of reasons." +msgid "If *ignore* is given, it must be a callable that will receive as its arguments the directory being visited by :func:`copytree`, and a list of its contents, as returned by :func:`os.listdir`. Since :func:`copytree` is called recursively, the *ignore* callable will be called once for each directory that is copied. The callable must return a sequence of directory and file names relative to the current directory (i.e. a subset of the items in its second argument); these names will then be ignored in the copy process. :func:`ignore_patterns` can be used to create such a callable that ignores names based on glob-style patterns." msgstr "" -#: ../../library/shutil.rst:278 -msgid "" -"If *copy_function* is given, it must be a callable that will be used to copy " -"each file. It will be called with the source path and the destination path " -"as arguments. By default, :func:`~shutil.copy2` is used, but any function " -"that supports the same signature (like :func:`~shutil.copy`) can be used." +msgid "If exception(s) occur, an :exc:`Error` is raised with a list of reasons." msgstr "" -#: ../../library/shutil.rst:283 -msgid "" -"If *dirs_exist_ok* is false (the default) and *dst* already exists, " -"a :exc:`FileExistsError` is raised. If *dirs_exist_ok* is true, the copying " -"operation will continue if it encounters existing directories, and files " -"within the *dst* tree will be overwritten by corresponding files from the " -"*src* tree." +msgid "If *copy_function* is given, it must be a callable that will be used to copy each file. It will be called with the source path and the destination path as arguments. By default, :func:`~shutil.copy2` is used, but any function that supports the same signature (like :func:`~shutil.copy`) can be used." msgstr "" -#: ../../library/shutil.rst:289 -msgid "" -"Raises an :ref:`auditing event ` ``shutil.copytree`` with " -"arguments ``src``, ``dst``." +msgid "If *dirs_exist_ok* is false (the default) and *dst* already exists, a :exc:`FileExistsError` is raised. If *dirs_exist_ok* is true, the copying operation will continue if it encounters existing directories, and files within the *dst* tree will be overwritten by corresponding files from the *src* tree." msgstr "" -#: ../../library/shutil.rst:291 -msgid "" -"Added the *copy_function* argument to be able to provide a custom copy " -"function. Added the *ignore_dangling_symlinks* argument to silence dangling " -"symlinks errors when *symlinks* is false." +msgid "Raises an :ref:`auditing event ` ``shutil.copytree`` with arguments ``src``, ``dst``." +msgstr "" + +msgid "Added the *copy_function* argument to be able to provide a custom copy function. Added the *ignore_dangling_symlinks* argument to silence dangling symlinks errors when *symlinks* is false." msgstr "" -#: ../../library/shutil.rst:297 msgid "Copy metadata when *symlinks* is false. Now returns *dst*." msgstr "" -#: ../../library/shutil.rst:306 msgid "Added the *dirs_exist_ok* parameter." msgstr "" -#: ../../library/shutil.rst:313 -msgid "" -"Delete an entire directory tree; *path* must point to a directory (but not a " -"symbolic link to a directory). If *ignore_errors* is true, errors resulting " -"from failed removals will be ignored; if false or omitted, such errors are " -"handled by calling a handler specified by *onexc* or *onerror* or, if both " -"are omitted, exceptions are propagated to the caller." +msgid "Delete an entire directory tree; *path* must point to a directory (but not a symbolic link to a directory). If *ignore_errors* is true, errors resulting from failed removals will be ignored; if false or omitted, such errors are handled by calling a handler specified by *onexc* or *onerror* or, if both are omitted, exceptions are propagated to the caller." msgstr "" -#: ../../library/shutil.rst:319 -msgid "" -"This function can support :ref:`paths relative to directory descriptors " -"`." +msgid "This function can support :ref:`paths relative to directory descriptors `." msgstr "" -#: ../../library/shutil.rst:324 -msgid "" -"On platforms that support the necessary fd-based functions a symlink attack " -"resistant version of :func:`rmtree` is used by default. On other platforms, " -"the :func:`rmtree` implementation is susceptible to a symlink attack: given " -"proper timing and circumstances, attackers can manipulate symlinks on the " -"filesystem to delete files they wouldn't be able to access otherwise. " -"Applications can use the :data:`rmtree.avoids_symlink_attacks` function " -"attribute to determine which case applies." +msgid "On platforms that support the necessary fd-based functions a symlink attack resistant version of :func:`rmtree` is used by default. On other platforms, the :func:`rmtree` implementation is susceptible to a symlink attack: given proper timing and circumstances, attackers can manipulate symlinks on the filesystem to delete files they wouldn't be able to access otherwise. Applications can use the :data:`rmtree.avoids_symlink_attacks` function attribute to determine which case applies." msgstr "" -#: ../../library/shutil.rst:332 -msgid "" -"If *onexc* is provided, it must be a callable that accepts three parameters: " -"*function*, *path*, and *excinfo*." +msgid "If *onexc* is provided, it must be a callable that accepts three parameters: *function*, *path*, and *excinfo*." msgstr "" -#: ../../library/shutil.rst:335 -msgid "" -"The first parameter, *function*, is the function which raised the exception; " -"it depends on the platform and implementation. The second parameter, " -"*path*, will be the path name passed to *function*. The third parameter, " -"*excinfo*, is the exception that was raised. Exceptions raised by *onexc* " -"will not be caught." +msgid "The first parameter, *function*, is the function which raised the exception; it depends on the platform and implementation. The second parameter, *path*, will be the path name passed to *function*. The third parameter, *excinfo*, is the exception that was raised. Exceptions raised by *onexc* will not be caught." msgstr "" -#: ../../library/shutil.rst:341 -msgid "" -"The deprecated *onerror* is similar to *onexc*, except that the third " -"parameter it receives is the tuple returned from :func:`sys.exc_info`." +msgid "The deprecated *onerror* is similar to *onexc*, except that the third parameter it receives is the tuple returned from :func:`sys.exc_info`." msgstr "" -#: ../../library/shutil.rst:345 -msgid "" -":ref:`shutil-rmtree-example` for an example of handling the removal of a " -"directory tree that contains read-only files." +msgid ":ref:`shutil-rmtree-example` for an example of handling the removal of a directory tree that contains read-only files." msgstr "" -#: ../../library/shutil.rst:348 -msgid "" -"Raises an :ref:`auditing event ` ``shutil.rmtree`` with arguments " -"``path``, ``dir_fd``." +msgid "Raises an :ref:`auditing event ` ``shutil.rmtree`` with arguments ``path``, ``dir_fd``." msgstr "" -#: ../../library/shutil.rst:350 -msgid "" -"Added a symlink attack resistant version that is used automatically if " -"platform supports fd-based functions." +msgid "Added a symlink attack resistant version that is used automatically if platform supports fd-based functions." msgstr "" -#: ../../library/shutil.rst:354 -msgid "" -"On Windows, will no longer delete the contents of a directory junction " -"before removing the junction." +msgid "On Windows, will no longer delete the contents of a directory junction before removing the junction." msgstr "" -#: ../../library/shutil.rst:358 msgid "Added the *dir_fd* parameter." msgstr "" -#: ../../library/shutil.rst:361 msgid "Added the *onexc* parameter, deprecated *onerror*." msgstr "" -#: ../../library/shutil.rst:364 -msgid "" -":func:`!rmtree` now ignores :exc:`FileNotFoundError` exceptions for all but " -"the top-level path. Exceptions other than :exc:`OSError` and subclasses " -"of :exc:`!OSError` are now always propagated to the caller." +msgid ":func:`!rmtree` now ignores :exc:`FileNotFoundError` exceptions for all but the top-level path. Exceptions other than :exc:`OSError` and subclasses of :exc:`!OSError` are now always propagated to the caller." msgstr "" -#: ../../library/shutil.rst:372 -msgid "" -"Indicates whether the current platform and implementation provides a symlink " -"attack resistant version of :func:`rmtree`. Currently this is only true for " -"platforms supporting fd-based directory access functions." +msgid "Indicates whether the current platform and implementation provides a symlink attack resistant version of :func:`rmtree`. Currently this is only true for platforms supporting fd-based directory access functions." msgstr "" -#: ../../library/shutil.rst:381 -msgid "" -"Recursively move a file or directory (*src*) to another location and return " -"the destination." +msgid "Recursively move a file or directory (*src*) to another location and return the destination." msgstr "" -#: ../../library/shutil.rst:384 -msgid "" -"If *dst* is an existing directory or a symlink to a directory, then *src* is " -"moved inside that directory. The destination path in that directory must not " -"already exist." +msgid "If *dst* is an existing directory or a symlink to a directory, then *src* is moved inside that directory. The destination path in that directory must not already exist." msgstr "" -#: ../../library/shutil.rst:388 -msgid "" -"If *dst* already exists but is not a directory, it may be overwritten " -"depending on :func:`os.rename` semantics." +msgid "If *dst* already exists but is not a directory, it may be overwritten depending on :func:`os.rename` semantics." msgstr "" -#: ../../library/shutil.rst:391 -msgid "" -":func:`os.rename` is preferably used internally when *src* and the " -"destination are on the same filesystem. In case :func:`os.rename` fails due " -"to :exc:`OSError` (e.g. the user has write permission to the destination " -"file but not to its parent directory), this method falls back to using " -"*copy_function*, in which case *src* is copied to the destination using " -"*copy_function* and then removed." +msgid ":func:`os.rename` is preferably used internally when *src* and the destination are on the same filesystem. In case :func:`os.rename` fails due to :exc:`OSError` (e.g. the user has write permission to the destination file but not to its parent directory), this method falls back to using *copy_function*, in which case *src* is copied to the destination using *copy_function* and then removed." msgstr "" -#: ../../library/shutil.rst:397 -msgid "" -"In case of symlinks, a new symlink pointing to the target of *src* will be " -"created in or as the destination, and *src* will be removed." +msgid "In case of symlinks, a new symlink pointing to the target of *src* will be created in or as the destination, and *src* will be removed." msgstr "" -#: ../../library/shutil.rst:400 -msgid "" -"If *copy_function* is given, it must be a callable that takes two arguments, " -"*src* and the destination, and will be used to copy *src* to the destination " -"if :func:`os.rename` cannot be used. If the source is a " -"directory, :func:`copytree` is called, passing it the *copy_function*. The " -"default *copy_function* is :func:`copy2`. Using :func:`~shutil.copy` as the " -"*copy_function* allows the move to succeed when it is not possible to also " -"copy the metadata, at the expense of not copying any of the metadata." +msgid "If *copy_function* is given, it must be a callable that takes two arguments, *src* and the destination, and will be used to copy *src* to the destination if :func:`os.rename` cannot be used. If the source is a directory, :func:`copytree` is called, passing it the *copy_function*. The default *copy_function* is :func:`copy2`. Using :func:`~shutil.copy` as the *copy_function* allows the move to succeed when it is not possible to also copy the metadata, at the expense of not copying any of the metadata." msgstr "" -#: ../../library/shutil.rst:408 -msgid "" -"Raises an :ref:`auditing event ` ``shutil.move`` with arguments " -"``src``, ``dst``." +msgid "Raises an :ref:`auditing event ` ``shutil.move`` with arguments ``src``, ``dst``." msgstr "" -#: ../../library/shutil.rst:410 -msgid "" -"Added explicit symlink handling for foreign filesystems, thus adapting it to " -"the behavior of GNU's :program:`mv`. Now returns *dst*." +msgid "Added explicit symlink handling for foreign filesystems, thus adapting it to the behavior of GNU's :program:`mv`. Now returns *dst*." msgstr "" -#: ../../library/shutil.rst:415 msgid "Added the *copy_function* keyword argument." msgstr "" -#: ../../library/shutil.rst:423 msgid "Accepts a :term:`path-like object` for both *src* and *dst*." msgstr "" -#: ../../library/shutil.rst:428 -msgid "" -"Return disk usage statistics about the given path as a :term:`named tuple` " -"with the attributes *total*, *used* and *free*, which are the amount of " -"total, used and free space, in bytes. *path* may be a file or a directory." +msgid "Return disk usage statistics about the given path as a :term:`named tuple` with the attributes *total*, *used* and *free*, which are the amount of total, used and free space, in bytes. *path* may be a file or a directory." msgstr "" -#: ../../library/shutil.rst:435 -msgid "" -"On Unix filesystems, *path* must point to a path within a **mounted** " -"filesystem partition. On those platforms, CPython doesn't attempt to " -"retrieve disk usage information from non-mounted filesystems." +msgid "On Unix filesystems, *path* must point to a path within a **mounted** filesystem partition. On those platforms, CPython doesn't attempt to retrieve disk usage information from non-mounted filesystems." msgstr "" -#: ../../library/shutil.rst:441 msgid "On Windows, *path* can now be a file or directory." msgstr "" -#: ../../library/shutil.rst:444 ../../library/shutil.rst:458 msgid "Availability" msgstr "" -#: ../../library/shutil.rst:449 msgid "Change owner *user* and/or *group* of the given *path*." msgstr "" -#: ../../library/shutil.rst:451 -msgid "" -"*user* can be a system user name or a uid; the same applies to *group*. At " -"least one argument is required." +msgid "*user* can be a system user name or a uid; the same applies to *group*. At least one argument is required." msgstr "" -#: ../../library/shutil.rst:454 msgid "See also :func:`os.chown`, the underlying function." msgstr "" -#: ../../library/shutil.rst:456 -msgid "" -"Raises an :ref:`auditing event ` ``shutil.chown`` with arguments " -"``path``, ``user``, ``group``." +msgid "Raises an :ref:`auditing event ` ``shutil.chown`` with arguments ``path``, ``user``, ``group``." msgstr "" -#: ../../library/shutil.rst:462 msgid "Added *dir_fd* and *follow_symlinks* parameters." msgstr "" -#: ../../library/shutil.rst:468 -msgid "" -"Return the path to an executable which would be run if the given *cmd* was " -"called. If no *cmd* would be called, return ``None``." +msgid "Return the path to an executable which would be run if the given *cmd* was called. If no *cmd* would be called, return ``None``." msgstr "" -#: ../../library/shutil.rst:471 -msgid "" -"*mode* is a permission mask passed to :func:`os.access`, by default " -"determining if the file exists and is executable." +msgid "*mode* is a permission mask passed to :func:`os.access`, by default determining if the file exists and is executable." msgstr "" -#: ../../library/shutil.rst:474 -msgid "" -"*path* is a \"``PATH`` string\" specifying the directories to look in, " -"delimited by :data:`os.pathsep`. When no *path* is specified, " -"the :envvar:`PATH` environment variable is read from :data:`os.environ`, " -"falling back to :data:`os.defpath` if it is not set." +msgid "*path* is a \"``PATH`` string\" specifying the directories to look in, delimited by :data:`os.pathsep`. When no *path* is specified, the :envvar:`PATH` environment variable is read from :data:`os.environ`, falling back to :data:`os.defpath` if it is not set." msgstr "" -#: ../../library/shutil.rst:479 -msgid "" -"If *cmd* contains a directory component, :func:`!which` only checks the " -"specified path directly and does not search the directories listed in *path* " -"or in the system's :envvar:`PATH` environment variable." +msgid "If *cmd* contains a directory component, :func:`!which` only checks the specified path directly and does not search the directories listed in *path* or in the system's :envvar:`PATH` environment variable." msgstr "" -#: ../../library/shutil.rst:483 -msgid "" -"On Windows, the current directory is prepended to the *path* if *mode* does " -"not include ``os.X_OK``. When the *mode* does include ``os.X_OK``, the " -"Windows API ``NeedCurrentDirectoryForExePathW`` will be consulted to " -"determine if the current directory should be prepended to *path*. To avoid " -"consulting the current working directory for executables: set the " -"environment variable ``NoDefaultCurrentDirectoryInExePath``." +msgid "On Windows, the current directory is prepended to the *path* if *mode* does not include ``os.X_OK``. When the *mode* does include ``os.X_OK``, the Windows API ``NeedCurrentDirectoryForExePathW`` will be consulted to determine if the current directory should be prepended to *path*. To avoid consulting the current working directory for executables: set the environment variable ``NoDefaultCurrentDirectoryInExePath``." msgstr "" -#: ../../library/shutil.rst:490 -msgid "" -"Also on Windows, the :envvar:`PATHEXT` environment variable is used to " -"resolve commands that may not already include an extension. For example, if " -"you call ``shutil.which(\"python\")``, :func:`which` will search ``PATHEXT`` " -"to know that it should look for ``python.exe`` within the *path* " -"directories. For example, on Windows::" +msgid "Also on Windows, the :envvar:`PATHEXT` environment variable is used to resolve commands that may not already include an extension. For example, if you call ``shutil.which(\"python\")``, :func:`which` will search ``PATHEXT`` to know that it should look for ``python.exe`` within the *path* directories. For example, on Windows::" msgstr "" -#: ../../library/shutil.rst:496 msgid "" ">>> shutil.which(\"python\")\n" "'C:\\\\Python33\\\\python.EXE'" msgstr "" -#: ../../library/shutil.rst:499 -msgid "" -"This is also applied when *cmd* is a path that contains a directory " -"component::" +msgid "This is also applied when *cmd* is a path that contains a directory component::" msgstr "" -#: ../../library/shutil.rst:502 msgid "" ">>> shutil.which(\"C:\\\\Python33\\\\python\")\n" "'C:\\\\Python33\\\\python.EXE'" msgstr "" -#: ../../library/shutil.rst:507 -msgid "" -"The :class:`bytes` type is now accepted. If *cmd* type is :class:`bytes`, " -"the result type is also :class:`bytes`." +msgid "The :class:`bytes` type is now accepted. If *cmd* type is :class:`bytes`, the result type is also :class:`bytes`." msgstr "" -#: ../../library/shutil.rst:511 -msgid "" -"On Windows, the current directory is no longer prepended to the search path " -"if *mode* includes ``os.X_OK`` and WinAPI " -"``NeedCurrentDirectoryForExePathW(cmd)`` is false, else the current " -"directory is prepended even if it is already in the search path; ``PATHEXT`` " -"is used now even when *cmd* includes a directory component or ends with an " -"extension that is in ``PATHEXT``; and filenames that have no extension can " -"now be found." +msgid "On Windows, the current directory is no longer prepended to the search path if *mode* includes ``os.X_OK`` and WinAPI ``NeedCurrentDirectoryForExePathW(cmd)`` is false, else the current directory is prepended even if it is already in the search path; ``PATHEXT`` is used now even when *cmd* includes a directory component or ends with an extension that is in ``PATHEXT``; and filenames that have no extension can now be found." msgstr "" -#: ../../library/shutil.rst:522 -msgid "" -"This exception collects exceptions that are raised during a multi-file " -"operation. For :func:`copytree`, the exception argument is a list of 3-" -"tuples (*srcname*, *dstname*, *exception*)." +msgid "This exception collects exceptions that are raised during a multi-file operation. For :func:`copytree`, the exception argument is a list of 3-tuples (*srcname*, *dstname*, *exception*)." msgstr "" -#: ../../library/shutil.rst:529 msgid "Platform-dependent efficient copy operations" msgstr "" -#: ../../library/shutil.rst:531 -msgid "" -"Starting from Python 3.8, all functions involving a file copy " -"(:func:`copyfile`, :func:`~shutil.copy`, :func:`copy2`, :func:`copytree`, " -"and :func:`move`) may use platform-specific \"fast-copy\" syscalls in order " -"to copy the file more efficiently (see :issue:`33671`). \"fast-copy\" means " -"that the copying operation occurs within the kernel, avoiding the use of " -"userspace buffers in Python as in \"``outfd.write(infd.read())``\"." +msgid "Starting from Python 3.8, all functions involving a file copy (:func:`copyfile`, :func:`~shutil.copy`, :func:`copy2`, :func:`copytree`, and :func:`move`) may use platform-specific \"fast-copy\" syscalls in order to copy the file more efficiently (see :issue:`33671`). \"fast-copy\" means that the copying operation occurs within the kernel, avoiding the use of userspace buffers in Python as in \"``outfd.write(infd.read())``\"." msgstr "" -#: ../../library/shutil.rst:539 msgid "On macOS `fcopyfile`_ is used to copy the file content (not metadata)." msgstr "" -#: ../../library/shutil.rst:541 msgid "On Linux :func:`os.copy_file_range` or :func:`os.sendfile` is used." msgstr "" -#: ../../library/shutil.rst:543 msgid "On Solaris :func:`os.sendfile` is used." msgstr "" -#: ../../library/shutil.rst:545 -msgid "" -"On Windows :func:`shutil.copyfile` uses a bigger default buffer size (1 MiB " -"instead of 64 KiB) and a :func:`memoryview`-based variant " -"of :func:`shutil.copyfileobj` is used." +msgid "On Windows :func:`shutil.copyfile` uses a bigger default buffer size (1 MiB instead of 64 KiB) and a :func:`memoryview`-based variant of :func:`shutil.copyfileobj` is used." msgstr "" -#: ../../library/shutil.rst:549 -msgid "" -"If the fast-copy operation fails and no data was written in the destination " -"file then shutil will silently fall back to less " -"efficient :func:`copyfileobj` function internally." +msgid "If the fast-copy operation fails and no data was written in the destination file then shutil will silently fall back to less efficient :func:`copyfileobj` function internally." msgstr "" -#: ../../library/shutil.rst:555 msgid "Solaris now uses :func:`os.sendfile`." msgstr "" -#: ../../library/shutil.rst:558 -msgid "" -"Copy-on-write or server-side copy may be used internally " -"via :func:`os.copy_file_range` on supported Linux filesystems." +msgid "Copy-on-write or server-side copy may be used internally via :func:`os.copy_file_range` on supported Linux filesystems." msgstr "" -#: ../../library/shutil.rst:565 msgid "copytree example" msgstr "" -#: ../../library/shutil.rst:567 msgid "An example that uses the :func:`ignore_patterns` helper::" msgstr "" -#: ../../library/shutil.rst:569 msgid "" "from shutil import copytree, ignore_patterns\n" "\n" "copytree(source, destination, ignore=ignore_patterns('*.pyc', 'tmp*'))" msgstr "" -#: ../../library/shutil.rst:573 -msgid "" -"This will copy everything except ``.pyc`` files and files or directories " -"whose name starts with ``tmp``." +msgid "This will copy everything except ``.pyc`` files and files or directories whose name starts with ``tmp``." msgstr "" -#: ../../library/shutil.rst:576 msgid "Another example that uses the *ignore* argument to add a logging call::" msgstr "" -#: ../../library/shutil.rst:578 msgid "" "from shutil import copytree\n" "import logging\n" @@ -769,19 +373,12 @@ msgid "" "copytree(source, destination, ignore=_logpath)" msgstr "" -#: ../../library/shutil.rst:591 msgid "rmtree example" msgstr "" -#: ../../library/shutil.rst:593 -msgid "" -"This example shows how to remove a directory tree on Windows where some of " -"the files have their read-only bit set. It uses the onexc callback to clear " -"the readonly bit and reattempt the remove. Any subsequent failure will " -"propagate. ::" +msgid "This example shows how to remove a directory tree on Windows where some of the files have their read-only bit set. It uses the onexc callback to clear the readonly bit and reattempt the remove. Any subsequent failure will propagate. ::" msgstr "" -#: ../../library/shutil.rst:598 msgid "" "import os, stat\n" "import shutil\n" @@ -794,327 +391,174 @@ msgid "" "shutil.rmtree(directory, onexc=remove_readonly)" msgstr "" -#: ../../library/shutil.rst:611 msgid "Archiving operations" msgstr "" -#: ../../library/shutil.rst:615 msgid "Added support for the *xztar* format." msgstr "" -#: ../../library/shutil.rst:619 -msgid "" -"High-level utilities to create and read compressed and archived files are " -"also provided. They rely on the :mod:`zipfile` and :mod:`tarfile` modules." +msgid "High-level utilities to create and read compressed and archived files are also provided. They rely on the :mod:`zipfile` and :mod:`tarfile` modules." msgstr "" -#: ../../library/shutil.rst:624 msgid "Create an archive file (such as zip or tar) and return its name." msgstr "" -#: ../../library/shutil.rst:626 -msgid "" -"*base_name* is the name of the file to create, including the path, minus any " -"format-specific extension." +msgid "*base_name* is the name of the file to create, including the path, minus any format-specific extension." msgstr "" -#: ../../library/shutil.rst:629 -msgid "" -"*format* is the archive format: one of \"zip\" (if the :mod:`zlib` module is " -"available), \"tar\", \"gztar\" (if the :mod:`zlib` module is available), " -"\"bztar\" (if the :mod:`bz2` module is available), \"xztar\" (if " -"the :mod:`lzma` module is available), or \"zstdtar\" (if " -"the :mod:`compression.zstd` module is available)." +msgid "*format* is the archive format: one of \"zip\" (if the :mod:`zlib` module is available), \"tar\", \"gztar\" (if the :mod:`zlib` module is available), \"bztar\" (if the :mod:`bz2` module is available), \"xztar\" (if the :mod:`lzma` module is available), or \"zstdtar\" (if the :mod:`compression.zstd` module is available)." msgstr "" -#: ../../library/shutil.rst:635 -msgid "" -"*root_dir* is a directory that will be the root directory of the archive, " -"all paths in the archive will be relative to it; for example, we typically " -"chdir into *root_dir* before creating the archive." +msgid "*root_dir* is a directory that will be the root directory of the archive, all paths in the archive will be relative to it; for example, we typically chdir into *root_dir* before creating the archive." msgstr "" -#: ../../library/shutil.rst:639 -msgid "" -"*base_dir* is the directory where we start archiving from; i.e. *base_dir* " -"will be the common prefix of all files and directories in the archive. " -"*base_dir* must be given relative to *root_dir*. See :ref:`shutil-archiving-" -"example-with-basedir` for how to use *base_dir* and *root_dir* together." +msgid "*base_dir* is the directory where we start archiving from; i.e. *base_dir* will be the common prefix of all files and directories in the archive. *base_dir* must be given relative to *root_dir*. See :ref:`shutil-archiving-example-with-basedir` for how to use *base_dir* and *root_dir* together." msgstr "" -#: ../../library/shutil.rst:645 msgid "*root_dir* and *base_dir* both default to the current directory." msgstr "" -#: ../../library/shutil.rst:647 -msgid "" -"If *dry_run* is true, no archive is created, but the operations that would " -"be executed are logged to *logger*." +msgid "If *dry_run* is true, no archive is created, but the operations that would be executed are logged to *logger*." msgstr "" -#: ../../library/shutil.rst:650 -msgid "" -"*owner* and *group* are used when creating a tar archive. By default, uses " -"the current owner and group." +msgid "*owner* and *group* are used when creating a tar archive. By default, uses the current owner and group." msgstr "" -#: ../../library/shutil.rst:653 -msgid "" -"*logger* must be an object compatible with :pep:`282`, usually an instance " -"of :class:`logging.Logger`." +msgid "*logger* must be an object compatible with :pep:`282`, usually an instance of :class:`logging.Logger`." msgstr "" -#: ../../library/shutil.rst:656 msgid "The *verbose* argument is unused and deprecated." msgstr "" -#: ../../library/shutil.rst:658 -msgid "" -"Raises an :ref:`auditing event ` ``shutil.make_archive`` with " -"arguments ``base_name``, ``format``, ``root_dir``, ``base_dir``." +msgid "Raises an :ref:`auditing event ` ``shutil.make_archive`` with arguments ``base_name``, ``format``, ``root_dir``, ``base_dir``." msgstr "" -#: ../../library/shutil.rst:662 -msgid "" -"This function is not thread-safe when custom archivers registered " -"with :func:`register_archive_format` do not support the *root_dir* " -"argument. In this case it temporarily changes the current working directory " -"of the process to *root_dir* to perform archiving." +msgid "This function is not thread-safe when custom archivers registered with :func:`register_archive_format` do not support the *root_dir* argument. In this case it temporarily changes the current working directory of the process to *root_dir* to perform archiving." msgstr "" -#: ../../library/shutil.rst:668 -msgid "" -"The modern pax (POSIX.1-2001) format is now used instead of the legacy GNU " -"format for archives created with ``format=\"tar\"``." +msgid "The modern pax (POSIX.1-2001) format is now used instead of the legacy GNU format for archives created with ``format=\"tar\"``." msgstr "" -#: ../../library/shutil.rst:672 -msgid "" -"This function is now made thread-safe during creation of standard ``.zip`` " -"and tar archives." +msgid "This function is now made thread-safe during creation of standard ``.zip`` and tar archives." msgstr "" -#: ../../library/shutil.rst:678 -msgid "" -"Return a list of supported formats for archiving. Each element of the " -"returned sequence is a tuple ``(name, description)``." +msgid "Return a list of supported formats for archiving. Each element of the returned sequence is a tuple ``(name, description)``." msgstr "" -#: ../../library/shutil.rst:681 ../../library/shutil.rst:798 msgid "By default :mod:`!shutil` provides these formats:" msgstr "" -#: ../../library/shutil.rst:683 msgid "*zip*: ZIP file (if the :mod:`zlib` module is available)." msgstr "" -#: ../../library/shutil.rst:684 -msgid "" -"*tar*: Uncompressed tar file. Uses POSIX.1-2001 pax format for new archives." +msgid "*tar*: Uncompressed tar file. Uses POSIX.1-2001 pax format for new archives." msgstr "" -#: ../../library/shutil.rst:685 ../../library/shutil.rst:803 msgid "*gztar*: gzip'ed tar-file (if the :mod:`zlib` module is available)." msgstr "" -#: ../../library/shutil.rst:686 ../../library/shutil.rst:804 msgid "*bztar*: bzip2'ed tar-file (if the :mod:`bz2` module is available)." msgstr "" -#: ../../library/shutil.rst:687 ../../library/shutil.rst:805 msgid "*xztar*: xz'ed tar-file (if the :mod:`lzma` module is available)." msgstr "" -#: ../../library/shutil.rst:688 ../../library/shutil.rst:806 -msgid "" -"*zstdtar*: Zstandard compressed tar-file (if the :mod:`compression.zstd` " -"module is available)." +msgid "*zstdtar*: Zstandard compressed tar-file (if the :mod:`compression.zstd` module is available)." msgstr "" -#: ../../library/shutil.rst:691 -msgid "" -"You can register new formats or provide your own archiver for any existing " -"formats, by using :func:`register_archive_format`." +msgid "You can register new formats or provide your own archiver for any existing formats, by using :func:`register_archive_format`." msgstr "" -#: ../../library/shutil.rst:697 msgid "Register an archiver for the format *name*." msgstr "" -#: ../../library/shutil.rst:699 -msgid "" -"*function* is the callable that will be used to create archives. The " -"callable will receive the *base_name* of the file to create, followed by the " -"*base_dir* (which defaults to :data:`os.curdir`) to start archiving from. " -"Further arguments are passed as keyword arguments: *owner*, *group*, " -"*dry_run* and *logger* (as passed in :func:`make_archive`)." +msgid "*function* is the callable that will be used to create archives. The callable will receive the *base_name* of the file to create, followed by the *base_dir* (which defaults to :data:`os.curdir`) to start archiving from. Further arguments are passed as keyword arguments: *owner*, *group*, *dry_run* and *logger* (as passed in :func:`make_archive`)." msgstr "" -#: ../../library/shutil.rst:705 -msgid "" -"If *function* has the custom attribute ``function.supports_root_dir`` set to " -"``True``, the *root_dir* argument is passed as a keyword argument. Otherwise " -"the current working directory of the process is temporarily changed to " -"*root_dir* before calling *function*. In this case :func:`make_archive` is " -"not thread-safe." +msgid "If *function* has the custom attribute ``function.supports_root_dir`` set to ``True``, the *root_dir* argument is passed as a keyword argument. Otherwise the current working directory of the process is temporarily changed to *root_dir* before calling *function*. In this case :func:`make_archive` is not thread-safe." msgstr "" -#: ../../library/shutil.rst:711 -msgid "" -"If given, *extra_args* is a sequence of ``(name, value)`` pairs that will be " -"used as extra keywords arguments when the archiver callable is used." +msgid "If given, *extra_args* is a sequence of ``(name, value)`` pairs that will be used as extra keywords arguments when the archiver callable is used." msgstr "" -#: ../../library/shutil.rst:714 -msgid "" -"*description* is used by :func:`get_archive_formats` which returns the list " -"of archivers. Defaults to an empty string." +msgid "*description* is used by :func:`get_archive_formats` which returns the list of archivers. Defaults to an empty string." msgstr "" -#: ../../library/shutil.rst:717 msgid "Added support for functions supporting the *root_dir* argument." msgstr "" -#: ../../library/shutil.rst:723 msgid "Remove the archive format *name* from the list of supported formats." msgstr "" -#: ../../library/shutil.rst:728 msgid "Unpack an archive. *filename* is the full path of the archive." msgstr "" -#: ../../library/shutil.rst:730 -msgid "" -"*extract_dir* is the name of the target directory where the archive is " -"unpacked. If not provided, the current working directory is used." +msgid "*extract_dir* is the name of the target directory where the archive is unpacked. If not provided, the current working directory is used." msgstr "" -#: ../../library/shutil.rst:733 -msgid "" -"*format* is the archive format: one of \"zip\", \"tar\", \"gztar\", " -"\"bztar\", \"xztar\", or \"zstdtar\". Or any other format registered " -"with :func:`register_unpack_format`. If not " -"provided, :func:`unpack_archive` will use the archive file name extension " -"and see if an unpacker was registered for that extension. In case none is " -"found, a :exc:`ValueError` is raised." +msgid "*format* is the archive format: one of \"zip\", \"tar\", \"gztar\", \"bztar\", \"xztar\", or \"zstdtar\". Or any other format registered with :func:`register_unpack_format`. If not provided, :func:`unpack_archive` will use the archive file name extension and see if an unpacker was registered for that extension. In case none is found, a :exc:`ValueError` is raised." msgstr "" -#: ../../library/shutil.rst:740 -msgid "" -"The keyword-only *filter* argument is passed to the underlying unpacking " -"function. For zip files, *filter* is not accepted. For tar files, it is " -"recommended to use ``'data'`` (default since Python 3.14), unless using " -"features specific to tar and UNIX-like filesystems. (See :ref:`tarfile-" -"extraction-filter` for details.)" +msgid "The keyword-only *filter* argument is passed to the underlying unpacking function. For zip files, *filter* is not accepted. For tar files, it is recommended to use ``'data'`` (default since Python 3.14), unless using features specific to tar and UNIX-like filesystems. (See :ref:`tarfile-extraction-filter` for details.)" msgstr "" -#: ../../library/shutil.rst:746 -msgid "" -"Raises an :ref:`auditing event ` ``shutil.unpack_archive`` with " -"arguments ``filename``, ``extract_dir``, ``format``." +msgid "Raises an :ref:`auditing event ` ``shutil.unpack_archive`` with arguments ``filename``, ``extract_dir``, ``format``." msgstr "" -#: ../../library/shutil.rst:750 -msgid "" -"Never extract archives from untrusted sources without prior inspection. It " -"is possible that files are created outside of the path specified in the " -"*extract_dir* argument, for example, members that have absolute filenames or " -"filenames with \"..\" components." +msgid "Never extract archives from untrusted sources without prior inspection. It is possible that files are created outside of the path specified in the *extract_dir* argument, for example, members that have absolute filenames or filenames with \"..\" components." msgstr "" -#: ../../library/shutil.rst:755 -msgid "" -"Since Python 3.14, the defaults for both built-in formats (zip and tar " -"files) will prevent the most dangerous of such security issues, but will not " -"prevent *all* unintended behavior. Read the :ref:`tarfile-further-" -"verification` section for tar-specific details." +msgid "Since Python 3.14, the defaults for both built-in formats (zip and tar files) will prevent the most dangerous of such security issues, but will not prevent *all* unintended behavior. Read the :ref:`tarfile-further-verification` section for tar-specific details." msgstr "" -#: ../../library/shutil.rst:761 msgid "Accepts a :term:`path-like object` for *filename* and *extract_dir*." msgstr "" -#: ../../library/shutil.rst:764 msgid "Added the *filter* argument." msgstr "" -#: ../../library/shutil.rst:769 -msgid "" -"Registers an unpack format. *name* is the name of the format and " -"*extensions* is a list of extensions corresponding to the format, like " -"``.zip`` for Zip files." +msgid "Registers an unpack format. *name* is the name of the format and *extensions* is a list of extensions corresponding to the format, like ``.zip`` for Zip files." msgstr "" -#: ../../library/shutil.rst:773 -msgid "" -"*function* is the callable that will be used to unpack archives. The " -"callable will receive:" +msgid "*function* is the callable that will be used to unpack archives. The callable will receive:" msgstr "" -#: ../../library/shutil.rst:776 msgid "the path of the archive, as a positional argument;" msgstr "" -#: ../../library/shutil.rst:777 -msgid "" -"the directory the archive must be extracted to, as a positional argument;" +msgid "the directory the archive must be extracted to, as a positional argument;" msgstr "" -#: ../../library/shutil.rst:778 -msgid "" -"possibly a *filter* keyword argument, if it was given " -"to :func:`unpack_archive`;" +msgid "possibly a *filter* keyword argument, if it was given to :func:`unpack_archive`;" msgstr "" -#: ../../library/shutil.rst:780 -msgid "" -"additional keyword arguments, specified by *extra_args* as a sequence of " -"``(name, value)`` tuples." +msgid "additional keyword arguments, specified by *extra_args* as a sequence of ``(name, value)`` tuples." msgstr "" -#: ../../library/shutil.rst:783 -msgid "" -"*description* can be provided to describe the format, and will be returned " -"by the :func:`get_unpack_formats` function." +msgid "*description* can be provided to describe the format, and will be returned by the :func:`get_unpack_formats` function." msgstr "" -#: ../../library/shutil.rst:789 msgid "Unregister an unpack format. *name* is the name of the format." msgstr "" -#: ../../library/shutil.rst:794 -msgid "" -"Return a list of all registered formats for unpacking. Each element of the " -"returned sequence is a tuple ``(name, extensions, description)``." +msgid "Return a list of all registered formats for unpacking. Each element of the returned sequence is a tuple ``(name, extensions, description)``." msgstr "" -#: ../../library/shutil.rst:800 -msgid "" -"*zip*: ZIP file (unpacking compressed files works only if the corresponding " -"module is available)." +msgid "*zip*: ZIP file (unpacking compressed files works only if the corresponding module is available)." msgstr "" -#: ../../library/shutil.rst:802 msgid "*tar*: uncompressed tar file." msgstr "" -#: ../../library/shutil.rst:809 -msgid "" -"You can register new formats or provide your own unpacker for any existing " -"formats, by using :func:`register_unpack_format`." +msgid "You can register new formats or provide your own unpacker for any existing formats, by using :func:`register_unpack_format`." msgstr "" -#: ../../library/shutil.rst:816 msgid "Archiving example" msgstr "" -#: ../../library/shutil.rst:818 -msgid "" -"In this example, we create a gzip'ed tar-file archive containing all files " -"found in the :file:`.ssh` directory of the user::" +msgid "In this example, we create a gzip'ed tar-file archive containing all files found in the :file:`.ssh` directory of the user::" msgstr "" -#: ../../library/shutil.rst:821 msgid "" ">>> from shutil import make_archive\n" ">>> import os\n" @@ -1124,11 +568,9 @@ msgid "" "'/Users/tarek/myarchive.tar.gz'" msgstr "" -#: ../../library/shutil.rst:828 msgid "The resulting archive contains:" msgstr "" -#: ../../library/shutil.rst:830 msgid "" "$ tar -tzvf /Users/tarek/myarchive.tar.gz\n" "drwx------ tarek/staff 0 2010-02-01 16:23:40 ./\n" @@ -1141,18 +583,12 @@ msgid "" "-rw-r--r-- tarek/staff 37192 2010-02-06 18:23:10 ./known_hosts" msgstr "" -#: ../../library/shutil.rst:846 msgid "Archiving example with *base_dir*" msgstr "" -#: ../../library/shutil.rst:848 -msgid "" -"In this example, similar to the `one above `_, we " -"show how to use :func:`make_archive`, but this time with the usage of " -"*base_dir*. We now have the following directory structure:" +msgid "In this example, similar to the `one above `_, we show how to use :func:`make_archive`, but this time with the usage of *base_dir*. We now have the following directory structure:" msgstr "" -#: ../../library/shutil.rst:852 msgid "" "$ tree tmp\n" "tmp\n" @@ -1163,13 +599,9 @@ msgid "" " └── do_not_add.txt" msgstr "" -#: ../../library/shutil.rst:862 -msgid "" -"In the final archive, :file:`please_add.txt` should be included, " -"but :file:`do_not_add.txt` should not. Therefore we use the following::" +msgid "In the final archive, :file:`please_add.txt` should be included, but :file:`do_not_add.txt` should not. Therefore we use the following::" msgstr "" -#: ../../library/shutil.rst:865 msgid "" ">>> from shutil import make_archive\n" ">>> import os\n" @@ -1183,80 +615,50 @@ msgid "" "'/Users/tarek/myarchive.tar'" msgstr "" -#: ../../library/shutil.rst:876 msgid "Listing the files in the resulting archive gives us:" msgstr "" -#: ../../library/shutil.rst:878 msgid "" "$ python -m tarfile -l /Users/tarek/myarchive.tar\n" "structure/content/\n" "structure/content/please_add.txt" msgstr "" -#: ../../library/shutil.rst:886 msgid "Querying the size of the output terminal" msgstr "" -#: ../../library/shutil.rst:890 msgid "Get the size of the terminal window." msgstr "" -#: ../../library/shutil.rst:892 -msgid "" -"For each of the two dimensions, the environment variable, ``COLUMNS`` and " -"``LINES`` respectively, is checked. If the variable is defined and the value " -"is a positive integer, it is used." +msgid "For each of the two dimensions, the environment variable, ``COLUMNS`` and ``LINES`` respectively, is checked. If the variable is defined and the value is a positive integer, it is used." msgstr "" -#: ../../library/shutil.rst:896 -msgid "" -"When ``COLUMNS`` or ``LINES`` is not defined, which is the common case, the " -"terminal connected to :data:`sys.__stdout__` is queried by " -"invoking :func:`os.get_terminal_size`." +msgid "When ``COLUMNS`` or ``LINES`` is not defined, which is the common case, the terminal connected to :data:`sys.__stdout__` is queried by invoking :func:`os.get_terminal_size`." msgstr "" -#: ../../library/shutil.rst:900 -msgid "" -"If the terminal size cannot be successfully queried, either because the " -"system doesn't support querying, or because we are not connected to a " -"terminal, the value given in ``fallback`` parameter is used. ``fallback`` " -"defaults to ``(80, 24)`` which is the default size used by many terminal " -"emulators." +msgid "If the terminal size cannot be successfully queried, either because the system doesn't support querying, or because we are not connected to a terminal, the value given in ``fallback`` parameter is used. ``fallback`` defaults to ``(80, 24)`` which is the default size used by many terminal emulators." msgstr "" -#: ../../library/shutil.rst:906 msgid "The value returned is a named tuple of type :class:`os.terminal_size`." msgstr "" -#: ../../library/shutil.rst:908 -msgid "" -"See also: The Single UNIX Specification, Version 2, `Other Environment " -"Variables`_." +msgid "See also: The Single UNIX Specification, Version 2, `Other Environment Variables`_." msgstr "" -#: ../../library/shutil.rst:913 -msgid "" -"The ``fallback`` values are also used if :func:`os.get_terminal_size` " -"returns zeroes." +msgid "The ``fallback`` values are also used if :func:`os.get_terminal_size` returns zeroes." msgstr "" -#: ../../library/shutil.rst:12 msgid "file" msgstr "" -#: ../../library/shutil.rst:12 msgid "copying" msgstr "" -#: ../../library/shutil.rst:12 msgid "copying files" msgstr "" -#: ../../library/shutil.rst:311 msgid "directory" msgstr "" -#: ../../library/shutil.rst:311 msgid "deleting" msgstr "" diff --git a/library/signal.po b/library/signal.po index eb12bb73..339477b9 100644 --- a/library/signal.po +++ b/library/signal.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:13+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,811 +24,402 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/signal.rst:2 msgid ":mod:`!signal` --- Set handlers for asynchronous events" msgstr "" -#: ../../library/signal.rst:7 msgid "**Source code:** :source:`Lib/signal.py`" msgstr "" -#: ../../library/signal.rst:11 msgid "This module provides mechanisms to use signal handlers in Python." msgstr "" -#: ../../library/signal.rst:15 msgid "General rules" msgstr "" -#: ../../library/signal.rst:17 -msgid "" -"The :func:`signal.signal` function allows defining custom handlers to be " -"executed when a signal is received. A small number of default handlers are " -"installed: :const:`SIGPIPE` is ignored (so write errors on pipes and sockets " -"can be reported as ordinary Python exceptions) and :const:`SIGINT` is " -"translated into a :exc:`KeyboardInterrupt` exception if the parent process " -"has not changed it." +msgid "The :func:`signal.signal` function allows defining custom handlers to be executed when a signal is received. A small number of default handlers are installed: :const:`SIGPIPE` is ignored (so write errors on pipes and sockets can be reported as ordinary Python exceptions) and :const:`SIGINT` is translated into a :exc:`KeyboardInterrupt` exception if the parent process has not changed it." msgstr "" -#: ../../library/signal.rst:24 -msgid "" -"A handler for a particular signal, once set, remains installed until it is " -"explicitly reset (Python emulates the BSD style interface regardless of the " -"underlying implementation), with the exception of the handler " -"for :const:`SIGCHLD`, which follows the underlying implementation." +msgid "A handler for a particular signal, once set, remains installed until it is explicitly reset (Python emulates the BSD style interface regardless of the underlying implementation), with the exception of the handler for :const:`SIGCHLD`, which follows the underlying implementation." msgstr "" -#: ../../library/signal.rst:29 -msgid "" -"On WebAssembly platforms, signals are emulated and therefore behave " -"differently. Several functions and signals are not available on these " -"platforms." +msgid "On WebAssembly platforms, signals are emulated and therefore behave differently. Several functions and signals are not available on these platforms." msgstr "" -#: ../../library/signal.rst:34 msgid "Execution of Python signal handlers" msgstr "" -#: ../../library/signal.rst:36 -msgid "" -"A Python signal handler does not get executed inside the low-level (C) " -"signal handler. Instead, the low-level signal handler sets a flag which " -"tells the :term:`virtual machine` to execute the corresponding Python signal " -"handler at a later point (for example, at the next :term:`bytecode` " -"instruction). This has consequences:" +msgid "A Python signal handler does not get executed inside the low-level (C) signal handler. Instead, the low-level signal handler sets a flag which tells the :term:`virtual machine` to execute the corresponding Python signal handler at a later point (for example, at the next :term:`bytecode` instruction). This has consequences:" msgstr "" -#: ../../library/signal.rst:42 -msgid "" -"It makes little sense to catch synchronous errors like :const:`SIGFPE` " -"or :const:`SIGSEGV` that are caused by an invalid operation in C code. " -"Python will return from the signal handler to the C code, which is likely to " -"raise the same signal again, causing Python to apparently hang. From Python " -"3.3 onwards, you can use the :mod:`faulthandler` module to report on " -"synchronous errors." +msgid "It makes little sense to catch synchronous errors like :const:`SIGFPE` or :const:`SIGSEGV` that are caused by an invalid operation in C code. Python will return from the signal handler to the C code, which is likely to raise the same signal again, causing Python to apparently hang. From Python 3.3 onwards, you can use the :mod:`faulthandler` module to report on synchronous errors." msgstr "" -#: ../../library/signal.rst:49 -msgid "" -"A long-running calculation implemented purely in C (such as regular " -"expression matching on a large body of text) may run uninterrupted for an " -"arbitrary amount of time, regardless of any signals received. The Python " -"signal handlers will be called when the calculation finishes." +msgid "A long-running calculation implemented purely in C (such as regular expression matching on a large body of text) may run uninterrupted for an arbitrary amount of time, regardless of any signals received. The Python signal handlers will be called when the calculation finishes." msgstr "" -#: ../../library/signal.rst:54 -msgid "" -"If the handler raises an exception, it will be raised \"out of thin air\" in " -"the main thread. See the :ref:`note below ` for a " -"discussion." +msgid "If the handler raises an exception, it will be raised \"out of thin air\" in the main thread. See the :ref:`note below ` for a discussion." msgstr "" -#: ../../library/signal.rst:62 msgid "Signals and threads" msgstr "" -#: ../../library/signal.rst:64 -msgid "" -"Python signal handlers are always executed in the main Python thread of the " -"main interpreter, even if the signal was received in another thread. This " -"means that signals can't be used as a means of inter-thread communication. " -"You can use the synchronization primitives from the :mod:`threading` module " -"instead." +msgid "Python signal handlers are always executed in the main Python thread of the main interpreter, even if the signal was received in another thread. This means that signals can't be used as a means of inter-thread communication. You can use the synchronization primitives from the :mod:`threading` module instead." msgstr "" -#: ../../library/signal.rst:69 -msgid "" -"Besides, only the main thread of the main interpreter is allowed to set a " -"new signal handler." +msgid "Besides, only the main thread of the main interpreter is allowed to set a new signal handler." msgstr "" -#: ../../library/signal.rst:73 -msgid "" -"Synchronization primitives such as :class:`threading.Lock` should not be " -"used within signal handlers. Doing so can lead to unexpected deadlocks." +msgid "Synchronization primitives such as :class:`threading.Lock` should not be used within signal handlers. Doing so can lead to unexpected deadlocks." msgstr "" -#: ../../library/signal.rst:78 msgid "Module contents" msgstr "" -#: ../../library/signal.rst:80 -msgid "" -"signal (SIG*), handler (:const:`SIG_DFL`, :const:`SIG_IGN`) and sigmask " -"(:const:`SIG_BLOCK`, :const:`SIG_UNBLOCK`, :const:`SIG_SETMASK`) related " -"constants listed below were turned into :class:`enums ` " -"(:class:`Signals`, :class:`Handlers` and :class:`Sigmasks` " -"respectively). :func:`getsignal`, :func:`pthread_sigmask`, :func:`sigpending` " -"and :func:`sigwait` functions return human-readable :class:`enums " -"` as :class:`Signals` objects." +msgid "signal (SIG*), handler (:const:`SIG_DFL`, :const:`SIG_IGN`) and sigmask (:const:`SIG_BLOCK`, :const:`SIG_UNBLOCK`, :const:`SIG_SETMASK`) related constants listed below were turned into :class:`enums ` (:class:`Signals`, :class:`Handlers` and :class:`Sigmasks` respectively). :func:`getsignal`, :func:`pthread_sigmask`, :func:`sigpending` and :func:`sigwait` functions return human-readable :class:`enums ` as :class:`Signals` objects." msgstr "" -#: ../../library/signal.rst:90 msgid "The signal module defines three enums:" msgstr "" -#: ../../library/signal.rst:94 -msgid "" -":class:`enum.IntEnum` collection of SIG* constants and the CTRL_* constants." +msgid ":class:`enum.IntEnum` collection of SIG* constants and the CTRL_* constants." msgstr "" -#: ../../library/signal.rst:100 -msgid "" -":class:`enum.IntEnum` collection of the constants :const:`SIG_DFL` " -"and :const:`SIG_IGN`." +msgid ":class:`enum.IntEnum` collection of the constants :const:`SIG_DFL` and :const:`SIG_IGN`." +msgstr "" + +msgid ":class:`enum.IntEnum` collection of the constants :const:`SIG_BLOCK`, :const:`SIG_UNBLOCK` and :const:`SIG_SETMASK`." msgstr "" -#: ../../library/signal.rst:106 -msgid "" -":class:`enum.IntEnum` collection of the " -"constants :const:`SIG_BLOCK`, :const:`SIG_UNBLOCK` and :const:`SIG_SETMASK`." -msgstr "" - -#: ../../library/signal.rst:108 ../../library/signal.rst:141 -#: ../../library/signal.rst:147 ../../library/signal.rst:153 -#: ../../library/signal.rst:159 ../../library/signal.rst:165 -#: ../../library/signal.rst:171 ../../library/signal.rst:185 -#: ../../library/signal.rst:203 ../../library/signal.rst:211 -#: ../../library/signal.rst:217 ../../library/signal.rst:223 -#: ../../library/signal.rst:233 ../../library/signal.rst:240 -#: ../../library/signal.rst:255 ../../library/signal.rst:261 -#: ../../library/signal.rst:267 ../../library/signal.rst:273 -#: ../../library/signal.rst:279 ../../library/signal.rst:297 -#: ../../library/signal.rst:307 ../../library/signal.rst:386 -#: ../../library/signal.rst:425 ../../library/signal.rst:449 -#: ../../library/signal.rst:472 ../../library/signal.rst:506 -#: ../../library/signal.rst:536 ../../library/signal.rst:543 -#: ../../library/signal.rst:598 ../../library/signal.rst:640 -#: ../../library/signal.rst:655 ../../library/signal.rst:680 -#: ../../library/signal.rst:700 msgid "Availability" msgstr "" -#: ../../library/signal.rst:110 ../../library/signal.rst:508 -msgid "" -"See the man page :manpage:`sigprocmask(2)` and :manpage:`pthread_sigmask(3)` " -"for further information." +msgid "See the man page :manpage:`sigprocmask(2)` and :manpage:`pthread_sigmask(3)` for further information." msgstr "" -#: ../../library/signal.rst:116 msgid "The variables defined in the :mod:`!signal` module are:" msgstr "" -#: ../../library/signal.rst:121 -msgid "" -"This is one of two standard signal handling options; it will simply perform " -"the default function for the signal. For example, on most systems the " -"default action for :const:`SIGQUIT` is to dump core and exit, while the " -"default action for :const:`SIGCHLD` is to simply ignore it." +msgid "This is one of two standard signal handling options; it will simply perform the default function for the signal. For example, on most systems the default action for :const:`SIGQUIT` is to dump core and exit, while the default action for :const:`SIGCHLD` is to simply ignore it." msgstr "" -#: ../../library/signal.rst:129 -msgid "" -"This is another standard signal handler, which will simply ignore the given " -"signal." +msgid "This is another standard signal handler, which will simply ignore the given signal." msgstr "" -#: ../../library/signal.rst:135 msgid "Abort signal from :manpage:`abort(3)`." msgstr "" -#: ../../library/signal.rst:139 msgid "Timer signal from :manpage:`alarm(2)`." msgstr "" -#: ../../library/signal.rst:145 msgid "Interrupt from keyboard (CTRL + BREAK)." msgstr "" -#: ../../library/signal.rst:151 msgid "Bus error (bad memory access)." msgstr "" -#: ../../library/signal.rst:157 msgid "Child process stopped or terminated." msgstr "" -#: ../../library/signal.rst:163 msgid "Alias to :data:`SIGCHLD`." msgstr "" -#: ../../library/signal.rst:169 msgid "Continue the process if it is currently stopped" msgstr "" -#: ../../library/signal.rst:175 msgid "Floating-point exception. For example, division by zero." msgstr "" -#: ../../library/signal.rst:178 -msgid "" -":exc:`ZeroDivisionError` is raised when the second argument of a division or " -"modulo operation is zero." +msgid ":exc:`ZeroDivisionError` is raised when the second argument of a division or modulo operation is zero." msgstr "" -#: ../../library/signal.rst:183 -msgid "" -"Hangup detected on controlling terminal or death of controlling process." +msgid "Hangup detected on controlling terminal or death of controlling process." msgstr "" -#: ../../library/signal.rst:189 msgid "Illegal instruction." msgstr "" -#: ../../library/signal.rst:193 msgid "Interrupt from keyboard (CTRL + C)." msgstr "" -#: ../../library/signal.rst:195 msgid "Default action is to raise :exc:`KeyboardInterrupt`." msgstr "" -#: ../../library/signal.rst:199 msgid "Kill signal." msgstr "" -#: ../../library/signal.rst:201 msgid "It cannot be caught, blocked, or ignored." msgstr "" -#: ../../library/signal.rst:207 msgid "Broken pipe: write to pipe with no readers." msgstr "" -#: ../../library/signal.rst:209 msgid "Default action is to ignore the signal." msgstr "" -#: ../../library/signal.rst:215 msgid "Profiling timer expired." msgstr "" -#: ../../library/signal.rst:221 msgid "Terminal quit signal." msgstr "" -#: ../../library/signal.rst:227 msgid "Segmentation fault: invalid memory reference." msgstr "" -#: ../../library/signal.rst:231 msgid "Stop executing (cannot be caught or ignored)." msgstr "" -#: ../../library/signal.rst:237 -msgid "" -"Stack fault on coprocessor. The Linux kernel does not raise this signal: it " -"can only be raised in user space." +msgid "Stack fault on coprocessor. The Linux kernel does not raise this signal: it can only be raised in user space." msgstr "" -#: ../../library/signal.rst:242 -msgid "" -"On architectures where the signal is available. See the man " -"page :manpage:`signal(7)` for further information." +msgid "On architectures where the signal is available. See the man page :manpage:`signal(7)` for further information." msgstr "" -#: ../../library/signal.rst:249 msgid "Termination signal." msgstr "" -#: ../../library/signal.rst:253 msgid "User-defined signal 1." msgstr "" -#: ../../library/signal.rst:259 msgid "User-defined signal 2." msgstr "" -#: ../../library/signal.rst:265 msgid "Virtual timer expired." msgstr "" -#: ../../library/signal.rst:271 msgid "Window resize signal." msgstr "" -#: ../../library/signal.rst:277 msgid "CPU time limit exceeded." msgstr "" -#: ../../library/signal.rst:283 -msgid "" -"All the signal numbers are defined symbolically. For example, the hangup " -"signal is defined as :const:`signal.SIGHUP`; the variable names are " -"identical to the names used in C programs, as found in ````. The " -"Unix man page for '``signal``' lists the existing signals (on some systems " -"this is :manpage:`signal(2)`, on others the list is " -"in :manpage:`signal(7)`). Note that not all systems define the same set of " -"signal names; only those names defined by the system are defined by this " -"module." +msgid "All the signal numbers are defined symbolically. For example, the hangup signal is defined as :const:`signal.SIGHUP`; the variable names are identical to the names used in C programs, as found in ````. The Unix man page for '``signal``' lists the existing signals (on some systems this is :manpage:`signal(2)`, on others the list is in :manpage:`signal(7)`). Note that not all systems define the same set of signal names; only those names defined by the system are defined by this module." msgstr "" -#: ../../library/signal.rst:294 -msgid "" -"The signal corresponding to the :kbd:`Ctrl+C` keystroke event. This signal " -"can only be used with :func:`os.kill`." +msgid "The signal corresponding to the :kbd:`Ctrl+C` keystroke event. This signal can only be used with :func:`os.kill`." msgstr "" -#: ../../library/signal.rst:304 -msgid "" -"The signal corresponding to the :kbd:`Ctrl+Break` keystroke event. This " -"signal can only be used with :func:`os.kill`." +msgid "The signal corresponding to the :kbd:`Ctrl+Break` keystroke event. This signal can only be used with :func:`os.kill`." msgstr "" -#: ../../library/signal.rst:314 -msgid "" -"One more than the number of the highest signal number. " -"Use :func:`valid_signals` to get valid signal numbers." +msgid "One more than the number of the highest signal number. Use :func:`valid_signals` to get valid signal numbers." msgstr "" -#: ../../library/signal.rst:320 -msgid "" -"Decrements interval timer in real time, and delivers :const:`SIGALRM` upon " -"expiration." +msgid "Decrements interval timer in real time, and delivers :const:`SIGALRM` upon expiration." msgstr "" -#: ../../library/signal.rst:326 -msgid "" -"Decrements interval timer only when the process is executing, and delivers " -"SIGVTALRM upon expiration." +msgid "Decrements interval timer only when the process is executing, and delivers SIGVTALRM upon expiration." msgstr "" -#: ../../library/signal.rst:332 -msgid "" -"Decrements interval timer both when the process executes and when the system " -"is executing on behalf of the process. Coupled with ITIMER_VIRTUAL, this " -"timer is usually used to profile the time spent by the application in user " -"and kernel space. SIGPROF is delivered upon expiration." +msgid "Decrements interval timer both when the process executes and when the system is executing on behalf of the process. Coupled with ITIMER_VIRTUAL, this timer is usually used to profile the time spent by the application in user and kernel space. SIGPROF is delivered upon expiration." msgstr "" -#: ../../library/signal.rst:340 -msgid "" -"A possible value for the *how* parameter to :func:`pthread_sigmask` " -"indicating that signals are to be blocked." +msgid "A possible value for the *how* parameter to :func:`pthread_sigmask` indicating that signals are to be blocked." msgstr "" -#: ../../library/signal.rst:347 -msgid "" -"A possible value for the *how* parameter to :func:`pthread_sigmask` " -"indicating that signals are to be unblocked." +msgid "A possible value for the *how* parameter to :func:`pthread_sigmask` indicating that signals are to be unblocked." msgstr "" -#: ../../library/signal.rst:354 -msgid "" -"A possible value for the *how* parameter to :func:`pthread_sigmask` " -"indicating that the signal mask is to be replaced." +msgid "A possible value for the *how* parameter to :func:`pthread_sigmask` indicating that the signal mask is to be replaced." msgstr "" -#: ../../library/signal.rst:360 msgid "The :mod:`!signal` module defines one exception:" msgstr "" -#: ../../library/signal.rst:364 -msgid "" -"Raised to signal an error from the underlying :func:`setitimer` " -"or :func:`getitimer` implementation. Expect this error if an invalid " -"interval timer or a negative time is passed to :func:`setitimer`. This error " -"is a subtype of :exc:`OSError`." +msgid "Raised to signal an error from the underlying :func:`setitimer` or :func:`getitimer` implementation. Expect this error if an invalid interval timer or a negative time is passed to :func:`setitimer`. This error is a subtype of :exc:`OSError`." msgstr "" -#: ../../library/signal.rst:369 -msgid "" -"This error used to be a subtype of :exc:`IOError`, which is now an alias " -"of :exc:`OSError`." +msgid "This error used to be a subtype of :exc:`IOError`, which is now an alias of :exc:`OSError`." msgstr "" -#: ../../library/signal.rst:374 msgid "The :mod:`!signal` module defines the following functions:" msgstr "" -#: ../../library/signal.rst:379 -msgid "" -"If *time* is non-zero, this function requests that a :const:`SIGALRM` signal " -"be sent to the process in *time* seconds. Any previously scheduled alarm is " -"canceled (only one alarm can be scheduled at any time). The returned value " -"is then the number of seconds before any previously set alarm was to have " -"been delivered. If *time* is zero, no alarm is scheduled, and any scheduled " -"alarm is canceled. If the return value is zero, no alarm is currently " -"scheduled." +msgid "If *time* is non-zero, this function requests that a :const:`SIGALRM` signal be sent to the process in *time* seconds. Any previously scheduled alarm is canceled (only one alarm can be scheduled at any time). The returned value is then the number of seconds before any previously set alarm was to have been delivered. If *time* is zero, no alarm is scheduled, and any scheduled alarm is canceled. If the return value is zero, no alarm is currently scheduled." msgstr "" -#: ../../library/signal.rst:388 msgid "See the man page :manpage:`alarm(2)` for further information." msgstr "" -#: ../../library/signal.rst:393 -msgid "" -"Return the current signal handler for the signal *signalnum*. The returned " -"value may be a callable Python object, or one of the special " -"values :const:`signal.SIG_IGN`, :const:`signal.SIG_DFL` or :const:`None`. " -"Here, :const:`signal.SIG_IGN` means that the signal was previously " -"ignored, :const:`signal.SIG_DFL` means that the default way of handling the " -"signal was previously in use, and ``None`` means that the previous signal " -"handler was not installed from Python." +msgid "Return the current signal handler for the signal *signalnum*. The returned value may be a callable Python object, or one of the special values :const:`signal.SIG_IGN`, :const:`signal.SIG_DFL` or :const:`None`. Here, :const:`signal.SIG_IGN` means that the signal was previously ignored, :const:`signal.SIG_DFL` means that the default way of handling the signal was previously in use, and ``None`` means that the previous signal handler was not installed from Python." msgstr "" -#: ../../library/signal.rst:404 -msgid "" -"Returns the description of signal *signalnum*, such as \"Interrupt\" " -"for :const:`SIGINT`. Returns :const:`None` if *signalnum* has no " -"description. Raises :exc:`ValueError` if *signalnum* is invalid." +msgid "Returns the description of signal *signalnum*, such as \"Interrupt\" for :const:`SIGINT`. Returns :const:`None` if *signalnum* has no description. Raises :exc:`ValueError` if *signalnum* is invalid." msgstr "" -#: ../../library/signal.rst:413 -msgid "" -"Return the set of valid signal numbers on this platform. This can be less " -"than ``range(1, NSIG)`` if some signals are reserved by the system for " -"internal use." +msgid "Return the set of valid signal numbers on this platform. This can be less than ``range(1, NSIG)`` if some signals are reserved by the system for internal use." msgstr "" -#: ../../library/signal.rst:422 -msgid "" -"Cause the process to sleep until a signal is received; the appropriate " -"handler will then be called. Returns nothing." +msgid "Cause the process to sleep until a signal is received; the appropriate handler will then be called. Returns nothing." msgstr "" -#: ../../library/signal.rst:427 msgid "See the man page :manpage:`signal(2)` for further information." msgstr "" -#: ../../library/signal.rst:429 -msgid "" -"See also :func:`sigwait`, :func:`sigwaitinfo`, :func:`sigtimedwait` " -"and :func:`sigpending`." +msgid "See also :func:`sigwait`, :func:`sigwaitinfo`, :func:`sigtimedwait` and :func:`sigpending`." msgstr "" -#: ../../library/signal.rst:435 msgid "Sends a signal to the calling process. Returns nothing." msgstr "" -#: ../../library/signal.rst:442 -msgid "" -"Send signal *sig* to the process referred to by file descriptor *pidfd*. " -"Python does not currently support the *siginfo* parameter; it must be " -"``None``. The *flags* argument is provided for future extensions; no flag " -"values are currently defined." +msgid "Send signal *sig* to the process referred to by file descriptor *pidfd*. Python does not currently support the *siginfo* parameter; it must be ``None``. The *flags* argument is provided for future extensions; no flag values are currently defined." msgstr "" -#: ../../library/signal.rst:447 msgid "See the :manpage:`pidfd_send_signal(2)` man page for more information." msgstr "" -#: ../../library/signal.rst:455 -msgid "" -"Send the signal *signalnum* to the thread *thread_id*, another thread in the " -"same process as the caller. The target thread can be executing any code " -"(Python or not). However, if the target thread is executing the Python " -"interpreter, the Python signal handlers will be :ref:`executed by the main " -"thread of the main interpreter `. Therefore, the only " -"point of sending a signal to a particular Python thread would be to force a " -"running system call to fail with :exc:`InterruptedError`." +msgid "Send the signal *signalnum* to the thread *thread_id*, another thread in the same process as the caller. The target thread can be executing any code (Python or not). However, if the target thread is executing the Python interpreter, the Python signal handlers will be :ref:`executed by the main thread of the main interpreter `. Therefore, the only point of sending a signal to a particular Python thread would be to force a running system call to fail with :exc:`InterruptedError`." msgstr "" -#: ../../library/signal.rst:463 -msgid "" -"Use :func:`threading.get_ident` or the :attr:`~threading.Thread.ident` " -"attribute of :class:`threading.Thread` objects to get a suitable value for " -"*thread_id*." +msgid "Use :func:`threading.get_ident` or the :attr:`~threading.Thread.ident` attribute of :class:`threading.Thread` objects to get a suitable value for *thread_id*." msgstr "" -#: ../../library/signal.rst:467 -msgid "" -"If *signalnum* is 0, then no signal is sent, but error checking is still " -"performed; this can be used to check if the target thread is still running." +msgid "If *signalnum* is 0, then no signal is sent, but error checking is still performed; this can be used to check if the target thread is still running." msgstr "" -#: ../../library/signal.rst:470 -msgid "" -"Raises an :ref:`auditing event ` ``signal.pthread_kill`` with " -"arguments ``thread_id``, ``signalnum``." +msgid "Raises an :ref:`auditing event ` ``signal.pthread_kill`` with arguments ``thread_id``, ``signalnum``." msgstr "" -#: ../../library/signal.rst:474 msgid "See the man page :manpage:`pthread_kill(3)` for further information." msgstr "" -#: ../../library/signal.rst:476 msgid "See also :func:`os.kill`." msgstr "" -#: ../../library/signal.rst:483 -msgid "" -"Fetch and/or change the signal mask of the calling thread. The signal mask " -"is the set of signals whose delivery is currently blocked for the caller. " -"Return the old signal mask as a set of signals." +msgid "Fetch and/or change the signal mask of the calling thread. The signal mask is the set of signals whose delivery is currently blocked for the caller. Return the old signal mask as a set of signals." msgstr "" -#: ../../library/signal.rst:487 -msgid "" -"The behavior of the call is dependent on the value of *how*, as follows." +msgid "The behavior of the call is dependent on the value of *how*, as follows." msgstr "" -#: ../../library/signal.rst:489 -msgid "" -":data:`SIG_BLOCK`: The set of blocked signals is the union of the current " -"set and the *mask* argument." +msgid ":data:`SIG_BLOCK`: The set of blocked signals is the union of the current set and the *mask* argument." msgstr "" -#: ../../library/signal.rst:491 -msgid "" -":data:`SIG_UNBLOCK`: The signals in *mask* are removed from the current set " -"of blocked signals. It is permissible to attempt to unblock a signal which " -"is not blocked." +msgid ":data:`SIG_UNBLOCK`: The signals in *mask* are removed from the current set of blocked signals. It is permissible to attempt to unblock a signal which is not blocked." msgstr "" -#: ../../library/signal.rst:494 -msgid "" -":data:`SIG_SETMASK`: The set of blocked signals is set to the *mask* " -"argument." +msgid ":data:`SIG_SETMASK`: The set of blocked signals is set to the *mask* argument." msgstr "" -#: ../../library/signal.rst:497 -msgid "" -"*mask* is a set of signal numbers (e.g. " -"{:const:`signal.SIGINT`, :const:`signal.SIGTERM`}). " -"Use :func:`~signal.valid_signals` for a full mask including all signals." +msgid "*mask* is a set of signal numbers (e.g. {:const:`signal.SIGINT`, :const:`signal.SIGTERM`}). Use :func:`~signal.valid_signals` for a full mask including all signals." msgstr "" -#: ../../library/signal.rst:501 -msgid "" -"For example, ``signal.pthread_sigmask(signal.SIG_BLOCK, [])`` reads the " -"signal mask of the calling thread." +msgid "For example, ``signal.pthread_sigmask(signal.SIG_BLOCK, [])`` reads the signal mask of the calling thread." msgstr "" -#: ../../library/signal.rst:504 msgid ":data:`SIGKILL` and :data:`SIGSTOP` cannot be blocked." msgstr "" -#: ../../library/signal.rst:511 msgid "See also :func:`pause`, :func:`sigpending` and :func:`sigwait`." msgstr "" -#: ../../library/signal.rst:518 -msgid "" -"Sets given interval timer (one " -"of :const:`signal.ITIMER_REAL`, :const:`signal.ITIMER_VIRTUAL` " -"or :const:`signal.ITIMER_PROF`) specified by *which* to fire after *seconds* " -"(float is accepted, different from :func:`alarm`) and after that every " -"*interval* seconds (if *interval* is non-zero). The interval timer specified " -"by *which* can be cleared by setting *seconds* to zero." +msgid "Sets given interval timer (one of :const:`signal.ITIMER_REAL`, :const:`signal.ITIMER_VIRTUAL` or :const:`signal.ITIMER_PROF`) specified by *which* to fire after *seconds* (float is accepted, different from :func:`alarm`) and after that every *interval* seconds (if *interval* is non-zero). The interval timer specified by *which* can be cleared by setting *seconds* to zero." msgstr "" -#: ../../library/signal.rst:525 -msgid "" -"When an interval timer fires, a signal is sent to the process. The signal " -"sent is dependent on the timer being used; :const:`signal.ITIMER_REAL` will " -"deliver :const:`SIGALRM`, :const:`signal.ITIMER_VIRTUAL` " -"sends :const:`SIGVTALRM`, and :const:`signal.ITIMER_PROF` will " -"deliver :const:`SIGPROF`." +msgid "When an interval timer fires, a signal is sent to the process. The signal sent is dependent on the timer being used; :const:`signal.ITIMER_REAL` will deliver :const:`SIGALRM`, :const:`signal.ITIMER_VIRTUAL` sends :const:`SIGVTALRM`, and :const:`signal.ITIMER_PROF` will deliver :const:`SIGPROF`." msgstr "" -#: ../../library/signal.rst:531 msgid "The old values are returned as a tuple: (delay, interval)." msgstr "" -#: ../../library/signal.rst:533 -msgid "" -"Attempting to pass an invalid interval timer will cause " -"an :exc:`ItimerError`." +msgid "Attempting to pass an invalid interval timer will cause an :exc:`ItimerError`." msgstr "" -#: ../../library/signal.rst:541 msgid "Returns current value of a given interval timer specified by *which*." msgstr "" -#: ../../library/signal.rst:548 -msgid "" -"Set the wakeup file descriptor to *fd*. When a signal your program has " -"registered a signal handler for is received, the signal number is written as " -"a single byte into the fd. If you haven't registered a signal handler for " -"the signals you care about, then nothing will be written to the wakeup fd. " -"This can be used by a library to wakeup a poll or select call, allowing the " -"signal to be fully processed." +msgid "Set the wakeup file descriptor to *fd*. When a signal your program has registered a signal handler for is received, the signal number is written as a single byte into the fd. If you haven't registered a signal handler for the signals you care about, then nothing will be written to the wakeup fd. This can be used by a library to wakeup a poll or select call, allowing the signal to be fully processed." msgstr "" -#: ../../library/signal.rst:555 -msgid "" -"The old wakeup fd is returned (or -1 if file descriptor wakeup was not " -"enabled). If *fd* is -1, file descriptor wakeup is disabled. If not -1, " -"*fd* must be non-blocking. It is up to the library to remove any bytes from " -"*fd* before calling poll or select again." +msgid "The old wakeup fd is returned (or -1 if file descriptor wakeup was not enabled). If *fd* is -1, file descriptor wakeup is disabled. If not -1, *fd* must be non-blocking. It is up to the library to remove any bytes from *fd* before calling poll or select again." msgstr "" -#: ../../library/signal.rst:560 ../../library/signal.rst:615 -msgid "" -"When threads are enabled, this function can only be called from :ref:`the " -"main thread of the main interpreter `; attempting to " -"call it from other threads will cause a :exc:`ValueError` exception to be " -"raised." +msgid "When threads are enabled, this function can only be called from :ref:`the main thread of the main interpreter `; attempting to call it from other threads will cause a :exc:`ValueError` exception to be raised." msgstr "" -#: ../../library/signal.rst:565 -msgid "" -"There are two common ways to use this function. In both approaches, you use " -"the fd to wake up when a signal arrives, but then they differ in how they " -"determine *which* signal or signals have arrived." +msgid "There are two common ways to use this function. In both approaches, you use the fd to wake up when a signal arrives, but then they differ in how they determine *which* signal or signals have arrived." msgstr "" -#: ../../library/signal.rst:570 -msgid "" -"In the first approach, we read the data out of the fd's buffer, and the byte " -"values give you the signal numbers. This is simple, but in rare cases it can " -"run into a problem: generally the fd will have a limited amount of buffer " -"space, and if too many signals arrive too quickly, then the buffer may " -"become full, and some signals may be lost. If you use this approach, then " -"you should set ``warn_on_full_buffer=True``, which will at least cause a " -"warning to be printed to stderr when signals are lost." +msgid "In the first approach, we read the data out of the fd's buffer, and the byte values give you the signal numbers. This is simple, but in rare cases it can run into a problem: generally the fd will have a limited amount of buffer space, and if too many signals arrive too quickly, then the buffer may become full, and some signals may be lost. If you use this approach, then you should set ``warn_on_full_buffer=True``, which will at least cause a warning to be printed to stderr when signals are lost." msgstr "" -#: ../../library/signal.rst:579 -msgid "" -"In the second approach, we use the wakeup fd *only* for wakeups, and ignore " -"the actual byte values. In this case, all we care about is whether the fd's " -"buffer is empty or non-empty; a full buffer doesn't indicate a problem at " -"all. If you use this approach, then you should set " -"``warn_on_full_buffer=False``, so that your users are not confused by " -"spurious warning messages." +msgid "In the second approach, we use the wakeup fd *only* for wakeups, and ignore the actual byte values. In this case, all we care about is whether the fd's buffer is empty or non-empty; a full buffer doesn't indicate a problem at all. If you use this approach, then you should set ``warn_on_full_buffer=False``, so that your users are not confused by spurious warning messages." msgstr "" -#: ../../library/signal.rst:586 msgid "On Windows, the function now also supports socket handles." msgstr "" -#: ../../library/signal.rst:589 msgid "Added ``warn_on_full_buffer`` parameter." msgstr "" -#: ../../library/signal.rst:594 -msgid "" -"Change system call restart behaviour: if *flag* is :const:`False`, system " -"calls will be restarted when interrupted by signal *signalnum*, otherwise " -"system calls will be interrupted. Returns nothing." +msgid "Change system call restart behaviour: if *flag* is :const:`False`, system calls will be restarted when interrupted by signal *signalnum*, otherwise system calls will be interrupted. Returns nothing." msgstr "" -#: ../../library/signal.rst:600 msgid "See the man page :manpage:`siginterrupt(3)` for further information." msgstr "" -#: ../../library/signal.rst:602 -msgid "" -"Note that installing a signal handler with :func:`signal` will reset the " -"restart behaviour to interruptible by implicitly calling :c:func:`!" -"siginterrupt` with a true *flag* value for the given signal." +msgid "Note that installing a signal handler with :func:`signal` will reset the restart behaviour to interruptible by implicitly calling :c:func:`!siginterrupt` with a true *flag* value for the given signal." msgstr "" -#: ../../library/signal.rst:609 -msgid "" -"Set the handler for signal *signalnum* to the function *handler*. *handler* " -"can be a callable Python object taking two arguments (see below), or one of " -"the special values :const:`signal.SIG_IGN` or :const:`signal.SIG_DFL`. The " -"previous signal handler will be returned (see the description " -"of :func:`getsignal` above). (See the Unix man page :manpage:`signal(2)` " -"for further information.)" +msgid "Set the handler for signal *signalnum* to the function *handler*. *handler* can be a callable Python object taking two arguments (see below), or one of the special values :const:`signal.SIG_IGN` or :const:`signal.SIG_DFL`. The previous signal handler will be returned (see the description of :func:`getsignal` above). (See the Unix man page :manpage:`signal(2)` for further information.)" msgstr "" -#: ../../library/signal.rst:620 -msgid "" -"The *handler* is called with two arguments: the signal number and the " -"current stack frame (``None`` or a frame object; for a description of frame " -"objects, see the :ref:`description in the type hierarchy ` or " -"see the attribute descriptions in the :mod:`inspect` module)." +msgid "The *handler* is called with two arguments: the signal number and the current stack frame (``None`` or a frame object; for a description of frame objects, see the :ref:`description in the type hierarchy ` or see the attribute descriptions in the :mod:`inspect` module)." msgstr "" -#: ../../library/signal.rst:625 -msgid "" -"On Windows, :func:`signal` can only be called " -"with :const:`SIGABRT`, :const:`SIGFPE`, :const:`SIGILL`, :const:`SIGINT`, :const:`SIGSEGV`, :const:`SIGTERM`, " -"or :const:`SIGBREAK`. A :exc:`ValueError` will be raised in any other case. " -"Note that not all systems define the same set of signal names; " -"an :exc:`AttributeError` will be raised if a signal name is not defined as " -"``SIG*`` module level constant." +msgid "On Windows, :func:`signal` can only be called with :const:`SIGABRT`, :const:`SIGFPE`, :const:`SIGILL`, :const:`SIGINT`, :const:`SIGSEGV`, :const:`SIGTERM`, or :const:`SIGBREAK`. A :exc:`ValueError` will be raised in any other case. Note that not all systems define the same set of signal names; an :exc:`AttributeError` will be raised if a signal name is not defined as ``SIG*`` module level constant." msgstr "" -#: ../../library/signal.rst:636 -msgid "" -"Examine the set of signals that are pending for delivery to the calling " -"thread (i.e., the signals which have been raised while blocked). Return the " -"set of the pending signals." +msgid "Examine the set of signals that are pending for delivery to the calling thread (i.e., the signals which have been raised while blocked). Return the set of the pending signals." msgstr "" -#: ../../library/signal.rst:642 msgid "See the man page :manpage:`sigpending(2)` for further information." msgstr "" -#: ../../library/signal.rst:644 msgid "See also :func:`pause`, :func:`pthread_sigmask` and :func:`sigwait`." msgstr "" -#: ../../library/signal.rst:651 -msgid "" -"Suspend execution of the calling thread until the delivery of one of the " -"signals specified in the signal set *sigset*. The function accepts the " -"signal (removes it from the pending list of signals), and returns the signal " -"number." +msgid "Suspend execution of the calling thread until the delivery of one of the signals specified in the signal set *sigset*. The function accepts the signal (removes it from the pending list of signals), and returns the signal number." msgstr "" -#: ../../library/signal.rst:657 msgid "See the man page :manpage:`sigwait(3)` for further information." msgstr "" -#: ../../library/signal.rst:659 -msgid "" -"See " -"also :func:`pause`, :func:`pthread_sigmask`, :func:`sigpending`, :func:`sigwaitinfo` " -"and :func:`sigtimedwait`." +msgid "See also :func:`pause`, :func:`pthread_sigmask`, :func:`sigpending`, :func:`sigwaitinfo` and :func:`sigtimedwait`." msgstr "" -#: ../../library/signal.rst:667 -msgid "" -"Suspend execution of the calling thread until the delivery of one of the " -"signals specified in the signal set *sigset*. The function accepts the " -"signal and removes it from the pending list of signals. If one of the " -"signals in *sigset* is already pending for the calling thread, the function " -"will return immediately with information about that signal. The signal " -"handler is not called for the delivered signal. The function raises " -"an :exc:`InterruptedError` if it is interrupted by a signal that is not in " -"*sigset*." +msgid "Suspend execution of the calling thread until the delivery of one of the signals specified in the signal set *sigset*. The function accepts the signal and removes it from the pending list of signals. If one of the signals in *sigset* is already pending for the calling thread, the function will return immediately with information about that signal. The signal handler is not called for the delivered signal. The function raises an :exc:`InterruptedError` if it is interrupted by a signal that is not in *sigset*." msgstr "" -#: ../../library/signal.rst:676 -msgid "" -"The return value is an object representing the data contained in the " -"``siginfo_t`` structure, namely: ``si_signo``, ``si_code``, ``si_errno``, " -"``si_pid``, ``si_uid``, ``si_status``, ``si_band``." +msgid "The return value is an object representing the data contained in the ``siginfo_t`` structure, namely: ``si_signo``, ``si_code``, ``si_errno``, ``si_pid``, ``si_uid``, ``si_status``, ``si_band``." msgstr "" -#: ../../library/signal.rst:682 msgid "See the man page :manpage:`sigwaitinfo(2)` for further information." msgstr "" -#: ../../library/signal.rst:684 msgid "See also :func:`pause`, :func:`sigwait` and :func:`sigtimedwait`." msgstr "" -#: ../../library/signal.rst:688 -msgid "" -"The function is now retried if interrupted by a signal not in *sigset* and " -"the signal handler does not raise an exception (see :pep:`475` for the " -"rationale)." +msgid "The function is now retried if interrupted by a signal not in *sigset* and the signal handler does not raise an exception (see :pep:`475` for the rationale)." msgstr "" -#: ../../library/signal.rst:696 -msgid "" -"Like :func:`sigwaitinfo`, but takes an additional *timeout* argument " -"specifying a timeout. If *timeout* is specified as ``0``, a poll is " -"performed. Returns :const:`None` if a timeout occurs." +msgid "Like :func:`sigwaitinfo`, but takes an additional *timeout* argument specifying a timeout. If *timeout* is specified as ``0``, a poll is performed. Returns :const:`None` if a timeout occurs." msgstr "" -#: ../../library/signal.rst:702 msgid "See the man page :manpage:`sigtimedwait(2)` for further information." msgstr "" -#: ../../library/signal.rst:704 msgid "See also :func:`pause`, :func:`sigwait` and :func:`sigwaitinfo`." msgstr "" -#: ../../library/signal.rst:708 -msgid "" -"The function is now retried with the recomputed *timeout* if interrupted by " -"a signal not in *sigset* and the signal handler does not raise an exception " -"(see :pep:`475` for the rationale)." +msgid "The function is now retried with the recomputed *timeout* if interrupted by a signal not in *sigset* and the signal handler does not raise an exception (see :pep:`475` for the rationale)." msgstr "" -#: ../../library/signal.rst:717 msgid "Examples" msgstr "" -#: ../../library/signal.rst:719 -msgid "" -"Here is a minimal example program. It uses the :func:`alarm` function to " -"limit the time spent waiting to open a file; this is useful if the file is " -"for a serial device that may not be turned on, which would normally cause " -"the :func:`os.open` to hang indefinitely. The solution is to set a 5-second " -"alarm before opening the file; if the operation takes too long, the alarm " -"signal will be sent, and the handler raises an exception. ::" +msgid "Here is a minimal example program. It uses the :func:`alarm` function to limit the time spent waiting to open a file; this is useful if the file is for a serial device that may not be turned on, which would normally cause the :func:`os.open` to hang indefinitely. The solution is to set a 5-second alarm before opening the file; if the operation takes too long, the alarm signal will be sent, and the handler raises an exception. ::" msgstr "" -#: ../../library/signal.rst:726 msgid "" "import signal, os\n" "\n" @@ -847,20 +438,12 @@ msgid "" "signal.alarm(0) # Disable the alarm" msgstr "" -#: ../../library/signal.rst:743 msgid "Note on SIGPIPE" msgstr "" -#: ../../library/signal.rst:745 -msgid "" -"Piping output of your program to tools like :manpage:`head(1)` will cause " -"a :const:`SIGPIPE` signal to be sent to your process when the receiver of " -"its standard output closes early. This results in an exception " -"like :code:`BrokenPipeError: [Errno 32] Broken pipe`. To handle this case, " -"wrap your entry point to catch this exception as follows::" +msgid "Piping output of your program to tools like :manpage:`head(1)` will cause a :const:`SIGPIPE` signal to be sent to your process when the receiver of its standard output closes early. This results in an exception like :code:`BrokenPipeError: [Errno 32] Broken pipe`. To handle this case, wrap your entry point to catch this exception as follows::" msgstr "" -#: ../../library/signal.rst:751 msgid "" "import os\n" "import sys\n" @@ -874,8 +457,7 @@ msgid "" " # while inside this try block.\n" " sys.stdout.flush()\n" " except BrokenPipeError:\n" -" # Python flushes standard streams on exit; redirect remaining " -"output\n" +" # Python flushes standard streams on exit; redirect remaining output\n" " # to devnull to avoid another BrokenPipeError at shutdown\n" " devnull = os.open(os.devnull, os.O_WRONLY)\n" " os.dup2(devnull, sys.stdout.fileno())\n" @@ -885,34 +467,18 @@ msgid "" " main()" msgstr "" -#: ../../library/signal.rst:772 -msgid "" -"Do not set :const:`SIGPIPE`'s disposition to :const:`SIG_DFL` in order to " -"avoid :exc:`BrokenPipeError`. Doing that would cause your program to exit " -"unexpectedly whenever any socket connection is interrupted while your " -"program is still writing to it." +msgid "Do not set :const:`SIGPIPE`'s disposition to :const:`SIG_DFL` in order to avoid :exc:`BrokenPipeError`. Doing that would cause your program to exit unexpectedly whenever any socket connection is interrupted while your program is still writing to it." msgstr "" -#: ../../library/signal.rst:781 msgid "Note on Signal Handlers and Exceptions" msgstr "" -#: ../../library/signal.rst:783 -msgid "" -"If a signal handler raises an exception, the exception will be propagated to " -"the main thread and may be raised after any :term:`bytecode` instruction. " -"Most notably, a :exc:`KeyboardInterrupt` may appear at any point during " -"execution. Most Python code, including the standard library, cannot be made " -"robust against this, and so a :exc:`KeyboardInterrupt` (or any other " -"exception resulting from a signal handler) may on rare occasions put the " -"program in an unexpected state." +msgid "If a signal handler raises an exception, the exception will be propagated to the main thread and may be raised after any :term:`bytecode` instruction. Most notably, a :exc:`KeyboardInterrupt` may appear at any point during execution. Most Python code, including the standard library, cannot be made robust against this, and so a :exc:`KeyboardInterrupt` (or any other exception resulting from a signal handler) may on rare occasions put the program in an unexpected state." msgstr "" -#: ../../library/signal.rst:790 msgid "To illustrate this issue, consider the following code::" msgstr "" -#: ../../library/signal.rst:792 msgid "" "class SpamContext:\n" " def __init__(self):\n" @@ -930,18 +496,9 @@ msgid "" " self.lock.release()" msgstr "" -#: ../../library/signal.rst:807 -msgid "" -"For many programs, especially those that merely want to exit " -"on :exc:`KeyboardInterrupt`, this is not a problem, but applications that " -"are complex or require high reliability should avoid raising exceptions from " -"signal handlers. They should also avoid catching :exc:`KeyboardInterrupt` as " -"a means of gracefully shutting down. Instead, they should install their " -"own :const:`SIGINT` handler. Below is an example of an HTTP server that " -"avoids :exc:`KeyboardInterrupt`::" +msgid "For many programs, especially those that merely want to exit on :exc:`KeyboardInterrupt`, this is not a problem, but applications that are complex or require high reliability should avoid raising exceptions from signal handlers. They should also avoid catching :exc:`KeyboardInterrupt` as a means of gracefully shutting down. Instead, they should install their own :const:`SIGINT` handler. Below is an example of an HTTP server that avoids :exc:`KeyboardInterrupt`::" msgstr "" -#: ../../library/signal.rst:815 msgid "" "import signal\n" "import socket\n" diff --git a/library/site.po b/library/site.po index b5883fba..90b72acb 100644 --- a/library/site.po +++ b/library/site.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:13+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,124 +24,48 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/site.rst:2 msgid ":mod:`!site` --- Site-specific configuration hook" msgstr "" -#: ../../library/site.rst:7 msgid "**Source code:** :source:`Lib/site.py`" msgstr "" -#: ../../library/site.rst:13 -msgid "" -"**This module is automatically imported during initialization.** The " -"automatic import can be suppressed using the interpreter's :option:`-S` " -"option." +msgid "**This module is automatically imported during initialization.** The automatic import can be suppressed using the interpreter's :option:`-S` option." msgstr "" -#: ../../library/site.rst:18 -msgid "" -"Importing this module normally appends site-specific paths to the module " -"search path and adds :ref:`callables `, including :func:`help` " -"to the built-in namespace. However, Python startup option :option:`-S` " -"blocks this and this module can be safely imported with no automatic " -"modifications to the module search path or additions to the builtins. To " -"explicitly trigger the usual site-specific additions, call the :func:`main` " -"function." +msgid "Importing this module normally appends site-specific paths to the module search path and adds :ref:`callables `, including :func:`help` to the built-in namespace. However, Python startup option :option:`-S` blocks this and this module can be safely imported with no automatic modifications to the module search path or additions to the builtins. To explicitly trigger the usual site-specific additions, call the :func:`main` function." msgstr "" -#: ../../library/site.rst:25 -msgid "" -"Importing the module used to trigger paths manipulation even when " -"using :option:`-S`." +msgid "Importing the module used to trigger paths manipulation even when using :option:`-S`." +msgstr "" + +msgid "It starts by constructing up to four directories from a head and a tail part. For the head part, it uses ``sys.prefix`` and ``sys.exec_prefix``; empty heads are skipped. For the tail part, it uses the empty string and then :file:`lib/site-packages` (on Windows) or :file:`lib/python{X.Y[t]}/site-packages` (on Unix and macOS). (The optional suffix \"t\" indicates the :term:`free-threaded build`, and is appended if ``\"t\"`` is present in the :data:`sys.abiflags` constant.) For each of the distinct head-tail combinations, it sees if it refers to an existing directory, and if so, adds it to ``sys.path`` and also inspects the newly added path for configuration files." msgstr "" -#: ../../library/site.rst:32 -msgid "" -"It starts by constructing up to four directories from a head and a tail " -"part. For the head part, it uses ``sys.prefix`` and ``sys.exec_prefix``; " -"empty heads are skipped. For the tail part, it uses the empty string and " -"then :file:`lib/site-packages` (on Windows) or :file:`lib/python{X.Y[t]}/" -"site-packages` (on Unix and macOS). (The optional suffix \"t\" indicates " -"the :term:`free-threaded build`, and is appended if ``\"t\"`` is present in " -"the :data:`sys.abiflags` constant.) For each of the distinct head-tail " -"combinations, it sees if it refers to an existing directory, and if so, adds " -"it to ``sys.path`` and also inspects the newly added path for configuration " -"files." -msgstr "" - -#: ../../library/site.rst:44 msgid "Support for the \"site-python\" directory has been removed." msgstr "" -#: ../../library/site.rst:47 -msgid "" -"On Unix, :term:`Free threading ` Python installations are " -"identified by the \"t\" suffix in the version-specific directory name, such " -"as :file:`lib/python3.13t/`." +msgid "On Unix, :term:`Free threading ` Python installations are identified by the \"t\" suffix in the version-specific directory name, such as :file:`lib/python3.13t/`." msgstr "" -#: ../../library/site.rst:54 -msgid "" -":mod:`!site` is no longer responsible for updating :data:`sys.prefix` " -"and :data:`sys.exec_prefix` on :ref:`sys-path-init-virtual-environments`. " -"This is now done during the :ref:`path initialization `. As a " -"result, under :ref:`sys-path-init-virtual-environments`, :data:`sys.prefix` " -"and :data:`sys.exec_prefix` no longer depend on the :mod:`!site` " -"initialization, and are therefore unaffected by :option:`-S`." +msgid ":mod:`!site` is no longer responsible for updating :data:`sys.prefix` and :data:`sys.exec_prefix` on :ref:`sys-path-init-virtual-environments`. This is now done during the :ref:`path initialization `. As a result, under :ref:`sys-path-init-virtual-environments`, :data:`sys.prefix` and :data:`sys.exec_prefix` no longer depend on the :mod:`!site` initialization, and are therefore unaffected by :option:`-S`." msgstr "" -#: ../../library/site.rst:63 -msgid "" -"When running under a :ref:`virtual environment `, the ``pyvenv.cfg`` file in :data:`sys.prefix` is checked for " -"site-specific configurations. If the ``include-system-site-packages`` key " -"exists and is set to ``true`` (case-insensitive), the system-level prefixes " -"will be searched for site-packages, otherwise they won't." +msgid "When running under a :ref:`virtual environment `, the ``pyvenv.cfg`` file in :data:`sys.prefix` is checked for site-specific configurations. If the ``include-system-site-packages`` key exists and is set to ``true`` (case-insensitive), the system-level prefixes will be searched for site-packages, otherwise they won't." msgstr "" -#: ../../library/site.rst:73 -msgid "" -"A path configuration file is a file whose name has the " -"form :file:`{name}.pth` and exists in one of the four directories mentioned " -"above; its contents are additional items (one per line) to be added to " -"``sys.path``. Non-existing items are never added to ``sys.path``, and no " -"check is made that the item refers to a directory rather than a file. No " -"item is added to ``sys.path`` more than once. Blank lines and lines " -"beginning with ``#`` are skipped. Lines starting with ``import`` (followed " -"by space or tab) are executed." +msgid "A path configuration file is a file whose name has the form :file:`{name}.pth` and exists in one of the four directories mentioned above; its contents are additional items (one per line) to be added to ``sys.path``. Non-existing items are never added to ``sys.path``, and no check is made that the item refers to a directory rather than a file. No item is added to ``sys.path`` more than once. Blank lines and lines beginning with ``#`` are skipped. Lines starting with ``import`` (followed by space or tab) are executed." msgstr "" -#: ../../library/site.rst:83 -msgid "" -"An executable line in a :file:`.pth` file is run at every Python startup, " -"regardless of whether a particular module is actually going to be used. Its " -"impact should thus be kept to a minimum. The primary intended purpose of " -"executable lines is to make the corresponding module(s) importable (load 3rd-" -"party import hooks, adjust :envvar:`PATH` etc). Any other initialization is " -"supposed to be done upon a module's actual import, if and when it happens. " -"Limiting a code chunk to a single line is a deliberate measure to discourage " -"putting anything more complex here." +msgid "An executable line in a :file:`.pth` file is run at every Python startup, regardless of whether a particular module is actually going to be used. Its impact should thus be kept to a minimum. The primary intended purpose of executable lines is to make the corresponding module(s) importable (load 3rd-party import hooks, adjust :envvar:`PATH` etc). Any other initialization is supposed to be done upon a module's actual import, if and when it happens. Limiting a code chunk to a single line is a deliberate measure to discourage putting anything more complex here." msgstr "" -#: ../../library/site.rst:94 -msgid "" -"The :file:`.pth` files are now decoded by UTF-8 at first and then by " -"the :term:`locale encoding` if it fails." +msgid "The :file:`.pth` files are now decoded by UTF-8 at first and then by the :term:`locale encoding` if it fails." msgstr "" -#: ../../library/site.rst:102 -msgid "" -"For example, suppose ``sys.prefix`` and ``sys.exec_prefix`` are set " -"to :file:`/usr/local`. The Python X.Y library is then installed in :file:`/" -"usr/local/lib/python{X.Y}`. Suppose this has a subdirectory :file:`/usr/" -"local/lib/python{X.Y}/site-packages` with three " -"subsubdirectories, :file:`foo`, :file:`bar` and :file:`spam`, and two path " -"configuration files, :file:`foo.pth` and :file:`bar.pth`. " -"Assume :file:`foo.pth` contains the following::" +msgid "For example, suppose ``sys.prefix`` and ``sys.exec_prefix`` are set to :file:`/usr/local`. The Python X.Y library is then installed in :file:`/usr/local/lib/python{X.Y}`. Suppose this has a subdirectory :file:`/usr/local/lib/python{X.Y}/site-packages` with three subsubdirectories, :file:`foo`, :file:`bar` and :file:`spam`, and two path configuration files, :file:`foo.pth` and :file:`bar.pth`. Assume :file:`foo.pth` contains the following::" msgstr "" -#: ../../library/site.rst:110 msgid "" "# foo package configuration\n" "\n" @@ -150,276 +74,147 @@ msgid "" "bletch" msgstr "" -#: ../../library/site.rst:116 msgid "and :file:`bar.pth` contains::" msgstr "" -#: ../../library/site.rst:118 msgid "" "# bar package configuration\n" "\n" "bar" msgstr "" -#: ../../library/site.rst:122 -msgid "" -"Then the following version-specific directories are added to ``sys.path``, " -"in this order::" +msgid "Then the following version-specific directories are added to ``sys.path``, in this order::" msgstr "" -#: ../../library/site.rst:125 msgid "" "/usr/local/lib/pythonX.Y/site-packages/bar\n" "/usr/local/lib/pythonX.Y/site-packages/foo" msgstr "" -#: ../../library/site.rst:128 -msgid "" -"Note that :file:`bletch` is omitted because it doesn't exist; " -"the :file:`bar` directory precedes the :file:`foo` directory " -"because :file:`bar.pth` comes alphabetically before :file:`foo.pth`; " -"and :file:`spam` is omitted because it is not mentioned in either path " -"configuration file." +msgid "Note that :file:`bletch` is omitted because it doesn't exist; the :file:`bar` directory precedes the :file:`foo` directory because :file:`bar.pth` comes alphabetically before :file:`foo.pth`; and :file:`spam` is omitted because it is not mentioned in either path configuration file." msgstr "" -#: ../../library/site.rst:134 msgid ":mod:`!sitecustomize`" msgstr "" -#: ../../library/site.rst:138 -msgid "" -"After these path manipulations, an attempt is made to import a module " -"named :mod:`!sitecustomize`, which can perform arbitrary site-specific " -"customizations. It is typically created by a system administrator in the " -"site-packages directory. If this import fails with an :exc:`ImportError` or " -"its subclass exception, and the exception's :attr:`~ImportError.name` " -"attribute equals ``'sitecustomize'``, it is silently ignored. If Python is " -"started without output streams available, as with :file:`pythonw.exe` on " -"Windows (which is used by default to start IDLE), attempted output " -"from :mod:`!sitecustomize` is ignored. Any other exception causes a silent " -"and perhaps mysterious failure of the process." -msgstr "" - -#: ../../library/site.rst:150 +msgid "After these path manipulations, an attempt is made to import a module named :mod:`!sitecustomize`, which can perform arbitrary site-specific customizations. It is typically created by a system administrator in the site-packages directory. If this import fails with an :exc:`ImportError` or its subclass exception, and the exception's :attr:`~ImportError.name` attribute equals ``'sitecustomize'``, it is silently ignored. If Python is started without output streams available, as with :file:`pythonw.exe` on Windows (which is used by default to start IDLE), attempted output from :mod:`!sitecustomize` is ignored. Any other exception causes a silent and perhaps mysterious failure of the process." +msgstr "" + msgid ":mod:`!usercustomize`" msgstr "" -#: ../../library/site.rst:154 -msgid "" -"After this, an attempt is made to import a module named :mod:`!" -"usercustomize`, which can perform arbitrary user-specific customizations, " -"if :data:`~site.ENABLE_USER_SITE` is true. This file is intended to be " -"created in the user site-packages directory (see below), which is part of " -"``sys.path`` unless disabled by :option:`-s`. If this import fails with " -"an :exc:`ImportError` or its subclass exception, and the " -"exception's :attr:`~ImportError.name` attribute equals ``'usercustomize'``, " -"it is silently ignored." +msgid "After this, an attempt is made to import a module named :mod:`!usercustomize`, which can perform arbitrary user-specific customizations, if :data:`~site.ENABLE_USER_SITE` is true. This file is intended to be created in the user site-packages directory (see below), which is part of ``sys.path`` unless disabled by :option:`-s`. If this import fails with an :exc:`ImportError` or its subclass exception, and the exception's :attr:`~ImportError.name` attribute equals ``'usercustomize'``, it is silently ignored." msgstr "" -#: ../../library/site.rst:162 -msgid "" -"Note that for some non-Unix systems, ``sys.prefix`` and ``sys.exec_prefix`` " -"are empty, and the path manipulations are skipped; however the import " -"of :mod:`sitecustomize` and :mod:`!usercustomize` is still attempted." +msgid "Note that for some non-Unix systems, ``sys.prefix`` and ``sys.exec_prefix`` are empty, and the path manipulations are skipped; however the import of :mod:`sitecustomize` and :mod:`!usercustomize` is still attempted." msgstr "" -#: ../../library/site.rst:171 msgid "Readline configuration" msgstr "" -#: ../../library/site.rst:173 -msgid "" -"On systems that support :mod:`readline`, this module will also import and " -"configure the :mod:`rlcompleter` module, if Python is started " -"in :ref:`interactive mode ` and without the :option:`-S` " -"option. The default behavior is to enable tab completion and to " -"use :file:`~/.python_history` as the history save file. To disable it, " -"delete (or override) the :data:`sys.__interactivehook__` attribute in " -"your :mod:`sitecustomize` or :mod:`usercustomize` module or " -"your :envvar:`PYTHONSTARTUP` file." +msgid "On systems that support :mod:`readline`, this module will also import and configure the :mod:`rlcompleter` module, if Python is started in :ref:`interactive mode ` and without the :option:`-S` option. The default behavior is to enable tab completion and to use :file:`~/.python_history` as the history save file. To disable it, delete (or override) the :data:`sys.__interactivehook__` attribute in your :mod:`sitecustomize` or :mod:`usercustomize` module or your :envvar:`PYTHONSTARTUP` file." msgstr "" -#: ../../library/site.rst:182 msgid "Activation of rlcompleter and history was made automatic." msgstr "" -#: ../../library/site.rst:187 msgid "Module contents" msgstr "" -#: ../../library/site.rst:191 msgid "A list of prefixes for site-packages directories." msgstr "" -#: ../../library/site.rst:196 -msgid "" -"Flag showing the status of the user site-packages directory. ``True`` means " -"that it is enabled and was added to ``sys.path``. ``False`` means that it " -"was disabled by user request (with :option:`-s` " -"or :envvar:`PYTHONNOUSERSITE`). ``None`` means it was disabled for security " -"reasons (mismatch between user or group id and effective id) or by an " -"administrator." +msgid "Flag showing the status of the user site-packages directory. ``True`` means that it is enabled and was added to ``sys.path``. ``False`` means that it was disabled by user request (with :option:`-s` or :envvar:`PYTHONNOUSERSITE`). ``None`` means it was disabled for security reasons (mismatch between user or group id and effective id) or by an administrator." msgstr "" -#: ../../library/site.rst:206 -msgid "" -"Path to the user site-packages for the running Python. Can be ``None`` " -"if :func:`getusersitepackages` hasn't been called yet. Default value " -"is :file:`~/.local/lib/python{X.Y}[t]/site-packages` for UNIX and non-" -"framework macOS builds, :file:`~/Library/Python/{X.Y}/lib/python/site-" -"packages` for macOS framework builds, and :file:`{%APPDATA%}\\\\Python\\" -"\\Python{XY}\\\\site-packages` on Windows. The optional \"t\" indicates the " -"free-threaded build. This directory is a site directory, which means " -"that :file:`.pth` files in it will be processed." +msgid "Path to the user site-packages for the running Python. Can be ``None`` if :func:`getusersitepackages` hasn't been called yet. Default value is :file:`~/.local/lib/python{X.Y}[t]/site-packages` for UNIX and non-framework macOS builds, :file:`~/Library/Python/{X.Y}/lib/python/site-packages` for macOS framework builds, and :file:`{%APPDATA%}\\\\Python\\\\Python{XY}\\\\site-packages` on Windows. The optional \"t\" indicates the free-threaded build. This directory is a site directory, which means that :file:`.pth` files in it will be processed." msgstr "" -#: ../../library/site.rst:218 -msgid "" -"Path to the base directory for the user site-packages. Can be ``None`` " -"if :func:`getuserbase` hasn't been called yet. Default value " -"is :file:`~/.local` for UNIX and macOS non-framework builds, :file:`~/" -"Library/Python/{X.Y}` for macOS framework builds, and :file:`{%APPDATA%}\\" -"\\Python` for Windows. This value is used to compute the installation " -"directories for scripts, data files, Python modules, etc. for the :ref:`user " -"installation scheme `. See " -"also :envvar:`PYTHONUSERBASE`." +msgid "Path to the base directory for the user site-packages. Can be ``None`` if :func:`getuserbase` hasn't been called yet. Default value is :file:`~/.local` for UNIX and macOS non-framework builds, :file:`~/Library/Python/{X.Y}` for macOS framework builds, and :file:`{%APPDATA%}\\\\Python` for Windows. This value is used to compute the installation directories for scripts, data files, Python modules, etc. for the :ref:`user installation scheme `. See also :envvar:`PYTHONUSERBASE`." msgstr "" -#: ../../library/site.rst:230 -msgid "" -"Adds all the standard site-specific directories to the module search path. " -"This function is called automatically when this module is imported, unless " -"the Python interpreter was started with the :option:`-S` flag." +msgid "Adds all the standard site-specific directories to the module search path. This function is called automatically when this module is imported, unless the Python interpreter was started with the :option:`-S` flag." msgstr "" -#: ../../library/site.rst:234 msgid "This function used to be called unconditionally." msgstr "" -#: ../../library/site.rst:240 -msgid "" -"Add a directory to sys.path and process its :file:`.pth` files. Typically " -"used in :mod:`sitecustomize` or :mod:`usercustomize` (see above)." +msgid "Add a directory to sys.path and process its :file:`.pth` files. Typically used in :mod:`sitecustomize` or :mod:`usercustomize` (see above)." msgstr "" -#: ../../library/site.rst:246 msgid "Return a list containing all global site-packages directories." msgstr "" -#: ../../library/site.rst:253 -msgid "" -"Return the path of the user base directory, :data:`USER_BASE`. If it is not " -"initialized yet, this function will also set it, " -"respecting :envvar:`PYTHONUSERBASE`." +msgid "Return the path of the user base directory, :data:`USER_BASE`. If it is not initialized yet, this function will also set it, respecting :envvar:`PYTHONUSERBASE`." msgstr "" -#: ../../library/site.rst:262 -msgid "" -"Return the path of the user-specific site-packages " -"directory, :data:`USER_SITE`. If it is not initialized yet, this function " -"will also set it, respecting :data:`USER_BASE`. To determine if the user-" -"specific site-packages was added to ``sys.path`` :data:`ENABLE_USER_SITE` " -"should be used." +msgid "Return the path of the user-specific site-packages directory, :data:`USER_SITE`. If it is not initialized yet, this function will also set it, respecting :data:`USER_BASE`. To determine if the user-specific site-packages was added to ``sys.path`` :data:`ENABLE_USER_SITE` should be used." msgstr "" -#: ../../library/site.rst:274 msgid "Command-line interface" msgstr "" -#: ../../library/site.rst:278 -msgid "" -"The :mod:`!site` module also provides a way to get the user directories from " -"the command line:" +msgid "The :mod:`!site` module also provides a way to get the user directories from the command line:" msgstr "" -#: ../../library/site.rst:281 msgid "" "$ python -m site --user-site\n" "/home/user/.local/lib/python3.11/site-packages" msgstr "" -#: ../../library/site.rst:286 -msgid "" -"If it is called without arguments, it will print the contents " -"of :data:`sys.path` on the standard output, followed by the value " -"of :data:`USER_BASE` and whether the directory exists, then the same thing " -"for :data:`USER_SITE`, and finally the value of :data:`ENABLE_USER_SITE`." +msgid "If it is called without arguments, it will print the contents of :data:`sys.path` on the standard output, followed by the value of :data:`USER_BASE` and whether the directory exists, then the same thing for :data:`USER_SITE`, and finally the value of :data:`ENABLE_USER_SITE`." msgstr "" -#: ../../library/site.rst:293 msgid "Print the path to the user base directory." msgstr "" -#: ../../library/site.rst:297 msgid "Print the path to the user site-packages directory." msgstr "" -#: ../../library/site.rst:299 -msgid "" -"If both options are given, user base and user site will be printed (always " -"in this order), separated by :data:`os.pathsep`." +msgid "If both options are given, user base and user site will be printed (always in this order), separated by :data:`os.pathsep`." msgstr "" -#: ../../library/site.rst:302 -msgid "" -"If any option is given, the script will exit with one of these values: ``0`` " -"if the user site-packages directory is enabled, ``1`` if it was disabled by " -"the user, ``2`` if it is disabled for security reasons or by an " -"administrator, and a value greater than 2 if there is an error." +msgid "If any option is given, the script will exit with one of these values: ``0`` if the user site-packages directory is enabled, ``1`` if it was disabled by the user, ``2`` if it is disabled for security reasons or by an administrator, and a value greater than 2 if there is an error." msgstr "" -#: ../../library/site.rst:309 msgid ":pep:`370` -- Per user site-packages directory" msgstr "" -#: ../../library/site.rst:310 msgid ":ref:`sys-path-init` -- The initialization of :data:`sys.path`." msgstr "" -#: ../../library/site.rst:16 msgid "module" msgstr "" -#: ../../library/site.rst:16 msgid "search" msgstr "" -#: ../../library/site.rst:16 ../../library/site.rst:98 msgid "path" msgstr "" -#: ../../library/site.rst:29 msgid "site-packages" msgstr "" -#: ../../library/site.rst:29 msgid "directory" msgstr "" -#: ../../library/site.rst:69 msgid "# (hash)" msgstr "" -#: ../../library/site.rst:69 msgid "comment" msgstr "" -#: ../../library/site.rst:69 msgid "statement" msgstr "" -#: ../../library/site.rst:69 msgid "import" msgstr "" -#: ../../library/site.rst:98 msgid "package" msgstr "" -#: ../../library/site.rst:98 msgid "configuration" msgstr "" -#: ../../library/site.rst:98 msgid "file" msgstr "" diff --git a/library/smtpd.po b/library/smtpd.po index 24f53e23..2d1ac727 100644 --- a/library/smtpd.po +++ b/library/smtpd.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2024-11-19 01:03+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,25 +21,14 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/smtpd.rst:2 msgid ":mod:`!smtpd` --- SMTP Server" msgstr "" -#: ../../library/smtpd.rst:10 -msgid "" -"This module is no longer part of the Python standard library. It " -"was :ref:`removed in Python 3.12 ` after being " -"deprecated in Python 3.6. The removal was decided in :pep:`594`." +msgid "This module is no longer part of the Python standard library. It was :ref:`removed in Python 3.12 ` after being deprecated in Python 3.6. The removal was decided in :pep:`594`." msgstr "" -#: ../../library/smtpd.rst:14 -msgid "" -"A possible replacement is the third-party :pypi:`aiosmtpd` library. This " -"library is not maintained or supported by the Python core team." +msgid "A possible replacement is the third-party :pypi:`aiosmtpd` library. This library is not maintained or supported by the Python core team." msgstr "" -#: ../../library/smtpd.rst:17 -msgid "" -"The last version of Python that provided the :mod:`!smtpd` module was " -"`Python 3.11 `_." +msgid "The last version of Python that provided the :mod:`!smtpd` module was `Python 3.11 `_." msgstr "" diff --git a/library/smtplib.po b/library/smtplib.po index 6c116144..06a2ac1c 100644 --- a/library/smtplib.po +++ b/library/smtplib.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:13+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,68 +24,30 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/smtplib.rst:2 msgid ":mod:`!smtplib` --- SMTP protocol client" msgstr "" -#: ../../library/smtplib.rst:9 msgid "**Source code:** :source:`Lib/smtplib.py`" msgstr "" -#: ../../library/smtplib.rst:17 -msgid "" -"The :mod:`!smtplib` module defines an SMTP client session object that can be " -"used to send mail to any internet machine with an SMTP or ESMTP listener " -"daemon. For details of SMTP and ESMTP operation, consult :rfc:`821` (Simple " -"Mail Transfer Protocol) and :rfc:`1869` (SMTP Service Extensions)." +msgid "The :mod:`!smtplib` module defines an SMTP client session object that can be used to send mail to any internet machine with an SMTP or ESMTP listener daemon. For details of SMTP and ESMTP operation, consult :rfc:`821` (Simple Mail Transfer Protocol) and :rfc:`1869` (SMTP Service Extensions)." msgstr "" -#: ../../includes/wasm-notavail.rst:3 msgid "Availability" msgstr "" -#: ../../includes/wasm-notavail.rst:5 -msgid "" -"This module does not work or is not available on WebAssembly. See :ref:`wasm-" -"availability` for more information." +msgid "This module does not work or is not available on WebAssembly. See :ref:`wasm-availability` for more information." msgstr "" -#: ../../library/smtplib.rst:26 -msgid "" -"An :class:`SMTP` instance encapsulates an SMTP connection. It has methods " -"that support a full repertoire of SMTP and ESMTP operations. If the optional " -"*host* and *port* parameters are given, the SMTP :meth:`connect` method is " -"called with those parameters during initialization. If specified, " -"*local_hostname* is used as the FQDN of the local host in the HELO/EHLO " -"command. Otherwise, the local hostname is found " -"using :func:`socket.getfqdn`. If the :meth:`connect` call returns anything " -"other than a success code, an :exc:`SMTPConnectError` is raised. The " -"optional *timeout* parameter specifies a timeout in seconds for blocking " -"operations like the connection attempt (if not specified, the global default " -"timeout setting will be used). If the timeout expires, :exc:`TimeoutError` " -"is raised. The optional *source_address* parameter allows binding to some " -"specific source address in a machine with multiple network interfaces, and/" -"or to some specific source TCP port. It takes a 2-tuple ``(host, port)``, " -"for the socket to bind to as its source address before connecting. If " -"omitted (or if *host* or *port* are ``''`` and/or ``0`` respectively) the OS " -"default behavior will be used." -msgstr "" - -#: ../../library/smtplib.rst:44 -msgid "" -"For normal use, you should only require the initialization/" -"connect, :meth:`sendmail`, and :meth:`SMTP.quit` methods. An example is " -"included below." +msgid "An :class:`SMTP` instance encapsulates an SMTP connection. It has methods that support a full repertoire of SMTP and ESMTP operations. If the optional *host* and *port* parameters are given, the SMTP :meth:`connect` method is called with those parameters during initialization. If specified, *local_hostname* is used as the FQDN of the local host in the HELO/EHLO command. Otherwise, the local hostname is found using :func:`socket.getfqdn`. If the :meth:`connect` call returns anything other than a success code, an :exc:`SMTPConnectError` is raised. The optional *timeout* parameter specifies a timeout in seconds for blocking operations like the connection attempt (if not specified, the global default timeout setting will be used). If the timeout expires, :exc:`TimeoutError` is raised. The optional *source_address* parameter allows binding to some specific source address in a machine with multiple network interfaces, and/or to some specific source TCP port. It takes a 2-tuple ``(host, port)``, for the socket to bind to as its source address before connecting. If omitted (or if *host* or *port* are ``''`` and/or ``0`` respectively) the OS default behavior will be used." msgstr "" -#: ../../library/smtplib.rst:48 -msgid "" -"The :class:`SMTP` class supports the :keyword:`with` statement. When used " -"like this, the SMTP ``QUIT`` command is issued automatically when " -"the :keyword:`!with` statement exits. E.g.::" +msgid "For normal use, you should only require the initialization/connect, :meth:`sendmail`, and :meth:`SMTP.quit` methods. An example is included below." +msgstr "" + +msgid "The :class:`SMTP` class supports the :keyword:`with` statement. When used like this, the SMTP ``QUIT`` command is issued automatically when the :keyword:`!with` statement exits. E.g.::" msgstr "" -#: ../../library/smtplib.rst:52 msgid "" ">>> from smtplib import SMTP\n" ">>> with SMTP(\"domain.org\") as smtp:\n" @@ -95,690 +57,336 @@ msgid "" ">>>" msgstr "" -#: ../../library/smtplib.rst:59 ../../library/smtplib.rst:61 -msgid "" -"All commands will raise an :ref:`auditing event ` " -"``smtplib.SMTP.send`` with arguments ``self`` and ``data``, where ``data`` " -"is the bytes about to be sent to the remote host." +msgid "All commands will raise an :ref:`auditing event ` ``smtplib.SMTP.send`` with arguments ``self`` and ``data``, where ``data`` is the bytes about to be sent to the remote host." msgstr "" -#: ../../library/smtplib.rst:65 msgid "Support for the :keyword:`with` statement was added." msgstr "" -#: ../../library/smtplib.rst:68 msgid "*source_address* argument was added." msgstr "" -#: ../../library/smtplib.rst:71 msgid "The SMTPUTF8 extension (:rfc:`6531`) is now supported." msgstr "" -#: ../../library/smtplib.rst:74 -msgid "" -"If the *timeout* parameter is set to be zero, it will raise " -"a :class:`ValueError` to prevent the creation of a non-blocking socket." +msgid "If the *timeout* parameter is set to be zero, it will raise a :class:`ValueError` to prevent the creation of a non-blocking socket." +msgstr "" + +msgid "An :class:`SMTP_SSL` instance behaves exactly the same as instances of :class:`SMTP`. :class:`SMTP_SSL` should be used for situations where SSL is required from the beginning of the connection and using :meth:`~SMTP.starttls` is not appropriate. If *host* is not specified, the local host is used. If *port* is zero, the standard SMTP-over-SSL port (465) is used. The optional arguments *local_hostname*, *timeout* and *source_address* have the same meaning as they do in the :class:`SMTP` class. *context*, also optional, can contain a :class:`~ssl.SSLContext` and allows configuring various aspects of the secure connection. Please read :ref:`ssl-security` for best practices." msgstr "" -#: ../../library/smtplib.rst:81 -msgid "" -"An :class:`SMTP_SSL` instance behaves exactly the same as instances " -"of :class:`SMTP`. :class:`SMTP_SSL` should be used for situations where SSL " -"is required from the beginning of the connection and " -"using :meth:`~SMTP.starttls` is not appropriate. If *host* is not specified, " -"the local host is used. If *port* is zero, the standard SMTP-over-SSL port " -"(465) is used. The optional arguments *local_hostname*, *timeout* and " -"*source_address* have the same meaning as they do in the :class:`SMTP` " -"class. *context*, also optional, can contain a :class:`~ssl.SSLContext` and " -"allows configuring various aspects of the secure connection. Please " -"read :ref:`ssl-security` for best practices." -msgstr "" - -#: ../../library/smtplib.rst:92 ../../library/smtplib.rst:424 msgid "*context* was added." msgstr "" -#: ../../library/smtplib.rst:95 msgid "The *source_address* argument was added." msgstr "" -#: ../../library/smtplib.rst:98 -msgid "" -"The class now supports hostname check " -"with :attr:`ssl.SSLContext.check_hostname` and *Server Name Indication* " -"(see :const:`ssl.HAS_SNI`)." +msgid "The class now supports hostname check with :attr:`ssl.SSLContext.check_hostname` and *Server Name Indication* (see :const:`ssl.HAS_SNI`)." msgstr "" -#: ../../library/smtplib.rst:103 -msgid "" -"If the *timeout* parameter is set to be zero, it will raise " -"a :class:`ValueError` to prevent the creation of a non-blocking socket" +msgid "If the *timeout* parameter is set to be zero, it will raise a :class:`ValueError` to prevent the creation of a non-blocking socket" msgstr "" -#: ../../library/smtplib.rst:107 ../../library/smtplib.rst:412 msgid "The deprecated *keyfile* and *certfile* parameters have been removed." msgstr "" -#: ../../library/smtplib.rst:113 -msgid "" -"The LMTP protocol, which is very similar to ESMTP, is heavily based on the " -"standard SMTP client. It's common to use Unix sockets for LMTP, so " -"our :meth:`~SMTP.connect` method must support that as well as a regular " -"host:port server. The optional arguments *local_hostname* and " -"*source_address* have the same meaning as they do in the :class:`SMTP` " -"class. To specify a Unix socket, you must use an absolute path for *host*, " -"starting with a '/'." +msgid "The LMTP protocol, which is very similar to ESMTP, is heavily based on the standard SMTP client. It's common to use Unix sockets for LMTP, so our :meth:`~SMTP.connect` method must support that as well as a regular host:port server. The optional arguments *local_hostname* and *source_address* have the same meaning as they do in the :class:`SMTP` class. To specify a Unix socket, you must use an absolute path for *host*, starting with a '/'." msgstr "" -#: ../../library/smtplib.rst:120 -msgid "" -"Authentication is supported, using the regular SMTP mechanism. When using a " -"Unix socket, LMTP generally don't support or require any authentication, but " -"your mileage might vary." +msgid "Authentication is supported, using the regular SMTP mechanism. When using a Unix socket, LMTP generally don't support or require any authentication, but your mileage might vary." msgstr "" -#: ../../library/smtplib.rst:124 msgid "The optional *timeout* parameter was added." msgstr "" -#: ../../library/smtplib.rst:128 msgid "A nice selection of exceptions is defined as well:" msgstr "" -#: ../../library/smtplib.rst:133 -msgid "" -"Subclass of :exc:`OSError` that is the base exception class for all the " -"other exceptions provided by this module." +msgid "Subclass of :exc:`OSError` that is the base exception class for all the other exceptions provided by this module." msgstr "" -#: ../../library/smtplib.rst:136 msgid "SMTPException became subclass of :exc:`OSError`" msgstr "" -#: ../../library/smtplib.rst:142 -msgid "" -"This exception is raised when the server unexpectedly disconnects, or when " -"an attempt is made to use the :class:`SMTP` instance before connecting it to " -"a server." +msgid "This exception is raised when the server unexpectedly disconnects, or when an attempt is made to use the :class:`SMTP` instance before connecting it to a server." msgstr "" -#: ../../library/smtplib.rst:149 -msgid "" -"Base class for all exceptions that include an SMTP error code. These " -"exceptions are generated in some instances when the SMTP server returns an " -"error code." +msgid "Base class for all exceptions that include an SMTP error code. These exceptions are generated in some instances when the SMTP server returns an error code." msgstr "" -#: ../../library/smtplib.rst:154 msgid "The error code." msgstr "" -#: ../../library/smtplib.rst:158 msgid "The error message." msgstr "" -#: ../../library/smtplib.rst:163 -msgid "" -"Sender address refused. In addition to the attributes set by on " -"all :exc:`SMTPResponseException` exceptions, this sets 'sender' to the " -"string that the SMTP server refused." +msgid "Sender address refused. In addition to the attributes set by on all :exc:`SMTPResponseException` exceptions, this sets 'sender' to the string that the SMTP server refused." msgstr "" -#: ../../library/smtplib.rst:170 msgid "All recipient addresses refused." msgstr "" -#: ../../library/smtplib.rst:174 -msgid "" -"A dictionary of exactly the same sort as returned by :meth:`SMTP.sendmail` " -"containing the errors for each recipient." +msgid "A dictionary of exactly the same sort as returned by :meth:`SMTP.sendmail` containing the errors for each recipient." msgstr "" -#: ../../library/smtplib.rst:181 msgid "The SMTP server refused to accept the message data." msgstr "" -#: ../../library/smtplib.rst:186 msgid "Error occurred during establishment of a connection with the server." msgstr "" -#: ../../library/smtplib.rst:191 msgid "The server refused our ``HELO`` message." msgstr "" -#: ../../library/smtplib.rst:196 msgid "The command or option attempted is not supported by the server." msgstr "" -#: ../../library/smtplib.rst:203 -msgid "" -"SMTP authentication went wrong. Most probably the server didn't accept the " -"username/password combination provided." +msgid "SMTP authentication went wrong. Most probably the server didn't accept the username/password combination provided." msgstr "" -#: ../../library/smtplib.rst:209 msgid ":rfc:`821` - Simple Mail Transfer Protocol" msgstr "" -#: ../../library/smtplib.rst:210 -msgid "" -"Protocol definition for SMTP. This document covers the model, operating " -"procedure, and protocol details for SMTP." +msgid "Protocol definition for SMTP. This document covers the model, operating procedure, and protocol details for SMTP." msgstr "" -#: ../../library/smtplib.rst:213 msgid ":rfc:`1869` - SMTP Service Extensions" msgstr "" -#: ../../library/smtplib.rst:214 -msgid "" -"Definition of the ESMTP extensions for SMTP. This describes a framework for " -"extending SMTP with new commands, supporting dynamic discovery of the " -"commands provided by the server, and defines a few additional commands." +msgid "Definition of the ESMTP extensions for SMTP. This describes a framework for extending SMTP with new commands, supporting dynamic discovery of the commands provided by the server, and defines a few additional commands." msgstr "" -#: ../../library/smtplib.rst:222 msgid "SMTP Objects" msgstr "" -#: ../../library/smtplib.rst:224 msgid "An :class:`SMTP` instance has the following methods:" msgstr "" -#: ../../library/smtplib.rst:228 -msgid "" -"Set the debug output level. A value of 1 or ``True`` for *level* results in " -"debug messages for connection and for all messages sent to and received from " -"the server. A value of 2 for *level* results in these messages being " -"timestamped." +msgid "Set the debug output level. A value of 1 or ``True`` for *level* results in debug messages for connection and for all messages sent to and received from the server. A value of 2 for *level* results in these messages being timestamped." msgstr "" -#: ../../library/smtplib.rst:233 msgid "Added debuglevel 2." msgstr "" -#: ../../library/smtplib.rst:238 -msgid "" -"Send a command *cmd* to the server. The optional argument *args* is simply " -"concatenated to the command, separated by a space." +msgid "Send a command *cmd* to the server. The optional argument *args* is simply concatenated to the command, separated by a space." msgstr "" -#: ../../library/smtplib.rst:241 -msgid "" -"This returns a 2-tuple composed of a numeric response code and the actual " -"response line (multiline responses are joined into one long line.)" +msgid "This returns a 2-tuple composed of a numeric response code and the actual response line (multiline responses are joined into one long line.)" msgstr "" -#: ../../library/smtplib.rst:244 -msgid "" -"In normal operation it should not be necessary to call this method " -"explicitly. It is used to implement other methods and may be useful for " -"testing private extensions." +msgid "In normal operation it should not be necessary to call this method explicitly. It is used to implement other methods and may be useful for testing private extensions." msgstr "" -#: ../../library/smtplib.rst:248 -msgid "" -"If the connection to the server is lost while waiting for the " -"reply, :exc:`SMTPServerDisconnected` will be raised." +msgid "If the connection to the server is lost while waiting for the reply, :exc:`SMTPServerDisconnected` will be raised." msgstr "" -#: ../../library/smtplib.rst:254 -msgid "" -"Connect to a host on a given port. The defaults are to connect to the local " -"host at the standard SMTP port (25). If the hostname ends with a colon " -"(``':'``) followed by a number, that suffix will be stripped off and the " -"number interpreted as the port number to use. This method is automatically " -"invoked by the constructor if a host is specified during instantiation. " -"Returns a 2-tuple of the response code and message sent by the server in its " -"connection response." +msgid "Connect to a host on a given port. The defaults are to connect to the local host at the standard SMTP port (25). If the hostname ends with a colon (``':'``) followed by a number, that suffix will be stripped off and the number interpreted as the port number to use. This method is automatically invoked by the constructor if a host is specified during instantiation. Returns a 2-tuple of the response code and message sent by the server in its connection response." msgstr "" -#: ../../library/smtplib.rst:262 -msgid "" -"Raises an :ref:`auditing event ` ``smtplib.connect`` with " -"arguments ``self``, ``host``, ``port``." +msgid "Raises an :ref:`auditing event ` ``smtplib.connect`` with arguments ``self``, ``host``, ``port``." msgstr "" -#: ../../library/smtplib.rst:267 -msgid "" -"Identify yourself to the SMTP server using ``HELO``. The hostname argument " -"defaults to the fully qualified domain name of the local host. The message " -"returned by the server is stored as the :attr:`helo_resp` attribute of the " -"object." +msgid "Identify yourself to the SMTP server using ``HELO``. The hostname argument defaults to the fully qualified domain name of the local host. The message returned by the server is stored as the :attr:`helo_resp` attribute of the object." msgstr "" -#: ../../library/smtplib.rst:272 -msgid "" -"In normal operation it should not be necessary to call this method " -"explicitly. It will be implicitly called by the :meth:`sendmail` when " -"necessary." +msgid "In normal operation it should not be necessary to call this method explicitly. It will be implicitly called by the :meth:`sendmail` when necessary." msgstr "" -#: ../../library/smtplib.rst:278 -msgid "" -"Identify yourself to an ESMTP server using ``EHLO``. The hostname argument " -"defaults to the fully qualified domain name of the local host. Examine the " -"response for ESMTP option and store them for use by :meth:`has_extn`. Also " -"sets several informational attributes: the message returned by the server is " -"stored as the :attr:`ehlo_resp` attribute, :attr:`does_esmtp` is set to " -"``True`` or ``False`` depending on whether the server supports ESMTP, " -"and :attr:`esmtp_features` will be a dictionary containing the names of the " -"SMTP service extensions this server supports, and their parameters (if any)." +msgid "Identify yourself to an ESMTP server using ``EHLO``. The hostname argument defaults to the fully qualified domain name of the local host. Examine the response for ESMTP option and store them for use by :meth:`has_extn`. Also sets several informational attributes: the message returned by the server is stored as the :attr:`ehlo_resp` attribute, :attr:`does_esmtp` is set to ``True`` or ``False`` depending on whether the server supports ESMTP, and :attr:`esmtp_features` will be a dictionary containing the names of the SMTP service extensions this server supports, and their parameters (if any)." msgstr "" -#: ../../library/smtplib.rst:288 -msgid "" -"Unless you wish to use :meth:`has_extn` before sending mail, it should not " -"be necessary to call this method explicitly. It will be implicitly called " -"by :meth:`sendmail` when necessary." +msgid "Unless you wish to use :meth:`has_extn` before sending mail, it should not be necessary to call this method explicitly. It will be implicitly called by :meth:`sendmail` when necessary." msgstr "" -#: ../../library/smtplib.rst:294 -msgid "" -"This method calls :meth:`ehlo` and/or :meth:`helo` if there has been no " -"previous ``EHLO`` or ``HELO`` command this session. It tries ESMTP ``EHLO`` " -"first." +msgid "This method calls :meth:`ehlo` and/or :meth:`helo` if there has been no previous ``EHLO`` or ``HELO`` command this session. It tries ESMTP ``EHLO`` first." msgstr "" -#: ../../library/smtplib.rst:298 ../../library/smtplib.rst:327 -#: ../../library/smtplib.rst:415 ../../library/smtplib.rst:483 msgid ":exc:`SMTPHeloError`" msgstr "" -#: ../../library/smtplib.rst:299 ../../library/smtplib.rst:328 -#: ../../library/smtplib.rst:416 ../../library/smtplib.rst:484 msgid "The server didn't reply properly to the ``HELO`` greeting." msgstr "" -#: ../../library/smtplib.rst:303 -msgid "" -"Return :const:`True` if *name* is in the set of SMTP service extensions " -"returned by the server, :const:`False` otherwise. Case is ignored." +msgid "Return :const:`True` if *name* is in the set of SMTP service extensions returned by the server, :const:`False` otherwise. Case is ignored." msgstr "" -#: ../../library/smtplib.rst:309 -msgid "" -"Check the validity of an address on this server using SMTP ``VRFY``. Returns " -"a tuple consisting of code 250 and a full :rfc:`822` address (including " -"human name) if the user address is valid. Otherwise returns an SMTP error " -"code of 400 or greater and an error string." +msgid "Check the validity of an address on this server using SMTP ``VRFY``. Returns a tuple consisting of code 250 and a full :rfc:`822` address (including human name) if the user address is valid. Otherwise returns an SMTP error code of 400 or greater and an error string." msgstr "" -#: ../../library/smtplib.rst:316 msgid "Many sites disable SMTP ``VRFY`` in order to foil spammers." msgstr "" -#: ../../library/smtplib.rst:321 -msgid "" -"Log in on an SMTP server that requires authentication. The arguments are the " -"username and the password to authenticate with. If there has been no " -"previous ``EHLO`` or ``HELO`` command this session, this method tries ESMTP " -"``EHLO`` first. This method will return normally if the authentication was " -"successful, or may raise the following exceptions:" +msgid "Log in on an SMTP server that requires authentication. The arguments are the username and the password to authenticate with. If there has been no previous ``EHLO`` or ``HELO`` command this session, this method tries ESMTP ``EHLO`` first. This method will return normally if the authentication was successful, or may raise the following exceptions:" msgstr "" -#: ../../library/smtplib.rst:330 msgid ":exc:`SMTPAuthenticationError`" msgstr "" -#: ../../library/smtplib.rst:331 msgid "The server didn't accept the username/password combination." msgstr "" -#: ../../library/smtplib.rst:333 ../../library/smtplib.rst:418 -#: ../../library/smtplib.rst:493 msgid ":exc:`SMTPNotSupportedError`" msgstr "" -#: ../../library/smtplib.rst:334 msgid "The ``AUTH`` command is not supported by the server." msgstr "" -#: ../../library/smtplib.rst:336 msgid ":exc:`SMTPException`" msgstr "" -#: ../../library/smtplib.rst:337 msgid "No suitable authentication method was found." msgstr "" -#: ../../library/smtplib.rst:339 -msgid "" -"Each of the authentication methods supported by :mod:`!smtplib` are tried in " -"turn if they are advertised as supported by the server. See :meth:`auth` " -"for a list of supported authentication methods. *initial_response_ok* is " -"passed through to :meth:`auth`." +msgid "Each of the authentication methods supported by :mod:`!smtplib` are tried in turn if they are advertised as supported by the server. See :meth:`auth` for a list of supported authentication methods. *initial_response_ok* is passed through to :meth:`auth`." msgstr "" -#: ../../library/smtplib.rst:344 -msgid "" -"Optional keyword argument *initial_response_ok* specifies whether, for " -"authentication methods that support it, an \"initial response\" as specified " -"in :rfc:`4954` can be sent along with the ``AUTH`` command, rather than " -"requiring a challenge/response." +msgid "Optional keyword argument *initial_response_ok* specifies whether, for authentication methods that support it, an \"initial response\" as specified in :rfc:`4954` can be sent along with the ``AUTH`` command, rather than requiring a challenge/response." msgstr "" -#: ../../library/smtplib.rst:349 -msgid "" -":exc:`SMTPNotSupportedError` may be raised, and the *initial_response_ok* " -"parameter was added." +msgid ":exc:`SMTPNotSupportedError` may be raised, and the *initial_response_ok* parameter was added." msgstr "" -#: ../../library/smtplib.rst:356 -msgid "" -"Issue an ``SMTP`` ``AUTH`` command for the specified authentication " -"*mechanism*, and handle the challenge response via *authobject*." +msgid "Issue an ``SMTP`` ``AUTH`` command for the specified authentication *mechanism*, and handle the challenge response via *authobject*." msgstr "" -#: ../../library/smtplib.rst:359 -msgid "" -"*mechanism* specifies which authentication mechanism is to be used as " -"argument to the ``AUTH`` command; the valid values are those listed in the " -"``auth`` element of :attr:`esmtp_features`." +msgid "*mechanism* specifies which authentication mechanism is to be used as argument to the ``AUTH`` command; the valid values are those listed in the ``auth`` element of :attr:`esmtp_features`." msgstr "" -#: ../../library/smtplib.rst:363 -msgid "" -"*authobject* must be a callable object taking an optional single argument::" +msgid "*authobject* must be a callable object taking an optional single argument::" msgstr "" -#: ../../library/smtplib.rst:365 msgid "data = authobject(challenge=None)" msgstr "" -#: ../../library/smtplib.rst:367 -msgid "" -"If optional keyword argument *initial_response_ok* is true, ``authobject()`` " -"will be called first with no argument. It can return the :rfc:`4954` " -"\"initial response\" ASCII ``str`` which will be encoded and sent with the " -"``AUTH`` command as below. If the ``authobject()`` does not support an " -"initial response (e.g. because it requires a challenge), it should return " -"``None`` when called with ``challenge=None``. If *initial_response_ok* is " -"false, then ``authobject()`` will not be called first with ``None``." +msgid "If optional keyword argument *initial_response_ok* is true, ``authobject()`` will be called first with no argument. It can return the :rfc:`4954` \"initial response\" ASCII ``str`` which will be encoded and sent with the ``AUTH`` command as below. If the ``authobject()`` does not support an initial response (e.g. because it requires a challenge), it should return ``None`` when called with ``challenge=None``. If *initial_response_ok* is false, then ``authobject()`` will not be called first with ``None``." msgstr "" -#: ../../library/smtplib.rst:375 -msgid "" -"If the initial response check returns ``None``, or if *initial_response_ok* " -"is false, ``authobject()`` will be called to process the server's challenge " -"response; the *challenge* argument it is passed will be a ``bytes``. It " -"should return ASCII ``str`` *data* that will be base64 encoded and sent to " -"the server." +msgid "If the initial response check returns ``None``, or if *initial_response_ok* is false, ``authobject()`` will be called to process the server's challenge response; the *challenge* argument it is passed will be a ``bytes``. It should return ASCII ``str`` *data* that will be base64 encoded and sent to the server." msgstr "" -#: ../../library/smtplib.rst:381 -msgid "" -"The ``SMTP`` class provides ``authobjects`` for the ``CRAM-MD5``, ``PLAIN``, " -"and ``LOGIN`` mechanisms; they are named ``SMTP.auth_cram_md5``, " -"``SMTP.auth_plain``, and ``SMTP.auth_login`` respectively. They all require " -"that the ``user`` and ``password`` properties of the ``SMTP`` instance are " -"set to appropriate values." +msgid "The ``SMTP`` class provides ``authobjects`` for the ``CRAM-MD5``, ``PLAIN``, and ``LOGIN`` mechanisms; they are named ``SMTP.auth_cram_md5``, ``SMTP.auth_plain``, and ``SMTP.auth_login`` respectively. They all require that the ``user`` and ``password`` properties of the ``SMTP`` instance are set to appropriate values." msgstr "" -#: ../../library/smtplib.rst:387 -msgid "" -"User code does not normally need to call ``auth`` directly, but can instead " -"call the :meth:`login` method, which will try each of the above mechanisms " -"in turn, in the order listed. ``auth`` is exposed to facilitate the " -"implementation of authentication methods not (or not yet) supported directly " -"by :mod:`!smtplib`." +msgid "User code does not normally need to call ``auth`` directly, but can instead call the :meth:`login` method, which will try each of the above mechanisms in turn, in the order listed. ``auth`` is exposed to facilitate the implementation of authentication methods not (or not yet) supported directly by :mod:`!smtplib`." msgstr "" -#: ../../library/smtplib.rst:398 -msgid "" -"Put the SMTP connection in TLS (Transport Layer Security) mode. All SMTP " -"commands that follow will be encrypted. You should then call :meth:`ehlo` " -"again." +msgid "Put the SMTP connection in TLS (Transport Layer Security) mode. All SMTP commands that follow will be encrypted. You should then call :meth:`ehlo` again." msgstr "" -#: ../../library/smtplib.rst:402 -msgid "" -"If *keyfile* and *certfile* are provided, they are used to create " -"an :class:`ssl.SSLContext`." +msgid "If *keyfile* and *certfile* are provided, they are used to create an :class:`ssl.SSLContext`." msgstr "" -#: ../../library/smtplib.rst:405 -msgid "" -"Optional *context* parameter is an :class:`ssl.SSLContext` object; This is " -"an alternative to using a keyfile and a certfile and if specified both " -"*keyfile* and *certfile* should be ``None``." +msgid "Optional *context* parameter is an :class:`ssl.SSLContext` object; This is an alternative to using a keyfile and a certfile and if specified both *keyfile* and *certfile* should be ``None``." msgstr "" -#: ../../library/smtplib.rst:409 -msgid "" -"If there has been no previous ``EHLO`` or ``HELO`` command this session, " -"this method tries ESMTP ``EHLO`` first." +msgid "If there has been no previous ``EHLO`` or ``HELO`` command this session, this method tries ESMTP ``EHLO`` first." msgstr "" -#: ../../library/smtplib.rst:419 msgid "The server does not support the STARTTLS extension." msgstr "" -#: ../../library/smtplib.rst:421 msgid ":exc:`RuntimeError`" msgstr "" -#: ../../library/smtplib.rst:422 msgid "SSL/TLS support is not available to your Python interpreter." msgstr "" -#: ../../library/smtplib.rst:427 -msgid "" -"The method now supports hostname check " -"with :attr:`ssl.SSLContext.check_hostname` and *Server Name Indicator* " -"(see :const:`~ssl.HAS_SNI`)." +msgid "The method now supports hostname check with :attr:`ssl.SSLContext.check_hostname` and *Server Name Indicator* (see :const:`~ssl.HAS_SNI`)." msgstr "" -#: ../../library/smtplib.rst:432 -msgid "" -"The error raised for lack of STARTTLS support is now " -"the :exc:`SMTPNotSupportedError` subclass instead of the " -"base :exc:`SMTPException`." +msgid "The error raised for lack of STARTTLS support is now the :exc:`SMTPNotSupportedError` subclass instead of the base :exc:`SMTPException`." msgstr "" -#: ../../library/smtplib.rst:440 -msgid "" -"Send mail. The required arguments are an :rfc:`822` from-address string, a " -"list of :rfc:`822` to-address strings (a bare string will be treated as a " -"list with 1 address), and a message string. The caller may pass a list of " -"ESMTP options (such as ``\"8bitmime\"``) to be used in ``MAIL FROM`` " -"commands as *mail_options*. ESMTP options (such as ``DSN`` commands) that " -"should be used with all ``RCPT`` commands can be passed as *rcpt_options*. " -"Each option should be passed as a string containing the full text of the " -"option, including any potential key (for instance, " -"``\"NOTIFY=SUCCESS,FAILURE\"``). (If you need to use different ESMTP options " -"to different recipients you have to use the low-level methods such " -"as :meth:`!mail`, :meth:`!rcpt` and :meth:`!data` to send the message.)" -msgstr "" - -#: ../../library/smtplib.rst:453 -msgid "" -"The *from_addr* and *to_addrs* parameters are used to construct the message " -"envelope used by the transport agents. ``sendmail`` does not modify the " -"message headers in any way." +msgid "Send mail. The required arguments are an :rfc:`822` from-address string, a list of :rfc:`822` to-address strings (a bare string will be treated as a list with 1 address), and a message string. The caller may pass a list of ESMTP options (such as ``\"8bitmime\"``) to be used in ``MAIL FROM`` commands as *mail_options*. ESMTP options (such as ``DSN`` commands) that should be used with all ``RCPT`` commands can be passed as *rcpt_options*. Each option should be passed as a string containing the full text of the option, including any potential key (for instance, ``\"NOTIFY=SUCCESS,FAILURE\"``). (If you need to use different ESMTP options to different recipients you have to use the low-level methods such as :meth:`!mail`, :meth:`!rcpt` and :meth:`!data` to send the message.)" msgstr "" -#: ../../library/smtplib.rst:457 -msgid "" -"*msg* may be a string containing characters in the ASCII range, or a byte " -"string. A string is encoded to bytes using the ascii codec, and lone " -"``\\r`` and ``\\n`` characters are converted to ``\\r\\n`` characters. A " -"byte string is not modified." +msgid "The *from_addr* and *to_addrs* parameters are used to construct the message envelope used by the transport agents. ``sendmail`` does not modify the message headers in any way." msgstr "" -#: ../../library/smtplib.rst:462 -msgid "" -"If there has been no previous ``EHLO`` or ``HELO`` command this session, " -"this method tries ESMTP ``EHLO`` first. If the server does ESMTP, message " -"size and each of the specified options will be passed to it (if the option " -"is in the feature set the server advertises). If ``EHLO`` fails, ``HELO`` " -"will be tried and ESMTP options suppressed." +msgid "*msg* may be a string containing characters in the ASCII range, or a byte string. A string is encoded to bytes using the ascii codec, and lone ``\\r`` and ``\\n`` characters are converted to ``\\r\\n`` characters. A byte string is not modified." msgstr "" -#: ../../library/smtplib.rst:468 -msgid "" -"This method will return normally if the mail is accepted for at least one " -"recipient. Otherwise it will raise an exception. That is, if this method " -"does not raise an exception, then someone should get your mail. If this " -"method does not raise an exception, it returns a dictionary, with one entry " -"for each recipient that was refused. Each entry contains a tuple of the " -"SMTP error code and the accompanying error message sent by the server." +msgid "If there has been no previous ``EHLO`` or ``HELO`` command this session, this method tries ESMTP ``EHLO`` first. If the server does ESMTP, message size and each of the specified options will be passed to it (if the option is in the feature set the server advertises). If ``EHLO`` fails, ``HELO`` will be tried and ESMTP options suppressed." msgstr "" -#: ../../library/smtplib.rst:475 -msgid "" -"If ``SMTPUTF8`` is included in *mail_options*, and the server supports it, " -"*from_addr* and *to_addrs* may contain non-ASCII characters." +msgid "This method will return normally if the mail is accepted for at least one recipient. Otherwise it will raise an exception. That is, if this method does not raise an exception, then someone should get your mail. If this method does not raise an exception, it returns a dictionary, with one entry for each recipient that was refused. Each entry contains a tuple of the SMTP error code and the accompanying error message sent by the server." +msgstr "" + +msgid "If ``SMTPUTF8`` is included in *mail_options*, and the server supports it, *from_addr* and *to_addrs* may contain non-ASCII characters." msgstr "" -#: ../../library/smtplib.rst:478 msgid "This method may raise the following exceptions:" msgstr "" -#: ../../library/smtplib.rst:480 msgid ":exc:`SMTPRecipientsRefused`" msgstr "" -#: ../../library/smtplib.rst:481 msgid "All recipients were refused. Nobody got the mail." msgstr "" -#: ../../library/smtplib.rst:486 msgid ":exc:`SMTPSenderRefused`" msgstr "" -#: ../../library/smtplib.rst:487 msgid "The server didn't accept the *from_addr*." msgstr "" -#: ../../library/smtplib.rst:489 msgid ":exc:`SMTPDataError`" msgstr "" -#: ../../library/smtplib.rst:490 -msgid "" -"The server replied with an unexpected error code (other than a refusal of a " -"recipient)." +msgid "The server replied with an unexpected error code (other than a refusal of a recipient)." msgstr "" -#: ../../library/smtplib.rst:494 -msgid "" -"``SMTPUTF8`` was given in the *mail_options* but is not supported by the " -"server." +msgid "``SMTPUTF8`` was given in the *mail_options* but is not supported by the server." msgstr "" -#: ../../library/smtplib.rst:497 -msgid "" -"Unless otherwise noted, the connection will be open even after an exception " -"is raised." +msgid "Unless otherwise noted, the connection will be open even after an exception is raised." msgstr "" -#: ../../library/smtplib.rst:500 msgid "*msg* may be a byte string." msgstr "" -#: ../../library/smtplib.rst:503 -msgid "" -"``SMTPUTF8`` support added, and :exc:`SMTPNotSupportedError` may be raised " -"if ``SMTPUTF8`` is specified but the server does not support it." +msgid "``SMTPUTF8`` support added, and :exc:`SMTPNotSupportedError` may be raised if ``SMTPUTF8`` is specified but the server does not support it." msgstr "" -#: ../../library/smtplib.rst:511 -msgid "" -"This is a convenience method for calling :meth:`sendmail` with the message " -"represented by an :class:`email.message.Message` object. The arguments have " -"the same meaning as for :meth:`sendmail`, except that *msg* is a ``Message`` " -"object." +msgid "This is a convenience method for calling :meth:`sendmail` with the message represented by an :class:`email.message.Message` object. The arguments have the same meaning as for :meth:`sendmail`, except that *msg* is a ``Message`` object." +msgstr "" + +msgid "If *from_addr* is ``None`` or *to_addrs* is ``None``, ``send_message`` fills those arguments with addresses extracted from the headers of *msg* as specified in :rfc:`5322`\\: *from_addr* is set to the :mailheader:`Sender` field if it is present, and otherwise to the :mailheader:`From` field. *to_addrs* combines the values (if any) of the :mailheader:`To`, :mailheader:`Cc`, and :mailheader:`Bcc` fields from *msg*. If exactly one set of :mailheader:`Resent-*` headers appear in the message, the regular headers are ignored and the :mailheader:`Resent-*` headers are used instead. If the message contains more than one set of :mailheader:`Resent-*` headers, a :exc:`ValueError` is raised, since there is no way to unambiguously detect the most recent set of :mailheader:`Resent-` headers." +msgstr "" + +msgid "``send_message`` serializes *msg* using :class:`~email.generator.BytesGenerator` with ``\\r\\n`` as the *linesep*, and calls :meth:`sendmail` to transmit the resulting message. Regardless of the values of *from_addr* and *to_addrs*, ``send_message`` does not transmit any :mailheader:`Bcc` or :mailheader:`Resent-Bcc` headers that may appear in *msg*. If any of the addresses in *from_addr* and *to_addrs* contain non-ASCII characters and the server does not advertise ``SMTPUTF8`` support, an :exc:`SMTPNotSupportedError` is raised. Otherwise the ``Message`` is serialized with a clone of its :mod:`~email.policy` with the :attr:`~email.policy.EmailPolicy.utf8` attribute set to ``True``, and ``SMTPUTF8`` and ``BODY=8BITMIME`` are added to *mail_options*." msgstr "" -#: ../../library/smtplib.rst:516 -msgid "" -"If *from_addr* is ``None`` or *to_addrs* is ``None``, ``send_message`` fills " -"those arguments with addresses extracted from the headers of *msg* as " -"specified in :rfc:`5322`\\: *from_addr* is set to the :mailheader:`Sender` " -"field if it is present, and otherwise to the :mailheader:`From` field. " -"*to_addrs* combines the values (if any) of " -"the :mailheader:`To`, :mailheader:`Cc`, and :mailheader:`Bcc` fields from " -"*msg*. If exactly one set of :mailheader:`Resent-*` headers appear in the " -"message, the regular headers are ignored and the :mailheader:`Resent-*` " -"headers are used instead. If the message contains more than one set " -"of :mailheader:`Resent-*` headers, a :exc:`ValueError` is raised, since " -"there is no way to unambiguously detect the most recent set " -"of :mailheader:`Resent-` headers." -msgstr "" - -#: ../../library/smtplib.rst:528 -msgid "" -"``send_message`` serializes *msg* " -"using :class:`~email.generator.BytesGenerator` with ``\\r\\n`` as the " -"*linesep*, and calls :meth:`sendmail` to transmit the resulting message. " -"Regardless of the values of *from_addr* and *to_addrs*, ``send_message`` " -"does not transmit any :mailheader:`Bcc` or :mailheader:`Resent-Bcc` headers " -"that may appear in *msg*. If any of the addresses in *from_addr* and " -"*to_addrs* contain non-ASCII characters and the server does not advertise " -"``SMTPUTF8`` support, an :exc:`SMTPNotSupportedError` is raised. Otherwise " -"the ``Message`` is serialized with a clone of its :mod:`~email.policy` with " -"the :attr:`~email.policy.EmailPolicy.utf8` attribute set to ``True``, and " -"``SMTPUTF8`` and ``BODY=8BITMIME`` are added to *mail_options*." -msgstr "" - -#: ../../library/smtplib.rst:542 msgid "Support for internationalized addresses (``SMTPUTF8``)." msgstr "" -#: ../../library/smtplib.rst:548 -msgid "" -"Terminate the SMTP session and close the connection. Return the result of " -"the SMTP ``QUIT`` command." +msgid "Terminate the SMTP session and close the connection. Return the result of the SMTP ``QUIT`` command." msgstr "" -#: ../../library/smtplib.rst:552 -msgid "" -"Low-level methods corresponding to the standard SMTP/ESMTP commands " -"``HELP``, ``RSET``, ``NOOP``, ``MAIL``, ``RCPT``, and ``DATA`` are also " -"supported. Normally these do not need to be called directly, so they are not " -"documented here. For details, consult the module code." +msgid "Low-level methods corresponding to the standard SMTP/ESMTP commands ``HELP``, ``RSET``, ``NOOP``, ``MAIL``, ``RCPT``, and ``DATA`` are also supported. Normally these do not need to be called directly, so they are not documented here. For details, consult the module code." msgstr "" -#: ../../library/smtplib.rst:557 msgid "Additionally, an SMTP instance has the following attributes:" msgstr "" -#: ../../library/smtplib.rst:562 msgid "The response to the ``HELO`` command, see :meth:`helo`." msgstr "" -#: ../../library/smtplib.rst:567 msgid "The response to the ``EHLO`` command, see :meth:`ehlo`." msgstr "" -#: ../../library/smtplib.rst:572 -msgid "" -"A boolean value indicating whether the server supports ESMTP, " -"see :meth:`ehlo`." +msgid "A boolean value indicating whether the server supports ESMTP, see :meth:`ehlo`." msgstr "" -#: ../../library/smtplib.rst:578 -msgid "" -"A dictionary of the names of SMTP service extensions supported by the " -"server, see :meth:`ehlo`." +msgid "A dictionary of the names of SMTP service extensions supported by the server, see :meth:`ehlo`." msgstr "" -#: ../../library/smtplib.rst:585 msgid "SMTP Example" msgstr "" -#: ../../library/smtplib.rst:587 -msgid "" -"This example prompts the user for addresses needed in the message envelope " -"('To' and 'From' addresses), and the message to be delivered. Note that the " -"headers to be included with the message must be included in the message as " -"entered; this example doesn't do any processing of the :rfc:`822` headers. " -"In particular, the 'To' and 'From' addresses must be included in the message " -"headers explicitly::" +msgid "This example prompts the user for addresses needed in the message envelope ('To' and 'From' addresses), and the message to be delivered. Note that the headers to be included with the message must be included in the message as entered; this example doesn't do any processing of the :rfc:`822` headers. In particular, the 'To' and 'From' addresses must be included in the message headers explicitly::" msgstr "" -#: ../../library/smtplib.rst:593 msgid "" "import smtplib\n" "\n" @@ -808,21 +416,14 @@ msgid "" "server.quit()" msgstr "" -#: ../../library/smtplib.rst:622 -msgid "" -"In general, you will want to use the :mod:`email` package's features to " -"construct an email message, which you can then send " -"via :meth:`~smtplib.SMTP.send_message`; see :ref:`email-examples`." +msgid "In general, you will want to use the :mod:`email` package's features to construct an email message, which you can then send via :meth:`~smtplib.SMTP.send_message`; see :ref:`email-examples`." msgstr "" -#: ../../library/smtplib.rst:11 msgid "SMTP" msgstr "" -#: ../../library/smtplib.rst:11 msgid "protocol" msgstr "" -#: ../../library/smtplib.rst:11 msgid "Simple Mail Transfer Protocol" msgstr "" diff --git a/library/sndhdr.po b/library/sndhdr.po index a738732e..e9ec9333 100644 --- a/library/sndhdr.po +++ b/library/sndhdr.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2024-11-19 01:03+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,26 +21,14 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/sndhdr.rst:2 msgid ":mod:`!sndhdr` --- Determine type of sound file" msgstr "" -#: ../../library/sndhdr.rst:10 -msgid "" -"This module is no longer part of the Python standard library. It " -"was :ref:`removed in Python 3.13 ` after being " -"deprecated in Python 3.11. The removal was decided in :pep:`594`." +msgid "This module is no longer part of the Python standard library. It was :ref:`removed in Python 3.13 ` after being deprecated in Python 3.11. The removal was decided in :pep:`594`." msgstr "" -#: ../../library/sndhdr.rst:14 -msgid "" -"Possible replacements are third-party modules from " -"PyPI: :pypi:`filetype`, :pypi:`puremagic`, or :pypi:`python-magic`. These " -"are not supported or maintained by the Python core team." +msgid "Possible replacements are third-party modules from PyPI: :pypi:`filetype`, :pypi:`puremagic`, or :pypi:`python-magic`. These are not supported or maintained by the Python core team." msgstr "" -#: ../../library/sndhdr.rst:18 -msgid "" -"The last version of Python that provided the :mod:`!sndhdr` module was " -"`Python 3.12 `_." +msgid "The last version of Python that provided the :mod:`!sndhdr` module was `Python 3.12 `_." msgstr "" diff --git a/library/socket.po b/library/socket.po index a4160acb..54150107 100644 --- a/library/socket.po +++ b/library/socket.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:13+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -25,1197 +25,574 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/socket.rst:2 msgid ":mod:`!socket` --- Low-level networking interface" msgstr "" -#: ../../library/socket.rst:7 msgid "**Source code:** :source:`Lib/socket.py`" msgstr "" -#: ../../library/socket.rst:11 -msgid "" -"This module provides access to the BSD *socket* interface. It is available " -"on all modern Unix systems, Windows, MacOS, and probably additional " -"platforms." +msgid "This module provides access to the BSD *socket* interface. It is available on all modern Unix systems, Windows, MacOS, and probably additional platforms." +msgstr "" + +msgid "Some behavior may be platform dependent, since calls are made to the operating system socket APIs." msgstr "" -#: ../../library/socket.rst:16 -msgid "" -"Some behavior may be platform dependent, since calls are made to the " -"operating system socket APIs." -msgstr "" - -#: ../../library/socket.rst:198 ../../library/socket.rst:208 -#: ../../library/socket.rst:236 ../../library/socket.rst:243 -#: ../../library/socket.rst:260 ../../library/socket.rst:410 -#: ../../library/socket.rst:496 ../../library/socket.rst:513 -#: ../../library/socket.rst:528 ../../library/socket.rst:539 -#: ../../library/socket.rst:548 ../../library/socket.rst:557 -#: ../../library/socket.rst:568 ../../library/socket.rst:580 -#: ../../library/socket.rst:591 ../../library/socket.rst:604 -#: ../../library/socket.rst:632 ../../library/socket.rst:644 -#: ../../library/socket.rst:650 ../../library/socket.rst:682 -#: ../../library/socket.rst:735 ../../library/socket.rst:747 -#: ../../library/socket.rst:756 ../../library/socket.rst:771 -#: ../../library/socket.rst:780 ../../library/socket.rst:788 -#: ../../library/socket.rst:805 ../../library/socket.rst:820 -#: ../../library/socket.rst:830 ../../library/socket.rst:962 -#: ../../library/socket.rst:1081 ../../library/socket.rst:1097 -#: ../../library/socket.rst:1110 ../../library/socket.rst:1125 -#: ../../library/socket.rst:1142 ../../library/socket.rst:1153 -#: ../../library/socket.rst:1164 ../../library/socket.rst:1175 -#: ../../library/socket.rst:1264 ../../library/socket.rst:1284 -#: ../../library/socket.rst:1310 ../../library/socket.rst:1333 -#: ../../library/socket.rst:1362 ../../library/socket.rst:1373 -#: ../../library/socket.rst:1400 ../../library/socket.rst:1417 -#: ../../library/socket.rst:1434 ../../library/socket.rst:1448 -#: ../../library/socket.rst:1559 ../../library/socket.rst:1606 -#: ../../library/socket.rst:1620 ../../library/socket.rst:1640 -#: ../../library/socket.rst:1687 ../../library/socket.rst:1720 -#: ../../library/socket.rst:1733 ../../library/socket.rst:1859 -#: ../../library/socket.rst:1903 ../../library/socket.rst:2011 -#: ../../library/socket.rst:2029 ../../library/socket.rst:2110 -#: ../../library/socket.rst:2120 ../../library/socket.rst:2132 -#: ../../includes/wasm-notavail.rst:3 msgid "Availability" msgstr "" -#: ../../includes/wasm-notavail.rst:5 -msgid "" -"This module does not work or is not available on WebAssembly. See :ref:`wasm-" -"availability` for more information." +msgid "This module does not work or is not available on WebAssembly. See :ref:`wasm-availability` for more information." msgstr "" -#: ../../library/socket.rst:24 -msgid "" -"The Python interface is a straightforward transliteration of the Unix system " -"call and library interface for sockets to Python's object-oriented style: " -"the :func:`~socket.socket` function returns a :dfn:`socket object` whose " -"methods implement the various socket system calls. Parameter types are " -"somewhat higher-level than in the C interface: as with :meth:`read` " -"and :meth:`write` operations on Python files, buffer allocation on receive " -"operations is automatic, and buffer length is implicit on send operations." +msgid "The Python interface is a straightforward transliteration of the Unix system call and library interface for sockets to Python's object-oriented style: the :func:`~socket.socket` function returns a :dfn:`socket object` whose methods implement the various socket system calls. Parameter types are somewhat higher-level than in the C interface: as with :meth:`read` and :meth:`write` operations on Python files, buffer allocation on receive operations is automatic, and buffer length is implicit on send operations." msgstr "" -#: ../../library/socket.rst:35 msgid "Module :mod:`socketserver`" msgstr "" -#: ../../library/socket.rst:36 msgid "Classes that simplify writing network servers." msgstr "" -#: ../../library/socket.rst:38 msgid "Module :mod:`ssl`" msgstr "" -#: ../../library/socket.rst:39 msgid "A TLS/SSL wrapper for socket objects." msgstr "" -#: ../../library/socket.rst:45 msgid "Socket families" msgstr "" -#: ../../library/socket.rst:47 -msgid "" -"Depending on the system and the build options, various socket families are " -"supported by this module." +msgid "Depending on the system and the build options, various socket families are supported by this module." msgstr "" -#: ../../library/socket.rst:50 -msgid "" -"The address format required by a particular socket object is automatically " -"selected based on the address family specified when the socket object was " -"created. Socket addresses are represented as follows:" +msgid "The address format required by a particular socket object is automatically selected based on the address family specified when the socket object was created. Socket addresses are represented as follows:" msgstr "" -#: ../../library/socket.rst:54 -msgid "" -"The address of an :const:`AF_UNIX` socket bound to a file system node is " -"represented as a string, using the file system encoding and the " -"``'surrogateescape'`` error handler (see :pep:`383`). An address in Linux's " -"abstract namespace is returned as a :term:`bytes-like object` with an " -"initial null byte; note that sockets in this namespace can communicate with " -"normal file system sockets, so programs intended to run on Linux may need to " -"deal with both types of address. A string or bytes-like object can be used " -"for either type of address when passing it as an argument." +msgid "The address of an :const:`AF_UNIX` socket bound to a file system node is represented as a string, using the file system encoding and the ``'surrogateescape'`` error handler (see :pep:`383`). An address in Linux's abstract namespace is returned as a :term:`bytes-like object` with an initial null byte; note that sockets in this namespace can communicate with normal file system sockets, so programs intended to run on Linux may need to deal with both types of address. A string or bytes-like object can be used for either type of address when passing it as an argument." msgstr "" -#: ../../library/socket.rst:64 -msgid "" -"Previously, :const:`AF_UNIX` socket paths were assumed to use UTF-8 encoding." +msgid "Previously, :const:`AF_UNIX` socket paths were assumed to use UTF-8 encoding." msgstr "" -#: ../../library/socket.rst:68 ../../library/socket.rst:1247 -#: ../../library/socket.rst:1289 ../../library/socket.rst:2104 msgid "Writable :term:`bytes-like object` is now accepted." msgstr "" -#: ../../library/socket.rst:73 -msgid "" -"A pair ``(host, port)`` is used for the :const:`AF_INET` address family, " -"where *host* is a string representing either a hostname in internet domain " -"notation like ``'daring.cwi.nl'`` or an IPv4 address like " -"``'100.50.200.5'``, and *port* is an integer." +msgid "A pair ``(host, port)`` is used for the :const:`AF_INET` address family, where *host* is a string representing either a hostname in internet domain notation like ``'daring.cwi.nl'`` or an IPv4 address like ``'100.50.200.5'``, and *port* is an integer." msgstr "" -#: ../../library/socket.rst:78 -msgid "" -"For IPv4 addresses, two special forms are accepted instead of a host " -"address: ``''`` represents :const:`INADDR_ANY`, which is used to bind to all " -"interfaces, and the string ``''`` " -"represents :const:`INADDR_BROADCAST`. This behavior is not compatible with " -"IPv6, therefore, you may want to avoid these if you intend to support IPv6 " -"with your Python programs." +msgid "For IPv4 addresses, two special forms are accepted instead of a host address: ``''`` represents :const:`INADDR_ANY`, which is used to bind to all interfaces, and the string ``''`` represents :const:`INADDR_BROADCAST`. This behavior is not compatible with IPv6, therefore, you may want to avoid these if you intend to support IPv6 with your Python programs." msgstr "" -#: ../../library/socket.rst:85 -msgid "" -"For :const:`AF_INET6` address family, a four-tuple ``(host, port, flowinfo, " -"scope_id)`` is used, where *flowinfo* and *scope_id* represent the " -"``sin6_flowinfo`` and ``sin6_scope_id`` members in :const:`struct " -"sockaddr_in6` in C. For :mod:`!socket` module methods, *flowinfo* and " -"*scope_id* can be omitted just for backward compatibility. Note, however, " -"omission of *scope_id* can cause problems in manipulating scoped IPv6 " -"addresses." +msgid "For :const:`AF_INET6` address family, a four-tuple ``(host, port, flowinfo, scope_id)`` is used, where *flowinfo* and *scope_id* represent the ``sin6_flowinfo`` and ``sin6_scope_id`` members in :const:`struct sockaddr_in6` in C. For :mod:`!socket` module methods, *flowinfo* and *scope_id* can be omitted just for backward compatibility. Note, however, omission of *scope_id* can cause problems in manipulating scoped IPv6 addresses." msgstr "" -#: ../../library/socket.rst:92 -msgid "" -"For multicast addresses (with *scope_id* meaningful) *address* may not " -"contain ``%scope_id`` (or ``zone id``) part. This information is superfluous " -"and may be safely omitted (recommended)." +msgid "For multicast addresses (with *scope_id* meaningful) *address* may not contain ``%scope_id`` (or ``zone id``) part. This information is superfluous and may be safely omitted (recommended)." msgstr "" -#: ../../library/socket.rst:97 msgid ":const:`AF_NETLINK` sockets are represented as pairs ``(pid, groups)``." msgstr "" -#: ../../library/socket.rst:99 -msgid "" -"Linux-only support for TIPC is available using the :const:`AF_TIPC` address " -"family. TIPC is an open, non-IP based networked protocol designed for use " -"in clustered computer environments. Addresses are represented by a tuple, " -"and the fields depend on the address type. The general tuple form is " -"``(addr_type, v1, v2, v3 [, scope])``, where:" +msgid "Linux-only support for TIPC is available using the :const:`AF_TIPC` address family. TIPC is an open, non-IP based networked protocol designed for use in clustered computer environments. Addresses are represented by a tuple, and the fields depend on the address type. The general tuple form is ``(addr_type, v1, v2, v3 [, scope])``, where:" msgstr "" -#: ../../library/socket.rst:105 -msgid "" -"*addr_type* is one of :const:`TIPC_ADDR_NAMESEQ`, :const:`TIPC_ADDR_NAME`, " -"or :const:`TIPC_ADDR_ID`." +msgid "*addr_type* is one of :const:`TIPC_ADDR_NAMESEQ`, :const:`TIPC_ADDR_NAME`, or :const:`TIPC_ADDR_ID`." msgstr "" -#: ../../library/socket.rst:107 -msgid "" -"*scope* is one of :const:`TIPC_ZONE_SCOPE`, :const:`TIPC_CLUSTER_SCOPE`, " -"and :const:`TIPC_NODE_SCOPE`." +msgid "*scope* is one of :const:`TIPC_ZONE_SCOPE`, :const:`TIPC_CLUSTER_SCOPE`, and :const:`TIPC_NODE_SCOPE`." msgstr "" -#: ../../library/socket.rst:109 -msgid "" -"If *addr_type* is :const:`TIPC_ADDR_NAME`, then *v1* is the server type, " -"*v2* is the port identifier, and *v3* should be 0." +msgid "If *addr_type* is :const:`TIPC_ADDR_NAME`, then *v1* is the server type, *v2* is the port identifier, and *v3* should be 0." msgstr "" -#: ../../library/socket.rst:112 -msgid "" -"If *addr_type* is :const:`TIPC_ADDR_NAMESEQ`, then *v1* is the server type, " -"*v2* is the lower port number, and *v3* is the upper port number." +msgid "If *addr_type* is :const:`TIPC_ADDR_NAMESEQ`, then *v1* is the server type, *v2* is the lower port number, and *v3* is the upper port number." msgstr "" -#: ../../library/socket.rst:115 -msgid "" -"If *addr_type* is :const:`TIPC_ADDR_ID`, then *v1* is the node, *v2* is the " -"reference, and *v3* should be set to 0." +msgid "If *addr_type* is :const:`TIPC_ADDR_ID`, then *v1* is the node, *v2* is the reference, and *v3* should be set to 0." msgstr "" -#: ../../library/socket.rst:118 -msgid "" -"A tuple ``(interface, )`` is used for the :const:`AF_CAN` address family, " -"where *interface* is a string representing a network interface name like " -"``'can0'``. The network interface name ``''`` can be used to receive packets " -"from all network interfaces of this family." +msgid "A tuple ``(interface, )`` is used for the :const:`AF_CAN` address family, where *interface* is a string representing a network interface name like ``'can0'``. The network interface name ``''`` can be used to receive packets from all network interfaces of this family." msgstr "" -#: ../../library/socket.rst:123 -msgid "" -":const:`CAN_ISOTP` protocol requires a tuple ``(interface, rx_addr, " -"tx_addr)`` where both additional parameters are unsigned long integer that " -"represent a CAN identifier (standard or extended)." +msgid ":const:`CAN_ISOTP` protocol requires a tuple ``(interface, rx_addr, tx_addr)`` where both additional parameters are unsigned long integer that represent a CAN identifier (standard or extended)." msgstr "" -#: ../../library/socket.rst:126 -msgid "" -":const:`CAN_J1939` protocol requires a tuple ``(interface, name, pgn, " -"addr)`` where additional parameters are 64-bit unsigned integer representing " -"the ECU name, a 32-bit unsigned integer representing the Parameter Group " -"Number (PGN), and an 8-bit integer representing the address." +msgid ":const:`CAN_J1939` protocol requires a tuple ``(interface, name, pgn, addr)`` where additional parameters are 64-bit unsigned integer representing the ECU name, a 32-bit unsigned integer representing the Parameter Group Number (PGN), and an 8-bit integer representing the address." msgstr "" -#: ../../library/socket.rst:131 -msgid "" -"A string or a tuple ``(id, unit)`` is used for the :const:`SYSPROTO_CONTROL` " -"protocol of the :const:`PF_SYSTEM` family. The string is the name of a " -"kernel control using a dynamically assigned ID. The tuple can be used if ID " -"and unit number of the kernel control are known or if a registered ID is " -"used." +msgid "A string or a tuple ``(id, unit)`` is used for the :const:`SYSPROTO_CONTROL` protocol of the :const:`PF_SYSTEM` family. The string is the name of a kernel control using a dynamically assigned ID. The tuple can be used if ID and unit number of the kernel control are known or if a registered ID is used." msgstr "" -#: ../../library/socket.rst:139 -msgid "" -":const:`AF_BLUETOOTH` supports the following protocols and address formats:" +msgid ":const:`AF_BLUETOOTH` supports the following protocols and address formats:" msgstr "" -#: ../../library/socket.rst:142 -msgid "" -":const:`BTPROTO_L2CAP` accepts a tuple ``(bdaddr, psm[, cid[, " -"bdaddr_type]])`` where:" +msgid ":const:`BTPROTO_L2CAP` accepts a tuple ``(bdaddr, psm[, cid[, bdaddr_type]])`` where:" msgstr "" -#: ../../library/socket.rst:145 msgid "``bdaddr`` is a string specifying the Bluetooth address." msgstr "" -#: ../../library/socket.rst:146 msgid "``psm`` is an integer specifying the Protocol/Service Multiplexer." msgstr "" -#: ../../library/socket.rst:147 -msgid "" -"``cid`` is an optional integer specifying the Channel Identifier. If not " -"given, defaults to zero." +msgid "``cid`` is an optional integer specifying the Channel Identifier. If not given, defaults to zero." msgstr "" -#: ../../library/socket.rst:149 -msgid "" -"``bdaddr_type`` is an optional integer specifying the address type; one " -"of :const:`BDADDR_BREDR` " -"(default), :const:`BDADDR_LE_PUBLIC`, :const:`BDADDR_LE_RANDOM`." +msgid "``bdaddr_type`` is an optional integer specifying the address type; one of :const:`BDADDR_BREDR` (default), :const:`BDADDR_LE_PUBLIC`, :const:`BDADDR_LE_RANDOM`." msgstr "" -#: ../../library/socket.rst:153 msgid "Added ``cid`` and ``bdaddr_type`` fields." msgstr "" -#: ../../library/socket.rst:156 -msgid "" -":const:`BTPROTO_RFCOMM` accepts ``(bdaddr, channel)`` where ``bdaddr`` is " -"the Bluetooth address as a string and ``channel`` is an integer." +msgid ":const:`BTPROTO_RFCOMM` accepts ``(bdaddr, channel)`` where ``bdaddr`` is the Bluetooth address as a string and ``channel`` is an integer." msgstr "" -#: ../../library/socket.rst:159 msgid ":const:`BTPROTO_HCI` accepts a format that depends on your OS." msgstr "" -#: ../../library/socket.rst:161 -msgid "" -"On Linux it accepts an integer ``device_id`` or a tuple ``(device_id, " -"[channel])`` where ``device_id`` specifies the number of the Bluetooth " -"device, and ``channel`` is an optional integer specifying the HCI channel " -"(:const:`HCI_CHANNEL_RAW` by default)." +msgid "On Linux it accepts an integer ``device_id`` or a tuple ``(device_id, [channel])`` where ``device_id`` specifies the number of the Bluetooth device, and ``channel`` is an optional integer specifying the HCI channel (:const:`HCI_CHANNEL_RAW` by default)." msgstr "" -#: ../../library/socket.rst:166 -msgid "" -"On FreeBSD, NetBSD and DragonFly BSD it accepts ``bdaddr`` where ``bdaddr`` " -"is the Bluetooth address as a string." +msgid "On FreeBSD, NetBSD and DragonFly BSD it accepts ``bdaddr`` where ``bdaddr`` is the Bluetooth address as a string." msgstr "" -#: ../../library/socket.rst:169 msgid "NetBSD and DragonFlyBSD support added." msgstr "" -#: ../../library/socket.rst:172 ../../library/socket.rst:183 msgid "FreeBSD support added." msgstr "" -#: ../../library/socket.rst:175 -msgid "" -"Added ``channel`` field. ``device_id`` not packed in a tuple is now accepted." +msgid "Added ``channel`` field. ``device_id`` not packed in a tuple is now accepted." msgstr "" -#: ../../library/socket.rst:179 -msgid "" -":const:`BTPROTO_SCO` accepts ``bdaddr`` where ``bdaddr`` is the Bluetooth " -"address as a string or a :class:`bytes` object. (ex. ``'12:23:34:45:56:67'`` " -"or ``b'12:23:34:45:56:67'``)" +msgid ":const:`BTPROTO_SCO` accepts ``bdaddr`` where ``bdaddr`` is the Bluetooth address as a string or a :class:`bytes` object. (ex. ``'12:23:34:45:56:67'`` or ``b'12:23:34:45:56:67'``)" msgstr "" -#: ../../library/socket.rst:186 -msgid "" -":const:`AF_ALG` is a Linux-only socket based interface to Kernel " -"cryptography. An algorithm socket is configured with a tuple of two to four " -"elements ``(type, name [, feat [, mask]])``, where:" +msgid ":const:`AF_ALG` is a Linux-only socket based interface to Kernel cryptography. An algorithm socket is configured with a tuple of two to four elements ``(type, name [, feat [, mask]])``, where:" msgstr "" -#: ../../library/socket.rst:190 -msgid "" -"*type* is the algorithm type as string, e.g. ``aead``, ``hash``, " -"``skcipher`` or ``rng``." +msgid "*type* is the algorithm type as string, e.g. ``aead``, ``hash``, ``skcipher`` or ``rng``." msgstr "" -#: ../../library/socket.rst:193 -msgid "" -"*name* is the algorithm name and operation mode as string, e.g. ``sha256``, " -"``hmac(sha256)``, ``cbc(aes)`` or ``drbg_nopr_ctr_aes256``." +msgid "*name* is the algorithm name and operation mode as string, e.g. ``sha256``, ``hmac(sha256)``, ``cbc(aes)`` or ``drbg_nopr_ctr_aes256``." msgstr "" -#: ../../library/socket.rst:196 msgid "*feat* and *mask* are unsigned 32bit integers." msgstr "" -#: ../../library/socket.rst:200 msgid "Some algorithm types require more recent Kernels." msgstr "" -#: ../../library/socket.rst:204 -msgid "" -":const:`AF_VSOCK` allows communication between virtual machines and their " -"hosts. The sockets are represented as a ``(CID, port)`` tuple where the " -"context ID or CID and port are integers." +msgid ":const:`AF_VSOCK` allows communication between virtual machines and their hosts. The sockets are represented as a ``(CID, port)`` tuple where the context ID or CID and port are integers." msgstr "" -#: ../../library/socket.rst:210 msgid "See :manpage:`vsock(7)`" msgstr "" -#: ../../library/socket.rst:214 -msgid "" -":const:`AF_PACKET` is a low-level interface directly to network devices. The " -"addresses are represented by the tuple ``(ifname, proto[, pkttype[, hatype[, " -"addr]]])`` where:" +msgid ":const:`AF_PACKET` is a low-level interface directly to network devices. The addresses are represented by the tuple ``(ifname, proto[, pkttype[, hatype[, addr]]])`` where:" msgstr "" -#: ../../library/socket.rst:218 msgid "*ifname* - String specifying the device name." msgstr "" -#: ../../library/socket.rst:219 -msgid "" -"*proto* - The Ethernet protocol number. May be :data:`ETH_P_ALL` to capture " -"all protocols, one of the :ref:`ETHERTYPE_* constants ` or any other Ethernet protocol number." +msgid "*proto* - The Ethernet protocol number. May be :data:`ETH_P_ALL` to capture all protocols, one of the :ref:`ETHERTYPE_* constants ` or any other Ethernet protocol number." msgstr "" -#: ../../library/socket.rst:223 msgid "*pkttype* - Optional integer specifying the packet type:" msgstr "" -#: ../../library/socket.rst:225 msgid "``PACKET_HOST`` (the default) - Packet addressed to the local host." msgstr "" -#: ../../library/socket.rst:226 msgid "``PACKET_BROADCAST`` - Physical-layer broadcast packet." msgstr "" -#: ../../library/socket.rst:227 -msgid "" -"``PACKET_MULTICAST`` - Packet sent to a physical-layer multicast address." +msgid "``PACKET_MULTICAST`` - Packet sent to a physical-layer multicast address." msgstr "" -#: ../../library/socket.rst:228 -msgid "" -"``PACKET_OTHERHOST`` - Packet to some other host that has been caught by a " -"device driver in promiscuous mode." +msgid "``PACKET_OTHERHOST`` - Packet to some other host that has been caught by a device driver in promiscuous mode." msgstr "" -#: ../../library/socket.rst:230 -msgid "" -"``PACKET_OUTGOING`` - Packet originating from the local host that is looped " -"back to a packet socket." +msgid "``PACKET_OUTGOING`` - Packet originating from the local host that is looped back to a packet socket." msgstr "" -#: ../../library/socket.rst:232 msgid "*hatype* - Optional integer specifying the ARP hardware address type." msgstr "" -#: ../../library/socket.rst:233 -msgid "" -"*addr* - Optional bytes-like object specifying the hardware physical " -"address, whose interpretation depends on the device." +msgid "*addr* - Optional bytes-like object specifying the hardware physical address, whose interpretation depends on the device." msgstr "" -#: ../../library/socket.rst:238 -msgid "" -":const:`AF_QIPCRTR` is a Linux-only socket based interface for communicating " -"with services running on co-processors in Qualcomm platforms. The address " -"family is represented as a ``(node, port)`` tuple where the *node* and " -"*port* are non-negative integers." +msgid ":const:`AF_QIPCRTR` is a Linux-only socket based interface for communicating with services running on co-processors in Qualcomm platforms. The address family is represented as a ``(node, port)`` tuple where the *node* and *port* are non-negative integers." msgstr "" -#: ../../library/socket.rst:247 -msgid "" -":const:`IPPROTO_UDPLITE` is a variant of UDP which allows you to specify " -"what portion of a packet is covered with the checksum. It adds two socket " -"options that you can change. ``self.setsockopt(IPPROTO_UDPLITE, " -"UDPLITE_SEND_CSCOV, length)`` will change what portion of outgoing packets " -"are covered by the checksum and ``self.setsockopt(IPPROTO_UDPLITE, " -"UDPLITE_RECV_CSCOV, length)`` will filter out packets which cover too little " -"of their data. In both cases ``length`` should be in ``range(8, 2**16, 8)``." +msgid ":const:`IPPROTO_UDPLITE` is a variant of UDP which allows you to specify what portion of a packet is covered with the checksum. It adds two socket options that you can change. ``self.setsockopt(IPPROTO_UDPLITE, UDPLITE_SEND_CSCOV, length)`` will change what portion of outgoing packets are covered by the checksum and ``self.setsockopt(IPPROTO_UDPLITE, UDPLITE_RECV_CSCOV, length)`` will filter out packets which cover too little of their data. In both cases ``length`` should be in ``range(8, 2**16, 8)``." msgstr "" -#: ../../library/socket.rst:256 -msgid "" -"Such a socket should be constructed with ``socket(AF_INET, SOCK_DGRAM, " -"IPPROTO_UDPLITE)`` for IPv4 or ``socket(AF_INET6, SOCK_DGRAM, " -"IPPROTO_UDPLITE)`` for IPv6." +msgid "Such a socket should be constructed with ``socket(AF_INET, SOCK_DGRAM, IPPROTO_UDPLITE)`` for IPv4 or ``socket(AF_INET6, SOCK_DGRAM, IPPROTO_UDPLITE)`` for IPv6." msgstr "" -#: ../../library/socket.rst:264 -msgid "" -":const:`AF_HYPERV` is a Windows-only socket based interface for " -"communicating with Hyper-V hosts and guests. The address family is " -"represented as a ``(vm_id, service_id)`` tuple where the ``vm_id`` and " -"``service_id`` are UUID strings." +msgid ":const:`AF_HYPERV` is a Windows-only socket based interface for communicating with Hyper-V hosts and guests. The address family is represented as a ``(vm_id, service_id)`` tuple where the ``vm_id`` and ``service_id`` are UUID strings." msgstr "" -#: ../../library/socket.rst:269 -msgid "" -"The ``vm_id`` is the virtual machine identifier or a set of known VMID " -"values if the target is not a specific virtual machine. Known VMID constants " -"defined on ``socket`` are:" +msgid "The ``vm_id`` is the virtual machine identifier or a set of known VMID values if the target is not a specific virtual machine. Known VMID constants defined on ``socket`` are:" msgstr "" -#: ../../library/socket.rst:273 msgid "``HV_GUID_ZERO``" msgstr "" -#: ../../library/socket.rst:274 msgid "``HV_GUID_BROADCAST``" msgstr "" -#: ../../library/socket.rst:275 -msgid "" -"``HV_GUID_WILDCARD`` - Used to bind on itself and accept connections from " -"all partitions." +msgid "``HV_GUID_WILDCARD`` - Used to bind on itself and accept connections from all partitions." msgstr "" -#: ../../library/socket.rst:277 -msgid "" -"``HV_GUID_CHILDREN`` - Used to bind on itself and accept connection from " -"child partitions." +msgid "``HV_GUID_CHILDREN`` - Used to bind on itself and accept connection from child partitions." msgstr "" -#: ../../library/socket.rst:279 msgid "``HV_GUID_LOOPBACK`` - Used as a target to itself." msgstr "" -#: ../../library/socket.rst:280 -msgid "" -"``HV_GUID_PARENT`` - When used as a bind accepts connection from the parent " -"partition. When used as an address target it will connect to the parent " -"partition." +msgid "``HV_GUID_PARENT`` - When used as a bind accepts connection from the parent partition. When used as an address target it will connect to the parent partition." msgstr "" -#: ../../library/socket.rst:283 msgid "The ``service_id`` is the service identifier of the registered service." msgstr "" -#: ../../library/socket.rst:287 -msgid "" -"If you use a hostname in the *host* portion of IPv4/v6 socket address, the " -"program may show a nondeterministic behavior, as Python uses the first " -"address returned from the DNS resolution. The socket address will be " -"resolved differently into an actual IPv4/v6 address, depending on the " -"results from DNS resolution and/or the host configuration. For " -"deterministic behavior use a numeric address in *host* portion." +msgid "If you use a hostname in the *host* portion of IPv4/v6 socket address, the program may show a nondeterministic behavior, as Python uses the first address returned from the DNS resolution. The socket address will be resolved differently into an actual IPv4/v6 address, depending on the results from DNS resolution and/or the host configuration. For deterministic behavior use a numeric address in *host* portion." msgstr "" -#: ../../library/socket.rst:294 -msgid "" -"All errors raise exceptions. The normal exceptions for invalid argument " -"types and out-of-memory conditions can be raised. Errors related to socket " -"or address semantics raise :exc:`OSError` or one of its subclasses." +msgid "All errors raise exceptions. The normal exceptions for invalid argument types and out-of-memory conditions can be raised. Errors related to socket or address semantics raise :exc:`OSError` or one of its subclasses." msgstr "" -#: ../../library/socket.rst:299 -msgid "" -"Non-blocking mode is supported through :meth:`~socket.setblocking`. A " -"generalization of this based on timeouts is supported " -"through :meth:`~socket.settimeout`." +msgid "Non-blocking mode is supported through :meth:`~socket.setblocking`. A generalization of this based on timeouts is supported through :meth:`~socket.settimeout`." msgstr "" -#: ../../library/socket.rst:305 msgid "Module contents" msgstr "" -#: ../../library/socket.rst:307 msgid "The module :mod:`!socket` exports the following elements." msgstr "" -#: ../../library/socket.rst:311 msgid "Exceptions" msgstr "" -#: ../../library/socket.rst:315 msgid "A deprecated alias of :exc:`OSError`." msgstr "" -#: ../../library/socket.rst:317 msgid "Following :pep:`3151`, this class was made an alias of :exc:`OSError`." msgstr "" -#: ../../library/socket.rst:323 -msgid "" -"A subclass of :exc:`OSError`, this exception is raised for address-related " -"errors, i.e. for functions that use *h_errno* in the POSIX C API, " -"including :func:`gethostbyname_ex` and :func:`gethostbyaddr`. The " -"accompanying value is a pair ``(h_errno, string)`` representing an error " -"returned by a library call. *h_errno* is a numeric value, while *string* " -"represents the description of *h_errno*, as returned by " -"the :c:func:`hstrerror` C function." +msgid "A subclass of :exc:`OSError`, this exception is raised for address-related errors, i.e. for functions that use *h_errno* in the POSIX C API, including :func:`gethostbyname_ex` and :func:`gethostbyaddr`. The accompanying value is a pair ``(h_errno, string)`` representing an error returned by a library call. *h_errno* is a numeric value, while *string* represents the description of *h_errno*, as returned by the :c:func:`hstrerror` C function." msgstr "" -#: ../../library/socket.rst:331 ../../library/socket.rst:344 -#: ../../library/socket.rst:357 msgid "This class was made a subclass of :exc:`OSError`." msgstr "" -#: ../../library/socket.rst:336 -msgid "" -"A subclass of :exc:`OSError`, this exception is raised for address-related " -"errors by :func:`getaddrinfo` and :func:`getnameinfo`. The accompanying " -"value is a pair ``(error, string)`` representing an error returned by a " -"library call. *string* represents the description of *error*, as returned " -"by the :c:func:`gai_strerror` C function. The numeric *error* value will " -"match one of the :const:`!EAI_\\*` constants defined in this module." +msgid "A subclass of :exc:`OSError`, this exception is raised for address-related errors by :func:`getaddrinfo` and :func:`getnameinfo`. The accompanying value is a pair ``(error, string)`` representing an error returned by a library call. *string* represents the description of *error*, as returned by the :c:func:`gai_strerror` C function. The numeric *error* value will match one of the :const:`!EAI_\\*` constants defined in this module." msgstr "" -#: ../../library/socket.rst:349 msgid "A deprecated alias of :exc:`TimeoutError`." msgstr "" -#: ../../library/socket.rst:351 -msgid "" -"A subclass of :exc:`OSError`, this exception is raised when a timeout occurs " -"on a socket which has had timeouts enabled via a prior call " -"to :meth:`~socket.settimeout` (or implicitly " -"through :func:`~socket.setdefaulttimeout`). The accompanying value is a " -"string whose value is currently always \"timed out\"." +msgid "A subclass of :exc:`OSError`, this exception is raised when a timeout occurs on a socket which has had timeouts enabled via a prior call to :meth:`~socket.settimeout` (or implicitly through :func:`~socket.setdefaulttimeout`). The accompanying value is a string whose value is currently always \"timed out\"." msgstr "" -#: ../../library/socket.rst:360 msgid "This class was made an alias of :exc:`TimeoutError`." msgstr "" -#: ../../library/socket.rst:365 msgid "Constants" msgstr "" -#: ../../library/socket.rst:367 -msgid "" -"The AF_* and SOCK_* constants are now :class:`AddressFamily` " -"and :class:`SocketKind` :class:`.IntEnum` collections." +msgid "The AF_* and SOCK_* constants are now :class:`AddressFamily` and :class:`SocketKind` :class:`.IntEnum` collections." msgstr "" -#: ../../library/socket.rst:376 -msgid "" -"These constants represent the address (and protocol) families, used for the " -"first argument to :func:`~socket.socket`. If the :const:`AF_UNIX` constant " -"is not defined then this protocol is unsupported. More constants may be " -"available depending on the system." +msgid "These constants represent the address (and protocol) families, used for the first argument to :func:`~socket.socket`. If the :const:`AF_UNIX` constant is not defined then this protocol is unsupported. More constants may be available depending on the system." msgstr "" -#: ../../library/socket.rst:383 -msgid "" -":const:`AF_UNSPEC` means that :func:`getaddrinfo` should return socket " -"addresses for any address family (either IPv4, IPv6, or any other) that can " -"be used." +msgid ":const:`AF_UNSPEC` means that :func:`getaddrinfo` should return socket addresses for any address family (either IPv4, IPv6, or any other) that can be used." msgstr "" -#: ../../library/socket.rst:393 -msgid "" -"These constants represent the socket types, used for the second argument " -"to :func:`~socket.socket`. More constants may be available depending on the " -"system. (Only :const:`SOCK_STREAM` and :const:`SOCK_DGRAM` appear to be " -"generally useful.)" +msgid "These constants represent the socket types, used for the second argument to :func:`~socket.socket`. More constants may be available depending on the system. (Only :const:`SOCK_STREAM` and :const:`SOCK_DGRAM` appear to be generally useful.)" msgstr "" -#: ../../library/socket.rst:401 -msgid "" -"These two constants, if defined, can be combined with the socket types and " -"allow you to set some flags atomically (thus avoiding possible race " -"conditions and the need for separate calls)." +msgid "These two constants, if defined, can be combined with the socket types and allow you to set some flags atomically (thus avoiding possible race conditions and the need for separate calls)." msgstr "" -#: ../../library/socket.rst:407 -msgid "" -"`Secure File Descriptor Handling `_ for a more thorough explanation." +msgid "`Secure File Descriptor Handling `_ for a more thorough explanation." msgstr "" -#: ../../library/socket.rst:431 -msgid "" -"Many constants of these forms, documented in the Unix documentation on " -"sockets and/or the IP protocol, are also defined in the socket module. They " -"are generally used in arguments to the :meth:`~socket.setsockopt` " -"and :meth:`~socket.getsockopt` methods of socket objects. In most cases, " -"only those symbols that are defined in the Unix header files are defined; " -"for a few symbols, default values are provided." +msgid "Many constants of these forms, documented in the Unix documentation on sockets and/or the IP protocol, are also defined in the socket module. They are generally used in arguments to the :meth:`~socket.setsockopt` and :meth:`~socket.getsockopt` methods of socket objects. In most cases, only those symbols that are defined in the Unix header files are defined; for a few symbols, default values are provided." msgstr "" -#: ../../library/socket.rst:438 -msgid "" -"``SO_DOMAIN``, ``SO_PROTOCOL``, ``SO_PEERSEC``, ``SO_PASSSEC``, " -"``TCP_USER_TIMEOUT``, ``TCP_CONGESTION`` were added." +msgid "``SO_DOMAIN``, ``SO_PROTOCOL``, ``SO_PEERSEC``, ``SO_PASSSEC``, ``TCP_USER_TIMEOUT``, ``TCP_CONGESTION`` were added." msgstr "" -#: ../../library/socket.rst:442 -msgid "" -"Added support for ``TCP_FASTOPEN``, ``TCP_KEEPCNT`` on Windows platforms " -"when available." +msgid "Added support for ``TCP_FASTOPEN``, ``TCP_KEEPCNT`` on Windows platforms when available." msgstr "" -#: ../../library/socket.rst:446 msgid "``TCP_NOTSENT_LOWAT`` was added." msgstr "" -#: ../../library/socket.rst:449 -msgid "" -"Added support for ``TCP_KEEPIDLE``, ``TCP_KEEPINTVL`` on Windows platforms " -"when available." +msgid "Added support for ``TCP_KEEPIDLE``, ``TCP_KEEPINTVL`` on Windows platforms when available." msgstr "" -#: ../../library/socket.rst:452 -msgid "" -"``IP_RECVTOS`` was added. Added ``TCP_KEEPALIVE``. On MacOS this constant " -"can be used in the same way that ``TCP_KEEPIDLE`` is used on Linux." +msgid "``IP_RECVTOS`` was added. Added ``TCP_KEEPALIVE``. On MacOS this constant can be used in the same way that ``TCP_KEEPIDLE`` is used on Linux." msgstr "" -#: ../../library/socket.rst:457 -msgid "" -"Added ``TCP_CONNECTION_INFO``. On MacOS this constant can be used in the " -"same way that ``TCP_INFO`` is used on Linux and BSD." +msgid "Added ``TCP_CONNECTION_INFO``. On MacOS this constant can be used in the same way that ``TCP_INFO`` is used on Linux and BSD." msgstr "" -#: ../../library/socket.rst:461 -msgid "" -"Added ``SO_RTABLE`` and ``SO_USER_COOKIE``. On OpenBSD and FreeBSD " -"respectively those constants can be used in the same way that ``SO_MARK`` is " -"used on Linux. Also added missing TCP socket options from Linux: " -"``TCP_MD5SIG``, ``TCP_THIN_LINEAR_TIMEOUTS``, ``TCP_THIN_DUPACK``, " -"``TCP_REPAIR``, ``TCP_REPAIR_QUEUE``, ``TCP_QUEUE_SEQ``, " -"``TCP_REPAIR_OPTIONS``, ``TCP_TIMESTAMP``, ``TCP_CC_INFO``, " -"``TCP_SAVE_SYN``, ``TCP_SAVED_SYN``, ``TCP_REPAIR_WINDOW``, " -"``TCP_FASTOPEN_CONNECT``, ``TCP_ULP``, ``TCP_MD5SIG_EXT``, " -"``TCP_FASTOPEN_KEY``, ``TCP_FASTOPEN_NO_COOKIE``, ``TCP_ZEROCOPY_RECEIVE``, " -"``TCP_INQ``, ``TCP_TX_DELAY``. Added ``IP_PKTINFO``, ``IP_UNBLOCK_SOURCE``, " -"``IP_BLOCK_SOURCE``, ``IP_ADD_SOURCE_MEMBERSHIP``, " -"``IP_DROP_SOURCE_MEMBERSHIP``." -msgstr "" - -#: ../../library/socket.rst:475 -msgid "" -"Added ``SO_BINDTOIFINDEX``. On Linux this constant can be used in the same " -"way that ``SO_BINDTODEVICE`` is used, but with the index of a network " -"interface instead of its name." +msgid "Added ``SO_RTABLE`` and ``SO_USER_COOKIE``. On OpenBSD and FreeBSD respectively those constants can be used in the same way that ``SO_MARK`` is used on Linux. Also added missing TCP socket options from Linux: ``TCP_MD5SIG``, ``TCP_THIN_LINEAR_TIMEOUTS``, ``TCP_THIN_DUPACK``, ``TCP_REPAIR``, ``TCP_REPAIR_QUEUE``, ``TCP_QUEUE_SEQ``, ``TCP_REPAIR_OPTIONS``, ``TCP_TIMESTAMP``, ``TCP_CC_INFO``, ``TCP_SAVE_SYN``, ``TCP_SAVED_SYN``, ``TCP_REPAIR_WINDOW``, ``TCP_FASTOPEN_CONNECT``, ``TCP_ULP``, ``TCP_MD5SIG_EXT``, ``TCP_FASTOPEN_KEY``, ``TCP_FASTOPEN_NO_COOKIE``, ``TCP_ZEROCOPY_RECEIVE``, ``TCP_INQ``, ``TCP_TX_DELAY``. Added ``IP_PKTINFO``, ``IP_UNBLOCK_SOURCE``, ``IP_BLOCK_SOURCE``, ``IP_ADD_SOURCE_MEMBERSHIP``, ``IP_DROP_SOURCE_MEMBERSHIP``." msgstr "" -#: ../../library/socket.rst:480 -msgid "" -"Added missing ``IP_FREEBIND``, ``IP_RECVERR``, ``IPV6_RECVERR``, " -"``IP_RECVTTL``, and ``IP_RECVORIGDSTADDR`` on Linux." +msgid "Added ``SO_BINDTOIFINDEX``. On Linux this constant can be used in the same way that ``SO_BINDTODEVICE`` is used, but with the index of a network interface instead of its name." +msgstr "" + +msgid "Added missing ``IP_FREEBIND``, ``IP_RECVERR``, ``IPV6_RECVERR``, ``IP_RECVTTL``, and ``IP_RECVORIGDSTADDR`` on Linux." msgstr "" -#: ../../library/socket.rst:484 msgid "Added support for ``TCP_QUICKACK`` on Windows platforms when available." msgstr "" -#: ../../library/socket.rst:493 ../../library/socket.rst:577 -#: ../../library/socket.rst:601 -msgid "" -"Many constants of these forms, documented in the Linux documentation, are " -"also defined in the socket module." +msgid "Many constants of these forms, documented in the Linux documentation, are also defined in the socket module." msgstr "" -#: ../../library/socket.rst:500 msgid "NetBSD support was added." msgstr "" -#: ../../library/socket.rst:503 msgid "Restored missing ``CAN_RAW_ERR_FILTER`` on Linux." msgstr "" -#: ../../library/socket.rst:509 -msgid "" -"CAN_BCM, in the CAN protocol family, is the broadcast manager (BCM) " -"protocol. Broadcast manager constants, documented in the Linux " -"documentation, are also defined in the socket module." +msgid "CAN_BCM, in the CAN protocol family, is the broadcast manager (BCM) protocol. Broadcast manager constants, documented in the Linux documentation, are also defined in the socket module." msgstr "" -#: ../../library/socket.rst:516 -msgid "" -"The :data:`CAN_BCM_CAN_FD_FRAME` flag is only available on Linux >= 4.8." +msgid "The :data:`CAN_BCM_CAN_FD_FRAME` flag is only available on Linux >= 4.8." msgstr "" -#: ../../library/socket.rst:522 -msgid "" -"Enables CAN FD support in a CAN_RAW socket. This is disabled by default. " -"This allows your application to send both CAN and CAN FD frames; however, " -"you must accept both CAN and CAN FD frames when reading from the socket." +msgid "Enables CAN FD support in a CAN_RAW socket. This is disabled by default. This allows your application to send both CAN and CAN FD frames; however, you must accept both CAN and CAN FD frames when reading from the socket." msgstr "" -#: ../../library/socket.rst:526 ../../library/socket.rst:537 msgid "This constant is documented in the Linux documentation." msgstr "" -#: ../../library/socket.rst:534 -msgid "" -"Joins the applied CAN filters such that only CAN frames that match all given " -"CAN filters are passed to user space." +msgid "Joins the applied CAN filters such that only CAN frames that match all given CAN filters are passed to user space." msgstr "" -#: ../../library/socket.rst:545 -msgid "" -"CAN_ISOTP, in the CAN protocol family, is the ISO-TP (ISO 15765-2) protocol. " -"ISO-TP constants, documented in the Linux documentation." +msgid "CAN_ISOTP, in the CAN protocol family, is the ISO-TP (ISO 15765-2) protocol. ISO-TP constants, documented in the Linux documentation." msgstr "" -#: ../../library/socket.rst:554 -msgid "" -"CAN_J1939, in the CAN protocol family, is the SAE J1939 protocol. J1939 " -"constants, documented in the Linux documentation." +msgid "CAN_J1939, in the CAN protocol family, is the SAE J1939 protocol. J1939 constants, documented in the Linux documentation." msgstr "" -#: ../../library/socket.rst:565 -msgid "" -"These two constants, documented in the FreeBSD divert(4) manual page, are " -"also defined in the socket module." +msgid "These two constants, documented in the FreeBSD divert(4) manual page, are also defined in the socket module." msgstr "" -#: ../../library/socket.rst:585 -msgid "" -":data:`!ETH_P_ALL` can be used in the :class:`~socket.socket` constructor as " -"*proto* for the :const:`AF_PACKET` family in order to capture every packet, " -"regardless of protocol." +msgid ":data:`!ETH_P_ALL` can be used in the :class:`~socket.socket` constructor as *proto* for the :const:`AF_PACKET` family in order to capture every packet, regardless of protocol." msgstr "" -#: ../../library/socket.rst:589 msgid "For more information, see the :manpage:`packet(7)` manpage." msgstr "" -#: ../../library/socket.rst:614 -msgid "" -"Constants for Windows' WSAIoctl(). The constants are used as arguments to " -"the :meth:`~socket.socket.ioctl` method of socket objects." +msgid "Constants for Windows' WSAIoctl(). The constants are used as arguments to the :meth:`~socket.socket.ioctl` method of socket objects." msgstr "" -#: ../../library/socket.rst:617 ../../library/socket.rst:1722 msgid "``SIO_LOOPBACK_FAST_PATH`` was added." msgstr "" -#: ../../library/socket.rst:623 -msgid "" -"TIPC related constants, matching the ones exported by the C socket API. See " -"the TIPC documentation for more information." +msgid "TIPC related constants, matching the ones exported by the C socket API. See the TIPC documentation for more information." msgstr "" -#: ../../library/socket.rst:630 msgid "Constants for Linux Kernel cryptography." msgstr "" -#: ../../library/socket.rst:642 msgid "Constants for Linux host/guest communication." msgstr "" -#: ../../library/socket.rst:656 -msgid "" -"This constant contains a boolean value which indicates if IPv6 is supported " -"on this platform." +msgid "This constant contains a boolean value which indicates if IPv6 is supported on this platform." msgstr "" -#: ../../library/socket.rst:665 msgid "Integer constants for use with Bluetooth addresses." msgstr "" -#: ../../library/socket.rst:670 -msgid "" -"These are string constants containing Bluetooth addresses with special " -"meanings. For example, :const:`BDADDR_ANY` can be used to indicate any " -"address when specifying the binding socket with :const:`BTPROTO_RFCOMM`." +msgid "These are string constants containing Bluetooth addresses with special meanings. For example, :const:`BDADDR_ANY` can be used to indicate any address when specifying the binding socket with :const:`BTPROTO_RFCOMM`." msgstr "" -#: ../../library/socket.rst:679 -msgid "" -"These constants describe the Bluetooth address type when binding or " -"connecting a :const:`BTPROTO_L2CAP` socket." +msgid "These constants describe the Bluetooth address type when binding or connecting a :const:`BTPROTO_L2CAP` socket." msgstr "" -#: ../../library/socket.rst:692 -msgid "" -"Used in the level argument to the :meth:`~socket.setsockopt` " -"and :meth:`~socket.getsockopt` methods of Bluetooth socket objects." +msgid "Used in the level argument to the :meth:`~socket.setsockopt` and :meth:`~socket.getsockopt` methods of Bluetooth socket objects." msgstr "" -#: ../../library/socket.rst:695 -msgid "" -":const:`SOL_BLUETOOTH` is only available on Linux. Other constants are " -"available if the corresponding protocol is supported." +msgid ":const:`SOL_BLUETOOTH` is only available on Linux. Other constants are available if the corresponding protocol is supported." msgstr "" -#: ../../library/socket.rst:707 -msgid "" -"Used in the option name and value argument to the :meth:`~socket.setsockopt` " -"and :meth:`~socket.getsockopt` methods of Bluetooth socket objects." +msgid "Used in the option name and value argument to the :meth:`~socket.setsockopt` and :meth:`~socket.getsockopt` methods of Bluetooth socket objects." msgstr "" -#: ../../library/socket.rst:710 -msgid "" -":const:`!BT_*` and :const:`L2CAP_LM` are only available on Linux. :const:`!" -"SO_BTH_*` are only available on Windows. Other constants may be available on " -"Linux and various BSD platforms." +msgid ":const:`!BT_*` and :const:`L2CAP_LM` are only available on Linux. :const:`!SO_BTH_*` are only available on Windows. Other constants may be available on Linux and various BSD platforms." msgstr "" -#: ../../library/socket.rst:722 -msgid "" -"Option names for use with :const:`BTPROTO_HCI`. Availability and format of " -"the option values depend on platform." +msgid "Option names for use with :const:`BTPROTO_HCI`. Availability and format of the option values depend on platform." msgstr "" -#: ../../library/socket.rst:725 -msgid "" -"Added :const:`!SO_HCI_EVT_FILTER` and :const:`!SO_HCI_PKT_FILTER` on NetBSD " -"and DragonFly BSD. Added :const:`!HCI_DATA_DIR` on FreeBSD, NetBSD and " -"DragonFly BSD." +msgid "Added :const:`!SO_HCI_EVT_FILTER` and :const:`!SO_HCI_PKT_FILTER` on NetBSD and DragonFly BSD. Added :const:`!HCI_DATA_DIR` on FreeBSD, NetBSD and DragonFly BSD." msgstr "" -#: ../../library/socket.rst:732 -msgid "" -"The ``device_id`` value used to create an HCI socket that isn't specific to " -"a single Bluetooth adapter." +msgid "The ``device_id`` value used to create an HCI socket that isn't specific to a single Bluetooth adapter." msgstr "" -#: ../../library/socket.rst:745 -msgid "" -"Possible values for ``channel`` field in the :const:`BTPROTO_HCI` address." +msgid "Possible values for ``channel`` field in the :const:`BTPROTO_HCI` address." msgstr "" -#: ../../library/socket.rst:753 -msgid "" -"Constant for Qualcomm's IPC router protocol, used to communicate with " -"service providing remote processors." +msgid "Constant for Qualcomm's IPC router protocol, used to communicate with service providing remote processors." msgstr "" -#: ../../library/socket.rst:762 -msgid "" -"LOCAL_CREDS and LOCAL_CREDS_PERSISTENT can be used with SOCK_DGRAM, " -"SOCK_STREAM sockets, equivalent to Linux/DragonFlyBSD SO_PASSCRED, while " -"LOCAL_CREDS sends the credentials at first read, LOCAL_CREDS_PERSISTENT " -"sends for each read, SCM_CREDS2 must be then used for the latter for the " -"message type." +msgid "LOCAL_CREDS and LOCAL_CREDS_PERSISTENT can be used with SOCK_DGRAM, SOCK_STREAM sockets, equivalent to Linux/DragonFlyBSD SO_PASSCRED, while LOCAL_CREDS sends the credentials at first read, LOCAL_CREDS_PERSISTENT sends for each read, SCM_CREDS2 must be then used for the latter for the message type." msgstr "" -#: ../../library/socket.rst:775 -msgid "" -"Constant to optimize CPU locality, to be used in conjunction " -"with :data:`SO_REUSEPORT`." +msgid "Constant to optimize CPU locality, to be used in conjunction with :data:`SO_REUSEPORT`." msgstr "" -#: ../../library/socket.rst:784 -msgid "" -"Constant to enable duplicate address and port bindings with load balancing." +msgid "Constant to enable duplicate address and port bindings with load balancing." msgstr "" -#: ../../library/socket.rst:803 msgid "Constants for Windows Hyper-V sockets for host/guest communications." msgstr "" -#: ../../library/socket.rst:816 -msgid "" -"`IEEE 802.3 protocol number `_. constants." +msgid "`IEEE 802.3 protocol number `_. constants." msgstr "" -#: ../../library/socket.rst:828 -msgid "" -"These constants are used by the :meth:`~socket.socket.shutdown` method of " -"socket objects." +msgid "These constants are used by the :meth:`~socket.socket.shutdown` method of socket objects." msgstr "" -#: ../../library/socket.rst:833 msgid "Functions" msgstr "" -#: ../../library/socket.rst:836 msgid "Creating sockets" msgstr "" -#: ../../library/socket.rst:838 -msgid "" -"The following functions all create :ref:`socket objects `." +msgid "The following functions all create :ref:`socket objects `." msgstr "" -#: ../../library/socket.rst:841 -msgid "" -"The :class:`socket ` class constructor creates a new socket " -"directly; see :ref:`socket-objects` for its parameters and full description." +msgid "The :class:`socket ` class constructor creates a new socket directly; see :ref:`socket-objects` for its parameters and full description." msgstr "" -#: ../../library/socket.rst:846 -msgid "" -"Build a pair of connected socket objects using the given address family, " -"socket type, and protocol number. Address family, socket type, and protocol " -"number are as for the :func:`~socket.socket` function. The default family " -"is :const:`AF_UNIX` if defined on the platform; otherwise, the default " -"is :const:`AF_INET`." +msgid "Build a pair of connected socket objects using the given address family, socket type, and protocol number. Address family, socket type, and protocol number are as for the :func:`~socket.socket` function. The default family is :const:`AF_UNIX` if defined on the platform; otherwise, the default is :const:`AF_INET`." msgstr "" -#: ../../library/socket.rst:851 msgid "The newly created sockets are :ref:`non-inheritable `." msgstr "" -#: ../../library/socket.rst:853 -msgid "" -"The returned socket objects now support the whole socket API, rather than a " -"subset." +msgid "The returned socket objects now support the whole socket API, rather than a subset." msgstr "" -#: ../../library/socket.rst:857 msgid "The returned sockets are now non-inheritable." msgstr "" -#: ../../library/socket.rst:860 msgid "Windows support added." msgstr "" -#: ../../library/socket.rst:866 -msgid "" -"Connect to a TCP service listening on the internet *address* (a 2-tuple " -"``(host, port)``), and return the socket object. This is a higher-level " -"function than :meth:`socket.connect`: if *host* is a non-numeric hostname, " -"it will try to resolve it for both :data:`AF_INET` and :data:`AF_INET6`, and " -"then try to connect to all possible addresses in turn until a connection " -"succeeds. This makes it easy to write clients that are compatible to both " -"IPv4 and IPv6." +msgid "Connect to a TCP service listening on the internet *address* (a 2-tuple ``(host, port)``), and return the socket object. This is a higher-level function than :meth:`socket.connect`: if *host* is a non-numeric hostname, it will try to resolve it for both :data:`AF_INET` and :data:`AF_INET6`, and then try to connect to all possible addresses in turn until a connection succeeds. This makes it easy to write clients that are compatible to both IPv4 and IPv6." msgstr "" -#: ../../library/socket.rst:874 -msgid "" -"Passing the optional *timeout* parameter will set the timeout on the socket " -"instance before attempting to connect. If no *timeout* is supplied, the " -"global default timeout setting returned by :func:`getdefaulttimeout` is used." +msgid "Passing the optional *timeout* parameter will set the timeout on the socket instance before attempting to connect. If no *timeout* is supplied, the global default timeout setting returned by :func:`getdefaulttimeout` is used." msgstr "" -#: ../../library/socket.rst:879 -msgid "" -"If supplied, *source_address* must be a 2-tuple ``(host, port)`` for the " -"socket to bind to as its source address before connecting. If host or port " -"are '' or 0 respectively the OS default behavior will be used." +msgid "If supplied, *source_address* must be a 2-tuple ``(host, port)`` for the socket to bind to as its source address before connecting. If host or port are '' or 0 respectively the OS default behavior will be used." msgstr "" -#: ../../library/socket.rst:883 -msgid "" -"When a connection cannot be created, an exception is raised. By default, it " -"is the exception from the last address in the list. If *all_errors* is " -"``True``, it is an :exc:`ExceptionGroup` containing the errors of all " -"attempts." +msgid "When a connection cannot be created, an exception is raised. By default, it is the exception from the last address in the list. If *all_errors* is ``True``, it is an :exc:`ExceptionGroup` containing the errors of all attempts." msgstr "" -#: ../../library/socket.rst:888 msgid "*source_address* was added." msgstr "" -#: ../../library/socket.rst:891 msgid "*all_errors* was added." msgstr "" -#: ../../library/socket.rst:897 -msgid "" -"Convenience function which creates a TCP socket bound to *address* (a 2-" -"tuple ``(host, port)``) and returns the socket object." +msgid "Convenience function which creates a TCP socket bound to *address* (a 2-tuple ``(host, port)``) and returns the socket object." msgstr "" -#: ../../library/socket.rst:900 -msgid "" -"*family* should be either :data:`AF_INET` or :data:`AF_INET6`. *backlog* is " -"the queue size passed to :meth:`socket.listen`; if not specified , a default " -"reasonable value is chosen. *reuse_port* dictates whether to set " -"the :data:`SO_REUSEPORT` socket option." +msgid "*family* should be either :data:`AF_INET` or :data:`AF_INET6`. *backlog* is the queue size passed to :meth:`socket.listen`; if not specified , a default reasonable value is chosen. *reuse_port* dictates whether to set the :data:`SO_REUSEPORT` socket option." +msgstr "" + +msgid "If *dualstack_ipv6* is true, *family* is :data:`AF_INET6` and the platform supports it the socket will be able to accept both IPv4 and IPv6 connections, else it will raise :exc:`ValueError`. Most POSIX platforms and Windows are supposed to support this functionality. When this functionality is enabled the address returned by :meth:`socket.getpeername` when an IPv4 connection occurs will be an IPv6 address represented as an IPv4-mapped IPv6 address. If *dualstack_ipv6* is false it will explicitly disable this functionality on platforms that enable it by default (e.g. Linux). This parameter can be used in conjunction with :func:`has_dualstack_ipv6`:" msgstr "" -#: ../../library/socket.rst:905 -msgid "" -"If *dualstack_ipv6* is true, *family* is :data:`AF_INET6` and the platform " -"supports it the socket will be able to accept both IPv4 and IPv6 " -"connections, else it will raise :exc:`ValueError`. Most POSIX platforms and " -"Windows are supposed to support this functionality. When this functionality " -"is enabled the address returned by :meth:`socket.getpeername` when an IPv4 " -"connection occurs will be an IPv6 address represented as an IPv4-mapped IPv6 " -"address. If *dualstack_ipv6* is false it will explicitly disable this " -"functionality on platforms that enable it by default (e.g. Linux). This " -"parameter can be used in conjunction with :func:`has_dualstack_ipv6`:" -msgstr "" - -#: ../../library/socket.rst:918 msgid "" "import socket\n" "\n" "addr = (\"\", 8080) # all interfaces, port 8080\n" "if socket.has_dualstack_ipv6():\n" -" s = socket.create_server(addr, family=socket.AF_INET6, " -"dualstack_ipv6=True)\n" +" s = socket.create_server(addr, family=socket.AF_INET6, dualstack_ipv6=True)\n" "else:\n" " s = socket.create_server(addr)" msgstr "" -#: ../../library/socket.rst:927 -msgid "" -"On POSIX platforms the :data:`SO_REUSEADDR` socket option is set in order to " -"immediately reuse previous sockets which were bound on the same *address* " -"and remained in TIME_WAIT state." +msgid "On POSIX platforms the :data:`SO_REUSEADDR` socket option is set in order to immediately reuse previous sockets which were bound on the same *address* and remained in TIME_WAIT state." msgstr "" -#: ../../library/socket.rst:935 -msgid "" -"Return ``True`` if the platform supports creating a TCP socket which can " -"handle both IPv4 and IPv6 connections." +msgid "Return ``True`` if the platform supports creating a TCP socket which can handle both IPv4 and IPv6 connections." +msgstr "" + +msgid "Duplicate the file descriptor *fd* (an integer as returned by a file object's :meth:`~io.IOBase.fileno` method) and build a socket object from the result. Address family, socket type and protocol number are as for the :func:`~socket.socket` function. The file descriptor should refer to a socket, but this is not checked --- subsequent operations on the object may fail if the file descriptor is invalid. This function is rarely needed, but can be used to get or set socket options on a socket passed to a program as standard input or output (such as a server started by the Unix inet daemon). The socket is assumed to be in blocking mode." msgstr "" -#: ../../library/socket.rst:942 -msgid "" -"Duplicate the file descriptor *fd* (an integer as returned by a file " -"object's :meth:`~io.IOBase.fileno` method) and build a socket object from " -"the result. Address family, socket type and protocol number are as for " -"the :func:`~socket.socket` function. The file descriptor should refer to a " -"socket, but this is not checked --- subsequent operations on the object may " -"fail if the file descriptor is invalid. This function is rarely needed, but " -"can be used to get or set socket options on a socket passed to a program as " -"standard input or output (such as a server started by the Unix inet " -"daemon). The socket is assumed to be in blocking mode." -msgstr "" - -#: ../../library/socket.rst:951 ../../library/socket.rst:1486 -#: ../../library/socket.rst:1541 ../../library/socket.rst:1635 msgid "The newly created socket is :ref:`non-inheritable `." msgstr "" -#: ../../library/socket.rst:953 ../../library/socket.rst:1497 msgid "The returned socket is now non-inheritable." msgstr "" -#: ../../library/socket.rst:959 -msgid "" -"Instantiate a socket from data obtained from the :meth:`socket.share` " -"method. The socket is assumed to be in blocking mode." +msgid "Instantiate a socket from data obtained from the :meth:`socket.share` method. The socket is assumed to be in blocking mode." msgstr "" -#: ../../library/socket.rst:968 msgid "Other functions" msgstr "" -#: ../../library/socket.rst:970 msgid "The :mod:`!socket` module also offers various network-related services:" msgstr "" -#: ../../library/socket.rst:975 -msgid "" -"Close a socket file descriptor. This is like :func:`os.close`, but for " -"sockets. On some platforms (most notably Windows) :func:`os.close` does not " -"work for socket file descriptors." +msgid "Close a socket file descriptor. This is like :func:`os.close`, but for sockets. On some platforms (most notably Windows) :func:`os.close` does not work for socket file descriptors." msgstr "" -#: ../../library/socket.rst:983 -msgid "" -"This function wraps the C function ``getaddrinfo`` of the underlying system." +msgid "This function wraps the C function ``getaddrinfo`` of the underlying system." msgstr "" -#: ../../library/socket.rst:985 -msgid "" -"Translate the *host*/*port* argument into a sequence of 5-tuples that " -"contain all the necessary arguments for creating a socket connected to that " -"service. *host* is a domain name, a string representation of an IPv4/v6 " -"address or ``None``. *port* is a string service name such as ``'http'``, a " -"numeric port number or ``None``. By passing ``None`` as the value of *host* " -"and *port*, you can pass ``NULL`` to the underlying C API." +msgid "Translate the *host*/*port* argument into a sequence of 5-tuples that contain all the necessary arguments for creating a socket connected to that service. *host* is a domain name, a string representation of an IPv4/v6 address or ``None``. *port* is a string service name such as ``'http'``, a numeric port number or ``None``. By passing ``None`` as the value of *host* and *port*, you can pass ``NULL`` to the underlying C API." msgstr "" -#: ../../library/socket.rst:992 -msgid "" -"The *family*, *type* and *proto* arguments can be optionally specified in " -"order to provide options and limit the list of addresses returned. Pass " -"their default values (:data:`AF_UNSPEC`, 0, and 0, respectively) to not " -"limit the results. See the note below for details." +msgid "The *family*, *type* and *proto* arguments can be optionally specified in order to provide options and limit the list of addresses returned. Pass their default values (:data:`AF_UNSPEC`, 0, and 0, respectively) to not limit the results. See the note below for details." msgstr "" -#: ../../library/socket.rst:997 -msgid "" -"The *flags* argument can be one or several of the ``AI_*`` constants, and " -"will influence how results are computed and returned. For " -"example, :const:`AI_NUMERICHOST` will disable domain name resolution and " -"will raise an error if *host* is a domain name." +msgid "The *flags* argument can be one or several of the ``AI_*`` constants, and will influence how results are computed and returned. For example, :const:`AI_NUMERICHOST` will disable domain name resolution and will raise an error if *host* is a domain name." msgstr "" -#: ../../library/socket.rst:1002 msgid "The function returns a list of 5-tuples with the following structure:" msgstr "" -#: ../../library/socket.rst:1004 msgid "``(family, type, proto, canonname, sockaddr)``" msgstr "" -#: ../../library/socket.rst:1006 -msgid "" -"In these tuples, *family*, *type*, *proto* are all integers and are meant to " -"be passed to the :func:`~socket.socket` function. *canonname* will be a " -"string representing the canonical name of the *host* " -"if :const:`AI_CANONNAME` is part of the *flags* argument; else *canonname* " -"will be empty. *sockaddr* is a tuple describing a socket address, whose " -"format depends on the returned *family* (a ``(address, port)`` 2-tuple " -"for :const:`AF_INET`, a ``(address, port, flowinfo, scope_id)`` 4-tuple " -"for :const:`AF_INET6`), and is meant to be passed to " -"the :meth:`socket.connect` method." -msgstr "" - -#: ../../library/socket.rst:1018 -msgid "" -"If you intend to use results from :func:`!getaddrinfo` to create a socket " -"(rather than, for example, retrieve *canonname*), consider limiting the " -"results by *type* (e.g. :data:`SOCK_STREAM` or :data:`SOCK_DGRAM`) and/or " -"*proto* (e.g. :data:`IPPROTO_TCP` or :data:`IPPROTO_UDP`) that your " -"application can handle." +msgid "In these tuples, *family*, *type*, *proto* are all integers and are meant to be passed to the :func:`~socket.socket` function. *canonname* will be a string representing the canonical name of the *host* if :const:`AI_CANONNAME` is part of the *flags* argument; else *canonname* will be empty. *sockaddr* is a tuple describing a socket address, whose format depends on the returned *family* (a ``(address, port)`` 2-tuple for :const:`AF_INET`, a ``(address, port, flowinfo, scope_id)`` 4-tuple for :const:`AF_INET6`), and is meant to be passed to the :meth:`socket.connect` method." msgstr "" -#: ../../library/socket.rst:1024 -msgid "" -"The behavior with default values of *family*, *type*, *proto* and *flags* is " -"system-specific." +msgid "If you intend to use results from :func:`!getaddrinfo` to create a socket (rather than, for example, retrieve *canonname*), consider limiting the results by *type* (e.g. :data:`SOCK_STREAM` or :data:`SOCK_DGRAM`) and/or *proto* (e.g. :data:`IPPROTO_TCP` or :data:`IPPROTO_UDP`) that your application can handle." msgstr "" -#: ../../library/socket.rst:1027 -msgid "" -"Many systems (for example, most Linux configurations) will return a sorted " -"list of all matching addresses. These addresses should generally be tried in " -"order until a connection succeeds (possibly tried in parallel, for example, " -"using a `Happy Eyeballs`_ algorithm). In these cases, limiting the *type* " -"and/or *proto* can help eliminate unsuccessful or unusable connection " -"attempts." +msgid "The behavior with default values of *family*, *type*, *proto* and *flags* is system-specific." msgstr "" -#: ../../library/socket.rst:1034 -msgid "" -"Some systems will, however, only return a single address. (For example, this " -"was reported on Solaris and AIX configurations.) On these systems, limiting " -"the *type* and/or *proto* helps ensure that this address is usable." +msgid "Many systems (for example, most Linux configurations) will return a sorted list of all matching addresses. These addresses should generally be tried in order until a connection succeeds (possibly tried in parallel, for example, using a `Happy Eyeballs`_ algorithm). In these cases, limiting the *type* and/or *proto* can help eliminate unsuccessful or unusable connection attempts." msgstr "" -#: ../../library/socket.rst:1039 -msgid "" -"Raises an :ref:`auditing event ` ``socket.getaddrinfo`` with " -"arguments ``host``, ``port``, ``family``, ``type``, ``protocol``." +msgid "Some systems will, however, only return a single address. (For example, this was reported on Solaris and AIX configurations.) On these systems, limiting the *type* and/or *proto* helps ensure that this address is usable." msgstr "" -#: ../../library/socket.rst:1041 -msgid "" -"The following example fetches address information for a hypothetical TCP " -"connection to ``example.org`` on port 80 (results may differ on your system " -"if IPv6 isn't enabled)::" +msgid "Raises an :ref:`auditing event ` ``socket.getaddrinfo`` with arguments ``host``, ``port``, ``family``, ``type``, ``protocol``." +msgstr "" + +msgid "The following example fetches address information for a hypothetical TCP connection to ``example.org`` on port 80 (results may differ on your system if IPv6 isn't enabled)::" msgstr "" -#: ../../library/socket.rst:1045 msgid "" ">>> socket.getaddrinfo(\"example.org\", 80, proto=socket.IPPROTO_TCP)\n" "[(socket.AF_INET6, socket.SOCK_STREAM,\n" @@ -1224,877 +601,382 @@ msgid "" " 6, '', ('93.184.216.34', 80))]" msgstr "" -#: ../../library/socket.rst:1051 msgid "parameters can now be passed using keyword arguments." msgstr "" -#: ../../library/socket.rst:1054 -msgid "" -"for IPv6 multicast addresses, string representing an address will not " -"contain ``%scope_id`` part." +msgid "for IPv6 multicast addresses, string representing an address will not contain ``%scope_id`` part." msgstr "" -#: ../../library/socket.rst:1062 -msgid "" -"Return a fully qualified domain name for *name*. If *name* is omitted or " -"empty, it is interpreted as the local host. To find the fully qualified " -"name, the hostname returned by :func:`gethostbyaddr` is checked, followed by " -"aliases for the host, if available. The first name which includes a period " -"is selected. In case no fully qualified domain name is available and *name* " -"was provided, it is returned unchanged. If *name* was empty or equal to " -"``'0.0.0.0'``, the hostname from :func:`gethostname` is returned." +msgid "Return a fully qualified domain name for *name*. If *name* is omitted or empty, it is interpreted as the local host. To find the fully qualified name, the hostname returned by :func:`gethostbyaddr` is checked, followed by aliases for the host, if available. The first name which includes a period is selected. In case no fully qualified domain name is available and *name* was provided, it is returned unchanged. If *name* was empty or equal to ``'0.0.0.0'``, the hostname from :func:`gethostname` is returned." msgstr "" -#: ../../library/socket.rst:1073 -msgid "" -"Translate a host name to IPv4 address format. The IPv4 address is returned " -"as a string, such as ``'100.50.200.5'``. If the host name is an IPv4 " -"address itself it is returned unchanged. See :func:`gethostbyname_ex` for a " -"more complete interface. :func:`gethostbyname` does not support IPv6 name " -"resolution, and :func:`getaddrinfo` should be used instead for IPv4/v6 dual " -"stack support." +msgid "Translate a host name to IPv4 address format. The IPv4 address is returned as a string, such as ``'100.50.200.5'``. If the host name is an IPv4 address itself it is returned unchanged. See :func:`gethostbyname_ex` for a more complete interface. :func:`gethostbyname` does not support IPv6 name resolution, and :func:`getaddrinfo` should be used instead for IPv4/v6 dual stack support." msgstr "" -#: ../../library/socket.rst:1079 ../../library/socket.rst:1095 -msgid "" -"Raises an :ref:`auditing event ` ``socket.gethostbyname`` with " -"argument ``hostname``." +msgid "Raises an :ref:`auditing event ` ``socket.gethostbyname`` with argument ``hostname``." msgstr "" -#: ../../library/socket.rst:1086 -msgid "" -"Translate a host name to IPv4 address format, extended interface. Return a 3-" -"tuple ``(hostname, aliaslist, ipaddrlist)`` where *hostname* is the host's " -"primary host name, *aliaslist* is a (possibly empty) list of alternative " -"host names for the same address, and *ipaddrlist* is a list of IPv4 " -"addresses for the same interface on the same host (often but not always a " -"single address). :func:`gethostbyname_ex` does not support IPv6 name " -"resolution, and :func:`getaddrinfo` should be used instead for IPv4/v6 dual " -"stack support." +msgid "Translate a host name to IPv4 address format, extended interface. Return a 3-tuple ``(hostname, aliaslist, ipaddrlist)`` where *hostname* is the host's primary host name, *aliaslist* is a (possibly empty) list of alternative host names for the same address, and *ipaddrlist* is a list of IPv4 addresses for the same interface on the same host (often but not always a single address). :func:`gethostbyname_ex` does not support IPv6 name resolution, and :func:`getaddrinfo` should be used instead for IPv4/v6 dual stack support." msgstr "" -#: ../../library/socket.rst:1102 -msgid "" -"Return a string containing the hostname of the machine where the Python " -"interpreter is currently executing." +msgid "Return a string containing the hostname of the machine where the Python interpreter is currently executing." msgstr "" -#: ../../library/socket.rst:1105 -msgid "" -"Raises an :ref:`auditing event ` ``socket.gethostname`` with no " -"arguments." +msgid "Raises an :ref:`auditing event ` ``socket.gethostname`` with no arguments." msgstr "" -#: ../../library/socket.rst:1107 -msgid "" -"Note: :func:`gethostname` doesn't always return the fully qualified domain " -"name; use :func:`getfqdn` for that." +msgid "Note: :func:`gethostname` doesn't always return the fully qualified domain name; use :func:`getfqdn` for that." msgstr "" -#: ../../library/socket.rst:1115 -msgid "" -"Return a 3-tuple ``(hostname, aliaslist, ipaddrlist)`` where *hostname* is " -"the primary host name responding to the given *ip_address*, *aliaslist* is a " -"(possibly empty) list of alternative host names for the same address, and " -"*ipaddrlist* is a list of IPv4/v6 addresses for the same interface on the " -"same host (most likely containing only a single address). To find the fully " -"qualified domain name, use the " -"function :func:`getfqdn`. :func:`gethostbyaddr` supports both IPv4 and IPv6." +msgid "Return a 3-tuple ``(hostname, aliaslist, ipaddrlist)`` where *hostname* is the primary host name responding to the given *ip_address*, *aliaslist* is a (possibly empty) list of alternative host names for the same address, and *ipaddrlist* is a list of IPv4/v6 addresses for the same interface on the same host (most likely containing only a single address). To find the fully qualified domain name, use the function :func:`getfqdn`. :func:`gethostbyaddr` supports both IPv4 and IPv6." msgstr "" -#: ../../library/socket.rst:1123 -msgid "" -"Raises an :ref:`auditing event ` ``socket.gethostbyaddr`` with " -"argument ``ip_address``." +msgid "Raises an :ref:`auditing event ` ``socket.gethostbyaddr`` with argument ``ip_address``." msgstr "" -#: ../../library/socket.rst:1130 -msgid "" -"Translate a socket address *sockaddr* into a 2-tuple ``(host, port)``. " -"Depending on the settings of *flags*, the result can contain a fully " -"qualified domain name or numeric address representation in *host*. " -"Similarly, *port* can contain a string port name or a numeric port number." +msgid "Translate a socket address *sockaddr* into a 2-tuple ``(host, port)``. Depending on the settings of *flags*, the result can contain a fully qualified domain name or numeric address representation in *host*. Similarly, *port* can contain a string port name or a numeric port number." msgstr "" -#: ../../library/socket.rst:1135 -msgid "" -"For IPv6 addresses, ``%scope_id`` is appended to the host part if *sockaddr* " -"contains meaningful *scope_id*. Usually this happens for multicast addresses." +msgid "For IPv6 addresses, ``%scope_id`` is appended to the host part if *sockaddr* contains meaningful *scope_id*. Usually this happens for multicast addresses." msgstr "" -#: ../../library/socket.rst:1138 -msgid "" -"For more information about *flags* you can consult :manpage:`getnameinfo(3)`." +msgid "For more information about *flags* you can consult :manpage:`getnameinfo(3)`." msgstr "" -#: ../../library/socket.rst:1140 -msgid "" -"Raises an :ref:`auditing event ` ``socket.getnameinfo`` with " -"argument ``sockaddr``." +msgid "Raises an :ref:`auditing event ` ``socket.getnameinfo`` with argument ``sockaddr``." msgstr "" -#: ../../library/socket.rst:1147 -msgid "" -"Translate an internet protocol name (for example, ``'icmp'``) to a constant " -"suitable for passing as the (optional) third argument to " -"the :func:`~socket.socket` function. This is usually only needed for " -"sockets opened in \"raw\" mode (:const:`SOCK_RAW`); for the normal socket " -"modes, the correct protocol is chosen automatically if the protocol is " -"omitted or zero." +msgid "Translate an internet protocol name (for example, ``'icmp'``) to a constant suitable for passing as the (optional) third argument to the :func:`~socket.socket` function. This is usually only needed for sockets opened in \"raw\" mode (:const:`SOCK_RAW`); for the normal socket modes, the correct protocol is chosen automatically if the protocol is omitted or zero." msgstr "" -#: ../../library/socket.rst:1158 -msgid "" -"Translate an internet service name and protocol name to a port number for " -"that service. The optional protocol name, if given, should be ``'tcp'`` or " -"``'udp'``, otherwise any protocol will match." +msgid "Translate an internet service name and protocol name to a port number for that service. The optional protocol name, if given, should be ``'tcp'`` or ``'udp'``, otherwise any protocol will match." msgstr "" -#: ../../library/socket.rst:1162 -msgid "" -"Raises an :ref:`auditing event ` ``socket.getservbyname`` with " -"arguments ``servicename``, ``protocolname``." +msgid "Raises an :ref:`auditing event ` ``socket.getservbyname`` with arguments ``servicename``, ``protocolname``." msgstr "" -#: ../../library/socket.rst:1169 -msgid "" -"Translate an internet port number and protocol name to a service name for " -"that service. The optional protocol name, if given, should be ``'tcp'`` or " -"``'udp'``, otherwise any protocol will match." +msgid "Translate an internet port number and protocol name to a service name for that service. The optional protocol name, if given, should be ``'tcp'`` or ``'udp'``, otherwise any protocol will match." msgstr "" -#: ../../library/socket.rst:1173 -msgid "" -"Raises an :ref:`auditing event ` ``socket.getservbyport`` with " -"arguments ``port``, ``protocolname``." +msgid "Raises an :ref:`auditing event ` ``socket.getservbyport`` with arguments ``port``, ``protocolname``." msgstr "" -#: ../../library/socket.rst:1180 -msgid "" -"Convert 32-bit positive integers from network to host byte order. On " -"machines where the host byte order is the same as network byte order, this " -"is a no-op; otherwise, it performs a 4-byte swap operation." +msgid "Convert 32-bit positive integers from network to host byte order. On machines where the host byte order is the same as network byte order, this is a no-op; otherwise, it performs a 4-byte swap operation." msgstr "" -#: ../../library/socket.rst:1187 -msgid "" -"Convert 16-bit positive integers from network to host byte order. On " -"machines where the host byte order is the same as network byte order, this " -"is a no-op; otherwise, it performs a 2-byte swap operation." +msgid "Convert 16-bit positive integers from network to host byte order. On machines where the host byte order is the same as network byte order, this is a no-op; otherwise, it performs a 2-byte swap operation." msgstr "" -#: ../../library/socket.rst:1191 ../../library/socket.rst:1209 -msgid "" -"Raises :exc:`OverflowError` if *x* does not fit in a 16-bit unsigned integer." +msgid "Raises :exc:`OverflowError` if *x* does not fit in a 16-bit unsigned integer." msgstr "" -#: ../../library/socket.rst:1198 -msgid "" -"Convert 32-bit positive integers from host to network byte order. On " -"machines where the host byte order is the same as network byte order, this " -"is a no-op; otherwise, it performs a 4-byte swap operation." +msgid "Convert 32-bit positive integers from host to network byte order. On machines where the host byte order is the same as network byte order, this is a no-op; otherwise, it performs a 4-byte swap operation." msgstr "" -#: ../../library/socket.rst:1205 -msgid "" -"Convert 16-bit positive integers from host to network byte order. On " -"machines where the host byte order is the same as network byte order, this " -"is a no-op; otherwise, it performs a 2-byte swap operation." +msgid "Convert 16-bit positive integers from host to network byte order. On machines where the host byte order is the same as network byte order, this is a no-op; otherwise, it performs a 2-byte swap operation." msgstr "" -#: ../../library/socket.rst:1216 -msgid "" -"Convert an IPv4 address from dotted-quad string format (for example, " -"'123.45.67.89') to 32-bit packed binary format, as a bytes object four " -"characters in length. This is useful when conversing with a program that " -"uses the standard C library and needs objects of type :c:struct:`in_addr`, " -"which is the C type for the 32-bit packed binary this function returns." +msgid "Convert an IPv4 address from dotted-quad string format (for example, '123.45.67.89') to 32-bit packed binary format, as a bytes object four characters in length. This is useful when conversing with a program that uses the standard C library and needs objects of type :c:struct:`in_addr`, which is the C type for the 32-bit packed binary this function returns." msgstr "" -#: ../../library/socket.rst:1222 -msgid "" -":func:`inet_aton` also accepts strings with less than three dots; see the " -"Unix manual page :manpage:`inet(3)` for details." +msgid ":func:`inet_aton` also accepts strings with less than three dots; see the Unix manual page :manpage:`inet(3)` for details." msgstr "" -#: ../../library/socket.rst:1225 -msgid "" -"If the IPv4 address string passed to this function is " -"invalid, :exc:`OSError` will be raised. Note that exactly what is valid " -"depends on the underlying C implementation of :c:func:`inet_aton`." +msgid "If the IPv4 address string passed to this function is invalid, :exc:`OSError` will be raised. Note that exactly what is valid depends on the underlying C implementation of :c:func:`inet_aton`." msgstr "" -#: ../../library/socket.rst:1229 -msgid "" -":func:`inet_aton` does not support IPv6, and :func:`inet_pton` should be " -"used instead for IPv4/v6 dual stack support." +msgid ":func:`inet_aton` does not support IPv6, and :func:`inet_pton` should be used instead for IPv4/v6 dual stack support." msgstr "" -#: ../../library/socket.rst:1235 -msgid "" -"Convert a 32-bit packed IPv4 address (a :term:`bytes-like object` four bytes " -"in length) to its standard dotted-quad string representation (for example, " -"'123.45.67.89'). This is useful when conversing with a program that uses " -"the standard C library and needs objects of type :c:struct:`in_addr`, which " -"is the C type for the 32-bit packed binary data this function takes as an " -"argument." +msgid "Convert a 32-bit packed IPv4 address (a :term:`bytes-like object` four bytes in length) to its standard dotted-quad string representation (for example, '123.45.67.89'). This is useful when conversing with a program that uses the standard C library and needs objects of type :c:struct:`in_addr`, which is the C type for the 32-bit packed binary data this function takes as an argument." msgstr "" -#: ../../library/socket.rst:1242 -msgid "" -"If the byte sequence passed to this function is not exactly 4 bytes in " -"length, :exc:`OSError` will be raised. :func:`inet_ntoa` does not support " -"IPv6, and :func:`inet_ntop` should be used instead for IPv4/v6 dual stack " -"support." +msgid "If the byte sequence passed to this function is not exactly 4 bytes in length, :exc:`OSError` will be raised. :func:`inet_ntoa` does not support IPv6, and :func:`inet_ntop` should be used instead for IPv4/v6 dual stack support." msgstr "" -#: ../../library/socket.rst:1253 -msgid "" -"Convert an IP address from its family-specific string format to a packed, " -"binary format. :func:`inet_pton` is useful when a library or network " -"protocol calls for an object of type :c:struct:`in_addr` (similar " -"to :func:`inet_aton`) or :c:struct:`in6_addr`." +msgid "Convert an IP address from its family-specific string format to a packed, binary format. :func:`inet_pton` is useful when a library or network protocol calls for an object of type :c:struct:`in_addr` (similar to :func:`inet_aton`) or :c:struct:`in6_addr`." msgstr "" -#: ../../library/socket.rst:1258 -msgid "" -"Supported values for *address_family* are currently :const:`AF_INET` " -"and :const:`AF_INET6`. If the IP address string *ip_string* is " -"invalid, :exc:`OSError` will be raised. Note that exactly what is valid " -"depends on both the value of *address_family* and the underlying " -"implementation of :c:func:`inet_pton`." +msgid "Supported values for *address_family* are currently :const:`AF_INET` and :const:`AF_INET6`. If the IP address string *ip_string* is invalid, :exc:`OSError` will be raised. Note that exactly what is valid depends on both the value of *address_family* and the underlying implementation of :c:func:`inet_pton`." msgstr "" -#: ../../library/socket.rst:1266 ../../library/socket.rst:1286 msgid "Windows support added" msgstr "" -#: ../../library/socket.rst:1272 -msgid "" -"Convert a packed IP address (a :term:`bytes-like object` of some number of " -"bytes) to its standard, family-specific string representation (for example, " -"``'7.10.0.5'`` or ``'5aef:2b::8'``). :func:`inet_ntop` is useful when a " -"library or network protocol returns an object of type :c:struct:`in_addr` " -"(similar to :func:`inet_ntoa`) or :c:struct:`in6_addr`." +msgid "Convert a packed IP address (a :term:`bytes-like object` of some number of bytes) to its standard, family-specific string representation (for example, ``'7.10.0.5'`` or ``'5aef:2b::8'``). :func:`inet_ntop` is useful when a library or network protocol returns an object of type :c:struct:`in_addr` (similar to :func:`inet_ntoa`) or :c:struct:`in6_addr`." msgstr "" -#: ../../library/socket.rst:1279 -msgid "" -"Supported values for *address_family* are currently :const:`AF_INET` " -"and :const:`AF_INET6`. If the bytes object *packed_ip* is not the correct " -"length for the specified address family, :exc:`ValueError` will be " -"raised. :exc:`OSError` is raised for errors from the call " -"to :func:`inet_ntop`." +msgid "Supported values for *address_family* are currently :const:`AF_INET` and :const:`AF_INET6`. If the bytes object *packed_ip* is not the correct length for the specified address family, :exc:`ValueError` will be raised. :exc:`OSError` is raised for errors from the call to :func:`inet_ntop`." msgstr "" -#: ../../library/socket.rst:1301 -msgid "" -"Return the total length, without trailing padding, of an ancillary data item " -"with associated data of the given *length*. This value can often be used as " -"the buffer size for :meth:`~socket.recvmsg` to receive a single item of " -"ancillary data, but :rfc:`3542` requires portable applications to " -"use :func:`CMSG_SPACE` and thus include space for padding, even when the " -"item will be the last in the buffer. Raises :exc:`OverflowError` if " -"*length* is outside the permissible range of values." +msgid "Return the total length, without trailing padding, of an ancillary data item with associated data of the given *length*. This value can often be used as the buffer size for :meth:`~socket.recvmsg` to receive a single item of ancillary data, but :rfc:`3542` requires portable applications to use :func:`CMSG_SPACE` and thus include space for padding, even when the item will be the last in the buffer. Raises :exc:`OverflowError` if *length* is outside the permissible range of values." msgstr "" -#: ../../library/socket.rst:1312 ../../library/socket.rst:1861 -#: ../../library/socket.rst:1905 ../../library/socket.rst:2013 msgid "Most Unix platforms." msgstr "" -#: ../../library/socket.rst:1319 -msgid "" -"Return the buffer size needed for :meth:`~socket.recvmsg` to receive an " -"ancillary data item with associated data of the given *length*, along with " -"any trailing padding. The buffer space needed to receive multiple items is " -"the sum of the :func:`CMSG_SPACE` values for their associated data lengths. " -"Raises :exc:`OverflowError` if *length* is outside the permissible range of " -"values." +msgid "Return the buffer size needed for :meth:`~socket.recvmsg` to receive an ancillary data item with associated data of the given *length*, along with any trailing padding. The buffer space needed to receive multiple items is the sum of the :func:`CMSG_SPACE` values for their associated data lengths. Raises :exc:`OverflowError` if *length* is outside the permissible range of values." msgstr "" -#: ../../library/socket.rst:1327 -msgid "" -"Note that some systems might support ancillary data without providing this " -"function. Also note that setting the buffer size using the results of this " -"function may not precisely limit the amount of ancillary data that can be " -"received, since additional data may be able to fit into the padding area." +msgid "Note that some systems might support ancillary data without providing this function. Also note that setting the buffer size using the results of this function may not precisely limit the amount of ancillary data that can be received, since additional data may be able to fit into the padding area." msgstr "" -#: ../../library/socket.rst:1335 msgid "most Unix platforms." msgstr "" -#: ../../library/socket.rst:1342 -msgid "" -"Return the default timeout in seconds (float) for new socket objects. A " -"value of ``None`` indicates that new socket objects have no timeout. When " -"the socket module is first imported, the default is ``None``." +msgid "Return the default timeout in seconds (float) for new socket objects. A value of ``None`` indicates that new socket objects have no timeout. When the socket module is first imported, the default is ``None``." msgstr "" -#: ../../library/socket.rst:1349 -msgid "" -"Set the default timeout in seconds (float) for new socket objects. When the " -"socket module is first imported, the default is ``None``. " -"See :meth:`~socket.settimeout` for possible values and their respective " -"meanings." +msgid "Set the default timeout in seconds (float) for new socket objects. When the socket module is first imported, the default is ``None``. See :meth:`~socket.settimeout` for possible values and their respective meanings." msgstr "" -#: ../../library/socket.rst:1357 -msgid "" -"Set the machine's hostname to *name*. This will raise an :exc:`OSError` if " -"you don't have enough rights." +msgid "Set the machine's hostname to *name*. This will raise an :exc:`OSError` if you don't have enough rights." msgstr "" -#: ../../library/socket.rst:1360 -msgid "" -"Raises an :ref:`auditing event ` ``socket.sethostname`` with " -"argument ``name``." +msgid "Raises an :ref:`auditing event ` ``socket.sethostname`` with argument ``name``." msgstr "" -#: ../../library/socket.rst:1369 -msgid "" -"Return a list of network interface information (index int, name string) " -"tuples. :exc:`OSError` if the system call fails." +msgid "Return a list of network interface information (index int, name string) tuples. :exc:`OSError` if the system call fails." msgstr "" -#: ../../library/socket.rst:1377 ../../library/socket.rst:1404 -#: ../../library/socket.rst:1421 msgid "Windows support was added." msgstr "" -#: ../../library/socket.rst:1382 -msgid "" -"On Windows network interfaces have different names in different contexts " -"(all names are examples):" +msgid "On Windows network interfaces have different names in different contexts (all names are examples):" msgstr "" -#: ../../library/socket.rst:1385 msgid "UUID: ``{FB605B73-AAC2-49A6-9A2F-25416AEA0573}``" msgstr "" -#: ../../library/socket.rst:1386 msgid "name: ``ethernet_32770``" msgstr "" -#: ../../library/socket.rst:1387 msgid "friendly name: ``vEthernet (nat)``" msgstr "" -#: ../../library/socket.rst:1388 msgid "description: ``Hyper-V Virtual Ethernet Adapter``" msgstr "" -#: ../../library/socket.rst:1390 -msgid "" -"This function returns names of the second form from the list, " -"``ethernet_32770`` in this example case." +msgid "This function returns names of the second form from the list, ``ethernet_32770`` in this example case." msgstr "" -#: ../../library/socket.rst:1396 -msgid "" -"Return a network interface index number corresponding to an interface " -"name. :exc:`OSError` if no interface with the given name exists." +msgid "Return a network interface index number corresponding to an interface name. :exc:`OSError` if no interface with the given name exists." msgstr "" -#: ../../library/socket.rst:1408 ../../library/socket.rst:1425 msgid "\"Interface name\" is a name as documented in :func:`if_nameindex`." msgstr "" -#: ../../library/socket.rst:1413 -msgid "" -"Return a network interface name corresponding to an interface index " -"number. :exc:`OSError` if no interface with the given index exists." +msgid "Return a network interface name corresponding to an interface index number. :exc:`OSError` if no interface with the given index exists." msgstr "" -#: ../../library/socket.rst:1430 -msgid "" -"Send the list of file descriptors *fds* over an :const:`AF_UNIX` socket " -"*sock*. The *fds* parameter is a sequence of file descriptors. " -"Consult :meth:`~socket.sendmsg` for the documentation of these parameters." +msgid "Send the list of file descriptors *fds* over an :const:`AF_UNIX` socket *sock*. The *fds* parameter is a sequence of file descriptors. Consult :meth:`~socket.sendmsg` for the documentation of these parameters." msgstr "" -#: ../../library/socket.rst:1436 -msgid "" -"Unix platforms supporting :meth:`~socket.sendmsg` and :const:`SCM_RIGHTS` " -"mechanism." +msgid "Unix platforms supporting :meth:`~socket.sendmsg` and :const:`SCM_RIGHTS` mechanism." msgstr "" -#: ../../library/socket.rst:1444 -msgid "" -"Receive up to *maxfds* file descriptors from an :const:`AF_UNIX` socket " -"*sock*. Return ``(msg, list(fds), flags, addr)``. " -"Consult :meth:`~socket.recvmsg` for the documentation of these parameters." +msgid "Receive up to *maxfds* file descriptors from an :const:`AF_UNIX` socket *sock*. Return ``(msg, list(fds), flags, addr)``. Consult :meth:`~socket.recvmsg` for the documentation of these parameters." msgstr "" -#: ../../library/socket.rst:1450 -msgid "" -"Unix platforms supporting :meth:`~socket.recvmsg` and :const:`SCM_RIGHTS` " -"mechanism." +msgid "Unix platforms supporting :meth:`~socket.recvmsg` and :const:`SCM_RIGHTS` mechanism." msgstr "" -#: ../../library/socket.rst:1457 msgid "Any truncated integers at the end of the list of file descriptors." msgstr "" -#: ../../library/socket.rst:1463 msgid "Socket Objects" msgstr "" -#: ../../library/socket.rst:1467 -msgid "" -"Create a new socket using the given address family, socket type and protocol " -"number. The address family should be :const:`AF_INET` (the " -"default), :const:`AF_INET6`, :const:`AF_UNIX`, :const:`AF_CAN`, :const:`AF_PACKET`, " -"or :const:`AF_RDS`. The socket type should be :const:`SOCK_STREAM` (the " -"default), :const:`SOCK_DGRAM`, :const:`SOCK_RAW` or perhaps one of the other " -"``SOCK_`` constants. The protocol number is usually zero and may be omitted " -"or in the case where the address family is :const:`AF_CAN` the protocol " -"should be one of :const:`CAN_RAW`, :const:`CAN_BCM`, :const:`CAN_ISOTP` " -"or :const:`CAN_J1939`." -msgstr "" - -#: ../../library/socket.rst:1477 -msgid "" -"If *fileno* is specified, the values for *family*, *type*, and *proto* are " -"auto-detected from the specified file descriptor. Auto-detection can be " -"overruled by calling the function with explicit *family*, *type*, or *proto* " -"arguments. This only affects how Python represents e.g. the return value " -"of :meth:`socket.getpeername` but not the actual OS resource. " -"Unlike :func:`socket.fromfd`, *fileno* will return the same socket and not a " -"duplicate. This may help close a detached socket using :meth:`socket.close`." +msgid "Create a new socket using the given address family, socket type and protocol number. The address family should be :const:`AF_INET` (the default), :const:`AF_INET6`, :const:`AF_UNIX`, :const:`AF_CAN`, :const:`AF_PACKET`, or :const:`AF_RDS`. The socket type should be :const:`SOCK_STREAM` (the default), :const:`SOCK_DGRAM`, :const:`SOCK_RAW` or perhaps one of the other ``SOCK_`` constants. The protocol number is usually zero and may be omitted or in the case where the address family is :const:`AF_CAN` the protocol should be one of :const:`CAN_RAW`, :const:`CAN_BCM`, :const:`CAN_ISOTP` or :const:`CAN_J1939`." msgstr "" -#: ../../library/socket.rst:1488 -msgid "" -"Raises an :ref:`auditing event ` ``socket.__new__`` with arguments " -"``self``, ``family``, ``type``, ``protocol``." +msgid "If *fileno* is specified, the values for *family*, *type*, and *proto* are auto-detected from the specified file descriptor. Auto-detection can be overruled by calling the function with explicit *family*, *type*, or *proto* arguments. This only affects how Python represents e.g. the return value of :meth:`socket.getpeername` but not the actual OS resource. Unlike :func:`socket.fromfd`, *fileno* will return the same socket and not a duplicate. This may help close a detached socket using :meth:`socket.close`." +msgstr "" + +msgid "Raises an :ref:`auditing event ` ``socket.__new__`` with arguments ``self``, ``family``, ``type``, ``protocol``." msgstr "" -#: ../../library/socket.rst:1490 msgid "The AF_CAN family was added. The AF_RDS family was added." msgstr "" -#: ../../library/socket.rst:1494 msgid "The CAN_BCM protocol was added." msgstr "" -#: ../../library/socket.rst:1500 msgid "The CAN_ISOTP protocol was added." msgstr "" -#: ../../library/socket.rst:1503 -msgid "" -"When :const:`SOCK_NONBLOCK` or :const:`SOCK_CLOEXEC` bit flags are applied " -"to *type* they are cleared, and :attr:`socket.type` will not reflect them. " -"They are still passed to the underlying system ``socket()`` call. Therefore," +msgid "When :const:`SOCK_NONBLOCK` or :const:`SOCK_CLOEXEC` bit flags are applied to *type* they are cleared, and :attr:`socket.type` will not reflect them. They are still passed to the underlying system ``socket()`` call. Therefore," msgstr "" -#: ../../library/socket.rst:1511 msgid "" "sock = socket.socket(\n" " socket.AF_INET,\n" " socket.SOCK_STREAM | socket.SOCK_NONBLOCK)" msgstr "" -#: ../../library/socket.rst:1515 -msgid "" -"will still create a non-blocking socket on OSes that support " -"``SOCK_NONBLOCK``, but ``sock.type`` will be set to ``socket.SOCK_STREAM``." +msgid "will still create a non-blocking socket on OSes that support ``SOCK_NONBLOCK``, but ``sock.type`` will be set to ``socket.SOCK_STREAM``." msgstr "" -#: ../../library/socket.rst:1519 msgid "The CAN_J1939 protocol was added." msgstr "" -#: ../../library/socket.rst:1522 msgid "The IPPROTO_MPTCP protocol was added." msgstr "" -#: ../../library/socket.rst:1525 -msgid "" -"Socket objects have the following methods. Except " -"for :meth:`~socket.makefile`, these correspond to Unix system calls " -"applicable to sockets." +msgid "Socket objects have the following methods. Except for :meth:`~socket.makefile`, these correspond to Unix system calls applicable to sockets." msgstr "" -#: ../../library/socket.rst:1529 -msgid "" -"Support for the :term:`context manager` protocol was added. Exiting the " -"context manager is equivalent to calling :meth:`~socket.close`." +msgid "Support for the :term:`context manager` protocol was added. Exiting the context manager is equivalent to calling :meth:`~socket.close`." msgstr "" -#: ../../library/socket.rst:1536 -msgid "" -"Accept a connection. The socket must be bound to an address and listening " -"for connections. The return value is a pair ``(conn, address)`` where *conn* " -"is a *new* socket object usable to send and receive data on the connection, " -"and *address* is the address bound to the socket on the other end of the " -"connection." +msgid "Accept a connection. The socket must be bound to an address and listening for connections. The return value is a pair ``(conn, address)`` where *conn* is a *new* socket object usable to send and receive data on the connection, and *address* is the address bound to the socket on the other end of the connection." msgstr "" -#: ../../library/socket.rst:1543 ../../library/socket.rst:1637 msgid "The socket is now non-inheritable." msgstr "" -#: ../../library/socket.rst:1546 ../../library/socket.rst:1773 -#: ../../library/socket.rst:1788 ../../library/socket.rst:1865 -#: ../../library/socket.rst:1938 ../../library/socket.rst:1957 -#: ../../library/socket.rst:1974 ../../library/socket.rst:2019 -msgid "" -"If the system call is interrupted and the signal handler does not raise an " -"exception, the method now retries the system call instead of raising " -"an :exc:`InterruptedError` exception (see :pep:`475` for the rationale)." +msgid "If the system call is interrupted and the signal handler does not raise an exception, the method now retries the system call instead of raising an :exc:`InterruptedError` exception (see :pep:`475` for the rationale)." msgstr "" -#: ../../library/socket.rst:1554 -msgid "" -"Bind the socket to *address*. The socket must not already be bound. The " -"format of *address* depends on the address family --- see :ref:`socket-" -"addresses`." +msgid "Bind the socket to *address*. The socket must not already be bound. The format of *address* depends on the address family --- see :ref:`socket-addresses`." msgstr "" -#: ../../library/socket.rst:1557 -msgid "" -"Raises an :ref:`auditing event ` ``socket.bind`` with arguments " -"``self``, ``address``." +msgid "Raises an :ref:`auditing event ` ``socket.bind`` with arguments ``self``, ``address``." msgstr "" -#: ../../library/socket.rst:1564 -msgid "" -"Mark the socket closed. The underlying system resource (e.g. a file " -"descriptor) is also closed when all file objects from :meth:`makefile` are " -"closed. Once that happens, all future operations on the socket object will " -"fail. The remote end will receive no more data (after queued data is " -"flushed)." +msgid "Mark the socket closed. The underlying system resource (e.g. a file descriptor) is also closed when all file objects from :meth:`makefile` are closed. Once that happens, all future operations on the socket object will fail. The remote end will receive no more data (after queued data is flushed)." msgstr "" -#: ../../library/socket.rst:1570 -msgid "" -"Sockets are automatically closed when they are garbage-collected, but it is " -"recommended to :meth:`close` them explicitly, or to use a :keyword:`with` " -"statement around them." +msgid "Sockets are automatically closed when they are garbage-collected, but it is recommended to :meth:`close` them explicitly, or to use a :keyword:`with` statement around them." msgstr "" -#: ../../library/socket.rst:1574 -msgid "" -":exc:`OSError` is now raised if an error occurs when the " -"underlying :c:func:`!close` call is made." +msgid ":exc:`OSError` is now raised if an error occurs when the underlying :c:func:`!close` call is made." msgstr "" -#: ../../library/socket.rst:1580 -msgid "" -":meth:`close` releases the resource associated with a connection but does " -"not necessarily close the connection immediately. If you want to close the " -"connection in a timely fashion, call :meth:`shutdown` before :meth:`close`." +msgid ":meth:`close` releases the resource associated with a connection but does not necessarily close the connection immediately. If you want to close the connection in a timely fashion, call :meth:`shutdown` before :meth:`close`." msgstr "" -#: ../../library/socket.rst:1588 -msgid "" -"Connect to a remote socket at *address*. The format of *address* depends on " -"the address family --- see :ref:`socket-addresses`." +msgid "Connect to a remote socket at *address*. The format of *address* depends on the address family --- see :ref:`socket-addresses`." msgstr "" -#: ../../library/socket.rst:1591 -msgid "" -"If the connection is interrupted by a signal, the method waits until the " -"connection completes, or raises a :exc:`TimeoutError` on timeout, if the " -"signal handler doesn't raise an exception and the socket is blocking or has " -"a timeout. For non-blocking sockets, the method raises " -"an :exc:`InterruptedError` exception if the connection is interrupted by a " -"signal (or the exception raised by the signal handler)." +msgid "If the connection is interrupted by a signal, the method waits until the connection completes, or raises a :exc:`TimeoutError` on timeout, if the signal handler doesn't raise an exception and the socket is blocking or has a timeout. For non-blocking sockets, the method raises an :exc:`InterruptedError` exception if the connection is interrupted by a signal (or the exception raised by the signal handler)." msgstr "" -#: ../../library/socket.rst:1598 ../../library/socket.rst:1618 -msgid "" -"Raises an :ref:`auditing event ` ``socket.connect`` with arguments " -"``self``, ``address``." +msgid "Raises an :ref:`auditing event ` ``socket.connect`` with arguments ``self``, ``address``." msgstr "" -#: ../../library/socket.rst:1600 -msgid "" -"The method now waits until the connection completes instead of raising " -"an :exc:`InterruptedError` exception if the connection is interrupted by a " -"signal, the signal handler doesn't raise an exception and the socket is " -"blocking or has a timeout (see the :pep:`475` for the rationale)." +msgid "The method now waits until the connection completes instead of raising an :exc:`InterruptedError` exception if the connection is interrupted by a signal, the signal handler doesn't raise an exception and the socket is blocking or has a timeout (see the :pep:`475` for the rationale)." msgstr "" -#: ../../library/socket.rst:1611 -msgid "" -"Like ``connect(address)``, but return an error indicator instead of raising " -"an exception for errors returned by the C-level :c:func:`!connect` call " -"(other problems, such as \"host not found,\" can still raise exceptions). " -"The error indicator is ``0`` if the operation succeeded, otherwise the value " -"of the :c:data:`errno` variable. This is useful to support, for example, " -"asynchronous connects." +msgid "Like ``connect(address)``, but return an error indicator instead of raising an exception for errors returned by the C-level :c:func:`!connect` call (other problems, such as \"host not found,\" can still raise exceptions). The error indicator is ``0`` if the operation succeeded, otherwise the value of the :c:data:`errno` variable. This is useful to support, for example, asynchronous connects." msgstr "" -#: ../../library/socket.rst:1624 -msgid "" -"Put the socket object into closed state without actually closing the " -"underlying file descriptor. The file descriptor is returned, and can be " -"reused for other purposes." +msgid "Put the socket object into closed state without actually closing the underlying file descriptor. The file descriptor is returned, and can be reused for other purposes." msgstr "" -#: ../../library/socket.rst:1633 msgid "Duplicate the socket." msgstr "" -#: ../../library/socket.rst:1645 -msgid "" -"Return the socket's file descriptor (a small integer), or -1 on failure. " -"This is useful with :func:`select.select`." +msgid "Return the socket's file descriptor (a small integer), or -1 on failure. This is useful with :func:`select.select`." msgstr "" -#: ../../library/socket.rst:1648 -msgid "" -"Under Windows the small integer returned by this method cannot be used where " -"a file descriptor can be used (such as :func:`os.fdopen`). Unix does not " -"have this limitation." +msgid "Under Windows the small integer returned by this method cannot be used where a file descriptor can be used (such as :func:`os.fdopen`). Unix does not have this limitation." msgstr "" -#: ../../library/socket.rst:1654 -msgid "" -"Get the :ref:`inheritable flag ` of the socket's file " -"descriptor or socket's handle: ``True`` if the socket can be inherited in " -"child processes, ``False`` if it cannot." +msgid "Get the :ref:`inheritable flag ` of the socket's file descriptor or socket's handle: ``True`` if the socket can be inherited in child processes, ``False`` if it cannot." msgstr "" -#: ../../library/socket.rst:1663 -msgid "" -"Return the remote address to which the socket is connected. This is useful " -"to find out the port number of a remote IPv4/v6 socket, for instance. The " -"format of the address returned depends on the address family --- " -"see :ref:`socket-addresses`. On some systems this function is not supported." +msgid "Return the remote address to which the socket is connected. This is useful to find out the port number of a remote IPv4/v6 socket, for instance. The format of the address returned depends on the address family --- see :ref:`socket-addresses`. On some systems this function is not supported." msgstr "" -#: ../../library/socket.rst:1671 -msgid "" -"Return the socket's own address. This is useful to find out the port number " -"of an IPv4/v6 socket, for instance. The format of the address returned " -"depends on the address family --- see :ref:`socket-addresses`." +msgid "Return the socket's own address. This is useful to find out the port number of an IPv4/v6 socket, for instance. The format of the address returned depends on the address family --- see :ref:`socket-addresses`." msgstr "" -#: ../../library/socket.rst:1678 -msgid "" -"Return the value of the given socket option (see the Unix man " -"page :manpage:`getsockopt(2)`). The needed symbolic constants (:ref:`SO_\\* " -"etc. `) are defined in this module. If *buflen* is " -"absent, an integer option is assumed and its integer value is returned by " -"the function. If *buflen* is present, it specifies the maximum length of " -"the buffer used to receive the option in, and this buffer is returned as a " -"bytes object. It is up to the caller to decode the contents of the buffer " -"(see the optional built-in module :mod:`struct` for a way to decode C " -"structures encoded as byte strings)." -msgstr "" - -#: ../../library/socket.rst:1692 -msgid "" -"Return ``True`` if socket is in blocking mode, ``False`` if in non-blocking." +msgid "Return the value of the given socket option (see the Unix man page :manpage:`getsockopt(2)`). The needed symbolic constants (:ref:`SO_\\* etc. `) are defined in this module. If *buflen* is absent, an integer option is assumed and its integer value is returned by the function. If *buflen* is present, it specifies the maximum length of the buffer used to receive the option in, and this buffer is returned as a bytes object. It is up to the caller to decode the contents of the buffer (see the optional built-in module :mod:`struct` for a way to decode C structures encoded as byte strings)." +msgstr "" + +msgid "Return ``True`` if socket is in blocking mode, ``False`` if in non-blocking." msgstr "" -#: ../../library/socket.rst:1695 msgid "This is equivalent to checking ``socket.gettimeout() != 0``." msgstr "" -#: ../../library/socket.rst:1702 -msgid "" -"Return the timeout in seconds (float) associated with socket operations, or " -"``None`` if no timeout is set. This reflects the last call " -"to :meth:`setblocking` or :meth:`settimeout`." +msgid "Return the timeout in seconds (float) associated with socket operations, or ``None`` if no timeout is set. This reflects the last call to :meth:`setblocking` or :meth:`settimeout`." msgstr "" -#: ../../library/socket.rst:1709 -msgid "" -"The :meth:`ioctl` method is a limited interface to the WSAIoctl system " -"interface. Please refer to the `Win32 documentation `_ for more " -"information." +msgid "The :meth:`ioctl` method is a limited interface to the WSAIoctl system interface. Please refer to the `Win32 documentation `_ for more information." msgstr "" -#: ../../library/socket.rst:1714 -msgid "" -"On other platforms, the generic :func:`fcntl.fcntl` and :func:`fcntl.ioctl` " -"functions may be used; they accept a socket object as their first argument." +msgid "On other platforms, the generic :func:`fcntl.fcntl` and :func:`fcntl.ioctl` functions may be used; they accept a socket object as their first argument." msgstr "" -#: ../../library/socket.rst:1717 -msgid "" -"Currently only the following control codes are supported: ``SIO_RCVALL``, " -"``SIO_KEEPALIVE_VALS``, and ``SIO_LOOPBACK_FAST_PATH``." +msgid "Currently only the following control codes are supported: ``SIO_RCVALL``, ``SIO_KEEPALIVE_VALS``, and ``SIO_LOOPBACK_FAST_PATH``." msgstr "" -#: ../../library/socket.rst:1728 -msgid "" -"Enable a server to accept connections. If *backlog* is specified, it must " -"be at least 0 (if it is lower, it is set to 0); it specifies the number of " -"unaccepted connections that the system will allow before refusing new " -"connections. If not specified, a default reasonable value is chosen." +msgid "Enable a server to accept connections. If *backlog* is specified, it must be at least 0 (if it is lower, it is set to 0); it specifies the number of unaccepted connections that the system will allow before refusing new connections. If not specified, a default reasonable value is chosen." msgstr "" -#: ../../library/socket.rst:1735 msgid "The *backlog* parameter is now optional." msgstr "" -#: ../../library/socket.rst:1744 -msgid "" -"Return a :term:`file object` associated with the socket. The exact returned " -"type depends on the arguments given to :meth:`makefile`. These arguments " -"are interpreted the same way as by the built-in :func:`open` function, " -"except the only supported *mode* values are ``'r'`` (default), ``'w'``, " -"``'b'``, or a combination of those." +msgid "Return a :term:`file object` associated with the socket. The exact returned type depends on the arguments given to :meth:`makefile`. These arguments are interpreted the same way as by the built-in :func:`open` function, except the only supported *mode* values are ``'r'`` (default), ``'w'``, ``'b'``, or a combination of those." msgstr "" -#: ../../library/socket.rst:1750 -msgid "" -"The socket must be in blocking mode; it can have a timeout, but the file " -"object's internal buffer may end up in an inconsistent state if a timeout " -"occurs." +msgid "The socket must be in blocking mode; it can have a timeout, but the file object's internal buffer may end up in an inconsistent state if a timeout occurs." msgstr "" -#: ../../library/socket.rst:1754 -msgid "" -"Closing the file object returned by :meth:`makefile` won't close the " -"original socket unless all other file objects have been closed " -"and :meth:`socket.close` has been called on the socket object." +msgid "Closing the file object returned by :meth:`makefile` won't close the original socket unless all other file objects have been closed and :meth:`socket.close` has been called on the socket object." msgstr "" -#: ../../library/socket.rst:1760 -msgid "" -"On Windows, the file-like object created by :meth:`makefile` cannot be used " -"where a file object with a file descriptor is expected, such as the stream " -"arguments of :meth:`subprocess.Popen`." +msgid "On Windows, the file-like object created by :meth:`makefile` cannot be used where a file object with a file descriptor is expected, such as the stream arguments of :meth:`subprocess.Popen`." msgstr "" -#: ../../library/socket.rst:1767 -msgid "" -"Receive data from the socket. The return value is a bytes object " -"representing the data received. The maximum amount of data to be received " -"at once is specified by *bufsize*. A returned empty bytes object indicates " -"that the client has disconnected. See the Unix manual " -"page :manpage:`recv(2)` for the meaning of the optional argument *flags*; it " -"defaults to zero." +msgid "Receive data from the socket. The return value is a bytes object representing the data received. The maximum amount of data to be received at once is specified by *bufsize*. A returned empty bytes object indicates that the client has disconnected. See the Unix manual page :manpage:`recv(2)` for the meaning of the optional argument *flags*; it defaults to zero." msgstr "" -#: ../../library/socket.rst:1781 -msgid "" -"Receive data from the socket. The return value is a pair ``(bytes, " -"address)`` where *bytes* is a bytes object representing the data received " -"and *address* is the address of the socket sending the data. See the Unix " -"manual page :manpage:`recv(2)` for the meaning of the optional argument " -"*flags*; it defaults to zero. The format of *address* depends on the address " -"family --- see :ref:`socket-addresses`." +msgid "Receive data from the socket. The return value is a pair ``(bytes, address)`` where *bytes* is a bytes object representing the data received and *address* is the address of the socket sending the data. See the Unix manual page :manpage:`recv(2)` for the meaning of the optional argument *flags*; it defaults to zero. The format of *address* depends on the address family --- see :ref:`socket-addresses`." msgstr "" -#: ../../library/socket.rst:1793 -msgid "" -"For multicast IPv6 address, first item of *address* does not contain " -"``%scope_id`` part anymore. In order to get full IPv6 address " -"use :func:`getnameinfo`." +msgid "For multicast IPv6 address, first item of *address* does not contain ``%scope_id`` part anymore. In order to get full IPv6 address use :func:`getnameinfo`." msgstr "" -#: ../../library/socket.rst:1800 -msgid "" -"Receive normal data (up to *bufsize* bytes) and ancillary data from the " -"socket. The *ancbufsize* argument sets the size in bytes of the internal " -"buffer used to receive the ancillary data; it defaults to 0, meaning that no " -"ancillary data will be received. Appropriate buffer sizes for ancillary " -"data can be calculated using :func:`CMSG_SPACE` or :func:`CMSG_LEN`, and " -"items which do not fit into the buffer might be truncated or discarded. The " -"*flags* argument defaults to 0 and has the same meaning as for :meth:`recv`." +msgid "Receive normal data (up to *bufsize* bytes) and ancillary data from the socket. The *ancbufsize* argument sets the size in bytes of the internal buffer used to receive the ancillary data; it defaults to 0, meaning that no ancillary data will be received. Appropriate buffer sizes for ancillary data can be calculated using :func:`CMSG_SPACE` or :func:`CMSG_LEN`, and items which do not fit into the buffer might be truncated or discarded. The *flags* argument defaults to 0 and has the same meaning as for :meth:`recv`." msgstr "" -#: ../../library/socket.rst:1810 -msgid "" -"The return value is a 4-tuple: ``(data, ancdata, msg_flags, address)``. The " -"*data* item is a :class:`bytes` object holding the non-ancillary data " -"received. The *ancdata* item is a list of zero or more tuples " -"``(cmsg_level, cmsg_type, cmsg_data)`` representing the ancillary data " -"(control messages) received: *cmsg_level* and *cmsg_type* are integers " -"specifying the protocol level and protocol-specific type respectively, and " -"*cmsg_data* is a :class:`bytes` object holding the associated data. The " -"*msg_flags* item is the bitwise OR of various flags indicating conditions on " -"the received message; see your system documentation for details. If the " -"receiving socket is unconnected, *address* is the address of the sending " -"socket, if available; otherwise, its value is unspecified." -msgstr "" - -#: ../../library/socket.rst:1824 -msgid "" -"On some systems, :meth:`sendmsg` and :meth:`recvmsg` can be used to pass " -"file descriptors between processes over an :const:`AF_UNIX` socket. When " -"this facility is used (it is often restricted to :const:`SOCK_STREAM` " -"sockets), :meth:`recvmsg` will return, in its ancillary data, items of the " -"form ``(socket.SOL_SOCKET, socket.SCM_RIGHTS, fds)``, where *fds* is " -"a :class:`bytes` object representing the new file descriptors as a binary " -"array of the native C :c:expr:`int` type. If :meth:`recvmsg` raises an " -"exception after the system call returns, it will first attempt to close any " -"file descriptors received via this mechanism." -msgstr "" - -#: ../../library/socket.rst:1835 -msgid "" -"Some systems do not indicate the truncated length of ancillary data items " -"which have been only partially received. If an item appears to extend " -"beyond the end of the buffer, :meth:`recvmsg` will issue " -"a :exc:`RuntimeWarning`, and will return the part of it which is inside the " -"buffer provided it has not been truncated before the start of its associated " -"data." +msgid "The return value is a 4-tuple: ``(data, ancdata, msg_flags, address)``. The *data* item is a :class:`bytes` object holding the non-ancillary data received. The *ancdata* item is a list of zero or more tuples ``(cmsg_level, cmsg_type, cmsg_data)`` representing the ancillary data (control messages) received: *cmsg_level* and *cmsg_type* are integers specifying the protocol level and protocol-specific type respectively, and *cmsg_data* is a :class:`bytes` object holding the associated data. The *msg_flags* item is the bitwise OR of various flags indicating conditions on the received message; see your system documentation for details. If the receiving socket is unconnected, *address* is the address of the sending socket, if available; otherwise, its value is unspecified." msgstr "" -#: ../../library/socket.rst:1842 -msgid "" -"On systems which support the :const:`!SCM_RIGHTS` mechanism, the following " -"function will receive up to *maxfds* file descriptors, returning the message " -"data and a list containing the descriptors (while ignoring unexpected " -"conditions such as unrelated control messages being received). See " -"also :meth:`sendmsg`. ::" +msgid "On some systems, :meth:`sendmsg` and :meth:`recvmsg` can be used to pass file descriptors between processes over an :const:`AF_UNIX` socket. When this facility is used (it is often restricted to :const:`SOCK_STREAM` sockets), :meth:`recvmsg` will return, in its ancillary data, items of the form ``(socket.SOL_SOCKET, socket.SCM_RIGHTS, fds)``, where *fds* is a :class:`bytes` object representing the new file descriptors as a binary array of the native C :c:expr:`int` type. If :meth:`recvmsg` raises an exception after the system call returns, it will first attempt to close any file descriptors received via this mechanism." +msgstr "" + +msgid "Some systems do not indicate the truncated length of ancillary data items which have been only partially received. If an item appears to extend beyond the end of the buffer, :meth:`recvmsg` will issue a :exc:`RuntimeWarning`, and will return the part of it which is inside the buffer provided it has not been truncated before the start of its associated data." +msgstr "" + +msgid "On systems which support the :const:`!SCM_RIGHTS` mechanism, the following function will receive up to *maxfds* file descriptors, returning the message data and a list containing the descriptors (while ignoring unexpected conditions such as unrelated control messages being received). See also :meth:`sendmsg`. ::" msgstr "" -#: ../../library/socket.rst:1848 msgid "" "import socket, array\n" "\n" "def recv_fds(sock, msglen, maxfds):\n" " fds = array.array(\"i\") # Array of ints\n" -" msg, ancdata, flags, addr = sock.recvmsg(msglen, socket.CMSG_LEN(maxfds " -"* fds.itemsize))\n" +" msg, ancdata, flags, addr = sock.recvmsg(msglen, socket.CMSG_LEN(maxfds * fds.itemsize))\n" " for cmsg_level, cmsg_type, cmsg_data in ancdata:\n" -" if cmsg_level == socket.SOL_SOCKET and cmsg_type == " -"socket.SCM_RIGHTS:\n" +" if cmsg_level == socket.SOL_SOCKET and cmsg_type == socket.SCM_RIGHTS:\n" " # Append data, ignoring any truncated integers at the end.\n" -" fds.frombytes(cmsg_data[:len(cmsg_data) - (len(cmsg_data) % " -"fds.itemsize)])\n" +" fds.frombytes(cmsg_data[:len(cmsg_data) - (len(cmsg_data) % fds.itemsize)])\n" " return msg, list(fds)" msgstr "" -#: ../../library/socket.rst:1873 -msgid "" -"Receive normal data and ancillary data from the socket, behaving " -"as :meth:`recvmsg` would, but scatter the non-ancillary data into a series " -"of buffers instead of returning a new bytes object. The *buffers* argument " -"must be an iterable of objects that export writable buffers " -"(e.g. :class:`bytearray` objects); these will be filled with successive " -"chunks of the non-ancillary data until it has all been written or there are " -"no more buffers. The operating system may set a limit (:func:`~os.sysconf` " -"value ``SC_IOV_MAX``) on the number of buffers that can be used. The " -"*ancbufsize* and *flags* arguments have the same meaning as " -"for :meth:`recvmsg`." -msgstr "" - -#: ../../library/socket.rst:1884 -msgid "" -"The return value is a 4-tuple: ``(nbytes, ancdata, msg_flags, address)``, " -"where *nbytes* is the total number of bytes of non-ancillary data written " -"into the buffers, and *ancdata*, *msg_flags* and *address* are the same as " -"for :meth:`recvmsg`." +msgid "Receive normal data and ancillary data from the socket, behaving as :meth:`recvmsg` would, but scatter the non-ancillary data into a series of buffers instead of returning a new bytes object. The *buffers* argument must be an iterable of objects that export writable buffers (e.g. :class:`bytearray` objects); these will be filled with successive chunks of the non-ancillary data until it has all been written or there are no more buffers. The operating system may set a limit (:func:`~os.sysconf` value ``SC_IOV_MAX``) on the number of buffers that can be used. The *ancbufsize* and *flags* arguments have the same meaning as for :meth:`recvmsg`." +msgstr "" + +msgid "The return value is a 4-tuple: ``(nbytes, ancdata, msg_flags, address)``, where *nbytes* is the total number of bytes of non-ancillary data written into the buffers, and *ancdata*, *msg_flags* and *address* are the same as for :meth:`recvmsg`." msgstr "" -#: ../../library/socket.rst:1889 msgid "Example::" msgstr "" -#: ../../library/socket.rst:1891 msgid "" ">>> import socket\n" ">>> s1, s2 = socket.socketpair()\n" @@ -2109,357 +991,151 @@ msgid "" "[bytearray(b'Mary'), bytearray(b'01 had a 9'), bytearray(b'little lamb---')]" msgstr "" -#: ../../library/socket.rst:1912 -msgid "" -"Receive data from the socket, writing it into *buffer* instead of creating a " -"new bytestring. The return value is a pair ``(nbytes, address)`` where " -"*nbytes* is the number of bytes received and *address* is the address of the " -"socket sending the data. See the Unix manual page :manpage:`recv(2)` for " -"the meaning of the optional argument *flags*; it defaults to zero. The " -"format of *address* depends on the address family --- see :ref:`socket-" -"addresses`." +msgid "Receive data from the socket, writing it into *buffer* instead of creating a new bytestring. The return value is a pair ``(nbytes, address)`` where *nbytes* is the number of bytes received and *address* is the address of the socket sending the data. See the Unix manual page :manpage:`recv(2)` for the meaning of the optional argument *flags*; it defaults to zero. The format of *address* depends on the address family --- see :ref:`socket-addresses`." msgstr "" -#: ../../library/socket.rst:1922 -msgid "" -"Receive up to *nbytes* bytes from the socket, storing the data into a buffer " -"rather than creating a new bytestring. If *nbytes* is not specified (or 0), " -"receive up to the size available in the given buffer. Returns the number of " -"bytes received. See the Unix manual page :manpage:`recv(2)` for the meaning " -"of the optional argument *flags*; it defaults to zero." +msgid "Receive up to *nbytes* bytes from the socket, storing the data into a buffer rather than creating a new bytestring. If *nbytes* is not specified (or 0), receive up to the size available in the given buffer. Returns the number of bytes received. See the Unix manual page :manpage:`recv(2)` for the meaning of the optional argument *flags*; it defaults to zero." msgstr "" -#: ../../library/socket.rst:1931 -msgid "" -"Send data to the socket. The socket must be connected to a remote socket. " -"The optional *flags* argument has the same meaning as for :meth:`recv`. " -"Returns the number of bytes sent. Applications are responsible for checking " -"that all data has been sent; if only some of the data was transmitted, the " -"application needs to attempt delivery of the remaining data. For further " -"information on this topic, consult the :ref:`socket-howto`." +msgid "Send data to the socket. The socket must be connected to a remote socket. The optional *flags* argument has the same meaning as for :meth:`recv`. Returns the number of bytes sent. Applications are responsible for checking that all data has been sent; if only some of the data was transmitted, the application needs to attempt delivery of the remaining data. For further information on this topic, consult the :ref:`socket-howto`." msgstr "" -#: ../../library/socket.rst:1946 -msgid "" -"Send data to the socket. The socket must be connected to a remote socket. " -"The optional *flags* argument has the same meaning as for :meth:`recv`. " -"Unlike :meth:`send`, this method continues to send data from *bytes* until " -"either all data has been sent or an error occurs. ``None`` is returned on " -"success. On error, an exception is raised, and there is no way to determine " -"how much data, if any, was successfully sent." +msgid "Send data to the socket. The socket must be connected to a remote socket. The optional *flags* argument has the same meaning as for :meth:`recv`. Unlike :meth:`send`, this method continues to send data from *bytes* until either all data has been sent or an error occurs. ``None`` is returned on success. On error, an exception is raised, and there is no way to determine how much data, if any, was successfully sent." msgstr "" -#: ../../library/socket.rst:1953 -msgid "" -"The socket timeout is no longer reset each time data is sent successfully. " -"The socket timeout is now the maximum total duration to send all data." +msgid "The socket timeout is no longer reset each time data is sent successfully. The socket timeout is now the maximum total duration to send all data." msgstr "" -#: ../../library/socket.rst:1966 -msgid "" -"Send data to the socket. The socket should not be connected to a remote " -"socket, since the destination socket is specified by *address*. The " -"optional *flags* argument has the same meaning as for :meth:`recv`. Return " -"the number of bytes sent. The format of *address* depends on the address " -"family --- see :ref:`socket-addresses`." +msgid "Send data to the socket. The socket should not be connected to a remote socket, since the destination socket is specified by *address*. The optional *flags* argument has the same meaning as for :meth:`recv`. Return the number of bytes sent. The format of *address* depends on the address family --- see :ref:`socket-addresses`." msgstr "" -#: ../../library/socket.rst:1972 -msgid "" -"Raises an :ref:`auditing event ` ``socket.sendto`` with arguments " -"``self``, ``address``." +msgid "Raises an :ref:`auditing event ` ``socket.sendto`` with arguments ``self``, ``address``." msgstr "" -#: ../../library/socket.rst:1982 -msgid "" -"Send normal and ancillary data to the socket, gathering the non-ancillary " -"data from a series of buffers and concatenating it into a single message. " -"The *buffers* argument specifies the non-ancillary data as an iterable " -"of :term:`bytes-like objects ` (e.g. :class:`bytes` " -"objects); the operating system may set a limit (:func:`~os.sysconf` value " -"``SC_IOV_MAX``) on the number of buffers that can be used. The *ancdata* " -"argument specifies the ancillary data (control messages) as an iterable of " -"zero or more tuples ``(cmsg_level, cmsg_type, cmsg_data)``, where " -"*cmsg_level* and *cmsg_type* are integers specifying the protocol level and " -"protocol-specific type respectively, and *cmsg_data* is a bytes-like object " -"holding the associated data. Note that some systems (in particular, systems " -"without :func:`CMSG_SPACE`) might support sending only one control message " -"per call. The *flags* argument defaults to 0 and has the same meaning as " -"for :meth:`send`. If *address* is supplied and not ``None``, it sets a " -"destination address for the message. The return value is the number of " -"bytes of non-ancillary data sent." -msgstr "" - -#: ../../library/socket.rst:2002 -msgid "" -"The following function sends the list of file descriptors *fds* over " -"an :const:`AF_UNIX` socket, on systems which support the :const:`!" -"SCM_RIGHTS` mechanism. See also :meth:`recvmsg`. ::" +msgid "Send normal and ancillary data to the socket, gathering the non-ancillary data from a series of buffers and concatenating it into a single message. The *buffers* argument specifies the non-ancillary data as an iterable of :term:`bytes-like objects ` (e.g. :class:`bytes` objects); the operating system may set a limit (:func:`~os.sysconf` value ``SC_IOV_MAX``) on the number of buffers that can be used. The *ancdata* argument specifies the ancillary data (control messages) as an iterable of zero or more tuples ``(cmsg_level, cmsg_type, cmsg_data)``, where *cmsg_level* and *cmsg_type* are integers specifying the protocol level and protocol-specific type respectively, and *cmsg_data* is a bytes-like object holding the associated data. Note that some systems (in particular, systems without :func:`CMSG_SPACE`) might support sending only one control message per call. The *flags* argument defaults to 0 and has the same meaning as for :meth:`send`. If *address* is supplied and not ``None``, it sets a destination address for the message. The return value is the number of bytes of non-ancillary data sent." +msgstr "" + +msgid "The following function sends the list of file descriptors *fds* over an :const:`AF_UNIX` socket, on systems which support the :const:`!SCM_RIGHTS` mechanism. See also :meth:`recvmsg`. ::" msgstr "" -#: ../../library/socket.rst:2006 msgid "" "import socket, array\n" "\n" "def send_fds(sock, msg, fds):\n" -" return sock.sendmsg([msg], [(socket.SOL_SOCKET, socket.SCM_RIGHTS, " -"array.array(\"i\", fds))])" +" return sock.sendmsg([msg], [(socket.SOL_SOCKET, socket.SCM_RIGHTS, array.array(\"i\", fds))])" msgstr "" -#: ../../library/socket.rst:2015 -msgid "" -"Raises an :ref:`auditing event ` ``socket.sendmsg`` with arguments " -"``self``, ``address``." +msgid "Raises an :ref:`auditing event ` ``socket.sendmsg`` with arguments ``self``, ``address``." msgstr "" -#: ../../library/socket.rst:2026 -msgid "" -"Specialized version of :meth:`~socket.sendmsg` for :const:`AF_ALG` socket. " -"Set mode, IV, AEAD associated data length and flags for :const:`AF_ALG` " -"socket." +msgid "Specialized version of :meth:`~socket.sendmsg` for :const:`AF_ALG` socket. Set mode, IV, AEAD associated data length and flags for :const:`AF_ALG` socket." msgstr "" -#: ../../library/socket.rst:2035 -msgid "" -"Send a file until EOF is reached by using high-" -"performance :mod:`os.sendfile` and return the total number of bytes which " -"were sent. *file* must be a regular file object opened in binary mode. " -"If :mod:`os.sendfile` is not available (e.g. Windows) or *file* is not a " -"regular file :meth:`send` will be used instead. *offset* tells from where to " -"start reading the file. If specified, *count* is the total number of bytes " -"to transmit as opposed to sending the file until EOF is reached. File " -"position is updated on return or also in case of error in which " -"case :meth:`file.tell() ` can be used to figure out the " -"number of bytes which were sent. The socket must be of :const:`SOCK_STREAM` " -"type. Non-blocking sockets are not supported." -msgstr "" - -#: ../../library/socket.rst:2051 -msgid "" -"Set the :ref:`inheritable flag ` of the socket's file " -"descriptor or socket's handle." +msgid "Send a file until EOF is reached by using high-performance :mod:`os.sendfile` and return the total number of bytes which were sent. *file* must be a regular file object opened in binary mode. If :mod:`os.sendfile` is not available (e.g. Windows) or *file* is not a regular file :meth:`send` will be used instead. *offset* tells from where to start reading the file. If specified, *count* is the total number of bytes to transmit as opposed to sending the file until EOF is reached. File position is updated on return or also in case of error in which case :meth:`file.tell() ` can be used to figure out the number of bytes which were sent. The socket must be of :const:`SOCK_STREAM` type. Non-blocking sockets are not supported." msgstr "" -#: ../../library/socket.rst:2059 -msgid "" -"Set blocking or non-blocking mode of the socket: if *flag* is false, the " -"socket is set to non-blocking, else to blocking mode." +msgid "Set the :ref:`inheritable flag ` of the socket's file descriptor or socket's handle." msgstr "" -#: ../../library/socket.rst:2062 -msgid "" -"This method is a shorthand for certain :meth:`~socket.settimeout` calls:" +msgid "Set blocking or non-blocking mode of the socket: if *flag* is false, the socket is set to non-blocking, else to blocking mode." +msgstr "" + +msgid "This method is a shorthand for certain :meth:`~socket.settimeout` calls:" msgstr "" -#: ../../library/socket.rst:2064 msgid "``sock.setblocking(True)`` is equivalent to ``sock.settimeout(None)``" msgstr "" -#: ../../library/socket.rst:2066 msgid "``sock.setblocking(False)`` is equivalent to ``sock.settimeout(0.0)``" msgstr "" -#: ../../library/socket.rst:2068 -msgid "" -"The method no longer applies :const:`SOCK_NONBLOCK` flag " -"on :attr:`socket.type`." +msgid "The method no longer applies :const:`SOCK_NONBLOCK` flag on :attr:`socket.type`." msgstr "" -#: ../../library/socket.rst:2075 -msgid "" -"Set a timeout on blocking socket operations. The *value* argument can be a " -"nonnegative real number expressing seconds, or ``None``. If a non-zero value " -"is given, subsequent socket operations will raise a :exc:`timeout` exception " -"if the timeout period *value* has elapsed before the operation has " -"completed. If zero is given, the socket is put in non-blocking mode. If " -"``None`` is given, the socket is put in blocking mode." +msgid "Set a timeout on blocking socket operations. The *value* argument can be a nonnegative real number expressing seconds, or ``None``. If a non-zero value is given, subsequent socket operations will raise a :exc:`timeout` exception if the timeout period *value* has elapsed before the operation has completed. If zero is given, the socket is put in non-blocking mode. If ``None`` is given, the socket is put in blocking mode." msgstr "" -#: ../../library/socket.rst:2082 -msgid "" -"For further information, please consult the :ref:`notes on socket timeouts " -"`." +msgid "For further information, please consult the :ref:`notes on socket timeouts `." msgstr "" -#: ../../library/socket.rst:2084 -msgid "" -"The method no longer toggles :const:`SOCK_NONBLOCK` flag " -"on :attr:`socket.type`." +msgid "The method no longer toggles :const:`SOCK_NONBLOCK` flag on :attr:`socket.type`." +msgstr "" + +msgid "Set the value of the given socket option (see the Unix manual page :manpage:`setsockopt(2)`). The needed symbolic constants are defined in this module (:ref:`!SO_\\* etc. `). The value can be an integer, ``None`` or a :term:`bytes-like object` representing a buffer. In the latter case it is up to the caller to ensure that the bytestring contains the proper bits (see the optional built-in module :mod:`struct` for a way to encode C structures as bytestrings). When *value* is set to ``None``, *optlen* argument is required. It's equivalent to calling :c:func:`!setsockopt` C function with ``optval=NULL`` and ``optlen=optlen``." msgstr "" -#: ../../library/socket.rst:2094 -msgid "" -"Set the value of the given socket option (see the Unix manual " -"page :manpage:`setsockopt(2)`). The needed symbolic constants are defined " -"in this module (:ref:`!SO_\\* etc. `). The value can " -"be an integer, ``None`` or a :term:`bytes-like object` representing a " -"buffer. In the latter case it is up to the caller to ensure that the " -"bytestring contains the proper bits (see the optional built-in " -"module :mod:`struct` for a way to encode C structures as bytestrings). When " -"*value* is set to ``None``, *optlen* argument is required. It's equivalent " -"to calling :c:func:`!setsockopt` C function with ``optval=NULL`` and " -"``optlen=optlen``." -msgstr "" - -#: ../../library/socket.rst:2107 msgid "setsockopt(level, optname, None, optlen: int) form added." msgstr "" -#: ../../library/socket.rst:2115 -msgid "" -"Shut down one or both halves of the connection. If *how* " -"is :const:`SHUT_RD`, further receives are disallowed. If *how* " -"is :const:`SHUT_WR`, further sends are disallowed. If *how* " -"is :const:`SHUT_RDWR`, further sends and receives are disallowed." +msgid "Shut down one or both halves of the connection. If *how* is :const:`SHUT_RD`, further receives are disallowed. If *how* is :const:`SHUT_WR`, further sends are disallowed. If *how* is :const:`SHUT_RDWR`, further sends and receives are disallowed." msgstr "" -#: ../../library/socket.rst:2125 -msgid "" -"Duplicate a socket and prepare it for sharing with a target process. The " -"target process must be provided with *process_id*. The resulting bytes " -"object can then be passed to the target process using some form of " -"interprocess communication and the socket can be recreated there " -"using :func:`fromshare`. Once this method has been called, it is safe to " -"close the socket since the operating system has already duplicated it for " -"the target process." +msgid "Duplicate a socket and prepare it for sharing with a target process. The target process must be provided with *process_id*. The resulting bytes object can then be passed to the target process using some form of interprocess communication and the socket can be recreated there using :func:`fromshare`. Once this method has been called, it is safe to close the socket since the operating system has already duplicated it for the target process." msgstr "" -#: ../../library/socket.rst:2137 -msgid "" -"Note that there are no methods :meth:`!read` or :meth:`!write`; " -"use :meth:`~socket.recv` and :meth:`~socket.send` without *flags* argument " -"instead." +msgid "Note that there are no methods :meth:`!read` or :meth:`!write`; use :meth:`~socket.recv` and :meth:`~socket.send` without *flags* argument instead." msgstr "" -#: ../../library/socket.rst:2140 -msgid "" -"Socket objects also have these (read-only) attributes that correspond to the " -"values given to the :class:`~socket.socket` constructor." +msgid "Socket objects also have these (read-only) attributes that correspond to the values given to the :class:`~socket.socket` constructor." msgstr "" -#: ../../library/socket.rst:2146 msgid "The socket family." msgstr "" -#: ../../library/socket.rst:2151 msgid "The socket type." msgstr "" -#: ../../library/socket.rst:2156 msgid "The socket protocol." msgstr "" -#: ../../library/socket.rst:2161 -msgid "" -"The base class of the :class:`~socket.socket` type, re-exported from :mod:`!" -"_socket`. An instance check such as ``isinstance(socket(...), SocketType)`` " -"is true, but ``SocketType`` is not the same as ``type(socket(...))``, which " -"is :class:`~socket.socket` itself." +msgid "The base class of the :class:`~socket.socket` type, re-exported from :mod:`!_socket`. An instance check such as ``isinstance(socket(...), SocketType)`` is true, but ``SocketType`` is not the same as ``type(socket(...))``, which is :class:`~socket.socket` itself." msgstr "" -#: ../../library/socket.rst:2170 msgid "Notes on socket timeouts" msgstr "" -#: ../../library/socket.rst:2172 -msgid "" -"A socket object can be in one of three modes: blocking, non-blocking, or " -"timeout. Sockets are by default always created in blocking mode, but this " -"can be changed by calling :func:`setdefaulttimeout`." +msgid "A socket object can be in one of three modes: blocking, non-blocking, or timeout. Sockets are by default always created in blocking mode, but this can be changed by calling :func:`setdefaulttimeout`." msgstr "" -#: ../../library/socket.rst:2176 -msgid "" -"In *blocking mode*, operations block until complete or the system returns an " -"error (such as connection timed out)." +msgid "In *blocking mode*, operations block until complete or the system returns an error (such as connection timed out)." msgstr "" -#: ../../library/socket.rst:2179 -msgid "" -"In *non-blocking mode*, operations fail (with an error that is unfortunately " -"system-dependent) if they cannot be completed immediately: functions from " -"the :mod:`select` module can be used to know when and whether a socket is " -"available for reading or writing." +msgid "In *non-blocking mode*, operations fail (with an error that is unfortunately system-dependent) if they cannot be completed immediately: functions from the :mod:`select` module can be used to know when and whether a socket is available for reading or writing." msgstr "" -#: ../../library/socket.rst:2184 -msgid "" -"In *timeout mode*, operations fail if they cannot be completed within the " -"timeout specified for the socket (they raise a :exc:`timeout` exception) or " -"if the system returns an error." +msgid "In *timeout mode*, operations fail if they cannot be completed within the timeout specified for the socket (they raise a :exc:`timeout` exception) or if the system returns an error." msgstr "" -#: ../../library/socket.rst:2189 -msgid "" -"At the operating system level, sockets in *timeout mode* are internally set " -"in non-blocking mode. Also, the blocking and timeout modes are shared " -"between file descriptors and socket objects that refer to the same network " -"endpoint. This implementation detail can have visible consequences if e.g. " -"you decide to use the :meth:`~socket.fileno` of a socket." +msgid "At the operating system level, sockets in *timeout mode* are internally set in non-blocking mode. Also, the blocking and timeout modes are shared between file descriptors and socket objects that refer to the same network endpoint. This implementation detail can have visible consequences if e.g. you decide to use the :meth:`~socket.fileno` of a socket." msgstr "" -#: ../../library/socket.rst:2196 msgid "Timeouts and the ``connect`` method" msgstr "" -#: ../../library/socket.rst:2198 -msgid "" -"The :meth:`~socket.connect` operation is also subject to the timeout " -"setting, and in general it is recommended to call :meth:`~socket.settimeout` " -"before calling :meth:`~socket.connect` or pass a timeout parameter " -"to :meth:`create_connection`. However, the system network stack may also " -"return a connection timeout error of its own regardless of any Python socket " -"timeout setting." +msgid "The :meth:`~socket.connect` operation is also subject to the timeout setting, and in general it is recommended to call :meth:`~socket.settimeout` before calling :meth:`~socket.connect` or pass a timeout parameter to :meth:`create_connection`. However, the system network stack may also return a connection timeout error of its own regardless of any Python socket timeout setting." msgstr "" -#: ../../library/socket.rst:2206 msgid "Timeouts and the ``accept`` method" msgstr "" -#: ../../library/socket.rst:2208 -msgid "" -"If :func:`getdefaulttimeout` is not :const:`None`, sockets returned by " -"the :meth:`~socket.accept` method inherit that timeout. Otherwise, the " -"behaviour depends on settings of the listening socket:" +msgid "If :func:`getdefaulttimeout` is not :const:`None`, sockets returned by the :meth:`~socket.accept` method inherit that timeout. Otherwise, the behaviour depends on settings of the listening socket:" msgstr "" -#: ../../library/socket.rst:2212 -msgid "" -"if the listening socket is in *blocking mode* or in *timeout mode*, the " -"socket returned by :meth:`~socket.accept` is in *blocking mode*;" +msgid "if the listening socket is in *blocking mode* or in *timeout mode*, the socket returned by :meth:`~socket.accept` is in *blocking mode*;" msgstr "" -#: ../../library/socket.rst:2215 -msgid "" -"if the listening socket is in *non-blocking mode*, whether the socket " -"returned by :meth:`~socket.accept` is in blocking or non-blocking mode is " -"operating system-dependent. If you want to ensure cross-platform behaviour, " -"it is recommended you manually override this setting." +msgid "if the listening socket is in *non-blocking mode*, whether the socket returned by :meth:`~socket.accept` is in blocking or non-blocking mode is operating system-dependent. If you want to ensure cross-platform behaviour, it is recommended you manually override this setting." msgstr "" -#: ../../library/socket.rst:2224 msgid "Example" msgstr "" -#: ../../library/socket.rst:2226 -msgid "" -"Here are four minimal example programs using the TCP/IP protocol: a server " -"that echoes all data that it receives back (servicing only one client), and " -"a client using it. Note that a server must perform the " -"sequence :func:`~socket.socket`, :meth:`~socket.bind`, :meth:`~socket.listen`, :meth:`~socket.accept` " -"(possibly repeating the :meth:`~socket.accept` to service more than one " -"client), while a client only needs the " -"sequence :func:`~socket.socket`, :meth:`~socket.connect`. Also note that " -"the server does not :meth:`~socket.sendall`/:meth:`~socket.recv` on the " -"socket it is listening on but on the new socket returned " -"by :meth:`~socket.accept`." -msgstr "" - -#: ../../library/socket.rst:2236 +msgid "Here are four minimal example programs using the TCP/IP protocol: a server that echoes all data that it receives back (servicing only one client), and a client using it. Note that a server must perform the sequence :func:`~socket.socket`, :meth:`~socket.bind`, :meth:`~socket.listen`, :meth:`~socket.accept` (possibly repeating the :meth:`~socket.accept` to service more than one client), while a client only needs the sequence :func:`~socket.socket`, :meth:`~socket.connect`. Also note that the server does not :meth:`~socket.sendall`/:meth:`~socket.recv` on the socket it is listening on but on the new socket returned by :meth:`~socket.accept`." +msgstr "" + msgid "The first two examples support IPv4 only. ::" msgstr "" -#: ../../library/socket.rst:2238 msgid "" "# Echo server program\n" "import socket\n" @@ -2478,7 +1154,6 @@ msgid "" " conn.sendall(data)" msgstr "" -#: ../../library/socket.rst:2256 msgid "" "# Echo client program\n" "import socket\n" @@ -2492,17 +1167,9 @@ msgid "" "print('Received', repr(data))" msgstr "" -#: ../../library/socket.rst:2267 -msgid "" -"The next two examples are identical to the above two, but support both IPv4 " -"and IPv6. The server side will listen to the first address family available " -"(it should listen to both instead). On most of IPv6-ready systems, IPv6 will " -"take precedence and the server may not accept IPv4 traffic. The client side " -"will try to connect to all the addresses returned as a result of the name " -"resolution, and sends traffic to the first one connected successfully. ::" +msgid "The next two examples are identical to the above two, but support both IPv4 and IPv6. The server side will listen to the first address family available (it should listen to both instead). On most of IPv6-ready systems, IPv6 will take precedence and the server may not accept IPv4 traffic. The client side will try to connect to all the addresses returned as a result of the name resolution, and sends traffic to the first one connected successfully. ::" msgstr "" -#: ../../library/socket.rst:2274 msgid "" "# Echo server program\n" "import socket\n" @@ -2539,7 +1206,6 @@ msgid "" " conn.send(data)" msgstr "" -#: ../../library/socket.rst:2310 msgid "" "# Echo client program\n" "import socket\n" @@ -2548,8 +1214,7 @@ msgid "" "HOST = 'daring.cwi.nl' # The remote host\n" "PORT = 50007 # The same port as used by the server\n" "s = None\n" -"for res in socket.getaddrinfo(HOST, PORT, socket.AF_UNSPEC, " -"socket.SOCK_STREAM):\n" +"for res in socket.getaddrinfo(HOST, PORT, socket.AF_UNSPEC, socket.SOCK_STREAM):\n" " af, socktype, proto, canonname, sa = res\n" " try:\n" " s = socket.socket(af, socktype, proto)\n" @@ -2572,14 +1237,9 @@ msgid "" "print('Received', repr(data))" msgstr "" -#: ../../library/socket.rst:2339 -msgid "" -"The next example shows how to write a very simple network sniffer with raw " -"sockets on Windows. The example requires administrator privileges to modify " -"the interface::" +msgid "The next example shows how to write a very simple network sniffer with raw sockets on Windows. The example requires administrator privileges to modify the interface::" msgstr "" -#: ../../library/socket.rst:2343 msgid "" "import socket\n" "\n" @@ -2603,29 +1263,18 @@ msgid "" "s.ioctl(socket.SIO_RCVALL, socket.RCVALL_OFF)" msgstr "" -#: ../../library/socket.rst:2364 -msgid "" -"The next example shows how to use the socket interface to communicate to a " -"CAN network using the raw socket protocol. To use CAN with the broadcast " -"manager protocol instead, open a socket with::" +msgid "The next example shows how to use the socket interface to communicate to a CAN network using the raw socket protocol. To use CAN with the broadcast manager protocol instead, open a socket with::" msgstr "" -#: ../../library/socket.rst:2368 msgid "socket.socket(socket.AF_CAN, socket.SOCK_DGRAM, socket.CAN_BCM)" msgstr "" -#: ../../library/socket.rst:2370 -msgid "" -"After binding (:const:`CAN_RAW`) or connecting (:const:`CAN_BCM`) the " -"socket, you can use the :meth:`socket.send` and :meth:`socket.recv` " -"operations (and their counterparts) on the socket object as usual." +msgid "After binding (:const:`CAN_RAW`) or connecting (:const:`CAN_BCM`) the socket, you can use the :meth:`socket.send` and :meth:`socket.recv` operations (and their counterparts) on the socket object as usual." msgstr "" -#: ../../library/socket.rst:2374 msgid "This last example might require special privileges::" msgstr "" -#: ../../library/socket.rst:2376 msgid "" "import socket\n" "import struct\n" @@ -2653,8 +1302,7 @@ msgid "" "while True:\n" " cf, addr = s.recvfrom(can_frame_size)\n" "\n" -" print('Received: can_id=%x, can_dlc=%x, data=%s' % " -"dissect_can_frame(cf))\n" +" print('Received: can_id=%x, can_dlc=%x, data=%s' % dissect_can_frame(cf))\n" "\n" " try:\n" " s.send(cf)\n" @@ -2667,89 +1315,53 @@ msgid "" " print('Error sending CAN frame')" msgstr "" -#: ../../library/socket.rst:2414 -msgid "" -"Running an example several times with too small delay between executions, " -"could lead to this error::" +msgid "Running an example several times with too small delay between executions, could lead to this error::" msgstr "" -#: ../../library/socket.rst:2417 msgid "OSError: [Errno 98] Address already in use" msgstr "" -#: ../../library/socket.rst:2419 -msgid "" -"This is because the previous execution has left the socket in a " -"``TIME_WAIT`` state, and can't be immediately reused." +msgid "This is because the previous execution has left the socket in a ``TIME_WAIT`` state, and can't be immediately reused." msgstr "" -#: ../../library/socket.rst:2422 -msgid "" -"There is a :mod:`!socket` flag to set, in order to prevent " -"this, :const:`socket.SO_REUSEADDR`::" +msgid "There is a :mod:`!socket` flag to set, in order to prevent this, :const:`socket.SO_REUSEADDR`::" msgstr "" -#: ../../library/socket.rst:2425 msgid "" "s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)\n" "s.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)\n" "s.bind((HOST, PORT))" msgstr "" -#: ../../library/socket.rst:2429 -msgid "" -"the :data:`SO_REUSEADDR` flag tells the kernel to reuse a local socket in " -"``TIME_WAIT`` state, without waiting for its natural timeout to expire." +msgid "the :data:`SO_REUSEADDR` flag tells the kernel to reuse a local socket in ``TIME_WAIT`` state, without waiting for its natural timeout to expire." msgstr "" -#: ../../library/socket.rst:2435 -msgid "" -"For an introduction to socket programming (in C), see the following papers:" +msgid "For an introduction to socket programming (in C), see the following papers:" msgstr "" -#: ../../library/socket.rst:2437 -msgid "" -"*An Introductory 4.3BSD Interprocess Communication Tutorial*, by Stuart " -"Sechrest" +msgid "*An Introductory 4.3BSD Interprocess Communication Tutorial*, by Stuart Sechrest" msgstr "" -#: ../../library/socket.rst:2439 -msgid "" -"*An Advanced 4.3BSD Interprocess Communication Tutorial*, by Samuel J. " -"Leffler et al," +msgid "*An Advanced 4.3BSD Interprocess Communication Tutorial*, by Samuel J. Leffler et al," msgstr "" -#: ../../library/socket.rst:2442 -msgid "" -"both in the UNIX Programmer's Manual, Supplementary Documents 1 (sections " -"PS1:7 and PS1:8). The platform-specific reference material for the various " -"socket-related system calls are also a valuable source of information on the " -"details of socket semantics. For Unix, refer to the manual pages; for " -"Windows, see the WinSock (or Winsock 2) specification. For IPv6-ready APIs, " -"readers may want to refer to :rfc:`3493` titled Basic Socket Interface " -"Extensions for IPv6." +msgid "both in the UNIX Programmer's Manual, Supplementary Documents 1 (sections PS1:7 and PS1:8). The platform-specific reference material for the various socket-related system calls are also a valuable source of information on the details of socket semantics. For Unix, refer to the manual pages; for Windows, see the WinSock (or Winsock 2) specification. For IPv6-ready APIs, readers may want to refer to :rfc:`3493` titled Basic Socket Interface Extensions for IPv6." msgstr "" -#: ../../library/socket.rst:22 msgid "object" msgstr "" -#: ../../library/socket.rst:22 msgid "socket" msgstr "" -#: ../../library/socket.rst:1742 msgid "I/O control" msgstr "" -#: ../../library/socket.rst:1742 msgid "buffering" msgstr "" -#: ../../library/socket.rst:2092 msgid "module" msgstr "" -#: ../../library/socket.rst:2092 msgid "struct" msgstr "" diff --git a/library/socketserver.po b/library/socketserver.po index 1d6e4db9..1714ed9d 100644 --- a/library/socketserver.po +++ b/library/socketserver.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:13+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,111 +24,51 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/socketserver.rst:2 msgid ":mod:`!socketserver` --- A framework for network servers" msgstr "" -#: ../../library/socketserver.rst:7 msgid "**Source code:** :source:`Lib/socketserver.py`" msgstr "" -#: ../../library/socketserver.rst:11 -msgid "" -"The :mod:`!socketserver` module simplifies the task of writing network " -"servers." +msgid "The :mod:`!socketserver` module simplifies the task of writing network servers." msgstr "" -#: ../../includes/wasm-notavail.rst:3 msgid "Availability" msgstr "" -#: ../../includes/wasm-notavail.rst:5 -msgid "" -"This module does not work or is not available on WebAssembly. See :ref:`wasm-" -"availability` for more information." +msgid "This module does not work or is not available on WebAssembly. See :ref:`wasm-availability` for more information." msgstr "" -#: ../../library/socketserver.rst:15 msgid "There are four basic concrete server classes:" msgstr "" -#: ../../library/socketserver.rst:20 -msgid "" -"This uses the internet TCP protocol, which provides for continuous streams " -"of data between the client and server. If *bind_and_activate* is true, the " -"constructor automatically attempts to invoke :meth:`~BaseServer.server_bind` " -"and :meth:`~BaseServer.server_activate`. The other parameters are passed to " -"the :class:`BaseServer` base class." +msgid "This uses the internet TCP protocol, which provides for continuous streams of data between the client and server. If *bind_and_activate* is true, the constructor automatically attempts to invoke :meth:`~BaseServer.server_bind` and :meth:`~BaseServer.server_activate`. The other parameters are passed to the :class:`BaseServer` base class." msgstr "" -#: ../../library/socketserver.rst:30 -msgid "" -"This uses datagrams, which are discrete packets of information that may " -"arrive out of order or be lost while in transit. The parameters are the " -"same as for :class:`TCPServer`." +msgid "This uses datagrams, which are discrete packets of information that may arrive out of order or be lost while in transit. The parameters are the same as for :class:`TCPServer`." msgstr "" -#: ../../library/socketserver.rst:38 -msgid "" -"These more infrequently used classes are similar to the TCP and UDP classes, " -"but use Unix domain sockets; they're not available on non-Unix platforms. " -"The parameters are the same as for :class:`TCPServer`." +msgid "These more infrequently used classes are similar to the TCP and UDP classes, but use Unix domain sockets; they're not available on non-Unix platforms. The parameters are the same as for :class:`TCPServer`." msgstr "" -#: ../../library/socketserver.rst:44 -msgid "" -"These four classes process requests :dfn:`synchronously`; each request must " -"be completed before the next request can be started. This isn't suitable if " -"each request takes a long time to complete, because it requires a lot of " -"computation, or because it returns a lot of data which the client is slow to " -"process. The solution is to create a separate process or thread to handle " -"each request; the :class:`ForkingMixIn` and :class:`ThreadingMixIn` mix-in " -"classes can be used to support asynchronous behaviour." +msgid "These four classes process requests :dfn:`synchronously`; each request must be completed before the next request can be started. This isn't suitable if each request takes a long time to complete, because it requires a lot of computation, or because it returns a lot of data which the client is slow to process. The solution is to create a separate process or thread to handle each request; the :class:`ForkingMixIn` and :class:`ThreadingMixIn` mix-in classes can be used to support asynchronous behaviour." msgstr "" -#: ../../library/socketserver.rst:52 -msgid "" -"Creating a server requires several steps. First, you must create a request " -"handler class by subclassing the :class:`BaseRequestHandler` class and " -"overriding its :meth:`~BaseRequestHandler.handle` method; this method will " -"process incoming requests. Second, you must instantiate one of the server " -"classes, passing it the server's address and the request handler class. It " -"is recommended to use the server in a :keyword:`with` statement. Then call " -"the :meth:`~BaseServer.handle_request` or :meth:`~BaseServer.serve_forever` " -"method of the server object to process one or many requests. Finally, " -"call :meth:`~BaseServer.server_close` to close the socket (unless you used " -"a :keyword:`!with` statement)." -msgstr "" - -#: ../../library/socketserver.rst:64 -msgid "" -"When inheriting from :class:`ThreadingMixIn` for threaded connection " -"behavior, you should explicitly declare how you want your threads to behave " -"on an abrupt shutdown. The :class:`ThreadingMixIn` class defines an " -"attribute *daemon_threads*, which indicates whether or not the server should " -"wait for thread termination. You should set the flag explicitly if you " -"would like threads to behave autonomously; the default is :const:`False`, " -"meaning that Python will not exit until all threads created " -"by :class:`ThreadingMixIn` have exited." +msgid "Creating a server requires several steps. First, you must create a request handler class by subclassing the :class:`BaseRequestHandler` class and overriding its :meth:`~BaseRequestHandler.handle` method; this method will process incoming requests. Second, you must instantiate one of the server classes, passing it the server's address and the request handler class. It is recommended to use the server in a :keyword:`with` statement. Then call the :meth:`~BaseServer.handle_request` or :meth:`~BaseServer.serve_forever` method of the server object to process one or many requests. Finally, call :meth:`~BaseServer.server_close` to close the socket (unless you used a :keyword:`!with` statement)." msgstr "" -#: ../../library/socketserver.rst:73 -msgid "" -"Server classes have the same external methods and attributes, no matter what " -"network protocol they use." +msgid "When inheriting from :class:`ThreadingMixIn` for threaded connection behavior, you should explicitly declare how you want your threads to behave on an abrupt shutdown. The :class:`ThreadingMixIn` class defines an attribute *daemon_threads*, which indicates whether or not the server should wait for thread termination. You should set the flag explicitly if you would like threads to behave autonomously; the default is :const:`False`, meaning that Python will not exit until all threads created by :class:`ThreadingMixIn` have exited." +msgstr "" + +msgid "Server classes have the same external methods and attributes, no matter what network protocol they use." msgstr "" -#: ../../library/socketserver.rst:78 msgid "Server Creation Notes" msgstr "" -#: ../../library/socketserver.rst:80 -msgid "" -"There are five classes in an inheritance diagram, four of which represent " -"synchronous servers of four types::" +msgid "There are five classes in an inheritance diagram, four of which represent synchronous servers of four types::" msgstr "" -#: ../../library/socketserver.rst:83 msgid "" "+------------+\n" "| BaseServer |\n" @@ -145,431 +85,194 @@ msgid "" "+-----------+ +--------------------+" msgstr "" -#: ../../library/socketserver.rst:97 -msgid "" -"Note that :class:`UnixDatagramServer` derives from :class:`UDPServer`, not " -"from :class:`UnixStreamServer` --- the only difference between an IP and a " -"Unix server is the address family." +msgid "Note that :class:`UnixDatagramServer` derives from :class:`UDPServer`, not from :class:`UnixStreamServer` --- the only difference between an IP and a Unix server is the address family." msgstr "" -#: ../../library/socketserver.rst:105 -msgid "" -"Forking and threading versions of each type of server can be created using " -"these mix-in classes. For instance, :class:`ThreadingUDPServer` is created " -"as follows::" +msgid "Forking and threading versions of each type of server can be created using these mix-in classes. For instance, :class:`ThreadingUDPServer` is created as follows::" msgstr "" -#: ../../library/socketserver.rst:109 msgid "" "class ThreadingUDPServer(ThreadingMixIn, UDPServer):\n" " pass" msgstr "" -#: ../../library/socketserver.rst:112 -msgid "" -"The mix-in class comes first, since it overrides a method defined " -"in :class:`UDPServer`. Setting the various attributes also changes the " -"behavior of the underlying server mechanism." +msgid "The mix-in class comes first, since it overrides a method defined in :class:`UDPServer`. Setting the various attributes also changes the behavior of the underlying server mechanism." msgstr "" -#: ../../library/socketserver.rst:116 -msgid "" -":class:`ForkingMixIn` and the Forking classes mentioned below are only " -"available on POSIX platforms that support :func:`~os.fork`." +msgid ":class:`ForkingMixIn` and the Forking classes mentioned below are only available on POSIX platforms that support :func:`~os.fork`." msgstr "" -#: ../../library/socketserver.rst:121 -msgid "" -":meth:`ForkingMixIn.server_close ` waits until all " -"child processes complete, except if :attr:`block_on_close` attribute is " -"``False``." +msgid ":meth:`ForkingMixIn.server_close ` waits until all child processes complete, except if :attr:`block_on_close` attribute is ``False``." msgstr "" -#: ../../library/socketserver.rst:125 -msgid "" -":meth:`ThreadingMixIn.server_close ` waits until " -"all non-daemon threads complete, except if :attr:`block_on_close` attribute " -"is ``False``." +msgid ":meth:`ThreadingMixIn.server_close ` waits until all non-daemon threads complete, except if :attr:`block_on_close` attribute is ``False``." msgstr "" -#: ../../library/socketserver.rst:131 -msgid "" -"Specify how many child processes will exist to handle requests at a time " -"for :class:`ForkingMixIn`. If the limit is reached, new requests will wait " -"until one child process has finished." +msgid "Specify how many child processes will exist to handle requests at a time for :class:`ForkingMixIn`. If the limit is reached, new requests will wait until one child process has finished." msgstr "" -#: ../../library/socketserver.rst:137 -msgid "" -"For :class:`ThreadingMixIn` use daemonic threads by " -"setting :data:`ThreadingMixIn.daemon_threads ` to ``True`` " -"to not wait until threads complete." +msgid "For :class:`ThreadingMixIn` use daemonic threads by setting :data:`ThreadingMixIn.daemon_threads ` to ``True`` to not wait until threads complete." msgstr "" -#: ../../library/socketserver.rst:143 -msgid "" -":meth:`ForkingMixIn.server_close ` " -"and :meth:`ThreadingMixIn.server_close ` now waits " -"until all child processes and non-daemonic threads complete. Add a " -"new :attr:`ForkingMixIn.block_on_close ` class attribute to " -"opt-in for the pre-3.7 behaviour." +msgid ":meth:`ForkingMixIn.server_close ` and :meth:`ThreadingMixIn.server_close ` now waits until all child processes and non-daemonic threads complete. Add a new :attr:`ForkingMixIn.block_on_close ` class attribute to opt-in for the pre-3.7 behaviour." msgstr "" -#: ../../library/socketserver.rst:159 msgid "These classes are pre-defined using the mix-in classes." msgstr "" -#: ../../library/socketserver.rst:161 -msgid "" -"The ``ForkingUnixStreamServer`` and ``ForkingUnixDatagramServer`` classes " -"were added." +msgid "The ``ForkingUnixStreamServer`` and ``ForkingUnixDatagramServer`` classes were added." msgstr "" -#: ../../library/socketserver.rst:165 -msgid "" -"To implement a service, you must derive a class " -"from :class:`BaseRequestHandler` and redefine " -"its :meth:`~BaseRequestHandler.handle` method. You can then run various " -"versions of the service by combining one of the server classes with your " -"request handler class. The request handler class must be different for " -"datagram or stream services. This can be hidden by using the handler " -"subclasses :class:`StreamRequestHandler` or :class:`DatagramRequestHandler`." +msgid "To implement a service, you must derive a class from :class:`BaseRequestHandler` and redefine its :meth:`~BaseRequestHandler.handle` method. You can then run various versions of the service by combining one of the server classes with your request handler class. The request handler class must be different for datagram or stream services. This can be hidden by using the handler subclasses :class:`StreamRequestHandler` or :class:`DatagramRequestHandler`." msgstr "" -#: ../../library/socketserver.rst:173 -msgid "" -"Of course, you still have to use your head! For instance, it makes no sense " -"to use a forking server if the service contains state in memory that can be " -"modified by different requests, since the modifications in the child process " -"would never reach the initial state kept in the parent process and passed to " -"each child. In this case, you can use a threading server, but you will " -"probably have to use locks to protect the integrity of the shared data." +msgid "Of course, you still have to use your head! For instance, it makes no sense to use a forking server if the service contains state in memory that can be modified by different requests, since the modifications in the child process would never reach the initial state kept in the parent process and passed to each child. In this case, you can use a threading server, but you will probably have to use locks to protect the integrity of the shared data." msgstr "" -#: ../../library/socketserver.rst:180 -msgid "" -"On the other hand, if you are building an HTTP server where all data is " -"stored externally (for instance, in the file system), a synchronous class " -"will essentially render the service \"deaf\" while one request is being " -"handled -- which may be for a very long time if a client is slow to receive " -"all the data it has requested. Here a threading or forking server is " -"appropriate." +msgid "On the other hand, if you are building an HTTP server where all data is stored externally (for instance, in the file system), a synchronous class will essentially render the service \"deaf\" while one request is being handled -- which may be for a very long time if a client is slow to receive all the data it has requested. Here a threading or forking server is appropriate." msgstr "" -#: ../../library/socketserver.rst:186 -msgid "" -"In some cases, it may be appropriate to process part of a request " -"synchronously, but to finish processing in a forked child depending on the " -"request data. This can be implemented by using a synchronous server and " -"doing an explicit fork in the request handler " -"class :meth:`~BaseRequestHandler.handle` method." +msgid "In some cases, it may be appropriate to process part of a request synchronously, but to finish processing in a forked child depending on the request data. This can be implemented by using a synchronous server and doing an explicit fork in the request handler class :meth:`~BaseRequestHandler.handle` method." msgstr "" -#: ../../library/socketserver.rst:191 -msgid "" -"Another approach to handling multiple simultaneous requests in an " -"environment that supports neither threads nor :func:`~os.fork` (or where " -"these are too expensive or inappropriate for the service) is to maintain an " -"explicit table of partially finished requests and to use :mod:`selectors` to " -"decide which request to work on next (or whether to handle a new incoming " -"request). This is particularly important for stream services where each " -"client can potentially be connected for a long time (if threads or " -"subprocesses cannot be used)." +msgid "Another approach to handling multiple simultaneous requests in an environment that supports neither threads nor :func:`~os.fork` (or where these are too expensive or inappropriate for the service) is to maintain an explicit table of partially finished requests and to use :mod:`selectors` to decide which request to work on next (or whether to handle a new incoming request). This is particularly important for stream services where each client can potentially be connected for a long time (if threads or subprocesses cannot be used)." msgstr "" -#: ../../library/socketserver.rst:204 msgid "Server Objects" msgstr "" -#: ../../library/socketserver.rst:208 -msgid "" -"This is the superclass of all Server objects in the module. It defines the " -"interface, given below, but does not implement most of the methods, which is " -"done in subclasses. The two parameters are stored in the " -"respective :attr:`server_address` and :attr:`RequestHandlerClass` attributes." +msgid "This is the superclass of all Server objects in the module. It defines the interface, given below, but does not implement most of the methods, which is done in subclasses. The two parameters are stored in the respective :attr:`server_address` and :attr:`RequestHandlerClass` attributes." msgstr "" -#: ../../library/socketserver.rst:216 -msgid "" -"Return an integer file descriptor for the socket on which the server is " -"listening. This function is most commonly passed to :mod:`selectors`, to " -"allow monitoring multiple servers in the same process." +msgid "Return an integer file descriptor for the socket on which the server is listening. This function is most commonly passed to :mod:`selectors`, to allow monitoring multiple servers in the same process." msgstr "" -#: ../../library/socketserver.rst:223 -msgid "" -"Process a single request. This function calls the following methods in " -"order: :meth:`get_request`, :meth:`verify_request`, " -"and :meth:`process_request`. If the user-" -"provided :meth:`~BaseRequestHandler.handle` method of the handler class " -"raises an exception, the server's :meth:`handle_error` method will be " -"called. If no request is received within :attr:`timeout` " -"seconds, :meth:`handle_timeout` will be called and :meth:`handle_request` " -"will return." +msgid "Process a single request. This function calls the following methods in order: :meth:`get_request`, :meth:`verify_request`, and :meth:`process_request`. If the user-provided :meth:`~BaseRequestHandler.handle` method of the handler class raises an exception, the server's :meth:`handle_error` method will be called. If no request is received within :attr:`timeout` seconds, :meth:`handle_timeout` will be called and :meth:`handle_request` will return." msgstr "" -#: ../../library/socketserver.rst:235 -msgid "" -"Handle requests until an explicit :meth:`shutdown` request. Poll for " -"shutdown every *poll_interval* seconds. Ignores the :attr:`timeout` " -"attribute. It also calls :meth:`service_actions`, which may be used by a " -"subclass or mixin to provide actions specific to a given service. For " -"example, the :class:`ForkingMixIn` class uses :meth:`service_actions` to " -"clean up zombie child processes." +msgid "Handle requests until an explicit :meth:`shutdown` request. Poll for shutdown every *poll_interval* seconds. Ignores the :attr:`timeout` attribute. It also calls :meth:`service_actions`, which may be used by a subclass or mixin to provide actions specific to a given service. For example, the :class:`ForkingMixIn` class uses :meth:`service_actions` to clean up zombie child processes." msgstr "" -#: ../../library/socketserver.rst:243 msgid "Added ``service_actions`` call to the ``serve_forever`` method." msgstr "" -#: ../../library/socketserver.rst:249 -msgid "" -"This is called in the :meth:`serve_forever` loop. This method can be " -"overridden by subclasses or mixin classes to perform actions specific to a " -"given service, such as cleanup actions." +msgid "This is called in the :meth:`serve_forever` loop. This method can be overridden by subclasses or mixin classes to perform actions specific to a given service, such as cleanup actions." msgstr "" -#: ../../library/socketserver.rst:257 -msgid "" -"Tell the :meth:`serve_forever` loop to stop and wait until it " -"does. :meth:`shutdown` must be called while :meth:`serve_forever` is running " -"in a different thread otherwise it will deadlock." +msgid "Tell the :meth:`serve_forever` loop to stop and wait until it does. :meth:`shutdown` must be called while :meth:`serve_forever` is running in a different thread otherwise it will deadlock." msgstr "" -#: ../../library/socketserver.rst:264 msgid "Clean up the server. May be overridden." msgstr "" -#: ../../library/socketserver.rst:269 -msgid "" -"The family of protocols to which the server's socket belongs. Common " -"examples are :const:`socket.AF_INET`, :const:`socket.AF_INET6`, " -"and :const:`socket.AF_UNIX`. Subclass the TCP or UDP server classes in this " -"module with class attribute ``address_family = AF_INET6`` set if you want " -"IPv6 server classes." +msgid "The family of protocols to which the server's socket belongs. Common examples are :const:`socket.AF_INET`, :const:`socket.AF_INET6`, and :const:`socket.AF_UNIX`. Subclass the TCP or UDP server classes in this module with class attribute ``address_family = AF_INET6`` set if you want IPv6 server classes." msgstr "" -#: ../../library/socketserver.rst:278 -msgid "" -"The user-provided request handler class; an instance of this class is " -"created for each request." +msgid "The user-provided request handler class; an instance of this class is created for each request." msgstr "" -#: ../../library/socketserver.rst:284 -msgid "" -"The address on which the server is listening. The format of addresses " -"varies depending on the protocol family; see the documentation for " -"the :mod:`socket` module for details. For internet protocols, this is a " -"tuple containing a string giving the address, and an integer port number: " -"``('127.0.0.1', 80)``, for example." +msgid "The address on which the server is listening. The format of addresses varies depending on the protocol family; see the documentation for the :mod:`socket` module for details. For internet protocols, this is a tuple containing a string giving the address, and an integer port number: ``('127.0.0.1', 80)``, for example." msgstr "" -#: ../../library/socketserver.rst:293 -msgid "" -"The socket object on which the server will listen for incoming requests." +msgid "The socket object on which the server will listen for incoming requests." msgstr "" -#: ../../library/socketserver.rst:296 msgid "The server classes support the following class variables:" msgstr "" -#: ../../library/socketserver.rst:302 -msgid "" -"Whether the server will allow the reuse of an address. This defaults " -"to :const:`False`, and can be set in subclasses to change the policy." +msgid "Whether the server will allow the reuse of an address. This defaults to :const:`False`, and can be set in subclasses to change the policy." msgstr "" -#: ../../library/socketserver.rst:308 -msgid "" -"The size of the request queue. If it takes a long time to process a single " -"request, any requests that arrive while the server is busy are placed into a " -"queue, up to :attr:`request_queue_size` requests. Once the queue is full, " -"further requests from clients will get a \"Connection denied\" error. The " -"default value is usually 5, but this can be overridden by subclasses." +msgid "The size of the request queue. If it takes a long time to process a single request, any requests that arrive while the server is busy are placed into a queue, up to :attr:`request_queue_size` requests. Once the queue is full, further requests from clients will get a \"Connection denied\" error. The default value is usually 5, but this can be overridden by subclasses." msgstr "" -#: ../../library/socketserver.rst:317 -msgid "" -"The type of socket used by the server; :const:`socket.SOCK_STREAM` " -"and :const:`socket.SOCK_DGRAM` are two common values." +msgid "The type of socket used by the server; :const:`socket.SOCK_STREAM` and :const:`socket.SOCK_DGRAM` are two common values." msgstr "" -#: ../../library/socketserver.rst:323 -msgid "" -"Timeout duration, measured in seconds, or :const:`None` if no timeout is " -"desired. If :meth:`handle_request` receives no incoming requests within the " -"timeout period, the :meth:`handle_timeout` method is called." +msgid "Timeout duration, measured in seconds, or :const:`None` if no timeout is desired. If :meth:`handle_request` receives no incoming requests within the timeout period, the :meth:`handle_timeout` method is called." msgstr "" -#: ../../library/socketserver.rst:328 -msgid "" -"There are various server methods that can be overridden by subclasses of " -"base server classes like :class:`TCPServer`; these methods aren't useful to " -"external users of the server object." +msgid "There are various server methods that can be overridden by subclasses of base server classes like :class:`TCPServer`; these methods aren't useful to external users of the server object." msgstr "" -#: ../../library/socketserver.rst:337 -msgid "" -"Actually processes the request by instantiating :attr:`RequestHandlerClass` " -"and calling its :meth:`~BaseRequestHandler.handle` method." +msgid "Actually processes the request by instantiating :attr:`RequestHandlerClass` and calling its :meth:`~BaseRequestHandler.handle` method." msgstr "" -#: ../../library/socketserver.rst:343 -msgid "" -"Must accept a request from the socket, and return a 2-tuple containing the " -"*new* socket object to be used to communicate with the client, and the " -"client's address." +msgid "Must accept a request from the socket, and return a 2-tuple containing the *new* socket object to be used to communicate with the client, and the client's address." msgstr "" -#: ../../library/socketserver.rst:350 -msgid "" -"This function is called if the :meth:`~BaseRequestHandler.handle` method of " -"a :attr:`RequestHandlerClass` instance raises an exception. The default " -"action is to print the traceback to standard error and continue handling " -"further requests." +msgid "This function is called if the :meth:`~BaseRequestHandler.handle` method of a :attr:`RequestHandlerClass` instance raises an exception. The default action is to print the traceback to standard error and continue handling further requests." msgstr "" -#: ../../library/socketserver.rst:355 msgid "Now only called for exceptions derived from the :exc:`Exception` class." msgstr "" -#: ../../library/socketserver.rst:362 -msgid "" -"This function is called when the :attr:`timeout` attribute has been set to a " -"value other than :const:`None` and the timeout period has passed with no " -"requests being received. The default action for forking servers is to " -"collect the status of any child processes that have exited, while in " -"threading servers this method does nothing." +msgid "This function is called when the :attr:`timeout` attribute has been set to a value other than :const:`None` and the timeout period has passed with no requests being received. The default action for forking servers is to collect the status of any child processes that have exited, while in threading servers this method does nothing." msgstr "" -#: ../../library/socketserver.rst:371 -msgid "" -"Calls :meth:`finish_request` to create an instance of " -"the :attr:`RequestHandlerClass`. If desired, this function can create a new " -"process or thread to handle the request; the :class:`ForkingMixIn` " -"and :class:`ThreadingMixIn` classes do this." +msgid "Calls :meth:`finish_request` to create an instance of the :attr:`RequestHandlerClass`. If desired, this function can create a new process or thread to handle the request; the :class:`ForkingMixIn` and :class:`ThreadingMixIn` classes do this." msgstr "" -#: ../../library/socketserver.rst:383 -msgid "" -"Called by the server's constructor to activate the server. The default " -"behavior for a TCP server just invokes :meth:`~socket.socket.listen` on the " -"server's socket. May be overridden." +msgid "Called by the server's constructor to activate the server. The default behavior for a TCP server just invokes :meth:`~socket.socket.listen` on the server's socket. May be overridden." msgstr "" -#: ../../library/socketserver.rst:390 -msgid "" -"Called by the server's constructor to bind the socket to the desired " -"address. May be overridden." +msgid "Called by the server's constructor to bind the socket to the desired address. May be overridden." msgstr "" -#: ../../library/socketserver.rst:396 -msgid "" -"Must return a Boolean value; if the value is :const:`True`, the request will " -"be processed, and if it's :const:`False`, the request will be denied. This " -"function can be overridden to implement access controls for a server. The " -"default implementation always returns :const:`True`." +msgid "Must return a Boolean value; if the value is :const:`True`, the request will be processed, and if it's :const:`False`, the request will be denied. This function can be overridden to implement access controls for a server. The default implementation always returns :const:`True`." msgstr "" -#: ../../library/socketserver.rst:402 -msgid "" -"Support for the :term:`context manager` protocol was added. Exiting the " -"context manager is equivalent to calling :meth:`server_close`." +msgid "Support for the :term:`context manager` protocol was added. Exiting the context manager is equivalent to calling :meth:`server_close`." msgstr "" -#: ../../library/socketserver.rst:408 msgid "Request Handler Objects" msgstr "" -#: ../../library/socketserver.rst:412 -msgid "" -"This is the superclass of all request handler objects. It defines the " -"interface, given below. A concrete request handler subclass must define a " -"new :meth:`handle` method, and can override any of the other methods. A new " -"instance of the subclass is created for each request." +msgid "This is the superclass of all request handler objects. It defines the interface, given below. A concrete request handler subclass must define a new :meth:`handle` method, and can override any of the other methods. A new instance of the subclass is created for each request." msgstr "" -#: ../../library/socketserver.rst:421 -msgid "" -"Called before the :meth:`handle` method to perform any initialization " -"actions required. The default implementation does nothing." +msgid "Called before the :meth:`handle` method to perform any initialization actions required. The default implementation does nothing." msgstr "" -#: ../../library/socketserver.rst:427 -msgid "" -"This function must do all the work required to service a request. The " -"default implementation does nothing. Several instance attributes are " -"available to it; the request is available as :attr:`request`; the client " -"address as :attr:`client_address`; and the server instance " -"as :attr:`server`, in case it needs access to per-server information." +msgid "This function must do all the work required to service a request. The default implementation does nothing. Several instance attributes are available to it; the request is available as :attr:`request`; the client address as :attr:`client_address`; and the server instance as :attr:`server`, in case it needs access to per-server information." msgstr "" -#: ../../library/socketserver.rst:433 -msgid "" -"The type of :attr:`request` is different for datagram or stream services. " -"For stream services, :attr:`request` is a socket object; for datagram " -"services, :attr:`request` is a pair of string and socket." +msgid "The type of :attr:`request` is different for datagram or stream services. For stream services, :attr:`request` is a socket object; for datagram services, :attr:`request` is a pair of string and socket." msgstr "" -#: ../../library/socketserver.rst:440 -msgid "" -"Called after the :meth:`handle` method to perform any clean-up actions " -"required. The default implementation does nothing. If :meth:`setup` raises " -"an exception, this function will not be called." +msgid "Called after the :meth:`handle` method to perform any clean-up actions required. The default implementation does nothing. If :meth:`setup` raises an exception, this function will not be called." msgstr "" -#: ../../library/socketserver.rst:447 -msgid "" -"The *new* :class:`socket.socket` object to be used to communicate with the " -"client." +msgid "The *new* :class:`socket.socket` object to be used to communicate with the client." msgstr "" -#: ../../library/socketserver.rst:453 msgid "Client address returned by :meth:`BaseServer.get_request`." msgstr "" -#: ../../library/socketserver.rst:458 msgid ":class:`BaseServer` object used for handling the request." msgstr "" -#: ../../library/socketserver.rst:464 -msgid "" -"These :class:`BaseRequestHandler` subclasses override " -"the :meth:`~BaseRequestHandler.setup` and :meth:`~BaseRequestHandler.finish` " -"methods, and provide :attr:`rfile` and :attr:`wfile` attributes." +msgid "These :class:`BaseRequestHandler` subclasses override the :meth:`~BaseRequestHandler.setup` and :meth:`~BaseRequestHandler.finish` methods, and provide :attr:`rfile` and :attr:`wfile` attributes." msgstr "" -#: ../../library/socketserver.rst:470 -msgid "" -"A file object from which receives the request is read. Support " -"the :class:`io.BufferedIOBase` readable interface." +msgid "A file object from which receives the request is read. Support the :class:`io.BufferedIOBase` readable interface." msgstr "" -#: ../../library/socketserver.rst:475 -msgid "" -"A file object to which the reply is written. Support " -"the :class:`io.BufferedIOBase` writable interface" +msgid "A file object to which the reply is written. Support the :class:`io.BufferedIOBase` writable interface" msgstr "" -#: ../../library/socketserver.rst:479 -msgid "" -":attr:`wfile` also supports the :class:`io.BufferedIOBase` writable " -"interface." +msgid ":attr:`wfile` also supports the :class:`io.BufferedIOBase` writable interface." msgstr "" -#: ../../library/socketserver.rst:485 msgid "Examples" msgstr "" -#: ../../library/socketserver.rst:488 msgid ":class:`socketserver.TCPServer` Example" msgstr "" -#: ../../library/socketserver.rst:490 ../../library/socketserver.rst:601 msgid "This is the server side::" msgstr "" -#: ../../library/socketserver.rst:492 msgid "" "import socketserver\n" "\n" @@ -606,14 +309,9 @@ msgid "" " server.serve_forever()" msgstr "" -#: ../../library/socketserver.rst:526 -msgid "" -"An alternative request handler class that makes use of streams (file-like " -"objects that simplify communication by providing the standard file " -"interface)::" +msgid "An alternative request handler class that makes use of streams (file-like objects that simplify communication by providing the standard file interface)::" msgstr "" -#: ../../library/socketserver.rst:529 msgid "" "class MyTCPHandler(socketserver.StreamRequestHandler):\n" "\n" @@ -629,23 +327,12 @@ msgid "" " self.wfile.write(self.data.upper())" msgstr "" -#: ../../library/socketserver.rst:542 -msgid "" -"The difference is that the ``readline()`` call in the second handler will " -"call ``recv()`` multiple times until it encounters a newline character, " -"while the first handler had to use a ``recv()`` loop to accumulate data " -"until a newline itself. If it had just used a single ``recv()`` without the " -"loop it would just have returned what has been received so far from the " -"client. TCP is stream based: data arrives in the order it was sent, but " -"there is no correlation between client ``send()`` or ``sendall()`` calls and " -"the number of ``recv()`` calls on the server required to receive it." +msgid "The difference is that the ``readline()`` call in the second handler will call ``recv()`` multiple times until it encounters a newline character, while the first handler had to use a ``recv()`` loop to accumulate data until a newline itself. If it had just used a single ``recv()`` without the loop it would just have returned what has been received so far from the client. TCP is stream based: data arrives in the order it was sent, but there is no correlation between client ``send()`` or ``sendall()`` calls and the number of ``recv()`` calls on the server required to receive it." msgstr "" -#: ../../library/socketserver.rst:552 ../../library/socketserver.rst:625 msgid "This is the client side::" msgstr "" -#: ../../library/socketserver.rst:554 msgid "" "import socket\n" "import sys\n" @@ -667,15 +354,12 @@ msgid "" "print(\"Received:\", received)" msgstr "" -#: ../../library/socketserver.rst:574 ../../library/socketserver.rst:700 msgid "The output of the example should look something like this:" msgstr "" -#: ../../library/socketserver.rst:576 msgid "Server:" msgstr "" -#: ../../library/socketserver.rst:578 msgid "" "$ python TCPServer.py\n" "127.0.0.1 wrote:\n" @@ -684,11 +368,9 @@ msgid "" "b'python is nice'" msgstr "" -#: ../../library/socketserver.rst:586 msgid "Client:" msgstr "" -#: ../../library/socketserver.rst:588 msgid "" "$ python TCPClient.py hello world with TCP\n" "Sent: hello world with TCP\n" @@ -698,11 +380,9 @@ msgid "" "Received: PYTHON IS NICE" msgstr "" -#: ../../library/socketserver.rst:599 msgid ":class:`socketserver.UDPServer` Example" msgstr "" -#: ../../library/socketserver.rst:603 msgid "" "import socketserver\n" "\n" @@ -727,7 +407,6 @@ msgid "" " server.serve_forever()" msgstr "" -#: ../../library/socketserver.rst:627 msgid "" "import socket\n" "import sys\n" @@ -747,27 +426,18 @@ msgid "" "print(\"Received:\", received)" msgstr "" -#: ../../library/socketserver.rst:644 -msgid "" -"The output of the example should look exactly like for the TCP server " -"example." +msgid "The output of the example should look exactly like for the TCP server example." msgstr "" -#: ../../library/socketserver.rst:648 msgid "Asynchronous Mixins" msgstr "" -#: ../../library/socketserver.rst:650 -msgid "" -"To build asynchronous handlers, use the :class:`ThreadingMixIn` " -"and :class:`ForkingMixIn` classes." +msgid "To build asynchronous handlers, use the :class:`ThreadingMixIn` and :class:`ForkingMixIn` classes." msgstr "" -#: ../../library/socketserver.rst:653 msgid "An example for the :class:`ThreadingMixIn` class::" msgstr "" -#: ../../library/socketserver.rst:655 msgid "" "import socket\n" "import threading\n" @@ -781,8 +451,7 @@ msgid "" " response = bytes(\"{}: {}\".format(cur_thread.name, data), 'ascii')\n" " self.request.sendall(response)\n" "\n" -"class ThreadedTCPServer(socketserver.ThreadingMixIn, " -"socketserver.TCPServer):\n" +"class ThreadedTCPServer(socketserver.ThreadingMixIn, socketserver.TCPServer):\n" " pass\n" "\n" "def client(ip, port, message):\n" @@ -815,7 +484,6 @@ msgid "" " server.shutdown()" msgstr "" -#: ../../library/socketserver.rst:702 msgid "" "$ python ThreadedTCPServer.py\n" "Server loop running in thread: Thread-1\n" @@ -824,9 +492,5 @@ msgid "" "Received: Thread-4: Hello World 3" msgstr "" -#: ../../library/socketserver.rst:711 -msgid "" -"The :class:`ForkingMixIn` class is used in the same way, except that the " -"server will spawn a new process for each request. Available only on POSIX " -"platforms that support :func:`~os.fork`." +msgid "The :class:`ForkingMixIn` class is used in the same way, except that the server will spawn a new process for each request. Available only on POSIX platforms that support :func:`~os.fork`." msgstr "" diff --git a/library/spwd.po b/library/spwd.po index 160504c9..004392c7 100644 --- a/library/spwd.po +++ b/library/spwd.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2024-11-19 01:03+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,25 +21,14 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/spwd.rst:2 msgid ":mod:`!spwd` --- The shadow password database" msgstr "" -#: ../../library/spwd.rst:10 -msgid "" -"This module is no longer part of the Python standard library. It " -"was :ref:`removed in Python 3.13 ` after being " -"deprecated in Python 3.11. The removal was decided in :pep:`594`." +msgid "This module is no longer part of the Python standard library. It was :ref:`removed in Python 3.13 ` after being deprecated in Python 3.11. The removal was decided in :pep:`594`." msgstr "" -#: ../../library/spwd.rst:14 -msgid "" -"A possible replacement is the third-party library :pypi:`python-pam`. This " -"library is not supported or maintained by the Python core team." +msgid "A possible replacement is the third-party library :pypi:`python-pam`. This library is not supported or maintained by the Python core team." msgstr "" -#: ../../library/spwd.rst:17 -msgid "" -"The last version of Python that provided the :mod:`!spwd` module was `Python " -"3.12 `_." +msgid "The last version of Python that provided the :mod:`!spwd` module was `Python 3.12 `_." msgstr "" diff --git a/library/sqlite3.po b/library/sqlite3.po index eb2c52b5..9e84d977 100644 --- a/library/sqlite3.po +++ b/library/sqlite3.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:13+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,186 +24,104 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/sqlite3.rst:2 msgid ":mod:`!sqlite3` --- DB-API 2.0 interface for SQLite databases" msgstr "" -#: ../../library/sqlite3.rst:9 msgid "**Source code:** :source:`Lib/sqlite3/`" msgstr "" -#: ../../library/sqlite3.rst:25 -msgid "" -"SQLite is a C library that provides a lightweight disk-based database that " -"doesn't require a separate server process and allows accessing the database " -"using a nonstandard variant of the SQL query language. Some applications can " -"use SQLite for internal data storage. It's also possible to prototype an " -"application using SQLite and then port the code to a larger database such as " -"PostgreSQL or Oracle." +msgid "SQLite is a C library that provides a lightweight disk-based database that doesn't require a separate server process and allows accessing the database using a nonstandard variant of the SQL query language. Some applications can use SQLite for internal data storage. It's also possible to prototype an application using SQLite and then port the code to a larger database such as PostgreSQL or Oracle." msgstr "" -#: ../../library/sqlite3.rst:32 -msgid "" -"The :mod:`!sqlite3` module was written by Gerhard Häring. It provides an " -"SQL interface compliant with the DB-API 2.0 specification described " -"by :pep:`249`, and requires the third-party `SQLite `_ " -"library." +msgid "The :mod:`!sqlite3` module was written by Gerhard Häring. It provides an SQL interface compliant with the DB-API 2.0 specification described by :pep:`249`, and requires the third-party `SQLite `_ library." msgstr "" -#: ../../includes/optional-module.rst:1 -msgid "" -"This is an :term:`optional module`. If it is missing from your copy of " -"CPython, look for documentation from your distributor (that is, whoever " -"provided Python to you). If you are the distributor, see :ref:`optional-" -"module-requirements`." +msgid "This is an :term:`optional module`. If it is missing from your copy of CPython, look for documentation from your distributor (that is, whoever provided Python to you). If you are the distributor, see :ref:`optional-module-requirements`." msgstr "" -#: ../../library/sqlite3.rst:38 msgid "This document includes four main sections:" msgstr "" -#: ../../library/sqlite3.rst:40 msgid ":ref:`sqlite3-tutorial` teaches how to use the :mod:`!sqlite3` module." msgstr "" -#: ../../library/sqlite3.rst:41 -msgid "" -":ref:`sqlite3-reference` describes the classes and functions this module " -"defines." +msgid ":ref:`sqlite3-reference` describes the classes and functions this module defines." msgstr "" -#: ../../library/sqlite3.rst:43 msgid ":ref:`sqlite3-howtos` details how to handle specific tasks." msgstr "" -#: ../../library/sqlite3.rst:44 -msgid "" -":ref:`sqlite3-explanation` provides in-depth background on transaction " -"control." +msgid ":ref:`sqlite3-explanation` provides in-depth background on transaction control." msgstr "" -#: ../../library/sqlite3.rst:49 msgid "https://www.sqlite.org" msgstr "" -#: ../../library/sqlite3.rst:50 -msgid "" -"The SQLite web page; the documentation describes the syntax and the " -"available data types for the supported SQL dialect." +msgid "The SQLite web page; the documentation describes the syntax and the available data types for the supported SQL dialect." msgstr "" -#: ../../library/sqlite3.rst:53 msgid "https://www.w3schools.com/sql/" msgstr "" -#: ../../library/sqlite3.rst:54 msgid "Tutorial, reference and examples for learning SQL syntax." msgstr "" -#: ../../library/sqlite3.rst:56 msgid ":pep:`249` - Database API Specification 2.0" msgstr "" -#: ../../library/sqlite3.rst:57 msgid "PEP written by Marc-André Lemburg." msgstr "" -#: ../../library/sqlite3.rst:70 msgid "Tutorial" msgstr "" -#: ../../library/sqlite3.rst:72 -msgid "" -"In this tutorial, you will create a database of Monty Python movies using " -"basic :mod:`!sqlite3` functionality. It assumes a fundamental understanding " -"of database concepts, including `cursors`_ and `transactions`_." +msgid "In this tutorial, you will create a database of Monty Python movies using basic :mod:`!sqlite3` functionality. It assumes a fundamental understanding of database concepts, including `cursors`_ and `transactions`_." msgstr "" -#: ../../library/sqlite3.rst:77 -msgid "" -"First, we need to create a new database and open a database connection to " -"allow :mod:`!sqlite3` to work with it. Call :func:`sqlite3.connect` to " -"create a connection to the database :file:`tutorial.db` in the current " -"working directory, implicitly creating it if it does not exist:" +msgid "First, we need to create a new database and open a database connection to allow :mod:`!sqlite3` to work with it. Call :func:`sqlite3.connect` to create a connection to the database :file:`tutorial.db` in the current working directory, implicitly creating it if it does not exist:" msgstr "" -#: ../../library/sqlite3.rst:83 msgid "" "import sqlite3\n" "con = sqlite3.connect(\"tutorial.db\")" msgstr "" -#: ../../library/sqlite3.rst:88 -msgid "" -"The returned :class:`Connection` object ``con`` represents the connection to " -"the on-disk database." +msgid "The returned :class:`Connection` object ``con`` represents the connection to the on-disk database." msgstr "" -#: ../../library/sqlite3.rst:91 -msgid "" -"In order to execute SQL statements and fetch results from SQL queries, we " -"will need to use a database cursor. Call :meth:`con.cursor() " -"` to create the :class:`Cursor`:" +msgid "In order to execute SQL statements and fetch results from SQL queries, we will need to use a database cursor. Call :meth:`con.cursor() ` to create the :class:`Cursor`:" msgstr "" -#: ../../library/sqlite3.rst:95 msgid "cur = con.cursor()" msgstr "" -#: ../../library/sqlite3.rst:99 -msgid "" -"Now that we've got a database connection and a cursor, we can create a " -"database table ``movie`` with columns for title, release year, and review " -"score. For simplicity, we can just use column names in the table declaration " -"-- thanks to the `flexible typing`_ feature of SQLite, specifying the data " -"types is optional. Execute the ``CREATE TABLE`` statement by " -"calling :meth:`cur.execute(...) `:" +msgid "Now that we've got a database connection and a cursor, we can create a database table ``movie`` with columns for title, release year, and review score. For simplicity, we can just use column names in the table declaration -- thanks to the `flexible typing`_ feature of SQLite, specifying the data types is optional. Execute the ``CREATE TABLE`` statement by calling :meth:`cur.execute(...) `:" msgstr "" -#: ../../library/sqlite3.rst:108 msgid "cur.execute(\"CREATE TABLE movie(title, year, score)\")" msgstr "" -#: ../../library/sqlite3.rst:115 -msgid "" -"We can verify that the new table has been created by querying the " -"``sqlite_master`` table built-in to SQLite, which should now contain an " -"entry for the ``movie`` table definition (see `The Schema Table`_ for " -"details). Execute that query by calling :meth:`cur.execute(...) " -"`, assign the result to ``res``, and " -"call :meth:`res.fetchone() ` to fetch the resulting row:" +msgid "We can verify that the new table has been created by querying the ``sqlite_master`` table built-in to SQLite, which should now contain an entry for the ``movie`` table definition (see `The Schema Table`_ for details). Execute that query by calling :meth:`cur.execute(...) `, assign the result to ``res``, and call :meth:`res.fetchone() ` to fetch the resulting row:" msgstr "" -#: ../../library/sqlite3.rst:123 msgid "" ">>> res = cur.execute(\"SELECT name FROM sqlite_master\")\n" ">>> res.fetchone()\n" "('movie',)" msgstr "" -#: ../../library/sqlite3.rst:129 -msgid "" -"We can see that the table has been created, as the query returns " -"a :class:`tuple` containing the table's name. If we query ``sqlite_master`` " -"for a non-existent table ``spam``, :meth:`!res.fetchone` will return " -"``None``:" +msgid "We can see that the table has been created, as the query returns a :class:`tuple` containing the table's name. If we query ``sqlite_master`` for a non-existent table ``spam``, :meth:`!res.fetchone` will return ``None``:" msgstr "" -#: ../../library/sqlite3.rst:134 msgid "" ">>> res = cur.execute(\"SELECT name FROM sqlite_master WHERE name='spam'\")\n" ">>> res.fetchone() is None\n" "True" msgstr "" -#: ../../library/sqlite3.rst:140 -msgid "" -"Now, add two rows of data supplied as SQL literals by executing an " -"``INSERT`` statement, once again by calling :meth:`cur.execute(...) " -"`:" +msgid "Now, add two rows of data supplied as SQL literals by executing an ``INSERT`` statement, once again by calling :meth:`cur.execute(...) `:" msgstr "" -#: ../../library/sqlite3.rst:144 msgid "" "cur.execute(\"\"\"\n" " INSERT INTO movie VALUES\n" @@ -212,46 +130,27 @@ msgid "" "\"\"\")" msgstr "" -#: ../../library/sqlite3.rst:152 -msgid "" -"The ``INSERT`` statement implicitly opens a transaction, which needs to be " -"committed before changes are saved in the database (see :ref:`sqlite3-" -"controlling-transactions` for details). Call :meth:`con.commit() " -"` on the connection object to commit the transaction:" +msgid "The ``INSERT`` statement implicitly opens a transaction, which needs to be committed before changes are saved in the database (see :ref:`sqlite3-controlling-transactions` for details). Call :meth:`con.commit() ` on the connection object to commit the transaction:" msgstr "" -#: ../../library/sqlite3.rst:158 msgid "con.commit()" msgstr "" -#: ../../library/sqlite3.rst:162 -msgid "" -"We can verify that the data was inserted correctly by executing a ``SELECT`` " -"query. Use the now-familiar :meth:`cur.execute(...) ` to " -"assign the result to ``res``, and call :meth:`res.fetchall() " -"` to return all resulting rows:" +msgid "We can verify that the data was inserted correctly by executing a ``SELECT`` query. Use the now-familiar :meth:`cur.execute(...) ` to assign the result to ``res``, and call :meth:`res.fetchall() ` to return all resulting rows:" msgstr "" -#: ../../library/sqlite3.rst:168 msgid "" ">>> res = cur.execute(\"SELECT score FROM movie\")\n" ">>> res.fetchall()\n" "[(8.2,), (7.5,)]" msgstr "" -#: ../../library/sqlite3.rst:174 -msgid "" -"The result is a :class:`list` of two :class:`!tuple`\\s, one per row, each " -"containing that row's ``score`` value." +msgid "The result is a :class:`list` of two :class:`!tuple`\\s, one per row, each containing that row's ``score`` value." msgstr "" -#: ../../library/sqlite3.rst:177 -msgid "" -"Now, insert three more rows by calling :meth:`cur.executemany(...) " -"`:" +msgid "Now, insert three more rows by calling :meth:`cur.executemany(...) `:" msgstr "" -#: ../../library/sqlite3.rst:180 msgid "" "data = [\n" " (\"Monty Python Live at the Hollywood Bowl\", 1982, 7.9),\n" @@ -262,24 +161,14 @@ msgid "" "con.commit() # Remember to commit the transaction after executing INSERT." msgstr "" -#: ../../library/sqlite3.rst:190 -msgid "" -"Notice that ``?`` placeholders are used to bind ``data`` to the query. " -"Always use placeholders instead of :ref:`string formatting ` " -"to bind Python values to SQL statements, to avoid `SQL injection attacks`_ " -"(see :ref:`sqlite3-placeholders` for more details)." +msgid "Notice that ``?`` placeholders are used to bind ``data`` to the query. Always use placeholders instead of :ref:`string formatting ` to bind Python values to SQL statements, to avoid `SQL injection attacks`_ (see :ref:`sqlite3-placeholders` for more details)." msgstr "" -#: ../../library/sqlite3.rst:196 -msgid "" -"We can verify that the new rows were inserted by executing a ``SELECT`` " -"query, this time iterating over the results of the query:" +msgid "We can verify that the new rows were inserted by executing a ``SELECT`` query, this time iterating over the results of the query:" msgstr "" -#: ../../library/sqlite3.rst:200 msgid "" -">>> for row in cur.execute(\"SELECT year, title FROM movie ORDER BY " -"year\"):\n" +">>> for row in cur.execute(\"SELECT year, title FROM movie ORDER BY year\"):\n" "... print(row)\n" "(1971, 'And Now for Something Completely Different')\n" "(1975, 'Monty Python and the Holy Grail')\n" @@ -288,214 +177,116 @@ msgid "" "(1983, \"Monty Python's The Meaning of Life\")" msgstr "" -#: ../../library/sqlite3.rst:210 -msgid "" -"Each row is a two-item :class:`tuple` of ``(year, title)``, matching the " -"columns selected in the query." +msgid "Each row is a two-item :class:`tuple` of ``(year, title)``, matching the columns selected in the query." msgstr "" -#: ../../library/sqlite3.rst:213 -msgid "" -"Finally, verify that the database has been written to disk by " -"calling :meth:`con.close() ` to close the existing " -"connection, opening a new one, creating a new cursor, then querying the " -"database:" +msgid "Finally, verify that the database has been written to disk by calling :meth:`con.close() ` to close the existing connection, opening a new one, creating a new cursor, then querying the database:" msgstr "" -#: ../../library/sqlite3.rst:218 msgid "" ">>> con.close()\n" ">>> new_con = sqlite3.connect(\"tutorial.db\")\n" ">>> new_cur = new_con.cursor()\n" -">>> res = new_cur.execute(\"SELECT title, year FROM movie ORDER BY score " -"DESC\")\n" +">>> res = new_cur.execute(\"SELECT title, year FROM movie ORDER BY score DESC\")\n" ">>> title, year = res.fetchone()\n" -">>> print(f'The highest scoring Monty Python movie is {title!r}, released in " -"{year}')\n" -"The highest scoring Monty Python movie is 'Monty Python and the Holy Grail', " -"released in 1975\n" +">>> print(f'The highest scoring Monty Python movie is {title!r}, released in {year}')\n" +"The highest scoring Monty Python movie is 'Monty Python and the Holy Grail', released in 1975\n" ">>> new_con.close()" msgstr "" -#: ../../library/sqlite3.rst:229 -msgid "" -"You've now created an SQLite database using the :mod:`!sqlite3` module, " -"inserted data and retrieved values from it in multiple ways." +msgid "You've now created an SQLite database using the :mod:`!sqlite3` module, inserted data and retrieved values from it in multiple ways." msgstr "" -#: ../../library/sqlite3.rst:241 msgid ":ref:`sqlite3-howtos` for further reading:" msgstr "" -#: ../../library/sqlite3.rst:243 msgid ":ref:`sqlite3-placeholders`" msgstr "" -#: ../../library/sqlite3.rst:244 msgid ":ref:`sqlite3-adapters`" msgstr "" -#: ../../library/sqlite3.rst:245 msgid ":ref:`sqlite3-converters`" msgstr "" -#: ../../library/sqlite3.rst:246 ../../library/sqlite3.rst:602 msgid ":ref:`sqlite3-connection-context-manager`" msgstr "" -#: ../../library/sqlite3.rst:247 msgid ":ref:`sqlite3-howto-row-factory`" msgstr "" -#: ../../library/sqlite3.rst:249 -msgid "" -":ref:`sqlite3-explanation` for in-depth background on transaction control." +msgid ":ref:`sqlite3-explanation` for in-depth background on transaction control." msgstr "" -#: ../../library/sqlite3.rst:254 msgid "Reference" msgstr "" -#: ../../library/sqlite3.rst:262 msgid "Module functions" msgstr "" -#: ../../library/sqlite3.rst:270 msgid "Open a connection to an SQLite database." msgstr "" -#: ../../library/sqlite3.rst:0 msgid "Parameters" msgstr "" -#: ../../library/sqlite3.rst:272 -msgid "" -"The path to the database file to be opened. You can pass ``\":memory:\"`` to " -"create an `SQLite database existing only in memory `_, and open a connection to it." +msgid "The path to the database file to be opened. You can pass ``\":memory:\"`` to create an `SQLite database existing only in memory `_, and open a connection to it." msgstr "" -#: ../../library/sqlite3.rst:279 -msgid "" -"How many seconds the connection should wait before raising " -"an :exc:`OperationalError` when a table is locked. If another connection " -"opens a transaction to modify a table, that table will be locked until the " -"transaction is committed. Default five seconds." +msgid "How many seconds the connection should wait before raising an :exc:`OperationalError` when a table is locked. If another connection opens a transaction to modify a table, that table will be locked until the transaction is committed. Default five seconds." msgstr "" -#: ../../library/sqlite3.rst:286 -msgid "" -"Control whether and how data types not :ref:`natively supported by SQLite " -"` are looked up to be converted to Python types, using the " -"converters registered with :func:`register_converter`. Set it to any " -"combination (using ``|``, bitwise or) of :const:`PARSE_DECLTYPES` " -"and :const:`PARSE_COLNAMES` to enable this. Column names take precedence " -"over declared types if both flags are set. By default (``0``), type " -"detection is disabled." +msgid "Control whether and how data types not :ref:`natively supported by SQLite ` are looked up to be converted to Python types, using the converters registered with :func:`register_converter`. Set it to any combination (using ``|``, bitwise or) of :const:`PARSE_DECLTYPES` and :const:`PARSE_COLNAMES` to enable this. Column names take precedence over declared types if both flags are set. By default (``0``), type detection is disabled." msgstr "" -#: ../../library/sqlite3.rst:297 -msgid "" -"Control legacy transaction handling behaviour. " -"See :attr:`Connection.isolation_level` and :ref:`sqlite3-transaction-control-" -"isolation-level` for more information. Can be ``\"DEFERRED\"`` (default), " -"``\"EXCLUSIVE\"`` or ``\"IMMEDIATE\"``; or ``None`` to disable opening " -"transactions implicitly. Has no effect unless :attr:`Connection.autocommit` " -"is set to :const:`~sqlite3.LEGACY_TRANSACTION_CONTROL` (the default)." +msgid "Control legacy transaction handling behaviour. See :attr:`Connection.isolation_level` and :ref:`sqlite3-transaction-control-isolation-level` for more information. Can be ``\"DEFERRED\"`` (default), ``\"EXCLUSIVE\"`` or ``\"IMMEDIATE\"``; or ``None`` to disable opening transactions implicitly. Has no effect unless :attr:`Connection.autocommit` is set to :const:`~sqlite3.LEGACY_TRANSACTION_CONTROL` (the default)." msgstr "" -#: ../../library/sqlite3.rst:307 -msgid "" -"If ``True`` (default), :exc:`ProgrammingError` will be raised if the " -"database connection is used by a thread other than the one that created it. " -"If ``False``, the connection may be accessed in multiple threads; write " -"operations may need to be serialized by the user to avoid data corruption. " -"See :attr:`threadsafety` for more information." +msgid "If ``True`` (default), :exc:`ProgrammingError` will be raised if the database connection is used by a thread other than the one that created it. If ``False``, the connection may be accessed in multiple threads; write operations may need to be serialized by the user to avoid data corruption. See :attr:`threadsafety` for more information." msgstr "" -#: ../../library/sqlite3.rst:316 -msgid "" -"A custom subclass of :class:`Connection` to create the connection with, if " -"not the default :class:`Connection` class." +msgid "A custom subclass of :class:`Connection` to create the connection with, if not the default :class:`Connection` class." msgstr "" -#: ../../library/sqlite3.rst:320 -msgid "" -"The number of statements that :mod:`!sqlite3` should internally cache for " -"this connection, to avoid parsing overhead. By default, 128 statements." +msgid "The number of statements that :mod:`!sqlite3` should internally cache for this connection, to avoid parsing overhead. By default, 128 statements." msgstr "" -#: ../../library/sqlite3.rst:325 -msgid "" -"If set to ``True``, *database* is interpreted as a :abbr:`URI (Uniform " -"Resource Identifier)` with a file path and an optional query string. The " -"scheme part *must* be ``\"file:\"``, and the path can be relative or " -"absolute. The query string allows passing parameters to SQLite, enabling " -"various :ref:`sqlite3-uri-tricks`." +msgid "If set to ``True``, *database* is interpreted as a :abbr:`URI (Uniform Resource Identifier)` with a file path and an optional query string. The scheme part *must* be ``\"file:\"``, and the path can be relative or absolute. The query string allows passing parameters to SQLite, enabling various :ref:`sqlite3-uri-tricks`." msgstr "" -#: ../../library/sqlite3.rst:334 -msgid "" -"Control :pep:`249` transaction handling behaviour. " -"See :attr:`Connection.autocommit` and :ref:`sqlite3-transaction-control-" -"autocommit` for more information. *autocommit* currently defaults " -"to :const:`~sqlite3.LEGACY_TRANSACTION_CONTROL`. The default will change to " -"``False`` in a future Python release." +msgid "Control :pep:`249` transaction handling behaviour. See :attr:`Connection.autocommit` and :ref:`sqlite3-transaction-control-autocommit` for more information. *autocommit* currently defaults to :const:`~sqlite3.LEGACY_TRANSACTION_CONTROL`. The default will change to ``False`` in a future Python release." msgstr "" -#: ../../library/sqlite3.rst:0 msgid "Return type" msgstr "" -#: ../../library/sqlite3.rst:345 -msgid "" -"Raises an :ref:`auditing event ` ``sqlite3.connect`` with argument " -"``database``." +msgid "Raises an :ref:`auditing event ` ``sqlite3.connect`` with argument ``database``." msgstr "" -#: ../../library/sqlite3.rst:346 -msgid "" -"Raises an :ref:`auditing event ` ``sqlite3.connect/handle`` with " -"argument ``connection_handle``." +msgid "Raises an :ref:`auditing event ` ``sqlite3.connect/handle`` with argument ``connection_handle``." msgstr "" -#: ../../library/sqlite3.rst:348 msgid "Added the *uri* parameter." msgstr "" -#: ../../library/sqlite3.rst:351 -msgid "" -"*database* can now also be a :term:`path-like object`, not only a string." +msgid "*database* can now also be a :term:`path-like object`, not only a string." msgstr "" -#: ../../library/sqlite3.rst:354 msgid "Added the ``sqlite3.connect/handle`` auditing event." msgstr "" -#: ../../library/sqlite3.rst:357 msgid "Added the *autocommit* parameter." msgstr "" -#: ../../library/sqlite3.rst:360 -msgid "" -"Positional use of the parameters *timeout*, *detect_types*, " -"*isolation_level*, *check_same_thread*, *factory*, *cached_statements*, and " -"*uri* is deprecated. They will become keyword-only parameters in Python 3.15." +msgid "Positional use of the parameters *timeout*, *detect_types*, *isolation_level*, *check_same_thread*, *factory*, *cached_statements*, and *uri* is deprecated. They will become keyword-only parameters in Python 3.15." msgstr "" -#: ../../library/sqlite3.rst:368 -msgid "" -"Return ``True`` if the string *statement* appears to contain one or more " -"complete SQL statements. No syntactic verification or parsing of any kind is " -"performed, other than checking that there are no unclosed string literals " -"and the statement is terminated by a semicolon." +msgid "Return ``True`` if the string *statement* appears to contain one or more complete SQL statements. No syntactic verification or parsing of any kind is performed, other than checking that there are no unclosed string literals and the statement is terminated by a semicolon." msgstr "" -#: ../../library/sqlite3.rst:374 msgid "For example:" msgstr "" -#: ../../library/sqlite3.rst:376 msgid "" ">>> sqlite3.complete_statement(\"SELECT foo FROM bar;\")\n" "True\n" @@ -503,80 +294,36 @@ msgid "" "False" msgstr "" -#: ../../library/sqlite3.rst:383 -msgid "" -"This function may be useful during command-line input to determine if the " -"entered text seems to form a complete SQL statement, or if additional input " -"is needed before calling :meth:`~Cursor.execute`." +msgid "This function may be useful during command-line input to determine if the entered text seems to form a complete SQL statement, or if additional input is needed before calling :meth:`~Cursor.execute`." msgstr "" -#: ../../library/sqlite3.rst:387 -msgid "" -"See :func:`!runsource` in :source:`Lib/sqlite3/__main__.py` for real-world " -"use." +msgid "See :func:`!runsource` in :source:`Lib/sqlite3/__main__.py` for real-world use." msgstr "" -#: ../../library/sqlite3.rst:392 -msgid "" -"Enable or disable callback tracebacks. By default you will not get any " -"tracebacks in user-defined functions, aggregates, converters, authorizer " -"callbacks etc. If you want to debug them, you can call this function with " -"*flag* set to ``True``. Afterwards, you will get tracebacks from callbacks " -"on :data:`sys.stderr`. Use ``False`` to disable the feature again." +msgid "Enable or disable callback tracebacks. By default you will not get any tracebacks in user-defined functions, aggregates, converters, authorizer callbacks etc. If you want to debug them, you can call this function with *flag* set to ``True``. Afterwards, you will get tracebacks from callbacks on :data:`sys.stderr`. Use ``False`` to disable the feature again." msgstr "" -#: ../../library/sqlite3.rst:401 -msgid "" -"Errors in user-defined function callbacks are logged as unraisable " -"exceptions. Use an :func:`unraisable hook handler ` for " -"introspection of the failed callback." +msgid "Errors in user-defined function callbacks are logged as unraisable exceptions. Use an :func:`unraisable hook handler ` for introspection of the failed callback." msgstr "" -#: ../../library/sqlite3.rst:407 -msgid "" -"Register an *adapter* :term:`callable` to adapt the Python type *type* into " -"an SQLite type. The adapter is called with a Python object of type *type* as " -"its sole argument, and must return a value of a :ref:`type that SQLite " -"natively understands `." +msgid "Register an *adapter* :term:`callable` to adapt the Python type *type* into an SQLite type. The adapter is called with a Python object of type *type* as its sole argument, and must return a value of a :ref:`type that SQLite natively understands `." msgstr "" -#: ../../library/sqlite3.rst:415 -msgid "" -"Register the *converter* :term:`callable` to convert SQLite objects of type " -"*typename* into a Python object of a specific type. The converter is invoked " -"for all SQLite values of type *typename*; it is passed a :class:`bytes` " -"object and should return an object of the desired Python type. Consult the " -"parameter *detect_types* of :func:`connect` for information regarding how " -"type detection works." +msgid "Register the *converter* :term:`callable` to convert SQLite objects of type *typename* into a Python object of a specific type. The converter is invoked for all SQLite values of type *typename*; it is passed a :class:`bytes` object and should return an object of the desired Python type. Consult the parameter *detect_types* of :func:`connect` for information regarding how type detection works." msgstr "" -#: ../../library/sqlite3.rst:423 -msgid "" -"Note: *typename* and the name of the type in your query are matched case-" -"insensitively." +msgid "Note: *typename* and the name of the type in your query are matched case-insensitively." msgstr "" -#: ../../library/sqlite3.rst:430 msgid "Module constants" msgstr "" -#: ../../library/sqlite3.rst:434 -msgid "" -"Set :attr:`~Connection.autocommit` to this constant to select old style (pre-" -"Python 3.12) transaction control behaviour. See :ref:`sqlite3-transaction-" -"control-isolation-level` for more information." +msgid "Set :attr:`~Connection.autocommit` to this constant to select old style (pre-Python 3.12) transaction control behaviour. See :ref:`sqlite3-transaction-control-isolation-level` for more information." msgstr "" -#: ../../library/sqlite3.rst:440 -msgid "" -"Pass this flag value to the *detect_types* parameter of :func:`connect` to " -"look up a converter function using the declared types for each column. The " -"types are declared when the database table is created. :mod:`!sqlite3` will " -"look up a converter function using the first word of the declared type as " -"the converter dictionary key. For example:" +msgid "Pass this flag value to the *detect_types* parameter of :func:`connect` to look up a converter function using the declared types for each column. The types are declared when the database table is created. :mod:`!sqlite3` will look up a converter function using the first word of the declared type as the converter dictionary key. For example:" msgstr "" -#: ../../library/sqlite3.rst:448 msgid "" "CREATE TABLE test(\n" " i integer primary key, ! will look up a converter named \"integer\"\n" @@ -585,362 +332,207 @@ msgid "" " )" msgstr "" -#: ../../library/sqlite3.rst:456 -msgid "" -"This flag may be combined with :const:`PARSE_COLNAMES` using the ``|`` " -"(bitwise or) operator." +msgid "This flag may be combined with :const:`PARSE_COLNAMES` using the ``|`` (bitwise or) operator." msgstr "" -#: ../../library/sqlite3.rst:461 -msgid "" -"Generated fields (for example ``MAX(p)``) are returned as :class:`str`. " -"Use :const:`!PARSE_COLNAMES` to enforce types for such queries." +msgid "Generated fields (for example ``MAX(p)``) are returned as :class:`str`. Use :const:`!PARSE_COLNAMES` to enforce types for such queries." msgstr "" -#: ../../library/sqlite3.rst:466 -msgid "" -"Pass this flag value to the *detect_types* parameter of :func:`connect` to " -"look up a converter function by using the type name, parsed from the query " -"column name, as the converter dictionary key. The query column name must be " -"wrapped in double quotes (``\"``) and the type name must be wrapped in " -"square brackets (``[]``)." +msgid "Pass this flag value to the *detect_types* parameter of :func:`connect` to look up a converter function by using the type name, parsed from the query column name, as the converter dictionary key. The query column name must be wrapped in double quotes (``\"``) and the type name must be wrapped in square brackets (``[]``)." msgstr "" -#: ../../library/sqlite3.rst:473 -msgid "" -"SELECT MAX(p) as \"p [point]\" FROM test; ! will look up converter \"point\"" +msgid "SELECT MAX(p) as \"p [point]\" FROM test; ! will look up converter \"point\"" msgstr "" -#: ../../library/sqlite3.rst:477 -msgid "" -"This flag may be combined with :const:`PARSE_DECLTYPES` using the ``|`` " -"(bitwise or) operator." +msgid "This flag may be combined with :const:`PARSE_DECLTYPES` using the ``|`` (bitwise or) operator." msgstr "" -#: ../../library/sqlite3.rst:484 -msgid "" -"Flags that should be returned by the *authorizer_callback* :term:`callable` " -"passed to :meth:`Connection.set_authorizer`, to indicate whether:" +msgid "Flags that should be returned by the *authorizer_callback* :term:`callable` passed to :meth:`Connection.set_authorizer`, to indicate whether:" msgstr "" -#: ../../library/sqlite3.rst:487 msgid "Access is allowed (:const:`!SQLITE_OK`)," msgstr "" -#: ../../library/sqlite3.rst:488 -msgid "" -"The SQL statement should be aborted with an error (:const:`!SQLITE_DENY`)" +msgid "The SQL statement should be aborted with an error (:const:`!SQLITE_DENY`)" msgstr "" -#: ../../library/sqlite3.rst:489 -msgid "" -"The column should be treated as a ``NULL`` value (:const:`!SQLITE_IGNORE`)" +msgid "The column should be treated as a ``NULL`` value (:const:`!SQLITE_IGNORE`)" msgstr "" -#: ../../library/sqlite3.rst:493 -msgid "" -"String constant stating the supported DB-API level. Required by the DB-API. " -"Hard-coded to ``\"2.0\"``." +msgid "String constant stating the supported DB-API level. Required by the DB-API. Hard-coded to ``\"2.0\"``." msgstr "" -#: ../../library/sqlite3.rst:498 -msgid "" -"String constant stating the type of parameter marker formatting expected by " -"the :mod:`!sqlite3` module. Required by the DB-API. Hard-coded to " -"``\"qmark\"``." +msgid "String constant stating the type of parameter marker formatting expected by the :mod:`!sqlite3` module. Required by the DB-API. Hard-coded to ``\"qmark\"``." msgstr "" -#: ../../library/sqlite3.rst:504 msgid "The ``named`` DB-API parameter style is also supported." msgstr "" -#: ../../library/sqlite3.rst:508 -msgid "" -"Version number of the runtime SQLite library as a :class:`string `." +msgid "Version number of the runtime SQLite library as a :class:`string `." msgstr "" -#: ../../library/sqlite3.rst:512 -msgid "" -"Version number of the runtime SQLite library as a :class:`tuple` " -"of :class:`integers `." +msgid "Version number of the runtime SQLite library as a :class:`tuple` of :class:`integers `." msgstr "" -#: ../../library/sqlite3.rst:517 -msgid "" -"Integer constant required by the DB-API 2.0, stating the level of thread " -"safety the :mod:`!sqlite3` module supports. This attribute is set based on " -"the default `threading mode `_ the " -"underlying SQLite library is compiled with. The SQLite threading modes are:" +msgid "Integer constant required by the DB-API 2.0, stating the level of thread safety the :mod:`!sqlite3` module supports. This attribute is set based on the default `threading mode `_ the underlying SQLite library is compiled with. The SQLite threading modes are:" msgstr "" -#: ../../library/sqlite3.rst:522 -msgid "" -"**Single-thread**: In this mode, all mutexes are disabled and SQLite is " -"unsafe to use in more than a single thread at once." +msgid "**Single-thread**: In this mode, all mutexes are disabled and SQLite is unsafe to use in more than a single thread at once." msgstr "" -#: ../../library/sqlite3.rst:524 -msgid "" -"**Multi-thread**: In this mode, SQLite can be safely used by multiple " -"threads provided that no single database connection is used simultaneously " -"in two or more threads." +msgid "**Multi-thread**: In this mode, SQLite can be safely used by multiple threads provided that no single database connection is used simultaneously in two or more threads." msgstr "" -#: ../../library/sqlite3.rst:527 -msgid "" -"**Serialized**: In serialized mode, SQLite can be safely used by multiple " -"threads with no restriction." +msgid "**Serialized**: In serialized mode, SQLite can be safely used by multiple threads with no restriction." msgstr "" -#: ../../library/sqlite3.rst:530 -msgid "" -"The mappings from SQLite threading modes to DB-API 2.0 threadsafety levels " -"are as follows:" +msgid "The mappings from SQLite threading modes to DB-API 2.0 threadsafety levels are as follows:" msgstr "" -#: ../../library/sqlite3.rst:534 msgid "SQLite threading mode" msgstr "" -#: ../../library/sqlite3.rst:534 msgid ":pep:`threadsafety <0249#threadsafety>`" msgstr "" -#: ../../library/sqlite3.rst:534 msgid "`SQLITE_THREADSAFE`_" msgstr "" -#: ../../library/sqlite3.rst:534 msgid "DB-API 2.0 meaning" msgstr "" -#: ../../library/sqlite3.rst:537 msgid "single-thread" msgstr "" -#: ../../library/sqlite3.rst:537 msgid "0" msgstr "" -#: ../../library/sqlite3.rst:537 msgid "Threads may not share the module" msgstr "" -#: ../../library/sqlite3.rst:540 msgid "multi-thread" msgstr "" -#: ../../library/sqlite3.rst:540 ../../library/sqlite3.rst:543 msgid "1" msgstr "" -#: ../../library/sqlite3.rst:540 msgid "2" msgstr "" -#: ../../library/sqlite3.rst:540 msgid "Threads may share the module, but not connections" msgstr "" -#: ../../library/sqlite3.rst:543 msgid "serialized" msgstr "" -#: ../../library/sqlite3.rst:543 msgid "3" msgstr "" -#: ../../library/sqlite3.rst:543 msgid "Threads may share the module, connections and cursors" msgstr "" -#: ../../library/sqlite3.rst:549 msgid "Set *threadsafety* dynamically instead of hard-coding it to ``1``." msgstr "" -#: ../../library/sqlite3.rst:571 -msgid "" -"These constants are used for the :meth:`Connection.setconfig` " -"and :meth:`~Connection.getconfig` methods." +msgid "These constants are used for the :meth:`Connection.setconfig` and :meth:`~Connection.getconfig` methods." msgstr "" -#: ../../library/sqlite3.rst:574 -msgid "" -"The availability of these constants varies depending on the version of " -"SQLite Python was compiled with." +msgid "The availability of these constants varies depending on the version of SQLite Python was compiled with." msgstr "" -#: ../../library/sqlite3.rst:581 msgid "https://www.sqlite.org/c3ref/c_dbconfig_defensive.html" msgstr "" -#: ../../library/sqlite3.rst:582 msgid "SQLite docs: Database Connection Configuration Options" msgstr "" -#: ../../library/sqlite3.rst:584 msgid "The :data:`!version` and :data:`!version_info` constants." msgstr "" -#: ../../library/sqlite3.rst:590 msgid "Connection objects" msgstr "" -#: ../../library/sqlite3.rst:594 -msgid "" -"Each open SQLite database is represented by a ``Connection`` object, which " -"is created using :func:`sqlite3.connect`. Their main purpose is " -"creating :class:`Cursor` objects, and :ref:`sqlite3-controlling-" -"transactions`." +msgid "Each open SQLite database is represented by a ``Connection`` object, which is created using :func:`sqlite3.connect`. Their main purpose is creating :class:`Cursor` objects, and :ref:`sqlite3-controlling-transactions`." msgstr "" -#: ../../library/sqlite3.rst:601 msgid ":ref:`sqlite3-connection-shortcuts`" msgstr "" -#: ../../library/sqlite3.rst:607 -msgid "" -"A :exc:`ResourceWarning` is emitted if :meth:`close` is not called before " -"a :class:`!Connection` object is deleted." +msgid "A :exc:`ResourceWarning` is emitted if :meth:`close` is not called before a :class:`!Connection` object is deleted." msgstr "" -#: ../../library/sqlite3.rst:610 msgid "An SQLite database connection has the following attributes and methods:" msgstr "" -#: ../../library/sqlite3.rst:614 -msgid "" -"Create and return a :class:`Cursor` object. The cursor method accepts a " -"single optional parameter *factory*. If supplied, this must be " -"a :term:`callable` returning an instance of :class:`Cursor` or its " -"subclasses." +msgid "Create and return a :class:`Cursor` object. The cursor method accepts a single optional parameter *factory*. If supplied, this must be a :term:`callable` returning an instance of :class:`Cursor` or its subclasses." msgstr "" -#: ../../library/sqlite3.rst:621 -msgid "" -"Open a :class:`Blob` handle to an existing :abbr:`BLOB (Binary Large " -"OBject)`." +msgid "Open a :class:`Blob` handle to an existing :abbr:`BLOB (Binary Large OBject)`." msgstr "" -#: ../../library/sqlite3.rst:624 msgid "The name of the table where the blob is located." msgstr "" -#: ../../library/sqlite3.rst:627 msgid "The name of the column where the blob is located." msgstr "" -#: ../../library/sqlite3.rst:630 msgid "The row id where the blob is located." msgstr "" -#: ../../library/sqlite3.rst:633 -msgid "" -"Set to ``True`` if the blob should be opened without write permissions. " -"Defaults to ``False``." +msgid "Set to ``True`` if the blob should be opened without write permissions. Defaults to ``False``." msgstr "" -#: ../../library/sqlite3.rst:638 -msgid "" -"The name of the database where the blob is located. Defaults to ``\"main\"``." +msgid "The name of the database where the blob is located. Defaults to ``\"main\"``." msgstr "" -#: ../../library/sqlite3.rst:0 msgid "Raises" msgstr "" -#: ../../library/sqlite3.rst:642 msgid "When trying to open a blob in a ``WITHOUT ROWID`` table." msgstr "" -#: ../../library/sqlite3.rst:649 -msgid "" -"The blob size cannot be changed using the :class:`Blob` class. Use the SQL " -"function ``zeroblob`` to create a blob with a fixed size." +msgid "The blob size cannot be changed using the :class:`Blob` class. Use the SQL function ``zeroblob`` to create a blob with a fixed size." msgstr "" -#: ../../library/sqlite3.rst:656 -msgid "" -"Commit any pending transaction to the database. If :attr:`autocommit` is " -"``True``, or there is no open transaction, this method does nothing. " -"If :attr:`!autocommit` is ``False``, a new transaction is implicitly opened " -"if a pending transaction was committed by this method." +msgid "Commit any pending transaction to the database. If :attr:`autocommit` is ``True``, or there is no open transaction, this method does nothing. If :attr:`!autocommit` is ``False``, a new transaction is implicitly opened if a pending transaction was committed by this method." msgstr "" -#: ../../library/sqlite3.rst:664 -msgid "" -"Roll back to the start of any pending transaction. If :attr:`autocommit` is " -"``True``, or there is no open transaction, this method does nothing. " -"If :attr:`!autocommit` is ``False``, a new transaction is implicitly opened " -"if a pending transaction was rolled back by this method." +msgid "Roll back to the start of any pending transaction. If :attr:`autocommit` is ``True``, or there is no open transaction, this method does nothing. If :attr:`!autocommit` is ``False``, a new transaction is implicitly opened if a pending transaction was rolled back by this method." msgstr "" -#: ../../library/sqlite3.rst:672 -msgid "" -"Close the database connection. If :attr:`autocommit` is ``False``, any " -"pending transaction is implicitly rolled back. If :attr:`!autocommit` is " -"``True`` or :data:`LEGACY_TRANSACTION_CONTROL`, no implicit transaction " -"control is executed. Make sure to :meth:`commit` before closing to avoid " -"losing pending changes." +msgid "Close the database connection. If :attr:`autocommit` is ``False``, any pending transaction is implicitly rolled back. If :attr:`!autocommit` is ``True`` or :data:`LEGACY_TRANSACTION_CONTROL`, no implicit transaction control is executed. Make sure to :meth:`commit` before closing to avoid losing pending changes." msgstr "" -#: ../../library/sqlite3.rst:682 -msgid "" -"Create a new :class:`Cursor` object and call :meth:`~Cursor.execute` on it " -"with the given *sql* and *parameters*. Return the new cursor object." +msgid "Create a new :class:`Cursor` object and call :meth:`~Cursor.execute` on it with the given *sql* and *parameters*. Return the new cursor object." msgstr "" -#: ../../library/sqlite3.rst:688 -msgid "" -"Create a new :class:`Cursor` object and call :meth:`~Cursor.executemany` on " -"it with the given *sql* and *parameters*. Return the new cursor object." +msgid "Create a new :class:`Cursor` object and call :meth:`~Cursor.executemany` on it with the given *sql* and *parameters*. Return the new cursor object." msgstr "" -#: ../../library/sqlite3.rst:694 -msgid "" -"Create a new :class:`Cursor` object and call :meth:`~Cursor.executescript` " -"on it with the given *sql_script*. Return the new cursor object." +msgid "Create a new :class:`Cursor` object and call :meth:`~Cursor.executescript` on it with the given *sql_script*. Return the new cursor object." msgstr "" -#: ../../library/sqlite3.rst:700 msgid "Create or remove a user-defined SQL function." msgstr "" -#: ../../library/sqlite3.rst:702 msgid "The name of the SQL function." msgstr "" -#: ../../library/sqlite3.rst:705 -msgid "" -"The number of arguments the SQL function can accept. If ``-1``, it may take " -"any number of arguments." +msgid "The number of arguments the SQL function can accept. If ``-1``, it may take any number of arguments." msgstr "" -#: ../../library/sqlite3.rst:709 -msgid "" -"A :term:`callable` that is called when the SQL function is invoked. The " -"callable must return :ref:`a type natively supported by SQLite `. Set to ``None`` to remove an existing SQL function." +msgid "A :term:`callable` that is called when the SQL function is invoked. The callable must return :ref:`a type natively supported by SQLite `. Set to ``None`` to remove an existing SQL function." msgstr "" -#: ../../library/sqlite3.rst:716 -msgid "" -"If ``True``, the created SQL function is marked as `deterministic `_, which allows SQLite to perform additional " -"optimizations." +msgid "If ``True``, the created SQL function is marked as `deterministic `_, which allows SQLite to perform additional optimizations." msgstr "" -#: ../../library/sqlite3.rst:721 msgid "Added the *deterministic* parameter." msgstr "" -#: ../../library/sqlite3.rst:724 ../../library/sqlite3.rst:768 -#: ../../library/sqlite3.rst:836 ../../library/sqlite3.rst:1115 -#: ../../library/sqlite3.rst:1545 ../../library/sqlite3.rst:1586 msgid "Example:" msgstr "" -#: ../../library/sqlite3.rst:726 msgid "" ">>> import hashlib\n" ">>> def md5sum(t):\n" @@ -953,60 +545,36 @@ msgid "" ">>> con.close()" msgstr "" -#: ../../library/sqlite3.rst:740 -msgid "" -"Passing *name*, *narg*, and *func* as keyword arguments is deprecated. These " -"parameters will become positional-only in Python 3.15." +msgid "Passing *name*, *narg*, and *func* as keyword arguments is deprecated. These parameters will become positional-only in Python 3.15." msgstr "" -#: ../../library/sqlite3.rst:746 msgid "Create or remove a user-defined SQL aggregate function." msgstr "" -#: ../../library/sqlite3.rst:748 msgid "The name of the SQL aggregate function." msgstr "" -#: ../../library/sqlite3.rst:751 -msgid "" -"The number of arguments the SQL aggregate function can accept. If ``-1``, it " -"may take any number of arguments." +msgid "The number of arguments the SQL aggregate function can accept. If ``-1``, it may take any number of arguments." msgstr "" -#: ../../library/sqlite3.rst:755 -msgid "" -"A class must implement the following methods: * ``step()``: Add a row to " -"the aggregate. * ``finalize()``: Return the final result of the aggregate " -"as :ref:`a type natively supported by SQLite `. The number " -"of arguments that the ``step()`` method must accept is controlled by " -"*n_arg*. Set to ``None`` to remove an existing SQL aggregate function." +msgid "A class must implement the following methods: * ``step()``: Add a row to the aggregate. * ``finalize()``: Return the final result of the aggregate as :ref:`a type natively supported by SQLite `. The number of arguments that the ``step()`` method must accept is controlled by *n_arg*. Set to ``None`` to remove an existing SQL aggregate function." msgstr "" -#: ../../library/sqlite3.rst:756 msgid "A class must implement the following methods:" msgstr "" -#: ../../library/sqlite3.rst:758 msgid "``step()``: Add a row to the aggregate." msgstr "" -#: ../../library/sqlite3.rst:759 ../../library/sqlite3.rst:820 -msgid "" -"``finalize()``: Return the final result of the aggregate as :ref:`a type " -"natively supported by SQLite `." +msgid "``finalize()``: Return the final result of the aggregate as :ref:`a type natively supported by SQLite `." msgstr "" -#: ../../library/sqlite3.rst:762 -msgid "" -"The number of arguments that the ``step()`` method must accept is controlled " -"by *n_arg*." +msgid "The number of arguments that the ``step()`` method must accept is controlled by *n_arg*." msgstr "" -#: ../../library/sqlite3.rst:765 msgid "Set to ``None`` to remove an existing SQL aggregate function." msgstr "" -#: ../../library/sqlite3.rst:770 msgid "" "class MySum:\n" " def __init__(self):\n" @@ -1029,71 +597,42 @@ msgid "" "con.close()" msgstr "" -#: ../../library/sqlite3.rst:799 -msgid "" -"Passing *name*, *n_arg*, and *aggregate_class* as keyword arguments is " -"deprecated. These parameters will become positional-only in Python 3.15." +msgid "Passing *name*, *n_arg*, and *aggregate_class* as keyword arguments is deprecated. These parameters will become positional-only in Python 3.15." msgstr "" -#: ../../library/sqlite3.rst:805 msgid "Create or remove a user-defined aggregate window function." msgstr "" -#: ../../library/sqlite3.rst:807 msgid "The name of the SQL aggregate window function to create or remove." msgstr "" -#: ../../library/sqlite3.rst:810 -msgid "" -"The number of arguments the SQL aggregate window function can accept. If " -"``-1``, it may take any number of arguments." +msgid "The number of arguments the SQL aggregate window function can accept. If ``-1``, it may take any number of arguments." msgstr "" -#: ../../library/sqlite3.rst:814 -msgid "" -"A class that must implement the following methods: * ``step()``: Add a row " -"to the current window. * ``value()``: Return the current value of the " -"aggregate. * ``inverse()``: Remove a row from the current window. * " -"``finalize()``: Return the final result of the aggregate as :ref:`a type " -"natively supported by SQLite `. The number of arguments that " -"the ``step()`` and ``value()`` methods must accept is controlled by " -"*num_params*. Set to ``None`` to remove an existing SQL aggregate window " -"function." +msgid "A class that must implement the following methods: * ``step()``: Add a row to the current window. * ``value()``: Return the current value of the aggregate. * ``inverse()``: Remove a row from the current window. * ``finalize()``: Return the final result of the aggregate as :ref:`a type natively supported by SQLite `. The number of arguments that the ``step()`` and ``value()`` methods must accept is controlled by *num_params*. Set to ``None`` to remove an existing SQL aggregate window function." msgstr "" -#: ../../library/sqlite3.rst:815 msgid "A class that must implement the following methods:" msgstr "" -#: ../../library/sqlite3.rst:817 msgid "``step()``: Add a row to the current window." msgstr "" -#: ../../library/sqlite3.rst:818 msgid "``value()``: Return the current value of the aggregate." msgstr "" -#: ../../library/sqlite3.rst:819 msgid "``inverse()``: Remove a row from the current window." msgstr "" -#: ../../library/sqlite3.rst:823 -msgid "" -"The number of arguments that the ``step()`` and ``value()`` methods must " -"accept is controlled by *num_params*." +msgid "The number of arguments that the ``step()`` and ``value()`` methods must accept is controlled by *num_params*." msgstr "" -#: ../../library/sqlite3.rst:826 msgid "Set to ``None`` to remove an existing SQL aggregate window function." msgstr "" -#: ../../library/sqlite3.rst:828 -msgid "" -"If used with a version of SQLite older than 3.25.0, which does not support " -"aggregate window functions." +msgid "If used with a version of SQLite older than 3.25.0, which does not support aggregate window functions." msgstr "" -#: ../../library/sqlite3.rst:838 msgid "" "# Example taken from https://www.sqlite.org/windowfunctions.html#udfwinfunc\n" "class WindowSumInt:\n" @@ -1141,30 +680,21 @@ msgid "" "con.close()" msgstr "" -#: ../../library/sqlite3.rst:892 -msgid "" -"Create a collation named *name* using the collating function *callable*. " -"*callable* is passed two :class:`string ` arguments, and it should " -"return an :class:`integer `:" +msgid "Create a collation named *name* using the collating function *callable*. *callable* is passed two :class:`string ` arguments, and it should return an :class:`integer `:" msgstr "" -#: ../../library/sqlite3.rst:896 msgid "``1`` if the first is ordered higher than the second" msgstr "" -#: ../../library/sqlite3.rst:897 msgid "``-1`` if the first is ordered lower than the second" msgstr "" -#: ../../library/sqlite3.rst:898 msgid "``0`` if they are ordered equal" msgstr "" -#: ../../library/sqlite3.rst:900 msgid "The following example shows a reverse sorting collation:" msgstr "" -#: ../../library/sqlite3.rst:902 msgid "" "def collate_reverse(string1, string2):\n" " if string1 == string2:\n" @@ -1185,154 +715,72 @@ msgid "" "con.close()" msgstr "" -#: ../../library/sqlite3.rst:928 msgid "Remove a collation function by setting *callable* to ``None``." msgstr "" -#: ../../library/sqlite3.rst:930 -msgid "" -"The collation name can contain any Unicode character. Earlier, only ASCII " -"characters were allowed." +msgid "The collation name can contain any Unicode character. Earlier, only ASCII characters were allowed." msgstr "" -#: ../../library/sqlite3.rst:937 -msgid "" -"Call this method from a different thread to abort any queries that might be " -"executing on the connection. Aborted queries will raise " -"an :exc:`OperationalError`." +msgid "Call this method from a different thread to abort any queries that might be executing on the connection. Aborted queries will raise an :exc:`OperationalError`." msgstr "" -#: ../../library/sqlite3.rst:944 -msgid "" -"Register :term:`callable` *authorizer_callback* to be invoked for each " -"attempt to access a column of a table in the database. The callback should " -"return one of :const:`SQLITE_OK`, :const:`SQLITE_DENY`, " -"or :const:`SQLITE_IGNORE` to signal how access to the column should be " -"handled by the underlying SQLite library." +msgid "Register :term:`callable` *authorizer_callback* to be invoked for each attempt to access a column of a table in the database. The callback should return one of :const:`SQLITE_OK`, :const:`SQLITE_DENY`, or :const:`SQLITE_IGNORE` to signal how access to the column should be handled by the underlying SQLite library." msgstr "" -#: ../../library/sqlite3.rst:951 -msgid "" -"The first argument to the callback signifies what kind of operation is to be " -"authorized. The second and third argument will be arguments or ``None`` " -"depending on the first argument. The 4th argument is the name of the " -"database (\"main\", \"temp\", etc.) if applicable. The 5th argument is the " -"name of the inner-most trigger or view that is responsible for the access " -"attempt or ``None`` if this access attempt is directly from input SQL code." +msgid "The first argument to the callback signifies what kind of operation is to be authorized. The second and third argument will be arguments or ``None`` depending on the first argument. The 4th argument is the name of the database (\"main\", \"temp\", etc.) if applicable. The 5th argument is the name of the inner-most trigger or view that is responsible for the access attempt or ``None`` if this access attempt is directly from input SQL code." msgstr "" -#: ../../library/sqlite3.rst:958 -msgid "" -"Please consult the SQLite documentation about the possible values for the " -"first argument and the meaning of the second and third argument depending on " -"the first one. All necessary constants are available in the :mod:`!sqlite3` " -"module." +msgid "Please consult the SQLite documentation about the possible values for the first argument and the meaning of the second and third argument depending on the first one. All necessary constants are available in the :mod:`!sqlite3` module." msgstr "" -#: ../../library/sqlite3.rst:962 msgid "Passing ``None`` as *authorizer_callback* will disable the authorizer." msgstr "" -#: ../../library/sqlite3.rst:964 msgid "Added support for disabling the authorizer using ``None``." msgstr "" -#: ../../library/sqlite3.rst:967 -msgid "" -"Passing *authorizer_callback* as a keyword argument is deprecated. The " -"parameter will become positional-only in Python 3.15." +msgid "Passing *authorizer_callback* as a keyword argument is deprecated. The parameter will become positional-only in Python 3.15." msgstr "" -#: ../../library/sqlite3.rst:974 -msgid "" -"Register :term:`callable` *progress_handler* to be invoked for every *n* " -"instructions of the SQLite virtual machine. This is useful if you want to " -"get called from SQLite during long-running operations, for example to update " -"a GUI." +msgid "Register :term:`callable` *progress_handler* to be invoked for every *n* instructions of the SQLite virtual machine. This is useful if you want to get called from SQLite during long-running operations, for example to update a GUI." msgstr "" -#: ../../library/sqlite3.rst:979 -msgid "" -"If you want to clear any previously installed progress handler, call the " -"method with ``None`` for *progress_handler*." +msgid "If you want to clear any previously installed progress handler, call the method with ``None`` for *progress_handler*." msgstr "" -#: ../../library/sqlite3.rst:982 -msgid "" -"Returning a non-zero value from the handler function will terminate the " -"currently executing query and cause it to raise a :exc:`DatabaseError` " -"exception." +msgid "Returning a non-zero value from the handler function will terminate the currently executing query and cause it to raise a :exc:`DatabaseError` exception." msgstr "" -#: ../../library/sqlite3.rst:986 -msgid "" -"Passing *progress_handler* as a keyword argument is deprecated. The " -"parameter will become positional-only in Python 3.15." +msgid "Passing *progress_handler* as a keyword argument is deprecated. The parameter will become positional-only in Python 3.15." msgstr "" -#: ../../library/sqlite3.rst:993 -msgid "" -"Register :term:`callable` *trace_callback* to be invoked for each SQL " -"statement that is actually executed by the SQLite backend." +msgid "Register :term:`callable` *trace_callback* to be invoked for each SQL statement that is actually executed by the SQLite backend." msgstr "" -#: ../../library/sqlite3.rst:996 -msgid "" -"The only argument passed to the callback is the statement (as :class:`str`) " -"that is being executed. The return value of the callback is ignored. Note " -"that the backend does not only run statements passed to " -"the :meth:`Cursor.execute` methods. Other sources include " -"the :ref:`transaction management ` of " -"the :mod:`!sqlite3` module and the execution of triggers defined in the " -"current database." +msgid "The only argument passed to the callback is the statement (as :class:`str`) that is being executed. The return value of the callback is ignored. Note that the backend does not only run statements passed to the :meth:`Cursor.execute` methods. Other sources include the :ref:`transaction management ` of the :mod:`!sqlite3` module and the execution of triggers defined in the current database." msgstr "" -#: ../../library/sqlite3.rst:1004 msgid "Passing ``None`` as *trace_callback* will disable the trace callback." msgstr "" -#: ../../library/sqlite3.rst:1007 -msgid "" -"Exceptions raised in the trace callback are not propagated. As a development " -"and debugging aid, use :meth:`~sqlite3.enable_callback_tracebacks` to enable " -"printing tracebacks from exceptions raised in the trace callback." +msgid "Exceptions raised in the trace callback are not propagated. As a development and debugging aid, use :meth:`~sqlite3.enable_callback_tracebacks` to enable printing tracebacks from exceptions raised in the trace callback." msgstr "" -#: ../../library/sqlite3.rst:1014 -msgid "" -"Passing *trace_callback* as a keyword argument is deprecated. The parameter " -"will become positional-only in Python 3.15." +msgid "Passing *trace_callback* as a keyword argument is deprecated. The parameter will become positional-only in Python 3.15." msgstr "" -#: ../../library/sqlite3.rst:1021 -msgid "" -"Enable the SQLite engine to load SQLite extensions from shared libraries if " -"*enabled* is ``True``; else, disallow loading SQLite extensions. SQLite " -"extensions can define new functions, aggregates or whole new virtual table " -"implementations. One well-known extension is the fulltext-search extension " -"distributed with SQLite." +msgid "Enable the SQLite engine to load SQLite extensions from shared libraries if *enabled* is ``True``; else, disallow loading SQLite extensions. SQLite extensions can define new functions, aggregates or whole new virtual table implementations. One well-known extension is the fulltext-search extension distributed with SQLite." msgstr "" -#: ../../library/sqlite3.rst:1030 -msgid "" -"The :mod:`!sqlite3` module is not built with loadable extension support by " -"default, because some platforms (notably macOS) have SQLite libraries which " -"are compiled without this feature. To get loadable extension support, you " -"must pass the :option:`--enable-loadable-sqlite-extensions` option " -"to :program:`configure`." +msgid "The :mod:`!sqlite3` module is not built with loadable extension support by default, because some platforms (notably macOS) have SQLite libraries which are compiled without this feature. To get loadable extension support, you must pass the :option:`--enable-loadable-sqlite-extensions` option to :program:`configure`." msgstr "" -#: ../../library/sqlite3.rst:1037 -msgid "" -"Raises an :ref:`auditing event ` ``sqlite3.enable_load_extension`` " -"with arguments ``connection``, ``enabled``." +msgid "Raises an :ref:`auditing event ` ``sqlite3.enable_load_extension`` with arguments ``connection``, ``enabled``." msgstr "" -#: ../../library/sqlite3.rst:1041 msgid "Added the ``sqlite3.enable_load_extension`` auditing event." msgstr "" -#: ../../library/sqlite3.rst:1047 msgid "" "con.enable_load_extension(True)\n" "\n" @@ -1348,66 +796,39 @@ msgid "" "# example from SQLite wiki\n" "con.execute(\"CREATE VIRTUAL TABLE recipe USING fts3(name, ingredients)\")\n" "con.executescript(\"\"\"\n" -" INSERT INTO recipe (name, ingredients) VALUES('broccoli stew', 'broccoli " -"peppers cheese tomatoes');\n" -" INSERT INTO recipe (name, ingredients) VALUES('pumpkin stew', 'pumpkin " -"onions garlic celery');\n" -" INSERT INTO recipe (name, ingredients) VALUES('broccoli pie', 'broccoli " -"cheese onions flour');\n" -" INSERT INTO recipe (name, ingredients) VALUES('pumpkin pie', 'pumpkin " -"sugar flour butter');\n" +" INSERT INTO recipe (name, ingredients) VALUES('broccoli stew', 'broccoli peppers cheese tomatoes');\n" +" INSERT INTO recipe (name, ingredients) VALUES('pumpkin stew', 'pumpkin onions garlic celery');\n" +" INSERT INTO recipe (name, ingredients) VALUES('broccoli pie', 'broccoli cheese onions flour');\n" +" INSERT INTO recipe (name, ingredients) VALUES('pumpkin pie', 'pumpkin sugar flour butter');\n" " \"\"\")\n" -"for row in con.execute(\"SELECT rowid, name, ingredients FROM recipe WHERE " -"name MATCH 'pie'\"):\n" +"for row in con.execute(\"SELECT rowid, name, ingredients FROM recipe WHERE name MATCH 'pie'\"):\n" " print(row)" msgstr "" -#: ../../library/sqlite3.rst:1073 -msgid "" -"Load an SQLite extension from a shared library. Enable extension loading " -"with :meth:`enable_load_extension` before calling this method." +msgid "Load an SQLite extension from a shared library. Enable extension loading with :meth:`enable_load_extension` before calling this method." msgstr "" -#: ../../library/sqlite3.rst:1077 msgid "The path to the SQLite extension." msgstr "" -#: ../../library/sqlite3.rst:1081 -msgid "" -"Entry point name. If ``None`` (the default), SQLite will come up with an " -"entry point name of its own; see the SQLite docs `Loading an Extension`_ for " -"details." +msgid "Entry point name. If ``None`` (the default), SQLite will come up with an entry point name of its own; see the SQLite docs `Loading an Extension`_ for details." msgstr "" -#: ../../library/sqlite3.rst:1090 -msgid "" -"Raises an :ref:`auditing event ` ``sqlite3.load_extension`` with " -"arguments ``connection``, ``path``." +msgid "Raises an :ref:`auditing event ` ``sqlite3.load_extension`` with arguments ``connection``, ``path``." msgstr "" -#: ../../library/sqlite3.rst:1094 msgid "Added the ``sqlite3.load_extension`` auditing event." msgstr "" -#: ../../library/sqlite3.rst:1097 msgid "Added the *entrypoint* parameter." msgstr "" -#: ../../library/sqlite3.rst:1104 -msgid "" -"Return an :term:`iterator` to dump the database as SQL source code. Useful " -"when saving an in-memory database for later restoration. Similar to the " -"``.dump`` command in the :program:`sqlite3` shell." +msgid "Return an :term:`iterator` to dump the database as SQL source code. Useful when saving an in-memory database for later restoration. Similar to the ``.dump`` command in the :program:`sqlite3` shell." msgstr "" -#: ../../library/sqlite3.rst:1108 -msgid "" -"An optional ``LIKE`` pattern for database objects to dump, e.g. " -"``prefix_%``. If ``None`` (the default), all database objects will be " -"included." +msgid "An optional ``LIKE`` pattern for database objects to dump, e.g. ``prefix_%``. If ``None`` (the default), all database objects will be included." msgstr "" -#: ../../library/sqlite3.rst:1117 msgid "" "# Convert file example.db to SQL dump file dump.sql\n" "con = sqlite3.connect('example.db')\n" @@ -1417,60 +838,36 @@ msgid "" "con.close()" msgstr "" -#: ../../library/sqlite3.rst:1128 ../../library/sqlite3.rst:1202 msgid ":ref:`sqlite3-howto-encoding`" msgstr "" -#: ../../library/sqlite3.rst:1130 msgid "Added the *filter* parameter." msgstr "" -#: ../../library/sqlite3.rst:1135 msgid "Create a backup of an SQLite database." msgstr "" -#: ../../library/sqlite3.rst:1137 -msgid "" -"Works even if the database is being accessed by other clients or " -"concurrently by the same connection." +msgid "Works even if the database is being accessed by other clients or concurrently by the same connection." msgstr "" -#: ../../library/sqlite3.rst:1140 msgid "The database connection to save the backup to." msgstr "" -#: ../../library/sqlite3.rst:1143 -msgid "" -"The number of pages to copy at a time. If equal to or less than ``0``, the " -"entire database is copied in a single step. Defaults to ``-1``." +msgid "The number of pages to copy at a time. If equal to or less than ``0``, the entire database is copied in a single step. Defaults to ``-1``." msgstr "" -#: ../../library/sqlite3.rst:1149 -msgid "" -"If set to a :term:`callable`, it is invoked with three integer arguments for " -"every backup iteration: the *status* of the last iteration, the *remaining* " -"number of pages still to be copied, and the *total* number of pages. " -"Defaults to ``None``." +msgid "If set to a :term:`callable`, it is invoked with three integer arguments for every backup iteration: the *status* of the last iteration, the *remaining* number of pages still to be copied, and the *total* number of pages. Defaults to ``None``." msgstr "" -#: ../../library/sqlite3.rst:1158 -msgid "" -"The name of the database to back up. Either ``\"main\"`` (the default) for " -"the main database, ``\"temp\"`` for the temporary database, or the name of a " -"custom database as attached using the ``ATTACH DATABASE`` SQL statement." +msgid "The name of the database to back up. Either ``\"main\"`` (the default) for the main database, ``\"temp\"`` for the temporary database, or the name of a custom database as attached using the ``ATTACH DATABASE`` SQL statement." msgstr "" -#: ../../library/sqlite3.rst:1165 -msgid "" -"The number of seconds to sleep between successive attempts to back up " -"remaining pages." +msgid "The number of seconds to sleep between successive attempts to back up remaining pages." msgstr "" -#: ../../library/sqlite3.rst:1169 msgid "Example 1, copy an existing database into another:" msgstr "" -#: ../../library/sqlite3.rst:1171 msgid "" "def progress(status, remaining, total):\n" " print(f'Copied {total-remaining} of {total} pages...')\n" @@ -1483,11 +880,9 @@ msgid "" "src.close()" msgstr "" -#: ../../library/sqlite3.rst:1188 msgid "Example 2, copy an existing database into a transient copy:" msgstr "" -#: ../../library/sqlite3.rst:1190 msgid "" "src = sqlite3.connect('example.db')\n" "dst = sqlite3.connect(':memory:')\n" @@ -1496,54 +891,35 @@ msgid "" "src.close()" msgstr "" -#: ../../library/sqlite3.rst:1206 msgid "Get a connection runtime limit." msgstr "" -#: ../../library/sqlite3.rst:1208 msgid "The `SQLite limit category`_ to be queried." msgstr "" -#: ../../library/sqlite3.rst:1213 ../../library/sqlite3.rst:1250 msgid "If *category* is not recognised by the underlying SQLite library." msgstr "" -#: ../../library/sqlite3.rst:1216 -msgid "" -"Example, query the maximum length of an SQL statement " -"for :class:`Connection` ``con`` (the default is 1000000000):" +msgid "Example, query the maximum length of an SQL statement for :class:`Connection` ``con`` (the default is 1000000000):" msgstr "" -#: ../../library/sqlite3.rst:1226 msgid "" ">>> con.getlimit(sqlite3.SQLITE_LIMIT_SQL_LENGTH)\n" "1000000000" msgstr "" -#: ../../library/sqlite3.rst:1236 -msgid "" -"Set a connection runtime limit. Attempts to increase a limit above its hard " -"upper bound are silently truncated to the hard upper bound. Regardless of " -"whether or not the limit was changed, the prior value of the limit is " -"returned." +msgid "Set a connection runtime limit. Attempts to increase a limit above its hard upper bound are silently truncated to the hard upper bound. Regardless of whether or not the limit was changed, the prior value of the limit is returned." msgstr "" -#: ../../library/sqlite3.rst:1241 msgid "The `SQLite limit category`_ to be set." msgstr "" -#: ../../library/sqlite3.rst:1244 -msgid "" -"The value of the new limit. If negative, the current limit is unchanged." +msgid "The value of the new limit. If negative, the current limit is unchanged." msgstr "" -#: ../../library/sqlite3.rst:1253 -msgid "" -"Example, limit the number of attached databases to 1 for :class:`Connection` " -"``con`` (the default limit is 10):" +msgid "Example, limit the number of attached databases to 1 for :class:`Connection` ``con`` (the default limit is 10):" msgstr "" -#: ../../library/sqlite3.rst:1256 msgid "" ">>> con.setlimit(sqlite3.SQLITE_LIMIT_ATTACHED, 1)\n" "10\n" @@ -1551,305 +927,164 @@ msgid "" "1" msgstr "" -#: ../../library/sqlite3.rst:1274 msgid "Query a boolean connection configuration option." msgstr "" -#: ../../library/sqlite3.rst:1276 ../../library/sqlite3.rst:1287 msgid "A :ref:`SQLITE_DBCONFIG code `." msgstr "" -#: ../../library/sqlite3.rst:1285 msgid "Set a boolean connection configuration option." msgstr "" -#: ../../library/sqlite3.rst:1290 -msgid "" -"``True`` if the configuration option should be enabled (default); ``False`` " -"if it should be disabled." +msgid "``True`` if the configuration option should be enabled (default); ``False`` if it should be disabled." msgstr "" -#: ../../library/sqlite3.rst:1298 -msgid "" -"Serialize a database into a :class:`bytes` object. For an ordinary on-disk " -"database file, the serialization is just a copy of the disk file. For an in-" -"memory database or a \"temp\" database, the serialization is the same " -"sequence of bytes which would be written to disk if that database were " -"backed up to disk." +msgid "Serialize a database into a :class:`bytes` object. For an ordinary on-disk database file, the serialization is just a copy of the disk file. For an in-memory database or a \"temp\" database, the serialization is the same sequence of bytes which would be written to disk if that database were backed up to disk." msgstr "" -#: ../../library/sqlite3.rst:1304 msgid "The database name to be serialized. Defaults to ``\"main\"``." msgstr "" -#: ../../library/sqlite3.rst:1312 -msgid "" -"This method is only available if the underlying SQLite library has the " -"serialize API." +msgid "This method is only available if the underlying SQLite library has the serialize API." msgstr "" -#: ../../library/sqlite3.rst:1320 -msgid "" -"Deserialize a :meth:`serialized ` database into " -"a :class:`Connection`. This method causes the database connection to " -"disconnect from database *name*, and reopen *name* as an in-memory database " -"based on the serialization contained in *data*." +msgid "Deserialize a :meth:`serialized ` database into a :class:`Connection`. This method causes the database connection to disconnect from database *name*, and reopen *name* as an in-memory database based on the serialization contained in *data*." msgstr "" -#: ../../library/sqlite3.rst:1326 msgid "A serialized database." msgstr "" -#: ../../library/sqlite3.rst:1329 msgid "The database name to deserialize into. Defaults to ``\"main\"``." msgstr "" -#: ../../library/sqlite3.rst:1333 -msgid "" -"If the database connection is currently involved in a read transaction or a " -"backup operation." +msgid "If the database connection is currently involved in a read transaction or a backup operation." msgstr "" -#: ../../library/sqlite3.rst:1337 msgid "If *data* does not contain a valid SQLite database." msgstr "" -#: ../../library/sqlite3.rst:1340 msgid "If :func:`len(data) ` is larger than ``2**63 - 1``." msgstr "" -#: ../../library/sqlite3.rst:1345 -msgid "" -"This method is only available if the underlying SQLite library has the " -"deserialize API." +msgid "This method is only available if the underlying SQLite library has the deserialize API." msgstr "" -#: ../../library/sqlite3.rst:1352 -msgid "" -"This attribute controls :pep:`249`-compliant transaction behaviour. :attr:`!" -"autocommit` has three allowed values:" +msgid "This attribute controls :pep:`249`-compliant transaction behaviour. :attr:`!autocommit` has three allowed values:" msgstr "" -#: ../../library/sqlite3.rst:1355 -msgid "" -"``False``: Select :pep:`249`-compliant transaction behaviour, implying " -"that :mod:`!sqlite3` ensures a transaction is always open. " -"Use :meth:`commit` and :meth:`rollback` to close transactions." +msgid "``False``: Select :pep:`249`-compliant transaction behaviour, implying that :mod:`!sqlite3` ensures a transaction is always open. Use :meth:`commit` and :meth:`rollback` to close transactions." msgstr "" -#: ../../library/sqlite3.rst:1359 msgid "This is the recommended value of :attr:`!autocommit`." msgstr "" -#: ../../library/sqlite3.rst:1361 -msgid "" -"``True``: Use SQLite's `autocommit mode`_. :meth:`commit` " -"and :meth:`rollback` have no effect in this mode." +msgid "``True``: Use SQLite's `autocommit mode`_. :meth:`commit` and :meth:`rollback` have no effect in this mode." msgstr "" -#: ../../library/sqlite3.rst:1364 -msgid "" -":data:`LEGACY_TRANSACTION_CONTROL`: Pre-Python 3.12 (non-:pep:`249`-" -"compliant) transaction control. See :attr:`isolation_level` for more details." +msgid ":data:`LEGACY_TRANSACTION_CONTROL`: Pre-Python 3.12 (non-:pep:`249`-compliant) transaction control. See :attr:`isolation_level` for more details." msgstr "" -#: ../../library/sqlite3.rst:1368 msgid "This is currently the default value of :attr:`!autocommit`." msgstr "" -#: ../../library/sqlite3.rst:1370 -msgid "" -"Changing :attr:`!autocommit` to ``False`` will open a new transaction, and " -"changing it to ``True`` will commit any pending transaction." +msgid "Changing :attr:`!autocommit` to ``False`` will open a new transaction, and changing it to ``True`` will commit any pending transaction." msgstr "" -#: ../../library/sqlite3.rst:1373 msgid "See :ref:`sqlite3-transaction-control-autocommit` for more details." msgstr "" -#: ../../library/sqlite3.rst:1377 -msgid "" -"The :attr:`isolation_level` attribute has no effect " -"unless :attr:`autocommit` is :data:`LEGACY_TRANSACTION_CONTROL`." +msgid "The :attr:`isolation_level` attribute has no effect unless :attr:`autocommit` is :data:`LEGACY_TRANSACTION_CONTROL`." msgstr "" -#: ../../library/sqlite3.rst:1384 -msgid "" -"This read-only attribute corresponds to the low-level SQLite `autocommit " -"mode`_." +msgid "This read-only attribute corresponds to the low-level SQLite `autocommit mode`_." msgstr "" -#: ../../library/sqlite3.rst:1387 -msgid "" -"``True`` if a transaction is active (there are uncommitted changes), " -"``False`` otherwise." +msgid "``True`` if a transaction is active (there are uncommitted changes), ``False`` otherwise." msgstr "" -#: ../../library/sqlite3.rst:1394 -msgid "" -"Controls the :ref:`legacy transaction handling mode ` of :mod:`!sqlite3`. If set to ``None``, " -"transactions are never implicitly opened. If set to one of ``\"DEFERRED\"``, " -"``\"IMMEDIATE\"``, or ``\"EXCLUSIVE\"``, corresponding to the underlying " -"`SQLite transaction behaviour`_, :ref:`implicit transaction management " -"` is performed." +msgid "Controls the :ref:`legacy transaction handling mode ` of :mod:`!sqlite3`. If set to ``None``, transactions are never implicitly opened. If set to one of ``\"DEFERRED\"``, ``\"IMMEDIATE\"``, or ``\"EXCLUSIVE\"``, corresponding to the underlying `SQLite transaction behaviour`_, :ref:`implicit transaction management ` is performed." msgstr "" -#: ../../library/sqlite3.rst:1402 -msgid "" -"If not overridden by the *isolation_level* parameter of :func:`connect`, the " -"default is ``\"\"``, which is an alias for ``\"DEFERRED\"``." +msgid "If not overridden by the *isolation_level* parameter of :func:`connect`, the default is ``\"\"``, which is an alias for ``\"DEFERRED\"``." msgstr "" -#: ../../library/sqlite3.rst:1407 -msgid "" -"Using :attr:`autocommit` to control transaction handling is recommended over " -"using :attr:`!isolation_level`. :attr:`!isolation_level` has no effect " -"unless :attr:`autocommit` is set to :data:`LEGACY_TRANSACTION_CONTROL` (the " -"default)." +msgid "Using :attr:`autocommit` to control transaction handling is recommended over using :attr:`!isolation_level`. :attr:`!isolation_level` has no effect unless :attr:`autocommit` is set to :data:`LEGACY_TRANSACTION_CONTROL` (the default)." msgstr "" -#: ../../library/sqlite3.rst:1414 -msgid "" -"The initial :attr:`~Cursor.row_factory` for :class:`Cursor` objects created " -"from this connection. Assigning to this attribute does not affect " -"the :attr:`!row_factory` of existing cursors belonging to this connection, " -"only new ones. Is ``None`` by default, meaning each row is returned as " -"a :class:`tuple`." +msgid "The initial :attr:`~Cursor.row_factory` for :class:`Cursor` objects created from this connection. Assigning to this attribute does not affect the :attr:`!row_factory` of existing cursors belonging to this connection, only new ones. Is ``None`` by default, meaning each row is returned as a :class:`tuple`." msgstr "" -#: ../../library/sqlite3.rst:1421 ../../library/sqlite3.rst:1719 -#: ../../library/sqlite3.rst:1745 msgid "See :ref:`sqlite3-howto-row-factory` for more details." msgstr "" -#: ../../library/sqlite3.rst:1423 ../../library/sqlite3.rst:1721 msgid "Deleting the ``row_factory`` attribute is no longer allowed." msgstr "" -#: ../../library/sqlite3.rst:1428 -msgid "" -"A :term:`callable` that accepts a :class:`bytes` parameter and returns a " -"text representation of it. The callable is invoked for SQLite values with " -"the ``TEXT`` data type. By default, this attribute is set to :class:`str`." +msgid "A :term:`callable` that accepts a :class:`bytes` parameter and returns a text representation of it. The callable is invoked for SQLite values with the ``TEXT`` data type. By default, this attribute is set to :class:`str`." msgstr "" -#: ../../library/sqlite3.rst:1433 msgid "See :ref:`sqlite3-howto-encoding` for more details." msgstr "" -#: ../../library/sqlite3.rst:1435 msgid "Deleting the ``text_factory`` attribute is no longer allowed." msgstr "" -#: ../../library/sqlite3.rst:1440 -msgid "" -"Return the total number of database rows that have been modified, inserted, " -"or deleted since the database connection was opened." +msgid "Return the total number of database rows that have been modified, inserted, or deleted since the database connection was opened." msgstr "" -#: ../../library/sqlite3.rst:1447 msgid "Cursor objects" msgstr "" -#: ../../library/sqlite3.rst:1449 -msgid "" -"A ``Cursor`` object represents a `database cursor`_ which is used to execute " -"SQL statements, and manage the context of a fetch operation. Cursors are " -"created using :meth:`Connection.cursor`, or by using any of " -"the :ref:`connection shortcut methods `." +msgid "A ``Cursor`` object represents a `database cursor`_ which is used to execute SQL statements, and manage the context of a fetch operation. Cursors are created using :meth:`Connection.cursor`, or by using any of the :ref:`connection shortcut methods `." msgstr "" -#: ../../library/sqlite3.rst:1456 -msgid "" -"Cursor objects are :term:`iterators `, meaning that if " -"you :meth:`~Cursor.execute` a ``SELECT`` query, you can simply iterate over " -"the cursor to fetch the resulting rows:" +msgid "Cursor objects are :term:`iterators `, meaning that if you :meth:`~Cursor.execute` a ``SELECT`` query, you can simply iterate over the cursor to fetch the resulting rows:" msgstr "" -#: ../../library/sqlite3.rst:1467 msgid "" "for row in cur.execute(\"SELECT t FROM data\"):\n" " print(row)" msgstr "" -#: ../../library/sqlite3.rst:1481 msgid "A :class:`Cursor` instance has the following attributes and methods." msgstr "" -#: ../../library/sqlite3.rst:1488 -msgid "" -"Execute a single SQL statement, optionally binding Python values " -"using :ref:`placeholders `." +msgid "Execute a single SQL statement, optionally binding Python values using :ref:`placeholders `." msgstr "" -#: ../../library/sqlite3.rst:1492 msgid "A single SQL statement." msgstr "" -#: ../../library/sqlite3.rst:1495 -msgid "" -"Python values to bind to placeholders in *sql*. A :class:`!dict` if named " -"placeholders are used. A :term:`!sequence` if unnamed placeholders are used. " -"See :ref:`sqlite3-placeholders`." +msgid "Python values to bind to placeholders in *sql*. A :class:`!dict` if named placeholders are used. A :term:`!sequence` if unnamed placeholders are used. See :ref:`sqlite3-placeholders`." msgstr "" -#: ../../library/sqlite3.rst:1502 -msgid "" -"When *sql* contains more than one SQL statement. When :ref:`named " -"placeholders ` are used and *parameters* is a sequence " -"instead of a :class:`dict`." +msgid "When *sql* contains more than one SQL statement. When :ref:`named placeholders ` are used and *parameters* is a sequence instead of a :class:`dict`." msgstr "" -#: ../../library/sqlite3.rst:1507 -msgid "" -"If :attr:`~Connection.autocommit` " -"is :data:`LEGACY_TRANSACTION_CONTROL`, :attr:`~Connection.isolation_level` " -"is not ``None``, *sql* is an ``INSERT``, ``UPDATE``, ``DELETE``, or " -"``REPLACE`` statement, and there is no open transaction, a transaction is " -"implicitly opened before executing *sql*." +msgid "If :attr:`~Connection.autocommit` is :data:`LEGACY_TRANSACTION_CONTROL`, :attr:`~Connection.isolation_level` is not ``None``, *sql* is an ``INSERT``, ``UPDATE``, ``DELETE``, or ``REPLACE`` statement, and there is no open transaction, a transaction is implicitly opened before executing *sql*." msgstr "" -#: ../../library/sqlite3.rst:1516 -msgid "" -":exc:`ProgrammingError` is emitted if :ref:`named placeholders ` are used and *parameters* is a sequence instead of " -"a :class:`dict`." +msgid ":exc:`ProgrammingError` is emitted if :ref:`named placeholders ` are used and *parameters* is a sequence instead of a :class:`dict`." msgstr "" -#: ../../library/sqlite3.rst:1520 msgid "Use :meth:`executescript` to execute multiple SQL statements." msgstr "" -#: ../../library/sqlite3.rst:1524 -msgid "" -"For every item in *parameters*, repeatedly execute the :ref:`parameterized " -"` :abbr:`DML (Data Manipulation Language)` SQL " -"statement *sql*." +msgid "For every item in *parameters*, repeatedly execute the :ref:`parameterized ` :abbr:`DML (Data Manipulation Language)` SQL statement *sql*." msgstr "" -#: ../../library/sqlite3.rst:1528 msgid "Uses the same implicit transaction handling as :meth:`~Cursor.execute`." msgstr "" -#: ../../library/sqlite3.rst:1530 msgid "A single SQL DML statement." msgstr "" -#: ../../library/sqlite3.rst:1533 -msgid "" -"An :term:`!iterable` of parameters to bind with the placeholders in *sql*. " -"See :ref:`sqlite3-placeholders`." +msgid "An :term:`!iterable` of parameters to bind with the placeholders in *sql*. See :ref:`sqlite3-placeholders`." msgstr "" -#: ../../library/sqlite3.rst:1539 -msgid "" -"When *sql* contains more than one SQL statement or is not a DML statement, " -"When :ref:`named placeholders ` are used and the items " -"in *parameters* are sequences instead of :class:`dict`\\s." +msgid "When *sql* contains more than one SQL statement or is not a DML statement, When :ref:`named placeholders ` are used and the items in *parameters* are sequences instead of :class:`dict`\\s." msgstr "" -#: ../../library/sqlite3.rst:1547 msgid "" "rows = [\n" " (\"row1\",),\n" @@ -1859,33 +1094,18 @@ msgid "" "cur.executemany(\"INSERT INTO data VALUES(?)\", rows)" msgstr "" -#: ../../library/sqlite3.rst:1562 -msgid "" -"Any resulting rows are discarded, including DML statements with `RETURNING " -"clauses`_." +msgid "Any resulting rows are discarded, including DML statements with `RETURNING clauses`_." msgstr "" -#: ../../library/sqlite3.rst:1569 -msgid "" -":exc:`ProgrammingError` is emitted if :ref:`named placeholders ` are used and the items in *parameters* are sequences instead " -"of :class:`dict`\\s." +msgid ":exc:`ProgrammingError` is emitted if :ref:`named placeholders ` are used and the items in *parameters* are sequences instead of :class:`dict`\\s." msgstr "" -#: ../../library/sqlite3.rst:1576 -msgid "" -"Execute the SQL statements in *sql_script*. If " -"the :attr:`~Connection.autocommit` is :data:`LEGACY_TRANSACTION_CONTROL` and " -"there is a pending transaction, an implicit ``COMMIT`` statement is executed " -"first. No other implicit transaction control is performed; any transaction " -"control must be added to *sql_script*." +msgid "Execute the SQL statements in *sql_script*. If the :attr:`~Connection.autocommit` is :data:`LEGACY_TRANSACTION_CONTROL` and there is a pending transaction, an implicit ``COMMIT`` statement is executed first. No other implicit transaction control is performed; any transaction control must be added to *sql_script*." msgstr "" -#: ../../library/sqlite3.rst:1584 msgid "*sql_script* must be a :class:`string `." msgstr "" -#: ../../library/sqlite3.rst:1588 msgid "" "# cur is an sqlite3.Cursor object\n" "cur.executescript(\"\"\"\n" @@ -1897,81 +1117,42 @@ msgid "" "\"\"\")" msgstr "" -#: ../../library/sqlite3.rst:1601 -msgid "" -"If :attr:`~Cursor.row_factory` is ``None``, return the next row query result " -"set as a :class:`tuple`. Else, pass it to the row factory and return its " -"result. Return ``None`` if no more data is available." +msgid "If :attr:`~Cursor.row_factory` is ``None``, return the next row query result set as a :class:`tuple`. Else, pass it to the row factory and return its result. Return ``None`` if no more data is available." msgstr "" -#: ../../library/sqlite3.rst:1609 -msgid "" -"Return the next set of rows of a query result as a :class:`list`. Return an " -"empty list if no more rows are available." +msgid "Return the next set of rows of a query result as a :class:`list`. Return an empty list if no more rows are available." msgstr "" -#: ../../library/sqlite3.rst:1612 -msgid "" -"The number of rows to fetch per call is specified by the *size* parameter. " -"If *size* is not given, :attr:`arraysize` determines the number of rows to " -"be fetched. If fewer than *size* rows are available, as many rows as are " -"available are returned." +msgid "The number of rows to fetch per call is specified by the *size* parameter. If *size* is not given, :attr:`arraysize` determines the number of rows to be fetched. If fewer than *size* rows are available, as many rows as are available are returned." msgstr "" -#: ../../library/sqlite3.rst:1618 -msgid "" -"Note there are performance considerations involved with the *size* " -"parameter. For optimal performance, it is usually best to use the arraysize " -"attribute. If the *size* parameter is used, then it is best for it to retain " -"the same value from one :meth:`fetchmany` call to the next." +msgid "Note there are performance considerations involved with the *size* parameter. For optimal performance, it is usually best to use the arraysize attribute. If the *size* parameter is used, then it is best for it to retain the same value from one :meth:`fetchmany` call to the next." msgstr "" -#: ../../library/sqlite3.rst:1623 msgid "Negative *size* values are rejected by raising :exc:`ValueError`." msgstr "" -#: ../../library/sqlite3.rst:1628 -msgid "" -"Return all (remaining) rows of a query result as a :class:`list`. Return an " -"empty list if no rows are available. Note that the :attr:`arraysize` " -"attribute can affect the performance of this operation." +msgid "Return all (remaining) rows of a query result as a :class:`list`. Return an empty list if no rows are available. Note that the :attr:`arraysize` attribute can affect the performance of this operation." msgstr "" -#: ../../library/sqlite3.rst:1635 msgid "Close the cursor now (rather than whenever ``__del__`` is called)." msgstr "" -#: ../../library/sqlite3.rst:1637 -msgid "" -"The cursor will be unusable from this point forward; " -"a :exc:`ProgrammingError` exception will be raised if any operation is " -"attempted with the cursor." +msgid "The cursor will be unusable from this point forward; a :exc:`ProgrammingError` exception will be raised if any operation is attempted with the cursor." msgstr "" -#: ../../library/sqlite3.rst:1642 ../../library/sqlite3.rst:1646 msgid "Required by the DB-API. Does nothing in :mod:`!sqlite3`." msgstr "" -#: ../../library/sqlite3.rst:1650 -msgid "" -"Read/write attribute that controls the number of rows returned " -"by :meth:`fetchmany`. The default value is 1 which means a single row would " -"be fetched per call." +msgid "Read/write attribute that controls the number of rows returned by :meth:`fetchmany`. The default value is 1 which means a single row would be fetched per call." msgstr "" -#: ../../library/sqlite3.rst:1653 msgid "Negative values are rejected by raising :exc:`ValueError`." msgstr "" -#: ../../library/sqlite3.rst:1658 -msgid "" -"Read-only attribute that provides the SQLite database :class:`Connection` " -"belonging to the cursor. A :class:`Cursor` object created by " -"calling :meth:`con.cursor() ` will have " -"a :attr:`connection` attribute that refers to *con*:" +msgid "Read-only attribute that provides the SQLite database :class:`Connection` belonging to the cursor. A :class:`Cursor` object created by calling :meth:`con.cursor() ` will have a :attr:`connection` attribute that refers to *con*:" msgstr "" -#: ../../library/sqlite3.rst:1663 msgid "" ">>> con = sqlite3.connect(\":memory:\")\n" ">>> cur = con.cursor()\n" @@ -1980,109 +1161,54 @@ msgid "" ">>> con.close()" msgstr "" -#: ../../library/sqlite3.rst:1673 -msgid "" -"Read-only attribute that provides the column names of the last query. To " -"remain compatible with the Python DB API, it returns a 7-tuple for each " -"column where the last six items of each tuple are ``None``." +msgid "Read-only attribute that provides the column names of the last query. To remain compatible with the Python DB API, it returns a 7-tuple for each column where the last six items of each tuple are ``None``." msgstr "" -#: ../../library/sqlite3.rst:1677 msgid "It is set for ``SELECT`` statements without any matching rows as well." msgstr "" -#: ../../library/sqlite3.rst:1681 -msgid "" -"Read-only attribute that provides the row id of the last inserted row. It is " -"only updated after successful ``INSERT`` or ``REPLACE`` statements using " -"the :meth:`execute` method. For other statements, after :meth:`executemany` " -"or :meth:`executescript`, or if the insertion failed, the value of " -"``lastrowid`` is left unchanged. The initial value of ``lastrowid`` is " -"``None``." +msgid "Read-only attribute that provides the row id of the last inserted row. It is only updated after successful ``INSERT`` or ``REPLACE`` statements using the :meth:`execute` method. For other statements, after :meth:`executemany` or :meth:`executescript`, or if the insertion failed, the value of ``lastrowid`` is left unchanged. The initial value of ``lastrowid`` is ``None``." msgstr "" -#: ../../library/sqlite3.rst:1689 msgid "Inserts into ``WITHOUT ROWID`` tables are not recorded." msgstr "" -#: ../../library/sqlite3.rst:1691 msgid "Added support for the ``REPLACE`` statement." msgstr "" -#: ../../library/sqlite3.rst:1696 -msgid "" -"Read-only attribute that provides the number of modified rows for " -"``INSERT``, ``UPDATE``, ``DELETE``, and ``REPLACE`` statements; is ``-1`` " -"for other statements, including :abbr:`CTE (Common Table Expression)` " -"queries. It is only updated by the :meth:`execute` and :meth:`executemany` " -"methods, after the statement has run to completion. This means that any " -"resulting rows must be fetched in order for :attr:`!rowcount` to be updated." +msgid "Read-only attribute that provides the number of modified rows for ``INSERT``, ``UPDATE``, ``DELETE``, and ``REPLACE`` statements; is ``-1`` for other statements, including :abbr:`CTE (Common Table Expression)` queries. It is only updated by the :meth:`execute` and :meth:`executemany` methods, after the statement has run to completion. This means that any resulting rows must be fetched in order for :attr:`!rowcount` to be updated." msgstr "" -#: ../../library/sqlite3.rst:1707 -msgid "" -"Control how a row fetched from this :class:`!Cursor` is represented. If " -"``None``, a row is represented as a :class:`tuple`. Can be set to the " -"included :class:`sqlite3.Row`; or a :term:`callable` that accepts two " -"arguments, a :class:`Cursor` object and the :class:`!tuple` of row values, " -"and returns a custom object representing an SQLite row." +msgid "Control how a row fetched from this :class:`!Cursor` is represented. If ``None``, a row is represented as a :class:`tuple`. Can be set to the included :class:`sqlite3.Row`; or a :term:`callable` that accepts two arguments, a :class:`Cursor` object and the :class:`!tuple` of row values, and returns a custom object representing an SQLite row." msgstr "" -#: ../../library/sqlite3.rst:1714 -msgid "" -"Defaults to what :attr:`Connection.row_factory` was set to when the :class:`!" -"Cursor` was created. Assigning to this attribute does not " -"affect :attr:`Connection.row_factory` of the parent connection." +msgid "Defaults to what :attr:`Connection.row_factory` was set to when the :class:`!Cursor` was created. Assigning to this attribute does not affect :attr:`Connection.row_factory` of the parent connection." msgstr "" -#: ../../library/sqlite3.rst:1733 msgid "Row objects" msgstr "" -#: ../../library/sqlite3.rst:1737 -msgid "" -"A :class:`!Row` instance serves as a highly " -"optimized :attr:`~Connection.row_factory` for :class:`Connection` objects. " -"It supports iteration, equality testing, :func:`len`, and :term:`mapping` " -"access by column name and index." +msgid "A :class:`!Row` instance serves as a highly optimized :attr:`~Connection.row_factory` for :class:`Connection` objects. It supports iteration, equality testing, :func:`len`, and :term:`mapping` access by column name and index." msgstr "" -#: ../../library/sqlite3.rst:1742 -msgid "" -"Two :class:`!Row` objects compare equal if they have identical column names " -"and values." +msgid "Two :class:`!Row` objects compare equal if they have identical column names and values." msgstr "" -#: ../../library/sqlite3.rst:1749 -msgid "" -"Return a :class:`list` of column names as :class:`strings `. " -"Immediately after a query, it is the first member of each tuple " -"in :attr:`Cursor.description`." +msgid "Return a :class:`list` of column names as :class:`strings `. Immediately after a query, it is the first member of each tuple in :attr:`Cursor.description`." msgstr "" -#: ../../library/sqlite3.rst:1753 msgid "Added support of slicing." msgstr "" -#: ../../library/sqlite3.rst:1760 msgid "Blob objects" msgstr "" -#: ../../library/sqlite3.rst:1766 -msgid "" -"A :class:`Blob` instance is a :term:`file-like object` that can read and " -"write data in an SQLite :abbr:`BLOB (Binary Large OBject)`. " -"Call :func:`len(blob) ` to get the size (number of bytes) of the blob. " -"Use indices and :term:`slices ` for direct access to the blob data." +msgid "A :class:`Blob` instance is a :term:`file-like object` that can read and write data in an SQLite :abbr:`BLOB (Binary Large OBject)`. Call :func:`len(blob) ` to get the size (number of bytes) of the blob. Use indices and :term:`slices ` for direct access to the blob data." msgstr "" -#: ../../library/sqlite3.rst:1771 -msgid "" -"Use the :class:`Blob` as a :term:`context manager` to ensure that the blob " -"handle is closed after use." +msgid "Use the :class:`Blob` as a :term:`context manager` to ensure that the blob handle is closed after use." msgstr "" -#: ../../library/sqlite3.rst:1774 msgid "" "con = sqlite3.connect(\":memory:\")\n" "con.execute(\"CREATE TABLE test(blob_col blob)\")\n" @@ -2104,328 +1230,180 @@ msgid "" "con.close()" msgstr "" -#: ../../library/sqlite3.rst:1802 msgid "Close the blob." msgstr "" -#: ../../library/sqlite3.rst:1804 -msgid "" -"The blob will be unusable from this point onward. " -"An :class:`~sqlite3.Error` (or subclass) exception will be raised if any " -"further operation is attempted with the blob." +msgid "The blob will be unusable from this point onward. An :class:`~sqlite3.Error` (or subclass) exception will be raised if any further operation is attempted with the blob." msgstr "" -#: ../../library/sqlite3.rst:1810 -msgid "" -"Read *length* bytes of data from the blob at the current offset position. If " -"the end of the blob is reached, the data up to :abbr:`EOF (End of File)` " -"will be returned. When *length* is not specified, or is " -"negative, :meth:`~Blob.read` will read until the end of the blob." +msgid "Read *length* bytes of data from the blob at the current offset position. If the end of the blob is reached, the data up to :abbr:`EOF (End of File)` will be returned. When *length* is not specified, or is negative, :meth:`~Blob.read` will read until the end of the blob." msgstr "" -#: ../../library/sqlite3.rst:1818 -msgid "" -"Write *data* to the blob at the current offset. This function cannot change " -"the blob length. Writing beyond the end of the blob will " -"raise :exc:`ValueError`." +msgid "Write *data* to the blob at the current offset. This function cannot change the blob length. Writing beyond the end of the blob will raise :exc:`ValueError`." msgstr "" -#: ../../library/sqlite3.rst:1824 msgid "Return the current access position of the blob." msgstr "" -#: ../../library/sqlite3.rst:1828 -msgid "" -"Set the current access position of the blob to *offset*. The *origin* " -"argument defaults to :const:`os.SEEK_SET` (absolute blob positioning). Other " -"values for *origin* are :const:`os.SEEK_CUR` (seek relative to the current " -"position) and :const:`os.SEEK_END` (seek relative to the blob’s end)." +msgid "Set the current access position of the blob to *offset*. The *origin* argument defaults to :const:`os.SEEK_SET` (absolute blob positioning). Other values for *origin* are :const:`os.SEEK_CUR` (seek relative to the current position) and :const:`os.SEEK_END` (seek relative to the blob’s end)." msgstr "" -#: ../../library/sqlite3.rst:1836 msgid "PrepareProtocol objects" msgstr "" -#: ../../library/sqlite3.rst:1840 -msgid "" -"The PrepareProtocol type's single purpose is to act as a :pep:`246` style " -"adaption protocol for objects that can :ref:`adapt themselves ` to :ref:`native SQLite types `." +msgid "The PrepareProtocol type's single purpose is to act as a :pep:`246` style adaption protocol for objects that can :ref:`adapt themselves ` to :ref:`native SQLite types `." msgstr "" -#: ../../library/sqlite3.rst:1848 msgid "Exceptions" msgstr "" -#: ../../library/sqlite3.rst:1850 msgid "The exception hierarchy is defined by the DB-API 2.0 (:pep:`249`)." msgstr "" -#: ../../library/sqlite3.rst:1854 -msgid "" -"This exception is not currently raised by the :mod:`!sqlite3` module, but " -"may be raised by applications using :mod:`!sqlite3`, for example if a user-" -"defined function truncates data while inserting. ``Warning`` is a subclass " -"of :exc:`Exception`." +msgid "This exception is not currently raised by the :mod:`!sqlite3` module, but may be raised by applications using :mod:`!sqlite3`, for example if a user-defined function truncates data while inserting. ``Warning`` is a subclass of :exc:`Exception`." msgstr "" -#: ../../library/sqlite3.rst:1861 -msgid "" -"The base class of the other exceptions in this module. Use this to catch all " -"errors with one single :keyword:`except` statement. ``Error`` is a subclass " -"of :exc:`Exception`." +msgid "The base class of the other exceptions in this module. Use this to catch all errors with one single :keyword:`except` statement. ``Error`` is a subclass of :exc:`Exception`." msgstr "" -#: ../../library/sqlite3.rst:1865 -msgid "" -"If the exception originated from within the SQLite library, the following " -"two attributes are added to the exception:" +msgid "If the exception originated from within the SQLite library, the following two attributes are added to the exception:" msgstr "" -#: ../../library/sqlite3.rst:1870 -msgid "" -"The numeric error code from the `SQLite API `_" +msgid "The numeric error code from the `SQLite API `_" msgstr "" -#: ../../library/sqlite3.rst:1877 -msgid "" -"The symbolic name of the numeric error code from the `SQLite API `_" +msgid "The symbolic name of the numeric error code from the `SQLite API `_" msgstr "" -#: ../../library/sqlite3.rst:1884 -msgid "" -"Exception raised for misuse of the low-level SQLite C API. In other words, " -"if this exception is raised, it probably indicates a bug in the :mod:`!" -"sqlite3` module. ``InterfaceError`` is a subclass of :exc:`Error`." +msgid "Exception raised for misuse of the low-level SQLite C API. In other words, if this exception is raised, it probably indicates a bug in the :mod:`!sqlite3` module. ``InterfaceError`` is a subclass of :exc:`Error`." msgstr "" -#: ../../library/sqlite3.rst:1891 -msgid "" -"Exception raised for errors that are related to the database. This serves as " -"the base exception for several types of database errors. It is only raised " -"implicitly through the specialised subclasses. ``DatabaseError`` is a " -"subclass of :exc:`Error`." +msgid "Exception raised for errors that are related to the database. This serves as the base exception for several types of database errors. It is only raised implicitly through the specialised subclasses. ``DatabaseError`` is a subclass of :exc:`Error`." msgstr "" -#: ../../library/sqlite3.rst:1898 -msgid "" -"Exception raised for errors caused by problems with the processed data, like " -"numeric values out of range, and strings which are too long. ``DataError`` " -"is a subclass of :exc:`DatabaseError`." +msgid "Exception raised for errors caused by problems with the processed data, like numeric values out of range, and strings which are too long. ``DataError`` is a subclass of :exc:`DatabaseError`." msgstr "" -#: ../../library/sqlite3.rst:1904 -msgid "" -"Exception raised for errors that are related to the database's operation, " -"and not necessarily under the control of the programmer. For example, the " -"database path is not found, or a transaction could not be processed. " -"``OperationalError`` is a subclass of :exc:`DatabaseError`." +msgid "Exception raised for errors that are related to the database's operation, and not necessarily under the control of the programmer. For example, the database path is not found, or a transaction could not be processed. ``OperationalError`` is a subclass of :exc:`DatabaseError`." msgstr "" -#: ../../library/sqlite3.rst:1912 -msgid "" -"Exception raised when the relational integrity of the database is affected, " -"e.g. a foreign key check fails. It is a subclass of :exc:`DatabaseError`." +msgid "Exception raised when the relational integrity of the database is affected, e.g. a foreign key check fails. It is a subclass of :exc:`DatabaseError`." msgstr "" -#: ../../library/sqlite3.rst:1917 -msgid "" -"Exception raised when SQLite encounters an internal error. If this is " -"raised, it may indicate that there is a problem with the runtime SQLite " -"library. ``InternalError`` is a subclass of :exc:`DatabaseError`." +msgid "Exception raised when SQLite encounters an internal error. If this is raised, it may indicate that there is a problem with the runtime SQLite library. ``InternalError`` is a subclass of :exc:`DatabaseError`." msgstr "" -#: ../../library/sqlite3.rst:1924 -msgid "" -"Exception raised for :mod:`!sqlite3` API programming errors, for example " -"supplying the wrong number of bindings to a query, or trying to operate on a " -"closed :class:`Connection`. ``ProgrammingError`` is a subclass " -"of :exc:`DatabaseError`." +msgid "Exception raised for :mod:`!sqlite3` API programming errors, for example supplying the wrong number of bindings to a query, or trying to operate on a closed :class:`Connection`. ``ProgrammingError`` is a subclass of :exc:`DatabaseError`." msgstr "" -#: ../../library/sqlite3.rst:1931 -msgid "" -"Exception raised in case a method or database API is not supported by the " -"underlying SQLite library. For example, setting *deterministic* to ``True`` " -"in :meth:`~Connection.create_function`, if the underlying SQLite library " -"does not support deterministic functions. ``NotSupportedError`` is a " -"subclass of :exc:`DatabaseError`." +msgid "Exception raised in case a method or database API is not supported by the underlying SQLite library. For example, setting *deterministic* to ``True`` in :meth:`~Connection.create_function`, if the underlying SQLite library does not support deterministic functions. ``NotSupportedError`` is a subclass of :exc:`DatabaseError`." msgstr "" -#: ../../library/sqlite3.rst:1941 msgid "SQLite and Python types" msgstr "" -#: ../../library/sqlite3.rst:1943 -msgid "" -"SQLite natively supports the following types: ``NULL``, ``INTEGER``, " -"``REAL``, ``TEXT``, ``BLOB``." +msgid "SQLite natively supports the following types: ``NULL``, ``INTEGER``, ``REAL``, ``TEXT``, ``BLOB``." msgstr "" -#: ../../library/sqlite3.rst:1946 -msgid "" -"The following Python types can thus be sent to SQLite without any problem:" +msgid "The following Python types can thus be sent to SQLite without any problem:" msgstr "" -#: ../../library/sqlite3.rst:1949 ../../library/sqlite3.rst:1966 msgid "Python type" msgstr "" -#: ../../library/sqlite3.rst:1949 ../../library/sqlite3.rst:1966 msgid "SQLite type" msgstr "" -#: ../../library/sqlite3.rst:1951 ../../library/sqlite3.rst:1968 msgid "``None``" msgstr "" -#: ../../library/sqlite3.rst:1951 ../../library/sqlite3.rst:1968 msgid "``NULL``" msgstr "" -#: ../../library/sqlite3.rst:1953 ../../library/sqlite3.rst:1970 msgid ":class:`int`" msgstr "" -#: ../../library/sqlite3.rst:1953 ../../library/sqlite3.rst:1970 msgid "``INTEGER``" msgstr "" -#: ../../library/sqlite3.rst:1955 ../../library/sqlite3.rst:1972 msgid ":class:`float`" msgstr "" -#: ../../library/sqlite3.rst:1955 ../../library/sqlite3.rst:1972 msgid "``REAL``" msgstr "" -#: ../../library/sqlite3.rst:1957 msgid ":class:`str`" msgstr "" -#: ../../library/sqlite3.rst:1957 ../../library/sqlite3.rst:1974 msgid "``TEXT``" msgstr "" -#: ../../library/sqlite3.rst:1959 ../../library/sqlite3.rst:1977 msgid ":class:`bytes`" msgstr "" -#: ../../library/sqlite3.rst:1959 ../../library/sqlite3.rst:1977 msgid "``BLOB``" msgstr "" -#: ../../library/sqlite3.rst:1963 msgid "This is how SQLite types are converted to Python types by default:" msgstr "" -#: ../../library/sqlite3.rst:1974 msgid "depends on :attr:`~Connection.text_factory`, :class:`str` by default" msgstr "" -#: ../../library/sqlite3.rst:1980 -msgid "" -"The type system of the :mod:`!sqlite3` module is extensible in two ways: you " -"can store additional Python types in an SQLite database via :ref:`object " -"adapters `, and you can let the :mod:`!sqlite3` module " -"convert SQLite types to Python types via :ref:`converters `." +msgid "The type system of the :mod:`!sqlite3` module is extensible in two ways: you can store additional Python types in an SQLite database via :ref:`object adapters `, and you can let the :mod:`!sqlite3` module convert SQLite types to Python types via :ref:`converters `." msgstr "" -#: ../../library/sqlite3.rst:1990 msgid "Default adapters and converters (deprecated)" msgstr "" -#: ../../library/sqlite3.rst:1994 -msgid "" -"The default adapters and converters are deprecated as of Python 3.12. " -"Instead, use the :ref:`sqlite3-adapter-converter-recipes` and tailor them to " -"your needs." +msgid "The default adapters and converters are deprecated as of Python 3.12. Instead, use the :ref:`sqlite3-adapter-converter-recipes` and tailor them to your needs." msgstr "" -#: ../../library/sqlite3.rst:1998 msgid "The deprecated default adapters and converters consist of:" msgstr "" -#: ../../library/sqlite3.rst:2000 -msgid "" -"An adapter for :class:`datetime.date` objects to :class:`strings ` in " -"`ISO 8601`_ format." +msgid "An adapter for :class:`datetime.date` objects to :class:`strings ` in `ISO 8601`_ format." msgstr "" -#: ../../library/sqlite3.rst:2002 -msgid "" -"An adapter for :class:`datetime.datetime` objects to strings in ISO 8601 " -"format." +msgid "An adapter for :class:`datetime.datetime` objects to strings in ISO 8601 format." msgstr "" -#: ../../library/sqlite3.rst:2004 -msgid "" -"A converter for :ref:`declared ` \"date\" types " -"to :class:`datetime.date` objects." +msgid "A converter for :ref:`declared ` \"date\" types to :class:`datetime.date` objects." msgstr "" -#: ../../library/sqlite3.rst:2006 -msgid "" -"A converter for declared \"timestamp\" types to :class:`datetime.datetime` " -"objects. Fractional parts will be truncated to 6 digits (microsecond " -"precision)." +msgid "A converter for declared \"timestamp\" types to :class:`datetime.datetime` objects. Fractional parts will be truncated to 6 digits (microsecond precision)." msgstr "" -#: ../../library/sqlite3.rst:2012 -msgid "" -"The default \"timestamp\" converter ignores UTC offsets in the database and " -"always returns a naive :class:`datetime.datetime` object. To preserve UTC " -"offsets in timestamps, either leave converters disabled, or register an " -"offset-aware converter with :func:`register_converter`." +msgid "The default \"timestamp\" converter ignores UTC offsets in the database and always returns a naive :class:`datetime.datetime` object. To preserve UTC offsets in timestamps, either leave converters disabled, or register an offset-aware converter with :func:`register_converter`." msgstr "" -#: ../../library/sqlite3.rst:2025 msgid "Command-line interface" msgstr "" -#: ../../library/sqlite3.rst:2027 -msgid "" -"The :mod:`!sqlite3` module can be invoked as a script, using the " -"interpreter's :option:`-m` switch, in order to provide a simple SQLite " -"shell. The argument signature is as follows::" +msgid "The :mod:`!sqlite3` module can be invoked as a script, using the interpreter's :option:`-m` switch, in order to provide a simple SQLite shell. The argument signature is as follows::" msgstr "" -#: ../../library/sqlite3.rst:2032 msgid "python -m sqlite3 [-h] [-v] [filename] [sql]" msgstr "" -#: ../../library/sqlite3.rst:2034 msgid "Type ``.quit`` or CTRL-D to exit the shell." msgstr "" -#: ../../library/sqlite3.rst:2040 msgid "Print CLI help." msgstr "" -#: ../../library/sqlite3.rst:2044 msgid "Print underlying SQLite library version." msgstr "" -#: ../../library/sqlite3.rst:2052 msgid "How-to guides" msgstr "" -#: ../../library/sqlite3.rst:2057 msgid "How to use placeholders to bind values in SQL queries" msgstr "" -#: ../../library/sqlite3.rst:2059 -msgid "" -"SQL operations usually need to use values from Python variables. However, " -"beware of using Python's string operations to assemble queries, as they are " -"vulnerable to `SQL injection attacks`_. For example, an attacker can simply " -"close the single quote and inject ``OR TRUE`` to select all rows::" +msgid "SQL operations usually need to use values from Python variables. However, beware of using Python's string operations to assemble queries, as they are vulnerable to `SQL injection attacks`_. For example, an attacker can simply close the single quote and inject ``OR TRUE`` to select all rows::" msgstr "" -#: ../../library/sqlite3.rst:2064 msgid "" ">>> # Never do this -- insecure!\n" ">>> symbol = input()\n" @@ -2436,26 +1414,12 @@ msgid "" ">>> cur.execute(sql)" msgstr "" -#: ../../library/sqlite3.rst:2072 -msgid "" -"Instead, use the DB-API's parameter substitution. To insert a variable into " -"a query string, use a placeholder in the string, and substitute the actual " -"values into the query by providing them as a :class:`tuple` of values to the " -"second argument of the cursor's :meth:`~Cursor.execute` method." +msgid "Instead, use the DB-API's parameter substitution. To insert a variable into a query string, use a placeholder in the string, and substitute the actual values into the query by providing them as a :class:`tuple` of values to the second argument of the cursor's :meth:`~Cursor.execute` method." msgstr "" -#: ../../library/sqlite3.rst:2077 -msgid "" -"An SQL statement may use one of two kinds of placeholders: question marks " -"(qmark style) or named placeholders (named style). For the qmark style, " -"*parameters* must be a :term:`sequence` whose length must match the number " -"of placeholders, or a :exc:`ProgrammingError` is raised. For the named " -"style, *parameters* must be an instance of a :class:`dict` (or a subclass), " -"which must contain keys for all named parameters; any extra items are " -"ignored. Here's an example of both styles:" +msgid "An SQL statement may use one of two kinds of placeholders: question marks (qmark style) or named placeholders (named style). For the qmark style, *parameters* must be a :term:`sequence` whose length must match the number of placeholders, or a :exc:`ProgrammingError` is raised. For the named style, *parameters* must be an instance of a :class:`dict` (or a subclass), which must contain keys for all named parameters; any extra items are ignored. Here's an example of both styles:" msgstr "" -#: ../../library/sqlite3.rst:2088 msgid "" "con = sqlite3.connect(\":memory:\")\n" "cur = con.execute(\"CREATE TABLE lang(name, first_appeared)\")\n" @@ -2476,48 +1440,24 @@ msgid "" "con.close()" msgstr "" -#: ../../library/sqlite3.rst:2115 -msgid "" -":pep:`249` numeric placeholders are *not* supported. If used, they will be " -"interpreted as named placeholders." +msgid ":pep:`249` numeric placeholders are *not* supported. If used, they will be interpreted as named placeholders." msgstr "" -#: ../../library/sqlite3.rst:2122 msgid "How to adapt custom Python types to SQLite values" msgstr "" -#: ../../library/sqlite3.rst:2124 -msgid "" -"SQLite supports only a limited set of data types natively. To store custom " -"Python types in SQLite databases, *adapt* them to one of the :ref:`Python " -"types SQLite natively understands `." +msgid "SQLite supports only a limited set of data types natively. To store custom Python types in SQLite databases, *adapt* them to one of the :ref:`Python types SQLite natively understands `." msgstr "" -#: ../../library/sqlite3.rst:2128 -msgid "" -"There are two ways to adapt Python objects to SQLite types: letting your " -"object adapt itself, or using an *adapter callable*. The latter will take " -"precedence above the former. For a library that exports a custom type, it " -"may make sense to enable that type to adapt itself. As an application " -"developer, it may make more sense to take direct control by registering " -"custom adapter functions." +msgid "There are two ways to adapt Python objects to SQLite types: letting your object adapt itself, or using an *adapter callable*. The latter will take precedence above the former. For a library that exports a custom type, it may make sense to enable that type to adapt itself. As an application developer, it may make more sense to take direct control by registering custom adapter functions." msgstr "" -#: ../../library/sqlite3.rst:2140 msgid "How to write adaptable objects" msgstr "" -#: ../../library/sqlite3.rst:2142 -msgid "" -"Suppose we have a :class:`!Point` class that represents a pair of " -"coordinates, ``x`` and ``y``, in a Cartesian coordinate system. The " -"coordinate pair will be stored as a text string in the database, using a " -"semicolon to separate the coordinates. This can be implemented by adding a " -"``__conform__(self, protocol)`` method which returns the adapted value. The " -"object passed to *protocol* will be of type :class:`PrepareProtocol`." +msgid "Suppose we have a :class:`!Point` class that represents a pair of coordinates, ``x`` and ``y``, in a Cartesian coordinate system. The coordinate pair will be stored as a text string in the database, using a semicolon to separate the coordinates. This can be implemented by adding a ``__conform__(self, protocol)`` method which returns the adapted value. The object passed to *protocol* will be of type :class:`PrepareProtocol`." msgstr "" -#: ../../library/sqlite3.rst:2150 msgid "" "class Point:\n" " def __init__(self, x, y):\n" @@ -2535,18 +1475,12 @@ msgid "" "con.close()" msgstr "" -#: ../../library/sqlite3.rst:2174 msgid "How to register adapter callables" msgstr "" -#: ../../library/sqlite3.rst:2176 -msgid "" -"The other possibility is to create a function that converts the Python " -"object to an SQLite-compatible type. This function can then be registered " -"using :func:`register_adapter`." +msgid "The other possibility is to create a function that converts the Python object to an SQLite-compatible type. This function can then be registered using :func:`register_adapter`." msgstr "" -#: ../../library/sqlite3.rst:2180 msgid "" "class Point:\n" " def __init__(self, x, y):\n" @@ -2565,68 +1499,42 @@ msgid "" "con.close()" msgstr "" -#: ../../library/sqlite3.rst:2207 msgid "How to convert SQLite values to custom Python types" msgstr "" -#: ../../library/sqlite3.rst:2209 -msgid "" -"Writing an adapter lets you convert *from* custom Python types *to* SQLite " -"values. To be able to convert *from* SQLite values *to* custom Python types, " -"we use *converters*." +msgid "Writing an adapter lets you convert *from* custom Python types *to* SQLite values. To be able to convert *from* SQLite values *to* custom Python types, we use *converters*." msgstr "" -#: ../../library/sqlite3.rst:2214 -msgid "" -"Let's go back to the :class:`!Point` class. We stored the x and y " -"coordinates separated via semicolons as strings in SQLite." +msgid "Let's go back to the :class:`!Point` class. We stored the x and y coordinates separated via semicolons as strings in SQLite." msgstr "" -#: ../../library/sqlite3.rst:2217 -msgid "" -"First, we'll define a converter function that accepts the string as a " -"parameter and constructs a :class:`!Point` object from it." +msgid "First, we'll define a converter function that accepts the string as a parameter and constructs a :class:`!Point` object from it." msgstr "" -#: ../../library/sqlite3.rst:2222 -msgid "" -"Converter functions are **always** passed a :class:`bytes` object, no matter " -"the underlying SQLite data type." +msgid "Converter functions are **always** passed a :class:`bytes` object, no matter the underlying SQLite data type." msgstr "" -#: ../../library/sqlite3.rst:2225 msgid "" "def convert_point(s):\n" " x, y = map(float, s.split(b\";\"))\n" " return Point(x, y)" msgstr "" -#: ../../library/sqlite3.rst:2231 -msgid "" -"We now need to tell :mod:`!sqlite3` when it should convert a given SQLite " -"value. This is done when connecting to a database, using the *detect_types* " -"parameter of :func:`connect`. There are three options:" +msgid "We now need to tell :mod:`!sqlite3` when it should convert a given SQLite value. This is done when connecting to a database, using the *detect_types* parameter of :func:`connect`. There are three options:" msgstr "" -#: ../../library/sqlite3.rst:2235 msgid "Implicit: set *detect_types* to :const:`PARSE_DECLTYPES`" msgstr "" -#: ../../library/sqlite3.rst:2236 msgid "Explicit: set *detect_types* to :const:`PARSE_COLNAMES`" msgstr "" -#: ../../library/sqlite3.rst:2237 -msgid "" -"Both: set *detect_types* to ``sqlite3.PARSE_DECLTYPES | " -"sqlite3.PARSE_COLNAMES``. Column names take precedence over declared types." +msgid "Both: set *detect_types* to ``sqlite3.PARSE_DECLTYPES | sqlite3.PARSE_COLNAMES``. Column names take precedence over declared types." msgstr "" -#: ../../library/sqlite3.rst:2241 msgid "The following example illustrates the implicit and explicit approaches:" msgstr "" -#: ../../library/sqlite3.rst:2243 msgid "" "class Point:\n" " def __init__(self, x, y):\n" @@ -2668,15 +1576,12 @@ msgid "" "con.close()" msgstr "" -#: ../../library/sqlite3.rst:2294 msgid "Adapter and converter recipes" msgstr "" -#: ../../library/sqlite3.rst:2296 msgid "This section shows recipes for common adapters and converters." msgstr "" -#: ../../library/sqlite3.rst:2298 msgid "" "import datetime as dt\n" "import sqlite3\n" @@ -2714,23 +1619,12 @@ msgid "" "sqlite3.register_converter(\"timestamp\", convert_timestamp)" msgstr "" -#: ../../library/sqlite3.rst:2358 msgid "How to use connection shortcut methods" msgstr "" -#: ../../library/sqlite3.rst:2360 -msgid "" -"Using the :meth:`~Connection.execute`, :meth:`~Connection.executemany`, " -"and :meth:`~Connection.executescript` methods of the :class:`Connection` " -"class, your code can be written more concisely because you don't have to " -"create the (often superfluous) :class:`Cursor` objects explicitly. Instead, " -"the :class:`Cursor` objects are created implicitly and these shortcut " -"methods return the cursor objects. This way, you can execute a ``SELECT`` " -"statement and iterate over it directly using only a single call on " -"the :class:`Connection` object." +msgid "Using the :meth:`~Connection.execute`, :meth:`~Connection.executemany`, and :meth:`~Connection.executescript` methods of the :class:`Connection` class, your code can be written more concisely because you don't have to create the (often superfluous) :class:`Cursor` objects explicitly. Instead, the :class:`Cursor` objects are created implicitly and these shortcut methods return the cursor objects. This way, you can execute a ``SELECT`` statement and iterate over it directly using only a single call on the :class:`Connection` object." msgstr "" -#: ../../library/sqlite3.rst:2369 msgid "" "# Create and fill the table.\n" "con = sqlite3.connect(\":memory:\")\n" @@ -2739,56 +1633,34 @@ msgid "" " (\"C++\", 1985),\n" " (\"Objective-C\", 1984),\n" "]\n" -"con.executemany(\"INSERT INTO lang(name, first_appeared) VALUES(?, ?)\", " -"data)\n" +"con.executemany(\"INSERT INTO lang(name, first_appeared) VALUES(?, ?)\", data)\n" "\n" "# Print the table contents\n" "for row in con.execute(\"SELECT name, first_appeared FROM lang\"):\n" " print(row)\n" "\n" -"print(\"I just deleted\", con.execute(\"DELETE FROM lang\").rowcount, " -"\"rows\")\n" +"print(\"I just deleted\", con.execute(\"DELETE FROM lang\").rowcount, \"rows\")\n" "\n" "# close() is not a shortcut method and it's not called automatically;\n" "# the connection object should be closed manually\n" "con.close()" msgstr "" -#: ../../library/sqlite3.rst:2401 msgid "How to use the connection context manager" msgstr "" -#: ../../library/sqlite3.rst:2403 -msgid "" -"A :class:`Connection` object can be used as a context manager that " -"automatically commits or rolls back open transactions when leaving the body " -"of the context manager. If the body of the :keyword:`with` statement " -"finishes without exceptions, the transaction is committed. If this commit " -"fails, or if the body of the ``with`` statement raises an uncaught " -"exception, the transaction is rolled back. If :attr:`~Connection.autocommit` " -"is ``False``, a new transaction is implicitly opened after committing or " -"rolling back." +msgid "A :class:`Connection` object can be used as a context manager that automatically commits or rolls back open transactions when leaving the body of the context manager. If the body of the :keyword:`with` statement finishes without exceptions, the transaction is committed. If this commit fails, or if the body of the ``with`` statement raises an uncaught exception, the transaction is rolled back. If :attr:`~Connection.autocommit` is ``False``, a new transaction is implicitly opened after committing or rolling back." msgstr "" -#: ../../library/sqlite3.rst:2414 -msgid "" -"If there is no open transaction upon leaving the body of the ``with`` " -"statement, or if :attr:`~Connection.autocommit` is ``True``, the context " -"manager does nothing." +msgid "If there is no open transaction upon leaving the body of the ``with`` statement, or if :attr:`~Connection.autocommit` is ``True``, the context manager does nothing." msgstr "" -#: ../../library/sqlite3.rst:2419 -msgid "" -"The context manager neither implicitly opens a new transaction nor closes " -"the connection. If you need a closing context manager, consider " -"using :meth:`contextlib.closing`." +msgid "The context manager neither implicitly opens a new transaction nor closes the connection. If you need a closing context manager, consider using :meth:`contextlib.closing`." msgstr "" -#: ../../library/sqlite3.rst:2423 msgid "" "con = sqlite3.connect(\":memory:\")\n" -"con.execute(\"CREATE TABLE lang(id INTEGER PRIMARY KEY, name VARCHAR UNIQUE)" -"\")\n" +"con.execute(\"CREATE TABLE lang(id INTEGER PRIMARY KEY, name VARCHAR UNIQUE)\")\n" "\n" "# Successful, con.commit() is called automatically afterwards\n" "with con:\n" @@ -2802,25 +1674,20 @@ msgid "" "except sqlite3.IntegrityError:\n" " print(\"couldn't add Python twice\")\n" "\n" -"# Connection object used as context manager only commits or rollbacks " -"transactions,\n" +"# Connection object used as context manager only commits or rollbacks transactions,\n" "# so the connection object should be closed manually\n" "con.close()" msgstr "" -#: ../../library/sqlite3.rst:2453 msgid "How to work with SQLite URIs" msgstr "" -#: ../../library/sqlite3.rst:2455 msgid "Some useful URI tricks include:" msgstr "" -#: ../../library/sqlite3.rst:2457 msgid "Open a database in read-only mode:" msgstr "" -#: ../../library/sqlite3.rst:2459 msgid "" ">>> con = sqlite3.connect(\"file:tutorial.db?mode=ro\", uri=True)\n" ">>> con.execute(\"CREATE TABLE readonly(data)\")\n" @@ -2829,24 +1696,18 @@ msgid "" ">>> con.close()" msgstr "" -#: ../../library/sqlite3.rst:2467 -msgid "" -"Do not implicitly create a new database file if it does not already exist; " -"will raise :exc:`~sqlite3.OperationalError` if unable to create a new file:" +msgid "Do not implicitly create a new database file if it does not already exist; will raise :exc:`~sqlite3.OperationalError` if unable to create a new file:" msgstr "" -#: ../../library/sqlite3.rst:2470 msgid "" ">>> con = sqlite3.connect(\"file:nosuchdb.db?mode=rw\", uri=True)\n" "Traceback (most recent call last):\n" "OperationalError: unable to open database file" msgstr "" -#: ../../library/sqlite3.rst:2477 msgid "Create a shared named in-memory database:" msgstr "" -#: ../../library/sqlite3.rst:2479 msgid "" "db = \"file:mem1?mode=memory&cache=shared\"\n" "con1 = sqlite3.connect(db, uri=True)\n" @@ -2861,50 +1722,29 @@ msgid "" "con2.close()" msgstr "" -#: ../../library/sqlite3.rst:2493 -msgid "" -"More information about this feature, including a list of parameters, can be " -"found in the `SQLite URI documentation`_." +msgid "More information about this feature, including a list of parameters, can be found in the `SQLite URI documentation`_." msgstr "" -#: ../../library/sqlite3.rst:2502 msgid "How to create and use row factories" msgstr "" -#: ../../library/sqlite3.rst:2504 -msgid "" -"By default, :mod:`!sqlite3` represents each row as a :class:`tuple`. If " -"a :class:`!tuple` does not suit your needs, you can use " -"the :class:`sqlite3.Row` class or a custom :attr:`~Cursor.row_factory`." +msgid "By default, :mod:`!sqlite3` represents each row as a :class:`tuple`. If a :class:`!tuple` does not suit your needs, you can use the :class:`sqlite3.Row` class or a custom :attr:`~Cursor.row_factory`." msgstr "" -#: ../../library/sqlite3.rst:2509 -msgid "" -"While :attr:`!row_factory` exists as an attribute both on " -"the :class:`Cursor` and the :class:`Connection`, it is recommended to " -"set :class:`Connection.row_factory`, so all cursors created from the " -"connection will use the same row factory." +msgid "While :attr:`!row_factory` exists as an attribute both on the :class:`Cursor` and the :class:`Connection`, it is recommended to set :class:`Connection.row_factory`, so all cursors created from the connection will use the same row factory." msgstr "" -#: ../../library/sqlite3.rst:2514 -msgid "" -":class:`!Row` provides indexed and case-insensitive named access to columns, " -"with minimal memory overhead and performance impact over a :class:`!tuple`. " -"To use :class:`!Row` as a row factory, assign it to the :attr:`!row_factory` " -"attribute:" +msgid ":class:`!Row` provides indexed and case-insensitive named access to columns, with minimal memory overhead and performance impact over a :class:`!tuple`. To use :class:`!Row` as a row factory, assign it to the :attr:`!row_factory` attribute:" msgstr "" -#: ../../library/sqlite3.rst:2519 msgid "" ">>> con = sqlite3.connect(\":memory:\")\n" ">>> con.row_factory = sqlite3.Row" msgstr "" -#: ../../library/sqlite3.rst:2524 msgid "Queries now return :class:`!Row` objects:" msgstr "" -#: ../../library/sqlite3.rst:2526 msgid "" ">>> res = con.execute(\"SELECT 'Earth' AS name, 6378 AS radius\")\n" ">>> row = res.fetchone()\n" @@ -2919,33 +1759,21 @@ msgid "" ">>> con.close()" msgstr "" -#: ../../library/sqlite3.rst:2542 -msgid "" -"The ``FROM`` clause can be omitted in the ``SELECT`` statement, as in the " -"above example. In such cases, SQLite returns a single row with columns " -"defined by expressions, e.g. literals, with the given aliases ``expr AS " -"alias``." +msgid "The ``FROM`` clause can be omitted in the ``SELECT`` statement, as in the above example. In such cases, SQLite returns a single row with columns defined by expressions, e.g. literals, with the given aliases ``expr AS alias``." msgstr "" -#: ../../library/sqlite3.rst:2547 -msgid "" -"You can create a custom :attr:`~Cursor.row_factory` that returns each row as " -"a :class:`dict`, with column names mapped to values:" +msgid "You can create a custom :attr:`~Cursor.row_factory` that returns each row as a :class:`dict`, with column names mapped to values:" msgstr "" -#: ../../library/sqlite3.rst:2550 msgid "" "def dict_factory(cursor, row):\n" " fields = [column[0] for column in cursor.description]\n" " return {key: value for key, value in zip(fields, row)}" msgstr "" -#: ../../library/sqlite3.rst:2556 -msgid "" -"Using it, queries now return a :class:`!dict` instead of a :class:`!tuple`:" +msgid "Using it, queries now return a :class:`!dict` instead of a :class:`!tuple`:" msgstr "" -#: ../../library/sqlite3.rst:2558 msgid "" ">>> con = sqlite3.connect(\":memory:\")\n" ">>> con.row_factory = dict_factory\n" @@ -2955,11 +1783,9 @@ msgid "" ">>> con.close()" msgstr "" -#: ../../library/sqlite3.rst:2567 msgid "The following row factory returns a :term:`named tuple`:" msgstr "" -#: ../../library/sqlite3.rst:2569 msgid "" "from collections import namedtuple\n" "\n" @@ -2969,11 +1795,9 @@ msgid "" " return cls._make(row)" msgstr "" -#: ../../library/sqlite3.rst:2578 msgid ":func:`!namedtuple_factory` can be used as follows:" msgstr "" -#: ../../library/sqlite3.rst:2580 msgid "" ">>> con = sqlite3.connect(\":memory:\")\n" ">>> con.row_factory = namedtuple_factory\n" @@ -2988,203 +1812,98 @@ msgid "" ">>> con.close()" msgstr "" -#: ../../library/sqlite3.rst:2594 -msgid "" -"With some adjustments, the above recipe can be adapted to use " -"a :class:`~dataclasses.dataclass`, or any other custom class, instead of " -"a :class:`~collections.namedtuple`." +msgid "With some adjustments, the above recipe can be adapted to use a :class:`~dataclasses.dataclass`, or any other custom class, instead of a :class:`~collections.namedtuple`." msgstr "" -#: ../../library/sqlite3.rst:2602 msgid "How to handle non-UTF-8 text encodings" msgstr "" -#: ../../library/sqlite3.rst:2604 -msgid "" -"By default, :mod:`!sqlite3` uses :class:`str` to adapt SQLite values with " -"the ``TEXT`` data type. This works well for UTF-8 encoded text, but it might " -"fail for other encodings and invalid UTF-8. You can use a " -"custom :attr:`~Connection.text_factory` to handle such cases." +msgid "By default, :mod:`!sqlite3` uses :class:`str` to adapt SQLite values with the ``TEXT`` data type. This works well for UTF-8 encoded text, but it might fail for other encodings and invalid UTF-8. You can use a custom :attr:`~Connection.text_factory` to handle such cases." msgstr "" -#: ../../library/sqlite3.rst:2610 -msgid "" -"Because of SQLite's `flexible typing`_, it is not uncommon to encounter " -"table columns with the ``TEXT`` data type containing non-UTF-8 encodings, or " -"even arbitrary data. To demonstrate, let's assume we have a database with " -"ISO-8859-2 (Latin-2) encoded text, for example a table of Czech-English " -"dictionary entries. Assuming we now have a :class:`Connection` " -"instance :py:data:`!con` connected to this database, we can decode the " -"Latin-2 encoded text using this :attr:`~Connection.text_factory`:" +msgid "Because of SQLite's `flexible typing`_, it is not uncommon to encounter table columns with the ``TEXT`` data type containing non-UTF-8 encodings, or even arbitrary data. To demonstrate, let's assume we have a database with ISO-8859-2 (Latin-2) encoded text, for example a table of Czech-English dictionary entries. Assuming we now have a :class:`Connection` instance :py:data:`!con` connected to this database, we can decode the Latin-2 encoded text using this :attr:`~Connection.text_factory`:" msgstr "" -#: ../../library/sqlite3.rst:2619 msgid "con.text_factory = lambda data: str(data, encoding=\"latin2\")" msgstr "" -#: ../../library/sqlite3.rst:2623 -msgid "" -"For invalid UTF-8 or arbitrary data in stored in ``TEXT`` table columns, you " -"can use the following technique, borrowed from the :ref:`unicode-howto`:" +msgid "For invalid UTF-8 or arbitrary data in stored in ``TEXT`` table columns, you can use the following technique, borrowed from the :ref:`unicode-howto`:" msgstr "" -#: ../../library/sqlite3.rst:2626 msgid "con.text_factory = lambda data: str(data, errors=\"surrogateescape\")" msgstr "" -#: ../../library/sqlite3.rst:2632 -msgid "" -"The :mod:`!sqlite3` module API does not support strings containing " -"surrogates." +msgid "The :mod:`!sqlite3` module API does not support strings containing surrogates." msgstr "" -#: ../../library/sqlite3.rst:2637 msgid ":ref:`unicode-howto`" msgstr "" -#: ../../library/sqlite3.rst:2643 msgid "Explanation" msgstr "" -#: ../../library/sqlite3.rst:2649 msgid "Transaction control" msgstr "" -#: ../../library/sqlite3.rst:2651 -msgid "" -":mod:`!sqlite3` offers multiple methods of controlling whether, when and how " -"database transactions are opened and closed. :ref:`sqlite3-transaction-" -"control-autocommit` is recommended, while :ref:`sqlite3-transaction-control-" -"isolation-level` retains the pre-Python 3.12 behaviour." +msgid ":mod:`!sqlite3` offers multiple methods of controlling whether, when and how database transactions are opened and closed. :ref:`sqlite3-transaction-control-autocommit` is recommended, while :ref:`sqlite3-transaction-control-isolation-level` retains the pre-Python 3.12 behaviour." msgstr "" -#: ../../library/sqlite3.rst:2660 msgid "Transaction control via the ``autocommit`` attribute" msgstr "" -#: ../../library/sqlite3.rst:2662 -msgid "" -"The recommended way of controlling transaction behaviour is through " -"the :attr:`Connection.autocommit` attribute, which should preferably be set " -"using the *autocommit* parameter of :func:`connect`." +msgid "The recommended way of controlling transaction behaviour is through the :attr:`Connection.autocommit` attribute, which should preferably be set using the *autocommit* parameter of :func:`connect`." msgstr "" -#: ../../library/sqlite3.rst:2667 -msgid "" -"It is suggested to set *autocommit* to ``False``, which implies :pep:`249`-" -"compliant transaction control. This means:" +msgid "It is suggested to set *autocommit* to ``False``, which implies :pep:`249`-compliant transaction control. This means:" msgstr "" -#: ../../library/sqlite3.rst:2671 -msgid "" -":mod:`!sqlite3` ensures that a transaction is always open, " -"so :func:`connect`, :meth:`Connection.commit`, " -"and :meth:`Connection.rollback` will implicitly open a new transaction " -"(immediately after closing the pending one, for the latter two). :mod:`!" -"sqlite3` uses ``BEGIN DEFERRED`` statements when opening transactions." +msgid ":mod:`!sqlite3` ensures that a transaction is always open, so :func:`connect`, :meth:`Connection.commit`, and :meth:`Connection.rollback` will implicitly open a new transaction (immediately after closing the pending one, for the latter two). :mod:`!sqlite3` uses ``BEGIN DEFERRED`` statements when opening transactions." msgstr "" -#: ../../library/sqlite3.rst:2676 msgid "Transactions should be committed explicitly using :meth:`!commit`." msgstr "" -#: ../../library/sqlite3.rst:2677 msgid "Transactions should be rolled back explicitly using :meth:`!rollback`." msgstr "" -#: ../../library/sqlite3.rst:2678 -msgid "" -"An implicit rollback is performed if the database " -"is :meth:`~Connection.close`-ed with pending changes." +msgid "An implicit rollback is performed if the database is :meth:`~Connection.close`-ed with pending changes." msgstr "" -#: ../../library/sqlite3.rst:2681 -msgid "" -"Set *autocommit* to ``True`` to enable SQLite's `autocommit mode`_. In this " -"mode, :meth:`Connection.commit` and :meth:`Connection.rollback` have no " -"effect. Note that SQLite's autocommit mode is distinct from the :pep:`249`-" -"compliant :attr:`Connection.autocommit` attribute; " -"use :attr:`Connection.in_transaction` to query the low-level SQLite " -"autocommit mode." +msgid "Set *autocommit* to ``True`` to enable SQLite's `autocommit mode`_. In this mode, :meth:`Connection.commit` and :meth:`Connection.rollback` have no effect. Note that SQLite's autocommit mode is distinct from the :pep:`249`-compliant :attr:`Connection.autocommit` attribute; use :attr:`Connection.in_transaction` to query the low-level SQLite autocommit mode." msgstr "" -#: ../../library/sqlite3.rst:2689 -msgid "" -"Set *autocommit* to :data:`LEGACY_TRANSACTION_CONTROL` to leave transaction " -"control behaviour to the :attr:`Connection.isolation_level` attribute. " -"See :ref:`sqlite3-transaction-control-isolation-level` for more information." +msgid "Set *autocommit* to :data:`LEGACY_TRANSACTION_CONTROL` to leave transaction control behaviour to the :attr:`Connection.isolation_level` attribute. See :ref:`sqlite3-transaction-control-isolation-level` for more information." msgstr "" -#: ../../library/sqlite3.rst:2698 msgid "Transaction control via the ``isolation_level`` attribute" msgstr "" -#: ../../library/sqlite3.rst:2702 -msgid "" -"The recommended way of controlling transactions is via " -"the :attr:`~Connection.autocommit` attribute. See :ref:`sqlite3-transaction-" -"control-autocommit`." +msgid "The recommended way of controlling transactions is via the :attr:`~Connection.autocommit` attribute. See :ref:`sqlite3-transaction-control-autocommit`." msgstr "" -#: ../../library/sqlite3.rst:2706 -msgid "" -"If :attr:`Connection.autocommit` is set " -"to :data:`LEGACY_TRANSACTION_CONTROL` (the default), transaction behaviour " -"is controlled using the :attr:`Connection.isolation_level` attribute. " -"Otherwise, :attr:`!isolation_level` has no effect." +msgid "If :attr:`Connection.autocommit` is set to :data:`LEGACY_TRANSACTION_CONTROL` (the default), transaction behaviour is controlled using the :attr:`Connection.isolation_level` attribute. Otherwise, :attr:`!isolation_level` has no effect." msgstr "" -#: ../../library/sqlite3.rst:2712 -msgid "" -"If the connection attribute :attr:`~Connection.isolation_level` is not " -"``None``, new transactions are implicitly opened " -"before :meth:`~Cursor.execute` and :meth:`~Cursor.executemany` executes " -"``INSERT``, ``UPDATE``, ``DELETE``, or ``REPLACE`` statements; for other " -"statements, no implicit transaction handling is performed. Use " -"the :meth:`~Connection.commit` and :meth:`~Connection.rollback` methods to " -"respectively commit and roll back pending transactions. You can choose the " -"underlying `SQLite transaction behaviour`_ — that is, whether and what type " -"of ``BEGIN`` statements :mod:`!sqlite3` implicitly executes – via " -"the :attr:`~Connection.isolation_level` attribute." -msgstr "" - -#: ../../library/sqlite3.rst:2725 -msgid "" -"If :attr:`~Connection.isolation_level` is set to ``None``, no transactions " -"are implicitly opened at all. This leaves the underlying SQLite library in " -"`autocommit mode`_, but also allows the user to perform their own " -"transaction handling using explicit SQL statements. The underlying SQLite " -"library autocommit mode can be queried using " -"the :attr:`~Connection.in_transaction` attribute." +msgid "If the connection attribute :attr:`~Connection.isolation_level` is not ``None``, new transactions are implicitly opened before :meth:`~Cursor.execute` and :meth:`~Cursor.executemany` executes ``INSERT``, ``UPDATE``, ``DELETE``, or ``REPLACE`` statements; for other statements, no implicit transaction handling is performed. Use the :meth:`~Connection.commit` and :meth:`~Connection.rollback` methods to respectively commit and roll back pending transactions. You can choose the underlying `SQLite transaction behaviour`_ — that is, whether and what type of ``BEGIN`` statements :mod:`!sqlite3` implicitly executes – via the :attr:`~Connection.isolation_level` attribute." msgstr "" -#: ../../library/sqlite3.rst:2733 -msgid "" -"The :meth:`~Cursor.executescript` method implicitly commits any pending " -"transaction before execution of the given SQL script, regardless of the " -"value of :attr:`~Connection.isolation_level`." +msgid "If :attr:`~Connection.isolation_level` is set to ``None``, no transactions are implicitly opened at all. This leaves the underlying SQLite library in `autocommit mode`_, but also allows the user to perform their own transaction handling using explicit SQL statements. The underlying SQLite library autocommit mode can be queried using the :attr:`~Connection.in_transaction` attribute." msgstr "" -#: ../../library/sqlite3.rst:2737 -msgid "" -":mod:`!sqlite3` used to implicitly commit an open transaction before DDL " -"statements. This is no longer the case." +msgid "The :meth:`~Cursor.executescript` method implicitly commits any pending transaction before execution of the given SQL script, regardless of the value of :attr:`~Connection.isolation_level`." msgstr "" -#: ../../library/sqlite3.rst:2741 -msgid "" -"The recommended way of controlling transactions is now via " -"the :attr:`~Connection.autocommit` attribute." +msgid ":mod:`!sqlite3` used to implicitly commit an open transaction before DDL statements. This is no longer the case." +msgstr "" + +msgid "The recommended way of controlling transactions is now via the :attr:`~Connection.autocommit` attribute." msgstr "" -#: ../../library/sqlite3.rst:1483 msgid "? (question mark)" msgstr "" -#: ../../library/sqlite3.rst:1483 ../../library/sqlite3.rst:1484 msgid "in SQL statements" msgstr "" -#: ../../library/sqlite3.rst:1484 msgid ": (colon)" msgstr "" diff --git a/library/ssl.po b/library/ssl.po index ff6fce62..d393fdb6 100644 --- a/library/ssl.po +++ b/library/ssl.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:13+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -25,124 +25,63 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/ssl.rst:2 msgid ":mod:`!ssl` --- TLS/SSL wrapper for socket objects" msgstr "" -#: ../../library/ssl.rst:10 msgid "**Source code:** :source:`Lib/ssl.py`" msgstr "" -#: ../../library/ssl.rst:18 -msgid "" -"This module provides access to Transport Layer Security (often known as " -"\"Secure Sockets Layer\") encryption and peer authentication facilities for " -"network sockets, both client-side and server-side. This module uses the " -"OpenSSL library." +msgid "This module provides access to Transport Layer Security (often known as \"Secure Sockets Layer\") encryption and peer authentication facilities for network sockets, both client-side and server-side. This module uses the OpenSSL library." msgstr "" -#: ../../includes/optional-module.rst:1 -msgid "" -"This is an :term:`optional module`. If it is missing from your copy of " -"CPython, look for documentation from your distributor (that is, whoever " -"provided Python to you). If you are the distributor, see :ref:`optional-" -"module-requirements`." +msgid "This is an :term:`optional module`. If it is missing from your copy of CPython, look for documentation from your distributor (that is, whoever provided Python to you). If you are the distributor, see :ref:`optional-module-requirements`." msgstr "" -#: ../../library/ssl.rst:27 -msgid "" -"Some behavior may be platform dependent, since calls are made to the " -"operating system socket APIs. The installed version of OpenSSL may also " -"cause variations in behavior. For example, TLSv1.3 comes with OpenSSL " -"version 1.1.1." +msgid "Some behavior may be platform dependent, since calls are made to the operating system socket APIs. The installed version of OpenSSL may also cause variations in behavior. For example, TLSv1.3 comes with OpenSSL version 1.1.1." msgstr "" -#: ../../library/ssl.rst:33 -msgid "" -"Don't use this module without reading the :ref:`ssl-security`. Doing so may " -"lead to a false sense of security, as the default settings of the ssl module " -"are not necessarily appropriate for your application." +msgid "Don't use this module without reading the :ref:`ssl-security`. Doing so may lead to a false sense of security, as the default settings of the ssl module are not necessarily appropriate for your application." msgstr "" -#: ../../library/ssl.rst:456 ../../library/ssl.rst:471 -#: ../../includes/wasm-notavail.rst:3 msgid "Availability" msgstr "" -#: ../../includes/wasm-notavail.rst:5 -msgid "" -"This module does not work or is not available on WebAssembly. See :ref:`wasm-" -"availability` for more information." +msgid "This module does not work or is not available on WebAssembly. See :ref:`wasm-availability` for more information." msgstr "" -#: ../../library/ssl.rst:39 -msgid "" -"This section documents the objects and functions in the ``ssl`` module; for " -"more general information about TLS, SSL, and certificates, the reader is " -"referred to the documents in the \"See Also\" section at the bottom." +msgid "This section documents the objects and functions in the ``ssl`` module; for more general information about TLS, SSL, and certificates, the reader is referred to the documents in the \"See Also\" section at the bottom." msgstr "" -#: ../../library/ssl.rst:43 -msgid "" -"This module provides a class, :class:`ssl.SSLSocket`, which is derived from " -"the :class:`socket.socket` type, and provides a socket-like wrapper that " -"also encrypts and decrypts the data going over the socket with SSL. It " -"supports additional methods such as :meth:`getpeercert`, which retrieves the " -"certificate of the other side of the connection, :meth:`cipher`, which " -"retrieves the cipher being used for the secure connection " -"or :meth:`get_verified_chain`, :meth:`get_unverified_chain` which retrieves " -"certificate chain." +msgid "This module provides a class, :class:`ssl.SSLSocket`, which is derived from the :class:`socket.socket` type, and provides a socket-like wrapper that also encrypts and decrypts the data going over the socket with SSL. It supports additional methods such as :meth:`getpeercert`, which retrieves the certificate of the other side of the connection, :meth:`cipher`, which retrieves the cipher being used for the secure connection or :meth:`get_verified_chain`, :meth:`get_unverified_chain` which retrieves certificate chain." msgstr "" -#: ../../library/ssl.rst:52 -msgid "" -"For more sophisticated applications, the :class:`ssl.SSLContext` class helps " -"manage settings and certificates, which can then be inherited by SSL sockets " -"created through the :meth:`SSLContext.wrap_socket` method." +msgid "For more sophisticated applications, the :class:`ssl.SSLContext` class helps manage settings and certificates, which can then be inherited by SSL sockets created through the :meth:`SSLContext.wrap_socket` method." msgstr "" -#: ../../library/ssl.rst:56 msgid "Updated to support linking with OpenSSL 1.1.0" msgstr "" -#: ../../library/ssl.rst:61 -msgid "" -"OpenSSL 0.9.8, 1.0.0 and 1.0.1 are deprecated and no longer supported. In " -"the future the ssl module will require at least OpenSSL 1.0.2 or 1.1.0." +msgid "OpenSSL 0.9.8, 1.0.0 and 1.0.1 are deprecated and no longer supported. In the future the ssl module will require at least OpenSSL 1.0.2 or 1.1.0." msgstr "" -#: ../../library/ssl.rst:67 -msgid "" -":pep:`644` has been implemented. The ssl module requires OpenSSL 1.1.1 or " -"newer." +msgid ":pep:`644` has been implemented. The ssl module requires OpenSSL 1.1.1 or newer." msgstr "" -#: ../../library/ssl.rst:70 -msgid "" -"Use of deprecated constants and functions result in deprecation warnings." +msgid "Use of deprecated constants and functions result in deprecation warnings." msgstr "" -#: ../../library/ssl.rst:74 msgid "Functions, constants, and exceptions" msgstr "" -#: ../../library/ssl.rst:78 msgid "Socket creation" msgstr "" -#: ../../library/ssl.rst:80 -msgid "" -"Instances of :class:`SSLSocket` must be created using " -"the :meth:`SSLContext.wrap_socket` method. The helper " -"function :func:`create_default_context` returns a new context with secure " -"default settings." +msgid "Instances of :class:`SSLSocket` must be created using the :meth:`SSLContext.wrap_socket` method. The helper function :func:`create_default_context` returns a new context with secure default settings." msgstr "" -#: ../../library/ssl.rst:85 msgid "Client socket example with default context and IPv4/IPv6 dual stack::" msgstr "" -#: ../../library/ssl.rst:87 msgid "" "import socket\n" "import ssl\n" @@ -155,11 +94,9 @@ msgid "" " print(ssock.version())" msgstr "" -#: ../../library/ssl.rst:98 msgid "Client socket example with custom context and IPv4::" msgstr "" -#: ../../library/ssl.rst:100 msgid "" "hostname = 'www.python.org'\n" "# PROTOCOL_TLS_CLIENT requires valid cert chain and hostname\n" @@ -171,11 +108,9 @@ msgid "" " print(ssock.version())" msgstr "" -#: ../../library/ssl.rst:110 msgid "Server socket example listening on localhost IPv4::" msgstr "" -#: ../../library/ssl.rst:112 msgid "" "context = ssl.SSLContext(ssl.PROTOCOL_TLS_SERVER)\n" "context.load_cert_chain('/path/to/certchain.pem', '/path/to/private.key')\n" @@ -188,282 +123,142 @@ msgid "" " ..." msgstr "" -#: ../../library/ssl.rst:124 msgid "Context creation" msgstr "" -#: ../../library/ssl.rst:126 -msgid "" -"A convenience function helps create :class:`SSLContext` objects for common " -"purposes." +msgid "A convenience function helps create :class:`SSLContext` objects for common purposes." msgstr "" -#: ../../library/ssl.rst:132 -msgid "" -"Return a new :class:`SSLContext` object with default settings for the given " -"*purpose*. The settings are chosen by the :mod:`!ssl` module, and usually " -"represent a higher security level than when calling the :class:`SSLContext` " -"constructor directly." +msgid "Return a new :class:`SSLContext` object with default settings for the given *purpose*. The settings are chosen by the :mod:`!ssl` module, and usually represent a higher security level than when calling the :class:`SSLContext` constructor directly." msgstr "" -#: ../../library/ssl.rst:137 -msgid "" -"*cafile*, *capath*, *cadata* represent optional CA certificates to trust for " -"certificate verification, as in :meth:`SSLContext.load_verify_locations`. " -"If all three are :const:`None`, this function can choose to trust the " -"system's default CA certificates instead." +msgid "*cafile*, *capath*, *cadata* represent optional CA certificates to trust for certificate verification, as in :meth:`SSLContext.load_verify_locations`. If all three are :const:`None`, this function can choose to trust the system's default CA certificates instead." msgstr "" -#: ../../library/ssl.rst:143 -msgid "" -"The settings are: :data:`PROTOCOL_TLS_CLIENT` " -"or :data:`PROTOCOL_TLS_SERVER`, :data:`OP_NO_SSLv2`, and :data:`OP_NO_SSLv3` " -"with high encryption cipher suites without RC4 and without unauthenticated " -"cipher suites. Passing :const:`~Purpose.SERVER_AUTH` as *purpose* " -"sets :data:`~SSLContext.verify_mode` to :data:`CERT_REQUIRED` and either " -"loads CA certificates (when at least one of *cafile*, *capath* or *cadata* " -"is given) or uses :meth:`SSLContext.load_default_certs` to load default CA " -"certificates." +msgid "The settings are: :data:`PROTOCOL_TLS_CLIENT` or :data:`PROTOCOL_TLS_SERVER`, :data:`OP_NO_SSLv2`, and :data:`OP_NO_SSLv3` with high encryption cipher suites without RC4 and without unauthenticated cipher suites. Passing :const:`~Purpose.SERVER_AUTH` as *purpose* sets :data:`~SSLContext.verify_mode` to :data:`CERT_REQUIRED` and either loads CA certificates (when at least one of *cafile*, *capath* or *cadata* is given) or uses :meth:`SSLContext.load_default_certs` to load default CA certificates." msgstr "" -#: ../../library/ssl.rst:152 -msgid "" -"When :attr:`~SSLContext.keylog_filename` is supported and the environment " -"variable :envvar:`SSLKEYLOGFILE` is set, :func:`create_default_context` " -"enables key logging." +msgid "When :attr:`~SSLContext.keylog_filename` is supported and the environment variable :envvar:`SSLKEYLOGFILE` is set, :func:`create_default_context` enables key logging." msgstr "" -#: ../../library/ssl.rst:156 -msgid "" -"The default settings for this context " -"include :data:`VERIFY_X509_PARTIAL_CHAIN` and :data:`VERIFY_X509_STRICT`. " -"These make the underlying OpenSSL implementation behave more like a " -"conforming implementation of :rfc:`5280`, in exchange for a small amount of " -"incompatibility with older X.509 certificates." +msgid "The default settings for this context include :data:`VERIFY_X509_PARTIAL_CHAIN` and :data:`VERIFY_X509_STRICT`. These make the underlying OpenSSL implementation behave more like a conforming implementation of :rfc:`5280`, in exchange for a small amount of incompatibility with older X.509 certificates." msgstr "" -#: ../../library/ssl.rst:163 -msgid "" -"The protocol, options, cipher and other settings may change to more " -"restrictive values anytime without prior deprecation. The values represent " -"a fair balance between compatibility and security." +msgid "The protocol, options, cipher and other settings may change to more restrictive values anytime without prior deprecation. The values represent a fair balance between compatibility and security." msgstr "" -#: ../../library/ssl.rst:167 -msgid "" -"If your application needs specific settings, you should create " -"a :class:`SSLContext` and apply the settings yourself." +msgid "If your application needs specific settings, you should create a :class:`SSLContext` and apply the settings yourself." msgstr "" -#: ../../library/ssl.rst:171 -msgid "" -"If you find that when certain older clients or servers attempt to connect " -"with a :class:`SSLContext` created by this function that they get an error " -"stating \"Protocol or cipher suite mismatch\", it may be that they only " -"support SSL3.0 which this function excludes using the :data:`OP_NO_SSLv3`. " -"SSL3.0 is widely considered to be `completely broken `_. If you still wish to continue to use this " -"function but still allow SSL 3.0 connections you can re-enable them using::" +msgid "If you find that when certain older clients or servers attempt to connect with a :class:`SSLContext` created by this function that they get an error stating \"Protocol or cipher suite mismatch\", it may be that they only support SSL3.0 which this function excludes using the :data:`OP_NO_SSLv3`. SSL3.0 is widely considered to be `completely broken `_. If you still wish to continue to use this function but still allow SSL 3.0 connections you can re-enable them using::" msgstr "" -#: ../../library/ssl.rst:180 msgid "" "ctx = ssl.create_default_context(Purpose.CLIENT_AUTH)\n" "ctx.options &= ~ssl.OP_NO_SSLv3" msgstr "" -#: ../../library/ssl.rst:184 -msgid "" -"This context enables :data:`VERIFY_X509_STRICT` by default, which may reject " -"pre-:rfc:`5280` or malformed certificates that the underlying OpenSSL " -"implementation otherwise would accept. While disabling this is not " -"recommended, you can do so using::" +msgid "This context enables :data:`VERIFY_X509_STRICT` by default, which may reject pre-:rfc:`5280` or malformed certificates that the underlying OpenSSL implementation otherwise would accept. While disabling this is not recommended, you can do so using::" msgstr "" -#: ../../library/ssl.rst:189 msgid "" "ctx = ssl.create_default_context()\n" "ctx.verify_flags &= ~ssl.VERIFY_X509_STRICT" msgstr "" -#: ../../library/ssl.rst:196 msgid "RC4 was dropped from the default cipher string." msgstr "" -#: ../../library/ssl.rst:200 msgid "ChaCha20/Poly1305 was added to the default cipher string." msgstr "" -#: ../../library/ssl.rst:202 msgid "3DES was dropped from the default cipher string." msgstr "" -#: ../../library/ssl.rst:206 msgid "Support for key logging to :envvar:`SSLKEYLOGFILE` was added." msgstr "" -#: ../../library/ssl.rst:210 -msgid "" -"The context now uses :data:`PROTOCOL_TLS_CLIENT` " -"or :data:`PROTOCOL_TLS_SERVER` protocol instead of " -"generic :data:`PROTOCOL_TLS`." +msgid "The context now uses :data:`PROTOCOL_TLS_CLIENT` or :data:`PROTOCOL_TLS_SERVER` protocol instead of generic :data:`PROTOCOL_TLS`." msgstr "" -#: ../../library/ssl.rst:216 -msgid "" -"The context now uses :data:`VERIFY_X509_PARTIAL_CHAIN` " -"and :data:`VERIFY_X509_STRICT` in its default verify flags." +msgid "The context now uses :data:`VERIFY_X509_PARTIAL_CHAIN` and :data:`VERIFY_X509_STRICT` in its default verify flags." msgstr "" -#: ../../library/ssl.rst:221 msgid "Exceptions" msgstr "" -#: ../../library/ssl.rst:225 -msgid "" -"Raised to signal an error from the underlying SSL implementation (currently " -"provided by the OpenSSL library). This signifies some problem in the higher-" -"level encryption and authentication layer that's superimposed on the " -"underlying network connection. This error is a subtype of :exc:`OSError`. " -"The error code and message of :exc:`SSLError` instances are provided by the " -"OpenSSL library." +msgid "Raised to signal an error from the underlying SSL implementation (currently provided by the OpenSSL library). This signifies some problem in the higher-level encryption and authentication layer that's superimposed on the underlying network connection. This error is a subtype of :exc:`OSError`. The error code and message of :exc:`SSLError` instances are provided by the OpenSSL library." msgstr "" -#: ../../library/ssl.rst:232 msgid ":exc:`SSLError` used to be a subtype of :exc:`socket.error`." msgstr "" -#: ../../library/ssl.rst:237 -msgid "" -"A string mnemonic designating the OpenSSL submodule in which the error " -"occurred, such as ``SSL``, ``PEM`` or ``X509``. The range of possible " -"values depends on the OpenSSL version." +msgid "A string mnemonic designating the OpenSSL submodule in which the error occurred, such as ``SSL``, ``PEM`` or ``X509``. The range of possible values depends on the OpenSSL version." msgstr "" -#: ../../library/ssl.rst:245 -msgid "" -"A string mnemonic designating the reason this error occurred, for example " -"``CERTIFICATE_VERIFY_FAILED``. The range of possible values depends on the " -"OpenSSL version." +msgid "A string mnemonic designating the reason this error occurred, for example ``CERTIFICATE_VERIFY_FAILED``. The range of possible values depends on the OpenSSL version." msgstr "" -#: ../../library/ssl.rst:253 -msgid "" -"A subclass of :exc:`SSLError` raised when trying to read or write and the " -"SSL connection has been closed cleanly. Note that this doesn't mean that " -"the underlying transport (read TCP) has been closed." +msgid "A subclass of :exc:`SSLError` raised when trying to read or write and the SSL connection has been closed cleanly. Note that this doesn't mean that the underlying transport (read TCP) has been closed." msgstr "" -#: ../../library/ssl.rst:261 -msgid "" -"A subclass of :exc:`SSLError` raised by a :ref:`non-blocking SSL socket ` when trying to read or write data, but more data needs to be " -"received on the underlying TCP transport before the request can be fulfilled." +msgid "A subclass of :exc:`SSLError` raised by a :ref:`non-blocking SSL socket ` when trying to read or write data, but more data needs to be received on the underlying TCP transport before the request can be fulfilled." msgstr "" -#: ../../library/ssl.rst:270 -msgid "" -"A subclass of :exc:`SSLError` raised by a :ref:`non-blocking SSL socket ` when trying to read or write data, but more data needs to be " -"sent on the underlying TCP transport before the request can be fulfilled." +msgid "A subclass of :exc:`SSLError` raised by a :ref:`non-blocking SSL socket ` when trying to read or write data, but more data needs to be sent on the underlying TCP transport before the request can be fulfilled." msgstr "" -#: ../../library/ssl.rst:279 -msgid "" -"A subclass of :exc:`SSLError` raised when a system error was encountered " -"while trying to fulfill an operation on a SSL socket. Unfortunately, there " -"is no easy way to inspect the original errno number." +msgid "A subclass of :exc:`SSLError` raised when a system error was encountered while trying to fulfill an operation on a SSL socket. Unfortunately, there is no easy way to inspect the original errno number." msgstr "" -#: ../../library/ssl.rst:287 -msgid "" -"A subclass of :exc:`SSLError` raised when the SSL connection has been " -"terminated abruptly. Generally, you shouldn't try to reuse the underlying " -"transport when this error is encountered." +msgid "A subclass of :exc:`SSLError` raised when the SSL connection has been terminated abruptly. Generally, you shouldn't try to reuse the underlying transport when this error is encountered." msgstr "" -#: ../../library/ssl.rst:295 -msgid "" -"A subclass of :exc:`SSLError` raised when certificate validation has failed." +msgid "A subclass of :exc:`SSLError` raised when certificate validation has failed." msgstr "" -#: ../../library/ssl.rst:302 msgid "A numeric error number that denotes the verification error." msgstr "" -#: ../../library/ssl.rst:306 msgid "A human readable string of the verification error." msgstr "" -#: ../../library/ssl.rst:310 msgid "An alias for :exc:`SSLCertVerificationError`." msgstr "" -#: ../../library/ssl.rst:312 msgid "The exception is now an alias for :exc:`SSLCertVerificationError`." msgstr "" -#: ../../library/ssl.rst:317 msgid "Random generation" msgstr "" -#: ../../library/ssl.rst:321 -msgid "" -"Return *num* cryptographically strong pseudo-random bytes. Raises " -"an :class:`SSLError` if the PRNG has not been seeded with enough data or if " -"the operation is not supported by the current RAND " -"method. :func:`RAND_status` can be used to check the status of the PRNG " -"and :func:`RAND_add` can be used to seed the PRNG." +msgid "Return *num* cryptographically strong pseudo-random bytes. Raises an :class:`SSLError` if the PRNG has not been seeded with enough data or if the operation is not supported by the current RAND method. :func:`RAND_status` can be used to check the status of the PRNG and :func:`RAND_add` can be used to seed the PRNG." msgstr "" -#: ../../library/ssl.rst:327 msgid "For almost all applications :func:`os.urandom` is preferable." msgstr "" -#: ../../library/ssl.rst:329 -msgid "" -"Read the Wikipedia article, `Cryptographically secure pseudorandom number " -"generator (CSPRNG) `_, to get the " -"requirements of a cryptographically strong generator." +msgid "Read the Wikipedia article, `Cryptographically secure pseudorandom number generator (CSPRNG) `_, to get the requirements of a cryptographically strong generator." msgstr "" -#: ../../library/ssl.rst:338 -msgid "" -"Return ``True`` if the SSL pseudo-random number generator has been seeded " -"with 'enough' randomness, and ``False`` otherwise. You can " -"use :func:`ssl.RAND_egd` and :func:`ssl.RAND_add` to increase the randomness " -"of the pseudo-random number generator." +msgid "Return ``True`` if the SSL pseudo-random number generator has been seeded with 'enough' randomness, and ``False`` otherwise. You can use :func:`ssl.RAND_egd` and :func:`ssl.RAND_add` to increase the randomness of the pseudo-random number generator." msgstr "" -#: ../../library/ssl.rst:345 -msgid "" -"Mix the given *bytes* into the SSL pseudo-random number generator. The " -"parameter *entropy* (a float) is a lower bound on the entropy contained in " -"string (so you can always use ``0.0``). See :rfc:`1750` for more " -"information on sources of entropy." +msgid "Mix the given *bytes* into the SSL pseudo-random number generator. The parameter *entropy* (a float) is a lower bound on the entropy contained in string (so you can always use ``0.0``). See :rfc:`1750` for more information on sources of entropy." msgstr "" -#: ../../library/ssl.rst:350 msgid "Writable :term:`bytes-like object` is now accepted." msgstr "" -#: ../../library/ssl.rst:354 msgid "Certificate handling" msgstr "" -#: ../../library/ssl.rst:362 -msgid "" -"Return the time in seconds since the epoch, given the ``cert_time`` string " -"representing the \"notBefore\" or \"notAfter\" date from a certificate in " -"``\"%b %d %H:%M:%S %Y %Z\"`` strptime format (C locale)." +msgid "Return the time in seconds since the epoch, given the ``cert_time`` string representing the \"notBefore\" or \"notAfter\" date from a certificate in ``\"%b %d %H:%M:%S %Y %Z\"`` strptime format (C locale)." msgstr "" -#: ../../library/ssl.rst:367 msgid "Here's an example:" msgstr "" -#: ../../library/ssl.rst:369 msgid "" ">>> import ssl\n" ">>> import datetime as dt\n" @@ -474,613 +269,313 @@ msgid "" "2018-01-05 09:34:43+00:00" msgstr "" -#: ../../library/ssl.rst:379 msgid "\"notBefore\" or \"notAfter\" dates must use GMT (:rfc:`5280`)." msgstr "" -#: ../../library/ssl.rst:381 -msgid "" -"Interpret the input time as a time in UTC as specified by 'GMT' timezone in " -"the input string. Local timezone was used previously. Return an integer (no " -"fractions of a second in the input format)" +msgid "Interpret the input time as a time in UTC as specified by 'GMT' timezone in the input string. Local timezone was used previously. Return an integer (no fractions of a second in the input format)" +msgstr "" + +msgid "Given the address ``addr`` of an SSL-protected server, as a (*hostname*, *port-number*) pair, fetches the server's certificate, and returns it as a PEM-encoded string. If ``ssl_version`` is specified, uses that version of the SSL protocol to attempt to connect to the server. If *ca_certs* is specified, it should be a file containing a list of root certificates, the same format as used for the *cafile* parameter in :meth:`SSLContext.load_verify_locations`. The call will attempt to validate the server certificate against that set of root certificates, and will fail if the validation attempt fails. A timeout can be specified with the ``timeout`` parameter." msgstr "" -#: ../../library/ssl.rst:390 -msgid "" -"Given the address ``addr`` of an SSL-protected server, as a (*hostname*, " -"*port-number*) pair, fetches the server's certificate, and returns it as a " -"PEM-encoded string. If ``ssl_version`` is specified, uses that version of " -"the SSL protocol to attempt to connect to the server. If *ca_certs* is " -"specified, it should be a file containing a list of root certificates, the " -"same format as used for the *cafile* parameter " -"in :meth:`SSLContext.load_verify_locations`. The call will attempt to " -"validate the server certificate against that set of root certificates, and " -"will fail if the validation attempt fails. A timeout can be specified with " -"the ``timeout`` parameter." -msgstr "" - -#: ../../library/ssl.rst:401 msgid "This function is now IPv6-compatible." msgstr "" -#: ../../library/ssl.rst:404 -msgid "" -"The default *ssl_version* is changed from :data:`PROTOCOL_SSLv3` " -"to :data:`PROTOCOL_TLS` for maximum compatibility with modern servers." +msgid "The default *ssl_version* is changed from :data:`PROTOCOL_SSLv3` to :data:`PROTOCOL_TLS` for maximum compatibility with modern servers." msgstr "" -#: ../../library/ssl.rst:408 msgid "The *timeout* parameter was added." msgstr "" -#: ../../library/ssl.rst:413 -msgid "" -"Given a certificate as a DER-encoded blob of bytes, returns a PEM-encoded " -"string version of the same certificate." +msgid "Given a certificate as a DER-encoded blob of bytes, returns a PEM-encoded string version of the same certificate." msgstr "" -#: ../../library/ssl.rst:418 -msgid "" -"Given a certificate as an ASCII PEM string, returns a DER-encoded sequence " -"of bytes for that same certificate." +msgid "Given a certificate as an ASCII PEM string, returns a DER-encoded sequence of bytes for that same certificate." msgstr "" -#: ../../library/ssl.rst:423 -msgid "" -"Returns a named tuple with paths to OpenSSL's default cafile and capath. The " -"paths are the same as used by :meth:`SSLContext.set_default_verify_paths`. " -"The return value is a :term:`named tuple` ``DefaultVerifyPaths``:" +msgid "Returns a named tuple with paths to OpenSSL's default cafile and capath. The paths are the same as used by :meth:`SSLContext.set_default_verify_paths`. The return value is a :term:`named tuple` ``DefaultVerifyPaths``:" msgstr "" -#: ../../library/ssl.rst:428 -msgid "" -":attr:`cafile` - resolved path to cafile or ``None`` if the file doesn't " -"exist," +msgid ":attr:`cafile` - resolved path to cafile or ``None`` if the file doesn't exist," msgstr "" -#: ../../library/ssl.rst:429 -msgid "" -":attr:`capath` - resolved path to capath or ``None`` if the directory " -"doesn't exist," +msgid ":attr:`capath` - resolved path to capath or ``None`` if the directory doesn't exist," msgstr "" -#: ../../library/ssl.rst:430 -msgid "" -":attr:`openssl_cafile_env` - OpenSSL's environment key that points to a " -"cafile," +msgid ":attr:`openssl_cafile_env` - OpenSSL's environment key that points to a cafile," msgstr "" -#: ../../library/ssl.rst:431 msgid ":attr:`openssl_cafile` - hard coded path to a cafile," msgstr "" -#: ../../library/ssl.rst:432 -msgid "" -":attr:`openssl_capath_env` - OpenSSL's environment key that points to a " -"capath," +msgid ":attr:`openssl_capath_env` - OpenSSL's environment key that points to a capath," msgstr "" -#: ../../library/ssl.rst:433 msgid ":attr:`openssl_capath` - hard coded path to a capath directory" msgstr "" -#: ../../library/ssl.rst:439 -msgid "" -"Retrieve certificates from Windows' system cert store. *store_name* may be " -"one of ``CA``, ``ROOT`` or ``MY``. Windows may provide additional cert " -"stores, too." +msgid "Retrieve certificates from Windows' system cert store. *store_name* may be one of ``CA``, ``ROOT`` or ``MY``. Windows may provide additional cert stores, too." msgstr "" -#: ../../library/ssl.rst:443 -msgid "" -"The function returns a list of (cert_bytes, encoding_type, trust) tuples. " -"The encoding_type specifies the encoding of cert_bytes. It is " -"either :const:`x509_asn` for X.509 ASN.1 data or :const:`pkcs_7_asn` for " -"PKCS#7 ASN.1 data. Trust specifies the purpose of the certificate as a set " -"of OIDS or exactly ``True`` if the certificate is trustworthy for all " -"purposes." +msgid "The function returns a list of (cert_bytes, encoding_type, trust) tuples. The encoding_type specifies the encoding of cert_bytes. It is either :const:`x509_asn` for X.509 ASN.1 data or :const:`pkcs_7_asn` for PKCS#7 ASN.1 data. Trust specifies the purpose of the certificate as a set of OIDS or exactly ``True`` if the certificate is trustworthy for all purposes." msgstr "" -#: ../../library/ssl.rst:450 ../../library/ssl.rst:1610 -#: ../../library/ssl.rst:1910 msgid "Example::" msgstr "" -#: ../../library/ssl.rst:452 msgid "" ">>> ssl.enum_certificates(\"CA\")\n" "[(b'data...', 'x509_asn', {'1.3.6.1.5.5.7.3.1', '1.3.6.1.5.5.7.3.2'}),\n" " (b'data...', 'x509_asn', True)]" msgstr "" -#: ../../library/ssl.rst:462 -msgid "" -"Retrieve CRLs from Windows' system cert store. *store_name* may be one of " -"``CA``, ``ROOT`` or ``MY``. Windows may provide additional cert stores, too." +msgid "Retrieve CRLs from Windows' system cert store. *store_name* may be one of ``CA``, ``ROOT`` or ``MY``. Windows may provide additional cert stores, too." msgstr "" -#: ../../library/ssl.rst:466 -msgid "" -"The function returns a list of (cert_bytes, encoding_type, trust) tuples. " -"The encoding_type specifies the encoding of cert_bytes. It is " -"either :const:`x509_asn` for X.509 ASN.1 data or :const:`pkcs_7_asn` for " -"PKCS#7 ASN.1 data." +msgid "The function returns a list of (cert_bytes, encoding_type, trust) tuples. The encoding_type specifies the encoding of cert_bytes. It is either :const:`x509_asn` for X.509 ASN.1 data or :const:`pkcs_7_asn` for PKCS#7 ASN.1 data." msgstr "" -#: ../../library/ssl.rst:477 msgid "Constants" msgstr "" -#: ../../library/ssl.rst:479 -msgid "" -"All constants are now :class:`enum.IntEnum` or :class:`enum.IntFlag` " -"collections." +msgid "All constants are now :class:`enum.IntEnum` or :class:`enum.IntFlag` collections." msgstr "" -#: ../../library/ssl.rst:485 -msgid "" -"Possible value for :attr:`SSLContext.verify_mode`. Except " -"for :const:`PROTOCOL_TLS_CLIENT`, it is the default mode. With client-side " -"sockets, just about any cert is accepted. Validation errors, such as " -"untrusted or expired cert, are ignored and do not abort the TLS/SSL " -"handshake." +msgid "Possible value for :attr:`SSLContext.verify_mode`. Except for :const:`PROTOCOL_TLS_CLIENT`, it is the default mode. With client-side sockets, just about any cert is accepted. Validation errors, such as untrusted or expired cert, are ignored and do not abort the TLS/SSL handshake." msgstr "" -#: ../../library/ssl.rst:491 -msgid "" -"In server mode, no certificate is requested from the client, so the client " -"does not send any for client cert authentication." +msgid "In server mode, no certificate is requested from the client, so the client does not send any for client cert authentication." msgstr "" -#: ../../library/ssl.rst:494 ../../library/ssl.rst:2412 msgid "See the discussion of :ref:`ssl-security` below." msgstr "" -#: ../../library/ssl.rst:498 -msgid "" -"Possible value for :attr:`SSLContext.verify_mode`. In client " -"mode, :const:`CERT_OPTIONAL` has the same meaning as :const:`CERT_REQUIRED`. " -"It is recommended to use :const:`CERT_REQUIRED` for client-side sockets " -"instead." +msgid "Possible value for :attr:`SSLContext.verify_mode`. In client mode, :const:`CERT_OPTIONAL` has the same meaning as :const:`CERT_REQUIRED`. It is recommended to use :const:`CERT_REQUIRED` for client-side sockets instead." msgstr "" -#: ../../library/ssl.rst:503 -msgid "" -"In server mode, a client certificate request is sent to the client. The " -"client may either ignore the request or send a certificate in order perform " -"TLS client cert authentication. If the client chooses to send a " -"certificate, it is verified. Any verification error immediately aborts the " -"TLS handshake." +msgid "In server mode, a client certificate request is sent to the client. The client may either ignore the request or send a certificate in order perform TLS client cert authentication. If the client chooses to send a certificate, it is verified. Any verification error immediately aborts the TLS handshake." msgstr "" -#: ../../library/ssl.rst:509 ../../library/ssl.rst:528 -msgid "" -"Use of this setting requires a valid set of CA certificates to be passed " -"to :meth:`SSLContext.load_verify_locations`." +msgid "Use of this setting requires a valid set of CA certificates to be passed to :meth:`SSLContext.load_verify_locations`." msgstr "" -#: ../../library/ssl.rst:514 -msgid "" -"Possible value for :attr:`SSLContext.verify_mode`. In this mode, " -"certificates are required from the other side of the socket connection; " -"an :class:`SSLError` will be raised if no certificate is provided, or if its " -"validation fails. This mode is **not** sufficient to verify a certificate in " -"client mode as it does not match " -"hostnames. :attr:`~SSLContext.check_hostname` must be enabled as well to " -"verify the authenticity of a cert. :const:`PROTOCOL_TLS_CLIENT` " -"uses :const:`CERT_REQUIRED` and enables :attr:`~SSLContext.check_hostname` " -"by default." -msgstr "" - -#: ../../library/ssl.rst:524 -msgid "" -"With server socket, this mode provides mandatory TLS client cert " -"authentication. A client certificate request is sent to the client and the " -"client must provide a valid and trusted certificate." +msgid "Possible value for :attr:`SSLContext.verify_mode`. In this mode, certificates are required from the other side of the socket connection; an :class:`SSLError` will be raised if no certificate is provided, or if its validation fails. This mode is **not** sufficient to verify a certificate in client mode as it does not match hostnames. :attr:`~SSLContext.check_hostname` must be enabled as well to verify the authenticity of a cert. :const:`PROTOCOL_TLS_CLIENT` uses :const:`CERT_REQUIRED` and enables :attr:`~SSLContext.check_hostname` by default." +msgstr "" + +msgid "With server socket, this mode provides mandatory TLS client cert authentication. A client certificate request is sent to the client and the client must provide a valid and trusted certificate." msgstr "" -#: ../../library/ssl.rst:533 msgid ":class:`enum.IntEnum` collection of CERT_* constants." msgstr "" -#: ../../library/ssl.rst:539 -msgid "" -"Possible value for :attr:`SSLContext.verify_flags`. In this mode, " -"certificate revocation lists (CRLs) are not checked. By default OpenSSL does " -"neither require nor verify CRLs." +msgid "Possible value for :attr:`SSLContext.verify_flags`. In this mode, certificate revocation lists (CRLs) are not checked. By default OpenSSL does neither require nor verify CRLs." msgstr "" -#: ../../library/ssl.rst:547 -msgid "" -"Possible value for :attr:`SSLContext.verify_flags`. In this mode, only the " -"peer cert is checked but none of the intermediate CA certificates. The mode " -"requires a valid CRL that is signed by the peer cert's issuer (its direct " -"ancestor CA). If no proper CRL has been loaded " -"with :attr:`SSLContext.load_verify_locations`, validation will fail." +msgid "Possible value for :attr:`SSLContext.verify_flags`. In this mode, only the peer cert is checked but none of the intermediate CA certificates. The mode requires a valid CRL that is signed by the peer cert's issuer (its direct ancestor CA). If no proper CRL has been loaded with :attr:`SSLContext.load_verify_locations`, validation will fail." msgstr "" -#: ../../library/ssl.rst:557 -msgid "" -"Possible value for :attr:`SSLContext.verify_flags`. In this mode, CRLs of " -"all certificates in the peer cert chain are checked." +msgid "Possible value for :attr:`SSLContext.verify_flags`. In this mode, CRLs of all certificates in the peer cert chain are checked." msgstr "" -#: ../../library/ssl.rst:564 -msgid "" -"Possible value for :attr:`SSLContext.verify_flags` to disable workarounds " -"for broken X.509 certificates." +msgid "Possible value for :attr:`SSLContext.verify_flags` to disable workarounds for broken X.509 certificates." msgstr "" -#: ../../library/ssl.rst:571 -msgid "" -"Possible value for :attr:`SSLContext.verify_flags` to enables proxy " -"certificate verification." +msgid "Possible value for :attr:`SSLContext.verify_flags` to enables proxy certificate verification." msgstr "" -#: ../../library/ssl.rst:578 -msgid "" -"Possible value for :attr:`SSLContext.verify_flags`. It instructs OpenSSL to " -"prefer trusted certificates when building the trust chain to validate a " -"certificate. This flag is enabled by default." +msgid "Possible value for :attr:`SSLContext.verify_flags`. It instructs OpenSSL to prefer trusted certificates when building the trust chain to validate a certificate. This flag is enabled by default." msgstr "" -#: ../../library/ssl.rst:586 -msgid "" -"Possible value for :attr:`SSLContext.verify_flags`. It instructs OpenSSL to " -"accept intermediate CAs in the trust store to be treated as trust-anchors, " -"in the same way as the self-signed root CA certificates. This makes it " -"possible to trust certificates issued by an intermediate CA without having " -"to trust its ancestor root CA." +msgid "Possible value for :attr:`SSLContext.verify_flags`. It instructs OpenSSL to accept intermediate CAs in the trust store to be treated as trust-anchors, in the same way as the self-signed root CA certificates. This makes it possible to trust certificates issued by an intermediate CA without having to trust its ancestor root CA." msgstr "" -#: ../../library/ssl.rst:597 msgid ":class:`enum.IntFlag` collection of VERIFY_* constants." msgstr "" -#: ../../library/ssl.rst:603 -msgid "" -"Selects the highest protocol version that both the client and server " -"support. Despite the name, this option can select both \"SSL\" and \"TLS\" " -"protocols." +msgid "Selects the highest protocol version that both the client and server support. Despite the name, this option can select both \"SSL\" and \"TLS\" protocols." msgstr "" -#: ../../library/ssl.rst:610 -msgid "" -"TLS clients and servers require different default settings for secure " -"communication. The generic TLS protocol constant is deprecated in favor " -"of :data:`PROTOCOL_TLS_CLIENT` and :data:`PROTOCOL_TLS_SERVER`." +msgid "TLS clients and servers require different default settings for secure communication. The generic TLS protocol constant is deprecated in favor of :data:`PROTOCOL_TLS_CLIENT` and :data:`PROTOCOL_TLS_SERVER`." msgstr "" -#: ../../library/ssl.rst:616 -msgid "" -"Auto-negotiate the highest protocol version that both the client and server " -"support, and configure the context client-side connections. The protocol " -"enables :data:`CERT_REQUIRED` and :attr:`~SSLContext.check_hostname` by " -"default." +msgid "Auto-negotiate the highest protocol version that both the client and server support, and configure the context client-side connections. The protocol enables :data:`CERT_REQUIRED` and :attr:`~SSLContext.check_hostname` by default." msgstr "" -#: ../../library/ssl.rst:625 -msgid "" -"Auto-negotiate the highest protocol version that both the client and server " -"support, and configure the context server-side connections." +msgid "Auto-negotiate the highest protocol version that both the client and server support, and configure the context server-side connections." msgstr "" -#: ../../library/ssl.rst:632 msgid "Alias for :data:`PROTOCOL_TLS`." msgstr "" -#: ../../library/ssl.rst:636 msgid "Use :data:`PROTOCOL_TLS` instead." msgstr "" -#: ../../library/ssl.rst:640 msgid "Selects SSL version 3 as the channel encryption protocol." msgstr "" -#: ../../library/ssl.rst:642 -msgid "" -"This protocol is not available if OpenSSL is compiled with the ``no-ssl3`` " -"option." +msgid "This protocol is not available if OpenSSL is compiled with the ``no-ssl3`` option." msgstr "" -#: ../../library/ssl.rst:647 msgid "SSL version 3 is insecure. Its use is highly discouraged." msgstr "" -#: ../../library/ssl.rst:651 -msgid "" -"OpenSSL has deprecated all version specific protocols. Use the default " -"protocol :data:`PROTOCOL_TLS_SERVER` or :data:`PROTOCOL_TLS_CLIENT` " -"with :attr:`SSLContext.minimum_version` " -"and :attr:`SSLContext.maximum_version` instead." +msgid "OpenSSL has deprecated all version specific protocols. Use the default protocol :data:`PROTOCOL_TLS_SERVER` or :data:`PROTOCOL_TLS_CLIENT` with :attr:`SSLContext.minimum_version` and :attr:`SSLContext.maximum_version` instead." msgstr "" -#: ../../library/ssl.rst:659 msgid "Selects TLS version 1.0 as the channel encryption protocol." msgstr "" -#: ../../library/ssl.rst:663 ../../library/ssl.rst:674 -#: ../../library/ssl.rst:685 msgid "OpenSSL has deprecated all version specific protocols." msgstr "" -#: ../../library/ssl.rst:667 -msgid "" -"Selects TLS version 1.1 as the channel encryption protocol. Available only " -"with openssl version 1.0.1+." +msgid "Selects TLS version 1.1 as the channel encryption protocol. Available only with openssl version 1.0.1+." msgstr "" -#: ../../library/ssl.rst:678 -msgid "" -"Selects TLS version 1.2 as the channel encryption protocol. Available only " -"with openssl version 1.0.1+." +msgid "Selects TLS version 1.2 as the channel encryption protocol. Available only with openssl version 1.0.1+." msgstr "" -#: ../../library/ssl.rst:689 -msgid "" -"Enables workarounds for various bugs present in other SSL implementations. " -"This option is set by default. It does not necessarily set the same flags " -"as OpenSSL's ``SSL_OP_ALL`` constant." +msgid "Enables workarounds for various bugs present in other SSL implementations. This option is set by default. It does not necessarily set the same flags as OpenSSL's ``SSL_OP_ALL`` constant." msgstr "" -#: ../../library/ssl.rst:697 -msgid "" -"Prevents an SSLv2 connection. This option is only applicable in conjunction " -"with :const:`PROTOCOL_TLS`. It prevents the peers from choosing SSLv2 as " -"the protocol version." +msgid "Prevents an SSLv2 connection. This option is only applicable in conjunction with :const:`PROTOCOL_TLS`. It prevents the peers from choosing SSLv2 as the protocol version." msgstr "" -#: ../../library/ssl.rst:705 msgid "SSLv2 is deprecated" msgstr "" -#: ../../library/ssl.rst:709 -msgid "" -"Prevents an SSLv3 connection. This option is only applicable in conjunction " -"with :const:`PROTOCOL_TLS`. It prevents the peers from choosing SSLv3 as " -"the protocol version." +msgid "Prevents an SSLv3 connection. This option is only applicable in conjunction with :const:`PROTOCOL_TLS`. It prevents the peers from choosing SSLv3 as the protocol version." msgstr "" -#: ../../library/ssl.rst:717 msgid "SSLv3 is deprecated" msgstr "" -#: ../../library/ssl.rst:721 -msgid "" -"Prevents a TLSv1 connection. This option is only applicable in conjunction " -"with :const:`PROTOCOL_TLS`. It prevents the peers from choosing TLSv1 as " -"the protocol version." +msgid "Prevents a TLSv1 connection. This option is only applicable in conjunction with :const:`PROTOCOL_TLS`. It prevents the peers from choosing TLSv1 as the protocol version." msgstr "" -#: ../../library/ssl.rst:727 -msgid "" -"The option is deprecated since OpenSSL 1.1.0, use the " -"new :attr:`SSLContext.minimum_version` " -"and :attr:`SSLContext.maximum_version` instead." +msgid "The option is deprecated since OpenSSL 1.1.0, use the new :attr:`SSLContext.minimum_version` and :attr:`SSLContext.maximum_version` instead." msgstr "" -#: ../../library/ssl.rst:734 -msgid "" -"Prevents a TLSv1.1 connection. This option is only applicable in conjunction " -"with :const:`PROTOCOL_TLS`. It prevents the peers from choosing TLSv1.1 as " -"the protocol version. Available only with openssl version 1.0.1+." +msgid "Prevents a TLSv1.1 connection. This option is only applicable in conjunction with :const:`PROTOCOL_TLS`. It prevents the peers from choosing TLSv1.1 as the protocol version. Available only with openssl version 1.0.1+." msgstr "" -#: ../../library/ssl.rst:740 ../../library/ssl.rst:751 msgid "The option is deprecated since OpenSSL 1.1.0." msgstr "" -#: ../../library/ssl.rst:745 -msgid "" -"Prevents a TLSv1.2 connection. This option is only applicable in conjunction " -"with :const:`PROTOCOL_TLS`. It prevents the peers from choosing TLSv1.2 as " -"the protocol version. Available only with openssl version 1.0.1+." +msgid "Prevents a TLSv1.2 connection. This option is only applicable in conjunction with :const:`PROTOCOL_TLS`. It prevents the peers from choosing TLSv1.2 as the protocol version. Available only with openssl version 1.0.1+." msgstr "" -#: ../../library/ssl.rst:756 -msgid "" -"Prevents a TLSv1.3 connection. This option is only applicable in conjunction " -"with :const:`PROTOCOL_TLS`. It prevents the peers from choosing TLSv1.3 as " -"the protocol version. TLS 1.3 is available with OpenSSL 1.1.1 or later. When " -"Python has been compiled against an older version of OpenSSL, the flag " -"defaults to *0*." +msgid "Prevents a TLSv1.3 connection. This option is only applicable in conjunction with :const:`PROTOCOL_TLS`. It prevents the peers from choosing TLSv1.3 as the protocol version. TLS 1.3 is available with OpenSSL 1.1.1 or later. When Python has been compiled against an older version of OpenSSL, the flag defaults to *0*." msgstr "" -#: ../../library/ssl.rst:764 -msgid "" -"The option is deprecated since OpenSSL 1.1.0. It was added to 2.7.15 and " -"3.6.3 for backwards compatibility with OpenSSL 1.0.2." +msgid "The option is deprecated since OpenSSL 1.1.0. It was added to 2.7.15 and 3.6.3 for backwards compatibility with OpenSSL 1.0.2." msgstr "" -#: ../../library/ssl.rst:770 -msgid "" -"Disable all renegotiation in TLSv1.2 and earlier. Do not send HelloRequest " -"messages, and ignore renegotiation requests via ClientHello." +msgid "Disable all renegotiation in TLSv1.2 and earlier. Do not send HelloRequest messages, and ignore renegotiation requests via ClientHello." msgstr "" -#: ../../library/ssl.rst:773 msgid "This option is only available with OpenSSL 1.1.0h and later." msgstr "" -#: ../../library/ssl.rst:779 -msgid "" -"Use the server's cipher ordering preference, rather than the client's. This " -"option has no effect on client sockets and SSLv2 server sockets." +msgid "Use the server's cipher ordering preference, rather than the client's. This option has no effect on client sockets and SSLv2 server sockets." msgstr "" -#: ../../library/ssl.rst:786 -msgid "" -"Prevents reuse of the same DH key for distinct SSL sessions. This improves " -"forward secrecy but requires more computational resources. This option only " -"applies to server sockets." +msgid "Prevents reuse of the same DH key for distinct SSL sessions. This improves forward secrecy but requires more computational resources. This option only applies to server sockets." msgstr "" -#: ../../library/ssl.rst:794 -msgid "" -"Prevents reuse of the same ECDH key for distinct SSL sessions. This " -"improves forward secrecy but requires more computational resources. This " -"option only applies to server sockets." +msgid "Prevents reuse of the same ECDH key for distinct SSL sessions. This improves forward secrecy but requires more computational resources. This option only applies to server sockets." msgstr "" -#: ../../library/ssl.rst:802 -msgid "" -"Send dummy Change Cipher Spec (CCS) messages in TLS 1.3 handshake to make a " -"TLS 1.3 connection look more like a TLS 1.2 connection." +msgid "Send dummy Change Cipher Spec (CCS) messages in TLS 1.3 handshake to make a TLS 1.3 connection look more like a TLS 1.2 connection." msgstr "" -#: ../../library/ssl.rst:805 msgid "This option is only available with OpenSSL 1.1.1 and later." msgstr "" -#: ../../library/ssl.rst:811 -msgid "" -"Disable compression on the SSL channel. This is useful if the application " -"protocol supports its own compression scheme." +msgid "Disable compression on the SSL channel. This is useful if the application protocol supports its own compression scheme." msgstr "" -#: ../../library/ssl.rst:818 msgid ":class:`enum.IntFlag` collection of OP_* constants." msgstr "" -#: ../../library/ssl.rst:822 msgid "Prevent client side from requesting a session ticket." msgstr "" -#: ../../library/ssl.rst:828 msgid "Ignore unexpected shutdown of TLS connections." msgstr "" -#: ../../library/ssl.rst:830 ../../library/ssl.rst:846 msgid "This option is only available with OpenSSL 3.0.0 and later." msgstr "" -#: ../../library/ssl.rst:836 -msgid "" -"Enable the use of the kernel TLS. To benefit from the feature, OpenSSL must " -"have been compiled with support for it, and the negotiated cipher suites and " -"extensions must be supported by it (a list of supported ones may vary by " -"platform and kernel version)." +msgid "Enable the use of the kernel TLS. To benefit from the feature, OpenSSL must have been compiled with support for it, and the negotiated cipher suites and extensions must be supported by it (a list of supported ones may vary by platform and kernel version)." msgstr "" -#: ../../library/ssl.rst:841 -msgid "" -"Note that with enabled kernel TLS some cryptographic operations are " -"performed by the kernel directly and not via any available OpenSSL " -"Providers. This might be undesirable if, for example, the application " -"requires all cryptographic operations to be performed by the FIPS provider." +msgid "Note that with enabled kernel TLS some cryptographic operations are performed by the kernel directly and not via any available OpenSSL Providers. This might be undesirable if, for example, the application requires all cryptographic operations to be performed by the FIPS provider." msgstr "" -#: ../../library/ssl.rst:852 -msgid "" -"Allow legacy insecure renegotiation between OpenSSL and unpatched servers " -"only." +msgid "Allow legacy insecure renegotiation between OpenSSL and unpatched servers only." msgstr "" -#: ../../library/ssl.rst:859 -msgid "" -"Whether the OpenSSL library has built-in support for the *Application-Layer " -"Protocol Negotiation* TLS extension as described in :rfc:`7301`." +msgid "Whether the OpenSSL library has built-in support for the *Application-Layer Protocol Negotiation* TLS extension as described in :rfc:`7301`." msgstr "" -#: ../../library/ssl.rst:866 -msgid "" -"Whether the OpenSSL library has built-in support not checking subject common " -"name and :attr:`SSLContext.hostname_checks_common_name` is writeable." +msgid "Whether the OpenSSL library has built-in support not checking subject common name and :attr:`SSLContext.hostname_checks_common_name` is writeable." msgstr "" -#: ../../library/ssl.rst:874 -msgid "" -"Whether the OpenSSL library has built-in support for the Elliptic Curve-" -"based Diffie-Hellman key exchange. This should be true unless the feature " -"was explicitly disabled by the distributor." +msgid "Whether the OpenSSL library has built-in support for the Elliptic Curve-based Diffie-Hellman key exchange. This should be true unless the feature was explicitly disabled by the distributor." msgstr "" -#: ../../library/ssl.rst:882 -msgid "" -"Whether the OpenSSL library has built-in support for the *Server Name " -"Indication* extension (as defined in :rfc:`6066`)." +msgid "Whether the OpenSSL library has built-in support for the *Server Name Indication* extension (as defined in :rfc:`6066`)." msgstr "" -#: ../../library/ssl.rst:889 -msgid "" -"Whether the OpenSSL library has built-in support for the *Next Protocol " -"Negotiation* as described in the `Application Layer Protocol Negotiation " -"`_. " -"When true, you can use the :meth:`SSLContext.set_npn_protocols` method to " -"advertise which protocols you want to support." +msgid "Whether the OpenSSL library has built-in support for the *Next Protocol Negotiation* as described in the `Application Layer Protocol Negotiation `_. When true, you can use the :meth:`SSLContext.set_npn_protocols` method to advertise which protocols you want to support." msgstr "" -#: ../../library/ssl.rst:899 -msgid "" -"Whether the OpenSSL library has built-in support for the SSL 2.0 protocol." +msgid "Whether the OpenSSL library has built-in support for the SSL 2.0 protocol." msgstr "" -#: ../../library/ssl.rst:905 -msgid "" -"Whether the OpenSSL library has built-in support for the SSL 3.0 protocol." +msgid "Whether the OpenSSL library has built-in support for the SSL 3.0 protocol." msgstr "" -#: ../../library/ssl.rst:911 -msgid "" -"Whether the OpenSSL library has built-in support for the TLS 1.0 protocol." +msgid "Whether the OpenSSL library has built-in support for the TLS 1.0 protocol." msgstr "" -#: ../../library/ssl.rst:917 -msgid "" -"Whether the OpenSSL library has built-in support for the TLS 1.1 protocol." +msgid "Whether the OpenSSL library has built-in support for the TLS 1.1 protocol." msgstr "" -#: ../../library/ssl.rst:923 -msgid "" -"Whether the OpenSSL library has built-in support for the TLS 1.2 protocol." +msgid "Whether the OpenSSL library has built-in support for the TLS 1.2 protocol." msgstr "" -#: ../../library/ssl.rst:929 -msgid "" -"Whether the OpenSSL library has built-in support for the TLS 1.3 protocol." +msgid "Whether the OpenSSL library has built-in support for the TLS 1.3 protocol." msgstr "" -#: ../../library/ssl.rst:935 msgid "Whether the OpenSSL library has built-in support for TLS-PSK." msgstr "" -#: ../../library/ssl.rst:941 msgid "Whether the OpenSSL library has built-in support for TLS-PHA." msgstr "" -#: ../../library/ssl.rst:947 -msgid "" -"List of supported TLS channel binding types. Strings in this list can be " -"used as arguments to :meth:`SSLSocket.get_channel_binding`." +msgid "List of supported TLS channel binding types. Strings in this list can be used as arguments to :meth:`SSLSocket.get_channel_binding`." msgstr "" -#: ../../library/ssl.rst:954 msgid "The version string of the OpenSSL library loaded by the interpreter::" msgstr "" -#: ../../library/ssl.rst:956 msgid "" ">>> ssl.OPENSSL_VERSION\n" "'OpenSSL 1.0.2k 26 Jan 2017'" msgstr "" -#: ../../library/ssl.rst:963 -msgid "" -"A tuple of five integers representing version information about the OpenSSL " -"library::" +msgid "A tuple of five integers representing version information about the OpenSSL library::" msgstr "" -#: ../../library/ssl.rst:966 msgid "" ">>> ssl.OPENSSL_VERSION_INFO\n" "(1, 0, 2, 11, 15)" msgstr "" -#: ../../library/ssl.rst:973 msgid "The raw version number of the OpenSSL library, as a single integer::" msgstr "" -#: ../../library/ssl.rst:975 msgid "" ">>> ssl.OPENSSL_VERSION_NUMBER\n" "268443839\n" @@ -1088,326 +583,171 @@ msgid "" "'0x100020bf'" msgstr "" -#: ../../library/ssl.rst:986 -msgid "" -"Alert Descriptions from :rfc:`5246` and others. The `IANA TLS Alert Registry " -"`_ contains this list and references to the RFCs where their " -"meaning is defined." +msgid "Alert Descriptions from :rfc:`5246` and others. The `IANA TLS Alert Registry `_ contains this list and references to the RFCs where their meaning is defined." msgstr "" -#: ../../library/ssl.rst:990 -msgid "" -"Used as the return value of the callback function " -"in :meth:`SSLContext.set_servername_callback`." +msgid "Used as the return value of the callback function in :meth:`SSLContext.set_servername_callback`." msgstr "" -#: ../../library/ssl.rst:997 msgid ":class:`enum.IntEnum` collection of ALERT_DESCRIPTION_* constants." msgstr "" -#: ../../library/ssl.rst:1003 -msgid "" -"Option for :func:`create_default_context` " -"and :meth:`SSLContext.load_default_certs`. This value indicates that the " -"context may be used to authenticate web servers (therefore, it will be used " -"to create client-side sockets)." +msgid "Option for :func:`create_default_context` and :meth:`SSLContext.load_default_certs`. This value indicates that the context may be used to authenticate web servers (therefore, it will be used to create client-side sockets)." msgstr "" -#: ../../library/ssl.rst:1012 -msgid "" -"Option for :func:`create_default_context` " -"and :meth:`SSLContext.load_default_certs`. This value indicates that the " -"context may be used to authenticate web clients (therefore, it will be used " -"to create server-side sockets)." +msgid "Option for :func:`create_default_context` and :meth:`SSLContext.load_default_certs`. This value indicates that the context may be used to authenticate web clients (therefore, it will be used to create server-side sockets)." msgstr "" -#: ../../library/ssl.rst:1021 msgid ":class:`enum.IntEnum` collection of SSL_ERROR_* constants." msgstr "" -#: ../../library/ssl.rst:1027 -msgid "" -":class:`enum.IntEnum` collection of SSL and TLS versions " -"for :attr:`SSLContext.maximum_version` " -"and :attr:`SSLContext.minimum_version`." +msgid ":class:`enum.IntEnum` collection of SSL and TLS versions for :attr:`SSLContext.maximum_version` and :attr:`SSLContext.minimum_version`." msgstr "" -#: ../../library/ssl.rst:1035 -msgid "" -"The minimum or maximum supported SSL or TLS version. These are magic " -"constants. Their values don't reflect the lowest and highest available TLS/" -"SSL versions." +msgid "The minimum or maximum supported SSL or TLS version. These are magic constants. Their values don't reflect the lowest and highest available TLS/SSL versions." msgstr "" -#: ../../library/ssl.rst:1045 msgid "SSL 3.0 to TLS 1.3." msgstr "" -#: ../../library/ssl.rst:1049 -msgid "" -"All :class:`TLSVersion` members except :attr:`TLSVersion.TLSv1_2` " -"and :attr:`TLSVersion.TLSv1_3` are deprecated." +msgid "All :class:`TLSVersion` members except :attr:`TLSVersion.TLSv1_2` and :attr:`TLSVersion.TLSv1_3` are deprecated." msgstr "" -#: ../../library/ssl.rst:1054 msgid "SSL sockets" msgstr "" -#: ../../library/ssl.rst:1058 msgid "SSL sockets provide the following methods of :ref:`socket-objects`:" msgstr "" -#: ../../library/ssl.rst:1060 msgid ":meth:`~socket.socket.accept`" msgstr "" -#: ../../library/ssl.rst:1061 msgid ":meth:`~socket.socket.bind`" msgstr "" -#: ../../library/ssl.rst:1062 msgid ":meth:`~socket.socket.close`" msgstr "" -#: ../../library/ssl.rst:1063 msgid ":meth:`~socket.socket.connect`" msgstr "" -#: ../../library/ssl.rst:1064 msgid ":meth:`~socket.socket.detach`" msgstr "" -#: ../../library/ssl.rst:1065 msgid ":meth:`~socket.socket.fileno`" msgstr "" -#: ../../library/ssl.rst:1066 msgid ":meth:`~socket.socket.getpeername`, :meth:`~socket.socket.getsockname`" msgstr "" -#: ../../library/ssl.rst:1067 msgid ":meth:`~socket.socket.getsockopt`, :meth:`~socket.socket.setsockopt`" msgstr "" -#: ../../library/ssl.rst:1068 msgid ":meth:`~socket.socket.gettimeout`, :meth:`~socket.socket.settimeout`, :meth:`~socket.socket.setblocking`" msgstr "" -#: ../../library/ssl.rst:1070 msgid ":meth:`~socket.socket.listen`" msgstr "" -#: ../../library/ssl.rst:1071 msgid ":meth:`~socket.socket.makefile`" msgstr "" -#: ../../library/ssl.rst:1072 -msgid "" -":meth:`~socket.socket.recv`, :meth:`~socket.socket.recv_into` (but passing a " -"non-zero ``flags`` argument is not allowed)" +msgid ":meth:`~socket.socket.recv`, :meth:`~socket.socket.recv_into` (but passing a non-zero ``flags`` argument is not allowed)" msgstr "" -#: ../../library/ssl.rst:1074 -msgid "" -":meth:`~socket.socket.send`, :meth:`~socket.socket.sendall` (with the same " -"limitation)" +msgid ":meth:`~socket.socket.send`, :meth:`~socket.socket.sendall` (with the same limitation)" msgstr "" -#: ../../library/ssl.rst:1076 -msgid "" -":meth:`~socket.socket.sendfile` (but :mod:`os.sendfile` will be used for " -"plain-text sockets only, else :meth:`~socket.socket.send` will be used)" +msgid ":meth:`~socket.socket.sendfile` (but :mod:`os.sendfile` will be used for plain-text sockets only, else :meth:`~socket.socket.send` will be used)" msgstr "" -#: ../../library/ssl.rst:1078 msgid ":meth:`~socket.socket.shutdown`" msgstr "" -#: ../../library/ssl.rst:1080 -msgid "" -"However, since the SSL (and TLS) protocol has its own framing atop of TCP, " -"the SSL sockets abstraction can, in certain respects, diverge from the " -"specification of normal, OS-level sockets. See especially the :ref:`notes " -"on non-blocking sockets `." +msgid "However, since the SSL (and TLS) protocol has its own framing atop of TCP, the SSL sockets abstraction can, in certain respects, diverge from the specification of normal, OS-level sockets. See especially the :ref:`notes on non-blocking sockets `." msgstr "" -#: ../../library/ssl.rst:1085 -msgid "" -"Instances of :class:`SSLSocket` must be created using " -"the :meth:`SSLContext.wrap_socket` method." +msgid "Instances of :class:`SSLSocket` must be created using the :meth:`SSLContext.wrap_socket` method." msgstr "" -#: ../../library/ssl.rst:1088 msgid "The :meth:`sendfile` method was added." msgstr "" -#: ../../library/ssl.rst:1091 -msgid "" -"The :meth:`shutdown` does not reset the socket timeout each time bytes are " -"received or sent. The socket timeout is now the maximum total duration of " -"the shutdown." +msgid "The :meth:`shutdown` does not reset the socket timeout each time bytes are received or sent. The socket timeout is now the maximum total duration of the shutdown." msgstr "" -#: ../../library/ssl.rst:1096 -msgid "" -"It is deprecated to create a :class:`SSLSocket` instance directly, " -"use :meth:`SSLContext.wrap_socket` to wrap a socket." +msgid "It is deprecated to create a :class:`SSLSocket` instance directly, use :meth:`SSLContext.wrap_socket` to wrap a socket." msgstr "" -#: ../../library/ssl.rst:1100 -msgid "" -":class:`SSLSocket` instances must be created " -"with :meth:`~SSLContext.wrap_socket`. In earlier versions, it was possible " -"to create instances directly. This was never documented or officially " -"supported." +msgid ":class:`SSLSocket` instances must be created with :meth:`~SSLContext.wrap_socket`. In earlier versions, it was possible to create instances directly. This was never documented or officially supported." msgstr "" -#: ../../library/ssl.rst:1106 -msgid "" -"Python now uses ``SSL_read_ex`` and ``SSL_write_ex`` internally. The " -"functions support reading and writing of data larger than 2 GB. Writing zero-" -"length data no longer fails with a protocol violation error." +msgid "Python now uses ``SSL_read_ex`` and ``SSL_write_ex`` internally. The functions support reading and writing of data larger than 2 GB. Writing zero-length data no longer fails with a protocol violation error." msgstr "" -#: ../../library/ssl.rst:1111 msgid "SSL sockets also have the following additional methods and attributes:" msgstr "" -#: ../../library/ssl.rst:1115 -msgid "" -"Read up to *len* bytes of data from the SSL socket and return the result as " -"a ``bytes`` instance. If *buffer* is specified, then read into the buffer " -"instead, and return the number of bytes read." +msgid "Read up to *len* bytes of data from the SSL socket and return the result as a ``bytes`` instance. If *buffer* is specified, then read into the buffer instead, and return the number of bytes read." msgstr "" -#: ../../library/ssl.rst:1119 -msgid "" -"Raise :exc:`SSLWantReadError` or :exc:`SSLWantWriteError` if the socket " -"is :ref:`non-blocking ` and the read would block." +msgid "Raise :exc:`SSLWantReadError` or :exc:`SSLWantWriteError` if the socket is :ref:`non-blocking ` and the read would block." msgstr "" -#: ../../library/ssl.rst:1122 -msgid "" -"As at any time a re-negotiation is possible, a call to :meth:`read` can also " -"cause write operations." +msgid "As at any time a re-negotiation is possible, a call to :meth:`read` can also cause write operations." msgstr "" -#: ../../library/ssl.rst:1125 -msgid "" -"The socket timeout is no longer reset each time bytes are received or sent. " -"The socket timeout is now the maximum total duration to read up to *len* " -"bytes." +msgid "The socket timeout is no longer reset each time bytes are received or sent. The socket timeout is now the maximum total duration to read up to *len* bytes." msgstr "" -#: ../../library/ssl.rst:1130 msgid "Use :meth:`~SSLSocket.recv` instead of :meth:`~SSLSocket.read`." msgstr "" -#: ../../library/ssl.rst:1135 -msgid "" -"Write *data* to the SSL socket and return the number of bytes written. The " -"*data* argument must be an object supporting the buffer interface." +msgid "Write *data* to the SSL socket and return the number of bytes written. The *data* argument must be an object supporting the buffer interface." msgstr "" -#: ../../library/ssl.rst:1138 -msgid "" -"Raise :exc:`SSLWantReadError` or :exc:`SSLWantWriteError` if the socket " -"is :ref:`non-blocking ` and the write would block." +msgid "Raise :exc:`SSLWantReadError` or :exc:`SSLWantWriteError` if the socket is :ref:`non-blocking ` and the write would block." msgstr "" -#: ../../library/ssl.rst:1141 -msgid "" -"As at any time a re-negotiation is possible, a call to :meth:`write` can " -"also cause read operations." +msgid "As at any time a re-negotiation is possible, a call to :meth:`write` can also cause read operations." msgstr "" -#: ../../library/ssl.rst:1144 -msgid "" -"The socket timeout is no longer reset each time bytes are received or sent. " -"The socket timeout is now the maximum total duration to write *data*." +msgid "The socket timeout is no longer reset each time bytes are received or sent. The socket timeout is now the maximum total duration to write *data*." msgstr "" -#: ../../library/ssl.rst:1148 msgid "Use :meth:`~SSLSocket.send` instead of :meth:`~SSLSocket.write`." msgstr "" -#: ../../library/ssl.rst:1153 -msgid "" -"The :meth:`~SSLSocket.read` and :meth:`~SSLSocket.write` methods are the low-" -"level methods that read and write unencrypted, application-level data and " -"decrypt/encrypt it to encrypted, wire-level data. These methods require an " -"active SSL connection, i.e. the handshake was completed " -"and :meth:`SSLSocket.unwrap` was not called." +msgid "The :meth:`~SSLSocket.read` and :meth:`~SSLSocket.write` methods are the low-level methods that read and write unencrypted, application-level data and decrypt/encrypt it to encrypted, wire-level data. These methods require an active SSL connection, i.e. the handshake was completed and :meth:`SSLSocket.unwrap` was not called." msgstr "" -#: ../../library/ssl.rst:1159 -msgid "" -"Normally you should use the socket API methods " -"like :meth:`~socket.socket.recv` and :meth:`~socket.socket.send` instead of " -"these methods." +msgid "Normally you should use the socket API methods like :meth:`~socket.socket.recv` and :meth:`~socket.socket.send` instead of these methods." msgstr "" -#: ../../library/ssl.rst:1165 msgid "Perform the SSL setup handshake." msgstr "" -#: ../../library/ssl.rst:1167 -msgid "" -"If *block* is true and the timeout obtained " -"by :meth:`~socket.socket.gettimeout` is zero, the socket is set in blocking " -"mode until the handshake is performed." +msgid "If *block* is true and the timeout obtained by :meth:`~socket.socket.gettimeout` is zero, the socket is set in blocking mode until the handshake is performed." msgstr "" -#: ../../library/ssl.rst:1170 -msgid "" -"The handshake method also performs :func:`!match_hostname` when " -"the :attr:`~SSLContext.check_hostname` attribute of the " -"socket's :attr:`~SSLSocket.context` is true." +msgid "The handshake method also performs :func:`!match_hostname` when the :attr:`~SSLContext.check_hostname` attribute of the socket's :attr:`~SSLSocket.context` is true." msgstr "" -#: ../../library/ssl.rst:1175 -msgid "" -"The socket timeout is no longer reset each time bytes are received or sent. " -"The socket timeout is now the maximum total duration of the handshake." +msgid "The socket timeout is no longer reset each time bytes are received or sent. The socket timeout is now the maximum total duration of the handshake." msgstr "" -#: ../../library/ssl.rst:1179 -msgid "" -"Hostname or IP address is matched by OpenSSL during handshake. The " -"function :func:`!match_hostname` is no longer used. In case OpenSSL refuses " -"a hostname or IP address, the handshake is aborted early and a TLS alert " -"message is sent to the peer." +msgid "Hostname or IP address is matched by OpenSSL during handshake. The function :func:`!match_hostname` is no longer used. In case OpenSSL refuses a hostname or IP address, the handshake is aborted early and a TLS alert message is sent to the peer." msgstr "" -#: ../../library/ssl.rst:1187 -msgid "" -"If there is no certificate for the peer on the other end of the connection, " -"return ``None``. If the SSL handshake hasn't been done yet, " -"raise :exc:`ValueError`." +msgid "If there is no certificate for the peer on the other end of the connection, return ``None``. If the SSL handshake hasn't been done yet, raise :exc:`ValueError`." msgstr "" -#: ../../library/ssl.rst:1191 -msgid "" -"If the ``binary_form`` parameter is :const:`False`, and a certificate was " -"received from the peer, this method returns a :class:`dict` instance. If " -"the certificate was not validated, the dict is empty. If the certificate " -"was validated, it returns a dict with several keys, amongst them ``subject`` " -"(the principal for which the certificate was issued) and ``issuer`` (the " -"principal issuing the certificate). If a certificate contains an instance " -"of the *Subject Alternative Name* extension (see :rfc:`3280`), there will " -"also be a ``subjectAltName`` key in the dictionary." +msgid "If the ``binary_form`` parameter is :const:`False`, and a certificate was received from the peer, this method returns a :class:`dict` instance. If the certificate was not validated, the dict is empty. If the certificate was validated, it returns a dict with several keys, amongst them ``subject`` (the principal for which the certificate was issued) and ``issuer`` (the principal issuing the certificate). If a certificate contains an instance of the *Subject Alternative Name* extension (see :rfc:`3280`), there will also be a ``subjectAltName`` key in the dictionary." msgstr "" -#: ../../library/ssl.rst:1200 -msgid "" -"The ``subject`` and ``issuer`` fields are tuples containing the sequence of " -"relative distinguished names (RDNs) given in the certificate's data " -"structure for the respective fields, and each RDN is a sequence of name-" -"value pairs. Here is a real-world example::" +msgid "The ``subject`` and ``issuer`` fields are tuples containing the sequence of relative distinguished names (RDNs) given in the certificate's data structure for the respective fields, and each RDN is a sequence of name-value pairs. Here is a real-world example::" msgstr "" -#: ../../library/ssl.rst:1205 msgid "" "{'issuer': ((('countryName', 'IL'),),\n" " (('organizationName', 'StartCom Ltd.'),),\n" @@ -1422,528 +762,258 @@ msgid "" " (('countryName', 'US'),),\n" " (('stateOrProvinceName', 'California'),),\n" " (('localityName', 'San Francisco'),),\n" -" (('organizationName', 'Electronic Frontier Foundation, " -"Inc.'),),\n" +" (('organizationName', 'Electronic Frontier Foundation, Inc.'),),\n" " (('commonName', '*.eff.org'),),\n" " (('emailAddress', 'hostmaster@eff.org'),)),\n" " 'subjectAltName': (('DNS', '*.eff.org'), ('DNS', 'eff.org')),\n" " 'version': 3}" msgstr "" -#: ../../library/ssl.rst:1224 -msgid "" -"If the ``binary_form`` parameter is :const:`True`, and a certificate was " -"provided, this method returns the DER-encoded form of the entire certificate " -"as a sequence of bytes, or :const:`None` if the peer did not provide a " -"certificate. Whether the peer provides a certificate depends on the SSL " -"socket's role:" +msgid "If the ``binary_form`` parameter is :const:`True`, and a certificate was provided, this method returns the DER-encoded form of the entire certificate as a sequence of bytes, or :const:`None` if the peer did not provide a certificate. Whether the peer provides a certificate depends on the SSL socket's role:" msgstr "" -#: ../../library/ssl.rst:1230 -msgid "" -"for a client SSL socket, the server will always provide a certificate, " -"regardless of whether validation was required;" +msgid "for a client SSL socket, the server will always provide a certificate, regardless of whether validation was required;" msgstr "" -#: ../../library/ssl.rst:1233 -msgid "" -"for a server SSL socket, the client will only provide a certificate when " -"requested by the server; therefore :meth:`getpeercert` will " -"return :const:`None` if you used :const:`CERT_NONE` (rather " -"than :const:`CERT_OPTIONAL` or :const:`CERT_REQUIRED`)." +msgid "for a server SSL socket, the client will only provide a certificate when requested by the server; therefore :meth:`getpeercert` will return :const:`None` if you used :const:`CERT_NONE` (rather than :const:`CERT_OPTIONAL` or :const:`CERT_REQUIRED`)." msgstr "" -#: ../../library/ssl.rst:1238 msgid "See also :attr:`SSLContext.check_hostname`." msgstr "" -#: ../../library/ssl.rst:1240 -msgid "" -"The returned dictionary includes additional items such as ``issuer`` and " -"``notBefore``." +msgid "The returned dictionary includes additional items such as ``issuer`` and ``notBefore``." msgstr "" -#: ../../library/ssl.rst:1244 -msgid "" -":exc:`ValueError` is raised when the handshake isn't done. The returned " -"dictionary includes additional X509v3 extension items such as " -"``crlDistributionPoints``, ``caIssuers`` and ``OCSP`` URIs." +msgid ":exc:`ValueError` is raised when the handshake isn't done. The returned dictionary includes additional X509v3 extension items such as ``crlDistributionPoints``, ``caIssuers`` and ``OCSP`` URIs." msgstr "" -#: ../../library/ssl.rst:1249 msgid "IPv6 address strings no longer have a trailing new line." msgstr "" -#: ../../library/ssl.rst:1254 -msgid "" -"Returns verified certificate chain provided by the other end of the SSL " -"channel as a list of DER-encoded bytes. If certificate verification was " -"disabled method acts the same as :meth:`~SSLSocket.get_unverified_chain`." +msgid "Returns verified certificate chain provided by the other end of the SSL channel as a list of DER-encoded bytes. If certificate verification was disabled method acts the same as :meth:`~SSLSocket.get_unverified_chain`." msgstr "" -#: ../../library/ssl.rst:1263 -msgid "" -"Returns raw certificate chain provided by the other end of the SSL channel " -"as a list of DER-encoded bytes." +msgid "Returns raw certificate chain provided by the other end of the SSL channel as a list of DER-encoded bytes." msgstr "" -#: ../../library/ssl.rst:1270 -msgid "" -"Returns a three-value tuple containing the name of the cipher being used, " -"the version of the SSL protocol that defines its use, and the number of " -"secret bits being used. If no connection has been established, returns " -"``None``." +msgid "Returns a three-value tuple containing the name of the cipher being used, the version of the SSL protocol that defines its use, and the number of secret bits being used. If no connection has been established, returns ``None``." msgstr "" -#: ../../library/ssl.rst:1276 -msgid "" -"Return the list of ciphers available in both the client and server. Each " -"entry of the returned list is a three-value tuple containing the name of the " -"cipher, the version of the SSL protocol that defines its use, and the number " -"of secret bits the cipher uses. :meth:`~SSLSocket.shared_ciphers` returns " -"``None`` if no connection has been established or the socket is a client " -"socket." +msgid "Return the list of ciphers available in both the client and server. Each entry of the returned list is a three-value tuple containing the name of the cipher, the version of the SSL protocol that defines its use, and the number of secret bits the cipher uses. :meth:`~SSLSocket.shared_ciphers` returns ``None`` if no connection has been established or the socket is a client socket." msgstr "" -#: ../../library/ssl.rst:1287 -msgid "" -"Return the compression algorithm being used as a string, or ``None`` if the " -"connection isn't compressed." +msgid "Return the compression algorithm being used as a string, or ``None`` if the connection isn't compressed." msgstr "" -#: ../../library/ssl.rst:1290 -msgid "" -"If the higher-level protocol supports its own compression mechanism, you can " -"use :data:`OP_NO_COMPRESSION` to disable SSL-level compression." +msgid "If the higher-level protocol supports its own compression mechanism, you can use :data:`OP_NO_COMPRESSION` to disable SSL-level compression." msgstr "" -#: ../../library/ssl.rst:1297 -msgid "" -"Get channel binding data for current connection, as a bytes object. Returns " -"``None`` if not connected or the handshake has not been completed." +msgid "Get channel binding data for current connection, as a bytes object. Returns ``None`` if not connected or the handshake has not been completed." msgstr "" -#: ../../library/ssl.rst:1300 -msgid "" -"The *cb_type* parameter allow selection of the desired channel binding type. " -"Valid channel binding types are listed in the :data:`CHANNEL_BINDING_TYPES` " -"list. Currently only the 'tls-unique' channel binding, defined " -"by :rfc:`5929`, is supported. :exc:`ValueError` will be raised if an " -"unsupported channel binding type is requested." +msgid "The *cb_type* parameter allow selection of the desired channel binding type. Valid channel binding types are listed in the :data:`CHANNEL_BINDING_TYPES` list. Currently only the 'tls-unique' channel binding, defined by :rfc:`5929`, is supported. :exc:`ValueError` will be raised if an unsupported channel binding type is requested." msgstr "" -#: ../../library/ssl.rst:1310 -msgid "" -"Return the protocol that was selected during the TLS handshake. " -"If :meth:`SSLContext.set_alpn_protocols` was not called, if the other party " -"does not support ALPN, if this socket does not support any of the client's " -"proposed protocols, or if the handshake has not happened yet, ``None`` is " -"returned." +msgid "Return the protocol that was selected during the TLS handshake. If :meth:`SSLContext.set_alpn_protocols` was not called, if the other party does not support ALPN, if this socket does not support any of the client's proposed protocols, or if the handshake has not happened yet, ``None`` is returned." msgstr "" -#: ../../library/ssl.rst:1320 -msgid "" -"Return the higher-level protocol that was selected during the TLS/SSL " -"handshake. If :meth:`SSLContext.set_npn_protocols` was not called, or if the " -"other party does not support NPN, or if the handshake has not yet happened, " -"this will return ``None``." +msgid "Return the higher-level protocol that was selected during the TLS/SSL handshake. If :meth:`SSLContext.set_npn_protocols` was not called, or if the other party does not support NPN, or if the handshake has not yet happened, this will return ``None``." msgstr "" -#: ../../library/ssl.rst:1329 ../../library/ssl.rst:1698 msgid "NPN has been superseded by ALPN" msgstr "" -#: ../../library/ssl.rst:1333 -msgid "" -"Performs the SSL shutdown handshake, which removes the TLS layer from the " -"underlying socket, and returns the underlying socket object. This can be " -"used to go from encrypted operation over a connection to unencrypted. The " -"returned socket should always be used for further communication with the " -"other side of the connection, rather than the original socket." +msgid "Performs the SSL shutdown handshake, which removes the TLS layer from the underlying socket, and returns the underlying socket object. This can be used to go from encrypted operation over a connection to unencrypted. The returned socket should always be used for further communication with the other side of the connection, rather than the original socket." msgstr "" -#: ../../library/ssl.rst:1341 -msgid "" -"Requests post-handshake authentication (PHA) from a TLS 1.3 client. PHA can " -"only be initiated for a TLS 1.3 connection from a server-side socket, after " -"the initial TLS handshake and with PHA enabled on both sides, " -"see :attr:`SSLContext.post_handshake_auth`." +msgid "Requests post-handshake authentication (PHA) from a TLS 1.3 client. PHA can only be initiated for a TLS 1.3 connection from a server-side socket, after the initial TLS handshake and with PHA enabled on both sides, see :attr:`SSLContext.post_handshake_auth`." msgstr "" -#: ../../library/ssl.rst:1346 -msgid "" -"The method does not perform a cert exchange immediately. The server-side " -"sends a CertificateRequest during the next write event and expects the " -"client to respond with a certificate on the next read event." +msgid "The method does not perform a cert exchange immediately. The server-side sends a CertificateRequest during the next write event and expects the client to respond with a certificate on the next read event." msgstr "" -#: ../../library/ssl.rst:1350 -msgid "" -"If any precondition isn't met (e.g. not TLS 1.3, PHA not enabled), " -"an :exc:`SSLError` is raised." +msgid "If any precondition isn't met (e.g. not TLS 1.3, PHA not enabled), an :exc:`SSLError` is raised." msgstr "" -#: ../../library/ssl.rst:1354 -msgid "" -"Only available with OpenSSL 1.1.1 and TLS 1.3 enabled. Without TLS 1.3 " -"support, the method raises :exc:`NotImplementedError`." +msgid "Only available with OpenSSL 1.1.1 and TLS 1.3 enabled. Without TLS 1.3 support, the method raises :exc:`NotImplementedError`." msgstr "" -#: ../../library/ssl.rst:1361 -msgid "" -"Return the actual SSL protocol version negotiated by the connection as a " -"string, or ``None`` if no secure connection is established. As of this " -"writing, possible return values include ``\"SSLv2\"``, ``\"SSLv3\"``, " -"``\"TLSv1\"``, ``\"TLSv1.1\"`` and ``\"TLSv1.2\"``. Recent OpenSSL versions " -"may define more return values." +msgid "Return the actual SSL protocol version negotiated by the connection as a string, or ``None`` if no secure connection is established. As of this writing, possible return values include ``\"SSLv2\"``, ``\"SSLv3\"``, ``\"TLSv1\"``, ``\"TLSv1.1\"`` and ``\"TLSv1.2\"``. Recent OpenSSL versions may define more return values." msgstr "" -#: ../../library/ssl.rst:1371 -msgid "" -"Returns the number of already decrypted bytes available for read, pending on " -"the connection." +msgid "Returns the number of already decrypted bytes available for read, pending on the connection." msgstr "" -#: ../../library/ssl.rst:1376 msgid "The :class:`SSLContext` object this SSL socket is tied to." msgstr "" -#: ../../library/ssl.rst:1382 -msgid "" -"A boolean which is ``True`` for server-side sockets and ``False`` for client-" -"side sockets." +msgid "A boolean which is ``True`` for server-side sockets and ``False`` for client-side sockets." msgstr "" -#: ../../library/ssl.rst:1389 -msgid "" -"Hostname of the server: :class:`str` type, or ``None`` for server-side " -"socket or if the hostname was not specified in the constructor." +msgid "Hostname of the server: :class:`str` type, or ``None`` for server-side socket or if the hostname was not specified in the constructor." msgstr "" -#: ../../library/ssl.rst:1394 -msgid "" -"The attribute is now always ASCII text. When ``server_hostname`` is an " -"internationalized domain name (IDN), this attribute now stores the A-label " -"form (``\"xn--pythn-mua.org\"``), rather than the U-label form " -"(``\"pythön.org\"``)." +msgid "The attribute is now always ASCII text. When ``server_hostname`` is an internationalized domain name (IDN), this attribute now stores the A-label form (``\"xn--pythn-mua.org\"``), rather than the U-label form (``\"pythön.org\"``)." msgstr "" -#: ../../library/ssl.rst:1402 -msgid "" -"The :class:`SSLSession` for this SSL connection. The session is available " -"for client and server side sockets after the TLS handshake has been " -"performed. For client sockets the session can be set " -"before :meth:`~SSLSocket.do_handshake` has been called to reuse a session." +msgid "The :class:`SSLSession` for this SSL connection. The session is available for client and server side sockets after the TLS handshake has been performed. For client sockets the session can be set before :meth:`~SSLSocket.do_handshake` has been called to reuse a session." msgstr "" -#: ../../library/ssl.rst:1415 msgid "SSL contexts" msgstr "" -#: ../../library/ssl.rst:1419 -msgid "" -"An SSL context holds various data longer-lived than single SSL connections, " -"such as SSL configuration options, certificate(s) and private key(s). It " -"also manages a cache of SSL sessions for server-side sockets, in order to " -"speed up repeated connections from the same clients." +msgid "An SSL context holds various data longer-lived than single SSL connections, such as SSL configuration options, certificate(s) and private key(s). It also manages a cache of SSL sessions for server-side sockets, in order to speed up repeated connections from the same clients." msgstr "" -#: ../../library/ssl.rst:1426 -msgid "" -"Create a new SSL context. You may pass *protocol* which must be one of the " -"``PROTOCOL_*`` constants defined in this module. The parameter specifies " -"which version of the SSL protocol to use. Typically, the server chooses a " -"particular protocol version, and the client must adapt to the server's " -"choice. Most of the versions are not interoperable with the other " -"versions. If not specified, the default is :data:`PROTOCOL_TLS`; it " -"provides the most compatibility with other versions." +msgid "Create a new SSL context. You may pass *protocol* which must be one of the ``PROTOCOL_*`` constants defined in this module. The parameter specifies which version of the SSL protocol to use. Typically, the server chooses a particular protocol version, and the client must adapt to the server's choice. Most of the versions are not interoperable with the other versions. If not specified, the default is :data:`PROTOCOL_TLS`; it provides the most compatibility with other versions." msgstr "" -#: ../../library/ssl.rst:1435 -msgid "" -"Here's a table showing which versions in a client (down the side) can " -"connect to which versions in a server (along the top):" +msgid "Here's a table showing which versions in a client (down the side) can connect to which versions in a server (along the top):" msgstr "" -#: ../../library/ssl.rst:1441 msgid "*client* / **server**" msgstr "" -#: ../../library/ssl.rst:1441 msgid "**SSLv2**" msgstr "" -#: ../../library/ssl.rst:1441 msgid "**SSLv3**" msgstr "" -#: ../../library/ssl.rst:1441 msgid "**TLS** [3]_" msgstr "" -#: ../../library/ssl.rst:1441 msgid "**TLSv1**" msgstr "" -#: ../../library/ssl.rst:1441 msgid "**TLSv1.1**" msgstr "" -#: ../../library/ssl.rst:1441 msgid "**TLSv1.2**" msgstr "" -#: ../../library/ssl.rst:1443 msgid "*SSLv2*" msgstr "" -#: ../../library/ssl.rst:1443 ../../library/ssl.rst:1444 -#: ../../library/ssl.rst:1445 ../../library/ssl.rst:1446 -#: ../../library/ssl.rst:1447 ../../library/ssl.rst:1448 msgid "yes" msgstr "" -#: ../../library/ssl.rst:1443 ../../library/ssl.rst:1444 -#: ../../library/ssl.rst:1446 ../../library/ssl.rst:1447 -#: ../../library/ssl.rst:1448 msgid "no" msgstr "" -#: ../../library/ssl.rst:1443 ../../library/ssl.rst:1445 msgid "no [1]_" msgstr "" -#: ../../library/ssl.rst:1444 msgid "*SSLv3*" msgstr "" -#: ../../library/ssl.rst:1444 ../../library/ssl.rst:1445 msgid "no [2]_" msgstr "" -#: ../../library/ssl.rst:1445 msgid "*TLS* (*SSLv23*) [3]_" msgstr "" -#: ../../library/ssl.rst:1446 msgid "*TLSv1*" msgstr "" -#: ../../library/ssl.rst:1447 msgid "*TLSv1.1*" msgstr "" -#: ../../library/ssl.rst:1448 msgid "*TLSv1.2*" msgstr "" -#: ../../library/ssl.rst:1451 msgid "Footnotes" msgstr "" -#: ../../library/ssl.rst:1452 msgid ":class:`SSLContext` disables SSLv2 with :data:`OP_NO_SSLv2` by default." msgstr "" -#: ../../library/ssl.rst:1453 msgid ":class:`SSLContext` disables SSLv3 with :data:`OP_NO_SSLv3` by default." msgstr "" -#: ../../library/ssl.rst:1454 -msgid "" -"TLS 1.3 protocol will be available with :data:`PROTOCOL_TLS` in OpenSSL >= " -"1.1.1. There is no dedicated PROTOCOL constant for just TLS 1.3." +msgid "TLS 1.3 protocol will be available with :data:`PROTOCOL_TLS` in OpenSSL >= 1.1.1. There is no dedicated PROTOCOL constant for just TLS 1.3." msgstr "" -#: ../../library/ssl.rst:1459 -msgid "" -":func:`create_default_context` lets the :mod:`!ssl` module choose security " -"settings for a given purpose." +msgid ":func:`create_default_context` lets the :mod:`!ssl` module choose security settings for a given purpose." msgstr "" -#: ../../library/ssl.rst:1464 -msgid "" -"The context is created with secure default values. The " -"options :data:`OP_NO_COMPRESSION`, :data:`OP_CIPHER_SERVER_PREFERENCE`, :data:`OP_SINGLE_DH_USE`, :data:`OP_SINGLE_ECDH_USE`, :data:`OP_NO_SSLv2`, " -"and :data:`OP_NO_SSLv3` (except for :data:`PROTOCOL_SSLv3`) are set by " -"default. The initial cipher suite list contains only ``HIGH`` ciphers, no " -"``NULL`` ciphers and no ``MD5`` ciphers." +msgid "The context is created with secure default values. The options :data:`OP_NO_COMPRESSION`, :data:`OP_CIPHER_SERVER_PREFERENCE`, :data:`OP_SINGLE_DH_USE`, :data:`OP_SINGLE_ECDH_USE`, :data:`OP_NO_SSLv2`, and :data:`OP_NO_SSLv3` (except for :data:`PROTOCOL_SSLv3`) are set by default. The initial cipher suite list contains only ``HIGH`` ciphers, no ``NULL`` ciphers and no ``MD5`` ciphers." msgstr "" -#: ../../library/ssl.rst:1474 -msgid "" -":class:`SSLContext` without protocol argument is deprecated. The context " -"class will either require :data:`PROTOCOL_TLS_CLIENT` " -"or :data:`PROTOCOL_TLS_SERVER` protocol in the future." +msgid ":class:`SSLContext` without protocol argument is deprecated. The context class will either require :data:`PROTOCOL_TLS_CLIENT` or :data:`PROTOCOL_TLS_SERVER` protocol in the future." msgstr "" -#: ../../library/ssl.rst:1480 -msgid "" -"The default cipher suites now include only secure AES and ChaCha20 ciphers " -"with forward secrecy and security level 2. RSA and DH keys with less than " -"2048 bits and ECC keys with less than 224 bits are " -"prohibited. :data:`PROTOCOL_TLS`, :data:`PROTOCOL_TLS_CLIENT`, " -"and :data:`PROTOCOL_TLS_SERVER` use TLS 1.2 as minimum TLS version." +msgid "The default cipher suites now include only secure AES and ChaCha20 ciphers with forward secrecy and security level 2. RSA and DH keys with less than 2048 bits and ECC keys with less than 224 bits are prohibited. :data:`PROTOCOL_TLS`, :data:`PROTOCOL_TLS_CLIENT`, and :data:`PROTOCOL_TLS_SERVER` use TLS 1.2 as minimum TLS version." msgstr "" -#: ../../library/ssl.rst:1488 -msgid "" -":class:`SSLContext` only supports limited mutation once it has been used by " -"a connection. Adding new certificates to the internal trust store is " -"allowed, but changing ciphers, verification settings, or mTLS certificates " -"may result in surprising behavior." +msgid ":class:`SSLContext` only supports limited mutation once it has been used by a connection. Adding new certificates to the internal trust store is allowed, but changing ciphers, verification settings, or mTLS certificates may result in surprising behavior." msgstr "" -#: ../../library/ssl.rst:1495 -msgid "" -":class:`SSLContext` is designed to be shared and used by multiple " -"connections. Thus, it is thread-safe as long as it is not reconfigured after " -"being used by a connection." +msgid ":class:`SSLContext` is designed to be shared and used by multiple connections. Thus, it is thread-safe as long as it is not reconfigured after being used by a connection." msgstr "" -#: ../../library/ssl.rst:1500 msgid ":class:`SSLContext` objects have the following methods and attributes:" msgstr "" -#: ../../library/ssl.rst:1504 -msgid "" -"Get statistics about quantities of loaded X.509 certificates, count of X.509 " -"certificates flagged as CA certificates and certificate revocation lists as " -"dictionary." +msgid "Get statistics about quantities of loaded X.509 certificates, count of X.509 certificates flagged as CA certificates and certificate revocation lists as dictionary." msgstr "" -#: ../../library/ssl.rst:1508 msgid "Example for a context with one CA cert and one other cert::" msgstr "" -#: ../../library/ssl.rst:1510 msgid "" ">>> context.cert_store_stats()\n" "{'crl': 0, 'x509_ca': 1, 'x509': 2}" msgstr "" -#: ../../library/ssl.rst:1518 -msgid "" -"Load a private key and the corresponding certificate. The *certfile* string " -"must be the path to a single file in PEM format containing the certificate " -"as well as any number of CA certificates needed to establish the " -"certificate's authenticity. The *keyfile* string, if present, must point to " -"a file containing the private key. Otherwise the private key will be taken " -"from *certfile* as well. See the discussion of :ref:`ssl-certificates` for " -"more information on how the certificate is stored in the *certfile*." +msgid "Load a private key and the corresponding certificate. The *certfile* string must be the path to a single file in PEM format containing the certificate as well as any number of CA certificates needed to establish the certificate's authenticity. The *keyfile* string, if present, must point to a file containing the private key. Otherwise the private key will be taken from *certfile* as well. See the discussion of :ref:`ssl-certificates` for more information on how the certificate is stored in the *certfile*." msgstr "" -#: ../../library/ssl.rst:1527 -msgid "" -"The *password* argument may be a function to call to get the password for " -"decrypting the private key. It will only be called if the private key is " -"encrypted and a password is necessary. It will be called with no arguments, " -"and it should return a string, bytes, or bytearray. If the return value is " -"a string it will be encoded as UTF-8 before using it to decrypt the key. " -"Alternatively a string, bytes, or bytearray value may be supplied directly " -"as the *password* argument. It will be ignored if the private key is not " -"encrypted and no password is needed." +msgid "The *password* argument may be a function to call to get the password for decrypting the private key. It will only be called if the private key is encrypted and a password is necessary. It will be called with no arguments, and it should return a string, bytes, or bytearray. If the return value is a string it will be encoded as UTF-8 before using it to decrypt the key. Alternatively a string, bytes, or bytearray value may be supplied directly as the *password* argument. It will be ignored if the private key is not encrypted and no password is needed." msgstr "" -#: ../../library/ssl.rst:1536 -msgid "" -"If the *password* argument is not specified and a password is required, " -"OpenSSL's built-in password prompting mechanism will be used to " -"interactively prompt the user for a password." +msgid "If the *password* argument is not specified and a password is required, OpenSSL's built-in password prompting mechanism will be used to interactively prompt the user for a password." msgstr "" -#: ../../library/ssl.rst:1540 -msgid "" -"An :class:`SSLError` is raised if the private key doesn't match with the " -"certificate." +msgid "An :class:`SSLError` is raised if the private key doesn't match with the certificate." msgstr "" -#: ../../library/ssl.rst:1543 msgid "New optional argument *password*." msgstr "" -#: ../../library/ssl.rst:1548 -msgid "" -"Load a set of default \"certification authority\" (CA) certificates from " -"default locations. On Windows it loads CA certs from the ``CA`` and ``ROOT`` " -"system stores. On all systems it " -"calls :meth:`SSLContext.set_default_verify_paths`. In the future the method " -"may load CA certificates from other locations, too." +msgid "Load a set of default \"certification authority\" (CA) certificates from default locations. On Windows it loads CA certs from the ``CA`` and ``ROOT`` system stores. On all systems it calls :meth:`SSLContext.set_default_verify_paths`. In the future the method may load CA certificates from other locations, too." msgstr "" -#: ../../library/ssl.rst:1554 -msgid "" -"The *purpose* flag specifies what kind of CA certificates are loaded. The " -"default settings :const:`Purpose.SERVER_AUTH` loads certificates, that are " -"flagged and trusted for TLS web server authentication (client side " -"sockets). :const:`Purpose.CLIENT_AUTH` loads CA certificates for client " -"certificate verification on the server side." +msgid "The *purpose* flag specifies what kind of CA certificates are loaded. The default settings :const:`Purpose.SERVER_AUTH` loads certificates, that are flagged and trusted for TLS web server authentication (client side sockets). :const:`Purpose.CLIENT_AUTH` loads CA certificates for client certificate verification on the server side." msgstr "" -#: ../../library/ssl.rst:1564 -msgid "" -"Load a set of \"certification authority\" (CA) certificates used to validate " -"other peers' certificates when :data:`verify_mode` is other " -"than :data:`CERT_NONE`. At least one of *cafile* or *capath* must be " -"specified." +msgid "Load a set of \"certification authority\" (CA) certificates used to validate other peers' certificates when :data:`verify_mode` is other than :data:`CERT_NONE`. At least one of *cafile* or *capath* must be specified." msgstr "" -#: ../../library/ssl.rst:1568 -msgid "" -"This method can also load certification revocation lists (CRLs) in PEM or " -"DER format. In order to make use of CRLs, :attr:`SSLContext.verify_flags` " -"must be configured properly." +msgid "This method can also load certification revocation lists (CRLs) in PEM or DER format. In order to make use of CRLs, :attr:`SSLContext.verify_flags` must be configured properly." msgstr "" -#: ../../library/ssl.rst:1572 -msgid "" -"The *cafile* string, if present, is the path to a file of concatenated CA " -"certificates in PEM format. See the discussion of :ref:`ssl-certificates` " -"for more information about how to arrange the certificates in this file." +msgid "The *cafile* string, if present, is the path to a file of concatenated CA certificates in PEM format. See the discussion of :ref:`ssl-certificates` for more information about how to arrange the certificates in this file." msgstr "" -#: ../../library/ssl.rst:1577 -msgid "" -"The *capath* string, if present, is the path to a directory containing " -"several CA certificates in PEM format, following an `OpenSSL specific layout " -"`_." +msgid "The *capath* string, if present, is the path to a directory containing several CA certificates in PEM format, following an `OpenSSL specific layout `_." msgstr "" -#: ../../library/ssl.rst:1582 -msgid "" -"The *cadata* object, if present, is either an ASCII string of one or more " -"PEM-encoded certificates or a :term:`bytes-like object` of DER-encoded " -"certificates. Like with *capath* extra lines around PEM-encoded certificates " -"are ignored but at least one certificate must be present." +msgid "The *cadata* object, if present, is either an ASCII string of one or more PEM-encoded certificates or a :term:`bytes-like object` of DER-encoded certificates. Like with *capath* extra lines around PEM-encoded certificates are ignored but at least one certificate must be present." msgstr "" -#: ../../library/ssl.rst:1587 msgid "New optional argument *cadata*" msgstr "" -#: ../../library/ssl.rst:1592 -msgid "" -"Get a list of loaded \"certification authority\" (CA) certificates. If the " -"``binary_form`` parameter is :const:`False` each list entry is a dict like " -"the output of :meth:`SSLSocket.getpeercert`. Otherwise the method returns a " -"list of DER-encoded certificates. The returned list does not contain " -"certificates from *capath* unless a certificate was requested and loaded by " -"a SSL connection." +msgid "Get a list of loaded \"certification authority\" (CA) certificates. If the ``binary_form`` parameter is :const:`False` each list entry is a dict like the output of :meth:`SSLSocket.getpeercert`. Otherwise the method returns a list of DER-encoded certificates. The returned list does not contain certificates from *capath* unless a certificate was requested and loaded by a SSL connection." msgstr "" -#: ../../library/ssl.rst:1600 -msgid "" -"Certificates in a capath directory aren't loaded unless they have been used " -"at least once." +msgid "Certificates in a capath directory aren't loaded unless they have been used at least once." msgstr "" -#: ../../library/ssl.rst:1607 -msgid "" -"Get a list of enabled ciphers. The list is in order of cipher priority. " -"See :meth:`SSLContext.set_ciphers`." +msgid "Get a list of enabled ciphers. The list is in order of cipher priority. See :meth:`SSLContext.set_ciphers`." msgstr "" -#: ../../library/ssl.rst:1612 msgid "" ">>> ctx = ssl.SSLContext(ssl.PROTOCOL_SSLv23)\n" ">>> ctx.set_ciphers('ECDHE+AESGCM:!ECDSA')\n" @@ -1974,345 +1044,141 @@ msgid "" " 'symmetric': 'aes-128-gcm'}]" msgstr "" -#: ../../library/ssl.rst:1644 -msgid "" -"Load a set of default \"certification authority\" (CA) certificates from a " -"filesystem path defined when building the OpenSSL library. Unfortunately, " -"there's no easy way to know whether this method succeeds: no error is " -"returned if no certificates are to be found. When the OpenSSL library is " -"provided as part of the operating system, though, it is likely to be " -"configured properly." +msgid "Load a set of default \"certification authority\" (CA) certificates from a filesystem path defined when building the OpenSSL library. Unfortunately, there's no easy way to know whether this method succeeds: no error is returned if no certificates are to be found. When the OpenSSL library is provided as part of the operating system, though, it is likely to be configured properly." msgstr "" -#: ../../library/ssl.rst:1653 -msgid "" -"Set the available ciphers for sockets created with this context. It should " -"be a string in the `OpenSSL cipher list format `_. If no cipher can be selected (because compile-time " -"options or other configuration forbids use of all the specified ciphers), " -"an :class:`SSLError` will be raised." +msgid "Set the available ciphers for sockets created with this context. It should be a string in the `OpenSSL cipher list format `_. If no cipher can be selected (because compile-time options or other configuration forbids use of all the specified ciphers), an :class:`SSLError` will be raised." msgstr "" -#: ../../library/ssl.rst:1661 -msgid "" -"when connected, the :meth:`SSLSocket.cipher` method of SSL sockets will give " -"the currently selected cipher." +msgid "when connected, the :meth:`SSLSocket.cipher` method of SSL sockets will give the currently selected cipher." msgstr "" -#: ../../library/ssl.rst:1664 -msgid "" -"TLS 1.3 cipher suites cannot be disabled " -"with :meth:`~SSLContext.set_ciphers`." +msgid "TLS 1.3 cipher suites cannot be disabled with :meth:`~SSLContext.set_ciphers`." msgstr "" -#: ../../library/ssl.rst:1669 -msgid "" -"Specify which protocols the socket should advertise during the SSL/TLS " -"handshake. It should be a list of ASCII strings, like ``['http/1.1', 'spdy/" -"2']``, ordered by preference. The selection of a protocol will happen during " -"the handshake, and will play out according to :rfc:`7301`. After a " -"successful handshake, the :meth:`SSLSocket.selected_alpn_protocol` method " -"will return the agreed-upon protocol." +msgid "Specify which protocols the socket should advertise during the SSL/TLS handshake. It should be a list of ASCII strings, like ``['http/1.1', 'spdy/2']``, ordered by preference. The selection of a protocol will happen during the handshake, and will play out according to :rfc:`7301`. After a successful handshake, the :meth:`SSLSocket.selected_alpn_protocol` method will return the agreed-upon protocol." msgstr "" -#: ../../library/ssl.rst:1676 -msgid "" -"This method will raise :exc:`NotImplementedError` if :data:`HAS_ALPN` is " -"``False``." +msgid "This method will raise :exc:`NotImplementedError` if :data:`HAS_ALPN` is ``False``." msgstr "" -#: ../../library/ssl.rst:1683 -msgid "" -"Specify which protocols the socket should advertise during the SSL/TLS " -"handshake. It should be a list of strings, like ``['http/1.1', 'spdy/2']``, " -"ordered by preference. The selection of a protocol will happen during the " -"handshake, and will play out according to the `Application Layer Protocol " -"Negotiation `_. After a successful handshake, " -"the :meth:`SSLSocket.selected_npn_protocol` method will return the agreed-" -"upon protocol." +msgid "Specify which protocols the socket should advertise during the SSL/TLS handshake. It should be a list of strings, like ``['http/1.1', 'spdy/2']``, ordered by preference. The selection of a protocol will happen during the handshake, and will play out according to the `Application Layer Protocol Negotiation `_. After a successful handshake, the :meth:`SSLSocket.selected_npn_protocol` method will return the agreed-upon protocol." msgstr "" -#: ../../library/ssl.rst:1691 -msgid "" -"This method will raise :exc:`NotImplementedError` if :data:`HAS_NPN` is " -"``False``." +msgid "This method will raise :exc:`NotImplementedError` if :data:`HAS_NPN` is ``False``." msgstr "" -#: ../../library/ssl.rst:1702 -msgid "" -"Register a callback function that will be called after the TLS Client Hello " -"handshake message has been received by the SSL/TLS server when the TLS " -"client specifies a server name indication. The server name indication " -"mechanism is specified in :rfc:`6066` section 3 - Server Name Indication." +msgid "Register a callback function that will be called after the TLS Client Hello handshake message has been received by the SSL/TLS server when the TLS client specifies a server name indication. The server name indication mechanism is specified in :rfc:`6066` section 3 - Server Name Indication." msgstr "" -#: ../../library/ssl.rst:1707 -msgid "" -"Only one callback can be set per ``SSLContext``. If *sni_callback* is set " -"to ``None`` then the callback is disabled. Calling this function a " -"subsequent time will disable the previously registered callback." +msgid "Only one callback can be set per ``SSLContext``. If *sni_callback* is set to ``None`` then the callback is disabled. Calling this function a subsequent time will disable the previously registered callback." msgstr "" -#: ../../library/ssl.rst:1711 -msgid "" -"The callback function will be called with three arguments; the first being " -"the :class:`ssl.SSLSocket`, the second is a string that represents the " -"server name that the client is intending to communicate (or :const:`None` if " -"the TLS Client Hello does not contain a server name) and the third argument " -"is the original :class:`SSLContext`. The server name argument is text. For " -"internationalized domain name, the server name is an IDN A-label (``\"xn--" -"pythn-mua.org\"``)." +msgid "The callback function will be called with three arguments; the first being the :class:`ssl.SSLSocket`, the second is a string that represents the server name that the client is intending to communicate (or :const:`None` if the TLS Client Hello does not contain a server name) and the third argument is the original :class:`SSLContext`. The server name argument is text. For internationalized domain name, the server name is an IDN A-label (``\"xn--pythn-mua.org\"``)." msgstr "" -#: ../../library/ssl.rst:1719 -msgid "" -"A typical use of this callback is to change " -"the :class:`ssl.SSLSocket`'s :attr:`SSLSocket.context` attribute to a new " -"object of type :class:`SSLContext` representing a certificate chain that " -"matches the server name." +msgid "A typical use of this callback is to change the :class:`ssl.SSLSocket`'s :attr:`SSLSocket.context` attribute to a new object of type :class:`SSLContext` representing a certificate chain that matches the server name." msgstr "" -#: ../../library/ssl.rst:1724 -msgid "" -"Due to the early negotiation phase of the TLS connection, only limited " -"methods and attributes are usable " -"like :meth:`SSLSocket.selected_alpn_protocol` and :attr:`SSLSocket.context`. " -"The :meth:`SSLSocket.getpeercert`, :meth:`SSLSocket.get_verified_chain`, :meth:`SSLSocket.get_unverified_chain` :meth:`SSLSocket.cipher` " -"and :meth:`SSLSocket.compression` methods require that the TLS connection " -"has progressed beyond the TLS Client Hello and therefore will not return " -"meaningful values nor can they be called safely." +msgid "Due to the early negotiation phase of the TLS connection, only limited methods and attributes are usable like :meth:`SSLSocket.selected_alpn_protocol` and :attr:`SSLSocket.context`. The :meth:`SSLSocket.getpeercert`, :meth:`SSLSocket.get_verified_chain`, :meth:`SSLSocket.get_unverified_chain` :meth:`SSLSocket.cipher` and :meth:`SSLSocket.compression` methods require that the TLS connection has progressed beyond the TLS Client Hello and therefore will not return meaningful values nor can they be called safely." msgstr "" -#: ../../library/ssl.rst:1733 -msgid "" -"The *sni_callback* function must return ``None`` to allow the TLS " -"negotiation to continue. If a TLS failure is required, a " -"constant :const:`ALERT_DESCRIPTION_* ` can " -"be returned. Other return values will result in a TLS fatal error " -"with :const:`ALERT_DESCRIPTION_INTERNAL_ERROR`." +msgid "The *sni_callback* function must return ``None`` to allow the TLS negotiation to continue. If a TLS failure is required, a constant :const:`ALERT_DESCRIPTION_* ` can be returned. Other return values will result in a TLS fatal error with :const:`ALERT_DESCRIPTION_INTERNAL_ERROR`." msgstr "" -#: ../../library/ssl.rst:1739 -msgid "" -"If an exception is raised from the *sni_callback* function the TLS " -"connection will terminate with a fatal TLS alert " -"message :const:`ALERT_DESCRIPTION_HANDSHAKE_FAILURE`." +msgid "If an exception is raised from the *sni_callback* function the TLS connection will terminate with a fatal TLS alert message :const:`ALERT_DESCRIPTION_HANDSHAKE_FAILURE`." msgstr "" -#: ../../library/ssl.rst:1743 -msgid "" -"This method will raise :exc:`NotImplementedError` if the OpenSSL library had " -"OPENSSL_NO_TLSEXT defined when it was built." +msgid "This method will raise :exc:`NotImplementedError` if the OpenSSL library had OPENSSL_NO_TLSEXT defined when it was built." msgstr "" -#: ../../library/ssl.rst:1750 -msgid "" -"This is a legacy API retained for backwards compatibility. When possible, " -"you should use :attr:`sni_callback` instead. The given " -"*server_name_callback* is similar to *sni_callback*, except that when the " -"server hostname is an IDN-encoded internationalized domain name, the " -"*server_name_callback* receives a decoded U-label (``\"pythön.org\"``)." +msgid "This is a legacy API retained for backwards compatibility. When possible, you should use :attr:`sni_callback` instead. The given *server_name_callback* is similar to *sni_callback*, except that when the server hostname is an IDN-encoded internationalized domain name, the *server_name_callback* receives a decoded U-label (``\"pythön.org\"``)." msgstr "" -#: ../../library/ssl.rst:1756 -msgid "" -"If there is a decoding error on the server name, the TLS connection will " -"terminate with an :const:`ALERT_DESCRIPTION_INTERNAL_ERROR` fatal TLS alert " -"message to the client." +msgid "If there is a decoding error on the server name, the TLS connection will terminate with an :const:`ALERT_DESCRIPTION_INTERNAL_ERROR` fatal TLS alert message to the client." msgstr "" -#: ../../library/ssl.rst:1764 -msgid "" -"Load the key generation parameters for Diffie-Hellman (DH) key exchange. " -"Using DH key exchange improves forward secrecy at the expense of " -"computational resources (both on the server and on the client). The *dhfile* " -"parameter should be the path to a file containing DH parameters in PEM " -"format." +msgid "Load the key generation parameters for Diffie-Hellman (DH) key exchange. Using DH key exchange improves forward secrecy at the expense of computational resources (both on the server and on the client). The *dhfile* parameter should be the path to a file containing DH parameters in PEM format." msgstr "" -#: ../../library/ssl.rst:1770 -msgid "" -"This setting doesn't apply to client sockets. You can also use " -"the :data:`OP_SINGLE_DH_USE` option to further improve security." +msgid "This setting doesn't apply to client sockets. You can also use the :data:`OP_SINGLE_DH_USE` option to further improve security." msgstr "" -#: ../../library/ssl.rst:1777 -msgid "" -"Set the curve name for Elliptic Curve-based Diffie-Hellman (ECDH) key " -"exchange. ECDH is significantly faster than regular DH while arguably as " -"secure. The *curve_name* parameter should be a string describing a well-" -"known elliptic curve, for example ``prime256v1`` for a widely supported " -"curve." +msgid "Set the curve name for Elliptic Curve-based Diffie-Hellman (ECDH) key exchange. ECDH is significantly faster than regular DH while arguably as secure. The *curve_name* parameter should be a string describing a well-known elliptic curve, for example ``prime256v1`` for a widely supported curve." msgstr "" -#: ../../library/ssl.rst:1783 -msgid "" -"This setting doesn't apply to client sockets. You can also use " -"the :data:`OP_SINGLE_ECDH_USE` option to further improve security." +msgid "This setting doesn't apply to client sockets. You can also use the :data:`OP_SINGLE_ECDH_USE` option to further improve security." msgstr "" -#: ../../library/ssl.rst:1786 msgid "This method is not available if :data:`HAS_ECDH` is ``False``." msgstr "" -#: ../../library/ssl.rst:1791 -msgid "" -"`SSL/TLS & Perfect Forward Secrecy `_" +msgid "`SSL/TLS & Perfect Forward Secrecy `_" msgstr "" -#: ../../library/ssl.rst:1792 msgid "Vincent Bernat." msgstr "" -#: ../../library/ssl.rst:1798 -msgid "" -"Wrap an existing Python socket *sock* and return an instance " -"of :attr:`SSLContext.sslsocket_class` (default :class:`SSLSocket`). The " -"returned SSL socket is tied to the context, its settings and certificates. " -"*sock* must be a :const:`~socket.SOCK_STREAM` socket; other socket types are " -"unsupported." +msgid "Wrap an existing Python socket *sock* and return an instance of :attr:`SSLContext.sslsocket_class` (default :class:`SSLSocket`). The returned SSL socket is tied to the context, its settings and certificates. *sock* must be a :const:`~socket.SOCK_STREAM` socket; other socket types are unsupported." msgstr "" -#: ../../library/ssl.rst:1804 -msgid "" -"The parameter ``server_side`` is a boolean which identifies whether server-" -"side or client-side behavior is desired from this socket." +msgid "The parameter ``server_side`` is a boolean which identifies whether server-side or client-side behavior is desired from this socket." msgstr "" -#: ../../library/ssl.rst:1807 -msgid "" -"For client-side sockets, the context construction is lazy; if the underlying " -"socket isn't connected yet, the context construction will be performed " -"after :meth:`connect` is called on the socket. For server-side sockets, if " -"the socket has no remote peer, it is assumed to be a listening socket, and " -"the server-side SSL wrapping is automatically performed on client " -"connections accepted via the :meth:`accept` method. The method may " -"raise :exc:`SSLError`." +msgid "For client-side sockets, the context construction is lazy; if the underlying socket isn't connected yet, the context construction will be performed after :meth:`connect` is called on the socket. For server-side sockets, if the socket has no remote peer, it is assumed to be a listening socket, and the server-side SSL wrapping is automatically performed on client connections accepted via the :meth:`accept` method. The method may raise :exc:`SSLError`." msgstr "" -#: ../../library/ssl.rst:1815 -msgid "" -"On client connections, the optional parameter *server_hostname* specifies " -"the hostname of the service which we are connecting to. This allows a " -"single server to host multiple SSL-based services with distinct " -"certificates, quite similarly to HTTP virtual hosts. Specifying " -"*server_hostname* will raise a :exc:`ValueError` if *server_side* is true." +msgid "On client connections, the optional parameter *server_hostname* specifies the hostname of the service which we are connecting to. This allows a single server to host multiple SSL-based services with distinct certificates, quite similarly to HTTP virtual hosts. Specifying *server_hostname* will raise a :exc:`ValueError` if *server_side* is true." msgstr "" -#: ../../library/ssl.rst:1821 -msgid "" -"The parameter ``do_handshake_on_connect`` specifies whether to do the SSL " -"handshake automatically after doing a :meth:`socket.connect`, or whether the " -"application program will call it explicitly, by invoking " -"the :meth:`SSLSocket.do_handshake` method. " -"Calling :meth:`SSLSocket.do_handshake` explicitly gives the program control " -"over the blocking behavior of the socket I/O involved in the handshake." +msgid "The parameter ``do_handshake_on_connect`` specifies whether to do the SSL handshake automatically after doing a :meth:`socket.connect`, or whether the application program will call it explicitly, by invoking the :meth:`SSLSocket.do_handshake` method. Calling :meth:`SSLSocket.do_handshake` explicitly gives the program control over the blocking behavior of the socket I/O involved in the handshake." msgstr "" -#: ../../library/ssl.rst:1828 -msgid "" -"The parameter ``suppress_ragged_eofs`` specifies how " -"the :meth:`SSLSocket.recv` method should signal unexpected EOF from the " -"other end of the connection. If specified as :const:`True` (the default), " -"it returns a normal EOF (an empty bytes object) in response to unexpected " -"EOF errors raised from the underlying socket; if :const:`False`, it will " -"raise the exceptions back to the caller." +msgid "The parameter ``suppress_ragged_eofs`` specifies how the :meth:`SSLSocket.recv` method should signal unexpected EOF from the other end of the connection. If specified as :const:`True` (the default), it returns a normal EOF (an empty bytes object) in response to unexpected EOF errors raised from the underlying socket; if :const:`False`, it will raise the exceptions back to the caller." msgstr "" -#: ../../library/ssl.rst:1835 msgid "*session*, see :attr:`~SSLSocket.session`." msgstr "" -#: ../../library/ssl.rst:1837 -msgid "" -"To wrap an :class:`SSLSocket` in another :class:`SSLSocket`, " -"use :meth:`SSLContext.wrap_bio`." +msgid "To wrap an :class:`SSLSocket` in another :class:`SSLSocket`, use :meth:`SSLContext.wrap_bio`." msgstr "" -#: ../../library/ssl.rst:1840 -msgid "" -"Always allow a server_hostname to be passed, even if OpenSSL does not have " -"SNI." +msgid "Always allow a server_hostname to be passed, even if OpenSSL does not have SNI." msgstr "" -#: ../../library/ssl.rst:1844 ../../library/ssl.rst:1871 msgid "*session* argument was added." msgstr "" -#: ../../library/ssl.rst:1847 -msgid "" -"The method returns an instance of :attr:`SSLContext.sslsocket_class` instead " -"of hard-coded :class:`SSLSocket`." +msgid "The method returns an instance of :attr:`SSLContext.sslsocket_class` instead of hard-coded :class:`SSLSocket`." msgstr "" -#: ../../library/ssl.rst:1853 -msgid "" -"The return type of :meth:`SSLContext.wrap_socket`, defaults " -"to :class:`SSLSocket`. The attribute can be assigned to on instances " -"of :class:`SSLContext` in order to return a custom subclass " -"of :class:`SSLSocket`." +msgid "The return type of :meth:`SSLContext.wrap_socket`, defaults to :class:`SSLSocket`. The attribute can be assigned to on instances of :class:`SSLContext` in order to return a custom subclass of :class:`SSLSocket`." msgstr "" -#: ../../library/ssl.rst:1863 -msgid "" -"Wrap the BIO objects *incoming* and *outgoing* and return an instance " -"of :attr:`SSLContext.sslobject_class` (default :class:`SSLObject`). The SSL " -"routines will read input data from the incoming BIO and write data to the " -"outgoing BIO." +msgid "Wrap the BIO objects *incoming* and *outgoing* and return an instance of :attr:`SSLContext.sslobject_class` (default :class:`SSLObject`). The SSL routines will read input data from the incoming BIO and write data to the outgoing BIO." msgstr "" -#: ../../library/ssl.rst:1868 -msgid "" -"The *server_side*, *server_hostname* and *session* parameters have the same " -"meaning as in :meth:`SSLContext.wrap_socket`." +msgid "The *server_side*, *server_hostname* and *session* parameters have the same meaning as in :meth:`SSLContext.wrap_socket`." msgstr "" -#: ../../library/ssl.rst:1874 -msgid "" -"The method returns an instance of :attr:`SSLContext.sslobject_class` instead " -"of hard-coded :class:`SSLObject`." +msgid "The method returns an instance of :attr:`SSLContext.sslobject_class` instead of hard-coded :class:`SSLObject`." msgstr "" -#: ../../library/ssl.rst:1880 -msgid "" -"The return type of :meth:`SSLContext.wrap_bio`, defaults " -"to :class:`SSLObject`. The attribute can be overridden on instance of class " -"in order to return a custom subclass of :class:`SSLObject`." +msgid "The return type of :meth:`SSLContext.wrap_bio`, defaults to :class:`SSLObject`. The attribute can be overridden on instance of class in order to return a custom subclass of :class:`SSLObject`." msgstr "" -#: ../../library/ssl.rst:1888 -msgid "" -"Get statistics about the SSL sessions created or managed by this context. A " -"dictionary is returned which maps the names of each `piece of information " -"`_ to their " -"numeric values. For example, here is the total number of hits and misses in " -"the session cache since the context was created::" +msgid "Get statistics about the SSL sessions created or managed by this context. A dictionary is returned which maps the names of each `piece of information `_ to their numeric values. For example, here is the total number of hits and misses in the session cache since the context was created::" msgstr "" -#: ../../library/ssl.rst:1893 msgid "" ">>> stats = context.session_stats()\n" ">>> stats['hits'], stats['misses']\n" "(0, 0)" msgstr "" -#: ../../library/ssl.rst:1899 -msgid "" -"Whether to match the peer cert's hostname in :meth:`SSLSocket.do_handshake`. " -"The context's :attr:`~SSLContext.verify_mode` must be set " -"to :data:`CERT_OPTIONAL` or :data:`CERT_REQUIRED`, and you must pass " -"*server_hostname* to :meth:`~SSLContext.wrap_socket` in order to match the " -"hostname. Enabling hostname checking automatically " -"sets :attr:`~SSLContext.verify_mode` from :data:`CERT_NONE` " -"to :data:`CERT_REQUIRED`. It cannot be set back to :data:`CERT_NONE` as " -"long as hostname checking is enabled. The :data:`PROTOCOL_TLS_CLIENT` " -"protocol enables hostname checking by default. With other protocols, " -"hostname checking must be enabled explicitly." -msgstr "" - -#: ../../library/ssl.rst:1912 +msgid "Whether to match the peer cert's hostname in :meth:`SSLSocket.do_handshake`. The context's :attr:`~SSLContext.verify_mode` must be set to :data:`CERT_OPTIONAL` or :data:`CERT_REQUIRED`, and you must pass *server_hostname* to :meth:`~SSLContext.wrap_socket` in order to match the hostname. Enabling hostname checking automatically sets :attr:`~SSLContext.verify_mode` from :data:`CERT_NONE` to :data:`CERT_REQUIRED`. It cannot be set back to :data:`CERT_NONE` as long as hostname checking is enabled. The :data:`PROTOCOL_TLS_CLIENT` protocol enables hostname checking by default. With other protocols, hostname checking must be enabled explicitly." +msgstr "" + msgid "" "import socket, ssl\n" "\n" @@ -2326,190 +1192,90 @@ msgid "" "ssl_sock.connect(('www.verisign.com', 443))" msgstr "" -#: ../../library/ssl.rst:1927 -msgid "" -":attr:`~SSLContext.verify_mode` is now automatically changed " -"to :data:`CERT_REQUIRED` when hostname checking is enabled " -"and :attr:`~SSLContext.verify_mode` is :data:`CERT_NONE`. Previously the " -"same operation would have failed with a :exc:`ValueError`." +msgid ":attr:`~SSLContext.verify_mode` is now automatically changed to :data:`CERT_REQUIRED` when hostname checking is enabled and :attr:`~SSLContext.verify_mode` is :data:`CERT_NONE`. Previously the same operation would have failed with a :exc:`ValueError`." msgstr "" -#: ../../library/ssl.rst:1934 -msgid "" -"Write TLS keys to a keylog file, whenever key material is generated or " -"received. The keylog file is designed for debugging purposes only. The file " -"format is specified by NSS and used by many traffic analyzers such as " -"Wireshark. The log file is opened in append-only mode. Writes are " -"synchronized between threads, but not between processes." +msgid "Write TLS keys to a keylog file, whenever key material is generated or received. The keylog file is designed for debugging purposes only. The file format is specified by NSS and used by many traffic analyzers such as Wireshark. The log file is opened in append-only mode. Writes are synchronized between threads, but not between processes." msgstr "" -#: ../../library/ssl.rst:1944 -msgid "" -"A :class:`TLSVersion` enum member representing the highest supported TLS " -"version. The value defaults to :attr:`TLSVersion.MAXIMUM_SUPPORTED`. The " -"attribute is read-only for protocols other " -"than :const:`PROTOCOL_TLS`, :const:`PROTOCOL_TLS_CLIENT`, " -"and :const:`PROTOCOL_TLS_SERVER`." +msgid "A :class:`TLSVersion` enum member representing the highest supported TLS version. The value defaults to :attr:`TLSVersion.MAXIMUM_SUPPORTED`. The attribute is read-only for protocols other than :const:`PROTOCOL_TLS`, :const:`PROTOCOL_TLS_CLIENT`, and :const:`PROTOCOL_TLS_SERVER`." msgstr "" -#: ../../library/ssl.rst:1949 -msgid "" -"The " -"attributes :attr:`~SSLContext.maximum_version`, :attr:`~SSLContext.minimum_version` " -"and :attr:`SSLContext.options` all affect the supported SSL and TLS versions " -"of the context. The implementation does not prevent invalid combinations. " -"For example a context with :attr:`OP_NO_TLSv1_2` " -"in :attr:`~SSLContext.options` and :attr:`~SSLContext.maximum_version` set " -"to :attr:`TLSVersion.TLSv1_2` will not be able to establish a TLS 1.2 " -"connection." +msgid "The attributes :attr:`~SSLContext.maximum_version`, :attr:`~SSLContext.minimum_version` and :attr:`SSLContext.options` all affect the supported SSL and TLS versions of the context. The implementation does not prevent invalid combinations. For example a context with :attr:`OP_NO_TLSv1_2` in :attr:`~SSLContext.options` and :attr:`~SSLContext.maximum_version` set to :attr:`TLSVersion.TLSv1_2` will not be able to establish a TLS 1.2 connection." msgstr "" -#: ../../library/ssl.rst:1962 -msgid "" -"Like :attr:`SSLContext.maximum_version` except it is the lowest supported " -"version or :attr:`TLSVersion.MINIMUM_SUPPORTED`." +msgid "Like :attr:`SSLContext.maximum_version` except it is the lowest supported version or :attr:`TLSVersion.MINIMUM_SUPPORTED`." msgstr "" -#: ../../library/ssl.rst:1969 -msgid "" -"Control the number of TLS 1.3 session tickets of " -"a :const:`PROTOCOL_TLS_SERVER` context. The setting has no impact on TLS 1.0 " -"to 1.2 connections." +msgid "Control the number of TLS 1.3 session tickets of a :const:`PROTOCOL_TLS_SERVER` context. The setting has no impact on TLS 1.0 to 1.2 connections." msgstr "" -#: ../../library/ssl.rst:1977 -msgid "" -"An integer representing the set of SSL options enabled on this context. The " -"default value is :data:`OP_ALL`, but you can specify other options such " -"as :data:`OP_NO_SSLv2` by ORing them together." +msgid "An integer representing the set of SSL options enabled on this context. The default value is :data:`OP_ALL`, but you can specify other options such as :data:`OP_NO_SSLv2` by ORing them together." msgstr "" -#: ../../library/ssl.rst:1981 msgid ":attr:`SSLContext.options` returns :class:`Options` flags:" msgstr "" -#: ../../library/ssl.rst:1989 -msgid "" -"All ``OP_NO_SSL*`` and ``OP_NO_TLS*`` options have been deprecated since " -"Python 3.7. Use :attr:`SSLContext.minimum_version` " -"and :attr:`SSLContext.maximum_version` instead." +msgid "All ``OP_NO_SSL*`` and ``OP_NO_TLS*`` options have been deprecated since Python 3.7. Use :attr:`SSLContext.minimum_version` and :attr:`SSLContext.maximum_version` instead." msgstr "" -#: ../../library/ssl.rst:1995 -msgid "" -"Enable TLS 1.3 post-handshake client authentication. Post-handshake auth is " -"disabled by default and a server can only request a TLS client certificate " -"during the initial handshake. When enabled, a server may request a TLS " -"client certificate at any time after the handshake." +msgid "Enable TLS 1.3 post-handshake client authentication. Post-handshake auth is disabled by default and a server can only request a TLS client certificate during the initial handshake. When enabled, a server may request a TLS client certificate at any time after the handshake." msgstr "" -#: ../../library/ssl.rst:2000 -msgid "" -"When enabled on client-side sockets, the client signals the server that it " -"supports post-handshake authentication." +msgid "When enabled on client-side sockets, the client signals the server that it supports post-handshake authentication." msgstr "" -#: ../../library/ssl.rst:2003 -msgid "" -"When enabled on server-side sockets, :attr:`SSLContext.verify_mode` must be " -"set to :data:`CERT_OPTIONAL` or :data:`CERT_REQUIRED`, too. The actual " -"client cert exchange is delayed " -"until :meth:`SSLSocket.verify_client_post_handshake` is called and some I/O " -"is performed." +msgid "When enabled on server-side sockets, :attr:`SSLContext.verify_mode` must be set to :data:`CERT_OPTIONAL` or :data:`CERT_REQUIRED`, too. The actual client cert exchange is delayed until :meth:`SSLSocket.verify_client_post_handshake` is called and some I/O is performed." msgstr "" -#: ../../library/ssl.rst:2013 -msgid "" -"The protocol version chosen when constructing the context. This attribute " -"is read-only." +msgid "The protocol version chosen when constructing the context. This attribute is read-only." msgstr "" -#: ../../library/ssl.rst:2018 -msgid "" -"Whether :attr:`~SSLContext.check_hostname` falls back to verify the cert's " -"subject common name in the absence of a subject alternative name extension " -"(default: true)." +msgid "Whether :attr:`~SSLContext.check_hostname` falls back to verify the cert's subject common name in the absence of a subject alternative name extension (default: true)." msgstr "" -#: ../../library/ssl.rst:2026 -msgid "" -"The flag had no effect with OpenSSL before version 1.1.1l. Python 3.8.9, " -"3.9.3, and 3.10 include workarounds for previous versions." +msgid "The flag had no effect with OpenSSL before version 1.1.1l. Python 3.8.9, 3.9.3, and 3.10 include workarounds for previous versions." msgstr "" -#: ../../library/ssl.rst:2031 -msgid "" -"An integer representing the `security level `_ for the context. This attribute is read-" -"only." +msgid "An integer representing the `security level `_ for the context. This attribute is read-only." msgstr "" -#: ../../library/ssl.rst:2039 -msgid "" -"The flags for certificate verification operations. You can set flags " -"like :data:`VERIFY_CRL_CHECK_LEAF` by ORing them together. By default " -"OpenSSL does neither require nor verify certificate revocation lists (CRLs)." +msgid "The flags for certificate verification operations. You can set flags like :data:`VERIFY_CRL_CHECK_LEAF` by ORing them together. By default OpenSSL does neither require nor verify certificate revocation lists (CRLs)." msgstr "" -#: ../../library/ssl.rst:2045 msgid ":attr:`SSLContext.verify_flags` returns :class:`VerifyFlags` flags:" msgstr "" -#: ../../library/ssl.rst:2053 -msgid "" -"Whether to try to verify other peers' certificates and how to behave if " -"verification fails. This attribute must be one " -"of :data:`CERT_NONE`, :data:`CERT_OPTIONAL` or :data:`CERT_REQUIRED`." +msgid "Whether to try to verify other peers' certificates and how to behave if verification fails. This attribute must be one of :data:`CERT_NONE`, :data:`CERT_OPTIONAL` or :data:`CERT_REQUIRED`." msgstr "" -#: ../../library/ssl.rst:2057 msgid ":attr:`SSLContext.verify_mode` returns :class:`VerifyMode` enum:" msgstr "" -#: ../../library/ssl.rst:2065 -msgid "" -"Enables TLS-PSK (pre-shared key) authentication on a client-side connection." +msgid "Enables TLS-PSK (pre-shared key) authentication on a client-side connection." msgstr "" -#: ../../library/ssl.rst:2067 ../../library/ssl.rst:2116 -msgid "" -"In general, certificate based authentication should be preferred over this " -"method." +msgid "In general, certificate based authentication should be preferred over this method." msgstr "" -#: ../../library/ssl.rst:2069 -msgid "" -"The parameter ``callback`` is a callable object with the signature: ``def " -"callback(hint: str | None) -> tuple[str | None, bytes]``. The ``hint`` " -"parameter is an optional identity hint sent by the server. The return value " -"is a tuple in the form (client-identity, psk). Client-identity is an " -"optional string which may be used by the server to select a corresponding " -"PSK for the client. The string must be less than or equal to ``256`` octets " -"when UTF-8 encoded. PSK is a :term:`bytes-like object` representing the pre-" -"shared key. Return a zero length PSK to reject the connection." +msgid "The parameter ``callback`` is a callable object with the signature: ``def callback(hint: str | None) -> tuple[str | None, bytes]``. The ``hint`` parameter is an optional identity hint sent by the server. The return value is a tuple in the form (client-identity, psk). Client-identity is an optional string which may be used by the server to select a corresponding PSK for the client. The string must be less than or equal to ``256`` octets when UTF-8 encoded. PSK is a :term:`bytes-like object` representing the pre-shared key. Return a zero length PSK to reject the connection." msgstr "" -#: ../../library/ssl.rst:2079 ../../library/ssl.rst:2125 msgid "Setting ``callback`` to :const:`None` removes any existing callback." msgstr "" -#: ../../library/ssl.rst:2082 msgid "When using TLS 1.3:" msgstr "" -#: ../../library/ssl.rst:2084 msgid "the ``hint`` parameter is always :const:`None`." msgstr "" -#: ../../library/ssl.rst:2085 msgid "client-identity must be a non-empty string." msgstr "" -#: ../../library/ssl.rst:2087 ../../library/ssl.rst:2134 msgid "Example usage::" msgstr "" -#: ../../library/ssl.rst:2089 msgid "" "context = ssl.SSLContext(ssl.PROTOCOL_TLS_CLIENT)\n" "context.check_hostname = False\n" @@ -2530,40 +1296,21 @@ msgid "" "context.set_psk_client_callback(callback)" msgstr "" -#: ../../library/ssl.rst:2107 ../../library/ssl.rst:2152 -msgid "" -"This method will raise :exc:`NotImplementedError` if :data:`HAS_PSK` is " -"``False``." +msgid "This method will raise :exc:`NotImplementedError` if :data:`HAS_PSK` is ``False``." msgstr "" -#: ../../library/ssl.rst:2114 -msgid "" -"Enables TLS-PSK (pre-shared key) authentication on a server-side connection." +msgid "Enables TLS-PSK (pre-shared key) authentication on a server-side connection." msgstr "" -#: ../../library/ssl.rst:2118 -msgid "" -"The parameter ``callback`` is a callable object with the signature: ``def " -"callback(identity: str | None) -> bytes``. The ``identity`` parameter is an " -"optional identity sent by the client which can be used to select a " -"corresponding PSK. The return value is a :term:`bytes-like object` " -"representing the pre-shared key. Return a zero length PSK to reject the " -"connection." +msgid "The parameter ``callback`` is a callable object with the signature: ``def callback(identity: str | None) -> bytes``. The ``identity`` parameter is an optional identity sent by the client which can be used to select a corresponding PSK. The return value is a :term:`bytes-like object` representing the pre-shared key. Return a zero length PSK to reject the connection." msgstr "" -#: ../../library/ssl.rst:2127 -msgid "" -"The parameter ``identity_hint`` is an optional identity hint string sent to " -"the client. The string must be less than or equal to ``256`` octets when " -"UTF-8 encoded." +msgid "The parameter ``identity_hint`` is an optional identity hint string sent to the client. The string must be less than or equal to ``256`` octets when UTF-8 encoded." msgstr "" -#: ../../library/ssl.rst:2132 -msgid "" -"When using TLS 1.3 the ``identity_hint`` parameter is not sent to the client." +msgid "When using TLS 1.3 the ``identity_hint`` parameter is not sent to the client." msgstr "" -#: ../../library/ssl.rst:2136 msgid "" "context = ssl.SSLContext(ssl.PROTOCOL_TLS_SERVER)\n" "context.maximum_version = ssl.TLSVersion.TLSv1_2\n" @@ -2582,83 +1329,33 @@ msgid "" "context.set_psk_server_callback(callback, 'ServerId_1')" msgstr "" -#: ../../library/ssl.rst:2164 msgid "Certificates" msgstr "" -#: ../../library/ssl.rst:2166 -msgid "" -"Certificates in general are part of a public-key / private-key system. In " -"this system, each *principal*, (which may be a machine, or a person, or an " -"organization) is assigned a unique two-part encryption key. One part of the " -"key is public, and is called the *public key*; the other part is kept " -"secret, and is called the *private key*. The two parts are related, in that " -"if you encrypt a message with one of the parts, you can decrypt it with the " -"other part, and **only** with the other part." +msgid "Certificates in general are part of a public-key / private-key system. In this system, each *principal*, (which may be a machine, or a person, or an organization) is assigned a unique two-part encryption key. One part of the key is public, and is called the *public key*; the other part is kept secret, and is called the *private key*. The two parts are related, in that if you encrypt a message with one of the parts, you can decrypt it with the other part, and **only** with the other part." msgstr "" -#: ../../library/ssl.rst:2174 -msgid "" -"A certificate contains information about two principals. It contains the " -"name of a *subject*, and the subject's public key. It also contains a " -"statement by a second principal, the *issuer*, that the subject is who they " -"claim to be, and that this is indeed the subject's public key. The issuer's " -"statement is signed with the issuer's private key, which only the issuer " -"knows. However, anyone can verify the issuer's statement by finding the " -"issuer's public key, decrypting the statement with it, and comparing it to " -"the other information in the certificate. The certificate also contains " -"information about the time period over which it is valid. This is expressed " -"as two fields, called \"notBefore\" and \"notAfter\"." -msgstr "" - -#: ../../library/ssl.rst:2184 -msgid "" -"In the Python use of certificates, a client or server can use a certificate " -"to prove who they are. The other side of a network connection can also be " -"required to produce a certificate, and that certificate can be validated to " -"the satisfaction of the client or server that requires such validation. The " -"connection attempt can be set to raise an exception if the validation fails. " -"Validation is done automatically, by the underlying OpenSSL framework; the " -"application need not concern itself with its mechanics. But the application " -"does usually need to provide sets of certificates to allow this process to " -"take place." -msgstr "" - -#: ../../library/ssl.rst:2194 -msgid "" -"Python uses files to contain certificates. They should be formatted as " -"\"PEM\" (see :rfc:`1422`), which is a base-64 encoded form wrapped with a " -"header line and a footer line::" +msgid "A certificate contains information about two principals. It contains the name of a *subject*, and the subject's public key. It also contains a statement by a second principal, the *issuer*, that the subject is who they claim to be, and that this is indeed the subject's public key. The issuer's statement is signed with the issuer's private key, which only the issuer knows. However, anyone can verify the issuer's statement by finding the issuer's public key, decrypting the statement with it, and comparing it to the other information in the certificate. The certificate also contains information about the time period over which it is valid. This is expressed as two fields, called \"notBefore\" and \"notAfter\"." +msgstr "" + +msgid "In the Python use of certificates, a client or server can use a certificate to prove who they are. The other side of a network connection can also be required to produce a certificate, and that certificate can be validated to the satisfaction of the client or server that requires such validation. The connection attempt can be set to raise an exception if the validation fails. Validation is done automatically, by the underlying OpenSSL framework; the application need not concern itself with its mechanics. But the application does usually need to provide sets of certificates to allow this process to take place." +msgstr "" + +msgid "Python uses files to contain certificates. They should be formatted as \"PEM\" (see :rfc:`1422`), which is a base-64 encoded form wrapped with a header line and a footer line::" msgstr "" -#: ../../library/ssl.rst:2198 msgid "" "-----BEGIN CERTIFICATE-----\n" "... (certificate in base64 PEM encoding) ...\n" "-----END CERTIFICATE-----" msgstr "" -#: ../../library/ssl.rst:2203 msgid "Certificate chains" msgstr "" -#: ../../library/ssl.rst:2205 -msgid "" -"The Python files which contain certificates can contain a sequence of " -"certificates, sometimes called a *certificate chain*. This chain should " -"start with the specific certificate for the principal who \"is\" the client " -"or server, and then the certificate for the issuer of that certificate, and " -"then the certificate for the issuer of *that* certificate, and so on up the " -"chain till you get to a certificate which is *self-signed*, that is, a " -"certificate which has the same subject and issuer, sometimes called a *root " -"certificate*. The certificates should just be concatenated together in the " -"certificate file. For example, suppose we had a three certificate chain, " -"from our server certificate to the certificate of the certification " -"authority that signed our server certificate, to the root certificate of the " -"agency which issued the certification authority's certificate::" -msgstr "" - -#: ../../library/ssl.rst:2218 +msgid "The Python files which contain certificates can contain a sequence of certificates, sometimes called a *certificate chain*. This chain should start with the specific certificate for the principal who \"is\" the client or server, and then the certificate for the issuer of that certificate, and then the certificate for the issuer of *that* certificate, and so on up the chain till you get to a certificate which is *self-signed*, that is, a certificate which has the same subject and issuer, sometimes called a *root certificate*. The certificates should just be concatenated together in the certificate file. For example, suppose we had a three certificate chain, from our server certificate to the certificate of the certification authority that signed our server certificate, to the root certificate of the agency which issued the certification authority's certificate::" +msgstr "" + msgid "" "-----BEGIN CERTIFICATE-----\n" "... (certificate for your server)...\n" @@ -2671,35 +1368,18 @@ msgid "" "-----END CERTIFICATE-----" msgstr "" -#: ../../library/ssl.rst:2229 msgid "CA certificates" msgstr "" -#: ../../library/ssl.rst:2231 -msgid "" -"If you are going to require validation of the other side of the connection's " -"certificate, you need to provide a \"CA certs\" file, filled with the " -"certificate chains for each issuer you are willing to trust. Again, this " -"file just contains these chains concatenated together. For validation, " -"Python will use the first chain it finds in the file which matches. The " -"platform's certificates file can be used by " -"calling :meth:`SSLContext.load_default_certs`, this is done automatically " -"with :func:`.create_default_context`." +msgid "If you are going to require validation of the other side of the connection's certificate, you need to provide a \"CA certs\" file, filled with the certificate chains for each issuer you are willing to trust. Again, this file just contains these chains concatenated together. For validation, Python will use the first chain it finds in the file which matches. The platform's certificates file can be used by calling :meth:`SSLContext.load_default_certs`, this is done automatically with :func:`.create_default_context`." msgstr "" -#: ../../library/ssl.rst:2240 msgid "Combined key and certificate" msgstr "" -#: ../../library/ssl.rst:2242 -msgid "" -"Often the private key is stored in the same file as the certificate; in this " -"case, only the ``certfile`` parameter to :meth:`SSLContext.load_cert_chain` " -"needs to be passed. If the private key is stored with the certificate, it " -"should come before the first certificate in the certificate chain::" +msgid "Often the private key is stored in the same file as the certificate; in this case, only the ``certfile`` parameter to :meth:`SSLContext.load_cert_chain` needs to be passed. If the private key is stored with the certificate, it should come before the first certificate in the certificate chain::" msgstr "" -#: ../../library/ssl.rst:2248 msgid "" "-----BEGIN RSA PRIVATE KEY-----\n" "... (private key in base64 encoding) ...\n" @@ -2709,21 +1389,12 @@ msgid "" "-----END CERTIFICATE-----" msgstr "" -#: ../../library/ssl.rst:2256 msgid "Self-signed certificates" msgstr "" -#: ../../library/ssl.rst:2258 -msgid "" -"If you are going to create a server that provides SSL-encrypted connection " -"services, you will need to acquire a certificate for that service. There " -"are many ways of acquiring appropriate certificates, such as buying one from " -"a certification authority. Another common practice is to generate a self-" -"signed certificate. The simplest way to do this is with the OpenSSL " -"package, using something like the following::" +msgid "If you are going to create a server that provides SSL-encrypted connection services, you will need to acquire a certificate for that service. There are many ways of acquiring appropriate certificates, such as buying one from a certification authority. Another common practice is to generate a self-signed certificate. The simplest way to do this is with the OpenSSL package, using something like the following::" msgstr "" -#: ../../library/ssl.rst:2265 msgid "" "% openssl req -new -x509 -days 365 -nodes -out cert.pem -keyout cert.pem\n" "Generating a 1024 bit RSA private key\n" @@ -2741,36 +1412,25 @@ msgid "" "Country Name (2 letter code) [AU]:US\n" "State or Province Name (full name) [Some-State]:MyState\n" "Locality Name (eg, city) []:Some City\n" -"Organization Name (eg, company) [Internet Widgits Pty Ltd]:My Organization, " -"Inc.\n" +"Organization Name (eg, company) [Internet Widgits Pty Ltd]:My Organization, Inc.\n" "Organizational Unit Name (eg, section) []:My Group\n" "Common Name (eg, YOUR name) []:myserver.mygroup.myorganization.com\n" "Email Address []:ops@myserver.mygroup.myorganization.com\n" "%" msgstr "" -#: ../../library/ssl.rst:2287 -msgid "" -"The disadvantage of a self-signed certificate is that it is its own root " -"certificate, and no one else will have it in their cache of known (and " -"trusted) root certificates." +msgid "The disadvantage of a self-signed certificate is that it is its own root certificate, and no one else will have it in their cache of known (and trusted) root certificates." msgstr "" -#: ../../library/ssl.rst:2293 msgid "Examples" msgstr "" -#: ../../library/ssl.rst:2296 msgid "Testing for SSL support" msgstr "" -#: ../../library/ssl.rst:2298 -msgid "" -"To test for the presence of SSL support in a Python installation, user code " -"should use the following idiom::" +msgid "To test for the presence of SSL support in a Python installation, user code should use the following idiom::" msgstr "" -#: ../../library/ssl.rst:2301 msgid "" "try:\n" " import ssl\n" @@ -2780,92 +1440,57 @@ msgid "" " ... # do something that requires SSL support" msgstr "" -#: ../../library/ssl.rst:2309 msgid "Client-side operation" msgstr "" -#: ../../library/ssl.rst:2311 -msgid "" -"This example creates a SSL context with the recommended security settings " -"for client sockets, including automatic certificate verification::" +msgid "This example creates a SSL context with the recommended security settings for client sockets, including automatic certificate verification::" msgstr "" -#: ../../library/ssl.rst:2314 msgid ">>> context = ssl.create_default_context()" msgstr "" -#: ../../library/ssl.rst:2316 -msgid "" -"If you prefer to tune security settings yourself, you might create a context " -"from scratch (but beware that you might not get the settings right)::" +msgid "If you prefer to tune security settings yourself, you might create a context from scratch (but beware that you might not get the settings right)::" msgstr "" -#: ../../library/ssl.rst:2320 msgid "" ">>> context = ssl.SSLContext(ssl.PROTOCOL_TLS_CLIENT)\n" ">>> context.load_verify_locations(\"/etc/ssl/certs/ca-bundle.crt\")" msgstr "" -#: ../../library/ssl.rst:2323 -msgid "" -"(this snippet assumes your operating system places a bundle of all CA " -"certificates in ``/etc/ssl/certs/ca-bundle.crt``; if not, you'll get an " -"error and have to adjust the location)" +msgid "(this snippet assumes your operating system places a bundle of all CA certificates in ``/etc/ssl/certs/ca-bundle.crt``; if not, you'll get an error and have to adjust the location)" msgstr "" -#: ../../library/ssl.rst:2327 -msgid "" -"The :data:`PROTOCOL_TLS_CLIENT` protocol configures the context for cert " -"validation and hostname verification. :attr:`~SSLContext.verify_mode` is set " -"to :data:`CERT_REQUIRED` and :attr:`~SSLContext.check_hostname` is set to " -"``True``. All other protocols create SSL contexts with insecure defaults." +msgid "The :data:`PROTOCOL_TLS_CLIENT` protocol configures the context for cert validation and hostname verification. :attr:`~SSLContext.verify_mode` is set to :data:`CERT_REQUIRED` and :attr:`~SSLContext.check_hostname` is set to ``True``. All other protocols create SSL contexts with insecure defaults." msgstr "" -#: ../../library/ssl.rst:2332 -msgid "" -"When you use the context to connect to a server, :const:`CERT_REQUIRED` " -"and :attr:`~SSLContext.check_hostname` validate the server certificate: it " -"ensures that the server certificate was signed with one of the CA " -"certificates, checks the signature for correctness, and verifies other " -"properties like validity and identity of the hostname::" +msgid "When you use the context to connect to a server, :const:`CERT_REQUIRED` and :attr:`~SSLContext.check_hostname` validate the server certificate: it ensures that the server certificate was signed with one of the CA certificates, checks the signature for correctness, and verifies other properties like validity and identity of the hostname::" msgstr "" -#: ../../library/ssl.rst:2338 msgid "" ">>> conn = context.wrap_socket(socket.socket(socket.AF_INET),\n" "... server_hostname=\"www.python.org\")\n" ">>> conn.connect((\"www.python.org\", 443))" msgstr "" -#: ../../library/ssl.rst:2342 msgid "You may then fetch the certificate::" msgstr "" -#: ../../library/ssl.rst:2344 msgid ">>> cert = conn.getpeercert()" msgstr "" -#: ../../library/ssl.rst:2346 -msgid "" -"Visual inspection shows that the certificate does identify the desired " -"service (that is, the HTTPS host ``www.python.org``)::" +msgid "Visual inspection shows that the certificate does identify the desired service (that is, the HTTPS host ``www.python.org``)::" msgstr "" -#: ../../library/ssl.rst:2349 msgid "" ">>> pprint.pprint(cert)\n" "{'OCSP': ('http://ocsp.digicert.com',),\n" -" 'caIssuers': ('http://cacerts.digicert.com/" -"DigiCertSHA2ExtendedValidationServerCA.crt',),\n" -" 'crlDistributionPoints': ('http://crl3.digicert.com/sha2-ev-server-" -"g1.crl',\n" -" 'http://crl4.digicert.com/sha2-ev-server-" -"g1.crl'),\n" +" 'caIssuers': ('http://cacerts.digicert.com/DigiCertSHA2ExtendedValidationServerCA.crt',),\n" +" 'crlDistributionPoints': ('http://crl3.digicert.com/sha2-ev-server-g1.crl',\n" +" 'http://crl4.digicert.com/sha2-ev-server-g1.crl'),\n" " 'issuer': ((('countryName', 'US'),),\n" " (('organizationName', 'DigiCert Inc'),),\n" " (('organizationalUnitName', 'www.digicert.com'),),\n" -" (('commonName', 'DigiCert SHA2 Extended Validation Server " -"CA'),)),\n" +" (('commonName', 'DigiCert SHA2 Extended Validation Server CA'),)),\n" " 'notAfter': 'Sep 9 12:00:00 2016 GMT',\n" " 'notBefore': 'Sep 5 00:00:00 2014 GMT',\n" " 'serialNumber': '01BB6F00122B177F36CAB49CEA8B6B26',\n" @@ -2898,13 +1523,9 @@ msgid "" " 'version': 3}" msgstr "" -#: ../../library/ssl.rst:2389 -msgid "" -"Now the SSL channel is established and the certificate verified, you can " -"proceed to talk with the server::" +msgid "Now the SSL channel is established and the certificate verified, you can proceed to talk with the server::" msgstr "" -#: ../../library/ssl.rst:2392 msgid "" ">>> conn.sendall(b\"HEAD / HTTP/1.0\\r\\nHost: linuxfr.org\\r\\n\\r\\n\")\n" ">>> pprint.pprint(conn.recv(1024).split(b\"\\r\\n\"))\n" @@ -2927,20 +1548,12 @@ msgid "" " b'']" msgstr "" -#: ../../library/ssl.rst:2416 msgid "Server-side operation" msgstr "" -#: ../../library/ssl.rst:2418 -msgid "" -"For server operation, typically you'll need to have a server certificate, " -"and private key, each in a file. You'll first create a context holding the " -"key and the certificate, so that clients can check your authenticity. Then " -"you'll open a socket, bind it to a port, call :meth:`listen` on it, and " -"start waiting for clients to connect::" +msgid "For server operation, typically you'll need to have a server certificate, and private key, each in a file. You'll first create a context holding the key and the certificate, so that clients can check your authenticity. Then you'll open a socket, bind it to a port, call :meth:`listen` on it, and start waiting for clients to connect::" msgstr "" -#: ../../library/ssl.rst:2424 msgid "" "import socket, ssl\n" "\n" @@ -2952,15 +1565,9 @@ msgid "" "bindsocket.listen(5)" msgstr "" -#: ../../library/ssl.rst:2433 -msgid "" -"When a client connects, you'll call :meth:`accept` on the socket to get the " -"new socket from the other end, and use the " -"context's :meth:`SSLContext.wrap_socket` method to create a server-side SSL " -"socket for the connection::" +msgid "When a client connects, you'll call :meth:`accept` on the socket to get the new socket from the other end, and use the context's :meth:`SSLContext.wrap_socket` method to create a server-side SSL socket for the connection::" msgstr "" -#: ../../library/ssl.rst:2437 msgid "" "while True:\n" " newsocket, fromaddr = bindsocket.accept()\n" @@ -2972,13 +1579,9 @@ msgid "" " connstream.close()" msgstr "" -#: ../../library/ssl.rst:2446 -msgid "" -"Then you'll read data from the ``connstream`` and do something with it till " -"you are finished with the client (or the client is finished with you)::" +msgid "Then you'll read data from the ``connstream`` and do something with it till you are finished with the client (or the client is finished with you)::" msgstr "" -#: ../../library/ssl.rst:2449 msgid "" "def deal_with_client(connstream):\n" " data = connstream.recv(1024)\n" @@ -2992,77 +1595,33 @@ msgid "" " # finished with client" msgstr "" -#: ../../library/ssl.rst:2460 -msgid "" -"And go back to listening for new client connections (of course, a real " -"server would probably handle each client connection in a separate thread, or " -"put the sockets in :ref:`non-blocking mode ` and use an " -"event loop)." +msgid "And go back to listening for new client connections (of course, a real server would probably handle each client connection in a separate thread, or put the sockets in :ref:`non-blocking mode ` and use an event loop)." msgstr "" -#: ../../library/ssl.rst:2468 msgid "Notes on non-blocking sockets" msgstr "" -#: ../../library/ssl.rst:2470 -msgid "" -"SSL sockets behave slightly different than regular sockets in non-blocking " -"mode. When working with non-blocking sockets, there are thus several things " -"you need to be aware of:" +msgid "SSL sockets behave slightly different than regular sockets in non-blocking mode. When working with non-blocking sockets, there are thus several things you need to be aware of:" msgstr "" -#: ../../library/ssl.rst:2474 -msgid "" -"Most :class:`SSLSocket` methods will raise either :exc:`SSLWantWriteError` " -"or :exc:`SSLWantReadError` instead of :exc:`BlockingIOError` if an I/O " -"operation would block. :exc:`SSLWantReadError` will be raised if a read " -"operation on the underlying socket is necessary, " -"and :exc:`SSLWantWriteError` for a write operation on the underlying socket. " -"Note that attempts to *write* to an SSL socket may require *reading* from " -"the underlying socket first, and attempts to *read* from the SSL socket may " -"require a prior *write* to the underlying socket." +msgid "Most :class:`SSLSocket` methods will raise either :exc:`SSLWantWriteError` or :exc:`SSLWantReadError` instead of :exc:`BlockingIOError` if an I/O operation would block. :exc:`SSLWantReadError` will be raised if a read operation on the underlying socket is necessary, and :exc:`SSLWantWriteError` for a write operation on the underlying socket. Note that attempts to *write* to an SSL socket may require *reading* from the underlying socket first, and attempts to *read* from the SSL socket may require a prior *write* to the underlying socket." msgstr "" -#: ../../library/ssl.rst:2486 -msgid "" -"In earlier Python versions, the :meth:`!SSLSocket.send` method returned zero " -"instead of raising :exc:`SSLWantWriteError` or :exc:`SSLWantReadError`." +msgid "In earlier Python versions, the :meth:`!SSLSocket.send` method returned zero instead of raising :exc:`SSLWantWriteError` or :exc:`SSLWantReadError`." msgstr "" -#: ../../library/ssl.rst:2490 -msgid "" -"Calling :func:`~select.select` tells you that the OS-level socket can be " -"read from (or written to), but it does not imply that there is sufficient " -"data at the upper SSL layer. For example, only part of an SSL frame might " -"have arrived. Therefore, you must be ready to handle :meth:`SSLSocket.recv` " -"and :meth:`SSLSocket.send` failures, and retry after another call " -"to :func:`~select.select`." +msgid "Calling :func:`~select.select` tells you that the OS-level socket can be read from (or written to), but it does not imply that there is sufficient data at the upper SSL layer. For example, only part of an SSL frame might have arrived. Therefore, you must be ready to handle :meth:`SSLSocket.recv` and :meth:`SSLSocket.send` failures, and retry after another call to :func:`~select.select`." msgstr "" -#: ../../library/ssl.rst:2497 -msgid "" -"Conversely, since the SSL layer has its own framing, a SSL socket may still " -"have data available for reading without :func:`~select.select` being aware " -"of it. Therefore, you should first call :meth:`SSLSocket.recv` to drain any " -"potentially available data, and then only block on a :func:`~select.select` " -"call if still necessary." +msgid "Conversely, since the SSL layer has its own framing, a SSL socket may still have data available for reading without :func:`~select.select` being aware of it. Therefore, you should first call :meth:`SSLSocket.recv` to drain any potentially available data, and then only block on a :func:`~select.select` call if still necessary." msgstr "" -#: ../../library/ssl.rst:2503 -msgid "" -"(of course, similar provisions apply when using other primitives such " -"as :func:`~select.poll`, or those in the :mod:`selectors` module)" +msgid "(of course, similar provisions apply when using other primitives such as :func:`~select.poll`, or those in the :mod:`selectors` module)" msgstr "" -#: ../../library/ssl.rst:2506 -msgid "" -"The SSL handshake itself will be non-blocking: " -"the :meth:`SSLSocket.do_handshake` method has to be retried until it returns " -"successfully. Here is a synopsis using :func:`~select.select` to wait for " -"the socket's readiness::" +msgid "The SSL handshake itself will be non-blocking: the :meth:`SSLSocket.do_handshake` method has to be retried until it returns successfully. Here is a synopsis using :func:`~select.select` to wait for the socket's readiness::" msgstr "" -#: ../../library/ssl.rst:2511 msgid "" "while True:\n" " try:\n" @@ -3074,306 +1633,171 @@ msgid "" " select.select([], [sock], [])" msgstr "" -#: ../../library/ssl.rst:2522 -msgid "" -"The :mod:`asyncio` module supports :ref:`non-blocking SSL sockets ` and provides a higher level :ref:`Streams API `. It polls for events using the :mod:`selectors` module and " -"handles :exc:`SSLWantWriteError`, :exc:`SSLWantReadError` " -"and :exc:`BlockingIOError` exceptions. It runs the SSL handshake " -"asynchronously as well." +msgid "The :mod:`asyncio` module supports :ref:`non-blocking SSL sockets ` and provides a higher level :ref:`Streams API `. It polls for events using the :mod:`selectors` module and handles :exc:`SSLWantWriteError`, :exc:`SSLWantReadError` and :exc:`BlockingIOError` exceptions. It runs the SSL handshake asynchronously as well." msgstr "" -#: ../../library/ssl.rst:2531 msgid "Memory BIO support" msgstr "" -#: ../../library/ssl.rst:2535 -msgid "" -"Ever since the SSL module was introduced in Python 2.6, " -"the :class:`SSLSocket` class has provided two related but distinct areas of " -"functionality:" +msgid "Ever since the SSL module was introduced in Python 2.6, the :class:`SSLSocket` class has provided two related but distinct areas of functionality:" msgstr "" -#: ../../library/ssl.rst:2538 msgid "SSL protocol handling" msgstr "" -#: ../../library/ssl.rst:2539 msgid "Network IO" msgstr "" -#: ../../library/ssl.rst:2541 -msgid "" -"The network IO API is identical to that provided by :class:`socket.socket`, " -"from which :class:`SSLSocket` also inherits. This allows an SSL socket to be " -"used as a drop-in replacement for a regular socket, making it very easy to " -"add SSL support to an existing application." +msgid "The network IO API is identical to that provided by :class:`socket.socket`, from which :class:`SSLSocket` also inherits. This allows an SSL socket to be used as a drop-in replacement for a regular socket, making it very easy to add SSL support to an existing application." msgstr "" -#: ../../library/ssl.rst:2546 -msgid "" -"Combining SSL protocol handling and network IO usually works well, but there " -"are some cases where it doesn't. An example is async IO frameworks that want " -"to use a different IO multiplexing model than the \"select/poll on a file " -"descriptor\" (readiness based) model that is assumed " -"by :class:`socket.socket` and by the internal OpenSSL socket IO routines. " -"This is mostly relevant for platforms like Windows where this model is not " -"efficient. For this purpose, a reduced scope variant of :class:`SSLSocket` " -"called :class:`SSLObject` is provided." +msgid "Combining SSL protocol handling and network IO usually works well, but there are some cases where it doesn't. An example is async IO frameworks that want to use a different IO multiplexing model than the \"select/poll on a file descriptor\" (readiness based) model that is assumed by :class:`socket.socket` and by the internal OpenSSL socket IO routines. This is mostly relevant for platforms like Windows where this model is not efficient. For this purpose, a reduced scope variant of :class:`SSLSocket` called :class:`SSLObject` is provided." msgstr "" -#: ../../library/ssl.rst:2557 -msgid "" -"A reduced-scope variant of :class:`SSLSocket` representing an SSL protocol " -"instance that does not contain any network IO methods. This class is " -"typically used by framework authors that want to implement asynchronous IO " -"for SSL through memory buffers." +msgid "A reduced-scope variant of :class:`SSLSocket` representing an SSL protocol instance that does not contain any network IO methods. This class is typically used by framework authors that want to implement asynchronous IO for SSL through memory buffers." msgstr "" -#: ../../library/ssl.rst:2562 -msgid "" -"This class implements an interface on top of a low-level SSL object as " -"implemented by OpenSSL. This object captures the state of an SSL connection " -"but does not provide any network IO itself. IO needs to be performed through " -"separate \"BIO\" objects which are OpenSSL's IO abstraction layer." +msgid "This class implements an interface on top of a low-level SSL object as implemented by OpenSSL. This object captures the state of an SSL connection but does not provide any network IO itself. IO needs to be performed through separate \"BIO\" objects which are OpenSSL's IO abstraction layer." msgstr "" -#: ../../library/ssl.rst:2567 -msgid "" -"This class has no public constructor. An :class:`SSLObject` instance must " -"be created using the :meth:`~SSLContext.wrap_bio` method. This method will " -"create the :class:`SSLObject` instance and bind it to a pair of BIOs. The " -"*incoming* BIO is used to pass data from Python to the SSL protocol " -"instance, while the *outgoing* BIO is used to pass data the other way around." +msgid "This class has no public constructor. An :class:`SSLObject` instance must be created using the :meth:`~SSLContext.wrap_bio` method. This method will create the :class:`SSLObject` instance and bind it to a pair of BIOs. The *incoming* BIO is used to pass data from Python to the SSL protocol instance, while the *outgoing* BIO is used to pass data the other way around." msgstr "" -#: ../../library/ssl.rst:2574 msgid "The following methods are available:" msgstr "" -#: ../../library/ssl.rst:2576 msgid ":attr:`~SSLSocket.context`" msgstr "" -#: ../../library/ssl.rst:2577 msgid ":attr:`~SSLSocket.server_side`" msgstr "" -#: ../../library/ssl.rst:2578 msgid ":attr:`~SSLSocket.server_hostname`" msgstr "" -#: ../../library/ssl.rst:2579 msgid ":attr:`~SSLSocket.session`" msgstr "" -#: ../../library/ssl.rst:2580 msgid ":attr:`~SSLSocket.session_reused`" msgstr "" -#: ../../library/ssl.rst:2581 msgid ":meth:`~SSLSocket.read`" msgstr "" -#: ../../library/ssl.rst:2582 msgid ":meth:`~SSLSocket.write`" msgstr "" -#: ../../library/ssl.rst:2583 msgid ":meth:`~SSLSocket.getpeercert`" msgstr "" -#: ../../library/ssl.rst:2584 msgid ":meth:`~SSLSocket.get_verified_chain`" msgstr "" -#: ../../library/ssl.rst:2585 msgid ":meth:`~SSLSocket.get_unverified_chain`" msgstr "" -#: ../../library/ssl.rst:2586 msgid ":meth:`~SSLSocket.selected_alpn_protocol`" msgstr "" -#: ../../library/ssl.rst:2587 msgid ":meth:`~SSLSocket.selected_npn_protocol`" msgstr "" -#: ../../library/ssl.rst:2588 msgid ":meth:`~SSLSocket.cipher`" msgstr "" -#: ../../library/ssl.rst:2589 msgid ":meth:`~SSLSocket.shared_ciphers`" msgstr "" -#: ../../library/ssl.rst:2590 msgid ":meth:`~SSLSocket.compression`" msgstr "" -#: ../../library/ssl.rst:2591 msgid ":meth:`~SSLSocket.pending`" msgstr "" -#: ../../library/ssl.rst:2592 msgid ":meth:`~SSLSocket.do_handshake`" msgstr "" -#: ../../library/ssl.rst:2593 msgid ":meth:`~SSLSocket.verify_client_post_handshake`" msgstr "" -#: ../../library/ssl.rst:2594 msgid ":meth:`~SSLSocket.unwrap`" msgstr "" -#: ../../library/ssl.rst:2595 msgid ":meth:`~SSLSocket.get_channel_binding`" msgstr "" -#: ../../library/ssl.rst:2596 msgid ":meth:`~SSLSocket.version`" msgstr "" -#: ../../library/ssl.rst:2598 -msgid "" -"When compared to :class:`SSLSocket`, this object lacks the following " -"features:" +msgid "When compared to :class:`SSLSocket`, this object lacks the following features:" msgstr "" -#: ../../library/ssl.rst:2601 -msgid "" -"Any form of network IO; ``recv()`` and ``send()`` read and write only to the " -"underlying :class:`MemoryBIO` buffers." +msgid "Any form of network IO; ``recv()`` and ``send()`` read and write only to the underlying :class:`MemoryBIO` buffers." msgstr "" -#: ../../library/ssl.rst:2604 -msgid "" -"There is no *do_handshake_on_connect* machinery. You must always manually " -"call :meth:`~SSLSocket.do_handshake` to start the handshake." +msgid "There is no *do_handshake_on_connect* machinery. You must always manually call :meth:`~SSLSocket.do_handshake` to start the handshake." msgstr "" -#: ../../library/ssl.rst:2607 -msgid "" -"There is no handling of *suppress_ragged_eofs*. All end-of-file conditions " -"that are in violation of the protocol are reported via " -"the :exc:`SSLEOFError` exception." +msgid "There is no handling of *suppress_ragged_eofs*. All end-of-file conditions that are in violation of the protocol are reported via the :exc:`SSLEOFError` exception." msgstr "" -#: ../../library/ssl.rst:2611 -msgid "" -"The method :meth:`~SSLSocket.unwrap` call does not return anything, unlike " -"for an SSL socket where it returns the underlying socket." +msgid "The method :meth:`~SSLSocket.unwrap` call does not return anything, unlike for an SSL socket where it returns the underlying socket." msgstr "" -#: ../../library/ssl.rst:2614 -msgid "" -"The *server_name_callback* callback passed " -"to :meth:`SSLContext.set_servername_callback` will get an :class:`SSLObject` " -"instance instead of a :class:`SSLSocket` instance as its first parameter." +msgid "The *server_name_callback* callback passed to :meth:`SSLContext.set_servername_callback` will get an :class:`SSLObject` instance instead of a :class:`SSLSocket` instance as its first parameter." msgstr "" -#: ../../library/ssl.rst:2618 msgid "Some notes related to the use of :class:`SSLObject`:" msgstr "" -#: ../../library/ssl.rst:2620 -msgid "" -"All IO on an :class:`SSLObject` is :ref:`non-blocking `. " -"This means that for example :meth:`~SSLSocket.read` will raise " -"an :exc:`SSLWantReadError` if it needs more data than the incoming BIO has " -"available." +msgid "All IO on an :class:`SSLObject` is :ref:`non-blocking `. This means that for example :meth:`~SSLSocket.read` will raise an :exc:`SSLWantReadError` if it needs more data than the incoming BIO has available." msgstr "" -#: ../../library/ssl.rst:2625 -msgid "" -":class:`SSLObject` instances must be created " -"with :meth:`~SSLContext.wrap_bio`. In earlier versions, it was possible to " -"create instances directly. This was never documented or officially supported." +msgid ":class:`SSLObject` instances must be created with :meth:`~SSLContext.wrap_bio`. In earlier versions, it was possible to create instances directly. This was never documented or officially supported." msgstr "" -#: ../../library/ssl.rst:2631 -msgid "" -"An SSLObject communicates with the outside world using memory buffers. The " -"class :class:`MemoryBIO` provides a memory buffer that can be used for this " -"purpose. It wraps an OpenSSL memory BIO (Basic IO) object:" +msgid "An SSLObject communicates with the outside world using memory buffers. The class :class:`MemoryBIO` provides a memory buffer that can be used for this purpose. It wraps an OpenSSL memory BIO (Basic IO) object:" msgstr "" -#: ../../library/ssl.rst:2637 -msgid "" -"A memory buffer that can be used to pass data between Python and an SSL " -"protocol instance." +msgid "A memory buffer that can be used to pass data between Python and an SSL protocol instance." msgstr "" -#: ../../library/ssl.rst:2642 msgid "Return the number of bytes currently in the memory buffer." msgstr "" -#: ../../library/ssl.rst:2646 -msgid "" -"A boolean indicating whether the memory BIO is current at the end-of-file " -"position." +msgid "A boolean indicating whether the memory BIO is current at the end-of-file position." msgstr "" -#: ../../library/ssl.rst:2651 -msgid "" -"Read up to *n* bytes from the memory buffer. If *n* is not specified or " -"negative, all bytes are returned." +msgid "Read up to *n* bytes from the memory buffer. If *n* is not specified or negative, all bytes are returned." msgstr "" -#: ../../library/ssl.rst:2656 -msgid "" -"Write the bytes from *buf* to the memory BIO. The *buf* argument must be an " -"object supporting the buffer protocol." +msgid "Write the bytes from *buf* to the memory BIO. The *buf* argument must be an object supporting the buffer protocol." msgstr "" -#: ../../library/ssl.rst:2659 -msgid "" -"The return value is the number of bytes written, which is always equal to " -"the length of *buf*." +msgid "The return value is the number of bytes written, which is always equal to the length of *buf*." msgstr "" -#: ../../library/ssl.rst:2664 -msgid "" -"Write an EOF marker to the memory BIO. After this method has been called, it " -"is illegal to call :meth:`~MemoryBIO.write`. The attribute :attr:`eof` will " -"become true after all data currently in the buffer has been read." +msgid "Write an EOF marker to the memory BIO. After this method has been called, it is illegal to call :meth:`~MemoryBIO.write`. The attribute :attr:`eof` will become true after all data currently in the buffer has been read." msgstr "" -#: ../../library/ssl.rst:2670 msgid "SSL session" msgstr "" -#: ../../library/ssl.rst:2676 msgid "Session object used by :attr:`~SSLSocket.session`." msgstr "" -#: ../../library/ssl.rst:2688 msgid "Security considerations" msgstr "" -#: ../../library/ssl.rst:2691 msgid "Best defaults" msgstr "" -#: ../../library/ssl.rst:2693 -msgid "" -"For **client use**, if you don't have any special requirements for your " -"security policy, it is highly recommended that you use " -"the :func:`create_default_context` function to create your SSL context. It " -"will load the system's trusted CA certificates, enable certificate " -"validation and hostname checking, and try to choose reasonably secure " -"protocol and cipher settings." +msgid "For **client use**, if you don't have any special requirements for your security policy, it is highly recommended that you use the :func:`create_default_context` function to create your SSL context. It will load the system's trusted CA certificates, enable certificate validation and hostname checking, and try to choose reasonably secure protocol and cipher settings." msgstr "" -#: ../../library/ssl.rst:2700 -msgid "" -"For example, here is how you would use the :class:`smtplib.SMTP` class to " -"create a trusted, secure connection to a SMTP server::" +msgid "For example, here is how you would use the :class:`smtplib.SMTP` class to create a trusted, secure connection to a SMTP server::" msgstr "" -#: ../../library/ssl.rst:2703 msgid "" ">>> import ssl, smtplib\n" ">>> smtp = smtplib.SMTP(\"mail.python.org\", port=587)\n" @@ -3382,278 +1806,152 @@ msgid "" "(220, b'2.0.0 Ready to start TLS')" msgstr "" -#: ../../library/ssl.rst:2709 -msgid "" -"If a client certificate is needed for the connection, it can be added " -"with :meth:`SSLContext.load_cert_chain`." +msgid "If a client certificate is needed for the connection, it can be added with :meth:`SSLContext.load_cert_chain`." msgstr "" -#: ../../library/ssl.rst:2712 -msgid "" -"By contrast, if you create the SSL context by calling " -"the :class:`SSLContext` constructor yourself, it will not have certificate " -"validation nor hostname checking enabled by default. If you do so, please " -"read the paragraphs below to achieve a good security level." +msgid "By contrast, if you create the SSL context by calling the :class:`SSLContext` constructor yourself, it will not have certificate validation nor hostname checking enabled by default. If you do so, please read the paragraphs below to achieve a good security level." msgstr "" -#: ../../library/ssl.rst:2718 msgid "Manual settings" msgstr "" -#: ../../library/ssl.rst:2721 msgid "Verifying certificates" msgstr "" -#: ../../library/ssl.rst:2723 -msgid "" -"When calling the :class:`SSLContext` constructor " -"directly, :const:`CERT_NONE` is the default. Since it does not authenticate " -"the other peer, it can be insecure, especially in client mode where most of " -"the time you would like to ensure the authenticity of the server you're " -"talking to. Therefore, when in client mode, it is highly recommended to " -"use :const:`CERT_REQUIRED`. However, it is in itself not sufficient; you " -"also have to check that the server certificate, which can be obtained by " -"calling :meth:`SSLSocket.getpeercert`, matches the desired service. For " -"many protocols and applications, the service can be identified by the " -"hostname. This common check is automatically performed " -"when :attr:`SSLContext.check_hostname` is enabled." -msgstr "" - -#: ../../library/ssl.rst:2735 -msgid "" -"Hostname matchings is now performed by OpenSSL. Python no longer " -"uses :func:`!match_hostname`." +msgid "When calling the :class:`SSLContext` constructor directly, :const:`CERT_NONE` is the default. Since it does not authenticate the other peer, it can be insecure, especially in client mode where most of the time you would like to ensure the authenticity of the server you're talking to. Therefore, when in client mode, it is highly recommended to use :const:`CERT_REQUIRED`. However, it is in itself not sufficient; you also have to check that the server certificate, which can be obtained by calling :meth:`SSLSocket.getpeercert`, matches the desired service. For many protocols and applications, the service can be identified by the hostname. This common check is automatically performed when :attr:`SSLContext.check_hostname` is enabled." msgstr "" -#: ../../library/ssl.rst:2739 -msgid "" -"In server mode, if you want to authenticate your clients using the SSL layer " -"(rather than using a higher-level authentication mechanism), you'll also " -"have to specify :const:`CERT_REQUIRED` and similarly check the client " -"certificate." +msgid "Hostname matchings is now performed by OpenSSL. Python no longer uses :func:`!match_hostname`." +msgstr "" + +msgid "In server mode, if you want to authenticate your clients using the SSL layer (rather than using a higher-level authentication mechanism), you'll also have to specify :const:`CERT_REQUIRED` and similarly check the client certificate." msgstr "" -#: ../../library/ssl.rst:2745 msgid "Protocol versions" msgstr "" -#: ../../library/ssl.rst:2747 -msgid "" -"SSL versions 2 and 3 are considered insecure and are therefore dangerous to " -"use. If you want maximum compatibility between clients and servers, it is " -"recommended to use :const:`PROTOCOL_TLS_CLIENT` " -"or :const:`PROTOCOL_TLS_SERVER` as the protocol version. SSLv2 and SSLv3 are " -"disabled by default." +msgid "SSL versions 2 and 3 are considered insecure and are therefore dangerous to use. If you want maximum compatibility between clients and servers, it is recommended to use :const:`PROTOCOL_TLS_CLIENT` or :const:`PROTOCOL_TLS_SERVER` as the protocol version. SSLv2 and SSLv3 are disabled by default." msgstr "" -#: ../../library/ssl.rst:2755 msgid "" ">>> client_context = ssl.SSLContext(ssl.PROTOCOL_TLS_CLIENT)\n" ">>> client_context.minimum_version = ssl.TLSVersion.TLSv1_2\n" ">>> client_context.maximum_version = ssl.TLSVersion.TLSv1_3" msgstr "" -#: ../../library/ssl.rst:2760 -msgid "" -"The SSL client context created above will only allow TLSv1.2 and TLSv1.3 (if " -"supported by your system) connections to a " -"server. :const:`PROTOCOL_TLS_CLIENT` implies certificate validation and " -"hostname checks by default. You have to load certificates into the context." +msgid "The SSL client context created above will only allow TLSv1.2 and TLSv1.3 (if supported by your system) connections to a server. :const:`PROTOCOL_TLS_CLIENT` implies certificate validation and hostname checks by default. You have to load certificates into the context." msgstr "" -#: ../../library/ssl.rst:2767 msgid "Cipher selection" msgstr "" -#: ../../library/ssl.rst:2769 -msgid "" -"If you have advanced security requirements, fine-tuning of the ciphers " -"enabled when negotiating a SSL session is possible through " -"the :meth:`SSLContext.set_ciphers` method. Starting from Python 3.2.3, the " -"ssl module disables certain weak ciphers by default, but you may want to " -"further restrict the cipher choice. Be sure to read OpenSSL's documentation " -"about the `cipher list format `_. If you want to check which ciphers are enabled by a " -"given cipher list, use :meth:`SSLContext.get_ciphers` or the ``openssl " -"ciphers`` command on your system." -msgstr "" - -#: ../../library/ssl.rst:2780 +msgid "If you have advanced security requirements, fine-tuning of the ciphers enabled when negotiating a SSL session is possible through the :meth:`SSLContext.set_ciphers` method. Starting from Python 3.2.3, the ssl module disables certain weak ciphers by default, but you may want to further restrict the cipher choice. Be sure to read OpenSSL's documentation about the `cipher list format `_. If you want to check which ciphers are enabled by a given cipher list, use :meth:`SSLContext.get_ciphers` or the ``openssl ciphers`` command on your system." +msgstr "" + msgid "Multi-processing" msgstr "" -#: ../../library/ssl.rst:2782 -msgid "" -"If using this module as part of a multi-processed application (using, for " -"example the :mod:`multiprocessing` or :mod:`concurrent.futures` modules), be " -"aware that OpenSSL's internal random number generator does not properly " -"handle forked processes. Applications must change the PRNG state of the " -"parent process if they use any SSL feature with :func:`os.fork`. Any " -"successful call of :func:`~ssl.RAND_add` or :func:`~ssl.RAND_bytes` is " -"sufficient." +msgid "If using this module as part of a multi-processed application (using, for example the :mod:`multiprocessing` or :mod:`concurrent.futures` modules), be aware that OpenSSL's internal random number generator does not properly handle forked processes. Applications must change the PRNG state of the parent process if they use any SSL feature with :func:`os.fork`. Any successful call of :func:`~ssl.RAND_add` or :func:`~ssl.RAND_bytes` is sufficient." msgstr "" -#: ../../library/ssl.rst:2794 msgid "TLS 1.3" msgstr "" -#: ../../library/ssl.rst:2798 -msgid "" -"The TLS 1.3 protocol behaves slightly differently than previous version of " -"TLS/SSL. Some new TLS 1.3 features are not yet available." +msgid "The TLS 1.3 protocol behaves slightly differently than previous version of TLS/SSL. Some new TLS 1.3 features are not yet available." msgstr "" -#: ../../library/ssl.rst:2801 -msgid "" -"TLS 1.3 uses a disjunct set of cipher suites. All AES-GCM and ChaCha20 " -"cipher suites are enabled by default. The " -"method :meth:`SSLContext.set_ciphers` cannot enable or disable any TLS 1.3 " -"ciphers yet, but :meth:`SSLContext.get_ciphers` returns them." +msgid "TLS 1.3 uses a disjunct set of cipher suites. All AES-GCM and ChaCha20 cipher suites are enabled by default. The method :meth:`SSLContext.set_ciphers` cannot enable or disable any TLS 1.3 ciphers yet, but :meth:`SSLContext.get_ciphers` returns them." msgstr "" -#: ../../library/ssl.rst:2805 -msgid "" -"Session tickets are no longer sent as part of the initial handshake and are " -"handled differently. :attr:`SSLSocket.session` and :class:`SSLSession` are " -"not compatible with TLS 1.3." +msgid "Session tickets are no longer sent as part of the initial handshake and are handled differently. :attr:`SSLSocket.session` and :class:`SSLSession` are not compatible with TLS 1.3." msgstr "" -#: ../../library/ssl.rst:2808 -msgid "" -"Client-side certificates are also no longer verified during the initial " -"handshake. A server can request a certificate at any time. Clients process " -"certificate requests while they send or receive application data from the " -"server." +msgid "Client-side certificates are also no longer verified during the initial handshake. A server can request a certificate at any time. Clients process certificate requests while they send or receive application data from the server." msgstr "" -#: ../../library/ssl.rst:2812 -msgid "" -"TLS 1.3 features like early data, deferred TLS client cert request, " -"signature algorithm configuration, and rekeying are not supported yet." +msgid "TLS 1.3 features like early data, deferred TLS client cert request, signature algorithm configuration, and rekeying are not supported yet." msgstr "" -#: ../../library/ssl.rst:2818 msgid "Class :class:`socket.socket`" msgstr "" -#: ../../library/ssl.rst:2819 msgid "Documentation of underlying :mod:`socket` class" msgstr "" -#: ../../library/ssl.rst:2821 -msgid "" -"`SSL/TLS Strong Encryption: An Introduction `_" +msgid "`SSL/TLS Strong Encryption: An Introduction `_" msgstr "" -#: ../../library/ssl.rst:2822 msgid "Intro from the Apache HTTP Server documentation" msgstr "" -#: ../../library/ssl.rst:2824 -msgid "" -":rfc:`RFC 1422: Privacy Enhancement for Internet Electronic Mail: Part II: " -"Certificate-Based Key Management <1422>`" +msgid ":rfc:`RFC 1422: Privacy Enhancement for Internet Electronic Mail: Part II: Certificate-Based Key Management <1422>`" msgstr "" -#: ../../library/ssl.rst:2825 msgid "Steve Kent" msgstr "" -#: ../../library/ssl.rst:2827 msgid ":rfc:`RFC 4086: Randomness Requirements for Security <4086>`" msgstr "" -#: ../../library/ssl.rst:2828 msgid "Donald E. Eastlake, Jeffrey I. Schiller, Steve Crocker" msgstr "" -#: ../../library/ssl.rst:2830 -msgid "" -":rfc:`RFC 5280: Internet X.509 Public Key Infrastructure Certificate and " -"Certificate Revocation List (CRL) Profile <5280>`" +msgid ":rfc:`RFC 5280: Internet X.509 Public Key Infrastructure Certificate and Certificate Revocation List (CRL) Profile <5280>`" msgstr "" -#: ../../library/ssl.rst:2831 msgid "David Cooper et al." msgstr "" -#: ../../library/ssl.rst:2833 -msgid "" -":rfc:`RFC 5246: The Transport Layer Security (TLS) Protocol Version 1.2 " -"<5246>`" +msgid ":rfc:`RFC 5246: The Transport Layer Security (TLS) Protocol Version 1.2 <5246>`" msgstr "" -#: ../../library/ssl.rst:2834 msgid "Tim Dierks and Eric Rescorla." msgstr "" -#: ../../library/ssl.rst:2836 msgid ":rfc:`RFC 6066: Transport Layer Security (TLS) Extensions <6066>`" msgstr "" -#: ../../library/ssl.rst:2837 msgid "Donald E. Eastlake" msgstr "" -#: ../../library/ssl.rst:2839 -msgid "" -"`IANA TLS: Transport Layer Security (TLS) Parameters `_" +msgid "`IANA TLS: Transport Layer Security (TLS) Parameters `_" msgstr "" -#: ../../library/ssl.rst:2840 msgid "IANA" msgstr "" -#: ../../library/ssl.rst:2842 -msgid "" -":rfc:`RFC 7525: Recommendations for Secure Use of Transport Layer Security " -"(TLS) and Datagram Transport Layer Security (DTLS) <7525>`" +msgid ":rfc:`RFC 7525: Recommendations for Secure Use of Transport Layer Security (TLS) and Datagram Transport Layer Security (DTLS) <7525>`" msgstr "" -#: ../../library/ssl.rst:2843 msgid "IETF" msgstr "" -#: ../../library/ssl.rst:2845 -msgid "" -"`Mozilla's Server Side TLS recommendations `_" +msgid "`Mozilla's Server Side TLS recommendations `_" msgstr "" -#: ../../library/ssl.rst:2846 msgid "Mozilla" msgstr "" -#: ../../library/ssl.rst:12 msgid "OpenSSL" msgstr "" -#: ../../library/ssl.rst:12 msgid "(use in module ssl)" msgstr "" -#: ../../library/ssl.rst:14 msgid "TLS" msgstr "" -#: ../../library/ssl.rst:14 msgid "SSL" msgstr "" -#: ../../library/ssl.rst:14 msgid "Transport Layer Security" msgstr "" -#: ../../library/ssl.rst:14 msgid "Secure Sockets Layer" msgstr "" -#: ../../library/ssl.rst:2157 msgid "certificates" msgstr "" -#: ../../library/ssl.rst:2159 msgid "X509 certificate" msgstr "" diff --git a/library/stat.po b/library/stat.po index 7b6d6706..d3bac9e2 100644 --- a/library/stat.po +++ b/library/stat.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:13+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,106 +23,66 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/stat.rst:2 msgid ":mod:`!stat` --- Interpreting :func:`~os.stat` results" msgstr "" -#: ../../library/stat.rst:10 msgid "**Source code:** :source:`Lib/stat.py`" msgstr "" -#: ../../library/stat.rst:14 -msgid "" -"The :mod:`!stat` module defines constants and functions for interpreting the " -"results of :func:`os.stat`, :func:`os.fstat` and :func:`os.lstat` (if they " -"exist). For complete details about the :c:func:`stat`, :c:func:`!fstat` " -"and :c:func:`!lstat` calls, consult the documentation for your system." +msgid "The :mod:`!stat` module defines constants and functions for interpreting the results of :func:`os.stat`, :func:`os.fstat` and :func:`os.lstat` (if they exist). For complete details about the :c:func:`stat`, :c:func:`!fstat` and :c:func:`!lstat` calls, consult the documentation for your system." msgstr "" -#: ../../library/stat.rst:19 msgid "The stat module is backed by a C implementation." msgstr "" -#: ../../library/stat.rst:22 -msgid "" -"The :mod:`!stat` module defines the following functions to test for specific " -"file types:" +msgid "The :mod:`!stat` module defines the following functions to test for specific file types:" msgstr "" -#: ../../library/stat.rst:28 msgid "Return non-zero if the mode is from a directory." msgstr "" -#: ../../library/stat.rst:33 msgid "Return non-zero if the mode is from a character special device file." msgstr "" -#: ../../library/stat.rst:38 msgid "Return non-zero if the mode is from a block special device file." msgstr "" -#: ../../library/stat.rst:43 msgid "Return non-zero if the mode is from a regular file." msgstr "" -#: ../../library/stat.rst:48 msgid "Return non-zero if the mode is from a FIFO (named pipe)." msgstr "" -#: ../../library/stat.rst:53 msgid "Return non-zero if the mode is from a symbolic link." msgstr "" -#: ../../library/stat.rst:58 msgid "Return non-zero if the mode is from a socket." msgstr "" -#: ../../library/stat.rst:62 msgid "Return non-zero if the mode is from a door." msgstr "" -#: ../../library/stat.rst:68 msgid "Return non-zero if the mode is from an event port." msgstr "" -#: ../../library/stat.rst:74 msgid "Return non-zero if the mode is from a whiteout." msgstr "" -#: ../../library/stat.rst:78 -msgid "" -"Two additional functions are defined for more general manipulation of the " -"file's mode:" +msgid "Two additional functions are defined for more general manipulation of the file's mode:" msgstr "" -#: ../../library/stat.rst:84 -msgid "" -"Return the portion of the file's mode that can be set by :func:`os.chmod`\\ " -"---that is, the file's permission bits, plus the sticky bit, set-group-id, " -"and set-user-id bits (on systems that support them)." +msgid "Return the portion of the file's mode that can be set by :func:`os.chmod`\\ ---that is, the file's permission bits, plus the sticky bit, set-group-id, and set-user-id bits (on systems that support them)." msgstr "" -#: ../../library/stat.rst:91 -msgid "" -"Return the portion of the file's mode that describes the file type (used by " -"the :func:`!S_IS\\*` functions above)." +msgid "Return the portion of the file's mode that describes the file type (used by the :func:`!S_IS\\*` functions above)." msgstr "" -#: ../../library/stat.rst:94 -msgid "" -"Normally, you would use the :func:`!os.path.is\\*` functions for testing the " -"type of a file; the functions here are useful when you are doing multiple " -"tests of the same file and wish to avoid the overhead of the :c:func:`stat` " -"system call for each test. These are also useful when checking for " -"information about a file that isn't handled by :mod:`os.path`, like the " -"tests for block and character devices." +msgid "Normally, you would use the :func:`!os.path.is\\*` functions for testing the type of a file; the functions here are useful when you are doing multiple tests of the same file and wish to avoid the overhead of the :c:func:`stat` system call for each test. These are also useful when checking for information about a file that isn't handled by :mod:`os.path`, like the tests for block and character devices." msgstr "" -#: ../../library/stat.rst:101 msgid "Example::" msgstr "" -#: ../../library/stat.rst:103 msgid "" "import os, sys\n" "from stat import *\n" @@ -151,335 +111,215 @@ msgid "" " walktree(sys.argv[1], visitfile)" msgstr "" -#: ../../library/stat.rst:129 -msgid "" -"An additional utility function is provided to convert a file's mode in a " -"human readable string:" +msgid "An additional utility function is provided to convert a file's mode in a human readable string:" msgstr "" -#: ../../library/stat.rst:134 msgid "Convert a file's mode to a string of the form '-rwxrwxrwx'." msgstr "" -#: ../../library/stat.rst:138 -msgid "" -"The function supports :data:`S_IFDOOR`, :data:`S_IFPORT` and :data:`S_IFWHT`." +msgid "The function supports :data:`S_IFDOOR`, :data:`S_IFPORT` and :data:`S_IFWHT`." msgstr "" -#: ../../library/stat.rst:143 -msgid "" -"All the variables below are simply symbolic indexes into the 10-tuple " -"returned by :func:`os.stat`, :func:`os.fstat` or :func:`os.lstat`." +msgid "All the variables below are simply symbolic indexes into the 10-tuple returned by :func:`os.stat`, :func:`os.fstat` or :func:`os.lstat`." msgstr "" -#: ../../library/stat.rst:149 msgid "Inode protection mode." msgstr "" -#: ../../library/stat.rst:154 msgid "Inode number." msgstr "" -#: ../../library/stat.rst:159 msgid "Device inode resides on." msgstr "" -#: ../../library/stat.rst:164 msgid "Number of links to the inode." msgstr "" -#: ../../library/stat.rst:169 msgid "User id of the owner." msgstr "" -#: ../../library/stat.rst:174 msgid "Group id of the owner." msgstr "" -#: ../../library/stat.rst:179 -msgid "" -"Size in bytes of a plain file; amount of data waiting on some special files." +msgid "Size in bytes of a plain file; amount of data waiting on some special files." msgstr "" -#: ../../library/stat.rst:184 msgid "Time of last access." msgstr "" -#: ../../library/stat.rst:189 msgid "Time of last modification." msgstr "" -#: ../../library/stat.rst:194 -msgid "" -"The \"ctime\" as reported by the operating system. On some systems (like " -"Unix) is the time of the last metadata change, and, on others (like " -"Windows), is the creation time (see platform documentation for details)." +msgid "The \"ctime\" as reported by the operating system. On some systems (like Unix) is the time of the last metadata change, and, on others (like Windows), is the creation time (see platform documentation for details)." +msgstr "" + +msgid "The interpretation of \"file size\" changes according to the file type. For plain files this is the size of the file in bytes. For FIFOs and sockets under most flavors of Unix (including Linux in particular), the \"size\" is the number of bytes waiting to be read at the time of the call to :func:`os.stat`, :func:`os.fstat`, or :func:`os.lstat`; this can sometimes be useful, especially for polling one of these special files after a non-blocking open. The meaning of the size field for other character and block devices varies more, depending on the implementation of the underlying system call." msgstr "" -#: ../../library/stat.rst:198 -msgid "" -"The interpretation of \"file size\" changes according to the file type. For " -"plain files this is the size of the file in bytes. For FIFOs and sockets " -"under most flavors of Unix (including Linux in particular), the \"size\" is " -"the number of bytes waiting to be read at the time of the call " -"to :func:`os.stat`, :func:`os.fstat`, or :func:`os.lstat`; this can " -"sometimes be useful, especially for polling one of these special files after " -"a non-blocking open. The meaning of the size field for other character and " -"block devices varies more, depending on the implementation of the underlying " -"system call." -msgstr "" - -#: ../../library/stat.rst:207 msgid "The variables below define the flags used in the :data:`ST_MODE` field." msgstr "" -#: ../../library/stat.rst:209 -msgid "" -"Use of the functions above is more portable than use of the first set of " -"flags:" +msgid "Use of the functions above is more portable than use of the first set of flags:" msgstr "" -#: ../../library/stat.rst:213 msgid "Socket." msgstr "" -#: ../../library/stat.rst:217 msgid "Symbolic link." msgstr "" -#: ../../library/stat.rst:221 msgid "Regular file." msgstr "" -#: ../../library/stat.rst:225 msgid "Block device." msgstr "" -#: ../../library/stat.rst:229 msgid "Directory." msgstr "" -#: ../../library/stat.rst:233 msgid "Character device." msgstr "" -#: ../../library/stat.rst:237 msgid "FIFO." msgstr "" -#: ../../library/stat.rst:241 msgid "Door." msgstr "" -#: ../../library/stat.rst:247 msgid "Event port." msgstr "" -#: ../../library/stat.rst:253 msgid "Whiteout." msgstr "" -#: ../../library/stat.rst:259 -msgid "" -":data:`S_IFDOOR`, :data:`S_IFPORT` or :data:`S_IFWHT` are defined as 0 when " -"the platform does not have support for the file types." +msgid ":data:`S_IFDOOR`, :data:`S_IFPORT` or :data:`S_IFWHT` are defined as 0 when the platform does not have support for the file types." msgstr "" -#: ../../library/stat.rst:262 -msgid "" -"The following flags can also be used in the *mode* argument " -"of :func:`os.chmod`:" +msgid "The following flags can also be used in the *mode* argument of :func:`os.chmod`:" msgstr "" -#: ../../library/stat.rst:266 msgid "Set UID bit." msgstr "" -#: ../../library/stat.rst:270 -msgid "" -"Set-group-ID bit. This bit has several special uses. For a directory it " -"indicates that BSD semantics is to be used for that directory: files created " -"there inherit their group ID from the directory, not from the effective " -"group ID of the creating process, and directories created there will also " -"get the :data:`S_ISGID` bit set. For a file that does not have the group " -"execution bit (:data:`S_IXGRP`) set, the set-group-ID bit indicates " -"mandatory file/record locking (see also :data:`S_ENFMT`)." +msgid "Set-group-ID bit. This bit has several special uses. For a directory it indicates that BSD semantics is to be used for that directory: files created there inherit their group ID from the directory, not from the effective group ID of the creating process, and directories created there will also get the :data:`S_ISGID` bit set. For a file that does not have the group execution bit (:data:`S_IXGRP`) set, the set-group-ID bit indicates mandatory file/record locking (see also :data:`S_ENFMT`)." msgstr "" -#: ../../library/stat.rst:281 -msgid "" -"Sticky bit. When this bit is set on a directory it means that a file in " -"that directory can be renamed or deleted only by the owner of the file, by " -"the owner of the directory, or by a privileged process." +msgid "Sticky bit. When this bit is set on a directory it means that a file in that directory can be renamed or deleted only by the owner of the file, by the owner of the directory, or by a privileged process." msgstr "" -#: ../../library/stat.rst:287 msgid "Mask for file owner permissions." msgstr "" -#: ../../library/stat.rst:291 msgid "Owner has read permission." msgstr "" -#: ../../library/stat.rst:295 msgid "Owner has write permission." msgstr "" -#: ../../library/stat.rst:299 msgid "Owner has execute permission." msgstr "" -#: ../../library/stat.rst:303 msgid "Mask for group permissions." msgstr "" -#: ../../library/stat.rst:307 msgid "Group has read permission." msgstr "" -#: ../../library/stat.rst:311 msgid "Group has write permission." msgstr "" -#: ../../library/stat.rst:315 msgid "Group has execute permission." msgstr "" -#: ../../library/stat.rst:319 msgid "Mask for permissions for others (not in group)." msgstr "" -#: ../../library/stat.rst:323 msgid "Others have read permission." msgstr "" -#: ../../library/stat.rst:327 msgid "Others have write permission." msgstr "" -#: ../../library/stat.rst:331 msgid "Others have execute permission." msgstr "" -#: ../../library/stat.rst:335 -msgid "" -"System V file locking enforcement. This flag is shared " -"with :data:`S_ISGID`: file/record locking is enforced on files that do not " -"have the group execution bit (:data:`S_IXGRP`) set." +msgid "System V file locking enforcement. This flag is shared with :data:`S_ISGID`: file/record locking is enforced on files that do not have the group execution bit (:data:`S_IXGRP`) set." msgstr "" -#: ../../library/stat.rst:341 msgid "Unix V7 synonym for :data:`S_IRUSR`." msgstr "" -#: ../../library/stat.rst:345 msgid "Unix V7 synonym for :data:`S_IWUSR`." msgstr "" -#: ../../library/stat.rst:349 msgid "Unix V7 synonym for :data:`S_IXUSR`." msgstr "" -#: ../../library/stat.rst:351 -msgid "" -"The following flags can be used in the *flags* argument " -"of :func:`os.chflags`:" +msgid "The following flags can be used in the *flags* argument of :func:`os.chflags`:" msgstr "" -#: ../../library/stat.rst:355 msgid "All user settable flags." msgstr "" -#: ../../library/stat.rst:361 msgid "Do not dump the file." msgstr "" -#: ../../library/stat.rst:365 ../../library/stat.rst:427 msgid "The file may not be changed." msgstr "" -#: ../../library/stat.rst:369 ../../library/stat.rst:431 msgid "The file may only be appended to." msgstr "" -#: ../../library/stat.rst:373 msgid "The directory is opaque when viewed through a union stack." msgstr "" -#: ../../library/stat.rst:377 ../../library/stat.rst:441 msgid "The file may not be renamed or deleted." msgstr "" -#: ../../library/stat.rst:381 msgid "The file is stored compressed (macOS 10.6+)." msgstr "" -#: ../../library/stat.rst:385 msgid "Used for handling document IDs (macOS)" msgstr "" -#: ../../library/stat.rst:391 msgid "The file needs an entitlement for reading or writing (macOS 10.13+)" msgstr "" -#: ../../library/stat.rst:397 msgid "The file should not be displayed in a GUI (macOS 10.5+)." msgstr "" -#: ../../library/stat.rst:401 msgid "All super-user changeable flags" msgstr "" -#: ../../library/stat.rst:407 msgid "All super-user supported flags" msgstr "" -#: ../../library/stat.rst:409 ../../library/stat.rst:417 msgid "Availability" msgstr "" -#: ../../library/stat.rst:415 msgid "All super-user read-only synthetic flags" msgstr "" -#: ../../library/stat.rst:423 msgid "The file may be archived." msgstr "" -#: ../../library/stat.rst:435 msgid "The file needs an entitlement to write to (macOS 10.13+)" msgstr "" -#: ../../library/stat.rst:445 msgid "The file is a snapshot file." msgstr "" -#: ../../library/stat.rst:449 msgid "The file is a firmlink (macOS 10.15+)" msgstr "" -#: ../../library/stat.rst:455 msgid "The file is a dataless object (macOS 10.15+)" msgstr "" -#: ../../library/stat.rst:459 -msgid "" -"See the \\*BSD or macOS systems man page :manpage:`chflags(2)` for more " -"information." +msgid "See the \\*BSD or macOS systems man page :manpage:`chflags(2)` for more information." msgstr "" -#: ../../library/stat.rst:461 -msgid "" -"On Windows, the following file attribute constants are available for use " -"when testing bits in the ``st_file_attributes`` member returned " -"by :func:`os.stat`. See the `Windows API documentation `_ for more " -"detail on the meaning of these constants." +msgid "On Windows, the following file attribute constants are available for use when testing bits in the ``st_file_attributes`` member returned by :func:`os.stat`. See the `Windows API documentation `_ for more detail on the meaning of these constants." msgstr "" -#: ../../library/stat.rst:487 -msgid "" -"On Windows, the following constants are available for comparing against the " -"``st_reparse_tag`` member returned by :func:`os.lstat`. These are well-known " -"constants, but are not an exhaustive list." +msgid "On Windows, the following constants are available for comparing against the ``st_reparse_tag`` member returned by :func:`os.lstat`. These are well-known constants, but are not an exhaustive list." msgstr "" diff --git a/library/statistics.po b/library/statistics.po index 795564ae..8b850b45 100644 --- a/library/statistics.po +++ b/library/statistics.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:13+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,52 +23,24 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/statistics.rst:2 msgid ":mod:`!statistics` --- Mathematical statistics functions" msgstr "" -#: ../../library/statistics.rst:12 msgid "**Source code:** :source:`Lib/statistics.py`" msgstr "" -#: ../../library/statistics.rst:22 -msgid "" -"This module provides functions for calculating mathematical statistics of " -"numeric (:class:`~numbers.Real`-valued) data." +msgid "This module provides functions for calculating mathematical statistics of numeric (:class:`~numbers.Real`-valued) data." msgstr "" -#: ../../library/statistics.rst:25 -msgid "" -"The module is not intended to be a competitor to third-party libraries such " -"as `NumPy `_, `SciPy `_, or " -"proprietary full-featured statistics packages aimed at professional " -"statisticians such as Minitab, SAS and Matlab. It is aimed at the level of " -"graphing and scientific calculators." +msgid "The module is not intended to be a competitor to third-party libraries such as `NumPy `_, `SciPy `_, or proprietary full-featured statistics packages aimed at professional statisticians such as Minitab, SAS and Matlab. It is aimed at the level of graphing and scientific calculators." msgstr "" -#: ../../library/statistics.rst:31 -msgid "" -"Unless explicitly noted, these functions " -"support :class:`int`, :class:`float`, :class:`~decimal.Decimal` " -"and :class:`~fractions.Fraction`. Behaviour with other types (whether in the " -"numeric tower or not) is currently unsupported. Collections with a mix of " -"types are also undefined and implementation-dependent. If your input data " -"consists of mixed types, you may be able to use :func:`map` to ensure a " -"consistent result, for example: ``map(float, input_data)``." +msgid "Unless explicitly noted, these functions support :class:`int`, :class:`float`, :class:`~decimal.Decimal` and :class:`~fractions.Fraction`. Behaviour with other types (whether in the numeric tower or not) is currently unsupported. Collections with a mix of types are also undefined and implementation-dependent. If your input data consists of mixed types, you may be able to use :func:`map` to ensure a consistent result, for example: ``map(float, input_data)``." msgstr "" -#: ../../library/statistics.rst:39 -msgid "" -"Some datasets use ``NaN`` (not a number) values to represent missing data. " -"Since NaNs have unusual comparison semantics, they cause surprising or " -"undefined behaviors in the statistics functions that sort data or that count " -"occurrences. The functions affected are ``median()``, ``median_low()``, " -"``median_high()``, ``median_grouped()``, ``mode()``, ``multimode()``, and " -"``quantiles()``. The ``NaN`` values should be stripped before calling these " -"functions::" +msgid "Some datasets use ``NaN`` (not a number) values to represent missing data. Since NaNs have unusual comparison semantics, they cause surprising or undefined behaviors in the statistics functions that sort data or that count occurrences. The functions affected are ``median()``, ``median_low()``, ``median_high()``, ``median_grouped()``, ``mode()``, ``multimode()``, and ``quantiles()``. The ``NaN`` values should be stripped before calling these functions::" msgstr "" -#: ../../library/statistics.rst:47 msgid "" ">>> from statistics import median\n" ">>> from math import isnan\n" @@ -91,228 +63,162 @@ msgid "" "18.75" msgstr "" -#: ../../library/statistics.rst:69 msgid "Averages and measures of central location" msgstr "" -#: ../../library/statistics.rst:71 -msgid "" -"These functions calculate an average or typical value from a population or " -"sample." +msgid "These functions calculate an average or typical value from a population or sample." msgstr "" -#: ../../library/statistics.rst:75 msgid ":func:`mean`" msgstr "" -#: ../../library/statistics.rst:75 msgid "Arithmetic mean (\"average\") of data." msgstr "" -#: ../../library/statistics.rst:76 msgid ":func:`fmean`" msgstr "" -#: ../../library/statistics.rst:76 msgid "Fast, floating-point arithmetic mean, with optional weighting." msgstr "" -#: ../../library/statistics.rst:77 msgid ":func:`geometric_mean`" msgstr "" -#: ../../library/statistics.rst:77 msgid "Geometric mean of data." msgstr "" -#: ../../library/statistics.rst:78 msgid ":func:`harmonic_mean`" msgstr "" -#: ../../library/statistics.rst:78 msgid "Harmonic mean of data." msgstr "" -#: ../../library/statistics.rst:79 msgid ":func:`kde`" msgstr "" -#: ../../library/statistics.rst:79 msgid "Estimate the probability density distribution of the data." msgstr "" -#: ../../library/statistics.rst:80 msgid ":func:`kde_random`" msgstr "" -#: ../../library/statistics.rst:80 msgid "Random sampling from the PDF generated by kde()." msgstr "" -#: ../../library/statistics.rst:81 msgid ":func:`median`" msgstr "" -#: ../../library/statistics.rst:81 msgid "Median (middle value) of data." msgstr "" -#: ../../library/statistics.rst:82 msgid ":func:`median_low`" msgstr "" -#: ../../library/statistics.rst:82 msgid "Low median of data." msgstr "" -#: ../../library/statistics.rst:83 msgid ":func:`median_high`" msgstr "" -#: ../../library/statistics.rst:83 msgid "High median of data." msgstr "" -#: ../../library/statistics.rst:84 msgid ":func:`median_grouped`" msgstr "" -#: ../../library/statistics.rst:84 msgid "Median (50th percentile) of grouped data." msgstr "" -#: ../../library/statistics.rst:85 msgid ":func:`mode`" msgstr "" -#: ../../library/statistics.rst:85 msgid "Single mode (most common value) of discrete or nominal data." msgstr "" -#: ../../library/statistics.rst:86 msgid ":func:`multimode`" msgstr "" -#: ../../library/statistics.rst:86 msgid "List of modes (most common values) of discrete or nominal data." msgstr "" -#: ../../library/statistics.rst:87 msgid ":func:`quantiles`" msgstr "" -#: ../../library/statistics.rst:87 msgid "Divide data into intervals with equal probability." msgstr "" -#: ../../library/statistics.rst:91 msgid "Measures of spread" msgstr "" -#: ../../library/statistics.rst:93 -msgid "" -"These functions calculate a measure of how much the population or sample " -"tends to deviate from the typical or average values." +msgid "These functions calculate a measure of how much the population or sample tends to deviate from the typical or average values." msgstr "" -#: ../../library/statistics.rst:97 msgid ":func:`pstdev`" msgstr "" -#: ../../library/statistics.rst:97 msgid "Population standard deviation of data." msgstr "" -#: ../../library/statistics.rst:98 msgid ":func:`pvariance`" msgstr "" -#: ../../library/statistics.rst:98 msgid "Population variance of data." msgstr "" -#: ../../library/statistics.rst:99 msgid ":func:`stdev`" msgstr "" -#: ../../library/statistics.rst:99 msgid "Sample standard deviation of data." msgstr "" -#: ../../library/statistics.rst:100 msgid ":func:`variance`" msgstr "" -#: ../../library/statistics.rst:100 msgid "Sample variance of data." msgstr "" -#: ../../library/statistics.rst:104 msgid "Statistics for relations between two inputs" msgstr "" -#: ../../library/statistics.rst:106 -msgid "" -"These functions calculate statistics regarding relations between two inputs." +msgid "These functions calculate statistics regarding relations between two inputs." msgstr "" -#: ../../library/statistics.rst:109 msgid ":func:`covariance`" msgstr "" -#: ../../library/statistics.rst:109 msgid "Sample covariance for two variables." msgstr "" -#: ../../library/statistics.rst:110 msgid ":func:`correlation`" msgstr "" -#: ../../library/statistics.rst:110 msgid "Pearson and Spearman's correlation coefficients." msgstr "" -#: ../../library/statistics.rst:111 msgid ":func:`linear_regression`" msgstr "" -#: ../../library/statistics.rst:111 msgid "Slope and intercept for simple linear regression." msgstr "" -#: ../../library/statistics.rst:116 msgid "Function details" msgstr "" -#: ../../library/statistics.rst:118 -msgid "" -"Note: The functions do not require the data given to them to be sorted. " -"However, for reading convenience, most of the examples show sorted sequences." +msgid "Note: The functions do not require the data given to them to be sorted. However, for reading convenience, most of the examples show sorted sequences." msgstr "" -#: ../../library/statistics.rst:123 -msgid "" -"Return the sample arithmetic mean of *data* which can be a sequence or " -"iterable." +msgid "Return the sample arithmetic mean of *data* which can be a sequence or iterable." msgstr "" -#: ../../library/statistics.rst:125 -msgid "" -"The arithmetic mean is the sum of the data divided by the number of data " -"points. It is commonly called \"the average\", although it is only one of " -"many different mathematical averages. It is a measure of the central " -"location of the data." +msgid "The arithmetic mean is the sum of the data divided by the number of data points. It is commonly called \"the average\", although it is only one of many different mathematical averages. It is a measure of the central location of the data." msgstr "" -#: ../../library/statistics.rst:130 msgid "If *data* is empty, :exc:`StatisticsError` will be raised." msgstr "" -#: ../../library/statistics.rst:132 msgid "Some examples of use:" msgstr "" -#: ../../library/statistics.rst:134 msgid "" ">>> mean([1, 2, 3, 4, 4])\n" "2.8\n" @@ -328,48 +234,26 @@ msgid "" "Decimal('0.5625')" msgstr "" -#: ../../library/statistics.rst:151 -msgid "" -"The mean is strongly affected by `outliers `_ and is not necessarily a typical example of the data points. For " -"a more robust, although less efficient, measure of `central tendency " -"`_, see :func:`median`." +msgid "The mean is strongly affected by `outliers `_ and is not necessarily a typical example of the data points. For a more robust, although less efficient, measure of `central tendency `_, see :func:`median`." msgstr "" -#: ../../library/statistics.rst:157 -msgid "" -"The sample mean gives an unbiased estimate of the true population mean, so " -"that when taken on average over all the possible samples, ``mean(sample)`` " -"converges on the true mean of the entire population. If *data* represents " -"the entire population rather than a sample, then ``mean(data)`` is " -"equivalent to calculating the true population mean μ." +msgid "The sample mean gives an unbiased estimate of the true population mean, so that when taken on average over all the possible samples, ``mean(sample)`` converges on the true mean of the entire population. If *data* represents the entire population rather than a sample, then ``mean(data)`` is equivalent to calculating the true population mean μ." msgstr "" -#: ../../library/statistics.rst:166 msgid "Convert *data* to floats and compute the arithmetic mean." msgstr "" -#: ../../library/statistics.rst:168 -msgid "" -"This runs faster than the :func:`mean` function and it always returns " -"a :class:`float`. The *data* may be a sequence or iterable. If the input " -"dataset is empty, raises a :exc:`StatisticsError`." +msgid "This runs faster than the :func:`mean` function and it always returns a :class:`float`. The *data* may be a sequence or iterable. If the input dataset is empty, raises a :exc:`StatisticsError`." msgstr "" -#: ../../library/statistics.rst:172 msgid "" ">>> fmean([3.5, 4.0, 5.25])\n" "4.25" msgstr "" -#: ../../library/statistics.rst:177 -msgid "" -"Optional weighting is supported. For example, a professor assigns a grade " -"for a course by weighting quizzes at 20%, homework at 20%, a midterm exam at " -"30%, and a final exam at 30%:" +msgid "Optional weighting is supported. For example, a professor assigns a grade for a course by weighting quizzes at 20%, homework at 20%, a midterm exam at 30%, and a final exam at 30%:" msgstr "" -#: ../../library/statistics.rst:181 msgid "" ">>> grades = [85, 92, 83, 91]\n" ">>> weights = [0.20, 0.20, 0.30, 0.30]\n" @@ -377,167 +261,87 @@ msgid "" "87.6" msgstr "" -#: ../../library/statistics.rst:188 -msgid "" -"If *weights* is supplied, it must be the same length as the *data* or " -"a :exc:`ValueError` will be raised." +msgid "If *weights* is supplied, it must be the same length as the *data* or a :exc:`ValueError` will be raised." msgstr "" -#: ../../library/statistics.rst:193 ../../library/statistics.rst:261 msgid "Added support for *weights*." msgstr "" -#: ../../library/statistics.rst:199 msgid "Convert *data* to floats and compute the geometric mean." msgstr "" -#: ../../library/statistics.rst:201 -msgid "" -"The geometric mean indicates the central tendency or typical value of the " -"*data* using the product of the values (as opposed to the arithmetic mean " -"which uses their sum)." +msgid "The geometric mean indicates the central tendency or typical value of the *data* using the product of the values (as opposed to the arithmetic mean which uses their sum)." msgstr "" -#: ../../library/statistics.rst:205 -msgid "" -"Raises a :exc:`StatisticsError` if the input dataset is empty, if it " -"contains a zero, or if it contains a negative value. The *data* may be a " -"sequence or iterable." +msgid "Raises a :exc:`StatisticsError` if the input dataset is empty, if it contains a zero, or if it contains a negative value. The *data* may be a sequence or iterable." msgstr "" -#: ../../library/statistics.rst:209 -msgid "" -"No special efforts are made to achieve exact results. (However, this may " -"change in the future.)" +msgid "No special efforts are made to achieve exact results. (However, this may change in the future.)" msgstr "" -#: ../../library/statistics.rst:212 msgid "" ">>> round(geometric_mean([54, 24, 36]), 1)\n" "36.0" msgstr "" -#: ../../library/statistics.rst:222 -msgid "" -"Return the harmonic mean of *data*, a sequence or iterable of real-valued " -"numbers. If *weights* is omitted or ``None``, then equal weighting is " -"assumed." +msgid "Return the harmonic mean of *data*, a sequence or iterable of real-valued numbers. If *weights* is omitted or ``None``, then equal weighting is assumed." msgstr "" -#: ../../library/statistics.rst:226 -msgid "" -"The harmonic mean is the reciprocal of the arithmetic :func:`mean` of the " -"reciprocals of the data. For example, the harmonic mean of three values *a*, " -"*b* and *c* will be equivalent to ``3/(1/a + 1/b + 1/c)``. If one of the " -"values is zero, the result will be zero." +msgid "The harmonic mean is the reciprocal of the arithmetic :func:`mean` of the reciprocals of the data. For example, the harmonic mean of three values *a*, *b* and *c* will be equivalent to ``3/(1/a + 1/b + 1/c)``. If one of the values is zero, the result will be zero." msgstr "" -#: ../../library/statistics.rst:231 -msgid "" -"The harmonic mean is a type of average, a measure of the central location of " -"the data. It is often appropriate when averaging ratios or rates, for " -"example speeds." +msgid "The harmonic mean is a type of average, a measure of the central location of the data. It is often appropriate when averaging ratios or rates, for example speeds." msgstr "" -#: ../../library/statistics.rst:235 -msgid "" -"Suppose a car travels 10 km at 40 km/hr, then another 10 km at 60 km/hr. " -"What is the average speed?" +msgid "Suppose a car travels 10 km at 40 km/hr, then another 10 km at 60 km/hr. What is the average speed?" msgstr "" -#: ../../library/statistics.rst:238 msgid "" ">>> harmonic_mean([40, 60])\n" "48.0" msgstr "" -#: ../../library/statistics.rst:243 -msgid "" -"Suppose a car travels 40 km/hr for 5 km, and when traffic clears, speeds-up " -"to 60 km/hr for the remaining 30 km of the journey. What is the average " -"speed?" +msgid "Suppose a car travels 40 km/hr for 5 km, and when traffic clears, speeds-up to 60 km/hr for the remaining 30 km of the journey. What is the average speed?" msgstr "" -#: ../../library/statistics.rst:247 msgid "" ">>> harmonic_mean([40, 60], weights=[5, 30])\n" "56.0" msgstr "" -#: ../../library/statistics.rst:252 -msgid "" -":exc:`StatisticsError` is raised if *data* is empty, any element is less " -"than zero, or if the weighted sum isn't positive." +msgid ":exc:`StatisticsError` is raised if *data* is empty, any element is less than zero, or if the weighted sum isn't positive." msgstr "" -#: ../../library/statistics.rst:255 -msgid "" -"The current algorithm has an early-out when it encounters a zero in the " -"input. This means that the subsequent inputs are not tested for validity. " -"(This behavior may change in the future.)" +msgid "The current algorithm has an early-out when it encounters a zero in the input. This means that the subsequent inputs are not tested for validity. (This behavior may change in the future.)" msgstr "" -#: ../../library/statistics.rst:267 -msgid "" -"`Kernel Density Estimation (KDE) `_: Create a continuous " -"probability density function or cumulative distribution function from " -"discrete samples." +msgid "`Kernel Density Estimation (KDE) `_: Create a continuous probability density function or cumulative distribution function from discrete samples." msgstr "" -#: ../../library/statistics.rst:272 -msgid "" -"The basic idea is to smooth the data using `a kernel function `_. to help draw inferences about " -"a population from a sample." +msgid "The basic idea is to smooth the data using `a kernel function `_. to help draw inferences about a population from a sample." msgstr "" -#: ../../library/statistics.rst:276 -msgid "" -"The degree of smoothing is controlled by the scaling parameter *h* which is " -"called the bandwidth. Smaller values emphasize local features while larger " -"values give smoother results." +msgid "The degree of smoothing is controlled by the scaling parameter *h* which is called the bandwidth. Smaller values emphasize local features while larger values give smoother results." msgstr "" -#: ../../library/statistics.rst:280 -msgid "" -"The *kernel* determines the relative weights of the sample data points. " -"Generally, the choice of kernel shape does not matter as much as the more " -"influential bandwidth smoothing parameter." +msgid "The *kernel* determines the relative weights of the sample data points. Generally, the choice of kernel shape does not matter as much as the more influential bandwidth smoothing parameter." msgstr "" -#: ../../library/statistics.rst:284 -msgid "" -"Kernels that give some weight to every sample point include *normal* " -"(*gauss*), *logistic*, and *sigmoid*." +msgid "Kernels that give some weight to every sample point include *normal* (*gauss*), *logistic*, and *sigmoid*." msgstr "" -#: ../../library/statistics.rst:287 -msgid "" -"Kernels that only give weight to sample points within the bandwidth include " -"*rectangular* (*uniform*), *triangular*, *parabolic* (*epanechnikov*), " -"*quartic* (*biweight*), *triweight*, and *cosine*." +msgid "Kernels that only give weight to sample points within the bandwidth include *rectangular* (*uniform*), *triangular*, *parabolic* (*epanechnikov*), *quartic* (*biweight*), *triweight*, and *cosine*." msgstr "" -#: ../../library/statistics.rst:291 -msgid "" -"If *cumulative* is true, will return a cumulative distribution function." +msgid "If *cumulative* is true, will return a cumulative distribution function." msgstr "" -#: ../../library/statistics.rst:293 ../../library/statistics.rst:324 -msgid "" -"A :exc:`StatisticsError` will be raised if the *data* sequence is empty." +msgid "A :exc:`StatisticsError` will be raised if the *data* sequence is empty." msgstr "" -#: ../../library/statistics.rst:295 -msgid "" -"`Wikipedia has an example `_ where we can use :func:`kde` to " -"generate and plot a probability density function estimated from a small " -"sample:" +msgid "`Wikipedia has an example `_ where we can use :func:`kde` to generate and plot a probability density function estimated from a small sample:" msgstr "" -#: ../../library/statistics.rst:300 msgid "" ">>> sample = [-2.1, -1.3, -0.4, 1.9, 5.1, 6.2]\n" ">>> f_hat = kde(sample, h=1.5)\n" @@ -545,94 +349,52 @@ msgid "" ">>> yarr = [f_hat(x) for x in xarr]" msgstr "" -#: ../../library/statistics.rst:307 msgid "The points in ``xarr`` and ``yarr`` can be used to make a PDF plot:" msgstr "" -#: ../../library/statistics.rst:309 msgid "Scatter plot of the estimated probability density function." msgstr "" -#: ../../library/statistics.rst:317 -msgid "" -"Return a function that makes a random selection from the estimated " -"probability density function produced by ``kde(data, h, kernel)``." +msgid "Return a function that makes a random selection from the estimated probability density function produced by ``kde(data, h, kernel)``." msgstr "" -#: ../../library/statistics.rst:320 -msgid "" -"Providing a *seed* allows reproducible selections. In the future, the values " -"may change slightly as more accurate kernel inverse CDF estimates are " -"implemented. The seed may be an integer, float, str, or bytes." +msgid "Providing a *seed* allows reproducible selections. In the future, the values may change slightly as more accurate kernel inverse CDF estimates are implemented. The seed may be an integer, float, str, or bytes." msgstr "" -#: ../../library/statistics.rst:326 -msgid "" -"Continuing the example for :func:`kde`, we can use :func:`kde_random` to " -"generate new random selections from an estimated probability density " -"function:" +msgid "Continuing the example for :func:`kde`, we can use :func:`kde_random` to generate new random selections from an estimated probability density function:" msgstr "" -#: ../../library/statistics.rst:341 -msgid "" -"Return the median (middle value) of numeric data, using the common \"mean of " -"middle two\" method. If *data* is empty, :exc:`StatisticsError` is raised. " -"*data* can be a sequence or iterable." +msgid "Return the median (middle value) of numeric data, using the common \"mean of middle two\" method. If *data* is empty, :exc:`StatisticsError` is raised. *data* can be a sequence or iterable." msgstr "" -#: ../../library/statistics.rst:345 -msgid "" -"The median is a robust measure of central location and is less affected by " -"the presence of outliers. When the number of data points is odd, the middle " -"data point is returned:" +msgid "The median is a robust measure of central location and is less affected by the presence of outliers. When the number of data points is odd, the middle data point is returned:" msgstr "" -#: ../../library/statistics.rst:349 msgid "" ">>> median([1, 3, 5])\n" "3" msgstr "" -#: ../../library/statistics.rst:354 -msgid "" -"When the number of data points is even, the median is interpolated by taking " -"the average of the two middle values:" +msgid "When the number of data points is even, the median is interpolated by taking the average of the two middle values:" msgstr "" -#: ../../library/statistics.rst:357 msgid "" ">>> median([1, 3, 5, 7])\n" "4.0" msgstr "" -#: ../../library/statistics.rst:362 -msgid "" -"This is suited for when your data is discrete, and you don't mind that the " -"median may not be an actual data point." +msgid "This is suited for when your data is discrete, and you don't mind that the median may not be an actual data point." msgstr "" -#: ../../library/statistics.rst:365 -msgid "" -"If the data is ordinal (supports order operations) but not numeric (doesn't " -"support addition), consider using :func:`median_low` or :func:`median_high` " -"instead." +msgid "If the data is ordinal (supports order operations) but not numeric (doesn't support addition), consider using :func:`median_low` or :func:`median_high` instead." msgstr "" -#: ../../library/statistics.rst:371 -msgid "" -"Return the low median of numeric data. If *data* is " -"empty, :exc:`StatisticsError` is raised. *data* can be a sequence or " -"iterable." +msgid "Return the low median of numeric data. If *data* is empty, :exc:`StatisticsError` is raised. *data* can be a sequence or iterable." msgstr "" -#: ../../library/statistics.rst:374 -msgid "" -"The low median is always a member of the data set. When the number of data " -"points is odd, the middle value is returned. When it is even, the smaller " -"of the two middle values is returned." +msgid "The low median is always a member of the data set. When the number of data points is odd, the middle value is returned. When it is even, the smaller of the two middle values is returned." msgstr "" -#: ../../library/statistics.rst:378 msgid "" ">>> median_low([1, 3, 5])\n" "3\n" @@ -640,26 +402,15 @@ msgid "" "3" msgstr "" -#: ../../library/statistics.rst:385 -msgid "" -"Use the low median when your data are discrete and you prefer the median to " -"be an actual data point rather than interpolated." +msgid "Use the low median when your data are discrete and you prefer the median to be an actual data point rather than interpolated." msgstr "" -#: ../../library/statistics.rst:391 -msgid "" -"Return the high median of data. If *data* is empty, :exc:`StatisticsError` " -"is raised. *data* can be a sequence or iterable." +msgid "Return the high median of data. If *data* is empty, :exc:`StatisticsError` is raised. *data* can be a sequence or iterable." msgstr "" -#: ../../library/statistics.rst:394 -msgid "" -"The high median is always a member of the data set. When the number of data " -"points is odd, the middle value is returned. When it is even, the larger of " -"the two middle values is returned." +msgid "The high median is always a member of the data set. When the number of data points is odd, the middle value is returned. When it is even, the larger of the two middle values is returned." msgstr "" -#: ../../library/statistics.rst:398 msgid "" ">>> median_high([1, 3, 5])\n" "3\n" @@ -667,37 +418,21 @@ msgid "" "5" msgstr "" -#: ../../library/statistics.rst:405 -msgid "" -"Use the high median when your data are discrete and you prefer the median to " -"be an actual data point rather than interpolated." +msgid "Use the high median when your data are discrete and you prefer the median to be an actual data point rather than interpolated." msgstr "" -#: ../../library/statistics.rst:411 -msgid "" -"Estimates the median for numeric data that has been `grouped or binned " -"`_ around the midpoints of " -"consecutive, fixed-width intervals." +msgid "Estimates the median for numeric data that has been `grouped or binned `_ around the midpoints of consecutive, fixed-width intervals." msgstr "" -#: ../../library/statistics.rst:415 -msgid "" -"The *data* can be any iterable of numeric data with each value being exactly " -"the midpoint of a bin. At least one value must be present." +msgid "The *data* can be any iterable of numeric data with each value being exactly the midpoint of a bin. At least one value must be present." msgstr "" -#: ../../library/statistics.rst:418 msgid "The *interval* is the width of each bin." msgstr "" -#: ../../library/statistics.rst:420 -msgid "" -"For example, demographic information may have been summarized into " -"consecutive ten-year age groups with each group being represented by the 5-" -"year midpoints of the intervals:" +msgid "For example, demographic information may have been summarized into consecutive ten-year age groups with each group being represented by the 5-year midpoints of the intervals:" msgstr "" -#: ../../library/statistics.rst:424 msgid "" ">>> from collections import Counter\n" ">>> demographics = Counter({\n" @@ -710,21 +445,12 @@ msgid "" "..." msgstr "" -#: ../../library/statistics.rst:436 -msgid "" -"The 50th percentile (median) is the 536th person out of the 1071 member " -"cohort. That person is in the 30 to 40 year old age group." +msgid "The 50th percentile (median) is the 536th person out of the 1071 member cohort. That person is in the 30 to 40 year old age group." msgstr "" -#: ../../library/statistics.rst:439 -msgid "" -"The regular :func:`median` function would assume that everyone in the " -"tricenarian age group was exactly 35 years old. A more tenable assumption " -"is that the 484 members of that age group are evenly distributed between 30 " -"and 40. For that, we use :func:`median_grouped`:" +msgid "The regular :func:`median` function would assume that everyone in the tricenarian age group was exactly 35 years old. A more tenable assumption is that the 484 members of that age group are evenly distributed between 30 and 40. For that, we use :func:`median_grouped`:" msgstr "" -#: ../../library/statistics.rst:445 msgid "" ">>> data = list(demographics.elements())\n" ">>> median(data)\n" @@ -733,82 +459,43 @@ msgid "" "37.5" msgstr "" -#: ../../library/statistics.rst:453 -msgid "" -"The caller is responsible for making sure the data points are separated by " -"exact multiples of *interval*. This is essential for getting a correct " -"result. The function does not check this precondition." +msgid "The caller is responsible for making sure the data points are separated by exact multiples of *interval*. This is essential for getting a correct result. The function does not check this precondition." msgstr "" -#: ../../library/statistics.rst:457 -msgid "" -"Inputs may be any numeric type that can be coerced to a float during the " -"interpolation step." +msgid "Inputs may be any numeric type that can be coerced to a float during the interpolation step." msgstr "" -#: ../../library/statistics.rst:463 -msgid "" -"Return the single most common data point from discrete or nominal *data*. " -"The mode (when it exists) is the most typical value and serves as a measure " -"of central location." +msgid "Return the single most common data point from discrete or nominal *data*. The mode (when it exists) is the most typical value and serves as a measure of central location." msgstr "" -#: ../../library/statistics.rst:467 -msgid "" -"If there are multiple modes with the same frequency, returns the first one " -"encountered in the *data*. If the smallest or largest of those is desired " -"instead, use ``min(multimode(data))`` or ``max(multimode(data))``. If the " -"input *data* is empty, :exc:`StatisticsError` is raised." +msgid "If there are multiple modes with the same frequency, returns the first one encountered in the *data*. If the smallest or largest of those is desired instead, use ``min(multimode(data))`` or ``max(multimode(data))``. If the input *data* is empty, :exc:`StatisticsError` is raised." msgstr "" -#: ../../library/statistics.rst:472 -msgid "" -"``mode`` assumes discrete data and returns a single value. This is the " -"standard treatment of the mode as commonly taught in schools:" +msgid "``mode`` assumes discrete data and returns a single value. This is the standard treatment of the mode as commonly taught in schools:" msgstr "" -#: ../../library/statistics.rst:475 msgid "" ">>> mode([1, 1, 2, 3, 3, 3, 3, 4])\n" "3" msgstr "" -#: ../../library/statistics.rst:480 -msgid "" -"The mode is unique in that it is the only statistic in this package that " -"also applies to nominal (non-numeric) data:" +msgid "The mode is unique in that it is the only statistic in this package that also applies to nominal (non-numeric) data:" msgstr "" -#: ../../library/statistics.rst:483 msgid "" -">>> mode([\"red\", \"blue\", \"blue\", \"red\", \"green\", \"red\", " -"\"red\"])\n" +">>> mode([\"red\", \"blue\", \"blue\", \"red\", \"green\", \"red\", \"red\"])\n" "'red'" msgstr "" -#: ../../library/statistics.rst:488 -msgid "" -"Only hashable inputs are supported. To handle type :class:`set`, consider " -"casting to :class:`frozenset`. To handle type :class:`list`, consider " -"casting to :class:`tuple`. For mixed or nested inputs, consider using this " -"slower quadratic algorithm that only depends on equality tests: ``max(data, " -"key=data.count)``." +msgid "Only hashable inputs are supported. To handle type :class:`set`, consider casting to :class:`frozenset`. To handle type :class:`list`, consider casting to :class:`tuple`. For mixed or nested inputs, consider using this slower quadratic algorithm that only depends on equality tests: ``max(data, key=data.count)``." msgstr "" -#: ../../library/statistics.rst:494 -msgid "" -"Now handles multimodal datasets by returning the first mode encountered. " -"Formerly, it raised :exc:`StatisticsError` when more than one mode was found." +msgid "Now handles multimodal datasets by returning the first mode encountered. Formerly, it raised :exc:`StatisticsError` when more than one mode was found." msgstr "" -#: ../../library/statistics.rst:502 -msgid "" -"Return a list of the most frequently occurring values in the order they were " -"first encountered in the *data*. Will return more than one result if there " -"are multiple modes or an empty list if the *data* is empty:" +msgid "Return a list of the most frequently occurring values in the order they were first encountered in the *data*. Will return more than one result if there are multiple modes or an empty list if the *data* is empty:" msgstr "" -#: ../../library/statistics.rst:506 msgid "" ">>> multimode('aabbbbccddddeeffffgg')\n" "['b', 'd', 'f']\n" @@ -816,80 +503,50 @@ msgid "" "[]" msgstr "" -#: ../../library/statistics.rst:518 -msgid "" -"Return the population standard deviation (the square root of the population " -"variance). See :func:`pvariance` for arguments and other details." +msgid "Return the population standard deviation (the square root of the population variance). See :func:`pvariance` for arguments and other details." msgstr "" -#: ../../library/statistics.rst:521 msgid "" ">>> pstdev([1.5, 2.5, 2.5, 2.75, 3.25, 4.75])\n" "0.986893273527251" msgstr "" -#: ../../library/statistics.rst:529 -msgid "" -"Return the population variance of *data*, a non-empty sequence or iterable " -"of real-valued numbers. Variance, or second moment about the mean, is a " -"measure of the variability (spread or dispersion) of data. A large variance " -"indicates that the data is spread out; a small variance indicates it is " -"clustered closely around the mean." +msgid "Return the population variance of *data*, a non-empty sequence or iterable of real-valued numbers. Variance, or second moment about the mean, is a measure of the variability (spread or dispersion) of data. A large variance indicates that the data is spread out; a small variance indicates it is clustered closely around the mean." msgstr "" -#: ../../library/statistics.rst:535 -msgid "" -"If the optional second argument *mu* is given, it should be the *population* " -"mean of the *data*. It can also be used to compute the second moment around " -"a point that is not the mean. If it is missing or ``None`` (the default), " -"the arithmetic mean is automatically calculated." +msgid "If the optional second argument *mu* is given, it should be the *population* mean of the *data*. It can also be used to compute the second moment around a point that is not the mean. If it is missing or ``None`` (the default), the arithmetic mean is automatically calculated." msgstr "" -#: ../../library/statistics.rst:540 -msgid "" -"Use this function to calculate the variance from the entire population. To " -"estimate the variance from a sample, the :func:`variance` function is " -"usually a better choice." +msgid "Use this function to calculate the variance from the entire population. To estimate the variance from a sample, the :func:`variance` function is usually a better choice." msgstr "" -#: ../../library/statistics.rst:544 msgid "Raises :exc:`StatisticsError` if *data* is empty." msgstr "" -#: ../../library/statistics.rst:546 ../../library/statistics.rst:616 -#: ../../library/statistics.rst:725 msgid "Examples:" msgstr "" -#: ../../library/statistics.rst:548 msgid "" ">>> data = [0.0, 0.25, 0.25, 1.25, 1.5, 1.75, 2.75, 3.25]\n" ">>> pvariance(data)\n" "1.25" msgstr "" -#: ../../library/statistics.rst:554 -msgid "" -"If you have already calculated the mean of your data, you can pass it as the " -"optional second argument *mu* to avoid recalculation:" +msgid "If you have already calculated the mean of your data, you can pass it as the optional second argument *mu* to avoid recalculation:" msgstr "" -#: ../../library/statistics.rst:557 msgid "" ">>> mu = mean(data)\n" ">>> pvariance(data, mu)\n" "1.25" msgstr "" -#: ../../library/statistics.rst:563 msgid "Decimals and Fractions are supported:" msgstr "" -#: ../../library/statistics.rst:565 msgid "" ">>> from decimal import Decimal as D\n" -">>> pvariance([D(\"27.5\"), D(\"30.25\"), D(\"30.25\"), D(\"34.5\"), " -"D(\"41.75\")])\n" +">>> pvariance([D(\"27.5\"), D(\"30.25\"), D(\"30.25\"), D(\"34.5\"), D(\"41.75\")])\n" "Decimal('24.815')\n" "\n" ">>> from fractions import Fraction as F\n" @@ -897,96 +554,56 @@ msgid "" "Fraction(13, 72)" msgstr "" -#: ../../library/statistics.rst:577 -msgid "" -"When called with the entire population, this gives the population variance " -"σ². When called on a sample instead, this is the biased sample variance s², " -"also known as variance with N degrees of freedom." +msgid "When called with the entire population, this gives the population variance σ². When called on a sample instead, this is the biased sample variance s², also known as variance with N degrees of freedom." msgstr "" -#: ../../library/statistics.rst:581 -msgid "" -"If you somehow know the true population mean μ, you may use this function to " -"calculate the variance of a sample, giving the known population mean as the " -"second argument. Provided the data points are a random sample of the " -"population, the result will be an unbiased estimate of the population " -"variance." +msgid "If you somehow know the true population mean μ, you may use this function to calculate the variance of a sample, giving the known population mean as the second argument. Provided the data points are a random sample of the population, the result will be an unbiased estimate of the population variance." msgstr "" -#: ../../library/statistics.rst:590 -msgid "" -"Return the sample standard deviation (the square root of the sample " -"variance). See :func:`variance` for arguments and other details." +msgid "Return the sample standard deviation (the square root of the sample variance). See :func:`variance` for arguments and other details." msgstr "" -#: ../../library/statistics.rst:593 msgid "" ">>> stdev([1.5, 2.5, 2.5, 2.75, 3.25, 4.75])\n" "1.0810874155219827" msgstr "" -#: ../../library/statistics.rst:601 -msgid "" -"Return the sample variance of *data*, an iterable of at least two real-" -"valued numbers. Variance, or second moment about the mean, is a measure of " -"the variability (spread or dispersion) of data. A large variance indicates " -"that the data is spread out; a small variance indicates it is clustered " -"closely around the mean." +msgid "Return the sample variance of *data*, an iterable of at least two real-valued numbers. Variance, or second moment about the mean, is a measure of the variability (spread or dispersion) of data. A large variance indicates that the data is spread out; a small variance indicates it is clustered closely around the mean." msgstr "" -#: ../../library/statistics.rst:607 -msgid "" -"If the optional second argument *xbar* is given, it should be the *sample* " -"mean of *data*. If it is missing or ``None`` (the default), the mean is " -"automatically calculated." +msgid "If the optional second argument *xbar* is given, it should be the *sample* mean of *data*. If it is missing or ``None`` (the default), the mean is automatically calculated." msgstr "" -#: ../../library/statistics.rst:611 -msgid "" -"Use this function when your data is a sample from a population. To calculate " -"the variance from the entire population, see :func:`pvariance`." +msgid "Use this function when your data is a sample from a population. To calculate the variance from the entire population, see :func:`pvariance`." msgstr "" -#: ../../library/statistics.rst:614 msgid "Raises :exc:`StatisticsError` if *data* has fewer than two values." msgstr "" -#: ../../library/statistics.rst:618 msgid "" ">>> data = [2.75, 1.75, 1.25, 0.25, 0.5, 1.25, 3.5]\n" ">>> variance(data)\n" "1.3720238095238095" msgstr "" -#: ../../library/statistics.rst:624 -msgid "" -"If you have already calculated the sample mean of your data, you can pass it " -"as the optional second argument *xbar* to avoid recalculation:" +msgid "If you have already calculated the sample mean of your data, you can pass it as the optional second argument *xbar* to avoid recalculation:" msgstr "" -#: ../../library/statistics.rst:627 msgid "" ">>> m = mean(data)\n" ">>> variance(data, m)\n" "1.3720238095238095" msgstr "" -#: ../../library/statistics.rst:633 -msgid "" -"This function does not attempt to verify that you have passed the actual " -"mean as *xbar*. Using arbitrary values for *xbar* can lead to invalid or " -"impossible results." +msgid "This function does not attempt to verify that you have passed the actual mean as *xbar*. Using arbitrary values for *xbar* can lead to invalid or impossible results." msgstr "" -#: ../../library/statistics.rst:637 msgid "Decimal and Fraction values are supported:" msgstr "" -#: ../../library/statistics.rst:639 msgid "" ">>> from decimal import Decimal as D\n" -">>> variance([D(\"27.5\"), D(\"30.25\"), D(\"30.25\"), D(\"34.5\"), " -"D(\"41.75\")])\n" +">>> variance([D(\"27.5\"), D(\"30.25\"), D(\"30.25\"), D(\"34.5\"), D(\"41.75\")])\n" "Decimal('31.01875')\n" "\n" ">>> from fractions import Fraction as F\n" @@ -994,79 +611,33 @@ msgid "" "Fraction(67, 108)" msgstr "" -#: ../../library/statistics.rst:651 -msgid "" -"This is the sample variance s² with Bessel's correction, also known as " -"variance with N-1 degrees of freedom. Provided that the data points are " -"representative (e.g. independent and identically distributed), the result " -"should be an unbiased estimate of the true population variance." +msgid "This is the sample variance s² with Bessel's correction, also known as variance with N-1 degrees of freedom. Provided that the data points are representative (e.g. independent and identically distributed), the result should be an unbiased estimate of the true population variance." msgstr "" -#: ../../library/statistics.rst:656 -msgid "" -"If you somehow know the actual population mean μ you should pass it to " -"the :func:`pvariance` function as the *mu* parameter to get the variance of " -"a sample." +msgid "If you somehow know the actual population mean μ you should pass it to the :func:`pvariance` function as the *mu* parameter to get the variance of a sample." msgstr "" -#: ../../library/statistics.rst:662 -msgid "" -"Divide *data* into *n* continuous intervals with equal probability. Returns " -"a list of ``n - 1`` cut points separating the intervals." +msgid "Divide *data* into *n* continuous intervals with equal probability. Returns a list of ``n - 1`` cut points separating the intervals." msgstr "" -#: ../../library/statistics.rst:665 -msgid "" -"Set *n* to 4 for quartiles (the default). Set *n* to 10 for deciles. Set " -"*n* to 100 for percentiles which gives the 99 cuts points that separate " -"*data* into 100 equal sized groups. Raises :exc:`StatisticsError` if *n* is " -"not least 1." +msgid "Set *n* to 4 for quartiles (the default). Set *n* to 10 for deciles. Set *n* to 100 for percentiles which gives the 99 cuts points that separate *data* into 100 equal sized groups. Raises :exc:`StatisticsError` if *n* is not least 1." msgstr "" -#: ../../library/statistics.rst:670 -msgid "" -"The *data* can be any iterable containing sample data. For meaningful " -"results, the number of data points in *data* should be larger than *n*. " -"Raises :exc:`StatisticsError` if there is not at least one data point." +msgid "The *data* can be any iterable containing sample data. For meaningful results, the number of data points in *data* should be larger than *n*. Raises :exc:`StatisticsError` if there is not at least one data point." msgstr "" -#: ../../library/statistics.rst:674 -msgid "" -"The cut points are linearly interpolated from the two nearest data points. " -"For example, if a cut point falls one-third of the distance between two " -"sample values, ``100`` and ``112``, the cut-point will evaluate to ``104``." +msgid "The cut points are linearly interpolated from the two nearest data points. For example, if a cut point falls one-third of the distance between two sample values, ``100`` and ``112``, the cut-point will evaluate to ``104``." msgstr "" -#: ../../library/statistics.rst:679 -msgid "" -"The *method* for computing quantiles can be varied depending on whether the " -"*data* includes or excludes the lowest and highest possible values from the " -"population." +msgid "The *method* for computing quantiles can be varied depending on whether the *data* includes or excludes the lowest and highest possible values from the population." msgstr "" -#: ../../library/statistics.rst:683 -msgid "" -"The default *method* is \"exclusive\" and is used for data sampled from a " -"population that can have more extreme values than found in the samples. The " -"portion of the population falling below the *i-th* of *m* sorted data points " -"is computed as ``i / (m + 1)``. Given nine sample values, the method sorts " -"them and assigns the following percentiles: 10%, 20%, 30%, 40%, 50%, 60%, " -"70%, 80%, 90%." +msgid "The default *method* is \"exclusive\" and is used for data sampled from a population that can have more extreme values than found in the samples. The portion of the population falling below the *i-th* of *m* sorted data points is computed as ``i / (m + 1)``. Given nine sample values, the method sorts them and assigns the following percentiles: 10%, 20%, 30%, 40%, 50%, 60%, 70%, 80%, 90%." msgstr "" -#: ../../library/statistics.rst:690 -msgid "" -"Setting the *method* to \"inclusive\" is used for describing population data " -"or for samples that are known to include the most extreme values from the " -"population. The minimum value in *data* is treated as the 0th percentile " -"and the maximum value is treated as the 100th percentile. The portion of the " -"population falling below the *i-th* of *m* sorted data points is computed as " -"``(i - 1) / (m - 1)``. Given 11 sample values, the method sorts them and " -"assigns the following percentiles: 0%, 10%, 20%, 30%, 40%, 50%, 60%, 70%, " -"80%, 90%, 100%." +msgid "Setting the *method* to \"inclusive\" is used for describing population data or for samples that are known to include the most extreme values from the population. The minimum value in *data* is treated as the 0th percentile and the maximum value is treated as the 100th percentile. The portion of the population falling below the *i-th* of *m* sorted data points is computed as ``(i - 1) / (m - 1)``. Given 11 sample values, the method sorts them and assigns the following percentiles: 0%, 10%, 20%, 30%, 40%, 50%, 60%, 70%, 80%, 90%, 100%." msgstr "" -#: ../../library/statistics.rst:699 msgid "" "# Decile cut points for empirically sampled data\n" ">>> data = [105, 129, 87, 86, 111, 111, 89, 81, 108, 92, 110,\n" @@ -1078,26 +649,15 @@ msgid "" "[81.0, 86.2, 89.0, 99.4, 102.5, 103.6, 106.0, 109.8, 111.0]" msgstr "" -#: ../../library/statistics.rst:712 -msgid "" -"No longer raises an exception for an input with only a single data point. " -"This allows quantile estimates to be built up one sample point at a time " -"becoming gradually more refined with each new data point." +msgid "No longer raises an exception for an input with only a single data point. This allows quantile estimates to be built up one sample point at a time becoming gradually more refined with each new data point." msgstr "" -#: ../../library/statistics.rst:719 -msgid "" -"Return the sample covariance of two inputs *x* and *y*. Covariance is a " -"measure of the joint variability of two inputs." +msgid "Return the sample covariance of two inputs *x* and *y*. Covariance is a measure of the joint variability of two inputs." msgstr "" -#: ../../library/statistics.rst:722 -msgid "" -"Both inputs must be of the same length (no less than two), " -"otherwise :exc:`StatisticsError` is raised." +msgid "Both inputs must be of the same length (no less than two), otherwise :exc:`StatisticsError` is raised." msgstr "" -#: ../../library/statistics.rst:727 msgid "" ">>> x = [1, 2, 3, 4, 5, 6, 7, 8, 9]\n" ">>> y = [1, 2, 3, 1, 2, 3, 1, 2, 3]\n" @@ -1110,49 +670,25 @@ msgid "" "-7.5" msgstr "" -#: ../../library/statistics.rst:743 -msgid "" -"Return the `Pearson's correlation coefficient `_ for two inputs. Pearson's correlation " -"coefficient *r* takes values between -1 and +1. It measures the strength and " -"direction of a linear relationship." +msgid "Return the `Pearson's correlation coefficient `_ for two inputs. Pearson's correlation coefficient *r* takes values between -1 and +1. It measures the strength and direction of a linear relationship." msgstr "" -#: ../../library/statistics.rst:749 -msgid "" -"If *method* is \"ranked\", computes `Spearman's rank correlation coefficient " -"`_ " -"for two inputs. The data is replaced by ranks. Ties are averaged so that " -"equal values receive the same rank. The resulting coefficient measures the " -"strength of a monotonic relationship." +msgid "If *method* is \"ranked\", computes `Spearman's rank correlation coefficient `_ for two inputs. The data is replaced by ranks. Ties are averaged so that equal values receive the same rank. The resulting coefficient measures the strength of a monotonic relationship." msgstr "" -#: ../../library/statistics.rst:755 -msgid "" -"Spearman's correlation coefficient is appropriate for ordinal data or for " -"continuous data that doesn't meet the linear proportion requirement for " -"Pearson's correlation coefficient." +msgid "Spearman's correlation coefficient is appropriate for ordinal data or for continuous data that doesn't meet the linear proportion requirement for Pearson's correlation coefficient." msgstr "" -#: ../../library/statistics.rst:759 -msgid "" -"Both inputs must be of the same length (no less than two), and need not to " -"be constant, otherwise :exc:`StatisticsError` is raised." +msgid "Both inputs must be of the same length (no less than two), and need not to be constant, otherwise :exc:`StatisticsError` is raised." msgstr "" -#: ../../library/statistics.rst:762 -msgid "" -"Example with `Kepler's laws of planetary motion `_:" +msgid "Example with `Kepler's laws of planetary motion `_:" msgstr "" -#: ../../library/statistics.rst:765 msgid "" ">>> # Mercury, Venus, Earth, Mars, Jupiter, Saturn, Uranus, and Neptune\n" -">>> orbital_period = [88, 225, 365, 687, 4331, 10_756, 30_687, 60_190] # " -"days\n" -">>> dist_from_sun = [58, 108, 150, 228, 778, 1_400, 2_900, 4_500] # million " -"km\n" +">>> orbital_period = [88, 225, 365, 687, 4331, 10_756, 30_687, 60_190] # days\n" +">>> dist_from_sun = [58, 108, 150, 228, 778, 1_400, 2_900, 4_500] # million km\n" "\n" ">>> # Show that a perfect monotonic relationship exists\n" ">>> correlation(orbital_period, dist_from_sun, method='ranked')\n" @@ -1171,47 +707,24 @@ msgid "" "1.0" msgstr "" -#: ../../library/statistics.rst:789 msgid "Added support for Spearman's rank correlation coefficient." msgstr "" -#: ../../library/statistics.rst:794 -msgid "" -"Return the slope and intercept of `simple linear regression `_ parameters estimated using " -"ordinary least squares. Simple linear regression describes the relationship " -"between an independent variable *x* and a dependent variable *y* in terms of " -"this linear function:" +msgid "Return the slope and intercept of `simple linear regression `_ parameters estimated using ordinary least squares. Simple linear regression describes the relationship between an independent variable *x* and a dependent variable *y* in terms of this linear function:" msgstr "" -#: ../../library/statistics.rst:800 msgid "*y = slope \\* x + intercept + noise*" msgstr "" -#: ../../library/statistics.rst:802 -msgid "" -"where ``slope`` and ``intercept`` are the regression parameters that are " -"estimated, and ``noise`` represents the variability of the data that was not " -"explained by the linear regression (it is equal to the difference between " -"predicted and actual values of the dependent variable)." +msgid "where ``slope`` and ``intercept`` are the regression parameters that are estimated, and ``noise`` represents the variability of the data that was not explained by the linear regression (it is equal to the difference between predicted and actual values of the dependent variable)." msgstr "" -#: ../../library/statistics.rst:808 -msgid "" -"Both inputs must be of the same length (no less than two), and the " -"independent variable *x* cannot be constant; otherwise " -"a :exc:`StatisticsError` is raised." +msgid "Both inputs must be of the same length (no less than two), and the independent variable *x* cannot be constant; otherwise a :exc:`StatisticsError` is raised." msgstr "" -#: ../../library/statistics.rst:812 -msgid "" -"For example, we can use the `release dates of the Monty Python films " -"`_ to predict the " -"cumulative number of Monty Python films that would have been produced by " -"2019 assuming that they had kept the pace." +msgid "For example, we can use the `release dates of the Monty Python films `_ to predict the cumulative number of Monty Python films that would have been produced by 2019 assuming that they had kept the pace." msgstr "" -#: ../../library/statistics.rst:818 msgid "" ">>> year = [1971, 1975, 1979, 1982, 1983]\n" ">>> films_total = [1, 2, 3, 4, 5]\n" @@ -1220,29 +733,17 @@ msgid "" "16" msgstr "" -#: ../../library/statistics.rst:826 -msgid "" -"If *proportional* is true, the independent variable *x* and the dependent " -"variable *y* are assumed to be directly proportional. The data is fit to a " -"line passing through the origin. Since the *intercept* will always be 0.0, " -"the underlying linear function simplifies to:" +msgid "If *proportional* is true, the independent variable *x* and the dependent variable *y* are assumed to be directly proportional. The data is fit to a line passing through the origin. Since the *intercept* will always be 0.0, the underlying linear function simplifies to:" msgstr "" -#: ../../library/statistics.rst:832 msgid "*y = slope \\* x + noise*" msgstr "" -#: ../../library/statistics.rst:834 -msgid "" -"Continuing the example from :func:`correlation`, we look to see how well a " -"model based on major planets can predict the orbital distances for dwarf " -"planets:" +msgid "Continuing the example from :func:`correlation`, we look to see how well a model based on major planets can predict the orbital distances for dwarf planets:" msgstr "" -#: ../../library/statistics.rst:838 msgid "" -">>> model = linear_regression(period_squared, dist_cubed, " -"proportional=True)\n" +">>> model = linear_regression(period_squared, dist_cubed, proportional=True)\n" ">>> slope = model.slope\n" "\n" ">>> # Dwarf planets: Pluto, Eris, Makemake, Haumea, Ceres\n" @@ -1255,215 +756,105 @@ msgid "" "[5906, 10152, 6796, 6450, 414]" msgstr "" -#: ../../library/statistics.rst:854 msgid "Added support for *proportional*." msgstr "" -#: ../../library/statistics.rst:858 msgid "Exceptions" msgstr "" -#: ../../library/statistics.rst:860 msgid "A single exception is defined:" msgstr "" -#: ../../library/statistics.rst:864 msgid "Subclass of :exc:`ValueError` for statistics-related exceptions." msgstr "" -#: ../../library/statistics.rst:868 msgid ":class:`NormalDist` objects" msgstr "" -#: ../../library/statistics.rst:870 -msgid "" -":class:`NormalDist` is a tool for creating and manipulating normal " -"distributions of a `random variable `_. It is a class that treats the mean and standard " -"deviation of data measurements as a single entity." +msgid ":class:`NormalDist` is a tool for creating and manipulating normal distributions of a `random variable `_. It is a class that treats the mean and standard deviation of data measurements as a single entity." msgstr "" -#: ../../library/statistics.rst:876 -msgid "" -"Normal distributions arise from the `Central Limit Theorem `_ and have a wide range of " -"applications in statistics." +msgid "Normal distributions arise from the `Central Limit Theorem `_ and have a wide range of applications in statistics." msgstr "" -#: ../../library/statistics.rst:882 -msgid "" -"Returns a new *NormalDist* object where *mu* represents the `arithmetic mean " -"`_ and *sigma* represents the " -"`standard deviation `_." +msgid "Returns a new *NormalDist* object where *mu* represents the `arithmetic mean `_ and *sigma* represents the `standard deviation `_." msgstr "" -#: ../../library/statistics.rst:887 msgid "If *sigma* is negative, raises :exc:`StatisticsError`." msgstr "" -#: ../../library/statistics.rst:891 -msgid "" -"A read-only property for the `arithmetic mean `_ of a normal distribution." +msgid "A read-only property for the `arithmetic mean `_ of a normal distribution." msgstr "" -#: ../../library/statistics.rst:897 -msgid "" -"A read-only property for the `median `_ of a normal distribution." +msgid "A read-only property for the `median `_ of a normal distribution." msgstr "" -#: ../../library/statistics.rst:903 -msgid "" -"A read-only property for the `mode `_ of a normal distribution." +msgid "A read-only property for the `mode `_ of a normal distribution." msgstr "" -#: ../../library/statistics.rst:909 -msgid "" -"A read-only property for the `standard deviation `_ of a normal distribution." +msgid "A read-only property for the `standard deviation `_ of a normal distribution." msgstr "" -#: ../../library/statistics.rst:915 -msgid "" -"A read-only property for the `variance `_ of a normal distribution. Equal to the square of the standard " -"deviation." +msgid "A read-only property for the `variance `_ of a normal distribution. Equal to the square of the standard deviation." msgstr "" -#: ../../library/statistics.rst:921 -msgid "" -"Makes a normal distribution instance with *mu* and *sigma* parameters " -"estimated from the *data* using :func:`fmean` and :func:`stdev`." +msgid "Makes a normal distribution instance with *mu* and *sigma* parameters estimated from the *data* using :func:`fmean` and :func:`stdev`." msgstr "" -#: ../../library/statistics.rst:924 -msgid "" -"The *data* can be any :term:`iterable` and should consist of values that can " -"be converted to type :class:`float`. If *data* does not contain at least " -"two elements, raises :exc:`StatisticsError` because it takes at least one " -"point to estimate a central value and at least two points to estimate " -"dispersion." +msgid "The *data* can be any :term:`iterable` and should consist of values that can be converted to type :class:`float`. If *data* does not contain at least two elements, raises :exc:`StatisticsError` because it takes at least one point to estimate a central value and at least two points to estimate dispersion." msgstr "" -#: ../../library/statistics.rst:932 -msgid "" -"Generates *n* random samples for a given mean and standard deviation. " -"Returns a :class:`list` of :class:`float` values." +msgid "Generates *n* random samples for a given mean and standard deviation. Returns a :class:`list` of :class:`float` values." msgstr "" -#: ../../library/statistics.rst:935 -msgid "" -"If *seed* is given, creates a new instance of the underlying random number " -"generator. This is useful for creating reproducible results, even in a " -"multi-threading context." +msgid "If *seed* is given, creates a new instance of the underlying random number generator. This is useful for creating reproducible results, even in a multi-threading context." msgstr "" -#: ../../library/statistics.rst:941 -msgid "" -"Switched to a faster algorithm. To reproduce samples from previous " -"versions, use :func:`random.seed` and :func:`random.gauss`." +msgid "Switched to a faster algorithm. To reproduce samples from previous versions, use :func:`random.seed` and :func:`random.gauss`." msgstr "" -#: ../../library/statistics.rst:946 -msgid "" -"Using a `probability density function (pdf) `_, compute the relative likelihood that a " -"random variable *X* will be near the given value *x*. Mathematically, it is " -"the limit of the ratio ``P(x <= X < x+dx) / dx`` as *dx* approaches zero." +msgid "Using a `probability density function (pdf) `_, compute the relative likelihood that a random variable *X* will be near the given value *x*. Mathematically, it is the limit of the ratio ``P(x <= X < x+dx) / dx`` as *dx* approaches zero." msgstr "" -#: ../../library/statistics.rst:952 -msgid "" -"The relative likelihood is computed as the probability of a sample occurring " -"in a narrow range divided by the width of the range (hence the word " -"\"density\"). Since the likelihood is relative to other points, its value " -"can be greater than ``1.0``." +msgid "The relative likelihood is computed as the probability of a sample occurring in a narrow range divided by the width of the range (hence the word \"density\"). Since the likelihood is relative to other points, its value can be greater than ``1.0``." msgstr "" -#: ../../library/statistics.rst:959 -msgid "" -"Using a `cumulative distribution function (cdf) `_, compute the probability that a " -"random variable *X* will be less than or equal to *x*. Mathematically, it " -"is written ``P(X <= x)``." +msgid "Using a `cumulative distribution function (cdf) `_, compute the probability that a random variable *X* will be less than or equal to *x*. Mathematically, it is written ``P(X <= x)``." msgstr "" -#: ../../library/statistics.rst:966 -msgid "" -"Compute the inverse cumulative distribution function, also known as the " -"`quantile function `_ or " -"the `percent-point `_ " -"function. Mathematically, it is written ``x : P(X <= x) = p``." +msgid "Compute the inverse cumulative distribution function, also known as the `quantile function `_ or the `percent-point `_ function. Mathematically, it is written ``x : P(X <= x) = p``." msgstr "" -#: ../../library/statistics.rst:972 -msgid "" -"Finds the value *x* of the random variable *X* such that the probability of " -"the variable being less than or equal to that value equals the given " -"probability *p*." +msgid "Finds the value *x* of the random variable *X* such that the probability of the variable being less than or equal to that value equals the given probability *p*." msgstr "" -#: ../../library/statistics.rst:978 -msgid "" -"Measures the agreement between two normal probability distributions. Returns " -"a value between 0.0 and 1.0 giving `the overlapping area for the two " -"probability density functions `_." +msgid "Measures the agreement between two normal probability distributions. Returns a value between 0.0 and 1.0 giving `the overlapping area for the two probability density functions `_." msgstr "" -#: ../../library/statistics.rst:985 -msgid "" -"Divide the normal distribution into *n* continuous intervals with equal " -"probability. Returns a list of (n - 1) cut points separating the intervals." +msgid "Divide the normal distribution into *n* continuous intervals with equal probability. Returns a list of (n - 1) cut points separating the intervals." msgstr "" -#: ../../library/statistics.rst:989 -msgid "" -"Set *n* to 4 for quartiles (the default). Set *n* to 10 for deciles. Set " -"*n* to 100 for percentiles which gives the 99 cuts points that separate the " -"normal distribution into 100 equal sized groups." +msgid "Set *n* to 4 for quartiles (the default). Set *n* to 10 for deciles. Set *n* to 100 for percentiles which gives the 99 cuts points that separate the normal distribution into 100 equal sized groups." msgstr "" -#: ../../library/statistics.rst:995 -msgid "" -"Compute the `Standard Score `_ describing *x* in terms of the number of standard " -"deviations above or below the mean of the normal distribution: ``(x - " -"mean) / stdev``." +msgid "Compute the `Standard Score `_ describing *x* in terms of the number of standard deviations above or below the mean of the normal distribution: ``(x - mean) / stdev``." msgstr "" -#: ../../library/statistics.rst:1003 -msgid "" -"Instances of :class:`NormalDist` support addition, subtraction, " -"multiplication and division by a constant. These operations are used for " -"translation and scaling. For example:" +msgid "Instances of :class:`NormalDist` support addition, subtraction, multiplication and division by a constant. These operations are used for translation and scaling. For example:" msgstr "" -#: ../../library/statistics.rst:1007 msgid "" ">>> temperature_february = NormalDist(5, 2.5) # Celsius\n" ">>> temperature_february * (9/5) + 32 # Fahrenheit\n" "NormalDist(mu=41.0, sigma=4.5)" msgstr "" -#: ../../library/statistics.rst:1013 -msgid "" -"Dividing a constant by an instance of :class:`NormalDist` is not supported " -"because the result wouldn't be normally distributed." +msgid "Dividing a constant by an instance of :class:`NormalDist` is not supported because the result wouldn't be normally distributed." msgstr "" -#: ../../library/statistics.rst:1016 -msgid "" -"Since normal distributions arise from additive effects of independent " -"variables, it is possible to `add and subtract two independent normally " -"distributed random variables `_ represented as instances " -"of :class:`NormalDist`. For example:" +msgid "Since normal distributions arise from additive effects of independent variables, it is possible to `add and subtract two independent normally distributed random variables `_ represented as instances of :class:`NormalDist`. For example:" msgstr "" -#: ../../library/statistics.rst:1022 msgid "" ">>> birth_weights = NormalDist.from_samples([2.5, 3.1, 2.1, 2.4, 2.7, 3.5])\n" ">>> drug_effects = NormalDist(0.4, 0.15)\n" @@ -1474,28 +865,18 @@ msgid "" "0.5" msgstr "" -#: ../../library/statistics.rst:1036 msgid "Examples and Recipes" msgstr "" -#: ../../library/statistics.rst:1040 msgid "Classic probability problems" msgstr "" -#: ../../library/statistics.rst:1042 msgid ":class:`NormalDist` readily solves classic probability problems." msgstr "" -#: ../../library/statistics.rst:1044 -msgid "" -"For example, given `historical data for SAT exams `_ showing that scores are " -"normally distributed with a mean of 1060 and a standard deviation of 195, " -"determine the percentage of students with test scores between 1100 and 1200, " -"after rounding to the nearest whole number:" +msgid "For example, given `historical data for SAT exams `_ showing that scores are normally distributed with a mean of 1060 and a standard deviation of 195, determine the percentage of students with test scores between 1100 and 1200, after rounding to the nearest whole number:" msgstr "" -#: ../../library/statistics.rst:1050 msgid "" ">>> sat = NormalDist(1060, 195)\n" ">>> fraction = sat.cdf(1200 + 0.5) - sat.cdf(1100 - 0.5)\n" @@ -1503,13 +884,9 @@ msgid "" "18.4" msgstr "" -#: ../../library/statistics.rst:1057 -msgid "" -"Find the `quartiles `_ and `deciles " -"`_ for the SAT scores:" +msgid "Find the `quartiles `_ and `deciles `_ for the SAT scores:" msgstr "" -#: ../../library/statistics.rst:1060 msgid "" ">>> list(map(round, sat.quantiles()))\n" "[928, 1060, 1192]\n" @@ -1517,18 +894,12 @@ msgid "" "[810, 896, 958, 1011, 1060, 1109, 1162, 1224, 1310]" msgstr "" -#: ../../library/statistics.rst:1069 msgid "Monte Carlo inputs for simulations" msgstr "" -#: ../../library/statistics.rst:1071 -msgid "" -"To estimate the distribution for a model that isn't easy to solve " -"analytically, :class:`NormalDist` can generate input samples for a `Monte " -"Carlo simulation `_:" +msgid "To estimate the distribution for a model that isn't easy to solve analytically, :class:`NormalDist` can generate input samples for a `Monte Carlo simulation `_:" msgstr "" -#: ../../library/statistics.rst:1075 msgid "" ">>> def model(x, y, z):\n" "... return (3*x + 7*x*y - 5*y) / (11 * z)\n" @@ -1541,27 +912,15 @@ msgid "" "[1.4591308524824727, 1.8035946855390597, 2.175091447274739]" msgstr "" -#: ../../library/statistics.rst:1088 msgid "Approximating binomial distributions" msgstr "" -#: ../../library/statistics.rst:1090 -msgid "" -"Normal distributions can be used to approximate `Binomial distributions " -"`_ when the sample " -"size is large and when the probability of a successful trial is near 50%." +msgid "Normal distributions can be used to approximate `Binomial distributions `_ when the sample size is large and when the probability of a successful trial is near 50%." msgstr "" -#: ../../library/statistics.rst:1095 -msgid "" -"For example, an open source conference has 750 attendees and two rooms with " -"a 500 person capacity. There is a talk about Python and another about Ruby. " -"In previous conferences, 65% of the attendees preferred to listen to Python " -"talks. Assuming the population preferences haven't changed, what is the " -"probability that the Python room will stay within its capacity limits?" +msgid "For example, an open source conference has 750 attendees and two rooms with a 500 person capacity. There is a talk about Python and another about Ruby. In previous conferences, 65% of the attendees preferred to listen to Python talks. Assuming the population preferences haven't changed, what is the probability that the Python room will stay within its capacity limits?" msgstr "" -#: ../../library/statistics.rst:1101 msgid "" ">>> n = 750 # Sample size\n" ">>> p = 0.65 # Preference for Python\n" @@ -1585,30 +944,18 @@ msgid "" "0.8406" msgstr "" -#: ../../library/statistics.rst:1126 msgid "Naive bayesian classifier" msgstr "" -#: ../../library/statistics.rst:1128 msgid "Normal distributions commonly arise in machine learning problems." msgstr "" -#: ../../library/statistics.rst:1130 -msgid "" -"Wikipedia has a `nice example of a Naive Bayesian Classifier `_. The " -"challenge is to predict a person's gender from measurements of normally " -"distributed features including height, weight, and foot size." +msgid "Wikipedia has a `nice example of a Naive Bayesian Classifier `_. The challenge is to predict a person's gender from measurements of normally distributed features including height, weight, and foot size." msgstr "" -#: ../../library/statistics.rst:1135 -msgid "" -"We're given a training dataset with measurements for eight people. The " -"measurements are assumed to be normally distributed, so we summarize the " -"data with :class:`NormalDist`:" +msgid "We're given a training dataset with measurements for eight people. The measurements are assumed to be normally distributed, so we summarize the data with :class:`NormalDist`:" msgstr "" -#: ../../library/statistics.rst:1139 msgid "" ">>> height_male = NormalDist.from_samples([6, 5.92, 5.58, 5.92])\n" ">>> height_female = NormalDist.from_samples([5, 5.5, 5.42, 5.75])\n" @@ -1618,28 +965,18 @@ msgid "" ">>> foot_size_female = NormalDist.from_samples([6, 8, 7, 9])" msgstr "" -#: ../../library/statistics.rst:1148 -msgid "" -"Next, we encounter a new person whose feature measurements are known but " -"whose gender is unknown:" +msgid "Next, we encounter a new person whose feature measurements are known but whose gender is unknown:" msgstr "" -#: ../../library/statistics.rst:1151 msgid "" ">>> ht = 6.0 # height\n" ">>> wt = 130 # weight\n" ">>> fs = 8 # foot size" msgstr "" -#: ../../library/statistics.rst:1157 -msgid "" -"Starting with a 50% `prior probability `_ of being male or female, we compute the posterior as " -"the prior times the product of likelihoods for the feature measurements " -"given the gender:" +msgid "Starting with a 50% `prior probability `_ of being male or female, we compute the posterior as the prior times the product of likelihoods for the feature measurements given the gender:" msgstr "" -#: ../../library/statistics.rst:1162 msgid "" ">>> prior_male = 0.5\n" ">>> prior_female = 0.5\n" @@ -1650,14 +987,9 @@ msgid "" "... weight_female.pdf(wt) * foot_size_female.pdf(fs))" msgstr "" -#: ../../library/statistics.rst:1172 -msgid "" -"The final prediction goes to the largest posterior. This is known as the " -"`maximum a posteriori `_ or MAP:" +msgid "The final prediction goes to the largest posterior. This is known as the `maximum a posteriori `_ or MAP:" msgstr "" -#: ../../library/statistics.rst:1176 msgid "" ">>> 'male' if posterior_male > posterior_female else 'female'\n" "'female'" diff --git a/library/stdtypes.po b/library/stdtypes.po index cde642be..1ef7c049 100644 --- a/library/stdtypes.po +++ b/library/stdtypes.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:13+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,789 +23,467 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/stdtypes.rst:8 msgid "Built-in Types" msgstr "" -#: ../../library/stdtypes.rst:10 -msgid "" -"The following sections describe the standard types that are built into the " -"interpreter." +msgid "The following sections describe the standard types that are built into the interpreter." msgstr "" -#: ../../library/stdtypes.rst:15 -msgid "" -"The principal built-in types are numerics, sequences, mappings, classes, " -"instances and exceptions." +msgid "The principal built-in types are numerics, sequences, mappings, classes, instances and exceptions." msgstr "" -#: ../../library/stdtypes.rst:18 -msgid "" -"Some collection classes are mutable. The methods that add, subtract, or " -"rearrange their members in place, and don't return a specific item, never " -"return the collection instance itself but ``None``." +msgid "Some collection classes are mutable. The methods that add, subtract, or rearrange their members in place, and don't return a specific item, never return the collection instance itself but ``None``." msgstr "" -#: ../../library/stdtypes.rst:22 -msgid "" -"Some operations are supported by several object types; in particular, " -"practically all objects can be compared for equality, tested for truth " -"value, and converted to a string (with the :func:`repr` function or the " -"slightly different :func:`str` function). The latter function is implicitly " -"used when an object is written by the :func:`print` function." +msgid "Some operations are supported by several object types; in particular, practically all objects can be compared for equality, tested for truth value, and converted to a string (with the :func:`repr` function or the slightly different :func:`str` function). The latter function is implicitly used when an object is written by the :func:`print` function." msgstr "" -#: ../../library/stdtypes.rst:32 msgid "Truth Value Testing" msgstr "" -#: ../../library/stdtypes.rst:41 -msgid "" -"Any object can be tested for truth value, for use in an :keyword:`if` " -"or :keyword:`while` condition or as operand of the Boolean operations below." +msgid "Any object can be tested for truth value, for use in an :keyword:`if` or :keyword:`while` condition or as operand of the Boolean operations below." msgstr "" -#: ../../library/stdtypes.rst:46 -msgid "" -"By default, an object is considered true unless its class defines either " -"a :meth:`~object.__bool__` method that returns ``False`` or " -"a :meth:`~object.__len__` method that returns zero, when called with the " -"object. [1]_ If one of the methods raises an exception when called, the " -"exception is propagated and the object does not have a truth value (for " -"example, :data:`NotImplemented`). Here are most of the built-in objects " -"considered false:" +msgid "By default, an object is considered true unless its class defines either a :meth:`~object.__bool__` method that returns ``False`` or a :meth:`~object.__len__` method that returns zero, when called with the object. [1]_ If one of the methods raises an exception when called, the exception is propagated and the object does not have a truth value (for example, :data:`NotImplemented`). Here are most of the built-in objects considered false:" msgstr "" -#: ../../library/stdtypes.rst:58 msgid "constants defined to be false: ``None`` and ``False``" msgstr "" -#: ../../library/stdtypes.rst:60 -msgid "" -"zero of any numeric type: ``0``, ``0.0``, ``0j``, ``Decimal(0)``, " -"``Fraction(0, 1)``" +msgid "zero of any numeric type: ``0``, ``0.0``, ``0j``, ``Decimal(0)``, ``Fraction(0, 1)``" msgstr "" -#: ../../library/stdtypes.rst:63 -msgid "" -"empty sequences and collections: ``''``, ``()``, ``[]``, ``{}``, ``set()``, " -"``range(0)``" +msgid "empty sequences and collections: ``''``, ``()``, ``[]``, ``{}``, ``set()``, ``range(0)``" msgstr "" -#: ../../library/stdtypes.rst:72 -msgid "" -"Operations and built-in functions that have a Boolean result always return " -"``0`` or ``False`` for false and ``1`` or ``True`` for true, unless " -"otherwise stated. (Important exception: the Boolean operations ``or`` and " -"``and`` always return one of their operands.)" +msgid "Operations and built-in functions that have a Boolean result always return ``0`` or ``False`` for false and ``1`` or ``True`` for true, unless otherwise stated. (Important exception: the Boolean operations ``or`` and ``and`` always return one of their operands.)" msgstr "" -#: ../../library/stdtypes.rst:81 msgid "Boolean Operations --- :keyword:`!and`, :keyword:`!or`, :keyword:`!not`" msgstr "" -#: ../../library/stdtypes.rst:85 msgid "These are the Boolean operations, ordered by ascending priority:" msgstr "" -#: ../../library/stdtypes.rst:88 ../../library/stdtypes.rst:146 -#: ../../library/stdtypes.rst:292 ../../library/stdtypes.rst:382 -#: ../../library/stdtypes.rst:432 ../../library/stdtypes.rst:1015 -#: ../../library/stdtypes.rst:1237 msgid "Operation" msgstr "" -#: ../../library/stdtypes.rst:88 ../../library/stdtypes.rst:292 -#: ../../library/stdtypes.rst:382 ../../library/stdtypes.rst:432 -#: ../../library/stdtypes.rst:1015 ../../library/stdtypes.rst:1237 msgid "Result" msgstr "" -#: ../../library/stdtypes.rst:88 ../../library/stdtypes.rst:292 -#: ../../library/stdtypes.rst:432 ../../library/stdtypes.rst:1015 -#: ../../library/stdtypes.rst:1237 ../../library/stdtypes.rst:3194 -#: ../../library/stdtypes.rst:4463 msgid "Notes" msgstr "" -#: ../../library/stdtypes.rst:90 msgid "``x or y``" msgstr "" -#: ../../library/stdtypes.rst:90 msgid "if *x* is true, then *x*, else *y*" msgstr "" -#: ../../library/stdtypes.rst:90 ../../library/stdtypes.rst:1017 -#: ../../library/stdtypes.rst:1020 ../../library/stdtypes.rst:1252 -#: ../../library/stdtypes.rst:3200 ../../library/stdtypes.rst:4469 msgid "\\(1)" msgstr "" -#: ../../library/stdtypes.rst:93 msgid "``x and y``" msgstr "" -#: ../../library/stdtypes.rst:93 msgid "if *x* is false, then *x*, else *y*" msgstr "" -#: ../../library/stdtypes.rst:93 ../../library/stdtypes.rst:305 -#: ../../library/stdtypes.rst:325 ../../library/stdtypes.rst:1263 -#: ../../library/stdtypes.rst:3204 ../../library/stdtypes.rst:3206 -#: ../../library/stdtypes.rst:4473 ../../library/stdtypes.rst:4475 msgid "\\(2)" msgstr "" -#: ../../library/stdtypes.rst:96 msgid "``not x``" msgstr "" -#: ../../library/stdtypes.rst:96 msgid "if *x* is false, then ``True``, else ``False``" msgstr "" -#: ../../library/stdtypes.rst:96 ../../library/stdtypes.rst:3208 -#: ../../library/stdtypes.rst:3210 ../../library/stdtypes.rst:3212 -#: ../../library/stdtypes.rst:3214 ../../library/stdtypes.rst:4477 -#: ../../library/stdtypes.rst:4479 ../../library/stdtypes.rst:4481 -#: ../../library/stdtypes.rst:4483 msgid "\\(3)" msgstr "" -#: ../../library/stdtypes.rst:105 ../../library/stdtypes.rst:336 -#: ../../library/stdtypes.rst:450 ../../library/stdtypes.rst:1059 -#: ../../library/stdtypes.rst:1267 ../../library/stdtypes.rst:3244 -#: ../../library/stdtypes.rst:4513 msgid "Notes:" msgstr "" -#: ../../library/stdtypes.rst:108 -msgid "" -"This is a short-circuit operator, so it only evaluates the second argument " -"if the first one is false." +msgid "This is a short-circuit operator, so it only evaluates the second argument if the first one is false." msgstr "" -#: ../../library/stdtypes.rst:112 -msgid "" -"This is a short-circuit operator, so it only evaluates the second argument " -"if the first one is true." +msgid "This is a short-circuit operator, so it only evaluates the second argument if the first one is true." msgstr "" -#: ../../library/stdtypes.rst:116 -msgid "" -"``not`` has a lower priority than non-Boolean operators, so ``not a == b`` " -"is interpreted as ``not (a == b)``, and ``a == not b`` is a syntax error." +msgid "``not`` has a lower priority than non-Boolean operators, so ``not a == b`` is interpreted as ``not (a == b)``, and ``a == not b`` is a syntax error." msgstr "" -#: ../../library/stdtypes.rst:123 msgid "Comparisons" msgstr "" -#: ../../library/stdtypes.rst:137 -msgid "" -"There are eight comparison operations in Python. They all have the same " -"priority (which is higher than that of the Boolean operations). Comparisons " -"can be chained arbitrarily; for example, ``x < y <= z`` is equivalent to ``x " -"< y and y <= z``, except that *y* is evaluated only once (but in both cases " -"*z* is not evaluated at all when ``x < y`` is found to be false)." +msgid "There are eight comparison operations in Python. They all have the same priority (which is higher than that of the Boolean operations). Comparisons can be chained arbitrarily; for example, ``x < y <= z`` is equivalent to ``x < y and y <= z``, except that *y* is evaluated only once (but in both cases *z* is not evaluated at all when ``x < y`` is found to be false)." msgstr "" -#: ../../library/stdtypes.rst:143 msgid "This table summarizes the comparison operations:" msgstr "" -#: ../../library/stdtypes.rst:146 ../../library/stdtypes.rst:3171 -#: ../../library/stdtypes.rst:3194 ../../library/stdtypes.rst:4440 -#: ../../library/stdtypes.rst:4463 msgid "Meaning" msgstr "" -#: ../../library/stdtypes.rst:148 msgid "``<``" msgstr "" -#: ../../library/stdtypes.rst:148 msgid "strictly less than" msgstr "" -#: ../../library/stdtypes.rst:150 msgid "``<=``" msgstr "" -#: ../../library/stdtypes.rst:150 msgid "less than or equal" msgstr "" -#: ../../library/stdtypes.rst:152 msgid "``>``" msgstr "" -#: ../../library/stdtypes.rst:152 msgid "strictly greater than" msgstr "" -#: ../../library/stdtypes.rst:154 msgid "``>=``" msgstr "" -#: ../../library/stdtypes.rst:154 msgid "greater than or equal" msgstr "" -#: ../../library/stdtypes.rst:156 msgid "``==``" msgstr "" -#: ../../library/stdtypes.rst:156 msgid "equal" msgstr "" -#: ../../library/stdtypes.rst:158 msgid "``!=``" msgstr "" -#: ../../library/stdtypes.rst:158 msgid "not equal" msgstr "" -#: ../../library/stdtypes.rst:160 msgid "``is``" msgstr "" -#: ../../library/stdtypes.rst:160 msgid "object identity" msgstr "" -#: ../../library/stdtypes.rst:162 msgid "``is not``" msgstr "" -#: ../../library/stdtypes.rst:162 msgid "negated object identity" msgstr "" -#: ../../library/stdtypes.rst:169 -msgid "" -"Unless stated otherwise, objects of different types never compare equal. The " -"``==`` operator is always defined but for some object types (for example, " -"class objects) is equivalent to :keyword:`is`. The ``<``, ``<=``, ``>`` and " -"``>=`` operators are only defined where they make sense; for example, they " -"raise a :exc:`TypeError` exception when one of the arguments is a complex " -"number." +msgid "Unless stated otherwise, objects of different types never compare equal. The ``==`` operator is always defined but for some object types (for example, class objects) is equivalent to :keyword:`is`. The ``<``, ``<=``, ``>`` and ``>=`` operators are only defined where they make sense; for example, they raise a :exc:`TypeError` exception when one of the arguments is a complex number." msgstr "" -#: ../../library/stdtypes.rst:183 -msgid "" -"Non-identical instances of a class normally compare as non-equal unless the " -"class defines the :meth:`~object.__eq__` method." +msgid "Non-identical instances of a class normally compare as non-equal unless the class defines the :meth:`~object.__eq__` method." msgstr "" -#: ../../library/stdtypes.rst:186 -msgid "" -"Instances of a class cannot be ordered with respect to other instances of " -"the same class, or other types of object, unless the class defines enough of " -"the " -"methods :meth:`~object.__lt__`, :meth:`~object.__le__`, :meth:`~object.__gt__`, " -"and :meth:`~object.__ge__` (in general, :meth:`~object.__lt__` " -"and :meth:`~object.__eq__` are sufficient, if you want the conventional " -"meanings of the comparison operators)." +msgid "Instances of a class cannot be ordered with respect to other instances of the same class, or other types of object, unless the class defines enough of the methods :meth:`~object.__lt__`, :meth:`~object.__le__`, :meth:`~object.__gt__`, and :meth:`~object.__ge__` (in general, :meth:`~object.__lt__` and :meth:`~object.__eq__` are sufficient, if you want the conventional meanings of the comparison operators)." msgstr "" -#: ../../library/stdtypes.rst:193 -msgid "" -"The behavior of the :keyword:`is` and :keyword:`is not` operators cannot be " -"customized; also they can be applied to any two objects and never raise an " -"exception." +msgid "The behavior of the :keyword:`is` and :keyword:`is not` operators cannot be customized; also they can be applied to any two objects and never raise an exception." msgstr "" -#: ../../library/stdtypes.rst:201 -msgid "" -"Two more operations with the same syntactic priority, :keyword:`in` " -"and :keyword:`not in`, are supported by types that are :term:`iterable` or " -"implement the :meth:`~object.__contains__` method." +msgid "Two more operations with the same syntactic priority, :keyword:`in` and :keyword:`not in`, are supported by types that are :term:`iterable` or implement the :meth:`~object.__contains__` method." msgstr "" -#: ../../library/stdtypes.rst:208 msgid "Numeric Types --- :class:`int`, :class:`float`, :class:`complex`" msgstr "" -#: ../../library/stdtypes.rst:218 -msgid "" -"There are three distinct numeric types: :dfn:`integers`, :dfn:`floating-" -"point numbers`, and :dfn:`complex numbers`. In addition, Booleans are a " -"subtype of integers. Integers have unlimited precision. Floating-point " -"numbers are usually implemented using :c:expr:`double` in C; information " -"about the precision and internal representation of floating-point numbers " -"for the machine on which your program is running is available " -"in :data:`sys.float_info`. Complex numbers have a real and imaginary part, " -"which are each a floating-point number. To extract these parts from a " -"complex number *z*, use ``z.real`` and ``z.imag``. (The standard library " -"includes the additional numeric types :mod:`fractions.Fraction`, for " -"rationals, and :mod:`decimal.Decimal`, for floating-point numbers with user-" -"definable precision.)" +msgid "There are three distinct numeric types: :dfn:`integers`, :dfn:`floating-point numbers`, and :dfn:`complex numbers`. In addition, Booleans are a subtype of integers. Integers have unlimited precision. Floating-point numbers are usually implemented using :c:expr:`double` in C; information about the precision and internal representation of floating-point numbers for the machine on which your program is running is available in :data:`sys.float_info`. Complex numbers have a real and imaginary part, which are each a floating-point number. To extract these parts from a complex number *z*, use ``z.real`` and ``z.imag``. (The standard library includes the additional numeric types :mod:`fractions.Fraction`, for rationals, and :mod:`decimal.Decimal`, for floating-point numbers with user-definable precision.)" msgstr "" -#: ../../library/stdtypes.rst:240 -msgid "" -"Numbers are created by numeric literals or as the result of built-in " -"functions and operators. Unadorned integer literals (including hex, octal " -"and binary numbers) yield integers. Numeric literals containing a decimal " -"point or an exponent sign yield floating-point numbers. Appending ``'j'`` " -"or ``'J'`` to a numeric literal yields an imaginary number (a complex number " -"with a zero real part) which you can add to an integer or float to get a " -"complex number with real and imaginary parts." +msgid "Numbers are created by numeric literals or as the result of built-in functions and operators. Unadorned integer literals (including hex, octal and binary numbers) yield integers. Numeric literals containing a decimal point or an exponent sign yield floating-point numbers. Appending ``'j'`` or ``'J'`` to a numeric literal yields an imaginary number (a complex number with a zero real part) which you can add to an integer or float to get a complex number with real and imaginary parts." msgstr "" -#: ../../library/stdtypes.rst:248 -msgid "" -"The constructors :func:`int`, :func:`float`, and :func:`complex` can be used " -"to produce numbers of a specific type." +msgid "The constructors :func:`int`, :func:`float`, and :func:`complex` can be used to produce numbers of a specific type." msgstr "" -#: ../../library/stdtypes.rst:270 -msgid "" -"Python fully supports mixed arithmetic: when a binary arithmetic operator " -"has operands of different built-in numeric types, the operand with the " -"\"narrower\" type is widened to that of the other:" +msgid "Python fully supports mixed arithmetic: when a binary arithmetic operator has operands of different built-in numeric types, the operand with the \"narrower\" type is widened to that of the other:" msgstr "" -#: ../../library/stdtypes.rst:274 msgid "If both arguments are complex numbers, no conversion is performed;" msgstr "" -#: ../../library/stdtypes.rst:275 -msgid "" -"if either argument is a complex or a floating-point number, the other is " -"converted to a floating-point number;" +msgid "if either argument is a complex or a floating-point number, the other is converted to a floating-point number;" msgstr "" -#: ../../library/stdtypes.rst:277 msgid "otherwise, both must be integers and no conversion is necessary." msgstr "" -#: ../../library/stdtypes.rst:279 -msgid "" -"Arithmetic with complex and real operands is defined by the usual " -"mathematical formula, for example::" +msgid "Arithmetic with complex and real operands is defined by the usual mathematical formula, for example::" msgstr "" -#: ../../library/stdtypes.rst:282 msgid "" "x + complex(u, v) = complex(x + u, v)\n" "x * complex(u, v) = complex(x * u, x * v)" msgstr "" -#: ../../library/stdtypes.rst:285 -msgid "" -"A comparison between numbers of different types behaves as though the exact " -"values of those numbers were being compared. [2]_" +msgid "A comparison between numbers of different types behaves as though the exact values of those numbers were being compared. [2]_" msgstr "" -#: ../../library/stdtypes.rst:288 -msgid "" -"All numeric types (except complex) support the following operations (for " -"priorities of the operations, see :ref:`operator-summary`):" +msgid "All numeric types (except complex) support the following operations (for priorities of the operations, see :ref:`operator-summary`):" msgstr "" -#: ../../library/stdtypes.rst:292 msgid "Full documentation" msgstr "" -#: ../../library/stdtypes.rst:294 msgid "``x + y``" msgstr "" -#: ../../library/stdtypes.rst:294 msgid "sum of *x* and *y*" msgstr "" -#: ../../library/stdtypes.rst:296 msgid "``x - y``" msgstr "" -#: ../../library/stdtypes.rst:296 msgid "difference of *x* and *y*" msgstr "" -#: ../../library/stdtypes.rst:298 msgid "``x * y``" msgstr "" -#: ../../library/stdtypes.rst:298 msgid "product of *x* and *y*" msgstr "" -#: ../../library/stdtypes.rst:300 msgid "``x / y``" msgstr "" -#: ../../library/stdtypes.rst:300 msgid "quotient of *x* and *y*" msgstr "" -#: ../../library/stdtypes.rst:302 msgid "``x // y``" msgstr "" -#: ../../library/stdtypes.rst:302 msgid "floored quotient of *x* and *y*" msgstr "" -#: ../../library/stdtypes.rst:302 msgid "\\(1)\\(2)" msgstr "" -#: ../../library/stdtypes.rst:305 msgid "``x % y``" msgstr "" -#: ../../library/stdtypes.rst:305 msgid "remainder of ``x / y``" msgstr "" -#: ../../library/stdtypes.rst:307 msgid "``-x``" msgstr "" -#: ../../library/stdtypes.rst:307 msgid "*x* negated" msgstr "" -#: ../../library/stdtypes.rst:309 msgid "``+x``" msgstr "" -#: ../../library/stdtypes.rst:309 msgid "*x* unchanged" msgstr "" -#: ../../library/stdtypes.rst:311 msgid "``abs(x)``" msgstr "" -#: ../../library/stdtypes.rst:311 msgid "absolute value or magnitude of *x*" msgstr "" -#: ../../library/stdtypes.rst:311 msgid ":func:`abs`" msgstr "" -#: ../../library/stdtypes.rst:314 msgid "``int(x)``" msgstr "" -#: ../../library/stdtypes.rst:314 msgid "*x* converted to integer" msgstr "" -#: ../../library/stdtypes.rst:314 msgid "\\(3)\\(6)" msgstr "" -#: ../../library/stdtypes.rst:314 msgid ":func:`int`" msgstr "" -#: ../../library/stdtypes.rst:316 msgid "``float(x)``" msgstr "" -#: ../../library/stdtypes.rst:316 msgid "*x* converted to floating point" msgstr "" -#: ../../library/stdtypes.rst:316 msgid "\\(4)\\(6)" msgstr "" -#: ../../library/stdtypes.rst:316 msgid ":func:`float`" msgstr "" -#: ../../library/stdtypes.rst:318 msgid "``complex(re, im)``" msgstr "" -#: ../../library/stdtypes.rst:318 -msgid "" -"a complex number with real part *re*, imaginary part *im*. *im* defaults to " -"zero." +msgid "a complex number with real part *re*, imaginary part *im*. *im* defaults to zero." msgstr "" -#: ../../library/stdtypes.rst:318 ../../library/stdtypes.rst:3202 -#: ../../library/stdtypes.rst:4500 msgid "\\(6)" msgstr "" -#: ../../library/stdtypes.rst:318 msgid ":func:`complex`" msgstr "" -#: ../../library/stdtypes.rst:322 msgid "``c.conjugate()``" msgstr "" -#: ../../library/stdtypes.rst:322 msgid "conjugate of the complex number *c*" msgstr "" -#: ../../library/stdtypes.rst:325 msgid "``divmod(x, y)``" msgstr "" -#: ../../library/stdtypes.rst:325 msgid "the pair ``(x // y, x % y)``" msgstr "" -#: ../../library/stdtypes.rst:325 msgid ":func:`divmod`" msgstr "" -#: ../../library/stdtypes.rst:327 msgid "``pow(x, y)``" msgstr "" -#: ../../library/stdtypes.rst:327 ../../library/stdtypes.rst:329 msgid "*x* to the power *y*" msgstr "" -#: ../../library/stdtypes.rst:327 ../../library/stdtypes.rst:329 -#: ../../library/stdtypes.rst:3227 ../../library/stdtypes.rst:3230 -#: ../../library/stdtypes.rst:3233 ../../library/stdtypes.rst:4496 -#: ../../library/stdtypes.rst:4503 msgid "\\(5)" msgstr "" -#: ../../library/stdtypes.rst:327 msgid ":func:`pow`" msgstr "" -#: ../../library/stdtypes.rst:329 msgid "``x ** y``" msgstr "" -#: ../../library/stdtypes.rst:339 -msgid "" -"Also referred to as integer division. For operands of type :class:`int`, " -"the result has type :class:`int`. For operands of type :class:`float`, the " -"result has type :class:`float`. In general, the result is a whole integer, " -"though the result's type is not necessarily :class:`int`. The result is " -"always rounded towards minus infinity: ``1//2`` is ``0``, ``(-1)//2`` is " -"``-1``, ``1//(-2)`` is ``-1``, and ``(-1)//(-2)`` is ``0``." +msgid "Also referred to as integer division. For operands of type :class:`int`, the result has type :class:`int`. For operands of type :class:`float`, the result has type :class:`float`. In general, the result is a whole integer, though the result's type is not necessarily :class:`int`. The result is always rounded towards minus infinity: ``1//2`` is ``0``, ``(-1)//2`` is ``-1``, ``1//(-2)`` is ``-1``, and ``(-1)//(-2)`` is ``0``." msgstr "" -#: ../../library/stdtypes.rst:347 -msgid "" -"Not for complex numbers. Instead convert to floats using :func:`abs` if " -"appropriate." +msgid "Not for complex numbers. Instead convert to floats using :func:`abs` if appropriate." msgstr "" -#: ../../library/stdtypes.rst:358 -msgid "" -"Conversion from :class:`float` to :class:`int` truncates, discarding the " -"fractional part. See functions :func:`math.floor` and :func:`math.ceil` for " -"alternative conversions." +msgid "Conversion from :class:`float` to :class:`int` truncates, discarding the fractional part. See functions :func:`math.floor` and :func:`math.ceil` for alternative conversions." msgstr "" -#: ../../library/stdtypes.rst:363 -msgid "" -"float also accepts the strings \"nan\" and \"inf\" with an optional prefix " -"\"+\" or \"-\" for Not a Number (NaN) and positive or negative infinity." +msgid "float also accepts the strings \"nan\" and \"inf\" with an optional prefix \"+\" or \"-\" for Not a Number (NaN) and positive or negative infinity." msgstr "" -#: ../../library/stdtypes.rst:367 -msgid "" -"Python defines ``pow(0, 0)`` and ``0 ** 0`` to be ``1``, as is common for " -"programming languages." +msgid "Python defines ``pow(0, 0)`` and ``0 ** 0`` to be ``1``, as is common for programming languages." msgstr "" -#: ../../library/stdtypes.rst:371 -msgid "" -"The numeric literals accepted include the digits ``0`` to ``9`` or any " -"Unicode equivalent (code points with the ``Nd`` property)." +msgid "The numeric literals accepted include the digits ``0`` to ``9`` or any Unicode equivalent (code points with the ``Nd`` property)." msgstr "" -#: ../../library/stdtypes.rst:374 -msgid "" -"See `the Unicode Standard `_ for a complete list of code points with the ``Nd`` " -"property." +msgid "See `the Unicode Standard `_ for a complete list of code points with the ``Nd`` property." msgstr "" -#: ../../library/stdtypes.rst:378 -msgid "" -"All :class:`numbers.Real` types (:class:`int` and :class:`float`) also " -"include the following operations:" +msgid "All :class:`numbers.Real` types (:class:`int` and :class:`float`) also include the following operations:" msgstr "" -#: ../../library/stdtypes.rst:384 msgid ":func:`math.trunc(\\ x) `" msgstr "" -#: ../../library/stdtypes.rst:384 msgid "*x* truncated to :class:`~numbers.Integral`" msgstr "" -#: ../../library/stdtypes.rst:387 msgid ":func:`round(x[, n]) `" msgstr "" -#: ../../library/stdtypes.rst:387 -msgid "" -"*x* rounded to *n* digits, rounding half to even. If *n* is omitted, it " -"defaults to 0." +msgid "*x* rounded to *n* digits, rounding half to even. If *n* is omitted, it defaults to 0." msgstr "" -#: ../../library/stdtypes.rst:391 msgid ":func:`math.floor(\\ x) `" msgstr "" -#: ../../library/stdtypes.rst:391 msgid "the greatest :class:`~numbers.Integral` <= *x*" msgstr "" -#: ../../library/stdtypes.rst:394 msgid ":func:`math.ceil(x) `" msgstr "" -#: ../../library/stdtypes.rst:394 msgid "the least :class:`~numbers.Integral` >= *x*" msgstr "" -#: ../../library/stdtypes.rst:398 -msgid "" -"For additional numeric operations see the :mod:`math` and :mod:`cmath` " -"modules." +msgid "For additional numeric operations see the :mod:`math` and :mod:`cmath` modules." msgstr "" -#: ../../library/stdtypes.rst:407 msgid "Bitwise Operations on Integer Types" msgstr "" -#: ../../library/stdtypes.rst:421 -msgid "" -"Bitwise operations only make sense for integers. The result of bitwise " -"operations is calculated as though carried out in two's complement with an " -"infinite number of sign bits." +msgid "Bitwise operations only make sense for integers. The result of bitwise operations is calculated as though carried out in two's complement with an infinite number of sign bits." msgstr "" -#: ../../library/stdtypes.rst:425 -msgid "" -"The priorities of the binary bitwise operations are all lower than the " -"numeric operations and higher than the comparisons; the unary operation " -"``~`` has the same priority as the other unary numeric operations (``+`` and " -"``-``)." +msgid "The priorities of the binary bitwise operations are all lower than the numeric operations and higher than the comparisons; the unary operation ``~`` has the same priority as the other unary numeric operations (``+`` and ``-``)." msgstr "" -#: ../../library/stdtypes.rst:429 msgid "This table lists the bitwise operations sorted in ascending priority:" msgstr "" -#: ../../library/stdtypes.rst:434 msgid "``x | y``" msgstr "" -#: ../../library/stdtypes.rst:434 msgid "bitwise :dfn:`or` of *x* and *y*" msgstr "" -#: ../../library/stdtypes.rst:434 ../../library/stdtypes.rst:437 -#: ../../library/stdtypes.rst:440 ../../library/stdtypes.rst:3216 -#: ../../library/stdtypes.rst:3220 ../../library/stdtypes.rst:4485 -#: ../../library/stdtypes.rst:4489 msgid "\\(4)" msgstr "" -#: ../../library/stdtypes.rst:437 msgid "``x ^ y``" msgstr "" -#: ../../library/stdtypes.rst:437 msgid "bitwise :dfn:`exclusive or` of *x* and *y*" msgstr "" -#: ../../library/stdtypes.rst:440 msgid "``x & y``" msgstr "" -#: ../../library/stdtypes.rst:440 msgid "bitwise :dfn:`and` of *x* and *y*" msgstr "" -#: ../../library/stdtypes.rst:443 msgid "``x << n``" msgstr "" -#: ../../library/stdtypes.rst:443 msgid "*x* shifted left by *n* bits" msgstr "" -#: ../../library/stdtypes.rst:443 msgid "(1)(2)" msgstr "" -#: ../../library/stdtypes.rst:445 msgid "``x >> n``" msgstr "" -#: ../../library/stdtypes.rst:445 msgid "*x* shifted right by *n* bits" msgstr "" -#: ../../library/stdtypes.rst:445 msgid "(1)(3)" msgstr "" -#: ../../library/stdtypes.rst:447 msgid "``~x``" msgstr "" -#: ../../library/stdtypes.rst:447 msgid "the bits of *x* inverted" msgstr "" -#: ../../library/stdtypes.rst:453 -msgid "" -"Negative shift counts are illegal and cause a :exc:`ValueError` to be raised." +msgid "Negative shift counts are illegal and cause a :exc:`ValueError` to be raised." msgstr "" -#: ../../library/stdtypes.rst:456 -msgid "" -"A left shift by *n* bits is equivalent to multiplication by ``pow(2, n)``." +msgid "A left shift by *n* bits is equivalent to multiplication by ``pow(2, n)``." msgstr "" -#: ../../library/stdtypes.rst:459 -msgid "" -"A right shift by *n* bits is equivalent to floor division by ``pow(2, n)``." +msgid "A right shift by *n* bits is equivalent to floor division by ``pow(2, n)``." msgstr "" -#: ../../library/stdtypes.rst:462 -msgid "" -"Performing these calculations with at least one extra sign extension bit in " -"a finite two's complement representation (a working bit-width of ``1 + " -"max(x.bit_length(), y.bit_length())`` or more) is sufficient to get the same " -"result as if there were an infinite number of sign bits." +msgid "Performing these calculations with at least one extra sign extension bit in a finite two's complement representation (a working bit-width of ``1 + max(x.bit_length(), y.bit_length())`` or more) is sufficient to get the same result as if there were an infinite number of sign bits." msgstr "" -#: ../../library/stdtypes.rst:469 msgid "Additional Methods on Integer Types" msgstr "" -#: ../../library/stdtypes.rst:471 -msgid "" -"The int type implements the :class:`numbers.Integral` :term:`abstract base " -"class`. In addition, it provides a few more methods:" +msgid "The int type implements the :class:`numbers.Integral` :term:`abstract base class`. In addition, it provides a few more methods:" msgstr "" -#: ../../library/stdtypes.rst:476 -msgid "" -"Return the number of bits necessary to represent an integer in binary, " -"excluding the sign and leading zeros::" +msgid "Return the number of bits necessary to represent an integer in binary, excluding the sign and leading zeros::" msgstr "" -#: ../../library/stdtypes.rst:479 msgid "" ">>> n = -37\n" ">>> bin(n)\n" @@ -814,21 +492,12 @@ msgid "" "6" msgstr "" -#: ../../library/stdtypes.rst:485 -msgid "" -"More precisely, if ``x`` is nonzero, then ``x.bit_length()`` is the unique " -"positive integer ``k`` such that ``2**(k-1) <= abs(x) < 2**k``. " -"Equivalently, when ``abs(x)`` is small enough to have a correctly rounded " -"logarithm, then ``k = 1 + int(log(abs(x), 2))``. If ``x`` is zero, then " -"``x.bit_length()`` returns ``0``." +msgid "More precisely, if ``x`` is nonzero, then ``x.bit_length()`` is the unique positive integer ``k`` such that ``2**(k-1) <= abs(x) < 2**k``. Equivalently, when ``abs(x)`` is small enough to have a correctly rounded logarithm, then ``k = 1 + int(log(abs(x), 2))``. If ``x`` is zero, then ``x.bit_length()`` returns ``0``." msgstr "" -#: ../../library/stdtypes.rst:491 ../../library/stdtypes.rst:514 -#: ../../library/stdtypes.rst:559 ../../library/stdtypes.rst:603 msgid "Equivalent to::" msgstr "" -#: ../../library/stdtypes.rst:493 msgid "" "def bit_length(self):\n" " s = bin(self) # binary representation: bin(-37) --> '-0b100101'\n" @@ -836,13 +505,9 @@ msgid "" " return len(s) # len('100101') --> 6" msgstr "" -#: ../../library/stdtypes.rst:502 -msgid "" -"Return the number of ones in the binary representation of the absolute value " -"of the integer. This is also known as the population count. Example::" +msgid "Return the number of ones in the binary representation of the absolute value of the integer. This is also known as the population count. Example::" msgstr "" -#: ../../library/stdtypes.rst:506 msgid "" ">>> n = 19\n" ">>> bin(n)\n" @@ -853,58 +518,34 @@ msgid "" "3" msgstr "" -#: ../../library/stdtypes.rst:516 msgid "" "def bit_count(self):\n" " return bin(self).count(\"1\")" msgstr "" -#: ../../library/stdtypes.rst:523 msgid "Return an array of bytes representing an integer." msgstr "" -#: ../../library/stdtypes.rst:535 -msgid "" -"The integer is represented using *length* bytes, and defaults to 1. " -"An :exc:`OverflowError` is raised if the integer is not representable with " -"the given number of bytes." +msgid "The integer is represented using *length* bytes, and defaults to 1. An :exc:`OverflowError` is raised if the integer is not representable with the given number of bytes." msgstr "" -#: ../../library/stdtypes.rst:539 -msgid "" -"The *byteorder* argument determines the byte order used to represent the " -"integer, and defaults to ``\"big\"``. If *byteorder* is ``\"big\"``, the " -"most significant byte is at the beginning of the byte array. If *byteorder* " -"is ``\"little\"``, the most significant byte is at the end of the byte array." +msgid "The *byteorder* argument determines the byte order used to represent the integer, and defaults to ``\"big\"``. If *byteorder* is ``\"big\"``, the most significant byte is at the beginning of the byte array. If *byteorder* is ``\"little\"``, the most significant byte is at the end of the byte array." msgstr "" -#: ../../library/stdtypes.rst:545 -msgid "" -"The *signed* argument determines whether two's complement is used to " -"represent the integer. If *signed* is ``False`` and a negative integer is " -"given, an :exc:`OverflowError` is raised. The default value for *signed* is " -"``False``." +msgid "The *signed* argument determines whether two's complement is used to represent the integer. If *signed* is ``False`` and a negative integer is given, an :exc:`OverflowError` is raised. The default value for *signed* is ``False``." msgstr "" -#: ../../library/stdtypes.rst:550 -msgid "" -"The default values can be used to conveniently turn an integer into a single " -"byte object::" +msgid "The default values can be used to conveniently turn an integer into a single byte object::" msgstr "" -#: ../../library/stdtypes.rst:553 msgid "" ">>> (65).to_bytes()\n" "b'A'" msgstr "" -#: ../../library/stdtypes.rst:556 -msgid "" -"However, when using the default arguments, don't try to convert a value " -"greater than 255 or you'll get an :exc:`OverflowError`." +msgid "However, when using the default arguments, don't try to convert a value greater than 255 or you'll get an :exc:`OverflowError`." msgstr "" -#: ../../library/stdtypes.rst:561 msgid "" "def to_bytes(n, length=1, byteorder='big', signed=False):\n" " if byteorder == 'little':\n" @@ -917,37 +558,21 @@ msgid "" " return bytes((n >> i*8) & 0xff for i in order)" msgstr "" -#: ../../library/stdtypes.rst:572 msgid "Added default argument values for ``length`` and ``byteorder``." msgstr "" -#: ../../library/stdtypes.rst:577 msgid "Return the integer represented by the given array of bytes." msgstr "" -#: ../../library/stdtypes.rst:590 -msgid "" -"The argument *bytes* must either be a :term:`bytes-like object` or an " -"iterable producing bytes." +msgid "The argument *bytes* must either be a :term:`bytes-like object` or an iterable producing bytes." msgstr "" -#: ../../library/stdtypes.rst:593 -msgid "" -"The *byteorder* argument determines the byte order used to represent the " -"integer, and defaults to ``\"big\"``. If *byteorder* is ``\"big\"``, the " -"most significant byte is at the beginning of the byte array. If *byteorder* " -"is ``\"little\"``, the most significant byte is at the end of the byte " -"array. To request the native byte order of the host system, " -"use :data:`sys.byteorder` as the byte order value." +msgid "The *byteorder* argument determines the byte order used to represent the integer, and defaults to ``\"big\"``. If *byteorder* is ``\"big\"``, the most significant byte is at the beginning of the byte array. If *byteorder* is ``\"little\"``, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use :data:`sys.byteorder` as the byte order value." msgstr "" -#: ../../library/stdtypes.rst:600 -msgid "" -"The *signed* argument indicates whether two's complement is used to " -"represent the integer." +msgid "The *signed* argument indicates whether two's complement is used to represent the integer." msgstr "" -#: ../../library/stdtypes.rst:605 msgid "" "def from_bytes(bytes, byteorder='big', signed=False):\n" " if byteorder == 'little':\n" @@ -964,67 +589,36 @@ msgid "" " return n" msgstr "" -#: ../../library/stdtypes.rst:620 msgid "Added default argument value for ``byteorder``." msgstr "" -#: ../../library/stdtypes.rst:625 -msgid "" -"Return a pair of integers whose ratio is equal to the original integer and " -"has a positive denominator. The integer ratio of integers (whole numbers) " -"is always the integer as the numerator and ``1`` as the denominator." +msgid "Return a pair of integers whose ratio is equal to the original integer and has a positive denominator. The integer ratio of integers (whole numbers) is always the integer as the numerator and ``1`` as the denominator." msgstr "" -#: ../../library/stdtypes.rst:634 -msgid "" -"Returns ``True``. Exists for duck type compatibility " -"with :meth:`float.is_integer`." +msgid "Returns ``True``. Exists for duck type compatibility with :meth:`float.is_integer`." msgstr "" -#: ../../library/stdtypes.rst:639 msgid "Additional Methods on Float" msgstr "" -#: ../../library/stdtypes.rst:641 -msgid "" -"The float type implements the :class:`numbers.Real` :term:`abstract base " -"class`. float also has the following additional methods." +msgid "The float type implements the :class:`numbers.Real` :term:`abstract base class`. float also has the following additional methods." msgstr "" -#: ../../library/stdtypes.rst:646 -msgid "" -"Class method to return a floating-point number constructed from a number *x*." +msgid "Class method to return a floating-point number constructed from a number *x*." msgstr "" -#: ../../library/stdtypes.rst:648 -msgid "" -"If the argument is an integer or a floating-point number, a floating-point " -"number with the same value (within Python's floating-point precision) is " -"returned. If the argument is outside the range of a Python float, " -"an :exc:`OverflowError` will be raised." +msgid "If the argument is an integer or a floating-point number, a floating-point number with the same value (within Python's floating-point precision) is returned. If the argument is outside the range of a Python float, an :exc:`OverflowError` will be raised." msgstr "" -#: ../../library/stdtypes.rst:653 -msgid "" -"For a general Python object ``x``, ``float.from_number(x)`` delegates to " -"``x.__float__()``. If :meth:`~object.__float__` is not defined then it falls " -"back to :meth:`~object.__index__`." +msgid "For a general Python object ``x``, ``float.from_number(x)`` delegates to ``x.__float__()``. If :meth:`~object.__float__` is not defined then it falls back to :meth:`~object.__index__`." msgstr "" -#: ../../library/stdtypes.rst:663 -msgid "" -"Return a pair of integers whose ratio is exactly equal to the original " -"float. The ratio is in lowest terms and has a positive denominator. " -"Raises :exc:`OverflowError` on infinities and a :exc:`ValueError` on NaNs." +msgid "Return a pair of integers whose ratio is exactly equal to the original float. The ratio is in lowest terms and has a positive denominator. Raises :exc:`OverflowError` on infinities and a :exc:`ValueError` on NaNs." msgstr "" -#: ../../library/stdtypes.rst:670 -msgid "" -"Return ``True`` if the float instance is finite with integral value, and " -"``False`` otherwise::" +msgid "Return ``True`` if the float instance is finite with integral value, and ``False`` otherwise::" msgstr "" -#: ../../library/stdtypes.rst:673 msgid "" ">>> (-2.0).is_integer()\n" "True\n" @@ -1032,183 +626,85 @@ msgid "" "False" msgstr "" -#: ../../library/stdtypes.rst:678 -msgid "" -"Two methods support conversion to and from hexadecimal strings. Since " -"Python's floats are stored internally as binary numbers, converting a float " -"to or from a *decimal* string usually involves a small rounding error. In " -"contrast, hexadecimal strings allow exact representation and specification " -"of floating-point numbers. This can be useful when debugging, and in " -"numerical work." +msgid "Two methods support conversion to and from hexadecimal strings. Since Python's floats are stored internally as binary numbers, converting a float to or from a *decimal* string usually involves a small rounding error. In contrast, hexadecimal strings allow exact representation and specification of floating-point numbers. This can be useful when debugging, and in numerical work." msgstr "" -#: ../../library/stdtypes.rst:689 -msgid "" -"Return a representation of a floating-point number as a hexadecimal string. " -"For finite floating-point numbers, this representation will always include a " -"leading ``0x`` and a trailing ``p`` and exponent." +msgid "Return a representation of a floating-point number as a hexadecimal string. For finite floating-point numbers, this representation will always include a leading ``0x`` and a trailing ``p`` and exponent." msgstr "" -#: ../../library/stdtypes.rst:697 -msgid "" -"Class method to return the float represented by a hexadecimal string *s*. " -"The string *s* may have leading and trailing whitespace." +msgid "Class method to return the float represented by a hexadecimal string *s*. The string *s* may have leading and trailing whitespace." msgstr "" -#: ../../library/stdtypes.rst:702 -msgid "" -"Note that :meth:`float.hex` is an instance method, " -"while :meth:`float.fromhex` is a class method." +msgid "Note that :meth:`float.hex` is an instance method, while :meth:`float.fromhex` is a class method." msgstr "" -#: ../../library/stdtypes.rst:705 msgid "A hexadecimal string takes the form::" msgstr "" -#: ../../library/stdtypes.rst:707 msgid "[sign] ['0x'] integer ['.' fraction] ['p' exponent]" msgstr "" -#: ../../library/stdtypes.rst:709 -msgid "" -"where the optional ``sign`` may by either ``+`` or ``-``, ``integer`` and " -"``fraction`` are strings of hexadecimal digits, and ``exponent`` is a " -"decimal integer with an optional leading sign. Case is not significant, and " -"there must be at least one hexadecimal digit in either the integer or the " -"fraction. This syntax is similar to the syntax specified in section 6.4.4.2 " -"of the C99 standard, and also to the syntax used in Java 1.5 onwards. In " -"particular, the output of :meth:`float.hex` is usable as a hexadecimal " -"floating-point literal in C or Java code, and hexadecimal strings produced " -"by C's ``%a`` format character or Java's ``Double.toHexString`` are accepted " -"by :meth:`float.fromhex`." +msgid "where the optional ``sign`` may by either ``+`` or ``-``, ``integer`` and ``fraction`` are strings of hexadecimal digits, and ``exponent`` is a decimal integer with an optional leading sign. Case is not significant, and there must be at least one hexadecimal digit in either the integer or the fraction. This syntax is similar to the syntax specified in section 6.4.4.2 of the C99 standard, and also to the syntax used in Java 1.5 onwards. In particular, the output of :meth:`float.hex` is usable as a hexadecimal floating-point literal in C or Java code, and hexadecimal strings produced by C's ``%a`` format character or Java's ``Double.toHexString`` are accepted by :meth:`float.fromhex`." msgstr "" -#: ../../library/stdtypes.rst:722 -msgid "" -"Note that the exponent is written in decimal rather than hexadecimal, and " -"that it gives the power of 2 by which to multiply the coefficient. For " -"example, the hexadecimal string ``0x3.a7p10`` represents the floating-point " -"number ``(3 + 10./16 + 7./16**2) * 2.0**10``, or ``3740.0``::" +msgid "Note that the exponent is written in decimal rather than hexadecimal, and that it gives the power of 2 by which to multiply the coefficient. For example, the hexadecimal string ``0x3.a7p10`` represents the floating-point number ``(3 + 10./16 + 7./16**2) * 2.0**10``, or ``3740.0``::" msgstr "" -#: ../../library/stdtypes.rst:728 msgid "" ">>> float.fromhex('0x3.a7p10')\n" "3740.0" msgstr "" -#: ../../library/stdtypes.rst:732 -msgid "" -"Applying the reverse conversion to ``3740.0`` gives a different hexadecimal " -"string representing the same number::" +msgid "Applying the reverse conversion to ``3740.0`` gives a different hexadecimal string representing the same number::" msgstr "" -#: ../../library/stdtypes.rst:735 msgid "" ">>> float.hex(3740.0)\n" "'0x1.d380000000000p+11'" msgstr "" -#: ../../library/stdtypes.rst:740 msgid "Additional Methods on Complex" msgstr "" -#: ../../library/stdtypes.rst:742 -msgid "" -"The :class:`!complex` type implements " -"the :class:`numbers.Complex` :term:`abstract base class`. :class:`!complex` " -"also has the following additional methods." +msgid "The :class:`!complex` type implements the :class:`numbers.Complex` :term:`abstract base class`. :class:`!complex` also has the following additional methods." msgstr "" -#: ../../library/stdtypes.rst:748 msgid "Class method to convert a number to a complex number." msgstr "" -#: ../../library/stdtypes.rst:750 -msgid "" -"For a general Python object ``x``, ``complex.from_number(x)`` delegates to " -"``x.__complex__()``. If :meth:`~object.__complex__` is not defined then it " -"falls back to :meth:`~object.__float__`. If :meth:`!__float__` is not " -"defined then it falls back to :meth:`~object.__index__`." +msgid "For a general Python object ``x``, ``complex.from_number(x)`` delegates to ``x.__complex__()``. If :meth:`~object.__complex__` is not defined then it falls back to :meth:`~object.__float__`. If :meth:`!__float__` is not defined then it falls back to :meth:`~object.__index__`." msgstr "" -#: ../../library/stdtypes.rst:761 msgid "Hashing of numeric types" msgstr "" -#: ../../library/stdtypes.rst:763 -msgid "" -"For numbers ``x`` and ``y``, possibly of different types, it's a requirement " -"that ``hash(x) == hash(y)`` whenever ``x == y`` (see " -"the :meth:`~object.__hash__` method documentation for more details). For " -"ease of implementation and efficiency across a variety of numeric types " -"(including :class:`int`, :class:`float`, :class:`decimal.Decimal` " -"and :class:`fractions.Fraction`) Python's hash for numeric types is based on " -"a single mathematical function that's defined for any rational number, and " -"hence applies to all instances of :class:`int` " -"and :class:`fractions.Fraction`, and all finite instances of :class:`float` " -"and :class:`decimal.Decimal`. Essentially, this function is given by " -"reduction modulo ``P`` for a fixed prime ``P``. The value of ``P`` is made " -"available to Python as the :attr:`~sys.hash_info.modulus` attribute " -"of :data:`sys.hash_info`." +msgid "For numbers ``x`` and ``y``, possibly of different types, it's a requirement that ``hash(x) == hash(y)`` whenever ``x == y`` (see the :meth:`~object.__hash__` method documentation for more details). For ease of implementation and efficiency across a variety of numeric types (including :class:`int`, :class:`float`, :class:`decimal.Decimal` and :class:`fractions.Fraction`) Python's hash for numeric types is based on a single mathematical function that's defined for any rational number, and hence applies to all instances of :class:`int` and :class:`fractions.Fraction`, and all finite instances of :class:`float` and :class:`decimal.Decimal`. Essentially, this function is given by reduction modulo ``P`` for a fixed prime ``P``. The value of ``P`` is made available to Python as the :attr:`~sys.hash_info.modulus` attribute of :data:`sys.hash_info`." msgstr "" -#: ../../library/stdtypes.rst:778 -msgid "" -"Currently, the prime used is ``P = 2**31 - 1`` on machines with 32-bit C " -"longs and ``P = 2**61 - 1`` on machines with 64-bit C longs." +msgid "Currently, the prime used is ``P = 2**31 - 1`` on machines with 32-bit C longs and ``P = 2**61 - 1`` on machines with 64-bit C longs." msgstr "" -#: ../../library/stdtypes.rst:781 msgid "Here are the rules in detail:" msgstr "" -#: ../../library/stdtypes.rst:783 -msgid "" -"If ``x = m / n`` is a nonnegative rational number and ``n`` is not divisible " -"by ``P``, define ``hash(x)`` as ``m * invmod(n, P) % P``, where ``invmod(n, " -"P)`` gives the inverse of ``n`` modulo ``P``." +msgid "If ``x = m / n`` is a nonnegative rational number and ``n`` is not divisible by ``P``, define ``hash(x)`` as ``m * invmod(n, P) % P``, where ``invmod(n, P)`` gives the inverse of ``n`` modulo ``P``." msgstr "" -#: ../../library/stdtypes.rst:787 -msgid "" -"If ``x = m / n`` is a nonnegative rational number and ``n`` is divisible by " -"``P`` (but ``m`` is not) then ``n`` has no inverse modulo ``P`` and the rule " -"above doesn't apply; in this case define ``hash(x)`` to be the constant " -"value ``sys.hash_info.inf``." +msgid "If ``x = m / n`` is a nonnegative rational number and ``n`` is divisible by ``P`` (but ``m`` is not) then ``n`` has no inverse modulo ``P`` and the rule above doesn't apply; in this case define ``hash(x)`` to be the constant value ``sys.hash_info.inf``." msgstr "" -#: ../../library/stdtypes.rst:792 -msgid "" -"If ``x = m / n`` is a negative rational number define ``hash(x)`` as ``-" -"hash(-x)``. If the resulting hash is ``-1``, replace it with ``-2``." +msgid "If ``x = m / n`` is a negative rational number define ``hash(x)`` as ``-hash(-x)``. If the resulting hash is ``-1``, replace it with ``-2``." msgstr "" -#: ../../library/stdtypes.rst:796 -msgid "" -"The particular values ``sys.hash_info.inf`` and ``-sys.hash_info.inf`` are " -"used as hash values for positive infinity or negative infinity " -"(respectively)." +msgid "The particular values ``sys.hash_info.inf`` and ``-sys.hash_info.inf`` are used as hash values for positive infinity or negative infinity (respectively)." msgstr "" -#: ../../library/stdtypes.rst:800 -msgid "" -"For a :class:`complex` number ``z``, the hash values of the real and " -"imaginary parts are combined by computing ``hash(z.real) + " -"sys.hash_info.imag * hash(z.imag)``, reduced modulo " -"``2**sys.hash_info.width`` so that it lies in " -"``range(-2**(sys.hash_info.width - 1), 2**(sys.hash_info.width - 1))``. " -"Again, if the result is ``-1``, it's replaced with ``-2``." +msgid "For a :class:`complex` number ``z``, the hash values of the real and imaginary parts are combined by computing ``hash(z.real) + sys.hash_info.imag * hash(z.imag)``, reduced modulo ``2**sys.hash_info.width`` so that it lies in ``range(-2**(sys.hash_info.width - 1), 2**(sys.hash_info.width - 1))``. Again, if the result is ``-1``, it's replaced with ``-2``." msgstr "" -#: ../../library/stdtypes.rst:808 -msgid "" -"To clarify the above rules, here's some example Python code, equivalent to " -"the built-in hash, for computing the hash of a rational " -"number, :class:`float`, or :class:`complex`::" +msgid "To clarify the above rules, here's some example Python code, equivalent to the built-in hash, for computing the hash of a rational number, :class:`float`, or :class:`complex`::" msgstr "" -#: ../../library/stdtypes.rst:813 msgid "" "import sys, math\n" "\n" @@ -1220,8 +716,7 @@ msgid "" "\n" " \"\"\"\n" " P = sys.hash_info.modulus\n" -" # Remove common factors of P. (Unnecessary if m and n already " -"coprime.)\n" +" # Remove common factors of P. (Unnecessary if m and n already coprime.)\n" " while m % P == n % P == 0:\n" " m, n = m // P, n // P\n" "\n" @@ -1250,8 +745,7 @@ msgid "" "def hash_complex(z):\n" " \"\"\"Compute the hash of a complex number z.\"\"\"\n" "\n" -" hash_value = hash_float(z.real) + sys.hash_info.imag * " -"hash_float(z.imag)\n" +" hash_value = hash_float(z.real) + sys.hash_info.imag * hash_float(z.imag)\n" " # do a signed reduction modulo 2**sys.hash_info.width\n" " M = 2**(sys.hash_info.width - 1)\n" " hash_value = (hash_value & (M - 1)) - (hash_value & M)\n" @@ -1260,309 +754,167 @@ msgid "" " return hash_value" msgstr "" -#: ../../library/stdtypes.rst:864 msgid "Boolean Type - :class:`bool`" msgstr "" -#: ../../library/stdtypes.rst:866 -msgid "" -"Booleans represent truth values. The :class:`bool` type has exactly two " -"constant instances: ``True`` and ``False``." +msgid "Booleans represent truth values. The :class:`bool` type has exactly two constant instances: ``True`` and ``False``." msgstr "" -#: ../../library/stdtypes.rst:874 -msgid "" -"The built-in function :func:`bool` converts any value to a boolean, if the " -"value can be interpreted as a truth value (see section :ref:`truth` above)." +msgid "The built-in function :func:`bool` converts any value to a boolean, if the value can be interpreted as a truth value (see section :ref:`truth` above)." msgstr "" -#: ../../library/stdtypes.rst:877 -msgid "" -"For logical operations, use the :ref:`boolean operators ` ``and``, " -"``or`` and ``not``. When applying the bitwise operators ``&``, ``|``, ``^`` " -"to two booleans, they return a bool equivalent to the logical operations " -"\"and\", \"or\", \"xor\". However, the logical operators ``and``, ``or`` and " -"``!=`` should be preferred over ``&``, ``|`` and ``^``." +msgid "For logical operations, use the :ref:`boolean operators ` ``and``, ``or`` and ``not``. When applying the bitwise operators ``&``, ``|``, ``^`` to two booleans, they return a bool equivalent to the logical operations \"and\", \"or\", \"xor\". However, the logical operators ``and``, ``or`` and ``!=`` should be preferred over ``&``, ``|`` and ``^``." msgstr "" -#: ../../library/stdtypes.rst:886 -msgid "" -"The use of the bitwise inversion operator ``~`` is deprecated and will raise " -"an error in Python 3.16." +msgid "The use of the bitwise inversion operator ``~`` is deprecated and will raise an error in Python 3.16." msgstr "" -#: ../../library/stdtypes.rst:889 -msgid "" -":class:`bool` is a subclass of :class:`int` (see :ref:`typesnumeric`). In " -"many numeric contexts, ``False`` and ``True`` behave like the integers 0 and " -"1, respectively. However, relying on this is discouraged; explicitly convert " -"using :func:`int` instead." +msgid ":class:`bool` is a subclass of :class:`int` (see :ref:`typesnumeric`). In many numeric contexts, ``False`` and ``True`` behave like the integers 0 and 1, respectively. However, relying on this is discouraged; explicitly convert using :func:`int` instead." msgstr "" -#: ../../library/stdtypes.rst:897 msgid "Iterator Types" msgstr "" -#: ../../library/stdtypes.rst:905 -msgid "" -"Python supports a concept of iteration over containers. This is implemented " -"using two distinct methods; these are used to allow user-defined classes to " -"support iteration. Sequences, described below in more detail, always " -"support the iteration methods." +msgid "Python supports a concept of iteration over containers. This is implemented using two distinct methods; these are used to allow user-defined classes to support iteration. Sequences, described below in more detail, always support the iteration methods." msgstr "" -#: ../../library/stdtypes.rst:910 -msgid "" -"One method needs to be defined for container objects to " -"provide :term:`iterable` support:" +msgid "One method needs to be defined for container objects to provide :term:`iterable` support:" msgstr "" -#: ../../library/stdtypes.rst:917 -msgid "" -"Return an :term:`iterator` object. The object is required to support the " -"iterator protocol described below. If a container supports different types " -"of iteration, additional methods can be provided to specifically request " -"iterators for those iteration types. (An example of an object supporting " -"multiple forms of iteration would be a tree structure which supports both " -"breadth-first and depth-first traversal.) This method corresponds to " -"the :c:member:`~PyTypeObject.tp_iter` slot of the type structure for Python " -"objects in the Python/C API." +msgid "Return an :term:`iterator` object. The object is required to support the iterator protocol described below. If a container supports different types of iteration, additional methods can be provided to specifically request iterators for those iteration types. (An example of an object supporting multiple forms of iteration would be a tree structure which supports both breadth-first and depth-first traversal.) This method corresponds to the :c:member:`~PyTypeObject.tp_iter` slot of the type structure for Python objects in the Python/C API." msgstr "" -#: ../../library/stdtypes.rst:926 -msgid "" -"The iterator objects themselves are required to support the following two " -"methods, which together form the :dfn:`iterator protocol`:" +msgid "The iterator objects themselves are required to support the following two methods, which together form the :dfn:`iterator protocol`:" msgstr "" -#: ../../library/stdtypes.rst:932 -msgid "" -"Return the :term:`iterator` object itself. This is required to allow both " -"containers and iterators to be used with the :keyword:`for` " -"and :keyword:`in` statements. This method corresponds to " -"the :c:member:`~PyTypeObject.tp_iter` slot of the type structure for Python " -"objects in the Python/C API." +msgid "Return the :term:`iterator` object itself. This is required to allow both containers and iterators to be used with the :keyword:`for` and :keyword:`in` statements. This method corresponds to the :c:member:`~PyTypeObject.tp_iter` slot of the type structure for Python objects in the Python/C API." msgstr "" -#: ../../library/stdtypes.rst:941 -msgid "" -"Return the next item from the :term:`iterator`. If there are no further " -"items, raise the :exc:`StopIteration` exception. This method corresponds to " -"the :c:member:`~PyTypeObject.tp_iternext` slot of the type structure for " -"Python objects in the Python/C API." +msgid "Return the next item from the :term:`iterator`. If there are no further items, raise the :exc:`StopIteration` exception. This method corresponds to the :c:member:`~PyTypeObject.tp_iternext` slot of the type structure for Python objects in the Python/C API." msgstr "" -#: ../../library/stdtypes.rst:946 -msgid "" -"Python defines several iterator objects to support iteration over general " -"and specific sequence types, dictionaries, and other more specialized " -"forms. The specific types are not important beyond their implementation of " -"the iterator protocol." +msgid "Python defines several iterator objects to support iteration over general and specific sequence types, dictionaries, and other more specialized forms. The specific types are not important beyond their implementation of the iterator protocol." msgstr "" -#: ../../library/stdtypes.rst:951 -msgid "" -"Once an iterator's :meth:`~iterator.__next__` method " -"raises :exc:`StopIteration`, it must continue to do so on subsequent calls. " -"Implementations that do not obey this property are deemed broken." +msgid "Once an iterator's :meth:`~iterator.__next__` method raises :exc:`StopIteration`, it must continue to do so on subsequent calls. Implementations that do not obey this property are deemed broken." msgstr "" -#: ../../library/stdtypes.rst:959 msgid "Generator Types" msgstr "" -#: ../../library/stdtypes.rst:961 -msgid "" -"Python's :term:`generator`\\s provide a convenient way to implement the " -"iterator protocol. If a container object's :meth:`~object.__iter__` method " -"is implemented as a generator, it will automatically return an iterator " -"object (technically, a generator object) supplying " -"the :meth:`~iterator.__iter__` and :meth:`~generator.__next__` methods. More " -"information about generators can be found in :ref:`the documentation for the " -"yield expression `." +msgid "Python's :term:`generator`\\s provide a convenient way to implement the iterator protocol. If a container object's :meth:`~object.__iter__` method is implemented as a generator, it will automatically return an iterator object (technically, a generator object) supplying the :meth:`~iterator.__iter__` and :meth:`~generator.__next__` methods. More information about generators can be found in :ref:`the documentation for the yield expression `." msgstr "" -#: ../../library/stdtypes.rst:973 msgid "Sequence Types --- :class:`list`, :class:`tuple`, :class:`range`" msgstr "" -#: ../../library/stdtypes.rst:975 -msgid "" -"There are three basic sequence types: lists, tuples, and range objects. " -"Additional sequence types tailored for processing of :ref:`binary data " -"` and :ref:`text strings ` are described in dedicated " -"sections." +msgid "There are three basic sequence types: lists, tuples, and range objects. Additional sequence types tailored for processing of :ref:`binary data ` and :ref:`text strings ` are described in dedicated sections." msgstr "" -#: ../../library/stdtypes.rst:984 msgid "Common Sequence Operations" msgstr "" -#: ../../library/stdtypes.rst:988 -msgid "" -"The operations in the following table are supported by most sequence types, " -"both mutable and immutable. The :class:`collections.abc.Sequence` ABC is " -"provided to make it easier to correctly implement these operations on custom " -"sequence types." +msgid "The operations in the following table are supported by most sequence types, both mutable and immutable. The :class:`collections.abc.Sequence` ABC is provided to make it easier to correctly implement these operations on custom sequence types." msgstr "" -#: ../../library/stdtypes.rst:993 -msgid "" -"This table lists the sequence operations sorted in ascending priority. In " -"the table, *s* and *t* are sequences of the same type, *n*, *i*, *j* and *k* " -"are integers and *x* is an arbitrary object that meets any type and value " -"restrictions imposed by *s*." +msgid "This table lists the sequence operations sorted in ascending priority. In the table, *s* and *t* are sequences of the same type, *n*, *i*, *j* and *k* are integers and *x* is an arbitrary object that meets any type and value restrictions imposed by *s*." msgstr "" -#: ../../library/stdtypes.rst:998 -msgid "" -"The ``in`` and ``not in`` operations have the same priorities as the " -"comparison operations. The ``+`` (concatenation) and ``*`` (repetition) " -"operations have the same priority as the corresponding numeric operations. " -"[3]_" +msgid "The ``in`` and ``not in`` operations have the same priorities as the comparison operations. The ``+`` (concatenation) and ``*`` (repetition) operations have the same priority as the corresponding numeric operations. [3]_" msgstr "" -#: ../../library/stdtypes.rst:1017 msgid "``x in s``" msgstr "" -#: ../../library/stdtypes.rst:1017 msgid "``True`` if an item of *s* is equal to *x*, else ``False``" msgstr "" -#: ../../library/stdtypes.rst:1020 msgid "``x not in s``" msgstr "" -#: ../../library/stdtypes.rst:1020 msgid "``False`` if an item of *s* is equal to *x*, else ``True``" msgstr "" -#: ../../library/stdtypes.rst:1023 msgid "``s + t``" msgstr "" -#: ../../library/stdtypes.rst:1023 msgid "the concatenation of *s* and *t*" msgstr "" -#: ../../library/stdtypes.rst:1023 msgid "(6)(7)" msgstr "" -#: ../../library/stdtypes.rst:1026 msgid "``s * n`` or ``n * s``" msgstr "" -#: ../../library/stdtypes.rst:1026 msgid "equivalent to adding *s* to itself *n* times" msgstr "" -#: ../../library/stdtypes.rst:1026 msgid "(2)(7)" msgstr "" -#: ../../library/stdtypes.rst:1029 msgid "``s[i]``" msgstr "" -#: ../../library/stdtypes.rst:1029 msgid "*i*\\ th item of *s*, origin 0" msgstr "" -#: ../../library/stdtypes.rst:1029 msgid "(3)(8)" msgstr "" -#: ../../library/stdtypes.rst:1031 msgid "``s[i:j]``" msgstr "" -#: ../../library/stdtypes.rst:1031 msgid "slice of *s* from *i* to *j*" msgstr "" -#: ../../library/stdtypes.rst:1031 msgid "(3)(4)" msgstr "" -#: ../../library/stdtypes.rst:1033 msgid "``s[i:j:k]``" msgstr "" -#: ../../library/stdtypes.rst:1033 msgid "slice of *s* from *i* to *j* with step *k*" msgstr "" -#: ../../library/stdtypes.rst:1033 msgid "(3)(5)" msgstr "" -#: ../../library/stdtypes.rst:1036 msgid "``len(s)``" msgstr "" -#: ../../library/stdtypes.rst:1036 msgid "length of *s*" msgstr "" -#: ../../library/stdtypes.rst:1038 msgid "``min(s)``" msgstr "" -#: ../../library/stdtypes.rst:1038 msgid "smallest item of *s*" msgstr "" -#: ../../library/stdtypes.rst:1040 msgid "``max(s)``" msgstr "" -#: ../../library/stdtypes.rst:1040 msgid "largest item of *s*" msgstr "" -#: ../../library/stdtypes.rst:1043 -msgid "" -"Sequences of the same type also support comparisons. In particular, tuples " -"and lists are compared lexicographically by comparing corresponding " -"elements. This means that to compare equal, every element must compare equal " -"and the two sequences must be of the same type and have the same length. " -"(For full details see :ref:`comparisons` in the language reference.)" +msgid "Sequences of the same type also support comparisons. In particular, tuples and lists are compared lexicographically by comparing corresponding elements. This means that to compare equal, every element must compare equal and the two sequences must be of the same type and have the same length. (For full details see :ref:`comparisons` in the language reference.)" msgstr "" -#: ../../library/stdtypes.rst:1053 -msgid "" -"Forward and reversed iterators over mutable sequences access values using an " -"index. That index will continue to march forward (or backward) even if the " -"underlying sequence is mutated. The iterator terminates only when " -"an :exc:`IndexError` or a :exc:`StopIteration` is encountered (or when the " -"index drops below zero)." +msgid "Forward and reversed iterators over mutable sequences access values using an index. That index will continue to march forward (or backward) even if the underlying sequence is mutated. The iterator terminates only when an :exc:`IndexError` or a :exc:`StopIteration` is encountered (or when the index drops below zero)." msgstr "" -#: ../../library/stdtypes.rst:1062 -msgid "" -"While the ``in`` and ``not in`` operations are used only for simple " -"containment testing in the general case, some specialised sequences (such " -"as :class:`str`, :class:`bytes` and :class:`bytearray`) also use them for " -"subsequence testing::" +msgid "While the ``in`` and ``not in`` operations are used only for simple containment testing in the general case, some specialised sequences (such as :class:`str`, :class:`bytes` and :class:`bytearray`) also use them for subsequence testing::" msgstr "" -#: ../../library/stdtypes.rst:1067 msgid "" ">>> \"gg\" in \"eggs\"\n" "True" msgstr "" -#: ../../library/stdtypes.rst:1071 -msgid "" -"Values of *n* less than ``0`` are treated as ``0`` (which yields an empty " -"sequence of the same type as *s*). Note that items in the sequence *s* are " -"not copied; they are referenced multiple times. This often haunts new " -"Python programmers; consider::" +msgid "Values of *n* less than ``0`` are treated as ``0`` (which yields an empty sequence of the same type as *s*). Note that items in the sequence *s* are not copied; they are referenced multiple times. This often haunts new Python programmers; consider::" msgstr "" -#: ../../library/stdtypes.rst:1076 msgid "" ">>> lists = [[]] * 3\n" ">>> lists\n" @@ -1572,15 +924,9 @@ msgid "" "[[3], [3], [3]]" msgstr "" -#: ../../library/stdtypes.rst:1083 -msgid "" -"What has happened is that ``[[]]`` is a one-element list containing an empty " -"list, so all three elements of ``[[]] * 3`` are references to this single " -"empty list. Modifying any of the elements of ``lists`` modifies this single " -"list. You can create a list of different lists this way::" +msgid "What has happened is that ``[[]]`` is a one-element list containing an empty list, so all three elements of ``[[]] * 3`` are references to this single empty list. Modifying any of the elements of ``lists`` modifies this single list. You can create a list of different lists this way::" msgstr "" -#: ../../library/stdtypes.rst:1088 msgid "" ">>> lists = [[] for i in range(3)]\n" ">>> lists[0].append(3)\n" @@ -1590,575 +936,306 @@ msgid "" "[[3], [5], [7]]" msgstr "" -#: ../../library/stdtypes.rst:1095 -msgid "" -"Further explanation is available in the FAQ entry :ref:`faq-multidimensional-" -"list`." +msgid "Further explanation is available in the FAQ entry :ref:`faq-multidimensional-list`." msgstr "" -#: ../../library/stdtypes.rst:1099 -msgid "" -"If *i* or *j* is negative, the index is relative to the end of sequence *s*: " -"``len(s) + i`` or ``len(s) + j`` is substituted. But note that ``-0`` is " -"still ``0``." +msgid "If *i* or *j* is negative, the index is relative to the end of sequence *s*: ``len(s) + i`` or ``len(s) + j`` is substituted. But note that ``-0`` is still ``0``." msgstr "" -#: ../../library/stdtypes.rst:1104 -msgid "" -"The slice of *s* from *i* to *j* is defined as the sequence of items with " -"index *k* such that ``i <= k < j``." +msgid "The slice of *s* from *i* to *j* is defined as the sequence of items with index *k* such that ``i <= k < j``." msgstr "" -#: ../../library/stdtypes.rst:1107 msgid "If *i* is omitted or ``None``, use ``0``." msgstr "" -#: ../../library/stdtypes.rst:1108 msgid "If *j* is omitted or ``None``, use ``len(s)``." msgstr "" -#: ../../library/stdtypes.rst:1109 msgid "If *i* or *j* is less than ``-len(s)``, use ``0``." msgstr "" -#: ../../library/stdtypes.rst:1110 msgid "If *i* or *j* is greater than ``len(s)``, use ``len(s)``." msgstr "" -#: ../../library/stdtypes.rst:1111 msgid "If *i* is greater than or equal to *j*, the slice is empty." msgstr "" -#: ../../library/stdtypes.rst:1114 -msgid "" -"The slice of *s* from *i* to *j* with step *k* is defined as the sequence of " -"items with index ``x = i + n*k`` such that ``0 <= n < (j-i)/k``. In other " -"words, the indices are ``i``, ``i+k``, ``i+2*k``, ``i+3*k`` and so on, " -"stopping when *j* is reached (but never including *j*). When *k* is " -"positive, *i* and *j* are reduced to ``len(s)`` if they are greater. When " -"*k* is negative, *i* and *j* are reduced to ``len(s) - 1`` if they are " -"greater. If *i* or *j* are omitted or ``None``, they become \"end\" values " -"(which end depends on the sign of *k*). Note, *k* cannot be zero. If *k* is " -"``None``, it is treated like ``1``." +msgid "The slice of *s* from *i* to *j* with step *k* is defined as the sequence of items with index ``x = i + n*k`` such that ``0 <= n < (j-i)/k``. In other words, the indices are ``i``, ``i+k``, ``i+2*k``, ``i+3*k`` and so on, stopping when *j* is reached (but never including *j*). When *k* is positive, *i* and *j* are reduced to ``len(s)`` if they are greater. When *k* is negative, *i* and *j* are reduced to ``len(s) - 1`` if they are greater. If *i* or *j* are omitted or ``None``, they become \"end\" values (which end depends on the sign of *k*). Note, *k* cannot be zero. If *k* is ``None``, it is treated like ``1``." msgstr "" -#: ../../library/stdtypes.rst:1125 -msgid "" -"Concatenating immutable sequences always results in a new object. This " -"means that building up a sequence by repeated concatenation will have a " -"quadratic runtime cost in the total sequence length. To get a linear " -"runtime cost, you must switch to one of the alternatives below:" +msgid "Concatenating immutable sequences always results in a new object. This means that building up a sequence by repeated concatenation will have a quadratic runtime cost in the total sequence length. To get a linear runtime cost, you must switch to one of the alternatives below:" msgstr "" -#: ../../library/stdtypes.rst:1130 -msgid "" -"if concatenating :class:`str` objects, you can build a list and " -"use :meth:`str.join` at the end or else write to an :class:`io.StringIO` " -"instance and retrieve its value when complete" +msgid "if concatenating :class:`str` objects, you can build a list and use :meth:`str.join` at the end or else write to an :class:`io.StringIO` instance and retrieve its value when complete" msgstr "" -#: ../../library/stdtypes.rst:1134 -msgid "" -"if concatenating :class:`bytes` objects, you can similarly " -"use :meth:`bytes.join` or :class:`io.BytesIO`, or you can do in-place " -"concatenation with a :class:`bytearray` object. :class:`bytearray` objects " -"are mutable and have an efficient overallocation mechanism" +msgid "if concatenating :class:`bytes` objects, you can similarly use :meth:`bytes.join` or :class:`io.BytesIO`, or you can do in-place concatenation with a :class:`bytearray` object. :class:`bytearray` objects are mutable and have an efficient overallocation mechanism" msgstr "" -#: ../../library/stdtypes.rst:1139 msgid "if concatenating :class:`tuple` objects, extend a :class:`list` instead" msgstr "" -#: ../../library/stdtypes.rst:1141 msgid "for other types, investigate the relevant class documentation" msgstr "" -#: ../../library/stdtypes.rst:1145 -msgid "" -"Some sequence types (such as :class:`range`) only support item sequences " -"that follow specific patterns, and hence don't support sequence " -"concatenation or repetition." +msgid "Some sequence types (such as :class:`range`) only support item sequences that follow specific patterns, and hence don't support sequence concatenation or repetition." msgstr "" -#: ../../library/stdtypes.rst:1150 msgid "An :exc:`IndexError` is raised if *i* is outside the sequence range." msgstr "" -#: ../../library/stdtypes.rst:1153 msgid "Sequence Methods" msgstr "" -#: ../../library/stdtypes.rst:1154 msgid "Sequence types also support the following methods:" msgstr "" -#: ../../library/stdtypes.rst:1164 msgid "Return the total number of occurrences of *value* in *sequence*." msgstr "" -#: ../../library/stdtypes.rst:1174 msgid "Return the index of the first occurrence of *value* in *sequence*." msgstr "" -#: ../../library/stdtypes.rst:1176 ../../library/stdtypes.rst:1360 msgid "Raises :exc:`ValueError` if *value* is not found in *sequence*." msgstr "" -#: ../../library/stdtypes.rst:1178 -msgid "" -"The *start* or *stop* arguments allow for efficient searching of subsections " -"of the sequence, beginning at *start* and ending at *stop*. This is roughly " -"equivalent to ``start + sequence[start:stop].index(value)``, only without " -"copying any data." +msgid "The *start* or *stop* arguments allow for efficient searching of subsections of the sequence, beginning at *start* and ending at *stop*. This is roughly equivalent to ``start + sequence[start:stop].index(value)``, only without copying any data." msgstr "" -#: ../../library/stdtypes.rst:1184 -msgid "" -"Not all sequence types support passing the *start* and *stop* arguments." +msgid "Not all sequence types support passing the *start* and *stop* arguments." msgstr "" -#: ../../library/stdtypes.rst:1190 msgid "Immutable Sequence Types" msgstr "" -#: ../../library/stdtypes.rst:1197 -msgid "" -"The only operation that immutable sequence types generally implement that is " -"not also implemented by mutable sequence types is support for " -"the :func:`hash` built-in." +msgid "The only operation that immutable sequence types generally implement that is not also implemented by mutable sequence types is support for the :func:`hash` built-in." msgstr "" -#: ../../library/stdtypes.rst:1201 -msgid "" -"This support allows immutable sequences, such as :class:`tuple` instances, " -"to be used as :class:`dict` keys and stored in :class:`set` " -"and :class:`frozenset` instances." +msgid "This support allows immutable sequences, such as :class:`tuple` instances, to be used as :class:`dict` keys and stored in :class:`set` and :class:`frozenset` instances." msgstr "" -#: ../../library/stdtypes.rst:1205 -msgid "" -"Attempting to hash an immutable sequence that contains unhashable values " -"will result in :exc:`TypeError`." +msgid "Attempting to hash an immutable sequence that contains unhashable values will result in :exc:`TypeError`." msgstr "" -#: ../../library/stdtypes.rst:1212 msgid "Mutable Sequence Types" msgstr "" -#: ../../library/stdtypes.rst:1219 -msgid "" -"The operations in the following table are defined on mutable sequence types. " -"The :class:`collections.abc.MutableSequence` ABC is provided to make it " -"easier to correctly implement these operations on custom sequence types." +msgid "The operations in the following table are defined on mutable sequence types. The :class:`collections.abc.MutableSequence` ABC is provided to make it easier to correctly implement these operations on custom sequence types." msgstr "" -#: ../../library/stdtypes.rst:1223 -msgid "" -"In the table *s* is an instance of a mutable sequence type, *t* is any " -"iterable object and *x* is an arbitrary object that meets any type and value " -"restrictions imposed by *s* (for example, :class:`bytearray` only accepts " -"integers that meet the value restriction ``0 <= x <= 255``)." +msgid "In the table *s* is an instance of a mutable sequence type, *t* is any iterable object and *x* is an arbitrary object that meets any type and value restrictions imposed by *s* (for example, :class:`bytearray` only accepts integers that meet the value restriction ``0 <= x <= 255``)." msgstr "" -#: ../../library/stdtypes.rst:1239 msgid "``s[i] = x``" msgstr "" -#: ../../library/stdtypes.rst:1239 msgid "item *i* of *s* is replaced by *x*" msgstr "" -#: ../../library/stdtypes.rst:1242 msgid "``del s[i]``" msgstr "" -#: ../../library/stdtypes.rst:1242 msgid "removes item *i* of *s*" msgstr "" -#: ../../library/stdtypes.rst:1244 msgid "``s[i:j] = t``" msgstr "" -#: ../../library/stdtypes.rst:1244 -msgid "" -"slice of *s* from *i* to *j* is replaced by the contents of the iterable *t*" +msgid "slice of *s* from *i* to *j* is replaced by the contents of the iterable *t*" msgstr "" -#: ../../library/stdtypes.rst:1248 msgid "``del s[i:j]``" msgstr "" -#: ../../library/stdtypes.rst:1248 -msgid "" -"removes the elements of ``s[i:j]`` from the list (same as ``s[i:j] = []``)" +msgid "removes the elements of ``s[i:j]`` from the list (same as ``s[i:j] = []``)" msgstr "" -#: ../../library/stdtypes.rst:1252 msgid "``s[i:j:k] = t``" msgstr "" -#: ../../library/stdtypes.rst:1252 msgid "the elements of ``s[i:j:k]`` are replaced by those of *t*" msgstr "" -#: ../../library/stdtypes.rst:1255 msgid "``del s[i:j:k]``" msgstr "" -#: ../../library/stdtypes.rst:1255 msgid "removes the elements of ``s[i:j:k]`` from the list" msgstr "" -#: ../../library/stdtypes.rst:1258 msgid "``s += t``" msgstr "" -#: ../../library/stdtypes.rst:1258 -msgid "" -"extends *s* with the contents of *t* (for the most part the same as " -"``s[len(s):len(s)] = t``)" +msgid "extends *s* with the contents of *t* (for the most part the same as ``s[len(s):len(s)] = t``)" msgstr "" -#: ../../library/stdtypes.rst:1263 msgid "``s *= n``" msgstr "" -#: ../../library/stdtypes.rst:1263 msgid "updates *s* with its contents repeated *n* times" msgstr "" -#: ../../library/stdtypes.rst:1270 -msgid "" -"If *k* is not equal to ``1``, *t* must have the same length as the slice it " -"is replacing." +msgid "If *k* is not equal to ``1``, *t* must have the same length as the slice it is replacing." msgstr "" -#: ../../library/stdtypes.rst:1273 -msgid "" -"The value *n* is an integer, or an object " -"implementing :meth:`~object.__index__`. Zero and negative values of *n* " -"clear the sequence. Items in the sequence are not copied; they are " -"referenced multiple times, as explained for ``s * n`` under :ref:`typesseq-" -"common`." +msgid "The value *n* is an integer, or an object implementing :meth:`~object.__index__`. Zero and negative values of *n* clear the sequence. Items in the sequence are not copied; they are referenced multiple times, as explained for ``s * n`` under :ref:`typesseq-common`." msgstr "" -#: ../../library/stdtypes.rst:1279 msgid "Mutable Sequence Methods" msgstr "" -#: ../../library/stdtypes.rst:1280 msgid "Mutable sequence types also support the following methods:" msgstr "" -#: ../../library/stdtypes.rst:1289 -msgid "" -"Append *value* to the end of the sequence. This is equivalent to writing " -"``seq[len(seq):len(seq)] = [value]``." +msgid "Append *value* to the end of the sequence. This is equivalent to writing ``seq[len(seq):len(seq)] = [value]``." msgstr "" -#: ../../library/stdtypes.rst:1301 -msgid "" -"Remove all items from *sequence*. This is equivalent to writing ``del " -"sequence[:]``." +msgid "Remove all items from *sequence*. This is equivalent to writing ``del sequence[:]``." msgstr "" -#: ../../library/stdtypes.rst:1313 -msgid "" -"Create a shallow copy of *sequence*. This is equivalent to writing " -"``sequence[:]``." +msgid "Create a shallow copy of *sequence*. This is equivalent to writing ``sequence[:]``." msgstr "" -#: ../../library/stdtypes.rst:1316 -msgid "" -"The :meth:`!copy` method is not part of " -"the :class:`~collections.abc.MutableSequence` :class:`~abc.ABC`, but most " -"concrete mutable sequence types provide it." +msgid "The :meth:`!copy` method is not part of the :class:`~collections.abc.MutableSequence` :class:`~abc.ABC`, but most concrete mutable sequence types provide it." msgstr "" -#: ../../library/stdtypes.rst:1327 -msgid "" -"Extend *sequence* with the contents of *iterable*. For the most part, this " -"is the same as writing ``seq[len(seq):len(seq)] = iterable``." +msgid "Extend *sequence* with the contents of *iterable*. For the most part, this is the same as writing ``seq[len(seq):len(seq)] = iterable``." msgstr "" -#: ../../library/stdtypes.rst:1338 -msgid "" -"Insert *value* into *sequence* at the given *index*. This is equivalent to " -"writing ``sequence[index:index] = [value]``." +msgid "Insert *value* into *sequence* at the given *index*. This is equivalent to writing ``sequence[index:index] = [value]``." msgstr "" -#: ../../library/stdtypes.rst:1348 -msgid "" -"Retrieve the item at *index* and also removes it from *sequence*. By " -"default, the last item in *sequence* is removed and returned." +msgid "Retrieve the item at *index* and also removes it from *sequence*. By default, the last item in *sequence* is removed and returned." msgstr "" -#: ../../library/stdtypes.rst:1358 msgid "Remove the first item from *sequence* where ``sequence[i] == value``." msgstr "" -#: ../../library/stdtypes.rst:1369 -msgid "" -"Reverse the items of *sequence* in place. This method maintains economy of " -"space when reversing a large sequence. To remind users that it operates by " -"side-effect, it returns ``None``." +msgid "Reverse the items of *sequence* in place. This method maintains economy of space when reversing a large sequence. To remind users that it operates by side-effect, it returns ``None``." msgstr "" -#: ../../library/stdtypes.rst:1377 msgid "Lists" msgstr "" -#: ../../library/stdtypes.rst:1381 -msgid "" -"Lists are mutable sequences, typically used to store collections of " -"homogeneous items (where the precise degree of similarity will vary by " -"application)." +msgid "Lists are mutable sequences, typically used to store collections of homogeneous items (where the precise degree of similarity will vary by application)." msgstr "" -#: ../../library/stdtypes.rst:1387 msgid "Lists may be constructed in several ways:" msgstr "" -#: ../../library/stdtypes.rst:1389 msgid "Using a pair of square brackets to denote the empty list: ``[]``" msgstr "" -#: ../../library/stdtypes.rst:1390 -msgid "" -"Using square brackets, separating items with commas: ``[a]``, ``[a, b, c]``" +msgid "Using square brackets, separating items with commas: ``[a]``, ``[a, b, c]``" msgstr "" -#: ../../library/stdtypes.rst:1391 msgid "Using a list comprehension: ``[x for x in iterable]``" msgstr "" -#: ../../library/stdtypes.rst:1392 msgid "Using the type constructor: ``list()`` or ``list(iterable)``" msgstr "" -#: ../../library/stdtypes.rst:1394 -msgid "" -"The constructor builds a list whose items are the same and in the same order " -"as *iterable*'s items. *iterable* may be either a sequence, a container " -"that supports iteration, or an iterator object. If *iterable* is already a " -"list, a copy is made and returned, similar to ``iterable[:]``. For example, " -"``list('abc')`` returns ``['a', 'b', 'c']`` and ``list( (1, 2, 3) )`` " -"returns ``[1, 2, 3]``. If no argument is given, the constructor creates a " -"new empty list, ``[]``." +msgid "The constructor builds a list whose items are the same and in the same order as *iterable*'s items. *iterable* may be either a sequence, a container that supports iteration, or an iterator object. If *iterable* is already a list, a copy is made and returned, similar to ``iterable[:]``. For example, ``list('abc')`` returns ``['a', 'b', 'c']`` and ``list( (1, 2, 3) )`` returns ``[1, 2, 3]``. If no argument is given, the constructor creates a new empty list, ``[]``." msgstr "" -#: ../../library/stdtypes.rst:1403 -msgid "" -"Many other operations also produce lists, including the :func:`sorted` built-" -"in." +msgid "Many other operations also produce lists, including the :func:`sorted` built-in." msgstr "" -#: ../../library/stdtypes.rst:1406 msgid "Lists are :ref:`generic ` over the types of their items." msgstr "" -#: ../../library/stdtypes.rst:1408 -msgid "" -"Lists implement all of the :ref:`common ` and :ref:`mutable " -"` sequence operations. Lists also provide the following " -"additional method:" +msgid "Lists implement all of the :ref:`common ` and :ref:`mutable ` sequence operations. Lists also provide the following additional method:" msgstr "" -#: ../../library/stdtypes.rst:1414 -msgid "" -"This method sorts the list in place, using only ``<`` comparisons between " -"items. Exceptions are not suppressed - if any comparison operations fail, " -"the entire sort operation will fail (and the list will likely be left in a " -"partially modified state)." +msgid "This method sorts the list in place, using only ``<`` comparisons between items. Exceptions are not suppressed - if any comparison operations fail, the entire sort operation will fail (and the list will likely be left in a partially modified state)." msgstr "" -#: ../../library/stdtypes.rst:1419 -msgid "" -":meth:`sort` accepts two arguments that can only be passed by keyword " -"(:ref:`keyword-only arguments `):" +msgid ":meth:`sort` accepts two arguments that can only be passed by keyword (:ref:`keyword-only arguments `):" msgstr "" -#: ../../library/stdtypes.rst:1422 -msgid "" -"*key* specifies a function of one argument that is used to extract a " -"comparison key from each list element (for example, ``key=str.lower``). The " -"key corresponding to each item in the list is calculated once and then used " -"for the entire sorting process. The default value of ``None`` means that " -"list items are sorted directly without calculating a separate key value." +msgid "*key* specifies a function of one argument that is used to extract a comparison key from each list element (for example, ``key=str.lower``). The key corresponding to each item in the list is calculated once and then used for the entire sorting process. The default value of ``None`` means that list items are sorted directly without calculating a separate key value." msgstr "" -#: ../../library/stdtypes.rst:1429 -msgid "" -"The :func:`functools.cmp_to_key` utility is available to convert a 2.x style " -"*cmp* function to a *key* function." +msgid "The :func:`functools.cmp_to_key` utility is available to convert a 2.x style *cmp* function to a *key* function." msgstr "" -#: ../../library/stdtypes.rst:1432 -msgid "" -"*reverse* is a boolean value. If set to ``True``, then the list elements " -"are sorted as if each comparison were reversed." +msgid "*reverse* is a boolean value. If set to ``True``, then the list elements are sorted as if each comparison were reversed." msgstr "" -#: ../../library/stdtypes.rst:1435 -msgid "" -"This method modifies the sequence in place for economy of space when sorting " -"a large sequence. To remind users that it operates by side effect, it does " -"not return the sorted sequence (use :func:`sorted` to explicitly request a " -"new sorted list instance)." +msgid "This method modifies the sequence in place for economy of space when sorting a large sequence. To remind users that it operates by side effect, it does not return the sorted sequence (use :func:`sorted` to explicitly request a new sorted list instance)." msgstr "" -#: ../../library/stdtypes.rst:1440 -msgid "" -"The :meth:`sort` method is guaranteed to be stable. A sort is stable if it " -"guarantees not to change the relative order of elements that compare equal " -"--- this is helpful for sorting in multiple passes (for example, sort by " -"department, then by salary grade)." +msgid "The :meth:`sort` method is guaranteed to be stable. A sort is stable if it guarantees not to change the relative order of elements that compare equal --- this is helpful for sorting in multiple passes (for example, sort by department, then by salary grade)." msgstr "" -#: ../../library/stdtypes.rst:1445 -msgid "" -"For sorting examples and a brief sorting tutorial, see :ref:`sortinghowto`." +msgid "For sorting examples and a brief sorting tutorial, see :ref:`sortinghowto`." msgstr "" -#: ../../library/stdtypes.rst:1449 -msgid "" -"While a list is being sorted, the effect of attempting to mutate, or even " -"inspect, the list is undefined. The C implementation of Python makes the " -"list appear empty for the duration, and raises :exc:`ValueError` if it can " -"detect that the list has been mutated during a sort." +msgid "While a list is being sorted, the effect of attempting to mutate, or even inspect, the list is undefined. The C implementation of Python makes the list appear empty for the duration, and raises :exc:`ValueError` if it can detect that the list has been mutated during a sort." msgstr "" -#: ../../library/stdtypes.rst:1456 -msgid "" -"For detailed information on thread-safety guarantees for :class:`list` " -"objects, see :ref:`thread-safety-list`." +msgid "For detailed information on thread-safety guarantees for :class:`list` objects, see :ref:`thread-safety-list`." msgstr "" -#: ../../library/stdtypes.rst:1463 msgid "Tuples" msgstr "" -#: ../../library/stdtypes.rst:1467 -msgid "" -"Tuples are immutable sequences, typically used to store collections of " -"heterogeneous data (such as the 2-tuples produced by the :func:`enumerate` " -"built-in). Tuples are also used for cases where an immutable sequence of " -"homogeneous data is needed (such as allowing storage in a :class:`set` " -"or :class:`dict` instance)." +msgid "Tuples are immutable sequences, typically used to store collections of heterogeneous data (such as the 2-tuples produced by the :func:`enumerate` built-in). Tuples are also used for cases where an immutable sequence of homogeneous data is needed (such as allowing storage in a :class:`set` or :class:`dict` instance)." msgstr "" -#: ../../library/stdtypes.rst:1475 msgid "Tuples may be constructed in a number of ways:" msgstr "" -#: ../../library/stdtypes.rst:1477 msgid "Using a pair of parentheses to denote the empty tuple: ``()``" msgstr "" -#: ../../library/stdtypes.rst:1478 msgid "Using a trailing comma for a singleton tuple: ``a,`` or ``(a,)``" msgstr "" -#: ../../library/stdtypes.rst:1479 msgid "Separating items with commas: ``a, b, c`` or ``(a, b, c)``" msgstr "" -#: ../../library/stdtypes.rst:1480 msgid "Using the :func:`tuple` built-in: ``tuple()`` or ``tuple(iterable)``" msgstr "" -#: ../../library/stdtypes.rst:1482 -msgid "" -"The constructor builds a tuple whose items are the same and in the same " -"order as *iterable*'s items. *iterable* may be either a sequence, a " -"container that supports iteration, or an iterator object. If *iterable* is " -"already a tuple, it is returned unchanged. For example, ``tuple('abc')`` " -"returns ``('a', 'b', 'c')`` and ``tuple( [1, 2, 3] )`` returns ``(1, 2, " -"3)``. If no argument is given, the constructor creates a new empty tuple, " -"``()``." +msgid "The constructor builds a tuple whose items are the same and in the same order as *iterable*'s items. *iterable* may be either a sequence, a container that supports iteration, or an iterator object. If *iterable* is already a tuple, it is returned unchanged. For example, ``tuple('abc')`` returns ``('a', 'b', 'c')`` and ``tuple( [1, 2, 3] )`` returns ``(1, 2, 3)``. If no argument is given, the constructor creates a new empty tuple, ``()``." msgstr "" -#: ../../library/stdtypes.rst:1490 -msgid "" -"Note that it is actually the comma which makes a tuple, not the parentheses. " -"The parentheses are optional, except in the empty tuple case, or when they " -"are needed to avoid syntactic ambiguity. For example, ``f(a, b, c)`` is a " -"function call with three arguments, while ``f((a, b, c))`` is a function " -"call with a 3-tuple as the sole argument." +msgid "Note that it is actually the comma which makes a tuple, not the parentheses. The parentheses are optional, except in the empty tuple case, or when they are needed to avoid syntactic ambiguity. For example, ``f(a, b, c)`` is a function call with three arguments, while ``f((a, b, c))`` is a function call with a 3-tuple as the sole argument." msgstr "" -#: ../../library/stdtypes.rst:1496 -msgid "" -"Tuples implement all of the :ref:`common ` sequence " -"operations." +msgid "Tuples implement all of the :ref:`common ` sequence operations." msgstr "" -#: ../../library/stdtypes.rst:1499 -msgid "" -"Tuples are :ref:`generic ` over the types of their contents. For " -"more information, refer to :ref:`the typing documentation on annotating " -"tuples `." +msgid "Tuples are :ref:`generic ` over the types of their contents. For more information, refer to :ref:`the typing documentation on annotating tuples `." msgstr "" -#: ../../library/stdtypes.rst:1503 -msgid "" -"For heterogeneous collections of data where access by name is clearer than " -"access by index, :func:`collections.namedtuple` may be a more appropriate " -"choice than a simple tuple object." +msgid "For heterogeneous collections of data where access by name is clearer than access by index, :func:`collections.namedtuple` may be a more appropriate choice than a simple tuple object." msgstr "" -#: ../../library/stdtypes.rst:1511 msgid "Ranges" msgstr "" -#: ../../library/stdtypes.rst:1515 -msgid "" -"The :class:`range` type represents an immutable sequence of numbers and is " -"commonly used for looping a specific number of times in :keyword:`for` loops." +msgid "The :class:`range` type represents an immutable sequence of numbers and is commonly used for looping a specific number of times in :keyword:`for` loops." msgstr "" -#: ../../library/stdtypes.rst:1522 -msgid "" -"The arguments to the range constructor must be integers (either built-" -"in :class:`int` or any object that implements the :meth:`~object.__index__` " -"special method). If the *step* argument is omitted, it defaults to ``1``. " -"If the *start* argument is omitted, it defaults to ``0``. If *step* is " -"zero, :exc:`ValueError` is raised." +msgid "The arguments to the range constructor must be integers (either built-in :class:`int` or any object that implements the :meth:`~object.__index__` special method). If the *step* argument is omitted, it defaults to ``1``. If the *start* argument is omitted, it defaults to ``0``. If *step* is zero, :exc:`ValueError` is raised." msgstr "" -#: ../../library/stdtypes.rst:1528 -msgid "" -"For a positive *step*, the contents of a range ``r`` are determined by the " -"formula ``r[i] = start + step*i`` where ``i >= 0`` and ``r[i] < stop``." +msgid "For a positive *step*, the contents of a range ``r`` are determined by the formula ``r[i] = start + step*i`` where ``i >= 0`` and ``r[i] < stop``." msgstr "" -#: ../../library/stdtypes.rst:1532 -msgid "" -"For a negative *step*, the contents of the range are still determined by the " -"formula ``r[i] = start + step*i``, but the constraints are ``i >= 0`` and " -"``r[i] > stop``." +msgid "For a negative *step*, the contents of the range are still determined by the formula ``r[i] = start + step*i``, but the constraints are ``i >= 0`` and ``r[i] > stop``." msgstr "" -#: ../../library/stdtypes.rst:1536 -msgid "" -"A range object will be empty if ``r[0]`` does not meet the value constraint. " -"Ranges do support negative indices, but these are interpreted as indexing " -"from the end of the sequence determined by the positive indices." +msgid "A range object will be empty if ``r[0]`` does not meet the value constraint. Ranges do support negative indices, but these are interpreted as indexing from the end of the sequence determined by the positive indices." msgstr "" -#: ../../library/stdtypes.rst:1541 -msgid "" -"Ranges containing absolute values larger than :data:`sys.maxsize` are " -"permitted but some features (such as :func:`len`) may " -"raise :exc:`OverflowError`." +msgid "Ranges containing absolute values larger than :data:`sys.maxsize` are permitted but some features (such as :func:`len`) may raise :exc:`OverflowError`." msgstr "" -#: ../../library/stdtypes.rst:1545 msgid "Range examples::" msgstr "" -#: ../../library/stdtypes.rst:1547 msgid "" ">>> list(range(10))\n" "[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]\n" @@ -2176,654 +1253,413 @@ msgid "" "[]" msgstr "" -#: ../../library/stdtypes.rst:1562 -msgid "" -"Ranges implement all of the :ref:`common ` sequence " -"operations except concatenation and repetition (due to the fact that range " -"objects can only represent sequences that follow a strict pattern and " -"repetition and concatenation will usually violate that pattern)." +msgid "Ranges implement all of the :ref:`common ` sequence operations except concatenation and repetition (due to the fact that range objects can only represent sequences that follow a strict pattern and repetition and concatenation will usually violate that pattern)." msgstr "" -#: ../../library/stdtypes.rst:1569 -msgid "" -"The value of the *start* parameter (or ``0`` if the parameter was not " -"supplied)" +msgid "The value of the *start* parameter (or ``0`` if the parameter was not supplied)" msgstr "" -#: ../../library/stdtypes.rst:1574 msgid "The value of the *stop* parameter" msgstr "" -#: ../../library/stdtypes.rst:1578 -msgid "" -"The value of the *step* parameter (or ``1`` if the parameter was not " -"supplied)" +msgid "The value of the *step* parameter (or ``1`` if the parameter was not supplied)" msgstr "" -#: ../../library/stdtypes.rst:1581 -msgid "" -"The advantage of the :class:`range` type over a regular :class:`list` " -"or :class:`tuple` is that a :class:`range` object will always take the same " -"(small) amount of memory, no matter the size of the range it represents (as " -"it only stores the ``start``, ``stop`` and ``step`` values, calculating " -"individual items and subranges as needed)." +msgid "The advantage of the :class:`range` type over a regular :class:`list` or :class:`tuple` is that a :class:`range` object will always take the same (small) amount of memory, no matter the size of the range it represents (as it only stores the ``start``, ``stop`` and ``step`` values, calculating individual items and subranges as needed)." msgstr "" -#: ../../library/stdtypes.rst:1587 -msgid "" -"Range objects implement the :class:`collections.abc.Sequence` ABC, and " -"provide features such as containment tests, element index lookup, slicing " -"and support for negative indices (see :ref:`typesseq`):" +msgid "Range objects implement the :class:`collections.abc.Sequence` ABC, and provide features such as containment tests, element index lookup, slicing and support for negative indices (see :ref:`typesseq`):" msgstr "" -#: ../../library/stdtypes.rst:1607 -msgid "" -"Testing range objects for equality with ``==`` and ``!=`` compares them as " -"sequences. That is, two range objects are considered equal if they " -"represent the same sequence of values. (Note that two range objects that " -"compare equal might have different :attr:`~range.start`, :attr:`~range.stop` " -"and :attr:`~range.step` attributes, for example ``range(0) == range(2, 1, " -"3)`` or ``range(0, 3, 2) == range(0, 4, 2)``.)" +msgid "Testing range objects for equality with ``==`` and ``!=`` compares them as sequences. That is, two range objects are considered equal if they represent the same sequence of values. (Note that two range objects that compare equal might have different :attr:`~range.start`, :attr:`~range.stop` and :attr:`~range.step` attributes, for example ``range(0) == range(2, 1, 3)`` or ``range(0, 3, 2) == range(0, 4, 2)``.)" msgstr "" -#: ../../library/stdtypes.rst:1614 -msgid "" -"Implement the Sequence ABC. Support slicing and negative indices. " -"Test :class:`int` objects for membership in constant time instead of " -"iterating through all items." +msgid "Implement the Sequence ABC. Support slicing and negative indices. Test :class:`int` objects for membership in constant time instead of iterating through all items." msgstr "" -#: ../../library/stdtypes.rst:1620 -msgid "" -"Define '==' and '!=' to compare range objects based on the sequence of " -"values they define (instead of comparing based on object identity)." +msgid "Define '==' and '!=' to compare range objects based on the sequence of values they define (instead of comparing based on object identity)." msgstr "" -#: ../../library/stdtypes.rst:1625 -msgid "" -"Added the :attr:`~range.start`, :attr:`~range.stop` and :attr:`~range.step` " -"attributes." +msgid "Added the :attr:`~range.start`, :attr:`~range.stop` and :attr:`~range.step` attributes." msgstr "" -#: ../../library/stdtypes.rst:1630 -msgid "" -"The `linspace recipe `_ shows how to implement a lazy version of range " -"suitable for floating-point applications." +msgid "The `linspace recipe `_ shows how to implement a lazy version of range suitable for floating-point applications." msgstr "" -#: ../../library/stdtypes.rst:1642 msgid "Text and Binary Sequence Type Methods Summary" msgstr "" -#: ../../library/stdtypes.rst:1643 -msgid "" -"The following table summarizes the text and binary sequence types methods by " -"category." +msgid "The following table summarizes the text and binary sequence types methods by category." msgstr "" -#: ../../library/stdtypes.rst:1648 msgid "Category" msgstr "" -#: ../../library/stdtypes.rst:1648 msgid ":class:`str` methods" msgstr "" -#: ../../library/stdtypes.rst:1648 msgid ":class:`bytes` and :class:`bytearray` methods" msgstr "" -#: ../../library/stdtypes.rst:1650 msgid "Formatting" msgstr "" -#: ../../library/stdtypes.rst:1650 msgid ":meth:`str.format`" msgstr "" -#: ../../library/stdtypes.rst:1652 msgid ":meth:`str.format_map`" msgstr "" -#: ../../library/stdtypes.rst:1654 msgid ":ref:`f-strings`" msgstr "" -#: ../../library/stdtypes.rst:1656 msgid ":ref:`old-string-formatting`" msgstr "" -#: ../../library/stdtypes.rst:1656 msgid ":ref:`bytes-formatting`" msgstr "" -#: ../../library/stdtypes.rst:1658 msgid "Searching and Replacing" msgstr "" -#: ../../library/stdtypes.rst:1658 msgid ":meth:`str.find`" msgstr "" -#: ../../library/stdtypes.rst:1658 msgid ":meth:`str.rfind`" msgstr "" -#: ../../library/stdtypes.rst:1658 msgid ":meth:`bytes.find`" msgstr "" -#: ../../library/stdtypes.rst:1658 msgid ":meth:`bytes.rfind`" msgstr "" -#: ../../library/stdtypes.rst:1660 msgid ":meth:`str.index`" msgstr "" -#: ../../library/stdtypes.rst:1660 msgid ":meth:`str.rindex`" msgstr "" -#: ../../library/stdtypes.rst:1660 msgid ":meth:`bytes.index`" msgstr "" -#: ../../library/stdtypes.rst:1660 msgid ":meth:`bytes.rindex`" msgstr "" -#: ../../library/stdtypes.rst:1662 msgid ":meth:`str.startswith`" msgstr "" -#: ../../library/stdtypes.rst:1662 msgid ":meth:`bytes.startswith`" msgstr "" -#: ../../library/stdtypes.rst:1664 msgid ":meth:`str.endswith`" msgstr "" -#: ../../library/stdtypes.rst:1664 msgid ":meth:`bytes.endswith`" msgstr "" -#: ../../library/stdtypes.rst:1666 msgid ":meth:`str.count`" msgstr "" -#: ../../library/stdtypes.rst:1666 msgid ":meth:`bytes.count`" msgstr "" -#: ../../library/stdtypes.rst:1668 msgid ":meth:`str.replace`" msgstr "" -#: ../../library/stdtypes.rst:1668 msgid ":meth:`bytes.replace`" msgstr "" -#: ../../library/stdtypes.rst:1670 msgid "Splitting and Joining" msgstr "" -#: ../../library/stdtypes.rst:1670 msgid ":meth:`str.split`" msgstr "" -#: ../../library/stdtypes.rst:1670 msgid ":meth:`str.rsplit`" msgstr "" -#: ../../library/stdtypes.rst:1670 msgid ":meth:`bytes.split`" msgstr "" -#: ../../library/stdtypes.rst:1670 msgid ":meth:`bytes.rsplit`" msgstr "" -#: ../../library/stdtypes.rst:1672 msgid ":meth:`str.splitlines`" msgstr "" -#: ../../library/stdtypes.rst:1672 msgid ":meth:`bytes.splitlines`" msgstr "" -#: ../../library/stdtypes.rst:1674 msgid ":meth:`str.partition`" msgstr "" -#: ../../library/stdtypes.rst:1674 msgid ":meth:`bytes.partition`" msgstr "" -#: ../../library/stdtypes.rst:1676 msgid ":meth:`str.rpartition`" msgstr "" -#: ../../library/stdtypes.rst:1676 msgid ":meth:`bytes.rpartition`" msgstr "" -#: ../../library/stdtypes.rst:1678 msgid ":meth:`str.join`" msgstr "" -#: ../../library/stdtypes.rst:1678 msgid ":meth:`bytes.join`" msgstr "" -#: ../../library/stdtypes.rst:1680 msgid "String Classification" msgstr "" -#: ../../library/stdtypes.rst:1680 msgid ":meth:`str.isalpha`" msgstr "" -#: ../../library/stdtypes.rst:1680 msgid ":meth:`bytes.isalpha`" msgstr "" -#: ../../library/stdtypes.rst:1682 msgid ":meth:`str.isdecimal`" msgstr "" -#: ../../library/stdtypes.rst:1684 msgid ":meth:`str.isdigit`" msgstr "" -#: ../../library/stdtypes.rst:1684 msgid ":meth:`bytes.isdigit`" msgstr "" -#: ../../library/stdtypes.rst:1686 msgid ":meth:`str.isnumeric`" msgstr "" -#: ../../library/stdtypes.rst:1688 msgid ":meth:`str.isalnum`" msgstr "" -#: ../../library/stdtypes.rst:1688 msgid ":meth:`bytes.isalnum`" msgstr "" -#: ../../library/stdtypes.rst:1690 msgid ":meth:`str.isidentifier`" msgstr "" -#: ../../library/stdtypes.rst:1692 msgid ":meth:`str.islower`" msgstr "" -#: ../../library/stdtypes.rst:1692 msgid ":meth:`bytes.islower`" msgstr "" -#: ../../library/stdtypes.rst:1694 msgid ":meth:`str.isupper`" msgstr "" -#: ../../library/stdtypes.rst:1694 msgid ":meth:`bytes.isupper`" msgstr "" -#: ../../library/stdtypes.rst:1696 msgid ":meth:`str.istitle`" msgstr "" -#: ../../library/stdtypes.rst:1696 msgid ":meth:`bytes.istitle`" msgstr "" -#: ../../library/stdtypes.rst:1698 msgid ":meth:`str.isspace`" msgstr "" -#: ../../library/stdtypes.rst:1698 msgid ":meth:`bytes.isspace`" msgstr "" -#: ../../library/stdtypes.rst:1700 msgid ":meth:`str.isprintable`" msgstr "" -#: ../../library/stdtypes.rst:1702 msgid "Case Manipulation" msgstr "" -#: ../../library/stdtypes.rst:1702 msgid ":meth:`str.lower`" msgstr "" -#: ../../library/stdtypes.rst:1702 msgid ":meth:`bytes.lower`" msgstr "" -#: ../../library/stdtypes.rst:1704 msgid ":meth:`str.upper`" msgstr "" -#: ../../library/stdtypes.rst:1704 msgid ":meth:`bytes.upper`" msgstr "" -#: ../../library/stdtypes.rst:1706 msgid ":meth:`str.casefold`" msgstr "" -#: ../../library/stdtypes.rst:1708 msgid ":meth:`str.capitalize`" msgstr "" -#: ../../library/stdtypes.rst:1708 msgid ":meth:`bytes.capitalize`" msgstr "" -#: ../../library/stdtypes.rst:1710 msgid ":meth:`str.title`" msgstr "" -#: ../../library/stdtypes.rst:1710 msgid ":meth:`bytes.title`" msgstr "" -#: ../../library/stdtypes.rst:1712 msgid ":meth:`str.swapcase`" msgstr "" -#: ../../library/stdtypes.rst:1712 msgid ":meth:`bytes.swapcase`" msgstr "" -#: ../../library/stdtypes.rst:1714 msgid "Padding and Stripping" msgstr "" -#: ../../library/stdtypes.rst:1714 msgid ":meth:`str.ljust`" msgstr "" -#: ../../library/stdtypes.rst:1714 msgid ":meth:`str.rjust`" msgstr "" -#: ../../library/stdtypes.rst:1714 msgid ":meth:`bytes.ljust`" msgstr "" -#: ../../library/stdtypes.rst:1714 msgid ":meth:`bytes.rjust`" msgstr "" -#: ../../library/stdtypes.rst:1716 msgid ":meth:`str.center`" msgstr "" -#: ../../library/stdtypes.rst:1716 msgid ":meth:`bytes.center`" msgstr "" -#: ../../library/stdtypes.rst:1718 msgid ":meth:`str.expandtabs`" msgstr "" -#: ../../library/stdtypes.rst:1718 msgid ":meth:`bytes.expandtabs`" msgstr "" -#: ../../library/stdtypes.rst:1720 msgid ":meth:`str.strip`" msgstr "" -#: ../../library/stdtypes.rst:1720 msgid ":meth:`bytes.strip`" msgstr "" -#: ../../library/stdtypes.rst:1722 msgid ":meth:`str.lstrip`" msgstr "" -#: ../../library/stdtypes.rst:1722 msgid ":meth:`str.rstrip`" msgstr "" -#: ../../library/stdtypes.rst:1722 msgid ":meth:`bytes.lstrip`" msgstr "" -#: ../../library/stdtypes.rst:1722 msgid ":meth:`bytes.rstrip`" msgstr "" -#: ../../library/stdtypes.rst:1724 msgid ":meth:`str.removeprefix`" msgstr "" -#: ../../library/stdtypes.rst:1724 msgid ":meth:`bytes.removeprefix`" msgstr "" -#: ../../library/stdtypes.rst:1726 msgid ":meth:`str.removesuffix`" msgstr "" -#: ../../library/stdtypes.rst:1726 msgid ":meth:`bytes.removesuffix`" msgstr "" -#: ../../library/stdtypes.rst:1728 msgid "Translation and Encoding" msgstr "" -#: ../../library/stdtypes.rst:1728 msgid ":meth:`str.translate`" msgstr "" -#: ../../library/stdtypes.rst:1728 msgid ":meth:`bytes.translate`" msgstr "" -#: ../../library/stdtypes.rst:1730 msgid ":meth:`str.maketrans`" msgstr "" -#: ../../library/stdtypes.rst:1730 msgid ":meth:`bytes.maketrans`" msgstr "" -#: ../../library/stdtypes.rst:1732 msgid ":meth:`str.encode`" msgstr "" -#: ../../library/stdtypes.rst:1734 msgid ":meth:`bytes.decode`" msgstr "" -#: ../../library/stdtypes.rst:1740 msgid "Text Sequence Type --- :class:`str`" msgstr "" -#: ../../library/stdtypes.rst:1742 -msgid "" -"Textual data in Python is handled with :class:`str` objects, " -"or :dfn:`strings`. Strings are immutable :ref:`sequences ` of " -"Unicode code points. String literals are written in a variety of ways:" +msgid "Textual data in Python is handled with :class:`str` objects, or :dfn:`strings`. Strings are immutable :ref:`sequences ` of Unicode code points. String literals are written in a variety of ways:" msgstr "" -#: ../../library/stdtypes.rst:1747 msgid "Single quotes: ``'allows embedded \"double\" quotes'``" msgstr "" -#: ../../library/stdtypes.rst:1748 msgid "Double quotes: ``\"allows embedded 'single' quotes\"``" msgstr "" -#: ../../library/stdtypes.rst:1749 -msgid "" -"Triple quoted: ``'''Three single quotes'''``, ``\"\"\"Three double " -"quotes\"\"\"``" +msgid "Triple quoted: ``'''Three single quotes'''``, ``\"\"\"Three double quotes\"\"\"``" msgstr "" -#: ../../library/stdtypes.rst:1751 -msgid "" -"Triple quoted strings may span multiple lines - all associated whitespace " -"will be included in the string literal." +msgid "Triple quoted strings may span multiple lines - all associated whitespace will be included in the string literal." msgstr "" -#: ../../library/stdtypes.rst:1754 -msgid "" -"String literals that are part of a single expression and have only " -"whitespace between them will be implicitly converted to a single string " -"literal. That is, ``(\"spam \" \"eggs\") == \"spam eggs\"``." +msgid "String literals that are part of a single expression and have only whitespace between them will be implicitly converted to a single string literal. That is, ``(\"spam \" \"eggs\") == \"spam eggs\"``." msgstr "" -#: ../../library/stdtypes.rst:1758 -msgid "" -"See :ref:`strings` for more about the various forms of string literal, " -"including supported :ref:`escape sequences `, and the " -"``r`` (\"raw\") prefix that disables most escape sequence processing." +msgid "See :ref:`strings` for more about the various forms of string literal, including supported :ref:`escape sequences `, and the ``r`` (\"raw\") prefix that disables most escape sequence processing." msgstr "" -#: ../../library/stdtypes.rst:1762 -msgid "" -"Strings may also be created from other objects using the :class:`str` " -"constructor." +msgid "Strings may also be created from other objects using the :class:`str` constructor." msgstr "" -#: ../../library/stdtypes.rst:1765 -msgid "" -"Since there is no separate \"character\" type, indexing a string produces " -"strings of length 1. That is, for a non-empty string *s*, ``s[0] == s[0:1]``." +msgid "Since there is no separate \"character\" type, indexing a string produces strings of length 1. That is, for a non-empty string *s*, ``s[0] == s[0:1]``." msgstr "" -#: ../../library/stdtypes.rst:1771 -msgid "" -"There is also no mutable string type, but :meth:`str.join` " -"or :class:`io.StringIO` can be used to efficiently construct strings from " -"multiple fragments." +msgid "There is also no mutable string type, but :meth:`str.join` or :class:`io.StringIO` can be used to efficiently construct strings from multiple fragments." msgstr "" -#: ../../library/stdtypes.rst:1775 -msgid "" -"For backwards compatibility with the Python 2 series, the ``u`` prefix is " -"once again permitted on string literals. It has no effect on the meaning of " -"string literals and cannot be combined with the ``r`` prefix." +msgid "For backwards compatibility with the Python 2 series, the ``u`` prefix is once again permitted on string literals. It has no effect on the meaning of string literals and cannot be combined with the ``r`` prefix." msgstr "" -#: ../../library/stdtypes.rst:1789 -msgid "" -"Return a :ref:`string ` version of *object*. If *object* is not " -"provided, returns the empty string. Otherwise, the behavior of ``str()`` " -"depends on whether *encoding* or *errors* is given, as follows." +msgid "Return a :ref:`string ` version of *object*. If *object* is not provided, returns the empty string. Otherwise, the behavior of ``str()`` depends on whether *encoding* or *errors* is given, as follows." msgstr "" -#: ../../library/stdtypes.rst:1793 -msgid "" -"If neither *encoding* nor *errors* is given, ``str(object)`` " -"returns :meth:`type(object).__str__(object) `, which is the " -"\"informal\" or nicely printable string representation of *object*. For " -"string objects, this is the string itself. If *object* does not have " -"a :meth:`~object.__str__` method, then :func:`str` falls back to " -"returning :func:`repr(object) `." +msgid "If neither *encoding* nor *errors* is given, ``str(object)`` returns :meth:`type(object).__str__(object) `, which is the \"informal\" or nicely printable string representation of *object*. For string objects, this is the string itself. If *object* does not have a :meth:`~object.__str__` method, then :func:`str` falls back to returning :func:`repr(object) `." msgstr "" -#: ../../library/stdtypes.rst:1805 -msgid "" -"If at least one of *encoding* or *errors* is given, *object* should be " -"a :term:`bytes-like object` (e.g. :class:`bytes` or :class:`bytearray`). In " -"this case, if *object* is a :class:`bytes` (or :class:`bytearray`) object, " -"then ``str(bytes, encoding, errors)`` is equivalent " -"to :meth:`bytes.decode(encoding, errors) `. Otherwise, the " -"bytes object underlying the buffer object is obtained before " -"calling :meth:`bytes.decode`. See :ref:`binaryseq` and :ref:`bufferobjects` " -"for information on buffer objects." +msgid "If at least one of *encoding* or *errors* is given, *object* should be a :term:`bytes-like object` (e.g. :class:`bytes` or :class:`bytearray`). In this case, if *object* is a :class:`bytes` (or :class:`bytearray`) object, then ``str(bytes, encoding, errors)`` is equivalent to :meth:`bytes.decode(encoding, errors) `. Otherwise, the bytes object underlying the buffer object is obtained before calling :meth:`bytes.decode`. See :ref:`binaryseq` and :ref:`bufferobjects` for information on buffer objects." msgstr "" -#: ../../library/stdtypes.rst:1814 -msgid "" -"Passing a :class:`bytes` object to :func:`str` without the *encoding* or " -"*errors* arguments falls under the first case of returning the informal " -"string representation (see also the :option:`-b` command-line option to " -"Python). For example::" +msgid "Passing a :class:`bytes` object to :func:`str` without the *encoding* or *errors* arguments falls under the first case of returning the informal string representation (see also the :option:`-b` command-line option to Python). For example::" msgstr "" -#: ../../library/stdtypes.rst:1819 msgid "" ">>> str(b'Zoot!')\n" "\"b'Zoot!'\"" msgstr "" -#: ../../library/stdtypes.rst:1822 -msgid "" -"For more information on the ``str`` class and its methods, " -"see :ref:`textseq` and the :ref:`string-methods` section below. To output " -"formatted strings, see the :ref:`f-strings` and :ref:`formatstrings` " -"sections. In addition, see the :ref:`stringservices` section." +msgid "For more information on the ``str`` class and its methods, see :ref:`textseq` and the :ref:`string-methods` section below. To output formatted strings, see the :ref:`f-strings` and :ref:`formatstrings` sections. In addition, see the :ref:`stringservices` section." msgstr "" -#: ../../library/stdtypes.rst:1834 msgid "String Methods" msgstr "" -#: ../../library/stdtypes.rst:1839 -msgid "" -"Strings implement all of the :ref:`common ` sequence " -"operations, along with the additional methods described below." +msgid "Strings implement all of the :ref:`common ` sequence operations, along with the additional methods described below." msgstr "" -#: ../../library/stdtypes.rst:1842 -msgid "" -"Strings also support two styles of string formatting, one providing a large " -"degree of flexibility and customization " -"(see :meth:`str.format`, :ref:`formatstrings` and :ref:`string-formatting`) " -"and the other based on C ``printf`` style formatting that handles a narrower " -"range of types and is slightly harder to use correctly, but is often faster " -"for the cases it can handle (:ref:`old-string-formatting`)." +msgid "Strings also support two styles of string formatting, one providing a large degree of flexibility and customization (see :meth:`str.format`, :ref:`formatstrings` and :ref:`string-formatting`) and the other based on C ``printf`` style formatting that handles a narrower range of types and is slightly harder to use correctly, but is often faster for the cases it can handle (:ref:`old-string-formatting`)." msgstr "" -#: ../../library/stdtypes.rst:1849 -msgid "" -"The :ref:`textservices` section of the standard library covers a number of " -"other modules that provide various text related utilities (including regular " -"expression support in the :mod:`re` module)." +msgid "The :ref:`textservices` section of the standard library covers a number of other modules that provide various text related utilities (including regular expression support in the :mod:`re` module)." msgstr "" -#: ../../library/stdtypes.rst:1855 -msgid "" -"Return a copy of the string with its first character capitalized and the " -"rest lowercased." +msgid "Return a copy of the string with its first character capitalized and the rest lowercased." msgstr "" -#: ../../library/stdtypes.rst:1858 -msgid "" -"The first character is now put into titlecase rather than uppercase. This " -"means that characters like digraphs will only have their first letter " -"capitalized, instead of the full character." +msgid "The first character is now put into titlecase rather than uppercase. This means that characters like digraphs will only have their first letter capitalized, instead of the full character." msgstr "" -#: ../../library/stdtypes.rst:1865 -msgid "" -"Return a casefolded copy of the string. Casefolded strings may be used for " -"caseless matching." +msgid "Return a casefolded copy of the string. Casefolded strings may be used for caseless matching." msgstr "" -#: ../../library/stdtypes.rst:1868 -msgid "" -"Casefolding is similar to lowercasing but more aggressive because it is " -"intended to remove all case distinctions in a string. For example, the " -"German lowercase letter ``'ß'`` is equivalent to ``\"ss\"``. Since it is " -"already lowercase, :meth:`lower` would do nothing to " -"``'ß'``; :meth:`casefold` converts it to ``\"ss\"``. For example:" +msgid "Casefolding is similar to lowercasing but more aggressive because it is intended to remove all case distinctions in a string. For example, the German lowercase letter ``'ß'`` is equivalent to ``\"ss\"``. Since it is already lowercase, :meth:`lower` would do nothing to ``'ß'``; :meth:`casefold` converts it to ``\"ss\"``. For example:" msgstr "" -#: ../../library/stdtypes.rst:1875 msgid "" ">>> 'straße'.lower()\n" "'straße'\n" @@ -2831,21 +1667,12 @@ msgid "" "'strasse'" msgstr "" -#: ../../library/stdtypes.rst:1882 -msgid "" -"The casefolding algorithm is `described in section 3.13 'Default Case " -"Folding' of the Unicode Standard `__." +msgid "The casefolding algorithm is `described in section 3.13 'Default Case Folding' of the Unicode Standard `__." msgstr "" -#: ../../library/stdtypes.rst:1891 -msgid "" -"Return centered in a string of length *width*. Padding is done using the " -"specified *fillchar* (default is an ASCII space). The original string is " -"returned if *width* is less than or equal to ``len(s)``. For example::" +msgid "Return centered in a string of length *width*. Padding is done using the specified *fillchar* (default is an ASCII space). The original string is returned if *width* is less than or equal to ``len(s)``. For example::" msgstr "" -#: ../../library/stdtypes.rst:1895 msgid "" ">>> 'Python'.center(10)\n" "' Python '\n" @@ -2855,20 +1682,12 @@ msgid "" "'Python'" msgstr "" -#: ../../library/stdtypes.rst:1905 -msgid "" -"Return the number of non-overlapping occurrences of substring *sub* in the " -"range [*start*, *end*]. Optional arguments *start* and *end* are " -"interpreted as in slice notation." +msgid "Return the number of non-overlapping occurrences of substring *sub* in the range [*start*, *end*]. Optional arguments *start* and *end* are interpreted as in slice notation." msgstr "" -#: ../../library/stdtypes.rst:1909 -msgid "" -"If *sub* is empty, returns the number of empty strings between characters " -"which is the length of the string plus one. For example::" +msgid "If *sub* is empty, returns the number of empty strings between characters which is the length of the string plus one. For example::" msgstr "" -#: ../../library/stdtypes.rst:1912 msgid "" ">>> 'spam, spam, spam'.count('spam')\n" "3\n" @@ -2882,33 +1701,18 @@ msgid "" "17" msgstr "" -#: ../../library/stdtypes.rst:1925 msgid "Return the string encoded to :class:`bytes`." msgstr "" -#: ../../library/stdtypes.rst:1927 ../../library/stdtypes.rst:3639 -msgid "" -"*encoding* defaults to ``'utf-8'``; see :ref:`standard-encodings` for " -"possible values." +msgid "*encoding* defaults to ``'utf-8'``; see :ref:`standard-encodings` for possible values." msgstr "" -#: ../../library/stdtypes.rst:1930 -msgid "" -"*errors* controls how encoding errors are handled. If ``'strict'`` (the " -"default), a :exc:`UnicodeError` exception is raised. Other possible values " -"are ``'ignore'``, ``'replace'``, ``'xmlcharrefreplace'``, " -"``'backslashreplace'`` and any other name registered " -"via :func:`codecs.register_error`. See :ref:`error-handlers` for details." +msgid "*errors* controls how encoding errors are handled. If ``'strict'`` (the default), a :exc:`UnicodeError` exception is raised. Other possible values are ``'ignore'``, ``'replace'``, ``'xmlcharrefreplace'``, ``'backslashreplace'`` and any other name registered via :func:`codecs.register_error`. See :ref:`error-handlers` for details." msgstr "" -#: ../../library/stdtypes.rst:1937 -msgid "" -"For performance reasons, the value of *errors* is not checked for validity " -"unless an encoding error actually occurs, :ref:`devmode` is enabled or " -"a :ref:`debug build ` is used. For example::" +msgid "For performance reasons, the value of *errors* is not checked for validity unless an encoding error actually occurs, :ref:`devmode` is enabled or a :ref:`debug build ` is used. For example::" msgstr "" -#: ../../library/stdtypes.rst:1943 msgid "" ">>> encoded_str_to_bytes = 'Python'.encode()\n" ">>> type(encoded_str_to_bytes)\n" @@ -2917,26 +1721,15 @@ msgid "" "b'Python'" msgstr "" -#: ../../library/stdtypes.rst:1950 ../../library/stdtypes.rst:3658 msgid "Added support for keyword arguments." msgstr "" -#: ../../library/stdtypes.rst:1953 ../../library/stdtypes.rst:3661 -msgid "" -"The value of the *errors* argument is now checked in :ref:`devmode` and " -"in :ref:`debug mode `." +msgid "The value of the *errors* argument is now checked in :ref:`devmode` and in :ref:`debug mode `." msgstr "" -#: ../../library/stdtypes.rst:1960 -msgid "" -"Return ``True`` if the string ends with the specified *suffix*, otherwise " -"return ``False``. *suffix* can also be a tuple of suffixes to look for. " -"With optional *start*, test beginning at that position. With optional " -"*end*, stop comparing at that position. Using *start* and *end* is " -"equivalent to ``str[start:end].endswith(suffix)``. For example::" +msgid "Return ``True`` if the string ends with the specified *suffix*, otherwise return ``False``. *suffix* can also be a tuple of suffixes to look for. With optional *start*, test beginning at that position. With optional *end*, stop comparing at that position. Using *start* and *end* is equivalent to ``str[start:end].endswith(suffix)``. For example::" msgstr "" -#: ../../library/stdtypes.rst:1966 msgid "" ">>> 'Python'.endswith('on')\n" "True\n" @@ -2948,27 +1741,12 @@ msgid "" "True" msgstr "" -#: ../../library/stdtypes.rst:1975 msgid "See also :meth:`startswith` and :meth:`removesuffix`." msgstr "" -#: ../../library/stdtypes.rst:1980 -msgid "" -"Return a copy of the string where all tab characters are replaced by one or " -"more spaces, depending on the current column and the given tab size. Tab " -"positions occur every *tabsize* characters (default is 8, giving tab " -"positions at columns 0, 8, 16 and so on). To expand the string, the current " -"column is set to zero and the string is examined character by character. If " -"the character is a tab (``\\t``), one or more space characters are inserted " -"in the result until the current column is equal to the next tab position. " -"(The tab character itself is not copied.) If the character is a newline " -"(``\\n``) or return (``\\r``), it is copied and the current column is reset " -"to zero. Any other character is copied unchanged and the current column is " -"incremented by one regardless of how the character is represented when " -"printed. For example::" +msgid "Return a copy of the string where all tab characters are replaced by one or more spaces, depending on the current column and the given tab size. Tab positions occur every *tabsize* characters (default is 8, giving tab positions at columns 0, 8, 16 and so on). To expand the string, the current column is set to zero and the string is examined character by character. If the character is a tab (``\\t``), one or more space characters are inserted in the result until the current column is equal to the next tab position. (The tab character itself is not copied.) If the character is a newline (``\\n``) or return (``\\r``), it is copied and the current column is reset to zero. Any other character is copied unchanged and the current column is incremented by one regardless of how the character is represented when printed. For example::" msgstr "" -#: ../../library/stdtypes.rst:1993 msgid "" ">>> '01\\t012\\t0123\\t01234'.expandtabs()\n" "'01 012 0123 01234'\n" @@ -2979,15 +1757,9 @@ msgid "" "0123 01234" msgstr "" -#: ../../library/stdtypes.rst:2004 -msgid "" -"Return the lowest index in the string where substring *sub* is found within " -"the slice ``s[start:end]``. Optional arguments *start* and *end* are " -"interpreted as in slice notation. Return ``-1`` if *sub* is not found. For " -"example::" +msgid "Return the lowest index in the string where substring *sub* is found within the slice ``s[start:end]``. Optional arguments *start* and *end* are interpreted as in slice notation. Return ``-1`` if *sub* is not found. For example::" msgstr "" -#: ../../library/stdtypes.rst:2009 msgid "" ">>> 'spam, spam, spam'.find('sp')\n" "0\n" @@ -2995,34 +1767,20 @@ msgid "" "6" msgstr "" -#: ../../library/stdtypes.rst:2014 msgid "See also :meth:`rfind` and :meth:`index`." msgstr "" -#: ../../library/stdtypes.rst:2018 -msgid "" -"The :meth:`~str.find` method should be used only if you need to know the " -"position of *sub*. To check if *sub* is a substring or not, use " -"the :keyword:`in` operator::" +msgid "The :meth:`~str.find` method should be used only if you need to know the position of *sub*. To check if *sub* is a substring or not, use the :keyword:`in` operator::" msgstr "" -#: ../../library/stdtypes.rst:2022 msgid "" ">>> 'Py' in 'Python'\n" "True" msgstr "" -#: ../../library/stdtypes.rst:2028 -msgid "" -"Perform a string formatting operation. The string on which this method is " -"called can contain literal text or replacement fields delimited by braces " -"``{}``. Each replacement field contains either the numeric index of a " -"positional argument, or the name of a keyword argument. Returns a copy of " -"the string where each replacement field is replaced with the string value of " -"the corresponding argument. For example:" +msgid "Perform a string formatting operation. The string on which this method is called can contain literal text or replacement fields delimited by braces ``{}``. Each replacement field contains either the numeric index of a positional argument, or the name of a keyword argument. Returns a copy of the string where each replacement field is replaced with the string value of the corresponding argument. For example:" msgstr "" -#: ../../library/stdtypes.rst:2035 msgid "" ">>> \"The sum of 1 + 2 is {0}\".format(1+2)\n" "'The sum of 1 + 2 is 3'\n" @@ -3032,44 +1790,21 @@ msgid "" "'Nobody expects the Spanish Inquisition!'" msgstr "" -#: ../../library/stdtypes.rst:2044 -msgid "" -"See :ref:`formatstrings` for a description of the various formatting options " -"that can be specified in format strings." +msgid "See :ref:`formatstrings` for a description of the various formatting options that can be specified in format strings." msgstr "" -#: ../../library/stdtypes.rst:2048 -msgid "" -"When formatting a number " -"(:class:`int`, :class:`float`, :class:`complex`, :class:`decimal.Decimal` " -"and subclasses) with the ``n`` type (ex: ``'{:n}'.format(1234)``), the " -"function temporarily sets the ``LC_CTYPE`` locale to the ``LC_NUMERIC`` " -"locale to decode ``decimal_point`` and ``thousands_sep`` fields " -"of :c:func:`localeconv` if they are non-ASCII or longer than 1 byte, and the " -"``LC_NUMERIC`` locale is different than the ``LC_CTYPE`` locale. This " -"temporary change affects other threads." +msgid "When formatting a number (:class:`int`, :class:`float`, :class:`complex`, :class:`decimal.Decimal` and subclasses) with the ``n`` type (ex: ``'{:n}'.format(1234)``), the function temporarily sets the ``LC_CTYPE`` locale to the ``LC_NUMERIC`` locale to decode ``decimal_point`` and ``thousands_sep`` fields of :c:func:`localeconv` if they are non-ASCII or longer than 1 byte, and the ``LC_NUMERIC`` locale is different than the ``LC_CTYPE`` locale. This temporary change affects other threads." msgstr "" -#: ../../library/stdtypes.rst:2057 -msgid "" -"When formatting a number with the ``n`` type, the function sets temporarily " -"the ``LC_CTYPE`` locale to the ``LC_NUMERIC`` locale in some cases." +msgid "When formatting a number with the ``n`` type, the function sets temporarily the ``LC_CTYPE`` locale to the ``LC_NUMERIC`` locale in some cases." msgstr "" -#: ../../library/stdtypes.rst:2065 -msgid "" -"Similar to ``str.format(**mapping)``, except that ``mapping`` is used " -"directly and not copied to a :class:`dict`. This is useful if for example " -"``mapping`` is a dict subclass:" +msgid "Similar to ``str.format(**mapping)``, except that ``mapping`` is used directly and not copied to a :class:`dict`. This is useful if for example ``mapping`` is a dict subclass:" msgstr "" -#: ../../library/stdtypes.rst:2081 -msgid "" -"Like :meth:`~str.find`, but raise :exc:`ValueError` when the substring is " -"not found. For example:" +msgid "Like :meth:`~str.find`, but raise :exc:`ValueError` when the substring is not found. For example:" msgstr "" -#: ../../library/stdtypes.rst:2084 msgid "" ">>> 'spam, spam, spam'.index('spam')\n" "0\n" @@ -3081,19 +1816,12 @@ msgid "" "ValueError: substring not found" msgstr "" -#: ../../library/stdtypes.rst:2095 msgid "See also :meth:`rindex`." msgstr "" -#: ../../library/stdtypes.rst:2100 -msgid "" -"Return ``True`` if all characters in the string are alphanumeric and there " -"is at least one character, ``False`` otherwise. A character ``c`` is " -"alphanumeric if one of the following returns ``True``: ``c.isalpha()``, " -"``c.isdecimal()``, ``c.isdigit()``, or ``c.isnumeric()``. For example:" +msgid "Return ``True`` if all characters in the string are alphanumeric and there is at least one character, ``False`` otherwise. A character ``c`` is alphanumeric if one of the following returns ``True``: ``c.isalpha()``, ``c.isdecimal()``, ``c.isdigit()``, or ``c.isnumeric()``. For example:" msgstr "" -#: ../../library/stdtypes.rst:2105 msgid "" ">>> 'abc123'.isalnum()\n" "True\n" @@ -3105,41 +1833,24 @@ msgid "" "False" msgstr "" -#: ../../library/stdtypes.rst:2119 -msgid "" -"Return ``True`` if all characters in the string are alphabetic and there is " -"at least one character, ``False`` otherwise. Alphabetic characters are " -"those characters defined in the Unicode character database as \"Letter\", " -"i.e., those with general category property being one of \"Lm\", \"Lt\", " -"\"Lu\", \"Ll\", or \"Lo\". Note that this is different from the `Alphabetic " -"property defined in the section 4.10 'Letters, Alphabetic, and Ideographic' " -"of the Unicode Standard `_. For example:" +msgid "Return ``True`` if all characters in the string are alphabetic and there is at least one character, ``False`` otherwise. Alphabetic characters are those characters defined in the Unicode character database as \"Letter\", i.e., those with general category property being one of \"Lm\", \"Lt\", \"Lu\", \"Ll\", or \"Lo\". Note that this is different from the `Alphabetic property defined in the section 4.10 'Letters, Alphabetic, and Ideographic' of the Unicode Standard `_. For example:" msgstr "" -#: ../../library/stdtypes.rst:2128 msgid "" ">>> 'Letters and spaces'.isalpha()\n" "False\n" ">>> 'LettersOnly'.isalpha()\n" "True\n" -">>> 'µ'.isalpha() # non-ASCII characters can be considered alphabetical " -"too\n" +">>> 'µ'.isalpha() # non-ASCII characters can be considered alphabetical too\n" "True" msgstr "" -#: ../../library/stdtypes.rst:2137 msgid "See :ref:`unicode-properties`." msgstr "" -#: ../../library/stdtypes.rst:2142 -msgid "" -"Return ``True`` if the string is empty or all characters in the string are " -"ASCII, ``False`` otherwise. ASCII characters have code points in the range " -"U+0000-U+007F. For example:" +msgid "Return ``True`` if the string is empty or all characters in the string are ASCII, ``False`` otherwise. ASCII characters have code points in the range U+0000-U+007F. For example:" msgstr "" -#: ../../library/stdtypes.rst:2146 msgid "" ">>> 'ASCII characters'.isascii()\n" "True\n" @@ -3147,16 +1858,9 @@ msgid "" "False" msgstr "" -#: ../../library/stdtypes.rst:2158 -msgid "" -"Return ``True`` if all characters in the string are decimal characters and " -"there is at least one character, ``False`` otherwise. Decimal characters are " -"those that can be used to form numbers in base 10, such as U+0660, ARABIC-" -"INDIC DIGIT ZERO. Formally a decimal character is a character in the " -"Unicode General Category \"Nd\". For example:" +msgid "Return ``True`` if all characters in the string are decimal characters and there is at least one character, ``False`` otherwise. Decimal characters are those that can be used to form numbers in base 10, such as U+0660, ARABIC-INDIC DIGIT ZERO. Formally a decimal character is a character in the Unicode General Category \"Nd\". For example:" msgstr "" -#: ../../library/stdtypes.rst:2165 msgid "" ">>> '0123456789'.isdecimal()\n" "True\n" @@ -3166,29 +1870,12 @@ msgid "" "False" msgstr "" -#: ../../library/stdtypes.rst:2177 -msgid "" -"Return ``True`` if all characters in the string are digits and there is at " -"least one character, ``False`` otherwise. Digits include decimal characters " -"and digits that need special handling, such as the compatibility superscript " -"digits. This covers digits which cannot be used to form numbers in base 10, " -"like the `Kharosthi numbers `__. Formally, a digit is a character that has the " -"property value Numeric_Type=Digit or Numeric_Type=Decimal." +msgid "Return ``True`` if all characters in the string are digits and there is at least one character, ``False`` otherwise. Digits include decimal characters and digits that need special handling, such as the compatibility superscript digits. This covers digits which cannot be used to form numbers in base 10, like the `Kharosthi numbers `__. Formally, a digit is a character that has the property value Numeric_Type=Digit or Numeric_Type=Decimal." msgstr "" -#: ../../library/stdtypes.rst:2185 ../../library/stdtypes.rst:2266 -#: ../../library/stdtypes.rst:2283 ../../library/stdtypes.rst:2310 -#: ../../library/stdtypes.rst:2365 ../../library/stdtypes.rst:2438 -#: ../../library/stdtypes.rst:2549 ../../library/stdtypes.rst:2570 -#: ../../library/stdtypes.rst:2634 ../../library/stdtypes.rst:2654 -#: ../../library/stdtypes.rst:2668 ../../library/stdtypes.rst:2755 -#: ../../library/stdtypes.rst:2779 ../../library/stdtypes.rst:2793 -#: ../../library/stdtypes.rst:2900 msgid "For example:" msgstr "" -#: ../../library/stdtypes.rst:2187 msgid "" ">>> '0123456789'.isdigit()\n" "True\n" @@ -3200,27 +1887,18 @@ msgid "" "(False, True, True)" msgstr "" -#: ../../library/stdtypes.rst:2198 msgid "See also :meth:`isdecimal` and :meth:`isnumeric`." msgstr "" -#: ../../library/stdtypes.rst:2203 -msgid "" -"Return ``True`` if the string is a valid identifier according to the " -"language definition, section :ref:`identifiers`." +msgid "Return ``True`` if the string is a valid identifier according to the language definition, section :ref:`identifiers`." msgstr "" -#: ../../library/stdtypes.rst:2206 -msgid "" -":func:`keyword.iskeyword` can be used to test whether string ``s`` is a " -"reserved identifier, such as :keyword:`def` and :keyword:`class`." +msgid ":func:`keyword.iskeyword` can be used to test whether string ``s`` is a reserved identifier, such as :keyword:`def` and :keyword:`class`." msgstr "" -#: ../../library/stdtypes.rst:2209 msgid "Example: ::" msgstr "" -#: ../../library/stdtypes.rst:2212 msgid "" ">>> from keyword import iskeyword\n" "\n" @@ -3230,23 +1908,12 @@ msgid "" "(True, True)" msgstr "" -#: ../../library/stdtypes.rst:2222 -msgid "" -"Return ``True`` if all cased characters [4]_ in the string are lowercase and " -"there is at least one cased character, ``False`` otherwise." +msgid "Return ``True`` if all cased characters [4]_ in the string are lowercase and there is at least one cased character, ``False`` otherwise." msgstr "" -#: ../../library/stdtypes.rst:2228 -msgid "" -"Return ``True`` if all characters in the string are numeric characters, and " -"there is at least one character, ``False`` otherwise. Numeric characters " -"include digit characters, and all characters that have the Unicode numeric " -"value property, e.g. U+2155, VULGAR FRACTION ONE FIFTH. Formally, numeric " -"characters are those with the property value Numeric_Type=Digit, " -"Numeric_Type=Decimal or Numeric_Type=Numeric. For example:" +msgid "Return ``True`` if all characters in the string are numeric characters, and there is at least one character, ``False`` otherwise. Numeric characters include digit characters, and all characters that have the Unicode numeric value property, e.g. U+2155, VULGAR FRACTION ONE FIFTH. Formally, numeric characters are those with the property value Numeric_Type=Digit, Numeric_Type=Decimal or Numeric_Type=Numeric. For example:" msgstr "" -#: ../../library/stdtypes.rst:2236 msgid "" ">>> '0123456789'.isnumeric()\n" "True\n" @@ -3258,34 +1925,18 @@ msgid "" "(False, True, True)" msgstr "" -#: ../../library/stdtypes.rst:2247 msgid "See also :meth:`isdecimal` and :meth:`isdigit`." msgstr "" -#: ../../library/stdtypes.rst:2252 -msgid "" -"Return ``True`` if all characters in the string are printable, ``False`` if " -"it contains at least one non-printable character." +msgid "Return ``True`` if all characters in the string are printable, ``False`` if it contains at least one non-printable character." msgstr "" -#: ../../library/stdtypes.rst:2255 -msgid "" -"Here \"printable\" means the character is suitable for :func:`repr` to use " -"in its output; \"non-printable\" means that :func:`repr` on built-in types " -"will hex-escape the character. It has no bearing on the handling of strings " -"written to :data:`sys.stdout` or :data:`sys.stderr`." +msgid "Here \"printable\" means the character is suitable for :func:`repr` to use in its output; \"non-printable\" means that :func:`repr` on built-in types will hex-escape the character. It has no bearing on the handling of strings written to :data:`sys.stdout` or :data:`sys.stderr`." msgstr "" -#: ../../library/stdtypes.rst:2260 -msgid "" -"The printable characters are those which in the Unicode character database " -"(see :mod:`unicodedata`) have a general category in group Letter, Mark, " -"Number, Punctuation, or Symbol (L, M, N, P, or S); plus the ASCII space " -"0x20. Nonprintable characters are those in group Separator or Other (Z or " -"C), except the ASCII space." +msgid "The printable characters are those which in the Unicode character database (see :mod:`unicodedata`) have a general category in group Letter, Mark, Number, Punctuation, or Symbol (L, M, N, P, or S); plus the ASCII space 0x20. Nonprintable characters are those in group Separator or Other (Z or C), except the ASCII space." msgstr "" -#: ../../library/stdtypes.rst:2268 msgid "" ">>> ''.isprintable(), ' '.isprintable()\n" "(True, True)\n" @@ -3293,17 +1944,12 @@ msgid "" "(False, False)" msgstr "" -#: ../../library/stdtypes.rst:2275 msgid "See also :meth:`isspace`." msgstr "" -#: ../../library/stdtypes.rst:2280 -msgid "" -"Return ``True`` if there are only whitespace characters in the string and " -"there is at least one character, ``False`` otherwise." +msgid "Return ``True`` if there are only whitespace characters in the string and there is at least one character, ``False`` otherwise." msgstr "" -#: ../../library/stdtypes.rst:2285 msgid "" ">>> ''.isspace()\n" "False\n" @@ -3315,27 +1961,15 @@ msgid "" "True" msgstr "" -#: ../../library/stdtypes.rst:2296 -msgid "" -"A character is *whitespace* if in the Unicode character database " -"(see :mod:`unicodedata`), either its general category is ``Zs`` " -"(\"Separator, space\"), or its bidirectional class is one of ``WS``, ``B``, " -"or ``S``." +msgid "A character is *whitespace* if in the Unicode character database (see :mod:`unicodedata`), either its general category is ``Zs`` (\"Separator, space\"), or its bidirectional class is one of ``WS``, ``B``, or ``S``." msgstr "" -#: ../../library/stdtypes.rst:2301 msgid "See also :meth:`isprintable`." msgstr "" -#: ../../library/stdtypes.rst:2306 -msgid "" -"Return ``True`` if the string is a titlecased string and there is at least " -"one character, for example uppercase characters may only follow uncased " -"characters and lowercase characters only cased ones. Return ``False`` " -"otherwise." +msgid "Return ``True`` if the string is a titlecased string and there is at least one character, for example uppercase characters may only follow uncased characters and lowercase characters only cased ones. Return ``False`` otherwise." msgstr "" -#: ../../library/stdtypes.rst:2312 msgid "" ">>> 'Spam, Spam, Spam'.istitle()\n" "True\n" @@ -3345,25 +1979,15 @@ msgid "" "False" msgstr "" -#: ../../library/stdtypes.rst:2321 msgid "See also :meth:`title`." msgstr "" -#: ../../library/stdtypes.rst:2326 -msgid "" -"Return ``True`` if all cased characters [4]_ in the string are uppercase and " -"there is at least one cased character, ``False`` otherwise." +msgid "Return ``True`` if all cased characters [4]_ in the string are uppercase and there is at least one cased character, ``False`` otherwise." msgstr "" -#: ../../library/stdtypes.rst:2344 -msgid "" -"Return a string which is the concatenation of the strings in *iterable*. " -"A :exc:`TypeError` will be raised if there are any non-string values in " -"*iterable*, including :class:`bytes` objects. The separator between " -"elements is the string providing this method. For example:" +msgid "Return a string which is the concatenation of the strings in *iterable*. A :exc:`TypeError` will be raised if there are any non-string values in *iterable*, including :class:`bytes` objects. The separator between elements is the string providing this method. For example:" msgstr "" -#: ../../library/stdtypes.rst:2349 msgid "" ">>> ', '.join(['spam', 'spam', 'spam'])\n" "'spam, spam, spam'\n" @@ -3371,18 +1995,12 @@ msgid "" "'P-y-t-h-o-n'" msgstr "" -#: ../../library/stdtypes.rst:2356 msgid "See also :meth:`split`." msgstr "" -#: ../../library/stdtypes.rst:2361 -msgid "" -"Return the string left justified in a string of length *width*. Padding is " -"done using the specified *fillchar* (default is an ASCII space). The " -"original string is returned if *width* is less than or equal to ``len(s)``." +msgid "Return the string left justified in a string of length *width*. Padding is done using the specified *fillchar* (default is an ASCII space). The original string is returned if *width* is less than or equal to ``len(s)``." msgstr "" -#: ../../library/stdtypes.rst:2367 msgid "" ">>> 'Python'.ljust(10)\n" "'Python '\n" @@ -3392,39 +2010,23 @@ msgid "" "'Monty Python'" msgstr "" -#: ../../library/stdtypes.rst:2376 ../../library/stdtypes.rst:2909 msgid "See also :meth:`rjust`." msgstr "" -#: ../../library/stdtypes.rst:2381 -msgid "" -"Return a copy of the string with all the cased characters [4]_ converted to " -"lowercase. For example:" +msgid "Return a copy of the string with all the cased characters [4]_ converted to lowercase. For example:" msgstr "" -#: ../../library/stdtypes.rst:2384 msgid "" ">>> 'Lower Method Example'.lower()\n" "'lower method example'" msgstr "" -#: ../../library/stdtypes.rst:2389 -msgid "" -"The lowercasing algorithm used is `described in section 3.13 'Default Case " -"Folding' of the Unicode Standard `__." +msgid "The lowercasing algorithm used is `described in section 3.13 'Default Case Folding' of the Unicode Standard `__." msgstr "" -#: ../../library/stdtypes.rst:2396 -msgid "" -"Return a copy of the string with leading characters removed. The *chars* " -"argument is a string specifying the set of characters to be removed. If " -"omitted or ``None``, the *chars* argument defaults to removing whitespace. " -"The *chars* argument is not a prefix; rather, all combinations of its values " -"are stripped::" +msgid "Return a copy of the string with leading characters removed. The *chars* argument is a string specifying the set of characters to be removed. If omitted or ``None``, the *chars* argument defaults to removing whitespace. The *chars* argument is not a prefix; rather, all combinations of its values are stripped::" msgstr "" -#: ../../library/stdtypes.rst:2401 msgid "" ">>> ' spacious '.lstrip()\n" "'spacious '\n" @@ -3432,13 +2034,9 @@ msgid "" "'example.com'" msgstr "" -#: ../../library/stdtypes.rst:2406 -msgid "" -"See :meth:`str.removeprefix` for a method that will remove a single prefix " -"string rather than all of a set of characters. For example::" +msgid "See :meth:`str.removeprefix` for a method that will remove a single prefix string rather than all of a set of characters. For example::" msgstr "" -#: ../../library/stdtypes.rst:2409 msgid "" ">>> 'Arthur: three!'.lstrip('Arthur: ')\n" "'ee!'\n" @@ -3446,37 +2044,18 @@ msgid "" "'three!'" msgstr "" -#: ../../library/stdtypes.rst:2418 -msgid "" -"This static method returns a translation table usable " -"for :meth:`str.translate`." +msgid "This static method returns a translation table usable for :meth:`str.translate`." msgstr "" -#: ../../library/stdtypes.rst:2420 -msgid "" -"If there is only one argument, it must be a dictionary mapping Unicode " -"ordinals (integers) or characters (strings of length 1) to Unicode ordinals, " -"strings (of arbitrary lengths) or ``None``. Character keys will then be " -"converted to ordinals." +msgid "If there is only one argument, it must be a dictionary mapping Unicode ordinals (integers) or characters (strings of length 1) to Unicode ordinals, strings (of arbitrary lengths) or ``None``. Character keys will then be converted to ordinals." msgstr "" -#: ../../library/stdtypes.rst:2425 -msgid "" -"If there are two arguments, they must be strings of equal length, and in the " -"resulting dictionary, each character in *from* will be mapped to the " -"character at the same position in *to*. If there is a third argument, it " -"must be a string, whose characters will be mapped to ``None`` in the result." +msgid "If there are two arguments, they must be strings of equal length, and in the resulting dictionary, each character in *from* will be mapped to the character at the same position in *to*. If there is a third argument, it must be a string, whose characters will be mapped to ``None`` in the result." msgstr "" -#: ../../library/stdtypes.rst:2433 -msgid "" -"Split the string at the first occurrence of *sep*, and return a 3-tuple " -"containing the part before the separator, the separator itself, and the part " -"after the separator. If the separator is not found, return a 3-tuple " -"containing the string itself, followed by two empty strings." +msgid "Split the string at the first occurrence of *sep*, and return a 3-tuple containing the part before the separator, the separator itself, and the part after the separator. If the separator is not found, return a 3-tuple containing the string itself, followed by two empty strings." msgstr "" -#: ../../library/stdtypes.rst:2440 msgid "" ">>> 'Monty Python'.partition(' ')\n" "('Monty', ' ', 'Python')\n" @@ -3486,17 +2065,12 @@ msgid "" "('Monty Python', '', '')" msgstr "" -#: ../../library/stdtypes.rst:2449 msgid "See also :meth:`rpartition`." msgstr "" -#: ../../library/stdtypes.rst:2454 -msgid "" -"If the string starts with the *prefix* string, return " -"``string[len(prefix):]``. Otherwise, return a copy of the original string:" +msgid "If the string starts with the *prefix* string, return ``string[len(prefix):]``. Otherwise, return a copy of the original string:" msgstr "" -#: ../../library/stdtypes.rst:2458 msgid "" ">>> 'TestHook'.removeprefix('Test')\n" "'Hook'\n" @@ -3504,18 +2078,12 @@ msgid "" "'BaseTestCase'" msgstr "" -#: ../../library/stdtypes.rst:2467 msgid "See also :meth:`removesuffix` and :meth:`startswith`." msgstr "" -#: ../../library/stdtypes.rst:2472 -msgid "" -"If the string ends with the *suffix* string and that *suffix* is not empty, " -"return ``string[:-len(suffix)]``. Otherwise, return a copy of the original " -"string:" +msgid "If the string ends with the *suffix* string and that *suffix* is not empty, return ``string[:-len(suffix)]``. Otherwise, return a copy of the original string:" msgstr "" -#: ../../library/stdtypes.rst:2476 msgid "" ">>> 'MiscTests'.removesuffix('Tests')\n" "'Misc'\n" @@ -3523,19 +2091,12 @@ msgid "" "'TmpDirMixin'" msgstr "" -#: ../../library/stdtypes.rst:2485 msgid "See also :meth:`removeprefix` and :meth:`endswith`." msgstr "" -#: ../../library/stdtypes.rst:2490 -msgid "" -"Return a copy of the string with all occurrences of substring *old* replaced " -"by *new*. If *count* is given, only the first *count* occurrences are " -"replaced. If *count* is not specified or ``-1``, then all occurrences are " -"replaced. For example:" +msgid "Return a copy of the string with all occurrences of substring *old* replaced by *new*. If *count* is given, only the first *count* occurrences are replaced. If *count* is not specified or ``-1``, then all occurrences are replaced. For example:" msgstr "" -#: ../../library/stdtypes.rst:2495 msgid "" ">>> 'spam, spam, spam'.replace('spam', 'eggs')\n" "'eggs, eggs, eggs'\n" @@ -3543,19 +2104,12 @@ msgid "" "'eggs, spam, spam'" msgstr "" -#: ../../library/stdtypes.rst:2502 msgid "*count* is now supported as a keyword argument." msgstr "" -#: ../../library/stdtypes.rst:2508 -msgid "" -"Return the highest index in the string where substring *sub* is found, such " -"that *sub* is contained within ``s[start:end]``. Optional arguments *start* " -"and *end* are interpreted as in slice notation. Return ``-1`` on failure. " -"For example:" +msgid "Return the highest index in the string where substring *sub* is found, such that *sub* is contained within ``s[start:end]``. Optional arguments *start* and *end* are interpreted as in slice notation. Return ``-1`` on failure. For example:" msgstr "" -#: ../../library/stdtypes.rst:2513 msgid "" ">>> 'spam, spam, spam'.rfind('sp')\n" "12\n" @@ -3563,17 +2117,12 @@ msgid "" "6" msgstr "" -#: ../../library/stdtypes.rst:2520 msgid "See also :meth:`find` and :meth:`rindex`." msgstr "" -#: ../../library/stdtypes.rst:2525 -msgid "" -"Like :meth:`rfind` but raises :exc:`ValueError` when the substring *sub* is " -"not found. For example:" +msgid "Like :meth:`rfind` but raises :exc:`ValueError` when the substring *sub* is not found. For example:" msgstr "" -#: ../../library/stdtypes.rst:2529 msgid "" ">>> 'spam, spam, spam'.rindex('spam')\n" "12\n" @@ -3585,18 +2134,12 @@ msgid "" "ValueError: substring not found" msgstr "" -#: ../../library/stdtypes.rst:2540 msgid "See also :meth:`index` and :meth:`find`." msgstr "" -#: ../../library/stdtypes.rst:2545 -msgid "" -"Return the string right justified in a string of length *width*. Padding is " -"done using the specified *fillchar* (default is an ASCII space). The " -"original string is returned if *width* is less than or equal to ``len(s)``." +msgid "Return the string right justified in a string of length *width*. Padding is done using the specified *fillchar* (default is an ASCII space). The original string is returned if *width* is less than or equal to ``len(s)``." msgstr "" -#: ../../library/stdtypes.rst:2551 msgid "" ">>> 'Python'.rjust(10)\n" "' Python'\n" @@ -3606,19 +2149,12 @@ msgid "" "'Monty Python'" msgstr "" -#: ../../library/stdtypes.rst:2560 msgid "See also :meth:`ljust` and :meth:`zfill`." msgstr "" -#: ../../library/stdtypes.rst:2565 -msgid "" -"Split the string at the last occurrence of *sep*, and return a 3-tuple " -"containing the part before the separator, the separator itself, and the part " -"after the separator. If the separator is not found, return a 3-tuple " -"containing two empty strings, followed by the string itself." +msgid "Split the string at the last occurrence of *sep*, and return a 3-tuple containing the part before the separator, the separator itself, and the part after the separator. If the separator is not found, return a 3-tuple containing two empty strings, followed by the string itself." msgstr "" -#: ../../library/stdtypes.rst:2572 msgid "" ">>> 'Monty Python'.rpartition(' ')\n" "('Monty', ' ', 'Python')\n" @@ -3628,29 +2164,15 @@ msgid "" "('', '', 'Monty Python')" msgstr "" -#: ../../library/stdtypes.rst:2581 msgid "See also :meth:`partition`." msgstr "" -#: ../../library/stdtypes.rst:2586 -msgid "" -"Return a list of the words in the string, using *sep* as the delimiter " -"string. If *maxsplit* is given, at most *maxsplit* splits are done, the " -"*rightmost* ones. If *sep* is not specified or ``None``, any whitespace " -"string is a separator. Except for splitting from the right, :meth:`rsplit` " -"behaves like :meth:`split` which is described in detail below." +msgid "Return a list of the words in the string, using *sep* as the delimiter string. If *maxsplit* is given, at most *maxsplit* splits are done, the *rightmost* ones. If *sep* is not specified or ``None``, any whitespace string is a separator. Except for splitting from the right, :meth:`rsplit` behaves like :meth:`split` which is described in detail below." msgstr "" -#: ../../library/stdtypes.rst:2595 -msgid "" -"Return a copy of the string with trailing characters removed. The *chars* " -"argument is a string specifying the set of characters to be removed. If " -"omitted or ``None``, the *chars* argument defaults to removing whitespace. " -"The *chars* argument is not a suffix; rather, all combinations of its values " -"are stripped. For example:" +msgid "Return a copy of the string with trailing characters removed. The *chars* argument is a string specifying the set of characters to be removed. If omitted or ``None``, the *chars* argument defaults to removing whitespace. The *chars* argument is not a suffix; rather, all combinations of its values are stripped. For example:" msgstr "" -#: ../../library/stdtypes.rst:2601 msgid "" ">>> ' spacious '.rstrip()\n" "' spacious'\n" @@ -3658,13 +2180,9 @@ msgid "" "'mississ'" msgstr "" -#: ../../library/stdtypes.rst:2608 -msgid "" -"See :meth:`removesuffix` for a method that will remove a single suffix " -"string rather than all of a set of characters. For example::" +msgid "See :meth:`removesuffix` for a method that will remove a single suffix string rather than all of a set of characters. For example::" msgstr "" -#: ../../library/stdtypes.rst:2611 msgid "" ">>> 'Monty Python'.rstrip(' Python')\n" "'M'\n" @@ -3672,30 +2190,15 @@ msgid "" "'Monty'" msgstr "" -#: ../../library/stdtypes.rst:2616 msgid "See also :meth:`strip`." msgstr "" -#: ../../library/stdtypes.rst:2621 -msgid "" -"Return a list of the words in the string, using *sep* as the delimiter " -"string. If *maxsplit* is given, at most *maxsplit* splits are done (thus, " -"the list will have at most ``maxsplit+1`` elements). If *maxsplit* is not " -"specified or ``-1``, then there is no limit on the number of splits (all " -"possible splits are made)." +msgid "Return a list of the words in the string, using *sep* as the delimiter string. If *maxsplit* is given, at most *maxsplit* splits are done (thus, the list will have at most ``maxsplit+1`` elements). If *maxsplit* is not specified or ``-1``, then there is no limit on the number of splits (all possible splits are made)." msgstr "" -#: ../../library/stdtypes.rst:2627 -msgid "" -"If *sep* is given, consecutive delimiters are not grouped together and are " -"deemed to delimit empty strings (for example, ``'1,,2'.split(',')`` returns " -"``['1', '', '2']``). The *sep* argument may consist of multiple characters " -"as a single delimiter (to split with multiple delimiters, " -"use :func:`re.split`). Splitting an empty string with a specified separator " -"returns ``['']``." +msgid "If *sep* is given, consecutive delimiters are not grouped together and are deemed to delimit empty strings (for example, ``'1,,2'.split(',')`` returns ``['1', '', '2']``). The *sep* argument may consist of multiple characters as a single delimiter (to split with multiple delimiters, use :func:`re.split`). Splitting an empty string with a specified separator returns ``['']``." msgstr "" -#: ../../library/stdtypes.rst:2636 msgid "" ">>> '1,2,3'.split(',')\n" "['1', '2', '3']\n" @@ -3707,17 +2210,9 @@ msgid "" "['1', '2', '3<4']" msgstr "" -#: ../../library/stdtypes.rst:2647 -msgid "" -"If *sep* is not specified or is ``None``, a different splitting algorithm is " -"applied: runs of consecutive whitespace are regarded as a single separator, " -"and the result will contain no empty strings at the start or end if the " -"string has leading or trailing whitespace. Consequently, splitting an empty " -"string or a string consisting of just whitespace with a ``None`` separator " -"returns ``[]``." +msgid "If *sep* is not specified or is ``None``, a different splitting algorithm is applied: runs of consecutive whitespace are regarded as a single separator, and the result will contain no empty strings at the start or end if the string has leading or trailing whitespace. Consequently, splitting an empty string or a string consisting of just whitespace with a ``None`` separator returns ``[]``." msgstr "" -#: ../../library/stdtypes.rst:2656 msgid "" ">>> '1 2 3'.split()\n" "['1', '2', '3']\n" @@ -3727,13 +2222,9 @@ msgid "" "['1', '2', '3']" msgstr "" -#: ../../library/stdtypes.rst:2665 -msgid "" -"If *sep* is not specified or is ``None`` and *maxsplit* is ``0``, only " -"leading runs of consecutive whitespace are considered." +msgid "If *sep* is not specified or is ``None`` and *maxsplit* is ``0``, only leading runs of consecutive whitespace are considered." msgstr "" -#: ../../library/stdtypes.rst:2670 msgid "" ">>> \"\".split(None, 0)\n" "[]\n" @@ -3743,136 +2234,93 @@ msgid "" "['foo ']" msgstr "" -#: ../../library/stdtypes.rst:2679 msgid "See also :meth:`join` and :meth:`rsplit`." msgstr "" -#: ../../library/stdtypes.rst:2687 -msgid "" -"Return a list of the lines in the string, breaking at line boundaries. Line " -"breaks are not included in the resulting list unless *keepends* is given and " -"true." +msgid "Return a list of the lines in the string, breaking at line boundaries. Line breaks are not included in the resulting list unless *keepends* is given and true." msgstr "" -#: ../../library/stdtypes.rst:2691 -msgid "" -"This method splits on the following line boundaries. In particular, the " -"boundaries are a superset of :term:`universal newlines`." +msgid "This method splits on the following line boundaries. In particular, the boundaries are a superset of :term:`universal newlines`." msgstr "" -#: ../../library/stdtypes.rst:2695 msgid "Representation" msgstr "" -#: ../../library/stdtypes.rst:2695 msgid "Description" msgstr "" -#: ../../library/stdtypes.rst:2697 msgid "``\\n``" msgstr "" -#: ../../library/stdtypes.rst:2697 msgid "Line Feed" msgstr "" -#: ../../library/stdtypes.rst:2699 msgid "``\\r``" msgstr "" -#: ../../library/stdtypes.rst:2699 msgid "Carriage Return" msgstr "" -#: ../../library/stdtypes.rst:2701 msgid "``\\r\\n``" msgstr "" -#: ../../library/stdtypes.rst:2701 msgid "Carriage Return + Line Feed" msgstr "" -#: ../../library/stdtypes.rst:2703 msgid "``\\v`` or ``\\x0b``" msgstr "" -#: ../../library/stdtypes.rst:2703 msgid "Line Tabulation" msgstr "" -#: ../../library/stdtypes.rst:2705 msgid "``\\f`` or ``\\x0c``" msgstr "" -#: ../../library/stdtypes.rst:2705 msgid "Form Feed" msgstr "" -#: ../../library/stdtypes.rst:2707 msgid "``\\x1c``" msgstr "" -#: ../../library/stdtypes.rst:2707 msgid "File Separator" msgstr "" -#: ../../library/stdtypes.rst:2709 msgid "``\\x1d``" msgstr "" -#: ../../library/stdtypes.rst:2709 msgid "Group Separator" msgstr "" -#: ../../library/stdtypes.rst:2711 msgid "``\\x1e``" msgstr "" -#: ../../library/stdtypes.rst:2711 msgid "Record Separator" msgstr "" -#: ../../library/stdtypes.rst:2713 msgid "``\\x85``" msgstr "" -#: ../../library/stdtypes.rst:2713 msgid "Next Line (C1 Control Code)" msgstr "" -#: ../../library/stdtypes.rst:2715 msgid "``\\u2028``" msgstr "" -#: ../../library/stdtypes.rst:2715 msgid "Line Separator" msgstr "" -#: ../../library/stdtypes.rst:2717 msgid "``\\u2029``" msgstr "" -#: ../../library/stdtypes.rst:2717 msgid "Paragraph Separator" msgstr "" -#: ../../library/stdtypes.rst:2722 msgid "``\\v`` and ``\\f`` added to list of line boundaries." msgstr "" -#: ../../library/stdtypes.rst:2724 ../../library/stdtypes.rst:2830 -#: ../../library/stdtypes.rst:2999 ../../library/stdtypes.rst:3974 -#: ../../library/stdtypes.rst:3992 ../../library/stdtypes.rst:4082 -#: ../../library/stdtypes.rst:4098 ../../library/stdtypes.rst:4123 -#: ../../library/stdtypes.rst:4137 ../../library/stdtypes.rst:4165 -#: ../../library/stdtypes.rst:4179 ../../library/stdtypes.rst:4197 -#: ../../library/stdtypes.rst:4224 ../../library/stdtypes.rst:4247 -#: ../../library/stdtypes.rst:4274 ../../library/stdtypes.rst:4316 -#: ../../library/stdtypes.rst:4340 msgid "For example::" msgstr "" -#: ../../library/stdtypes.rst:2726 msgid "" ">>> 'ab c\\n\\nde fg\\rkl\\r\\n'.splitlines()\n" "['ab c', '', 'de fg', 'kl']\n" @@ -3880,14 +2328,9 @@ msgid "" "['ab c\\n', '\\n', 'de fg\\r', 'kl\\r\\n']" msgstr "" -#: ../../library/stdtypes.rst:2731 -msgid "" -"Unlike :meth:`~str.split` when a delimiter string *sep* is given, this " -"method returns an empty list for the empty string, and a terminal line break " -"does not result in an extra line::" +msgid "Unlike :meth:`~str.split` when a delimiter string *sep* is given, this method returns an empty list for the empty string, and a terminal line break does not result in an extra line::" msgstr "" -#: ../../library/stdtypes.rst:2735 msgid "" ">>> \"\".splitlines()\n" "[]\n" @@ -3895,11 +2338,9 @@ msgid "" "['One line']" msgstr "" -#: ../../library/stdtypes.rst:2740 msgid "For comparison, ``split('\\n')`` gives::" msgstr "" -#: ../../library/stdtypes.rst:2742 msgid "" ">>> ''.split('\\n')\n" "['']\n" @@ -3907,15 +2348,9 @@ msgid "" "['Two lines', '']" msgstr "" -#: ../../library/stdtypes.rst:2750 -msgid "" -"Return ``True`` if string starts with the *prefix*, otherwise return " -"``False``. *prefix* can also be a tuple of prefixes to look for. With " -"optional *start*, test string beginning at that position. With optional " -"*end*, stop comparing string at that position." +msgid "Return ``True`` if string starts with the *prefix*, otherwise return ``False``. *prefix* can also be a tuple of prefixes to look for. With optional *start*, test string beginning at that position. With optional *end*, stop comparing string at that position." msgstr "" -#: ../../library/stdtypes.rst:2757 msgid "" ">>> 'Python'.startswith('Py')\n" "True\n" @@ -3925,24 +2360,15 @@ msgid "" "True" msgstr "" -#: ../../library/stdtypes.rst:2766 msgid "See also :meth:`endswith` and :meth:`removeprefix`." msgstr "" -#: ../../library/stdtypes.rst:2771 -msgid "" -"Return a copy of the string with the leading and trailing characters " -"removed. The *chars* argument is a string specifying the set of characters " -"to be removed. If omitted or ``None``, the *chars* argument defaults to " -"removing whitespace. The *chars* argument is not a prefix or suffix; rather, " -"all combinations of its values are stripped." +msgid "Return a copy of the string with the leading and trailing characters removed. The *chars* argument is a string specifying the set of characters to be removed. If omitted or ``None``, the *chars* argument defaults to removing whitespace. The *chars* argument is not a prefix or suffix; rather, all combinations of its values are stripped." msgstr "" -#: ../../library/stdtypes.rst:2777 msgid "Whitespace characters are defined by :meth:`str.isspace`." msgstr "" -#: ../../library/stdtypes.rst:2781 msgid "" ">>> ' spacious '.strip()\n" "'spacious'\n" @@ -3950,92 +2376,59 @@ msgid "" "'example'" msgstr "" -#: ../../library/stdtypes.rst:2788 -msgid "" -"The outermost leading and trailing *chars* argument values are stripped from " -"the string. Characters are removed from the leading end until reaching a " -"string character that is not contained in the set of characters in *chars*. " -"A similar action takes place on the trailing end." +msgid "The outermost leading and trailing *chars* argument values are stripped from the string. Characters are removed from the leading end until reaching a string character that is not contained in the set of characters in *chars*. A similar action takes place on the trailing end." msgstr "" -#: ../../library/stdtypes.rst:2795 msgid "" ">>> comment_string = '#....... Section 3.2.1 Issue #32 .......'\n" ">>> comment_string.strip('.#! ')\n" "'Section 3.2.1 Issue #32'" msgstr "" -#: ../../library/stdtypes.rst:2801 msgid "See also :meth:`rstrip`." msgstr "" -#: ../../library/stdtypes.rst:2806 -msgid "" -"Return a copy of the string with uppercase characters converted to lowercase " -"and vice versa. For example:" +msgid "Return a copy of the string with uppercase characters converted to lowercase and vice versa. For example:" msgstr "" -#: ../../library/stdtypes.rst:2809 msgid "" ">>> 'Hello World'.swapcase()\n" "'hELLO wORLD'" msgstr "" -#: ../../library/stdtypes.rst:2814 -msgid "" -"Note that it is not necessarily true that ``s.swapcase().swapcase() == s``. " -"For example:" +msgid "Note that it is not necessarily true that ``s.swapcase().swapcase() == s``. For example:" msgstr "" -#: ../../library/stdtypes.rst:2817 msgid "" ">>> 'straße'.swapcase().swapcase()\n" "'strasse'" msgstr "" -#: ../../library/stdtypes.rst:2822 msgid "See also :meth:`str.lower` and :meth:`str.upper`." msgstr "" -#: ../../library/stdtypes.rst:2827 -msgid "" -"Return a titlecased version of the string where words start with an " -"uppercase character and the remaining characters are lowercase." +msgid "Return a titlecased version of the string where words start with an uppercase character and the remaining characters are lowercase." msgstr "" -#: ../../library/stdtypes.rst:2832 msgid "" ">>> 'Hello world'.title()\n" "'Hello World'" msgstr "" -#: ../../library/stdtypes.rst:2835 ../../library/stdtypes.rst:4284 -msgid "" -"The algorithm uses a simple language-independent definition of a word as " -"groups of consecutive letters. The definition works in many contexts but it " -"means that apostrophes in contractions and possessives form word boundaries, " -"which may not be the desired result::" +msgid "The algorithm uses a simple language-independent definition of a word as groups of consecutive letters. The definition works in many contexts but it means that apostrophes in contractions and possessives form word boundaries, which may not be the desired result::" msgstr "" -#: ../../library/stdtypes.rst:2840 msgid "" ">>> \"they're bill's friends from the UK\".title()\n" "\"They'Re Bill'S Friends From The Uk\"" msgstr "" -#: ../../library/stdtypes.rst:2843 -msgid "" -"The :func:`string.capwords` function does not have this problem, as it " -"splits words on spaces only." +msgid "The :func:`string.capwords` function does not have this problem, as it splits words on spaces only." msgstr "" -#: ../../library/stdtypes.rst:2846 -msgid "" -"Alternatively, a workaround for apostrophes can be constructed using regular " -"expressions::" +msgid "Alternatively, a workaround for apostrophes can be constructed using regular expressions::" msgstr "" -#: ../../library/stdtypes.rst:2849 msgid "" ">>> import re\n" ">>> def titlecase(s):\n" @@ -4047,59 +2440,27 @@ msgid "" "\"They're Bill's Friends.\"" msgstr "" -#: ../../library/stdtypes.rst:2858 msgid "See also :meth:`istitle`." msgstr "" -#: ../../library/stdtypes.rst:2863 -msgid "" -"Return a copy of the string in which each character has been mapped through " -"the given translation table. The table must be an object that implements " -"indexing via :meth:`~object.__getitem__`, typically a :term:`mapping` " -"or :term:`sequence`. When indexed by a Unicode ordinal (an integer), the " -"table object can do any of the following: return a Unicode ordinal or a " -"string, to map the character to one or more other characters; return " -"``None``, to delete the character from the return string; or raise " -"a :exc:`LookupError` exception, to map the character to itself." +msgid "Return a copy of the string in which each character has been mapped through the given translation table. The table must be an object that implements indexing via :meth:`~object.__getitem__`, typically a :term:`mapping` or :term:`sequence`. When indexed by a Unicode ordinal (an integer), the table object can do any of the following: return a Unicode ordinal or a string, to map the character to one or more other characters; return ``None``, to delete the character from the return string; or raise a :exc:`LookupError` exception, to map the character to itself." msgstr "" -#: ../../library/stdtypes.rst:2872 -msgid "" -"You can use :meth:`str.maketrans` to create a translation map from character-" -"to-character mappings in different formats." +msgid "You can use :meth:`str.maketrans` to create a translation map from character-to-character mappings in different formats." msgstr "" -#: ../../library/stdtypes.rst:2875 -msgid "" -"See also the :mod:`codecs` module for a more flexible approach to custom " -"character mappings." +msgid "See also the :mod:`codecs` module for a more flexible approach to custom character mappings." msgstr "" -#: ../../library/stdtypes.rst:2881 -msgid "" -"Return a copy of the string with all the cased characters [4]_ converted to " -"uppercase. Note that ``s.upper().isupper()`` might be ``False`` if ``s`` " -"contains uncased characters or if the Unicode category of the resulting " -"character(s) is not \"Lu\" (Letter, uppercase), but e.g. \"Lt\" (Letter, " -"titlecase)." +msgid "Return a copy of the string with all the cased characters [4]_ converted to uppercase. Note that ``s.upper().isupper()`` might be ``False`` if ``s`` contains uncased characters or if the Unicode category of the resulting character(s) is not \"Lu\" (Letter, uppercase), but e.g. \"Lt\" (Letter, titlecase)." msgstr "" -#: ../../library/stdtypes.rst:2887 -msgid "" -"The uppercasing algorithm used is `described in section 3.13 'Default Case " -"Folding' of the Unicode Standard `__." +msgid "The uppercasing algorithm used is `described in section 3.13 'Default Case Folding' of the Unicode Standard `__." msgstr "" -#: ../../library/stdtypes.rst:2894 -msgid "" -"Return a copy of the string left filled with ASCII ``'0'`` digits to make a " -"string of length *width*. A leading sign prefix (``'+'``/``'-'``) is handled " -"by inserting the padding *after* the sign character rather than before. The " -"original string is returned if *width* is less than or equal to ``len(s)``." +msgid "Return a copy of the string left filled with ASCII ``'0'`` digits to make a string of length *width*. A leading sign prefix (``'+'``/``'-'``) is handled by inserting the padding *after* the sign character rather than before. The original string is returned if *width* is less than or equal to ``len(s)``." msgstr "" -#: ../../library/stdtypes.rst:2902 msgid "" ">>> \"42\".zfill(5)\n" "'00042'\n" @@ -4107,95 +2468,59 @@ msgid "" "'-0042'" msgstr "" -#: ../../library/stdtypes.rst:2929 msgid "Formatted String Literals (f-strings)" msgstr "" -#: ../../library/stdtypes.rst:2932 -msgid "" -"The :keyword:`await` and :keyword:`async for` can be used in expressions " -"within f-strings." +msgid "The :keyword:`await` and :keyword:`async for` can be used in expressions within f-strings." msgstr "" -#: ../../library/stdtypes.rst:2935 msgid "Added the debug specifier (``=``)" msgstr "" -#: ../../library/stdtypes.rst:2937 -msgid "" -"Many restrictions on expressions within f-strings have been removed. " -"Notably, nested strings, comments, and backslashes are now permitted." +msgid "Many restrictions on expressions within f-strings have been removed. Notably, nested strings, comments, and backslashes are now permitted." msgstr "" -#: ../../library/stdtypes.rst:2941 -msgid "" -"An :dfn:`f-string` (formally a :dfn:`formatted string literal`) is a string " -"literal that is prefixed with ``f`` or ``F``. This type of string literal " -"allows embedding the results of arbitrary Python expressions within " -"*replacement fields*, which are delimited by curly brackets (``{}``). Each " -"replacement field must contain an expression, optionally followed by:" +msgid "An :dfn:`f-string` (formally a :dfn:`formatted string literal`) is a string literal that is prefixed with ``f`` or ``F``. This type of string literal allows embedding the results of arbitrary Python expressions within *replacement fields*, which are delimited by curly brackets (``{}``). Each replacement field must contain an expression, optionally followed by:" msgstr "" -#: ../../library/stdtypes.rst:2948 msgid "a *debug specifier* -- an equal sign (``=``);" msgstr "" -#: ../../library/stdtypes.rst:2949 msgid "a *conversion specifier* -- ``!s``, ``!r`` or ``!a``; and/or" msgstr "" -#: ../../library/stdtypes.rst:2950 msgid "a *format specifier* prefixed with a colon (``:``)." msgstr "" -#: ../../library/stdtypes.rst:2952 -msgid "" -"See the :ref:`Lexical Analysis section on f-strings ` for details " -"on the syntax of these fields." +msgid "See the :ref:`Lexical Analysis section on f-strings ` for details on the syntax of these fields." msgstr "" -#: ../../library/stdtypes.rst:2956 msgid "Debug specifier" msgstr "" -#: ../../library/stdtypes.rst:2960 -msgid "" -"If a debug specifier -- an equal sign (``=``) -- appears after the " -"replacement field expression, the resulting f-string will contain the " -"expression's source, the equal sign, and the value of the expression. This " -"is often useful for debugging::" +msgid "If a debug specifier -- an equal sign (``=``) -- appears after the replacement field expression, the resulting f-string will contain the expression's source, the equal sign, and the value of the expression. This is often useful for debugging::" msgstr "" -#: ../../library/stdtypes.rst:2965 msgid "" ">>> number = 14.3\n" ">>> f'{number=}'\n" "'number=14.3'" msgstr "" -#: ../../library/stdtypes.rst:2969 -msgid "" -"Whitespace before, inside and after the expression, as well as whitespace " -"after the equal sign, is significant --- it is retained in the result::" +msgid "Whitespace before, inside and after the expression, as well as whitespace after the equal sign, is significant --- it is retained in the result::" msgstr "" -#: ../../library/stdtypes.rst:2972 msgid "" ">>> f'{ number - 4 = }'\n" "' number - 4 = 10.3'" msgstr "" -#: ../../library/stdtypes.rst:2977 msgid "Conversion specifier" msgstr "" -#: ../../library/stdtypes.rst:2979 -msgid "" -"By default, the value of a replacement field expression is converted to a " -"string using :func:`str`::" +msgid "By default, the value of a replacement field expression is converted to a string using :func:`str`::" msgstr "" -#: ../../library/stdtypes.rst:2982 msgid "" ">>> from fractions import Fraction\n" ">>> one_third = Fraction(1, 3)\n" @@ -4203,36 +2528,26 @@ msgid "" "'1/3'" msgstr "" -#: ../../library/stdtypes.rst:2987 -msgid "" -"When a debug specifier but no format specifier is used, the default " -"conversion instead uses :func:`repr`::" +msgid "When a debug specifier but no format specifier is used, the default conversion instead uses :func:`repr`::" msgstr "" -#: ../../library/stdtypes.rst:2990 msgid "" ">>> f'{one_third = }'\n" "'one_third = Fraction(1, 3)'" msgstr "" -#: ../../library/stdtypes.rst:2993 -msgid "" -"The conversion can be specified explicitly using one of these specifiers:" +msgid "The conversion can be specified explicitly using one of these specifiers:" msgstr "" -#: ../../library/stdtypes.rst:2995 msgid "``!s`` for :func:`str`" msgstr "" -#: ../../library/stdtypes.rst:2996 msgid "``!r`` for :func:`repr`" msgstr "" -#: ../../library/stdtypes.rst:2997 msgid "``!a`` for :func:`ascii`" msgstr "" -#: ../../library/stdtypes.rst:3001 msgid "" ">>> str(one_third)\n" "'1/3'\n" @@ -4250,21 +2565,12 @@ msgid "" "\"string = '\\\\xa1ko\\\\u010dka \\\\U0001f638!'\"" msgstr "" -#: ../../library/stdtypes.rst:3018 msgid "Format specifier" msgstr "" -#: ../../library/stdtypes.rst:3020 -msgid "" -"After the expression has been evaluated, and possibly converted using an " -"explicit conversion specifier, it is formatted using the :func:`format` " -"function. If the replacement field includes a *format specifier* introduced " -"by a colon (``:``), the specifier is passed to :func:`!format` as the second " -"argument. The result of :func:`!format` is then used as the final value for " -"the replacement field. For example::" +msgid "After the expression has been evaluated, and possibly converted using an explicit conversion specifier, it is formatted using the :func:`format` function. If the replacement field includes a *format specifier* introduced by a colon (``:``), the specifier is passed to :func:`!format` as the second argument. The result of :func:`!format` is then used as the final value for the replacement field. For example::" msgstr "" -#: ../../library/stdtypes.rst:3027 msgid "" ">>> from fractions import Fraction\n" ">>> one_third = Fraction(1, 3)\n" @@ -4278,820 +2584,447 @@ msgid "" "'one_third = ~~~~~~~1/3~'" msgstr "" -#: ../../library/stdtypes.rst:3041 msgid "Template String Literals (t-strings)" msgstr "" -#: ../../library/stdtypes.rst:3043 -msgid "" -"An :dfn:`t-string` (formally a :dfn:`template string literal`) is a string " -"literal that is prefixed with ``t`` or ``T``." +msgid "An :dfn:`t-string` (formally a :dfn:`template string literal`) is a string literal that is prefixed with ``t`` or ``T``." msgstr "" -#: ../../library/stdtypes.rst:3046 -msgid "" -"These strings follow the same syntax and evaluation rules as :ref:`formatted " -"string literals `, with for the following differences:" +msgid "These strings follow the same syntax and evaluation rules as :ref:`formatted string literals `, with for the following differences:" msgstr "" -#: ../../library/stdtypes.rst:3050 -msgid "" -"Rather than evaluating to a ``str`` object, template string literals " -"evaluate to a :class:`string.templatelib.Template` object." +msgid "Rather than evaluating to a ``str`` object, template string literals evaluate to a :class:`string.templatelib.Template` object." msgstr "" -#: ../../library/stdtypes.rst:3053 -msgid "" -"The :func:`format` protocol is not used. Instead, the format specifier and " -"conversions (if any) are passed to a " -"new :class:`~string.templatelib.Interpolation` object that is created for " -"each evaluated expression. It is up to code that processes the " -"resulting :class:`~string.templatelib.Template` object to decide how to " -"handle format specifiers and conversions." +msgid "The :func:`format` protocol is not used. Instead, the format specifier and conversions (if any) are passed to a new :class:`~string.templatelib.Interpolation` object that is created for each evaluated expression. It is up to code that processes the resulting :class:`~string.templatelib.Template` object to decide how to handle format specifiers and conversions." msgstr "" -#: ../../library/stdtypes.rst:3060 -msgid "" -"Format specifiers containing nested replacement fields are evaluated " -"eagerly, prior to being passed to " -"the :class:`~string.templatelib.Interpolation` object. For instance, an " -"interpolation of the form ``{amount:.{precision}f}`` will evaluate the inner " -"expression ``{precision}`` to determine the value of the ``format_spec`` " -"attribute. If ``precision`` were to be ``2``, the resulting format specifier " -"would be ``'.2f'``." +msgid "Format specifiers containing nested replacement fields are evaluated eagerly, prior to being passed to the :class:`~string.templatelib.Interpolation` object. For instance, an interpolation of the form ``{amount:.{precision}f}`` will evaluate the inner expression ``{precision}`` to determine the value of the ``format_spec`` attribute. If ``precision`` were to be ``2``, the resulting format specifier would be ``'.2f'``." msgstr "" -#: ../../library/stdtypes.rst:3068 -msgid "" -"When the equals sign ``'='`` is provided in an interpolation expression, the " -"text of the expression is appended to the literal string that precedes the " -"relevant interpolation. This includes the equals sign and any surrounding " -"whitespace. The :class:`!Interpolation` instance for the expression will be " -"created as normal, except " -"that :attr:`~string.templatelib.Interpolation.conversion` will be set to " -"'``r``' (:func:`repr`) by default. If an explicit conversion or format " -"specifier are provided, this will override the default behaviour." +msgid "When the equals sign ``'='`` is provided in an interpolation expression, the text of the expression is appended to the literal string that precedes the relevant interpolation. This includes the equals sign and any surrounding whitespace. The :class:`!Interpolation` instance for the expression will be created as normal, except that :attr:`~string.templatelib.Interpolation.conversion` will be set to '``r``' (:func:`repr`) by default. If an explicit conversion or format specifier are provided, this will override the default behaviour." msgstr "" -#: ../../library/stdtypes.rst:3082 msgid "``printf``-style String Formatting" msgstr "" -#: ../../library/stdtypes.rst:3095 -msgid "" -"The formatting operations described here exhibit a variety of quirks that " -"lead to a number of common errors (such as failing to display tuples and " -"dictionaries correctly)." +msgid "The formatting operations described here exhibit a variety of quirks that lead to a number of common errors (such as failing to display tuples and dictionaries correctly)." msgstr "" -#: ../../library/stdtypes.rst:3099 -msgid "" -"Using :ref:`formatted string literals `, the :meth:`str.format` " -"interface, or :class:`string.Template` may help avoid these errors. Each of " -"these alternatives provides their own trade-offs and benefits of simplicity, " -"flexibility, and/or extensibility." +msgid "Using :ref:`formatted string literals `, the :meth:`str.format` interface, or :class:`string.Template` may help avoid these errors. Each of these alternatives provides their own trade-offs and benefits of simplicity, flexibility, and/or extensibility." msgstr "" -#: ../../library/stdtypes.rst:3104 -msgid "" -"String objects have one unique built-in operation: the ``%`` operator " -"(modulo). This is also known as the string *formatting* or *interpolation* " -"operator. Given ``format % values`` (where *format* is a string), ``%`` " -"conversion specifications in *format* are replaced with zero or more " -"elements of *values*. The effect is similar to using the :c:func:`sprintf` " -"function in the C language. For example:" +msgid "String objects have one unique built-in operation: the ``%`` operator (modulo). This is also known as the string *formatting* or *interpolation* operator. Given ``format % values`` (where *format* is a string), ``%`` conversion specifications in *format* are replaced with zero or more elements of *values*. The effect is similar to using the :c:func:`sprintf` function in the C language. For example:" msgstr "" -#: ../../library/stdtypes.rst:3111 msgid "" ">>> print('%s has %d quote types.' % ('Python', 2))\n" "Python has 2 quote types." msgstr "" -#: ../../library/stdtypes.rst:3116 -msgid "" -"If *format* requires a single argument, *values* may be a single non-tuple " -"object. [5]_ Otherwise, *values* must be a tuple with exactly the number of " -"items specified by the format string, or a single mapping object (for " -"example, a dictionary)." +msgid "If *format* requires a single argument, *values* may be a single non-tuple object. [5]_ Otherwise, *values* must be a tuple with exactly the number of items specified by the format string, or a single mapping object (for example, a dictionary)." msgstr "" -#: ../../library/stdtypes.rst:3126 ../../library/stdtypes.rst:4395 -msgid "" -"A conversion specifier contains two or more characters and has the following " -"components, which must occur in this order:" +msgid "A conversion specifier contains two or more characters and has the following components, which must occur in this order:" msgstr "" -#: ../../library/stdtypes.rst:3129 ../../library/stdtypes.rst:4398 msgid "The ``'%'`` character, which marks the start of the specifier." msgstr "" -#: ../../library/stdtypes.rst:3131 ../../library/stdtypes.rst:4400 -msgid "" -"Mapping key (optional), consisting of a parenthesised sequence of characters " -"(for example, ``(somename)``)." +msgid "Mapping key (optional), consisting of a parenthesised sequence of characters (for example, ``(somename)``)." msgstr "" -#: ../../library/stdtypes.rst:3134 ../../library/stdtypes.rst:4403 -msgid "" -"Conversion flags (optional), which affect the result of some conversion " -"types." +msgid "Conversion flags (optional), which affect the result of some conversion types." msgstr "" -#: ../../library/stdtypes.rst:3137 ../../library/stdtypes.rst:4406 -msgid "" -"Minimum field width (optional). If specified as an ``'*'`` (asterisk), the " -"actual width is read from the next element of the tuple in *values*, and the " -"object to convert comes after the minimum field width and optional precision." +msgid "Minimum field width (optional). If specified as an ``'*'`` (asterisk), the actual width is read from the next element of the tuple in *values*, and the object to convert comes after the minimum field width and optional precision." msgstr "" -#: ../../library/stdtypes.rst:3141 ../../library/stdtypes.rst:4410 -msgid "" -"Precision (optional), given as a ``'.'`` (dot) followed by the precision. " -"If specified as ``'*'`` (an asterisk), the actual precision is read from the " -"next element of the tuple in *values*, and the value to convert comes after " -"the precision." +msgid "Precision (optional), given as a ``'.'`` (dot) followed by the precision. If specified as ``'*'`` (an asterisk), the actual precision is read from the next element of the tuple in *values*, and the value to convert comes after the precision." msgstr "" -#: ../../library/stdtypes.rst:3146 ../../library/stdtypes.rst:4415 msgid "Length modifier (optional)." msgstr "" -#: ../../library/stdtypes.rst:3148 ../../library/stdtypes.rst:4417 msgid "Conversion type." msgstr "" -#: ../../library/stdtypes.rst:3150 -msgid "" -"When the right argument is a dictionary (or other mapping type), then the " -"formats in the string *must* include a parenthesised mapping key into that " -"dictionary inserted immediately after the ``'%'`` character. The mapping key " -"selects the value to be formatted from the mapping. For example:" +msgid "When the right argument is a dictionary (or other mapping type), then the formats in the string *must* include a parenthesised mapping key into that dictionary inserted immediately after the ``'%'`` character. The mapping key selects the value to be formatted from the mapping. For example:" msgstr "" -#: ../../library/stdtypes.rst:3159 ../../library/stdtypes.rst:4428 -msgid "" -"In this case no ``*`` specifiers may occur in a format (since they require a " -"sequential parameter list)." +msgid "In this case no ``*`` specifiers may occur in a format (since they require a sequential parameter list)." msgstr "" -#: ../../library/stdtypes.rst:3162 ../../library/stdtypes.rst:4431 msgid "The conversion flag characters are:" msgstr "" -#: ../../library/stdtypes.rst:3171 ../../library/stdtypes.rst:4440 msgid "Flag" msgstr "" -#: ../../library/stdtypes.rst:3173 ../../library/stdtypes.rst:4442 msgid "``'#'``" msgstr "" -#: ../../library/stdtypes.rst:3173 ../../library/stdtypes.rst:4442 -msgid "" -"The value conversion will use the \"alternate form\" (where defined below)." +msgid "The value conversion will use the \"alternate form\" (where defined below)." msgstr "" -#: ../../library/stdtypes.rst:3176 ../../library/stdtypes.rst:4445 msgid "``'0'``" msgstr "" -#: ../../library/stdtypes.rst:3176 ../../library/stdtypes.rst:4445 msgid "The conversion will be zero padded for numeric values." msgstr "" -#: ../../library/stdtypes.rst:3178 ../../library/stdtypes.rst:4447 msgid "``'-'``" msgstr "" -#: ../../library/stdtypes.rst:3178 ../../library/stdtypes.rst:4447 -msgid "" -"The converted value is left adjusted (overrides the ``'0'`` conversion if " -"both are given)." +msgid "The converted value is left adjusted (overrides the ``'0'`` conversion if both are given)." msgstr "" -#: ../../library/stdtypes.rst:3181 ../../library/stdtypes.rst:4450 msgid "``' '``" msgstr "" -#: ../../library/stdtypes.rst:3181 ../../library/stdtypes.rst:4450 -msgid "" -"(a space) A blank should be left before a positive number (or empty string) " -"produced by a signed conversion." +msgid "(a space) A blank should be left before a positive number (or empty string) produced by a signed conversion." msgstr "" -#: ../../library/stdtypes.rst:3184 ../../library/stdtypes.rst:4453 msgid "``'+'``" msgstr "" -#: ../../library/stdtypes.rst:3184 ../../library/stdtypes.rst:4453 -msgid "" -"A sign character (``'+'`` or ``'-'``) will precede the conversion (overrides " -"a \"space\" flag)." +msgid "A sign character (``'+'`` or ``'-'``) will precede the conversion (overrides a \"space\" flag)." msgstr "" -#: ../../library/stdtypes.rst:3188 ../../library/stdtypes.rst:4457 -msgid "" -"A length modifier (``h``, ``l``, or ``L``) may be present, but is ignored as " -"it is not necessary for Python -- so e.g. ``%ld`` is identical to ``%d``." +msgid "A length modifier (``h``, ``l``, or ``L``) may be present, but is ignored as it is not necessary for Python -- so e.g. ``%ld`` is identical to ``%d``." msgstr "" -#: ../../library/stdtypes.rst:3191 ../../library/stdtypes.rst:4460 msgid "The conversion types are:" msgstr "" -#: ../../library/stdtypes.rst:3194 ../../library/stdtypes.rst:4463 msgid "Conversion" msgstr "" -#: ../../library/stdtypes.rst:3196 ../../library/stdtypes.rst:4465 msgid "``'d'``" msgstr "" -#: ../../library/stdtypes.rst:3196 ../../library/stdtypes.rst:3198 -#: ../../library/stdtypes.rst:4465 ../../library/stdtypes.rst:4467 msgid "Signed integer decimal." msgstr "" -#: ../../library/stdtypes.rst:3198 ../../library/stdtypes.rst:4467 msgid "``'i'``" msgstr "" -#: ../../library/stdtypes.rst:3200 ../../library/stdtypes.rst:4469 msgid "``'o'``" msgstr "" -#: ../../library/stdtypes.rst:3200 ../../library/stdtypes.rst:4469 msgid "Signed octal value." msgstr "" -#: ../../library/stdtypes.rst:3202 ../../library/stdtypes.rst:4471 msgid "``'u'``" msgstr "" -#: ../../library/stdtypes.rst:3202 ../../library/stdtypes.rst:4471 msgid "Obsolete type -- it is identical to ``'d'``." msgstr "" -#: ../../library/stdtypes.rst:3204 ../../library/stdtypes.rst:4473 msgid "``'x'``" msgstr "" -#: ../../library/stdtypes.rst:3204 ../../library/stdtypes.rst:4473 msgid "Signed hexadecimal (lowercase)." msgstr "" -#: ../../library/stdtypes.rst:3206 ../../library/stdtypes.rst:4475 msgid "``'X'``" msgstr "" -#: ../../library/stdtypes.rst:3206 ../../library/stdtypes.rst:4475 msgid "Signed hexadecimal (uppercase)." msgstr "" -#: ../../library/stdtypes.rst:3208 ../../library/stdtypes.rst:4477 msgid "``'e'``" msgstr "" -#: ../../library/stdtypes.rst:3208 ../../library/stdtypes.rst:4477 msgid "Floating-point exponential format (lowercase)." msgstr "" -#: ../../library/stdtypes.rst:3210 ../../library/stdtypes.rst:4479 msgid "``'E'``" msgstr "" -#: ../../library/stdtypes.rst:3210 ../../library/stdtypes.rst:4479 msgid "Floating-point exponential format (uppercase)." msgstr "" -#: ../../library/stdtypes.rst:3212 ../../library/stdtypes.rst:4481 msgid "``'f'``" msgstr "" -#: ../../library/stdtypes.rst:3212 ../../library/stdtypes.rst:3214 -#: ../../library/stdtypes.rst:4481 ../../library/stdtypes.rst:4483 msgid "Floating-point decimal format." msgstr "" -#: ../../library/stdtypes.rst:3214 ../../library/stdtypes.rst:4483 msgid "``'F'``" msgstr "" -#: ../../library/stdtypes.rst:3216 ../../library/stdtypes.rst:4485 msgid "``'g'``" msgstr "" -#: ../../library/stdtypes.rst:3216 ../../library/stdtypes.rst:4485 -msgid "" -"Floating-point format. Uses lowercase exponential format if exponent is less " -"than -4 or not less than precision, decimal format otherwise." +msgid "Floating-point format. Uses lowercase exponential format if exponent is less than -4 or not less than precision, decimal format otherwise." msgstr "" -#: ../../library/stdtypes.rst:3220 ../../library/stdtypes.rst:4489 msgid "``'G'``" msgstr "" -#: ../../library/stdtypes.rst:3220 ../../library/stdtypes.rst:4489 -msgid "" -"Floating-point format. Uses uppercase exponential format if exponent is less " -"than -4 or not less than precision, decimal format otherwise." +msgid "Floating-point format. Uses uppercase exponential format if exponent is less than -4 or not less than precision, decimal format otherwise." msgstr "" -#: ../../library/stdtypes.rst:3224 ../../library/stdtypes.rst:4493 msgid "``'c'``" msgstr "" -#: ../../library/stdtypes.rst:3224 msgid "Single character (accepts integer or single character string)." msgstr "" -#: ../../library/stdtypes.rst:3227 ../../library/stdtypes.rst:4506 msgid "``'r'``" msgstr "" -#: ../../library/stdtypes.rst:3227 msgid "String (converts any Python object using :func:`repr`)." msgstr "" -#: ../../library/stdtypes.rst:3230 ../../library/stdtypes.rst:4500 msgid "``'s'``" msgstr "" -#: ../../library/stdtypes.rst:3230 msgid "String (converts any Python object using :func:`str`)." msgstr "" -#: ../../library/stdtypes.rst:3233 ../../library/stdtypes.rst:4503 msgid "``'a'``" msgstr "" -#: ../../library/stdtypes.rst:3233 msgid "String (converts any Python object using :func:`ascii`)." msgstr "" -#: ../../library/stdtypes.rst:3236 ../../library/stdtypes.rst:4509 msgid "``'%'``" msgstr "" -#: ../../library/stdtypes.rst:3236 ../../library/stdtypes.rst:4509 msgid "No argument is converted, results in a ``'%'`` character in the result." msgstr "" -#: ../../library/stdtypes.rst:3240 -msgid "" -"For floating-point formats, the result should be correctly rounded to a " -"given precision ``p`` of digits after the decimal point. The rounding mode " -"matches that of the :func:`round` builtin." +msgid "For floating-point formats, the result should be correctly rounded to a given precision ``p`` of digits after the decimal point. The rounding mode matches that of the :func:`round` builtin." msgstr "" -#: ../../library/stdtypes.rst:3247 ../../library/stdtypes.rst:4516 -msgid "" -"The alternate form causes a leading octal specifier (``'0o'``) to be " -"inserted before the first digit." +msgid "The alternate form causes a leading octal specifier (``'0o'``) to be inserted before the first digit." msgstr "" -#: ../../library/stdtypes.rst:3251 ../../library/stdtypes.rst:4520 -msgid "" -"The alternate form causes a leading ``'0x'`` or ``'0X'`` (depending on " -"whether the ``'x'`` or ``'X'`` format was used) to be inserted before the " -"first digit." +msgid "The alternate form causes a leading ``'0x'`` or ``'0X'`` (depending on whether the ``'x'`` or ``'X'`` format was used) to be inserted before the first digit." msgstr "" -#: ../../library/stdtypes.rst:3255 ../../library/stdtypes.rst:4524 -msgid "" -"The alternate form causes the result to always contain a decimal point, even " -"if no digits follow it." +msgid "The alternate form causes the result to always contain a decimal point, even if no digits follow it." msgstr "" -#: ../../library/stdtypes.rst:3258 ../../library/stdtypes.rst:4527 -msgid "" -"The precision determines the number of digits after the decimal point and " -"defaults to 6." +msgid "The precision determines the number of digits after the decimal point and defaults to 6." msgstr "" -#: ../../library/stdtypes.rst:3262 ../../library/stdtypes.rst:4531 -msgid "" -"The alternate form causes the result to always contain a decimal point, and " -"trailing zeroes are not removed as they would otherwise be." +msgid "The alternate form causes the result to always contain a decimal point, and trailing zeroes are not removed as they would otherwise be." msgstr "" -#: ../../library/stdtypes.rst:3265 ../../library/stdtypes.rst:4534 -msgid "" -"The precision determines the number of significant digits before and after " -"the decimal point and defaults to 6." +msgid "The precision determines the number of significant digits before and after the decimal point and defaults to 6." msgstr "" -#: ../../library/stdtypes.rst:3269 ../../library/stdtypes.rst:4538 msgid "If precision is ``N``, the output is truncated to ``N`` characters." msgstr "" -#: ../../library/stdtypes.rst:3272 ../../library/stdtypes.rst:4547 msgid "See :pep:`237`." msgstr "" -#: ../../library/stdtypes.rst:3274 -msgid "" -"Since Python strings have an explicit length, ``%s`` conversions do not " -"assume that ``'\\0'`` is the end of the string." +msgid "Since Python strings have an explicit length, ``%s`` conversions do not assume that ``'\\0'`` is the end of the string." msgstr "" -#: ../../library/stdtypes.rst:3279 -msgid "" -"``%f`` conversions for numbers whose absolute value is over 1e50 are no " -"longer replaced by ``%g`` conversions." +msgid "``%f`` conversions for numbers whose absolute value is over 1e50 are no longer replaced by ``%g`` conversions." msgstr "" -#: ../../library/stdtypes.rst:3290 -msgid "" -"Binary Sequence Types " -"--- :class:`bytes`, :class:`bytearray`, :class:`memoryview`" +msgid "Binary Sequence Types --- :class:`bytes`, :class:`bytearray`, :class:`memoryview`" msgstr "" -#: ../../library/stdtypes.rst:3298 -msgid "" -"The core built-in types for manipulating binary data are :class:`bytes` " -"and :class:`bytearray`. They are supported by :class:`memoryview` which uses " -"the :ref:`buffer protocol ` to access the memory of other " -"binary objects without needing to make a copy." +msgid "The core built-in types for manipulating binary data are :class:`bytes` and :class:`bytearray`. They are supported by :class:`memoryview` which uses the :ref:`buffer protocol ` to access the memory of other binary objects without needing to make a copy." msgstr "" -#: ../../library/stdtypes.rst:3303 -msgid "" -"The :mod:`array` module supports efficient storage of basic data types like " -"32-bit integers and IEEE754 double-precision floating values." +msgid "The :mod:`array` module supports efficient storage of basic data types like 32-bit integers and IEEE754 double-precision floating values." msgstr "" -#: ../../library/stdtypes.rst:3309 msgid "Bytes Objects" msgstr "" -#: ../../library/stdtypes.rst:3313 -msgid "" -"Bytes objects are immutable sequences of single bytes. Since many major " -"binary protocols are based on the ASCII text encoding, bytes objects offer " -"several methods that are only valid when working with ASCII compatible data " -"and are closely related to string objects in a variety of other ways." +msgid "Bytes objects are immutable sequences of single bytes. Since many major binary protocols are based on the ASCII text encoding, bytes objects offer several methods that are only valid when working with ASCII compatible data and are closely related to string objects in a variety of other ways." msgstr "" -#: ../../library/stdtypes.rst:3321 -msgid "" -"Firstly, the syntax for bytes literals is largely the same as that for " -"string literals, except that a ``b`` prefix is added:" +msgid "Firstly, the syntax for bytes literals is largely the same as that for string literals, except that a ``b`` prefix is added:" msgstr "" -#: ../../library/stdtypes.rst:3324 msgid "Single quotes: ``b'still allows embedded \"double\" quotes'``" msgstr "" -#: ../../library/stdtypes.rst:3325 msgid "Double quotes: ``b\"still allows embedded 'single' quotes\"``" msgstr "" -#: ../../library/stdtypes.rst:3326 -msgid "" -"Triple quoted: ``b'''3 single quotes'''``, ``b\"\"\"3 double quotes\"\"\"``" +msgid "Triple quoted: ``b'''3 single quotes'''``, ``b\"\"\"3 double quotes\"\"\"``" msgstr "" -#: ../../library/stdtypes.rst:3328 -msgid "" -"Only ASCII characters are permitted in bytes literals (regardless of the " -"declared source code encoding). Any binary values over 127 must be entered " -"into bytes literals using the appropriate escape sequence." +msgid "Only ASCII characters are permitted in bytes literals (regardless of the declared source code encoding). Any binary values over 127 must be entered into bytes literals using the appropriate escape sequence." msgstr "" -#: ../../library/stdtypes.rst:3332 -msgid "" -"As with string literals, bytes literals may also use a ``r`` prefix to " -"disable processing of escape sequences. See :ref:`strings` for more about " -"the various forms of bytes literal, including supported escape sequences." +msgid "As with string literals, bytes literals may also use a ``r`` prefix to disable processing of escape sequences. See :ref:`strings` for more about the various forms of bytes literal, including supported escape sequences." msgstr "" -#: ../../library/stdtypes.rst:3336 -msgid "" -"While bytes literals and representations are based on ASCII text, bytes " -"objects actually behave like immutable sequences of integers, with each " -"value in the sequence restricted such that ``0 <= x < 256`` (attempts to " -"violate this restriction will trigger :exc:`ValueError`). This is done " -"deliberately to emphasise that while many binary formats include ASCII based " -"elements and can be usefully manipulated with some text-oriented algorithms, " -"this is not generally the case for arbitrary binary data (blindly applying " -"text processing algorithms to binary data formats that are not ASCII " -"compatible will usually lead to data corruption)." +msgid "While bytes literals and representations are based on ASCII text, bytes objects actually behave like immutable sequences of integers, with each value in the sequence restricted such that ``0 <= x < 256`` (attempts to violate this restriction will trigger :exc:`ValueError`). This is done deliberately to emphasise that while many binary formats include ASCII based elements and can be usefully manipulated with some text-oriented algorithms, this is not generally the case for arbitrary binary data (blindly applying text processing algorithms to binary data formats that are not ASCII compatible will usually lead to data corruption)." msgstr "" -#: ../../library/stdtypes.rst:3346 -msgid "" -"In addition to the literal forms, bytes objects can be created in a number " -"of other ways:" +msgid "In addition to the literal forms, bytes objects can be created in a number of other ways:" msgstr "" -#: ../../library/stdtypes.rst:3349 msgid "A zero-filled bytes object of a specified length: ``bytes(10)``" msgstr "" -#: ../../library/stdtypes.rst:3350 msgid "From an iterable of integers: ``bytes(range(20))``" msgstr "" -#: ../../library/stdtypes.rst:3351 msgid "Copying existing binary data via the buffer protocol: ``bytes(obj)``" msgstr "" -#: ../../library/stdtypes.rst:3353 msgid "Also see the :ref:`bytes ` built-in." msgstr "" -#: ../../library/stdtypes.rst:3355 -msgid "" -"Since 2 hexadecimal digits correspond precisely to a single byte, " -"hexadecimal numbers are a commonly used format for describing binary data. " -"Accordingly, the bytes type has an additional class method to read data in " -"that format:" +msgid "Since 2 hexadecimal digits correspond precisely to a single byte, hexadecimal numbers are a commonly used format for describing binary data. Accordingly, the bytes type has an additional class method to read data in that format:" msgstr "" -#: ../../library/stdtypes.rst:3361 -msgid "" -"This :class:`bytes` class method returns a bytes object, decoding the given " -"string object. The string must contain two hexadecimal digits per byte, " -"with ASCII whitespace being ignored." +msgid "This :class:`bytes` class method returns a bytes object, decoding the given string object. The string must contain two hexadecimal digits per byte, with ASCII whitespace being ignored." msgstr "" -#: ../../library/stdtypes.rst:3368 -msgid "" -":meth:`bytes.fromhex` now skips all ASCII whitespace in the string, not just " -"spaces." +msgid ":meth:`bytes.fromhex` now skips all ASCII whitespace in the string, not just spaces." msgstr "" -#: ../../library/stdtypes.rst:3372 -msgid "" -":meth:`bytes.fromhex` now accepts ASCII :class:`bytes` and :term:`bytes-like " -"objects ` as input." +msgid ":meth:`bytes.fromhex` now accepts ASCII :class:`bytes` and :term:`bytes-like objects ` as input." msgstr "" -#: ../../library/stdtypes.rst:3376 -msgid "" -"A reverse conversion function exists to transform a bytes object into its " -"hexadecimal representation." +msgid "A reverse conversion function exists to transform a bytes object into its hexadecimal representation." msgstr "" -#: ../../library/stdtypes.rst:3382 ../../library/stdtypes.rst:3473 -msgid "" -"Return a string object containing two hexadecimal digits for each byte in " -"the instance." +msgid "Return a string object containing two hexadecimal digits for each byte in the instance." msgstr "" -#: ../../library/stdtypes.rst:3388 -msgid "" -"If you want to make the hex string easier to read, you can specify a single " -"character separator *sep* parameter to include in the output. By default, " -"this separator will be included between each byte. A second optional " -"*bytes_per_sep* parameter controls the spacing. Positive values calculate " -"the separator position from the right, negative values from the left." +msgid "If you want to make the hex string easier to read, you can specify a single character separator *sep* parameter to include in the output. By default, this separator will be included between each byte. A second optional *bytes_per_sep* parameter controls the spacing. Positive values calculate the separator position from the right, negative values from the left." msgstr "" -#: ../../library/stdtypes.rst:3405 -msgid "" -":meth:`bytes.hex` now supports optional *sep* and *bytes_per_sep* parameters " -"to insert separators between bytes in the hex output." +msgid ":meth:`bytes.hex` now supports optional *sep* and *bytes_per_sep* parameters to insert separators between bytes in the hex output." msgstr "" -#: ../../library/stdtypes.rst:3409 -msgid "" -"Since bytes objects are sequences of integers (akin to a tuple), for a bytes " -"object *b*, ``b[0]`` will be an integer, while ``b[0:1]`` will be a bytes " -"object of length 1. (This contrasts with text strings, where both indexing " -"and slicing will produce a string of length 1)" +msgid "Since bytes objects are sequences of integers (akin to a tuple), for a bytes object *b*, ``b[0]`` will be an integer, while ``b[0:1]`` will be a bytes object of length 1. (This contrasts with text strings, where both indexing and slicing will produce a string of length 1)" msgstr "" -#: ../../library/stdtypes.rst:3414 -msgid "" -"The representation of bytes objects uses the literal format (``b'...'``) " -"since it is often more useful than e.g. ``bytes([46, 46, 46])``. You can " -"always convert a bytes object into a list of integers using ``list(b)``." +msgid "The representation of bytes objects uses the literal format (``b'...'``) since it is often more useful than e.g. ``bytes([46, 46, 46])``. You can always convert a bytes object into a list of integers using ``list(b)``." msgstr "" -#: ../../library/stdtypes.rst:3422 msgid "Bytearray Objects" msgstr "" -#: ../../library/stdtypes.rst:3426 -msgid "" -":class:`bytearray` objects are a mutable counterpart to :class:`bytes` " -"objects." +msgid ":class:`bytearray` objects are a mutable counterpart to :class:`bytes` objects." msgstr "" -#: ../../library/stdtypes.rst:3432 -msgid "" -"There is no dedicated literal syntax for bytearray objects, instead they are " -"always created by calling the constructor:" +msgid "There is no dedicated literal syntax for bytearray objects, instead they are always created by calling the constructor:" msgstr "" -#: ../../library/stdtypes.rst:3435 msgid "Creating an empty instance: ``bytearray()``" msgstr "" -#: ../../library/stdtypes.rst:3436 msgid "Creating a zero-filled instance with a given length: ``bytearray(10)``" msgstr "" -#: ../../library/stdtypes.rst:3437 msgid "From an iterable of integers: ``bytearray(range(20))``" msgstr "" -#: ../../library/stdtypes.rst:3438 -msgid "" -"Copying existing binary data via the buffer protocol: ``bytearray(b'Hi!')``" +msgid "Copying existing binary data via the buffer protocol: ``bytearray(b'Hi!')``" msgstr "" -#: ../../library/stdtypes.rst:3440 -msgid "" -"As bytearray objects are mutable, they support the :ref:`mutable ` sequence operations in addition to the common bytes and bytearray " -"operations described in :ref:`bytes-methods`." +msgid "As bytearray objects are mutable, they support the :ref:`mutable ` sequence operations in addition to the common bytes and bytearray operations described in :ref:`bytes-methods`." msgstr "" -#: ../../library/stdtypes.rst:3444 msgid "Also see the :ref:`bytearray ` built-in." msgstr "" -#: ../../library/stdtypes.rst:3446 -msgid "" -"Since 2 hexadecimal digits correspond precisely to a single byte, " -"hexadecimal numbers are a commonly used format for describing binary data. " -"Accordingly, the bytearray type has an additional class method to read data " -"in that format:" +msgid "Since 2 hexadecimal digits correspond precisely to a single byte, hexadecimal numbers are a commonly used format for describing binary data. Accordingly, the bytearray type has an additional class method to read data in that format:" msgstr "" -#: ../../library/stdtypes.rst:3452 -msgid "" -"This :class:`bytearray` class method returns bytearray object, decoding the " -"given string object. The string must contain two hexadecimal digits per " -"byte, with ASCII whitespace being ignored." +msgid "This :class:`bytearray` class method returns bytearray object, decoding the given string object. The string must contain two hexadecimal digits per byte, with ASCII whitespace being ignored." msgstr "" -#: ../../library/stdtypes.rst:3459 -msgid "" -":meth:`bytearray.fromhex` now skips all ASCII whitespace in the string, not " -"just spaces." +msgid ":meth:`bytearray.fromhex` now skips all ASCII whitespace in the string, not just spaces." msgstr "" -#: ../../library/stdtypes.rst:3463 -msgid "" -":meth:`bytearray.fromhex` now accepts ASCII :class:`bytes` and :term:`bytes-" -"like objects ` as input." +msgid ":meth:`bytearray.fromhex` now accepts ASCII :class:`bytes` and :term:`bytes-like objects ` as input." msgstr "" -#: ../../library/stdtypes.rst:3467 -msgid "" -"A reverse conversion function exists to transform a bytearray object into " -"its hexadecimal representation." +msgid "A reverse conversion function exists to transform a bytearray object into its hexadecimal representation." msgstr "" -#: ../../library/stdtypes.rst:3481 -msgid "" -"Similar to :meth:`bytes.hex`, :meth:`bytearray.hex` now supports optional " -"*sep* and *bytes_per_sep* parameters to insert separators between bytes in " -"the hex output." +msgid "Similar to :meth:`bytes.hex`, :meth:`bytearray.hex` now supports optional *sep* and *bytes_per_sep* parameters to insert separators between bytes in the hex output." msgstr "" -#: ../../library/stdtypes.rst:3488 -msgid "" -"Resize the :class:`bytearray` to contain *size* bytes. *size* must be " -"greater than or equal to 0." +msgid "Resize the :class:`bytearray` to contain *size* bytes. *size* must be greater than or equal to 0." msgstr "" -#: ../../library/stdtypes.rst:3491 -msgid "" -"If the :class:`bytearray` needs to shrink, bytes beyond *size* are truncated." +msgid "If the :class:`bytearray` needs to shrink, bytes beyond *size* are truncated." msgstr "" -#: ../../library/stdtypes.rst:3493 -msgid "" -"If the :class:`bytearray` needs to grow, all new bytes, those beyond *size*, " -"will be set to null bytes." +msgid "If the :class:`bytearray` needs to grow, all new bytes, those beyond *size*, will be set to null bytes." msgstr "" -#: ../../library/stdtypes.rst:3497 msgid "This is equivalent to:" msgstr "" -#: ../../library/stdtypes.rst:3505 msgid "Examples:" msgstr "" -#: ../../library/stdtypes.rst:3518 -msgid "" -"Since bytearray objects are sequences of integers (akin to a list), for a " -"bytearray object *b*, ``b[0]`` will be an integer, while ``b[0:1]`` will be " -"a bytearray object of length 1. (This contrasts with text strings, where " -"both indexing and slicing will produce a string of length 1)" +msgid "Since bytearray objects are sequences of integers (akin to a list), for a bytearray object *b*, ``b[0]`` will be an integer, while ``b[0:1]`` will be a bytearray object of length 1. (This contrasts with text strings, where both indexing and slicing will produce a string of length 1)" msgstr "" -#: ../../library/stdtypes.rst:3523 -msgid "" -"The representation of bytearray objects uses the bytes literal format " -"(``bytearray(b'...')``) since it is often more useful than e.g. " -"``bytearray([46, 46, 46])``. You can always convert a bytearray object into " -"a list of integers using ``list(b)``." +msgid "The representation of bytearray objects uses the bytes literal format (``bytearray(b'...')``) since it is often more useful than e.g. ``bytearray([46, 46, 46])``. You can always convert a bytearray object into a list of integers using ``list(b)``." msgstr "" -#: ../../library/stdtypes.rst:3530 -msgid "" -"For detailed information on thread-safety guarantees for :class:`bytearray` " -"objects, see :ref:`thread-safety-bytearray`." +msgid "For detailed information on thread-safety guarantees for :class:`bytearray` objects, see :ref:`thread-safety-bytearray`." msgstr "" -#: ../../library/stdtypes.rst:3537 msgid "Bytes and Bytearray Operations" msgstr "" -#: ../../library/stdtypes.rst:3542 -msgid "" -"Both bytes and bytearray objects support the :ref:`common ` " -"sequence operations. They interoperate not just with operands of the same " -"type, but with any :term:`bytes-like object`. Due to this flexibility, they " -"can be freely mixed in operations without causing errors. However, the " -"return type of the result may depend on the order of operands." +msgid "Both bytes and bytearray objects support the :ref:`common ` sequence operations. They interoperate not just with operands of the same type, but with any :term:`bytes-like object`. Due to this flexibility, they can be freely mixed in operations without causing errors. However, the return type of the result may depend on the order of operands." msgstr "" -#: ../../library/stdtypes.rst:3550 -msgid "" -"The methods on bytes and bytearray objects don't accept strings as their " -"arguments, just as the methods on strings don't accept bytes as their " -"arguments. For example, you have to write::" +msgid "The methods on bytes and bytearray objects don't accept strings as their arguments, just as the methods on strings don't accept bytes as their arguments. For example, you have to write::" msgstr "" -#: ../../library/stdtypes.rst:3554 msgid "" "a = \"abc\"\n" "b = a.replace(\"a\", \"f\")" msgstr "" -#: ../../library/stdtypes.rst:3557 msgid "and::" msgstr "" -#: ../../library/stdtypes.rst:3559 msgid "" "a = b\"abc\"\n" "b = a.replace(b\"a\", b\"f\")" msgstr "" -#: ../../library/stdtypes.rst:3562 -msgid "" -"Some bytes and bytearray operations assume the use of ASCII compatible " -"binary formats, and hence should be avoided when working with arbitrary " -"binary data. These restrictions are covered below." +msgid "Some bytes and bytearray operations assume the use of ASCII compatible binary formats, and hence should be avoided when working with arbitrary binary data. These restrictions are covered below." msgstr "" -#: ../../library/stdtypes.rst:3567 -msgid "" -"Using these ASCII based operations to manipulate binary data that is not " -"stored in an ASCII based format may lead to data corruption." +msgid "Using these ASCII based operations to manipulate binary data that is not stored in an ASCII based format may lead to data corruption." msgstr "" -#: ../../library/stdtypes.rst:3570 -msgid "" -"The following methods on bytes and bytearray objects can be used with " -"arbitrary binary data." +msgid "The following methods on bytes and bytearray objects can be used with arbitrary binary data." msgstr "" -#: ../../library/stdtypes.rst:3576 -msgid "" -"Return the number of non-overlapping occurrences of subsequence *sub* in the " -"range [*start*, *end*]. Optional arguments *start* and *end* are " -"interpreted as in slice notation." +msgid "Return the number of non-overlapping occurrences of subsequence *sub* in the range [*start*, *end*]. Optional arguments *start* and *end* are interpreted as in slice notation." msgstr "" -#: ../../library/stdtypes.rst:3580 ../../library/stdtypes.rst:3685 -#: ../../library/stdtypes.rst:3707 ../../library/stdtypes.rst:3773 -#: ../../library/stdtypes.rst:3786 -msgid "" -"The subsequence to search for may be any :term:`bytes-like object` or an " -"integer in the range 0 to 255." +msgid "The subsequence to search for may be any :term:`bytes-like object` or an integer in the range 0 to 255." msgstr "" -#: ../../library/stdtypes.rst:3583 -msgid "" -"If *sub* is empty, returns the number of empty slices between characters " -"which is the length of the bytes object plus one." +msgid "If *sub* is empty, returns the number of empty slices between characters which is the length of the bytes object plus one." msgstr "" -#: ../../library/stdtypes.rst:3586 ../../library/stdtypes.rst:3697 -#: ../../library/stdtypes.rst:3710 ../../library/stdtypes.rst:3776 -#: ../../library/stdtypes.rst:3789 msgid "Also accept an integer in the range 0 to 255 as the subsequence." msgstr "" -#: ../../library/stdtypes.rst:3593 -msgid "" -"If the binary data starts with the *prefix* string, return " -"``bytes[len(prefix):]``. Otherwise, return a copy of the original binary " -"data::" +msgid "If the binary data starts with the *prefix* string, return ``bytes[len(prefix):]``. Otherwise, return a copy of the original binary data::" msgstr "" -#: ../../library/stdtypes.rst:3597 msgid "" ">>> b'TestHook'.removeprefix(b'Test')\n" "b'Hook'\n" @@ -5099,32 +3032,15 @@ msgid "" "b'BaseTestCase'" msgstr "" -#: ../../library/stdtypes.rst:3602 msgid "The *prefix* may be any :term:`bytes-like object`." msgstr "" -#: ../../library/stdtypes.rst:3606 ../../library/stdtypes.rst:3628 -#: ../../library/stdtypes.rst:3761 ../../library/stdtypes.rst:3854 -#: ../../library/stdtypes.rst:3868 ../../library/stdtypes.rst:3898 -#: ../../library/stdtypes.rst:3912 ../../library/stdtypes.rst:3953 -#: ../../library/stdtypes.rst:4023 ../../library/stdtypes.rst:4041 -#: ../../library/stdtypes.rst:4069 ../../library/stdtypes.rst:4208 -#: ../../library/stdtypes.rst:4263 ../../library/stdtypes.rst:4306 -#: ../../library/stdtypes.rst:4327 ../../library/stdtypes.rst:4349 -#: ../../library/stdtypes.rst:4551 -msgid "" -"The bytearray version of this method does *not* operate in place - it always " -"produces a new object, even if no changes were made." +msgid "The bytearray version of this method does *not* operate in place - it always produces a new object, even if no changes were made." msgstr "" -#: ../../library/stdtypes.rst:3615 -msgid "" -"If the binary data ends with the *suffix* string and that *suffix* is not " -"empty, return ``bytes[:-len(suffix)]``. Otherwise, return a copy of the " -"original binary data::" +msgid "If the binary data ends with the *suffix* string and that *suffix* is not empty, return ``bytes[:-len(suffix)]``. Otherwise, return a copy of the original binary data::" msgstr "" -#: ../../library/stdtypes.rst:3619 msgid "" ">>> b'MiscTests'.removesuffix(b'Tests')\n" "b'Misc'\n" @@ -5132,218 +3048,103 @@ msgid "" "b'TmpDirMixin'" msgstr "" -#: ../../library/stdtypes.rst:3624 msgid "The *suffix* may be any :term:`bytes-like object`." msgstr "" -#: ../../library/stdtypes.rst:3637 msgid "Return the bytes decoded to a :class:`str`." msgstr "" -#: ../../library/stdtypes.rst:3642 -msgid "" -"*errors* controls how decoding errors are handled. If ``'strict'`` (the " -"default), a :exc:`UnicodeError` exception is raised. Other possible values " -"are ``'ignore'``, ``'replace'``, and any other name registered " -"via :func:`codecs.register_error`. See :ref:`error-handlers` for details." +msgid "*errors* controls how decoding errors are handled. If ``'strict'`` (the default), a :exc:`UnicodeError` exception is raised. Other possible values are ``'ignore'``, ``'replace'``, and any other name registered via :func:`codecs.register_error`. See :ref:`error-handlers` for details." msgstr "" -#: ../../library/stdtypes.rst:3648 -msgid "" -"For performance reasons, the value of *errors* is not checked for validity " -"unless a decoding error actually occurs, :ref:`devmode` is enabled or " -"a :ref:`debug build ` is used." +msgid "For performance reasons, the value of *errors* is not checked for validity unless a decoding error actually occurs, :ref:`devmode` is enabled or a :ref:`debug build ` is used." msgstr "" -#: ../../library/stdtypes.rst:3654 -msgid "" -"Passing the *encoding* argument to :class:`str` allows decoding " -"any :term:`bytes-like object` directly, without needing to make a " -"temporary :class:`!bytes` or :class:`!bytearray` object." +msgid "Passing the *encoding* argument to :class:`str` allows decoding any :term:`bytes-like object` directly, without needing to make a temporary :class:`!bytes` or :class:`!bytearray` object." msgstr "" -#: ../../library/stdtypes.rst:3669 -msgid "" -"Return ``True`` if the binary data ends with the specified *suffix*, " -"otherwise return ``False``. *suffix* can also be a tuple of suffixes to " -"look for. With optional *start*, test beginning at that position. With " -"optional *end*, stop comparing at that position." +msgid "Return ``True`` if the binary data ends with the specified *suffix*, otherwise return ``False``. *suffix* can also be a tuple of suffixes to look for. With optional *start*, test beginning at that position. With optional *end*, stop comparing at that position." msgstr "" -#: ../../library/stdtypes.rst:3674 msgid "The suffix(es) to search for may be any :term:`bytes-like object`." msgstr "" -#: ../../library/stdtypes.rst:3680 -msgid "" -"Return the lowest index in the data where the subsequence *sub* is found, " -"such that *sub* is contained in the slice ``s[start:end]``. Optional " -"arguments *start* and *end* are interpreted as in slice notation. Return " -"``-1`` if *sub* is not found." +msgid "Return the lowest index in the data where the subsequence *sub* is found, such that *sub* is contained in the slice ``s[start:end]``. Optional arguments *start* and *end* are interpreted as in slice notation. Return ``-1`` if *sub* is not found." msgstr "" -#: ../../library/stdtypes.rst:3690 -msgid "" -"The :meth:`~bytes.find` method should be used only if you need to know the " -"position of *sub*. To check if *sub* is a substring or not, use " -"the :keyword:`in` operator::" +msgid "The :meth:`~bytes.find` method should be used only if you need to know the position of *sub*. To check if *sub* is a substring or not, use the :keyword:`in` operator::" msgstr "" -#: ../../library/stdtypes.rst:3694 msgid "" ">>> b'Py' in b'Python'\n" "True" msgstr "" -#: ../../library/stdtypes.rst:3704 -msgid "" -"Like :meth:`~bytes.find`, but raise :exc:`ValueError` when the subsequence " -"is not found." +msgid "Like :meth:`~bytes.find`, but raise :exc:`ValueError` when the subsequence is not found." msgstr "" -#: ../../library/stdtypes.rst:3717 -msgid "" -"Return a bytes or bytearray object which is the concatenation of the binary " -"data sequences in *iterable*. A :exc:`TypeError` will be raised if there " -"are any values in *iterable* that are not :term:`bytes-like objects `, including :class:`str` objects. The separator between " -"elements is the contents of the bytes or bytearray object providing this " -"method." +msgid "Return a bytes or bytearray object which is the concatenation of the binary data sequences in *iterable*. A :exc:`TypeError` will be raised if there are any values in *iterable* that are not :term:`bytes-like objects `, including :class:`str` objects. The separator between elements is the contents of the bytes or bytearray object providing this method." msgstr "" -#: ../../library/stdtypes.rst:3728 -msgid "" -"This static method returns a translation table usable " -"for :meth:`bytes.translate` that will map each character in *from* into the " -"character at the same position in *to*; *from* and *to* must both " -"be :term:`bytes-like objects ` and have the same length." +msgid "This static method returns a translation table usable for :meth:`bytes.translate` that will map each character in *from* into the character at the same position in *to*; *from* and *to* must both be :term:`bytes-like objects ` and have the same length." msgstr "" -#: ../../library/stdtypes.rst:3739 -msgid "" -"Split the sequence at the first occurrence of *sep*, and return a 3-tuple " -"containing the part before the separator, the separator itself or its " -"bytearray copy, and the part after the separator. If the separator is not " -"found, return a 3-tuple containing a copy of the original sequence, followed " -"by two empty bytes or bytearray objects." +msgid "Split the sequence at the first occurrence of *sep*, and return a 3-tuple containing the part before the separator, the separator itself or its bytearray copy, and the part after the separator. If the separator is not found, return a 3-tuple containing a copy of the original sequence, followed by two empty bytes or bytearray objects." msgstr "" -#: ../../library/stdtypes.rst:3746 ../../library/stdtypes.rst:3803 msgid "The separator to search for may be any :term:`bytes-like object`." msgstr "" -#: ../../library/stdtypes.rst:3752 -msgid "" -"Return a copy of the sequence with all occurrences of subsequence *old* " -"replaced by *new*. If the optional argument *count* is given, only the " -"first *count* occurrences are replaced." +msgid "Return a copy of the sequence with all occurrences of subsequence *old* replaced by *new*. If the optional argument *count* is given, only the first *count* occurrences are replaced." msgstr "" -#: ../../library/stdtypes.rst:3756 -msgid "" -"The subsequence to search for and its replacement may be any :term:`bytes-" -"like object`." +msgid "The subsequence to search for and its replacement may be any :term:`bytes-like object`." msgstr "" -#: ../../library/stdtypes.rst:3768 -msgid "" -"Return the highest index in the sequence where the subsequence *sub* is " -"found, such that *sub* is contained within ``s[start:end]``. Optional " -"arguments *start* and *end* are interpreted as in slice notation. Return " -"``-1`` on failure." +msgid "Return the highest index in the sequence where the subsequence *sub* is found, such that *sub* is contained within ``s[start:end]``. Optional arguments *start* and *end* are interpreted as in slice notation. Return ``-1`` on failure." msgstr "" -#: ../../library/stdtypes.rst:3783 -msgid "" -"Like :meth:`~bytes.rfind` but raises :exc:`ValueError` when the subsequence " -"*sub* is not found." +msgid "Like :meth:`~bytes.rfind` but raises :exc:`ValueError` when the subsequence *sub* is not found." msgstr "" -#: ../../library/stdtypes.rst:3796 -msgid "" -"Split the sequence at the last occurrence of *sep*, and return a 3-tuple " -"containing the part before the separator, the separator itself or its " -"bytearray copy, and the part after the separator. If the separator is not " -"found, return a 3-tuple containing two empty bytes or bytearray objects, " -"followed by a copy of the original sequence." +msgid "Split the sequence at the last occurrence of *sep*, and return a 3-tuple containing the part before the separator, the separator itself or its bytearray copy, and the part after the separator. If the separator is not found, return a 3-tuple containing two empty bytes or bytearray objects, followed by a copy of the original sequence." msgstr "" -#: ../../library/stdtypes.rst:3809 -msgid "" -"Return ``True`` if the binary data starts with the specified *prefix*, " -"otherwise return ``False``. *prefix* can also be a tuple of prefixes to " -"look for. With optional *start*, test beginning at that position. With " -"optional *end*, stop comparing at that position." +msgid "Return ``True`` if the binary data starts with the specified *prefix*, otherwise return ``False``. *prefix* can also be a tuple of prefixes to look for. With optional *start*, test beginning at that position. With optional *end*, stop comparing at that position." msgstr "" -#: ../../library/stdtypes.rst:3814 msgid "The prefix(es) to search for may be any :term:`bytes-like object`." msgstr "" -#: ../../library/stdtypes.rst:3820 -msgid "" -"Return a copy of the bytes or bytearray object where all bytes occurring in " -"the optional argument *delete* are removed, and the remaining bytes have " -"been mapped through the given translation table, which must be a bytes " -"object of length 256." +msgid "Return a copy of the bytes or bytearray object where all bytes occurring in the optional argument *delete* are removed, and the remaining bytes have been mapped through the given translation table, which must be a bytes object of length 256." msgstr "" -#: ../../library/stdtypes.rst:3825 -msgid "" -"You can use the :func:`bytes.maketrans` method to create a translation table." +msgid "You can use the :func:`bytes.maketrans` method to create a translation table." msgstr "" -#: ../../library/stdtypes.rst:3828 -msgid "" -"Set the *table* argument to ``None`` for translations that only delete " -"characters::" +msgid "Set the *table* argument to ``None`` for translations that only delete characters::" msgstr "" -#: ../../library/stdtypes.rst:3831 msgid "" ">>> b'read this short text'.translate(None, b'aeiou')\n" "b'rd ths shrt txt'" msgstr "" -#: ../../library/stdtypes.rst:3834 msgid "*delete* is now supported as a keyword argument." msgstr "" -#: ../../library/stdtypes.rst:3838 -msgid "" -"The following methods on bytes and bytearray objects have default behaviours " -"that assume the use of ASCII compatible binary formats, but can still be " -"used with arbitrary binary data by passing appropriate arguments. Note that " -"all of the bytearray methods in this section do *not* operate in place, and " -"instead produce new objects." +msgid "The following methods on bytes and bytearray objects have default behaviours that assume the use of ASCII compatible binary formats, but can still be used with arbitrary binary data by passing appropriate arguments. Note that all of the bytearray methods in this section do *not* operate in place, and instead produce new objects." msgstr "" -#: ../../library/stdtypes.rst:3847 -msgid "" -"Return a copy of the object centered in a sequence of length *width*. " -"Padding is done using the specified *fillbyte* (default is an ASCII space). " -"For :class:`bytes` objects, the original sequence is returned if *width* is " -"less than or equal to ``len(s)``." +msgid "Return a copy of the object centered in a sequence of length *width*. Padding is done using the specified *fillbyte* (default is an ASCII space). For :class:`bytes` objects, the original sequence is returned if *width* is less than or equal to ``len(s)``." msgstr "" -#: ../../library/stdtypes.rst:3861 -msgid "" -"Return a copy of the object left justified in a sequence of length *width*. " -"Padding is done using the specified *fillbyte* (default is an ASCII space). " -"For :class:`bytes` objects, the original sequence is returned if *width* is " -"less than or equal to ``len(s)``." +msgid "Return a copy of the object left justified in a sequence of length *width*. Padding is done using the specified *fillbyte* (default is an ASCII space). For :class:`bytes` objects, the original sequence is returned if *width* is less than or equal to ``len(s)``." msgstr "" -#: ../../library/stdtypes.rst:3875 -msgid "" -"Return a copy of the sequence with specified leading bytes removed. The " -"*bytes* argument is a binary sequence specifying the set of byte values to " -"be removed. If omitted or ``None``, the *bytes* argument defaults to " -"removing ASCII whitespace. The *bytes* argument is not a prefix; rather, " -"all combinations of its values are stripped::" +msgid "Return a copy of the sequence with specified leading bytes removed. The *bytes* argument is a binary sequence specifying the set of byte values to be removed. If omitted or ``None``, the *bytes* argument defaults to removing ASCII whitespace. The *bytes* argument is not a prefix; rather, all combinations of its values are stripped::" msgstr "" -#: ../../library/stdtypes.rst:3881 msgid "" ">>> b' spacious '.lstrip()\n" "b'spacious '\n" @@ -5351,14 +3152,9 @@ msgid "" "b'example.com'" msgstr "" -#: ../../library/stdtypes.rst:3886 -msgid "" -"The binary sequence of byte values to remove may be any :term:`bytes-like " -"object`. See :meth:`~bytes.removeprefix` for a method that will remove a " -"single prefix string rather than all of a set of characters. For example::" +msgid "The binary sequence of byte values to remove may be any :term:`bytes-like object`. See :meth:`~bytes.removeprefix` for a method that will remove a single prefix string rather than all of a set of characters. For example::" msgstr "" -#: ../../library/stdtypes.rst:3891 msgid "" ">>> b'Arthur: three!'.lstrip(b'Arthur: ')\n" "b'ee!'\n" @@ -5366,34 +3162,15 @@ msgid "" "b'three!'" msgstr "" -#: ../../library/stdtypes.rst:3905 -msgid "" -"Return a copy of the object right justified in a sequence of length *width*. " -"Padding is done using the specified *fillbyte* (default is an ASCII space). " -"For :class:`bytes` objects, the original sequence is returned if *width* is " -"less than or equal to ``len(s)``." +msgid "Return a copy of the object right justified in a sequence of length *width*. Padding is done using the specified *fillbyte* (default is an ASCII space). For :class:`bytes` objects, the original sequence is returned if *width* is less than or equal to ``len(s)``." msgstr "" -#: ../../library/stdtypes.rst:3919 -msgid "" -"Split the binary sequence into subsequences of the same type, using *sep* as " -"the delimiter string. If *maxsplit* is given, at most *maxsplit* splits are " -"done, the *rightmost* ones. If *sep* is not specified or ``None``, any " -"subsequence consisting solely of ASCII whitespace is a separator. Except for " -"splitting from the right, :meth:`rsplit` behaves like :meth:`split` which is " -"described in detail below." +msgid "Split the binary sequence into subsequences of the same type, using *sep* as the delimiter string. If *maxsplit* is given, at most *maxsplit* splits are done, the *rightmost* ones. If *sep* is not specified or ``None``, any subsequence consisting solely of ASCII whitespace is a separator. Except for splitting from the right, :meth:`rsplit` behaves like :meth:`split` which is described in detail below." msgstr "" -#: ../../library/stdtypes.rst:3930 -msgid "" -"Return a copy of the sequence with specified trailing bytes removed. The " -"*bytes* argument is a binary sequence specifying the set of byte values to " -"be removed. If omitted or ``None``, the *bytes* argument defaults to " -"removing ASCII whitespace. The *bytes* argument is not a suffix; rather, " -"all combinations of its values are stripped::" +msgid "Return a copy of the sequence with specified trailing bytes removed. The *bytes* argument is a binary sequence specifying the set of byte values to be removed. If omitted or ``None``, the *bytes* argument defaults to removing ASCII whitespace. The *bytes* argument is not a suffix; rather, all combinations of its values are stripped::" msgstr "" -#: ../../library/stdtypes.rst:3936 msgid "" ">>> b' spacious '.rstrip()\n" "b' spacious'\n" @@ -5401,14 +3178,9 @@ msgid "" "b'mississ'" msgstr "" -#: ../../library/stdtypes.rst:3941 -msgid "" -"The binary sequence of byte values to remove may be any :term:`bytes-like " -"object`. See :meth:`~bytes.removesuffix` for a method that will remove a " -"single suffix string rather than all of a set of characters. For example::" +msgid "The binary sequence of byte values to remove may be any :term:`bytes-like object`. See :meth:`~bytes.removesuffix` for a method that will remove a single suffix string rather than all of a set of characters. For example::" msgstr "" -#: ../../library/stdtypes.rst:3946 msgid "" ">>> b'Monty Python'.rstrip(b' Python')\n" "b'M'\n" @@ -5416,27 +3188,12 @@ msgid "" "b'Monty'" msgstr "" -#: ../../library/stdtypes.rst:3960 -msgid "" -"Split the binary sequence into subsequences of the same type, using *sep* as " -"the delimiter string. If *maxsplit* is given and non-negative, at most " -"*maxsplit* splits are done (thus, the list will have at most ``maxsplit+1`` " -"elements). If *maxsplit* is not specified or is ``-1``, then there is no " -"limit on the number of splits (all possible splits are made)." +msgid "Split the binary sequence into subsequences of the same type, using *sep* as the delimiter string. If *maxsplit* is given and non-negative, at most *maxsplit* splits are done (thus, the list will have at most ``maxsplit+1`` elements). If *maxsplit* is not specified or is ``-1``, then there is no limit on the number of splits (all possible splits are made)." msgstr "" -#: ../../library/stdtypes.rst:3966 -msgid "" -"If *sep* is given, consecutive delimiters are not grouped together and are " -"deemed to delimit empty subsequences (for example, ``b'1,,2'.split(b',')`` " -"returns ``[b'1', b'', b'2']``). The *sep* argument may consist of a " -"multibyte sequence as a single delimiter. Splitting an empty sequence with a " -"specified separator returns ``[b'']`` or ``[bytearray(b'')]`` depending on " -"the type of object being split. The *sep* argument may be any :term:`bytes-" -"like object`." +msgid "If *sep* is given, consecutive delimiters are not grouped together and are deemed to delimit empty subsequences (for example, ``b'1,,2'.split(b',')`` returns ``[b'1', b'', b'2']``). The *sep* argument may consist of a multibyte sequence as a single delimiter. Splitting an empty sequence with a specified separator returns ``[b'']`` or ``[bytearray(b'')]`` depending on the type of object being split. The *sep* argument may be any :term:`bytes-like object`." msgstr "" -#: ../../library/stdtypes.rst:3976 msgid "" ">>> b'1,2,3'.split(b',')\n" "[b'1', b'2', b'3']\n" @@ -5448,17 +3205,9 @@ msgid "" "[b'1', b'2', b'3<4']" msgstr "" -#: ../../library/stdtypes.rst:3985 -msgid "" -"If *sep* is not specified or is ``None``, a different splitting algorithm is " -"applied: runs of consecutive ASCII whitespace are regarded as a single " -"separator, and the result will contain no empty strings at the start or end " -"if the sequence has leading or trailing whitespace. Consequently, splitting " -"an empty sequence or a sequence consisting solely of ASCII whitespace " -"without a specified separator returns ``[]``." +msgid "If *sep* is not specified or is ``None``, a different splitting algorithm is applied: runs of consecutive ASCII whitespace are regarded as a single separator, and the result will contain no empty strings at the start or end if the sequence has leading or trailing whitespace. Consequently, splitting an empty sequence or a sequence consisting solely of ASCII whitespace without a specified separator returns ``[]``." msgstr "" -#: ../../library/stdtypes.rst:3995 msgid "" ">>> b'1 2 3'.split()\n" "[b'1', b'2', b'3']\n" @@ -5468,16 +3217,9 @@ msgid "" "[b'1', b'2', b'3']" msgstr "" -#: ../../library/stdtypes.rst:4006 -msgid "" -"Return a copy of the sequence with specified leading and trailing bytes " -"removed. The *bytes* argument is a binary sequence specifying the set of " -"byte values to be removed. If omitted or ``None``, the *bytes* argument " -"defaults to removing ASCII whitespace. The *bytes* argument is not a prefix " -"or suffix; rather, all combinations of its values are stripped::" +msgid "Return a copy of the sequence with specified leading and trailing bytes removed. The *bytes* argument is a binary sequence specifying the set of byte values to be removed. If omitted or ``None``, the *bytes* argument defaults to removing ASCII whitespace. The *bytes* argument is not a prefix or suffix; rather, all combinations of its values are stripped::" msgstr "" -#: ../../library/stdtypes.rst:4013 msgid "" ">>> b' spacious '.strip()\n" "b'spacious'\n" @@ -5485,44 +3227,18 @@ msgid "" "b'example'" msgstr "" -#: ../../library/stdtypes.rst:4018 -msgid "" -"The binary sequence of byte values to remove may be any :term:`bytes-like " -"object`." +msgid "The binary sequence of byte values to remove may be any :term:`bytes-like object`." msgstr "" -#: ../../library/stdtypes.rst:4027 -msgid "" -"The following methods on bytes and bytearray objects assume the use of ASCII " -"compatible binary formats and should not be applied to arbitrary binary " -"data. Note that all of the bytearray methods in this section do *not* " -"operate in place, and instead produce new objects." +msgid "The following methods on bytes and bytearray objects assume the use of ASCII compatible binary formats and should not be applied to arbitrary binary data. Note that all of the bytearray methods in this section do *not* operate in place, and instead produce new objects." msgstr "" -#: ../../library/stdtypes.rst:4035 -msgid "" -"Return a copy of the sequence with each byte interpreted as an ASCII " -"character, and the first byte capitalized and the rest lowercased. Non-ASCII " -"byte values are passed through unchanged." +msgid "Return a copy of the sequence with each byte interpreted as an ASCII character, and the first byte capitalized and the rest lowercased. Non-ASCII byte values are passed through unchanged." msgstr "" -#: ../../library/stdtypes.rst:4048 -msgid "" -"Return a copy of the sequence where all ASCII tab characters are replaced by " -"one or more ASCII spaces, depending on the current column and the given tab " -"size. Tab positions occur every *tabsize* bytes (default is 8, giving tab " -"positions at columns 0, 8, 16 and so on). To expand the sequence, the " -"current column is set to zero and the sequence is examined byte by byte. If " -"the byte is an ASCII tab character (``b'\\t'``), one or more space " -"characters are inserted in the result until the current column is equal to " -"the next tab position. (The tab character itself is not copied.) If the " -"current byte is an ASCII newline (``b'\\n'``) or carriage return " -"(``b'\\r'``), it is copied and the current column is reset to zero. Any " -"other byte value is copied unchanged and the current column is incremented " -"by one regardless of how the byte value is represented when printed::" +msgid "Return a copy of the sequence where all ASCII tab characters are replaced by one or more ASCII spaces, depending on the current column and the given tab size. Tab positions occur every *tabsize* bytes (default is 8, giving tab positions at columns 0, 8, 16 and so on). To expand the sequence, the current column is set to zero and the sequence is examined byte by byte. If the byte is an ASCII tab character (``b'\\t'``), one or more space characters are inserted in the result until the current column is equal to the next tab position. (The tab character itself is not copied.) If the current byte is an ASCII newline (``b'\\n'``) or carriage return (``b'\\r'``), it is copied and the current column is reset to zero. Any other byte value is copied unchanged and the current column is incremented by one regardless of how the byte value is represented when printed::" msgstr "" -#: ../../library/stdtypes.rst:4062 msgid "" ">>> b'01\\t012\\t0123\\t01234'.expandtabs()\n" "b'01 012 0123 01234'\n" @@ -5530,16 +3246,9 @@ msgid "" "b'01 012 0123 01234'" msgstr "" -#: ../../library/stdtypes.rst:4076 -msgid "" -"Return ``True`` if all bytes in the sequence are alphabetical ASCII " -"characters or ASCII decimal digits and the sequence is not empty, ``False`` " -"otherwise. Alphabetic ASCII characters are those byte values in the sequence " -"``b'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'``. ASCII decimal " -"digits are those byte values in the sequence ``b'0123456789'``." +msgid "Return ``True`` if all bytes in the sequence are alphabetical ASCII characters or ASCII decimal digits and the sequence is not empty, ``False`` otherwise. Alphabetic ASCII characters are those byte values in the sequence ``b'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'``. ASCII decimal digits are those byte values in the sequence ``b'0123456789'``." msgstr "" -#: ../../library/stdtypes.rst:4084 msgid "" ">>> b'ABCabc1'.isalnum()\n" "True\n" @@ -5547,15 +3256,9 @@ msgid "" "False" msgstr "" -#: ../../library/stdtypes.rst:4093 -msgid "" -"Return ``True`` if all bytes in the sequence are alphabetic ASCII characters " -"and the sequence is not empty, ``False`` otherwise. Alphabetic ASCII " -"characters are those byte values in the sequence " -"``b'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'``." +msgid "Return ``True`` if all bytes in the sequence are alphabetic ASCII characters and the sequence is not empty, ``False`` otherwise. Alphabetic ASCII characters are those byte values in the sequence ``b'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'``." msgstr "" -#: ../../library/stdtypes.rst:4100 msgid "" ">>> b'ABCabc'.isalpha()\n" "True\n" @@ -5563,20 +3266,12 @@ msgid "" "False" msgstr "" -#: ../../library/stdtypes.rst:4109 -msgid "" -"Return ``True`` if the sequence is empty or all bytes in the sequence are " -"ASCII, ``False`` otherwise. ASCII bytes are in the range 0-0x7F." +msgid "Return ``True`` if the sequence is empty or all bytes in the sequence are ASCII, ``False`` otherwise. ASCII bytes are in the range 0-0x7F." msgstr "" -#: ../../library/stdtypes.rst:4119 -msgid "" -"Return ``True`` if all bytes in the sequence are ASCII decimal digits and " -"the sequence is not empty, ``False`` otherwise. ASCII decimal digits are " -"those byte values in the sequence ``b'0123456789'``." +msgid "Return ``True`` if all bytes in the sequence are ASCII decimal digits and the sequence is not empty, ``False`` otherwise. ASCII decimal digits are those byte values in the sequence ``b'0123456789'``." msgstr "" -#: ../../library/stdtypes.rst:4125 msgid "" ">>> b'1234'.isdigit()\n" "True\n" @@ -5584,13 +3279,9 @@ msgid "" "False" msgstr "" -#: ../../library/stdtypes.rst:4134 -msgid "" -"Return ``True`` if there is at least one lowercase ASCII character in the " -"sequence and no uppercase ASCII characters, ``False`` otherwise." +msgid "Return ``True`` if there is at least one lowercase ASCII character in the sequence and no uppercase ASCII characters, ``False`` otherwise." msgstr "" -#: ../../library/stdtypes.rst:4139 msgid "" ">>> b'hello world'.islower()\n" "True\n" @@ -5598,31 +3289,15 @@ msgid "" "False" msgstr "" -#: ../../library/stdtypes.rst:4144 ../../library/stdtypes.rst:4186 -#: ../../library/stdtypes.rst:4202 ../../library/stdtypes.rst:4252 -#: ../../library/stdtypes.rst:4321 -msgid "" -"Lowercase ASCII characters are those byte values in the sequence " -"``b'abcdefghijklmnopqrstuvwxyz'``. Uppercase ASCII characters are those byte " -"values in the sequence ``b'ABCDEFGHIJKLMNOPQRSTUVWXYZ'``." +msgid "Lowercase ASCII characters are those byte values in the sequence ``b'abcdefghijklmnopqrstuvwxyz'``. Uppercase ASCII characters are those byte values in the sequence ``b'ABCDEFGHIJKLMNOPQRSTUVWXYZ'``." msgstr "" -#: ../../library/stdtypes.rst:4152 -msgid "" -"Return ``True`` if all bytes in the sequence are ASCII whitespace and the " -"sequence is not empty, ``False`` otherwise. ASCII whitespace characters are " -"those byte values in the sequence ``b' \\t\\n\\r\\x0b\\f'`` (space, tab, " -"newline, carriage return, vertical tab, form feed)." +msgid "Return ``True`` if all bytes in the sequence are ASCII whitespace and the sequence is not empty, ``False`` otherwise. ASCII whitespace characters are those byte values in the sequence ``b' \\t\\n\\r\\x0b\\f'`` (space, tab, newline, carriage return, vertical tab, form feed)." msgstr "" -#: ../../library/stdtypes.rst:4161 -msgid "" -"Return ``True`` if the sequence is ASCII titlecase and the sequence is not " -"empty, ``False`` otherwise. See :meth:`bytes.title` for more details on the " -"definition of \"titlecase\"." +msgid "Return ``True`` if the sequence is ASCII titlecase and the sequence is not empty, ``False`` otherwise. See :meth:`bytes.title` for more details on the definition of \"titlecase\"." msgstr "" -#: ../../library/stdtypes.rst:4167 msgid "" ">>> b'Hello World'.istitle()\n" "True\n" @@ -5630,14 +3305,9 @@ msgid "" "False" msgstr "" -#: ../../library/stdtypes.rst:4176 -msgid "" -"Return ``True`` if there is at least one uppercase alphabetic ASCII " -"character in the sequence and no lowercase ASCII characters, ``False`` " -"otherwise." +msgid "Return ``True`` if there is at least one uppercase alphabetic ASCII character in the sequence and no lowercase ASCII characters, ``False`` otherwise." msgstr "" -#: ../../library/stdtypes.rst:4181 msgid "" ">>> b'HELLO WORLD'.isupper()\n" "True\n" @@ -5645,27 +3315,17 @@ msgid "" "False" msgstr "" -#: ../../library/stdtypes.rst:4194 -msgid "" -"Return a copy of the sequence with all the uppercase ASCII characters " -"converted to their corresponding lowercase counterpart." +msgid "Return a copy of the sequence with all the uppercase ASCII characters converted to their corresponding lowercase counterpart." msgstr "" -#: ../../library/stdtypes.rst:4199 msgid "" ">>> b'Hello World'.lower()\n" "b'hello world'" msgstr "" -#: ../../library/stdtypes.rst:4219 -msgid "" -"Return a list of the lines in the binary sequence, breaking at ASCII line " -"boundaries. This method uses the :term:`universal newlines` approach to " -"splitting lines. Line breaks are not included in the resulting list unless " -"*keepends* is given and true." +msgid "Return a list of the lines in the binary sequence, breaking at ASCII line boundaries. This method uses the :term:`universal newlines` approach to splitting lines. Line breaks are not included in the resulting list unless *keepends* is given and true." msgstr "" -#: ../../library/stdtypes.rst:4226 msgid "" ">>> b'ab c\\n\\nde fg\\rkl\\r\\n'.splitlines()\n" "[b'ab c', b'', b'de fg', b'kl']\n" @@ -5673,14 +3333,9 @@ msgid "" "[b'ab c\\n', b'\\n', b'de fg\\r', b'kl\\r\\n']" msgstr "" -#: ../../library/stdtypes.rst:4231 -msgid "" -"Unlike :meth:`~bytes.split` when a delimiter string *sep* is given, this " -"method returns an empty list for the empty string, and a terminal line break " -"does not result in an extra line::" +msgid "Unlike :meth:`~bytes.split` when a delimiter string *sep* is given, this method returns an empty list for the empty string, and a terminal line break does not result in an extra line::" msgstr "" -#: ../../library/stdtypes.rst:4235 msgid "" ">>> b\"\".split(b'\\n'), b\"Two lines\\n\".split(b'\\n')\n" "([b''], [b'Two lines', b''])\n" @@ -5688,59 +3343,36 @@ msgid "" "([], [b'One line'])" msgstr "" -#: ../../library/stdtypes.rst:4244 -msgid "" -"Return a copy of the sequence with all the lowercase ASCII characters " -"converted to their corresponding uppercase counterpart and vice-versa." +msgid "Return a copy of the sequence with all the lowercase ASCII characters converted to their corresponding uppercase counterpart and vice-versa." msgstr "" -#: ../../library/stdtypes.rst:4249 msgid "" ">>> b'Hello World'.swapcase()\n" "b'hELLO wORLD'" msgstr "" -#: ../../library/stdtypes.rst:4256 -msgid "" -"Unlike :func:`str.swapcase`, it is always the case that " -"``bin.swapcase().swapcase() == bin`` for the binary versions. Case " -"conversions are symmetrical in ASCII, even though that is not generally true " -"for arbitrary Unicode code points." +msgid "Unlike :func:`str.swapcase`, it is always the case that ``bin.swapcase().swapcase() == bin`` for the binary versions. Case conversions are symmetrical in ASCII, even though that is not generally true for arbitrary Unicode code points." msgstr "" -#: ../../library/stdtypes.rst:4270 -msgid "" -"Return a titlecased version of the binary sequence where words start with an " -"uppercase ASCII character and the remaining characters are lowercase. " -"Uncased byte values are left unmodified." +msgid "Return a titlecased version of the binary sequence where words start with an uppercase ASCII character and the remaining characters are lowercase. Uncased byte values are left unmodified." msgstr "" -#: ../../library/stdtypes.rst:4276 msgid "" ">>> b'Hello world'.title()\n" "b'Hello World'" msgstr "" -#: ../../library/stdtypes.rst:4279 -msgid "" -"Lowercase ASCII characters are those byte values in the sequence " -"``b'abcdefghijklmnopqrstuvwxyz'``. Uppercase ASCII characters are those byte " -"values in the sequence ``b'ABCDEFGHIJKLMNOPQRSTUVWXYZ'``. All other byte " -"values are uncased." +msgid "Lowercase ASCII characters are those byte values in the sequence ``b'abcdefghijklmnopqrstuvwxyz'``. Uppercase ASCII characters are those byte values in the sequence ``b'ABCDEFGHIJKLMNOPQRSTUVWXYZ'``. All other byte values are uncased." msgstr "" -#: ../../library/stdtypes.rst:4289 msgid "" ">>> b\"they're bill's friends from the UK\".title()\n" "b\"They'Re Bill'S Friends From The Uk\"" msgstr "" -#: ../../library/stdtypes.rst:4292 -msgid "" -"A workaround for apostrophes can be constructed using regular expressions::" +msgid "A workaround for apostrophes can be constructed using regular expressions::" msgstr "" -#: ../../library/stdtypes.rst:4294 msgid "" ">>> import re\n" ">>> def titlecase(s):\n" @@ -5753,28 +3385,17 @@ msgid "" "b\"They're Bill's Friends.\"" msgstr "" -#: ../../library/stdtypes.rst:4313 -msgid "" -"Return a copy of the sequence with all the lowercase ASCII characters " -"converted to their corresponding uppercase counterpart." +msgid "Return a copy of the sequence with all the lowercase ASCII characters converted to their corresponding uppercase counterpart." msgstr "" -#: ../../library/stdtypes.rst:4318 msgid "" ">>> b'Hello World'.upper()\n" "b'HELLO WORLD'" msgstr "" -#: ../../library/stdtypes.rst:4334 -msgid "" -"Return a copy of the sequence left filled with ASCII ``b'0'`` digits to make " -"a sequence of length *width*. A leading sign prefix (``b'+'``/ ``b'-'``) is " -"handled by inserting the padding *after* the sign character rather than " -"before. For :class:`bytes` objects, the original sequence is returned if " -"*width* is less than or equal to ``len(seq)``." +msgid "Return a copy of the sequence left filled with ASCII ``b'0'`` digits to make a sequence of length *width*. A leading sign prefix (``b'+'``/ ``b'-'``) is handled by inserting the padding *after* the sign character rather than before. For :class:`bytes` objects, the original sequence is returned if *width* is less than or equal to ``len(seq)``." msgstr "" -#: ../../library/stdtypes.rst:4342 msgid "" ">>> b\"42\".zfill(5)\n" "b'00042'\n" @@ -5782,154 +3403,81 @@ msgid "" "b'-0042'" msgstr "" -#: ../../library/stdtypes.rst:4356 msgid "``printf``-style Bytes Formatting" msgstr "" -#: ../../library/stdtypes.rst:4373 -msgid "" -"The formatting operations described here exhibit a variety of quirks that " -"lead to a number of common errors (such as failing to display tuples and " -"dictionaries correctly). If the value being printed may be a tuple or " -"dictionary, wrap it in a tuple." +msgid "The formatting operations described here exhibit a variety of quirks that lead to a number of common errors (such as failing to display tuples and dictionaries correctly). If the value being printed may be a tuple or dictionary, wrap it in a tuple." msgstr "" -#: ../../library/stdtypes.rst:4378 -msgid "" -"Bytes objects (``bytes``/``bytearray``) have one unique built-in operation: " -"the ``%`` operator (modulo). This is also known as the bytes *formatting* or " -"*interpolation* operator. Given ``format % values`` (where *format* is a " -"bytes object), ``%`` conversion specifications in *format* are replaced with " -"zero or more elements of *values*. The effect is similar to using " -"the :c:func:`sprintf` in the C language." +msgid "Bytes objects (``bytes``/``bytearray``) have one unique built-in operation: the ``%`` operator (modulo). This is also known as the bytes *formatting* or *interpolation* operator. Given ``format % values`` (where *format* is a bytes object), ``%`` conversion specifications in *format* are replaced with zero or more elements of *values*. The effect is similar to using the :c:func:`sprintf` in the C language." msgstr "" -#: ../../library/stdtypes.rst:4385 -msgid "" -"If *format* requires a single argument, *values* may be a single non-tuple " -"object. [5]_ Otherwise, *values* must be a tuple with exactly the number of " -"items specified by the format bytes object, or a single mapping object (for " -"example, a dictionary)." +msgid "If *format* requires a single argument, *values* may be a single non-tuple object. [5]_ Otherwise, *values* must be a tuple with exactly the number of items specified by the format bytes object, or a single mapping object (for example, a dictionary)." msgstr "" -#: ../../library/stdtypes.rst:4419 -msgid "" -"When the right argument is a dictionary (or other mapping type), then the " -"formats in the bytes object *must* include a parenthesised mapping key into " -"that dictionary inserted immediately after the ``'%'`` character. The " -"mapping key selects the value to be formatted from the mapping. For example:" +msgid "When the right argument is a dictionary (or other mapping type), then the formats in the bytes object *must* include a parenthesised mapping key into that dictionary inserted immediately after the ``'%'`` character. The mapping key selects the value to be formatted from the mapping. For example:" msgstr "" -#: ../../library/stdtypes.rst:4471 msgid "\\(8)" msgstr "" -#: ../../library/stdtypes.rst:4493 msgid "Single byte (accepts integer or single byte objects)." msgstr "" -#: ../../library/stdtypes.rst:4496 msgid "``'b'``" msgstr "" -#: ../../library/stdtypes.rst:4496 -msgid "" -"Bytes (any object that follows the :ref:`buffer protocol ` or " -"has :meth:`~object.__bytes__`)." +msgid "Bytes (any object that follows the :ref:`buffer protocol ` or has :meth:`~object.__bytes__`)." msgstr "" -#: ../../library/stdtypes.rst:4500 -msgid "" -"``'s'`` is an alias for ``'b'`` and should only be used for Python2/3 code " -"bases." +msgid "``'s'`` is an alias for ``'b'`` and should only be used for Python2/3 code bases." msgstr "" -#: ../../library/stdtypes.rst:4503 -msgid "" -"Bytes (converts any Python object using ``repr(obj).encode('ascii', " -"'backslashreplace')``)." +msgid "Bytes (converts any Python object using ``repr(obj).encode('ascii', 'backslashreplace')``)." msgstr "" -#: ../../library/stdtypes.rst:4506 -msgid "" -"``'r'`` is an alias for ``'a'`` and should only be used for Python2/3 code " -"bases." +msgid "``'r'`` is an alias for ``'a'`` and should only be used for Python2/3 code bases." msgstr "" -#: ../../library/stdtypes.rst:4506 msgid "\\(7)" msgstr "" -#: ../../library/stdtypes.rst:4541 msgid "``b'%s'`` is deprecated, but will not be removed during the 3.x series." msgstr "" -#: ../../library/stdtypes.rst:4544 msgid "``b'%r'`` is deprecated, but will not be removed during the 3.x series." msgstr "" -#: ../../library/stdtypes.rst:4556 msgid ":pep:`461` - Adding % formatting to bytes and bytearray" msgstr "" -#: ../../library/stdtypes.rst:4563 msgid "Memory Views" msgstr "" -#: ../../library/stdtypes.rst:4565 -msgid "" -":class:`memoryview` objects allow Python code to access the internal data of " -"an object that supports the :ref:`buffer protocol ` without " -"copying." +msgid ":class:`memoryview` objects allow Python code to access the internal data of an object that supports the :ref:`buffer protocol ` without copying." msgstr "" -#: ../../library/stdtypes.rst:4571 -msgid "" -"Create a :class:`memoryview` that references *object*. *object* must " -"support the buffer protocol. Built-in objects that support the buffer " -"protocol include :class:`bytes` and :class:`bytearray`." +msgid "Create a :class:`memoryview` that references *object*. *object* must support the buffer protocol. Built-in objects that support the buffer protocol include :class:`bytes` and :class:`bytearray`." msgstr "" -#: ../../library/stdtypes.rst:4575 -msgid "" -"A :class:`memoryview` has the notion of an *element*, which is the atomic " -"memory unit handled by the originating *object*. For many simple types such " -"as :class:`bytes` and :class:`bytearray`, an element is a single byte, but " -"other types such as :class:`array.array` may have bigger elements." +msgid "A :class:`memoryview` has the notion of an *element*, which is the atomic memory unit handled by the originating *object*. For many simple types such as :class:`bytes` and :class:`bytearray`, an element is a single byte, but other types such as :class:`array.array` may have bigger elements." msgstr "" -#: ../../library/stdtypes.rst:4580 -msgid "" -":class:`!memoryview`\\s are :ref:`generic ` over the type of their " -"underlying data." +msgid ":class:`!memoryview`\\s are :ref:`generic ` over the type of their underlying data." msgstr "" -#: ../../library/stdtypes.rst:4583 -msgid "" -"``len(view)`` is equal to the length of :class:`~memoryview.tolist`, which " -"is the nested list representation of the view. If ``view.ndim = 1``, this is " -"equal to the number of elements in the view." +msgid "``len(view)`` is equal to the length of :class:`~memoryview.tolist`, which is the nested list representation of the view. If ``view.ndim = 1``, this is equal to the number of elements in the view." msgstr "" -#: ../../library/stdtypes.rst:4587 -msgid "" -"If ``view.ndim == 0``, ``len(view)`` now raises :exc:`TypeError` instead of " -"returning 1." +msgid "If ``view.ndim == 0``, ``len(view)`` now raises :exc:`TypeError` instead of returning 1." msgstr "" -#: ../../library/stdtypes.rst:4590 -msgid "" -"The :class:`~memoryview.itemsize` attribute will give you the number of " -"bytes in a single element." +msgid "The :class:`~memoryview.itemsize` attribute will give you the number of bytes in a single element." msgstr "" -#: ../../library/stdtypes.rst:4593 -msgid "" -"A :class:`memoryview` supports slicing and indexing to expose its data. One-" -"dimensional slicing will result in a subview::" +msgid "A :class:`memoryview` supports slicing and indexing to expose its data. One-dimensional slicing will result in a subview::" msgstr "" -#: ../../library/stdtypes.rst:4596 msgid "" ">>> v = memoryview(b'abcefg')\n" ">>> v[1]\n" @@ -5942,22 +3490,12 @@ msgid "" "b'bce'" msgstr "" -#: ../../library/stdtypes.rst:4606 -msgid "" -"If :class:`~memoryview.format` is one of the native format specifiers from " -"the :mod:`struct` module, indexing with an integer or a tuple of integers is " -"also supported and returns a single *element* with the correct type. One-" -"dimensional memoryviews can be indexed with an integer or a one-integer " -"tuple. Multi-dimensional memoryviews can be indexed with tuples of exactly " -"*ndim* integers where *ndim* is the number of dimensions. Zero-dimensional " -"memoryviews can be indexed with the empty tuple." +msgid "If :class:`~memoryview.format` is one of the native format specifiers from the :mod:`struct` module, indexing with an integer or a tuple of integers is also supported and returns a single *element* with the correct type. One-dimensional memoryviews can be indexed with an integer or a one-integer tuple. Multi-dimensional memoryviews can be indexed with tuples of exactly *ndim* integers where *ndim* is the number of dimensions. Zero-dimensional memoryviews can be indexed with the empty tuple." msgstr "" -#: ../../library/stdtypes.rst:4615 msgid "Here is an example with a non-byte format::" msgstr "" -#: ../../library/stdtypes.rst:4617 msgid "" ">>> import array\n" ">>> a = array.array('l', [-11111111, 22222222, -33333333, 44444444])\n" @@ -5970,13 +3508,9 @@ msgid "" "[-11111111, -33333333]" msgstr "" -#: ../../library/stdtypes.rst:4627 -msgid "" -"If the underlying object is writable, the memoryview supports one-" -"dimensional slice assignment. Resizing is not allowed::" +msgid "If the underlying object is writable, the memoryview supports one-dimensional slice assignment. Resizing is not allowed::" msgstr "" -#: ../../library/stdtypes.rst:4630 msgid "" ">>> data = bytearray(b'abcefg')\n" ">>> v = memoryview(data)\n" @@ -5991,21 +3525,15 @@ msgid "" ">>> v[2:3] = b'spam'\n" "Traceback (most recent call last):\n" " File \"\", line 1, in \n" -"ValueError: memoryview assignment: lvalue and rvalue have different " -"structures\n" +"ValueError: memoryview assignment: lvalue and rvalue have different structures\n" ">>> v[2:6] = b'spam'\n" ">>> data\n" "bytearray(b'z1spam')" msgstr "" -#: ../../library/stdtypes.rst:4648 -msgid "" -"One-dimensional memoryviews of :term:`hashable` (read-only) types with " -"formats 'B', 'b' or 'c' are also hashable. The hash is defined as ``hash(m) " -"== hash(m.tobytes())``::" +msgid "One-dimensional memoryviews of :term:`hashable` (read-only) types with formats 'B', 'b' or 'c' are also hashable. The hash is defined as ``hash(m) == hash(m.tobytes())``::" msgstr "" -#: ../../library/stdtypes.rst:4652 msgid "" ">>> v = memoryview(b'abcefg')\n" ">>> hash(v) == hash(b'abcefg')\n" @@ -6016,45 +3544,27 @@ msgid "" "True" msgstr "" -#: ../../library/stdtypes.rst:4660 -msgid "" -"One-dimensional memoryviews can now be sliced. One-dimensional memoryviews " -"with formats 'B', 'b' or 'c' are now :term:`hashable`." +msgid "One-dimensional memoryviews can now be sliced. One-dimensional memoryviews with formats 'B', 'b' or 'c' are now :term:`hashable`." msgstr "" -#: ../../library/stdtypes.rst:4664 -msgid "" -"memoryview is now registered automatically " -"with :class:`collections.abc.Sequence`" +msgid "memoryview is now registered automatically with :class:`collections.abc.Sequence`" msgstr "" -#: ../../library/stdtypes.rst:4668 msgid "memoryviews can now be indexed with tuple of integers." msgstr "" -#: ../../library/stdtypes.rst:4671 msgid "memoryview is now a :term:`generic type`." msgstr "" -#: ../../library/stdtypes.rst:4674 msgid ":class:`memoryview` has several methods:" msgstr "" -#: ../../library/stdtypes.rst:4678 -msgid "" -"A memoryview and a :pep:`3118` exporter are equal if their shapes are " -"equivalent and if all corresponding values are equal when the operands' " -"respective format codes are interpreted using :mod:`struct` syntax." +msgid "A memoryview and a :pep:`3118` exporter are equal if their shapes are equivalent and if all corresponding values are equal when the operands' respective format codes are interpreted using :mod:`struct` syntax." msgstr "" -#: ../../library/stdtypes.rst:4682 -msgid "" -"For the subset of :mod:`struct` format strings currently supported " -"by :meth:`tolist`, ``v`` and ``w`` are equal if ``v.tolist() == " -"w.tolist()``::" +msgid "For the subset of :mod:`struct` format strings currently supported by :meth:`tolist`, ``v`` and ``w`` are equal if ``v.tolist() == w.tolist()``::" msgstr "" -#: ../../library/stdtypes.rst:4685 msgid "" ">>> import array\n" ">>> a = array.array('I', [1, 2, 3, 4, 5])\n" @@ -6073,14 +3583,9 @@ msgid "" "True" msgstr "" -#: ../../library/stdtypes.rst:4701 -msgid "" -"If either format string is not supported by the :mod:`struct` module, then " -"the objects will always compare as unequal (even if the format strings and " -"buffer contents are identical)::" +msgid "If either format string is not supported by the :mod:`struct` module, then the objects will always compare as unequal (even if the format strings and buffer contents are identical)::" msgstr "" -#: ../../library/stdtypes.rst:4705 msgid "" ">>> from ctypes import BigEndianStructure, c_long\n" ">>> class BEPoint(BigEndianStructure):\n" @@ -6095,25 +3600,15 @@ msgid "" "False" msgstr "" -#: ../../library/stdtypes.rst:4717 -msgid "" -"Note that, as with floating-point numbers, ``v is w`` does *not* imply ``v " -"== w`` for memoryview objects." +msgid "Note that, as with floating-point numbers, ``v is w`` does *not* imply ``v == w`` for memoryview objects." msgstr "" -#: ../../library/stdtypes.rst:4720 -msgid "" -"Previous versions compared the raw memory disregarding the item format and " -"the logical array structure." +msgid "Previous versions compared the raw memory disregarding the item format and the logical array structure." msgstr "" -#: ../../library/stdtypes.rst:4726 -msgid "" -"Return the data in the buffer as a bytestring. This is equivalent to " -"calling the :class:`bytes` constructor on the memoryview. ::" +msgid "Return the data in the buffer as a bytestring. This is equivalent to calling the :class:`bytes` constructor on the memoryview. ::" msgstr "" -#: ../../library/stdtypes.rst:4729 msgid "" ">>> m = memoryview(b\"abc\")\n" ">>> m.tobytes()\n" @@ -6122,48 +3617,27 @@ msgid "" "b'abc'" msgstr "" -#: ../../library/stdtypes.rst:4735 -msgid "" -"For non-contiguous arrays the result is equal to the flattened list " -"representation with all elements converted to bytes. :meth:`tobytes` " -"supports all format strings, including those that are not in :mod:`struct` " -"module syntax." +msgid "For non-contiguous arrays the result is equal to the flattened list representation with all elements converted to bytes. :meth:`tobytes` supports all format strings, including those that are not in :mod:`struct` module syntax." msgstr "" -#: ../../library/stdtypes.rst:4740 -msgid "" -"*order* can be {'C', 'F', 'A'}. When *order* is 'C' or 'F', the data of the " -"original array is converted to C or Fortran order. For contiguous views, 'A' " -"returns an exact copy of the physical memory. In particular, in-memory " -"Fortran order is preserved. For non-contiguous views, the data is converted " -"to C first. *order=None* is the same as *order='C'*." +msgid "*order* can be {'C', 'F', 'A'}. When *order* is 'C' or 'F', the data of the original array is converted to C or Fortran order. For contiguous views, 'A' returns an exact copy of the physical memory. In particular, in-memory Fortran order is preserved. For non-contiguous views, the data is converted to C first. *order=None* is the same as *order='C'*." msgstr "" -#: ../../library/stdtypes.rst:4750 -msgid "" -"Return a string object containing two hexadecimal digits for each byte in " -"the buffer. ::" +msgid "Return a string object containing two hexadecimal digits for each byte in the buffer. ::" msgstr "" -#: ../../library/stdtypes.rst:4753 msgid "" ">>> m = memoryview(b\"abc\")\n" ">>> m.hex()\n" "'616263'" msgstr "" -#: ../../library/stdtypes.rst:4759 -msgid "" -"Similar to :meth:`bytes.hex`, :meth:`memoryview.hex` now supports optional " -"*sep* and *bytes_per_sep* parameters to insert separators between bytes in " -"the hex output." +msgid "Similar to :meth:`bytes.hex`, :meth:`memoryview.hex` now supports optional *sep* and *bytes_per_sep* parameters to insert separators between bytes in the hex output." msgstr "" -#: ../../library/stdtypes.rst:4766 msgid "Return the data in the buffer as a list of elements. ::" msgstr "" -#: ../../library/stdtypes.rst:4768 msgid "" ">>> memoryview(b'abc').tolist()\n" "[97, 98, 99]\n" @@ -6174,19 +3648,12 @@ msgid "" "[1.1, 2.2, 3.3]" msgstr "" -#: ../../library/stdtypes.rst:4776 -msgid "" -":meth:`tolist` now supports all single character native formats " -"in :mod:`struct` module syntax as well as multi-dimensional representations." +msgid ":meth:`tolist` now supports all single character native formats in :mod:`struct` module syntax as well as multi-dimensional representations." msgstr "" -#: ../../library/stdtypes.rst:4783 -msgid "" -"Return a readonly version of the memoryview object. The original memoryview " -"object is unchanged. ::" +msgid "Return a readonly version of the memoryview object. The original memoryview object is unchanged. ::" msgstr "" -#: ../../library/stdtypes.rst:4786 msgid "" ">>> m = memoryview(bytearray(b'abc'))\n" ">>> mm = m.toreadonly()\n" @@ -6201,23 +3668,12 @@ msgid "" "[43, 98, 99]" msgstr "" -#: ../../library/stdtypes.rst:4802 -msgid "" -"Release the underlying buffer exposed by the memoryview object. Many " -"objects take special actions when a view is held on them (for example, " -"a :class:`bytearray` would temporarily forbid resizing); therefore, calling " -"release() is handy to remove these restrictions (and free any dangling " -"resources) as soon as possible." +msgid "Release the underlying buffer exposed by the memoryview object. Many objects take special actions when a view is held on them (for example, a :class:`bytearray` would temporarily forbid resizing); therefore, calling release() is handy to remove these restrictions (and free any dangling resources) as soon as possible." msgstr "" -#: ../../library/stdtypes.rst:4808 -msgid "" -"After this method has been called, any further operation on the view raises " -"a :class:`ValueError` (except :meth:`release` itself which can be called " -"multiple times)::" +msgid "After this method has been called, any further operation on the view raises a :class:`ValueError` (except :meth:`release` itself which can be called multiple times)::" msgstr "" -#: ../../library/stdtypes.rst:4812 msgid "" ">>> m = memoryview(b'abc')\n" ">>> m.release()\n" @@ -6227,13 +3683,9 @@ msgid "" "ValueError: operation forbidden on released memoryview object" msgstr "" -#: ../../library/stdtypes.rst:4819 -msgid "" -"The context management protocol can be used for a similar effect, using the " -"``with`` statement::" +msgid "The context management protocol can be used for a similar effect, using the ``with`` statement::" msgstr "" -#: ../../library/stdtypes.rst:4822 msgid "" ">>> with memoryview(b'abc') as m:\n" "... m[0]\n" @@ -6245,28 +3697,15 @@ msgid "" "ValueError: operation forbidden on released memoryview object" msgstr "" -#: ../../library/stdtypes.rst:4836 -msgid "" -"Cast a memoryview to a new format or shape. *shape* defaults to " -"``[byte_length//new_itemsize]``, which means that the result view will be " -"one-dimensional. The return value is a new memoryview, but the buffer itself " -"is not copied. Supported casts are 1D -> C-:term:`contiguous` and C-" -"contiguous -> 1D." +msgid "Cast a memoryview to a new format or shape. *shape* defaults to ``[byte_length//new_itemsize]``, which means that the result view will be one-dimensional. The return value is a new memoryview, but the buffer itself is not copied. Supported casts are 1D -> C-:term:`contiguous` and C-contiguous -> 1D." msgstr "" -#: ../../library/stdtypes.rst:4842 -msgid "" -"The destination format is restricted to a single element native format " -"in :mod:`struct` syntax. One of the formats must be a byte format ('B', 'b' " -"or 'c'). The byte length of the result must be the same as the original " -"length. Note that all byte lengths may depend on the operating system." +msgid "The destination format is restricted to a single element native format in :mod:`struct` syntax. One of the formats must be a byte format ('B', 'b' or 'c'). The byte length of the result must be the same as the original length. Note that all byte lengths may depend on the operating system." msgstr "" -#: ../../library/stdtypes.rst:4848 msgid "Cast 1D/long to 1D/unsigned bytes::" msgstr "" -#: ../../library/stdtypes.rst:4850 msgid "" ">>> import array\n" ">>> a = array.array('l', [1,2,3])\n" @@ -6290,11 +3729,9 @@ msgid "" "24" msgstr "" -#: ../../library/stdtypes.rst:4871 msgid "Cast 1D/unsigned bytes to 1D/char::" msgstr "" -#: ../../library/stdtypes.rst:4873 msgid "" ">>> b = bytearray(b'zyz')\n" ">>> x = memoryview(b)\n" @@ -6308,11 +3745,9 @@ msgid "" "bytearray(b'ayz')" msgstr "" -#: ../../library/stdtypes.rst:4884 msgid "Cast 1D/bytes to 3D/ints to 1D/signed char::" msgstr "" -#: ../../library/stdtypes.rst:4886 msgid "" ">>> import struct\n" ">>> buf = struct.pack(\"i\"*12, *list(range(12)))\n" @@ -6339,11 +3774,9 @@ msgid "" "48" msgstr "" -#: ../../library/stdtypes.rst:4910 msgid "Cast 1D/unsigned long to 2D/unsigned long::" msgstr "" -#: ../../library/stdtypes.rst:4912 msgid "" ">>> buf = struct.pack(\"L\"*6, *list(range(6)))\n" ">>> x = memoryview(buf)\n" @@ -6356,33 +3789,24 @@ msgid "" "[[0, 1, 2], [3, 4, 5]]" msgstr "" -#: ../../library/stdtypes.rst:4924 msgid "The source format is no longer restricted when casting to a byte view." msgstr "" -#: ../../library/stdtypes.rst:4929 msgid "Count the number of occurrences of *value*." msgstr "" -#: ../../library/stdtypes.rst:4935 -msgid "" -"Return the index of the first occurrence of *value* (at or after index " -"*start* and before index *stop*)." +msgid "Return the index of the first occurrence of *value* (at or after index *start* and before index *stop*)." msgstr "" -#: ../../library/stdtypes.rst:4938 msgid "Raises a :exc:`ValueError` if *value* cannot be found." msgstr "" -#: ../../library/stdtypes.rst:4942 msgid "There are also several readonly attributes available:" msgstr "" -#: ../../library/stdtypes.rst:4946 msgid "The underlying object of the memoryview::" msgstr "" -#: ../../library/stdtypes.rst:4948 msgid "" ">>> b = bytearray(b'xyz')\n" ">>> m = memoryview(b)\n" @@ -6390,14 +3814,9 @@ msgid "" "True" msgstr "" -#: ../../library/stdtypes.rst:4957 -msgid "" -"``nbytes == product(shape) * itemsize == len(m.tobytes())``. This is the " -"amount of space in bytes that the array would use in a contiguous " -"representation. It is not necessarily equal to ``len(m)``::" +msgid "``nbytes == product(shape) * itemsize == len(m.tobytes())``. This is the amount of space in bytes that the array would use in a contiguous representation. It is not necessarily equal to ``len(m)``::" msgstr "" -#: ../../library/stdtypes.rst:4961 msgid "" ">>> import array\n" ">>> a = array.array('i', [1,2,3,4,5])\n" @@ -6415,11 +3834,9 @@ msgid "" "12" msgstr "" -#: ../../library/stdtypes.rst:4976 msgid "Multi-dimensional arrays::" msgstr "" -#: ../../library/stdtypes.rst:4978 msgid "" ">>> import struct\n" ">>> buf = struct.pack(\"d\"*12, *[1.5*x for x in range(12)])\n" @@ -6433,29 +3850,18 @@ msgid "" "96" msgstr "" -#: ../../library/stdtypes.rst:4993 msgid "A bool indicating whether the memory is read only." msgstr "" -#: ../../library/stdtypes.rst:4997 -msgid "" -"A string containing the format (in :mod:`struct` module style) for each " -"element in the view. A memoryview can be created from exporters with " -"arbitrary format strings, but some methods (e.g. :meth:`tolist`) are " -"restricted to native single element formats." +msgid "A string containing the format (in :mod:`struct` module style) for each element in the view. A memoryview can be created from exporters with arbitrary format strings, but some methods (e.g. :meth:`tolist`) are restricted to native single element formats." msgstr "" -#: ../../library/stdtypes.rst:5002 -msgid "" -"format ``'B'`` is now handled according to the struct module syntax. This " -"means that ``memoryview(b'abc')[0] == b'abc'[0] == 97``." +msgid "format ``'B'`` is now handled according to the struct module syntax. This means that ``memoryview(b'abc')[0] == b'abc'[0] == 97``." msgstr "" -#: ../../library/stdtypes.rst:5008 msgid "The size in bytes of each element of the memoryview::" msgstr "" -#: ../../library/stdtypes.rst:5010 msgid "" ">>> import array, struct\n" ">>> m = memoryview(array.array('H', [32000, 32001, 32002]))\n" @@ -6467,396 +3873,204 @@ msgid "" "True" msgstr "" -#: ../../library/stdtypes.rst:5021 -msgid "" -"An integer indicating how many dimensions of a multi-dimensional array the " -"memory represents." +msgid "An integer indicating how many dimensions of a multi-dimensional array the memory represents." msgstr "" -#: ../../library/stdtypes.rst:5026 -msgid "" -"A tuple of integers the length of :attr:`ndim` giving the shape of the " -"memory as an N-dimensional array." +msgid "A tuple of integers the length of :attr:`ndim` giving the shape of the memory as an N-dimensional array." msgstr "" -#: ../../library/stdtypes.rst:5029 ../../library/stdtypes.rst:5037 msgid "An empty tuple instead of ``None`` when ndim = 0." msgstr "" -#: ../../library/stdtypes.rst:5034 -msgid "" -"A tuple of integers the length of :attr:`ndim` giving the size in bytes to " -"access each element for each dimension of the array." +msgid "A tuple of integers the length of :attr:`ndim` giving the size in bytes to access each element for each dimension of the array." msgstr "" -#: ../../library/stdtypes.rst:5042 msgid "Used internally for PIL-style arrays. The value is informational only." msgstr "" -#: ../../library/stdtypes.rst:5046 msgid "A bool indicating whether the memory is C-:term:`contiguous`." msgstr "" -#: ../../library/stdtypes.rst:5052 msgid "A bool indicating whether the memory is Fortran :term:`contiguous`." msgstr "" -#: ../../library/stdtypes.rst:5058 msgid "A bool indicating whether the memory is :term:`contiguous`." msgstr "" -#: ../../library/stdtypes.rst:5062 -msgid "" -"For information on the thread safety of :class:`memoryview` objects in " -"the :term:`free-threaded build`, see :ref:`thread-safety-memoryview`." +msgid "For information on the thread safety of :class:`memoryview` objects in the :term:`free-threaded build`, see :ref:`thread-safety-memoryview`." msgstr "" -#: ../../library/stdtypes.rst:5069 msgid "Set Types --- :class:`set`, :class:`frozenset`" msgstr "" -#: ../../library/stdtypes.rst:5073 -msgid "" -"A :dfn:`set` object is an unordered collection of distinct :term:`hashable` " -"objects. Common uses include membership testing, removing duplicates from a " -"sequence, and computing mathematical operations such as intersection, union, " -"difference, and symmetric difference. (For other containers see the built-" -"in :class:`dict`, :class:`list`, and :class:`tuple` classes, and " -"the :mod:`collections` module.)" +msgid "A :dfn:`set` object is an unordered collection of distinct :term:`hashable` objects. Common uses include membership testing, removing duplicates from a sequence, and computing mathematical operations such as intersection, union, difference, and symmetric difference. (For other containers see the built-in :class:`dict`, :class:`list`, and :class:`tuple` classes, and the :mod:`collections` module.)" msgstr "" -#: ../../library/stdtypes.rst:5080 -msgid "" -"Like other collections, sets support ``x in set``, ``len(set)``, and ``for x " -"in set``. Being an unordered collection, sets do not record element " -"position or order of insertion. Accordingly, sets do not support indexing, " -"slicing, or other sequence-like behavior." +msgid "Like other collections, sets support ``x in set``, ``len(set)``, and ``for x in set``. Being an unordered collection, sets do not record element position or order of insertion. Accordingly, sets do not support indexing, slicing, or other sequence-like behavior." msgstr "" -#: ../../library/stdtypes.rst:5085 -msgid "" -"There are currently two built-in set types, :class:`set` " -"and :class:`frozenset`. The :class:`set` type is mutable --- the contents " -"can be changed using methods like :meth:`~set.add` and :meth:`~set.remove`. " -"Since it is mutable, it has no hash value and cannot be used as either a " -"dictionary key or as an element of another set. The :class:`frozenset` type " -"is immutable and :term:`hashable` --- its contents cannot be altered after " -"it is created; it can therefore be used as a dictionary key or as an element " -"of another set." +msgid "There are currently two built-in set types, :class:`set` and :class:`frozenset`. The :class:`set` type is mutable --- the contents can be changed using methods like :meth:`~set.add` and :meth:`~set.remove`. Since it is mutable, it has no hash value and cannot be used as either a dictionary key or as an element of another set. The :class:`frozenset` type is immutable and :term:`hashable` --- its contents cannot be altered after it is created; it can therefore be used as a dictionary key or as an element of another set." msgstr "" -#: ../../library/stdtypes.rst:5094 -msgid "" -"Non-empty sets (not frozensets) can be created by placing a comma-separated " -"list of elements within braces, for example: ``{'jack', 'sjoerd'}``, in " -"addition to the :class:`set` constructor." +msgid "Non-empty sets (not frozensets) can be created by placing a comma-separated list of elements within braces, for example: ``{'jack', 'sjoerd'}``, in addition to the :class:`set` constructor." msgstr "" -#: ../../library/stdtypes.rst:5098 msgid "The constructors for both classes work the same:" msgstr "" -#: ../../library/stdtypes.rst:5103 -msgid "" -"Return a new set or frozenset object whose elements are taken from " -"*iterable*. The elements of a set must be :term:`hashable`. To represent " -"sets of sets, the inner sets must be :class:`frozenset` objects. If " -"*iterable* is not specified, a new empty set is returned." +msgid "Return a new set or frozenset object whose elements are taken from *iterable*. The elements of a set must be :term:`hashable`. To represent sets of sets, the inner sets must be :class:`frozenset` objects. If *iterable* is not specified, a new empty set is returned." msgstr "" -#: ../../library/stdtypes.rst:5109 msgid "Sets can be created by several means:" msgstr "" -#: ../../library/stdtypes.rst:5111 -msgid "" -"Use a comma-separated list of elements within braces: ``{'jack', 'sjoerd'}``" +msgid "Use a comma-separated list of elements within braces: ``{'jack', 'sjoerd'}``" msgstr "" -#: ../../library/stdtypes.rst:5112 -msgid "" -"Use a set comprehension: ``{c for c in 'abracadabra' if c not in 'abc'}``" +msgid "Use a set comprehension: ``{c for c in 'abracadabra' if c not in 'abc'}``" msgstr "" -#: ../../library/stdtypes.rst:5113 -msgid "" -"Use the type constructor: ``set()``, ``set('foobar')``, ``set(['a', 'b', " -"'foo'])``" +msgid "Use the type constructor: ``set()``, ``set('foobar')``, ``set(['a', 'b', 'foo'])``" msgstr "" -#: ../../library/stdtypes.rst:5115 -msgid "" -"Instances of :class:`set` and :class:`frozenset` provide the following " -"operations:" +msgid "Instances of :class:`set` and :class:`frozenset` provide the following operations:" msgstr "" -#: ../../library/stdtypes.rst:5120 msgid "Return the number of elements in set *s* (cardinality of *s*)." msgstr "" -#: ../../library/stdtypes.rst:5124 msgid "Test *x* for membership in *s*." msgstr "" -#: ../../library/stdtypes.rst:5128 msgid "Test *x* for non-membership in *s*." msgstr "" -#: ../../library/stdtypes.rst:5133 -msgid "" -"Return ``True`` if the set has no elements in common with *other*. Sets are " -"disjoint if and only if their intersection is the empty set." +msgid "Return ``True`` if the set has no elements in common with *other*. Sets are disjoint if and only if their intersection is the empty set." msgstr "" -#: ../../library/stdtypes.rst:5140 msgid "Test whether every element in the set is in *other*." msgstr "" -#: ../../library/stdtypes.rst:5144 -msgid "" -"Test whether the set is a proper subset of *other*, that is, ``set <= other " -"and set != other``." +msgid "Test whether the set is a proper subset of *other*, that is, ``set <= other and set != other``." msgstr "" -#: ../../library/stdtypes.rst:5151 msgid "Test whether every element in *other* is in the set." msgstr "" -#: ../../library/stdtypes.rst:5155 -msgid "" -"Test whether the set is a proper superset of *other*, that is, ``set >= " -"other and set != other``." +msgid "Test whether the set is a proper superset of *other*, that is, ``set >= other and set != other``." msgstr "" -#: ../../library/stdtypes.rst:5162 msgid "Return a new set with elements from the set and all others." msgstr "" -#: ../../library/stdtypes.rst:5168 msgid "Return a new set with elements common to the set and all others." msgstr "" -#: ../../library/stdtypes.rst:5174 msgid "Return a new set with elements in the set that are not in the others." msgstr "" -#: ../../library/stdtypes.rst:5180 -msgid "" -"Return a new set with elements in either the set or *other* but not both." +msgid "Return a new set with elements in either the set or *other* but not both." msgstr "" -#: ../../library/stdtypes.rst:5185 msgid "Return a shallow copy of the set." msgstr "" -#: ../../library/stdtypes.rst:5188 -msgid "" -"Note, the non-operator versions " -"of :meth:`~frozenset.union`, :meth:`~frozenset.intersection`, :meth:`~frozenset.difference`, :meth:`~frozenset.symmetric_difference`, :meth:`~frozenset.issubset`, " -"and :meth:`~frozenset.issuperset` methods will accept any iterable as an " -"argument. In contrast, their operator based counterparts require their " -"arguments to be sets. This precludes error-prone constructions like " -"``set('abc') & 'cbs'`` in favor of the more readable " -"``set('abc').intersection('cbs')``." +msgid "Note, the non-operator versions of :meth:`~frozenset.union`, :meth:`~frozenset.intersection`, :meth:`~frozenset.difference`, :meth:`~frozenset.symmetric_difference`, :meth:`~frozenset.issubset`, and :meth:`~frozenset.issuperset` methods will accept any iterable as an argument. In contrast, their operator based counterparts require their arguments to be sets. This precludes error-prone constructions like ``set('abc') & 'cbs'`` in favor of the more readable ``set('abc').intersection('cbs')``." msgstr "" -#: ../../library/stdtypes.rst:5195 -msgid "" -"Both :class:`set` and :class:`frozenset` support set to set comparisons. Two " -"sets are equal if and only if every element of each set is contained in the " -"other (each is a subset of the other). A set is less than another set if and " -"only if the first set is a proper subset of the second set (is a subset, but " -"is not equal). A set is greater than another set if and only if the first " -"set is a proper superset of the second set (is a superset, but is not equal)." +msgid "Both :class:`set` and :class:`frozenset` support set to set comparisons. Two sets are equal if and only if every element of each set is contained in the other (each is a subset of the other). A set is less than another set if and only if the first set is a proper subset of the second set (is a subset, but is not equal). A set is greater than another set if and only if the first set is a proper superset of the second set (is a superset, but is not equal)." msgstr "" -#: ../../library/stdtypes.rst:5202 -msgid "" -"Instances of :class:`set` are compared to instances of :class:`frozenset` " -"based on their members. For example, ``set('abc') == frozenset('abc')`` " -"returns ``True`` and so does ``set('abc') in set([frozenset('abc')])``." +msgid "Instances of :class:`set` are compared to instances of :class:`frozenset` based on their members. For example, ``set('abc') == frozenset('abc')`` returns ``True`` and so does ``set('abc') in set([frozenset('abc')])``." msgstr "" -#: ../../library/stdtypes.rst:5206 -msgid "" -"The subset and equality comparisons do not generalize to a total ordering " -"function. For example, any two nonempty disjoint sets are not equal and are " -"not subsets of each other, so *all* of the following return ``False``: " -"``ab``." +msgid "The subset and equality comparisons do not generalize to a total ordering function. For example, any two nonempty disjoint sets are not equal and are not subsets of each other, so *all* of the following return ``False``: ``ab``." msgstr "" -#: ../../library/stdtypes.rst:5211 -msgid "" -"Since sets only define partial ordering (subset relationships), the output " -"of the :meth:`list.sort` method is undefined for lists of sets." +msgid "Since sets only define partial ordering (subset relationships), the output of the :meth:`list.sort` method is undefined for lists of sets." msgstr "" -#: ../../library/stdtypes.rst:5214 msgid "Set elements, like dictionary keys, must be :term:`hashable`." msgstr "" -#: ../../library/stdtypes.rst:5216 -msgid "" -"Binary operations that mix :class:`set` instances with :class:`frozenset` " -"return the type of the first operand. For example: ``frozenset('ab') | " -"set('bc')`` returns an instance of :class:`frozenset`." +msgid "Binary operations that mix :class:`set` instances with :class:`frozenset` return the type of the first operand. For example: ``frozenset('ab') | set('bc')`` returns an instance of :class:`frozenset`." msgstr "" -#: ../../library/stdtypes.rst:5220 -msgid "" -"The following table lists operations available for :class:`set` that do not " -"apply to immutable instances of :class:`frozenset`:" +msgid "The following table lists operations available for :class:`set` that do not apply to immutable instances of :class:`frozenset`:" msgstr "" -#: ../../library/stdtypes.rst:5226 msgid "Update the set, adding elements from all others." msgstr "" -#: ../../library/stdtypes.rst:5231 msgid "Update the set, keeping only elements found in it and all others." msgstr "" -#: ../../library/stdtypes.rst:5236 msgid "Update the set, removing elements found in others." msgstr "" -#: ../../library/stdtypes.rst:5241 -msgid "" -"Update the set, keeping only elements found in either set, but not in both." +msgid "Update the set, keeping only elements found in either set, but not in both." msgstr "" -#: ../../library/stdtypes.rst:5245 msgid "Add element *elem* to the set." msgstr "" -#: ../../library/stdtypes.rst:5249 -msgid "" -"Remove element *elem* from the set. Raises :exc:`KeyError` if *elem* is not " -"contained in the set." +msgid "Remove element *elem* from the set. Raises :exc:`KeyError` if *elem* is not contained in the set." msgstr "" -#: ../../library/stdtypes.rst:5254 msgid "Remove element *elem* from the set if it is present." msgstr "" -#: ../../library/stdtypes.rst:5258 -msgid "" -"Remove and return an arbitrary element from the set. Raises :exc:`KeyError` " -"if the set is empty." +msgid "Remove and return an arbitrary element from the set. Raises :exc:`KeyError` if the set is empty." msgstr "" -#: ../../library/stdtypes.rst:5263 msgid "Remove all elements from the set." msgstr "" -#: ../../library/stdtypes.rst:5266 -msgid "" -"Note, the non-operator versions of " -"the :meth:`~set.update`, :meth:`~set.intersection_update`, :meth:`~set.difference_update`, " -"and :meth:`~set.symmetric_difference_update` methods will accept any " -"iterable as an argument." +msgid "Note, the non-operator versions of the :meth:`~set.update`, :meth:`~set.intersection_update`, :meth:`~set.difference_update`, and :meth:`~set.symmetric_difference_update` methods will accept any iterable as an argument." msgstr "" -#: ../../library/stdtypes.rst:5271 -msgid "" -"Note, the *elem* argument to " -"the :meth:`~object.__contains__`, :meth:`~set.remove`, " -"and :meth:`~set.discard` methods may be a set. To support searching for an " -"equivalent frozenset, a temporary one is created from *elem*." +msgid "Note, the *elem* argument to the :meth:`~object.__contains__`, :meth:`~set.remove`, and :meth:`~set.discard` methods may be a set. To support searching for an equivalent frozenset, a temporary one is created from *elem*." msgstr "" -#: ../../library/stdtypes.rst:5278 -msgid "" -"For detailed information on thread-safety guarantees for :class:`set` " -"objects, see :ref:`thread-safety-set`." +msgid "For detailed information on thread-safety guarantees for :class:`set` objects, see :ref:`thread-safety-set`." msgstr "" -#: ../../library/stdtypes.rst:5281 -msgid "" -"Sets and frozensets are :ref:`generic ` over the type of their " -"elements." +msgid "Sets and frozensets are :ref:`generic ` over the type of their elements." msgstr "" -#: ../../library/stdtypes.rst:5287 msgid "Mapping Types --- :class:`dict`" msgstr "" -#: ../../library/stdtypes.rst:5297 -msgid "" -"A :term:`mapping` object maps :term:`hashable` values to arbitrary objects. " -"Mappings are mutable objects. There is currently only one standard mapping " -"type, the :dfn:`dictionary`. (For other containers see the built-" -"in :class:`list`, :class:`set`, and :class:`tuple` classes, and " -"the :mod:`collections` module.)" +msgid "A :term:`mapping` object maps :term:`hashable` values to arbitrary objects. Mappings are mutable objects. There is currently only one standard mapping type, the :dfn:`dictionary`. (For other containers see the built-in :class:`list`, :class:`set`, and :class:`tuple` classes, and the :mod:`collections` module.)" msgstr "" -#: ../../library/stdtypes.rst:5303 -msgid "" -"A dictionary's keys are *almost* arbitrary values. Values that are " -"not :term:`hashable`, that is, values containing lists, dictionaries or " -"other mutable types (that are compared by value rather than by object " -"identity) may not be used as keys. Values that compare equal (such as ``1``, " -"``1.0``, and ``True``) can be used interchangeably to index the same " -"dictionary entry." +msgid "A dictionary's keys are *almost* arbitrary values. Values that are not :term:`hashable`, that is, values containing lists, dictionaries or other mutable types (that are compared by value rather than by object identity) may not be used as keys. Values that compare equal (such as ``1``, ``1.0``, and ``True``) can be used interchangeably to index the same dictionary entry." msgstr "" -#: ../../library/stdtypes.rst:5314 -msgid "" -"Return a new dictionary initialized from an optional positional argument and " -"a possibly empty set of keyword arguments." +msgid "Return a new dictionary initialized from an optional positional argument and a possibly empty set of keyword arguments." msgstr "" -#: ../../library/stdtypes.rst:5317 msgid "Dictionaries can be created by several means:" msgstr "" -#: ../../library/stdtypes.rst:5319 -msgid "" -"Use a comma-separated list of ``key: value`` pairs within braces: ``{'jack': " -"4098, 'sjoerd': 4127}`` or ``{4098: 'jack', 4127: 'sjoerd'}``" +msgid "Use a comma-separated list of ``key: value`` pairs within braces: ``{'jack': 4098, 'sjoerd': 4127}`` or ``{4098: 'jack', 4127: 'sjoerd'}``" msgstr "" -#: ../../library/stdtypes.rst:5321 msgid "Use a dict comprehension: ``{}``, ``{x: x ** 2 for x in range(10)}``" msgstr "" -#: ../../library/stdtypes.rst:5322 -msgid "" -"Use the type constructor: ``dict()``, ``dict([('foo', 100), ('bar', " -"200)])``, ``dict(foo=100, bar=200)``" +msgid "Use the type constructor: ``dict()``, ``dict([('foo', 100), ('bar', 200)])``, ``dict(foo=100, bar=200)``" msgstr "" -#: ../../library/stdtypes.rst:5325 -msgid "" -"If no positional argument is given, an empty dictionary is created. If a " -"positional argument is given and it defines a ``keys()`` method, a " -"dictionary is created by calling :meth:`~object.__getitem__` on the argument " -"with each returned key from the method. Otherwise, the positional argument " -"must be an :term:`iterable` object. Each item in the iterable must itself " -"be an iterable with exactly two elements. The first element of each item " -"becomes a key in the new dictionary, and the second element the " -"corresponding value. If a key occurs more than once, the last value for " -"that key becomes the corresponding value in the new dictionary." +msgid "If no positional argument is given, an empty dictionary is created. If a positional argument is given and it defines a ``keys()`` method, a dictionary is created by calling :meth:`~object.__getitem__` on the argument with each returned key from the method. Otherwise, the positional argument must be an :term:`iterable` object. Each item in the iterable must itself be an iterable with exactly two elements. The first element of each item becomes a key in the new dictionary, and the second element the corresponding value. If a key occurs more than once, the last value for that key becomes the corresponding value in the new dictionary." msgstr "" -#: ../../library/stdtypes.rst:5335 -msgid "" -"If keyword arguments are given, the keyword arguments and their values are " -"added to the dictionary created from the positional argument. If a key " -"being added is already present, the value from the keyword argument replaces " -"the value from the positional argument." +msgid "If keyword arguments are given, the keyword arguments and their values are added to the dictionary created from the positional argument. If a key being added is already present, the value from the keyword argument replaces the value from the positional argument." msgstr "" -#: ../../library/stdtypes.rst:5340 -msgid "" -"Dictionaries compare equal if and only if they have the same ``(key, " -"value)`` pairs (regardless of ordering). Order comparisons ('<', '<=', '>=', " -"'>') raise :exc:`TypeError`. To illustrate dictionary creation and " -"equality, the following examples all return a dictionary equal to " -"``{\"one\": 1, \"two\": 2, \"three\": 3}``::" +msgid "Dictionaries compare equal if and only if they have the same ``(key, value)`` pairs (regardless of ordering). Order comparisons ('<', '<=', '>=', '>') raise :exc:`TypeError`. To illustrate dictionary creation and equality, the following examples all return a dictionary equal to ``{\"one\": 1, \"two\": 2, \"three\": 3}``::" msgstr "" -#: ../../library/stdtypes.rst:5346 msgid "" ">>> a = dict(one=1, two=2, three=3)\n" ">>> b = {'one': 1, 'two': 2, 'three': 3}\n" @@ -6868,19 +4082,12 @@ msgid "" "True" msgstr "" -#: ../../library/stdtypes.rst:5355 -msgid "" -"Providing keyword arguments as in the first example only works for keys that " -"are valid Python identifiers. Otherwise, any valid keys can be used." +msgid "Providing keyword arguments as in the first example only works for keys that are valid Python identifiers. Otherwise, any valid keys can be used." msgstr "" -#: ../../library/stdtypes.rst:5358 -msgid "" -"Dictionaries preserve insertion order. Note that updating a key does not " -"affect the order. Keys added after deletion are inserted at the end. ::" +msgid "Dictionaries preserve insertion order. Note that updating a key does not affect the order. Keys added after deletion are inserted at the end. ::" msgstr "" -#: ../../library/stdtypes.rst:5361 msgid "" ">>> d = {\"one\": 1, \"two\": 2, \"three\": 3, \"four\": 4}\n" ">>> d\n" @@ -6898,51 +4105,27 @@ msgid "" "{'one': 42, 'three': 3, 'four': 4, 'two': None}" msgstr "" -#: ../../library/stdtypes.rst:5376 -msgid "" -"Dictionary order is guaranteed to be insertion order. This behavior was an " -"implementation detail of CPython from 3.6." +msgid "Dictionary order is guaranteed to be insertion order. This behavior was an implementation detail of CPython from 3.6." msgstr "" -#: ../../library/stdtypes.rst:5380 -msgid "" -"Dictionaries are :ref:`generic ` over two types, signifying " -"(respectively) the types of the dictionary's keys and values." +msgid "Dictionaries are :ref:`generic ` over two types, signifying (respectively) the types of the dictionary's keys and values." msgstr "" -#: ../../library/stdtypes.rst:5383 -msgid "" -"These are the operations that dictionaries support (and therefore, custom " -"mapping types should support too):" +msgid "These are the operations that dictionaries support (and therefore, custom mapping types should support too):" msgstr "" -#: ../../library/stdtypes.rst:5388 msgid "Return a list of all the keys used in the dictionary *d*." msgstr "" -#: ../../library/stdtypes.rst:5392 msgid "Return the number of items in the dictionary *d*." msgstr "" -#: ../../library/stdtypes.rst:5396 -msgid "" -"Return the item of *d* with key *key*. Raises a :exc:`KeyError` if *key* is " -"not in the map." +msgid "Return the item of *d* with key *key*. Raises a :exc:`KeyError` if *key* is not in the map." msgstr "" -#: ../../library/stdtypes.rst:5401 -msgid "" -"If a subclass of dict defines a method :meth:`~object.__missing__` and *key* " -"is not present, the ``d[key]`` operation calls that method with the key " -"*key* as argument. The ``d[key]`` operation then returns or raises whatever " -"is returned or raised by the ``__missing__(key)`` call. No other operations " -"or methods invoke :meth:`~object.__missing__`. " -"If :meth:`~object.__missing__` is not defined, :exc:`KeyError` is " -"raised. :meth:`~object.__missing__` must be a method; it cannot be an " -"instance variable::" +msgid "If a subclass of dict defines a method :meth:`~object.__missing__` and *key* is not present, the ``d[key]`` operation calls that method with the key *key* as argument. The ``d[key]`` operation then returns or raises whatever is returned or raised by the ``__missing__(key)`` call. No other operations or methods invoke :meth:`~object.__missing__`. If :meth:`~object.__missing__` is not defined, :exc:`KeyError` is raised. :meth:`~object.__missing__` must be a method; it cannot be an instance variable::" msgstr "" -#: ../../library/stdtypes.rst:5409 msgid "" ">>> class Counter(dict):\n" "... def __missing__(self, key):\n" @@ -6956,170 +4139,90 @@ msgid "" "1" msgstr "" -#: ../../library/stdtypes.rst:5420 -msgid "" -"The example above shows part of the implementation " -"of :class:`collections.Counter`. A different :meth:`!__missing__` method is " -"used by :class:`collections.defaultdict`." +msgid "The example above shows part of the implementation of :class:`collections.Counter`. A different :meth:`!__missing__` method is used by :class:`collections.defaultdict`." msgstr "" -#: ../../library/stdtypes.rst:5427 msgid "Set ``d[key]`` to *value*." msgstr "" -#: ../../library/stdtypes.rst:5431 -msgid "" -"Remove ``d[key]`` from *d*. Raises a :exc:`KeyError` if *key* is not in the " -"map." +msgid "Remove ``d[key]`` from *d*. Raises a :exc:`KeyError` if *key* is not in the map." msgstr "" -#: ../../library/stdtypes.rst:5436 msgid "Return ``True`` if *d* has a key *key*, else ``False``." msgstr "" -#: ../../library/stdtypes.rst:5440 msgid "Equivalent to ``not key in d``." msgstr "" -#: ../../library/stdtypes.rst:5444 -msgid "" -"Return an iterator over the keys of the dictionary. This is a shortcut for " -"``iter(d.keys())``." +msgid "Return an iterator over the keys of the dictionary. This is a shortcut for ``iter(d.keys())``." msgstr "" -#: ../../library/stdtypes.rst:5449 msgid "Remove all items from the dictionary." msgstr "" -#: ../../library/stdtypes.rst:5453 msgid "Return a shallow copy of the dictionary." msgstr "" -#: ../../library/stdtypes.rst:5457 -msgid "" -"Create a new dictionary with keys from *iterable* and values set to *value*." +msgid "Create a new dictionary with keys from *iterable* and values set to *value*." msgstr "" -#: ../../library/stdtypes.rst:5459 -msgid "" -":meth:`fromkeys` is a class method that returns a new dictionary. *value* " -"defaults to ``None``. All of the values refer to just a single instance, so " -"it generally doesn't make sense for *value* to be a mutable object such as " -"an empty list. To get distinct values, use a :ref:`dict comprehension " -"` instead." +msgid ":meth:`fromkeys` is a class method that returns a new dictionary. *value* defaults to ``None``. All of the values refer to just a single instance, so it generally doesn't make sense for *value* to be a mutable object such as an empty list. To get distinct values, use a :ref:`dict comprehension ` instead." msgstr "" -#: ../../library/stdtypes.rst:5467 -msgid "" -"Return the value for *key* if *key* is in the dictionary, else *default*. If " -"*default* is not given, it defaults to ``None``, so that this method never " -"raises a :exc:`KeyError`." +msgid "Return the value for *key* if *key* is in the dictionary, else *default*. If *default* is not given, it defaults to ``None``, so that this method never raises a :exc:`KeyError`." msgstr "" -#: ../../library/stdtypes.rst:5473 -msgid "" -"Return a new view of the dictionary's items (``(key, value)`` pairs). See " -"the :ref:`documentation of view objects `." +msgid "Return a new view of the dictionary's items (``(key, value)`` pairs). See the :ref:`documentation of view objects `." msgstr "" -#: ../../library/stdtypes.rst:5478 -msgid "" -"Return a new view of the dictionary's keys. See the :ref:`documentation of " -"view objects `." +msgid "Return a new view of the dictionary's keys. See the :ref:`documentation of view objects `." msgstr "" -#: ../../library/stdtypes.rst:5484 -msgid "" -"If *key* is in the dictionary, remove it and return its value, else return " -"*default*. If *default* is not given and *key* is not in the dictionary, " -"a :exc:`KeyError` is raised." +msgid "If *key* is in the dictionary, remove it and return its value, else return *default*. If *default* is not given and *key* is not in the dictionary, a :exc:`KeyError` is raised." msgstr "" -#: ../../library/stdtypes.rst:5490 -msgid "" -"Remove and return a ``(key, value)`` pair from the dictionary. Pairs are " -"returned in :abbr:`LIFO (last-in, first-out)` order." +msgid "Remove and return a ``(key, value)`` pair from the dictionary. Pairs are returned in :abbr:`LIFO (last-in, first-out)` order." msgstr "" -#: ../../library/stdtypes.rst:5493 -msgid "" -":meth:`popitem` is useful to destructively iterate over a dictionary, as " -"often used in set algorithms. If the dictionary is empty, " -"calling :meth:`popitem` raises a :exc:`KeyError`." +msgid ":meth:`popitem` is useful to destructively iterate over a dictionary, as often used in set algorithms. If the dictionary is empty, calling :meth:`popitem` raises a :exc:`KeyError`." msgstr "" -#: ../../library/stdtypes.rst:5497 -msgid "" -"LIFO order is now guaranteed. In prior versions, :meth:`popitem` would " -"return an arbitrary key/value pair." +msgid "LIFO order is now guaranteed. In prior versions, :meth:`popitem` would return an arbitrary key/value pair." msgstr "" -#: ../../library/stdtypes.rst:5503 -msgid "" -"Return a reverse iterator over the keys of the dictionary. This is a " -"shortcut for ``reversed(d.keys())``." +msgid "Return a reverse iterator over the keys of the dictionary. This is a shortcut for ``reversed(d.keys())``." msgstr "" -#: ../../library/stdtypes.rst:5510 -msgid "" -"If *key* is in the dictionary, return its value. If not, insert *key* with " -"a value of *default* and return *default*. *default* defaults to ``None``." +msgid "If *key* is in the dictionary, return its value. If not, insert *key* with a value of *default* and return *default*. *default* defaults to ``None``." msgstr "" -#: ../../library/stdtypes.rst:5518 -msgid "" -"Update the dictionary with the key/value pairs from *mapping* or *iterable* " -"and *kwargs*, overwriting existing keys. Return ``None``." +msgid "Update the dictionary with the key/value pairs from *mapping* or *iterable* and *kwargs*, overwriting existing keys. Return ``None``." msgstr "" -#: ../../library/stdtypes.rst:5521 -msgid "" -":meth:`update` accepts either another object with a ``keys()`` method (in " -"which case :meth:`~object.__getitem__` is called with every key returned " -"from the method) or an iterable of key/value pairs (as tuples or other " -"iterables of length two). If keyword arguments are specified, the dictionary " -"is then updated with those key/value pairs: ``d.update(red=1, blue=2)``." +msgid ":meth:`update` accepts either another object with a ``keys()`` method (in which case :meth:`~object.__getitem__` is called with every key returned from the method) or an iterable of key/value pairs (as tuples or other iterables of length two). If keyword arguments are specified, the dictionary is then updated with those key/value pairs: ``d.update(red=1, blue=2)``." msgstr "" -#: ../../library/stdtypes.rst:5529 -msgid "" -"Return a new view of the dictionary's values. See the :ref:`documentation " -"of view objects `." +msgid "Return a new view of the dictionary's values. See the :ref:`documentation of view objects `." msgstr "" -#: ../../library/stdtypes.rst:5532 -msgid "" -"An equality comparison between one ``dict.values()`` view and another will " -"always return ``False``. This also applies when comparing ``dict.values()`` " -"to itself::" +msgid "An equality comparison between one ``dict.values()`` view and another will always return ``False``. This also applies when comparing ``dict.values()`` to itself::" msgstr "" -#: ../../library/stdtypes.rst:5536 msgid "" ">>> d = {'a': 1}\n" ">>> d.values() == d.values()\n" "False" msgstr "" -#: ../../library/stdtypes.rst:5542 -msgid "" -"Create a new dictionary with the merged keys and values of *d* and *other*, " -"which must both be dictionaries. The values of *other* take priority when " -"*d* and *other* share keys." +msgid "Create a new dictionary with the merged keys and values of *d* and *other*, which must both be dictionaries. The values of *other* take priority when *d* and *other* share keys." msgstr "" -#: ../../library/stdtypes.rst:5550 -msgid "" -"Update the dictionary *d* with keys and values from *other*, which may be " -"either a :term:`mapping` or an :term:`iterable` of key/value pairs. The " -"values of *other* take priority when *d* and *other* share keys." +msgid "Update the dictionary *d* with keys and values from *other*, which may be either a :term:`mapping` or an :term:`iterable` of key/value pairs. The values of *other* take priority when *d* and *other* share keys." msgstr "" -#: ../../library/stdtypes.rst:5556 msgid "Dictionaries and dictionary views are reversible. ::" msgstr "" -#: ../../library/stdtypes.rst:5558 msgid "" ">>> d = {\"one\": 1, \"two\": 2, \"three\": 3, \"four\": 4}\n" ">>> d\n" @@ -7132,109 +4235,57 @@ msgid "" "[('four', 4), ('three', 3), ('two', 2), ('one', 1)]" msgstr "" -#: ../../library/stdtypes.rst:5568 msgid "Dictionaries are now reversible." msgstr "" -#: ../../library/stdtypes.rst:5573 -msgid "" -":class:`types.MappingProxyType` can be used to create a read-only view of " -"a :class:`dict`." +msgid ":class:`types.MappingProxyType` can be used to create a read-only view of a :class:`dict`." msgstr "" -#: ../../library/stdtypes.rst:5579 -msgid "" -"For detailed information on thread-safety guarantees for :class:`dict` " -"objects, see :ref:`thread-safety-dict`." +msgid "For detailed information on thread-safety guarantees for :class:`dict` objects, see :ref:`thread-safety-dict`." msgstr "" -#: ../../library/stdtypes.rst:5586 msgid "Dictionary view objects" msgstr "" -#: ../../library/stdtypes.rst:5588 -msgid "" -"The objects returned by :meth:`dict.keys`, :meth:`dict.values` " -"and :meth:`dict.items` are *view objects*. They provide a dynamic view on " -"the dictionary's entries, which means that when the dictionary changes, the " -"view reflects these changes." +msgid "The objects returned by :meth:`dict.keys`, :meth:`dict.values` and :meth:`dict.items` are *view objects*. They provide a dynamic view on the dictionary's entries, which means that when the dictionary changes, the view reflects these changes." msgstr "" -#: ../../library/stdtypes.rst:5593 -msgid "" -"Dictionary views can be iterated over to yield their respective data, and " -"support membership tests:" +msgid "Dictionary views can be iterated over to yield their respective data, and support membership tests:" msgstr "" -#: ../../library/stdtypes.rst:5598 msgid "Return the number of entries in the dictionary." msgstr "" -#: ../../library/stdtypes.rst:5602 -msgid "" -"Return an iterator over the keys, values or items (represented as tuples of " -"``(key, value)``) in the dictionary." +msgid "Return an iterator over the keys, values or items (represented as tuples of ``(key, value)``) in the dictionary." msgstr "" -#: ../../library/stdtypes.rst:5605 -msgid "" -"Keys and values are iterated over in insertion order. This allows the " -"creation of ``(value, key)`` pairs using :func:`zip`: ``pairs = " -"zip(d.values(), d.keys())``. Another way to create the same list is ``pairs " -"= [(v, k) for (k, v) in d.items()]``." +msgid "Keys and values are iterated over in insertion order. This allows the creation of ``(value, key)`` pairs using :func:`zip`: ``pairs = zip(d.values(), d.keys())``. Another way to create the same list is ``pairs = [(v, k) for (k, v) in d.items()]``." msgstr "" -#: ../../library/stdtypes.rst:5610 -msgid "" -"Iterating views while adding or deleting entries in the dictionary may raise " -"a :exc:`RuntimeError` or fail to iterate over all entries." +msgid "Iterating views while adding or deleting entries in the dictionary may raise a :exc:`RuntimeError` or fail to iterate over all entries." msgstr "" -#: ../../library/stdtypes.rst:5613 msgid "Dictionary order is guaranteed to be insertion order." msgstr "" -#: ../../library/stdtypes.rst:5618 -msgid "" -"Return ``True`` if *x* is in the underlying dictionary's keys, values or " -"items (in the latter case, *x* should be a ``(key, value)`` tuple)." +msgid "Return ``True`` if *x* is in the underlying dictionary's keys, values or items (in the latter case, *x* should be a ``(key, value)`` tuple)." msgstr "" -#: ../../library/stdtypes.rst:5623 -msgid "" -"Return a reverse iterator over the keys, values or items of the dictionary. " -"The view will be iterated in reverse order of the insertion." +msgid "Return a reverse iterator over the keys, values or items of the dictionary. The view will be iterated in reverse order of the insertion." msgstr "" -#: ../../library/stdtypes.rst:5626 msgid "Dictionary views are now reversible." msgstr "" -#: ../../library/stdtypes.rst:5631 -msgid "" -"Return a :class:`types.MappingProxyType` that wraps the original dictionary " -"to which the view refers." +msgid "Return a :class:`types.MappingProxyType` that wraps the original dictionary to which the view refers." msgstr "" -#: ../../library/stdtypes.rst:5636 -msgid "" -"Keys views are set-like since their entries are unique and :term:`hashable`. " -"Items views also have set-like operations since the (key, value) pairs are " -"unique and the keys are hashable. If all values in an items view are " -"hashable as well, then the items view can interoperate with other sets. " -"(Values views are not treated as set-like since the entries are generally " -"not unique.) For set-like views, all of the operations defined for the " -"abstract base class :class:`collections.abc.Set` are available (for example, " -"``==``, ``<``, or ``^``). While using set operators, set-like views accept " -"any iterable as the other operand, unlike sets which only accept sets as the " -"input." +msgid "Keys views are set-like since their entries are unique and :term:`hashable`. Items views also have set-like operations since the (key, value) pairs are unique and the keys are hashable. If all values in an items view are hashable as well, then the items view can interoperate with other sets. (Values views are not treated as set-like since the entries are generally not unique.) For set-like views, all of the operations defined for the abstract base class :class:`collections.abc.Set` are available (for example, ``==``, ``<``, or ``^``). While using set operators, set-like views accept any iterable as the other operand, unlike sets which only accept sets as the input." msgstr "" -#: ../../library/stdtypes.rst:5648 msgid "An example of dictionary view usage::" msgstr "" -#: ../../library/stdtypes.rst:5650 msgid "" ">>> dishes = {'eggs': 2, 'sausage': 1, 'bacon': 1, 'spam': 500}\n" ">>> keys = dishes.keys()\n" @@ -7275,222 +4326,94 @@ msgid "" "500" msgstr "" -#: ../../library/stdtypes.rst:5692 msgid "Context Manager Types" msgstr "" -#: ../../library/stdtypes.rst:5699 -msgid "" -"Python's :keyword:`with` statement supports the concept of a runtime context " -"defined by a context manager. This is implemented using a pair of methods " -"that allow user-defined classes to define a runtime context that is entered " -"before the statement body is executed and exited when the statement ends:" +msgid "Python's :keyword:`with` statement supports the concept of a runtime context defined by a context manager. This is implemented using a pair of methods that allow user-defined classes to define a runtime context that is entered before the statement body is executed and exited when the statement ends:" msgstr "" -#: ../../library/stdtypes.rst:5707 -msgid "" -"Enter the runtime context and return either this object or another object " -"related to the runtime context. The value returned by this method is bound " -"to the identifier in the :keyword:`!as` clause of :keyword:`with` statements " -"using this context manager." +msgid "Enter the runtime context and return either this object or another object related to the runtime context. The value returned by this method is bound to the identifier in the :keyword:`!as` clause of :keyword:`with` statements using this context manager." msgstr "" -#: ../../library/stdtypes.rst:5712 -msgid "" -"An example of a context manager that returns itself is a :term:`file " -"object`. File objects return themselves from __enter__() to " -"allow :func:`open` to be used as the context expression in a :keyword:`with` " -"statement." +msgid "An example of a context manager that returns itself is a :term:`file object`. File objects return themselves from __enter__() to allow :func:`open` to be used as the context expression in a :keyword:`with` statement." msgstr "" -#: ../../library/stdtypes.rst:5716 -msgid "" -"An example of a context manager that returns a related object is the one " -"returned by :func:`decimal.localcontext`. These managers set the active " -"decimal context to a copy of the original decimal context and then return " -"the copy. This allows changes to be made to the current decimal context in " -"the body of the :keyword:`with` statement without affecting code outside " -"the :keyword:`!with` statement." +msgid "An example of a context manager that returns a related object is the one returned by :func:`decimal.localcontext`. These managers set the active decimal context to a copy of the original decimal context and then return the copy. This allows changes to be made to the current decimal context in the body of the :keyword:`with` statement without affecting code outside the :keyword:`!with` statement." msgstr "" -#: ../../library/stdtypes.rst:5726 -msgid "" -"Exit the runtime context and return a Boolean flag indicating if any " -"exception that occurred should be suppressed. If an exception occurred while " -"executing the body of the :keyword:`with` statement, the arguments contain " -"the exception type, value and traceback information. Otherwise, all three " -"arguments are ``None``." +msgid "Exit the runtime context and return a Boolean flag indicating if any exception that occurred should be suppressed. If an exception occurred while executing the body of the :keyword:`with` statement, the arguments contain the exception type, value and traceback information. Otherwise, all three arguments are ``None``." msgstr "" -#: ../../library/stdtypes.rst:5731 -msgid "" -"Returning a true value from this method will cause the :keyword:`with` " -"statement to suppress the exception and continue execution with the " -"statement immediately following the :keyword:`!with` statement. Otherwise " -"the exception continues propagating after this method has finished executing." +msgid "Returning a true value from this method will cause the :keyword:`with` statement to suppress the exception and continue execution with the statement immediately following the :keyword:`!with` statement. Otherwise the exception continues propagating after this method has finished executing." msgstr "" -#: ../../library/stdtypes.rst:5736 -msgid "" -"If this method raises an exception while handling an earlier exception from " -"the :keyword:`with` block, the new exception is raised, and the original " -"exception is stored in its :attr:`~BaseException.__context__` attribute." +msgid "If this method raises an exception while handling an earlier exception from the :keyword:`with` block, the new exception is raised, and the original exception is stored in its :attr:`~BaseException.__context__` attribute." msgstr "" -#: ../../library/stdtypes.rst:5740 -msgid "" -"The exception passed in should never be reraised explicitly - instead, this " -"method should return a false value to indicate that the method completed " -"successfully and does not want to suppress the raised exception. This allows " -"context management code to easily detect whether or not " -"an :meth:`~object.__exit__` method has actually failed." +msgid "The exception passed in should never be reraised explicitly - instead, this method should return a false value to indicate that the method completed successfully and does not want to suppress the raised exception. This allows context management code to easily detect whether or not an :meth:`~object.__exit__` method has actually failed." msgstr "" -#: ../../library/stdtypes.rst:5746 -msgid "" -"Python defines several context managers to support easy thread " -"synchronisation, prompt closure of files or other objects, and simpler " -"manipulation of the active decimal arithmetic context. The specific types " -"are not treated specially beyond their implementation of the context " -"management protocol. See the :mod:`contextlib` module for some examples." +msgid "Python defines several context managers to support easy thread synchronisation, prompt closure of files or other objects, and simpler manipulation of the active decimal arithmetic context. The specific types are not treated specially beyond their implementation of the context management protocol. See the :mod:`contextlib` module for some examples." msgstr "" -#: ../../library/stdtypes.rst:5752 -msgid "" -"Python's :term:`generator`\\s and the :class:`contextlib.contextmanager` " -"decorator provide a convenient way to implement these protocols. If a " -"generator function is decorated with the :class:`contextlib.contextmanager` " -"decorator, it will return a context manager implementing the " -"necessary :meth:`~contextmanager.__enter__` " -"and :meth:`~contextmanager.__exit__` methods, rather than the iterator " -"produced by an undecorated generator function." +msgid "Python's :term:`generator`\\s and the :class:`contextlib.contextmanager` decorator provide a convenient way to implement these protocols. If a generator function is decorated with the :class:`contextlib.contextmanager` decorator, it will return a context manager implementing the necessary :meth:`~contextmanager.__enter__` and :meth:`~contextmanager.__exit__` methods, rather than the iterator produced by an undecorated generator function." msgstr "" -#: ../../library/stdtypes.rst:5759 -msgid "" -"Note that there is no specific slot for any of these methods in the type " -"structure for Python objects in the Python/C API. Extension types wanting to " -"define these methods must provide them as a normal Python accessible method. " -"Compared to the overhead of setting up the runtime context, the overhead of " -"a single class dictionary lookup is negligible." +msgid "Note that there is no specific slot for any of these methods in the type structure for Python objects in the Python/C API. Extension types wanting to define these methods must provide them as a normal Python accessible method. Compared to the overhead of setting up the runtime context, the overhead of a single class dictionary lookup is negligible." msgstr "" -#: ../../library/stdtypes.rst:5767 -msgid "" -"Type Annotation Types --- :ref:`Generic Alias `, :ref:`Union `" +msgid "Type Annotation Types --- :ref:`Generic Alias `, :ref:`Union `" msgstr "" -#: ../../library/stdtypes.rst:5772 -msgid "" -"The core built-in types for :term:`type annotations ` " -"are :ref:`Generic Alias ` and :ref:`Union `." +msgid "The core built-in types for :term:`type annotations ` are :ref:`Generic Alias ` and :ref:`Union `." msgstr "" -#: ../../library/stdtypes.rst:5779 msgid "Generic Alias Type" msgstr "" -#: ../../library/stdtypes.rst:5785 -msgid "" -"``GenericAlias`` objects are generally created by :ref:`subscripting " -"` a class. They are most often used with :ref:`container " -"classes `, such as :class:`list` or :class:`dict`. For " -"example, ``list[int]`` is a ``GenericAlias`` object created by subscripting " -"the ``list`` class with the argument :class:`int`. ``GenericAlias`` objects " -"are intended primarily for use with :term:`type annotations `." +msgid "``GenericAlias`` objects are generally created by :ref:`subscripting ` a class. They are most often used with :ref:`container classes `, such as :class:`list` or :class:`dict`. For example, ``list[int]`` is a ``GenericAlias`` object created by subscripting the ``list`` class with the argument :class:`int`. ``GenericAlias`` objects are intended primarily for use with :term:`type annotations `." msgstr "" -#: ../../library/stdtypes.rst:5795 -msgid "" -"It is generally only possible to subscript a class if the class implements " -"the special method :meth:`~object.__class_getitem__`." +msgid "It is generally only possible to subscript a class if the class implements the special method :meth:`~object.__class_getitem__`." msgstr "" -#: ../../library/stdtypes.rst:5798 -msgid "" -"A ``GenericAlias`` object acts as a proxy for a :term:`generic type`, " -"implementing *parameterized generics*." +msgid "A ``GenericAlias`` object acts as a proxy for a :term:`generic type`, implementing *parameterized generics*." msgstr "" -#: ../../library/stdtypes.rst:5801 -msgid "" -"For a container class, the argument(s) supplied to a :ref:`subscription " -"` of the class may indicate the type(s) of the elements an " -"object contains. For example, ``set[bytes]`` can be used in type annotations " -"to signify a :class:`set` in which all the elements are of " -"type :class:`bytes`." +msgid "For a container class, the argument(s) supplied to a :ref:`subscription ` of the class may indicate the type(s) of the elements an object contains. For example, ``set[bytes]`` can be used in type annotations to signify a :class:`set` in which all the elements are of type :class:`bytes`." msgstr "" -#: ../../library/stdtypes.rst:5807 -msgid "" -"For a class which defines :meth:`~object.__class_getitem__` but is not a " -"container, the argument(s) supplied to a subscription of the class will " -"often indicate the return type(s) of one or more methods defined on an " -"object. For example, :mod:`regular expressions ` can be used on both " -"the :class:`str` data type and the :class:`bytes` data type:" +msgid "For a class which defines :meth:`~object.__class_getitem__` but is not a container, the argument(s) supplied to a subscription of the class will often indicate the return type(s) of one or more methods defined on an object. For example, :mod:`regular expressions ` can be used on both the :class:`str` data type and the :class:`bytes` data type:" msgstr "" -#: ../../library/stdtypes.rst:5813 -msgid "" -"If ``x = re.search('foo', 'foo')``, ``x`` will be a :ref:`re.Match ` object where the return values of ``x.group(0)`` and ``x[0]`` will " -"both be of type :class:`str`. We can represent this kind of object in type " -"annotations with the ``GenericAlias`` ``re.Match[str]``." +msgid "If ``x = re.search('foo', 'foo')``, ``x`` will be a :ref:`re.Match ` object where the return values of ``x.group(0)`` and ``x[0]`` will both be of type :class:`str`. We can represent this kind of object in type annotations with the ``GenericAlias`` ``re.Match[str]``." msgstr "" -#: ../../library/stdtypes.rst:5819 -msgid "" -"If ``y = re.search(b'bar', b'bar')``, (note the ``b`` for :class:`bytes`), " -"``y`` will also be an instance of ``re.Match``, but the return values of " -"``y.group(0)`` and ``y[0]`` will both be of type :class:`bytes`. In type " -"annotations, we would represent this variety of :ref:`re.Match ` objects with ``re.Match[bytes]``." +msgid "If ``y = re.search(b'bar', b'bar')``, (note the ``b`` for :class:`bytes`), ``y`` will also be an instance of ``re.Match``, but the return values of ``y.group(0)`` and ``y[0]`` will both be of type :class:`bytes`. In type annotations, we would represent this variety of :ref:`re.Match ` objects with ``re.Match[bytes]``." msgstr "" -#: ../../library/stdtypes.rst:5825 -msgid "" -"``GenericAlias`` objects are instances of the " -"class :class:`types.GenericAlias`, which can also be used to create " -"``GenericAlias`` objects directly. Specializations of user-" -"defined :ref:`generic classes ` may not be instances " -"of :class:`types.GenericAlias`, but they provide similar functionality." +msgid "``GenericAlias`` objects are instances of the class :class:`types.GenericAlias`, which can also be used to create ``GenericAlias`` objects directly. Specializations of user-defined :ref:`generic classes ` may not be instances of :class:`types.GenericAlias`, but they provide similar functionality." msgstr "" -#: ../../library/stdtypes.rst:5832 -msgid "" -"Creates a ``GenericAlias`` representing a type ``T`` parameterized by types " -"*X*, *Y*, and more depending on the ``T`` used. For example, a function " -"expecting a :class:`list` containing :class:`float` elements::" +msgid "Creates a ``GenericAlias`` representing a type ``T`` parameterized by types *X*, *Y*, and more depending on the ``T`` used. For example, a function expecting a :class:`list` containing :class:`float` elements::" msgstr "" -#: ../../library/stdtypes.rst:5837 msgid "" "def average(values: list[float]) -> float:\n" " return sum(values) / len(values)" msgstr "" -#: ../../library/stdtypes.rst:5840 -msgid "" -"Another example for :term:`mapping` objects, using a :class:`dict`, which is " -"a generic type expecting two type parameters representing the key type and " -"the value type. In this example, the function expects a ``dict`` with keys " -"of type :class:`str` and values of type :class:`int`::" +msgid "Another example for :term:`mapping` objects, using a :class:`dict`, which is a generic type expecting two type parameters representing the key type and the value type. In this example, the function expects a ``dict`` with keys of type :class:`str` and values of type :class:`int`::" msgstr "" -#: ../../library/stdtypes.rst:5845 msgid "" "def send_post_request(url: str, body: dict[str, int]) -> None:\n" " ..." msgstr "" -#: ../../library/stdtypes.rst:5848 -msgid "" -"The builtin functions :func:`isinstance` and :func:`issubclass` do not " -"accept ``GenericAlias`` types for their second argument::" +msgid "The builtin functions :func:`isinstance` and :func:`issubclass` do not accept ``GenericAlias`` types for their second argument::" msgstr "" -#: ../../library/stdtypes.rst:5851 msgid "" ">>> isinstance([1, 2], list[str])\n" "Traceback (most recent call last):\n" @@ -7498,29 +4421,18 @@ msgid "" "TypeError: isinstance() argument 2 cannot be a parameterized generic" msgstr "" -#: ../../library/stdtypes.rst:5856 -msgid "" -"The Python runtime does not enforce :term:`type annotations `. " -"This extends to generic types and their type parameters. When creating a " -"container object from a ``GenericAlias``, the elements in the container are " -"not checked against their type. For example, the following code is " -"discouraged, but will run without errors::" +msgid "The Python runtime does not enforce :term:`type annotations `. This extends to generic types and their type parameters. When creating a container object from a ``GenericAlias``, the elements in the container are not checked against their type. For example, the following code is discouraged, but will run without errors::" msgstr "" -#: ../../library/stdtypes.rst:5862 msgid "" ">>> t = list[str]\n" ">>> t([1, 2, 3])\n" "[1, 2, 3]" msgstr "" -#: ../../library/stdtypes.rst:5866 -msgid "" -"Furthermore, parameterized generics erase type parameters during object " -"creation::" +msgid "Furthermore, parameterized generics erase type parameters during object creation::" msgstr "" -#: ../../library/stdtypes.rst:5869 msgid "" ">>> t = list[str]\n" ">>> type(t)\n" @@ -7531,31 +4443,21 @@ msgid "" "" msgstr "" -#: ../../library/stdtypes.rst:5878 -msgid "" -"Instances of ``GenericAlias`` are not classes at runtime, even though they " -"behave like classes (they can be instantiated and subclassed)::" +msgid "Instances of ``GenericAlias`` are not classes at runtime, even though they behave like classes (they can be instantiated and subclassed)::" msgstr "" -#: ../../library/stdtypes.rst:5880 msgid "" ">>> import inspect\n" ">>> inspect.isclass(list[int])\n" "False" msgstr "" -#: ../../library/stdtypes.rst:5884 -msgid "" -"This is true for :ref:`user-defined generics ` also." +msgid "This is true for :ref:`user-defined generics ` also." msgstr "" -#: ../../library/stdtypes.rst:5886 -msgid "" -"Calling :func:`repr` or :func:`str` on a generic shows the parameterized " -"type::" +msgid "Calling :func:`repr` or :func:`str` on a generic shows the parameterized type::" msgstr "" -#: ../../library/stdtypes.rst:5888 msgid "" ">>> repr(list[int])\n" "'list[int]'\n" @@ -7564,13 +4466,9 @@ msgid "" "'list[int]'" msgstr "" -#: ../../library/stdtypes.rst:5894 -msgid "" -"The :meth:`~object.__getitem__` method of generic containers will raise an " -"exception to disallow mistakes like ``dict[str][str]``::" +msgid "The :meth:`~object.__getitem__` method of generic containers will raise an exception to disallow mistakes like ``dict[str][str]``::" msgstr "" -#: ../../library/stdtypes.rst:5897 msgid "" ">>> dict[str][str]\n" "Traceback (most recent call last):\n" @@ -7578,14 +4476,9 @@ msgid "" "TypeError: dict[str] is not a generic class" msgstr "" -#: ../../library/stdtypes.rst:5902 -msgid "" -"However, such expressions are valid when :ref:`type variables ` " -"are used. The index must have as many elements as there are type variable " -"items in the ``GenericAlias`` object's :attr:`~genericalias.__args__`. ::" +msgid "However, such expressions are valid when :ref:`type variables ` are used. The index must have as many elements as there are type variable items in the ``GenericAlias`` object's :attr:`~genericalias.__args__`. ::" msgstr "" -#: ../../library/stdtypes.rst:5906 msgid "" ">>> from typing import TypeVar\n" ">>> Y = TypeVar('Y')\n" @@ -7593,278 +4486,205 @@ msgid "" "dict[str, int]" msgstr "" -#: ../../library/stdtypes.rst:5913 msgid "Standard Generic Classes" msgstr "" -#: ../../library/stdtypes.rst:5915 -msgid "" -"The following standard library classes support parameterized generics. This " -"list is non-exhaustive." +msgid "The following standard library classes support parameterized generics. This list is non-exhaustive." msgstr "" -#: ../../library/stdtypes.rst:5918 msgid ":class:`tuple`" msgstr "" -#: ../../library/stdtypes.rst:5919 msgid ":class:`list`" msgstr "" -#: ../../library/stdtypes.rst:5920 msgid ":class:`dict`" msgstr "" -#: ../../library/stdtypes.rst:5921 msgid ":class:`set`" msgstr "" -#: ../../library/stdtypes.rst:5922 msgid ":class:`frozenset`" msgstr "" -#: ../../library/stdtypes.rst:5923 msgid ":class:`type`" msgstr "" -#: ../../library/stdtypes.rst:5924 msgid ":class:`asyncio.Future`" msgstr "" -#: ../../library/stdtypes.rst:5925 msgid ":class:`asyncio.Task`" msgstr "" -#: ../../library/stdtypes.rst:5926 msgid ":class:`collections.deque`" msgstr "" -#: ../../library/stdtypes.rst:5927 msgid ":class:`collections.defaultdict`" msgstr "" -#: ../../library/stdtypes.rst:5928 msgid ":class:`collections.OrderedDict`" msgstr "" -#: ../../library/stdtypes.rst:5929 msgid ":class:`collections.Counter`" msgstr "" -#: ../../library/stdtypes.rst:5930 msgid ":class:`collections.ChainMap`" msgstr "" -#: ../../library/stdtypes.rst:5931 msgid ":class:`collections.abc.Awaitable`" msgstr "" -#: ../../library/stdtypes.rst:5932 msgid ":class:`collections.abc.Coroutine`" msgstr "" -#: ../../library/stdtypes.rst:5933 msgid ":class:`collections.abc.AsyncIterable`" msgstr "" -#: ../../library/stdtypes.rst:5934 msgid ":class:`collections.abc.AsyncIterator`" msgstr "" -#: ../../library/stdtypes.rst:5935 msgid ":class:`collections.abc.AsyncGenerator`" msgstr "" -#: ../../library/stdtypes.rst:5936 msgid ":class:`collections.abc.Iterable`" msgstr "" -#: ../../library/stdtypes.rst:5937 msgid ":class:`collections.abc.Iterator`" msgstr "" -#: ../../library/stdtypes.rst:5938 msgid ":class:`collections.abc.Generator`" msgstr "" -#: ../../library/stdtypes.rst:5939 msgid ":class:`collections.abc.Reversible`" msgstr "" -#: ../../library/stdtypes.rst:5940 msgid ":class:`collections.abc.Container`" msgstr "" -#: ../../library/stdtypes.rst:5941 msgid ":class:`collections.abc.Collection`" msgstr "" -#: ../../library/stdtypes.rst:5942 msgid ":class:`collections.abc.Callable`" msgstr "" -#: ../../library/stdtypes.rst:5943 msgid ":class:`collections.abc.Set`" msgstr "" -#: ../../library/stdtypes.rst:5944 msgid ":class:`collections.abc.MutableSet`" msgstr "" -#: ../../library/stdtypes.rst:5945 msgid ":class:`collections.abc.Mapping`" msgstr "" -#: ../../library/stdtypes.rst:5946 msgid ":class:`collections.abc.MutableMapping`" msgstr "" -#: ../../library/stdtypes.rst:5947 msgid ":class:`collections.abc.Sequence`" msgstr "" -#: ../../library/stdtypes.rst:5948 msgid ":class:`collections.abc.MutableSequence`" msgstr "" -#: ../../library/stdtypes.rst:5949 msgid ":class:`collections.abc.ByteString`" msgstr "" -#: ../../library/stdtypes.rst:5950 msgid ":class:`collections.abc.MappingView`" msgstr "" -#: ../../library/stdtypes.rst:5951 msgid ":class:`collections.abc.KeysView`" msgstr "" -#: ../../library/stdtypes.rst:5952 msgid ":class:`collections.abc.ItemsView`" msgstr "" -#: ../../library/stdtypes.rst:5953 msgid ":class:`collections.abc.ValuesView`" msgstr "" -#: ../../library/stdtypes.rst:5954 msgid ":class:`contextlib.AbstractContextManager`" msgstr "" -#: ../../library/stdtypes.rst:5955 msgid ":class:`contextlib.AbstractAsyncContextManager`" msgstr "" -#: ../../library/stdtypes.rst:5956 msgid ":class:`dataclasses.Field`" msgstr "" -#: ../../library/stdtypes.rst:5957 msgid ":class:`functools.cached_property`" msgstr "" -#: ../../library/stdtypes.rst:5958 msgid ":class:`functools.partialmethod`" msgstr "" -#: ../../library/stdtypes.rst:5959 msgid ":class:`os.PathLike`" msgstr "" -#: ../../library/stdtypes.rst:5960 msgid ":class:`queue.LifoQueue`" msgstr "" -#: ../../library/stdtypes.rst:5961 msgid ":class:`queue.Queue`" msgstr "" -#: ../../library/stdtypes.rst:5962 msgid ":class:`queue.PriorityQueue`" msgstr "" -#: ../../library/stdtypes.rst:5963 msgid ":class:`queue.SimpleQueue`" msgstr "" -#: ../../library/stdtypes.rst:5964 msgid ":ref:`re.Pattern `" msgstr "" -#: ../../library/stdtypes.rst:5965 msgid ":ref:`re.Match `" msgstr "" -#: ../../library/stdtypes.rst:5966 msgid ":class:`shelve.BsdDbShelf`" msgstr "" -#: ../../library/stdtypes.rst:5967 msgid ":class:`shelve.DbfilenameShelf`" msgstr "" -#: ../../library/stdtypes.rst:5968 msgid ":class:`shelve.Shelf`" msgstr "" -#: ../../library/stdtypes.rst:5969 msgid ":class:`types.MappingProxyType`" msgstr "" -#: ../../library/stdtypes.rst:5970 msgid ":class:`weakref.WeakKeyDictionary`" msgstr "" -#: ../../library/stdtypes.rst:5971 msgid ":class:`weakref.WeakMethod`" msgstr "" -#: ../../library/stdtypes.rst:5972 msgid ":class:`weakref.WeakSet`" msgstr "" -#: ../../library/stdtypes.rst:5973 msgid ":class:`weakref.WeakValueDictionary`" msgstr "" -#: ../../library/stdtypes.rst:5978 msgid "Special Attributes of ``GenericAlias`` objects" msgstr "" -#: ../../library/stdtypes.rst:5980 msgid "All parameterized generics implement special read-only attributes." msgstr "" -#: ../../library/stdtypes.rst:5984 msgid "This attribute points at the non-parameterized generic class::" msgstr "" -#: ../../library/stdtypes.rst:5986 msgid "" ">>> list[int].__origin__\n" "" msgstr "" -#: ../../library/stdtypes.rst:5992 -msgid "" -"This attribute is a :class:`tuple` (possibly of length 1) of generic types " -"passed to the original :meth:`~object.__class_getitem__` of the generic " -"class::" +msgid "This attribute is a :class:`tuple` (possibly of length 1) of generic types passed to the original :meth:`~object.__class_getitem__` of the generic class::" msgstr "" -#: ../../library/stdtypes.rst:5996 msgid "" ">>> dict[str, list[int]].__args__\n" "(, list[int])" msgstr "" -#: ../../library/stdtypes.rst:6002 -msgid "" -"This attribute is a lazily computed tuple (possibly empty) of unique type " -"variables found in ``__args__``::" +msgid "This attribute is a lazily computed tuple (possibly empty) of unique type variables found in ``__args__``::" msgstr "" -#: ../../library/stdtypes.rst:6005 msgid "" ">>> from typing import TypeVar\n" "\n" @@ -7873,153 +4693,93 @@ msgid "" "(~T,)" msgstr "" -#: ../../library/stdtypes.rst:6013 -msgid "" -"A ``GenericAlias`` object with :class:`typing.ParamSpec` parameters may not " -"have correct ``__parameters__`` after substitution " -"because :class:`typing.ParamSpec` is intended primarily for static type " -"checking." +msgid "A ``GenericAlias`` object with :class:`typing.ParamSpec` parameters may not have correct ``__parameters__`` after substitution because :class:`typing.ParamSpec` is intended primarily for static type checking." msgstr "" -#: ../../library/stdtypes.rst:6020 -msgid "" -"A boolean that is true if the alias has been unpacked using the ``*`` " -"operator (see :data:`~typing.TypeVarTuple`)." +msgid "A boolean that is true if the alias has been unpacked using the ``*`` operator (see :data:`~typing.TypeVarTuple`)." msgstr "" -#: ../../library/stdtypes.rst:6028 msgid ":pep:`484` - Type Hints" msgstr "" -#: ../../library/stdtypes.rst:6029 msgid "Introducing Python's framework for type annotations." msgstr "" -#: ../../library/stdtypes.rst:6031 msgid ":pep:`585` - Type Hinting Generics In Standard Collections" msgstr "" -#: ../../library/stdtypes.rst:6032 -msgid "" -"Introducing the ability to natively parameterize standard-library classes, " -"provided they implement the special class " -"method :meth:`~object.__class_getitem__`." +msgid "Introducing the ability to natively parameterize standard-library classes, provided they implement the special class method :meth:`~object.__class_getitem__`." msgstr "" -#: ../../library/stdtypes.rst:6036 -msgid "" -":ref:`Generics`, :ref:`user-defined generics ` " -"and :class:`typing.Generic`" +msgid ":ref:`Generics`, :ref:`user-defined generics ` and :class:`typing.Generic`" msgstr "" -#: ../../library/stdtypes.rst:6037 -msgid "" -"Documentation on how to implement generic classes that can be parameterized " -"at runtime and understood by static type-checkers." +msgid "Documentation on how to implement generic classes that can be parameterized at runtime and understood by static type-checkers." msgstr "" -#: ../../library/stdtypes.rst:6046 msgid "Union Type" msgstr "" -#: ../../library/stdtypes.rst:6052 -msgid "" -"A union object holds the value of the ``|`` (bitwise or) operation on " -"multiple :ref:`type objects `. These types are intended " -"primarily for :term:`type annotations `. The union type " -"expression enables cleaner type hinting syntax compared to " -"subscripting :class:`typing.Union`." +msgid "A union object holds the value of the ``|`` (bitwise or) operation on multiple :ref:`type objects `. These types are intended primarily for :term:`type annotations `. The union type expression enables cleaner type hinting syntax compared to subscripting :class:`typing.Union`." msgstr "" -#: ../../library/stdtypes.rst:6059 -msgid "" -"Defines a union object which holds types *X*, *Y*, and so forth. ``X | Y`` " -"means either X or Y. It is equivalent to ``typing.Union[X, Y]``. For " -"example, the following function expects an argument of type :class:`int` " -"or :class:`float`::" +msgid "Defines a union object which holds types *X*, *Y*, and so forth. ``X | Y`` means either X or Y. It is equivalent to ``typing.Union[X, Y]``. For example, the following function expects an argument of type :class:`int` or :class:`float`::" msgstr "" -#: ../../library/stdtypes.rst:6064 msgid "" "def square(number: int | float) -> int | float:\n" " return number ** 2" msgstr "" -#: ../../library/stdtypes.rst:6069 -msgid "" -"The ``|`` operand cannot be used at runtime to define unions where one or " -"more members is a forward reference. For example, ``int | \"Foo\"``, where " -"``\"Foo\"`` is a reference to a class not yet defined, will fail at runtime. " -"For unions which include forward references, present the whole expression as " -"a string, e.g. ``\"int | Foo\"``." +msgid "The ``|`` operand cannot be used at runtime to define unions where one or more members is a forward reference. For example, ``int | \"Foo\"``, where ``\"Foo\"`` is a reference to a class not yet defined, will fail at runtime. For unions which include forward references, present the whole expression as a string, e.g. ``\"int | Foo\"``." msgstr "" -#: ../../library/stdtypes.rst:6077 -msgid "" -"Union objects can be tested for equality with other union objects. Details:" +msgid "Union objects can be tested for equality with other union objects. Details:" msgstr "" -#: ../../library/stdtypes.rst:6079 msgid "Unions of unions are flattened::" msgstr "" -#: ../../library/stdtypes.rst:6081 msgid "(int | str) | float == int | str | float" msgstr "" -#: ../../library/stdtypes.rst:6083 msgid "Redundant types are removed::" msgstr "" -#: ../../library/stdtypes.rst:6085 msgid "int | str | int == int | str" msgstr "" -#: ../../library/stdtypes.rst:6087 msgid "When comparing unions, the order is ignored::" msgstr "" -#: ../../library/stdtypes.rst:6089 msgid "int | str == str | int" msgstr "" -#: ../../library/stdtypes.rst:6091 msgid "It creates instances of :class:`typing.Union`::" msgstr "" -#: ../../library/stdtypes.rst:6093 msgid "" "int | str == typing.Union[int, str]\n" "type(int | str) is typing.Union" msgstr "" -#: ../../library/stdtypes.rst:6096 msgid "Optional types can be spelled as a union with ``None``::" msgstr "" -#: ../../library/stdtypes.rst:6098 msgid "str | None == typing.Optional[str]" msgstr "" -#: ../../library/stdtypes.rst:6103 -msgid "" -"Calls to :func:`isinstance` and :func:`issubclass` are also supported with a " -"union object::" +msgid "Calls to :func:`isinstance` and :func:`issubclass` are also supported with a union object::" msgstr "" -#: ../../library/stdtypes.rst:6106 msgid "" ">>> isinstance(\"\", int | str)\n" "True" msgstr "" -#: ../../library/stdtypes.rst:6109 -msgid "" -"However, :ref:`parameterized generics ` in union objects " -"cannot be checked::" +msgid "However, :ref:`parameterized generics ` in union objects cannot be checked::" msgstr "" -#: ../../library/stdtypes.rst:6112 msgid "" ">>> isinstance(1, int | list[int]) # short-circuit evaluation\n" "True\n" @@ -8029,13 +4789,9 @@ msgid "" "TypeError: isinstance() argument 2 cannot be a parameterized generic" msgstr "" -#: ../../library/stdtypes.rst:6119 -msgid "" -"The user-exposed type for the union object can be accessed " -"from :class:`typing.Union` and used for :func:`isinstance` checks::" +msgid "The user-exposed type for the union object can be accessed from :class:`typing.Union` and used for :func:`isinstance` checks::" msgstr "" -#: ../../library/stdtypes.rst:6122 msgid "" ">>> import typing\n" ">>> isinstance(int | str, typing.Union)\n" @@ -8046,14 +4802,9 @@ msgid "" "TypeError: cannot create 'typing.Union' instances" msgstr "" -#: ../../library/stdtypes.rst:6131 -msgid "" -"The :meth:`!__or__` method for type objects was added to support the syntax " -"``X | Y``. If a metaclass implements :meth:`!__or__`, the Union may " -"override it:" +msgid "The :meth:`!__or__` method for type objects was added to support the syntax ``X | Y``. If a metaclass implements :meth:`!__or__`, the Union may override it:" msgstr "" -#: ../../library/stdtypes.rst:6135 msgid "" ">>> class M(type):\n" "... def __or__(self, other):\n" @@ -8068,127 +4819,60 @@ msgid "" "int | C" msgstr "" -#: ../../library/stdtypes.rst:6151 msgid ":pep:`604` -- PEP proposing the ``X | Y`` syntax and the Union type." msgstr "" -#: ../../library/stdtypes.rst:6157 -msgid "" -"Union objects are now instances of :class:`typing.Union`. Previously, they " -"were instances of :class:`types.UnionType`, which remains an alias " -"for :class:`typing.Union`." +msgid "Union objects are now instances of :class:`typing.Union`. Previously, they were instances of :class:`types.UnionType`, which remains an alias for :class:`typing.Union`." msgstr "" -#: ../../library/stdtypes.rst:6164 msgid "Other Built-in Types" msgstr "" -#: ../../library/stdtypes.rst:6166 -msgid "" -"The interpreter supports several other kinds of objects. Most of these " -"support only one or two operations." +msgid "The interpreter supports several other kinds of objects. Most of these support only one or two operations." msgstr "" -#: ../../library/stdtypes.rst:6173 msgid "Modules" msgstr "" -#: ../../library/stdtypes.rst:6175 -msgid "" -"The only special operation on a module is attribute access: ``m.name``, " -"where *m* is a module and *name* accesses a name defined in *m*'s symbol " -"table. Module attributes can be assigned to. (Note that " -"the :keyword:`import` statement is not, strictly speaking, an operation on a " -"module object; ``import foo`` does not require a module object named *foo* " -"to exist, rather it requires an (external) *definition* for a module named " -"*foo* somewhere.)" +msgid "The only special operation on a module is attribute access: ``m.name``, where *m* is a module and *name* accesses a name defined in *m*'s symbol table. Module attributes can be assigned to. (Note that the :keyword:`import` statement is not, strictly speaking, an operation on a module object; ``import foo`` does not require a module object named *foo* to exist, rather it requires an (external) *definition* for a module named *foo* somewhere.)" msgstr "" -#: ../../library/stdtypes.rst:6182 -msgid "" -"A special attribute of every module is :attr:`~object.__dict__`. This is the " -"dictionary containing the module's symbol table. Modifying this dictionary " -"will actually change the module's symbol table, but direct assignment to " -"the :attr:`~object.__dict__` attribute is not possible (you can write " -"``m.__dict__['a'] = 1``, which defines ``m.a`` to be ``1``, but you can't " -"write ``m.__dict__ = {}``). Modifying :attr:`~object.__dict__` directly is " -"not recommended." +msgid "A special attribute of every module is :attr:`~object.__dict__`. This is the dictionary containing the module's symbol table. Modifying this dictionary will actually change the module's symbol table, but direct assignment to the :attr:`~object.__dict__` attribute is not possible (you can write ``m.__dict__['a'] = 1``, which defines ``m.a`` to be ``1``, but you can't write ``m.__dict__ = {}``). Modifying :attr:`~object.__dict__` directly is not recommended." msgstr "" -#: ../../library/stdtypes.rst:6190 -msgid "" -"Modules built into the interpreter are written like this: ````. If loaded from a file, they are written as ````." +msgid "Modules built into the interpreter are written like this: ````. If loaded from a file, they are written as ````." msgstr "" -#: ../../library/stdtypes.rst:6198 msgid "Classes and Class Instances" msgstr "" -#: ../../library/stdtypes.rst:6200 msgid "See :ref:`objects` and :ref:`class` for these." msgstr "" -#: ../../library/stdtypes.rst:6206 msgid "Functions" msgstr "" -#: ../../library/stdtypes.rst:6208 -msgid "" -"Function objects are created by function definitions. The only operation on " -"a function object is to call it: ``func(argument-list)``." +msgid "Function objects are created by function definitions. The only operation on a function object is to call it: ``func(argument-list)``." msgstr "" -#: ../../library/stdtypes.rst:6211 -msgid "" -"There are really two flavors of function objects: built-in functions and " -"user-defined functions. Both support the same operation (to call the " -"function), but the implementation is different, hence the different object " -"types." +msgid "There are really two flavors of function objects: built-in functions and user-defined functions. Both support the same operation (to call the function), but the implementation is different, hence the different object types." msgstr "" -#: ../../library/stdtypes.rst:6215 msgid "See :ref:`function` for more information." msgstr "" -#: ../../library/stdtypes.rst:6221 msgid "Methods" msgstr "" -#: ../../library/stdtypes.rst:6225 -msgid "" -"Methods are functions that are called using the attribute notation. There " -"are two flavors: :ref:`built-in methods ` (such " -"as :meth:`~list.append` on lists) and :ref:`class instance method `. Built-in methods are described with the types that support them." +msgid "Methods are functions that are called using the attribute notation. There are two flavors: :ref:`built-in methods ` (such as :meth:`~list.append` on lists) and :ref:`class instance method `. Built-in methods are described with the types that support them." msgstr "" -#: ../../library/stdtypes.rst:6231 -msgid "" -"If you access a method (a function defined in a class namespace) through an " -"instance, you get a special object: a :dfn:`bound method` (also " -"called :ref:`instance method `) object. When called, it " -"will add the ``self`` argument to the argument list. Bound methods have two " -"special read-only attributes: :attr:`m.__self__ ` is the " -"object on which the method operates, and :attr:`m.__func__ " -"` is the function implementing the method. Calling " -"``m(arg-1, arg-2, ..., arg-n)`` is completely equivalent to calling " -"``m.__func__(m.__self__, arg-1, arg-2, ..., arg-n)``." +msgid "If you access a method (a function defined in a class namespace) through an instance, you get a special object: a :dfn:`bound method` (also called :ref:`instance method `) object. When called, it will add the ``self`` argument to the argument list. Bound methods have two special read-only attributes: :attr:`m.__self__ ` is the object on which the method operates, and :attr:`m.__func__ ` is the function implementing the method. Calling ``m(arg-1, arg-2, ..., arg-n)`` is completely equivalent to calling ``m.__func__(m.__self__, arg-1, arg-2, ..., arg-n)``." msgstr "" -#: ../../library/stdtypes.rst:6242 -msgid "" -"Like :ref:`function objects `, bound method objects " -"support getting arbitrary attributes. However, since method attributes are " -"actually stored on the underlying function object (:attr:`method.__func__`), " -"setting method attributes on bound methods is disallowed. Attempting to set " -"an attribute on a method results in an :exc:`AttributeError` being raised. " -"In order to set a method attribute, you need to explicitly set it on the " -"underlying function object:" +msgid "Like :ref:`function objects `, bound method objects support getting arbitrary attributes. However, since method attributes are actually stored on the underlying function object (:attr:`method.__func__`), setting method attributes on bound methods is disallowed. Attempting to set an attribute on a method results in an :exc:`AttributeError` being raised. In order to set a method attribute, you need to explicitly set it on the underlying function object:" msgstr "" -#: ../../library/stdtypes.rst:6250 msgid "" ">>> class C:\n" "... def method(self):\n" @@ -8204,250 +4888,136 @@ msgid "" "'my name is method'" msgstr "" -#: ../../library/stdtypes.rst:6265 msgid "See :ref:`instance-methods` for more information." msgstr "" -#: ../../library/stdtypes.rst:6273 msgid "Code Objects" msgstr "" -#: ../../library/stdtypes.rst:6279 -msgid "" -"Code objects are used by the implementation to represent \"pseudo-compiled\" " -"executable Python code such as a function body. They differ from function " -"objects because they don't contain a reference to their global execution " -"environment. Code objects are returned by the built-in :func:`compile` " -"function and can be extracted from function objects through " -"their :attr:`~function.__code__` attribute. See also the :mod:`code` module." +msgid "Code objects are used by the implementation to represent \"pseudo-compiled\" executable Python code such as a function body. They differ from function objects because they don't contain a reference to their global execution environment. Code objects are returned by the built-in :func:`compile` function and can be extracted from function objects through their :attr:`~function.__code__` attribute. See also the :mod:`code` module." msgstr "" -#: ../../library/stdtypes.rst:6286 -msgid "" -"Accessing :attr:`~function.__code__` raises an :ref:`auditing event " -"` ``object.__getattr__`` with arguments ``obj`` and " -"``\"__code__\"``." +msgid "Accessing :attr:`~function.__code__` raises an :ref:`auditing event ` ``object.__getattr__`` with arguments ``obj`` and ``\"__code__\"``." msgstr "" -#: ../../library/stdtypes.rst:6293 -msgid "" -"A code object can be executed or evaluated by passing it (instead of a " -"source string) to the :func:`exec` or :func:`eval` built-in functions." +msgid "A code object can be executed or evaluated by passing it (instead of a source string) to the :func:`exec` or :func:`eval` built-in functions." msgstr "" -#: ../../library/stdtypes.rst:6296 msgid "See :ref:`types` for more information." msgstr "" -#: ../../library/stdtypes.rst:6302 msgid "Type Objects" msgstr "" -#: ../../library/stdtypes.rst:6308 -msgid "" -"Type objects represent the various object types. An object's type is " -"accessed by the built-in function :func:`type`. There are no special " -"operations on types. The standard module :mod:`types` defines names for all " -"standard built-in types." +msgid "Type objects represent the various object types. An object's type is accessed by the built-in function :func:`type`. There are no special operations on types. The standard module :mod:`types` defines names for all standard built-in types." msgstr "" -#: ../../library/stdtypes.rst:6313 msgid "Types are written like this: ````." msgstr "" -#: ../../library/stdtypes.rst:6319 msgid "The Null Object" msgstr "" -#: ../../library/stdtypes.rst:6321 -msgid "" -"This object is returned by functions that don't explicitly return a value. " -"It supports no special operations. There is exactly one null object, named " -"``None`` (a built-in name). ``type(None)()`` produces the same singleton." +msgid "This object is returned by functions that don't explicitly return a value. It supports no special operations. There is exactly one null object, named ``None`` (a built-in name). ``type(None)()`` produces the same singleton." msgstr "" -#: ../../library/stdtypes.rst:6325 msgid "It is written as ``None``." msgstr "" -#: ../../library/stdtypes.rst:6332 msgid "The Ellipsis Object" msgstr "" -#: ../../library/stdtypes.rst:6334 -msgid "" -"This object is commonly used to indicate that something is omitted. It " -"supports no special operations. There is exactly one ellipsis object, " -"named :const:`Ellipsis` (a built-in name). ``type(Ellipsis)()`` produces " -"the :const:`Ellipsis` singleton." +msgid "This object is commonly used to indicate that something is omitted. It supports no special operations. There is exactly one ellipsis object, named :const:`Ellipsis` (a built-in name). ``type(Ellipsis)()`` produces the :const:`Ellipsis` singleton." msgstr "" -#: ../../library/stdtypes.rst:6339 msgid "It is written as ``Ellipsis`` or ``...``." msgstr "" -#: ../../library/stdtypes.rst:6341 -msgid "" -"In typical use, ``...`` as the ``Ellipsis`` object appears in a few " -"different places, for instance:" +msgid "In typical use, ``...`` as the ``Ellipsis`` object appears in a few different places, for instance:" msgstr "" -#: ../../library/stdtypes.rst:6344 -msgid "" -"In type annotations, such as :ref:`callable arguments ` or :ref:`tuple elements `." +msgid "In type annotations, such as :ref:`callable arguments ` or :ref:`tuple elements `." msgstr "" -#: ../../library/stdtypes.rst:6347 -msgid "" -"As the body of a function instead of a :ref:`pass statement `." +msgid "As the body of a function instead of a :ref:`pass statement `." msgstr "" -#: ../../library/stdtypes.rst:6349 -msgid "" -"In third-party libraries, such as `Numpy's slicing and striding `_." +msgid "In third-party libraries, such as `Numpy's slicing and striding `_." msgstr "" -#: ../../library/stdtypes.rst:6352 -msgid "" -"Python also uses three dots in ways that are not ``Ellipsis`` objects, for " -"instance:" +msgid "Python also uses three dots in ways that are not ``Ellipsis`` objects, for instance:" msgstr "" -#: ../../library/stdtypes.rst:6354 -msgid "" -"Doctest's :const:`ELLIPSIS `, as a pattern for missing " -"content." +msgid "Doctest's :const:`ELLIPSIS `, as a pattern for missing content." msgstr "" -#: ../../library/stdtypes.rst:6356 -msgid "" -"The default Python prompt of the :term:`interactive` shell when partial " -"input is incomplete." +msgid "The default Python prompt of the :term:`interactive` shell when partial input is incomplete." msgstr "" -#: ../../library/stdtypes.rst:6358 -msgid "" -"Lastly, the Python documentation often uses three dots in conventional " -"English usage to mean omitted content, even in code examples that also use " -"them as the ``Ellipsis``." +msgid "Lastly, the Python documentation often uses three dots in conventional English usage to mean omitted content, even in code examples that also use them as the ``Ellipsis``." msgstr "" -#: ../../library/stdtypes.rst:6366 msgid "The NotImplemented Object" msgstr "" -#: ../../library/stdtypes.rst:6368 -msgid "" -"This object is returned from comparisons and binary operations when they are " -"asked to operate on types they don't support. See :ref:`comparisons` for " -"more information. There is exactly one :data:`NotImplemented` " -"object. :code:`type(NotImplemented)()` produces the singleton instance." +msgid "This object is returned from comparisons and binary operations when they are asked to operate on types they don't support. See :ref:`comparisons` for more information. There is exactly one :data:`NotImplemented` object. :code:`type(NotImplemented)()` produces the singleton instance." msgstr "" -#: ../../library/stdtypes.rst:6373 msgid "It is written as :code:`NotImplemented`." msgstr "" -#: ../../library/stdtypes.rst:6379 msgid "Internal Objects" msgstr "" -#: ../../library/stdtypes.rst:6381 -msgid "" -"See :ref:`types` for this information. It describes :ref:`stack frame " -"objects `, :ref:`traceback objects `, and " -"slice objects." +msgid "See :ref:`types` for this information. It describes :ref:`stack frame objects `, :ref:`traceback objects `, and slice objects." msgstr "" -#: ../../library/stdtypes.rst:6389 msgid "Special Attributes" msgstr "" -#: ../../library/stdtypes.rst:6391 -msgid "" -"The implementation adds a few special read-only attributes to several object " -"types, where they are relevant. Some of these are not reported by " -"the :func:`dir` built-in function." +msgid "The implementation adds a few special read-only attributes to several object types, where they are relevant. Some of these are not reported by the :func:`dir` built-in function." msgstr "" -#: ../../library/stdtypes.rst:6398 -msgid "" -"The name of the class, function, method, descriptor, or generator instance." +msgid "The name of the class, function, method, descriptor, or generator instance." msgstr "" -#: ../../library/stdtypes.rst:6404 -msgid "" -"The :term:`qualified name` of the class, function, method, descriptor, or " -"generator instance." +msgid "The :term:`qualified name` of the class, function, method, descriptor, or generator instance." msgstr "" -#: ../../library/stdtypes.rst:6412 msgid "The name of the module in which a class or function was defined." msgstr "" -#: ../../library/stdtypes.rst:6417 -msgid "" -"The documentation string of a class or function, or ``None`` if undefined." +msgid "The documentation string of a class or function, or ``None`` if undefined." msgstr "" -#: ../../library/stdtypes.rst:6422 -msgid "" -"The :ref:`type parameters ` of generic classes, functions, " -"and :ref:`type aliases `. For classes and functions that are " -"not generic, this will be an empty tuple." +msgid "The :ref:`type parameters ` of generic classes, functions, and :ref:`type aliases `. For classes and functions that are not generic, this will be an empty tuple." msgstr "" -#: ../../library/stdtypes.rst:6432 msgid "Integer string conversion length limitation" msgstr "" -#: ../../library/stdtypes.rst:6434 -msgid "" -"CPython has a global limit for converting between :class:`int` " -"and :class:`str` to mitigate denial of service attacks. This limit *only* " -"applies to decimal or other non-power-of-two number bases. Hexadecimal, " -"octal, and binary conversions are unlimited. The limit can be configured." +msgid "CPython has a global limit for converting between :class:`int` and :class:`str` to mitigate denial of service attacks. This limit *only* applies to decimal or other non-power-of-two number bases. Hexadecimal, octal, and binary conversions are unlimited. The limit can be configured." msgstr "" -#: ../../library/stdtypes.rst:6439 -msgid "" -"The :class:`int` type in CPython is an arbitrary length number stored in " -"binary form (commonly known as a \"bignum\"). There exists no algorithm that " -"can convert a string to a binary integer or a binary integer to a string in " -"linear time, *unless* the base is a power of 2. Even the best known " -"algorithms for base 10 have sub-quadratic complexity. Converting a large " -"value such as ``int('1' * 500_000)`` can take over a second on a fast CPU." +msgid "The :class:`int` type in CPython is an arbitrary length number stored in binary form (commonly known as a \"bignum\"). There exists no algorithm that can convert a string to a binary integer or a binary integer to a string in linear time, *unless* the base is a power of 2. Even the best known algorithms for base 10 have sub-quadratic complexity. Converting a large value such as ``int('1' * 500_000)`` can take over a second on a fast CPU." msgstr "" -#: ../../library/stdtypes.rst:6446 -msgid "" -"Limiting conversion size offers a practical way to avoid :cve:`2020-10735`." +msgid "Limiting conversion size offers a practical way to avoid :cve:`2020-10735`." msgstr "" -#: ../../library/stdtypes.rst:6448 -msgid "" -"The limit is applied to the number of digit characters in the input or " -"output string when a non-linear conversion algorithm would be involved. " -"Underscores and the sign are not counted towards the limit." +msgid "The limit is applied to the number of digit characters in the input or output string when a non-linear conversion algorithm would be involved. Underscores and the sign are not counted towards the limit." msgstr "" -#: ../../library/stdtypes.rst:6452 -msgid "" -"When an operation would exceed the limit, a :exc:`ValueError` is raised:" +msgid "When an operation would exceed the limit, a :exc:`ValueError` is raised:" msgstr "" -#: ../../library/stdtypes.rst:6454 msgid "" ">>> import sys\n" ">>> sys.set_int_max_str_digits(4300) # Illustrative, this is the default.\n" ">>> _ = int('2' * 5432)\n" "Traceback (most recent call last):\n" "...\n" -"ValueError: Exceeds the limit (4300 digits) for integer string conversion: " -"value has 5432 digits; use sys.set_int_max_str_digits() to increase the " -"limit\n" +"ValueError: Exceeds the limit (4300 digits) for integer string conversion: value has 5432 digits; use sys.set_int_max_str_digits() to increase the limit\n" ">>> i = int('2' * 4300)\n" ">>> len(str(i))\n" "4300\n" @@ -8455,26 +5025,18 @@ msgid "" ">>> len(str(i_squared))\n" "Traceback (most recent call last):\n" "...\n" -"ValueError: Exceeds the limit (4300 digits) for integer string conversion; " -"use sys.set_int_max_str_digits() to increase the limit\n" +"ValueError: Exceeds the limit (4300 digits) for integer string conversion; use sys.set_int_max_str_digits() to increase the limit\n" ">>> len(hex(i_squared))\n" "7144\n" ">>> assert int(hex(i_squared), base=16) == i*i # Hexadecimal is unlimited." msgstr "" -#: ../../library/stdtypes.rst:6474 -msgid "" -"The default limit is 4300 digits as provided " -"in :data:`sys.int_info.default_max_str_digits `. The lowest " -"limit that can be configured is 640 digits as provided " -"in :data:`sys.int_info.str_digits_check_threshold `." +msgid "The default limit is 4300 digits as provided in :data:`sys.int_info.default_max_str_digits `. The lowest limit that can be configured is 640 digits as provided in :data:`sys.int_info.str_digits_check_threshold `." msgstr "" -#: ../../library/stdtypes.rst:6479 msgid "Verification:" msgstr "" -#: ../../library/stdtypes.rst:6481 msgid "" ">>> import sys\n" ">>> assert sys.int_info.default_max_str_digits == 4300, sys.int_info\n" @@ -8485,167 +5047,93 @@ msgid "" "..." msgstr "" -#: ../../library/stdtypes.rst:6494 msgid "Affected APIs" msgstr "" -#: ../../library/stdtypes.rst:6496 -msgid "" -"The limitation only applies to potentially slow conversions " -"between :class:`int` and :class:`str` or :class:`bytes`:" +msgid "The limitation only applies to potentially slow conversions between :class:`int` and :class:`str` or :class:`bytes`:" msgstr "" -#: ../../library/stdtypes.rst:6499 msgid "``int(string)`` with default base 10." msgstr "" -#: ../../library/stdtypes.rst:6500 msgid "``int(string, base)`` for all bases that are not a power of 2." msgstr "" -#: ../../library/stdtypes.rst:6501 msgid "``str(integer)``." msgstr "" -#: ../../library/stdtypes.rst:6502 msgid "``repr(integer)``." msgstr "" -#: ../../library/stdtypes.rst:6503 -msgid "" -"any other string conversion to base 10, for example ``f\"{integer}\"``, " -"``\"{}\".format(integer)``, or ``b\"%d\" % integer``." +msgid "any other string conversion to base 10, for example ``f\"{integer}\"``, ``\"{}\".format(integer)``, or ``b\"%d\" % integer``." msgstr "" -#: ../../library/stdtypes.rst:6506 msgid "The limitations do not apply to functions with a linear algorithm:" msgstr "" -#: ../../library/stdtypes.rst:6508 msgid "``int(string, base)`` with base 2, 4, 8, 16, or 32." msgstr "" -#: ../../library/stdtypes.rst:6509 msgid ":func:`int.from_bytes` and :func:`int.to_bytes`." msgstr "" -#: ../../library/stdtypes.rst:6510 msgid ":func:`hex`, :func:`oct`, :func:`bin`." msgstr "" -#: ../../library/stdtypes.rst:6511 msgid ":ref:`formatspec` for hex, octal, and binary numbers." msgstr "" -#: ../../library/stdtypes.rst:6512 msgid ":class:`str` to :class:`float`." msgstr "" -#: ../../library/stdtypes.rst:6513 msgid ":class:`str` to :class:`decimal.Decimal`." msgstr "" -#: ../../library/stdtypes.rst:6516 msgid "Configuring the limit" msgstr "" -#: ../../library/stdtypes.rst:6518 -msgid "" -"Before Python starts up you can use an environment variable or an " -"interpreter command line flag to configure the limit:" +msgid "Before Python starts up you can use an environment variable or an interpreter command line flag to configure the limit:" msgstr "" -#: ../../library/stdtypes.rst:6521 -msgid "" -":envvar:`PYTHONINTMAXSTRDIGITS`, e.g. ``PYTHONINTMAXSTRDIGITS=640 python3`` " -"to set the limit to 640 or ``PYTHONINTMAXSTRDIGITS=0 python3`` to disable " -"the limitation." +msgid ":envvar:`PYTHONINTMAXSTRDIGITS`, e.g. ``PYTHONINTMAXSTRDIGITS=640 python3`` to set the limit to 640 or ``PYTHONINTMAXSTRDIGITS=0 python3`` to disable the limitation." msgstr "" -#: ../../library/stdtypes.rst:6524 -msgid "" -":option:`-X int_max_str_digits <-X>`, e.g. ``python3 -X " -"int_max_str_digits=640``" +msgid ":option:`-X int_max_str_digits <-X>`, e.g. ``python3 -X int_max_str_digits=640``" msgstr "" -#: ../../library/stdtypes.rst:6526 -msgid "" -":data:`sys.flags.int_max_str_digits` contains the value " -"of :envvar:`PYTHONINTMAXSTRDIGITS` or :option:`-X int_max_str_digits <-X>`. " -"If both the env var and the ``-X`` option are set, the ``-X`` option takes " -"precedence. A value of *-1* indicates that both were unset, thus a value " -"of :data:`sys.int_info.default_max_str_digits` was used during " -"initialization." +msgid ":data:`sys.flags.int_max_str_digits` contains the value of :envvar:`PYTHONINTMAXSTRDIGITS` or :option:`-X int_max_str_digits <-X>`. If both the env var and the ``-X`` option are set, the ``-X`` option takes precedence. A value of *-1* indicates that both were unset, thus a value of :data:`sys.int_info.default_max_str_digits` was used during initialization." msgstr "" -#: ../../library/stdtypes.rst:6532 -msgid "" -"From code, you can inspect the current limit and set a new one using " -"these :mod:`sys` APIs:" +msgid "From code, you can inspect the current limit and set a new one using these :mod:`sys` APIs:" msgstr "" -#: ../../library/stdtypes.rst:6535 -msgid "" -":func:`sys.get_int_max_str_digits` and :func:`sys.set_int_max_str_digits` " -"are a getter and setter for the interpreter-wide limit. Subinterpreters have " -"their own limit." +msgid ":func:`sys.get_int_max_str_digits` and :func:`sys.set_int_max_str_digits` are a getter and setter for the interpreter-wide limit. Subinterpreters have their own limit." msgstr "" -#: ../../library/stdtypes.rst:6539 -msgid "" -"Information about the default and minimum can be found " -"in :data:`sys.int_info`:" +msgid "Information about the default and minimum can be found in :data:`sys.int_info`:" msgstr "" -#: ../../library/stdtypes.rst:6541 -msgid "" -":data:`sys.int_info.default_max_str_digits ` is the compiled-" -"in default limit." +msgid ":data:`sys.int_info.default_max_str_digits ` is the compiled-in default limit." msgstr "" -#: ../../library/stdtypes.rst:6543 -msgid "" -":data:`sys.int_info.str_digits_check_threshold ` is the lowest " -"accepted value for the limit (other than 0 which disables it)." +msgid ":data:`sys.int_info.str_digits_check_threshold ` is the lowest accepted value for the limit (other than 0 which disables it)." msgstr "" -#: ../../library/stdtypes.rst:6550 -msgid "" -"Setting a low limit *can* lead to problems. While rare, code exists that " -"contains integer constants in decimal in their source that exceed the " -"minimum threshold. A consequence of setting the limit is that Python source " -"code containing decimal integer literals longer than the limit will " -"encounter an error during parsing, usually at startup time or import time or " -"even at installation time - anytime an up to date ``.pyc`` does not already " -"exist for the code. A workaround for source that contains such large " -"constants is to convert them to ``0x`` hexadecimal form as it has no limit." +msgid "Setting a low limit *can* lead to problems. While rare, code exists that contains integer constants in decimal in their source that exceed the minimum threshold. A consequence of setting the limit is that Python source code containing decimal integer literals longer than the limit will encounter an error during parsing, usually at startup time or import time or even at installation time - anytime an up to date ``.pyc`` does not already exist for the code. A workaround for source that contains such large constants is to convert them to ``0x`` hexadecimal form as it has no limit." msgstr "" -#: ../../library/stdtypes.rst:6559 -msgid "" -"Test your application thoroughly if you use a low limit. Ensure your tests " -"run with the limit set early via the environment or flag so that it applies " -"during startup and even during any installation step that may invoke Python " -"to precompile ``.py`` sources to ``.pyc`` files." +msgid "Test your application thoroughly if you use a low limit. Ensure your tests run with the limit set early via the environment or flag so that it applies during startup and even during any installation step that may invoke Python to precompile ``.py`` sources to ``.pyc`` files." msgstr "" -#: ../../library/stdtypes.rst:6565 msgid "Recommended configuration" msgstr "" -#: ../../library/stdtypes.rst:6567 -msgid "" -"The default :data:`sys.int_info.default_max_str_digits` is expected to be " -"reasonable for most applications. If your application requires a different " -"limit, set it from your main entry point using Python version agnostic code " -"as these APIs were added in security patch releases in versions before 3.12." +msgid "The default :data:`sys.int_info.default_max_str_digits` is expected to be reasonable for most applications. If your application requires a different limit, set it from your main entry point using Python version agnostic code as these APIs were added in security patch releases in versions before 3.12." msgstr "" -#: ../../library/stdtypes.rst:6572 msgid "Example::" msgstr "" -#: ../../library/stdtypes.rst:6574 msgid "" ">>> import sys\n" ">>> if hasattr(sys, \"set_int_max_str_digits\"):\n" @@ -8658,803 +5146,563 @@ msgid "" "... sys.set_int_max_str_digits(lower_bound)" msgstr "" -#: ../../library/stdtypes.rst:6584 msgid "If you need to disable it entirely, set it to ``0``." msgstr "" -#: ../../library/stdtypes.rst:6588 msgid "Footnotes" msgstr "" -#: ../../library/stdtypes.rst:6589 -msgid "" -"Additional information on these special methods may be found in the Python " -"Reference Manual (:ref:`customization`)." +msgid "Additional information on these special methods may be found in the Python Reference Manual (:ref:`customization`)." msgstr "" -#: ../../library/stdtypes.rst:6592 -msgid "" -"As a consequence, the list ``[1, 2]`` is considered equal to ``[1.0, 2.0]``, " -"and similarly for tuples." +msgid "As a consequence, the list ``[1, 2]`` is considered equal to ``[1.0, 2.0]``, and similarly for tuples." msgstr "" -#: ../../library/stdtypes.rst:6595 msgid "They must have since the parser can't tell the type of the operands." msgstr "" -#: ../../library/stdtypes.rst:6597 -msgid "" -"Cased characters are those with general category property being one of " -"\"Lu\" (Letter, uppercase), \"Ll\" (Letter, lowercase), or \"Lt\" (Letter, " -"titlecase)." +msgid "Cased characters are those with general category property being one of \"Lu\" (Letter, uppercase), \"Ll\" (Letter, lowercase), or \"Lt\" (Letter, titlecase)." msgstr "" -#: ../../library/stdtypes.rst:6600 -msgid "" -"To format only a tuple you should therefore provide a singleton tuple whose " -"only element is the tuple to be formatted." +msgid "To format only a tuple you should therefore provide a singleton tuple whose only element is the tuple to be formatted." msgstr "" -#: ../../library/stdtypes.rst:13 msgid "built-in" msgstr "" -#: ../../library/stdtypes.rst:13 ../../library/stdtypes.rst:332 -#: ../../library/stdtypes.rst:409 ../../library/stdtypes.rst:1002 -#: ../../library/stdtypes.rst:1192 ../../library/stdtypes.rst:1214 -#: ../../library/stdtypes.rst:1229 ../../library/stdtypes.rst:5289 -#: ../../library/stdtypes.rst:6304 msgid "types" msgstr "" -#: ../../library/stdtypes.rst:34 ../../library/stdtypes.rst:1229 -#: ../../library/stdtypes.rst:5289 msgid "statement" msgstr "" -#: ../../library/stdtypes.rst:34 msgid "if" msgstr "" -#: ../../library/stdtypes.rst:34 msgid "while" msgstr "" -#: ../../library/stdtypes.rst:34 msgid "truth" msgstr "" -#: ../../library/stdtypes.rst:34 msgid "value" msgstr "" -#: ../../library/stdtypes.rst:34 ../../library/stdtypes.rst:83 -#: ../../library/stdtypes.rst:210 ../../library/stdtypes.rst:869 msgid "Boolean" msgstr "" -#: ../../library/stdtypes.rst:34 ../../library/stdtypes.rst:83 -#: ../../library/stdtypes.rst:409 msgid "operations" msgstr "" -#: ../../library/stdtypes.rst:34 msgid "false" msgstr "" -#: ../../library/stdtypes.rst:44 msgid "true" msgstr "" -#: ../../library/stdtypes.rst:54 msgid "None (Built-in object)" msgstr "" -#: ../../library/stdtypes.rst:54 msgid "False (Built-in object)" msgstr "" -#: ../../library/stdtypes.rst:66 ../../library/stdtypes.rst:100 -#: ../../library/stdtypes.rst:125 ../../library/stdtypes.rst:197 -#: ../../library/stdtypes.rst:251 ../../library/stdtypes.rst:409 -#: ../../library/stdtypes.rst:1002 msgid "operator" msgstr "" -#: ../../library/stdtypes.rst:66 ../../library/stdtypes.rst:100 msgid "or" msgstr "" -#: ../../library/stdtypes.rst:66 ../../library/stdtypes.rst:100 msgid "and" msgstr "" -#: ../../library/stdtypes.rst:66 ../../library/stdtypes.rst:869 msgid "False" msgstr "" -#: ../../library/stdtypes.rst:66 ../../library/stdtypes.rst:869 msgid "True" msgstr "" -#: ../../library/stdtypes.rst:100 msgid "not" msgstr "" -#: ../../library/stdtypes.rst:125 msgid "chaining" msgstr "" -#: ../../library/stdtypes.rst:125 msgid "comparisons" msgstr "" -#: ../../library/stdtypes.rst:125 msgid "comparison" msgstr "" -#: ../../library/stdtypes.rst:125 msgid "==" msgstr "" -#: ../../library/stdtypes.rst:125 msgid "< (less)" msgstr "" -#: ../../library/stdtypes.rst:125 msgid "<=" msgstr "" -#: ../../library/stdtypes.rst:125 msgid "> (greater)" msgstr "" -#: ../../library/stdtypes.rst:125 msgid ">=" msgstr "" -#: ../../library/stdtypes.rst:125 msgid "!=" msgstr "" -#: ../../library/stdtypes.rst:125 msgid "is" msgstr "" -#: ../../library/stdtypes.rst:125 msgid "is not" msgstr "" -#: ../../library/stdtypes.rst:165 ../../library/stdtypes.rst:210 -#: ../../library/stdtypes.rst:986 ../../library/stdtypes.rst:1192 -#: ../../library/stdtypes.rst:1214 ../../library/stdtypes.rst:1379 -#: ../../library/stdtypes.rst:1465 ../../library/stdtypes.rst:1513 -#: ../../library/stdtypes.rst:1634 ../../library/stdtypes.rst:1768 -#: ../../library/stdtypes.rst:3292 ../../library/stdtypes.rst:3311 -#: ../../library/stdtypes.rst:3424 ../../library/stdtypes.rst:5071 -#: ../../library/stdtypes.rst:5289 ../../library/stdtypes.rst:5781 -#: ../../library/stdtypes.rst:6048 ../../library/stdtypes.rst:6223 -#: ../../library/stdtypes.rst:6268 msgid "object" msgstr "" -#: ../../library/stdtypes.rst:165 ../../library/stdtypes.rst:210 -#: ../../library/stdtypes.rst:231 ../../library/stdtypes.rst:332 -#: ../../library/stdtypes.rst:351 msgid "numeric" msgstr "" -#: ../../library/stdtypes.rst:165 msgid "objects" msgstr "" -#: ../../library/stdtypes.rst:165 msgid "comparing" msgstr "" -#: ../../library/stdtypes.rst:175 msgid "__eq__() (instance method)" msgstr "" -#: ../../library/stdtypes.rst:175 msgid "__ne__() (instance method)" msgstr "" -#: ../../library/stdtypes.rst:175 msgid "__lt__() (instance method)" msgstr "" -#: ../../library/stdtypes.rst:175 msgid "__le__() (instance method)" msgstr "" -#: ../../library/stdtypes.rst:175 msgid "__gt__() (instance method)" msgstr "" -#: ../../library/stdtypes.rst:175 msgid "__ge__() (instance method)" msgstr "" -#: ../../library/stdtypes.rst:197 ../../library/stdtypes.rst:1002 msgid "in" msgstr "" -#: ../../library/stdtypes.rst:197 ../../library/stdtypes.rst:1002 msgid "not in" msgstr "" -#: ../../library/stdtypes.rst:210 ../../library/stdtypes.rst:231 -#: ../../library/stdtypes.rst:409 msgid "integer" msgstr "" -#: ../../library/stdtypes.rst:210 ../../library/stdtypes.rst:231 msgid "floating-point" msgstr "" -#: ../../library/stdtypes.rst:210 ../../library/stdtypes.rst:231 msgid "complex number" msgstr "" -#: ../../library/stdtypes.rst:210 msgid "C" msgstr "" -#: ../../library/stdtypes.rst:210 msgid "language" msgstr "" -#: ../../library/stdtypes.rst:231 msgid "literals" msgstr "" -#: ../../library/stdtypes.rst:231 msgid "hexadecimal" msgstr "" -#: ../../library/stdtypes.rst:231 msgid "octal" msgstr "" -#: ../../library/stdtypes.rst:231 msgid "binary" msgstr "" -#: ../../library/stdtypes.rst:251 msgid "arithmetic" msgstr "" -#: ../../library/stdtypes.rst:251 ../../library/stdtypes.rst:1002 -#: ../../library/stdtypes.rst:1192 ../../library/stdtypes.rst:5289 -#: ../../library/stdtypes.rst:6275 ../../library/stdtypes.rst:6289 -#: ../../library/stdtypes.rst:6304 msgid "built-in function" msgstr "" -#: ../../library/stdtypes.rst:251 msgid "int" msgstr "" -#: ../../library/stdtypes.rst:251 msgid "float" msgstr "" -#: ../../library/stdtypes.rst:251 msgid "complex" msgstr "" -#: ../../library/stdtypes.rst:251 ../../library/stdtypes.rst:3164 -#: ../../library/stdtypes.rst:4433 msgid "+ (plus)" msgstr "" -#: ../../library/stdtypes.rst:251 msgid "unary operator" msgstr "" -#: ../../library/stdtypes.rst:251 msgid "binary operator" msgstr "" -#: ../../library/stdtypes.rst:251 ../../library/stdtypes.rst:3164 -#: ../../library/stdtypes.rst:4433 msgid "- (minus)" msgstr "" -#: ../../library/stdtypes.rst:251 ../../library/stdtypes.rst:3121 -#: ../../library/stdtypes.rst:4390 msgid "* (asterisk)" msgstr "" -#: ../../library/stdtypes.rst:251 msgid "/ (slash)" msgstr "" -#: ../../library/stdtypes.rst:251 msgid "//" msgstr "" -#: ../../library/stdtypes.rst:251 ../../library/stdtypes.rst:3084 -#: ../../library/stdtypes.rst:4358 msgid "% (percent)" msgstr "" -#: ../../library/stdtypes.rst:251 msgid "**" msgstr "" -#: ../../library/stdtypes.rst:332 ../../library/stdtypes.rst:409 -#: ../../library/stdtypes.rst:1002 ../../library/stdtypes.rst:1229 -#: ../../library/stdtypes.rst:5289 msgid "operations on" msgstr "" -#: ../../library/stdtypes.rst:332 msgid "conjugate() (complex number method)" msgstr "" -#: ../../library/stdtypes.rst:351 ../../library/stdtypes.rst:1836 -#: ../../library/stdtypes.rst:3292 ../../library/stdtypes.rst:6304 msgid "module" msgstr "" -#: ../../library/stdtypes.rst:351 msgid "math" msgstr "" -#: ../../library/stdtypes.rst:351 msgid "floor() (in module math)" msgstr "" -#: ../../library/stdtypes.rst:351 msgid "ceil() (in module math)" msgstr "" -#: ../../library/stdtypes.rst:351 msgid "trunc() (in module math)" msgstr "" -#: ../../library/stdtypes.rst:351 msgid "conversions" msgstr "" -#: ../../library/stdtypes.rst:409 msgid "bitwise" msgstr "" -#: ../../library/stdtypes.rst:409 msgid "shifting" msgstr "" -#: ../../library/stdtypes.rst:409 msgid "masking" msgstr "" -#: ../../library/stdtypes.rst:409 msgid "| (vertical bar)" msgstr "" -#: ../../library/stdtypes.rst:409 msgid "^ (caret)" msgstr "" -#: ../../library/stdtypes.rst:409 msgid "& (ampersand)" msgstr "" -#: ../../library/stdtypes.rst:409 msgid "<<" msgstr "" -#: ../../library/stdtypes.rst:409 msgid ">>" msgstr "" -#: ../../library/stdtypes.rst:409 msgid "~ (tilde)" msgstr "" -#: ../../library/stdtypes.rst:869 msgid "values" msgstr "" -#: ../../library/stdtypes.rst:899 msgid "iterator protocol" msgstr "" -#: ../../library/stdtypes.rst:899 ../../library/stdtypes.rst:5694 msgid "protocol" msgstr "" -#: ../../library/stdtypes.rst:899 msgid "iterator" msgstr "" -#: ../../library/stdtypes.rst:899 ../../library/stdtypes.rst:986 -#: ../../library/stdtypes.rst:1002 ../../library/stdtypes.rst:1192 -#: ../../library/stdtypes.rst:1214 ../../library/stdtypes.rst:1229 msgid "sequence" msgstr "" -#: ../../library/stdtypes.rst:899 msgid "iteration" msgstr "" -#: ../../library/stdtypes.rst:899 msgid "container" msgstr "" -#: ../../library/stdtypes.rst:899 msgid "iteration over" msgstr "" -#: ../../library/stdtypes.rst:1002 ../../library/stdtypes.rst:5289 msgid "len" msgstr "" -#: ../../library/stdtypes.rst:1002 msgid "min" msgstr "" -#: ../../library/stdtypes.rst:1002 msgid "max" msgstr "" -#: ../../library/stdtypes.rst:1002 msgid "concatenation" msgstr "" -#: ../../library/stdtypes.rst:1002 msgid "operation" msgstr "" -#: ../../library/stdtypes.rst:1002 msgid "repetition" msgstr "" -#: ../../library/stdtypes.rst:1002 ../../library/stdtypes.rst:1229 msgid "subscript" msgstr "" -#: ../../library/stdtypes.rst:1002 ../../library/stdtypes.rst:1229 msgid "slice" msgstr "" -#: ../../library/stdtypes.rst:1049 msgid "loop" msgstr "" -#: ../../library/stdtypes.rst:1049 msgid "over mutable sequence" msgstr "" -#: ../../library/stdtypes.rst:1049 msgid "mutable sequence" msgstr "" -#: ../../library/stdtypes.rst:1049 msgid "loop over" msgstr "" -#: ../../library/stdtypes.rst:1192 msgid "immutable" msgstr "" -#: ../../library/stdtypes.rst:1192 ../../library/stdtypes.rst:1465 msgid "tuple" msgstr "" -#: ../../library/stdtypes.rst:1192 msgid "hash" msgstr "" -#: ../../library/stdtypes.rst:1214 msgid "mutable" msgstr "" -#: ../../library/stdtypes.rst:1214 ../../library/stdtypes.rst:1229 -#: ../../library/stdtypes.rst:1379 msgid "list" msgstr "" -#: ../../library/stdtypes.rst:1214 ../../library/stdtypes.rst:3292 -#: ../../library/stdtypes.rst:3424 ../../library/stdtypes.rst:3539 -#: ../../library/stdtypes.rst:4358 msgid "bytearray" msgstr "" -#: ../../library/stdtypes.rst:1229 ../../library/stdtypes.rst:5289 -#: ../../library/stdtypes.rst:6048 ../../library/stdtypes.rst:6304 msgid "type" msgstr "" -#: ../../library/stdtypes.rst:1229 msgid "assignment" msgstr "" -#: ../../library/stdtypes.rst:1229 ../../library/stdtypes.rst:5289 msgid "del" msgstr "" -#: ../../library/stdtypes.rst:1513 msgid "range" msgstr "" -#: ../../library/stdtypes.rst:1634 ../../library/stdtypes.rst:1781 -#: ../../library/stdtypes.rst:1828 ../../library/stdtypes.rst:2912 -#: ../../library/stdtypes.rst:3084 msgid "string" msgstr "" -#: ../../library/stdtypes.rst:1634 msgid "text sequence type" msgstr "" -#: ../../library/stdtypes.rst:1634 ../../library/stdtypes.rst:1781 -#: ../../library/stdtypes.rst:1801 msgid "str (built-in class)" msgstr "" -#: ../../library/stdtypes.rst:1634 msgid "(see also string)" msgstr "" -#: ../../library/stdtypes.rst:1768 msgid "io.StringIO" msgstr "" -#: ../../library/stdtypes.rst:1801 ../../library/stdtypes.rst:3284 msgid "buffer protocol" msgstr "" -#: ../../library/stdtypes.rst:1801 ../../library/stdtypes.rst:3292 -#: ../../library/stdtypes.rst:3311 ../../library/stdtypes.rst:3539 -#: ../../library/stdtypes.rst:4358 msgid "bytes" msgstr "" -#: ../../library/stdtypes.rst:1828 ../../library/stdtypes.rst:3539 msgid "methods" msgstr "" -#: ../../library/stdtypes.rst:1836 msgid "re" msgstr "" -#: ../../library/stdtypes.rst:2682 ../../library/stdtypes.rst:4212 msgid "universal newlines" msgstr "" -#: ../../library/stdtypes.rst:2682 msgid "str.splitlines method" msgstr "" -#: ../../library/stdtypes.rst:2912 msgid "! formatted string literal" msgstr "" -#: ../../library/stdtypes.rst:2912 msgid "formatted string literals" msgstr "" -#: ../../library/stdtypes.rst:2912 msgid "! f-string" msgstr "" -#: ../../library/stdtypes.rst:2912 msgid "f-strings" msgstr "" -#: ../../library/stdtypes.rst:2912 msgid "fstring" msgstr "" -#: ../../library/stdtypes.rst:2912 msgid "interpolated string literal" msgstr "" -#: ../../library/stdtypes.rst:2912 msgid "formatted literal" msgstr "" -#: ../../library/stdtypes.rst:2912 msgid "interpolated literal" msgstr "" -#: ../../library/stdtypes.rst:2912 msgid "{} (curly brackets)" msgstr "" -#: ../../library/stdtypes.rst:2912 msgid "in formatted string literal" msgstr "" -#: ../../library/stdtypes.rst:2912 msgid "! (exclamation mark)" msgstr "" -#: ../../library/stdtypes.rst:2912 msgid ": (colon)" msgstr "" -#: ../../library/stdtypes.rst:2912 msgid "= (equals)" msgstr "" -#: ../../library/stdtypes.rst:2912 msgid "for help in debugging using string literals" msgstr "" -#: ../../library/stdtypes.rst:3084 msgid "formatting, string (%)" msgstr "" -#: ../../library/stdtypes.rst:3084 msgid "interpolation, string (%)" msgstr "" -#: ../../library/stdtypes.rst:3084 msgid "formatting, printf" msgstr "" -#: ../../library/stdtypes.rst:3084 msgid "interpolation, printf" msgstr "" -#: ../../library/stdtypes.rst:3084 ../../library/stdtypes.rst:4358 msgid "printf-style formatting" msgstr "" -#: ../../library/stdtypes.rst:3084 ../../library/stdtypes.rst:4358 msgid "sprintf-style formatting" msgstr "" -#: ../../library/stdtypes.rst:3121 ../../library/stdtypes.rst:4390 msgid "() (parentheses)" msgstr "" -#: ../../library/stdtypes.rst:3121 ../../library/stdtypes.rst:3164 -#: ../../library/stdtypes.rst:4390 ../../library/stdtypes.rst:4433 msgid "in printf-style formatting" msgstr "" -#: ../../library/stdtypes.rst:3121 ../../library/stdtypes.rst:4390 msgid ". (dot)" msgstr "" -#: ../../library/stdtypes.rst:3164 ../../library/stdtypes.rst:4433 msgid "# (hash)" msgstr "" -#: ../../library/stdtypes.rst:3164 ../../library/stdtypes.rst:4433 msgid "space" msgstr "" -#: ../../library/stdtypes.rst:3284 msgid "binary sequence types" msgstr "" -#: ../../library/stdtypes.rst:3292 msgid "memoryview" msgstr "" -#: ../../library/stdtypes.rst:3292 msgid "array" msgstr "" -#: ../../library/stdtypes.rst:4212 msgid "bytes.splitlines method" msgstr "" -#: ../../library/stdtypes.rst:4212 msgid "bytearray.splitlines method" msgstr "" -#: ../../library/stdtypes.rst:4358 msgid "formatting" msgstr "" -#: ../../library/stdtypes.rst:4358 msgid "bytes (%)" msgstr "" -#: ../../library/stdtypes.rst:4358 msgid "bytearray (%)" msgstr "" -#: ../../library/stdtypes.rst:4358 msgid "interpolation" msgstr "" -#: ../../library/stdtypes.rst:5071 msgid "set" msgstr "" -#: ../../library/stdtypes.rst:5289 msgid "mapping" msgstr "" -#: ../../library/stdtypes.rst:5289 msgid "dictionary" msgstr "" -#: ../../library/stdtypes.rst:5399 msgid "__missing__()" msgstr "" -#: ../../library/stdtypes.rst:5694 msgid "context manager" msgstr "" -#: ../../library/stdtypes.rst:5694 msgid "context management protocol" msgstr "" -#: ../../library/stdtypes.rst:5694 msgid "context management" msgstr "" -#: ../../library/stdtypes.rst:5769 msgid "annotation" msgstr "" -#: ../../library/stdtypes.rst:5769 msgid "type annotation; type hint" msgstr "" -#: ../../library/stdtypes.rst:5781 msgid "GenericAlias" msgstr "" -#: ../../library/stdtypes.rst:5781 msgid "Generic" msgstr "" -#: ../../library/stdtypes.rst:5781 msgid "Alias" msgstr "" -#: ../../library/stdtypes.rst:6048 msgid "Union" msgstr "" -#: ../../library/stdtypes.rst:6048 msgid "union" msgstr "" -#: ../../library/stdtypes.rst:6223 msgid "method" msgstr "" -#: ../../library/stdtypes.rst:6268 msgid "code" msgstr "" -#: ../../library/stdtypes.rst:6268 msgid "code object" msgstr "" -#: ../../library/stdtypes.rst:6275 msgid "compile" msgstr "" -#: ../../library/stdtypes.rst:6275 msgid "__code__ (function object attribute)" msgstr "" -#: ../../library/stdtypes.rst:6289 msgid "exec" msgstr "" -#: ../../library/stdtypes.rst:6289 msgid "eval" msgstr "" -#: ../../library/stdtypes.rst:6328 msgid "..." msgstr "" -#: ../../library/stdtypes.rst:6328 msgid "ellipsis literal" msgstr "" diff --git a/library/string.po b/library/string.po index 56185695..ac7142cf 100644 --- a/library/string.po +++ b/library/string.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:14+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,936 +24,459 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/string.rst:2 msgid ":mod:`!string` --- Common string operations" msgstr "" -#: ../../library/string.rst:7 msgid "**Source code:** :source:`Lib/string/__init__.py`" msgstr "" -#: ../../library/string.rst:14 msgid ":ref:`textseq`" msgstr "" -#: ../../library/string.rst:16 msgid ":ref:`string-methods`" msgstr "" -#: ../../library/string.rst:19 msgid "String constants" msgstr "" -#: ../../library/string.rst:21 msgid "The constants defined in this module are:" msgstr "" -#: ../../library/string.rst:26 -msgid "" -"The concatenation of the :const:`ascii_lowercase` " -"and :const:`ascii_uppercase` constants described below. This value is not " -"locale-dependent." +msgid "The concatenation of the :const:`ascii_lowercase` and :const:`ascii_uppercase` constants described below. This value is not locale-dependent." msgstr "" -#: ../../library/string.rst:32 -msgid "" -"The lowercase letters ``'abcdefghijklmnopqrstuvwxyz'``. This value is not " -"locale-dependent and will not change." +msgid "The lowercase letters ``'abcdefghijklmnopqrstuvwxyz'``. This value is not locale-dependent and will not change." msgstr "" -#: ../../library/string.rst:38 -msgid "" -"The uppercase letters ``'ABCDEFGHIJKLMNOPQRSTUVWXYZ'``. This value is not " -"locale-dependent and will not change." +msgid "The uppercase letters ``'ABCDEFGHIJKLMNOPQRSTUVWXYZ'``. This value is not locale-dependent and will not change." msgstr "" -#: ../../library/string.rst:44 msgid "The string ``'0123456789'``." msgstr "" -#: ../../library/string.rst:49 msgid "The string ``'0123456789abcdefABCDEF'``." msgstr "" -#: ../../library/string.rst:54 msgid "The string ``'01234567'``." msgstr "" -#: ../../library/string.rst:59 -msgid "" -"String of ASCII characters which are considered punctuation characters in " -"the ``C`` locale: ``!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~``." +msgid "String of ASCII characters which are considered punctuation characters in the ``C`` locale: ``!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~``." msgstr "" -#: ../../library/string.rst:65 -msgid "" -"String of ASCII characters which are considered printable by Python. This is " -"a combination " -"of :const:`digits`, :const:`ascii_letters`, :const:`punctuation`, " -"and :const:`whitespace`." +msgid "String of ASCII characters which are considered printable by Python. This is a combination of :const:`digits`, :const:`ascii_letters`, :const:`punctuation`, and :const:`whitespace`." msgstr "" -#: ../../library/string.rst:71 -msgid "" -"By design, :meth:`string.printable.isprintable() ` " -"returns :const:`False`. In particular, ``string.printable`` is not printable " -"in the POSIX sense (see :manpage:`LC_CTYPE `)." +msgid "By design, :meth:`string.printable.isprintable() ` returns :const:`False`. In particular, ``string.printable`` is not printable in the POSIX sense (see :manpage:`LC_CTYPE `)." msgstr "" -#: ../../library/string.rst:78 -msgid "" -"A string containing all ASCII characters that are considered whitespace. " -"This includes the characters space, tab, linefeed, return, formfeed, and " -"vertical tab." +msgid "A string containing all ASCII characters that are considered whitespace. This includes the characters space, tab, linefeed, return, formfeed, and vertical tab." msgstr "" -#: ../../library/string.rst:86 msgid "Custom string formatting" msgstr "" -#: ../../library/string.rst:88 -msgid "" -"The built-in string class provides the ability to do complex variable " -"substitutions and value formatting via the :meth:`~str.format` method " -"described in :pep:`3101`. The :class:`Formatter` class in the :mod:`!" -"string` module allows you to create and customize your own string formatting " -"behaviors using the same implementation as the built-in :meth:`~str.format` " -"method." +msgid "The built-in string class provides the ability to do complex variable substitutions and value formatting via the :meth:`~str.format` method described in :pep:`3101`. The :class:`Formatter` class in the :mod:`!string` module allows you to create and customize your own string formatting behaviors using the same implementation as the built-in :meth:`~str.format` method." msgstr "" -#: ../../library/string.rst:97 msgid "The :class:`Formatter` class has the following public methods:" msgstr "" -#: ../../library/string.rst:101 -msgid "" -"The primary API method. It takes a format string and an arbitrary set of " -"positional and keyword arguments. It is just a wrapper that " -"calls :meth:`vformat`." +msgid "The primary API method. It takes a format string and an arbitrary set of positional and keyword arguments. It is just a wrapper that calls :meth:`vformat`." msgstr "" -#: ../../library/string.rst:105 -msgid "" -"A format string argument is now :ref:`positional-only `." +msgid "A format string argument is now :ref:`positional-only `." msgstr "" -#: ../../library/string.rst:111 -msgid "" -"This function does the actual work of formatting. It is exposed as a " -"separate function for cases where you want to pass in a predefined " -"dictionary of arguments, rather than unpacking and repacking the dictionary " -"as individual arguments using the ``*args`` and ``**kwargs`` " -"syntax. :meth:`vformat` does the work of breaking up the format string into " -"character data and replacement fields. It calls the various methods " -"described below." +msgid "This function does the actual work of formatting. It is exposed as a separate function for cases where you want to pass in a predefined dictionary of arguments, rather than unpacking and repacking the dictionary as individual arguments using the ``*args`` and ``**kwargs`` syntax. :meth:`vformat` does the work of breaking up the format string into character data and replacement fields. It calls the various methods described below." msgstr "" -#: ../../library/string.rst:119 -msgid "" -"In addition, the :class:`Formatter` defines a number of methods that are " -"intended to be replaced by subclasses:" +msgid "In addition, the :class:`Formatter` defines a number of methods that are intended to be replaced by subclasses:" msgstr "" -#: ../../library/string.rst:124 -msgid "" -"Loop over the format_string and return an iterable of tuples " -"(*literal_text*, *field_name*, *format_spec*, *conversion*). This is used " -"by :meth:`vformat` to break the string into either literal text, or " -"replacement fields." +msgid "Loop over the format_string and return an iterable of tuples (*literal_text*, *field_name*, *format_spec*, *conversion*). This is used by :meth:`vformat` to break the string into either literal text, or replacement fields." msgstr "" -#: ../../library/string.rst:129 -msgid "" -"The values in the tuple conceptually represent a span of literal text " -"followed by a single replacement field. If there is no literal text (which " -"can happen if two replacement fields occur consecutively), then " -"*literal_text* will be a zero-length string. If there is no replacement " -"field, then the values of *field_name*, *format_spec* and *conversion* will " -"be ``None``. The value of *field_name* is unmodified and auto-numbering of " -"non-numbered positional fields is done by :meth:`vformat`." +msgid "The values in the tuple conceptually represent a span of literal text followed by a single replacement field. If there is no literal text (which can happen if two replacement fields occur consecutively), then *literal_text* will be a zero-length string. If there is no replacement field, then the values of *field_name*, *format_spec* and *conversion* will be ``None``. The value of *field_name* is unmodified and auto-numbering of non-numbered positional fields is done by :meth:`vformat`." msgstr "" -#: ../../library/string.rst:139 -msgid "" -"Given *field_name*, convert it to an object to be formatted. Auto-numbering " -"of *field_name* returned from :meth:`parse` is done by :meth:`vformat` " -"before calling this method. Returns a tuple (obj, used_key). The default " -"version takes strings of the form defined in :pep:`3101`, such as \"0[name]" -"\" or \"label.title\". *args* and *kwargs* are as passed in " -"to :meth:`vformat`. The return value *used_key* has the same meaning as the " -"*key* parameter to :meth:`get_value`." +msgid "Given *field_name*, convert it to an object to be formatted. Auto-numbering of *field_name* returned from :meth:`parse` is done by :meth:`vformat` before calling this method. Returns a tuple (obj, used_key). The default version takes strings of the form defined in :pep:`3101`, such as \"0[name]\" or \"label.title\". *args* and *kwargs* are as passed in to :meth:`vformat`. The return value *used_key* has the same meaning as the *key* parameter to :meth:`get_value`." msgstr "" -#: ../../library/string.rst:149 -msgid "" -"Retrieve a given field value. The *key* argument will be either an integer " -"or a string. If it is an integer, it represents the index of the positional " -"argument in *args*; if it is a string, then it represents a named argument " -"in *kwargs*." +msgid "Retrieve a given field value. The *key* argument will be either an integer or a string. If it is an integer, it represents the index of the positional argument in *args*; if it is a string, then it represents a named argument in *kwargs*." msgstr "" -#: ../../library/string.rst:154 -msgid "" -"The *args* parameter is set to the list of positional arguments " -"to :meth:`vformat`, and the *kwargs* parameter is set to the dictionary of " -"keyword arguments." +msgid "The *args* parameter is set to the list of positional arguments to :meth:`vformat`, and the *kwargs* parameter is set to the dictionary of keyword arguments." msgstr "" -#: ../../library/string.rst:158 -msgid "" -"For compound field names, these functions are only called for the first " -"component of the field name; subsequent components are handled through " -"normal attribute and indexing operations." +msgid "For compound field names, these functions are only called for the first component of the field name; subsequent components are handled through normal attribute and indexing operations." msgstr "" -#: ../../library/string.rst:162 -msgid "" -"So for example, the field expression '0.name' would cause :meth:`get_value` " -"to be called with a *key* argument of 0. The ``name`` attribute will be " -"looked up after :meth:`get_value` returns by calling the built-" -"in :func:`getattr` function." +msgid "So for example, the field expression '0.name' would cause :meth:`get_value` to be called with a *key* argument of 0. The ``name`` attribute will be looked up after :meth:`get_value` returns by calling the built-in :func:`getattr` function." msgstr "" -#: ../../library/string.rst:167 -msgid "" -"If the index or keyword refers to an item that does not exist, then " -"an :exc:`IndexError` or :exc:`KeyError` should be raised." +msgid "If the index or keyword refers to an item that does not exist, then an :exc:`IndexError` or :exc:`KeyError` should be raised." msgstr "" -#: ../../library/string.rst:172 -msgid "" -"Implement checking for unused arguments if desired. The arguments to this " -"function is the set of all argument keys that were actually referred to in " -"the format string (integers for positional arguments, and strings for named " -"arguments), and a reference to the *args* and *kwargs* that was passed to " -"vformat. The set of unused args can be calculated from these " -"parameters. :meth:`check_unused_args` is assumed to raise an exception if " -"the check fails." +msgid "Implement checking for unused arguments if desired. The arguments to this function is the set of all argument keys that were actually referred to in the format string (integers for positional arguments, and strings for named arguments), and a reference to the *args* and *kwargs* that was passed to vformat. The set of unused args can be calculated from these parameters. :meth:`check_unused_args` is assumed to raise an exception if the check fails." msgstr "" -#: ../../library/string.rst:182 -msgid "" -":meth:`format_field` simply calls the global :func:`format` built-in. The " -"method is provided so that subclasses can override it." +msgid ":meth:`format_field` simply calls the global :func:`format` built-in. The method is provided so that subclasses can override it." msgstr "" -#: ../../library/string.rst:187 -msgid "" -"Converts the value (returned by :meth:`get_field`) given a conversion type " -"(as in the tuple returned by the :meth:`parse` method). The default version " -"understands 's' (str), 'r' (repr) and 'a' (ascii) conversion types." +msgid "Converts the value (returned by :meth:`get_field`) given a conversion type (as in the tuple returned by the :meth:`parse` method). The default version understands 's' (str), 'r' (repr) and 'a' (ascii) conversion types." msgstr "" -#: ../../library/string.rst:196 msgid "Format string syntax" msgstr "" -#: ../../library/string.rst:198 -msgid "" -"The :meth:`str.format` method and the :class:`Formatter` class share the " -"same syntax for format strings (although in the case of :class:`Formatter`, " -"subclasses can define their own format string syntax). The syntax is " -"related to that of :ref:`formatted string literals ` " -"and :ref:`template string literals `, but it is less " -"sophisticated and, in particular, does not support arbitrary expressions in " -"interpolations." +msgid "The :meth:`str.format` method and the :class:`Formatter` class share the same syntax for format strings (although in the case of :class:`Formatter`, subclasses can define their own format string syntax). The syntax is related to that of :ref:`formatted string literals ` and :ref:`template string literals `, but it is less sophisticated and, in particular, does not support arbitrary expressions in interpolations." msgstr "" -#: ../../library/string.rst:212 -msgid "" -"Format strings contain \"replacement fields\" surrounded by curly braces ``{}" -"``. Anything that is not contained in braces is considered literal text, " -"which is copied unchanged to the output. If you need to include a brace " -"character in the literal text, it can be escaped by doubling: ``{{`` and ``}}" -"``." +msgid "Format strings contain \"replacement fields\" surrounded by curly braces ``{}``. Anything that is not contained in braces is considered literal text, which is copied unchanged to the output. If you need to include a brace character in the literal text, it can be escaped by doubling: ``{{`` and ``}}``." msgstr "" -#: ../../library/string.rst:217 msgid "The grammar for a replacement field is as follows:" msgstr "" -#: ../../library/string.rst:229 -msgid "" -"In less formal terms, the replacement field can start with a *field_name* " -"that specifies the object whose value is to be formatted and inserted into " -"the output instead of the replacement field. The *field_name* is optionally " -"followed by a *conversion* field, which is preceded by an exclamation point " -"``'!'``, and a *format_spec*, which is preceded by a colon ``':'``. These " -"specify a non-default format for the replacement value." +msgid "In less formal terms, the replacement field can start with a *field_name* that specifies the object whose value is to be formatted and inserted into the output instead of the replacement field. The *field_name* is optionally followed by a *conversion* field, which is preceded by an exclamation point ``'!'``, and a *format_spec*, which is preceded by a colon ``':'``. These specify a non-default format for the replacement value." msgstr "" -#: ../../library/string.rst:236 msgid "See also the :ref:`formatspec` section." msgstr "" -#: ../../library/string.rst:238 -msgid "" -"The *field_name* itself begins with an *arg_name* that is either a number or " -"a keyword. If it's a number, it refers to a positional argument, and if " -"it's a keyword, it refers to a named keyword argument. An *arg_name* is " -"treated as a number if a call to :meth:`str.isdecimal` on the string would " -"return true. If the numerical arg_names in a format string are 0, 1, 2, ... " -"in sequence, they can all be omitted (not just some) and the numbers 0, 1, " -"2, ... will be automatically inserted in that order. Because *arg_name* is " -"not quote-delimited, it is not possible to specify arbitrary dictionary keys " -"(e.g., the strings ``'10'`` or ``':-]'``) within a format string. The " -"*arg_name* can be followed by any number of index or attribute expressions. " -"An expression of the form ``'.name'`` selects the named attribute " -"using :func:`getattr`, while an expression of the form ``'[index]'`` does an " -"index lookup using :meth:`~object.__getitem__`." -msgstr "" - -#: ../../library/string.rst:252 -msgid "" -"The positional argument specifiers can be omitted for :meth:`str.format`, so " -"``'{} {}'.format(a, b)`` is equivalent to ``'{0} {1}'.format(a, b)``." +msgid "The *field_name* itself begins with an *arg_name* that is either a number or a keyword. If it's a number, it refers to a positional argument, and if it's a keyword, it refers to a named keyword argument. An *arg_name* is treated as a number if a call to :meth:`str.isdecimal` on the string would return true. If the numerical arg_names in a format string are 0, 1, 2, ... in sequence, they can all be omitted (not just some) and the numbers 0, 1, 2, ... will be automatically inserted in that order. Because *arg_name* is not quote-delimited, it is not possible to specify arbitrary dictionary keys (e.g., the strings ``'10'`` or ``':-]'``) within a format string. The *arg_name* can be followed by any number of index or attribute expressions. An expression of the form ``'.name'`` selects the named attribute using :func:`getattr`, while an expression of the form ``'[index]'`` does an index lookup using :meth:`~object.__getitem__`." msgstr "" -#: ../../library/string.rst:256 -msgid "" -"The positional argument specifiers can be omitted for :class:`Formatter`." +msgid "The positional argument specifiers can be omitted for :meth:`str.format`, so ``'{} {}'.format(a, b)`` is equivalent to ``'{0} {1}'.format(a, b)``." +msgstr "" + +msgid "The positional argument specifiers can be omitted for :class:`Formatter`." msgstr "" -#: ../../library/string.rst:259 msgid "Some simple format string examples::" msgstr "" -#: ../../library/string.rst:261 msgid "" "\"First, thou shalt count to {0}\" # References first positional argument\n" -"\"Bring me a {}\" # Implicitly references the first " -"positional argument\n" +"\"Bring me a {}\" # Implicitly references the first positional argument\n" "\"From {} to {}\" # Same as \"From {0} to {1}\"\n" "\"My quest is {name}\" # References keyword argument 'name'\n" -"\"Weight in tons {0.weight}\" # 'weight' attribute of first positional " -"arg\n" -"\"Units destroyed: {players[0]}\" # First element of keyword argument " -"'players'." +"\"Weight in tons {0.weight}\" # 'weight' attribute of first positional arg\n" +"\"Units destroyed: {players[0]}\" # First element of keyword argument 'players'." msgstr "" -#: ../../library/string.rst:270 -msgid "" -"The *conversion* field causes a type coercion before formatting. Normally, " -"the job of formatting a value is done by the :meth:`~object.__format__` " -"method of the value itself. However, in some cases it is desirable to force " -"a type to be formatted as a string, overriding its own definition of " -"formatting. By converting the value to a string before " -"calling :meth:`~object.__format__`, the normal formatting logic is bypassed." +msgid "The *conversion* field causes a type coercion before formatting. Normally, the job of formatting a value is done by the :meth:`~object.__format__` method of the value itself. However, in some cases it is desirable to force a type to be formatted as a string, overriding its own definition of formatting. By converting the value to a string before calling :meth:`~object.__format__`, the normal formatting logic is bypassed." msgstr "" -#: ../../library/string.rst:277 -msgid "" -"Three conversion flags are currently supported: ``'!s'`` which " -"calls :func:`str` on the value, ``'!r'`` which calls :func:`repr` and ``'!" -"a'`` which calls :func:`ascii`." +msgid "Three conversion flags are currently supported: ``'!s'`` which calls :func:`str` on the value, ``'!r'`` which calls :func:`repr` and ``'!a'`` which calls :func:`ascii`." msgstr "" -#: ../../library/string.rst:281 msgid "Some examples::" msgstr "" -#: ../../library/string.rst:283 msgid "" "\"Harold's a clever {0!s}\" # Calls str() on the argument first\n" "\"Bring out the holy {name!r}\" # Calls repr() on the argument first\n" "\"More {!a}\" # Calls ascii() on the argument first" msgstr "" -#: ../../library/string.rst:287 -msgid "" -"The *format_spec* field contains a specification of how the value should be " -"presented, including such details as field width, alignment, padding, " -"decimal precision and so on. Each value type can define its own " -"\"formatting mini-language\" or interpretation of the *format_spec*." +msgid "The *format_spec* field contains a specification of how the value should be presented, including such details as field width, alignment, padding, decimal precision and so on. Each value type can define its own \"formatting mini-language\" or interpretation of the *format_spec*." msgstr "" -#: ../../library/string.rst:292 -msgid "" -"Most built-in types support a common formatting mini-language, which is " -"described in the next section." +msgid "Most built-in types support a common formatting mini-language, which is described in the next section." msgstr "" -#: ../../library/string.rst:295 -msgid "" -"A *format_spec* field can also include nested replacement fields within it. " -"These nested replacement fields may contain a field name, conversion flag " -"and format specification, but deeper nesting is not allowed. The " -"replacement fields within the format_spec are substituted before the " -"*format_spec* string is interpreted. This allows the formatting of a value " -"to be dynamically specified." +msgid "A *format_spec* field can also include nested replacement fields within it. These nested replacement fields may contain a field name, conversion flag and format specification, but deeper nesting is not allowed. The replacement fields within the format_spec are substituted before the *format_spec* string is interpreted. This allows the formatting of a value to be dynamically specified." msgstr "" -#: ../../library/string.rst:302 msgid "See the :ref:`formatexamples` section for some examples." msgstr "" -#: ../../library/string.rst:308 msgid "Format specification mini-language" msgstr "" -#: ../../library/string.rst:310 -msgid "" -"\"Format specifications\" are used within replacement fields contained " -"within a format string to define how individual values are presented " -"(see :ref:`formatstrings`, :ref:`f-strings`, and :ref:`t-strings`). They can " -"also be passed directly to the built-in :func:`format` function. Each " -"formattable type may define how the format specification is to be " -"interpreted." +msgid "\"Format specifications\" are used within replacement fields contained within a format string to define how individual values are presented (see :ref:`formatstrings`, :ref:`f-strings`, and :ref:`t-strings`). They can also be passed directly to the built-in :func:`format` function. Each formattable type may define how the format specification is to be interpreted." msgstr "" -#: ../../library/string.rst:317 -msgid "" -"Most built-in types implement the following options for format " -"specifications, although some of the formatting options are only supported " -"by the numeric types." +msgid "Most built-in types implement the following options for format specifications, although some of the formatting options are only supported by the numeric types." msgstr "" -#: ../../library/string.rst:320 -msgid "" -"A general convention is that an empty format specification produces the same " -"result as if you had called :func:`str` on the value. A non-empty format " -"specification typically modifies the result." +msgid "A general convention is that an empty format specification produces the same result as if you had called :func:`str` on the value. A non-empty format specification typically modifies the result." msgstr "" -#: ../../library/string.rst:324 msgid "The general form of a *standard format specifier* is:" msgstr "" -#: ../../library/string.rst:341 -msgid "" -"If a valid *align* value is specified, it can be preceded by a *fill* " -"character that can be any character and defaults to a space if omitted. It " -"is not possible to use a literal curly brace (\"``{``\" or \"``}``\") as the " -"*fill* character in a :ref:`formatted string literal ` or when " -"using the :meth:`str.format` method. However, it is possible to insert a " -"curly brace with a nested replacement field. This limitation doesn't affect " -"the :func:`format` function." +msgid "If a valid *align* value is specified, it can be preceded by a *fill* character that can be any character and defaults to a space if omitted. It is not possible to use a literal curly brace (\"``{``\" or \"``}``\") as the *fill* character in a :ref:`formatted string literal ` or when using the :meth:`str.format` method. However, it is possible to insert a curly brace with a nested replacement field. This limitation doesn't affect the :func:`format` function." msgstr "" -#: ../../library/string.rst:350 msgid "The meaning of the various alignment options is as follows:" msgstr "" -#: ../../library/string.rst:359 ../../library/string.rst:391 -#: ../../library/string.rst:457 msgid "Option" msgstr "" -#: ../../library/string.rst:359 ../../library/string.rst:391 -#: ../../library/string.rst:457 ../../library/string.rst:493 -#: ../../library/string.rst:504 ../../library/string.rst:544 msgid "Meaning" msgstr "" -#: ../../library/string.rst:361 msgid "``'<'``" msgstr "" -#: ../../library/string.rst:361 -msgid "" -"Forces the field to be left-aligned within the available space (this is the " -"default for most objects)." +msgid "Forces the field to be left-aligned within the available space (this is the default for most objects)." msgstr "" -#: ../../library/string.rst:364 msgid "``'>'``" msgstr "" -#: ../../library/string.rst:364 -msgid "" -"Forces the field to be right-aligned within the available space (this is the " -"default for numbers)." +msgid "Forces the field to be right-aligned within the available space (this is the default for numbers)." msgstr "" -#: ../../library/string.rst:367 msgid "``'='``" msgstr "" -#: ../../library/string.rst:367 -msgid "" -"Forces the padding to be placed after the sign (if any) but before the " -"digits. This is used for printing fields in the form '+000000120'. This " -"alignment option is only valid for numeric types, " -"excluding :class:`complex`. It becomes the default for numbers when '0' " -"immediately precedes the field width." +msgid "Forces the padding to be placed after the sign (if any) but before the digits. This is used for printing fields in the form '+000000120'. This alignment option is only valid for numeric types, excluding :class:`complex`. It becomes the default for numbers when '0' immediately precedes the field width." msgstr "" -#: ../../library/string.rst:374 msgid "``'^'``" msgstr "" -#: ../../library/string.rst:374 msgid "Forces the field to be centered within the available space." msgstr "" -#: ../../library/string.rst:378 -msgid "" -"Note that unless a minimum field width is defined, the field width will " -"always be the same size as the data to fill it, so that the alignment option " -"has no meaning in this case." +msgid "Note that unless a minimum field width is defined, the field width will always be the same size as the data to fill it, so that the alignment option has no meaning in this case." msgstr "" -#: ../../library/string.rst:382 -msgid "" -"The *sign* option is only valid for number types, and can be one of the " -"following:" +msgid "The *sign* option is only valid for number types, and can be one of the following:" msgstr "" -#: ../../library/string.rst:393 msgid "``'+'``" msgstr "" -#: ../../library/string.rst:393 -msgid "" -"Indicates that a sign should be used for both positive as well as negative " -"numbers." +msgid "Indicates that a sign should be used for both positive as well as negative numbers." msgstr "" -#: ../../library/string.rst:396 msgid "``'-'``" msgstr "" -#: ../../library/string.rst:396 -msgid "" -"Indicates that a sign should be used only for negative numbers (this is the " -"default behavior)." +msgid "Indicates that a sign should be used only for negative numbers (this is the default behavior)." msgstr "" -#: ../../library/string.rst:385 ../../library/string.rst:399 msgid "space" msgstr "" -#: ../../library/string.rst:399 -msgid "" -"Indicates that a leading space should be used on positive numbers, and a " -"minus sign on negative numbers." +msgid "Indicates that a leading space should be used on positive numbers, and a minus sign on negative numbers." msgstr "" -#: ../../library/string.rst:406 -msgid "" -"The ``'z'`` option coerces negative zero floating-point values to positive " -"zero after rounding to the format precision. This option is only valid for " -"floating-point presentation types." +msgid "The ``'z'`` option coerces negative zero floating-point values to positive zero after rounding to the format precision. This option is only valid for floating-point presentation types." msgstr "" -#: ../../library/string.rst:410 msgid "Added the ``'z'`` option (see also :pep:`682`)." msgstr "" -#: ../../library/string.rst:415 -msgid "" -"The ``'#'`` option causes the \"alternate form\" to be used for the " -"conversion. The alternate form is defined differently for different types. " -"This option is only valid for integer, float and complex types. For " -"integers, when binary, octal, or hexadecimal output is used, this option " -"adds the respective prefix ``'0b'``, ``'0o'``, ``'0x'``, or ``'0X'`` to the " -"output value. For float and complex the alternate form causes the result of " -"the conversion to always contain a decimal-point character, even if no " -"digits follow it. Normally, a decimal-point character appears in the result " -"of these conversions only if a digit follows it. In addition, for ``'g'`` " -"and ``'G'`` conversions, trailing zeros are not removed from the result." -msgstr "" - -#: ../../library/string.rst:427 -msgid "" -"The *width* is a decimal integer defining the minimum total field width, " -"including any prefixes, separators, and other formatting characters. If not " -"specified, then the field width will be determined by the content." +msgid "The ``'#'`` option causes the \"alternate form\" to be used for the conversion. The alternate form is defined differently for different types. This option is only valid for integer, float and complex types. For integers, when binary, octal, or hexadecimal output is used, this option adds the respective prefix ``'0b'``, ``'0o'``, ``'0x'``, or ``'0X'`` to the output value. For float and complex the alternate form causes the result of the conversion to always contain a decimal-point character, even if no digits follow it. Normally, a decimal-point character appears in the result of these conversions only if a digit follows it. In addition, for ``'g'`` and ``'G'`` conversions, trailing zeros are not removed from the result." msgstr "" -#: ../../library/string.rst:431 -msgid "" -"When no explicit alignment is given, preceding the *width* field by a zero " -"(``'0'``) character enables sign-aware zero-padding for numeric types, " -"excluding :class:`complex`. This is equivalent to a *fill* character of " -"``'0'`` with an *alignment* type of ``'='``." +msgid "The *width* is a decimal integer defining the minimum total field width, including any prefixes, separators, and other formatting characters. If not specified, then the field width will be determined by the content." msgstr "" -#: ../../library/string.rst:436 -msgid "" -"Preceding the *width* field by ``'0'`` no longer affects the default " -"alignment for strings." +msgid "When no explicit alignment is given, preceding the *width* field by a zero (``'0'``) character enables sign-aware zero-padding for numeric types, excluding :class:`complex`. This is equivalent to a *fill* character of ``'0'`` with an *alignment* type of ``'='``." msgstr "" -#: ../../library/string.rst:440 -msgid "" -"The *precision* is a decimal integer indicating how many digits should be " -"displayed after the decimal point for presentation types ``'f'`` and " -"``'F'``, or before and after the decimal point for presentation types " -"``'g'`` or ``'G'``. For string presentation types the field indicates the " -"maximum field size - in other words, how many characters will be used from " -"the field content. The *precision* is not allowed for integer presentation " -"types." +msgid "Preceding the *width* field by ``'0'`` no longer affects the default alignment for strings." msgstr "" -#: ../../library/string.rst:448 -msgid "" -"The *grouping* option after *width* and *precision* fields specifies a digit " -"group separator for the integral and fractional parts of a number " -"respectively. It can be one of the following:" +msgid "The *precision* is a decimal integer indicating how many digits should be displayed after the decimal point for presentation types ``'f'`` and ``'F'``, or before and after the decimal point for presentation types ``'g'`` or ``'G'``. For string presentation types the field indicates the maximum field size - in other words, how many characters will be used from the field content. The *precision* is not allowed for integer presentation types." +msgstr "" + +msgid "The *grouping* option after *width* and *precision* fields specifies a digit group separator for the integral and fractional parts of a number respectively. It can be one of the following:" msgstr "" -#: ../../library/string.rst:459 msgid "``','``" msgstr "" -#: ../../library/string.rst:459 -msgid "" -"Inserts a comma every 3 digits for integer presentation type ``'d'`` and " -"floating-point presentation types, excluding ``'n'``. For other presentation " -"types, this option is not supported." +msgid "Inserts a comma every 3 digits for integer presentation type ``'d'`` and floating-point presentation types, excluding ``'n'``. For other presentation types, this option is not supported." msgstr "" -#: ../../library/string.rst:465 msgid "``'_'``" msgstr "" -#: ../../library/string.rst:465 -msgid "" -"Inserts an underscore every 3 digits for integer presentation type ``'d'`` " -"and floating-point presentation types, excluding ``'n'``. For integer " -"presentation types ``'b'``, ``'o'``, ``'x'``, and ``'X'``, underscores are " -"inserted every 4 digits. For other presentation types, this option is not " -"supported." +msgid "Inserts an underscore every 3 digits for integer presentation type ``'d'`` and floating-point presentation types, excluding ``'n'``. For integer presentation types ``'b'``, ``'o'``, ``'x'``, and ``'X'``, underscores are inserted every 4 digits. For other presentation types, this option is not supported." msgstr "" -#: ../../library/string.rst:475 -msgid "" -"For a locale-aware separator, use the ``'n'`` :ref:`float presentation type " -"` or :ref:`integer presentation type ` " -"instead." +msgid "For a locale-aware separator, use the ``'n'`` :ref:`float presentation type ` or :ref:`integer presentation type ` instead." msgstr "" -#: ../../library/string.rst:479 msgid "Added the ``','`` option (see also :pep:`378`)." msgstr "" -#: ../../library/string.rst:482 msgid "Added the ``'_'`` option (see also :pep:`515`)." msgstr "" -#: ../../library/string.rst:485 msgid "Support the *grouping* option for the fractional part." msgstr "" -#: ../../library/string.rst:488 msgid "Finally, the *type* determines how the data should be presented." msgstr "" -#: ../../library/string.rst:490 msgid "The available string presentation types are:" msgstr "" -#: ../../library/string.rst:493 ../../library/string.rst:504 -#: ../../library/string.rst:544 msgid "Type" msgstr "" -#: ../../library/string.rst:495 msgid "``'s'``" msgstr "" -#: ../../library/string.rst:495 msgid "String format. This is the default type for strings and may be omitted." msgstr "" -#: ../../library/string.rst:498 ../../library/string.rst:532 -#: ../../library/string.rst:626 msgid "None" msgstr "" -#: ../../library/string.rst:498 msgid "The same as ``'s'``." msgstr "" -#: ../../library/string.rst:501 msgid "The available integer presentation types are:" msgstr "" -#: ../../library/string.rst:506 msgid "``'b'``" msgstr "" -#: ../../library/string.rst:506 msgid "Binary format. Outputs the number in base 2." msgstr "" -#: ../../library/string.rst:508 msgid "``'c'``" msgstr "" -#: ../../library/string.rst:508 -msgid "" -"Character. Converts the integer to the corresponding unicode character " -"before printing." +msgid "Character. Converts the integer to the corresponding unicode character before printing." msgstr "" -#: ../../library/string.rst:511 msgid "``'d'``" msgstr "" -#: ../../library/string.rst:511 msgid "Decimal Integer. Outputs the number in base 10." msgstr "" -#: ../../library/string.rst:513 msgid "``'o'``" msgstr "" -#: ../../library/string.rst:513 msgid "Octal format. Outputs the number in base 8." msgstr "" -#: ../../library/string.rst:515 msgid "``'x'``" msgstr "" -#: ../../library/string.rst:515 -msgid "" -"Hex format. Outputs the number in base 16, using lower-case letters for the " -"digits above 9." +msgid "Hex format. Outputs the number in base 16, using lower-case letters for the digits above 9." msgstr "" -#: ../../library/string.rst:518 msgid "``'X'``" msgstr "" -#: ../../library/string.rst:518 -msgid "" -"Hex format. Outputs the number in base 16, using upper-case letters for the " -"digits above 9. In case ``'#'`` is specified, the prefix ``'0x'`` will be " -"upper-cased to ``'0X'`` as well." +msgid "Hex format. Outputs the number in base 16, using upper-case letters for the digits above 9. In case ``'#'`` is specified, the prefix ``'0x'`` will be upper-cased to ``'0X'`` as well." msgstr "" -#: ../../library/string.rst:523 ../../library/string.rst:613 msgid "``'n'``" msgstr "" -#: ../../library/string.rst:525 -msgid "" -"Number. This is the same as ``'d'``, except that it uses the current locale " -"setting to insert the appropriate digit group separators. Note that the " -"default locale is not the system locale. Depending on your use case, you may " -"wish to set :const:`~locale.LC_NUMERIC` with :func:`locale.setlocale` before " -"using ``'n'``." +msgid "Number. This is the same as ``'d'``, except that it uses the current locale setting to insert the appropriate digit group separators. Note that the default locale is not the system locale. Depending on your use case, you may wish to set :const:`~locale.LC_NUMERIC` with :func:`locale.setlocale` before using ``'n'``." msgstr "" -#: ../../library/string.rst:532 msgid "The same as ``'d'``." msgstr "" -#: ../../library/string.rst:535 -msgid "" -"In addition to the above presentation types, integers can be formatted with " -"the floating-point presentation types listed below (except ``'n'`` and " -"``None``). When doing so, :func:`float` is used to convert the integer to a " -"floating-point number before formatting." +msgid "In addition to the above presentation types, integers can be formatted with the floating-point presentation types listed below (except ``'n'`` and ``None``). When doing so, :func:`float` is used to convert the integer to a floating-point number before formatting." msgstr "" -#: ../../library/string.rst:540 -msgid "" -"The available presentation types for :class:`float` " -"and :class:`~decimal.Decimal` values are:" +msgid "The available presentation types for :class:`float` and :class:`~decimal.Decimal` values are:" msgstr "" -#: ../../library/string.rst:546 msgid "``'e'``" msgstr "" -#: ../../library/string.rst:546 -msgid "" -"Scientific notation. For a given precision ``p``, formats the number in " -"scientific notation with the letter 'e' separating the coefficient from the " -"exponent. The coefficient has one digit before and ``p`` digits after the " -"decimal point, for a total of ``p + 1`` significant digits. With no " -"precision given, uses a precision of ``6`` digits after the decimal point " -"for :class:`float`, and shows all coefficient digits " -"for :class:`~decimal.Decimal`. If ``p=0``, the decimal point is omitted " -"unless the ``#`` option is used." +msgid "Scientific notation. For a given precision ``p``, formats the number in scientific notation with the letter 'e' separating the coefficient from the exponent. The coefficient has one digit before and ``p`` digits after the decimal point, for a total of ``p + 1`` significant digits. With no precision given, uses a precision of ``6`` digits after the decimal point for :class:`float`, and shows all coefficient digits for :class:`~decimal.Decimal`. If ``p=0``, the decimal point is omitted unless the ``#`` option is used." msgstr "" -#: ../../library/string.rst:557 -msgid "" -"For :class:`float`, the exponent always contains at least two digits, and is " -"zero if the value is zero." +msgid "For :class:`float`, the exponent always contains at least two digits, and is zero if the value is zero." msgstr "" -#: ../../library/string.rst:560 msgid "``'E'``" msgstr "" -#: ../../library/string.rst:560 -msgid "" -"Scientific notation. Same as ``'e'`` except it uses an upper case 'E' as the " -"separator character." +msgid "Scientific notation. Same as ``'e'`` except it uses an upper case 'E' as the separator character." msgstr "" -#: ../../library/string.rst:563 msgid "``'f'``" msgstr "" -#: ../../library/string.rst:563 -msgid "" -"Fixed-point notation. For a given precision ``p``, formats the number as a " -"decimal number with exactly ``p`` digits following the decimal point. With " -"no precision given, uses a precision of ``6`` digits after the decimal point " -"for :class:`float`, and uses a precision large enough to show all " -"coefficient digits for :class:`~decimal.Decimal`. If ``p=0``, the decimal " -"point is omitted unless the ``#`` option is used." +msgid "Fixed-point notation. For a given precision ``p``, formats the number as a decimal number with exactly ``p`` digits following the decimal point. With no precision given, uses a precision of ``6`` digits after the decimal point for :class:`float`, and uses a precision large enough to show all coefficient digits for :class:`~decimal.Decimal`. If ``p=0``, the decimal point is omitted unless the ``#`` option is used." msgstr "" -#: ../../library/string.rst:572 msgid "``'F'``" msgstr "" -#: ../../library/string.rst:572 -msgid "" -"Fixed-point notation. Same as ``'f'``, but converts ``nan`` to ``NAN`` and " -"``inf`` to ``INF``." +msgid "Fixed-point notation. Same as ``'f'``, but converts ``nan`` to ``NAN`` and ``inf`` to ``INF``." msgstr "" -#: ../../library/string.rst:575 msgid "``'g'``" msgstr "" -#: ../../library/string.rst:575 -msgid "" -"General format. For a given precision ``p >= 1``, this rounds the number to " -"``p`` significant digits and then formats the result in either fixed-point " -"format or in scientific notation, depending on its magnitude. A precision of " -"``0`` is treated as equivalent to a precision of ``1``." +msgid "General format. For a given precision ``p >= 1``, this rounds the number to ``p`` significant digits and then formats the result in either fixed-point format or in scientific notation, depending on its magnitude. A precision of ``0`` is treated as equivalent to a precision of ``1``." msgstr "" -#: ../../library/string.rst:582 -msgid "" -"The precise rules are as follows: suppose that the result formatted with " -"presentation type ``'e'`` and precision ``p-1`` would have exponent " -"``exp``. Then, if ``m <= exp < p``, where ``m`` is -4 for floats and -6 " -"for :class:`Decimals `, the number is formatted with " -"presentation type ``'f'`` and precision ``p-1-exp``. Otherwise, the number " -"is formatted with presentation type ``'e'`` and precision ``p-1``. In both " -"cases insignificant trailing zeros are removed from the significand, and the " -"decimal point is also removed if there are no remaining digits following it, " -"unless the ``'#'`` option is used." -msgstr "" - -#: ../../library/string.rst:595 -msgid "" -"With no precision given, uses a precision of ``6`` significant digits " -"for :class:`float`. For :class:`~decimal.Decimal`, the coefficient of the " -"result is formed from the coefficient digits of the value; scientific " -"notation is used for values smaller than ``1e-6`` in absolute value and " -"values where the place value of the least significant digit is larger than " -"1, and fixed-point notation is used otherwise." +msgid "The precise rules are as follows: suppose that the result formatted with presentation type ``'e'`` and precision ``p-1`` would have exponent ``exp``. Then, if ``m <= exp < p``, where ``m`` is -4 for floats and -6 for :class:`Decimals `, the number is formatted with presentation type ``'f'`` and precision ``p-1-exp``. Otherwise, the number is formatted with presentation type ``'e'`` and precision ``p-1``. In both cases insignificant trailing zeros are removed from the significand, and the decimal point is also removed if there are no remaining digits following it, unless the ``'#'`` option is used." msgstr "" -#: ../../library/string.rst:604 -msgid "" -"Positive and negative infinity, positive and negative zero, and nans, are " -"formatted as ``inf``, ``-inf``, ``0``, ``-0`` and ``nan`` respectively, " -"regardless of the precision." +msgid "With no precision given, uses a precision of ``6`` significant digits for :class:`float`. For :class:`~decimal.Decimal`, the coefficient of the result is formed from the coefficient digits of the value; scientific notation is used for values smaller than ``1e-6`` in absolute value and values where the place value of the least significant digit is larger than 1, and fixed-point notation is used otherwise." +msgstr "" + +msgid "Positive and negative infinity, positive and negative zero, and nans, are formatted as ``inf``, ``-inf``, ``0``, ``-0`` and ``nan`` respectively, regardless of the precision." msgstr "" -#: ../../library/string.rst:609 msgid "``'G'``" msgstr "" -#: ../../library/string.rst:609 -msgid "" -"General format. Same as ``'g'`` except switches to ``'E'`` if the number " -"gets too large. The representations of infinity and NaN are uppercased, too." +msgid "General format. Same as ``'g'`` except switches to ``'E'`` if the number gets too large. The representations of infinity and NaN are uppercased, too." msgstr "" -#: ../../library/string.rst:615 -msgid "" -"Number. This is the same as ``'g'``, except that it uses the current locale " -"setting to insert the appropriate digit group separators for the integral " -"part of a number. Note that the default locale is not the system locale. " -"Depending on your use case, you may wish to set :const:`~locale.LC_NUMERIC` " -"with :func:`locale.setlocale` before using ``'n'``." +msgid "Number. This is the same as ``'g'``, except that it uses the current locale setting to insert the appropriate digit group separators for the integral part of a number. Note that the default locale is not the system locale. Depending on your use case, you may wish to set :const:`~locale.LC_NUMERIC` with :func:`locale.setlocale` before using ``'n'``." msgstr "" -#: ../../library/string.rst:623 msgid "``'%'``" msgstr "" -#: ../../library/string.rst:623 -msgid "" -"Percentage. Multiplies the number by 100 and displays in fixed (``'f'``) " -"format, followed by a percent sign." +msgid "Percentage. Multiplies the number by 100 and displays in fixed (``'f'``) format, followed by a percent sign." msgstr "" -#: ../../library/string.rst:626 -msgid "" -"For :class:`float` this is like the ``'g'`` type, except that when fixed-" -"point notation is used to format the result, it always includes at least one " -"digit past the decimal point, and switches to the scientific notation when " -"``exp >= p - 1``. When the precision is not specified, the latter will be " -"as large as needed to represent the given value faithfully." +msgid "For :class:`float` this is like the ``'g'`` type, except that when fixed-point notation is used to format the result, it always includes at least one digit past the decimal point, and switches to the scientific notation when ``exp >= p - 1``. When the precision is not specified, the latter will be as large as needed to represent the given value faithfully." msgstr "" -#: ../../library/string.rst:634 -msgid "" -"For :class:`~decimal.Decimal`, this is the same as either ``'g'`` or ``'G'`` " -"depending on the value of ``context.capitals`` for the current decimal " -"context." +msgid "For :class:`~decimal.Decimal`, this is the same as either ``'g'`` or ``'G'`` depending on the value of ``context.capitals`` for the current decimal context." msgstr "" -#: ../../library/string.rst:638 -msgid "" -"The overall effect is to match the output of :func:`str` as altered by the " -"other format modifiers." +msgid "The overall effect is to match the output of :func:`str` as altered by the other format modifiers." msgstr "" -#: ../../library/string.rst:642 -msgid "" -"The result should be correctly rounded to a given precision ``p`` of digits " -"after the decimal point. The rounding mode for :class:`float` matches that " -"of the :func:`round` builtin. For :class:`~decimal.Decimal`, the rounding " -"mode of the current :ref:`context ` will be used." +msgid "The result should be correctly rounded to a given precision ``p`` of digits after the decimal point. The rounding mode for :class:`float` matches that of the :func:`round` builtin. For :class:`~decimal.Decimal`, the rounding mode of the current :ref:`context ` will be used." msgstr "" -#: ../../library/string.rst:647 -msgid "" -"The available presentation types for :class:`complex` are the same as those " -"for :class:`float` (``'%'`` is not allowed). Both the real and imaginary " -"components of a complex number are formatted as floating-point numbers, " -"according to the specified presentation type. They are separated by the " -"mandatory sign of the imaginary part, the latter being terminated by a ``j`` " -"suffix. If the presentation type is missing, the result will match the " -"output of :func:`str` (complex numbers with a non-zero real part are also " -"surrounded by parentheses), possibly altered by other format modifiers." +msgid "The available presentation types for :class:`complex` are the same as those for :class:`float` (``'%'`` is not allowed). Both the real and imaginary components of a complex number are formatted as floating-point numbers, according to the specified presentation type. They are separated by the mandatory sign of the imaginary part, the latter being terminated by a ``j`` suffix. If the presentation type is missing, the result will match the output of :func:`str` (complex numbers with a non-zero real part are also surrounded by parentheses), possibly altered by other format modifiers." msgstr "" -#: ../../library/string.rst:660 msgid "Format examples" msgstr "" -#: ../../library/string.rst:662 -msgid "" -"This section contains examples of the :meth:`str.format` syntax and " -"comparison with the old ``%``-formatting." +msgid "This section contains examples of the :meth:`str.format` syntax and comparison with the old ``%``-formatting." msgstr "" -#: ../../library/string.rst:665 -msgid "" -"In most of the cases the syntax is similar to the old ``%``-formatting, with " -"the addition of the ``{}`` and with ``:`` used instead of ``%``. For " -"example, ``'%03.2f'`` can be translated to ``'{:03.2f}'``." +msgid "In most of the cases the syntax is similar to the old ``%``-formatting, with the addition of the ``{}`` and with ``:`` used instead of ``%``. For example, ``'%03.2f'`` can be translated to ``'{:03.2f}'``." msgstr "" -#: ../../library/string.rst:669 -msgid "" -"The new format syntax also supports new and different options, shown in the " -"following examples." +msgid "The new format syntax also supports new and different options, shown in the following examples." msgstr "" -#: ../../library/string.rst:672 msgid "Accessing arguments by position::" msgstr "" -#: ../../library/string.rst:674 msgid "" ">>> '{0}, {1}, {2}'.format('a', 'b', 'c')\n" "'a, b, c'\n" @@ -963,36 +486,29 @@ msgid "" "'c, b, a'\n" ">>> '{2}, {1}, {0}'.format(*'abc') # unpacking argument sequence\n" "'c, b, a'\n" -">>> '{0}{1}{0}'.format('abra', 'cad') # arguments' indices can be " -"repeated\n" +">>> '{0}{1}{0}'.format('abra', 'cad') # arguments' indices can be repeated\n" "'abracadabra'" msgstr "" -#: ../../library/string.rst:685 msgid "Accessing arguments by name::" msgstr "" -#: ../../library/string.rst:687 msgid "" -">>> 'Coordinates: {latitude}, {longitude}'.format(latitude='37.24N', " -"longitude='-115.81W')\n" +">>> 'Coordinates: {latitude}, {longitude}'.format(latitude='37.24N', longitude='-115.81W')\n" "'Coordinates: 37.24N, -115.81W'\n" ">>> coord = {'latitude': '37.24N', 'longitude': '-115.81W'}\n" ">>> 'Coordinates: {latitude}, {longitude}'.format(**coord)\n" "'Coordinates: 37.24N, -115.81W'" msgstr "" -#: ../../library/string.rst:693 msgid "Accessing arguments' attributes::" msgstr "" -#: ../../library/string.rst:695 msgid "" ">>> c = 3-5j\n" ">>> ('The complex number {0} is formed from the real part {0.real} '\n" "... 'and the imaginary part {0.imag}.').format(c)\n" -"'The complex number (3-5j) is formed from the real part 3.0 and the " -"imaginary part -5.0.'\n" +"'The complex number (3-5j) is formed from the real part 3.0 and the imaginary part -5.0.'\n" ">>> class Point:\n" "... def __init__(self, x, y):\n" "... self.x, self.y = x, y\n" @@ -1003,33 +519,26 @@ msgid "" "'Point(4, 2)'" msgstr "" -#: ../../library/string.rst:708 msgid "Accessing arguments' items::" msgstr "" -#: ../../library/string.rst:710 msgid "" ">>> coord = (3, 5)\n" ">>> 'X: {0[0]}; Y: {0[1]}'.format(coord)\n" "'X: 3; Y: 5'" msgstr "" -#: ../../library/string.rst:714 msgid "Replacing ``%s`` and ``%r``::" msgstr "" -#: ../../library/string.rst:716 msgid "" -">>> \"repr() shows quotes: {!r}; str() doesn't: {!s}\".format('test1', " -"'test2')\n" +">>> \"repr() shows quotes: {!r}; str() doesn't: {!s}\".format('test1', 'test2')\n" "\"repr() shows quotes: 'test1'; str() doesn't: test2\"" msgstr "" -#: ../../library/string.rst:719 msgid "Aligning the text and specifying a width::" msgstr "" -#: ../../library/string.rst:721 msgid "" ">>> '{:<30}'.format('left aligned')\n" "'left aligned '\n" @@ -1041,27 +550,21 @@ msgid "" "'***********centered***********'" msgstr "" -#: ../../library/string.rst:730 msgid "Replacing ``%+f``, ``%-f``, and ``% f`` and specifying a sign::" msgstr "" -#: ../../library/string.rst:732 msgid "" ">>> '{:+f}; {:+f}'.format(3.14, -3.14) # show it always\n" "'+3.140000; -3.140000'\n" ">>> '{: f}; {: f}'.format(3.14, -3.14) # show a space for positive numbers\n" "' 3.140000; -3.140000'\n" -">>> '{:-f}; {:-f}'.format(3.14, -3.14) # show only the minus -- same as " -"'{:f}; {:f}'\n" +">>> '{:-f}; {:-f}'.format(3.14, -3.14) # show only the minus -- same as '{:f}; {:f}'\n" "'3.140000; -3.140000'" msgstr "" -#: ../../library/string.rst:739 -msgid "" -"Replacing ``%x`` and ``%o`` and converting the value to different bases::" +msgid "Replacing ``%x`` and ``%o`` and converting the value to different bases::" msgstr "" -#: ../../library/string.rst:741 msgid "" ">>> # format also supports binary numbers\n" ">>> \"int: {0:d}; hex: {0:x}; oct: {0:o}; bin: {0:b}\".format(42)\n" @@ -1071,11 +574,9 @@ msgid "" "'int: 42; hex: 0x2a; oct: 0o52; bin: 0b101010'" msgstr "" -#: ../../library/string.rst:748 msgid "Using the comma or the underscore as a digit group separator::" msgstr "" -#: ../../library/string.rst:750 msgid "" ">>> '{:,}'.format(1234567890)\n" "'1,234,567,890'\n" @@ -1093,11 +594,9 @@ msgid "" "'123,456,789.123_456_79'" msgstr "" -#: ../../library/string.rst:765 msgid "Expressing a percentage::" msgstr "" -#: ../../library/string.rst:767 msgid "" ">>> points = 19\n" ">>> total = 22\n" @@ -1105,11 +604,9 @@ msgid "" "'Correct answers: 86.36%'" msgstr "" -#: ../../library/string.rst:772 msgid "Using type-specific formatting::" msgstr "" -#: ../../library/string.rst:774 msgid "" ">>> import datetime as dt\n" ">>> d = dt.datetime(2010, 7, 4, 12, 15, 58)\n" @@ -1117,11 +614,9 @@ msgid "" "'2010-07-04 12:15:58'" msgstr "" -#: ../../library/string.rst:779 msgid "Nesting arguments and more complex examples::" msgstr "" -#: ../../library/string.rst:781 msgid "" ">>> for align, text in zip('<^>', ['left', 'center', 'right']):\n" "... '{0:{fill}{align}16}'.format(text, fill=align, align=align)\n" @@ -1139,8 +634,7 @@ msgid "" ">>> width = 5\n" ">>> for num in range(5,12):\n" "... for base in 'dXob':\n" -"... print('{0:{width}{base}}'.format(num, base=base, width=width), " -"end=' ')\n" +"... print('{0:{width}{base}}'.format(num, base=base, width=width), end=' ')\n" "... print()\n" "...\n" " 5 5 5 101\n" @@ -1152,135 +646,63 @@ msgid "" " 11 B 13 1011" msgstr "" -#: ../../library/string.rst:813 msgid "Template strings ($-strings)" msgstr "" -#: ../../library/string.rst:817 -msgid "" -"The feature described here was introduced in Python 2.4; a simple templating " -"method based upon regular expressions. It " -"predates :meth:`str.format`, :ref:`formatted string literals `, " -"and :ref:`template string literals `." +msgid "The feature described here was introduced in Python 2.4; a simple templating method based upon regular expressions. It predates :meth:`str.format`, :ref:`formatted string literals `, and :ref:`template string literals `." msgstr "" -#: ../../library/string.rst:822 -msgid "" -"It is unrelated to template string literals (t-strings), which were " -"introduced in Python 3.14. These evaluate " -"to :class:`string.templatelib.Template` objects, found in " -"the :mod:`string.templatelib` module." +msgid "It is unrelated to template string literals (t-strings), which were introduced in Python 3.14. These evaluate to :class:`string.templatelib.Template` objects, found in the :mod:`string.templatelib` module." msgstr "" -#: ../../library/string.rst:827 -msgid "" -"Template strings provide simpler string substitutions as described " -"in :pep:`292`. A primary use case for template strings is for " -"internationalization (i18n) since in that context, the simpler syntax and " -"functionality makes it easier to translate than other built-in string " -"formatting facilities in Python. As an example of a library built on " -"template strings for i18n, see the `flufl.i18n `_ package." +msgid "Template strings provide simpler string substitutions as described in :pep:`292`. A primary use case for template strings is for internationalization (i18n) since in that context, the simpler syntax and functionality makes it easier to translate than other built-in string formatting facilities in Python. As an example of a library built on template strings for i18n, see the `flufl.i18n `_ package." msgstr "" -#: ../../library/string.rst:837 -msgid "" -"Template strings support ``$``-based substitutions, using the following " -"rules:" +msgid "Template strings support ``$``-based substitutions, using the following rules:" msgstr "" -#: ../../library/string.rst:839 msgid "``$$`` is an escape; it is replaced with a single ``$``." msgstr "" -#: ../../library/string.rst:841 -msgid "" -"``$identifier`` names a substitution placeholder matching a mapping key of " -"``\"identifier\"``. By default, ``\"identifier\"`` is restricted to any " -"case-insensitive ASCII alphanumeric string (including underscores) that " -"starts with an underscore or ASCII letter. The first non-identifier " -"character after the ``$`` character terminates this placeholder " -"specification." +msgid "``$identifier`` names a substitution placeholder matching a mapping key of ``\"identifier\"``. By default, ``\"identifier\"`` is restricted to any case-insensitive ASCII alphanumeric string (including underscores) that starts with an underscore or ASCII letter. The first non-identifier character after the ``$`` character terminates this placeholder specification." msgstr "" -#: ../../library/string.rst:848 -msgid "" -"``${identifier}`` is equivalent to ``$identifier``. It is required when " -"valid identifier characters follow the placeholder but are not part of the " -"placeholder, such as ``\"${noun}ification\"``." +msgid "``${identifier}`` is equivalent to ``$identifier``. It is required when valid identifier characters follow the placeholder but are not part of the placeholder, such as ``\"${noun}ification\"``." msgstr "" -#: ../../library/string.rst:852 -msgid "" -"Any other appearance of ``$`` in the string will result in " -"a :exc:`ValueError` being raised." +msgid "Any other appearance of ``$`` in the string will result in a :exc:`ValueError` being raised." msgstr "" -#: ../../library/string.rst:855 -msgid "" -"The :mod:`!string` module provides a :class:`Template` class that implements " -"these rules. The methods of :class:`Template` are:" +msgid "The :mod:`!string` module provides a :class:`Template` class that implements these rules. The methods of :class:`Template` are:" msgstr "" -#: ../../library/string.rst:861 msgid "The constructor takes a single argument which is the template string." msgstr "" -#: ../../library/string.rst:866 -msgid "" -"Performs the template substitution, returning a new string. *mapping* is " -"any dictionary-like object with keys that match the placeholders in the " -"template. Alternatively, you can provide keyword arguments, where the " -"keywords are the placeholders. When both *mapping* and *kwds* are given and " -"there are duplicates, the placeholders from *kwds* take precedence." +msgid "Performs the template substitution, returning a new string. *mapping* is any dictionary-like object with keys that match the placeholders in the template. Alternatively, you can provide keyword arguments, where the keywords are the placeholders. When both *mapping* and *kwds* are given and there are duplicates, the placeholders from *kwds* take precedence." msgstr "" -#: ../../library/string.rst:875 -msgid "" -"Like :meth:`substitute`, except that if placeholders are missing from " -"*mapping* and *kwds*, instead of raising a :exc:`KeyError` exception, the " -"original placeholder will appear in the resulting string intact. Also, " -"unlike with :meth:`substitute`, any other appearances of the ``$`` will " -"simply return ``$`` instead of raising :exc:`ValueError`." +msgid "Like :meth:`substitute`, except that if placeholders are missing from *mapping* and *kwds*, instead of raising a :exc:`KeyError` exception, the original placeholder will appear in the resulting string intact. Also, unlike with :meth:`substitute`, any other appearances of the ``$`` will simply return ``$`` instead of raising :exc:`ValueError`." msgstr "" -#: ../../library/string.rst:881 -msgid "" -"While other exceptions may still occur, this method is called \"safe\" " -"because it always tries to return a usable string instead of raising an " -"exception. In another sense, :meth:`safe_substitute` may be anything other " -"than safe, since it will silently ignore malformed templates containing " -"dangling delimiters, unmatched braces, or placeholders that are not valid " -"Python identifiers." +msgid "While other exceptions may still occur, this method is called \"safe\" because it always tries to return a usable string instead of raising an exception. In another sense, :meth:`safe_substitute` may be anything other than safe, since it will silently ignore malformed templates containing dangling delimiters, unmatched braces, or placeholders that are not valid Python identifiers." msgstr "" -#: ../../library/string.rst:891 -msgid "" -"Returns ``False`` if the template has invalid placeholders that will " -"cause :meth:`substitute` to raise :exc:`ValueError`." +msgid "Returns ``False`` if the template has invalid placeholders that will cause :meth:`substitute` to raise :exc:`ValueError`." msgstr "" -#: ../../library/string.rst:899 -msgid "" -"Returns a list of the valid identifiers in the template, in the order they " -"first appear, ignoring any invalid identifiers." +msgid "Returns a list of the valid identifiers in the template, in the order they first appear, ignoring any invalid identifiers." msgstr "" -#: ../../library/string.rst:904 msgid ":class:`Template` instances also provide one public data attribute:" msgstr "" -#: ../../library/string.rst:908 -msgid "" -"This is the object passed to the constructor's *template* argument. In " -"general, you shouldn't change it, but read-only access is not enforced." +msgid "This is the object passed to the constructor's *template* argument. In general, you shouldn't change it, but read-only access is not enforced." msgstr "" -#: ../../library/string.rst:911 msgid "Here is an example of how to use a Template::" msgstr "" -#: ../../library/string.rst:913 msgid "" ">>> from string import Template\n" ">>> s = Template('$who likes $what')\n" @@ -1299,185 +721,101 @@ msgid "" "'tim likes $what'" msgstr "" -#: ../../library/string.rst:929 -msgid "" -"Advanced usage: you can derive subclasses of :class:`Template` to customize " -"the placeholder syntax, delimiter character, or the entire regular " -"expression used to parse template strings. To do this, you can override " -"these class attributes:" +msgid "Advanced usage: you can derive subclasses of :class:`Template` to customize the placeholder syntax, delimiter character, or the entire regular expression used to parse template strings. To do this, you can override these class attributes:" msgstr "" -#: ../../library/string.rst:934 -msgid "" -"*delimiter* -- This is the literal string describing a placeholder " -"introducing delimiter. The default value is ``$``. Note that this should " -"*not* be a regular expression, as the implementation will " -"call :meth:`re.escape` on this string as needed. Note further that you " -"cannot change the delimiter after class creation (i.e. a different delimiter " -"must be set in the subclass's class namespace)." +msgid "*delimiter* -- This is the literal string describing a placeholder introducing delimiter. The default value is ``$``. Note that this should *not* be a regular expression, as the implementation will call :meth:`re.escape` on this string as needed. Note further that you cannot change the delimiter after class creation (i.e. a different delimiter must be set in the subclass's class namespace)." msgstr "" -#: ../../library/string.rst:941 -msgid "" -"*idpattern* -- This is the regular expression describing the pattern for non-" -"braced placeholders. The default value is the regular expression ``(?a:[_a-" -"z][_a-z0-9]*)``. If this is given and *braceidpattern* is ``None`` this " -"pattern will also apply to braced placeholders." +msgid "*idpattern* -- This is the regular expression describing the pattern for non-braced placeholders. The default value is the regular expression ``(?a:[_a-z][_a-z0-9]*)``. If this is given and *braceidpattern* is ``None`` this pattern will also apply to braced placeholders." msgstr "" -#: ../../library/string.rst:948 -msgid "" -"Since default *flags* is ``re.IGNORECASE``, pattern ``[a-z]`` can match with " -"some non-ASCII characters. That's why we use the local ``a`` flag here." +msgid "Since default *flags* is ``re.IGNORECASE``, pattern ``[a-z]`` can match with some non-ASCII characters. That's why we use the local ``a`` flag here." msgstr "" -#: ../../library/string.rst:952 -msgid "" -"*braceidpattern* can be used to define separate patterns used inside and " -"outside the braces." +msgid "*braceidpattern* can be used to define separate patterns used inside and outside the braces." msgstr "" -#: ../../library/string.rst:956 -msgid "" -"*braceidpattern* -- This is like *idpattern* but describes the pattern for " -"braced placeholders. Defaults to ``None`` which means to fall back to " -"*idpattern* (i.e. the same pattern is used both inside and outside braces). " -"If given, this allows you to define different patterns for braced and " -"unbraced placeholders." +msgid "*braceidpattern* -- This is like *idpattern* but describes the pattern for braced placeholders. Defaults to ``None`` which means to fall back to *idpattern* (i.e. the same pattern is used both inside and outside braces). If given, this allows you to define different patterns for braced and unbraced placeholders." msgstr "" -#: ../../library/string.rst:964 -msgid "" -"*flags* -- The regular expression flags that will be applied when compiling " -"the regular expression used for recognizing substitutions. The default " -"value is ``re.IGNORECASE``. Note that ``re.VERBOSE`` will always be added " -"to the flags, so custom *idpattern*\\ s must follow conventions for verbose " -"regular expressions." +msgid "*flags* -- The regular expression flags that will be applied when compiling the regular expression used for recognizing substitutions. The default value is ``re.IGNORECASE``. Note that ``re.VERBOSE`` will always be added to the flags, so custom *idpattern*\\ s must follow conventions for verbose regular expressions." msgstr "" -#: ../../library/string.rst:972 -msgid "" -"Alternatively, you can provide the entire regular expression pattern by " -"overriding the class attribute *pattern*. If you do this, the value must be " -"a regular expression pattern string, or a compiled regular expression " -"object, with four named capturing groups. The capturing groups correspond " -"to the rules given above, along with the invalid placeholder rule:" +msgid "Alternatively, you can provide the entire regular expression pattern by overriding the class attribute *pattern*. If you do this, the value must be a regular expression pattern string, or a compiled regular expression object, with four named capturing groups. The capturing groups correspond to the rules given above, along with the invalid placeholder rule:" msgstr "" -#: ../../library/string.rst:979 -msgid "" -"*escaped* -- This group matches the escape sequence, e.g. ``$$``, in the " -"default pattern." +msgid "*escaped* -- This group matches the escape sequence, e.g. ``$$``, in the default pattern." msgstr "" -#: ../../library/string.rst:982 -msgid "" -"*named* -- This group matches the unbraced placeholder name; it should not " -"include the delimiter in capturing group." +msgid "*named* -- This group matches the unbraced placeholder name; it should not include the delimiter in capturing group." msgstr "" -#: ../../library/string.rst:985 -msgid "" -"*braced* -- This group matches the brace enclosed placeholder name; it " -"should not include either the delimiter or braces in the capturing group." +msgid "*braced* -- This group matches the brace enclosed placeholder name; it should not include either the delimiter or braces in the capturing group." msgstr "" -#: ../../library/string.rst:988 -msgid "" -"*invalid* -- This group matches any other delimiter pattern (usually a " -"single delimiter), and it should appear last in the regular expression." +msgid "*invalid* -- This group matches any other delimiter pattern (usually a single delimiter), and it should appear last in the regular expression." msgstr "" -#: ../../library/string.rst:991 -msgid "" -"The methods on this class will raise :exc:`ValueError` if the pattern " -"matches the template without one of these named groups matching." +msgid "The methods on this class will raise :exc:`ValueError` if the pattern matches the template without one of these named groups matching." msgstr "" -#: ../../library/string.rst:996 msgid "Helper functions" msgstr "" -#: ../../library/string.rst:1000 -msgid "" -"Split the argument into words using :meth:`str.split`, capitalize each word " -"using :meth:`str.capitalize`, and join the capitalized words " -"using :meth:`str.join`. If the optional second argument *sep* is absent or " -"``None``, runs of whitespace characters are replaced by a single space and " -"leading and trailing whitespace are removed, otherwise *sep* is used to " -"split and join the words." +msgid "Split the argument into words using :meth:`str.split`, capitalize each word using :meth:`str.capitalize`, and join the capitalized words using :meth:`str.join`. If the optional second argument *sep* is absent or ``None``, runs of whitespace characters are replaced by a single space and leading and trailing whitespace are removed, otherwise *sep* is used to split and join the words." msgstr "" -#: ../../library/string.rst:205 msgid "{} (curly brackets)" msgstr "" -#: ../../library/string.rst:205 ../../library/string.rst:352 -#: ../../library/string.rst:385 ../../library/string.rst:404 -#: ../../library/string.rst:413 ../../library/string.rst:452 msgid "in string formatting" msgstr "" -#: ../../library/string.rst:205 msgid ". (dot)" msgstr "" -#: ../../library/string.rst:205 msgid "[] (square brackets)" msgstr "" -#: ../../library/string.rst:205 msgid "! (exclamation)" msgstr "" -#: ../../library/string.rst:205 msgid ": (colon)" msgstr "" -#: ../../library/string.rst:352 msgid "< (less)" msgstr "" -#: ../../library/string.rst:352 msgid "> (greater)" msgstr "" -#: ../../library/string.rst:352 msgid "= (equals)" msgstr "" -#: ../../library/string.rst:352 msgid "^ (caret)" msgstr "" -#: ../../library/string.rst:385 msgid "+ (plus)" msgstr "" -#: ../../library/string.rst:385 msgid "- (minus)" msgstr "" -#: ../../library/string.rst:404 msgid "z" msgstr "" -#: ../../library/string.rst:413 msgid "# (hash)" msgstr "" -#: ../../library/string.rst:452 msgid ", (comma)" msgstr "" -#: ../../library/string.rst:452 msgid "_ (underscore)" msgstr "" -#: ../../library/string.rst:835 msgid "$ (dollar)" msgstr "" -#: ../../library/string.rst:835 msgid "in template strings" msgstr "" diff --git a/library/string.templatelib.po b/library/string.templatelib.po index 807169aa..0eb50739 100644 --- a/library/string.templatelib.po +++ b/library/string.templatelib.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2026-07-25 12:59+0330\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: none\n" @@ -19,45 +19,30 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../library/string.templatelib.rst:2 msgid ":mod:`!string.templatelib` --- Support for template string literals" msgstr "" -#: ../../library/string.templatelib.rst:7 msgid "**Source code:** :source:`Lib/string/templatelib.py`" msgstr "" -#: ../../library/string.templatelib.rst:13 msgid ":ref:`Format strings `" msgstr "" -#: ../../library/string.templatelib.rst:14 msgid ":ref:`Template string literal (t-string) syntax `" msgstr "" -#: ../../library/string.templatelib.rst:15 msgid ":pep:`750`" msgstr "" -#: ../../library/string.templatelib.rst:20 msgid "Template strings" msgstr "" -#: ../../library/string.templatelib.rst:24 -msgid "" -"Template strings are a mechanism for custom string processing. They have the " -"full flexibility of Python's :ref:`f-strings`, but return " -"a :class:`Template` instance that gives access to the static and " -"interpolated (in curly brackets) parts of a string *before* they are " -"combined." +msgid "Template strings are a mechanism for custom string processing. They have the full flexibility of Python's :ref:`f-strings`, but return a :class:`Template` instance that gives access to the static and interpolated (in curly brackets) parts of a string *before* they are combined." msgstr "" -#: ../../library/string.templatelib.rst:30 -msgid "" -"To write a t-string, use a ``'t'`` prefix instead of an ``'f'``, like so:" +msgid "To write a t-string, use a ``'t'`` prefix instead of an ``'f'``, like so:" msgstr "" -#: ../../library/string.templatelib.rst:32 msgid "" ">>> pi = 3.14\n" ">>> t't-strings are new in Python {pi!s}!'\n" @@ -67,268 +52,145 @@ msgid "" ")" msgstr "" -#: ../../library/string.templatelib.rst:42 msgid "Types" msgstr "" -#: ../../library/string.templatelib.rst:46 -msgid "" -"The :class:`!Template` class describes the contents of a template string. It " -"is immutable, meaning that attributes of a template cannot be reassigned." +msgid "The :class:`!Template` class describes the contents of a template string. It is immutable, meaning that attributes of a template cannot be reassigned." msgstr "" -#: ../../library/string.templatelib.rst:49 -msgid "" -"The most common way to create a :class:`!Template` instance is to use " -"the :ref:`template string literal syntax `. This syntax is " -"identical to that of :ref:`f-strings `, except that it uses a " -"``t`` prefix in place of an ``f``:" +msgid "The most common way to create a :class:`!Template` instance is to use the :ref:`template string literal syntax `. This syntax is identical to that of :ref:`f-strings `, except that it uses a ``t`` prefix in place of an ``f``:" msgstr "" -#: ../../library/string.templatelib.rst:59 -msgid "" -"Templates are stored as sequences of literal :attr:`~Template.strings` and " -"dynamic :attr:`~Template.interpolations`. A :attr:`~Template.values` " -"attribute holds the values of the interpolations:" +msgid "Templates are stored as sequences of literal :attr:`~Template.strings` and dynamic :attr:`~Template.interpolations`. A :attr:`~Template.values` attribute holds the values of the interpolations:" msgstr "" -#: ../../library/string.templatelib.rst:72 -msgid "" -"The :attr:`!strings` tuple has one more element than :attr:`!interpolations` " -"and :attr:`!values`; the interpolations “belong” between the strings. This " -"may be easier to understand when tuples are aligned" +msgid "The :attr:`!strings` tuple has one more element than :attr:`!interpolations` and :attr:`!values`; the interpolations “belong” between the strings. This may be easier to understand when tuples are aligned" msgstr "" -#: ../../library/string.templatelib.rst:76 msgid "" "template.strings: ('Ah! We do have ', '.')\n" "template.values: ( 'Camembert', )" msgstr "" -#: ../../library/string.templatelib.rst:82 -#: ../../library/string.templatelib.rst:251 msgid "Attributes" msgstr "" -#: ../../library/string.templatelib.rst:86 msgid "A :class:`tuple` of the static strings in the template." msgstr "" -#: ../../library/string.templatelib.rst:93 msgid "Empty strings *are* included in the tuple:" msgstr "" -#: ../../library/string.templatelib.rst:101 -msgid "" -"The ``strings`` tuple is never empty, and always contains one more string " -"than the ``interpolations`` and ``values`` tuples:" +msgid "The ``strings`` tuple is never empty, and always contains one more string than the ``interpolations`` and ``values`` tuples:" msgstr "" -#: ../../library/string.templatelib.rst:116 msgid "A :class:`tuple` of the interpolations in the template." msgstr "" -#: ../../library/string.templatelib.rst:123 -msgid "" -"The ``interpolations`` tuple may be empty and always contains one fewer " -"values than the ``strings`` tuple:" +msgid "The ``interpolations`` tuple may be empty and always contains one fewer values than the ``strings`` tuple:" msgstr "" -#: ../../library/string.templatelib.rst:132 msgid "A tuple of all interpolated values in the template." msgstr "" -#: ../../library/string.templatelib.rst:139 -msgid "" -"The ``values`` tuple always has the same length as the ``interpolations`` " -"tuple. It is always equivalent to ``tuple(i.value for i in " -"template.interpolations)``." +msgid "The ``values`` tuple always has the same length as the ``interpolations`` tuple. It is always equivalent to ``tuple(i.value for i in template.interpolations)``." msgstr "" -#: ../../library/string.templatelib.rst:144 -#: ../../library/string.templatelib.rst:319 msgid "Methods" msgstr "" -#: ../../library/string.templatelib.rst:147 -msgid "" -"While literal syntax is the most common way to create a :class:`!Template`, " -"it is also possible to create them directly using the constructor:" +msgid "While literal syntax is the most common way to create a :class:`!Template`, it is also possible to create them directly using the constructor:" msgstr "" -#: ../../library/string.templatelib.rst:158 -msgid "" -"If multiple strings are passed consecutively, they will be concatenated into " -"a single value in the :attr:`~Template.strings` attribute. For example, the " -"following code creates a :class:`Template` with a single final string:" +msgid "If multiple strings are passed consecutively, they will be concatenated into a single value in the :attr:`~Template.strings` attribute. For example, the following code creates a :class:`Template` with a single final string:" msgstr "" -#: ../../library/string.templatelib.rst:167 -msgid "" -"If multiple interpolations are passed consecutively, they will be treated as " -"separate interpolations and an empty string will be inserted between them. " -"For example, the following code creates a template with empty placeholders " -"in the :attr:`~Template.strings` attribute:" +msgid "If multiple interpolations are passed consecutively, they will be treated as separate interpolations and an empty string will be inserted between them. For example, the following code creates a template with empty placeholders in the :attr:`~Template.strings` attribute:" msgstr "" -#: ../../library/string.templatelib.rst:182 -msgid "" -"Iterate over the template, yielding each non-empty string " -"and :class:`Interpolation` in the correct order:" +msgid "Iterate over the template, yielding each non-empty string and :class:`Interpolation` in the correct order:" msgstr "" -#: ../../library/string.templatelib.rst:191 msgid "Empty strings are **not** included in the iteration:" msgstr "" -#: ../../library/string.templatelib.rst:204 -msgid "" -"Concatenate this template with another, returning a new :class:`!Template` " -"instance:" +msgid "Concatenate this template with another, returning a new :class:`!Template` instance:" msgstr "" -#: ../../library/string.templatelib.rst:211 -msgid "" -"Concatenating a :class:`!Template` and a ``str`` is **not** supported. This " -"is because it is unclear whether the string should be treated as a static " -"string or an interpolation. If you want to concatenate a :class:`!Template` " -"with a string, you should either wrap the string directly in a :class:`!" -"Template` (to treat it as a static string) or use an :class:`!Interpolation` " -"(to treat it as dynamic):" +msgid "Concatenating a :class:`!Template` and a ``str`` is **not** supported. This is because it is unclear whether the string should be treated as a static string or an interpolation. If you want to concatenate a :class:`!Template` with a string, you should either wrap the string directly in a :class:`!Template` (to treat it as a static string) or use an :class:`!Interpolation` (to treat it as dynamic):" msgstr "" -#: ../../library/string.templatelib.rst:232 -msgid "" -"The :class:`!Interpolation` type represents an expression inside a template " -"string. It is immutable, meaning that attributes of an interpolation cannot " -"be reassigned." +msgid "The :class:`!Interpolation` type represents an expression inside a template string. It is immutable, meaning that attributes of an interpolation cannot be reassigned." msgstr "" -#: ../../library/string.templatelib.rst:235 -msgid "" -"Interpolations support pattern matching, allowing you to match against their " -"attributes with the :ref:`match statement `:" +msgid "Interpolations support pattern matching, allowing you to match against their attributes with the :ref:`match statement `:" msgstr "" -#: ../../library/string.templatelib.rst:248 -msgid "" -"Interpolations are :ref:`generic ` over the types of their values." +msgid "Interpolations are :ref:`generic ` over the types of their values." msgstr "" -#: ../../library/string.templatelib.rst:255 msgid "The evaluated value of the interpolation." msgstr "" -#: ../../library/string.templatelib.rst:263 -msgid "" -"For interpolations created by t-string literals, :attr:`!expression` is the " -"expression text found inside the curly brackets (``{`` & ``}``), including " -"any whitespace, excluding the curly brackets themselves, and ending before " -"the first ``!``, ``:``, or ``=`` if any is present. For manually created " -"interpolations, :attr:`!expression` is the arbitrary string provided when " -"constructing the interpolation instance." +msgid "For interpolations created by t-string literals, :attr:`!expression` is the expression text found inside the curly brackets (``{`` & ``}``), including any whitespace, excluding the curly brackets themselves, and ending before the first ``!``, ``:``, or ``=`` if any is present. For manually created interpolations, :attr:`!expression` is the arbitrary string provided when constructing the interpolation instance." msgstr "" -#: ../../library/string.templatelib.rst:270 -msgid "" -"We recommend using valid Python expressions or the empty string for the " -"``expression`` field of manually created :class:`!Interpolation` instances, " -"although this is not enforced at runtime." +msgid "We recommend using valid Python expressions or the empty string for the ``expression`` field of manually created :class:`!Interpolation` instances, although this is not enforced at runtime." msgstr "" -#: ../../library/string.templatelib.rst:280 msgid "The conversion to apply to the value, or ``None``." msgstr "" -#: ../../library/string.templatelib.rst:282 -msgid "" -"The :attr:`!conversion` is the optional conversion to apply to the value:" +msgid "The :attr:`!conversion` is the optional conversion to apply to the value:" msgstr "" -#: ../../library/string.templatelib.rst:290 -msgid "" -"Unlike f-strings, where conversions are applied automatically, the expected " -"behavior with t-strings is that code that *processes* the :class:`!Template` " -"will decide how to interpret and whether to apply the :attr:`!conversion`. " -"For convenience, the :func:`convert` function can be used to mimic f-string " -"conversion semantics." +msgid "Unlike f-strings, where conversions are applied automatically, the expected behavior with t-strings is that code that *processes* the :class:`!Template` will decide how to interpret and whether to apply the :attr:`!conversion`. For convenience, the :func:`convert` function can be used to mimic f-string conversion semantics." msgstr "" -#: ../../library/string.templatelib.rst:300 msgid "The format specification to apply to the value." msgstr "" -#: ../../library/string.templatelib.rst:302 -msgid "" -"The :attr:`!format_spec` is an optional, arbitrary string used as the format " -"specification to present the value:" +msgid "The :attr:`!format_spec` is an optional, arbitrary string used as the format specification to present the value:" msgstr "" -#: ../../library/string.templatelib.rst:310 -msgid "" -"Unlike f-strings, where format specifications are applied automatically via " -"the :func:`format` protocol, the expected behavior with t-strings is that " -"code that *processes* the interpolation will decide how to interpret and " -"whether to apply the format specification. As a result, :attr:`!format_spec` " -"values in interpolations can be arbitrary strings, including those that do " -"not conform to the :func:`format` protocol." +msgid "Unlike f-strings, where format specifications are applied automatically via the :func:`format` protocol, the expected behavior with t-strings is that code that *processes* the interpolation will decide how to interpret and whether to apply the format specification. As a result, :attr:`!format_spec` values in interpolations can be arbitrary strings, including those that do not conform to the :func:`format` protocol." msgstr "" -#: ../../library/string.templatelib.rst:325 msgid "Create a new :class:`!Interpolation` object from component parts." msgstr "" -#: ../../library/string.templatelib.rst:0 msgid "Parameters" msgstr "" -#: ../../library/string.templatelib.rst:327 msgid "The evaluated, in-scope result of the interpolation." msgstr "" -#: ../../library/string.templatelib.rst:328 msgid "The text of a valid Python expression, or an empty string." msgstr "" -#: ../../library/string.templatelib.rst:330 -msgid "" -"The :ref:`conversion ` to be used, one of ``None``, ``'a'``, " -"``'r'``, or ``'s'``." +msgid "The :ref:`conversion ` to be used, one of ``None``, ``'a'``, ``'r'``, or ``'s'``." msgstr "" -#: ../../library/string.templatelib.rst:332 -msgid "" -"An optional, arbitrary string used as the :ref:`format specification " -"` to present the value." +msgid "An optional, arbitrary string used as the :ref:`format specification ` to present the value." msgstr "" -#: ../../library/string.templatelib.rst:337 msgid "Helper functions" msgstr "" -#: ../../library/string.templatelib.rst:341 -msgid "" -"Applies formatted string literal :ref:`conversion ` semantics to the given object *obj*. This is frequently useful " -"for custom template string processing logic." +msgid "Applies formatted string literal :ref:`conversion ` semantics to the given object *obj*. This is frequently useful for custom template string processing logic." msgstr "" -#: ../../library/string.templatelib.rst:345 msgid "Three conversion flags are currently supported:" msgstr "" -#: ../../library/string.templatelib.rst:347 msgid "``'s'`` which calls :func:`str` on the value (like ``!s``)," msgstr "" -#: ../../library/string.templatelib.rst:348 msgid "``'r'`` which calls :func:`repr` (like ``!r``), and" msgstr "" -#: ../../library/string.templatelib.rst:349 msgid "``'a'`` which calls :func:`ascii` (like ``!a``)." msgstr "" -#: ../../library/string.templatelib.rst:351 msgid "If the conversion flag is ``None``, *obj* is returned unchanged." msgstr "" diff --git a/library/stringprep.po b/library/stringprep.po index d17fe6f8..398e2a95 100644 --- a/library/stringprep.po +++ b/library/stringprep.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:14+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,147 +21,77 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/stringprep.rst:2 msgid ":mod:`!stringprep` --- Internet String Preparation" msgstr "" -#: ../../library/stringprep.rst:10 msgid "**Source code:** :source:`Lib/stringprep.py`" msgstr "" -#: ../../library/stringprep.rst:14 -msgid "" -"When identifying things (such as host names) in the internet, it is often " -"necessary to compare such identifications for \"equality\". Exactly how this " -"comparison is executed may depend on the application domain, e.g. whether it " -"should be case-insensitive or not. It may be also necessary to restrict the " -"possible identifications, to allow only identifications consisting of " -"\"printable\" characters." +msgid "When identifying things (such as host names) in the internet, it is often necessary to compare such identifications for \"equality\". Exactly how this comparison is executed may depend on the application domain, e.g. whether it should be case-insensitive or not. It may be also necessary to restrict the possible identifications, to allow only identifications consisting of \"printable\" characters." msgstr "" -#: ../../library/stringprep.rst:21 -msgid "" -":rfc:`3454` defines a procedure for \"preparing\" Unicode strings in " -"internet protocols. Before passing strings onto the wire, they are processed " -"with the preparation procedure, after which they have a certain normalized " -"form. The RFC defines a set of tables, which can be combined into profiles. " -"Each profile must define which tables it uses, and what other optional parts " -"of the ``stringprep`` procedure are part of the profile. One example of a " -"``stringprep`` profile is ``nameprep``, which is used for internationalized " -"domain names." +msgid ":rfc:`3454` defines a procedure for \"preparing\" Unicode strings in internet protocols. Before passing strings onto the wire, they are processed with the preparation procedure, after which they have a certain normalized form. The RFC defines a set of tables, which can be combined into profiles. Each profile must define which tables it uses, and what other optional parts of the ``stringprep`` procedure are part of the profile. One example of a ``stringprep`` profile is ``nameprep``, which is used for internationalized domain names." msgstr "" -#: ../../library/stringprep.rst:29 -msgid "" -"The module :mod:`!stringprep` only exposes the tables from :rfc:`3454`. As " -"these tables would be very large to represent as dictionaries or lists, the " -"module uses the Unicode character database internally. The module source " -"code itself was generated using the ``mkstringprep.py`` utility." +msgid "The module :mod:`!stringprep` only exposes the tables from :rfc:`3454`. As these tables would be very large to represent as dictionaries or lists, the module uses the Unicode character database internally. The module source code itself was generated using the ``mkstringprep.py`` utility." msgstr "" -#: ../../library/stringprep.rst:34 -msgid "" -"As a result, these tables are exposed as functions, not as data structures. " -"There are two kinds of tables in the RFC: sets and mappings. For a " -"set, :mod:`!stringprep` provides the \"characteristic function\", i.e. a " -"function that returns ``True`` if the parameter is part of the set. For " -"mappings, it provides the mapping function: given the key, it returns the " -"associated value. Below is a list of all functions available in the module." +msgid "As a result, these tables are exposed as functions, not as data structures. There are two kinds of tables in the RFC: sets and mappings. For a set, :mod:`!stringprep` provides the \"characteristic function\", i.e. a function that returns ``True`` if the parameter is part of the set. For mappings, it provides the mapping function: given the key, it returns the associated value. Below is a list of all functions available in the module." msgstr "" -#: ../../library/stringprep.rst:44 -msgid "" -"Determine whether *code* is in tableA.1 (Unassigned code points in Unicode " -"3.2)." +msgid "Determine whether *code* is in tableA.1 (Unassigned code points in Unicode 3.2)." msgstr "" -#: ../../library/stringprep.rst:49 msgid "Determine whether *code* is in tableB.1 (Commonly mapped to nothing)." msgstr "" -#: ../../library/stringprep.rst:54 -msgid "" -"Return the mapped value for *code* according to tableB.2 (Mapping for case-" -"folding used with NFKC)." +msgid "Return the mapped value for *code* according to tableB.2 (Mapping for case-folding used with NFKC)." msgstr "" -#: ../../library/stringprep.rst:60 -msgid "" -"Return the mapped value for *code* according to tableB.3 (Mapping for case-" -"folding used with no normalization)." +msgid "Return the mapped value for *code* according to tableB.3 (Mapping for case-folding used with no normalization)." msgstr "" -#: ../../library/stringprep.rst:66 msgid "Determine whether *code* is in tableC.1.1 (ASCII space characters)." msgstr "" -#: ../../library/stringprep.rst:71 -msgid "" -"Determine whether *code* is in tableC.1.2 (Non-ASCII space characters)." +msgid "Determine whether *code* is in tableC.1.2 (Non-ASCII space characters)." msgstr "" -#: ../../library/stringprep.rst:76 -msgid "" -"Determine whether *code* is in tableC.1 (Space characters, union of C.1.1 " -"and C.1.2)." +msgid "Determine whether *code* is in tableC.1 (Space characters, union of C.1.1 and C.1.2)." msgstr "" -#: ../../library/stringprep.rst:82 msgid "Determine whether *code* is in tableC.2.1 (ASCII control characters)." msgstr "" -#: ../../library/stringprep.rst:87 -msgid "" -"Determine whether *code* is in tableC.2.2 (Non-ASCII control characters)." +msgid "Determine whether *code* is in tableC.2.2 (Non-ASCII control characters)." msgstr "" -#: ../../library/stringprep.rst:92 -msgid "" -"Determine whether *code* is in tableC.2 (Control characters, union of C.2.1 " -"and C.2.2)." +msgid "Determine whether *code* is in tableC.2 (Control characters, union of C.2.1 and C.2.2)." msgstr "" -#: ../../library/stringprep.rst:98 msgid "Determine whether *code* is in tableC.3 (Private use)." msgstr "" -#: ../../library/stringprep.rst:103 msgid "Determine whether *code* is in tableC.4 (Non-character code points)." msgstr "" -#: ../../library/stringprep.rst:108 msgid "Determine whether *code* is in tableC.5 (Surrogate codes)." msgstr "" -#: ../../library/stringprep.rst:113 -msgid "" -"Determine whether *code* is in tableC.6 (Inappropriate for plain text)." +msgid "Determine whether *code* is in tableC.6 (Inappropriate for plain text)." msgstr "" -#: ../../library/stringprep.rst:118 -msgid "" -"Determine whether *code* is in tableC.7 (Inappropriate for canonical " -"representation)." +msgid "Determine whether *code* is in tableC.7 (Inappropriate for canonical representation)." msgstr "" -#: ../../library/stringprep.rst:124 -msgid "" -"Determine whether *code* is in tableC.8 (Change display properties or are " -"deprecated)." +msgid "Determine whether *code* is in tableC.8 (Change display properties or are deprecated)." msgstr "" -#: ../../library/stringprep.rst:130 msgid "Determine whether *code* is in tableC.9 (Tagging characters)." msgstr "" -#: ../../library/stringprep.rst:135 -msgid "" -"Determine whether *code* is in tableD.1 (Characters with bidirectional " -"property \"R\" or \"AL\")." +msgid "Determine whether *code* is in tableD.1 (Characters with bidirectional property \"R\" or \"AL\")." msgstr "" -#: ../../library/stringprep.rst:141 -msgid "" -"Determine whether *code* is in tableD.2 (Characters with bidirectional " -"property \"L\")." +msgid "Determine whether *code* is in tableD.2 (Characters with bidirectional property \"L\")." msgstr "" diff --git a/library/struct.po b/library/struct.po index 44990c14..62c998ae 100644 --- a/library/struct.po +++ b/library/struct.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:14+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -25,787 +25,447 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/struct.rst:2 msgid ":mod:`!struct` --- Interpret bytes as packed binary data" msgstr "" -#: ../../library/struct.rst:11 msgid "**Source code:** :source:`Lib/struct.py`" msgstr "" -#: ../../library/struct.rst:19 -msgid "" -"This module converts between Python values and C structs represented as " -"Python :class:`bytes` objects. Compact :ref:`format strings ` describe the intended conversions to/from Python values. The " -"module's functions and objects can be used for two largely distinct " -"applications, data exchange with external sources (files or network " -"connections), or data transfer between the Python application and the C " -"layer." +msgid "This module converts between Python values and C structs represented as Python :class:`bytes` objects. Compact :ref:`format strings ` describe the intended conversions to/from Python values. The module's functions and objects can be used for two largely distinct applications, data exchange with external sources (files or network connections), or data transfer between the Python application and the C layer." msgstr "" -#: ../../library/struct.rst:29 -msgid "" -"When no prefix character is given, native mode is the default. It packs or " -"unpacks data based on the platform and compiler on which the Python " -"interpreter was built. The result of packing a given C struct includes pad " -"bytes which maintain proper alignment for the C types involved; similarly, " -"alignment is taken into account when unpacking. In contrast, when " -"communicating data between external sources, the programmer is responsible " -"for defining byte ordering and padding between elements. See :ref:`struct-" -"alignment` for details." +msgid "When no prefix character is given, native mode is the default. It packs or unpacks data based on the platform and compiler on which the Python interpreter was built. The result of packing a given C struct includes pad bytes which maintain proper alignment for the C types involved; similarly, alignment is taken into account when unpacking. In contrast, when communicating data between external sources, the programmer is responsible for defining byte ordering and padding between elements. See :ref:`struct-alignment` for details." msgstr "" -#: ../../library/struct.rst:39 -msgid "" -"Several :mod:`!struct` functions (and methods of :class:`Struct`) take a " -"*buffer* argument. This refers to objects that implement " -"the :ref:`bufferobjects` and provide either a readable or read-writable " -"buffer. The most common types used for that purpose are :class:`bytes` " -"and :class:`bytearray`, but many other types that can be viewed as an array " -"of bytes implement the buffer protocol, so that they can be read/filled " -"without additional copying from a :class:`bytes` object." +msgid "Several :mod:`!struct` functions (and methods of :class:`Struct`) take a *buffer* argument. This refers to objects that implement the :ref:`bufferobjects` and provide either a readable or read-writable buffer. The most common types used for that purpose are :class:`bytes` and :class:`bytearray`, but many other types that can be viewed as an array of bytes implement the buffer protocol, so that they can be read/filled without additional copying from a :class:`bytes` object." msgstr "" -#: ../../library/struct.rst:48 msgid "Functions and Exceptions" msgstr "" -#: ../../library/struct.rst:50 msgid "The module defines the following exception and functions:" msgstr "" -#: ../../library/struct.rst:55 -msgid "" -"Exception raised on various occasions; argument is a string describing what " -"is wrong." +msgid "Exception raised on various occasions; argument is a string describing what is wrong." msgstr "" -#: ../../library/struct.rst:61 -msgid "" -"Return a bytes object containing the values *v1*, *v2*, ... packed according " -"to the format string *format*. The arguments must match the values required " -"by the format exactly." +msgid "Return a bytes object containing the values *v1*, *v2*, ... packed according to the format string *format*. The arguments must match the values required by the format exactly." msgstr "" -#: ../../library/struct.rst:68 -msgid "" -"Pack the values *v1*, *v2*, ... according to the format string *format* and " -"write the packed bytes into the writable buffer *buffer* starting at " -"position *offset*. Note that *offset* is a required argument. A negative " -"*offset* counts from the end of *buffer*." +msgid "Pack the values *v1*, *v2*, ... according to the format string *format* and write the packed bytes into the writable buffer *buffer* starting at position *offset*. Note that *offset* is a required argument. A negative *offset* counts from the end of *buffer*." msgstr "" -#: ../../library/struct.rst:76 -msgid "" -"Unpack from the buffer *buffer* (presumably packed by ``pack(format, ...)``) " -"according to the format string *format*. The result is a tuple even if it " -"contains exactly one item. The buffer's size in bytes must match the size " -"required by the format, as reflected by :func:`calcsize`." +msgid "Unpack from the buffer *buffer* (presumably packed by ``pack(format, ...)``) according to the format string *format*. The result is a tuple even if it contains exactly one item. The buffer's size in bytes must match the size required by the format, as reflected by :func:`calcsize`." msgstr "" -#: ../../library/struct.rst:84 -msgid "" -"Unpack from *buffer* starting at position *offset*, according to the format " -"string *format*. The result is a tuple even if it contains exactly one " -"item. The buffer's size in bytes, starting at position *offset*, must be at " -"least the size required by the format, as reflected by :func:`calcsize`. A " -"negative *offset* counts from the end of *buffer*." +msgid "Unpack from *buffer* starting at position *offset*, according to the format string *format*. The result is a tuple even if it contains exactly one item. The buffer's size in bytes, starting at position *offset*, must be at least the size required by the format, as reflected by :func:`calcsize`. A negative *offset* counts from the end of *buffer*." msgstr "" -#: ../../library/struct.rst:93 -msgid "" -"Iteratively unpack from the buffer *buffer* according to the format string " -"*format*. This function returns an iterator which will read equally sized " -"chunks from the buffer until all its contents have been consumed. The " -"buffer's size in bytes must be a multiple of the size required by the " -"format, as reflected by :func:`calcsize`." +msgid "Iteratively unpack from the buffer *buffer* according to the format string *format*. This function returns an iterator which will read equally sized chunks from the buffer until all its contents have been consumed. The buffer's size in bytes must be a multiple of the size required by the format, as reflected by :func:`calcsize`." msgstr "" -#: ../../library/struct.rst:99 msgid "Each iteration yields a tuple as specified by the format string." msgstr "" -#: ../../library/struct.rst:106 -msgid "" -"Return the size of the struct (and hence of the bytes object produced by " -"``pack(format, ...)``) corresponding to the format string *format*." +msgid "Return the size of the struct (and hence of the bytes object produced by ``pack(format, ...)``) corresponding to the format string *format*." msgstr "" -#: ../../library/struct.rst:113 msgid "Format Strings" msgstr "" -#: ../../library/struct.rst:115 -msgid "" -"Format strings describe the data layout when packing and unpacking data. " -"They are built up from :ref:`format characters`, which " -"specify the type of data being packed/unpacked. In addition, special " -"characters control the :ref:`byte order, size and alignment`. Each format string consists of an optional prefix character " -"which describes the overall properties of the data and one or more format " -"characters which describe the actual data values and padding." +msgid "Format strings describe the data layout when packing and unpacking data. They are built up from :ref:`format characters`, which specify the type of data being packed/unpacked. In addition, special characters control the :ref:`byte order, size and alignment`. Each format string consists of an optional prefix character which describes the overall properties of the data and one or more format characters which describe the actual data values and padding." msgstr "" -#: ../../library/struct.rst:127 msgid "Byte Order, Size, and Alignment" msgstr "" -#: ../../library/struct.rst:129 -msgid "" -"By default, C types are represented in the machine's native format and byte " -"order, and properly aligned by skipping pad bytes if necessary (according to " -"the rules used by the C compiler). This behavior is chosen so that the bytes " -"of a packed struct correspond exactly to the memory layout of the " -"corresponding C struct. Whether to use native byte ordering and padding or " -"standard formats depends on the application." +msgid "By default, C types are represented in the machine's native format and byte order, and properly aligned by skipping pad bytes if necessary (according to the rules used by the C compiler). This behavior is chosen so that the bytes of a packed struct correspond exactly to the memory layout of the corresponding C struct. Whether to use native byte ordering and padding or standard formats depends on the application." msgstr "" -#: ../../library/struct.rst:145 -msgid "" -"Alternatively, the first character of the format string can be used to " -"indicate the byte order, size and alignment of the packed data, according to " -"the following table:" +msgid "Alternatively, the first character of the format string can be used to indicate the byte order, size and alignment of the packed data, according to the following table:" msgstr "" -#: ../../library/struct.rst:150 msgid "Character" msgstr "" -#: ../../library/struct.rst:150 msgid "Byte order" msgstr "" -#: ../../library/struct.rst:150 msgid "Size" msgstr "" -#: ../../library/struct.rst:150 msgid "Alignment" msgstr "" -#: ../../library/struct.rst:152 msgid "``@``" msgstr "" -#: ../../library/struct.rst:152 ../../library/struct.rst:154 msgid "native" msgstr "" -#: ../../library/struct.rst:154 msgid "``=``" msgstr "" -#: ../../library/struct.rst:154 ../../library/struct.rst:156 -#: ../../library/struct.rst:158 ../../library/struct.rst:160 msgid "standard" msgstr "" -#: ../../library/struct.rst:154 ../../library/struct.rst:156 -#: ../../library/struct.rst:158 ../../library/struct.rst:160 msgid "none" msgstr "" -#: ../../library/struct.rst:156 msgid "``<``" msgstr "" -#: ../../library/struct.rst:156 msgid "little-endian" msgstr "" -#: ../../library/struct.rst:158 msgid "``>``" msgstr "" -#: ../../library/struct.rst:158 msgid "big-endian" msgstr "" -#: ../../library/struct.rst:160 msgid "``!``" msgstr "" -#: ../../library/struct.rst:160 msgid "network (= big-endian)" msgstr "" -#: ../../library/struct.rst:163 msgid "If the first character is not one of these, ``'@'`` is assumed." msgstr "" -#: ../../library/struct.rst:167 -msgid "" -"The number 1023 (``0x3ff`` in hexadecimal) has the following byte " -"representations:" +msgid "The number 1023 (``0x3ff`` in hexadecimal) has the following byte representations:" msgstr "" -#: ../../library/struct.rst:169 msgid "``03 ff`` in big-endian (``>``)" msgstr "" -#: ../../library/struct.rst:170 msgid "``ff 03`` in little-endian (``<``)" msgstr "" -#: ../../library/struct.rst:172 msgid "Python example:" msgstr "" -#: ../../library/struct.rst:180 -msgid "" -"Native byte order is big-endian or little-endian, depending on the host " -"system. For example, Intel x86, AMD64 (x86-64), and Apple M1 are little-" -"endian; IBM z and many legacy architectures are big-endian. " -"Use :data:`sys.byteorder` to check the endianness of your system." +msgid "Native byte order is big-endian or little-endian, depending on the host system. For example, Intel x86, AMD64 (x86-64), and Apple M1 are little-endian; IBM z and many legacy architectures are big-endian. Use :data:`sys.byteorder` to check the endianness of your system." msgstr "" -#: ../../library/struct.rst:185 -msgid "" -"Native size and alignment are determined using the C compiler's ``sizeof`` " -"expression. This is always combined with native byte order." +msgid "Native size and alignment are determined using the C compiler's ``sizeof`` expression. This is always combined with native byte order." msgstr "" -#: ../../library/struct.rst:188 -msgid "" -"Standard size depends only on the format character; see the table in " -"the :ref:`format-characters` section." +msgid "Standard size depends only on the format character; see the table in the :ref:`format-characters` section." msgstr "" -#: ../../library/struct.rst:191 -msgid "" -"Note the difference between ``'@'`` and ``'='``: both use native byte order, " -"but the size and alignment of the latter is standardized." +msgid "Note the difference between ``'@'`` and ``'='``: both use native byte order, but the size and alignment of the latter is standardized." msgstr "" -#: ../../library/struct.rst:194 -msgid "" -"The form ``'!'`` represents the network byte order which is always big-" -"endian as defined in `IETF RFC 1700 `_." +msgid "The form ``'!'`` represents the network byte order which is always big-endian as defined in `IETF RFC 1700 `_." msgstr "" -#: ../../library/struct.rst:197 -msgid "" -"There is no way to indicate non-native byte order (force byte-swapping); use " -"the appropriate choice of ``'<'`` or ``'>'``." +msgid "There is no way to indicate non-native byte order (force byte-swapping); use the appropriate choice of ``'<'`` or ``'>'``." msgstr "" -#: ../../library/struct.rst:200 ../../library/struct.rst:292 msgid "Notes:" msgstr "" -#: ../../library/struct.rst:202 -msgid "" -"Padding is only automatically added between successive structure members. No " -"padding is added at the beginning or the end of the encoded struct." +msgid "Padding is only automatically added between successive structure members. No padding is added at the beginning or the end of the encoded struct." msgstr "" -#: ../../library/struct.rst:205 -msgid "" -"No padding is added when using non-native size and alignment, e.g. with '<', " -"'>', '=', and '!'." +msgid "No padding is added when using non-native size and alignment, e.g. with '<', '>', '=', and '!'." msgstr "" -#: ../../library/struct.rst:208 -msgid "" -"To align the end of a structure to the alignment requirement of a particular " -"type, end the format with the code for that type with a repeat count of " -"zero. See :ref:`struct-examples`." +msgid "To align the end of a structure to the alignment requirement of a particular type, end the format with the code for that type with a repeat count of zero. See :ref:`struct-examples`." msgstr "" -#: ../../library/struct.rst:216 msgid "Format Characters" msgstr "" -#: ../../library/struct.rst:218 -msgid "" -"Format characters have the following meaning; the conversion between C and " -"Python values should be obvious given their types. The 'Standard size' " -"column refers to the size of the packed value in bytes when using standard " -"size; that is, when the format string starts with one of ``'<'``, ``'>'``, " -"``'!'`` or ``'='``. When using native size, the size of the packed value is " -"platform-dependent." +msgid "Format characters have the following meaning; the conversion between C and Python values should be obvious given their types. The 'Standard size' column refers to the size of the packed value in bytes when using standard size; that is, when the format string starts with one of ``'<'``, ``'>'``, ``'!'`` or ``'='``. When using native size, the size of the packed value is platform-dependent." msgstr "" -#: ../../library/struct.rst:226 msgid "Format" msgstr "" -#: ../../library/struct.rst:226 msgid "C Type" msgstr "" -#: ../../library/struct.rst:226 msgid "Python type" msgstr "" -#: ../../library/struct.rst:226 msgid "Standard size" msgstr "" -#: ../../library/struct.rst:226 msgid "Notes" msgstr "" -#: ../../library/struct.rst:228 msgid "``x``" msgstr "" -#: ../../library/struct.rst:228 msgid "pad byte" msgstr "" -#: ../../library/struct.rst:228 msgid "no value" msgstr "" -#: ../../library/struct.rst:228 msgid "\\(7)" msgstr "" -#: ../../library/struct.rst:230 msgid "``c``" msgstr "" -#: ../../library/struct.rst:230 msgid ":c:expr:`char`" msgstr "" -#: ../../library/struct.rst:230 msgid "bytes of length 1" msgstr "" -#: ../../library/struct.rst:230 ../../library/struct.rst:232 -#: ../../library/struct.rst:234 ../../library/struct.rst:236 msgid "1" msgstr "" -#: ../../library/struct.rst:232 msgid "``b``" msgstr "" -#: ../../library/struct.rst:232 msgid ":c:expr:`signed char`" msgstr "" -#: ../../library/struct.rst:232 ../../library/struct.rst:234 -#: ../../library/struct.rst:238 ../../library/struct.rst:240 -#: ../../library/struct.rst:242 ../../library/struct.rst:244 -#: ../../library/struct.rst:246 ../../library/struct.rst:248 -#: ../../library/struct.rst:250 ../../library/struct.rst:252 -#: ../../library/struct.rst:255 ../../library/struct.rst:257 -#: ../../library/struct.rst:273 msgid "int" msgstr "" -#: ../../library/struct.rst:232 ../../library/struct.rst:234 -#: ../../library/struct.rst:238 ../../library/struct.rst:240 -#: ../../library/struct.rst:242 ../../library/struct.rst:244 -#: ../../library/struct.rst:246 ../../library/struct.rst:248 -#: ../../library/struct.rst:250 ../../library/struct.rst:252 msgid "\\(2)" msgstr "" -#: ../../library/struct.rst:234 msgid "``B``" msgstr "" -#: ../../library/struct.rst:234 msgid ":c:expr:`unsigned char`" msgstr "" -#: ../../library/struct.rst:236 msgid "``?``" msgstr "" -#: ../../library/struct.rst:236 msgid ":c:expr:`_Bool`" msgstr "" -#: ../../library/struct.rst:236 msgid "bool" msgstr "" -#: ../../library/struct.rst:236 msgid "\\(1)" msgstr "" -#: ../../library/struct.rst:238 msgid "``h``" msgstr "" -#: ../../library/struct.rst:238 msgid ":c:expr:`short`" msgstr "" -#: ../../library/struct.rst:238 ../../library/struct.rst:240 -#: ../../library/struct.rst:259 msgid "2" msgstr "" -#: ../../library/struct.rst:240 msgid "``H``" msgstr "" -#: ../../library/struct.rst:240 msgid ":c:expr:`unsigned short`" msgstr "" -#: ../../library/struct.rst:242 msgid "``i``" msgstr "" -#: ../../library/struct.rst:242 msgid ":c:expr:`int`" msgstr "" -#: ../../library/struct.rst:242 ../../library/struct.rst:244 -#: ../../library/struct.rst:246 ../../library/struct.rst:248 -#: ../../library/struct.rst:261 msgid "4" msgstr "" -#: ../../library/struct.rst:244 msgid "``I``" msgstr "" -#: ../../library/struct.rst:244 msgid ":c:expr:`unsigned int`" msgstr "" -#: ../../library/struct.rst:246 msgid "``l``" msgstr "" -#: ../../library/struct.rst:246 msgid ":c:expr:`long`" msgstr "" -#: ../../library/struct.rst:248 msgid "``L``" msgstr "" -#: ../../library/struct.rst:248 msgid ":c:expr:`unsigned long`" msgstr "" -#: ../../library/struct.rst:250 msgid "``q``" msgstr "" -#: ../../library/struct.rst:250 msgid ":c:expr:`long long`" msgstr "" -#: ../../library/struct.rst:250 ../../library/struct.rst:252 -#: ../../library/struct.rst:263 ../../library/struct.rst:265 msgid "8" msgstr "" -#: ../../library/struct.rst:252 msgid "``Q``" msgstr "" -#: ../../library/struct.rst:252 msgid ":c:expr:`unsigned long long`" msgstr "" -#: ../../library/struct.rst:255 msgid "``n``" msgstr "" -#: ../../library/struct.rst:255 msgid ":c:type:`ssize_t`" msgstr "" -#: ../../library/struct.rst:255 ../../library/struct.rst:257 msgid "\\(2), \\(3)" msgstr "" -#: ../../library/struct.rst:257 msgid "``N``" msgstr "" -#: ../../library/struct.rst:257 msgid ":c:type:`size_t`" msgstr "" -#: ../../library/struct.rst:259 msgid "``e``" msgstr "" -#: ../../library/struct.rst:259 msgid ":c:expr:`_Float16`" msgstr "" -#: ../../library/struct.rst:259 ../../library/struct.rst:261 -#: ../../library/struct.rst:263 msgid "float" msgstr "" -#: ../../library/struct.rst:259 msgid "\\(4), \\(6)" msgstr "" -#: ../../library/struct.rst:261 msgid "``f``" msgstr "" -#: ../../library/struct.rst:261 msgid ":c:expr:`float`" msgstr "" -#: ../../library/struct.rst:261 ../../library/struct.rst:263 msgid "\\(4)" msgstr "" -#: ../../library/struct.rst:263 msgid "``d``" msgstr "" -#: ../../library/struct.rst:263 msgid ":c:expr:`double`" msgstr "" -#: ../../library/struct.rst:265 msgid "``F``" msgstr "" -#: ../../library/struct.rst:265 msgid ":c:expr:`float complex`" msgstr "" -#: ../../library/struct.rst:265 ../../library/struct.rst:267 msgid "complex" msgstr "" -#: ../../library/struct.rst:265 ../../library/struct.rst:267 msgid "\\(10)" msgstr "" -#: ../../library/struct.rst:267 msgid "``D``" msgstr "" -#: ../../library/struct.rst:267 msgid ":c:expr:`double complex`" msgstr "" -#: ../../library/struct.rst:267 msgid "16" msgstr "" -#: ../../library/struct.rst:269 msgid "``s``" msgstr "" -#: ../../library/struct.rst:269 ../../library/struct.rst:271 msgid ":c:expr:`char[]`" msgstr "" -#: ../../library/struct.rst:269 ../../library/struct.rst:271 msgid "bytes" msgstr "" -#: ../../library/struct.rst:269 msgid "\\(9)" msgstr "" -#: ../../library/struct.rst:271 msgid "``p``" msgstr "" -#: ../../library/struct.rst:271 msgid "\\(8)" msgstr "" -#: ../../library/struct.rst:273 msgid "``P``" msgstr "" -#: ../../library/struct.rst:273 msgid ":c:expr:`void \\*`" msgstr "" -#: ../../library/struct.rst:273 msgid "\\(2), \\(5)" msgstr "" -#: ../../library/struct.rst:276 msgid "Added support for the ``'n'`` and ``'N'`` formats." msgstr "" -#: ../../library/struct.rst:279 msgid "Added support for the ``'e'`` format." msgstr "" -#: ../../library/struct.rst:282 msgid "Added support for the ``'F'`` and ``'D'`` formats." msgstr "" -#: ../../library/struct.rst:287 -msgid "" -"The :mod:`array` and :ref:`ctypes ` modules, " -"as well as third-party modules like `numpy `__, use similar " -"-- but slightly different -- type codes." +msgid "The :mod:`array` and :ref:`ctypes ` modules, as well as third-party modules like `numpy `__, use similar -- but slightly different -- type codes." msgstr "" -#: ../../library/struct.rst:297 -msgid "" -"The ``'?'`` conversion code corresponds to the :c:expr:`_Bool` type defined " -"by C standards since C99. In standard mode, it is represented by one byte." +msgid "The ``'?'`` conversion code corresponds to the :c:expr:`_Bool` type defined by C standards since C99. In standard mode, it is represented by one byte." msgstr "" -#: ../../library/struct.rst:302 -msgid "" -"When attempting to pack a non-integer using any of the integer conversion " -"codes, if the non-integer has a :meth:`~object.__index__` method then that " -"method is called to convert the argument to an integer before packing." +msgid "When attempting to pack a non-integer using any of the integer conversion codes, if the non-integer has a :meth:`~object.__index__` method then that method is called to convert the argument to an integer before packing." msgstr "" -#: ../../library/struct.rst:306 msgid "Added use of the :meth:`~object.__index__` method for non-integers." msgstr "" -#: ../../library/struct.rst:310 -msgid "" -"The ``'n'`` and ``'N'`` conversion codes are only available for the native " -"size (selected as the default or with the ``'@'`` byte order character). For " -"the standard size, you can use whichever of the other integer formats fits " -"your application." +msgid "The ``'n'`` and ``'N'`` conversion codes are only available for the native size (selected as the default or with the ``'@'`` byte order character). For the standard size, you can use whichever of the other integer formats fits your application." msgstr "" -#: ../../library/struct.rst:316 -msgid "" -"For the ``'f'``, ``'d'`` and ``'e'`` conversion codes, the packed " -"representation uses the IEEE 754 binary32, binary64 or binary16 format (for " -"``'f'``, ``'d'`` or ``'e'`` respectively), regardless of the floating-point " -"format used by the platform." +msgid "For the ``'f'``, ``'d'`` and ``'e'`` conversion codes, the packed representation uses the IEEE 754 binary32, binary64 or binary16 format (for ``'f'``, ``'d'`` or ``'e'`` respectively), regardless of the floating-point format used by the platform." msgstr "" -#: ../../library/struct.rst:322 -msgid "" -"The ``'P'`` format character is only available for the native byte ordering " -"(selected as the default or with the ``'@'`` byte order character). The byte " -"order character ``'='`` chooses to use little- or big-endian ordering based " -"on the host system. The struct module does not interpret this as native " -"ordering, so the ``'P'`` format is not available." +msgid "The ``'P'`` format character is only available for the native byte ordering (selected as the default or with the ``'@'`` byte order character). The byte order character ``'='`` chooses to use little- or big-endian ordering based on the host system. The struct module does not interpret this as native ordering, so the ``'P'`` format is not available." +msgstr "" + +msgid "The IEEE 754 binary16 \"half precision\" type was introduced in the 2008 revision of the `IEEE 754 standard `_. It has a sign bit, a 5-bit exponent and 11-bit precision (with 10 bits explicitly stored), and can represent numbers between approximately ``6.1e-05`` and ``6.5e+04`` at full precision. This type is not widely supported by C compilers: it's available as :c:expr:`_Float16` type, if the compiler supports the Annex H of the C23 standard. On a typical machine, an unsigned short can be used for storage, but not for math operations. See the Wikipedia page on the `half-precision floating-point format `_ for more information." msgstr "" -#: ../../library/struct.rst:329 -msgid "" -"The IEEE 754 binary16 \"half precision\" type was introduced in the 2008 " -"revision of the `IEEE 754 standard `_. It has a sign " -"bit, a 5-bit exponent and 11-bit precision (with 10 bits explicitly stored), " -"and can represent numbers between approximately ``6.1e-05`` and ``6.5e+04`` " -"at full precision. This type is not widely supported by C compilers: it's " -"available as :c:expr:`_Float16` type, if the compiler supports the Annex H " -"of the C23 standard. On a typical machine, an unsigned short can be used " -"for storage, but not for math operations. See the Wikipedia page on the " -"`half-precision floating-point format `_ for more " -"information." -msgstr "" - -#: ../../library/struct.rst:341 msgid "When packing, ``'x'`` inserts one NUL byte." msgstr "" -#: ../../library/struct.rst:344 -msgid "" -"The ``'p'`` format character encodes a \"Pascal string\", meaning a short " -"variable-length string stored in a *fixed number of bytes*, given by the " -"count. The first byte stored is the length of the string, or 255, whichever " -"is smaller. The bytes of the string follow. If the byte string passed in " -"to :func:`pack` is too long (longer than the count minus 1), only the " -"leading ``count-1`` bytes of the string are stored. If the byte string is " -"shorter than ``count-1``, it is padded with null bytes so that exactly count " -"bytes in all are used. Note that for :func:`unpack`, the ``'p'`` format " -"character consumes ``count`` bytes, but that the :class:`!bytes` object " -"returned can never contain more than 255 bytes. When packing, arguments of " -"types :class:`bytes` and :class:`bytearray` are accepted." -msgstr "" - -#: ../../library/struct.rst:358 -msgid "" -"For the ``'s'`` format character, the count is interpreted as the length of " -"the byte string, 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 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 byte string is truncated or padded with null bytes as " -"appropriate to make it fit. For unpacking, the resulting :class:`!bytes` " -"object always has exactly the specified number of bytes. As a special case, " -"``'0s'`` means a single, empty byte string (while ``'0c'`` means 0 " -"characters). When packing, arguments of types :class:`bytes` " -"and :class:`bytearray` are accepted." -msgstr "" - -#: ../../library/struct.rst:374 -msgid "" -"For the ``'F'`` and ``'D'`` format characters, the packed representation " -"uses the IEEE 754 binary32 and binary64 format for components of the complex " -"number, regardless of the floating-point format used by the platform. Note " -"that complex types (``F`` and ``D``) are available unconditionally, despite " -"complex types being an optional feature in C. As specified in the C11 " -"standard, each complex type is represented by a two-element C array " -"containing, respectively, the real and imaginary parts." +msgid "The ``'p'`` format character encodes a \"Pascal string\", meaning a short variable-length string stored in a *fixed number of bytes*, given by the count. The first byte stored is the length of the string, or 255, whichever is smaller. The bytes of the string follow. If the byte string passed in to :func:`pack` is too long (longer than the count minus 1), only the leading ``count-1`` bytes of the string are stored. If the byte string is shorter than ``count-1``, it is padded with null bytes so that exactly count bytes in all are used. Note that for :func:`unpack`, the ``'p'`` format character consumes ``count`` bytes, but that the :class:`!bytes` object returned can never contain more than 255 bytes. When packing, arguments of types :class:`bytes` and :class:`bytearray` are accepted." msgstr "" -#: ../../library/struct.rst:383 -msgid "" -"A format character may be preceded by an integral repeat count. For " -"example, the format string ``'4h'`` means exactly the same as ``'hhhh'``." +msgid "For the ``'s'`` format character, the count is interpreted as the length of the byte string, 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 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 byte string is truncated or padded with null bytes as appropriate to make it fit. For unpacking, the resulting :class:`!bytes` object always has exactly the specified number of bytes. As a special case, ``'0s'`` means a single, empty byte string (while ``'0c'`` means 0 characters). When packing, arguments of types :class:`bytes` and :class:`bytearray` are accepted." msgstr "" -#: ../../library/struct.rst:386 -msgid "" -"Whitespace characters between formats are ignored; a count and its format " -"must not contain whitespace though." +msgid "For the ``'F'`` and ``'D'`` format characters, the packed representation uses the IEEE 754 binary32 and binary64 format for components of the complex number, regardless of the floating-point format used by the platform. Note that complex types (``F`` and ``D``) are available unconditionally, despite complex types being an optional feature in C. As specified in the C11 standard, each complex type is represented by a two-element C array containing, respectively, the real and imaginary parts." msgstr "" -#: ../../library/struct.rst:389 -msgid "" -"When packing a value ``x`` using one of the integer formats (``'b'``, " -"``'B'``, ``'h'``, ``'H'``, ``'i'``, ``'I'``, ``'l'``, ``'L'``, ``'q'``, " -"``'Q'``), if ``x`` is outside the valid range for that format " -"then :exc:`struct.error` is raised." +msgid "A format character may be preceded by an integral repeat count. For example, the format string ``'4h'`` means exactly the same as ``'hhhh'``." msgstr "" -#: ../../library/struct.rst:394 -msgid "" -"Previously, some of the integer formats wrapped out-of-range values and " -"raised :exc:`DeprecationWarning` instead of :exc:`struct.error`." +msgid "Whitespace characters between formats are ignored; a count and its format must not contain whitespace though." msgstr "" -#: ../../library/struct.rst:400 -msgid "" -"For the ``'?'`` format character, the return value is either :const:`True` " -"or :const:`False`. When packing, the truth value of the argument object is " -"used. Either 0 or 1 in the native or standard bool representation will be " -"packed, and any non-zero value will be ``True`` when unpacking." +msgid "When packing a value ``x`` using one of the integer formats (``'b'``, ``'B'``, ``'h'``, ``'H'``, ``'i'``, ``'I'``, ``'l'``, ``'L'``, ``'q'``, ``'Q'``), if ``x`` is outside the valid range for that format then :exc:`struct.error` is raised." +msgstr "" + +msgid "Previously, some of the integer formats wrapped out-of-range values and raised :exc:`DeprecationWarning` instead of :exc:`struct.error`." +msgstr "" + +msgid "For the ``'?'`` format character, the return value is either :const:`True` or :const:`False`. When packing, the truth value of the argument object is used. Either 0 or 1 in the native or standard bool representation will be packed, and any non-zero value will be ``True`` when unpacking." msgstr "" -#: ../../library/struct.rst:410 msgid "Examples" msgstr "" -#: ../../library/struct.rst:413 -msgid "" -"Native byte order examples (designated by the ``'@'`` format prefix or lack " -"of any prefix character) may not match what the reader's machine produces as " -"that depends on the platform and compiler." +msgid "Native byte order examples (designated by the ``'@'`` format prefix or lack of any prefix character) may not match what the reader's machine produces as that depends on the platform and compiler." msgstr "" -#: ../../library/struct.rst:418 -msgid "" -"Pack and unpack integers of three different sizes, using big endian " -"ordering::" +msgid "Pack and unpack integers of three different sizes, using big endian ordering::" msgstr "" -#: ../../library/struct.rst:421 msgid "" ">>> from struct import *\n" ">>> pack(\">bhl\", 1, 2, 3)\n" @@ -816,11 +476,9 @@ msgid "" "7" msgstr "" -#: ../../library/struct.rst:429 msgid "Attempt to pack an integer which is too large for the defined field::" msgstr "" -#: ../../library/struct.rst:431 msgid "" ">>> pack(\">h\", 99999)\n" "Traceback (most recent call last):\n" @@ -828,12 +486,9 @@ msgid "" "struct.error: 'h' format requires -32768 <= number <= 32767" msgstr "" -#: ../../library/struct.rst:436 -msgid "" -"Demonstrate the difference between ``'s'`` and ``'c'`` format characters::" +msgid "Demonstrate the difference between ``'s'`` and ``'c'`` format characters::" msgstr "" -#: ../../library/struct.rst:439 msgid "" ">>> pack(\"@ccc\", b'1', b'2', b'3')\n" "b'123'\n" @@ -841,13 +496,9 @@ msgid "" "b'123'" msgstr "" -#: ../../library/struct.rst:444 -msgid "" -"Unpacked fields can be named by assigning them to variables or by wrapping " -"the result in a named tuple::" +msgid "Unpacked fields can be named by assigning them to variables or by wrapping the result in a named tuple::" msgstr "" -#: ../../library/struct.rst:447 msgid "" ">>> record = b'raymond \\x32\\x12\\x08\\x01\\x08'\n" ">>> name, serialnum, school, gradelevel = unpack('<10sHHb', record)\n" @@ -858,17 +509,9 @@ msgid "" "Student(name=b'raymond ', serialnum=4658, school=264, gradelevel=8)" msgstr "" -#: ../../library/struct.rst:455 -msgid "" -"The ordering of format characters may have an impact on size in native mode " -"since padding is implicit. In standard mode, the user is responsible for " -"inserting any desired padding. Note in the first ``pack`` call below that " -"three NUL bytes were added after the packed ``'#'`` to align the following " -"integer on a four-byte boundary. In this example, the output was produced on " -"a little endian machine::" +msgid "The ordering of format characters may have an impact on size in native mode since padding is implicit. In standard mode, the user is responsible for inserting any desired padding. Note in the first ``pack`` call below that three NUL bytes were added after the packed ``'#'`` to align the following integer on a four-byte boundary. In this example, the output was produced on a little endian machine::" msgstr "" -#: ../../library/struct.rst:463 msgid "" ">>> pack('@ci', b'#', 0x12131415)\n" "b'#\\x00\\x00\\x00\\x15\\x14\\x13\\x12'\n" @@ -880,77 +523,47 @@ msgid "" "5" msgstr "" -#: ../../library/struct.rst:472 -msgid "" -"The following format ``'llh0l'`` results in two pad bytes being added at the " -"end, assuming the platform's longs are aligned on 4-byte boundaries::" +msgid "The following format ``'llh0l'`` results in two pad bytes being added at the end, assuming the platform's longs are aligned on 4-byte boundaries::" msgstr "" -#: ../../library/struct.rst:475 msgid "" ">>> pack('@llh0l', 1, 2, 3)\n" "b'\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x02\\x00\\x03\\x00\\x00'" msgstr "" -#: ../../library/struct.rst:481 msgid "Module :mod:`array`" msgstr "" -#: ../../library/struct.rst:482 msgid "Packed binary storage of homogeneous data." msgstr "" -#: ../../library/struct.rst:484 msgid "Module :mod:`json`" msgstr "" -#: ../../library/struct.rst:485 msgid "JSON encoder and decoder." msgstr "" -#: ../../library/struct.rst:487 msgid "Module :mod:`pickle`" msgstr "" -#: ../../library/struct.rst:488 msgid "Python object serialization." msgstr "" -#: ../../library/struct.rst:494 msgid "Applications" msgstr "" -#: ../../library/struct.rst:496 -msgid "" -"Two main applications for the :mod:`!struct` module exist, data interchange " -"between Python and C code within an application or another application " -"compiled using the same compiler (:ref:`native formats`), and data interchange between applications using agreed upon data " -"layout (:ref:`standard formats`). Generally " -"speaking, the format strings constructed for these two domains are distinct." +msgid "Two main applications for the :mod:`!struct` module exist, data interchange between Python and C code within an application or another application compiled using the same compiler (:ref:`native formats`), and data interchange between applications using agreed upon data layout (:ref:`standard formats`). Generally speaking, the format strings constructed for these two domains are distinct." msgstr "" -#: ../../library/struct.rst:507 msgid "Native Formats" msgstr "" -#: ../../library/struct.rst:509 -msgid "" -"When constructing format strings which mimic native layouts, the compiler " -"and machine architecture determine byte ordering and padding. In such cases, " -"the ``@`` format character should be used to specify native byte ordering " -"and data sizes. Internal pad bytes are normally inserted automatically. It " -"is possible that a zero-repeat format code will be needed at the end of a " -"format string to round up to the correct byte boundary for proper alignment " -"of consecutive chunks of data." +msgid "When constructing format strings which mimic native layouts, the compiler and machine architecture determine byte ordering and padding. In such cases, the ``@`` format character should be used to specify native byte ordering and data sizes. Internal pad bytes are normally inserted automatically. It is possible that a zero-repeat format code will be needed at the end of a format string to round up to the correct byte boundary for proper alignment of consecutive chunks of data." msgstr "" -#: ../../library/struct.rst:517 -msgid "" -"Consider these two simple examples (on a 64-bit, little-endian machine)::" +msgid "Consider these two simple examples (on a 64-bit, little-endian machine)::" msgstr "" -#: ../../library/struct.rst:520 msgid "" ">>> calcsize('@lhl')\n" "24\n" @@ -958,50 +571,26 @@ msgid "" "18" msgstr "" -#: ../../library/struct.rst:525 -msgid "" -"Data is not padded to an 8-byte boundary at the end of the second format " -"string without the use of extra padding. A zero-repeat format code solves " -"that problem::" +msgid "Data is not padded to an 8-byte boundary at the end of the second format string without the use of extra padding. A zero-repeat format code solves that problem::" msgstr "" -#: ../../library/struct.rst:529 msgid "" ">>> calcsize('@llh0l')\n" "24" msgstr "" -#: ../../library/struct.rst:532 -msgid "" -"The ``'x'`` format code can be used to specify the repeat, but for native " -"formats it is better to use a zero-repeat format like ``'0l'``." +msgid "The ``'x'`` format code can be used to specify the repeat, but for native formats it is better to use a zero-repeat format like ``'0l'``." msgstr "" -#: ../../library/struct.rst:535 -msgid "" -"By default, native byte ordering and alignment is used, but it is better to " -"be explicit and use the ``'@'`` prefix character." +msgid "By default, native byte ordering and alignment is used, but it is better to be explicit and use the ``'@'`` prefix character." msgstr "" -#: ../../library/struct.rst:542 msgid "Standard Formats" msgstr "" -#: ../../library/struct.rst:544 -msgid "" -"When exchanging data beyond your process such as networking or storage, be " -"precise. Specify the exact byte order, size, and alignment. Do not assume " -"they match the native order of a particular machine. For example, network " -"byte order is big-endian, while many popular CPUs are little-endian. By " -"defining this explicitly, the user need not care about the specifics of the " -"platform their code is running on. The first character should typically be " -"``<`` or ``>`` (or ``!``). Padding is the responsibility of the " -"programmer. The zero-repeat format character won't work. Instead, the user " -"must explicitly add ``'x'`` pad bytes where needed. Revisiting the examples " -"from the previous section, we have::" -msgstr "" - -#: ../../library/struct.rst:556 +msgid "When exchanging data beyond your process such as networking or storage, be precise. Specify the exact byte order, size, and alignment. Do not assume they match the native order of a particular machine. For example, network byte order is big-endian, while many popular CPUs are little-endian. By defining this explicitly, the user need not care about the specifics of the platform their code is running on. The first character should typically be ``<`` or ``>`` (or ``!``). Padding is the responsibility of the programmer. The zero-repeat format character won't work. Instead, the user must explicitly add ``'x'`` pad bytes where needed. Revisiting the examples from the previous section, we have::" +msgstr "" + msgid "" ">>> calcsize('>> calcsize(' (greater)" msgstr "" -#: ../../library/struct.rst:138 msgid "! (exclamation)" msgstr "" -#: ../../library/struct.rst:295 ../../library/struct.rst:398 msgid "? (question mark)" msgstr "" diff --git a/library/subprocess.po b/library/subprocess.po index 4c69ee1e..c1847636 100644 --- a/library/subprocess.po +++ b/library/subprocess.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:14+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,142 +23,65 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/subprocess.rst:2 msgid ":mod:`!subprocess` --- Subprocess management" msgstr "" -#: ../../library/subprocess.rst:10 msgid "**Source code:** :source:`Lib/subprocess.py`" msgstr "" -#: ../../library/subprocess.rst:14 -msgid "" -"The :mod:`!subprocess` module allows you to spawn new processes, connect to " -"their input/output/error pipes, and obtain their return codes. This module " -"intends to replace several older modules and functions::" +msgid "The :mod:`!subprocess` module allows you to spawn new processes, connect to their input/output/error pipes, and obtain their return codes. This module intends to replace several older modules and functions::" msgstr "" -#: ../../library/subprocess.rst:18 msgid "" "os.system\n" "os.spawn*" msgstr "" -#: ../../library/subprocess.rst:21 -msgid "" -"Information about how the :mod:`!subprocess` module can be used to replace " -"these modules and functions can be found in the following sections." +msgid "Information about how the :mod:`!subprocess` module can be used to replace these modules and functions can be found in the following sections." msgstr "" -#: ../../library/subprocess.rst:26 msgid ":pep:`324` -- PEP proposing the subprocess module" msgstr "" -#: ../../library/subprocess.rst:598 ../../library/subprocess.rst:605 -#: ../../library/subprocess.rst:615 ../../library/subprocess.rst:624 -#: ../../library/subprocess.rst:639 ../../library/subprocess.rst:645 -#: ../../library/subprocess.rst:1512 ../../library/subprocess.rst:1534 -#: ../../includes/wasm-mobile-notavail.rst:3 msgid "Availability" msgstr "" -#: ../../includes/wasm-mobile-notavail.rst:5 -msgid "" -"This module is not supported on :ref:`mobile platforms ` or :ref:`WebAssembly platforms `." +msgid "This module is not supported on :ref:`mobile platforms ` or :ref:`WebAssembly platforms `." msgstr "" -#: ../../library/subprocess.rst:31 msgid "Using the :mod:`!subprocess` Module" msgstr "" -#: ../../library/subprocess.rst:33 -msgid "" -"The recommended approach to invoking subprocesses is to use the :func:`run` " -"function for all use cases it can handle. For more advanced use cases, the " -"underlying :class:`Popen` interface can be used directly." +msgid "The recommended approach to invoking subprocesses is to use the :func:`run` function for all use cases it can handle. For more advanced use cases, the underlying :class:`Popen` interface can be used directly." msgstr "" -#: ../../library/subprocess.rst:43 -msgid "" -"Run the command described by *args*. Wait for command to complete, then " -"return a :class:`CompletedProcess` instance." +msgid "Run the command described by *args*. Wait for command to complete, then return a :class:`CompletedProcess` instance." msgstr "" -#: ../../library/subprocess.rst:46 -msgid "" -"The arguments shown above are merely the most common ones, described below " -"in :ref:`frequently-used-arguments` (hence the use of keyword-only notation " -"in the abbreviated signature). The full function signature is largely the " -"same as that of the :class:`Popen` constructor - most of the arguments to " -"this function are passed through to that interface. (*timeout*, *input*, " -"*check*, and *capture_output* are not.)" +msgid "The arguments shown above are merely the most common ones, described below in :ref:`frequently-used-arguments` (hence the use of keyword-only notation in the abbreviated signature). The full function signature is largely the same as that of the :class:`Popen` constructor - most of the arguments to this function are passed through to that interface. (*timeout*, *input*, *check*, and *capture_output* are not.)" msgstr "" -#: ../../library/subprocess.rst:53 -msgid "" -"If *capture_output* is true, stdout and stderr will be captured. When used, " -"the internal :class:`Popen` object is automatically created with *stdout* " -"and *stderr* both set to :data:`~subprocess.PIPE`. The *stdout* and *stderr* " -"arguments may not be supplied at the same time as *capture_output*. If you " -"wish to capture and combine both streams into one, set *stdout* " -"to :data:`~subprocess.PIPE` and *stderr* to :data:`~subprocess.STDOUT`, " -"instead of using *capture_output*." +msgid "If *capture_output* is true, stdout and stderr will be captured. When used, the internal :class:`Popen` object is automatically created with *stdout* and *stderr* both set to :data:`~subprocess.PIPE`. The *stdout* and *stderr* arguments may not be supplied at the same time as *capture_output*. If you wish to capture and combine both streams into one, set *stdout* to :data:`~subprocess.PIPE` and *stderr* to :data:`~subprocess.STDOUT`, instead of using *capture_output*." msgstr "" -#: ../../library/subprocess.rst:62 -msgid "" -"A *timeout* may be specified in seconds, it is internally passed on " -"to :meth:`Popen.communicate`. If the timeout expires, the child process will " -"be killed and waited for. The :exc:`TimeoutExpired` exception will be re-" -"raised after the child process has terminated. The initial process creation " -"itself cannot be interrupted on many platform APIs so you are not guaranteed " -"to see a timeout exception until at least after however long process " -"creation takes." +msgid "A *timeout* may be specified in seconds, it is internally passed on to :meth:`Popen.communicate`. If the timeout expires, the child process will be killed and waited for. The :exc:`TimeoutExpired` exception will be re-raised after the child process has terminated. The initial process creation itself cannot be interrupted on many platform APIs so you are not guaranteed to see a timeout exception until at least after however long process creation takes." msgstr "" -#: ../../library/subprocess.rst:70 -msgid "" -"The *input* argument is passed to :meth:`Popen.communicate` and thus to the " -"subprocess's stdin. If used it must be a byte sequence, or a string if " -"*encoding* or *errors* is specified or *text* is true. When used, the " -"internal :class:`Popen` object is automatically created with *stdin* set " -"to :data:`~subprocess.PIPE`, and the *stdin* argument may not be used as " -"well." +msgid "The *input* argument is passed to :meth:`Popen.communicate` and thus to the subprocess's stdin. If used it must be a byte sequence, or a string if *encoding* or *errors* is specified or *text* is true. When used, the internal :class:`Popen` object is automatically created with *stdin* set to :data:`~subprocess.PIPE`, and the *stdin* argument may not be used as well." msgstr "" -#: ../../library/subprocess.rst:77 -msgid "" -"If *check* is true, and the process exits with a non-zero exit code, " -"a :exc:`CalledProcessError` exception will be raised. Attributes of that " -"exception hold the arguments, the exit code, and stdout and stderr if they " -"were captured." +msgid "If *check* is true, and the process exits with a non-zero exit code, a :exc:`CalledProcessError` exception will be raised. Attributes of that exception hold the arguments, the exit code, and stdout and stderr if they were captured." msgstr "" -#: ../../library/subprocess.rst:82 -msgid "" -"If *encoding* or *errors* are specified, or *text* is true, file objects for " -"stdin, stdout and stderr are opened in text mode using the specified " -"*encoding* and *errors* or the :class:`io.TextIOWrapper` default. The " -"*universal_newlines* argument is equivalent to *text* and is provided for " -"backwards compatibility. By default, file objects are opened in binary mode." +msgid "If *encoding* or *errors* are specified, or *text* is true, file objects for stdin, stdout and stderr are opened in text mode using the specified *encoding* and *errors* or the :class:`io.TextIOWrapper` default. The *universal_newlines* argument is equivalent to *text* and is provided for backwards compatibility. By default, file objects are opened in binary mode." msgstr "" -#: ../../library/subprocess.rst:88 -msgid "" -"If *env* is not ``None``, it must be a mapping that defines the environment " -"variables for the new process; these are used instead of the default " -"behavior of inheriting the current process' environment. It is passed " -"directly to :class:`Popen`. This mapping can be str to str on any platform " -"or bytes to bytes on POSIX platforms much like :data:`os.environ` " -"or :data:`os.environb`." +msgid "If *env* is not ``None``, it must be a mapping that defines the environment variables for the new process; these are used instead of the default behavior of inheriting the current process' environment. It is passed directly to :class:`Popen`. This mapping can be str to str on any platform or bytes to bytes on POSIX platforms much like :data:`os.environ` or :data:`os.environb`." msgstr "" -#: ../../library/subprocess.rst:95 msgid "Examples::" msgstr "" -#: ../../library/subprocess.rst:97 msgid "" ">>> subprocess.run([\"ls\", \"-l\"]) # doesn't capture output\n" "CompletedProcess(args=['ls', '-l'], returncode=0)\n" @@ -166,974 +89,457 @@ msgid "" ">>> subprocess.run(\"exit 1\", shell=True, check=True)\n" "Traceback (most recent call last):\n" " ...\n" -"subprocess.CalledProcessError: Command 'exit 1' returned non-zero exit " -"status 1\n" +"subprocess.CalledProcessError: Command 'exit 1' returned non-zero exit status 1\n" "\n" ">>> subprocess.run([\"ls\", \"-l\", \"/dev/null\"], capture_output=True)\n" "CompletedProcess(args=['ls', '-l', '/dev/null'], returncode=0,\n" "stdout=b'crw-rw-rw- 1 root root 1, 3 Jan 23 16:23 /dev/null\\n', stderr=b'')" msgstr "" -#: ../../library/subprocess.rst:113 msgid "Added *encoding* and *errors* parameters" msgstr "" -#: ../../library/subprocess.rst:117 -msgid "" -"Added the *text* parameter, as a more understandable alias of " -"*universal_newlines*. Added the *capture_output* parameter." +msgid "Added the *text* parameter, as a more understandable alias of *universal_newlines*. Added the *capture_output* parameter." msgstr "" -#: ../../library/subprocess.rst:122 ../../library/subprocess.rst:506 -#: ../../library/subprocess.rst:1232 ../../library/subprocess.rst:1272 -#: ../../library/subprocess.rst:1335 -msgid "" -"Changed Windows shell search order for ``shell=True``. The current directory " -"and ``%PATH%`` are replaced with ``%COMSPEC%`` and ``%SystemRoot%" -"\\System32\\cmd.exe``. As a result, dropping a malicious program named " -"``cmd.exe`` into a current directory no longer works." +msgid "Changed Windows shell search order for ``shell=True``. The current directory and ``%PATH%`` are replaced with ``%COMSPEC%`` and ``%SystemRoot%\\System32\\cmd.exe``. As a result, dropping a malicious program named ``cmd.exe`` into a current directory no longer works." msgstr "" -#: ../../library/subprocess.rst:130 -msgid "" -"The return value from :func:`run`, representing a process that has finished." +msgid "The return value from :func:`run`, representing a process that has finished." msgstr "" -#: ../../library/subprocess.rst:134 -msgid "" -"The arguments used to launch the process. This may be a list or a string." +msgid "The arguments used to launch the process. This may be a list or a string." msgstr "" -#: ../../library/subprocess.rst:138 -msgid "" -"Exit status of the child process. Typically, an exit status of 0 indicates " -"that it ran successfully." +msgid "Exit status of the child process. Typically, an exit status of 0 indicates that it ran successfully." msgstr "" -#: ../../library/subprocess.rst:141 ../../library/subprocess.rst:958 -msgid "" -"A negative value ``-N`` indicates that the child was terminated by signal " -"``N`` (POSIX only)." +msgid "A negative value ``-N`` indicates that the child was terminated by signal ``N`` (POSIX only)." msgstr "" -#: ../../library/subprocess.rst:146 -msgid "" -"Captured stdout from the child process. A bytes sequence, or a string " -"if :func:`run` was called with an encoding, errors, or text=True. ``None`` " -"if stdout was not captured." +msgid "Captured stdout from the child process. A bytes sequence, or a string if :func:`run` was called with an encoding, errors, or text=True. ``None`` if stdout was not captured." msgstr "" -#: ../../library/subprocess.rst:150 -msgid "" -"If you ran the process with ``stderr=subprocess.STDOUT``, stdout and stderr " -"will be combined in this attribute, and :attr:`stderr` will be ``None``." +msgid "If you ran the process with ``stderr=subprocess.STDOUT``, stdout and stderr will be combined in this attribute, and :attr:`stderr` will be ``None``." msgstr "" -#: ../../library/subprocess.rst:156 -msgid "" -"Captured stderr from the child process. A bytes sequence, or a string " -"if :func:`run` was called with an encoding, errors, or text=True. ``None`` " -"if stderr was not captured." +msgid "Captured stderr from the child process. A bytes sequence, or a string if :func:`run` was called with an encoding, errors, or text=True. ``None`` if stderr was not captured." msgstr "" -#: ../../library/subprocess.rst:162 msgid "If :attr:`returncode` is non-zero, raise a :exc:`CalledProcessError`." msgstr "" -#: ../../library/subprocess.rst:168 -msgid "" -"Special value that can be used as the *stdin*, *stdout* or *stderr* argument " -"to :class:`Popen` and indicates that the special file :data:`os.devnull` " -"will be used." +msgid "Special value that can be used as the *stdin*, *stdout* or *stderr* argument to :class:`Popen` and indicates that the special file :data:`os.devnull` will be used." msgstr "" -#: ../../library/subprocess.rst:177 -msgid "" -"Special value that can be used as the *stdin*, *stdout* or *stderr* argument " -"to :class:`Popen` and indicates that a pipe to the standard stream should be " -"opened. Most useful with :meth:`Popen.communicate`." +msgid "Special value that can be used as the *stdin*, *stdout* or *stderr* argument to :class:`Popen` and indicates that a pipe to the standard stream should be opened. Most useful with :meth:`Popen.communicate`." msgstr "" -#: ../../library/subprocess.rst:184 -msgid "" -"Special value that can be used as the *stderr* argument to :class:`Popen` " -"and indicates that standard error should go into the same handle as standard " -"output." +msgid "Special value that can be used as the *stderr* argument to :class:`Popen` and indicates that standard error should go into the same handle as standard output." msgstr "" -#: ../../library/subprocess.rst:191 msgid "Base class for all other exceptions from this module." msgstr "" -#: ../../library/subprocess.rst:198 -msgid "" -"Subclass of :exc:`SubprocessError`, raised when a timeout expires while " -"waiting for a child process." +msgid "Subclass of :exc:`SubprocessError`, raised when a timeout expires while waiting for a child process." msgstr "" -#: ../../library/subprocess.rst:203 ../../library/subprocess.rst:247 msgid "Command that was used to spawn the child process." msgstr "" -#: ../../library/subprocess.rst:207 msgid "Timeout in seconds." msgstr "" -#: ../../library/subprocess.rst:211 -msgid "" -"Output of the child process if it was captured by :func:`run` " -"or :func:`check_output`. Otherwise, ``None``. This is " -"always :class:`bytes` when any output was captured regardless of the " -"``text=True`` setting. It may remain ``None`` instead of ``b''`` when no " -"output was observed." +msgid "Output of the child process if it was captured by :func:`run` or :func:`check_output`. Otherwise, ``None``. This is always :class:`bytes` when any output was captured regardless of the ``text=True`` setting. It may remain ``None`` instead of ``b''`` when no output was observed." msgstr "" -#: ../../library/subprocess.rst:219 ../../library/subprocess.rst:256 msgid "Alias for output, for symmetry with :attr:`stderr`." msgstr "" -#: ../../library/subprocess.rst:223 -msgid "" -"Stderr output of the child process if it was captured by :func:`run`. " -"Otherwise, ``None``. This is always :class:`bytes` when stderr output was " -"captured regardless of the ``text=True`` setting. It may remain ``None`` " -"instead of ``b''`` when no stderr output was observed." +msgid "Stderr output of the child process if it was captured by :func:`run`. Otherwise, ``None``. This is always :class:`bytes` when stderr output was captured regardless of the ``text=True`` setting. It may remain ``None`` instead of ``b''`` when no stderr output was observed." msgstr "" -#: ../../library/subprocess.rst:230 ../../library/subprocess.rst:263 msgid "*stdout* and *stderr* attributes added" msgstr "" -#: ../../library/subprocess.rst:235 -msgid "" -"Subclass of :exc:`SubprocessError`, raised when a process run " -"by :func:`check_call`, :func:`check_output`, or :func:`run` (with " -"``check=True``) returns a non-zero exit status." +msgid "Subclass of :exc:`SubprocessError`, raised when a process run by :func:`check_call`, :func:`check_output`, or :func:`run` (with ``check=True``) returns a non-zero exit status." msgstr "" -#: ../../library/subprocess.rst:242 -msgid "" -"Exit status of the child process. If the process exited due to a signal, " -"this will be the negative signal number." +msgid "Exit status of the child process. If the process exited due to a signal, this will be the negative signal number." msgstr "" -#: ../../library/subprocess.rst:251 -msgid "" -"Output of the child process if it was captured by :func:`run` " -"or :func:`check_output`. Otherwise, ``None``." +msgid "Output of the child process if it was captured by :func:`run` or :func:`check_output`. Otherwise, ``None``." msgstr "" -#: ../../library/subprocess.rst:260 -msgid "" -"Stderr output of the child process if it was captured by :func:`run`. " -"Otherwise, ``None``." +msgid "Stderr output of the child process if it was captured by :func:`run`. Otherwise, ``None``." msgstr "" -#: ../../library/subprocess.rst:270 msgid "Frequently Used Arguments" msgstr "" -#: ../../library/subprocess.rst:272 -msgid "" -"To support a wide variety of use cases, the :class:`Popen` constructor (and " -"the convenience functions) accept a large number of optional arguments. For " -"most typical use cases, many of these arguments can be safely left at their " -"default values. The arguments that are most commonly needed are:" +msgid "To support a wide variety of use cases, the :class:`Popen` constructor (and the convenience functions) accept a large number of optional arguments. For most typical use cases, many of these arguments can be safely left at their default values. The arguments that are most commonly needed are:" msgstr "" -#: ../../library/subprocess.rst:277 -msgid "" -"*args* is required for all calls and should be a string, or a sequence of " -"program arguments. Providing a sequence of arguments is generally preferred, " -"as it allows the module to take care of any required escaping and quoting of " -"arguments (e.g. to permit spaces in file names). If passing a single string, " -"either *shell* must be :const:`True` (see below) or else the string must " -"simply name the program to be executed without specifying any arguments." +msgid "*args* is required for all calls and should be a string, or a sequence of program arguments. Providing a sequence of arguments is generally preferred, as it allows the module to take care of any required escaping and quoting of arguments (e.g. to permit spaces in file names). If passing a single string, either *shell* must be :const:`True` (see below) or else the string must simply name the program to be executed without specifying any arguments." msgstr "" -#: ../../library/subprocess.rst:285 -msgid "" -"*stdin*, *stdout* and *stderr* specify the executed program's standard " -"input, standard output and standard error file handles, respectively. Valid " -"values are ``None``, :data:`PIPE`, :data:`DEVNULL`, an existing file " -"descriptor (a positive integer), and an existing :term:`file object` with a " -"valid file descriptor. With the default settings of ``None``, no " -"redirection will occur. :data:`PIPE` indicates that a new pipe to the child " -"should be created. :data:`DEVNULL` indicates that the special " -"file :data:`os.devnull` will be used. Additionally, *stderr* can " -"be :data:`STDOUT`, which indicates that the stderr data from the child " -"process should be captured into the same file handle as for *stdout*." -msgstr "" - -#: ../../library/subprocess.rst:299 -msgid "" -"If *encoding* or *errors* are specified, or *text* (also known as " -"*universal_newlines*) is true, the file objects *stdin*, *stdout* and " -"*stderr* will be opened in text mode using the *encoding* and *errors* " -"specified in the call or the defaults for :class:`io.TextIOWrapper`." +msgid "*stdin*, *stdout* and *stderr* specify the executed program's standard input, standard output and standard error file handles, respectively. Valid values are ``None``, :data:`PIPE`, :data:`DEVNULL`, an existing file descriptor (a positive integer), and an existing :term:`file object` with a valid file descriptor. With the default settings of ``None``, no redirection will occur. :data:`PIPE` indicates that a new pipe to the child should be created. :data:`DEVNULL` indicates that the special file :data:`os.devnull` will be used. Additionally, *stderr* can be :data:`STDOUT`, which indicates that the stderr data from the child process should be captured into the same file handle as for *stdout*." msgstr "" -#: ../../library/subprocess.rst:305 -msgid "" -"For *stdin*, line ending characters ``'\\n'`` in the input will be converted " -"to the default line separator :data:`os.linesep`. For *stdout* and *stderr*, " -"all line endings in the output will be converted to ``'\\n'``. For more " -"information see the documentation of the :class:`io.TextIOWrapper` class " -"when the *newline* argument to its constructor is ``None``." +msgid "If *encoding* or *errors* are specified, or *text* (also known as *universal_newlines*) is true, the file objects *stdin*, *stdout* and *stderr* will be opened in text mode using the *encoding* and *errors* specified in the call or the defaults for :class:`io.TextIOWrapper`." msgstr "" -#: ../../library/subprocess.rst:311 -msgid "" -"If text mode is not used, *stdin*, *stdout* and *stderr* will be opened as " -"binary streams. No encoding or line ending conversion is performed." +msgid "For *stdin*, line ending characters ``'\\n'`` in the input will be converted to the default line separator :data:`os.linesep`. For *stdout* and *stderr*, all line endings in the output will be converted to ``'\\n'``. For more information see the documentation of the :class:`io.TextIOWrapper` class when the *newline* argument to its constructor is ``None``." +msgstr "" + +msgid "If text mode is not used, *stdin*, *stdout* and *stderr* will be opened as binary streams. No encoding or line ending conversion is performed." msgstr "" -#: ../../library/subprocess.rst:314 ../../library/subprocess.rst:1521 -#: ../../library/subprocess.rst:1539 msgid "Added the *encoding* and *errors* parameters." msgstr "" -#: ../../library/subprocess.rst:317 msgid "Added the *text* parameter as an alias for *universal_newlines*." msgstr "" -#: ../../library/subprocess.rst:322 -msgid "" -"The newlines attribute of the file " -"objects :attr:`Popen.stdin`, :attr:`Popen.stdout` and :attr:`Popen.stderr` " -"are not updated by the :meth:`Popen.communicate` method." +msgid "The newlines attribute of the file objects :attr:`Popen.stdin`, :attr:`Popen.stdout` and :attr:`Popen.stderr` are not updated by the :meth:`Popen.communicate` method." msgstr "" -#: ../../library/subprocess.rst:326 -msgid "" -"If *shell* is ``True``, the specified command will be executed through the " -"shell. This can be useful if you are using Python primarily for the " -"enhanced control flow it offers over most system shells and still want " -"convenient access to other shell features such as shell pipes, filename " -"wildcards, environment variable expansion, and expansion of ``~`` to a " -"user's home directory. However, note that Python itself offers " -"implementations of many shell-like features (in " -"particular, :mod:`glob`, :mod:`fnmatch`, :func:`os.walk`, :func:`os.path.expandvars`, :func:`os.path.expanduser`, " -"and :mod:`shutil`)." -msgstr "" - -#: ../../library/subprocess.rst:336 -msgid "" -"When *universal_newlines* is ``True``, the class uses the " -"encoding :func:`locale.getpreferredencoding(False) " -"` instead of " -"``locale.getpreferredencoding()``. See the :class:`io.TextIOWrapper` class " -"for more information on this change." +msgid "If *shell* is ``True``, the specified command will be executed through the shell. This can be useful if you are using Python primarily for the enhanced control flow it offers over most system shells and still want convenient access to other shell features such as shell pipes, filename wildcards, environment variable expansion, and expansion of ``~`` to a user's home directory. However, note that Python itself offers implementations of many shell-like features (in particular, :mod:`glob`, :mod:`fnmatch`, :func:`os.walk`, :func:`os.path.expandvars`, :func:`os.path.expanduser`, and :mod:`shutil`)." msgstr "" -#: ../../library/subprocess.rst:344 ../../library/subprocess.rst:465 -msgid "" -"Read the `Security Considerations`_ section before using ``shell=True``." +msgid "When *universal_newlines* is ``True``, the class uses the encoding :func:`locale.getpreferredencoding(False) ` instead of ``locale.getpreferredencoding()``. See the :class:`io.TextIOWrapper` class for more information on this change." msgstr "" -#: ../../library/subprocess.rst:346 -msgid "" -"These options, along with all of the other options, are described in more " -"detail in the :class:`Popen` constructor documentation." +msgid "Read the `Security Considerations`_ section before using ``shell=True``." +msgstr "" + +msgid "These options, along with all of the other options, are described in more detail in the :class:`Popen` constructor documentation." msgstr "" -#: ../../library/subprocess.rst:351 msgid "Popen Constructor" msgstr "" -#: ../../library/subprocess.rst:353 -msgid "" -"The underlying process creation and management in this module is handled by " -"the :class:`Popen` class. It offers a lot of flexibility so that developers " -"are able to handle the less common cases not covered by the convenience " -"functions." +msgid "The underlying process creation and management in this module is handled by the :class:`Popen` class. It offers a lot of flexibility so that developers are able to handle the less common cases not covered by the convenience functions." msgstr "" -#: ../../library/subprocess.rst:368 -msgid "" -"Execute a child program in a new process. On POSIX, the class " -"uses :meth:`os.execvpe`-like behavior to execute the child program. On " -"Windows, the class uses the Windows ``CreateProcess()`` function. The " -"arguments to :class:`Popen` are as follows." +msgid "Execute a child program in a new process. On POSIX, the class uses :meth:`os.execvpe`-like behavior to execute the child program. On Windows, the class uses the Windows ``CreateProcess()`` function. The arguments to :class:`Popen` are as follows." msgstr "" -#: ../../library/subprocess.rst:373 -msgid "" -"*args* should be a sequence of program arguments or else a single string " -"or :term:`path-like object`. By default, the program to execute is the first " -"item in *args* if *args* is a sequence. If *args* is a string, the " -"interpretation is platform-dependent and described below. See the *shell* " -"and *executable* arguments for additional differences from the default " -"behavior. Unless otherwise stated, it is recommended to pass *args* as a " -"sequence." +msgid "*args* should be a sequence of program arguments or else a single string or :term:`path-like object`. By default, the program to execute is the first item in *args* if *args* is a sequence. If *args* is a string, the interpretation is platform-dependent and described below. See the *shell* and *executable* arguments for additional differences from the default behavior. Unless otherwise stated, it is recommended to pass *args* as a sequence." msgstr "" -#: ../../library/subprocess.rst:383 -msgid "" -"For maximum reliability, use a fully qualified path for the executable. To " -"search for an unqualified name on :envvar:`PATH`, use :meth:`shutil.which`. " -"On all platforms, passing :data:`sys.executable` is the recommended way to " -"launch the current Python interpreter again, and use the ``-m`` command-line " -"format to launch an installed module." +msgid "For maximum reliability, use a fully qualified path for the executable. To search for an unqualified name on :envvar:`PATH`, use :meth:`shutil.which`. On all platforms, passing :data:`sys.executable` is the recommended way to launch the current Python interpreter again, and use the ``-m`` command-line format to launch an installed module." msgstr "" -#: ../../library/subprocess.rst:389 -msgid "" -"Resolving the path of *executable* (or the first item of *args*) is platform " -"dependent. For POSIX, see :meth:`os.execvpe`, and note that when resolving " -"or searching for the executable path, *cwd* overrides the current working " -"directory and *env* can override the ``PATH`` environment variable. For " -"Windows, see the documentation of the ``lpApplicationName`` and " -"``lpCommandLine`` parameters of WinAPI ``CreateProcess``, and note that when " -"resolving or searching for the executable path with ``shell=False``, *cwd* " -"does not override the current working directory and *env* cannot override " -"the ``PATH`` environment variable. Using a full path avoids all of these " -"variations." -msgstr "" - -#: ../../library/subprocess.rst:400 -msgid "" -"An example of passing some arguments to an external program as a sequence " -"is::" +msgid "Resolving the path of *executable* (or the first item of *args*) is platform dependent. For POSIX, see :meth:`os.execvpe`, and note that when resolving or searching for the executable path, *cwd* overrides the current working directory and *env* can override the ``PATH`` environment variable. For Windows, see the documentation of the ``lpApplicationName`` and ``lpCommandLine`` parameters of WinAPI ``CreateProcess``, and note that when resolving or searching for the executable path with ``shell=False``, *cwd* does not override the current working directory and *env* cannot override the ``PATH`` environment variable. Using a full path avoids all of these variations." +msgstr "" + +msgid "An example of passing some arguments to an external program as a sequence is::" msgstr "" -#: ../../library/subprocess.rst:403 msgid "Popen([\"/usr/bin/git\", \"commit\", \"-m\", \"Fixes a bug.\"])" msgstr "" -#: ../../library/subprocess.rst:405 -msgid "" -"On POSIX, if *args* is a string, the string is interpreted as the name or " -"path of the program to execute. However, this can only be done if not " -"passing arguments to the program." +msgid "On POSIX, if *args* is a string, the string is interpreted as the name or path of the program to execute. However, this can only be done if not passing arguments to the program." msgstr "" -#: ../../library/subprocess.rst:411 -msgid "" -"It may not be obvious how to break a shell command into a sequence of " -"arguments, especially in complex cases. :meth:`shlex.split` can illustrate " -"how to determine the correct tokenization for *args*::" +msgid "It may not be obvious how to break a shell command into a sequence of arguments, especially in complex cases. :meth:`shlex.split` can illustrate how to determine the correct tokenization for *args*::" msgstr "" -#: ../../library/subprocess.rst:415 msgid "" ">>> import shlex, subprocess\n" ">>> command_line = input()\n" -"/bin/vikings -input eggs.txt -output \"spam spam.txt\" -cmd \"echo " -"'$MONEY'\"\n" +"/bin/vikings -input eggs.txt -output \"spam spam.txt\" -cmd \"echo '$MONEY'\"\n" ">>> args = shlex.split(command_line)\n" ">>> print(args)\n" -"['/bin/vikings', '-input', 'eggs.txt', '-output', 'spam spam.txt', '-cmd', " -"\"echo '$MONEY'\"]\n" +"['/bin/vikings', '-input', 'eggs.txt', '-output', 'spam spam.txt', '-cmd', \"echo '$MONEY'\"]\n" ">>> p = subprocess.Popen(args) # Success!" msgstr "" -#: ../../library/subprocess.rst:423 -msgid "" -"Note in particular that options (such as *-input*) and arguments (such as " -"*eggs.txt*) that are separated by whitespace in the shell go in separate " -"list elements, while arguments that need quoting or backslash escaping when " -"used in the shell (such as filenames containing spaces or the *echo* command " -"shown above) are single list elements." +msgid "Note in particular that options (such as *-input*) and arguments (such as *eggs.txt*) that are separated by whitespace in the shell go in separate list elements, while arguments that need quoting or backslash escaping when used in the shell (such as filenames containing spaces or the *echo* command shown above) are single list elements." msgstr "" -#: ../../library/subprocess.rst:429 -msgid "" -"On Windows, if *args* is a sequence, it will be converted to a string in a " -"manner described in :ref:`converting-argument-sequence`. This is because " -"the underlying ``CreateProcess()`` operates on strings." +msgid "On Windows, if *args* is a sequence, it will be converted to a string in a manner described in :ref:`converting-argument-sequence`. This is because the underlying ``CreateProcess()`` operates on strings." msgstr "" -#: ../../library/subprocess.rst:433 -msgid "" -"*args* parameter accepts a :term:`path-like object` if *shell* is ``False`` " -"and a sequence containing path-like objects on POSIX." +msgid "*args* parameter accepts a :term:`path-like object` if *shell* is ``False`` and a sequence containing path-like objects on POSIX." msgstr "" -#: ../../library/subprocess.rst:437 -msgid "" -"*args* parameter accepts a :term:`path-like object` if *shell* is ``False`` " -"and a sequence containing bytes and path-like objects on Windows." +msgid "*args* parameter accepts a :term:`path-like object` if *shell* is ``False`` and a sequence containing bytes and path-like objects on Windows." msgstr "" -#: ../../library/subprocess.rst:442 -msgid "" -"The *shell* argument (which defaults to ``False``) specifies whether to use " -"the shell as the program to execute. If *shell* is ``True``, it is " -"recommended to pass *args* as a string rather than as a sequence." +msgid "The *shell* argument (which defaults to ``False``) specifies whether to use the shell as the program to execute. If *shell* is ``True``, it is recommended to pass *args* as a string rather than as a sequence." msgstr "" -#: ../../library/subprocess.rst:446 -msgid "" -"On POSIX with ``shell=True``, the shell defaults to :file:`/bin/sh`. If " -"*args* is a string, the string specifies the command to execute through the " -"shell. This means that the string must be formatted exactly as it would be " -"when typed at the shell prompt. This includes, for example, quoting or " -"backslash escaping filenames with spaces in them. If *args* is a sequence, " -"the first item specifies the command string, and any additional items will " -"be treated as additional arguments to the shell itself. That is to " -"say, :class:`Popen` does the equivalent of::" +msgid "On POSIX with ``shell=True``, the shell defaults to :file:`/bin/sh`. If *args* is a string, the string specifies the command to execute through the shell. This means that the string must be formatted exactly as it would be when typed at the shell prompt. This includes, for example, quoting or backslash escaping filenames with spaces in them. If *args* is a sequence, the first item specifies the command string, and any additional items will be treated as additional arguments to the shell itself. That is to say, :class:`Popen` does the equivalent of::" msgstr "" -#: ../../library/subprocess.rst:455 msgid "Popen(['/bin/sh', '-c', args[0], args[1], ...])" msgstr "" -#: ../../library/subprocess.rst:457 -msgid "" -"On Windows with ``shell=True``, the :envvar:`COMSPEC` environment variable " -"specifies the default shell. The only time you need to specify " -"``shell=True`` on Windows is when the command you wish to execute is built " -"into the shell (e.g. :command:`dir` or :command:`copy`). You do not need " -"``shell=True`` to run a batch file or console-based executable." +msgid "On Windows with ``shell=True``, the :envvar:`COMSPEC` environment variable specifies the default shell. The only time you need to specify ``shell=True`` on Windows is when the command you wish to execute is built into the shell (e.g. :command:`dir` or :command:`copy`). You do not need ``shell=True`` to run a batch file or console-based executable." msgstr "" -#: ../../library/subprocess.rst:467 -msgid "" -"*bufsize* will be supplied as the corresponding argument to the :func:`open` " -"function when creating the stdin/stdout/stderr pipe file objects:" +msgid "*bufsize* will be supplied as the corresponding argument to the :func:`open` function when creating the stdin/stdout/stderr pipe file objects:" msgstr "" -#: ../../library/subprocess.rst:471 -msgid "" -"``0`` means unbuffered (read and write are one system call and can return " -"short)" +msgid "``0`` means unbuffered (read and write are one system call and can return short)" msgstr "" -#: ../../library/subprocess.rst:473 -msgid "" -"``1`` means line buffered (only usable if ``text=True`` or " -"``universal_newlines=True``)" +msgid "``1`` means line buffered (only usable if ``text=True`` or ``universal_newlines=True``)" msgstr "" -#: ../../library/subprocess.rst:475 msgid "any other positive value means use a buffer of approximately that size" msgstr "" -#: ../../library/subprocess.rst:477 -msgid "" -"negative bufsize (the default) means the system default of " -"io.DEFAULT_BUFFER_SIZE will be used." +msgid "negative bufsize (the default) means the system default of io.DEFAULT_BUFFER_SIZE will be used." msgstr "" -#: ../../library/subprocess.rst:480 -msgid "" -"*bufsize* now defaults to -1 to enable buffering by default to match the " -"behavior that most code expects. In versions prior to Python 3.2.4 and " -"3.3.1 it incorrectly defaulted to ``0`` which was unbuffered and allowed " -"short reads. This was unintentional and did not match the behavior of " -"Python 2 as most code expected." +msgid "*bufsize* now defaults to -1 to enable buffering by default to match the behavior that most code expects. In versions prior to Python 3.2.4 and 3.3.1 it incorrectly defaulted to ``0`` which was unbuffered and allowed short reads. This was unintentional and did not match the behavior of Python 2 as most code expected." +msgstr "" + +msgid "The *executable* argument specifies a replacement program to execute. It is very seldom needed. When ``shell=False``, *executable* replaces the program to execute specified by *args*. However, the original *args* is still passed to the program. Most programs treat the program specified by *args* as the command name, which can then be different from the program actually executed. On POSIX, the *args* name becomes the display name for the executable in utilities such as :program:`ps`. If ``shell=True``, on POSIX the *executable* argument specifies a replacement shell for the default :file:`/bin/sh`." msgstr "" -#: ../../library/subprocess.rst:487 -msgid "" -"The *executable* argument specifies a replacement program to execute. It " -"is very seldom needed. When ``shell=False``, *executable* replaces the " -"program to execute specified by *args*. However, the original *args* is " -"still passed to the program. Most programs treat the program specified by " -"*args* as the command name, which can then be different from the program " -"actually executed. On POSIX, the *args* name becomes the display name for " -"the executable in utilities such as :program:`ps`. If ``shell=True``, on " -"POSIX the *executable* argument specifies a replacement shell for the " -"default :file:`/bin/sh`." -msgstr "" - -#: ../../library/subprocess.rst:497 msgid "*executable* parameter accepts a :term:`path-like object` on POSIX." msgstr "" -#: ../../library/subprocess.rst:500 -msgid "" -"*executable* parameter accepts a bytes and :term:`path-like object` on " -"Windows." +msgid "*executable* parameter accepts a bytes and :term:`path-like object` on Windows." msgstr "" -#: ../../library/subprocess.rst:512 -msgid "" -"*stdin*, *stdout* and *stderr* specify the executed program's standard " -"input, standard output and standard error file handles, respectively. Valid " -"values are ``None``, :data:`PIPE`, :data:`DEVNULL`, an existing file " -"descriptor (a positive integer), and an existing :term:`file object` with a " -"valid file descriptor. With the default settings of ``None``, no " -"redirection will occur. :data:`PIPE` indicates that a new pipe to the child " -"should be created. :data:`DEVNULL` indicates that the special " -"file :data:`os.devnull` will be used. Additionally, *stderr* can " -"be :data:`STDOUT`, which indicates that the stderr data from the " -"applications should be captured into the same file handle as for *stdout*." -msgstr "" - -#: ../../library/subprocess.rst:523 -msgid "" -"If *preexec_fn* is set to a callable object, this object will be called in " -"the child process just before the child is executed. (POSIX only)" +msgid "*stdin*, *stdout* and *stderr* specify the executed program's standard input, standard output and standard error file handles, respectively. Valid values are ``None``, :data:`PIPE`, :data:`DEVNULL`, an existing file descriptor (a positive integer), and an existing :term:`file object` with a valid file descriptor. With the default settings of ``None``, no redirection will occur. :data:`PIPE` indicates that a new pipe to the child should be created. :data:`DEVNULL` indicates that the special file :data:`os.devnull` will be used. Additionally, *stderr* can be :data:`STDOUT`, which indicates that the stderr data from the applications should be captured into the same file handle as for *stdout*." msgstr "" -#: ../../library/subprocess.rst:529 -msgid "" -"The *preexec_fn* parameter is NOT SAFE to use in the presence of threads in " -"your application. The child process could deadlock before exec is called." +msgid "If *preexec_fn* is set to a callable object, this object will be called in the child process just before the child is executed. (POSIX only)" msgstr "" -#: ../../library/subprocess.rst:535 -msgid "" -"If you need to modify the environment for the child use the *env* parameter " -"rather than doing it in a *preexec_fn*. The *start_new_session* and " -"*process_group* parameters should take the place of code using *preexec_fn* " -"to call :func:`os.setsid` or :func:`os.setpgid` in the child." +msgid "The *preexec_fn* parameter is NOT SAFE to use in the presence of threads in your application. The child process could deadlock before exec is called." msgstr "" -#: ../../library/subprocess.rst:542 -msgid "" -"The *preexec_fn* parameter is no longer supported in subinterpreters. The " -"use of the parameter in a subinterpreter raises :exc:`RuntimeError`. The new " -"restriction may affect applications that are deployed in mod_wsgi, uWSGI, " -"and other embedded environments." +msgid "If you need to modify the environment for the child use the *env* parameter rather than doing it in a *preexec_fn*. The *start_new_session* and *process_group* parameters should take the place of code using *preexec_fn* to call :func:`os.setsid` or :func:`os.setpgid` in the child." msgstr "" -#: ../../library/subprocess.rst:547 -msgid "" -"If *close_fds* is true, all file descriptors except ``0``, ``1`` and ``2`` " -"will be closed before the child process is executed. Otherwise when " -"*close_fds* is false, file descriptors obey their inheritable flag as " -"described in :ref:`fd_inheritance`." +msgid "The *preexec_fn* parameter is no longer supported in subinterpreters. The use of the parameter in a subinterpreter raises :exc:`RuntimeError`. The new restriction may affect applications that are deployed in mod_wsgi, uWSGI, and other embedded environments." msgstr "" -#: ../../library/subprocess.rst:552 -msgid "" -"On Windows, if *close_fds* is true then no handles will be inherited by the " -"child process unless explicitly passed in the ``handle_list`` element " -"of :attr:`STARTUPINFO.lpAttributeList`, or by standard handle redirection." +msgid "If *close_fds* is true, all file descriptors except ``0``, ``1`` and ``2`` will be closed before the child process is executed. Otherwise when *close_fds* is false, file descriptors obey their inheritable flag as described in :ref:`fd_inheritance`." msgstr "" -#: ../../library/subprocess.rst:556 -msgid "" -"The default for *close_fds* was changed from :const:`False` to what is " -"described above." +msgid "On Windows, if *close_fds* is true then no handles will be inherited by the child process unless explicitly passed in the ``handle_list`` element of :attr:`STARTUPINFO.lpAttributeList`, or by standard handle redirection." msgstr "" -#: ../../library/subprocess.rst:560 -msgid "" -"On Windows the default for *close_fds* was changed from :const:`False` " -"to :const:`True` when redirecting the standard handles. It's now possible to " -"set *close_fds* to :const:`True` when redirecting the standard handles." +msgid "The default for *close_fds* was changed from :const:`False` to what is described above." msgstr "" -#: ../../library/subprocess.rst:565 -msgid "" -"*pass_fds* is an optional sequence of file descriptors to keep open between " -"the parent and child. Providing any *pass_fds* forces *close_fds* to " -"be :const:`True`. (POSIX only)" +msgid "On Windows the default for *close_fds* was changed from :const:`False` to :const:`True` when redirecting the standard handles. It's now possible to set *close_fds* to :const:`True` when redirecting the standard handles." +msgstr "" + +msgid "*pass_fds* is an optional sequence of file descriptors to keep open between the parent and child. Providing any *pass_fds* forces *close_fds* to be :const:`True`. (POSIX only)" msgstr "" -#: ../../library/subprocess.rst:569 msgid "The *pass_fds* parameter was added." msgstr "" -#: ../../library/subprocess.rst:572 -msgid "" -"If *cwd* is not ``None``, the function changes the working directory to " -"*cwd* before executing the child. *cwd* can be a string, bytes " -"or :term:`path-like ` object. On POSIX, the function " -"looks for *executable* (or for the first item in *args*) relative to *cwd* " -"if the executable path is a relative path." +msgid "If *cwd* is not ``None``, the function changes the working directory to *cwd* before executing the child. *cwd* can be a string, bytes or :term:`path-like ` object. On POSIX, the function looks for *executable* (or for the first item in *args*) relative to *cwd* if the executable path is a relative path." msgstr "" -#: ../../library/subprocess.rst:578 msgid "*cwd* parameter accepts a :term:`path-like object` on POSIX." msgstr "" -#: ../../library/subprocess.rst:581 msgid "*cwd* parameter accepts a :term:`path-like object` on Windows." msgstr "" -#: ../../library/subprocess.rst:584 msgid "*cwd* parameter accepts a bytes object on Windows." msgstr "" -#: ../../library/subprocess.rst:587 -msgid "" -"If *restore_signals* is true (the default) all signals that Python has set " -"to SIG_IGN are restored to SIG_DFL in the child process before the exec. " -"Currently this includes the SIGPIPE, SIGXFZ and SIGXFSZ signals. (POSIX only)" +msgid "If *restore_signals* is true (the default) all signals that Python has set to SIG_IGN are restored to SIG_DFL in the child process before the exec. Currently this includes the SIGPIPE, SIGXFZ and SIGXFSZ signals. (POSIX only)" msgstr "" -#: ../../library/subprocess.rst:592 msgid "*restore_signals* was added." msgstr "" -#: ../../library/subprocess.rst:595 -msgid "" -"If *start_new_session* is true the ``setsid()`` system call will be made in " -"the child process prior to the execution of the subprocess." +msgid "If *start_new_session* is true the ``setsid()`` system call will be made in the child process prior to the execution of the subprocess." msgstr "" -#: ../../library/subprocess.rst:599 msgid "*start_new_session* was added." msgstr "" -#: ../../library/subprocess.rst:602 -msgid "" -"If *process_group* is a non-negative integer, the ``setpgid(0, value)`` " -"system call will be made in the child process prior to the execution of the " -"subprocess." +msgid "If *process_group* is a non-negative integer, the ``setpgid(0, value)`` system call will be made in the child process prior to the execution of the subprocess." msgstr "" -#: ../../library/subprocess.rst:606 msgid "*process_group* was added." msgstr "" -#: ../../library/subprocess.rst:609 -msgid "" -"If *group* is not ``None``, the setregid() system call will be made in the " -"child process prior to the execution of the subprocess. If the provided " -"value is a string, it will be looked up via :func:`grp.getgrnam` and the " -"value in ``gr_gid`` will be used. If the value is an integer, it will be " -"passed verbatim. (POSIX only)" +msgid "If *group* is not ``None``, the setregid() system call will be made in the child process prior to the execution of the subprocess. If the provided value is a string, it will be looked up via :func:`grp.getgrnam` and the value in ``gr_gid`` will be used. If the value is an integer, it will be passed verbatim. (POSIX only)" msgstr "" -#: ../../library/subprocess.rst:618 -msgid "" -"If *extra_groups* is not ``None``, the setgroups() system call will be made " -"in the child process prior to the execution of the subprocess. Strings " -"provided in *extra_groups* will be looked up via :func:`grp.getgrnam` and " -"the values in ``gr_gid`` will be used. Integer values will be passed " -"verbatim. (POSIX only)" +msgid "If *extra_groups* is not ``None``, the setgroups() system call will be made in the child process prior to the execution of the subprocess. Strings provided in *extra_groups* will be looked up via :func:`grp.getgrnam` and the values in ``gr_gid`` will be used. Integer values will be passed verbatim. (POSIX only)" msgstr "" -#: ../../library/subprocess.rst:627 -msgid "" -"If *user* is not ``None``, the setreuid() system call will be made in the " -"child process prior to the execution of the subprocess. If the provided " -"value is a string, it will be looked up via :func:`pwd.getpwnam` and the " -"value in ``pw_uid`` will be used. If the value is an integer, it will be " -"passed verbatim. (POSIX only)" +msgid "If *user* is not ``None``, the setreuid() system call will be made in the child process prior to the execution of the subprocess. If the provided value is a string, it will be looked up via :func:`pwd.getpwnam` and the value in ``pw_uid`` will be used. If the value is an integer, it will be passed verbatim. (POSIX only)" msgstr "" -#: ../../library/subprocess.rst:635 -msgid "" -"Specifying *user* will not drop existing supplementary group memberships! " -"The caller must also pass ``extra_groups=()`` to reduce the group membership " -"of the child process for security purposes." +msgid "Specifying *user* will not drop existing supplementary group memberships! The caller must also pass ``extra_groups=()`` to reduce the group membership of the child process for security purposes." msgstr "" -#: ../../library/subprocess.rst:642 -msgid "" -"If *umask* is not negative, the umask() system call will be made in the " -"child process prior to the execution of the subprocess." +msgid "If *umask* is not negative, the umask() system call will be made in the child process prior to the execution of the subprocess." msgstr "" -#: ../../library/subprocess.rst:648 -msgid "" -"If *env* is not ``None``, it must be a mapping that defines the environment " -"variables for the new process; these are used instead of the default " -"behavior of inheriting the current process' environment. This mapping can be " -"str to str on any platform or bytes to bytes on POSIX platforms much " -"like :data:`os.environ` or :data:`os.environb`." +msgid "If *env* is not ``None``, it must be a mapping that defines the environment variables for the new process; these are used instead of the default behavior of inheriting the current process' environment. This mapping can be str to str on any platform or bytes to bytes on POSIX platforms much like :data:`os.environ` or :data:`os.environb`." msgstr "" -#: ../../library/subprocess.rst:656 -msgid "" -"If specified, *env* must provide any variables required for the program to " -"execute. On Windows, in order to run a `side-by-side assembly`_ the " -"specified *env* **must** include a valid ``%SystemRoot%``." +msgid "If specified, *env* must provide any variables required for the program to execute. On Windows, in order to run a `side-by-side assembly`_ the specified *env* **must** include a valid ``%SystemRoot%``." msgstr "" -#: ../../library/subprocess.rst:662 -msgid "" -"If *encoding* or *errors* are specified, or *text* is true, the file objects " -"*stdin*, *stdout* and *stderr* are opened in text mode with the specified " -"*encoding* and *errors*, as described above in :ref:`frequently-used-" -"arguments`. The *universal_newlines* argument is equivalent to *text* and " -"is provided for backwards compatibility. By default, file objects are opened " -"in binary mode." +msgid "If *encoding* or *errors* are specified, or *text* is true, the file objects *stdin*, *stdout* and *stderr* are opened in text mode with the specified *encoding* and *errors*, as described above in :ref:`frequently-used-arguments`. The *universal_newlines* argument is equivalent to *text* and is provided for backwards compatibility. By default, file objects are opened in binary mode." msgstr "" -#: ../../library/subprocess.rst:668 msgid "*encoding* and *errors* were added." msgstr "" -#: ../../library/subprocess.rst:671 ../../library/subprocess.rst:1330 msgid "*text* was added as a more readable alias for *universal_newlines*." msgstr "" -#: ../../library/subprocess.rst:674 -msgid "" -"If given, *startupinfo* will be a :class:`STARTUPINFO` object, which is " -"passed to the underlying ``CreateProcess`` function." +msgid "If given, *startupinfo* will be a :class:`STARTUPINFO` object, which is passed to the underlying ``CreateProcess`` function." msgstr "" -#: ../../library/subprocess.rst:677 msgid "If given, *creationflags*, can be one or more of the following flags:" msgstr "" -#: ../../library/subprocess.rst:679 msgid ":data:`CREATE_NEW_CONSOLE`" msgstr "" -#: ../../library/subprocess.rst:680 msgid ":data:`CREATE_NEW_PROCESS_GROUP`" msgstr "" -#: ../../library/subprocess.rst:681 msgid ":data:`ABOVE_NORMAL_PRIORITY_CLASS`" msgstr "" -#: ../../library/subprocess.rst:682 msgid ":data:`BELOW_NORMAL_PRIORITY_CLASS`" msgstr "" -#: ../../library/subprocess.rst:683 msgid ":data:`HIGH_PRIORITY_CLASS`" msgstr "" -#: ../../library/subprocess.rst:684 msgid ":data:`IDLE_PRIORITY_CLASS`" msgstr "" -#: ../../library/subprocess.rst:685 msgid ":data:`NORMAL_PRIORITY_CLASS`" msgstr "" -#: ../../library/subprocess.rst:686 msgid ":data:`REALTIME_PRIORITY_CLASS`" msgstr "" -#: ../../library/subprocess.rst:687 msgid ":data:`CREATE_NO_WINDOW`" msgstr "" -#: ../../library/subprocess.rst:688 msgid ":data:`DETACHED_PROCESS`" msgstr "" -#: ../../library/subprocess.rst:689 msgid ":data:`CREATE_DEFAULT_ERROR_MODE`" msgstr "" -#: ../../library/subprocess.rst:690 msgid ":data:`CREATE_BREAKAWAY_FROM_JOB`" msgstr "" -#: ../../library/subprocess.rst:692 -msgid "" -"*pipesize* can be used to change the size of the pipe when :data:`PIPE` is " -"used for *stdin*, *stdout* or *stderr*. The size of the pipe is only changed " -"on platforms that support this (only Linux at this time of writing). Other " -"platforms will ignore this parameter." +msgid "*pipesize* can be used to change the size of the pipe when :data:`PIPE` is used for *stdin*, *stdout* or *stderr*. The size of the pipe is only changed on platforms that support this (only Linux at this time of writing). Other platforms will ignore this parameter." msgstr "" -#: ../../library/subprocess.rst:697 msgid "Added the *pipesize* parameter." msgstr "" -#: ../../library/subprocess.rst:700 -msgid "" -"Popen objects are supported as context managers via the :keyword:`with` " -"statement: on exit, standard file descriptors are closed, and the process is " -"waited for. ::" +msgid "Popen objects are supported as context managers via the :keyword:`with` statement: on exit, standard file descriptors are closed, and the process is waited for. ::" msgstr "" -#: ../../library/subprocess.rst:704 msgid "" "with Popen([\"ifconfig\"], stdout=PIPE) as proc:\n" " log.write(proc.stdout.read())" msgstr "" -#: ../../library/subprocess.rst:707 ../../library/subprocess.rst:709 -msgid "" -"Popen and the other functions in this module that use it raise " -"an :ref:`auditing event ` ``subprocess.Popen`` with arguments " -"``executable``, ``args``, ``cwd``, and ``env``. The value for ``args`` may " -"be a single string or a list of strings, depending on platform." +msgid "Popen and the other functions in this module that use it raise an :ref:`auditing event ` ``subprocess.Popen`` with arguments ``executable``, ``args``, ``cwd``, and ``env``. The value for ``args`` may be a single string or a list of strings, depending on platform." msgstr "" -#: ../../library/subprocess.rst:714 msgid "Added context manager support." msgstr "" -#: ../../library/subprocess.rst:717 -msgid "" -"Popen destructor now emits a :exc:`ResourceWarning` warning if the child " -"process is still running." +msgid "Popen destructor now emits a :exc:`ResourceWarning` warning if the child process is still running." msgstr "" -#: ../../library/subprocess.rst:721 -msgid "" -"Popen can use :func:`os.posix_spawn` in some cases for better performance. " -"On Windows Subsystem for Linux and QEMU User Emulation, Popen constructor " -"using :func:`os.posix_spawn` no longer raise an exception on errors like " -"missing program, but the child process fails with a non-" -"zero :attr:`~Popen.returncode`." +msgid "Popen can use :func:`os.posix_spawn` in some cases for better performance. On Windows Subsystem for Linux and QEMU User Emulation, Popen constructor using :func:`os.posix_spawn` no longer raise an exception on errors like missing program, but the child process fails with a non-zero :attr:`~Popen.returncode`." msgstr "" -#: ../../library/subprocess.rst:730 msgid "Exceptions" msgstr "" -#: ../../library/subprocess.rst:732 -msgid "" -"Exceptions raised in the child process, before the new program has started " -"to execute, will be re-raised in the parent." +msgid "Exceptions raised in the child process, before the new program has started to execute, will be re-raised in the parent." msgstr "" -#: ../../library/subprocess.rst:735 -msgid "" -"The most common exception raised is :exc:`OSError`. This occurs, for " -"example, when trying to execute a non-existent file. Applications should " -"prepare for :exc:`OSError` exceptions. Note that, when " -"``shell=True``, :exc:`OSError` will be raised by the child only if the " -"selected shell itself was not found. To determine if the shell failed to " -"find the requested application, it is necessary to check the return code or " -"output from the subprocess." +msgid "The most common exception raised is :exc:`OSError`. This occurs, for example, when trying to execute a non-existent file. Applications should prepare for :exc:`OSError` exceptions. Note that, when ``shell=True``, :exc:`OSError` will be raised by the child only if the selected shell itself was not found. To determine if the shell failed to find the requested application, it is necessary to check the return code or output from the subprocess." msgstr "" -#: ../../library/subprocess.rst:742 -msgid "" -"A :exc:`ValueError` will be raised if :class:`Popen` is called with invalid " -"arguments." +msgid "A :exc:`ValueError` will be raised if :class:`Popen` is called with invalid arguments." msgstr "" -#: ../../library/subprocess.rst:745 -msgid "" -":func:`check_call` and :func:`check_output` will " -"raise :exc:`CalledProcessError` if the called process returns a non-zero " -"return code." +msgid ":func:`check_call` and :func:`check_output` will raise :exc:`CalledProcessError` if the called process returns a non-zero return code." msgstr "" -#: ../../library/subprocess.rst:749 -msgid "" -"All of the functions and methods that accept a *timeout* parameter, such " -"as :func:`run` and :meth:`Popen.communicate` will " -"raise :exc:`TimeoutExpired` if the timeout expires before the process exits." +msgid "All of the functions and methods that accept a *timeout* parameter, such as :func:`run` and :meth:`Popen.communicate` will raise :exc:`TimeoutExpired` if the timeout expires before the process exits." msgstr "" -#: ../../library/subprocess.rst:753 -msgid "" -"Exceptions defined in this module all inherit from :exc:`SubprocessError`." +msgid "Exceptions defined in this module all inherit from :exc:`SubprocessError`." msgstr "" -#: ../../library/subprocess.rst:755 msgid "The :exc:`SubprocessError` base class was added." msgstr "" -#: ../../library/subprocess.rst:761 msgid "Security Considerations" msgstr "" -#: ../../library/subprocess.rst:763 -msgid "" -"Unlike some other popen functions, this library will not implicitly choose " -"to call a system shell. This means that all characters, including shell " -"metacharacters, can safely be passed to child processes. If the shell is " -"invoked explicitly, via ``shell=True``, it is the application's " -"responsibility to ensure that all whitespace and metacharacters are quoted " -"appropriately to avoid `shell injection `_ vulnerabilities. On :ref:`some platforms " -"`, it is possible to use :func:`shlex.quote` for this " -"escaping." -msgstr "" - -#: ../../library/subprocess.rst:773 -msgid "" -"On Windows, batch files (:file:`*.bat` or :file:`*.cmd`) may be launched by " -"the operating system in a system shell regardless of the arguments passed to " -"this library. This could result in arguments being parsed according to shell " -"rules, but without any escaping added by Python. If you are intentionally " -"launching a batch file with arguments from untrusted sources, consider " -"passing ``shell=True`` to allow Python to escape special characters. " -"See :gh:`114539` for additional discussion." +msgid "Unlike some other popen functions, this library will not implicitly choose to call a system shell. This means that all characters, including shell metacharacters, can safely be passed to child processes. If the shell is invoked explicitly, via ``shell=True``, it is the application's responsibility to ensure that all whitespace and metacharacters are quoted appropriately to avoid `shell injection `_ vulnerabilities. On :ref:`some platforms `, it is possible to use :func:`shlex.quote` for this escaping." +msgstr "" + +msgid "On Windows, batch files (:file:`*.bat` or :file:`*.cmd`) may be launched by the operating system in a system shell regardless of the arguments passed to this library. This could result in arguments being parsed according to shell rules, but without any escaping added by Python. If you are intentionally launching a batch file with arguments from untrusted sources, consider passing ``shell=True`` to allow Python to escape special characters. See :gh:`114539` for additional discussion." msgstr "" -#: ../../library/subprocess.rst:783 msgid "Popen Objects" msgstr "" -#: ../../library/subprocess.rst:785 msgid "Instances of the :class:`Popen` class have the following methods:" msgstr "" -#: ../../library/subprocess.rst:790 -msgid "" -"Check if child process has terminated. Set and " -"return :attr:`~Popen.returncode` attribute. Otherwise, returns ``None``." +msgid "Check if child process has terminated. Set and return :attr:`~Popen.returncode` attribute. Otherwise, returns ``None``." msgstr "" -#: ../../library/subprocess.rst:796 -msgid "" -"Wait for child process to terminate. Set and " -"return :attr:`~Popen.returncode` attribute." +msgid "Wait for child process to terminate. Set and return :attr:`~Popen.returncode` attribute." msgstr "" -#: ../../library/subprocess.rst:799 -msgid "" -"If the process does not terminate after *timeout* seconds, raise " -"a :exc:`TimeoutExpired` exception. It is safe to catch this exception and " -"retry the wait." +msgid "If the process does not terminate after *timeout* seconds, raise a :exc:`TimeoutExpired` exception. It is safe to catch this exception and retry the wait." msgstr "" -#: ../../library/subprocess.rst:805 -msgid "" -"This will deadlock when using ``stdout=PIPE`` or ``stderr=PIPE`` and the " -"child process generates enough output to a pipe such that it blocks waiting " -"for the OS pipe buffer to accept more data. Use :meth:`Popen.communicate` " -"when using pipes to avoid that." +msgid "This will deadlock when using ``stdout=PIPE`` or ``stderr=PIPE`` and the child process generates enough output to a pipe such that it blocks waiting for the OS pipe buffer to accept more data. Use :meth:`Popen.communicate` when using pipes to avoid that." msgstr "" -#: ../../library/subprocess.rst:812 -msgid "" -"When the ``timeout`` parameter is not ``None``, then (on POSIX) the function " -"is implemented using a busy loop (non-blocking call and short sleeps). Use " -"the :mod:`asyncio` module for an asynchronous wait: " -"see :class:`asyncio.create_subprocess_exec`." +msgid "When the ``timeout`` parameter is not ``None``, then (on POSIX) the function is implemented using a busy loop (non-blocking call and short sleeps). Use the :mod:`asyncio` module for an asynchronous wait: see :class:`asyncio.create_subprocess_exec`." msgstr "" -#: ../../library/subprocess.rst:817 ../../library/subprocess.rst:865 -#: ../../library/subprocess.rst:1227 ../../library/subprocess.rst:1267 -#: ../../library/subprocess.rst:1321 msgid "*timeout* was added." msgstr "" -#: ../../library/subprocess.rst:822 -msgid "" -"Interact with process: Send data to stdin. Read data from stdout and " -"stderr, until end-of-file is reached. Wait for process to terminate and set " -"the :attr:`~Popen.returncode` attribute. The optional *input* argument " -"should be data to be sent to the child process, or ``None``, if no data " -"should be sent to the child. If streams were opened in text mode, *input* " -"must be a string. Otherwise, it must be bytes." +msgid "Interact with process: Send data to stdin. Read data from stdout and stderr, until end-of-file is reached. Wait for process to terminate and set the :attr:`~Popen.returncode` attribute. The optional *input* argument should be data to be sent to the child process, or ``None``, if no data should be sent to the child. If streams were opened in text mode, *input* must be a string. Otherwise, it must be bytes." msgstr "" -#: ../../library/subprocess.rst:829 -msgid "" -":meth:`communicate` returns a tuple ``(stdout_data, stderr_data)``. The data " -"will be strings if streams were opened in text mode; otherwise, bytes." +msgid ":meth:`communicate` returns a tuple ``(stdout_data, stderr_data)``. The data will be strings if streams were opened in text mode; otherwise, bytes." msgstr "" -#: ../../library/subprocess.rst:833 -msgid "" -"Note that if you want to send data to the process's stdin, you need to " -"create the Popen object with ``stdin=PIPE``. Similarly, to get anything " -"other than ``None`` in the result tuple, you need to give ``stdout=PIPE`` " -"and/or ``stderr=PIPE`` too." +msgid "Note that if you want to send data to the process's stdin, you need to create the Popen object with ``stdin=PIPE``. Similarly, to get anything other than ``None`` in the result tuple, you need to give ``stdout=PIPE`` and/or ``stderr=PIPE`` too." msgstr "" -#: ../../library/subprocess.rst:838 -msgid "" -"If the process does not terminate after *timeout* seconds, " -"a :exc:`TimeoutExpired` exception will be raised. Catching this exception " -"and retrying communication will not lose any output. Supplying *input* to a " -"subsequent post-timeout :meth:`communicate` call is in undefined behavior " -"and may become an error in the future." +msgid "If the process does not terminate after *timeout* seconds, a :exc:`TimeoutExpired` exception will be raised. Catching this exception and retrying communication will not lose any output. Supplying *input* to a subsequent post-timeout :meth:`communicate` call is in undefined behavior and may become an error in the future." msgstr "" -#: ../../library/subprocess.rst:844 -msgid "" -"The child process is not killed if the timeout expires, so in order to " -"cleanup properly a well-behaved application should kill the child process " -"and finish communication::" +msgid "The child process is not killed if the timeout expires, so in order to cleanup properly a well-behaved application should kill the child process and finish communication::" msgstr "" -#: ../../library/subprocess.rst:848 msgid "" "proc = subprocess.Popen(...)\n" "try:\n" @@ -1143,487 +549,236 @@ msgid "" " outs, errs = proc.communicate()" msgstr "" -#: ../../library/subprocess.rst:855 -msgid "" -"After a call to :meth:`~Popen.communicate` raises :exc:`TimeoutExpired`, do " -"not call :meth:`~Popen.wait`. Use an additional :meth:`~Popen.communicate` " -"call to finish handling pipes and populate the :attr:`~Popen.returncode` " -"attribute." +msgid "After a call to :meth:`~Popen.communicate` raises :exc:`TimeoutExpired`, do not call :meth:`~Popen.wait`. Use an additional :meth:`~Popen.communicate` call to finish handling pipes and populate the :attr:`~Popen.returncode` attribute." msgstr "" -#: ../../library/subprocess.rst:862 -msgid "" -"The data read is buffered in memory, so do not use this method if the data " -"size is large or unlimited." +msgid "The data read is buffered in memory, so do not use this method if the data size is large or unlimited." msgstr "" -#: ../../library/subprocess.rst:871 msgid "Sends the signal *signal* to the child." msgstr "" -#: ../../library/subprocess.rst:873 msgid "Do nothing if the process completed." msgstr "" -#: ../../library/subprocess.rst:877 -msgid "" -"On Windows, SIGTERM is an alias for :meth:`terminate`. CTRL_C_EVENT and " -"CTRL_BREAK_EVENT can be sent to processes started with a *creationflags* " -"parameter which includes ``CREATE_NEW_PROCESS_GROUP``." +msgid "On Windows, SIGTERM is an alias for :meth:`terminate`. CTRL_C_EVENT and CTRL_BREAK_EVENT can be sent to processes started with a *creationflags* parameter which includes ``CREATE_NEW_PROCESS_GROUP``." msgstr "" -#: ../../library/subprocess.rst:884 -msgid "" -"Stop the child. On POSIX OSs the method sends :py:const:`~signal.SIGTERM` to " -"the child. On Windows the Win32 API function :c:func:`!TerminateProcess` is " -"called to stop the child." +msgid "Stop the child. On POSIX OSs the method sends :py:const:`~signal.SIGTERM` to the child. On Windows the Win32 API function :c:func:`!TerminateProcess` is called to stop the child." msgstr "" -#: ../../library/subprocess.rst:891 -msgid "" -"Kills the child. On POSIX OSs the function sends SIGKILL to the child. On " -"Windows :meth:`kill` is an alias for :meth:`terminate`." +msgid "Kills the child. On POSIX OSs the function sends SIGKILL to the child. On Windows :meth:`kill` is an alias for :meth:`terminate`." msgstr "" -#: ../../library/subprocess.rst:895 -msgid "" -"The following attributes are also set by the class for you to access. " -"Reassigning them to new values is unsupported:" +msgid "The following attributes are also set by the class for you to access. Reassigning them to new values is unsupported:" msgstr "" -#: ../../library/subprocess.rst:900 -msgid "" -"The *args* argument as it was passed to :class:`Popen` -- a sequence of " -"program arguments or else a single string." +msgid "The *args* argument as it was passed to :class:`Popen` -- a sequence of program arguments or else a single string." msgstr "" -#: ../../library/subprocess.rst:907 -msgid "" -"If the *stdin* argument was :data:`PIPE`, this attribute is a writeable " -"stream object as returned by :func:`open`. If the *encoding* or *errors* " -"arguments were specified or the *text* or *universal_newlines* argument was " -"``True``, the stream is a text stream, otherwise it is a byte stream. If the " -"*stdin* argument was not :data:`PIPE`, this attribute is ``None``." +msgid "If the *stdin* argument was :data:`PIPE`, this attribute is a writeable stream object as returned by :func:`open`. If the *encoding* or *errors* arguments were specified or the *text* or *universal_newlines* argument was ``True``, the stream is a text stream, otherwise it is a byte stream. If the *stdin* argument was not :data:`PIPE`, this attribute is ``None``." msgstr "" -#: ../../library/subprocess.rst:916 -msgid "" -"If the *stdout* argument was :data:`PIPE`, this attribute is a readable " -"stream object as returned by :func:`open`. Reading from the stream provides " -"output from the child process. If the *encoding* or *errors* arguments were " -"specified or the *text* or *universal_newlines* argument was ``True``, the " -"stream is a text stream, otherwise it is a byte stream. If the *stdout* " -"argument was not :data:`PIPE`, this attribute is ``None``." +msgid "If the *stdout* argument was :data:`PIPE`, this attribute is a readable stream object as returned by :func:`open`. Reading from the stream provides output from the child process. If the *encoding* or *errors* arguments were specified or the *text* or *universal_newlines* argument was ``True``, the stream is a text stream, otherwise it is a byte stream. If the *stdout* argument was not :data:`PIPE`, this attribute is ``None``." msgstr "" -#: ../../library/subprocess.rst:926 -msgid "" -"If the *stderr* argument was :data:`PIPE`, this attribute is a readable " -"stream object as returned by :func:`open`. Reading from the stream provides " -"error output from the child process. If the *encoding* or *errors* arguments " -"were specified or the *text* or *universal_newlines* argument was ``True``, " -"the stream is a text stream, otherwise it is a byte stream. If the *stderr* " -"argument was not :data:`PIPE`, this attribute is ``None``." +msgid "If the *stderr* argument was :data:`PIPE`, this attribute is a readable stream object as returned by :func:`open`. Reading from the stream provides error output from the child process. If the *encoding* or *errors* arguments were specified or the *text* or *universal_newlines* argument was ``True``, the stream is a text stream, otherwise it is a byte stream. If the *stderr* argument was not :data:`PIPE`, this attribute is ``None``." msgstr "" -#: ../../library/subprocess.rst:935 -msgid "" -"Use :meth:`~Popen.communicate` rather than :attr:`.stdin.write " -"`, :attr:`.stdout.read ` or :attr:`.stderr.read " -"` to avoid deadlocks due to any of the other OS pipe buffers " -"filling up and blocking the child process." +msgid "Use :meth:`~Popen.communicate` rather than :attr:`.stdin.write `, :attr:`.stdout.read ` or :attr:`.stderr.read ` to avoid deadlocks due to any of the other OS pipe buffers filling up and blocking the child process." msgstr "" -#: ../../library/subprocess.rst:943 msgid "The process ID of the child process." msgstr "" -#: ../../library/subprocess.rst:945 -msgid "" -"Note that if you set the *shell* argument to ``True``, this is the process " -"ID of the spawned shell." +msgid "Note that if you set the *shell* argument to ``True``, this is the process ID of the spawned shell." msgstr "" -#: ../../library/subprocess.rst:951 -msgid "" -"The child return code. Initially ``None``, :attr:`returncode` is set by a " -"call to the :meth:`poll`, :meth:`wait`, or :meth:`communicate` methods if " -"they detect that the process has terminated." +msgid "The child return code. Initially ``None``, :attr:`returncode` is set by a call to the :meth:`poll`, :meth:`wait`, or :meth:`communicate` methods if they detect that the process has terminated." msgstr "" -#: ../../library/subprocess.rst:955 -msgid "" -"A ``None`` value indicates that the process hadn't yet terminated at the " -"time of the last method call." +msgid "A ``None`` value indicates that the process hadn't yet terminated at the time of the last method call." msgstr "" -#: ../../library/subprocess.rst:961 -msgid "" -"When ``shell=True``, the return code reflects the exit status of the shell " -"itself (e.g. ``/bin/sh``), which may map signals to codes such as ``128+N``. " -"See the documentation of the shell (for example, the Bash manual's Exit " -"Status) for details." +msgid "When ``shell=True``, the return code reflects the exit status of the shell itself (e.g. ``/bin/sh``), which may map signals to codes such as ``128+N``. See the documentation of the shell (for example, the Bash manual's Exit Status) for details." msgstr "" -#: ../../library/subprocess.rst:968 msgid "Windows Popen Helpers" msgstr "" -#: ../../library/subprocess.rst:970 -msgid "" -"The :class:`STARTUPINFO` class and following constants are only available on " -"Windows." +msgid "The :class:`STARTUPINFO` class and following constants are only available on Windows." msgstr "" -#: ../../library/subprocess.rst:976 -msgid "" -"Partial support of the Windows `STARTUPINFO `__ structure is used for :class:`Popen` " -"creation. The following attributes can be set by passing them as keyword-" -"only arguments." +msgid "Partial support of the Windows `STARTUPINFO `__ structure is used for :class:`Popen` creation. The following attributes can be set by passing them as keyword-only arguments." msgstr "" -#: ../../library/subprocess.rst:981 msgid "Keyword-only argument support was added." msgstr "" -#: ../../library/subprocess.rst:986 -msgid "" -"A bit field that determines whether certain :class:`STARTUPINFO` attributes " -"are used when the process creates a window. ::" +msgid "A bit field that determines whether certain :class:`STARTUPINFO` attributes are used when the process creates a window. ::" msgstr "" -#: ../../library/subprocess.rst:989 msgid "" "si = subprocess.STARTUPINFO()\n" -"si.dwFlags = subprocess.STARTF_USESTDHANDLES | " -"subprocess.STARTF_USESHOWWINDOW" +"si.dwFlags = subprocess.STARTF_USESTDHANDLES | subprocess.STARTF_USESHOWWINDOW" msgstr "" -#: ../../library/subprocess.rst:994 -msgid "" -"If :attr:`dwFlags` specifies :data:`STARTF_USESTDHANDLES`, this attribute is " -"the standard input handle for the process. If :data:`STARTF_USESTDHANDLES` " -"is not specified, the default for standard input is the keyboard buffer." +msgid "If :attr:`dwFlags` specifies :data:`STARTF_USESTDHANDLES`, this attribute is the standard input handle for the process. If :data:`STARTF_USESTDHANDLES` is not specified, the default for standard input is the keyboard buffer." msgstr "" -#: ../../library/subprocess.rst:1001 -msgid "" -"If :attr:`dwFlags` specifies :data:`STARTF_USESTDHANDLES`, this attribute is " -"the standard output handle for the process. Otherwise, this attribute is " -"ignored and the default for standard output is the console window's buffer." +msgid "If :attr:`dwFlags` specifies :data:`STARTF_USESTDHANDLES`, this attribute is the standard output handle for the process. Otherwise, this attribute is ignored and the default for standard output is the console window's buffer." msgstr "" -#: ../../library/subprocess.rst:1008 -msgid "" -"If :attr:`dwFlags` specifies :data:`STARTF_USESTDHANDLES`, this attribute is " -"the standard error handle for the process. Otherwise, this attribute is " -"ignored and the default for standard error is the console window's buffer." +msgid "If :attr:`dwFlags` specifies :data:`STARTF_USESTDHANDLES`, this attribute is the standard error handle for the process. Otherwise, this attribute is ignored and the default for standard error is the console window's buffer." msgstr "" -#: ../../library/subprocess.rst:1014 -msgid "" -"If :attr:`dwFlags` specifies :data:`STARTF_USESHOWWINDOW`, this attribute " -"can be any of the values that can be specified in the ``nCmdShow`` parameter " -"for the `ShowWindow `__ function, except for ``SW_SHOWDEFAULT``. " -"Otherwise, this attribute is ignored." +msgid "If :attr:`dwFlags` specifies :data:`STARTF_USESHOWWINDOW`, this attribute can be any of the values that can be specified in the ``nCmdShow`` parameter for the `ShowWindow `__ function, except for ``SW_SHOWDEFAULT``. Otherwise, this attribute is ignored." msgstr "" -#: ../../library/subprocess.rst:1021 -msgid "" -":data:`SW_HIDE` is provided for this attribute. It is used " -"when :class:`Popen` is called with ``shell=True``." +msgid ":data:`SW_HIDE` is provided for this attribute. It is used when :class:`Popen` is called with ``shell=True``." msgstr "" -#: ../../library/subprocess.rst:1026 -msgid "" -"A dictionary of additional attributes for process creation as given in " -"``STARTUPINFOEX``, see `UpdateProcThreadAttribute `__." +msgid "A dictionary of additional attributes for process creation as given in ``STARTUPINFOEX``, see `UpdateProcThreadAttribute `__." msgstr "" -#: ../../library/subprocess.rst:1030 msgid "Supported attributes:" msgstr "" -#: ../../library/subprocess.rst:1032 msgid "**handle_list**" msgstr "" -#: ../../library/subprocess.rst:1033 -msgid "" -"Sequence of handles that will be inherited. *close_fds* must be true if non-" -"empty." +msgid "Sequence of handles that will be inherited. *close_fds* must be true if non-empty." msgstr "" -#: ../../library/subprocess.rst:1036 -msgid "" -"The handles must be temporarily made inheritable " -"by :func:`os.set_handle_inheritable` when passed to the :class:`Popen` " -"constructor, else :class:`OSError` will be raised with Windows error " -"``ERROR_INVALID_PARAMETER`` (87)." +msgid "The handles must be temporarily made inheritable by :func:`os.set_handle_inheritable` when passed to the :class:`Popen` constructor, else :class:`OSError` will be raised with Windows error ``ERROR_INVALID_PARAMETER`` (87)." msgstr "" -#: ../../library/subprocess.rst:1043 -msgid "" -"In a multithreaded process, use caution to avoid leaking handles that are " -"marked inheritable when combining this feature with concurrent calls to " -"other process creation functions that inherit all handles such " -"as :func:`os.system`. This also applies to standard handle redirection, " -"which temporarily creates inheritable handles." +msgid "In a multithreaded process, use caution to avoid leaking handles that are marked inheritable when combining this feature with concurrent calls to other process creation functions that inherit all handles such as :func:`os.system`. This also applies to standard handle redirection, which temporarily creates inheritable handles." msgstr "" -#: ../../library/subprocess.rst:1053 msgid "Windows Constants" msgstr "" -#: ../../library/subprocess.rst:1055 msgid "The :mod:`!subprocess` module exposes the following constants." msgstr "" -#: ../../library/subprocess.rst:1059 -msgid "" -"The standard input device. Initially, this is the console input buffer, " -"``CONIN$``." +msgid "The standard input device. Initially, this is the console input buffer, ``CONIN$``." msgstr "" -#: ../../library/subprocess.rst:1064 -msgid "" -"The standard output device. Initially, this is the active console screen " -"buffer, ``CONOUT$``." +msgid "The standard output device. Initially, this is the active console screen buffer, ``CONOUT$``." msgstr "" -#: ../../library/subprocess.rst:1069 -msgid "" -"The standard error device. Initially, this is the active console screen " -"buffer, ``CONOUT$``." +msgid "The standard error device. Initially, this is the active console screen buffer, ``CONOUT$``." msgstr "" -#: ../../library/subprocess.rst:1074 msgid "Hides the window. Another window will be activated." msgstr "" -#: ../../library/subprocess.rst:1078 -msgid "" -"Specifies that " -"the :attr:`STARTUPINFO.hStdInput`, :attr:`STARTUPINFO.hStdOutput`, " -"and :attr:`STARTUPINFO.hStdError` attributes contain additional information." +msgid "Specifies that the :attr:`STARTUPINFO.hStdInput`, :attr:`STARTUPINFO.hStdOutput`, and :attr:`STARTUPINFO.hStdError` attributes contain additional information." msgstr "" -#: ../../library/subprocess.rst:1084 -msgid "" -"Specifies that the :attr:`STARTUPINFO.wShowWindow` attribute contains " -"additional information." +msgid "Specifies that the :attr:`STARTUPINFO.wShowWindow` attribute contains additional information." msgstr "" -#: ../../library/subprocess.rst:1089 -msgid "" -"A :attr:`STARTUPINFO.dwFlags` parameter to specify that the *Working in " -"Background* mouse cursor will be displayed while a process is launching. " -"This is the default behavior for GUI processes." +msgid "A :attr:`STARTUPINFO.dwFlags` parameter to specify that the *Working in Background* mouse cursor will be displayed while a process is launching. This is the default behavior for GUI processes." msgstr "" -#: ../../library/subprocess.rst:1098 -msgid "" -"A :attr:`STARTUPINFO.dwFlags` parameter to specify that the mouse cursor " -"will not be changed when launching a process." +msgid "A :attr:`STARTUPINFO.dwFlags` parameter to specify that the mouse cursor will not be changed when launching a process." msgstr "" -#: ../../library/subprocess.rst:1105 -msgid "" -"The new process has a new console, instead of inheriting its parent's " -"console (the default)." +msgid "The new process has a new console, instead of inheriting its parent's console (the default)." msgstr "" -#: ../../library/subprocess.rst:1110 -msgid "" -"A :class:`Popen` ``creationflags`` parameter to specify that a new process " -"group will be created. This flag is necessary for using :func:`os.kill` on " -"the subprocess." +msgid "A :class:`Popen` ``creationflags`` parameter to specify that a new process group will be created. This flag is necessary for using :func:`os.kill` on the subprocess." msgstr "" -#: ../../library/subprocess.rst:1114 msgid "This flag is ignored if :data:`CREATE_NEW_CONSOLE` is specified." msgstr "" -#: ../../library/subprocess.rst:1118 -msgid "" -"A :class:`Popen` ``creationflags`` parameter to specify that a new process " -"will have an above average priority." +msgid "A :class:`Popen` ``creationflags`` parameter to specify that a new process will have an above average priority." msgstr "" -#: ../../library/subprocess.rst:1125 -msgid "" -"A :class:`Popen` ``creationflags`` parameter to specify that a new process " -"will have a below average priority." +msgid "A :class:`Popen` ``creationflags`` parameter to specify that a new process will have a below average priority." msgstr "" -#: ../../library/subprocess.rst:1132 -msgid "" -"A :class:`Popen` ``creationflags`` parameter to specify that a new process " -"will have a high priority." +msgid "A :class:`Popen` ``creationflags`` parameter to specify that a new process will have a high priority." msgstr "" -#: ../../library/subprocess.rst:1139 -msgid "" -"A :class:`Popen` ``creationflags`` parameter to specify that a new process " -"will have an idle (lowest) priority." +msgid "A :class:`Popen` ``creationflags`` parameter to specify that a new process will have an idle (lowest) priority." msgstr "" -#: ../../library/subprocess.rst:1146 -msgid "" -"A :class:`Popen` ``creationflags`` parameter to specify that a new process " -"will have a normal priority. (default)" +msgid "A :class:`Popen` ``creationflags`` parameter to specify that a new process will have a normal priority. (default)" msgstr "" -#: ../../library/subprocess.rst:1153 -msgid "" -"A :class:`Popen` ``creationflags`` parameter to specify that a new process " -"will have realtime priority. You should almost never use " -"REALTIME_PRIORITY_CLASS, because this interrupts system threads that manage " -"mouse input, keyboard input, and background disk flushing. This class can be " -"appropriate for applications that \"talk\" directly to hardware or that " -"perform brief tasks that should have limited interruptions." +msgid "A :class:`Popen` ``creationflags`` parameter to specify that a new process will have realtime priority. You should almost never use REALTIME_PRIORITY_CLASS, because this interrupts system threads that manage mouse input, keyboard input, and background disk flushing. This class can be appropriate for applications that \"talk\" directly to hardware or that perform brief tasks that should have limited interruptions." msgstr "" -#: ../../library/subprocess.rst:1164 -msgid "" -"A :class:`Popen` ``creationflags`` parameter to specify that a new process " -"will not create a window." +msgid "A :class:`Popen` ``creationflags`` parameter to specify that a new process will not create a window." msgstr "" -#: ../../library/subprocess.rst:1171 -msgid "" -"A :class:`Popen` ``creationflags`` parameter to specify that a new process " -"will not inherit its parent's console. This value cannot be used with " -"CREATE_NEW_CONSOLE." +msgid "A :class:`Popen` ``creationflags`` parameter to specify that a new process will not inherit its parent's console. This value cannot be used with CREATE_NEW_CONSOLE." msgstr "" -#: ../../library/subprocess.rst:1179 -msgid "" -"A :class:`Popen` ``creationflags`` parameter to specify that a new process " -"does not inherit the error mode of the calling process. Instead, the new " -"process gets the default error mode. This feature is particularly useful for " -"multithreaded shell applications that run with hard errors disabled." +msgid "A :class:`Popen` ``creationflags`` parameter to specify that a new process does not inherit the error mode of the calling process. Instead, the new process gets the default error mode. This feature is particularly useful for multithreaded shell applications that run with hard errors disabled." msgstr "" -#: ../../library/subprocess.rst:1189 -msgid "" -"A :class:`Popen` ``creationflags`` parameter to specify that a new process " -"is not associated with the job." +msgid "A :class:`Popen` ``creationflags`` parameter to specify that a new process is not associated with the job." msgstr "" -#: ../../library/subprocess.rst:1197 msgid "Older high-level API" msgstr "" -#: ../../library/subprocess.rst:1199 -msgid "" -"Prior to Python 3.5, these three functions comprised the high level API to " -"subprocess. You can now use :func:`run` in many cases, but lots of existing " -"code calls these functions." +msgid "Prior to Python 3.5, these three functions comprised the high level API to subprocess. You can now use :func:`run` in many cases, but lots of existing code calls these functions." msgstr "" -#: ../../library/subprocess.rst:1206 -msgid "" -"Run the command described by *args*. Wait for command to complete, then " -"return the :attr:`~Popen.returncode` attribute." +msgid "Run the command described by *args*. Wait for command to complete, then return the :attr:`~Popen.returncode` attribute." msgstr "" -#: ../../library/subprocess.rst:1209 ../../library/subprocess.rst:1249 -msgid "" -"Code needing to capture stdout or stderr should use :func:`run` instead::" +msgid "Code needing to capture stdout or stderr should use :func:`run` instead::" msgstr "" -#: ../../library/subprocess.rst:1211 msgid "run(...).returncode" msgstr "" -#: ../../library/subprocess.rst:1213 ../../library/subprocess.rst:1253 msgid "To suppress stdout or stderr, supply a value of :data:`DEVNULL`." msgstr "" -#: ../../library/subprocess.rst:1215 ../../library/subprocess.rst:1255 -msgid "" -"The arguments shown above are merely some common ones. The full function " -"signature is the same as that of the :class:`Popen` constructor - this " -"function passes all supplied arguments other than *timeout* directly through " -"to that interface." +msgid "The arguments shown above are merely some common ones. The full function signature is the same as that of the :class:`Popen` constructor - this function passes all supplied arguments other than *timeout* directly through to that interface." msgstr "" -#: ../../library/subprocess.rst:1222 ../../library/subprocess.rst:1262 -msgid "" -"Do not use ``stdout=PIPE`` or ``stderr=PIPE`` with this function. The child " -"process will block if it generates enough output to a pipe to fill up the OS " -"pipe buffer as the pipes are not being read from." +msgid "Do not use ``stdout=PIPE`` or ``stderr=PIPE`` with this function. The child process will block if it generates enough output to a pipe to fill up the OS pipe buffer as the pipes are not being read from." msgstr "" -#: ../../library/subprocess.rst:1242 -msgid "" -"Run command with arguments. Wait for command to complete. If the return " -"code was zero then return, otherwise raise :exc:`CalledProcessError`. " -"The :exc:`CalledProcessError` object will have the return code in " -"the :attr:`~CalledProcessError.returncode` attribute. If :func:`check_call` " -"was unable to start the process it will propagate the exception that was " -"raised." +msgid "Run command with arguments. Wait for command to complete. If the return code was zero then return, otherwise raise :exc:`CalledProcessError`. The :exc:`CalledProcessError` object will have the return code in the :attr:`~CalledProcessError.returncode` attribute. If :func:`check_call` was unable to start the process it will propagate the exception that was raised." msgstr "" -#: ../../library/subprocess.rst:1251 msgid "run(..., check=True)" msgstr "" -#: ../../library/subprocess.rst:1284 msgid "Run command with arguments and return its output." msgstr "" -#: ../../library/subprocess.rst:1286 -msgid "" -"If the return code was non-zero it raises a :exc:`CalledProcessError`. " -"The :exc:`CalledProcessError` object will have the return code in " -"the :attr:`~CalledProcessError.returncode` attribute and any output in " -"the :attr:`~CalledProcessError.output` attribute." +msgid "If the return code was non-zero it raises a :exc:`CalledProcessError`. The :exc:`CalledProcessError` object will have the return code in the :attr:`~CalledProcessError.returncode` attribute and any output in the :attr:`~CalledProcessError.output` attribute." msgstr "" -#: ../../library/subprocess.rst:1291 msgid "This is equivalent to::" msgstr "" -#: ../../library/subprocess.rst:1293 msgid "run(..., check=True, stdout=PIPE).stdout" msgstr "" -#: ../../library/subprocess.rst:1295 -msgid "" -"The arguments shown above are merely some common ones. The full function " -"signature is largely the same as that of :func:`run` - most arguments are " -"passed directly through to that interface. One API deviation " -"from :func:`run` behavior exists: passing ``input=None`` will behave the " -"same as ``input=b''`` (or ``input=''``, depending on other arguments) rather " -"than using the parent's standard input file handle." +msgid "The arguments shown above are merely some common ones. The full function signature is largely the same as that of :func:`run` - most arguments are passed directly through to that interface. One API deviation from :func:`run` behavior exists: passing ``input=None`` will behave the same as ``input=b''`` (or ``input=''``, depending on other arguments) rather than using the parent's standard input file handle." msgstr "" -#: ../../library/subprocess.rst:1302 -msgid "" -"By default, this function will return the data as encoded bytes. The actual " -"encoding of the output data may depend on the command being invoked, so the " -"decoding to text will often need to be handled at the application level." +msgid "By default, this function will return the data as encoded bytes. The actual encoding of the output data may depend on the command being invoked, so the decoding to text will often need to be handled at the application level." msgstr "" -#: ../../library/subprocess.rst:1306 -msgid "" -"This behaviour may be overridden by setting *text*, *encoding*, *errors*, or " -"*universal_newlines* to ``True`` as described in :ref:`frequently-used-" -"arguments` and :func:`run`." +msgid "This behaviour may be overridden by setting *text*, *encoding*, *errors*, or *universal_newlines* to ``True`` as described in :ref:`frequently-used-arguments` and :func:`run`." msgstr "" -#: ../../library/subprocess.rst:1310 -msgid "" -"To also capture standard error in the result, use " -"``stderr=subprocess.STDOUT``::" +msgid "To also capture standard error in the result, use ``stderr=subprocess.STDOUT``::" msgstr "" -#: ../../library/subprocess.rst:1313 msgid "" ">>> subprocess.check_output(\n" "... \"ls non_existent_file; exit 0\",\n" @@ -1632,71 +787,45 @@ msgid "" "'ls: non_existent_file: No such file or directory\\n'" msgstr "" -#: ../../library/subprocess.rst:1324 msgid "Support for the *input* keyword argument was added." msgstr "" -#: ../../library/subprocess.rst:1327 msgid "*encoding* and *errors* were added. See :func:`run` for details." msgstr "" -#: ../../library/subprocess.rst:1345 msgid "Replacing Older Functions with the :mod:`!subprocess` Module" msgstr "" -#: ../../library/subprocess.rst:1347 -msgid "" -"In this section, \"a becomes b\" means that b can be used as a replacement " -"for a." +msgid "In this section, \"a becomes b\" means that b can be used as a replacement for a." msgstr "" -#: ../../library/subprocess.rst:1351 -msgid "" -"All \"a\" functions in this section fail (more or less) silently if the " -"executed program cannot be found; the \"b\" replacements " -"raise :exc:`OSError` instead." +msgid "All \"a\" functions in this section fail (more or less) silently if the executed program cannot be found; the \"b\" replacements raise :exc:`OSError` instead." msgstr "" -#: ../../library/subprocess.rst:1355 -msgid "" -"In addition, the replacements using :func:`check_output` will fail with " -"a :exc:`CalledProcessError` if the requested operation produces a non-zero " -"return code. The output is still available as " -"the :attr:`~CalledProcessError.output` attribute of the raised exception." +msgid "In addition, the replacements using :func:`check_output` will fail with a :exc:`CalledProcessError` if the requested operation produces a non-zero return code. The output is still available as the :attr:`~CalledProcessError.output` attribute of the raised exception." msgstr "" -#: ../../library/subprocess.rst:1360 -msgid "" -"In the following examples, we assume that the relevant functions have " -"already been imported from the :mod:`!subprocess` module." +msgid "In the following examples, we assume that the relevant functions have already been imported from the :mod:`!subprocess` module." msgstr "" -#: ../../library/subprocess.rst:1365 msgid "Replacing :program:`/bin/sh` shell command substitution" msgstr "" -#: ../../library/subprocess.rst:1367 msgid "output=$(mycmd myarg)" msgstr "" -#: ../../library/subprocess.rst:1371 ../../library/subprocess.rst:1382 -#: ../../library/subprocess.rst:1399 msgid "becomes::" msgstr "" -#: ../../library/subprocess.rst:1373 msgid "output = check_output([\"mycmd\", \"myarg\"])" msgstr "" -#: ../../library/subprocess.rst:1376 msgid "Replacing shell pipeline" msgstr "" -#: ../../library/subprocess.rst:1378 ../../library/subprocess.rst:1395 msgid "output=$(dmesg | grep hda)" msgstr "" -#: ../../library/subprocess.rst:1384 msgid "" "p1 = Popen([\"dmesg\"], stdout=PIPE)\n" "p2 = Popen([\"grep\", \"hda\"], stdin=p1.stdout, stdout=PIPE)\n" @@ -1704,128 +833,95 @@ msgid "" "output = p2.communicate()[0]" msgstr "" -#: ../../library/subprocess.rst:1389 -msgid "" -"The ``p1.stdout.close()`` call after starting the p2 is important in order " -"for p1 to receive a SIGPIPE if p2 exits before p1." +msgid "The ``p1.stdout.close()`` call after starting the p2 is important in order for p1 to receive a SIGPIPE if p2 exits before p1." msgstr "" -#: ../../library/subprocess.rst:1392 -msgid "" -"Alternatively, for trusted input, the shell's own pipeline support may still " -"be used directly:" +msgid "Alternatively, for trusted input, the shell's own pipeline support may still be used directly:" msgstr "" -#: ../../library/subprocess.rst:1401 msgid "output = check_output(\"dmesg | grep hda\", shell=True)" msgstr "" -#: ../../library/subprocess.rst:1405 msgid "Replacing :func:`os.system`" msgstr "" -#: ../../library/subprocess.rst:1409 msgid "" "sts = os.system(\"mycmd\" + \" myarg\")\n" "# becomes\n" "retcode = call(\"mycmd\" + \" myarg\", shell=True)" msgstr "" -#: ../../library/subprocess.rst:1413 msgid "Notes:" msgstr "" -#: ../../library/subprocess.rst:1415 msgid "Calling the program through the shell is usually not required." msgstr "" -#: ../../library/subprocess.rst:1416 -msgid "" -"The :func:`call` return value is encoded differently to that " -"of :func:`os.system`." +msgid "The :func:`call` return value is encoded differently to that of :func:`os.system`." msgstr "" -#: ../../library/subprocess.rst:1419 -msgid "" -"The :func:`os.system` function ignores SIGINT and SIGQUIT signals while the " -"command is running, but the caller must do this separately when using " -"the :mod:`!subprocess` module." +msgid "The :func:`os.system` function ignores SIGINT and SIGQUIT signals while the command is running, but the caller must do this separately when using the :mod:`!subprocess` module." msgstr "" -#: ../../library/subprocess.rst:1423 msgid "A more realistic example would look like this::" msgstr "" -#: ../../library/subprocess.rst:1425 msgid "" "try:\n" " retcode = call(\"mycmd\" + \" myarg\", shell=True)\n" " if retcode < 0:\n" -" print(\"Child was terminated by signal\", -retcode, " -"file=sys.stderr)\n" +" print(\"Child was terminated by signal\", -retcode, file=sys.stderr)\n" " else:\n" " print(\"Child returned\", retcode, file=sys.stderr)\n" "except OSError as e:\n" " print(\"Execution failed:\", e, file=sys.stderr)" msgstr "" -#: ../../library/subprocess.rst:1436 msgid "Replacing the :func:`os.spawn ` family" msgstr "" -#: ../../library/subprocess.rst:1438 msgid "P_NOWAIT example::" msgstr "" -#: ../../library/subprocess.rst:1440 msgid "" "pid = os.spawnlp(os.P_NOWAIT, \"/bin/mycmd\", \"mycmd\", \"myarg\")\n" "==>\n" "pid = Popen([\"/bin/mycmd\", \"myarg\"]).pid" msgstr "" -#: ../../library/subprocess.rst:1444 msgid "P_WAIT example::" msgstr "" -#: ../../library/subprocess.rst:1446 msgid "" "retcode = os.spawnlp(os.P_WAIT, \"/bin/mycmd\", \"mycmd\", \"myarg\")\n" "==>\n" "retcode = call([\"/bin/mycmd\", \"myarg\"])" msgstr "" -#: ../../library/subprocess.rst:1450 msgid "Vector example::" msgstr "" -#: ../../library/subprocess.rst:1452 msgid "" "os.spawnvp(os.P_NOWAIT, path, args)\n" "==>\n" "Popen([path] + args[1:])" msgstr "" -#: ../../library/subprocess.rst:1456 msgid "Environment example::" msgstr "" -#: ../../library/subprocess.rst:1458 msgid "" "os.spawnlpe(os.P_NOWAIT, \"/bin/mycmd\", \"mycmd\", \"myarg\", env)\n" "==>\n" "Popen([\"/bin/mycmd\", \"myarg\"], env={\"PATH\": \"/usr/bin\"})" msgstr "" -#: ../../library/subprocess.rst:1465 msgid "Replacing :func:`os.popen`" msgstr "" -#: ../../library/subprocess.rst:1467 msgid "Return code handling translates as follows::" msgstr "" -#: ../../library/subprocess.rst:1469 msgid "" "pipe = os.popen(cmd, 'w')\n" "...\n" @@ -1840,36 +936,21 @@ msgid "" " print(\"There were some errors\")" msgstr "" -#: ../../library/subprocess.rst:1483 msgid "Legacy Shell Invocation Functions" msgstr "" -#: ../../library/subprocess.rst:1485 -msgid "" -"This module also provides the following legacy functions from the 2.x " -"``commands`` module. These operations implicitly invoke the system shell and " -"none of the guarantees described above regarding security and exception " -"handling consistency are valid for these functions." +msgid "This module also provides the following legacy functions from the 2.x ``commands`` module. These operations implicitly invoke the system shell and none of the guarantees described above regarding security and exception handling consistency are valid for these functions." msgstr "" -#: ../../library/subprocess.rst:1492 msgid "Return ``(exitcode, output)`` of executing *cmd* in a shell." msgstr "" -#: ../../library/subprocess.rst:1494 -msgid "" -"Execute the string *cmd* in a shell with :func:`check_output` and return a 2-" -"tuple ``(exitcode, output)``. *encoding* and *errors* are used to decode " -"output; see the notes on :ref:`frequently-used-arguments` for more details." +msgid "Execute the string *cmd* in a shell with :func:`check_output` and return a 2-tuple ``(exitcode, output)``. *encoding* and *errors* are used to decode output; see the notes on :ref:`frequently-used-arguments` for more details." msgstr "" -#: ../../library/subprocess.rst:1499 -msgid "" -"A trailing newline is stripped from the output. The exit code for the " -"command can be interpreted as the return code of subprocess. Example::" +msgid "A trailing newline is stripped from the output. The exit code for the command can be interpreted as the return code of subprocess. Example::" msgstr "" -#: ../../library/subprocess.rst:1503 msgid "" ">>> subprocess.getstatusoutput('ls /bin/ls')\n" "(0, '/bin/ls')\n" @@ -1881,157 +962,88 @@ msgid "" "(-15, '')" msgstr "" -#: ../../library/subprocess.rst:1514 msgid "Windows support was added." msgstr "" -#: ../../library/subprocess.rst:1517 -msgid "" -"The function now returns (exitcode, output) instead of (status, output) as " -"it did in Python 3.3.3 and earlier. exitcode has the same value " -"as :attr:`~Popen.returncode`." +msgid "The function now returns (exitcode, output) instead of (status, output) as it did in Python 3.3.3 and earlier. exitcode has the same value as :attr:`~Popen.returncode`." msgstr "" -#: ../../library/subprocess.rst:1526 msgid "Return output (stdout and stderr) of executing *cmd* in a shell." msgstr "" -#: ../../library/subprocess.rst:1528 -msgid "" -"Like :func:`getstatusoutput`, except the exit code is ignored and the return " -"value is a string containing the command's output. Example::" +msgid "Like :func:`getstatusoutput`, except the exit code is ignored and the return value is a string containing the command's output. Example::" msgstr "" -#: ../../library/subprocess.rst:1531 msgid "" ">>> subprocess.getoutput('ls /bin/ls')\n" "'/bin/ls'" msgstr "" -#: ../../library/subprocess.rst:1536 msgid "Windows support added" msgstr "" -#: ../../library/subprocess.rst:1544 msgid "Notes" msgstr "" -#: ../../library/subprocess.rst:1549 msgid "Timeout Behavior" msgstr "" -#: ../../library/subprocess.rst:1551 -msgid "" -"When using the ``timeout`` parameter in functions " -"like :func:`run`, :meth:`Popen.wait`, or :meth:`Popen.communicate`, users " -"should be aware of the following behaviors:" +msgid "When using the ``timeout`` parameter in functions like :func:`run`, :meth:`Popen.wait`, or :meth:`Popen.communicate`, users should be aware of the following behaviors:" msgstr "" -#: ../../library/subprocess.rst:1555 -msgid "" -"**Process Creation Delay**: The initial process creation itself cannot be " -"interrupted on many platform APIs. This means that even when specifying a " -"timeout, you are not guaranteed to see a timeout exception until at least " -"after however long process creation takes." +msgid "**Process Creation Delay**: The initial process creation itself cannot be interrupted on many platform APIs. This means that even when specifying a timeout, you are not guaranteed to see a timeout exception until at least after however long process creation takes." msgstr "" -#: ../../library/subprocess.rst:1560 -msgid "" -"**Extremely Small Timeout Values**: Setting very small timeout values (such " -"as a few milliseconds) may result in almost immediate :exc:`TimeoutExpired` " -"exceptions because process creation and system scheduling inherently require " -"time." +msgid "**Extremely Small Timeout Values**: Setting very small timeout values (such as a few milliseconds) may result in almost immediate :exc:`TimeoutExpired` exceptions because process creation and system scheduling inherently require time." msgstr "" -#: ../../library/subprocess.rst:1567 msgid "Converting an argument sequence to a string on Windows" msgstr "" -#: ../../library/subprocess.rst:1569 -msgid "" -"On Windows, an *args* sequence is converted to a string that can be parsed " -"using the following rules (which correspond to the rules used by the MS C " -"runtime):" +msgid "On Windows, an *args* sequence is converted to a string that can be parsed using the following rules (which correspond to the rules used by the MS C runtime):" msgstr "" -#: ../../library/subprocess.rst:1573 -msgid "" -"Arguments are delimited by white space, which is either a space or a tab." +msgid "Arguments are delimited by white space, which is either a space or a tab." msgstr "" -#: ../../library/subprocess.rst:1576 -msgid "" -"A string surrounded by double quotation marks is interpreted as a single " -"argument, regardless of white space contained within. A quoted string can " -"be embedded in an argument." +msgid "A string surrounded by double quotation marks is interpreted as a single argument, regardless of white space contained within. A quoted string can be embedded in an argument." msgstr "" -#: ../../library/subprocess.rst:1581 -msgid "" -"A double quotation mark preceded by a backslash is interpreted as a literal " -"double quotation mark." +msgid "A double quotation mark preceded by a backslash is interpreted as a literal double quotation mark." msgstr "" -#: ../../library/subprocess.rst:1584 -msgid "" -"Backslashes are interpreted literally, unless they immediately precede a " -"double quotation mark." +msgid "Backslashes are interpreted literally, unless they immediately precede a double quotation mark." msgstr "" -#: ../../library/subprocess.rst:1587 -msgid "" -"If backslashes immediately precede a double quotation mark, every pair of " -"backslashes is interpreted as a literal backslash. If the number of " -"backslashes is odd, the last backslash escapes the next double quotation " -"mark as described in rule 3." +msgid "If backslashes immediately precede a double quotation mark, every pair of backslashes is interpreted as a literal backslash. If the number of backslashes is odd, the last backslash escapes the next double quotation mark as described in rule 3." msgstr "" -#: ../../library/subprocess.rst:1596 msgid ":mod:`shlex`" msgstr "" -#: ../../library/subprocess.rst:1597 msgid "Module which provides function to parse and escape command lines." msgstr "" -#: ../../library/subprocess.rst:1603 msgid "Disable use of ``posix_spawn()``" msgstr "" -#: ../../library/subprocess.rst:1605 -msgid "" -"On Linux, :mod:`!subprocess` defaults to using the ``vfork()`` system call " -"internally when it is safe to do so rather than ``fork()``. This greatly " -"improves performance." +msgid "On Linux, :mod:`!subprocess` defaults to using the ``vfork()`` system call internally when it is safe to do so rather than ``fork()``. This greatly improves performance." msgstr "" -#: ../../library/subprocess.rst:1611 msgid "subprocess._USE_POSIX_SPAWN = False # See CPython issue gh-NNNNNN." msgstr "" -#: ../../library/subprocess.rst:1613 -msgid "" -"It is safe to set this to false on any Python version. It will have no " -"effect on older or newer versions where unsupported. Do not assume the " -"attribute is available to read. Despite the name, a true value does not " -"indicate the corresponding function will be used, only that it may be." +msgid "It is safe to set this to false on any Python version. It will have no effect on older or newer versions where unsupported. Do not assume the attribute is available to read. Despite the name, a true value does not indicate the corresponding function will be used, only that it may be." msgstr "" -#: ../../library/subprocess.rst:1618 -msgid "" -"Please file issues any time you have to use these private knobs with a way " -"to reproduce the issue you were seeing. Link to that issue from a comment in " -"your code." +msgid "Please file issues any time you have to use these private knobs with a way to reproduce the issue you were seeing. Link to that issue from a comment in your code." msgstr "" -#: ../../library/subprocess.rst:1622 msgid "``_USE_POSIX_SPAWN``" msgstr "" -#: ../../library/subprocess.rst:296 msgid "universal newlines" msgstr "" -#: ../../library/subprocess.rst:296 msgid "subprocess module" msgstr "" diff --git a/library/sunau.po b/library/sunau.po index 1531c2f0..c857affe 100644 --- a/library/sunau.po +++ b/library/sunau.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2024-11-19 01:03+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,19 +21,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/sunau.rst:2 msgid ":mod:`!sunau` --- Read and write Sun AU files" msgstr "" -#: ../../library/sunau.rst:10 -msgid "" -"This module is no longer part of the Python standard library. It " -"was :ref:`removed in Python 3.13 ` after being " -"deprecated in Python 3.11. The removal was decided in :pep:`594`." +msgid "This module is no longer part of the Python standard library. It was :ref:`removed in Python 3.13 ` after being deprecated in Python 3.11. The removal was decided in :pep:`594`." msgstr "" -#: ../../library/sunau.rst:14 -msgid "" -"The last version of Python that provided the :mod:`!sunau` module was " -"`Python 3.12 `_." +msgid "The last version of Python that provided the :mod:`!sunau` module was `Python 3.12 `_." msgstr "" diff --git a/library/superseded.po b/library/superseded.po index 63ed1123..49b50570 100644 --- a/library/superseded.po +++ b/library/superseded.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:14+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,32 +21,14 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/superseded.rst:5 msgid "Superseded Modules" msgstr "" -#: ../../library/superseded.rst:7 -msgid "" -"The modules described in this chapter have been superseded by other modules " -"for most use cases, and are retained primarily to preserve backwards " -"compatibility." +msgid "The modules described in this chapter have been superseded by other modules for most use cases, and are retained primarily to preserve backwards compatibility." msgstr "" -#: ../../library/superseded.rst:10 -msgid "" -"Modules may appear in this chapter because they only cover a limited subset " -"of a problem space, and a more generally applicable solution is available " -"elsewhere in the standard library (for example, :mod:`getopt` covers the " -"very specific task of \"mimic the C :c:func:`!getopt` API in Python\", " -"rather than the broader command line option parsing and argument parsing " -"capabilities offered by :mod:`optparse` and :mod:`argparse`)." +msgid "Modules may appear in this chapter because they only cover a limited subset of a problem space, and a more generally applicable solution is available elsewhere in the standard library (for example, :mod:`getopt` covers the very specific task of \"mimic the C :c:func:`!getopt` API in Python\", rather than the broader command line option parsing and argument parsing capabilities offered by :mod:`optparse` and :mod:`argparse`)." msgstr "" -#: ../../library/superseded.rst:17 -msgid "" -"Alternatively, modules may appear in this chapter because they are " -"deprecated outright, and awaiting removal in a future release, or they " -"are :term:`soft deprecated` and their use is actively discouraged in new " -"projects. With the removal of various obsolete modules through :pep:`594`, " -"there are currently no modules in this latter category." +msgid "Alternatively, modules may appear in this chapter because they are deprecated outright, and awaiting removal in a future release, or they are :term:`soft deprecated` and their use is actively discouraged in new projects. With the removal of various obsolete modules through :pep:`594`, there are currently no modules in this latter category." msgstr "" diff --git a/library/symtable.po b/library/symtable.po index 5448d42a..9bd18ce4 100644 --- a/library/symtable.po +++ b/library/symtable.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:14+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,217 +23,129 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/symtable.rst:2 msgid ":mod:`!symtable` --- Access to the compiler's symbol tables" msgstr "" -#: ../../library/symtable.rst:7 msgid "**Source code:** :source:`Lib/symtable.py`" msgstr "" -#: ../../library/symtable.rst:15 -msgid "" -"Symbol tables are generated by the compiler from AST just before bytecode is " -"generated. The symbol table is responsible for calculating the scope of " -"every identifier in the code. :mod:`!symtable` provides an interface to " -"examine these tables." +msgid "Symbol tables are generated by the compiler from AST just before bytecode is generated. The symbol table is responsible for calculating the scope of every identifier in the code. :mod:`!symtable` provides an interface to examine these tables." msgstr "" -#: ../../library/symtable.rst:22 msgid "Generating Symbol Tables" msgstr "" -#: ../../library/symtable.rst:26 -msgid "" -"Return the toplevel :class:`SymbolTable` for the Python source *code*. " -"*filename* is the name of the file containing the code. *compile_type* is " -"like the *mode* argument to :func:`compile`." +msgid "Return the toplevel :class:`SymbolTable` for the Python source *code*. *filename* is the name of the file containing the code. *compile_type* is like the *mode* argument to :func:`compile`." msgstr "" -#: ../../library/symtable.rst:32 msgid "Examining Symbol Tables" msgstr "" -#: ../../library/symtable.rst:36 msgid "An enumeration indicating the type of a :class:`SymbolTable` object." msgstr "" -#: ../../library/symtable.rst:41 msgid "Used for the symbol table of a module." msgstr "" -#: ../../library/symtable.rst:46 msgid "Used for the symbol table of a function." msgstr "" -#: ../../library/symtable.rst:51 msgid "Used for the symbol table of a class." msgstr "" -#: ../../library/symtable.rst:53 -msgid "" -"The following members refer to different flavors of :ref:`annotation scopes " -"`." +msgid "The following members refer to different flavors of :ref:`annotation scopes `." msgstr "" -#: ../../library/symtable.rst:59 -msgid "" -"Used for annotations if ``from __future__ import annotations`` is active." +msgid "Used for annotations if ``from __future__ import annotations`` is active." msgstr "" -#: ../../library/symtable.rst:64 msgid "Used for the symbol table of :keyword:`type` constructions." msgstr "" -#: ../../library/symtable.rst:69 -msgid "" -"Used for the symbol table of :ref:`generic functions ` " -"or :ref:`generic classes `." +msgid "Used for the symbol table of :ref:`generic functions ` or :ref:`generic classes `." msgstr "" -#: ../../library/symtable.rst:75 -msgid "" -"Used for the symbol table of the bound, the constraint tuple or the default " -"value of a single type variable in the formal sense, i.e., a TypeVar, a " -"TypeVarTuple or a ParamSpec object (the latter two do not support a bound or " -"a constraint tuple)." +msgid "Used for the symbol table of the bound, the constraint tuple or the default value of a single type variable in the formal sense, i.e., a TypeVar, a TypeVarTuple or a ParamSpec object (the latter two do not support a bound or a constraint tuple)." msgstr "" -#: ../../library/symtable.rst:84 msgid "A namespace table for a block. The constructor is not public." msgstr "" -#: ../../library/symtable.rst:88 -msgid "" -"Return the type of the symbol table. Possible values are members of " -"the :class:`SymbolTableType` enumeration." +msgid "Return the type of the symbol table. Possible values are members of the :class:`SymbolTableType` enumeration." msgstr "" -#: ../../library/symtable.rst:91 -msgid "" -"Added ``'annotation'``, ``'TypeVar bound'``, ``'type alias'``, and ``'type " -"parameter'`` as possible return values." +msgid "Added ``'annotation'``, ``'TypeVar bound'``, ``'type alias'``, and ``'type parameter'`` as possible return values." msgstr "" -#: ../../library/symtable.rst:95 msgid "Return values are members of the :class:`SymbolTableType` enumeration." msgstr "" -#: ../../library/symtable.rst:98 -msgid "" -"The exact values of the returned string may change in the future, and thus, " -"it is recommended to use :class:`SymbolTableType` members instead of hard-" -"coded strings." +msgid "The exact values of the returned string may change in the future, and thus, it is recommended to use :class:`SymbolTableType` members instead of hard-coded strings." msgstr "" -#: ../../library/symtable.rst:104 msgid "Return the table's identifier." msgstr "" -#: ../../library/symtable.rst:108 -msgid "" -"Return the table's name. This is the name of the class if the table is for " -"a class, the name of the function if the table is for a function, or " -"``'top'`` if the table is global (:meth:`get_type` returns ``'module'``). " -"For type parameter scopes (which are used for generic classes, functions, " -"and type aliases), it is the name of the underlying class, function, or type " -"alias. For type alias scopes, it is the name of the type alias. " -"For :class:`~typing.TypeVar` bound scopes, it is the name of the ``TypeVar``." +msgid "Return the table's name. This is the name of the class if the table is for a class, the name of the function if the table is for a function, or ``'top'`` if the table is global (:meth:`get_type` returns ``'module'``). For type parameter scopes (which are used for generic classes, functions, and type aliases), it is the name of the underlying class, function, or type alias. For type alias scopes, it is the name of the type alias. For :class:`~typing.TypeVar` bound scopes, it is the name of the ``TypeVar``." msgstr "" -#: ../../library/symtable.rst:118 msgid "Return the number of the first line in the block this table represents." msgstr "" -#: ../../library/symtable.rst:122 msgid "Return ``True`` if the locals in this table can be optimized." msgstr "" -#: ../../library/symtable.rst:126 msgid "Return ``True`` if the block is a nested class or function." msgstr "" -#: ../../library/symtable.rst:130 -msgid "" -"Return ``True`` if the block has nested namespaces within it. These can be " -"obtained with :meth:`get_children`." +msgid "Return ``True`` if the block has nested namespaces within it. These can be obtained with :meth:`get_children`." msgstr "" -#: ../../library/symtable.rst:135 -msgid "" -"Return a view object containing the names of symbols in the table. See " -"the :ref:`documentation of view objects `." +msgid "Return a view object containing the names of symbols in the table. See the :ref:`documentation of view objects `." msgstr "" -#: ../../library/symtable.rst:140 msgid "Lookup *name* in the table and return a :class:`Symbol` instance." msgstr "" -#: ../../library/symtable.rst:144 msgid "Return a list of :class:`Symbol` instances for names in the table." msgstr "" -#: ../../library/symtable.rst:148 msgid "Return a list of the nested symbol tables." msgstr "" -#: ../../library/symtable.rst:153 -msgid "" -"A namespace for a function or method. This class inherits " -"from :class:`SymbolTable`." +msgid "A namespace for a function or method. This class inherits from :class:`SymbolTable`." msgstr "" -#: ../../library/symtable.rst:158 msgid "Return a tuple containing names of parameters to this function." msgstr "" -#: ../../library/symtable.rst:162 msgid "Return a tuple containing names of locals in this function." msgstr "" -#: ../../library/symtable.rst:166 msgid "Return a tuple containing names of globals in this function." msgstr "" -#: ../../library/symtable.rst:170 -msgid "" -"Return a tuple containing names of explicitly declared nonlocals in this " -"function." +msgid "Return a tuple containing names of explicitly declared nonlocals in this function." msgstr "" -#: ../../library/symtable.rst:174 -msgid "" -"Return a tuple containing names of :term:`free (closure) variables ` in this function." +msgid "Return a tuple containing names of :term:`free (closure) variables ` in this function." msgstr "" -#: ../../library/symtable.rst:180 msgid "A namespace of a class. This class inherits from :class:`SymbolTable`." msgstr "" -#: ../../library/symtable.rst:184 -msgid "" -"Return a tuple containing the names of method-like functions declared in the " -"class." +msgid "Return a tuple containing the names of method-like functions declared in the class." msgstr "" -#: ../../library/symtable.rst:187 -msgid "" -"Here, the term 'method' designates *any* function defined in the class body " -"via :keyword:`def` or :keyword:`async def`." +msgid "Here, the term 'method' designates *any* function defined in the class body via :keyword:`def` or :keyword:`async def`." msgstr "" -#: ../../library/symtable.rst:190 -msgid "" -"Functions defined in a deeper scope (e.g., in an inner class) are not picked " -"up by :meth:`get_methods`." +msgid "Functions defined in a deeper scope (e.g., in an inner class) are not picked up by :meth:`get_methods`." msgstr "" -#: ../../library/symtable.rst:193 msgid "For example:" msgstr "" -#: ../../library/symtable.rst:206 msgid "" ">>> import symtable\n" ">>> st = symtable.symtable('''\n" @@ -256,76 +168,51 @@ msgid "" "('f', 'g', 'h')" msgstr "" -#: ../../library/symtable.rst:228 -msgid "" -"Although ``A().f()`` raises :exc:`TypeError` at runtime, ``A.f`` is still " -"considered as a method-like function." +msgid "Although ``A().f()`` raises :exc:`TypeError` at runtime, ``A.f`` is still considered as a method-like function." msgstr "" -#: ../../library/symtable.rst:236 -msgid "" -"An entry in a :class:`SymbolTable` corresponding to an identifier in the " -"source. The constructor is not public." +msgid "An entry in a :class:`SymbolTable` corresponding to an identifier in the source. The constructor is not public." msgstr "" -#: ../../library/symtable.rst:241 msgid "Return the symbol's name." msgstr "" -#: ../../library/symtable.rst:245 msgid "Return ``True`` if the symbol is used in its block." msgstr "" -#: ../../library/symtable.rst:249 msgid "Return ``True`` if the symbol is created from an import statement." msgstr "" -#: ../../library/symtable.rst:253 msgid "Return ``True`` if the symbol is a parameter." msgstr "" -#: ../../library/symtable.rst:257 msgid "Return ``True`` if the symbol is a type parameter." msgstr "" -#: ../../library/symtable.rst:263 msgid "Return ``True`` if the symbol is global." msgstr "" -#: ../../library/symtable.rst:267 msgid "Return ``True`` if the symbol is nonlocal." msgstr "" -#: ../../library/symtable.rst:271 -msgid "" -"Return ``True`` if the symbol is declared global with a global statement." +msgid "Return ``True`` if the symbol is declared global with a global statement." msgstr "" -#: ../../library/symtable.rst:275 msgid "Return ``True`` if the symbol is local to its block." msgstr "" -#: ../../library/symtable.rst:279 msgid "Return ``True`` if the symbol is annotated." msgstr "" -#: ../../library/symtable.rst:285 -msgid "" -"Return ``True`` if the symbol is referenced in its block, but not assigned " -"to." +msgid "Return ``True`` if the symbol is referenced in its block, but not assigned to." msgstr "" -#: ../../library/symtable.rst:290 -msgid "" -"Return *True* if a class-scoped symbol is free from the perspective of a " -"method." +msgid "Return *True* if a class-scoped symbol is free from the perspective of a method." msgstr "" -#: ../../library/symtable.rst:293 msgid "Consider the following example::" msgstr "" -#: ../../library/symtable.rst:295 msgid "" "def f():\n" " x = 1 # function-scoped\n" @@ -335,80 +222,50 @@ msgid "" " return x" msgstr "" -#: ../../library/symtable.rst:302 -msgid "" -"In this example, the class-scoped symbol ``x`` is considered to be free from " -"the perspective of ``C.method``, thereby allowing the latter to return *1* " -"at runtime and not *2*." +msgid "In this example, the class-scoped symbol ``x`` is considered to be free from the perspective of ``C.method``, thereby allowing the latter to return *1* at runtime and not *2*." msgstr "" -#: ../../library/symtable.rst:310 msgid "Return ``True`` if the symbol is assigned to in its block." msgstr "" -#: ../../library/symtable.rst:314 msgid "Return ``True`` if the symbol is a comprehension iteration variable." msgstr "" -#: ../../library/symtable.rst:320 msgid "Return ``True`` if the symbol is a cell in an inlined comprehension." msgstr "" -#: ../../library/symtable.rst:326 msgid "Return ``True`` if name binding introduces new namespace." msgstr "" -#: ../../library/symtable.rst:328 -msgid "" -"If the name is used as the target of a function or class statement, this " -"will be true." +msgid "If the name is used as the target of a function or class statement, this will be true." msgstr "" -#: ../../library/symtable.rst:331 msgid "For example::" msgstr "" -#: ../../library/symtable.rst:333 msgid "" -">>> table = symtable.symtable(\"def some_func(): pass\", \"string\", " -"\"exec\")\n" +">>> table = symtable.symtable(\"def some_func(): pass\", \"string\", \"exec\")\n" ">>> table.lookup(\"some_func\").is_namespace()\n" "True" msgstr "" -#: ../../library/symtable.rst:337 -msgid "" -"Note that a single name can be bound to multiple objects. If the result is " -"``True``, the name may also be bound to other objects, like an int or list, " -"that does not introduce a new namespace." +msgid "Note that a single name can be bound to multiple objects. If the result is ``True``, the name may also be bound to other objects, like an int or list, that does not introduce a new namespace." msgstr "" -#: ../../library/symtable.rst:343 msgid "Return a list of namespaces bound to this name." msgstr "" -#: ../../library/symtable.rst:347 -msgid "" -"Return the namespace bound to this name. If more than one or no namespace is " -"bound to this name, a :exc:`ValueError` is raised." +msgid "Return the namespace bound to this name. If more than one or no namespace is bound to this name, a :exc:`ValueError` is raised." msgstr "" -#: ../../library/symtable.rst:354 msgid "Command-Line Usage" msgstr "" -#: ../../library/symtable.rst:358 -msgid "" -"The :mod:`!symtable` module can be executed as a script from the command " -"line." +msgid "The :mod:`!symtable` module can be executed as a script from the command line." msgstr "" -#: ../../library/symtable.rst:360 msgid "python -m symtable [infile...]" msgstr "" -#: ../../library/symtable.rst:364 -msgid "" -"Symbol tables are generated for the specified Python source files and dumped " -"to stdout. If no input file is specified, the content is read from stdin." +msgid "Symbol tables are generated for the specified Python source files and dumped to stdout. If no input file is specified, the content is read from stdin." msgstr "" diff --git a/library/sys.monitoring.po b/library/sys.monitoring.po index 7c954ba4..5555fecc 100644 --- a/library/sys.monitoring.po +++ b/library/sys.monitoring.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2023-09-08 14:16+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,99 +21,57 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/sys.monitoring.rst:2 msgid ":mod:`!sys.monitoring` --- Execution event monitoring" msgstr "" -#: ../../library/sys.monitoring.rst:13 -msgid "" -":mod:`!sys.monitoring` is a namespace within the :mod:`sys` module, not an " -"independent module, and ``import sys.monitoring`` would fail with " -"a :exc:`ModuleNotFoundError`. Instead, simply ``import sys`` and then use " -"``sys.monitoring``." +msgid ":mod:`!sys.monitoring` is a namespace within the :mod:`sys` module, not an independent module, and ``import sys.monitoring`` would fail with a :exc:`ModuleNotFoundError`. Instead, simply ``import sys`` and then use ``sys.monitoring``." msgstr "" -#: ../../library/sys.monitoring.rst:19 -msgid "" -"This namespace provides access to the functions and constants necessary to " -"activate and control event monitoring." +msgid "This namespace provides access to the functions and constants necessary to activate and control event monitoring." msgstr "" -#: ../../library/sys.monitoring.rst:22 -msgid "" -"As programs execute, events occur that might be of interest to tools that " -"monitor execution. The :mod:`!sys.monitoring` namespace provides means to " -"receive callbacks when events of interest occur." +msgid "As programs execute, events occur that might be of interest to tools that monitor execution. The :mod:`!sys.monitoring` namespace provides means to receive callbacks when events of interest occur." msgstr "" -#: ../../library/sys.monitoring.rst:26 msgid "The monitoring API consists of three components:" msgstr "" -#: ../../library/sys.monitoring.rst:28 msgid "`Tool identifiers`_" msgstr "" -#: ../../library/sys.monitoring.rst:29 msgid "`Events`_" msgstr "" -#: ../../library/sys.monitoring.rst:30 msgid ":ref:`Callbacks `" msgstr "" -#: ../../library/sys.monitoring.rst:33 msgid "Tool identifiers" msgstr "" -#: ../../library/sys.monitoring.rst:35 -msgid "" -"A tool identifier is an integer and the associated name. Tool identifiers " -"are used to discourage tools from interfering with each other and to allow " -"multiple tools to operate at the same time. Currently tools are completely " -"independent and cannot be used to monitor each other. This restriction may " -"be lifted in the future." +msgid "A tool identifier is an integer and the associated name. Tool identifiers are used to discourage tools from interfering with each other and to allow multiple tools to operate at the same time. Currently tools are completely independent and cannot be used to monitor each other. This restriction may be lifted in the future." msgstr "" -#: ../../library/sys.monitoring.rst:41 -msgid "" -"Before registering or activating events, a tool should choose an identifier. " -"Identifiers are integers in the range 0 to 5 inclusive." +msgid "Before registering or activating events, a tool should choose an identifier. Identifiers are integers in the range 0 to 5 inclusive." msgstr "" -#: ../../library/sys.monitoring.rst:45 msgid "Registering and using tools" msgstr "" -#: ../../library/sys.monitoring.rst:49 -msgid "" -"Must be called before *tool_id* can be used. *tool_id* must be in the range " -"0 to 5 inclusive. Raises a :exc:`ValueError` if *tool_id* is in use." +msgid "Must be called before *tool_id* can be used. *tool_id* must be in the range 0 to 5 inclusive. Raises a :exc:`ValueError` if *tool_id* is in use." msgstr "" -#: ../../library/sys.monitoring.rst:55 msgid "Unregister all events and callback functions associated with *tool_id*." msgstr "" -#: ../../library/sys.monitoring.rst:59 -msgid "" -"Should be called once a tool no longer requires *tool_id*. Will " -"call :func:`clear_tool_id` before releasing *tool_id*." +msgid "Should be called once a tool no longer requires *tool_id*. Will call :func:`clear_tool_id` before releasing *tool_id*." msgstr "" -#: ../../library/sys.monitoring.rst:64 -msgid "" -"Returns the name of the tool if *tool_id* is in use, otherwise it returns " -"``None``. *tool_id* must be in the range 0 to 5 inclusive." +msgid "Returns the name of the tool if *tool_id* is in use, otherwise it returns ``None``. *tool_id* must be in the range 0 to 5 inclusive." msgstr "" -#: ../../library/sys.monitoring.rst:68 -msgid "" -"All IDs are treated the same by the VM with regard to events, but the " -"following IDs are pre-defined to make co-operation of tools easier::" +msgid "All IDs are treated the same by the VM with regard to events, but the following IDs are pre-defined to make co-operation of tools easier::" msgstr "" -#: ../../library/sys.monitoring.rst:71 msgid "" "sys.monitoring.DEBUGGER_ID = 0\n" "sys.monitoring.COVERAGE_ID = 1\n" @@ -121,535 +79,307 @@ msgid "" "sys.monitoring.OPTIMIZER_ID = 5" msgstr "" -#: ../../library/sys.monitoring.rst:78 msgid "Events" msgstr "" -#: ../../library/sys.monitoring.rst:80 msgid "The following events are supported:" msgstr "" -#: ../../library/sys.monitoring.rst:84 msgid "A conditional branch goes left." msgstr "" -#: ../../library/sys.monitoring.rst:86 -msgid "" -"It is up to the tool to determine how to present \"left\" and \"right\" " -"branches. There is no guarantee which branch is \"left\" and which is " -"\"right\", except that it will be consistent for the duration of the program." +msgid "It is up to the tool to determine how to present \"left\" and \"right\" branches. There is no guarantee which branch is \"left\" and which is \"right\", except that it will be consistent for the duration of the program." msgstr "" -#: ../../library/sys.monitoring.rst:92 msgid "A conditional branch goes right." msgstr "" -#: ../../library/sys.monitoring.rst:96 msgid "A call in Python code (event occurs before the call)." msgstr "" -#: ../../library/sys.monitoring.rst:100 -msgid "" -"An exception raised from any callable, except for Python functions (event " -"occurs after the exit)." +msgid "An exception raised from any callable, except for Python functions (event occurs after the exit)." msgstr "" -#: ../../library/sys.monitoring.rst:104 -msgid "" -"Return from any callable, except for Python functions (event occurs after " -"the return)." +msgid "Return from any callable, except for Python functions (event occurs after the return)." msgstr "" -#: ../../library/sys.monitoring.rst:108 msgid "An exception is handled." msgstr "" -#: ../../library/sys.monitoring.rst:112 msgid "A VM instruction is about to be executed." msgstr "" -#: ../../library/sys.monitoring.rst:116 msgid "An unconditional jump in the control flow graph is made." msgstr "" -#: ../../library/sys.monitoring.rst:120 -msgid "" -"An instruction is about to be executed that has a different line number from " -"the preceding instruction." +msgid "An instruction is about to be executed that has a different line number from the preceding instruction." msgstr "" -#: ../../library/sys.monitoring.rst:124 -msgid "" -"Resumption of a Python function (for generator and coroutine functions), " -"except for ``throw()`` calls." +msgid "Resumption of a Python function (for generator and coroutine functions), except for ``throw()`` calls." msgstr "" -#: ../../library/sys.monitoring.rst:128 -msgid "" -"Return from a Python function (occurs immediately before the return, the " -"callee's frame will be on the stack)." +msgid "Return from a Python function (occurs immediately before the return, the callee's frame will be on the stack)." msgstr "" -#: ../../library/sys.monitoring.rst:132 -msgid "" -"Start of a Python function (occurs immediately after the call, the callee's " -"frame will be on the stack)" +msgid "Start of a Python function (occurs immediately after the call, the callee's frame will be on the stack)" msgstr "" -#: ../../library/sys.monitoring.rst:136 msgid "A Python function is resumed by a ``throw()`` call." msgstr "" -#: ../../library/sys.monitoring.rst:140 -msgid "" -"Exit from a Python function during exception unwinding. This includes " -"exceptions raised directly within the function and that are allowed to " -"continue to propagate." +msgid "Exit from a Python function during exception unwinding. This includes exceptions raised directly within the function and that are allowed to continue to propagate." msgstr "" -#: ../../library/sys.monitoring.rst:145 -msgid "" -"Yield from a Python function (occurs immediately before the yield, the " -"callee's frame will be on the stack)." +msgid "Yield from a Python function (occurs immediately before the yield, the callee's frame will be on the stack)." msgstr "" -#: ../../library/sys.monitoring.rst:149 -msgid "" -"An exception is raised, except those that cause a :monitoring-" -"event:`STOP_ITERATION` event." +msgid "An exception is raised, except those that cause a :monitoring-event:`STOP_ITERATION` event." msgstr "" -#: ../../library/sys.monitoring.rst:153 -msgid "" -"An exception is re-raised, for example at the end of a :keyword:`finally` " -"block." +msgid "An exception is re-raised, for example at the end of a :keyword:`finally` block." msgstr "" -#: ../../library/sys.monitoring.rst:157 -msgid "" -"An artificial :exc:`StopIteration` is raised; see `the STOP_ITERATION " -"event`_." +msgid "An artificial :exc:`StopIteration` is raised; see `the STOP_ITERATION event`_." msgstr "" -#: ../../library/sys.monitoring.rst:160 msgid "More events may be added in the future." msgstr "" -#: ../../library/sys.monitoring.rst:162 -msgid "" -"These events are attributes of the :mod:`!sys.monitoring.events` namespace. " -"Each event is represented as a power-of-2 integer constant. To define a set " -"of events, simply bitwise OR the individual events together. For example, to " -"specify both :monitoring-event:`PY_RETURN` and :monitoring-event:`PY_START` " -"events, use the expression ``PY_RETURN | PY_START``." +msgid "These events are attributes of the :mod:`!sys.monitoring.events` namespace. Each event is represented as a power-of-2 integer constant. To define a set of events, simply bitwise OR the individual events together. For example, to specify both :monitoring-event:`PY_RETURN` and :monitoring-event:`PY_START` events, use the expression ``PY_RETURN | PY_START``." msgstr "" -#: ../../library/sys.monitoring.rst:170 msgid "An alias for ``0`` so users can do explicit comparisons like::" msgstr "" -#: ../../library/sys.monitoring.rst:172 msgid "" "if get_events(DEBUGGER_ID) == NO_EVENTS:\n" " ..." msgstr "" -#: ../../library/sys.monitoring.rst:175 msgid "Setting this event deactivates all events." msgstr "" -#: ../../library/sys.monitoring.rst:180 msgid "Local events" msgstr "" -#: ../../library/sys.monitoring.rst:182 -msgid "" -"Local events are associated with normal execution of the program and happen " -"at clearly defined locations. All local events can be disabled. The local " -"events are:" +msgid "Local events are associated with normal execution of the program and happen at clearly defined locations. All local events can be disabled. The local events are:" msgstr "" -#: ../../library/sys.monitoring.rst:186 msgid ":monitoring-event:`PY_START`" msgstr "" -#: ../../library/sys.monitoring.rst:187 msgid ":monitoring-event:`PY_RESUME`" msgstr "" -#: ../../library/sys.monitoring.rst:188 msgid ":monitoring-event:`PY_RETURN`" msgstr "" -#: ../../library/sys.monitoring.rst:189 msgid ":monitoring-event:`PY_YIELD`" msgstr "" -#: ../../library/sys.monitoring.rst:190 msgid ":monitoring-event:`CALL`" msgstr "" -#: ../../library/sys.monitoring.rst:191 msgid ":monitoring-event:`LINE`" msgstr "" -#: ../../library/sys.monitoring.rst:192 msgid ":monitoring-event:`INSTRUCTION`" msgstr "" -#: ../../library/sys.monitoring.rst:193 msgid ":monitoring-event:`JUMP`" msgstr "" -#: ../../library/sys.monitoring.rst:194 msgid ":monitoring-event:`BRANCH_LEFT`" msgstr "" -#: ../../library/sys.monitoring.rst:195 msgid ":monitoring-event:`BRANCH_RIGHT`" msgstr "" -#: ../../library/sys.monitoring.rst:196 msgid ":monitoring-event:`STOP_ITERATION`" msgstr "" -#: ../../library/sys.monitoring.rst:199 msgid "Deprecated event" msgstr "" -#: ../../library/sys.monitoring.rst:201 msgid "``BRANCH``" msgstr "" -#: ../../library/sys.monitoring.rst:203 -msgid "" -"The ``BRANCH`` event is deprecated in 3.14. Using :monitoring-" -"event:`BRANCH_LEFT` and :monitoring-event:`BRANCH_RIGHT` events will give " -"much better performance as they can be disabled independently." +msgid "The ``BRANCH`` event is deprecated in 3.14. Using :monitoring-event:`BRANCH_LEFT` and :monitoring-event:`BRANCH_RIGHT` events will give much better performance as they can be disabled independently." msgstr "" -#: ../../library/sys.monitoring.rst:209 msgid "Ancillary events" msgstr "" -#: ../../library/sys.monitoring.rst:211 -msgid "" -"Ancillary events can be monitored like other events, but are controlled by " -"another event:" +msgid "Ancillary events can be monitored like other events, but are controlled by another event:" msgstr "" -#: ../../library/sys.monitoring.rst:214 msgid ":monitoring-event:`C_RAISE`" msgstr "" -#: ../../library/sys.monitoring.rst:215 msgid ":monitoring-event:`C_RETURN`" msgstr "" -#: ../../library/sys.monitoring.rst:217 -msgid "" -"The :monitoring-event:`C_RETURN` and :monitoring-event:`C_RAISE` events are " -"controlled by the :monitoring-event:`CALL` event. :monitoring-" -"event:`C_RETURN` and :monitoring-event:`C_RAISE` events will only be seen if " -"the corresponding :monitoring-event:`CALL` event is being monitored." +msgid "The :monitoring-event:`C_RETURN` and :monitoring-event:`C_RAISE` events are controlled by the :monitoring-event:`CALL` event. :monitoring-event:`C_RETURN` and :monitoring-event:`C_RAISE` events will only be seen if the corresponding :monitoring-event:`CALL` event is being monitored." msgstr "" -#: ../../library/sys.monitoring.rst:226 msgid "Other events" msgstr "" -#: ../../library/sys.monitoring.rst:228 -msgid "" -"Other events are not necessarily tied to a specific location in the program " -"and cannot be individually disabled via :data:`DISABLE`." +msgid "Other events are not necessarily tied to a specific location in the program and cannot be individually disabled via :data:`DISABLE`." msgstr "" -#: ../../library/sys.monitoring.rst:231 msgid "The other events that can be monitored are:" msgstr "" -#: ../../library/sys.monitoring.rst:233 msgid ":monitoring-event:`PY_THROW`" msgstr "" -#: ../../library/sys.monitoring.rst:234 msgid ":monitoring-event:`PY_UNWIND`" msgstr "" -#: ../../library/sys.monitoring.rst:235 msgid ":monitoring-event:`RAISE`" msgstr "" -#: ../../library/sys.monitoring.rst:236 msgid ":monitoring-event:`EXCEPTION_HANDLED`" msgstr "" -#: ../../library/sys.monitoring.rst:240 msgid "The STOP_ITERATION event" msgstr "" -#: ../../library/sys.monitoring.rst:242 -msgid "" -":pep:`PEP 380 <380#use-of-stopiteration-to-return-values>` specifies that " -"a :exc:`StopIteration` exception is raised when returning a value from a " -"generator or coroutine. However, this is a very inefficient way to return a " -"value, so some Python implementations, notably CPython 3.12+, do not raise " -"an exception unless it would be visible to other code." +msgid ":pep:`PEP 380 <380#use-of-stopiteration-to-return-values>` specifies that a :exc:`StopIteration` exception is raised when returning a value from a generator or coroutine. However, this is a very inefficient way to return a value, so some Python implementations, notably CPython 3.12+, do not raise an exception unless it would be visible to other code." msgstr "" -#: ../../library/sys.monitoring.rst:248 -msgid "" -"To allow tools to monitor for real exceptions without slowing down " -"generators and coroutines, the :monitoring-event:`STOP_ITERATION` event is " -"provided. :monitoring-event:`STOP_ITERATION` can be locally disabled, " -"unlike :monitoring-event:`RAISE`." +msgid "To allow tools to monitor for real exceptions without slowing down generators and coroutines, the :monitoring-event:`STOP_ITERATION` event is provided. :monitoring-event:`STOP_ITERATION` can be locally disabled, unlike :monitoring-event:`RAISE`." msgstr "" -#: ../../library/sys.monitoring.rst:253 -msgid "" -"Note that the :monitoring-event:`STOP_ITERATION` event and the :monitoring-" -"event:`RAISE` event for a :exc:`StopIteration` exception are equivalent, and " -"are treated as interchangeable when generating events. Implementations will " -"favor :monitoring-event:`STOP_ITERATION` for performance reasons, but may " -"generate a :monitoring-event:`RAISE` event with a :exc:`StopIteration`." +msgid "Note that the :monitoring-event:`STOP_ITERATION` event and the :monitoring-event:`RAISE` event for a :exc:`StopIteration` exception are equivalent, and are treated as interchangeable when generating events. Implementations will favor :monitoring-event:`STOP_ITERATION` for performance reasons, but may generate a :monitoring-event:`RAISE` event with a :exc:`StopIteration`." msgstr "" -#: ../../library/sys.monitoring.rst:261 msgid "Turning events on and off" msgstr "" -#: ../../library/sys.monitoring.rst:263 -msgid "" -"In order to monitor an event, it must be turned on and a corresponding " -"callback must be registered. Events can be turned on or off by setting the " -"events either globally and/or for a particular code object. An event will " -"trigger only once, even if it is turned on both globally and locally." +msgid "In order to monitor an event, it must be turned on and a corresponding callback must be registered. Events can be turned on or off by setting the events either globally and/or for a particular code object. An event will trigger only once, even if it is turned on both globally and locally." msgstr "" -#: ../../library/sys.monitoring.rst:270 msgid "Setting events globally" msgstr "" -#: ../../library/sys.monitoring.rst:272 -msgid "" -"Events can be controlled globally by modifying the set of events being " -"monitored." +msgid "Events can be controlled globally by modifying the set of events being monitored." msgstr "" -#: ../../library/sys.monitoring.rst:276 msgid "Returns the ``int`` representing all the active events." msgstr "" -#: ../../library/sys.monitoring.rst:280 -msgid "" -"Activates all events which are set in *event_set*. Raises " -"a :exc:`ValueError` if *tool_id* is not in use." +msgid "Activates all events which are set in *event_set*. Raises a :exc:`ValueError` if *tool_id* is not in use." msgstr "" -#: ../../library/sys.monitoring.rst:283 msgid "No events are active by default." msgstr "" -#: ../../library/sys.monitoring.rst:286 msgid "Per code object events" msgstr "" -#: ../../library/sys.monitoring.rst:288 -msgid "" -"Events can also be controlled on a per code object basis. The functions " -"defined below which accept a :class:`types.CodeType` should be prepared to " -"accept a look-alike object from functions which are not defined in Python " -"(see :ref:`c-api-monitoring`)." +msgid "Events can also be controlled on a per code object basis. The functions defined below which accept a :class:`types.CodeType` should be prepared to accept a look-alike object from functions which are not defined in Python (see :ref:`c-api-monitoring`)." msgstr "" -#: ../../library/sys.monitoring.rst:295 msgid "Returns all the :ref:`local events ` for *code*" msgstr "" -#: ../../library/sys.monitoring.rst:299 -msgid "" -"Activates all the :ref:`local events ` for *code* " -"which are set in *event_set*. Raises a :exc:`ValueError` if *tool_id* is not " -"in use." +msgid "Activates all the :ref:`local events ` for *code* which are set in *event_set*. Raises a :exc:`ValueError` if *tool_id* is not in use." msgstr "" -#: ../../library/sys.monitoring.rst:305 msgid "Disabling events" msgstr "" -#: ../../library/sys.monitoring.rst:309 -msgid "" -"A special value that can be returned from a callback function to disable " -"events for the current code location." +msgid "A special value that can be returned from a callback function to disable events for the current code location." msgstr "" -#: ../../library/sys.monitoring.rst:312 -msgid "" -":ref:`Local events ` can be disabled for a specific " -"code location by returning :data:`sys.monitoring.DISABLE` from a callback " -"function. This does not change which events are set, or any other code " -"locations for the same event." +msgid ":ref:`Local events ` can be disabled for a specific code location by returning :data:`sys.monitoring.DISABLE` from a callback function. This does not change which events are set, or any other code locations for the same event." msgstr "" -#: ../../library/sys.monitoring.rst:317 -msgid "" -"Disabling events for specific locations is very important for high " -"performance monitoring. For example, a program can be run under a debugger " -"with no overhead if the debugger disables all monitoring except for a few " -"breakpoints." +msgid "Disabling events for specific locations is very important for high performance monitoring. For example, a program can be run under a debugger with no overhead if the debugger disables all monitoring except for a few breakpoints." msgstr "" -#: ../../library/sys.monitoring.rst:322 -msgid "" -"If :data:`DISABLE` is returned by a callback for a :ref:`global event " -"`, :exc:`ValueError` will be raised by the " -"interpreter in a non-specific location (that is, no traceback will be " -"provided)." +msgid "If :data:`DISABLE` is returned by a callback for a :ref:`global event `, :exc:`ValueError` will be raised by the interpreter in a non-specific location (that is, no traceback will be provided)." msgstr "" -#: ../../library/sys.monitoring.rst:329 -msgid "" -"Enable all the events that were disabled by :data:`sys.monitoring.DISABLE` " -"for all tools." +msgid "Enable all the events that were disabled by :data:`sys.monitoring.DISABLE` for all tools." msgstr "" -#: ../../library/sys.monitoring.rst:336 msgid "Registering callback functions" msgstr "" -#: ../../library/sys.monitoring.rst:340 msgid "Registers the callable *func* for the *event* with the given *tool_id*" msgstr "" -#: ../../library/sys.monitoring.rst:342 -msgid "" -"If another callback was registered for the given *tool_id* and *event*, it " -"is unregistered and returned. Otherwise :func:`register_callback` returns " -"``None``." +msgid "If another callback was registered for the given *tool_id* and *event*, it is unregistered and returned. Otherwise :func:`register_callback` returns ``None``." msgstr "" -#: ../../library/sys.monitoring.rst:346 -msgid "" -"Raises an :ref:`auditing event ` " -"``sys.monitoring.register_callback`` with argument ``func``." +msgid "Raises an :ref:`auditing event ` ``sys.monitoring.register_callback`` with argument ``func``." msgstr "" -#: ../../library/sys.monitoring.rst:348 -msgid "" -"Functions can be unregistered by calling " -"``sys.monitoring.register_callback(tool_id, event, None)``." +msgid "Functions can be unregistered by calling ``sys.monitoring.register_callback(tool_id, event, None)``." msgstr "" -#: ../../library/sys.monitoring.rst:351 msgid "Callback functions can be registered and unregistered at any time." msgstr "" -#: ../../library/sys.monitoring.rst:353 -msgid "" -"Callbacks are called only once regardless if the event is turned on both " -"globally and locally. As such, if an event could be turned on for both " -"global and local events by your code then the callback needs to be written " -"to handle either trigger." +msgid "Callbacks are called only once regardless if the event is turned on both globally and locally. As such, if an event could be turned on for both global and local events by your code then the callback needs to be written to handle either trigger." msgstr "" -#: ../../library/sys.monitoring.rst:360 msgid "Callback function arguments" msgstr "" -#: ../../library/sys.monitoring.rst:364 -msgid "" -"A special value that is passed to a callback function to indicate that there " -"are no arguments to the call." +msgid "A special value that is passed to a callback function to indicate that there are no arguments to the call." msgstr "" -#: ../../library/sys.monitoring.rst:367 -msgid "" -"When an active event occurs, the registered callback function is called. " -"Callback functions returning an object other than :data:`DISABLE` will have " -"no effect. Different events will provide the callback function with " -"different arguments, as follows:" +msgid "When an active event occurs, the registered callback function is called. Callback functions returning an object other than :data:`DISABLE` will have no effect. Different events will provide the callback function with different arguments, as follows:" msgstr "" -#: ../../library/sys.monitoring.rst:371 msgid ":monitoring-event:`PY_START` and :monitoring-event:`PY_RESUME`::" msgstr "" -#: ../../library/sys.monitoring.rst:373 ../../library/sys.monitoring.rst:410 msgid "func(code: CodeType, instruction_offset: int) -> object" msgstr "" -#: ../../library/sys.monitoring.rst:375 msgid ":monitoring-event:`PY_RETURN` and :monitoring-event:`PY_YIELD`::" msgstr "" -#: ../../library/sys.monitoring.rst:377 msgid "func(code: CodeType, instruction_offset: int, retval: object) -> object" msgstr "" -#: ../../library/sys.monitoring.rst:379 -msgid "" -":monitoring-event:`CALL`, :monitoring-event:`C_RAISE` and :monitoring-" -"event:`C_RETURN` (*arg0* can be :data:`MISSING` specifically)::" +msgid ":monitoring-event:`CALL`, :monitoring-event:`C_RAISE` and :monitoring-event:`C_RETURN` (*arg0* can be :data:`MISSING` specifically)::" msgstr "" -#: ../../library/sys.monitoring.rst:382 -msgid "" -"func(code: CodeType, instruction_offset: int, callable: object, arg0: " -"object) -> object" +msgid "func(code: CodeType, instruction_offset: int, callable: object, arg0: object) -> object" msgstr "" -#: ../../library/sys.monitoring.rst:384 -msgid "" -"*code* represents the code object where the call is being made, while " -"*callable* is the object that is about to be called (and thus triggered the " -"event). If there are no arguments, *arg0* is set " -"to :data:`sys.monitoring.MISSING`." +msgid "*code* represents the code object where the call is being made, while *callable* is the object that is about to be called (and thus triggered the event). If there are no arguments, *arg0* is set to :data:`sys.monitoring.MISSING`." msgstr "" -#: ../../library/sys.monitoring.rst:389 -msgid "" -"For instance methods, *callable* will be the function object as found on the " -"class with *arg0* set to the instance (i.e. the ``self`` argument to the " -"method)." +msgid "For instance methods, *callable* will be the function object as found on the class with *arg0* set to the instance (i.e. the ``self`` argument to the method)." msgstr "" -#: ../../library/sys.monitoring.rst:393 -msgid "" -":monitoring-event:`RAISE`, :monitoring-event:`RERAISE`, :monitoring-" -"event:`EXCEPTION_HANDLED`, :monitoring-event:`PY_UNWIND`, :monitoring-" -"event:`PY_THROW` and :monitoring-event:`STOP_ITERATION`::" +msgid ":monitoring-event:`RAISE`, :monitoring-event:`RERAISE`, :monitoring-event:`EXCEPTION_HANDLED`, :monitoring-event:`PY_UNWIND`, :monitoring-event:`PY_THROW` and :monitoring-event:`STOP_ITERATION`::" msgstr "" -#: ../../library/sys.monitoring.rst:396 -msgid "" -"func(code: CodeType, instruction_offset: int, exception: BaseException) -> " -"object" +msgid "func(code: CodeType, instruction_offset: int, exception: BaseException) -> object" msgstr "" -#: ../../library/sys.monitoring.rst:398 msgid ":monitoring-event:`LINE`::" msgstr "" -#: ../../library/sys.monitoring.rst:400 msgid "func(code: CodeType, line_number: int) -> object" msgstr "" -#: ../../library/sys.monitoring.rst:402 -msgid "" -":monitoring-event:`BRANCH_LEFT`, :monitoring-event:`BRANCH_RIGHT` " -"and :monitoring-event:`JUMP`::" +msgid ":monitoring-event:`BRANCH_LEFT`, :monitoring-event:`BRANCH_RIGHT` and :monitoring-event:`JUMP`::" msgstr "" -#: ../../library/sys.monitoring.rst:404 -msgid "" -"func(code: CodeType, instruction_offset: int, destination_offset: int) -> " -"object" +msgid "func(code: CodeType, instruction_offset: int, destination_offset: int) -> object" msgstr "" -#: ../../library/sys.monitoring.rst:406 msgid "Note that the *destination_offset* is where the code will next execute." msgstr "" -#: ../../library/sys.monitoring.rst:408 msgid ":monitoring-event:`INSTRUCTION`::" msgstr "" diff --git a/library/sys.po b/library/sys.po index 9003ad98..97a6097d 100644 --- a/library/sys.po +++ b/library/sys.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:14+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,392 +24,171 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/sys.rst:2 msgid ":mod:`!sys` --- System-specific parameters and functions" msgstr "" -#: ../../library/sys.rst:9 -msgid "" -"This module provides access to some variables used or maintained by the " -"interpreter and to functions that interact strongly with the interpreter. It " -"is always available. Unless explicitly noted otherwise, all variables are " -"read-only." +msgid "This module provides access to some variables used or maintained by the interpreter and to functions that interact strongly with the interpreter. It is always available. Unless explicitly noted otherwise, all variables are read-only." msgstr "" -#: ../../library/sys.rst:16 -msgid "" -"On POSIX systems where Python was built with the standard ``configure`` " -"script, this contains the ABI flags as specified by :pep:`3149`." +msgid "On POSIX systems where Python was built with the standard ``configure`` script, this contains the ABI flags as specified by :pep:`3149`." msgstr "" -#: ../../library/sys.rst:21 -msgid "" -"Default flags became an empty string (``m`` flag for pymalloc has been " -"removed)." +msgid "Default flags became an empty string (``m`` flag for pymalloc has been removed)." msgstr "" -#: ../../library/sys.rst:25 ../../library/sys.rst:298 ../../library/sys.rst:368 -#: ../../library/sys.rst:789 ../../library/sys.rst:807 -#: ../../library/sys.rst:1056 ../../library/sys.rst:1666 -#: ../../library/sys.rst:1909 ../../library/sys.rst:1924 -#: ../../library/sys.rst:1932 ../../library/sys.rst:1973 -#: ../../library/sys.rst:1990 ../../library/sys.rst:2237 msgid "Availability" msgstr "" -#: ../../library/sys.rst:30 -msgid "" -"Append the callable *hook* to the list of active auditing hooks for the " -"current (sub)interpreter." +msgid "Append the callable *hook* to the list of active auditing hooks for the current (sub)interpreter." msgstr "" -#: ../../library/sys.rst:33 -msgid "" -"When an auditing event is raised through the :func:`sys.audit` function, " -"each hook will be called in the order it was added with the event name and " -"the tuple of arguments. Native hooks added by :c:func:`PySys_AddAuditHook` " -"are called first, followed by hooks added in the current (sub)interpreter. " -"Hooks can then log the event, raise an exception to abort the operation, or " -"terminate the process entirely." +msgid "When an auditing event is raised through the :func:`sys.audit` function, each hook will be called in the order it was added with the event name and the tuple of arguments. Native hooks added by :c:func:`PySys_AddAuditHook` are called first, followed by hooks added in the current (sub)interpreter. Hooks can then log the event, raise an exception to abort the operation, or terminate the process entirely." msgstr "" -#: ../../library/sys.rst:40 -msgid "" -"Note that audit hooks are primarily for collecting information about " -"internal or otherwise unobservable actions, whether by Python or libraries " -"written in Python. They are not suitable for implementing a \"sandbox\". In " -"particular, malicious code can trivially disable or bypass hooks added using " -"this function. At a minimum, any security-sensitive hooks must be added " -"using the C API :c:func:`PySys_AddAuditHook` before initialising the " -"runtime, and any modules allowing arbitrary memory modification (such " -"as :mod:`ctypes`) should be completely removed or closely monitored." +msgid "Note that audit hooks are primarily for collecting information about internal or otherwise unobservable actions, whether by Python or libraries written in Python. They are not suitable for implementing a \"sandbox\". In particular, malicious code can trivially disable or bypass hooks added using this function. At a minimum, any security-sensitive hooks must be added using the C API :c:func:`PySys_AddAuditHook` before initialising the runtime, and any modules allowing arbitrary memory modification (such as :mod:`ctypes`) should be completely removed or closely monitored." msgstr "" -#: ../../library/sys.rst:49 ../../library/sys.rst:51 -msgid "" -"Calling :func:`sys.addaudithook` will itself raise an auditing event named " -"``sys.addaudithook`` with no arguments. If any existing hooks raise an " -"exception derived from :class:`RuntimeError`, the new hook will not be added " -"and the exception suppressed. As a result, callers cannot assume that their " -"hook has been added unless they control all existing hooks." +msgid "Calling :func:`sys.addaudithook` will itself raise an auditing event named ``sys.addaudithook`` with no arguments. If any existing hooks raise an exception derived from :class:`RuntimeError`, the new hook will not be added and the exception suppressed. As a result, callers cannot assume that their hook has been added unless they control all existing hooks." msgstr "" -#: ../../library/sys.rst:58 -msgid "" -"See the :ref:`audit events table ` for all events raised by " -"CPython, and :pep:`578` for the original design discussion." +msgid "See the :ref:`audit events table ` for all events raised by CPython, and :pep:`578` for the original design discussion." msgstr "" -#: ../../library/sys.rst:65 -msgid "" -"Exceptions derived from :class:`Exception` but not :class:`RuntimeError` are " -"no longer suppressed." +msgid "Exceptions derived from :class:`Exception` but not :class:`RuntimeError` are no longer suppressed." msgstr "" -#: ../../library/sys.rst:70 -msgid "" -"When tracing is enabled (see :func:`settrace`), Python hooks are only traced " -"if the callable has a ``__cantrace__`` member that is set to a true value. " -"Otherwise, trace functions will skip the hook." +msgid "When tracing is enabled (see :func:`settrace`), Python hooks are only traced if the callable has a ``__cantrace__`` member that is set to a true value. Otherwise, trace functions will skip the hook." msgstr "" -#: ../../library/sys.rst:77 -msgid "" -"The list of command line arguments passed to a Python script. ``argv[0]`` is " -"the script name (it is operating system dependent whether this is a full " -"pathname or not). If the command was executed using the :option:`-c` " -"command line option to the interpreter, ``argv[0]`` is set to the string ``'-" -"c'``. If no script name was passed to the Python interpreter, ``argv[0]`` " -"is the empty string." +msgid "The list of command line arguments passed to a Python script. ``argv[0]`` is the script name (it is operating system dependent whether this is a full pathname or not). If the command was executed using the :option:`-c` command line option to the interpreter, ``argv[0]`` is set to the string ``'-c'``. If no script name was passed to the Python interpreter, ``argv[0]`` is the empty string." msgstr "" -#: ../../library/sys.rst:83 -msgid "" -"To loop over the standard input, or the list of files given on the command " -"line, see the :mod:`fileinput` module." +msgid "To loop over the standard input, or the list of files given on the command line, see the :mod:`fileinput` module." msgstr "" -#: ../../library/sys.rst:86 msgid "See also :data:`sys.orig_argv`." msgstr "" -#: ../../library/sys.rst:89 -msgid "" -"On Unix, command line arguments are passed by bytes from OS. Python decodes " -"them with filesystem encoding and \"surrogateescape\" error handler. When " -"you need original bytes, you can get it by ``[os.fsencode(arg) for arg in " -"sys.argv]``." +msgid "On Unix, command line arguments are passed by bytes from OS. Python decodes them with filesystem encoding and \"surrogateescape\" error handler. When you need original bytes, you can get it by ``[os.fsencode(arg) for arg in sys.argv]``." msgstr "" -#: ../../library/sys.rst:101 -msgid "" -"Raise an auditing event and trigger any active auditing hooks. *event* is a " -"string identifying the event, and *args* may contain optional arguments with " -"more information about the event. The number and types of arguments for a " -"given event are considered a public and stable API and should not be " -"modified between releases." +msgid "Raise an auditing event and trigger any active auditing hooks. *event* is a string identifying the event, and *args* may contain optional arguments with more information about the event. The number and types of arguments for a given event are considered a public and stable API and should not be modified between releases." msgstr "" -#: ../../library/sys.rst:107 -msgid "" -"For example, one auditing event is named ``os.chdir``. This event has one " -"argument called *path* that will contain the requested new working directory." +msgid "For example, one auditing event is named ``os.chdir``. This event has one argument called *path* that will contain the requested new working directory." msgstr "" -#: ../../library/sys.rst:111 -msgid "" -":func:`sys.audit` will call the existing auditing hooks, passing the event " -"name and arguments, and will re-raise the first exception from any hook. In " -"general, if an exception is raised, it should not be handled and the process " -"should be terminated as quickly as possible. This allows hook " -"implementations to decide how to respond to particular events: they can " -"merely log the event or abort the operation by raising an exception." +msgid ":func:`sys.audit` will call the existing auditing hooks, passing the event name and arguments, and will re-raise the first exception from any hook. In general, if an exception is raised, it should not be handled and the process should be terminated as quickly as possible. This allows hook implementations to decide how to respond to particular events: they can merely log the event or abort the operation by raising an exception." msgstr "" -#: ../../library/sys.rst:119 -msgid "" -"Hooks are added using the :func:`sys.addaudithook` " -"or :c:func:`PySys_AddAuditHook` functions." +msgid "Hooks are added using the :func:`sys.addaudithook` or :c:func:`PySys_AddAuditHook` functions." msgstr "" -#: ../../library/sys.rst:122 -msgid "" -"The native equivalent of this function is :c:func:`PySys_Audit`. Using the " -"native function is preferred when possible." +msgid "The native equivalent of this function is :c:func:`PySys_Audit`. Using the native function is preferred when possible." msgstr "" -#: ../../library/sys.rst:125 -msgid "" -"See the :ref:`audit events table ` for all events raised by " -"CPython." +msgid "See the :ref:`audit events table ` for all events raised by CPython." msgstr "" -#: ../../library/sys.rst:133 -msgid "" -"Equivalent to :data:`exec_prefix`, but referring to the base Python " -"installation." +msgid "Equivalent to :data:`exec_prefix`, but referring to the base Python installation." msgstr "" -#: ../../library/sys.rst:135 -msgid "" -"When running under :ref:`sys-path-init-virtual-" -"environments`, :data:`exec_prefix` gets overwritten to the virtual " -"environment prefix. :data:`base_exec_prefix`, conversely, does not change, " -"and always points to the base Python installation. Refer to :ref:`sys-path-" -"init-virtual-environments` for more information." +msgid "When running under :ref:`sys-path-init-virtual-environments`, :data:`exec_prefix` gets overwritten to the virtual environment prefix. :data:`base_exec_prefix`, conversely, does not change, and always points to the base Python installation. Refer to :ref:`sys-path-init-virtual-environments` for more information." msgstr "" -#: ../../library/sys.rst:146 -msgid "" -"Equivalent to :data:`prefix`, but referring to the base Python installation." +msgid "Equivalent to :data:`prefix`, but referring to the base Python installation." msgstr "" -#: ../../library/sys.rst:148 -msgid "" -"When running under :ref:`virtual environment `, :data:`prefix` " -"gets overwritten to the virtual environment prefix. :data:`base_prefix`, " -"conversely, does not change, and always points to the base Python " -"installation. Refer to :ref:`sys-path-init-virtual-environments` for more " -"information." +msgid "When running under :ref:`virtual environment `, :data:`prefix` gets overwritten to the virtual environment prefix. :data:`base_prefix`, conversely, does not change, and always points to the base Python installation. Refer to :ref:`sys-path-init-virtual-environments` for more information." msgstr "" -#: ../../library/sys.rst:159 -msgid "" -"An indicator of the native byte order. This will have the value ``'big'`` " -"on big-endian (most-significant byte first) platforms, and ``'little'`` on " -"little-endian (least-significant byte first) platforms." +msgid "An indicator of the native byte order. This will have the value ``'big'`` on big-endian (most-significant byte first) platforms, and ``'little'`` on little-endian (least-significant byte first) platforms." msgstr "" -#: ../../library/sys.rst:166 -msgid "" -"A tuple of strings containing the names of all modules that are compiled " -"into this Python interpreter. (This information is not available in any " -"other way --- ``modules.keys()`` only lists the imported modules.)" +msgid "A tuple of strings containing the names of all modules that are compiled into this Python interpreter. (This information is not available in any other way --- ``modules.keys()`` only lists the imported modules.)" msgstr "" -#: ../../library/sys.rst:170 msgid "See also the :data:`sys.stdlib_module_names` list." msgstr "" -#: ../../library/sys.rst:175 -msgid "" -"Call ``func(*args)``, while tracing is enabled. The tracing state is saved, " -"and restored afterwards. This is intended to be called from a debugger from " -"a checkpoint, to recursively debug or profile some other code." +msgid "Call ``func(*args)``, while tracing is enabled. The tracing state is saved, and restored afterwards. This is intended to be called from a debugger from a checkpoint, to recursively debug or profile some other code." msgstr "" -#: ../../library/sys.rst:179 -msgid "" -"Tracing is suspended while calling a tracing function set " -"by :func:`settrace` or :func:`setprofile` to avoid infinite " -"recursion. :func:`!call_tracing` enables explicit recursion of the tracing " -"function." +msgid "Tracing is suspended while calling a tracing function set by :func:`settrace` or :func:`setprofile` to avoid infinite recursion. :func:`!call_tracing` enables explicit recursion of the tracing function." msgstr "" -#: ../../library/sys.rst:186 msgid "A string containing the copyright pertaining to the Python interpreter." msgstr "" -#: ../../library/sys.rst:191 -msgid "" -"Clear the internal type cache. The type cache is used to speed up attribute " -"and method lookups. Use the function *only* to drop unnecessary references " -"during reference leak debugging." +msgid "Clear the internal type cache. The type cache is used to speed up attribute and method lookups. Use the function *only* to drop unnecessary references during reference leak debugging." msgstr "" -#: ../../library/sys.rst:195 ../../library/sys.rst:222 -#: ../../library/sys.rst:235 -msgid "" -"This function should be used for internal and specialized purposes only." +msgid "This function should be used for internal and specialized purposes only." msgstr "" -#: ../../library/sys.rst:197 msgid "Use the more general :func:`_clear_internal_caches` function instead." msgstr "" -#: ../../library/sys.rst:203 -msgid "" -"Clear all internal performance-related caches. Use this function *only* to " -"release unnecessary references and memory blocks when hunting for leaks." +msgid "Clear all internal performance-related caches. Use this function *only* to release unnecessary references and memory blocks when hunting for leaks." msgstr "" -#: ../../library/sys.rst:211 -msgid "" -"Return a dictionary mapping each thread's identifier to the topmost stack " -"frame currently active in that thread at the time the function is called. " -"Note that functions in the :mod:`traceback` module can build the call stack " -"given such a frame." +msgid "Return a dictionary mapping each thread's identifier to the topmost stack frame currently active in that thread at the time the function is called. Note that functions in the :mod:`traceback` module can build the call stack given such a frame." msgstr "" -#: ../../library/sys.rst:216 -msgid "" -"This is most useful for debugging deadlock: this function does not require " -"the deadlocked threads' cooperation, and such threads' call stacks are " -"frozen for as long as they remain deadlocked. The frame returned for a non-" -"deadlocked thread may bear no relationship to that thread's current activity " -"by the time calling code examines the frame." +msgid "This is most useful for debugging deadlock: this function does not require the deadlocked threads' cooperation, and such threads' call stacks are frozen for as long as they remain deadlocked. The frame returned for a non-deadlocked thread may bear no relationship to that thread's current activity by the time calling code examines the frame." msgstr "" -#: ../../library/sys.rst:224 -msgid "" -"Raises an :ref:`auditing event ` ``sys._current_frames`` with no " -"arguments." +msgid "Raises an :ref:`auditing event ` ``sys._current_frames`` with no arguments." msgstr "" -#: ../../library/sys.rst:228 -msgid "" -"Return a dictionary mapping each thread's identifier to the topmost " -"exception currently active in that thread at the time the function is " -"called. If a thread is not currently handling an exception, it is not " -"included in the result dictionary." +msgid "Return a dictionary mapping each thread's identifier to the topmost exception currently active in that thread at the time the function is called. If a thread is not currently handling an exception, it is not included in the result dictionary." msgstr "" -#: ../../library/sys.rst:233 msgid "This is most useful for statistical profiling." msgstr "" -#: ../../library/sys.rst:237 -msgid "" -"Raises an :ref:`auditing event ` ``sys._current_exceptions`` with " -"no arguments." +msgid "Raises an :ref:`auditing event ` ``sys._current_exceptions`` with no arguments." msgstr "" -#: ../../library/sys.rst:239 -msgid "" -"Each value in the dictionary is now a single exception instance, rather than " -"a 3-tuple as returned from ``sys.exc_info()``." +msgid "Each value in the dictionary is now a single exception instance, rather than a 3-tuple as returned from ``sys.exc_info()``." msgstr "" -#: ../../library/sys.rst:245 -msgid "" -"This hook function is called by built-in :func:`breakpoint`. By default, it " -"drops you into the :mod:`pdb` debugger, but it can be set to any other " -"function so that you can choose which debugger gets used." +msgid "This hook function is called by built-in :func:`breakpoint`. By default, it drops you into the :mod:`pdb` debugger, but it can be set to any other function so that you can choose which debugger gets used." msgstr "" -#: ../../library/sys.rst:249 -msgid "" -"The signature of this function is dependent on what it calls. For example, " -"the default binding (e.g. ``pdb.set_trace()``) expects no arguments, but you " -"might bind it to a function that expects additional arguments (positional " -"and/or keyword). The built-in ``breakpoint()`` function passes its " -"``*args`` and ``**kws`` straight through. Whatever ``breakpointhooks()`` " -"returns is returned from ``breakpoint()``." +msgid "The signature of this function is dependent on what it calls. For example, the default binding (e.g. ``pdb.set_trace()``) expects no arguments, but you might bind it to a function that expects additional arguments (positional and/or keyword). The built-in ``breakpoint()`` function passes its ``*args`` and ``**kws`` straight through. Whatever ``breakpointhooks()`` returns is returned from ``breakpoint()``." msgstr "" -#: ../../library/sys.rst:256 -msgid "" -"The default implementation first consults the environment " -"variable :envvar:`PYTHONBREAKPOINT`. If that is set to ``\"0\"`` then this " -"function returns immediately; i.e. it is a no-op. If the environment " -"variable is not set, or is set to the empty string, ``pdb.set_trace()`` is " -"called. Otherwise this variable should name a function to run, using " -"Python's dotted-import nomenclature, e.g. " -"``package.subpackage.module.function``. In this case, " -"``package.subpackage.module`` would be imported and the resulting module " -"must have a callable named ``function()``. This is run, passing in " -"``*args`` and ``**kws``, and whatever ``function()`` returns, " -"``sys.breakpointhook()`` returns to the built-in :func:`breakpoint` function." -msgstr "" - -#: ../../library/sys.rst:268 -msgid "" -"Note that if anything goes wrong while importing the callable named " -"by :envvar:`PYTHONBREAKPOINT`, a :exc:`RuntimeWarning` is reported and the " -"breakpoint is ignored." +msgid "The default implementation first consults the environment variable :envvar:`PYTHONBREAKPOINT`. If that is set to ``\"0\"`` then this function returns immediately; i.e. it is a no-op. If the environment variable is not set, or is set to the empty string, ``pdb.set_trace()`` is called. Otherwise this variable should name a function to run, using Python's dotted-import nomenclature, e.g. ``package.subpackage.module.function``. In this case, ``package.subpackage.module`` would be imported and the resulting module must have a callable named ``function()``. This is run, passing in ``*args`` and ``**kws``, and whatever ``function()`` returns, ``sys.breakpointhook()`` returns to the built-in :func:`breakpoint` function." msgstr "" -#: ../../library/sys.rst:272 -msgid "" -"Also note that if ``sys.breakpointhook()`` is overridden " -"programmatically, :envvar:`PYTHONBREAKPOINT` is *not* consulted." +msgid "Note that if anything goes wrong while importing the callable named by :envvar:`PYTHONBREAKPOINT`, a :exc:`RuntimeWarning` is reported and the breakpoint is ignored." msgstr "" -#: ../../library/sys.rst:279 -msgid "" -"Print low-level information to stderr about the state of CPython's memory " -"allocator." +msgid "Also note that if ``sys.breakpointhook()`` is overridden programmatically, :envvar:`PYTHONBREAKPOINT` is *not* consulted." msgstr "" -#: ../../library/sys.rst:282 -msgid "" -"If Python is :ref:`built in debug mode ` (:option:`configure --" -"with-pydebug option <--with-pydebug>`), it also performs some expensive " -"internal consistency checks." +msgid "Print low-level information to stderr about the state of CPython's memory allocator." msgstr "" -#: ../../library/sys.rst:290 -msgid "" -"This function is specific to CPython. The exact output format is not " -"defined here, and may change." +msgid "If Python is :ref:`built in debug mode ` (:option:`configure --with-pydebug option <--with-pydebug>`), it also performs some expensive internal consistency checks." +msgstr "" + +msgid "This function is specific to CPython. The exact output format is not defined here, and may change." msgstr "" -#: ../../library/sys.rst:296 msgid "Integer specifying the handle of the Python DLL." msgstr "" -#: ../../library/sys.rst:303 -msgid "" -"If *value* is not ``None``, this function prints ``repr(value)`` to " -"``sys.stdout``, and saves *value* in ``builtins._``. If ``repr(value)`` is " -"not encodable to ``sys.stdout.encoding`` with ``sys.stdout.errors`` error " -"handler (which is probably ``'strict'``), encode it to " -"``sys.stdout.encoding`` with ``'backslashreplace'`` error handler." +msgid "If *value* is not ``None``, this function prints ``repr(value)`` to ``sys.stdout``, and saves *value* in ``builtins._``. If ``repr(value)`` is not encodable to ``sys.stdout.encoding`` with ``sys.stdout.errors`` error handler (which is probably ``'strict'``), encode it to ``sys.stdout.encoding`` with ``'backslashreplace'`` error handler." msgstr "" -#: ../../library/sys.rst:309 -msgid "" -"``sys.displayhook`` is called on the result of evaluating " -"an :term:`expression` entered in an interactive Python session. The display " -"of these values can be customized by assigning another one-argument function " -"to ``sys.displayhook``." +msgid "``sys.displayhook`` is called on the result of evaluating an :term:`expression` entered in an interactive Python session. The display of these values can be customized by assigning another one-argument function to ``sys.displayhook``." msgstr "" -#: ../../library/sys.rst:313 msgid "Pseudo-code::" msgstr "" -#: ../../library/sys.rst:315 msgid "" "def displayhook(value):\n" " if value is None:\n" @@ -430,548 +209,300 @@ msgid "" " builtins._ = value" msgstr "" -#: ../../library/sys.rst:333 msgid "Use ``'backslashreplace'`` error handler on :exc:`UnicodeEncodeError`." msgstr "" -#: ../../library/sys.rst:339 -msgid "" -"If this is true, Python won't try to write ``.pyc`` files on the import of " -"source modules. This value is initially set to ``True`` or ``False`` " -"depending on the :option:`-B` command line option and " -"the :envvar:`PYTHONDONTWRITEBYTECODE` environment variable, but you can set " -"it yourself to control bytecode file generation." +msgid "If this is true, Python won't try to write ``.pyc`` files on the import of source modules. This value is initially set to ``True`` or ``False`` depending on the :option:`-B` command line option and the :envvar:`PYTHONDONTWRITEBYTECODE` environment variable, but you can set it yourself to control bytecode file generation." msgstr "" -#: ../../library/sys.rst:348 -msgid "" -"A :term:`named tuple` holding information about the environment on the " -"*wasm32-emscripten* platform. The named tuple is provisional and may change " -"in the future." +msgid "A :term:`named tuple` holding information about the environment on the *wasm32-emscripten* platform. The named tuple is provisional and may change in the future." msgstr "" -#: ../../library/sys.rst:354 -msgid "" -"Emscripten version as tuple of ints (major, minor, micro), e.g. ``(3, 1, " -"8)``." +msgid "Emscripten version as tuple of ints (major, minor, micro), e.g. ``(3, 1, 8)``." msgstr "" -#: ../../library/sys.rst:358 -msgid "" -"Runtime string, e.g. browser user agent, ``'Node.js v14.18.2'``, or " -"``'UNKNOWN'``." +msgid "Runtime string, e.g. browser user agent, ``'Node.js v14.18.2'``, or ``'UNKNOWN'``." msgstr "" -#: ../../library/sys.rst:362 msgid "``True`` if Python is compiled with Emscripten pthreads support." msgstr "" -#: ../../library/sys.rst:366 msgid "``True`` if Python is compiled with shared memory support." msgstr "" -#: ../../library/sys.rst:375 -msgid "" -"If this is set (not ``None``), Python will write bytecode-cache ``.pyc`` " -"files to (and read them from) a parallel directory tree rooted at this " -"directory, rather than from ``__pycache__`` directories in the source code " -"tree. Any ``__pycache__`` directories in the source code tree will be " -"ignored and new ``.pyc`` files written within the pycache prefix. Thus if " -"you use :mod:`compileall` as a pre-build step, you must ensure you run it " -"with the same pycache prefix (if any) that you will use at runtime." +msgid "If this is set (not ``None``), Python will write bytecode-cache ``.pyc`` files to (and read them from) a parallel directory tree rooted at this directory, rather than from ``__pycache__`` directories in the source code tree. Any ``__pycache__`` directories in the source code tree will be ignored and new ``.pyc`` files written within the pycache prefix. Thus if you use :mod:`compileall` as a pre-build step, you must ensure you run it with the same pycache prefix (if any) that you will use at runtime." msgstr "" -#: ../../library/sys.rst:383 -msgid "" -"A relative path is interpreted relative to the current working directory." +msgid "A relative path is interpreted relative to the current working directory." msgstr "" -#: ../../library/sys.rst:385 -msgid "" -"This value is initially set based on the value of the :option:`-X` " -"``pycache_prefix=PATH`` command-line option or " -"the :envvar:`PYTHONPYCACHEPREFIX` environment variable (command-line takes " -"precedence). If neither are set, it is ``None``." +msgid "This value is initially set based on the value of the :option:`-X` ``pycache_prefix=PATH`` command-line option or the :envvar:`PYTHONPYCACHEPREFIX` environment variable (command-line takes precedence). If neither are set, it is ``None``." msgstr "" -#: ../../library/sys.rst:395 -msgid "" -"This function prints out a given traceback and exception to ``sys.stderr``." +msgid "This function prints out a given traceback and exception to ``sys.stderr``." msgstr "" -#: ../../library/sys.rst:397 -msgid "" -"When an exception other than :exc:`SystemExit` is raised and uncaught, the " -"interpreter calls ``sys.excepthook`` with three arguments, the exception " -"class, exception instance, and a traceback object. In an interactive " -"session this happens just before control is returned to the prompt; in a " -"Python program this happens just before the program exits. The handling of " -"such top-level exceptions can be customized by assigning another three-" -"argument function to ``sys.excepthook``." +msgid "When an exception other than :exc:`SystemExit` is raised and uncaught, the interpreter calls ``sys.excepthook`` with three arguments, the exception class, exception instance, and a traceback object. In an interactive session this happens just before control is returned to the prompt; in a Python program this happens just before the program exits. The handling of such top-level exceptions can be customized by assigning another three-argument function to ``sys.excepthook``." msgstr "" -#: ../../library/sys.rst:404 ../../library/sys.rst:406 -msgid "" -"Raise an auditing event ``sys.excepthook`` with arguments ``hook``, " -"``type``, ``value``, ``traceback`` when an uncaught exception occurs. If no " -"hook has been set, ``hook`` may be ``None``. If any hook raises an exception " -"derived from :class:`RuntimeError` the call to the hook will be suppressed. " -"Otherwise, the audit hook exception will be reported as unraisable and " -"``sys.excepthook`` will be called." +msgid "Raise an auditing event ``sys.excepthook`` with arguments ``hook``, ``type``, ``value``, ``traceback`` when an uncaught exception occurs. If no hook has been set, ``hook`` may be ``None``. If any hook raises an exception derived from :class:`RuntimeError` the call to the hook will be suppressed. Otherwise, the audit hook exception will be reported as unraisable and ``sys.excepthook`` will be called." msgstr "" -#: ../../library/sys.rst:415 -msgid "" -"The :func:`sys.unraisablehook` function handles unraisable exceptions and " -"the :func:`threading.excepthook` function handles exception raised " -"by :func:`threading.Thread.run`." +msgid "The :func:`sys.unraisablehook` function handles unraisable exceptions and the :func:`threading.excepthook` function handles exception raised by :func:`threading.Thread.run`." msgstr "" -#: ../../library/sys.rst:425 -msgid "" -"These objects contain the original values of ``breakpointhook``, " -"``displayhook``, ``excepthook``, and ``unraisablehook`` at the start of the " -"program. They are saved so that ``breakpointhook``, ``displayhook`` and " -"``excepthook``, ``unraisablehook`` can be restored in case they happen to " -"get replaced with broken or alternative objects." +msgid "These objects contain the original values of ``breakpointhook``, ``displayhook``, ``excepthook``, and ``unraisablehook`` at the start of the program. They are saved so that ``breakpointhook``, ``displayhook`` and ``excepthook``, ``unraisablehook`` can be restored in case they happen to get replaced with broken or alternative objects." msgstr "" -#: ../../library/sys.rst:431 msgid "__breakpointhook__" msgstr "" -#: ../../library/sys.rst:434 msgid "__unraisablehook__" msgstr "" -#: ../../library/sys.rst:440 -msgid "" -"This function, when called while an exception handler is executing (such as " -"an ``except`` or ``except*`` clause), returns the exception instance that " -"was caught by this handler. When exception handlers are nested within one " -"another, only the exception handled by the innermost handler is accessible." +msgid "This function, when called while an exception handler is executing (such as an ``except`` or ``except*`` clause), returns the exception instance that was caught by this handler. When exception handlers are nested within one another, only the exception handled by the innermost handler is accessible." msgstr "" -#: ../../library/sys.rst:445 msgid "If no exception handler is executing, this function returns ``None``." msgstr "" -#: ../../library/sys.rst:452 -msgid "" -"This function returns the old-style representation of the handled exception. " -"If an exception ``e`` is currently handled (so :func:`exception` would " -"return ``e``), :func:`exc_info` returns the tuple ``(type(e), e, " -"e.__traceback__)``. That is, a tuple containing the type of the exception (a " -"subclass of :exc:`BaseException`), the exception itself, and " -"a :ref:`traceback object ` which typically encapsulates " -"the call stack at the point where the exception last occurred." +msgid "This function returns the old-style representation of the handled exception. If an exception ``e`` is currently handled (so :func:`exception` would return ``e``), :func:`exc_info` returns the tuple ``(type(e), e, e.__traceback__)``. That is, a tuple containing the type of the exception (a subclass of :exc:`BaseException`), the exception itself, and a :ref:`traceback object ` which typically encapsulates the call stack at the point where the exception last occurred." msgstr "" -#: ../../library/sys.rst:463 -msgid "" -"If no exception is being handled anywhere on the stack, this function return " -"a tuple containing three ``None`` values." +msgid "If no exception is being handled anywhere on the stack, this function return a tuple containing three ``None`` values." msgstr "" -#: ../../library/sys.rst:466 -msgid "" -"The ``type`` and ``traceback`` fields are now derived from the ``value`` " -"(the exception instance), so when an exception is modified while it is being " -"handled, the changes are reflected in the results of subsequent calls " -"to :func:`exc_info`." +msgid "The ``type`` and ``traceback`` fields are now derived from the ``value`` (the exception instance), so when an exception is modified while it is being handled, the changes are reflected in the results of subsequent calls to :func:`exc_info`." msgstr "" -#: ../../library/sys.rst:474 -msgid "" -"A string giving the site-specific directory prefix where the platform-" -"dependent Python files are installed; by default, this is also ``'/usr/" -"local'``. This can be set at build time with the ``--exec-prefix`` argument " -"to the :program:`configure` script. Specifically, all configuration files " -"(e.g. the :file:`pyconfig.h` header file) are installed in the " -"directory :file:`{exec_prefix}/lib/python{X.Y}/config`, and shared library " -"modules are installed in :file:`{exec_prefix}/lib/python{X.Y}/lib-dynload`, " -"where *X.Y* is the version number of Python, for example ``3.2``." +msgid "A string giving the site-specific directory prefix where the platform-dependent Python files are installed; by default, this is also ``'/usr/local'``. This can be set at build time with the ``--exec-prefix`` argument to the :program:`configure` script. Specifically, all configuration files (e.g. the :file:`pyconfig.h` header file) are installed in the directory :file:`{exec_prefix}/lib/python{X.Y}/config`, and shared library modules are installed in :file:`{exec_prefix}/lib/python{X.Y}/lib-dynload`, where *X.Y* is the version number of Python, for example ``3.2``." msgstr "" -#: ../../library/sys.rst:485 -msgid "" -"If a :ref:`virtual environment ` is in effect, " -"this :data:`exec_prefix` will point to the virtual environment. The value " -"for the Python installation will still be available, " -"via :data:`base_exec_prefix`. Refer to :ref:`sys-path-init-virtual-" -"environments` for more information." +msgid "If a :ref:`virtual environment ` is in effect, this :data:`exec_prefix` will point to the virtual environment. The value for the Python installation will still be available, via :data:`base_exec_prefix`. Refer to :ref:`sys-path-init-virtual-environments` for more information." msgstr "" -#: ../../library/sys.rst:492 ../../library/sys.rst:1631 -msgid "" -"When running under a :ref:`virtual environment `, :data:`prefix` " -"and :data:`exec_prefix` are now set to the virtual environment prefix by " -"the :ref:`path initialization `, instead of :mod:`site`. This " -"means that :data:`prefix` and :data:`exec_prefix` always point to the " -"virtual environment, even when :mod:`site` is disabled (:option:`-S`)." +msgid "When running under a :ref:`virtual environment `, :data:`prefix` and :data:`exec_prefix` are now set to the virtual environment prefix by the :ref:`path initialization `, instead of :mod:`site`. This means that :data:`prefix` and :data:`exec_prefix` always point to the virtual environment, even when :mod:`site` is disabled (:option:`-S`)." msgstr "" -#: ../../library/sys.rst:501 -msgid "" -"A string giving the absolute path of the executable binary for the Python " -"interpreter, on systems where this makes sense. If Python is unable to " -"retrieve the real path to its executable, :data:`sys.executable` will be an " -"empty string or ``None``." +msgid "A string giving the absolute path of the executable binary for the Python interpreter, on systems where this makes sense. If Python is unable to retrieve the real path to its executable, :data:`sys.executable` will be an empty string or ``None``." msgstr "" -#: ../../library/sys.rst:509 -msgid "" -"Raise a :exc:`SystemExit` exception, signaling an intention to exit the " -"interpreter." +msgid "Raise a :exc:`SystemExit` exception, signaling an intention to exit the interpreter." msgstr "" -#: ../../library/sys.rst:511 -msgid "" -"The optional argument *arg* can be an integer giving the exit status " -"(defaulting to zero), or another type of object. If it is an integer, zero " -"is considered \"successful termination\" and any nonzero value is considered " -"\"abnormal termination\" by shells and the like. Most systems require it to " -"be in the range 0--127, and produce undefined results otherwise. Some " -"systems have a convention for assigning specific meanings to specific exit " -"codes, but these are generally underdeveloped; Unix programs generally use 2 " -"for command line syntax errors and 1 for all other kinds of errors. If " -"another type of object is passed, ``None`` is equivalent to passing zero, " -"and any other object is printed to :data:`stderr` and results in an exit " -"code of 1. In particular, ``sys.exit(\"some error message\")`` is a quick " -"way to exit a program when an error occurs." -msgstr "" - -#: ../../library/sys.rst:524 -msgid "" -"Since :func:`exit` ultimately \"only\" raises an exception, it will only " -"exit the process when called from the main thread, and the exception is not " -"intercepted. Cleanup actions specified by finally clauses of :keyword:`try` " -"statements are honored, and it is possible to intercept the exit attempt at " -"an outer level." +msgid "The optional argument *arg* can be an integer giving the exit status (defaulting to zero), or another type of object. If it is an integer, zero is considered \"successful termination\" and any nonzero value is considered \"abnormal termination\" by shells and the like. Most systems require it to be in the range 0--127, and produce undefined results otherwise. Some systems have a convention for assigning specific meanings to specific exit codes, but these are generally underdeveloped; Unix programs generally use 2 for command line syntax errors and 1 for all other kinds of errors. If another type of object is passed, ``None`` is equivalent to passing zero, and any other object is printed to :data:`stderr` and results in an exit code of 1. In particular, ``sys.exit(\"some error message\")`` is a quick way to exit a program when an error occurs." msgstr "" -#: ../../library/sys.rst:529 -msgid "" -"If an error occurs in the cleanup after the Python interpreter has " -"caught :exc:`SystemExit` (such as an error flushing buffered data in the " -"standard streams), the exit status is changed to 120." +msgid "Since :func:`exit` ultimately \"only\" raises an exception, it will only exit the process when called from the main thread, and the exception is not intercepted. Cleanup actions specified by finally clauses of :keyword:`try` statements are honored, and it is possible to intercept the exit attempt at an outer level." msgstr "" -#: ../../library/sys.rst:537 -msgid "" -"The :term:`named tuple` *flags* exposes the status of command line flags. " -"Flags should only be accessed only by name and not by index. The attributes " -"are read only." +msgid "If an error occurs in the cleanup after the Python interpreter has caught :exc:`SystemExit` (such as an error flushing buffered data in the standard streams), the exit status is changed to 120." +msgstr "" + +msgid "The :term:`named tuple` *flags* exposes the status of command line flags. Flags should only be accessed only by name and not by index. The attributes are read only." msgstr "" -#: ../../library/sys.rst:544 msgid ":option:`-d`" msgstr "" -#: ../../library/sys.rst:547 ../../library/sys.rst:550 msgid ":option:`-i`" msgstr "" -#: ../../library/sys.rst:553 msgid ":option:`-I`" msgstr "" -#: ../../library/sys.rst:556 msgid ":option:`-O` or :option:`-OO`" msgstr "" -#: ../../library/sys.rst:559 msgid ":option:`-B`" msgstr "" -#: ../../library/sys.rst:562 msgid ":option:`-s`" msgstr "" -#: ../../library/sys.rst:565 msgid ":option:`-S`" msgstr "" -#: ../../library/sys.rst:568 msgid ":option:`-E`" msgstr "" -#: ../../library/sys.rst:571 msgid ":option:`-v`" msgstr "" -#: ../../library/sys.rst:574 msgid ":option:`-b`" msgstr "" -#: ../../library/sys.rst:577 msgid ":option:`-q`" msgstr "" -#: ../../library/sys.rst:580 msgid ":option:`-R`" msgstr "" -#: ../../library/sys.rst:583 msgid ":option:`-X dev <-X>` (:ref:`Python Development Mode `)" msgstr "" -#: ../../library/sys.rst:586 msgid ":option:`-X utf8 <-X>`" msgstr "" -#: ../../library/sys.rst:589 msgid ":option:`-P`" msgstr "" -#: ../../library/sys.rst:592 -msgid "" -":option:`-X int_max_str_digits <-X>` (:ref:`integer string conversion length " -"limitation `)" +msgid ":option:`-X int_max_str_digits <-X>` (:ref:`integer string conversion length limitation `)" msgstr "" -#: ../../library/sys.rst:596 msgid ":option:`-X warn_default_encoding <-X>`" msgstr "" -#: ../../library/sys.rst:599 msgid ":option:`-X gil <-X>` and :envvar:`PYTHON_GIL`" msgstr "" -#: ../../library/sys.rst:602 -msgid "" -":option:`-X thread_inherit_context <-X>` " -"and :envvar:`PYTHON_THREAD_INHERIT_CONTEXT`" +msgid ":option:`-X thread_inherit_context <-X>` and :envvar:`PYTHON_THREAD_INHERIT_CONTEXT`" msgstr "" -#: ../../library/sys.rst:606 -msgid "" -":option:`-X context_aware_warnings <-X>` " -"and :envvar:`PYTHON_CONTEXT_AWARE_WARNINGS`" +msgid ":option:`-X context_aware_warnings <-X>` and :envvar:`PYTHON_CONTEXT_AWARE_WARNINGS`" msgstr "" -#: ../../library/sys.rst:610 msgid "Added ``quiet`` attribute for the new :option:`-q` flag." msgstr "" -#: ../../library/sys.rst:613 msgid "The ``hash_randomization`` attribute." msgstr "" -#: ../../library/sys.rst:616 msgid "Removed obsolete ``division_warning`` attribute." msgstr "" -#: ../../library/sys.rst:619 msgid "Added ``isolated`` attribute for :option:`-I` ``isolated`` flag." msgstr "" -#: ../../library/sys.rst:622 -msgid "" -"Added the ``dev_mode`` attribute for the new :ref:`Python Development Mode " -"` and the ``utf8_mode`` attribute for the new :option:`-X` " -"``utf8`` flag." +msgid "Added the ``dev_mode`` attribute for the new :ref:`Python Development Mode ` and the ``utf8_mode`` attribute for the new :option:`-X` ``utf8`` flag." msgstr "" -#: ../../library/sys.rst:627 -msgid "" -"Added ``warn_default_encoding`` attribute for :option:`-X` " -"``warn_default_encoding`` flag." +msgid "Added ``warn_default_encoding`` attribute for :option:`-X` ``warn_default_encoding`` flag." msgstr "" -#: ../../library/sys.rst:630 msgid "Added the ``safe_path`` attribute for :option:`-P` option." msgstr "" -#: ../../library/sys.rst:633 msgid "Added the ``int_max_str_digits`` attribute." msgstr "" -#: ../../library/sys.rst:636 msgid "Added the ``gil`` attribute." msgstr "" -#: ../../library/sys.rst:639 msgid "Added the ``thread_inherit_context`` attribute." msgstr "" -#: ../../library/sys.rst:642 msgid "Added the ``context_aware_warnings`` attribute." msgstr "" -#: ../../library/sys.rst:648 -msgid "" -"A :term:`named tuple` holding information about the float type. It contains " -"low level information about the precision and internal representation. The " -"values correspond to the various floating-point constants defined in the " -"standard header file :file:`float.h` for the 'C' programming language; see " -"section 5.2.4.2.2 of the 1999 ISO/IEC C standard [C99]_, 'Characteristics of " -"floating types', for details." +msgid "A :term:`named tuple` holding information about the float type. It contains low level information about the precision and internal representation. The values correspond to the various floating-point constants defined in the standard header file :file:`float.h` for the 'C' programming language; see section 5.2.4.2.2 of the 1999 ISO/IEC C standard [C99]_, 'Characteristics of floating types', for details." msgstr "" -#: ../../library/sys.rst:655 msgid "Attributes of the :data:`!float_info` :term:`named tuple`" msgstr "" -#: ../../library/sys.rst:658 msgid "attribute" msgstr "" -#: ../../library/sys.rst:659 msgid "float.h macro" msgstr "" -#: ../../library/sys.rst:660 msgid "explanation" msgstr "" -#: ../../library/sys.rst:663 msgid ":c:macro:`!DBL_EPSILON`" msgstr "" -#: ../../library/sys.rst:664 -msgid "" -"difference between 1.0 and the least value greater than 1.0 that is " -"representable as a float." +msgid "difference between 1.0 and the least value greater than 1.0 that is representable as a float." msgstr "" -#: ../../library/sys.rst:667 msgid "See also :func:`math.ulp`." msgstr "" -#: ../../library/sys.rst:670 msgid ":c:macro:`!DBL_DIG`" msgstr "" -#: ../../library/sys.rst:671 -msgid "" -"The maximum number of decimal digits that can be faithfully represented in a " -"float; see below." +msgid "The maximum number of decimal digits that can be faithfully represented in a float; see below." msgstr "" -#: ../../library/sys.rst:675 msgid ":c:macro:`!DBL_MANT_DIG`" msgstr "" -#: ../../library/sys.rst:676 -msgid "" -"Float precision: the number of base-``radix`` digits in the significand of a " -"float." +msgid "Float precision: the number of base-``radix`` digits in the significand of a float." msgstr "" -#: ../../library/sys.rst:680 msgid ":c:macro:`!DBL_MAX`" msgstr "" -#: ../../library/sys.rst:681 msgid "The maximum representable positive finite float." msgstr "" -#: ../../library/sys.rst:684 msgid ":c:macro:`!DBL_MAX_EXP`" msgstr "" -#: ../../library/sys.rst:685 -msgid "" -"The maximum integer *e* such that ``radix**(e-1)`` is a representable finite " -"float." +msgid "The maximum integer *e* such that ``radix**(e-1)`` is a representable finite float." msgstr "" -#: ../../library/sys.rst:689 msgid ":c:macro:`!DBL_MAX_10_EXP`" msgstr "" -#: ../../library/sys.rst:690 -msgid "" -"The maximum integer *e* such that ``10**e`` is in the range of representable " -"finite floats." +msgid "The maximum integer *e* such that ``10**e`` is in the range of representable finite floats." msgstr "" -#: ../../library/sys.rst:694 msgid ":c:macro:`!DBL_MIN`" msgstr "" -#: ../../library/sys.rst:695 msgid "The minimum representable positive *normalized* float." msgstr "" -#: ../../library/sys.rst:697 -msgid "" -"Use :func:`math.ulp(0.0) ` to get the smallest positive " -"*denormalized* representable float." +msgid "Use :func:`math.ulp(0.0) ` to get the smallest positive *denormalized* representable float." msgstr "" -#: ../../library/sys.rst:701 msgid ":c:macro:`!DBL_MIN_EXP`" msgstr "" -#: ../../library/sys.rst:702 -msgid "" -"The minimum integer *e* such that ``radix**(e-1)`` is a normalized float." +msgid "The minimum integer *e* such that ``radix**(e-1)`` is a normalized float." msgstr "" -#: ../../library/sys.rst:706 msgid ":c:macro:`!DBL_MIN_10_EXP`" msgstr "" -#: ../../library/sys.rst:707 msgid "The minimum integer *e* such that ``10**e`` is a normalized float." msgstr "" -#: ../../library/sys.rst:710 msgid ":c:macro:`!FLT_RADIX`" msgstr "" -#: ../../library/sys.rst:711 msgid "The radix of exponent representation." msgstr "" -#: ../../library/sys.rst:714 msgid ":c:macro:`!FLT_ROUNDS`" msgstr "" -#: ../../library/sys.rst:715 -msgid "" -"An integer representing the rounding mode for floating-point arithmetic. " -"This reflects the value of the system :c:macro:`!FLT_ROUNDS` macro at " -"interpreter startup time:" +msgid "An integer representing the rounding mode for floating-point arithmetic. This reflects the value of the system :c:macro:`!FLT_ROUNDS` macro at interpreter startup time:" msgstr "" -#: ../../library/sys.rst:719 msgid "``-1``: indeterminable" msgstr "" -#: ../../library/sys.rst:720 msgid "``0``: toward zero" msgstr "" -#: ../../library/sys.rst:721 msgid "``1``: to nearest" msgstr "" -#: ../../library/sys.rst:722 msgid "``2``: toward positive infinity" msgstr "" -#: ../../library/sys.rst:723 msgid "``3``: toward negative infinity" msgstr "" -#: ../../library/sys.rst:725 -msgid "" -"All other values for :c:macro:`!FLT_ROUNDS` characterize implementation-" -"defined rounding behavior." +msgid "All other values for :c:macro:`!FLT_ROUNDS` characterize implementation-defined rounding behavior." msgstr "" -#: ../../library/sys.rst:728 -msgid "" -"The attribute :attr:`sys.float_info.dig` needs further explanation. If " -"``s`` is any string representing a decimal number with at most :attr:`!" -"sys.float_info.dig` significant digits, then converting ``s`` to a float and " -"back again will recover a string representing the same decimal value::" +msgid "The attribute :attr:`sys.float_info.dig` needs further explanation. If ``s`` is any string representing a decimal number with at most :attr:`!sys.float_info.dig` significant digits, then converting ``s`` to a float and back again will recover a string representing the same decimal value::" msgstr "" -#: ../../library/sys.rst:734 msgid "" ">>> import sys\n" ">>> sys.float_info.dig\n" @@ -981,463 +512,234 @@ msgid "" "'3.14159265358979'" msgstr "" -#: ../../library/sys.rst:741 -msgid "" -"But for strings with more than :attr:`sys.float_info.dig` significant " -"digits, this isn't always true::" +msgid "But for strings with more than :attr:`sys.float_info.dig` significant digits, this isn't always true::" msgstr "" -#: ../../library/sys.rst:744 msgid "" ">>> s = '9876543211234567' # 16 significant digits is too many!\n" ">>> format(float(s), '.16g') # conversion changes value\n" "'9876543211234568'" msgstr "" -#: ../../library/sys.rst:750 -msgid "" -"A string indicating how the :func:`repr` function behaves for floats. If " -"the string has value ``'short'`` then for a finite float ``x``, ``repr(x)`` " -"aims to produce a short string with the property that ``float(repr(x)) == " -"x``. This is the usual behaviour in Python 3.1 and later. Otherwise, " -"``float_repr_style`` has value ``'legacy'`` and ``repr(x)`` behaves in the " -"same way as it did in versions of Python prior to 3.1." +msgid "A string indicating how the :func:`repr` function behaves for floats. If the string has value ``'short'`` then for a finite float ``x``, ``repr(x)`` aims to produce a short string with the property that ``float(repr(x)) == x``. This is the usual behaviour in Python 3.1 and later. Otherwise, ``float_repr_style`` has value ``'legacy'`` and ``repr(x)`` behaves in the same way as it did in versions of Python prior to 3.1." msgstr "" -#: ../../library/sys.rst:763 -msgid "" -"Return the number of memory blocks currently allocated by the interpreter, " -"regardless of their size. This function is mainly useful for tracking and " -"debugging memory leaks. Because of the interpreter's internal caches, the " -"result can vary from call to call; you may have to " -"call :func:`_clear_internal_caches` and :func:`gc.collect` to get more " -"predictable results." +msgid "Return the number of memory blocks currently allocated by the interpreter, regardless of their size. This function is mainly useful for tracking and debugging memory leaks. Because of the interpreter's internal caches, the result can vary from call to call; you may have to call :func:`_clear_internal_caches` and :func:`gc.collect` to get more predictable results." msgstr "" -#: ../../library/sys.rst:770 -msgid "" -"If a Python build or implementation cannot reasonably compute this " -"information, :func:`getallocatedblocks` is allowed to return 0 instead." +msgid "If a Python build or implementation cannot reasonably compute this information, :func:`getallocatedblocks` is allowed to return 0 instead." msgstr "" -#: ../../library/sys.rst:778 msgid "Return the number of unicode objects that have been interned." msgstr "" -#: ../../library/sys.rst:785 -msgid "" -"Return the build-time API level of Android as an integer. This represents " -"the minimum version of Android this build of Python can run on. For runtime " -"version information, see :func:`platform.android_ver`." +msgid "Return the build-time API level of Android as an integer. This represents the minimum version of Android this build of Python can run on. For runtime version information, see :func:`platform.android_ver`." msgstr "" -#: ../../library/sys.rst:796 -msgid "" -"Return ``'utf-8'``. This is the name of the default string encoding, used in " -"methods like :meth:`str.encode`." +msgid "Return ``'utf-8'``. This is the name of the default string encoding, used in methods like :meth:`str.encode`." msgstr "" -#: ../../library/sys.rst:802 -msgid "" -"Return the current value of the flags that are used for :c:func:`dlopen` " -"calls. Symbolic names for the flag values can be found in the :mod:`os` " -"module (:samp:`RTLD_{xxx}` constants, e.g. :const:`os.RTLD_LAZY`)." +msgid "Return the current value of the flags that are used for :c:func:`dlopen` calls. Symbolic names for the flag values can be found in the :mod:`os` module (:samp:`RTLD_{xxx}` constants, e.g. :const:`os.RTLD_LAZY`)." msgstr "" -#: ../../library/sys.rst:812 -msgid "" -"Get the :term:`filesystem encoding `: " -"the encoding used with the :term:`filesystem error handler ` to convert between Unicode filenames and bytes " -"filenames. The filesystem error handler is returned " -"from :func:`getfilesystemencodeerrors`." +msgid "Get the :term:`filesystem encoding `: the encoding used with the :term:`filesystem error handler ` to convert between Unicode filenames and bytes filenames. The filesystem error handler is returned from :func:`getfilesystemencodeerrors`." msgstr "" -#: ../../library/sys.rst:818 -msgid "" -"For best compatibility, str should be used for filenames in all cases, " -"although representing filenames as bytes is also supported. Functions " -"accepting or returning filenames should support either str or bytes and " -"internally convert to the system's preferred representation." +msgid "For best compatibility, str should be used for filenames in all cases, although representing filenames as bytes is also supported. Functions accepting or returning filenames should support either str or bytes and internally convert to the system's preferred representation." msgstr "" -#: ../../library/sys.rst:823 ../../library/sys.rst:851 -msgid "" -":func:`os.fsencode` and :func:`os.fsdecode` should be used to ensure that " -"the correct encoding and errors mode are used." +msgid ":func:`os.fsencode` and :func:`os.fsdecode` should be used to ensure that the correct encoding and errors mode are used." msgstr "" -#: ../../library/sys.rst:826 ../../library/sys.rst:854 -msgid "" -"The :term:`filesystem encoding and error handler` are configured at Python " -"startup by the :c:func:`PyConfig_Read` function: " -"see :c:member:`~PyConfig.filesystem_encoding` " -"and :c:member:`~PyConfig.filesystem_errors` members of :c:type:`PyConfig`." +msgid "The :term:`filesystem encoding and error handler` are configured at Python startup by the :c:func:`PyConfig_Read` function: see :c:member:`~PyConfig.filesystem_encoding` and :c:member:`~PyConfig.filesystem_errors` members of :c:type:`PyConfig`." msgstr "" -#: ../../library/sys.rst:831 msgid ":func:`getfilesystemencoding` result cannot be ``None`` anymore." msgstr "" -#: ../../library/sys.rst:834 -msgid "" -"Windows is no longer guaranteed to return ``'mbcs'``. See :pep:`529` " -"and :func:`_enablelegacywindowsfsencoding` for more information." +msgid "Windows is no longer guaranteed to return ``'mbcs'``. See :pep:`529` and :func:`_enablelegacywindowsfsencoding` for more information." msgstr "" -#: ../../library/sys.rst:838 -msgid "" -"Return ``'utf-8'`` if the :ref:`Python UTF-8 Mode ` is enabled." +msgid "Return ``'utf-8'`` if the :ref:`Python UTF-8 Mode ` is enabled." msgstr "" -#: ../../library/sys.rst:845 -msgid "" -"Get the :term:`filesystem error handler `: the error handler used with the :term:`filesystem encoding " -"` to convert between Unicode " -"filenames and bytes filenames. The filesystem encoding is returned " -"from :func:`getfilesystemencoding`." +msgid "Get the :term:`filesystem error handler `: the error handler used with the :term:`filesystem encoding ` to convert between Unicode filenames and bytes filenames. The filesystem encoding is returned from :func:`getfilesystemencoding`." msgstr "" -#: ../../library/sys.rst:863 -msgid "" -"Returns the current value for the :ref:`integer string conversion length " -"limitation `. See also :func:`set_int_max_str_digits`." +msgid "Returns the current value for the :ref:`integer string conversion length limitation `. See also :func:`set_int_max_str_digits`." msgstr "" -#: ../../library/sys.rst:870 -msgid "" -"Return the reference count of the *object*. The count returned is generally " -"one higher than you might expect, because it includes the (temporary) " -"reference as an argument to :func:`getrefcount`." +msgid "Return the reference count of the *object*. The count returned is generally one higher than you might expect, because it includes the (temporary) reference as an argument to :func:`getrefcount`." msgstr "" -#: ../../library/sys.rst:874 -msgid "" -"Note that the returned value may not actually reflect how many references to " -"the object are actually held. For example, some objects " -"are :term:`immortal` and have a very high refcount that does not reflect the " -"actual number of references. Consequently, do not rely on the returned " -"value to be accurate, other than a value of 0 or 1." +msgid "Note that the returned value may not actually reflect how many references to the object are actually held. For example, some objects are :term:`immortal` and have a very high refcount that does not reflect the actual number of references. Consequently, do not rely on the returned value to be accurate, other than a value of 0 or 1." msgstr "" -#: ../../library/sys.rst:882 -msgid "" -":term:`Immortal ` objects with a large reference count can be " -"identified via :func:`_is_immortal`." +msgid ":term:`Immortal ` objects with a large reference count can be identified via :func:`_is_immortal`." msgstr "" -#: ../../library/sys.rst:885 -msgid "" -"Immortal objects have very large refcounts that do not match the actual " -"number of references to the object." +msgid "Immortal objects have very large refcounts that do not match the actual number of references to the object." msgstr "" -#: ../../library/sys.rst:891 -msgid "" -"Return the current value of the recursion limit, the maximum depth of the " -"Python interpreter stack. This limit prevents infinite recursion from " -"causing an overflow of the C stack and crashing Python. It can be set " -"by :func:`setrecursionlimit`." +msgid "Return the current value of the recursion limit, the maximum depth of the Python interpreter stack. This limit prevents infinite recursion from causing an overflow of the C stack and crashing Python. It can be set by :func:`setrecursionlimit`." msgstr "" -#: ../../library/sys.rst:899 -msgid "" -"Return the size of an object in bytes. The object can be any type of object. " -"All built-in objects will return correct results, but this does not have to " -"hold true for third-party extensions as it is implementation specific." +msgid "Return the size of an object in bytes. The object can be any type of object. All built-in objects will return correct results, but this does not have to hold true for third-party extensions as it is implementation specific." msgstr "" -#: ../../library/sys.rst:904 -msgid "" -"Only the memory consumption directly attributed to the object is accounted " -"for, not the memory consumption of objects it refers to." +msgid "Only the memory consumption directly attributed to the object is accounted for, not the memory consumption of objects it refers to." msgstr "" -#: ../../library/sys.rst:907 -msgid "" -"If given, *default* will be returned if the object does not provide means to " -"retrieve the size. Otherwise a :exc:`TypeError` will be raised." +msgid "If given, *default* will be returned if the object does not provide means to retrieve the size. Otherwise a :exc:`TypeError` will be raised." msgstr "" -#: ../../library/sys.rst:910 -msgid "" -":func:`getsizeof` calls the object's ``__sizeof__`` method and adds an " -"additional garbage collector overhead if the object is managed by the " -"garbage collector." +msgid ":func:`getsizeof` calls the object's ``__sizeof__`` method and adds an additional garbage collector overhead if the object is managed by the garbage collector." msgstr "" -#: ../../library/sys.rst:914 -msgid "" -"See `recursive sizeof recipe `_ for an example of " -"using :func:`getsizeof` recursively to find the size of containers and all " -"their contents." +msgid "See `recursive sizeof recipe `_ for an example of using :func:`getsizeof` recursively to find the size of containers and all their contents." msgstr "" -#: ../../library/sys.rst:920 -msgid "" -"Return the interpreter's \"thread switch interval\" in seconds; " -"see :func:`setswitchinterval`." +msgid "Return the interpreter's \"thread switch interval\" in seconds; see :func:`setswitchinterval`." msgstr "" -#: ../../library/sys.rst:928 -msgid "" -"Return a frame object from the call stack. If optional integer *depth* is " -"given, return the frame object that many calls below the top of the stack. " -"If that is deeper than the call stack, :exc:`ValueError` is raised. The " -"default for *depth* is zero, returning the frame at the top of the call " -"stack." +msgid "Return a frame object from the call stack. If optional integer *depth* is given, return the frame object that many calls below the top of the stack. If that is deeper than the call stack, :exc:`ValueError` is raised. The default for *depth* is zero, returning the frame at the top of the call stack." msgstr "" -#: ../../library/sys.rst:933 -msgid "" -"Raises an :ref:`auditing event ` ``sys._getframe`` with argument " -"``frame``." +msgid "Raises an :ref:`auditing event ` ``sys._getframe`` with argument ``frame``." msgstr "" -#: ../../library/sys.rst:937 ../../library/sys.rst:953 -msgid "" -"This function should be used for internal and specialized purposes only. It " -"is not guaranteed to exist in all implementations of Python." +msgid "This function should be used for internal and specialized purposes only. It is not guaranteed to exist in all implementations of Python." msgstr "" -#: ../../library/sys.rst:943 -msgid "" -"Return the name of a module from the call stack. If optional integer " -"*depth* is given, return the module that many calls below the top of the " -"stack. If that is deeper than the call stack, or if the module is " -"unidentifiable, ``None`` is returned. The default for *depth* is zero, " -"returning the module at the top of the call stack." +msgid "Return the name of a module from the call stack. If optional integer *depth* is given, return the module that many calls below the top of the stack. If that is deeper than the call stack, or if the module is unidentifiable, ``None`` is returned. The default for *depth* is zero, returning the module at the top of the call stack." msgstr "" -#: ../../library/sys.rst:949 -msgid "" -"Raises an :ref:`auditing event ` ``sys._getframemodulename`` with " -"argument ``depth``." +msgid "Raises an :ref:`auditing event ` ``sys._getframemodulename`` with argument ``depth``." msgstr "" -#: ../../library/sys.rst:961 -msgid "" -"This function only exists if CPython was built using the specialized " -"configure option :option:`--with-trace-refs`. It is intended only for " -"debugging garbage-collection issues." +msgid "This function only exists if CPython was built using the specialized configure option :option:`--with-trace-refs`. It is intended only for debugging garbage-collection issues." msgstr "" -#: ../../library/sys.rst:965 -msgid "" -"Return a list of up to *limit* dynamically allocated Python objects. If " -"*type* is given, only objects of that exact type (not subtypes) are included." +msgid "Return a list of up to *limit* dynamically allocated Python objects. If *type* is given, only objects of that exact type (not subtypes) are included." msgstr "" -#: ../../library/sys.rst:969 -msgid "" -"Objects from the list are not safe to use. Specifically, the result will " -"include objects from all interpreters that share their object allocator " -"state (that is, ones created " -"with :c:member:`PyInterpreterConfig.use_main_obmalloc` set to 1 or " -"using :c:func:`Py_NewInterpreter`, and the :ref:`main interpreter `). Mixing objects from different interpreters may lead " -"to crashes or other unexpected behavior." +msgid "Objects from the list are not safe to use. Specifically, the result will include objects from all interpreters that share their object allocator state (that is, ones created with :c:member:`PyInterpreterConfig.use_main_obmalloc` set to 1 or using :c:func:`Py_NewInterpreter`, and the :ref:`main interpreter `). Mixing objects from different interpreters may lead to crashes or other unexpected behavior." msgstr "" -#: ../../library/sys.rst:980 ../../library/sys.rst:1388 -msgid "" -"This function should be used for specialized purposes only. It is not " -"guaranteed to exist in all implementations of Python." +msgid "This function should be used for specialized purposes only. It is not guaranteed to exist in all implementations of Python." msgstr "" -#: ../../library/sys.rst:985 msgid "The result may include objects from other interpreters." msgstr "" -#: ../../library/sys.rst:994 msgid "Get the profiler function as set by :func:`setprofile`." msgstr "" -#: ../../library/sys.rst:1003 msgid "Get the trace function as set by :func:`settrace`." msgstr "" -#: ../../library/sys.rst:1007 -msgid "" -"The :func:`gettrace` function is intended only for implementing debuggers, " -"profilers, coverage tools and the like. Its behavior is part of the " -"implementation platform, rather than part of the language definition, and " -"thus may not be available in all Python implementations." +msgid "The :func:`gettrace` function is intended only for implementing debuggers, profilers, coverage tools and the like. Its behavior is part of the implementation platform, rather than part of the language definition, and thus may not be available in all Python implementations." msgstr "" -#: ../../library/sys.rst:1015 -msgid "" -"Return a named tuple describing the Windows version currently running. The " -"named elements are *major*, *minor*, *build*, *platform*, *service_pack*, " -"*service_pack_minor*, *service_pack_major*, *suite_mask*, *product_type* and " -"*platform_version*. *service_pack* contains a string, *platform_version* a 3-" -"tuple and all other values are integers. The components can also be accessed " -"by name, so ``sys.getwindowsversion()[0]`` is equivalent to " -"``sys.getwindowsversion().major``. For compatibility with prior versions, " -"only the first 5 elements are retrievable by indexing." +msgid "Return a named tuple describing the Windows version currently running. The named elements are *major*, *minor*, *build*, *platform*, *service_pack*, *service_pack_minor*, *service_pack_major*, *suite_mask*, *product_type* and *platform_version*. *service_pack* contains a string, *platform_version* a 3-tuple and all other values are integers. The components can also be accessed by name, so ``sys.getwindowsversion()[0]`` is equivalent to ``sys.getwindowsversion().major``. For compatibility with prior versions, only the first 5 elements are retrievable by indexing." msgstr "" -#: ../../library/sys.rst:1026 msgid "*platform* will be ``2`` (VER_PLATFORM_WIN32_NT)." msgstr "" -#: ../../library/sys.rst:1028 msgid "*product_type* may be one of the following values:" msgstr "" -#: ../../library/sys.rst:1031 msgid "Constant" msgstr "" -#: ../../library/sys.rst:1031 msgid "Meaning" msgstr "" -#: ../../library/sys.rst:1033 msgid "``1`` (VER_NT_WORKSTATION)" msgstr "" -#: ../../library/sys.rst:1033 msgid "The system is a workstation." msgstr "" -#: ../../library/sys.rst:1035 msgid "``2`` (VER_NT_DOMAIN_CONTROLLER)" msgstr "" -#: ../../library/sys.rst:1035 msgid "The system is a domain controller." msgstr "" -#: ../../library/sys.rst:1038 msgid "``3`` (VER_NT_SERVER)" msgstr "" -#: ../../library/sys.rst:1038 msgid "The system is a server, but not a domain controller." msgstr "" -#: ../../library/sys.rst:1042 -msgid "" -"This function wraps the Win32 :c:func:`!GetVersionEx` function; see the " -"Microsoft documentation on :c:func:`!OSVERSIONINFOEX` for more information " -"about these fields." +msgid "This function wraps the Win32 :c:func:`!GetVersionEx` function; see the Microsoft documentation on :c:func:`!OSVERSIONINFOEX` for more information about these fields." msgstr "" -#: ../../library/sys.rst:1046 -msgid "" -"*platform_version* returns the major version, minor version and build number " -"of the current operating system, rather than the version that is being " -"emulated for the process. It is intended for use in logging rather than for " -"feature detection." +msgid "*platform_version* returns the major version, minor version and build number of the current operating system, rather than the version that is being emulated for the process. It is intended for use in logging rather than for feature detection." msgstr "" -#: ../../library/sys.rst:1052 -msgid "" -"*platform_version* derives the version from kernel32.dll which can be of a " -"different version than the OS version. Please use :mod:`platform` module for " -"achieving accurate OS version." +msgid "*platform_version* derives the version from kernel32.dll which can be of a different version than the OS version. Please use :mod:`platform` module for achieving accurate OS version." msgstr "" -#: ../../library/sys.rst:1058 -msgid "" -"Changed to a named tuple and added *service_pack_minor*, " -"*service_pack_major*, *suite_mask*, and *product_type*." +msgid "Changed to a named tuple and added *service_pack_minor*, *service_pack_major*, *suite_mask*, and *product_type*." msgstr "" -#: ../../library/sys.rst:1062 msgid "Added *platform_version*" msgstr "" -#: ../../library/sys.rst:1068 -msgid "" -"Returns an *asyncgen_hooks* object, which is similar to " -"a :class:`~collections.namedtuple` of the form ``(firstiter, finalizer)``, " -"where *firstiter* and *finalizer* are expected to be either ``None`` or " -"functions which take an :term:`asynchronous generator iterator` as an " -"argument, and are used to schedule finalization of an asynchronous generator " -"by an event loop." +msgid "Returns an *asyncgen_hooks* object, which is similar to a :class:`~collections.namedtuple` of the form ``(firstiter, finalizer)``, where *firstiter* and *finalizer* are expected to be either ``None`` or functions which take an :term:`asynchronous generator iterator` as an argument, and are used to schedule finalization of an asynchronous generator by an event loop." msgstr "" -#: ../../library/sys.rst:1075 msgid "See :pep:`525` for more details." msgstr "" -#: ../../library/sys.rst:1079 ../../library/sys.rst:1878 -msgid "" -"This function has been added on a provisional basis (see :pep:`411` for " -"details.)" +msgid "This function has been added on a provisional basis (see :pep:`411` for details.)" msgstr "" -#: ../../library/sys.rst:1085 -msgid "" -"Get the current coroutine origin tracking depth, as set " -"by :func:`set_coroutine_origin_tracking_depth`." +msgid "Get the current coroutine origin tracking depth, as set by :func:`set_coroutine_origin_tracking_depth`." msgstr "" -#: ../../library/sys.rst:1091 ../../library/sys.rst:1899 -msgid "" -"This function has been added on a provisional basis (see :pep:`411` for " -"details.) Use it only for debugging purposes." +msgid "This function has been added on a provisional basis (see :pep:`411` for details.) Use it only for debugging purposes." msgstr "" -#: ../../library/sys.rst:1097 -msgid "" -"A :term:`named tuple` giving parameters of the numeric hash implementation. " -"For more details about hashing of numeric types, see :ref:`numeric-hash`." +msgid "A :term:`named tuple` giving parameters of the numeric hash implementation. For more details about hashing of numeric types, see :ref:`numeric-hash`." msgstr "" -#: ../../library/sys.rst:1103 msgid "The width in bits used for hash values" msgstr "" -#: ../../library/sys.rst:1107 msgid "The prime modulus P used for numeric hash scheme" msgstr "" -#: ../../library/sys.rst:1111 msgid "The hash value returned for a positive infinity" msgstr "" -#: ../../library/sys.rst:1115 msgid "(This attribute is no longer used)" msgstr "" -#: ../../library/sys.rst:1119 msgid "The multiplier used for the imaginary part of a complex number" msgstr "" -#: ../../library/sys.rst:1123 msgid "The name of the algorithm for hashing of str, bytes, and memoryview" msgstr "" -#: ../../library/sys.rst:1127 msgid "The internal output size of the hash algorithm" msgstr "" -#: ../../library/sys.rst:1131 msgid "The size of the seed key of the hash algorithm" msgstr "" -#: ../../library/sys.rst:1135 msgid "Cutoff for small string DJBX33A optimization in range ``[1, cutoff)``." msgstr "" -#: ../../library/sys.rst:1139 msgid "Added *algorithm*, *hash_bits*, *seed_bits*, and *cutoff*." msgstr "" -#: ../../library/sys.rst:1145 -msgid "" -"The version number encoded as a single integer. This is guaranteed to " -"increase with each version, including proper support for non-production " -"releases. For example, to test that the Python interpreter is at least " -"version 1.5.2, use::" +msgid "The version number encoded as a single integer. This is guaranteed to increase with each version, including proper support for non-production releases. For example, to test that the Python interpreter is at least version 1.5.2, use::" msgstr "" -#: ../../library/sys.rst:1149 msgid "" "if sys.hexversion >= 0x010502F0:\n" " # use some advanced feature\n" @@ -1447,228 +749,105 @@ msgid "" " ..." msgstr "" -#: ../../library/sys.rst:1156 -msgid "" -"This is called ``hexversion`` since it only really looks meaningful when " -"viewed as the result of passing it to the built-in :func:`hex` function. " -"The :term:`named tuple` :data:`sys.version_info` may be used for a more " -"human-friendly encoding of the same information." +msgid "This is called ``hexversion`` since it only really looks meaningful when viewed as the result of passing it to the built-in :func:`hex` function. The :term:`named tuple` :data:`sys.version_info` may be used for a more human-friendly encoding of the same information." msgstr "" -#: ../../library/sys.rst:1161 msgid "More details of ``hexversion`` can be found at :ref:`apiabiversion`." msgstr "" -#: ../../library/sys.rst:1166 -msgid "" -"An object containing information about the implementation of the currently " -"running Python interpreter. The following attributes are required to exist " -"in all Python implementations." +msgid "An object containing information about the implementation of the currently running Python interpreter. The following attributes are required to exist in all Python implementations." msgstr "" -#: ../../library/sys.rst:1170 -msgid "" -"*name* is the implementation's identifier, e.g. ``'cpython'``. The actual " -"string is defined by the Python implementation, but it is guaranteed to be " -"lower case." +msgid "*name* is the implementation's identifier, e.g. ``'cpython'``. The actual string is defined by the Python implementation, but it is guaranteed to be lower case." msgstr "" -#: ../../library/sys.rst:1174 -msgid "" -"*version* is a named tuple, in the same format as :data:`sys.version_info`. " -"It represents the version of the Python *implementation*. This has a " -"distinct meaning from the specific version of the Python *language* to which " -"the currently running interpreter conforms, which ``sys.version_info`` " -"represents. For example, for PyPy 1.8 ``sys.implementation.version`` might " -"be ``sys.version_info(1, 8, 0, 'final', 0)``, whereas ``sys.version_info`` " -"would be ``sys.version_info(2, 7, 2, 'final', 0)``. For CPython they are " -"the same value, since it is the reference implementation." +msgid "*version* is a named tuple, in the same format as :data:`sys.version_info`. It represents the version of the Python *implementation*. This has a distinct meaning from the specific version of the Python *language* to which the currently running interpreter conforms, which ``sys.version_info`` represents. For example, for PyPy 1.8 ``sys.implementation.version`` might be ``sys.version_info(1, 8, 0, 'final', 0)``, whereas ``sys.version_info`` would be ``sys.version_info(2, 7, 2, 'final', 0)``. For CPython they are the same value, since it is the reference implementation." msgstr "" -#: ../../library/sys.rst:1184 -msgid "" -"*hexversion* is the implementation version in hexadecimal format, " -"like :data:`sys.hexversion`." +msgid "*hexversion* is the implementation version in hexadecimal format, like :data:`sys.hexversion`." msgstr "" -#: ../../library/sys.rst:1187 -msgid "" -"*cache_tag* is the tag used by the import machinery in the filenames of " -"cached modules. By convention, it would be a composite of the " -"implementation's name and version, like ``'cpython-33'``. However, a Python " -"implementation may use some other value if appropriate. If ``cache_tag`` is " -"set to ``None``, it indicates that module caching should be disabled." +msgid "*cache_tag* is the tag used by the import machinery in the filenames of cached modules. By convention, it would be a composite of the implementation's name and version, like ``'cpython-33'``. However, a Python implementation may use some other value if appropriate. If ``cache_tag`` is set to ``None``, it indicates that module caching should be disabled." msgstr "" -#: ../../library/sys.rst:1194 -msgid "" -"*supports_isolated_interpreters* is a boolean value, whether this " -"implementation supports multiple isolated interpreters. It is ``True`` for " -"CPython on most platforms. Platforms with this support implement the low-" -"level :mod:`!_interpreters` module." +msgid "*supports_isolated_interpreters* is a boolean value, whether this implementation supports multiple isolated interpreters. It is ``True`` for CPython on most platforms. Platforms with this support implement the low-level :mod:`!_interpreters` module." msgstr "" -#: ../../library/sys.rst:1201 msgid ":pep:`684`, :pep:`734`, and :mod:`concurrent.interpreters`." msgstr "" -#: ../../library/sys.rst:1203 -msgid "" -":data:`sys.implementation` may contain additional attributes specific to the " -"Python implementation. These non-standard attributes must start with an " -"underscore, and are not described here. Regardless of its " -"contents, :data:`sys.implementation` will not change during a run of the " -"interpreter, nor between implementation versions. (It may change between " -"Python language versions, however.) See :pep:`421` for more information." +msgid ":data:`sys.implementation` may contain additional attributes specific to the Python implementation. These non-standard attributes must start with an underscore, and are not described here. Regardless of its contents, :data:`sys.implementation` will not change during a run of the interpreter, nor between implementation versions. (It may change between Python language versions, however.) See :pep:`421` for more information." msgstr "" -#: ../../library/sys.rst:1212 msgid "Added ``supports_isolated_interpreters`` field." msgstr "" -#: ../../library/sys.rst:1217 -msgid "" -"The addition of new required attributes must go through the normal PEP " -"process. See :pep:`421` for more information." +msgid "The addition of new required attributes must go through the normal PEP process. See :pep:`421` for more information." msgstr "" -#: ../../library/sys.rst:1222 -msgid "" -"A :term:`named tuple` that holds information about Python's internal " -"representation of integers. The attributes are read only." +msgid "A :term:`named tuple` that holds information about Python's internal representation of integers. The attributes are read only." msgstr "" -#: ../../library/sys.rst:1227 -msgid "" -"The number of bits held in each digit. Python integers are stored internally " -"in base ``2**int_info.bits_per_digit``." +msgid "The number of bits held in each digit. Python integers are stored internally in base ``2**int_info.bits_per_digit``." msgstr "" -#: ../../library/sys.rst:1232 msgid "The size in bytes of the C type used to represent a digit." msgstr "" -#: ../../library/sys.rst:1236 -msgid "" -"The default value for :func:`sys.get_int_max_str_digits` when it is not " -"otherwise explicitly configured." +msgid "The default value for :func:`sys.get_int_max_str_digits` when it is not otherwise explicitly configured." msgstr "" -#: ../../library/sys.rst:1241 -msgid "" -"The minimum non-zero value " -"for :func:`sys.set_int_max_str_digits`, :envvar:`PYTHONINTMAXSTRDIGITS`, " -"or :option:`-X int_max_str_digits <-X>`." +msgid "The minimum non-zero value for :func:`sys.set_int_max_str_digits`, :envvar:`PYTHONINTMAXSTRDIGITS`, or :option:`-X int_max_str_digits <-X>`." msgstr "" -#: ../../library/sys.rst:1248 -msgid "" -"Added :attr:`~int_info.default_max_str_digits` " -"and :attr:`~int_info.str_digits_check_threshold`." +msgid "Added :attr:`~int_info.default_max_str_digits` and :attr:`~int_info.str_digits_check_threshold`." msgstr "" -#: ../../library/sys.rst:1254 -msgid "" -"When this attribute exists, its value is automatically called (with no " -"arguments) when the interpreter is launched in :ref:`interactive mode `. This is done after the :envvar:`PYTHONSTARTUP` file is read, " -"so that you can set this hook there. The :mod:`site` module :ref:`sets this " -"`." +msgid "When this attribute exists, its value is automatically called (with no arguments) when the interpreter is launched in :ref:`interactive mode `. This is done after the :envvar:`PYTHONSTARTUP` file is read, so that you can set this hook there. The :mod:`site` module :ref:`sets this `." msgstr "" -#: ../../library/sys.rst:1260 ../../library/sys.rst:1262 -msgid "" -"Raises an :ref:`auditing event ` ``cpython.run_interactivehook`` " -"with the hook object as the argument when the hook is called on startup." +msgid "Raises an :ref:`auditing event ` ``cpython.run_interactivehook`` with the hook object as the argument when the hook is called on startup." msgstr "" -#: ../../library/sys.rst:1271 -msgid "" -"Enter *string* in the table of \"interned\" strings and return the interned " -"string -- which is *string* itself or a copy. Interning strings is useful to " -"gain a little performance on dictionary lookup -- if the keys in a " -"dictionary are interned, and the lookup key is interned, the key comparisons " -"(after hashing) can be done by a pointer compare instead of a string " -"compare. Normally, the names used in Python programs are automatically " -"interned, and the dictionaries used to hold module, class or instance " -"attributes have interned keys." +msgid "Enter *string* in the table of \"interned\" strings and return the interned string -- which is *string* itself or a copy. Interning strings is useful to gain a little performance on dictionary lookup -- if the keys in a dictionary are interned, and the lookup key is interned, the key comparisons (after hashing) can be done by a pointer compare instead of a string compare. Normally, the names used in Python programs are automatically interned, and the dictionaries used to hold module, class or instance attributes have interned keys." msgstr "" -#: ../../library/sys.rst:1279 -msgid "" -"Interned strings are not :term:`immortal`; you must keep a reference to the " -"return value of :func:`intern` around to benefit from it." +msgid "Interned strings are not :term:`immortal`; you must keep a reference to the return value of :func:`intern` around to benefit from it." msgstr "" -#: ../../library/sys.rst:1285 -msgid "" -"Return :const:`True` if the :term:`GIL` is enabled and :const:`False` if it " -"is disabled." +msgid "Return :const:`True` if the :term:`GIL` is enabled and :const:`False` if it is disabled." msgstr "" -#: ../../library/sys.rst:1292 ../../library/sys.rst:1400 msgid "It is not guaranteed to exist in all implementations of Python." msgstr "" -#: ../../library/sys.rst:1296 -msgid "" -"Return :const:`True` if the main Python interpreter is :term:`shutting down " -"`. Return :const:`False` otherwise." +msgid "Return :const:`True` if the main Python interpreter is :term:`shutting down `. Return :const:`False` otherwise." msgstr "" -#: ../../library/sys.rst:1299 msgid "See also the :exc:`PythonFinalizationError` exception." msgstr "" -#: ../../library/sys.rst:1305 msgid "Utilities for observing just-in-time compilation." msgstr "" -#: ../../library/sys.rst:1309 -msgid "" -"JIT compilation is an *experimental implementation detail* of CPython. " -"``sys._jit`` is not guaranteed to exist or behave the same way in all Python " -"implementations, versions, or build configurations." +msgid "JIT compilation is an *experimental implementation detail* of CPython. ``sys._jit`` is not guaranteed to exist or behave the same way in all Python implementations, versions, or build configurations." msgstr "" -#: ../../library/sys.rst:1317 -msgid "" -"Return ``True`` if the current Python executable supports JIT compilation, " -"and ``False`` otherwise. This can be controlled by building CPython with " -"the ``--experimental-jit`` option on Windows, and the :option:`--enable-" -"experimental-jit` option on all other platforms." +msgid "Return ``True`` if the current Python executable supports JIT compilation, and ``False`` otherwise. This can be controlled by building CPython with the ``--experimental-jit`` option on Windows, and the :option:`--enable-experimental-jit` option on all other platforms." msgstr "" -#: ../../library/sys.rst:1324 -msgid "" -"Return ``True`` if JIT compilation is enabled for the current Python process " -"(implies :func:`sys._jit.is_available`), and ``False`` otherwise. If JIT " -"compilation is available, this can be controlled by setting " -"the :envvar:`PYTHON_JIT` environment variable to ``0`` (disabled) or ``1`` " -"(enabled) at interpreter startup." +msgid "Return ``True`` if JIT compilation is enabled for the current Python process (implies :func:`sys._jit.is_available`), and ``False`` otherwise. If JIT compilation is available, this can be controlled by setting the :envvar:`PYTHON_JIT` environment variable to ``0`` (disabled) or ``1`` (enabled) at interpreter startup." msgstr "" -#: ../../library/sys.rst:1332 -msgid "" -"Return ``True`` if the topmost Python frame is currently executing JIT code " -"(implies :func:`sys._jit.is_enabled`), and ``False`` otherwise." +msgid "Return ``True`` if the topmost Python frame is currently executing JIT code (implies :func:`sys._jit.is_enabled`), and ``False`` otherwise." msgstr "" -#: ../../library/sys.rst:1337 -msgid "" -"This function is intended for testing and debugging the JIT itself. It " -"should be avoided for any other purpose." +msgid "This function is intended for testing and debugging the JIT itself. It should be avoided for any other purpose." msgstr "" -#: ../../library/sys.rst:1342 -msgid "" -"Due to the nature of tracing JIT compilers, repeated calls to this function " -"may give surprising results. For example, branching on its return value will " -"likely lead to unexpected behavior (if doing so causes JIT code to be " -"entered or exited):" +msgid "Due to the nature of tracing JIT compilers, repeated calls to this function may give surprising results. For example, branching on its return value will likely lead to unexpected behavior (if doing so causes JIT code to be entered or exited):" msgstr "" -#: ../../library/sys.rst:1347 msgid "" ">>> for warmup in range(BIG_NUMBER):\n" "... # This line is \"hot\", and is eventually JIT-compiled:\n" @@ -1683,1287 +862,650 @@ msgid "" "AssertionError" msgstr "" -#: ../../library/sys.rst:1363 -msgid "" -"This variable is not always defined; it is set to the exception instance " -"when an exception is not handled and the interpreter prints an error message " -"and a stack traceback. Its intended use is to allow an interactive user to " -"import a debugger module and engage in post-mortem debugging without having " -"to re-execute the command that caused the error. (Typical use is ``import " -"pdb; pdb.pm()`` to enter the post-mortem debugger; see :mod:`pdb` module for " -"more information.)" +msgid "This variable is not always defined; it is set to the exception instance when an exception is not handled and the interpreter prints an error message and a stack traceback. Its intended use is to allow an interactive user to import a debugger module and engage in post-mortem debugging without having to re-execute the command that caused the error. (Typical use is ``import pdb; pdb.pm()`` to enter the post-mortem debugger; see :mod:`pdb` module for more information.)" msgstr "" -#: ../../library/sys.rst:1375 -msgid "" -"Return :const:`True` if the given object is :term:`immortal`, :const:`False` " -"otherwise." +msgid "Return :const:`True` if the given object is :term:`immortal`, :const:`False` otherwise." msgstr "" -#: ../../library/sys.rst:1380 -msgid "" -"Objects that are immortal (and thus return ``True`` upon being passed to " -"this function) are not guaranteed to be immortal in future versions, and " -"vice versa for mortal objects." +msgid "Objects that are immortal (and thus return ``True`` upon being passed to this function) are not guaranteed to be immortal in future versions, and vice versa for mortal objects." msgstr "" -#: ../../library/sys.rst:1393 -msgid "" -"Return :const:`True` if the given string is \"interned\", :const:`False` " -"otherwise." +msgid "Return :const:`True` if the given string is \"interned\", :const:`False` otherwise." msgstr "" -#: ../../library/sys.rst:1407 -msgid "" -"These three variables are deprecated; use :data:`sys.last_exc` instead. They " -"hold the legacy representation of ``sys.last_exc``, as returned " -"from :func:`exc_info` above." +msgid "These three variables are deprecated; use :data:`sys.last_exc` instead. They hold the legacy representation of ``sys.last_exc``, as returned from :func:`exc_info` above." msgstr "" -#: ../../library/sys.rst:1413 -msgid "" -"An integer giving the maximum value a variable of type :c:type:`Py_ssize_t` " -"can take. It's usually ``2**31 - 1`` on a 32-bit platform and ``2**63 - 1`` " -"on a 64-bit platform." +msgid "An integer giving the maximum value a variable of type :c:type:`Py_ssize_t` can take. It's usually ``2**31 - 1`` on a 32-bit platform and ``2**63 - 1`` on a 64-bit platform." msgstr "" -#: ../../library/sys.rst:1420 -msgid "" -"An integer giving the value of the largest Unicode code point, i.e. " -"``1114111`` (``0x10FFFF`` in hexadecimal)." +msgid "An integer giving the value of the largest Unicode code point, i.e. ``1114111`` (``0x10FFFF`` in hexadecimal)." msgstr "" -#: ../../library/sys.rst:1423 -msgid "" -"Before :pep:`393`, ``sys.maxunicode`` used to be either ``0xFFFF`` or " -"``0x10FFFF``, depending on the configuration option that specified whether " -"Unicode characters were stored as UCS-2 or UCS-4." +msgid "Before :pep:`393`, ``sys.maxunicode`` used to be either ``0xFFFF`` or ``0x10FFFF``, depending on the configuration option that specified whether Unicode characters were stored as UCS-2 or UCS-4." +msgstr "" + +msgid "A list of :term:`meta path finder` objects that have their :meth:`~importlib.abc.MetaPathFinder.find_spec` methods called to see if one of the objects can find the module to be imported. By default, it holds entries that implement Python's default import semantics. The :meth:`~importlib.abc.MetaPathFinder.find_spec` method is called with at least the absolute name of the module being imported. If the module to be imported is contained in a package, then the parent package's :attr:`~module.__path__` attribute is passed in as a second argument. The method returns a :term:`module spec`, or ``None`` if the module cannot be found." msgstr "" -#: ../../library/sys.rst:1431 -msgid "" -"A list of :term:`meta path finder` objects that have " -"their :meth:`~importlib.abc.MetaPathFinder.find_spec` methods called to see " -"if one of the objects can find the module to be imported. By default, it " -"holds entries that implement Python's default import semantics. " -"The :meth:`~importlib.abc.MetaPathFinder.find_spec` method is called with at " -"least the absolute name of the module being imported. If the module to be " -"imported is contained in a package, then the parent " -"package's :attr:`~module.__path__` attribute is passed in as a second " -"argument. The method returns a :term:`module spec`, or ``None`` if the " -"module cannot be found." -msgstr "" - -#: ../../library/sys.rst:1444 msgid ":class:`importlib.abc.MetaPathFinder`" msgstr "" -#: ../../library/sys.rst:1445 -msgid "" -"The abstract base class defining the interface of finder objects " -"on :data:`meta_path`." +msgid "The abstract base class defining the interface of finder objects on :data:`meta_path`." msgstr "" -#: ../../library/sys.rst:1447 msgid ":class:`importlib.machinery.ModuleSpec`" msgstr "" -#: ../../library/sys.rst:1448 -msgid "" -"The concrete class which :meth:`~importlib.abc.MetaPathFinder.find_spec` " -"should return instances of." +msgid "The concrete class which :meth:`~importlib.abc.MetaPathFinder.find_spec` should return instances of." msgstr "" -#: ../../library/sys.rst:1454 -msgid "" -":term:`Module specs ` were introduced in Python 3.4, " -"by :pep:`451`." +msgid ":term:`Module specs ` were introduced in Python 3.4, by :pep:`451`." msgstr "" -#: ../../library/sys.rst:1459 -msgid "" -"Removed the fallback that looked for a :meth:`!find_module` method if " -"a :data:`meta_path` entry didn't have " -"a :meth:`~importlib.abc.MetaPathFinder.find_spec` method." +msgid "Removed the fallback that looked for a :meth:`!find_module` method if a :data:`meta_path` entry didn't have a :meth:`~importlib.abc.MetaPathFinder.find_spec` method." msgstr "" -#: ../../library/sys.rst:1465 -msgid "" -"This is a dictionary that maps module names to modules which have already " -"been loaded. This can be manipulated to force reloading of modules and " -"other tricks. However, replacing the dictionary will not necessarily work as " -"expected and deleting essential items from the dictionary may cause Python " -"to fail. If you want to iterate over this global dictionary always use " -"``sys.modules.copy()`` or ``tuple(sys.modules)`` to avoid exceptions as its " -"size may change during iteration as a side effect of code or activity in " -"other threads." +msgid "This is a dictionary that maps module names to modules which have already been loaded. This can be manipulated to force reloading of modules and other tricks. However, replacing the dictionary will not necessarily work as expected and deleting essential items from the dictionary may cause Python to fail. If you want to iterate over this global dictionary always use ``sys.modules.copy()`` or ``tuple(sys.modules)`` to avoid exceptions as its size may change during iteration as a side effect of code or activity in other threads." msgstr "" -#: ../../library/sys.rst:1477 -msgid "" -"The list of the original command line arguments passed to the Python " -"executable." +msgid "The list of the original command line arguments passed to the Python executable." msgstr "" -#: ../../library/sys.rst:1480 -msgid "" -"The elements of :data:`sys.orig_argv` are the arguments to the Python " -"interpreter, while the elements of :data:`sys.argv` are the arguments to the " -"user's program. Arguments consumed by the interpreter itself will be present " -"in :data:`sys.orig_argv` and missing from :data:`sys.argv`." +msgid "The elements of :data:`sys.orig_argv` are the arguments to the Python interpreter, while the elements of :data:`sys.argv` are the arguments to the user's program. Arguments consumed by the interpreter itself will be present in :data:`sys.orig_argv` and missing from :data:`sys.argv`." msgstr "" -#: ../../library/sys.rst:1492 -msgid "" -"A list of strings that specifies the search path for modules. Initialized " -"from the environment variable :envvar:`PYTHONPATH`, plus an installation-" -"dependent default." +msgid "A list of strings that specifies the search path for modules. Initialized from the environment variable :envvar:`PYTHONPATH`, plus an installation-dependent default." msgstr "" -#: ../../library/sys.rst:1496 -msgid "" -"By default, as initialized upon program startup, a potentially unsafe path " -"is prepended to :data:`sys.path` (*before* the entries inserted as a result " -"of :envvar:`PYTHONPATH`):" +msgid "By default, as initialized upon program startup, a potentially unsafe path is prepended to :data:`sys.path` (*before* the entries inserted as a result of :envvar:`PYTHONPATH`):" msgstr "" -#: ../../library/sys.rst:1500 -msgid "" -"``python -m module`` command line: prepend the current working directory." +msgid "``python -m module`` command line: prepend the current working directory." msgstr "" -#: ../../library/sys.rst:1502 -msgid "" -"``python script.py`` command line: prepend the script's directory. If it's a " -"symbolic link, resolve symbolic links." +msgid "``python script.py`` command line: prepend the script's directory. If it's a symbolic link, resolve symbolic links." msgstr "" -#: ../../library/sys.rst:1504 -msgid "" -"``python -c code`` and ``python`` (REPL) command lines: prepend an empty " -"string, which means the current working directory." +msgid "``python -c code`` and ``python`` (REPL) command lines: prepend an empty string, which means the current working directory." msgstr "" -#: ../../library/sys.rst:1507 -msgid "" -"To not prepend this potentially unsafe path, use the :option:`-P` command " -"line option or the :envvar:`PYTHONSAFEPATH` environment variable." +msgid "To not prepend this potentially unsafe path, use the :option:`-P` command line option or the :envvar:`PYTHONSAFEPATH` environment variable." msgstr "" -#: ../../library/sys.rst:1510 -msgid "" -"A program is free to modify this list for its own purposes. Only strings " -"should be added to :data:`sys.path`; all other data types are ignored during " -"import." +msgid "A program is free to modify this list for its own purposes. Only strings should be added to :data:`sys.path`; all other data types are ignored during import." msgstr "" -#: ../../library/sys.rst:1516 -msgid "" -"Module :mod:`site` This describes how to use .pth files to " -"extend :data:`sys.path`." +msgid "Module :mod:`site` This describes how to use .pth files to extend :data:`sys.path`." msgstr "" -#: ../../library/sys.rst:1521 -msgid "" -"A list of callables that take a path argument to try to create " -"a :term:`finder` for the path. If a finder can be created, it is to be " -"returned by the callable, else raise :exc:`ImportError`." +msgid "A list of callables that take a path argument to try to create a :term:`finder` for the path. If a finder can be created, it is to be returned by the callable, else raise :exc:`ImportError`." msgstr "" -#: ../../library/sys.rst:1525 ../../library/sys.rst:1536 msgid "Originally specified in :pep:`302`." msgstr "" -#: ../../library/sys.rst:1530 -msgid "" -"A dictionary acting as a cache for :term:`finder` objects. The keys are " -"paths that have been passed to :data:`sys.path_hooks` and the values are the " -"finders that are found. If a path is a valid file system path but no finder " -"is found on :data:`sys.path_hooks` then ``None`` is stored." +msgid "A dictionary acting as a cache for :term:`finder` objects. The keys are paths that have been passed to :data:`sys.path_hooks` and the values are the finders that are found. If a path is a valid file system path but no finder is found on :data:`sys.path_hooks` then ``None`` is stored." msgstr "" -#: ../../library/sys.rst:1541 msgid "A string containing a platform identifier. Known values are:" msgstr "" -#: ../../library/sys.rst:1544 msgid "System" msgstr "" -#: ../../library/sys.rst:1544 msgid "``platform`` value" msgstr "" -#: ../../library/sys.rst:1546 msgid "AIX" msgstr "" -#: ../../library/sys.rst:1546 msgid "``'aix'``" msgstr "" -#: ../../library/sys.rst:1547 msgid "Android" msgstr "" -#: ../../library/sys.rst:1547 msgid "``'android'``" msgstr "" -#: ../../library/sys.rst:1548 msgid "Emscripten" msgstr "" -#: ../../library/sys.rst:1548 msgid "``'emscripten'``" msgstr "" -#: ../../library/sys.rst:1549 msgid "FreeBSD" msgstr "" -#: ../../library/sys.rst:1549 msgid "``'freebsd'``" msgstr "" -#: ../../library/sys.rst:1550 msgid "iOS" msgstr "" -#: ../../library/sys.rst:1550 msgid "``'ios'``" msgstr "" -#: ../../library/sys.rst:1551 msgid "Linux" msgstr "" -#: ../../library/sys.rst:1551 msgid "``'linux'``" msgstr "" -#: ../../library/sys.rst:1552 msgid "macOS" msgstr "" -#: ../../library/sys.rst:1552 msgid "``'darwin'``" msgstr "" -#: ../../library/sys.rst:1553 msgid "Windows" msgstr "" -#: ../../library/sys.rst:1553 msgid "``'win32'``" msgstr "" -#: ../../library/sys.rst:1554 msgid "Windows/Cygwin" msgstr "" -#: ../../library/sys.rst:1554 msgid "``'cygwin'``" msgstr "" -#: ../../library/sys.rst:1555 msgid "WASI" msgstr "" -#: ../../library/sys.rst:1555 msgid "``'wasi'``" msgstr "" -#: ../../library/sys.rst:1558 -msgid "" -"On Unix systems not listed in the table, the value is the lowercased OS name " -"as returned by ``uname -s``, with the first part of the version as returned " -"by ``uname -r`` appended, e.g. ``'sunos5'``, *at the time when Python was " -"built*. Unless you want to test for a specific system version, it is " -"therefore recommended to use the following idiom::" +msgid "On Unix systems not listed in the table, the value is the lowercased OS name as returned by ``uname -s``, with the first part of the version as returned by ``uname -r`` appended, e.g. ``'sunos5'``, *at the time when Python was built*. Unless you want to test for a specific system version, it is therefore recommended to use the following idiom::" msgstr "" -#: ../../library/sys.rst:1564 msgid "" "if sys.platform.startswith('sunos'):\n" " # SunOS-specific code here..." msgstr "" -#: ../../library/sys.rst:1567 -msgid "" -"On Linux, :data:`sys.platform` doesn't contain the major version anymore. It " -"is always ``'linux'``, instead of ``'linux2'`` or ``'linux3'``." +msgid "On Linux, :data:`sys.platform` doesn't contain the major version anymore. It is always ``'linux'``, instead of ``'linux2'`` or ``'linux3'``." msgstr "" -#: ../../library/sys.rst:1571 -msgid "" -"On AIX, :data:`sys.platform` doesn't contain the major version anymore. It " -"is always ``'aix'``, instead of ``'aix5'`` or ``'aix7'``." +msgid "On AIX, :data:`sys.platform` doesn't contain the major version anymore. It is always ``'aix'``, instead of ``'aix5'`` or ``'aix7'``." msgstr "" -#: ../../library/sys.rst:1575 -msgid "" -"On Android, :data:`sys.platform` now returns ``'android'`` rather than " -"``'linux'``." +msgid "On Android, :data:`sys.platform` now returns ``'android'`` rather than ``'linux'``." msgstr "" -#: ../../library/sys.rst:1579 -msgid "" -"On FreeBSD, :data:`sys.platform` doesn't contain the major version anymore. " -"It is always ``'freebsd'``, instead of ``'freebsd13'`` or ``'freebsd14'``." +msgid "On FreeBSD, :data:`sys.platform` doesn't contain the major version anymore. It is always ``'freebsd'``, instead of ``'freebsd13'`` or ``'freebsd14'``." msgstr "" -#: ../../library/sys.rst:1585 -msgid "" -":data:`os.name` has a coarser granularity. :func:`os.uname` gives system-" -"dependent version information." +msgid ":data:`os.name` has a coarser granularity. :func:`os.uname` gives system-dependent version information." msgstr "" -#: ../../library/sys.rst:1588 -msgid "" -"The :mod:`platform` module provides detailed checks for the system's " -"identity." +msgid "The :mod:`platform` module provides detailed checks for the system's identity." msgstr "" -#: ../../library/sys.rst:1594 -msgid "" -"Name of the platform-specific library directory. It is used to build the " -"path of standard library and the paths of installed extension modules." +msgid "Name of the platform-specific library directory. It is used to build the path of standard library and the paths of installed extension modules." msgstr "" -#: ../../library/sys.rst:1597 -msgid "" -"It is equal to ``\"lib\"`` on most platforms. On Fedora and SuSE, it is " -"equal to ``\"lib64\"`` on 64-bit platforms which gives the following " -"``sys.path`` paths (where ``X.Y`` is the Python ``major.minor`` version):" +msgid "It is equal to ``\"lib\"`` on most platforms. On Fedora and SuSE, it is equal to ``\"lib64\"`` on 64-bit platforms which gives the following ``sys.path`` paths (where ``X.Y`` is the Python ``major.minor`` version):" msgstr "" -#: ../../library/sys.rst:1601 -msgid "" -"``/usr/lib64/pythonX.Y/``: Standard library (like ``os.py`` of the :mod:`os` " -"module)" +msgid "``/usr/lib64/pythonX.Y/``: Standard library (like ``os.py`` of the :mod:`os` module)" msgstr "" -#: ../../library/sys.rst:1603 -msgid "" -"``/usr/lib64/pythonX.Y/lib-dynload/``: C extension modules of the standard " -"library (like the :mod:`errno` module, the exact filename is platform " -"specific)" +msgid "``/usr/lib64/pythonX.Y/lib-dynload/``: C extension modules of the standard library (like the :mod:`errno` module, the exact filename is platform specific)" msgstr "" -#: ../../library/sys.rst:1606 -msgid "" -"``/usr/lib/pythonX.Y/site-packages/`` (always use ``lib``, " -"not :data:`sys.platlibdir`): Third-party modules" +msgid "``/usr/lib/pythonX.Y/site-packages/`` (always use ``lib``, not :data:`sys.platlibdir`): Third-party modules" msgstr "" -#: ../../library/sys.rst:1608 -msgid "" -"``/usr/lib64/pythonX.Y/site-packages/``: C extension modules of third-party " -"packages" +msgid "``/usr/lib64/pythonX.Y/site-packages/``: C extension modules of third-party packages" msgstr "" -#: ../../library/sys.rst:1616 -msgid "" -"A string giving the site-specific directory prefix where the platform " -"independent Python files are installed; on Unix, the default is :file:`/usr/" -"local`. This can be set at build time with the :option:`--prefix` argument " -"to the :program:`configure` script. See :ref:`installation_paths` for " -"derived paths." +msgid "A string giving the site-specific directory prefix where the platform independent Python files are installed; on Unix, the default is :file:`/usr/local`. This can be set at build time with the :option:`--prefix` argument to the :program:`configure` script. See :ref:`installation_paths` for derived paths." msgstr "" -#: ../../library/sys.rst:1624 -msgid "" -"If a :ref:`virtual environment ` is in effect, this :data:`prefix` " -"will point to the virtual environment. The value for the Python installation " -"will still be available, via :data:`base_prefix`. Refer to :ref:`sys-path-" -"init-virtual-environments` for more information." +msgid "If a :ref:`virtual environment ` is in effect, this :data:`prefix` will point to the virtual environment. The value for the Python installation will still be available, via :data:`base_prefix`. Refer to :ref:`sys-path-init-virtual-environments` for more information." msgstr "" -#: ../../library/sys.rst:1648 -msgid "" -"Strings specifying the primary and secondary prompt of the interpreter. " -"These are only defined if the interpreter is in interactive mode. Their " -"initial values in this case are ``'>>> '`` and ``'... '``. If a non-string " -"object is assigned to either variable, its :func:`str` is re-evaluated each " -"time the interpreter prepares to read a new interactive command; this can be " -"used to implement a dynamic prompt." +msgid "Strings specifying the primary and secondary prompt of the interpreter. These are only defined if the interpreter is in interactive mode. Their initial values in this case are ``'>>> '`` and ``'... '``. If a non-string object is assigned to either variable, its :func:`str` is re-evaluated each time the interpreter prepares to read a new interactive command; this can be used to implement a dynamic prompt." msgstr "" -#: ../../library/sys.rst:1658 -msgid "" -"Set the flags used by the interpreter for :c:func:`dlopen` calls, such as " -"when the interpreter loads extension modules. Among other things, this will " -"enable a lazy resolving of symbols when importing a module, if called as " -"``sys.setdlopenflags(0)``. To share symbols across extension modules, call " -"as ``sys.setdlopenflags(os.RTLD_GLOBAL)``. Symbolic names for the flag " -"values can be found in the :mod:`os` module (:samp:`RTLD_{xxx}` constants, " -"e.g. :const:`os.RTLD_LAZY`)." +msgid "Set the flags used by the interpreter for :c:func:`dlopen` calls, such as when the interpreter loads extension modules. Among other things, this will enable a lazy resolving of symbols when importing a module, if called as ``sys.setdlopenflags(0)``. To share symbols across extension modules, call as ``sys.setdlopenflags(os.RTLD_GLOBAL)``. Symbolic names for the flag values can be found in the :mod:`os` module (:samp:`RTLD_{xxx}` constants, e.g. :const:`os.RTLD_LAZY`)." msgstr "" -#: ../../library/sys.rst:1670 -msgid "" -"Set the :ref:`integer string conversion length limitation " -"` used by this interpreter. See " -"also :func:`get_int_max_str_digits`." +msgid "Set the :ref:`integer string conversion length limitation ` used by this interpreter. See also :func:`get_int_max_str_digits`." msgstr "" -#: ../../library/sys.rst:1682 -msgid "" -"Set the system's profile function, which allows you to implement a Python " -"source code profiler in Python. See chapter :ref:`profile` for more " -"information on the Python profiler. The system's profile function is called " -"similarly to the system's trace function (see :func:`settrace`), but it is " -"called with different events, for example it isn't called for each executed " -"line of code (only on call and return, but the return event is reported even " -"when an exception has been set). The function is thread-specific, but there " -"is no way for the profiler to know about context switches between threads, " -"so it does not make sense to use this in the presence of multiple threads. " -"Also, its return value is not used, so it can simply return ``None``. Error " -"in the profile function will cause itself unset." -msgstr "" - -#: ../../library/sys.rst:1694 -msgid "" -"The same tracing mechanism is used for :func:`!setprofile` " -"as :func:`settrace`. To trace calls with :func:`!setprofile` inside a " -"tracing function (e.g. in a debugger breakpoint), see :func:`call_tracing`." +msgid "Set the system's profile function, which allows you to implement a Python source code profiler in Python. See chapter :ref:`profile` for more information on the Python profiler. The system's profile function is called similarly to the system's trace function (see :func:`settrace`), but it is called with different events, for example it isn't called for each executed line of code (only on call and return, but the return event is reported even when an exception has been set). The function is thread-specific, but there is no way for the profiler to know about context switches between threads, so it does not make sense to use this in the presence of multiple threads. Also, its return value is not used, so it can simply return ``None``. Error in the profile function will cause itself unset." msgstr "" -#: ../../library/sys.rst:1698 -msgid "" -"Profile functions should have three arguments: *frame*, *event*, and *arg*. " -"*frame* is the current stack frame. *event* is a string: ``'call'``, " -"``'return'``, ``'c_call'``, ``'c_return'``, or ``'c_exception'``. *arg* " -"depends on the event type." +msgid "The same tracing mechanism is used for :func:`!setprofile` as :func:`settrace`. To trace calls with :func:`!setprofile` inside a tracing function (e.g. in a debugger breakpoint), see :func:`call_tracing`." +msgstr "" + +msgid "Profile functions should have three arguments: *frame*, *event*, and *arg*. *frame* is the current stack frame. *event* is a string: ``'call'``, ``'return'``, ``'c_call'``, ``'c_return'``, or ``'c_exception'``. *arg* depends on the event type." msgstr "" -#: ../../library/sys.rst:1703 ../../library/sys.rst:1790 msgid "The events have the following meaning:" msgstr "" -#: ../../library/sys.rst:1705 ../../library/sys.rst:1792 msgid "``'call'``" msgstr "" -#: ../../library/sys.rst:1706 -msgid "" -"A function is called (or some other code block entered). The profile " -"function is called; *arg* is ``None``." +msgid "A function is called (or some other code block entered). The profile function is called; *arg* is ``None``." msgstr "" -#: ../../library/sys.rst:1709 ../../library/sys.rst:1807 msgid "``'return'``" msgstr "" -#: ../../library/sys.rst:1710 -msgid "" -"A function (or other code block) is about to return. The profile function " -"is called; *arg* is the value that will be returned, or ``None`` if the " -"event is caused by an exception being raised." +msgid "A function (or other code block) is about to return. The profile function is called; *arg* is the value that will be returned, or ``None`` if the event is caused by an exception being raised." msgstr "" -#: ../../library/sys.rst:1714 msgid "``'c_call'``" msgstr "" -#: ../../library/sys.rst:1715 -msgid "" -"A C function is about to be called. This may be an extension function or a " -"built-in. *arg* is the C function object." +msgid "A C function is about to be called. This may be an extension function or a built-in. *arg* is the C function object." msgstr "" -#: ../../library/sys.rst:1718 msgid "``'c_return'``" msgstr "" -#: ../../library/sys.rst:1719 msgid "A C function has returned. *arg* is the C function object." msgstr "" -#: ../../library/sys.rst:1721 msgid "``'c_exception'``" msgstr "" -#: ../../library/sys.rst:1722 msgid "A C function has raised an exception. *arg* is the C function object." msgstr "" -#: ../../library/sys.rst:1724 -msgid "" -"Raises an :ref:`auditing event ` ``sys.setprofile`` with no " -"arguments." +msgid "Raises an :ref:`auditing event ` ``sys.setprofile`` with no arguments." msgstr "" -#: ../../library/sys.rst:1729 -msgid "" -"Set the maximum depth of the Python interpreter stack to *limit*. This " -"limit prevents infinite recursion from causing an overflow of the C stack " -"and crashing Python." +msgid "Set the maximum depth of the Python interpreter stack to *limit*. This limit prevents infinite recursion from causing an overflow of the C stack and crashing Python." msgstr "" -#: ../../library/sys.rst:1733 -msgid "" -"The highest possible limit is platform-dependent. A user may need to set " -"the limit higher when they have a program that requires deep recursion and a " -"platform that supports a higher limit. This should be done with care, " -"because a too-high limit can lead to a crash." +msgid "The highest possible limit is platform-dependent. A user may need to set the limit higher when they have a program that requires deep recursion and a platform that supports a higher limit. This should be done with care, because a too-high limit can lead to a crash." msgstr "" -#: ../../library/sys.rst:1738 -msgid "" -"If the new limit is too low at the current recursion depth, " -"a :exc:`RecursionError` exception is raised." +msgid "If the new limit is too low at the current recursion depth, a :exc:`RecursionError` exception is raised." msgstr "" -#: ../../library/sys.rst:1741 -msgid "" -"A :exc:`RecursionError` exception is now raised if the new limit is too low " -"at the current recursion depth." +msgid "A :exc:`RecursionError` exception is now raised if the new limit is too low at the current recursion depth." msgstr "" -#: ../../library/sys.rst:1748 -msgid "" -"Set the interpreter's thread switch interval (in seconds). This floating-" -"point value determines the ideal duration of the \"timeslices\" allocated to " -"concurrently running Python threads. Please note that the actual value can " -"be higher, especially if long-running internal functions or methods are " -"used. Also, which thread becomes scheduled at the end of the interval is " -"the operating system's decision. The interpreter doesn't have its own " -"scheduler." +msgid "Set the interpreter's thread switch interval (in seconds). This floating-point value determines the ideal duration of the \"timeslices\" allocated to concurrently running Python threads. Please note that the actual value can be higher, especially if long-running internal functions or methods are used. Also, which thread becomes scheduled at the end of the interval is the operating system's decision. The interpreter doesn't have its own scheduler." msgstr "" -#: ../../library/sys.rst:1765 -msgid "" -"Set the system's trace function, which allows you to implement a Python " -"source code debugger in Python. The function is thread-specific; for a " -"debugger to support multiple threads, it must register a trace function " -"using :func:`settrace` for each thread being debugged or " -"use :func:`threading.settrace`." +msgid "Set the system's trace function, which allows you to implement a Python source code debugger in Python. The function is thread-specific; for a debugger to support multiple threads, it must register a trace function using :func:`settrace` for each thread being debugged or use :func:`threading.settrace`." msgstr "" -#: ../../library/sys.rst:1770 -msgid "" -"Trace functions should have three arguments: *frame*, *event*, and *arg*. " -"*frame* is the :ref:`current stack frame `. *event* is a " -"string: ``'call'``, ``'line'``, ``'return'``, ``'exception'`` or " -"``'opcode'``. *arg* depends on the event type." +msgid "Trace functions should have three arguments: *frame*, *event*, and *arg*. *frame* is the :ref:`current stack frame `. *event* is a string: ``'call'``, ``'line'``, ``'return'``, ``'exception'`` or ``'opcode'``. *arg* depends on the event type." msgstr "" -#: ../../library/sys.rst:1775 -msgid "" -"The trace function is invoked (with *event* set to ``'call'``) whenever a " -"new local scope is entered; it should return a reference to a local trace " -"function to be used for the new scope, or ``None`` if the scope shouldn't be " -"traced." +msgid "The trace function is invoked (with *event* set to ``'call'``) whenever a new local scope is entered; it should return a reference to a local trace function to be used for the new scope, or ``None`` if the scope shouldn't be traced." msgstr "" -#: ../../library/sys.rst:1780 -msgid "" -"The local trace function should return a reference to itself, or to another " -"function which would then be used as the local trace function for the scope." +msgid "The local trace function should return a reference to itself, or to another function which would then be used as the local trace function for the scope." msgstr "" -#: ../../library/sys.rst:1783 -msgid "" -"If there is any error occurred in the trace function, it will be unset, just " -"like ``settrace(None)`` is called." +msgid "If there is any error occurred in the trace function, it will be unset, just like ``settrace(None)`` is called." msgstr "" -#: ../../library/sys.rst:1787 -msgid "" -"Tracing is disabled while calling the trace function (e.g. a function set " -"by :func:`!settrace`). For recursive tracing see :func:`call_tracing`." +msgid "Tracing is disabled while calling the trace function (e.g. a function set by :func:`!settrace`). For recursive tracing see :func:`call_tracing`." msgstr "" -#: ../../library/sys.rst:1793 -msgid "" -"A function is called (or some other code block entered). The global trace " -"function is called; *arg* is ``None``; the return value specifies the local " -"trace function." +msgid "A function is called (or some other code block entered). The global trace function is called; *arg* is ``None``; the return value specifies the local trace function." msgstr "" -#: ../../library/sys.rst:1797 msgid "``'line'``" msgstr "" -#: ../../library/sys.rst:1798 -msgid "" -"The interpreter is about to execute a new line of code or re-execute the " -"condition of a loop. The local trace function is called; *arg* is ``None``; " -"the return value specifies the new local trace function. See :file:`Objects/" -"lnotab_notes.txt` for a detailed explanation of how this works. Per-line " -"events may be disabled for a frame by setting :attr:`~frame.f_trace_lines` " -"to :const:`False` on that :ref:`frame `." +msgid "The interpreter is about to execute a new line of code or re-execute the condition of a loop. The local trace function is called; *arg* is ``None``; the return value specifies the new local trace function. See :file:`Objects/lnotab_notes.txt` for a detailed explanation of how this works. Per-line events may be disabled for a frame by setting :attr:`~frame.f_trace_lines` to :const:`False` on that :ref:`frame `." msgstr "" -#: ../../library/sys.rst:1808 -msgid "" -"A function (or other code block) is about to return. The local trace " -"function is called; *arg* is the value that will be returned, or ``None`` if " -"the event is caused by an exception being raised. The trace function's " -"return value is ignored." +msgid "A function (or other code block) is about to return. The local trace function is called; *arg* is the value that will be returned, or ``None`` if the event is caused by an exception being raised. The trace function's return value is ignored." msgstr "" -#: ../../library/sys.rst:1813 msgid "``'exception'``" msgstr "" -#: ../../library/sys.rst:1814 -msgid "" -"An exception has occurred. The local trace function is called; *arg* is a " -"tuple ``(exception, value, traceback)``; the return value specifies the new " -"local trace function." +msgid "An exception has occurred. The local trace function is called; *arg* is a tuple ``(exception, value, traceback)``; the return value specifies the new local trace function." msgstr "" -#: ../../library/sys.rst:1818 msgid "``'opcode'``" msgstr "" -#: ../../library/sys.rst:1819 -msgid "" -"The interpreter is about to execute a new opcode (see :mod:`dis` for opcode " -"details). The local trace function is called; *arg* is ``None``; the return " -"value specifies the new local trace function. Per-opcode events are not " -"emitted by default: they must be explicitly requested by " -"setting :attr:`~frame.f_trace_opcodes` to :const:`True` on the :ref:`frame " -"`." +msgid "The interpreter is about to execute a new opcode (see :mod:`dis` for opcode details). The local trace function is called; *arg* is ``None``; the return value specifies the new local trace function. Per-opcode events are not emitted by default: they must be explicitly requested by setting :attr:`~frame.f_trace_opcodes` to :const:`True` on the :ref:`frame `." msgstr "" -#: ../../library/sys.rst:1826 -msgid "" -"Note that as an exception is propagated down the chain of callers, an " -"``'exception'`` event is generated at each level." +msgid "Note that as an exception is propagated down the chain of callers, an ``'exception'`` event is generated at each level." +msgstr "" + +msgid "For more fine-grained usage, it's possible to set a trace function by assigning ``frame.f_trace = tracefunc`` explicitly, rather than relying on it being set indirectly via the return value from an already installed trace function. This is also required for activating the trace function on the current frame, which :func:`settrace` doesn't do. Note that in order for this to work, a global tracing function must have been installed with :func:`settrace` in order to enable the runtime tracing machinery, but it doesn't need to be the same tracing function (e.g. it could be a low overhead tracing function that simply returns ``None`` to disable itself immediately on each frame)." msgstr "" -#: ../../library/sys.rst:1829 -msgid "" -"For more fine-grained usage, it's possible to set a trace function by " -"assigning ``frame.f_trace = tracefunc`` explicitly, rather than relying on " -"it being set indirectly via the return value from an already installed trace " -"function. This is also required for activating the trace function on the " -"current frame, which :func:`settrace` doesn't do. Note that in order for " -"this to work, a global tracing function must have been installed " -"with :func:`settrace` in order to enable the runtime tracing machinery, but " -"it doesn't need to be the same tracing function (e.g. it could be a low " -"overhead tracing function that simply returns ``None`` to disable itself " -"immediately on each frame)." -msgstr "" - -#: ../../library/sys.rst:1840 msgid "For more information on code and frame objects, refer to :ref:`types`." msgstr "" -#: ../../library/sys.rst:1842 -msgid "" -"Raises an :ref:`auditing event ` ``sys.settrace`` with no " -"arguments." +msgid "Raises an :ref:`auditing event ` ``sys.settrace`` with no arguments." msgstr "" -#: ../../library/sys.rst:1846 -msgid "" -"The :func:`settrace` function is intended only for implementing debuggers, " -"profilers, coverage tools and the like. Its behavior is part of the " -"implementation platform, rather than part of the language definition, and " -"thus may not be available in all Python implementations." +msgid "The :func:`settrace` function is intended only for implementing debuggers, profilers, coverage tools and the like. Its behavior is part of the implementation platform, rather than part of the language definition, and thus may not be available in all Python implementations." msgstr "" -#: ../../library/sys.rst:1853 -msgid "" -"``'opcode'`` event type added; :attr:`~frame.f_trace_lines` " -"and :attr:`~frame.f_trace_opcodes` attributes added to frames" +msgid "``'opcode'`` event type added; :attr:`~frame.f_trace_lines` and :attr:`~frame.f_trace_opcodes` attributes added to frames" msgstr "" -#: ../../library/sys.rst:1858 -msgid "" -"Accepts two optional keyword arguments which are callables that accept " -"an :term:`asynchronous generator iterator` as an argument. The *firstiter* " -"callable will be called when an asynchronous generator is iterated for the " -"first time. The *finalizer* will be called when an asynchronous generator is " -"about to be garbage collected." +msgid "Accepts two optional keyword arguments which are callables that accept an :term:`asynchronous generator iterator` as an argument. The *firstiter* callable will be called when an asynchronous generator is iterated for the first time. The *finalizer* will be called when an asynchronous generator is about to be garbage collected." msgstr "" -#: ../../library/sys.rst:1864 -msgid "" -"Raises an :ref:`auditing event ` " -"``sys.set_asyncgen_hooks_firstiter`` with no arguments." +msgid "Raises an :ref:`auditing event ` ``sys.set_asyncgen_hooks_firstiter`` with no arguments." msgstr "" -#: ../../library/sys.rst:1866 -msgid "" -"Raises an :ref:`auditing event ` " -"``sys.set_asyncgen_hooks_finalizer`` with no arguments." +msgid "Raises an :ref:`auditing event ` ``sys.set_asyncgen_hooks_finalizer`` with no arguments." msgstr "" -#: ../../library/sys.rst:1868 -msgid "" -"Two auditing events are raised because the underlying API consists of two " -"calls, each of which must raise its own event." +msgid "Two auditing events are raised because the underlying API consists of two calls, each of which must raise its own event." msgstr "" -#: ../../library/sys.rst:1871 -msgid "" -"See :pep:`525` for more details, and for a reference example of a " -"*finalizer* method see the implementation of " -"``asyncio.Loop.shutdown_asyncgens`` in :source:`Lib/asyncio/base_events.py`" +msgid "See :pep:`525` for more details, and for a reference example of a *finalizer* method see the implementation of ``asyncio.Loop.shutdown_asyncgens`` in :source:`Lib/asyncio/base_events.py`" msgstr "" -#: ../../library/sys.rst:1883 -msgid "" -"Allows enabling or disabling coroutine origin tracking. When enabled, the " -"``cr_origin`` attribute on coroutine objects will contain a tuple of " -"(filename, line number, function name) tuples describing the traceback where " -"the coroutine object was created, with the most recent call first. When " -"disabled, ``cr_origin`` will be ``None``." +msgid "Allows enabling or disabling coroutine origin tracking. When enabled, the ``cr_origin`` attribute on coroutine objects will contain a tuple of (filename, line number, function name) tuples describing the traceback where the coroutine object was created, with the most recent call first. When disabled, ``cr_origin`` will be ``None``." msgstr "" -#: ../../library/sys.rst:1890 -msgid "" -"To enable, pass a *depth* value greater than zero; this sets the number of " -"frames whose information will be captured. To disable, set *depth* to zero." +msgid "To enable, pass a *depth* value greater than zero; this sets the number of frames whose information will be captured. To disable, set *depth* to zero." msgstr "" -#: ../../library/sys.rst:1894 msgid "This setting is thread-specific." msgstr "" -#: ../../library/sys.rst:1904 -msgid "" -"Activate the stack profiler trampoline *backend*. The only supported backend " -"is ``\"perf\"``." +msgid "Activate the stack profiler trampoline *backend*. The only supported backend is ``\"perf\"``." msgstr "" -#: ../../library/sys.rst:1907 msgid "Stack trampolines cannot be activated if the JIT is active." msgstr "" -#: ../../library/sys.rst:1915 msgid ":ref:`perf_profiling`" msgstr "" -#: ../../library/sys.rst:1916 msgid "https://perf.wiki.kernel.org" msgstr "" -#: ../../library/sys.rst:1920 msgid "Deactivate the current stack profiler trampoline backend." msgstr "" -#: ../../library/sys.rst:1922 msgid "If no stack profiler is activated, this function has no effect." msgstr "" -#: ../../library/sys.rst:1930 msgid "Return ``True`` if a stack profiler trampoline is active." msgstr "" -#: ../../library/sys.rst:1939 -msgid "" -"Executes *script*, a file containing Python code in the remote process with " -"the given *pid*." +msgid "Executes *script*, a file containing Python code in the remote process with the given *pid*." msgstr "" -#: ../../library/sys.rst:1942 -msgid "" -"This function returns immediately, and the code will be executed by the " -"target process's main thread at the next available opportunity, similarly to " -"how signals are handled. There is no interface to determine when the code " -"has been executed. The caller is responsible for making sure that the file " -"still exists whenever the remote process tries to read it and that it hasn't " -"been overwritten." +msgid "This function returns immediately, and the code will be executed by the target process's main thread at the next available opportunity, similarly to how signals are handled. There is no interface to determine when the code has been executed. The caller is responsible for making sure that the file still exists whenever the remote process tries to read it and that it hasn't been overwritten." msgstr "" -#: ../../library/sys.rst:1949 -msgid "" -"The remote process must be running a CPython interpreter of the same major " -"and minor version as the local process. If either the local or remote " -"interpreter is pre-release (alpha, beta, or release candidate) then the " -"local and remote interpreters must be the same exact version." +msgid "The remote process must be running a CPython interpreter of the same major and minor version as the local process. If either the local or remote interpreter is pre-release (alpha, beta, or release candidate) then the local and remote interpreters must be the same exact version." msgstr "" -#: ../../library/sys.rst:1954 -msgid "" -"See :ref:`remote-debugging` for more information about the remote debugging " -"mechanism." +msgid "See :ref:`remote-debugging` for more information about the remote debugging mechanism." msgstr "" -#: ../../library/sys.rst:1957 ../../library/sys.rst:1959 -msgid "" -"When the code is executed in the remote process, an :ref:`auditing event " -"` ``sys.remote_exec`` is raised with the *pid* and the path to the " -"script file. This event is raised in the process that " -"called :func:`sys.remote_exec`." +msgid "When the code is executed in the remote process, an :ref:`auditing event ` ``sys.remote_exec`` is raised with the *pid* and the path to the script file. This event is raised in the process that called :func:`sys.remote_exec`." msgstr "" -#: ../../library/sys.rst:1964 ../../library/sys.rst:1966 -msgid "" -"When the script is executed in the remote process, an :ref:`auditing event " -"` ``cpython.remote_debugger_script`` is raised with the path in " -"the remote process. This event is raised in the remote process, not the one " -"that called :func:`sys.remote_exec`." +msgid "When the script is executed in the remote process, an :ref:`auditing event ` ``cpython.remote_debugger_script`` is raised with the path in the remote process. This event is raised in the remote process, not the one that called :func:`sys.remote_exec`." msgstr "" -#: ../../library/sys.rst:1974 msgid "See :pep:`768` for more details." msgstr "" -#: ../../library/sys.rst:1980 -msgid "" -"Changes the :term:`filesystem encoding and error handler` to 'mbcs' and " -"'replace' respectively, for consistency with versions of Python prior to 3.6." +msgid "Changes the :term:`filesystem encoding and error handler` to 'mbcs' and 'replace' respectively, for consistency with versions of Python prior to 3.6." msgstr "" -#: ../../library/sys.rst:1984 -msgid "" -"This is equivalent to defining the :envvar:`PYTHONLEGACYWINDOWSFSENCODING` " -"environment variable before launching Python." +msgid "This is equivalent to defining the :envvar:`PYTHONLEGACYWINDOWSFSENCODING` environment variable before launching Python." msgstr "" -#: ../../library/sys.rst:1987 -msgid "" -"See also :func:`sys.getfilesystemencoding` " -"and :func:`sys.getfilesystemencodeerrors`." +msgid "See also :func:`sys.getfilesystemencoding` and :func:`sys.getfilesystemencodeerrors`." msgstr "" -#: ../../library/sys.rst:1993 -msgid "" -"Changing the filesystem encoding after Python startup is risky because the " -"old fsencoding or paths encoded by the old fsencoding may be cached " -"somewhere. Use :envvar:`PYTHONLEGACYWINDOWSFSENCODING` instead." +msgid "Changing the filesystem encoding after Python startup is risky because the old fsencoding or paths encoded by the old fsencoding may be cached somewhere. Use :envvar:`PYTHONLEGACYWINDOWSFSENCODING` instead." msgstr "" -#: ../../library/sys.rst:1997 msgid "See :pep:`529` for more details." msgstr "" -#: ../../library/sys.rst:2000 msgid "Use :envvar:`PYTHONLEGACYWINDOWSFSENCODING` instead." msgstr "" -#: ../../library/sys.rst:2007 -msgid "" -":term:`File objects ` used by the interpreter for standard " -"input, output and errors:" +msgid ":term:`File objects ` used by the interpreter for standard input, output and errors:" msgstr "" -#: ../../library/sys.rst:2010 -msgid "" -"``stdin`` is used for all interactive input (including calls " -"to :func:`input`);" +msgid "``stdin`` is used for all interactive input (including calls to :func:`input`);" msgstr "" -#: ../../library/sys.rst:2012 -msgid "" -"``stdout`` is used for the output of :func:`print` and :term:`expression` " -"statements and for the prompts of :func:`input`;" +msgid "``stdout`` is used for the output of :func:`print` and :term:`expression` statements and for the prompts of :func:`input`;" msgstr "" -#: ../../library/sys.rst:2014 msgid "The interpreter's own prompts and its error messages go to ``stderr``." msgstr "" -#: ../../library/sys.rst:2016 -msgid "" -"These streams are regular :term:`text files ` like those returned " -"by the :func:`open` function. Their parameters are chosen as follows:" +msgid "These streams are regular :term:`text files ` like those returned by the :func:`open` function. Their parameters are chosen as follows:" msgstr "" -#: ../../library/sys.rst:2020 -msgid "" -"The encoding and error handling are initialized " -"from :c:member:`PyConfig.stdio_encoding` " -"and :c:member:`PyConfig.stdio_errors`." +msgid "The encoding and error handling are initialized from :c:member:`PyConfig.stdio_encoding` and :c:member:`PyConfig.stdio_errors`." msgstr "" -#: ../../library/sys.rst:2023 -msgid "" -"On Windows, UTF-8 is used for the console device. Non-character devices " -"such as disk files and pipes use the system locale encoding (i.e. the ANSI " -"codepage). Non-console character devices such as NUL (i.e. where " -"``isatty()`` returns ``True``) use the value of the console input and output " -"codepages at startup, respectively for stdin and stdout/stderr. This " -"defaults to the system :term:`locale encoding` if the process is not " -"initially attached to a console." +msgid "On Windows, UTF-8 is used for the console device. Non-character devices such as disk files and pipes use the system locale encoding (i.e. the ANSI codepage). Non-console character devices such as NUL (i.e. where ``isatty()`` returns ``True``) use the value of the console input and output codepages at startup, respectively for stdin and stdout/stderr. This defaults to the system :term:`locale encoding` if the process is not initially attached to a console." msgstr "" -#: ../../library/sys.rst:2032 -msgid "" -"The special behaviour of the console can be overridden by setting the " -"environment variable PYTHONLEGACYWINDOWSSTDIO before starting Python. In " -"that case, the console codepages are used as for any other character device." +msgid "The special behaviour of the console can be overridden by setting the environment variable PYTHONLEGACYWINDOWSSTDIO before starting Python. In that case, the console codepages are used as for any other character device." msgstr "" -#: ../../library/sys.rst:2037 -msgid "" -"Under all platforms, you can override the character encoding by setting " -"the :envvar:`PYTHONIOENCODING` environment variable before starting Python " -"or by using the new :option:`-X` ``utf8`` command line option " -"and :envvar:`PYTHONUTF8` environment variable. However, for the Windows " -"console, this only applies when :envvar:`PYTHONLEGACYWINDOWSSTDIO` is also " -"set." +msgid "Under all platforms, you can override the character encoding by setting the :envvar:`PYTHONIOENCODING` environment variable before starting Python or by using the new :option:`-X` ``utf8`` command line option and :envvar:`PYTHONUTF8` environment variable. However, for the Windows console, this only applies when :envvar:`PYTHONLEGACYWINDOWSSTDIO` is also set." msgstr "" -#: ../../library/sys.rst:2044 -msgid "" -"When interactive, the ``stdout`` stream is line-buffered. Otherwise, it is " -"block-buffered like regular text files. The ``stderr`` stream is line-" -"buffered in both cases. You can make both streams unbuffered by passing " -"the :option:`-u` command-line option or setting " -"the :envvar:`PYTHONUNBUFFERED` environment variable." +msgid "When interactive, the ``stdout`` stream is line-buffered. Otherwise, it is block-buffered like regular text files. The ``stderr`` stream is line-buffered in both cases. You can make both streams unbuffered by passing the :option:`-u` command-line option or setting the :envvar:`PYTHONUNBUFFERED` environment variable." msgstr "" -#: ../../library/sys.rst:2050 -msgid "" -"Non-interactive ``stderr`` is now line-buffered instead of fully buffered." +msgid "Non-interactive ``stderr`` is now line-buffered instead of fully buffered." msgstr "" -#: ../../library/sys.rst:2056 -msgid "" -"To write or read binary data from/to the standard streams, use the " -"underlying binary :data:`~io.TextIOBase.buffer` object. For example, to " -"write bytes to :data:`stdout`, use ``sys.stdout.buffer.write(b'abc')``." +msgid "To write or read binary data from/to the standard streams, use the underlying binary :data:`~io.TextIOBase.buffer` object. For example, to write bytes to :data:`stdout`, use ``sys.stdout.buffer.write(b'abc')``." msgstr "" -#: ../../library/sys.rst:2060 -msgid "" -"However, if you are writing a library (and do not control in which context " -"its code will be executed), be aware that the standard streams may be " -"replaced with file-like objects like :class:`io.StringIO` which do not " -"support the :attr:`!buffer` attribute." +msgid "However, if you are writing a library (and do not control in which context its code will be executed), be aware that the standard streams may be replaced with file-like objects like :class:`io.StringIO` which do not support the :attr:`!buffer` attribute." msgstr "" -#: ../../library/sys.rst:2070 -msgid "" -"These objects contain the original values of ``stdin``, ``stderr`` and " -"``stdout`` at the start of the program. They are used during finalization, " -"and could be useful to print to the actual standard stream no matter if the " -"``sys.std*`` object has been redirected." +msgid "These objects contain the original values of ``stdin``, ``stderr`` and ``stdout`` at the start of the program. They are used during finalization, and could be useful to print to the actual standard stream no matter if the ``sys.std*`` object has been redirected." msgstr "" -#: ../../library/sys.rst:2075 -msgid "" -"It can also be used to restore the actual files to known working file " -"objects in case they have been overwritten with a broken object. However, " -"the preferred way to do this is to explicitly save the previous stream " -"before replacing it, and restore the saved object." +msgid "It can also be used to restore the actual files to known working file objects in case they have been overwritten with a broken object. However, the preferred way to do this is to explicitly save the previous stream before replacing it, and restore the saved object." msgstr "" -#: ../../library/sys.rst:2081 -msgid "" -"Under some conditions ``stdin``, ``stdout`` and ``stderr`` as well as the " -"original values ``__stdin__``, ``__stdout__`` and ``__stderr__`` can be " -"``None``. It is usually the case for Windows GUI apps that aren't connected " -"to a console and Python apps started with :program:`pythonw`." +msgid "Under some conditions ``stdin``, ``stdout`` and ``stderr`` as well as the original values ``__stdin__``, ``__stdout__`` and ``__stderr__`` can be ``None``. It is usually the case for Windows GUI apps that aren't connected to a console and Python apps started with :program:`pythonw`." msgstr "" -#: ../../library/sys.rst:2089 -msgid "" -"A frozenset of strings containing the names of standard library modules." +msgid "A frozenset of strings containing the names of standard library modules." msgstr "" -#: ../../library/sys.rst:2091 -msgid "" -"It is the same on all platforms. Modules which are not available on some " -"platforms and modules disabled at Python build are also listed. All module " -"kinds are listed: pure Python, built-in, frozen and extension modules. Test " -"modules are excluded." +msgid "It is the same on all platforms. Modules which are not available on some platforms and modules disabled at Python build are also listed. All module kinds are listed: pure Python, built-in, frozen and extension modules. Test modules are excluded." msgstr "" -#: ../../library/sys.rst:2096 -msgid "" -"For packages, only the main package is listed: sub-packages and sub-modules " -"are not listed. For example, the ``email`` package is listed, but the " -"``email.mime`` sub-package and the ``email.message`` sub-module are not " -"listed." +msgid "For packages, only the main package is listed: sub-packages and sub-modules are not listed. For example, the ``email`` package is listed, but the ``email.mime`` sub-package and the ``email.message`` sub-module are not listed." msgstr "" -#: ../../library/sys.rst:2101 msgid "See also the :data:`sys.builtin_module_names` list." msgstr "" -#: ../../library/sys.rst:2108 -msgid "" -"A :term:`named tuple` holding information about the thread implementation." +msgid "A :term:`named tuple` holding information about the thread implementation." msgstr "" -#: ../../library/sys.rst:2113 msgid "The name of the thread implementation:" msgstr "" -#: ../../library/sys.rst:2115 msgid "``\"nt\"``: Windows threads" msgstr "" -#: ../../library/sys.rst:2116 msgid "``\"pthread\"``: POSIX threads" msgstr "" -#: ../../library/sys.rst:2117 -msgid "" -"``\"pthread-stubs\"``: stub POSIX threads (on WebAssembly platforms without " -"threading support)" +msgid "``\"pthread-stubs\"``: stub POSIX threads (on WebAssembly platforms without threading support)" msgstr "" -#: ../../library/sys.rst:2119 msgid "``\"solaris\"``: Solaris threads" msgstr "" -#: ../../library/sys.rst:2123 msgid "The name of the lock implementation:" msgstr "" -#: ../../library/sys.rst:2125 msgid "``\"semaphore\"``: a lock uses a semaphore" msgstr "" -#: ../../library/sys.rst:2126 msgid "``\"mutex+cond\"``: a lock uses a mutex and a condition variable" msgstr "" -#: ../../library/sys.rst:2127 msgid "``None`` if this information is unknown" msgstr "" -#: ../../library/sys.rst:2131 -msgid "" -"The name and version of the thread library. It is a string, or ``None`` if " -"this information is unknown." +msgid "The name and version of the thread library. It is a string, or ``None`` if this information is unknown." msgstr "" -#: ../../library/sys.rst:2139 -msgid "" -"When this variable is set to an integer value, it determines the maximum " -"number of levels of traceback information printed when an unhandled " -"exception occurs. The default is ``1000``. When set to ``0`` or less, all " -"traceback information is suppressed and only the exception type and value " -"are printed." +msgid "When this variable is set to an integer value, it determines the maximum number of levels of traceback information printed when an unhandled exception occurs. The default is ``1000``. When set to ``0`` or less, all traceback information is suppressed and only the exception type and value are printed." msgstr "" -#: ../../library/sys.rst:2147 msgid "Handle an unraisable exception." msgstr "" -#: ../../library/sys.rst:2149 -msgid "" -"Called when an exception has occurred but there is no way for Python to " -"handle it. For example, when a destructor raises an exception or during " -"garbage collection (:func:`gc.collect`)." +msgid "Called when an exception has occurred but there is no way for Python to handle it. For example, when a destructor raises an exception or during garbage collection (:func:`gc.collect`)." msgstr "" -#: ../../library/sys.rst:2153 msgid "The *unraisable* argument has the following attributes:" msgstr "" -#: ../../library/sys.rst:2155 msgid ":attr:`!exc_type`: Exception type." msgstr "" -#: ../../library/sys.rst:2156 msgid ":attr:`!exc_value`: Exception value, can be ``None``." msgstr "" -#: ../../library/sys.rst:2157 msgid ":attr:`!exc_traceback`: Exception traceback, can be ``None``." msgstr "" -#: ../../library/sys.rst:2158 msgid ":attr:`!err_msg`: Error message, can be ``None``." msgstr "" -#: ../../library/sys.rst:2159 msgid ":attr:`!object`: Object causing the exception, can be ``None``." msgstr "" -#: ../../library/sys.rst:2161 -msgid "" -"The default hook formats :attr:`!err_msg` and :attr:`!object` as: " -"``f'{err_msg}: {object!r}'``; use \"Exception ignored in\" error message " -"if :attr:`!err_msg` is ``None``." +msgid "The default hook formats :attr:`!err_msg` and :attr:`!object` as: ``f'{err_msg}: {object!r}'``; use \"Exception ignored in\" error message if :attr:`!err_msg` is ``None``." msgstr "" -#: ../../library/sys.rst:2165 -msgid "" -":func:`sys.unraisablehook` can be overridden to control how unraisable " -"exceptions are handled." +msgid ":func:`sys.unraisablehook` can be overridden to control how unraisable exceptions are handled." msgstr "" -#: ../../library/sys.rst:2170 msgid ":func:`excepthook` which handles uncaught exceptions." msgstr "" -#: ../../library/sys.rst:2174 -msgid "" -"Storing :attr:`!exc_value` using a custom hook can create a reference cycle. " -"It should be cleared explicitly to break the reference cycle when the " -"exception is no longer needed." +msgid "Storing :attr:`!exc_value` using a custom hook can create a reference cycle. It should be cleared explicitly to break the reference cycle when the exception is no longer needed." msgstr "" -#: ../../library/sys.rst:2178 -msgid "" -"Storing :attr:`!object` using a custom hook can resurrect it if it is set to " -"an object which is being finalized. Avoid storing :attr:`!object` after the " -"custom hook completes to avoid resurrecting objects." +msgid "Storing :attr:`!object` using a custom hook can resurrect it if it is set to an object which is being finalized. Avoid storing :attr:`!object` after the custom hook completes to avoid resurrecting objects." msgstr "" -#: ../../library/sys.rst:2182 ../../library/sys.rst:2184 -msgid "" -"Raise an auditing event ``sys.unraisablehook`` with arguments *hook*, " -"*unraisable* when an exception that cannot be handled occurs. The " -"*unraisable* object is the same as what will be passed to the hook. If no " -"hook has been set, *hook* may be ``None``." +msgid "Raise an auditing event ``sys.unraisablehook`` with arguments *hook*, *unraisable* when an exception that cannot be handled occurs. The *unraisable* object is the same as what will be passed to the hook. If no hook has been set, *hook* may be ``None``." msgstr "" -#: ../../library/sys.rst:2193 -msgid "" -"A string containing the version number of the Python interpreter plus " -"additional information on the build number and compiler used. This string " -"is displayed when the interactive interpreter is started. Do not extract " -"version information out of it, rather, use :data:`version_info` and the " -"functions provided by the :mod:`platform` module." +msgid "A string containing the version number of the Python interpreter plus additional information on the build number and compiler used. This string is displayed when the interactive interpreter is started. Do not extract version information out of it, rather, use :data:`version_info` and the functions provided by the :mod:`platform` module." msgstr "" -#: ../../library/sys.rst:2202 -msgid "" -"The C API version, equivalent to the C macro :c:macro:`PYTHON_API_VERSION`. " -"Defined for backwards compatibility." +msgid "The C API version, equivalent to the C macro :c:macro:`PYTHON_API_VERSION`. Defined for backwards compatibility." msgstr "" -#: ../../library/sys.rst:2205 -msgid "" -"Currently, this constant is not updated in new Python versions, and is not " -"useful for versioning. This may change in the future." +msgid "Currently, this constant is not updated in new Python versions, and is not useful for versioning. This may change in the future." msgstr "" -#: ../../library/sys.rst:2211 -msgid "" -"A tuple containing the five components of the version number: *major*, " -"*minor*, *micro*, *releaselevel*, and *serial*. All values except " -"*releaselevel* are integers; the release level is ``'alpha'``, ``'beta'``, " -"``'candidate'``, or ``'final'``. The ``version_info`` value corresponding " -"to the Python version 2.0 is ``(2, 0, 0, 'final', 0)``. The components can " -"also be accessed by name, so ``sys.version_info[0]`` is equivalent to " -"``sys.version_info.major`` and so on." +msgid "A tuple containing the five components of the version number: *major*, *minor*, *micro*, *releaselevel*, and *serial*. All values except *releaselevel* are integers; the release level is ``'alpha'``, ``'beta'``, ``'candidate'``, or ``'final'``. The ``version_info`` value corresponding to the Python version 2.0 is ``(2, 0, 0, 'final', 0)``. The components can also be accessed by name, so ``sys.version_info[0]`` is equivalent to ``sys.version_info.major`` and so on." msgstr "" -#: ../../library/sys.rst:2219 msgid "Added named component attributes." msgstr "" -#: ../../library/sys.rst:2224 -msgid "" -"This is an implementation detail of the warnings framework; do not modify " -"this value. Refer to the :mod:`warnings` module for more information on the " -"warnings framework." +msgid "This is an implementation detail of the warnings framework; do not modify this value. Refer to the :mod:`warnings` module for more information on the warnings framework." msgstr "" -#: ../../library/sys.rst:2231 -msgid "" -"The version number used to form registry keys on Windows platforms. This is " -"stored as string resource 1000 in the Python DLL. The value is normally the " -"major and minor versions of the running Python interpreter. It is provided " -"in the :mod:`!sys` module for informational purposes; modifying this value " -"has no effect on the registry keys used by Python." +msgid "The version number used to form registry keys on Windows platforms. This is stored as string resource 1000 in the Python DLL. The value is normally the major and minor versions of the running Python interpreter. It is provided in the :mod:`!sys` module for informational purposes; modifying this value has no effect on the registry keys used by Python." msgstr "" -#: ../../library/sys.rst:2243 -msgid "" -"Namespace containing functions and constants for register callbacks and " -"controlling monitoring events. See :mod:`sys.monitoring` for details." +msgid "Namespace containing functions and constants for register callbacks and controlling monitoring events. See :mod:`sys.monitoring` for details." msgstr "" -#: ../../library/sys.rst:2249 -msgid "" -"A dictionary of the various implementation-specific flags passed through " -"the :option:`-X` command-line option. Option names are either mapped to " -"their values, if given explicitly, or to :const:`True`. Example:" +msgid "A dictionary of the various implementation-specific flags passed through the :option:`-X` command-line option. Option names are either mapped to their values, if given explicitly, or to :const:`True`. Example:" msgstr "" -#: ../../library/sys.rst:2253 msgid "" "$ ./python -Xa=b -Xc\n" "Python 3.2a3+ (py3k, Oct 16 2010, 20:14:50)\n" "[GCC 4.4.3] on linux2\n" -"Type \"help\", \"copyright\", \"credits\" or \"license\" for more " -"information.\n" +"Type \"help\", \"copyright\", \"credits\" or \"license\" for more information.\n" ">>> import sys\n" ">>> sys._xoptions\n" "{'a': 'b', 'c': True}" msgstr "" -#: ../../library/sys.rst:2265 -msgid "" -"This is a CPython-specific way of accessing options passed through :option:`-" -"X`. Other implementations may export them through other means, or not at " -"all." +msgid "This is a CPython-specific way of accessing options passed through :option:`-X`. Other implementations may export them through other means, or not at all." msgstr "" -#: ../../library/sys.rst:2273 msgid "Citations" msgstr "" -#: ../../library/sys.rst:2274 -msgid "" -"ISO/IEC 9899:1999. \"Programming languages -- C.\" A public draft of this " -"standard is available at https://www.open-std.org/jtc1/sc22/wg14/www/docs/" -"n1256.pdf\\ ." +msgid "ISO/IEC 9899:1999. \"Programming languages -- C.\" A public draft of this standard is available at https://www.open-std.org/jtc1/sc22/wg14/www/docs/n1256.pdf\\ ." msgstr "" -#: ../../library/sys.rst:99 msgid "auditing" msgstr "" -#: ../../library/sys.rst:461 msgid "object" msgstr "" -#: ../../library/sys.rst:461 msgid "traceback" msgstr "" -#: ../../library/sys.rst:990 ../../library/sys.rst:1678 msgid "profile function" msgstr "" -#: ../../library/sys.rst:990 ../../library/sys.rst:1678 msgid "profiler" msgstr "" -#: ../../library/sys.rst:999 ../../library/sys.rst:1761 msgid "trace function" msgstr "" -#: ../../library/sys.rst:999 ../../library/sys.rst:1761 msgid "debugger" msgstr "" -#: ../../library/sys.rst:1490 msgid "module" msgstr "" -#: ../../library/sys.rst:1490 msgid "search" msgstr "" -#: ../../library/sys.rst:1490 msgid "path" msgstr "" -#: ../../library/sys.rst:1642 msgid "interpreter prompts" msgstr "" -#: ../../library/sys.rst:1642 msgid "prompts, interpreter" msgstr "" -#: ../../library/sys.rst:1642 msgid ">>>" msgstr "" -#: ../../library/sys.rst:1642 msgid "interpreter prompt" msgstr "" -#: ../../library/sys.rst:1642 msgid "..." msgstr "" diff --git a/library/sys_path_init.po b/library/sys_path_init.po index 2ab884bd..7b34d711 100644 --- a/library/sys_path_init.po +++ b/library/sys_path_init.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2022-11-05 19:49+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,200 +21,83 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/sys_path_init.rst:4 msgid "The initialization of the :data:`sys.path` module search path" msgstr "" -#: ../../library/sys_path_init.rst:6 -msgid "" -"A module search path is initialized when Python starts. This module search " -"path may be accessed at :data:`sys.path`." +msgid "A module search path is initialized when Python starts. This module search path may be accessed at :data:`sys.path`." msgstr "" -#: ../../library/sys_path_init.rst:9 -msgid "" -"The first entry in the module search path is the directory that contains the " -"input script, if there is one. Otherwise, the first entry is the current " -"directory, which is the case when executing the interactive shell, " -"a :option:`-c` command, or :option:`-m` module." +msgid "The first entry in the module search path is the directory that contains the input script, if there is one. Otherwise, the first entry is the current directory, which is the case when executing the interactive shell, a :option:`-c` command, or :option:`-m` module." msgstr "" -#: ../../library/sys_path_init.rst:14 -msgid "" -"The :envvar:`PYTHONPATH` environment variable is often used to add " -"directories to the search path. If this environment variable is found then " -"the contents are added to the module search path." +msgid "The :envvar:`PYTHONPATH` environment variable is often used to add directories to the search path. If this environment variable is found then the contents are added to the module search path." msgstr "" -#: ../../library/sys_path_init.rst:20 -msgid "" -":envvar:`PYTHONPATH` will affect all installed Python versions/environments. " -"Be wary of setting this in your shell profile or global environment " -"variables. The :mod:`site` module offers more nuanced techniques as " -"mentioned below." +msgid ":envvar:`PYTHONPATH` will affect all installed Python versions/environments. Be wary of setting this in your shell profile or global environment variables. The :mod:`site` module offers more nuanced techniques as mentioned below." msgstr "" -#: ../../library/sys_path_init.rst:24 -msgid "" -"The next items added are the directories containing standard Python modules " -"as well as any :term:`extension module`\\s that these modules depend on. " -"Extension modules are ``.pyd`` files on Windows and ``.so`` files on other " -"platforms. The directory with the platform-independent Python modules is " -"called ``prefix``. The directory with the extension modules is called " -"``exec_prefix``." +msgid "The next items added are the directories containing standard Python modules as well as any :term:`extension module`\\s that these modules depend on. Extension modules are ``.pyd`` files on Windows and ``.so`` files on other platforms. The directory with the platform-independent Python modules is called ``prefix``. The directory with the extension modules is called ``exec_prefix``." msgstr "" -#: ../../library/sys_path_init.rst:30 -msgid "" -"The :envvar:`PYTHONHOME` environment variable may be used to set the " -"``prefix`` and ``exec_prefix`` locations. Otherwise these directories are " -"found by using the Python executable as a starting point and then looking " -"for various 'landmark' files and directories. Note that any symbolic links " -"are followed so the real Python executable location is used as the search " -"starting point. The Python executable location is called ``home``." +msgid "The :envvar:`PYTHONHOME` environment variable may be used to set the ``prefix`` and ``exec_prefix`` locations. Otherwise these directories are found by using the Python executable as a starting point and then looking for various 'landmark' files and directories. Note that any symbolic links are followed so the real Python executable location is used as the search starting point. The Python executable location is called ``home``." msgstr "" -#: ../../library/sys_path_init.rst:37 -msgid "" -"Once ``home`` is determined, the ``prefix`` directory is found by first " -"looking for :file:`python{majorversion}{minorversion}.zip` " -"(``python311.zip``). On Windows the zip archive is searched for in ``home`` " -"and on Unix the archive is expected to be in :file:`lib`. Note that the " -"expected zip archive location is added to the module search path even if the " -"archive does not exist. If no archive was found, Python on Windows will " -"continue the search for ``prefix`` by looking for :file:`Lib\\\\os.py`. " -"Python on Unix will look for :file:`lib/python{majorversion}.{minorversion}/" -"os.py` (``lib/python3.11/os.py``). On Windows ``prefix`` and ``exec_prefix`` " -"are the same, however on other platforms :file:`lib/python{majorversion}." -"{minorversion}/lib-dynload` (``lib/python3.11/lib-dynload``) is searched for " -"and used as an anchor for ``exec_prefix``. On some platforms :file:`lib` may " -"be :file:`lib64` or another value, see :data:`sys.platlibdir` " -"and :envvar:`PYTHONPLATLIBDIR`." -msgstr "" - -#: ../../library/sys_path_init.rst:50 -msgid "" -"Once found, ``prefix`` and ``exec_prefix`` are available " -"at :data:`sys.base_prefix` and :data:`sys.base_exec_prefix` respectively." +msgid "Once ``home`` is determined, the ``prefix`` directory is found by first looking for :file:`python{majorversion}{minorversion}.zip` (``python311.zip``). On Windows the zip archive is searched for in ``home`` and on Unix the archive is expected to be in :file:`lib`. Note that the expected zip archive location is added to the module search path even if the archive does not exist. If no archive was found, Python on Windows will continue the search for ``prefix`` by looking for :file:`Lib\\\\os.py`. Python on Unix will look for :file:`lib/python{majorversion}.{minorversion}/os.py` (``lib/python3.11/os.py``). On Windows ``prefix`` and ``exec_prefix`` are the same, however on other platforms :file:`lib/python{majorversion}.{minorversion}/lib-dynload` (``lib/python3.11/lib-dynload``) is searched for and used as an anchor for ``exec_prefix``. On some platforms :file:`lib` may be :file:`lib64` or another value, see :data:`sys.platlibdir` and :envvar:`PYTHONPLATLIBDIR`." msgstr "" -#: ../../library/sys_path_init.rst:53 -msgid "" -"If :envvar:`PYTHONHOME` is not set, and a ``pyvenv.cfg`` file is found " -"alongside the main executable, or in its parent " -"directory, :data:`sys.prefix` and :data:`sys.exec_prefix` get set to the " -"directory containing ``pyvenv.cfg``, otherwise they are set to the same " -"value as :data:`sys.base_prefix` and :data:`sys.base_exec_prefix`, " -"respectively. This is used by :ref:`sys-path-init-virtual-environments`." +msgid "Once found, ``prefix`` and ``exec_prefix`` are available at :data:`sys.base_prefix` and :data:`sys.base_exec_prefix` respectively." msgstr "" -#: ../../library/sys_path_init.rst:60 -msgid "" -"Finally, the :mod:`site` module is processed and :file:`site-packages` " -"directories are added to the module search path. A common way to customize " -"the search path is to create :mod:`sitecustomize` or :mod:`usercustomize` " -"modules as described in the :mod:`site` module documentation." +msgid "If :envvar:`PYTHONHOME` is not set, and a ``pyvenv.cfg`` file is found alongside the main executable, or in its parent directory, :data:`sys.prefix` and :data:`sys.exec_prefix` get set to the directory containing ``pyvenv.cfg``, otherwise they are set to the same value as :data:`sys.base_prefix` and :data:`sys.base_exec_prefix`, respectively. This is used by :ref:`sys-path-init-virtual-environments`." msgstr "" -#: ../../library/sys_path_init.rst:67 -msgid "" -"Certain command line options may further affect path calculations. " -"See :option:`-E`, :option:`-I`, :option:`-s` and :option:`-S` for further " -"details." +msgid "Finally, the :mod:`site` module is processed and :file:`site-packages` directories are added to the module search path. A common way to customize the search path is to create :mod:`sitecustomize` or :mod:`usercustomize` modules as described in the :mod:`site` module documentation." msgstr "" -#: ../../library/sys_path_init.rst:72 -msgid "" -":data:`sys.prefix` and :data:`sys.exec_prefix` are now set to the " -"``pyvenv.cfg`` directory during the path initialization. This was previously " -"done by :mod:`site`, therefore affected by :option:`-S`." +msgid "Certain command line options may further affect path calculations. See :option:`-E`, :option:`-I`, :option:`-s` and :option:`-S` for further details." +msgstr "" + +msgid ":data:`sys.prefix` and :data:`sys.exec_prefix` are now set to the ``pyvenv.cfg`` directory during the path initialization. This was previously done by :mod:`site`, therefore affected by :option:`-S`." msgstr "" -#: ../../library/sys_path_init.rst:79 msgid "Virtual Environments" msgstr "" -#: ../../library/sys_path_init.rst:81 -msgid "" -"Virtual environments place a ``pyvenv.cfg`` file in their prefix, which " -"causes :data:`sys.prefix` and :data:`sys.exec_prefix` to point to them, " -"instead of the base installation." +msgid "Virtual environments place a ``pyvenv.cfg`` file in their prefix, which causes :data:`sys.prefix` and :data:`sys.exec_prefix` to point to them, instead of the base installation." msgstr "" -#: ../../library/sys_path_init.rst:85 -msgid "" -"The ``prefix`` and ``exec_prefix`` values of the base installation are " -"available at :data:`sys.base_prefix` and :data:`sys.base_exec_prefix`." +msgid "The ``prefix`` and ``exec_prefix`` values of the base installation are available at :data:`sys.base_prefix` and :data:`sys.base_exec_prefix`." msgstr "" -#: ../../library/sys_path_init.rst:88 -msgid "" -"As well as being used as a marker to identify virtual environments, " -"``pyvenv.cfg`` may also be used to configure the :mod:`site` initialization. " -"Please refer to :mod:`site`'s :ref:`virtual environments documentation `." +msgid "As well as being used as a marker to identify virtual environments, ``pyvenv.cfg`` may also be used to configure the :mod:`site` initialization. Please refer to :mod:`site`'s :ref:`virtual environments documentation `." msgstr "" -#: ../../library/sys_path_init.rst:95 msgid ":envvar:`PYTHONHOME` overrides the ``pyvenv.cfg`` detection." msgstr "" -#: ../../library/sys_path_init.rst:99 -msgid "" -"There are other ways how \"virtual environments\" could be implemented, this " -"documentation refers implementations based on the ``pyvenv.cfg`` mechanism, " -"such as :mod:`venv`. Most virtual environment implementations follow the " -"model set by :mod:`venv`, but there may be exotic implementations that " -"diverge from it." +msgid "There are other ways how \"virtual environments\" could be implemented, this documentation refers implementations based on the ``pyvenv.cfg`` mechanism, such as :mod:`venv`. Most virtual environment implementations follow the model set by :mod:`venv`, but there may be exotic implementations that diverge from it." msgstr "" -#: ../../library/sys_path_init.rst:106 msgid "_pth files" msgstr "" -#: ../../library/sys_path_init.rst:108 -msgid "" -"To completely override :data:`sys.path` create a ``._pth`` file with the " -"same name as the shared library or executable (``python._pth`` or " -"``python311._pth``). The shared library path is always known on Windows, " -"however it may not be available on other platforms. In the ``._pth`` file " -"specify one line for each path to add to :data:`sys.path`. The file based on " -"the shared library name overrides the one based on the executable, which " -"allows paths to be restricted for any program loading the runtime if desired." +msgid "To completely override :data:`sys.path` create a ``._pth`` file with the same name as the shared library or executable (``python._pth`` or ``python311._pth``). The shared library path is always known on Windows, however it may not be available on other platforms. In the ``._pth`` file specify one line for each path to add to :data:`sys.path`. The file based on the shared library name overrides the one based on the executable, which allows paths to be restricted for any program loading the runtime if desired." msgstr "" -#: ../../library/sys_path_init.rst:116 -msgid "" -"When the file exists, all registry and environment variables are ignored, " -"isolated mode is enabled, and :mod:`site` is not imported unless one line in " -"the file specifies ``import site``. Blank paths and lines starting with " -"``#`` are ignored. Each path may be absolute or relative to the location of " -"the file. Import statements other than to ``site`` are not permitted, and " -"arbitrary code cannot be specified." +msgid "When the file exists, all registry and environment variables are ignored, isolated mode is enabled, and :mod:`site` is not imported unless one line in the file specifies ``import site``. Blank paths and lines starting with ``#`` are ignored. Each path may be absolute or relative to the location of the file. Import statements other than to ``site`` are not permitted, and arbitrary code cannot be specified." msgstr "" -#: ../../library/sys_path_init.rst:123 -msgid "" -"Note that ``.pth`` files (without leading underscore) will be processed " -"normally by the :mod:`site` module when ``import site`` has been specified." +msgid "Note that ``.pth`` files (without leading underscore) will be processed normally by the :mod:`site` module when ``import site`` has been specified." msgstr "" -#: ../../library/sys_path_init.rst:127 msgid "Embedded Python" msgstr "" -#: ../../library/sys_path_init.rst:129 -msgid "" -"If Python is embedded within another " -"application :c:func:`Py_InitializeFromConfig` and the :c:type:`PyConfig` " -"structure can be used to initialize Python. The path specific details are " -"described at :ref:`init-path-config`." +msgid "If Python is embedded within another application :c:func:`Py_InitializeFromConfig` and the :c:type:`PyConfig` structure can be used to initialize Python. The path specific details are described at :ref:`init-path-config`." msgstr "" -#: ../../library/sys_path_init.rst:135 msgid ":ref:`windows_finding_modules` for detailed Windows notes." msgstr "" -#: ../../library/sys_path_init.rst:136 msgid ":ref:`using-on-unix` for Unix details." msgstr "" diff --git a/library/sysconfig.po b/library/sysconfig.po index 01e3839b..2b926368 100644 --- a/library/sysconfig.po +++ b/library/sysconfig.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:14+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,74 +23,45 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/sysconfig.rst:2 -msgid "" -":mod:`!sysconfig` --- Provide access to Python's configuration information" +msgid ":mod:`!sysconfig` --- Provide access to Python's configuration information" msgstr "" -#: ../../library/sysconfig.rst:12 msgid "**Source code:** :source:`Lib/sysconfig`" msgstr "" -#: ../../library/sysconfig.rst:19 -msgid "" -"The :mod:`!sysconfig` module provides access to Python's configuration " -"information like the list of installation paths and the configuration " -"variables relevant for the current platform." +msgid "The :mod:`!sysconfig` module provides access to Python's configuration information like the list of installation paths and the configuration variables relevant for the current platform." msgstr "" -#: ../../library/sysconfig.rst:25 msgid "Configuration variables" msgstr "" -#: ../../library/sysconfig.rst:27 -msgid "" -"A Python distribution contains a :file:`Makefile` and a :file:`pyconfig.h` " -"header file that are necessary to build both the Python binary itself and " -"third-party C extensions compiled using ``setuptools``." +msgid "A Python distribution contains a :file:`Makefile` and a :file:`pyconfig.h` header file that are necessary to build both the Python binary itself and third-party C extensions compiled using ``setuptools``." msgstr "" -#: ../../library/sysconfig.rst:31 -msgid "" -":mod:`!sysconfig` puts all variables found in these files in a dictionary " -"that can be accessed using :func:`get_config_vars` or :func:`get_config_var`." +msgid ":mod:`!sysconfig` puts all variables found in these files in a dictionary that can be accessed using :func:`get_config_vars` or :func:`get_config_var`." msgstr "" -#: ../../library/sysconfig.rst:34 msgid "Notice that on Windows, it's a much smaller set." msgstr "" -#: ../../library/sysconfig.rst:38 -msgid "" -"With no arguments, return a dictionary of all configuration variables " -"relevant for the current platform." +msgid "With no arguments, return a dictionary of all configuration variables relevant for the current platform." msgstr "" -#: ../../library/sysconfig.rst:41 -msgid "" -"With arguments, return a list of values that result from looking up each " -"argument in the configuration variable dictionary." +msgid "With arguments, return a list of values that result from looking up each argument in the configuration variable dictionary." msgstr "" -#: ../../library/sysconfig.rst:44 msgid "For each argument, if the value is not found, return ``None``." msgstr "" -#: ../../library/sysconfig.rst:49 -msgid "" -"Return the value of a single variable *name*. Equivalent to " -"``get_config_vars().get(name)``." +msgid "Return the value of a single variable *name*. Equivalent to ``get_config_vars().get(name)``." msgstr "" -#: ../../library/sysconfig.rst:52 msgid "If *name* is not found, return ``None``." msgstr "" -#: ../../library/sysconfig.rst:54 msgid "Example of usage::" msgstr "" -#: ../../library/sysconfig.rst:56 msgid "" ">>> import sysconfig\n" ">>> sysconfig.get_config_var('Py_ENABLE_SHARED')\n" @@ -101,630 +72,363 @@ msgid "" "['ar', 'g++']" msgstr "" -#: ../../library/sysconfig.rst:68 msgid "Installation paths" msgstr "" -#: ../../library/sysconfig.rst:70 -msgid "" -"Python uses an installation scheme that differs depending on the platform " -"and on the installation options. These schemes are stored in :mod:`!" -"sysconfig` under unique identifiers based on the value returned " -"by :const:`os.name`. The schemes are used by package installers to determine " -"where to copy files to." +msgid "Python uses an installation scheme that differs depending on the platform and on the installation options. These schemes are stored in :mod:`!sysconfig` under unique identifiers based on the value returned by :const:`os.name`. The schemes are used by package installers to determine where to copy files to." msgstr "" -#: ../../library/sysconfig.rst:75 msgid "Python currently supports nine schemes:" msgstr "" -#: ../../library/sysconfig.rst:77 -msgid "" -"*posix_prefix*: scheme for POSIX platforms like Linux or macOS. This is the " -"default scheme used when Python or a component is installed." +msgid "*posix_prefix*: scheme for POSIX platforms like Linux or macOS. This is the default scheme used when Python or a component is installed." msgstr "" -#: ../../library/sysconfig.rst:79 -msgid "" -"*posix_home*: scheme for POSIX platforms, when the *home* option is used. " -"This scheme defines paths located under a specific home prefix." +msgid "*posix_home*: scheme for POSIX platforms, when the *home* option is used. This scheme defines paths located under a specific home prefix." msgstr "" -#: ../../library/sysconfig.rst:81 -msgid "" -"*posix_user*: scheme for POSIX platforms, when the *user* option is used. " -"This scheme defines paths located under the user's home directory " -"(:const:`site.USER_BASE`)." +msgid "*posix_user*: scheme for POSIX platforms, when the *user* option is used. This scheme defines paths located under the user's home directory (:const:`site.USER_BASE`)." msgstr "" -#: ../../library/sysconfig.rst:84 -msgid "" -"*posix_venv*: scheme for :mod:`Python virtual environments ` on POSIX " -"platforms; by default it is the same as *posix_prefix*." +msgid "*posix_venv*: scheme for :mod:`Python virtual environments ` on POSIX platforms; by default it is the same as *posix_prefix*." msgstr "" -#: ../../library/sysconfig.rst:86 -msgid "" -"*nt*: scheme for Windows. This is the default scheme used when Python or a " -"component is installed." +msgid "*nt*: scheme for Windows. This is the default scheme used when Python or a component is installed." msgstr "" -#: ../../library/sysconfig.rst:88 msgid "*nt_user*: scheme for Windows, when the *user* option is used." msgstr "" -#: ../../library/sysconfig.rst:89 -msgid "" -"*nt_venv*: scheme for :mod:`Python virtual environments ` on Windows; " -"by default it is the same as *nt*." +msgid "*nt_venv*: scheme for :mod:`Python virtual environments ` on Windows; by default it is the same as *nt*." msgstr "" -#: ../../library/sysconfig.rst:91 -msgid "" -"*venv*: a scheme with values from either *posix_venv* or *nt_venv* depending " -"on the platform Python runs on." +msgid "*venv*: a scheme with values from either *posix_venv* or *nt_venv* depending on the platform Python runs on." msgstr "" -#: ../../library/sysconfig.rst:93 msgid "*osx_framework_user*: scheme for macOS, when the *user* option is used." msgstr "" -#: ../../library/sysconfig.rst:95 -msgid "" -"Each scheme is itself composed of a series of paths and each path has a " -"unique identifier. Python currently uses eight paths:" +msgid "Each scheme is itself composed of a series of paths and each path has a unique identifier. Python currently uses eight paths:" msgstr "" -#: ../../library/sysconfig.rst:98 -msgid "" -"*stdlib*: directory containing the standard Python library files that are " -"not platform-specific." +msgid "*stdlib*: directory containing the standard Python library files that are not platform-specific." msgstr "" -#: ../../library/sysconfig.rst:100 -msgid "" -"*platstdlib*: directory containing the standard Python library files that " -"are platform-specific." +msgid "*platstdlib*: directory containing the standard Python library files that are platform-specific." msgstr "" -#: ../../library/sysconfig.rst:102 msgid "*platlib*: directory for site-specific, platform-specific files." msgstr "" -#: ../../library/sysconfig.rst:103 -msgid "" -"*purelib*: directory for site-specific, non-platform-specific files ('pure' " -"Python)." +msgid "*purelib*: directory for site-specific, non-platform-specific files ('pure' Python)." msgstr "" -#: ../../library/sysconfig.rst:104 -msgid "" -"*include*: directory for non-platform-specific header files for the Python C-" -"API." +msgid "*include*: directory for non-platform-specific header files for the Python C-API." msgstr "" -#: ../../library/sysconfig.rst:106 -msgid "" -"*platinclude*: directory for platform-specific header files for the Python C-" -"API." +msgid "*platinclude*: directory for platform-specific header files for the Python C-API." msgstr "" -#: ../../library/sysconfig.rst:108 msgid "*scripts*: directory for script files." msgstr "" -#: ../../library/sysconfig.rst:109 msgid "*data*: directory for data files." msgstr "" -#: ../../library/sysconfig.rst:115 msgid "User scheme" msgstr "" -#: ../../library/sysconfig.rst:117 -msgid "" -"This scheme is designed to be the most convenient solution for users that " -"don't have write permission to the global site-packages directory or don't " -"want to install into it." +msgid "This scheme is designed to be the most convenient solution for users that don't have write permission to the global site-packages directory or don't want to install into it." msgstr "" -#: ../../library/sysconfig.rst:121 -msgid "" -"Files will be installed into subdirectories of :const:`site.USER_BASE` " -"(written as :file:`{userbase}` hereafter). This scheme installs pure Python " -"modules and extension modules in the same location (also known " -"as :const:`site.USER_SITE`)." +msgid "Files will be installed into subdirectories of :const:`site.USER_BASE` (written as :file:`{userbase}` hereafter). This scheme installs pure Python modules and extension modules in the same location (also known as :const:`site.USER_SITE`)." msgstr "" -#: ../../library/sysconfig.rst:126 msgid "``posix_user``" msgstr "" -#: ../../library/sysconfig.rst:129 ../../library/sysconfig.rst:144 -#: ../../library/sysconfig.rst:159 ../../library/sysconfig.rst:187 -#: ../../library/sysconfig.rst:229 ../../library/sysconfig.rst:245 msgid "Path" msgstr "" -#: ../../library/sysconfig.rst:129 ../../library/sysconfig.rst:144 -#: ../../library/sysconfig.rst:159 ../../library/sysconfig.rst:187 -#: ../../library/sysconfig.rst:229 ../../library/sysconfig.rst:245 msgid "Installation directory" msgstr "" -#: ../../library/sysconfig.rst:131 ../../library/sysconfig.rst:146 -#: ../../library/sysconfig.rst:161 ../../library/sysconfig.rst:189 -#: ../../library/sysconfig.rst:231 ../../library/sysconfig.rst:247 msgid "*stdlib*" msgstr "" -#: ../../library/sysconfig.rst:131 ../../library/sysconfig.rst:132 msgid ":file:`{userbase}/lib/python{X.Y}`" msgstr "" -#: ../../library/sysconfig.rst:132 ../../library/sysconfig.rst:147 -#: ../../library/sysconfig.rst:162 ../../library/sysconfig.rst:190 -#: ../../library/sysconfig.rst:232 ../../library/sysconfig.rst:248 msgid "*platstdlib*" msgstr "" -#: ../../library/sysconfig.rst:133 ../../library/sysconfig.rst:148 -#: ../../library/sysconfig.rst:163 ../../library/sysconfig.rst:191 -#: ../../library/sysconfig.rst:233 ../../library/sysconfig.rst:249 msgid "*platlib*" msgstr "" -#: ../../library/sysconfig.rst:133 ../../library/sysconfig.rst:134 msgid ":file:`{userbase}/lib/python{X.Y}/site-packages`" msgstr "" -#: ../../library/sysconfig.rst:134 ../../library/sysconfig.rst:149 -#: ../../library/sysconfig.rst:164 ../../library/sysconfig.rst:192 -#: ../../library/sysconfig.rst:234 ../../library/sysconfig.rst:250 msgid "*purelib*" msgstr "" -#: ../../library/sysconfig.rst:135 ../../library/sysconfig.rst:150 -#: ../../library/sysconfig.rst:165 ../../library/sysconfig.rst:193 -#: ../../library/sysconfig.rst:235 ../../library/sysconfig.rst:251 msgid "*include*" msgstr "" -#: ../../library/sysconfig.rst:135 ../../library/sysconfig.rst:165 msgid ":file:`{userbase}/include/python{X.Y}`" msgstr "" -#: ../../library/sysconfig.rst:136 ../../library/sysconfig.rst:151 -#: ../../library/sysconfig.rst:166 ../../library/sysconfig.rst:195 -#: ../../library/sysconfig.rst:237 ../../library/sysconfig.rst:253 msgid "*scripts*" msgstr "" -#: ../../library/sysconfig.rst:136 ../../library/sysconfig.rst:166 msgid ":file:`{userbase}/bin`" msgstr "" -#: ../../library/sysconfig.rst:137 ../../library/sysconfig.rst:152 -#: ../../library/sysconfig.rst:167 ../../library/sysconfig.rst:196 -#: ../../library/sysconfig.rst:238 ../../library/sysconfig.rst:254 msgid "*data*" msgstr "" -#: ../../library/sysconfig.rst:137 ../../library/sysconfig.rst:152 -#: ../../library/sysconfig.rst:167 msgid ":file:`{userbase}`" msgstr "" -#: ../../library/sysconfig.rst:141 msgid "``nt_user``" msgstr "" -#: ../../library/sysconfig.rst:146 ../../library/sysconfig.rst:147 msgid ":file:`{userbase}\\\\Python{XY}`" msgstr "" -#: ../../library/sysconfig.rst:148 ../../library/sysconfig.rst:149 msgid ":file:`{userbase}\\\\Python{XY}\\\\site-packages`" msgstr "" -#: ../../library/sysconfig.rst:150 msgid ":file:`{userbase}\\\\Python{XY}\\\\Include`" msgstr "" -#: ../../library/sysconfig.rst:151 msgid ":file:`{userbase}\\\\Python{XY}\\\\Scripts`" msgstr "" -#: ../../library/sysconfig.rst:156 msgid "``osx_framework_user``" msgstr "" -#: ../../library/sysconfig.rst:161 ../../library/sysconfig.rst:162 msgid ":file:`{userbase}/lib/python`" msgstr "" -#: ../../library/sysconfig.rst:163 ../../library/sysconfig.rst:164 msgid ":file:`{userbase}/lib/python/site-packages`" msgstr "" -#: ../../library/sysconfig.rst:174 msgid "Home scheme" msgstr "" -#: ../../library/sysconfig.rst:176 -msgid "" -"The idea behind the \"home scheme\" is that you build and maintain a " -"personal stash of Python modules. This scheme's name is derived from the " -"idea of a \"home\" directory on Unix, since it's not unusual for a Unix user " -"to make their home directory have a layout similar to :file:`/usr/` " -"or :file:`/usr/local/`. This scheme can be used by anyone, regardless of the " -"operating system they are installing for." +msgid "The idea behind the \"home scheme\" is that you build and maintain a personal stash of Python modules. This scheme's name is derived from the idea of a \"home\" directory on Unix, since it's not unusual for a Unix user to make their home directory have a layout similar to :file:`/usr/` or :file:`/usr/local/`. This scheme can be used by anyone, regardless of the operating system they are installing for." msgstr "" -#: ../../library/sysconfig.rst:184 msgid "``posix_home``" msgstr "" -#: ../../library/sysconfig.rst:189 ../../library/sysconfig.rst:190 -#: ../../library/sysconfig.rst:191 ../../library/sysconfig.rst:192 msgid ":file:`{home}/lib/python`" msgstr "" -#: ../../library/sysconfig.rst:193 ../../library/sysconfig.rst:194 msgid ":file:`{home}/include/python`" msgstr "" -#: ../../library/sysconfig.rst:194 ../../library/sysconfig.rst:236 -#: ../../library/sysconfig.rst:252 msgid "*platinclude*" msgstr "" -#: ../../library/sysconfig.rst:195 msgid ":file:`{home}/bin`" msgstr "" -#: ../../library/sysconfig.rst:196 msgid ":file:`{home}`" msgstr "" -#: ../../library/sysconfig.rst:203 msgid "Prefix scheme" msgstr "" -#: ../../library/sysconfig.rst:205 -msgid "" -"The \"prefix scheme\" is useful when you wish to use one Python installation " -"to perform the build/install (i.e., to run the setup script), but install " -"modules into the third-party module directory of a different Python " -"installation (or something that looks like a different Python " -"installation). If this sounds a trifle unusual, it is---that's why the user " -"and home schemes come before. However, there are at least two known cases " -"where the prefix scheme will be useful." +msgid "The \"prefix scheme\" is useful when you wish to use one Python installation to perform the build/install (i.e., to run the setup script), but install modules into the third-party module directory of a different Python installation (or something that looks like a different Python installation). If this sounds a trifle unusual, it is---that's why the user and home schemes come before. However, there are at least two known cases where the prefix scheme will be useful." msgstr "" -#: ../../library/sysconfig.rst:212 -msgid "" -"First, consider that many Linux distributions put Python in :file:`/usr`, " -"rather than the more traditional :file:`/usr/local`. This is entirely " -"appropriate, since in those cases Python is part of \"the system\" rather " -"than a local add-on. However, if you are installing Python modules from " -"source, you probably want them to go in :file:`/usr/local/lib/python2.{X}` " -"rather than :file:`/usr/lib/python2.{X}`." +msgid "First, consider that many Linux distributions put Python in :file:`/usr`, rather than the more traditional :file:`/usr/local`. This is entirely appropriate, since in those cases Python is part of \"the system\" rather than a local add-on. However, if you are installing Python modules from source, you probably want them to go in :file:`/usr/local/lib/python2.{X}` rather than :file:`/usr/lib/python2.{X}`." msgstr "" -#: ../../library/sysconfig.rst:219 -msgid "" -"Another possibility is a network filesystem where the name used to write to " -"a remote directory is different from the name used to read it: for example, " -"the Python interpreter accessed as :file:`/usr/local/bin/python` might " -"search for modules in :file:`/usr/local/lib/python2.{X}`, but those modules " -"would have to be installed to, say, :file:`/mnt/{@server}/export/lib/python2." -"{X}`." +msgid "Another possibility is a network filesystem where the name used to write to a remote directory is different from the name used to read it: for example, the Python interpreter accessed as :file:`/usr/local/bin/python` might search for modules in :file:`/usr/local/lib/python2.{X}`, but those modules would have to be installed to, say, :file:`/mnt/{@server}/export/lib/python2.{X}`." msgstr "" -#: ../../library/sysconfig.rst:226 msgid "``posix_prefix``" msgstr "" -#: ../../library/sysconfig.rst:231 ../../library/sysconfig.rst:232 msgid ":file:`{prefix}/lib/python{X.Y}`" msgstr "" -#: ../../library/sysconfig.rst:233 ../../library/sysconfig.rst:234 msgid ":file:`{prefix}/lib/python{X.Y}/site-packages`" msgstr "" -#: ../../library/sysconfig.rst:235 ../../library/sysconfig.rst:236 msgid ":file:`{prefix}/include/python{X.Y}`" msgstr "" -#: ../../library/sysconfig.rst:237 msgid ":file:`{prefix}/bin`" msgstr "" -#: ../../library/sysconfig.rst:238 ../../library/sysconfig.rst:254 msgid ":file:`{prefix}`" msgstr "" -#: ../../library/sysconfig.rst:242 msgid "``nt``" msgstr "" -#: ../../library/sysconfig.rst:247 ../../library/sysconfig.rst:248 msgid ":file:`{prefix}\\\\Lib`" msgstr "" -#: ../../library/sysconfig.rst:249 ../../library/sysconfig.rst:250 msgid ":file:`{prefix}\\\\Lib\\\\site-packages`" msgstr "" -#: ../../library/sysconfig.rst:251 ../../library/sysconfig.rst:252 msgid ":file:`{prefix}\\\\Include`" msgstr "" -#: ../../library/sysconfig.rst:253 msgid ":file:`{prefix}\\\\Scripts`" msgstr "" -#: ../../library/sysconfig.rst:259 msgid "Installation path functions" msgstr "" -#: ../../library/sysconfig.rst:261 -msgid "" -":mod:`!sysconfig` provides some functions to determine these installation " -"paths." +msgid ":mod:`!sysconfig` provides some functions to determine these installation paths." msgstr "" -#: ../../library/sysconfig.rst:265 -msgid "" -"Return a tuple containing all schemes currently supported in :mod:`!" -"sysconfig`." +msgid "Return a tuple containing all schemes currently supported in :mod:`!sysconfig`." msgstr "" -#: ../../library/sysconfig.rst:271 msgid "Return the default scheme name for the current platform." msgstr "" -#: ../../library/sysconfig.rst:273 -msgid "" -"This function was previously named ``_get_default_scheme()`` and considered " -"an implementation detail." +msgid "This function was previously named ``_get_default_scheme()`` and considered an implementation detail." msgstr "" -#: ../../library/sysconfig.rst:277 -msgid "" -"When Python runs from a virtual environment, the *venv* scheme is returned." +msgid "When Python runs from a virtual environment, the *venv* scheme is returned." msgstr "" -#: ../../library/sysconfig.rst:283 -msgid "" -"Return a preferred scheme name for an installation layout specified by *key*." +msgid "Return a preferred scheme name for an installation layout specified by *key*." msgstr "" -#: ../../library/sysconfig.rst:285 msgid "*key* must be either ``\"prefix\"``, ``\"home\"``, or ``\"user\"``." msgstr "" -#: ../../library/sysconfig.rst:287 -msgid "" -"The return value is a scheme name listed in :func:`get_scheme_names`. It can " -"be passed to :mod:`!sysconfig` functions that take a *scheme* argument, such " -"as :func:`get_paths`." +msgid "The return value is a scheme name listed in :func:`get_scheme_names`. It can be passed to :mod:`!sysconfig` functions that take a *scheme* argument, such as :func:`get_paths`." msgstr "" -#: ../../library/sysconfig.rst:293 -msgid "" -"When Python runs from a virtual environment and ``key=\"prefix\"``, the " -"*venv* scheme is returned." +msgid "When Python runs from a virtual environment and ``key=\"prefix\"``, the *venv* scheme is returned." msgstr "" -#: ../../library/sysconfig.rst:300 -msgid "" -"Return a dict containing preferred scheme names on the current platform. " -"Python implementers and redistributors may add their preferred schemes to " -"the ``_INSTALL_SCHEMES`` module-level global value, and modify this function " -"to return those scheme names, to e.g. provide different schemes for system " -"and language package managers to use, so packages installed by either do not " -"mix with those by the other." +msgid "Return a dict containing preferred scheme names on the current platform. Python implementers and redistributors may add their preferred schemes to the ``_INSTALL_SCHEMES`` module-level global value, and modify this function to return those scheme names, to e.g. provide different schemes for system and language package managers to use, so packages installed by either do not mix with those by the other." msgstr "" -#: ../../library/sysconfig.rst:307 -msgid "" -"End users should not use this function, but :func:`get_default_scheme` " -"and :func:`get_preferred_scheme` instead." +msgid "End users should not use this function, but :func:`get_default_scheme` and :func:`get_preferred_scheme` instead." msgstr "" -#: ../../library/sysconfig.rst:315 -msgid "" -"Return a tuple containing all path names currently supported in :mod:`!" -"sysconfig`." +msgid "Return a tuple containing all path names currently supported in :mod:`!sysconfig`." msgstr "" -#: ../../library/sysconfig.rst:321 -msgid "" -"Return an installation path corresponding to the path *name*, from the " -"install scheme named *scheme*." +msgid "Return an installation path corresponding to the path *name*, from the install scheme named *scheme*." msgstr "" -#: ../../library/sysconfig.rst:324 -msgid "" -"*name* has to be a value from the list returned by :func:`get_path_names`." +msgid "*name* has to be a value from the list returned by :func:`get_path_names`." msgstr "" -#: ../../library/sysconfig.rst:326 -msgid "" -":mod:`!sysconfig` stores installation paths corresponding to each path name, " -"for each platform, with variables to be expanded. For instance the *stdlib* " -"path for the *nt* scheme is: ``{base}/Lib``." +msgid ":mod:`!sysconfig` stores installation paths corresponding to each path name, for each platform, with variables to be expanded. For instance the *stdlib* path for the *nt* scheme is: ``{base}/Lib``." msgstr "" -#: ../../library/sysconfig.rst:330 -msgid "" -":func:`get_path` will use the variables returned by :func:`get_config_vars` " -"to expand the path. All variables have default values for each platform so " -"one may call this function and get the default value." +msgid ":func:`get_path` will use the variables returned by :func:`get_config_vars` to expand the path. All variables have default values for each platform so one may call this function and get the default value." msgstr "" -#: ../../library/sysconfig.rst:334 -msgid "" -"If *scheme* is provided, it must be a value from the list returned " -"by :func:`get_scheme_names`. Otherwise, the default scheme for the current " -"platform is used." +msgid "If *scheme* is provided, it must be a value from the list returned by :func:`get_scheme_names`. Otherwise, the default scheme for the current platform is used." msgstr "" -#: ../../library/sysconfig.rst:338 -msgid "" -"If *vars* is provided, it must be a dictionary of variables that will update " -"the dictionary returned by :func:`get_config_vars`." +msgid "If *vars* is provided, it must be a dictionary of variables that will update the dictionary returned by :func:`get_config_vars`." msgstr "" -#: ../../library/sysconfig.rst:341 -msgid "" -"If *expand* is set to ``False``, the path will not be expanded using the " -"variables." +msgid "If *expand* is set to ``False``, the path will not be expanded using the variables." msgstr "" -#: ../../library/sysconfig.rst:344 msgid "If *name* is not found, raise a :exc:`KeyError`." msgstr "" -#: ../../library/sysconfig.rst:349 -msgid "" -"Return a dictionary containing all installation paths corresponding to an " -"installation scheme. See :func:`get_path` for more information." +msgid "Return a dictionary containing all installation paths corresponding to an installation scheme. See :func:`get_path` for more information." msgstr "" -#: ../../library/sysconfig.rst:352 -msgid "" -"If *scheme* is not provided, will use the default scheme for the current " -"platform." +msgid "If *scheme* is not provided, will use the default scheme for the current platform." msgstr "" -#: ../../library/sysconfig.rst:355 -msgid "" -"If *vars* is provided, it must be a dictionary of variables that will update " -"the dictionary used to expand the paths." +msgid "If *vars* is provided, it must be a dictionary of variables that will update the dictionary used to expand the paths." msgstr "" -#: ../../library/sysconfig.rst:358 msgid "If *expand* is set to false, the paths will not be expanded." msgstr "" -#: ../../library/sysconfig.rst:360 -msgid "" -"If *scheme* is not an existing scheme, :func:`get_paths` will raise " -"a :exc:`KeyError`." +msgid "If *scheme* is not an existing scheme, :func:`get_paths` will raise a :exc:`KeyError`." msgstr "" -#: ../../library/sysconfig.rst:365 msgid "Other functions" msgstr "" -#: ../../library/sysconfig.rst:369 -msgid "" -"Return the ``MAJOR.MINOR`` Python version number as a string. Similar to " -"``'%d.%d' % sys.version_info[:2]``." +msgid "Return the ``MAJOR.MINOR`` Python version number as a string. Similar to ``'%d.%d' % sys.version_info[:2]``." msgstr "" -#: ../../library/sysconfig.rst:375 msgid "Return a string that identifies the current platform." msgstr "" -#: ../../library/sysconfig.rst:377 -msgid "" -"This is used mainly to distinguish platform-specific build directories and " -"platform-specific built distributions. Typically includes the OS name and " -"version and the architecture (as supplied by :func:`os.uname`), although the " -"exact information included depends on the OS; e.g., on Linux, the kernel " -"version isn't particularly important." +msgid "This is used mainly to distinguish platform-specific build directories and platform-specific built distributions. Typically includes the OS name and version and the architecture (as supplied by :func:`os.uname`), although the exact information included depends on the OS; e.g., on Linux, the kernel version isn't particularly important." msgstr "" -#: ../../library/sysconfig.rst:383 msgid "Examples of returned values:" msgstr "" -#: ../../library/sysconfig.rst:386 msgid "Windows:" msgstr "" -#: ../../library/sysconfig.rst:388 msgid "win-amd64 (64-bit Windows on AMD64, aka x86_64, Intel64, and EM64T)" msgstr "" -#: ../../library/sysconfig.rst:389 msgid "win-arm64 (64-bit Windows on ARM64, aka AArch64)" msgstr "" -#: ../../library/sysconfig.rst:390 msgid "win32 (all others - specifically, sys.platform is returned)" msgstr "" -#: ../../library/sysconfig.rst:392 msgid "POSIX based OS:" msgstr "" -#: ../../library/sysconfig.rst:394 msgid "linux-x86_64" msgstr "" -#: ../../library/sysconfig.rst:395 msgid "macosx-15.5-arm64" msgstr "" -#: ../../library/sysconfig.rst:396 msgid "macosx-26.0-universal2 (macOS on Apple Silicon or Intel)" msgstr "" -#: ../../library/sysconfig.rst:397 msgid "android-24-arm64_v8a" msgstr "" -#: ../../library/sysconfig.rst:399 -msgid "" -"For other non-POSIX platforms, currently just returns :data:`sys.platform`." +msgid "For other non-POSIX platforms, currently just returns :data:`sys.platform`." msgstr "" -#: ../../library/sysconfig.rst:404 -msgid "" -"Return ``True`` if the running Python interpreter was built from source and " -"is being run from its built location, and not from a location resulting from " -"e.g. running ``make install`` or installing via a binary installer." +msgid "Return ``True`` if the running Python interpreter was built from source and is being run from its built location, and not from a location resulting from e.g. running ``make install`` or installing via a binary installer." msgstr "" -#: ../../library/sysconfig.rst:411 msgid "Parse a :file:`config.h`\\-style file." msgstr "" -#: ../../library/sysconfig.rst:413 -msgid "" -"*fp* is a file-like object pointing to the :file:`config.h`\\-like file." +msgid "*fp* is a file-like object pointing to the :file:`config.h`\\-like file." msgstr "" -#: ../../library/sysconfig.rst:415 -msgid "" -"A dictionary containing name/value pairs is returned. If an optional " -"dictionary is passed in as the second argument, it is used instead of a new " -"dictionary, and updated with the values read in the file." +msgid "A dictionary containing name/value pairs is returned. If an optional dictionary is passed in as the second argument, it is used instead of a new dictionary, and updated with the values read in the file." msgstr "" -#: ../../library/sysconfig.rst:422 msgid "Return the path of :file:`pyconfig.h`." msgstr "" -#: ../../library/sysconfig.rst:426 msgid "Return the path of :file:`Makefile`." msgstr "" -#: ../../library/sysconfig.rst:432 msgid "Command-line usage" msgstr "" -#: ../../library/sysconfig.rst:434 msgid "You can use :mod:`!sysconfig` as a script with Python's *-m* option:" msgstr "" -#: ../../library/sysconfig.rst:436 msgid "" "$ python -m sysconfig\n" "Platform: \"macosx-10.4-i386\"\n" @@ -749,13 +453,8 @@ msgid "" " ..." msgstr "" -#: ../../library/sysconfig.rst:460 -msgid "" -"This call will print in the standard output the information returned " -"by :func:`get_platform`, :func:`get_python_version`, :func:`get_path` " -"and :func:`get_config_vars`." +msgid "This call will print in the standard output the information returned by :func:`get_platform`, :func:`get_python_version`, :func:`get_path` and :func:`get_config_vars`." msgstr "" -#: ../../library/sysconfig.rst:14 msgid "configuration information" msgstr "" diff --git a/library/syslog.po b/library/syslog.po index 66b55b70..c4a0ce5e 100644 --- a/library/syslog.po +++ b/library/syslog.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:14+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,183 +24,90 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/syslog.rst:2 msgid ":mod:`!syslog` --- Unix syslog library routines" msgstr "" -#: ../../library/syslog.rst:9 -msgid "" -"This module provides an interface to the Unix ``syslog`` library routines. " -"Refer to the Unix manual pages for a detailed description of the ``syslog`` " -"facility." +msgid "This module provides an interface to the Unix ``syslog`` library routines. Refer to the Unix manual pages for a detailed description of the ``syslog`` facility." msgstr "" -#: ../../library/syslog.rst:13 msgid "Availability" msgstr "" -#: ../../library/syslog.rst:15 -msgid "" -"This module wraps the system ``syslog`` family of routines. A pure Python " -"library that can speak to a syslog server is available in " -"the :mod:`logging.handlers` module " -"as :class:`~logging.handlers.SysLogHandler`." +msgid "This module wraps the system ``syslog`` family of routines. A pure Python library that can speak to a syslog server is available in the :mod:`logging.handlers` module as :class:`~logging.handlers.SysLogHandler`." msgstr "" -#: ../../library/syslog.rst:19 msgid "The module defines the following functions:" msgstr "" -#: ../../library/syslog.rst:25 -msgid "" -"Send the string *message* to the system logger. A trailing newline is added " -"if necessary. Each message is tagged with a priority composed of a " -"*facility* and a *level*. The optional *priority* argument, which defaults " -"to :const:`LOG_INFO`, determines the message priority. If the facility is " -"not encoded in *priority* using logical-or (``LOG_INFO | LOG_USER``), the " -"value given in the :func:`openlog` call is used." +msgid "Send the string *message* to the system logger. A trailing newline is added if necessary. Each message is tagged with a priority composed of a *facility* and a *level*. The optional *priority* argument, which defaults to :const:`LOG_INFO`, determines the message priority. If the facility is not encoded in *priority* using logical-or (``LOG_INFO | LOG_USER``), the value given in the :func:`openlog` call is used." msgstr "" -#: ../../library/syslog.rst:32 -msgid "" -"If :func:`openlog` has not been called prior to the call " -"to :func:`syslog`, :func:`openlog` will be called with no arguments." +msgid "If :func:`openlog` has not been called prior to the call to :func:`syslog`, :func:`openlog` will be called with no arguments." msgstr "" -#: ../../library/syslog.rst:35 -msgid "" -"Raises an :ref:`auditing event ` ``syslog.syslog`` with arguments " -"``priority``, ``message``." +msgid "Raises an :ref:`auditing event ` ``syslog.syslog`` with arguments ``priority``, ``message``." msgstr "" -#: ../../library/syslog.rst:37 -msgid "" -"In previous versions, :func:`openlog` would not be called automatically if " -"it wasn't called prior to the call to :func:`syslog`, deferring to the " -"syslog implementation to call ``openlog()``." +msgid "In previous versions, :func:`openlog` would not be called automatically if it wasn't called prior to the call to :func:`syslog`, deferring to the syslog implementation to call ``openlog()``." msgstr "" -#: ../../library/syslog.rst:42 -msgid "" -"This function is restricted in subinterpreters. (Only code that runs in " -"multiple interpreters is affected and the restriction is not relevant for " -"most users.) :func:`openlog` must be called in the main interpreter " -"before :func:`syslog` may be used in a subinterpreter. Otherwise it will " -"raise :exc:`RuntimeError`." +msgid "This function is restricted in subinterpreters. (Only code that runs in multiple interpreters is affected and the restriction is not relevant for most users.) :func:`openlog` must be called in the main interpreter before :func:`syslog` may be used in a subinterpreter. Otherwise it will raise :exc:`RuntimeError`." msgstr "" -#: ../../library/syslog.rst:52 -msgid "" -"Logging options of subsequent :func:`syslog` calls can be set by " -"calling :func:`openlog`. :func:`syslog` will call :func:`openlog` with no " -"arguments if the log is not currently open." +msgid "Logging options of subsequent :func:`syslog` calls can be set by calling :func:`openlog`. :func:`syslog` will call :func:`openlog` with no arguments if the log is not currently open." msgstr "" -#: ../../library/syslog.rst:56 -msgid "" -"The optional *ident* keyword argument is a string which is prepended to " -"every message, and defaults to ``sys.argv[0]`` with leading path components " -"stripped. The optional *logoption* keyword argument (default is 0) is a bit " -"field -- see below for possible values to combine. The optional *facility* " -"keyword argument (default is :const:`LOG_USER`) sets the default facility " -"for messages which do not have a facility explicitly encoded." +msgid "The optional *ident* keyword argument is a string which is prepended to every message, and defaults to ``sys.argv[0]`` with leading path components stripped. The optional *logoption* keyword argument (default is 0) is a bit field -- see below for possible values to combine. The optional *facility* keyword argument (default is :const:`LOG_USER`) sets the default facility for messages which do not have a facility explicitly encoded." msgstr "" -#: ../../library/syslog.rst:63 -msgid "" -"Raises an :ref:`auditing event ` ``syslog.openlog`` with arguments " -"``ident``, ``logoption``, ``facility``." +msgid "Raises an :ref:`auditing event ` ``syslog.openlog`` with arguments ``ident``, ``logoption``, ``facility``." msgstr "" -#: ../../library/syslog.rst:65 -msgid "" -"In previous versions, keyword arguments were not allowed, and *ident* was " -"required." +msgid "In previous versions, keyword arguments were not allowed, and *ident* was required." msgstr "" -#: ../../library/syslog.rst:69 ../../library/syslog.rst:88 -msgid "" -"This function is restricted in subinterpreters. (Only code that runs in " -"multiple interpreters is affected and the restriction is not relevant for " -"most users.) This may only be called in the main interpreter. It will " -"raise :exc:`RuntimeError` if called in a subinterpreter." +msgid "This function is restricted in subinterpreters. (Only code that runs in multiple interpreters is affected and the restriction is not relevant for most users.) This may only be called in the main interpreter. It will raise :exc:`RuntimeError` if called in a subinterpreter." msgstr "" -#: ../../library/syslog.rst:79 -msgid "" -"Reset the syslog module values and call the system library ``closelog()``." +msgid "Reset the syslog module values and call the system library ``closelog()``." msgstr "" -#: ../../library/syslog.rst:81 -msgid "" -"This causes the module to behave as it does when initially imported. For " -"example, :func:`openlog` will be called on the first :func:`syslog` call " -"(if :func:`openlog` hasn't already been called), and *ident* and " -"other :func:`openlog` parameters are reset to defaults." +msgid "This causes the module to behave as it does when initially imported. For example, :func:`openlog` will be called on the first :func:`syslog` call (if :func:`openlog` hasn't already been called), and *ident* and other :func:`openlog` parameters are reset to defaults." msgstr "" -#: ../../library/syslog.rst:86 -msgid "" -"Raises an :ref:`auditing event ` ``syslog.closelog`` with no " -"arguments." +msgid "Raises an :ref:`auditing event ` ``syslog.closelog`` with no arguments." msgstr "" -#: ../../library/syslog.rst:98 -msgid "" -"Set the priority mask to *maskpri* and return the previous mask value. " -"Calls to :func:`syslog` with a priority level not set in *maskpri* are " -"ignored. The default is to log all priorities. The function " -"``LOG_MASK(pri)`` calculates the mask for the individual priority *pri*. " -"The function ``LOG_UPTO(pri)`` calculates the mask for all priorities up to " -"and including *pri*." +msgid "Set the priority mask to *maskpri* and return the previous mask value. Calls to :func:`syslog` with a priority level not set in *maskpri* are ignored. The default is to log all priorities. The function ``LOG_MASK(pri)`` calculates the mask for the individual priority *pri*. The function ``LOG_UPTO(pri)`` calculates the mask for all priorities up to and including *pri*." msgstr "" -#: ../../library/syslog.rst:105 -msgid "" -"Raises an :ref:`auditing event ` ``syslog.setlogmask`` with " -"argument ``maskpri``." +msgid "Raises an :ref:`auditing event ` ``syslog.setlogmask`` with argument ``maskpri``." msgstr "" -#: ../../library/syslog.rst:107 msgid "The module defines the following constants:" msgstr "" -#: ../../library/syslog.rst:119 msgid "Priority levels (high to low)." msgstr "" -#: ../../library/syslog.rst:148 -msgid "" -"Facilities, depending on availability in ```` " -"for :const:`LOG_AUTHPRIV`, :const:`LOG_FTP`, :const:`LOG_NETINFO`, :const:`LOG_REMOTEAUTH`, :const:`LOG_INSTALL` " -"and :const:`LOG_RAS`." +msgid "Facilities, depending on availability in ```` for :const:`LOG_AUTHPRIV`, :const:`LOG_FTP`, :const:`LOG_NETINFO`, :const:`LOG_REMOTEAUTH`, :const:`LOG_INSTALL` and :const:`LOG_RAS`." msgstr "" -#: ../../library/syslog.rst:152 -msgid "" -"Added :const:`LOG_FTP`, :const:`LOG_NETINFO`, :const:`LOG_REMOTEAUTH`, :const:`LOG_INSTALL`, :const:`LOG_RAS`, " -"and :const:`LOG_LAUNCHD`." +msgid "Added :const:`LOG_FTP`, :const:`LOG_NETINFO`, :const:`LOG_REMOTEAUTH`, :const:`LOG_INSTALL`, :const:`LOG_RAS`, and :const:`LOG_LAUNCHD`." msgstr "" -#: ../../library/syslog.rst:163 -msgid "" -"Log options, depending on availability in ```` " -"for :const:`LOG_ODELAY`, :const:`LOG_NOWAIT` and :const:`LOG_PERROR`." +msgid "Log options, depending on availability in ```` for :const:`LOG_ODELAY`, :const:`LOG_NOWAIT` and :const:`LOG_PERROR`." msgstr "" -#: ../../library/syslog.rst:168 msgid "Examples" msgstr "" -#: ../../library/syslog.rst:171 msgid "Simple example" msgstr "" -#: ../../library/syslog.rst:173 msgid "A simple set of examples::" msgstr "" -#: ../../library/syslog.rst:175 msgid "" "import syslog\n" "\n" @@ -209,14 +116,9 @@ msgid "" " syslog.syslog(syslog.LOG_ERR, 'Processing started')" msgstr "" -#: ../../library/syslog.rst:181 -msgid "" -"An example of setting some log options, these would include the process ID " -"in logged messages, and write the messages to the destination facility used " -"for mail logging::" +msgid "An example of setting some log options, these would include the process ID in logged messages, and write the messages to the destination facility used for mail logging::" msgstr "" -#: ../../library/syslog.rst:185 msgid "" "syslog.openlog(logoption=syslog.LOG_PID, facility=syslog.LOG_MAIL)\n" "syslog.syslog('E-mail processing initiated...')" diff --git a/library/tabnanny.po b/library/tabnanny.po index 4017a3e2..cf871608 100644 --- a/library/tabnanny.po +++ b/library/tabnanny.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:14+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,65 +21,35 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/tabnanny.rst:2 msgid ":mod:`!tabnanny` --- Detection of ambiguous indentation" msgstr "" -#: ../../library/tabnanny.rst:13 msgid "**Source code:** :source:`Lib/tabnanny.py`" msgstr "" -#: ../../library/tabnanny.rst:17 -msgid "" -"For the time being this module is intended to be called as a script. However " -"it is possible to import it into an IDE and use the function :func:`check` " -"described below." +msgid "For the time being this module is intended to be called as a script. However it is possible to import it into an IDE and use the function :func:`check` described below." msgstr "" -#: ../../library/tabnanny.rst:23 -msgid "" -"The API provided by this module is likely to change in future releases; such " -"changes may not be backward compatible." +msgid "The API provided by this module is likely to change in future releases; such changes may not be backward compatible." msgstr "" -#: ../../library/tabnanny.rst:29 -msgid "" -"If *file_or_dir* is a directory and not a symbolic link, then recursively " -"descend the directory tree named by *file_or_dir*, checking all :file:`.py` " -"files along the way. If *file_or_dir* is an ordinary Python source file, it " -"is checked for whitespace related problems. The diagnostic messages are " -"written to standard output using the :func:`print` function." +msgid "If *file_or_dir* is a directory and not a symbolic link, then recursively descend the directory tree named by *file_or_dir*, checking all :file:`.py` files along the way. If *file_or_dir* is an ordinary Python source file, it is checked for whitespace related problems. The diagnostic messages are written to standard output using the :func:`print` function." msgstr "" -#: ../../library/tabnanny.rst:38 -msgid "" -"Flag indicating whether to print verbose messages. This is incremented by " -"the ``-v`` option if called as a script." +msgid "Flag indicating whether to print verbose messages. This is incremented by the ``-v`` option if called as a script." msgstr "" -#: ../../library/tabnanny.rst:44 -msgid "" -"Flag indicating whether to print only the filenames of files containing " -"whitespace related problems. This is set to true by the ``-q`` option if " -"called as a script." +msgid "Flag indicating whether to print only the filenames of files containing whitespace related problems. This is set to true by the ``-q`` option if called as a script." msgstr "" -#: ../../library/tabnanny.rst:51 -msgid "" -"Raised by :func:`process_tokens` if detecting an ambiguous indent. Captured " -"and handled in :func:`check`." +msgid "Raised by :func:`process_tokens` if detecting an ambiguous indent. Captured and handled in :func:`check`." msgstr "" -#: ../../library/tabnanny.rst:57 -msgid "" -"This function is used by :func:`check` to process tokens generated by " -"the :mod:`tokenize` module." +msgid "This function is used by :func:`check` to process tokens generated by the :mod:`tokenize` module." msgstr "" -#: ../../library/tabnanny.rst:66 msgid "Module :mod:`tokenize`" msgstr "" -#: ../../library/tabnanny.rst:67 msgid "Lexical scanner for Python source code." msgstr "" diff --git a/library/tarfile.po b/library/tarfile.po index 1463323d..00d01dd6 100644 --- a/library/tarfile.po +++ b/library/tarfile.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:14+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -25,1660 +25,931 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/tarfile.rst:2 msgid ":mod:`!tarfile` --- Read and write tar archive files" msgstr "" -#: ../../library/tarfile.rst:10 msgid "**Source code:** :source:`Lib/tarfile.py`" msgstr "" -#: ../../library/tarfile.rst:14 -msgid "" -"The :mod:`!tarfile` module makes it possible to read and write tar archives, " -"including those using gzip, bz2 and lzma compression. Use the :mod:`zipfile` " -"module to read or write :file:`.zip` files, or the higher-level functions " -"in :ref:`shutil `." +msgid "The :mod:`!tarfile` module makes it possible to read and write tar archives, including those using gzip, bz2 and lzma compression. Use the :mod:`zipfile` module to read or write :file:`.zip` files, or the higher-level functions in :ref:`shutil `." msgstr "" -#: ../../library/tarfile.rst:19 msgid "Some facts and figures:" msgstr "" -#: ../../library/tarfile.rst:21 -msgid "" -"reads and writes :mod:`gzip`, :mod:`bz2`, :mod:`compression.zstd`, " -"and :mod:`lzma` compressed archives if the respective modules are available." +msgid "reads and writes :mod:`gzip`, :mod:`bz2`, :mod:`compression.zstd`, and :mod:`lzma` compressed archives if the respective modules are available." msgstr "" -#: ../../library/tarfile.rst:27 -msgid "" -"If any of these :term:`optional modules ` are missing from " -"your copy of CPython, look for documentation from your distributor (that is, " -"whoever provided Python to you). If you are the distributor, " -"see :ref:`optional-module-requirements`." +msgid "If any of these :term:`optional modules ` are missing from your copy of CPython, look for documentation from your distributor (that is, whoever provided Python to you). If you are the distributor, see :ref:`optional-module-requirements`." msgstr "" -#: ../../library/tarfile.rst:32 msgid "read/write support for the POSIX.1-1988 (ustar) format." msgstr "" -#: ../../library/tarfile.rst:34 -msgid "" -"read/write support for the GNU tar format including *longname* and " -"*longlink* extensions, read-only support for all variants of the *sparse* " -"extension including restoration of sparse files." +msgid "read/write support for the GNU tar format including *longname* and *longlink* extensions, read-only support for all variants of the *sparse* extension including restoration of sparse files." msgstr "" -#: ../../library/tarfile.rst:38 msgid "read/write support for the POSIX.1-2001 (pax) format." msgstr "" -#: ../../library/tarfile.rst:40 -msgid "" -"handles directories, regular files, hardlinks, symbolic links, fifos, " -"character devices and block devices and is able to acquire and restore file " -"information like timestamp, access permissions and owner." +msgid "handles directories, regular files, hardlinks, symbolic links, fifos, character devices and block devices and is able to acquire and restore file information like timestamp, access permissions and owner." msgstr "" -#: ../../library/tarfile.rst:44 msgid "Added support for :mod:`lzma` compression." msgstr "" -#: ../../library/tarfile.rst:47 -msgid "" -"Archives are extracted using a :ref:`filter `, " -"which makes it possible to either limit surprising/dangerous features, or to " -"acknowledge that they are expected and the archive is fully trusted." +msgid "Archives are extracted using a :ref:`filter `, which makes it possible to either limit surprising/dangerous features, or to acknowledge that they are expected and the archive is fully trusted." msgstr "" -#: ../../library/tarfile.rst:52 -msgid "" -"Set the default extraction filter to :func:`data `, which " -"disallows some dangerous features such as links to absolute paths or paths " -"outside of the destination. Previously, the filter strategy was equivalent " -"to :func:`fully_trusted `." +msgid "Set the default extraction filter to :func:`data `, which disallows some dangerous features such as links to absolute paths or paths outside of the destination. Previously, the filter strategy was equivalent to :func:`fully_trusted `." msgstr "" -#: ../../library/tarfile.rst:60 msgid "Added support for Zstandard compression using :mod:`compression.zstd`." msgstr "" -#: ../../library/tarfile.rst:64 -msgid "" -"Return a :class:`TarFile` object for the pathname *name*. For detailed " -"information on :class:`TarFile` objects and the keyword arguments that are " -"allowed, see :ref:`tarfile-objects`." +msgid "Return a :class:`TarFile` object for the pathname *name*. For detailed information on :class:`TarFile` objects and the keyword arguments that are allowed, see :ref:`tarfile-objects`." msgstr "" -#: ../../library/tarfile.rst:68 -msgid "" -"*mode* has to be a string of the form ``'filemode[:compression]'``, it " -"defaults to ``'r'``. Here is a full list of mode combinations:" +msgid "*mode* has to be a string of the form ``'filemode[:compression]'``, it defaults to ``'r'``. Here is a full list of mode combinations:" msgstr "" -#: ../../library/tarfile.rst:72 msgid "mode" msgstr "" -#: ../../library/tarfile.rst:72 msgid "action" msgstr "" -#: ../../library/tarfile.rst:74 msgid "``'r'`` or ``'r:*'``" msgstr "" -#: ../../library/tarfile.rst:74 msgid "Open for reading with transparent compression (recommended)." msgstr "" -#: ../../library/tarfile.rst:77 msgid "``'r:'``" msgstr "" -#: ../../library/tarfile.rst:77 msgid "Open for reading exclusively without compression." msgstr "" -#: ../../library/tarfile.rst:80 msgid "``'r:gz'``" msgstr "" -#: ../../library/tarfile.rst:80 msgid "Open for reading with gzip compression." msgstr "" -#: ../../library/tarfile.rst:82 msgid "``'r:bz2'``" msgstr "" -#: ../../library/tarfile.rst:82 msgid "Open for reading with bzip2 compression." msgstr "" -#: ../../library/tarfile.rst:84 msgid "``'r:xz'``" msgstr "" -#: ../../library/tarfile.rst:84 msgid "Open for reading with lzma compression." msgstr "" -#: ../../library/tarfile.rst:86 msgid "``'r:zst'``" msgstr "" -#: ../../library/tarfile.rst:86 msgid "Open for reading with Zstandard compression." msgstr "" -#: ../../library/tarfile.rst:88 msgid "``'x'`` or ``'x:'``" msgstr "" -#: ../../library/tarfile.rst:88 -msgid "" -"Create a tarfile exclusively without compression. Raise " -"a :exc:`FileExistsError` exception if it already exists." +msgid "Create a tarfile exclusively without compression. Raise a :exc:`FileExistsError` exception if it already exists." msgstr "" -#: ../../library/tarfile.rst:93 msgid "``'x:gz'``" msgstr "" -#: ../../library/tarfile.rst:93 -msgid "" -"Create a tarfile with gzip compression. Raise a :exc:`FileExistsError` " -"exception if it already exists." +msgid "Create a tarfile with gzip compression. Raise a :exc:`FileExistsError` exception if it already exists." msgstr "" -#: ../../library/tarfile.rst:97 msgid "``'x:bz2'``" msgstr "" -#: ../../library/tarfile.rst:97 -msgid "" -"Create a tarfile with bzip2 compression. Raise a :exc:`FileExistsError` " -"exception if it already exists." +msgid "Create a tarfile with bzip2 compression. Raise a :exc:`FileExistsError` exception if it already exists." msgstr "" -#: ../../library/tarfile.rst:101 msgid "``'x:xz'``" msgstr "" -#: ../../library/tarfile.rst:101 -msgid "" -"Create a tarfile with lzma compression. Raise a :exc:`FileExistsError` " -"exception if it already exists." +msgid "Create a tarfile with lzma compression. Raise a :exc:`FileExistsError` exception if it already exists." msgstr "" -#: ../../library/tarfile.rst:105 msgid "``'x:zst'``" msgstr "" -#: ../../library/tarfile.rst:105 -msgid "" -"Create a tarfile with Zstandard compression. Raise a :exc:`FileExistsError` " -"exception if it already exists." +msgid "Create a tarfile with Zstandard compression. Raise a :exc:`FileExistsError` exception if it already exists." msgstr "" -#: ../../library/tarfile.rst:109 msgid "``'a'`` or ``'a:'``" msgstr "" -#: ../../library/tarfile.rst:109 -msgid "" -"Open for appending with no compression. The file is created if it does not " -"exist." +msgid "Open for appending with no compression. The file is created if it does not exist." msgstr "" -#: ../../library/tarfile.rst:112 msgid "``'w'`` or ``'w:'``" msgstr "" -#: ../../library/tarfile.rst:112 msgid "Open for uncompressed writing." msgstr "" -#: ../../library/tarfile.rst:115 msgid "``'w:gz'``" msgstr "" -#: ../../library/tarfile.rst:115 msgid "Open for gzip compressed writing." msgstr "" -#: ../../library/tarfile.rst:117 msgid "``'w:bz2'``" msgstr "" -#: ../../library/tarfile.rst:117 msgid "Open for bzip2 compressed writing." msgstr "" -#: ../../library/tarfile.rst:119 msgid "``'w:xz'``" msgstr "" -#: ../../library/tarfile.rst:119 msgid "Open for lzma compressed writing." msgstr "" -#: ../../library/tarfile.rst:121 msgid "``'w:zst'``" msgstr "" -#: ../../library/tarfile.rst:121 msgid "Open for Zstandard compressed writing." msgstr "" -#: ../../library/tarfile.rst:124 -msgid "" -"Note that ``'a:gz'``, ``'a:bz2'`` or ``'a:xz'`` is not possible. If *mode* " -"is not suitable to open a certain (compressed) file for " -"reading, :exc:`ReadError` is raised. Use *mode* ``'r'`` to avoid this. If a " -"compression method is not supported, :exc:`CompressionError` is raised." +msgid "Note that ``'a:gz'``, ``'a:bz2'`` or ``'a:xz'`` is not possible. If *mode* is not suitable to open a certain (compressed) file for reading, :exc:`ReadError` is raised. Use *mode* ``'r'`` to avoid this. If a compression method is not supported, :exc:`CompressionError` is raised." msgstr "" -#: ../../library/tarfile.rst:129 -msgid "" -"If *fileobj* is specified, it is used as an alternative to a :term:`file " -"object` opened in binary mode for *name*. It is supposed to be at position 0." +msgid "If *fileobj* is specified, it is used as an alternative to a :term:`file object` opened in binary mode for *name*. It is supposed to be at position 0." msgstr "" -#: ../../library/tarfile.rst:132 -msgid "" -"For modes ``'w:gz'``, ``'x:gz'``, ``'w|gz'``, ``'w:bz2'``, ``'x:bz2'``, ``'w|" -"bz2'``, :func:`tarfile.open` accepts the keyword argument *compresslevel* " -"(default ``9``) to specify the compression level of the file." +msgid "For modes ``'w:gz'``, ``'x:gz'``, ``'w|gz'``, ``'w:bz2'``, ``'x:bz2'``, ``'w|bz2'``, :func:`tarfile.open` accepts the keyword argument *compresslevel* (default ``9``) to specify the compression level of the file." msgstr "" -#: ../../library/tarfile.rst:136 -msgid "" -"For modes ``'w:xz'``, ``'x:xz'`` and ``'w|xz'``, :func:`tarfile.open` " -"accepts the keyword argument *preset* to specify the compression level of " -"the file." +msgid "For modes ``'w:xz'``, ``'x:xz'`` and ``'w|xz'``, :func:`tarfile.open` accepts the keyword argument *preset* to specify the compression level of the file." msgstr "" -#: ../../library/tarfile.rst:139 -msgid "" -"For modes ``'w:zst'``, ``'x:zst'`` and ``'w|zst'``, :func:`tarfile.open` " -"accepts the keyword argument *level* to specify the compression level of the " -"file. The keyword argument *options* may also be passed, providing advanced " -"Zstandard compression parameters described " -"by :class:`~compression.zstd.CompressionParameter`. The keyword argument " -"*zstd_dict* can be passed to provide a :class:`~compression.zstd.ZstdDict`, " -"a Zstandard dictionary used to improve compression of smaller amounts of " -"data." +msgid "For modes ``'w:zst'``, ``'x:zst'`` and ``'w|zst'``, :func:`tarfile.open` accepts the keyword argument *level* to specify the compression level of the file. The keyword argument *options* may also be passed, providing advanced Zstandard compression parameters described by :class:`~compression.zstd.CompressionParameter`. The keyword argument *zstd_dict* can be passed to provide a :class:`~compression.zstd.ZstdDict`, a Zstandard dictionary used to improve compression of smaller amounts of data." +msgstr "" + +msgid "For special purposes, there is a second format for *mode*: ``'filemode|[compression]'``. :func:`tarfile.open` will return a :class:`TarFile` object that processes its data as a stream of blocks. No random seeking will be done on the file. If given, *fileobj* may be any object that has a :meth:`~io.RawIOBase.read` or :meth:`~io.RawIOBase.write` method (depending on the *mode*) that works with bytes. *bufsize* specifies the blocksize and defaults to ``20 * 512`` bytes. Use this variant in combination with e.g. ``sys.stdin.buffer``, a socket :term:`file object` or a tape device. However, such a :class:`TarFile` object is limited in that it does not allow random access, see :ref:`tar-examples`. The currently possible modes:" msgstr "" -#: ../../library/tarfile.rst:148 -msgid "" -"For special purposes, there is a second format for *mode*: ``'filemode|" -"[compression]'``. :func:`tarfile.open` will return a :class:`TarFile` " -"object that processes its data as a stream of blocks. No random seeking " -"will be done on the file. If given, *fileobj* may be any object that has " -"a :meth:`~io.RawIOBase.read` or :meth:`~io.RawIOBase.write` method " -"(depending on the *mode*) that works with bytes. *bufsize* specifies the " -"blocksize and defaults to ``20 * 512`` bytes. Use this variant in " -"combination with e.g. ``sys.stdin.buffer``, a socket :term:`file object` or " -"a tape device. However, such a :class:`TarFile` object is limited in that it " -"does not allow random access, see :ref:`tar-examples`. The currently " -"possible modes:" -msgstr "" - -#: ../../library/tarfile.rst:162 msgid "Mode" msgstr "" -#: ../../library/tarfile.rst:162 msgid "Action" msgstr "" -#: ../../library/tarfile.rst:164 msgid "``'r|*'``" msgstr "" -#: ../../library/tarfile.rst:164 msgid "Open a *stream* of tar blocks for reading with transparent compression." msgstr "" -#: ../../library/tarfile.rst:167 msgid "``'r|'``" msgstr "" -#: ../../library/tarfile.rst:167 msgid "Open a *stream* of uncompressed tar blocks for reading." msgstr "" -#: ../../library/tarfile.rst:170 msgid "``'r|gz'``" msgstr "" -#: ../../library/tarfile.rst:170 msgid "Open a gzip compressed *stream* for reading." msgstr "" -#: ../../library/tarfile.rst:173 msgid "``'r|bz2'``" msgstr "" -#: ../../library/tarfile.rst:173 msgid "Open a bzip2 compressed *stream* for reading." msgstr "" -#: ../../library/tarfile.rst:176 msgid "``'r|xz'``" msgstr "" -#: ../../library/tarfile.rst:176 msgid "Open an lzma compressed *stream* for reading." msgstr "" -#: ../../library/tarfile.rst:179 msgid "``'r|zst'``" msgstr "" -#: ../../library/tarfile.rst:179 msgid "Open a Zstandard compressed *stream* for reading." msgstr "" -#: ../../library/tarfile.rst:182 msgid "``'w|'``" msgstr "" -#: ../../library/tarfile.rst:182 msgid "Open an uncompressed *stream* for writing." msgstr "" -#: ../../library/tarfile.rst:184 msgid "``'w|gz'``" msgstr "" -#: ../../library/tarfile.rst:184 msgid "Open a gzip compressed *stream* for writing." msgstr "" -#: ../../library/tarfile.rst:187 msgid "``'w|bz2'``" msgstr "" -#: ../../library/tarfile.rst:187 msgid "Open a bzip2 compressed *stream* for writing." msgstr "" -#: ../../library/tarfile.rst:190 msgid "``'w|xz'``" msgstr "" -#: ../../library/tarfile.rst:190 msgid "Open an lzma compressed *stream* for writing." msgstr "" -#: ../../library/tarfile.rst:193 msgid "``'w|zst'``" msgstr "" -#: ../../library/tarfile.rst:193 msgid "Open a Zstandard compressed *stream* for writing." msgstr "" -#: ../../library/tarfile.rst:197 ../../library/tarfile.rst:476 msgid "The ``'x'`` (exclusive creation) mode was added." msgstr "" -#: ../../library/tarfile.rst:200 ../../library/tarfile.rst:479 -#: ../../library/tarfile.rst:727 msgid "The *name* parameter accepts a :term:`path-like object`." msgstr "" -#: ../../library/tarfile.rst:203 msgid "The *compresslevel* keyword argument also works for streams." msgstr "" -#: ../../library/tarfile.rst:206 msgid "The *preset* keyword argument also works for streams." msgstr "" -#: ../../library/tarfile.rst:213 -msgid "" -"Class for reading and writing tar archives. Do not use this class directly: " -"use :func:`tarfile.open` instead. See :ref:`tarfile-objects`." +msgid "Class for reading and writing tar archives. Do not use this class directly: use :func:`tarfile.open` instead. See :ref:`tarfile-objects`." msgstr "" -#: ../../library/tarfile.rst:219 -msgid "" -"Return :const:`True` if *name* is a tar archive file, that the :mod:`!" -"tarfile` module can read. *name* may be a :class:`str`, file, or file-like " -"object." +msgid "Return :const:`True` if *name* is a tar archive file, that the :mod:`!tarfile` module can read. *name* may be a :class:`str`, file, or file-like object." msgstr "" -#: ../../library/tarfile.rst:222 msgid "Support for file and file-like objects." msgstr "" -#: ../../library/tarfile.rst:226 msgid "The :mod:`!tarfile` module defines the following exceptions:" msgstr "" -#: ../../library/tarfile.rst:231 msgid "Base class for all :mod:`!tarfile` exceptions." msgstr "" -#: ../../library/tarfile.rst:236 -msgid "" -"Is raised when a tar archive is opened, that either cannot be handled by " -"the :mod:`!tarfile` module or is somehow invalid." +msgid "Is raised when a tar archive is opened, that either cannot be handled by the :mod:`!tarfile` module or is somehow invalid." msgstr "" -#: ../../library/tarfile.rst:242 -msgid "" -"Is raised when a compression method is not supported or when the data cannot " -"be decoded properly." +msgid "Is raised when a compression method is not supported or when the data cannot be decoded properly." msgstr "" -#: ../../library/tarfile.rst:248 -msgid "" -"Is raised for the limitations that are typical for stream-" -"like :class:`TarFile` objects." +msgid "Is raised for the limitations that are typical for stream-like :class:`TarFile` objects." msgstr "" -#: ../../library/tarfile.rst:254 -msgid "" -"Is raised for *non-fatal* errors when using :meth:`TarFile.extract`, but " -"only if :attr:`TarFile.errorlevel`\\ ``== 2``." +msgid "Is raised for *non-fatal* errors when using :meth:`TarFile.extract`, but only if :attr:`TarFile.errorlevel`\\ ``== 2``." msgstr "" -#: ../../library/tarfile.rst:260 msgid "Is raised by :meth:`TarInfo.frombuf` if the buffer it gets is invalid." msgstr "" -#: ../../library/tarfile.rst:265 -msgid "" -"Base class for members :ref:`refused ` by filters." +msgid "Base class for members :ref:`refused ` by filters." msgstr "" -#: ../../library/tarfile.rst:270 -msgid "" -"Information about the member that the filter refused to extract, " -"as :ref:`TarInfo `." +msgid "Information about the member that the filter refused to extract, as :ref:`TarInfo `." msgstr "" -#: ../../library/tarfile.rst:275 msgid "Raised to refuse extracting a member with an absolute path." msgstr "" -#: ../../library/tarfile.rst:279 msgid "Raised to refuse extracting a member outside the destination directory." msgstr "" -#: ../../library/tarfile.rst:283 msgid "Raised to refuse extracting a special file (e.g. a device or pipe)." msgstr "" -#: ../../library/tarfile.rst:287 msgid "Raised to refuse extracting a symbolic link with an absolute path." msgstr "" -#: ../../library/tarfile.rst:291 -msgid "" -"Raised to refuse extracting a symbolic link pointing outside the destination " -"directory." +msgid "Raised to refuse extracting a symbolic link pointing outside the destination directory." msgstr "" -#: ../../library/tarfile.rst:296 -msgid "" -"Raised to refuse emulating a link (hard or symbolic) by extracting another " -"archive member, when that member would be rejected by the filter location. " -"The exception that was raised to reject the replacement member is available " -"as :attr:`!BaseException.__context__`." +msgid "Raised to refuse emulating a link (hard or symbolic) by extracting another archive member, when that member would be rejected by the filter location. The exception that was raised to reject the replacement member is available as :attr:`!BaseException.__context__`." msgstr "" -#: ../../library/tarfile.rst:304 msgid "The following constants are available at the module level:" msgstr "" -#: ../../library/tarfile.rst:308 -msgid "" -"The default character encoding: ``'utf-8'`` on Windows, the value returned " -"by :func:`sys.getfilesystemencoding` otherwise." +msgid "The default character encoding: ``'utf-8'`` on Windows, the value returned by :func:`sys.getfilesystemencoding` otherwise." msgstr "" -#: ../../library/tarfile.rst:314 msgid "A regular file :attr:`~TarInfo.type`." msgstr "" -#: ../../library/tarfile.rst:318 msgid "A link (inside tarfile) :attr:`~TarInfo.type`." msgstr "" -#: ../../library/tarfile.rst:322 msgid "A symbolic link :attr:`~TarInfo.type`." msgstr "" -#: ../../library/tarfile.rst:326 msgid "A character special device :attr:`~TarInfo.type`." msgstr "" -#: ../../library/tarfile.rst:330 msgid "A block special device :attr:`~TarInfo.type`." msgstr "" -#: ../../library/tarfile.rst:334 msgid "A directory :attr:`~TarInfo.type`." msgstr "" -#: ../../library/tarfile.rst:338 msgid "A FIFO special device :attr:`~TarInfo.type`." msgstr "" -#: ../../library/tarfile.rst:342 msgid "A contiguous file :attr:`~TarInfo.type`." msgstr "" -#: ../../library/tarfile.rst:346 msgid "A GNU tar longname :attr:`~TarInfo.type`." msgstr "" -#: ../../library/tarfile.rst:350 msgid "A GNU tar longlink :attr:`~TarInfo.type`." msgstr "" -#: ../../library/tarfile.rst:354 msgid "A GNU tar sparse file :attr:`~TarInfo.type`." msgstr "" -#: ../../library/tarfile.rst:357 -msgid "" -"Each of the following constants defines a tar archive format that the :mod:`!" -"tarfile` module is able to create. See section :ref:`tar-formats` for " -"details." +msgid "Each of the following constants defines a tar archive format that the :mod:`!tarfile` module is able to create. See section :ref:`tar-formats` for details." msgstr "" -#: ../../library/tarfile.rst:364 msgid "POSIX.1-1988 (ustar) format." msgstr "" -#: ../../library/tarfile.rst:369 msgid "GNU tar format." msgstr "" -#: ../../library/tarfile.rst:374 msgid "POSIX.1-2001 (pax) format." msgstr "" -#: ../../library/tarfile.rst:379 -msgid "" -"The default format for creating archives. This is " -"currently :const:`PAX_FORMAT`." +msgid "The default format for creating archives. This is currently :const:`PAX_FORMAT`." msgstr "" -#: ../../library/tarfile.rst:381 -msgid "" -"The default format for new archives was changed to :const:`PAX_FORMAT` " -"from :const:`GNU_FORMAT`." +msgid "The default format for new archives was changed to :const:`PAX_FORMAT` from :const:`GNU_FORMAT`." msgstr "" -#: ../../library/tarfile.rst:388 msgid "Module :mod:`zipfile`" msgstr "" -#: ../../library/tarfile.rst:389 msgid "Documentation of the :mod:`zipfile` standard module." msgstr "" -#: ../../library/tarfile.rst:391 msgid ":ref:`archiving-operations`" msgstr "" -#: ../../library/tarfile.rst:392 -msgid "" -"Documentation of the higher-level archiving facilities provided by the " -"standard :mod:`shutil` module." +msgid "Documentation of the higher-level archiving facilities provided by the standard :mod:`shutil` module." msgstr "" -#: ../../library/tarfile.rst:395 -msgid "" -"`GNU tar manual, Basic Tar Format `_" +msgid "`GNU tar manual, Basic Tar Format `_" msgstr "" -#: ../../library/tarfile.rst:396 msgid "Documentation for tar archive files, including GNU tar extensions." msgstr "" -#: ../../library/tarfile.rst:402 msgid "TarFile Objects" msgstr "" -#: ../../library/tarfile.rst:404 -msgid "" -"The :class:`TarFile` object provides an interface to a tar archive. A tar " -"archive is a sequence of blocks. An archive member (a stored file) is made " -"up of a header block followed by data blocks. It is possible to store a file " -"in a tar archive several times. Each archive member is represented by " -"a :class:`TarInfo` object, see :ref:`tarinfo-objects` for details." +msgid "The :class:`TarFile` object provides an interface to a tar archive. A tar archive is a sequence of blocks. An archive member (a stored file) is made up of a header block followed by data blocks. It is possible to store a file in a tar archive several times. Each archive member is represented by a :class:`TarInfo` object, see :ref:`tarinfo-objects` for details." msgstr "" -#: ../../library/tarfile.rst:410 -msgid "" -"A :class:`TarFile` object can be used as a context manager in " -"a :keyword:`with` statement. It will automatically be closed when the block " -"is completed. Please note that in the event of an exception an archive " -"opened for writing will not be finalized; only the internally used file " -"object will be closed. See the :ref:`tar-examples` section for a use case." +msgid "A :class:`TarFile` object can be used as a context manager in a :keyword:`with` statement. It will automatically be closed when the block is completed. Please note that in the event of an exception an archive opened for writing will not be finalized; only the internally used file object will be closed. See the :ref:`tar-examples` section for a use case." msgstr "" -#: ../../library/tarfile.rst:416 msgid "Added support for the context management protocol." msgstr "" -#: ../../library/tarfile.rst:421 -msgid "" -"All following arguments are optional and can be accessed as instance " -"attributes as well." +msgid "All following arguments are optional and can be accessed as instance attributes as well." msgstr "" -#: ../../library/tarfile.rst:424 -msgid "" -"*name* is the pathname of the archive. *name* may be a :term:`path-like " -"object`. It can be omitted if *fileobj* is given. In this case, the file " -"object's :attr:`!name` attribute is used if it exists." +msgid "*name* is the pathname of the archive. *name* may be a :term:`path-like object`. It can be omitted if *fileobj* is given. In this case, the file object's :attr:`!name` attribute is used if it exists." msgstr "" -#: ../../library/tarfile.rst:428 -msgid "" -"*mode* is either ``'r'`` to read from an existing archive, ``'a'`` to append " -"data to an existing file, ``'w'`` to create a new file overwriting an " -"existing one, or ``'x'`` to create a new file only if it does not already " -"exist." +msgid "*mode* is either ``'r'`` to read from an existing archive, ``'a'`` to append data to an existing file, ``'w'`` to create a new file overwriting an existing one, or ``'x'`` to create a new file only if it does not already exist." msgstr "" -#: ../../library/tarfile.rst:432 -msgid "" -"If *fileobj* is given, it is used for reading or writing data. If it can be " -"determined, *mode* is overridden by *fileobj*'s mode. *fileobj* will be used " -"from position 0." +msgid "If *fileobj* is given, it is used for reading or writing data. If it can be determined, *mode* is overridden by *fileobj*'s mode. *fileobj* will be used from position 0." msgstr "" -#: ../../library/tarfile.rst:438 msgid "*fileobj* is not closed, when :class:`TarFile` is closed." msgstr "" -#: ../../library/tarfile.rst:440 -msgid "" -"*format* controls the archive format for writing. It must be one of the " -"constants :const:`USTAR_FORMAT`, :const:`GNU_FORMAT` or :const:`PAX_FORMAT` " -"that are defined at module level. When reading, format will be automatically " -"detected, even if different formats are present in a single archive." +msgid "*format* controls the archive format for writing. It must be one of the constants :const:`USTAR_FORMAT`, :const:`GNU_FORMAT` or :const:`PAX_FORMAT` that are defined at module level. When reading, format will be automatically detected, even if different formats are present in a single archive." msgstr "" -#: ../../library/tarfile.rst:445 -msgid "" -"The *tarinfo* argument can be used to replace the default :class:`TarInfo` " -"class with a different one." +msgid "The *tarinfo* argument can be used to replace the default :class:`TarInfo` class with a different one." msgstr "" -#: ../../library/tarfile.rst:448 -msgid "" -"If *dereference* is :const:`False`, add symbolic and hard links to the " -"archive. If it is :const:`True`, add the content of the target files to the " -"archive. This has no effect on systems that do not support symbolic links." +msgid "If *dereference* is :const:`False`, add symbolic and hard links to the archive. If it is :const:`True`, add the content of the target files to the archive. This has no effect on systems that do not support symbolic links." msgstr "" -#: ../../library/tarfile.rst:452 -msgid "" -"If *ignore_zeros* is :const:`False`, treat an empty block as the end of the " -"archive. If it is :const:`True`, skip empty (and invalid) blocks and try to " -"get as many members as possible. This is only useful for reading " -"concatenated or damaged archives." +msgid "If *ignore_zeros* is :const:`False`, treat an empty block as the end of the archive. If it is :const:`True`, skip empty (and invalid) blocks and try to get as many members as possible. This is only useful for reading concatenated or damaged archives." msgstr "" -#: ../../library/tarfile.rst:456 -msgid "" -"*debug* can be set from ``0`` (no debug messages) up to ``3`` (all debug " -"messages). The messages are written to ``sys.stderr``." +msgid "*debug* can be set from ``0`` (no debug messages) up to ``3`` (all debug messages). The messages are written to ``sys.stderr``." msgstr "" -#: ../../library/tarfile.rst:459 -msgid "" -"*errorlevel* controls how extraction errors are handled, see :attr:`the " -"corresponding attribute `." +msgid "*errorlevel* controls how extraction errors are handled, see :attr:`the corresponding attribute `." msgstr "" -#: ../../library/tarfile.rst:462 -msgid "" -"The *encoding* and *errors* arguments define the character encoding to be " -"used for reading or writing the archive and how conversion errors are going " -"to be handled. The default settings will work for most users. See " -"section :ref:`tar-unicode` for in-depth information." +msgid "The *encoding* and *errors* arguments define the character encoding to be used for reading or writing the archive and how conversion errors are going to be handled. The default settings will work for most users. See section :ref:`tar-unicode` for in-depth information." msgstr "" -#: ../../library/tarfile.rst:467 -msgid "" -"The *pax_headers* argument is an optional dictionary of strings which will " -"be added as a pax global header if *format* is :const:`PAX_FORMAT`." +msgid "The *pax_headers* argument is an optional dictionary of strings which will be added as a pax global header if *format* is :const:`PAX_FORMAT`." msgstr "" -#: ../../library/tarfile.rst:470 -msgid "" -"If *stream* is set to :const:`True` then while reading the archive info " -"about files in the archive are not cached, saving memory." +msgid "If *stream* is set to :const:`True` then while reading the archive info about files in the archive are not cached, saving memory." msgstr "" -#: ../../library/tarfile.rst:473 ../../library/tarfile.rst:796 msgid "Use ``'surrogateescape'`` as the default for the *errors* argument." msgstr "" -#: ../../library/tarfile.rst:482 msgid "Add the *stream* parameter." msgstr "" -#: ../../library/tarfile.rst:487 -msgid "" -"Alternative constructor. The :func:`tarfile.open` function is actually a " -"shortcut to this classmethod." +msgid "Alternative constructor. The :func:`tarfile.open` function is actually a shortcut to this classmethod." msgstr "" -#: ../../library/tarfile.rst:493 -msgid "" -"Return a :class:`TarInfo` object for member *name*. If *name* can not be " -"found in the archive, :exc:`KeyError` is raised." +msgid "Return a :class:`TarInfo` object for member *name*. If *name* can not be found in the archive, :exc:`KeyError` is raised." msgstr "" -#: ../../library/tarfile.rst:498 -msgid "" -"If a member occurs more than once in the archive, its last occurrence is " -"assumed to be the most up-to-date version." +msgid "If a member occurs more than once in the archive, its last occurrence is assumed to be the most up-to-date version." msgstr "" -#: ../../library/tarfile.rst:504 -msgid "" -"Return the members of the archive as a list of :class:`TarInfo` objects. The " -"list has the same order as the members in the archive." +msgid "Return the members of the archive as a list of :class:`TarInfo` objects. The list has the same order as the members in the archive." msgstr "" -#: ../../library/tarfile.rst:510 -msgid "" -"Return the members as a list of their names. It has the same order as the " -"list returned by :meth:`getmembers`." +msgid "Return the members as a list of their names. It has the same order as the list returned by :meth:`getmembers`." msgstr "" -#: ../../library/tarfile.rst:516 -msgid "" -"Print a table of contents to ``sys.stdout``. If *verbose* is :const:`False`, " -"only the names of the members are printed. If it is :const:`True`, output " -"similar to that of :program:`ls -l` is produced. If optional *members* is " -"given, it must be a subset of the list returned by :meth:`getmembers`." +msgid "Print a table of contents to ``sys.stdout``. If *verbose* is :const:`False`, only the names of the members are printed. If it is :const:`True`, output similar to that of :program:`ls -l` is produced. If optional *members* is given, it must be a subset of the list returned by :meth:`getmembers`." msgstr "" -#: ../../library/tarfile.rst:521 msgid "Added the *members* parameter." msgstr "" -#: ../../library/tarfile.rst:527 -msgid "" -"Return the next member of the archive as a :class:`TarInfo` object, " -"when :class:`TarFile` is opened for reading. Return :const:`None` if there " -"is no more available." +msgid "Return the next member of the archive as a :class:`TarInfo` object, when :class:`TarFile` is opened for reading. Return :const:`None` if there is no more available." msgstr "" -#: ../../library/tarfile.rst:534 -msgid "" -"Extract all members from the archive to the current working directory or " -"directory *path*. If optional *members* is given, it must be a subset of the " -"list returned by :meth:`getmembers`. Directory information like owner, " -"modification time and permissions are set after all members have been " -"extracted. This is done to work around two problems: A directory's " -"modification time is reset each time a file is created in it. And, if a " -"directory's permissions do not allow writing, extracting files to it will " -"fail." +msgid "Extract all members from the archive to the current working directory or directory *path*. If optional *members* is given, it must be a subset of the list returned by :meth:`getmembers`. Directory information like owner, modification time and permissions are set after all members have been extracted. This is done to work around two problems: A directory's modification time is reset each time a file is created in it. And, if a directory's permissions do not allow writing, extracting files to it will fail." msgstr "" -#: ../../library/tarfile.rst:542 -msgid "" -"If *numeric_owner* is :const:`True`, the uid and gid numbers from the " -"tarfile are used to set the owner/group for the extracted files. Otherwise, " -"the named values from the tarfile are used." +msgid "If *numeric_owner* is :const:`True`, the uid and gid numbers from the tarfile are used to set the owner/group for the extracted files. Otherwise, the named values from the tarfile are used." msgstr "" -#: ../../library/tarfile.rst:546 -msgid "" -"The *filter* argument specifies how ``members`` are modified or rejected " -"before extraction. See :ref:`tarfile-extraction-filter` for details. It is " -"recommended to set this explicitly only if specific *tar* features are " -"required, or as ``filter='data'`` to support Python versions with a less " -"secure default (3.13 and lower)." +msgid "The *filter* argument specifies how ``members`` are modified or rejected before extraction. See :ref:`tarfile-extraction-filter` for details. It is recommended to set this explicitly only if specific *tar* features are required, or as ``filter='data'`` to support Python versions with a less secure default (3.13 and lower)." msgstr "" -#: ../../library/tarfile.rst:555 msgid "Never extract archives from untrusted sources without prior inspection." msgstr "" -#: ../../library/tarfile.rst:557 -msgid "" -"Since Python 3.14, the default (:func:`data `) will prevent the " -"most dangerous security issues. However, it will not prevent *all* " -"unintended or insecure behavior. Read the :ref:`tarfile-extraction-filter` " -"section for details." +msgid "Since Python 3.14, the default (:func:`data `) will prevent the most dangerous security issues. However, it will not prevent *all* unintended or insecure behavior. Read the :ref:`tarfile-extraction-filter` section for details." msgstr "" -#: ../../library/tarfile.rst:562 ../../library/tarfile.rst:599 msgid "Added the *numeric_owner* parameter." msgstr "" -#: ../../library/tarfile.rst:565 ../../library/tarfile.rst:602 msgid "The *path* parameter accepts a :term:`path-like object`." msgstr "" -#: ../../library/tarfile.rst:568 ../../library/tarfile.rst:605 -#: ../../library/tarfile.rst:689 msgid "Added the *filter* parameter." msgstr "" -#: ../../library/tarfile.rst:571 msgid "The *filter* parameter now defaults to ``'data'``." msgstr "" -#: ../../library/tarfile.rst:577 -msgid "" -"Extract a member from the archive to the current working directory, using " -"its full name. Its file information is extracted as accurately as possible. " -"*member* may be a filename or a :class:`TarInfo` object. You can specify a " -"different directory using *path*. *path* may be a :term:`path-like object`. " -"File attributes (owner, mtime, mode) are set unless *set_attrs* is false." +msgid "Extract a member from the archive to the current working directory, using its full name. Its file information is extracted as accurately as possible. *member* may be a filename or a :class:`TarInfo` object. You can specify a different directory using *path*. *path* may be a :term:`path-like object`. File attributes (owner, mtime, mode) are set unless *set_attrs* is false." msgstr "" -#: ../../library/tarfile.rst:583 -msgid "" -"The *numeric_owner* and *filter* arguments are the same as " -"for :meth:`extractall`." +msgid "The *numeric_owner* and *filter* arguments are the same as for :meth:`extractall`." msgstr "" -#: ../../library/tarfile.rst:588 -msgid "" -"The :meth:`extract` method does not take care of several extraction issues. " -"In most cases you should consider using the :meth:`extractall` method." +msgid "The :meth:`extract` method does not take care of several extraction issues. In most cases you should consider using the :meth:`extractall` method." msgstr "" -#: ../../library/tarfile.rst:593 -msgid "" -"Never extract archives from untrusted sources without prior inspection. See " -"the warning for :meth:`extractall` for details." +msgid "Never extract archives from untrusted sources without prior inspection. See the warning for :meth:`extractall` for details." msgstr "" -#: ../../library/tarfile.rst:596 msgid "Added the *set_attrs* parameter." msgstr "" -#: ../../library/tarfile.rst:611 -msgid "" -"Extract a member from the archive as a file object. *member* may be a " -"filename or a :class:`TarInfo` object. If *member* is a regular file or a " -"link, an :class:`io.BufferedReader` object is returned. For all other " -"existing members, :const:`None` is returned. If *member* does not appear in " -"the archive, :exc:`KeyError` is raised." +msgid "Extract a member from the archive as a file object. *member* may be a filename or a :class:`TarInfo` object. If *member* is a regular file or a link, an :class:`io.BufferedReader` object is returned. For all other existing members, :const:`None` is returned. If *member* does not appear in the archive, :exc:`KeyError` is raised." msgstr "" -#: ../../library/tarfile.rst:617 msgid "Return an :class:`io.BufferedReader` object." msgstr "" -#: ../../library/tarfile.rst:620 -msgid "" -"The returned :class:`io.BufferedReader` object has the :attr:`!mode` " -"attribute which is always equal to ``'rb'``." +msgid "The returned :class:`io.BufferedReader` object has the :attr:`!mode` attribute which is always equal to ``'rb'``." msgstr "" -#: ../../library/tarfile.rst:627 -msgid "" -"If *errorlevel* is ``0``, errors are ignored when " -"using :meth:`TarFile.extract` and :meth:`TarFile.extractall`. Nevertheless, " -"they appear as error messages in the debug output when *debug* is greater " -"than 0. If ``1`` (the default), all *fatal* errors are raised " -"as :exc:`OSError` or :exc:`FilterError` exceptions. If ``2``, all *non-" -"fatal* errors are raised as :exc:`TarError` exceptions as well." +msgid "If *errorlevel* is ``0``, errors are ignored when using :meth:`TarFile.extract` and :meth:`TarFile.extractall`. Nevertheless, they appear as error messages in the debug output when *debug* is greater than 0. If ``1`` (the default), all *fatal* errors are raised as :exc:`OSError` or :exc:`FilterError` exceptions. If ``2``, all *non-fatal* errors are raised as :exc:`TarError` exceptions as well." msgstr "" -#: ../../library/tarfile.rst:635 -msgid "" -"Some exceptions, e.g. ones caused by wrong argument types or data " -"corruption, are always raised." +msgid "Some exceptions, e.g. ones caused by wrong argument types or data corruption, are always raised." msgstr "" -#: ../../library/tarfile.rst:638 -msgid "" -"Custom :ref:`extraction filters ` should " -"raise :exc:`FilterError` for *fatal* errors and :exc:`ExtractError` for *non-" -"fatal* ones." +msgid "Custom :ref:`extraction filters ` should raise :exc:`FilterError` for *fatal* errors and :exc:`ExtractError` for *non-fatal* ones." msgstr "" -#: ../../library/tarfile.rst:642 -msgid "" -"Note that when an exception is raised, the archive may be partially " -"extracted. It is the user’s responsibility to clean up." +msgid "Note that when an exception is raised, the archive may be partially extracted. It is the user’s responsibility to clean up." msgstr "" -#: ../../library/tarfile.rst:649 -msgid "" -"The :ref:`extraction filter ` used as a default " -"for the *filter* argument of :meth:`~TarFile.extract` " -"and :meth:`~TarFile.extractall`." +msgid "The :ref:`extraction filter ` used as a default for the *filter* argument of :meth:`~TarFile.extract` and :meth:`~TarFile.extractall`." msgstr "" -#: ../../library/tarfile.rst:653 -msgid "" -"The attribute may be ``None`` or a callable. String names are not allowed " -"for this attribute, unlike the *filter* argument to :meth:`~TarFile.extract`." +msgid "The attribute may be ``None`` or a callable. String names are not allowed for this attribute, unlike the *filter* argument to :meth:`~TarFile.extract`." msgstr "" -#: ../../library/tarfile.rst:657 -msgid "" -"If ``extraction_filter`` is ``None`` (the default), extraction methods will " -"use the :func:`data ` filter by default." +msgid "If ``extraction_filter`` is ``None`` (the default), extraction methods will use the :func:`data ` filter by default." msgstr "" -#: ../../library/tarfile.rst:660 -msgid "" -"The attribute may be set on instances or overridden in subclasses. It also " -"is possible to set it on the ``TarFile`` class itself to set a global " -"default, although, since it affects all uses of *tarfile*, it is best " -"practice to only do so in top-level applications or :mod:`site configuration " -"`. To set a global default this way, a filter function needs to be " -"wrapped in :deco:`staticmethod` to prevent injection of a ``self`` argument." +msgid "The attribute may be set on instances or overridden in subclasses. It also is possible to set it on the ``TarFile`` class itself to set a global default, although, since it affects all uses of *tarfile*, it is best practice to only do so in top-level applications or :mod:`site configuration `. To set a global default this way, a filter function needs to be wrapped in :deco:`staticmethod` to prevent injection of a ``self`` argument." msgstr "" -#: ../../library/tarfile.rst:670 -msgid "" -"The default filter is set to :func:`data `, which disallows " -"some dangerous features such as links to absolute paths or paths outside of " -"the destination. Previously, the default was equivalent " -"to :func:`fully_trusted `." +msgid "The default filter is set to :func:`data `, which disallows some dangerous features such as links to absolute paths or paths outside of the destination. Previously, the default was equivalent to :func:`fully_trusted `." +msgstr "" + +msgid "Add the file *name* to the archive. *name* may be any type of file (directory, fifo, symbolic link, etc.). If given, *arcname* specifies an alternative name for the file in the archive. Directories are added recursively by default. This can be avoided by setting *recursive* to :const:`False`. Recursion adds entries in sorted order. If *filter* is given, it should be a function that takes a :class:`TarInfo` object argument and returns the changed :class:`TarInfo` object. If it instead returns :const:`None` the :class:`TarInfo` object will be excluded from the archive. See :ref:`tar-examples` for an example." msgstr "" -#: ../../library/tarfile.rst:678 -msgid "" -"Add the file *name* to the archive. *name* may be any type of file " -"(directory, fifo, symbolic link, etc.). If given, *arcname* specifies an " -"alternative name for the file in the archive. Directories are added " -"recursively by default. This can be avoided by setting *recursive* " -"to :const:`False`. Recursion adds entries in sorted order. If *filter* is " -"given, it should be a function that takes a :class:`TarInfo` object argument " -"and returns the changed :class:`TarInfo` object. If it instead " -"returns :const:`None` the :class:`TarInfo` object will be excluded from the " -"archive. See :ref:`tar-examples` for an example." -msgstr "" - -#: ../../library/tarfile.rst:692 msgid "Recursion adds entries in sorted order." msgstr "" -#: ../../library/tarfile.rst:698 -msgid "" -"Add the :class:`TarInfo` object *tarinfo* to the archive. If *tarinfo* " -"represents a non zero-size regular file, the *fileobj* argument should be " -"a :term:`binary file`, and ``tarinfo.size`` bytes are read from it and added " -"to the archive. You can create :class:`TarInfo` objects directly, or by " -"using :meth:`gettarinfo`." +msgid "Add the :class:`TarInfo` object *tarinfo* to the archive. If *tarinfo* represents a non zero-size regular file, the *fileobj* argument should be a :term:`binary file`, and ``tarinfo.size`` bytes are read from it and added to the archive. You can create :class:`TarInfo` objects directly, or by using :meth:`gettarinfo`." msgstr "" -#: ../../library/tarfile.rst:705 msgid "*fileobj* must be given for non-zero-sized regular files." msgstr "" -#: ../../library/tarfile.rst:710 -msgid "" -"Create a :class:`TarInfo` object from the result of :func:`os.stat` or " -"equivalent on an existing file. The file is either named by *name*, or " -"specified as a :term:`file object` *fileobj* with a file descriptor. *name* " -"may be a :term:`path-like object`. If given, *arcname* specifies an " -"alternative name for the file in the archive, otherwise, the name is taken " -"from *fileobj*’s :attr:`~io.FileIO.name` attribute, or the *name* argument. " -"The name should be a text string." +msgid "Create a :class:`TarInfo` object from the result of :func:`os.stat` or equivalent on an existing file. The file is either named by *name*, or specified as a :term:`file object` *fileobj* with a file descriptor. *name* may be a :term:`path-like object`. If given, *arcname* specifies an alternative name for the file in the archive, otherwise, the name is taken from *fileobj*’s :attr:`~io.FileIO.name` attribute, or the *name* argument. The name should be a text string." msgstr "" -#: ../../library/tarfile.rst:719 -msgid "" -"You can modify some of the :class:`TarInfo`’s attributes before you add it " -"using :meth:`addfile`. If the file object is not an ordinary file object " -"positioned at the beginning of the file, attributes such " -"as :attr:`~TarInfo.size` may need modifying. This is the case for objects " -"such as :class:`~gzip.GzipFile`. The :attr:`~TarInfo.name` may also be " -"modified, in which case *arcname* could be a dummy string." +msgid "You can modify some of the :class:`TarInfo`’s attributes before you add it using :meth:`addfile`. If the file object is not an ordinary file object positioned at the beginning of the file, attributes such as :attr:`~TarInfo.size` may need modifying. This is the case for objects such as :class:`~gzip.GzipFile`. The :attr:`~TarInfo.name` may also be modified, in which case *arcname* could be a dummy string." msgstr "" -#: ../../library/tarfile.rst:733 -msgid "" -"Close the :class:`TarFile`. In write mode, two finishing zero blocks are " -"appended to the archive." +msgid "Close the :class:`TarFile`. In write mode, two finishing zero blocks are appended to the archive." msgstr "" -#: ../../library/tarfile.rst:740 msgid "A dictionary containing key-value pairs of pax global headers." msgstr "" -#: ../../library/tarfile.rst:747 msgid "TarInfo Objects" msgstr "" -#: ../../library/tarfile.rst:749 -msgid "" -"A :class:`TarInfo` object represents one member in a :class:`TarFile`. Aside " -"from storing all required attributes of a file (like file type, size, time, " -"permissions, owner etc.), it provides some useful methods to determine its " -"type. It does *not* contain the file's data itself." +msgid "A :class:`TarInfo` object represents one member in a :class:`TarFile`. Aside from storing all required attributes of a file (like file type, size, time, permissions, owner etc.), it provides some useful methods to determine its type. It does *not* contain the file's data itself." msgstr "" -#: ../../library/tarfile.rst:754 -msgid "" -":class:`TarInfo` objects are returned by :class:`TarFile`'s " -"methods :meth:`~TarFile.getmember`, :meth:`~TarFile.getmembers` " -"and :meth:`~TarFile.gettarinfo`." +msgid ":class:`TarInfo` objects are returned by :class:`TarFile`'s methods :meth:`~TarFile.getmember`, :meth:`~TarFile.getmembers` and :meth:`~TarFile.gettarinfo`." msgstr "" -#: ../../library/tarfile.rst:758 -msgid "" -"Modifying the objects returned by :meth:`~TarFile.getmember` " -"or :meth:`~TarFile.getmembers` will affect all subsequent operations on the " -"archive. For cases where this is unwanted, you can use :mod:`copy.copy() " -"` or call the :meth:`~TarInfo.replace` method to create a modified " -"copy in one step." +msgid "Modifying the objects returned by :meth:`~TarFile.getmember` or :meth:`~TarFile.getmembers` will affect all subsequent operations on the archive. For cases where this is unwanted, you can use :mod:`copy.copy() ` or call the :meth:`~TarInfo.replace` method to create a modified copy in one step." msgstr "" -#: ../../library/tarfile.rst:764 -msgid "" -"Several attributes can be set to ``None`` to indicate that a piece of " -"metadata is unused or unknown. Different :class:`TarInfo` methods handle " -"``None`` differently:" +msgid "Several attributes can be set to ``None`` to indicate that a piece of metadata is unused or unknown. Different :class:`TarInfo` methods handle ``None`` differently:" msgstr "" -#: ../../library/tarfile.rst:768 -msgid "" -"The :meth:`~TarFile.extract` or :meth:`~TarFile.extractall` methods will " -"ignore the corresponding metadata, leaving it set to a default." +msgid "The :meth:`~TarFile.extract` or :meth:`~TarFile.extractall` methods will ignore the corresponding metadata, leaving it set to a default." msgstr "" -#: ../../library/tarfile.rst:770 msgid ":meth:`~TarFile.addfile` will fail." msgstr "" -#: ../../library/tarfile.rst:771 msgid ":meth:`~TarFile.list` will print a placeholder string." msgstr "" -#: ../../library/tarfile.rst:775 msgid "Create a :class:`TarInfo` object." msgstr "" -#: ../../library/tarfile.rst:780 msgid "Create and return a :class:`TarInfo` object from string buffer *buf*." msgstr "" -#: ../../library/tarfile.rst:782 msgid "Raises :exc:`HeaderError` if the buffer is invalid." msgstr "" -#: ../../library/tarfile.rst:787 -msgid "" -"Read the next member from the :class:`TarFile` object *tarfile* and return " -"it as a :class:`TarInfo` object." +msgid "Read the next member from the :class:`TarFile` object *tarfile* and return it as a :class:`TarInfo` object." msgstr "" -#: ../../library/tarfile.rst:793 -msgid "" -"Create a string buffer from a :class:`TarInfo` object. For information on " -"the arguments see the constructor of the :class:`TarFile` class." +msgid "Create a string buffer from a :class:`TarInfo` object. For information on the arguments see the constructor of the :class:`TarFile` class." msgstr "" -#: ../../library/tarfile.rst:800 msgid "A ``TarInfo`` object has the following public data attributes:" msgstr "" -#: ../../library/tarfile.rst:806 msgid "Name of the archive member." msgstr "" -#: ../../library/tarfile.rst:812 msgid "Size in bytes." msgstr "" -#: ../../library/tarfile.rst:818 -msgid "" -"Time of last modification in seconds since the :ref:`epoch `, as " -"in :attr:`os.stat_result.st_mtime`." +msgid "Time of last modification in seconds since the :ref:`epoch `, as in :attr:`os.stat_result.st_mtime`." msgstr "" -#: ../../library/tarfile.rst:823 ../../library/tarfile.rst:834 -#: ../../library/tarfile.rst:866 ../../library/tarfile.rst:877 -#: ../../library/tarfile.rst:888 ../../library/tarfile.rst:899 -msgid "" -"Can be set to ``None`` for :meth:`~TarFile.extract` " -"and :meth:`~TarFile.extractall`, causing extraction to skip applying this " -"attribute." +msgid "Can be set to ``None`` for :meth:`~TarFile.extract` and :meth:`~TarFile.extractall`, causing extraction to skip applying this attribute." msgstr "" -#: ../../library/tarfile.rst:830 msgid "Permission bits, as for :func:`os.chmod`." msgstr "" -#: ../../library/tarfile.rst:840 -msgid "" -"File type. *type* is usually one of these " -"constants: :const:`REGTYPE`, :const:`AREGTYPE`, :const:`LNKTYPE`, :const:`SYMTYPE`, :const:`DIRTYPE`, :const:`FIFOTYPE`, :const:`CONTTYPE`, :const:`CHRTYPE`, :const:`BLKTYPE`, :const:`GNUTYPE_SPARSE`. " -"To determine the type of a :class:`TarInfo` object more conveniently, use " -"the ``is*()`` methods below." +msgid "File type. *type* is usually one of these constants: :const:`REGTYPE`, :const:`AREGTYPE`, :const:`LNKTYPE`, :const:`SYMTYPE`, :const:`DIRTYPE`, :const:`FIFOTYPE`, :const:`CONTTYPE`, :const:`CHRTYPE`, :const:`BLKTYPE`, :const:`GNUTYPE_SPARSE`. To determine the type of a :class:`TarInfo` object more conveniently, use the ``is*()`` methods below." msgstr "" -#: ../../library/tarfile.rst:850 -msgid "" -"Name of the target file name, which is only present in :class:`TarInfo` " -"objects of type :const:`LNKTYPE` and :const:`SYMTYPE`." +msgid "Name of the target file name, which is only present in :class:`TarInfo` objects of type :const:`LNKTYPE` and :const:`SYMTYPE`." msgstr "" -#: ../../library/tarfile.rst:853 -msgid "" -"For symbolic links (``SYMTYPE``), the *linkname* is relative to the " -"directory that contains the link. For hard links (``LNKTYPE``), the " -"*linkname* is relative to the root of the archive." +msgid "For symbolic links (``SYMTYPE``), the *linkname* is relative to the directory that contains the link. For hard links (``LNKTYPE``), the *linkname* is relative to the root of the archive." msgstr "" -#: ../../library/tarfile.rst:862 msgid "User ID of the user who originally stored this member." msgstr "" -#: ../../library/tarfile.rst:873 msgid "Group ID of the user who originally stored this member." msgstr "" -#: ../../library/tarfile.rst:884 msgid "User name." msgstr "" -#: ../../library/tarfile.rst:895 msgid "Group name." msgstr "" -#: ../../library/tarfile.rst:906 msgid "Header checksum." msgstr "" -#: ../../library/tarfile.rst:912 msgid "Device major number." msgstr "" -#: ../../library/tarfile.rst:918 msgid "Device minor number." msgstr "" -#: ../../library/tarfile.rst:924 msgid "The tar header starts here." msgstr "" -#: ../../library/tarfile.rst:930 msgid "The file's data starts here." msgstr "" -#: ../../library/tarfile.rst:935 msgid "Sparse member information." msgstr "" -#: ../../library/tarfile.rst:941 -msgid "" -"A dictionary containing key-value pairs of an associated pax extended header." +msgid "A dictionary containing key-value pairs of an associated pax extended header." msgstr "" -#: ../../library/tarfile.rst:949 -msgid "" -"Return a *new* copy of the :class:`!TarInfo` object with the given " -"attributes changed. For example, to return a ``TarInfo`` with the group name " -"set to ``'staff'``, use::" +msgid "Return a *new* copy of the :class:`!TarInfo` object with the given attributes changed. For example, to return a ``TarInfo`` with the group name set to ``'staff'``, use::" msgstr "" -#: ../../library/tarfile.rst:953 msgid "new_tarinfo = old_tarinfo.replace(gname='staff')" msgstr "" -#: ../../library/tarfile.rst:955 -msgid "" -"By default, a deep copy is made. If *deep* is false, the copy is shallow, " -"i.e. ``pax_headers`` and any custom attributes are shared with the original " -"``TarInfo`` object." +msgid "By default, a deep copy is made. If *deep* is false, the copy is shallow, i.e. ``pax_headers`` and any custom attributes are shared with the original ``TarInfo`` object." msgstr "" -#: ../../library/tarfile.rst:959 msgid "A :class:`TarInfo` object also provides some convenient query methods:" msgstr "" -#: ../../library/tarfile.rst:964 msgid "Return :const:`True` if the :class:`TarInfo` object is a regular file." msgstr "" -#: ../../library/tarfile.rst:969 msgid "Same as :meth:`isfile`." msgstr "" -#: ../../library/tarfile.rst:974 msgid "Return :const:`True` if it is a directory." msgstr "" -#: ../../library/tarfile.rst:979 msgid "Return :const:`True` if it is a symbolic link." msgstr "" -#: ../../library/tarfile.rst:984 msgid "Return :const:`True` if it is a hard link." msgstr "" -#: ../../library/tarfile.rst:989 msgid "Return :const:`True` if it is a character device." msgstr "" -#: ../../library/tarfile.rst:994 msgid "Return :const:`True` if it is a block device." msgstr "" -#: ../../library/tarfile.rst:999 msgid "Return :const:`True` if it is a FIFO." msgstr "" -#: ../../library/tarfile.rst:1004 -msgid "" -"Return :const:`True` if it is one of character device, block device or FIFO." +msgid "Return :const:`True` if it is one of character device, block device or FIFO." msgstr "" -#: ../../library/tarfile.rst:1010 msgid "Extraction filters" msgstr "" -#: ../../library/tarfile.rst:1014 -msgid "" -"The *tar* format is designed to capture all details of a UNIX-like " -"filesystem, which makes it very powerful. Unfortunately, the features make " -"it easy to create tar files that have unintended -- and possibly malicious " -"-- effects when extracted. For example, extracting a tar file can overwrite " -"arbitrary files in various ways (e.g. by using absolute paths, ``..`` path " -"components, or symlinks that affect later members)." +msgid "The *tar* format is designed to capture all details of a UNIX-like filesystem, which makes it very powerful. Unfortunately, the features make it easy to create tar files that have unintended -- and possibly malicious -- effects when extracted. For example, extracting a tar file can overwrite arbitrary files in various ways (e.g. by using absolute paths, ``..`` path components, or symlinks that affect later members)." msgstr "" -#: ../../library/tarfile.rst:1022 -msgid "" -"In most cases, the full functionality is not needed. Therefore, *tarfile* " -"supports extraction filters: a mechanism to limit functionality, and thus " -"mitigate some of the security issues." +msgid "In most cases, the full functionality is not needed. Therefore, *tarfile* supports extraction filters: a mechanism to limit functionality, and thus mitigate some of the security issues." msgstr "" -#: ../../library/tarfile.rst:1028 -msgid "" -"None of the available filters blocks *all* dangerous archive features. Never " -"extract archives from untrusted sources without prior inspection. See " -"also :ref:`tarfile-further-verification`." +msgid "None of the available filters blocks *all* dangerous archive features. Never extract archives from untrusted sources without prior inspection. See also :ref:`tarfile-further-verification`." msgstr "" -#: ../../library/tarfile.rst:1034 msgid ":pep:`706`" msgstr "" -#: ../../library/tarfile.rst:1035 msgid "Contains further motivation and rationale behind the design." msgstr "" -#: ../../library/tarfile.rst:1037 -msgid "" -"The *filter* argument to :meth:`TarFile.extract` " -"or :meth:`~TarFile.extractall` can be:" +msgid "The *filter* argument to :meth:`TarFile.extract` or :meth:`~TarFile.extractall` can be:" msgstr "" -#: ../../library/tarfile.rst:1040 -msgid "" -"the string ``'fully_trusted'``: Honor all metadata as specified in the " -"archive. Should be used if the user trusts the archive completely, or " -"implements their own complex verification." +msgid "the string ``'fully_trusted'``: Honor all metadata as specified in the archive. Should be used if the user trusts the archive completely, or implements their own complex verification." msgstr "" -#: ../../library/tarfile.rst:1045 -msgid "" -"the string ``'tar'``: Honor most *tar*-specific features (i.e. features of " -"UNIX-like filesystems), but block features that are very likely to be " -"surprising or malicious. See :func:`tar_filter` for details." +msgid "the string ``'tar'``: Honor most *tar*-specific features (i.e. features of UNIX-like filesystems), but block features that are very likely to be surprising or malicious. See :func:`tar_filter` for details." msgstr "" -#: ../../library/tarfile.rst:1049 -msgid "" -"the string ``'data'``: Ignore or block most features specific to UNIX-like " -"filesystems. Intended for extracting cross-platform data archives. " -"See :func:`data_filter` for details." +msgid "the string ``'data'``: Ignore or block most features specific to UNIX-like filesystems. Intended for extracting cross-platform data archives. See :func:`data_filter` for details." msgstr "" -#: ../../library/tarfile.rst:1053 msgid "``None`` (default): Use :attr:`TarFile.extraction_filter`." msgstr "" -#: ../../library/tarfile.rst:1055 -msgid "" -"If that is also ``None`` (the default), the ``'data'`` filter will be used." +msgid "If that is also ``None`` (the default), the ``'data'`` filter will be used." msgstr "" -#: ../../library/tarfile.rst:1059 -msgid "" -"The default filter is set to :func:`data `. Previously, the " -"default was equivalent to :func:`fully_trusted `." +msgid "The default filter is set to :func:`data `. Previously, the default was equivalent to :func:`fully_trusted `." msgstr "" -#: ../../library/tarfile.rst:1063 -msgid "" -"A callable which will be called for each extracted member with " -"a :ref:`TarInfo ` describing the member and the destination " -"path to where the archive is extracted (i.e. the same path is used for all " -"members)::" +msgid "A callable which will be called for each extracted member with a :ref:`TarInfo ` describing the member and the destination path to where the archive is extracted (i.e. the same path is used for all members)::" msgstr "" -#: ../../library/tarfile.rst:1068 msgid "filter(member: TarInfo, path: str, /) -> TarInfo | None" msgstr "" -#: ../../library/tarfile.rst:1070 -msgid "" -"The callable is called just before each member is extracted, so it can take " -"the current state of the disk into account. It can:" +msgid "The callable is called just before each member is extracted, so it can take the current state of the disk into account. It can:" msgstr "" -#: ../../library/tarfile.rst:1074 -msgid "" -"return a :class:`TarInfo` object which will be used instead of the metadata " -"in the archive, or" +msgid "return a :class:`TarInfo` object which will be used instead of the metadata in the archive, or" msgstr "" -#: ../../library/tarfile.rst:1076 msgid "return ``None``, in which case the member will be skipped, or" msgstr "" -#: ../../library/tarfile.rst:1077 -msgid "" -"raise an exception to abort the operation or skip the member, depending " -"on :attr:`~TarFile.errorlevel`. Note that when extraction is " -"aborted, :meth:`~TarFile.extractall` may leave the archive partially " -"extracted. It does not attempt to clean up." +msgid "raise an exception to abort the operation or skip the member, depending on :attr:`~TarFile.errorlevel`. Note that when extraction is aborted, :meth:`~TarFile.extractall` may leave the archive partially extracted. It does not attempt to clean up." msgstr "" -#: ../../library/tarfile.rst:1083 msgid "Default named filters" msgstr "" -#: ../../library/tarfile.rst:1085 -msgid "" -"The pre-defined, named filters are available as functions, so they can be " -"reused in custom filters:" +msgid "The pre-defined, named filters are available as functions, so they can be reused in custom filters:" msgstr "" -#: ../../library/tarfile.rst:1090 msgid "Return *member* unchanged." msgstr "" -#: ../../library/tarfile.rst:1092 msgid "This implements the ``'fully_trusted'`` filter." msgstr "" -#: ../../library/tarfile.rst:1096 msgid "Implements the ``'tar'`` filter." msgstr "" -#: ../../library/tarfile.rst:1098 msgid "Strip leading slashes (``/`` and :data:`os.sep`) from filenames." msgstr "" -#: ../../library/tarfile.rst:1099 -msgid "" -":ref:`Refuse ` to extract files with absolute " -"paths (in case the name is absolute even after stripping slashes, e.g. ``C:/" -"foo`` on Windows). This raises :class:`~tarfile.AbsolutePathError`." +msgid ":ref:`Refuse ` to extract files with absolute paths (in case the name is absolute even after stripping slashes, e.g. ``C:/foo`` on Windows). This raises :class:`~tarfile.AbsolutePathError`." msgstr "" -#: ../../library/tarfile.rst:1103 -msgid "" -":ref:`Refuse ` to extract files whose absolute " -"path (after following symlinks) would end up outside the destination. This " -"raises :class:`~tarfile.OutsideDestinationError`." +msgid ":ref:`Refuse ` to extract files whose absolute path (after following symlinks) would end up outside the destination. This raises :class:`~tarfile.OutsideDestinationError`." msgstr "" -#: ../../library/tarfile.rst:1106 -msgid "" -"Clear high mode bits (setuid, setgid, sticky) and group/other write bits " -"(:const:`~stat.S_IWGRP` | :const:`~stat.S_IWOTH`)." +msgid "Clear high mode bits (setuid, setgid, sticky) and group/other write bits (:const:`~stat.S_IWGRP` | :const:`~stat.S_IWOTH`)." msgstr "" -#: ../../library/tarfile.rst:1109 ../../library/tarfile.rst:1148 msgid "Return the modified ``TarInfo`` member." msgstr "" -#: ../../library/tarfile.rst:1113 -msgid "" -"Implements the ``'data'`` filter. In addition to what ``tar_filter`` does:" +msgid "Implements the ``'data'`` filter. In addition to what ``tar_filter`` does:" msgstr "" -#: ../../library/tarfile.rst:1116 -msgid "" -"Normalize link targets (:attr:`TarInfo.linkname`) " -"using :func:`os.path.normpath`. Note that this removes internal ``..`` " -"components, which may change the meaning of the link if the path in :attr:`!" -"TarInfo.linkname` traverses symbolic links." +msgid "Normalize link targets (:attr:`TarInfo.linkname`) using :func:`os.path.normpath`. Note that this removes internal ``..`` components, which may change the meaning of the link if the path in :attr:`!TarInfo.linkname` traverses symbolic links." msgstr "" -#: ../../library/tarfile.rst:1122 -msgid "" -":ref:`Refuse ` to extract links (hard or soft) " -"that link to absolute paths, or ones that link outside the destination." +msgid ":ref:`Refuse ` to extract links (hard or soft) that link to absolute paths, or ones that link outside the destination." msgstr "" -#: ../../library/tarfile.rst:1125 -msgid "" -"This raises :class:`~tarfile.AbsoluteLinkError` " -"or :class:`~tarfile.LinkOutsideDestinationError`." +msgid "This raises :class:`~tarfile.AbsoluteLinkError` or :class:`~tarfile.LinkOutsideDestinationError`." msgstr "" -#: ../../library/tarfile.rst:1128 -msgid "" -"Note that such files are refused even on platforms that do not support " -"symbolic links." +msgid "Note that such files are refused even on platforms that do not support symbolic links." msgstr "" -#: ../../library/tarfile.rst:1131 -msgid "" -":ref:`Refuse ` to extract device files (including " -"pipes). This raises :class:`~tarfile.SpecialFileError`." +msgid ":ref:`Refuse ` to extract device files (including pipes). This raises :class:`~tarfile.SpecialFileError`." msgstr "" -#: ../../library/tarfile.rst:1135 msgid "For regular files, including hard links:" msgstr "" -#: ../../library/tarfile.rst:1137 -msgid "" -"Set the owner read and write permissions (:const:`~stat.S_IRUSR` " -"| :const:`~stat.S_IWUSR`)." +msgid "Set the owner read and write permissions (:const:`~stat.S_IRUSR` | :const:`~stat.S_IWUSR`)." msgstr "" -#: ../../library/tarfile.rst:1139 -msgid "" -"Remove the group & other executable permission (:const:`~stat.S_IXGRP` " -"| :const:`~stat.S_IXOTH`) if the owner doesn’t have it " -"(:const:`~stat.S_IXUSR`)." +msgid "Remove the group & other executable permission (:const:`~stat.S_IXGRP` | :const:`~stat.S_IXOTH`) if the owner doesn’t have it (:const:`~stat.S_IXUSR`)." msgstr "" -#: ../../library/tarfile.rst:1143 -msgid "" -"For other files (directories), set ``mode`` to ``None``, so that extraction " -"methods skip applying permission bits." +msgid "For other files (directories), set ``mode`` to ``None``, so that extraction methods skip applying permission bits." msgstr "" -#: ../../library/tarfile.rst:1145 -msgid "" -"Set user and group info (``uid``, ``gid``, ``uname``, ``gname``) to " -"``None``, so that extraction methods skip setting it." +msgid "Set user and group info (``uid``, ``gid``, ``uname``, ``gname``) to ``None``, so that extraction methods skip setting it." msgstr "" -#: ../../library/tarfile.rst:1150 -msgid "" -"Note that this filter does not block *all* dangerous archive features. " -"See :ref:`tarfile-further-verification` for details." +msgid "Note that this filter does not block *all* dangerous archive features. See :ref:`tarfile-further-verification` for details." msgstr "" -#: ../../library/tarfile.rst:1155 msgid "Link targets are now normalized." msgstr "" -#: ../../library/tarfile.rst:1161 msgid "Filter errors" msgstr "" -#: ../../library/tarfile.rst:1163 -msgid "" -"When a filter refuses to extract a file, it will raise an appropriate " -"exception, a subclass of :class:`~tarfile.FilterError`. This will abort the " -"extraction if :attr:`TarFile.errorlevel` is 1 or more. With ``errorlevel=0`` " -"the error will be logged and the member will be skipped, but extraction will " -"continue." +msgid "When a filter refuses to extract a file, it will raise an appropriate exception, a subclass of :class:`~tarfile.FilterError`. This will abort the extraction if :attr:`TarFile.errorlevel` is 1 or more. With ``errorlevel=0`` the error will be logged and the member will be skipped, but extraction will continue." msgstr "" -#: ../../library/tarfile.rst:1173 msgid "Hints for further verification" msgstr "" -#: ../../library/tarfile.rst:1175 -msgid "" -"Even with ``filter='data'``, *tarfile* is not suited for extracting " -"untrusted files without prior inspection. Among other issues, the pre-" -"defined filters do not prevent denial-of-service attacks. Users should do " -"additional checks." +msgid "Even with ``filter='data'``, *tarfile* is not suited for extracting untrusted files without prior inspection. Among other issues, the pre-defined filters do not prevent denial-of-service attacks. Users should do additional checks." msgstr "" -#: ../../library/tarfile.rst:1180 msgid "Here is an incomplete list of things to consider:" msgstr "" -#: ../../library/tarfile.rst:1182 -msgid "" -"Extract to a :func:`new temporary directory ` to prevent " -"e.g. exploiting pre-existing links, and to make it easier to clean up after " -"a failed extraction." +msgid "Extract to a :func:`new temporary directory ` to prevent e.g. exploiting pre-existing links, and to make it easier to clean up after a failed extraction." msgstr "" -#: ../../library/tarfile.rst:1185 msgid "Disallow symbolic links if you do not need the functionality." msgstr "" -#: ../../library/tarfile.rst:1186 -msgid "" -"When working with untrusted data, use external (e.g. OS-level) limits on " -"disk, memory and CPU usage." +msgid "When working with untrusted data, use external (e.g. OS-level) limits on disk, memory and CPU usage." msgstr "" -#: ../../library/tarfile.rst:1188 -msgid "" -"Check filenames against an allow-list of characters (to filter out control " -"characters, confusables, foreign path separators, and so on)." +msgid "Check filenames against an allow-list of characters (to filter out control characters, confusables, foreign path separators, and so on)." msgstr "" -#: ../../library/tarfile.rst:1191 -msgid "" -"Check that filenames have expected extensions (discouraging files that " -"execute when you “click on them”, or extension-less files like Windows " -"special device names)." +msgid "Check that filenames have expected extensions (discouraging files that execute when you “click on them”, or extension-less files like Windows special device names)." msgstr "" -#: ../../library/tarfile.rst:1194 -msgid "" -"Limit the number of extracted files, total size of extracted data, filename " -"length (including symlink length), and size of individual files." +msgid "Limit the number of extracted files, total size of extracted data, filename length (including symlink length), and size of individual files." msgstr "" -#: ../../library/tarfile.rst:1196 msgid "Check for files that would be shadowed on case-insensitive filesystems." msgstr "" -#: ../../library/tarfile.rst:1198 msgid "Also note that:" msgstr "" -#: ../../library/tarfile.rst:1200 -msgid "" -"Tar files may contain multiple versions of the same file. Later ones are " -"expected to overwrite any earlier ones. This feature is crucial to allow " -"updating tape archives, but can be abused maliciously." +msgid "Tar files may contain multiple versions of the same file. Later ones are expected to overwrite any earlier ones. This feature is crucial to allow updating tape archives, but can be abused maliciously." msgstr "" -#: ../../library/tarfile.rst:1204 -msgid "" -"*tarfile* does not protect against issues with “live” data, e.g. an attacker " -"tinkering with the destination (or source) directory while extraction (or " -"archiving) is in progress." +msgid "*tarfile* does not protect against issues with “live” data, e.g. an attacker tinkering with the destination (or source) directory while extraction (or archiving) is in progress." msgstr "" -#: ../../library/tarfile.rst:1210 msgid "Supporting older Python versions" msgstr "" -#: ../../library/tarfile.rst:1212 -msgid "" -"Extraction filters were added to Python 3.12, but may be backported to older " -"versions as security updates. To check whether the feature is available, use " -"e.g. ``hasattr(tarfile, 'data_filter')`` rather than checking the Python " -"version." +msgid "Extraction filters were added to Python 3.12, but may be backported to older versions as security updates. To check whether the feature is available, use e.g. ``hasattr(tarfile, 'data_filter')`` rather than checking the Python version." msgstr "" -#: ../../library/tarfile.rst:1217 -msgid "" -"The following examples show how to support Python versions with and without " -"the feature. Note that setting ``extraction_filter`` will affect any " -"subsequent operations." +msgid "The following examples show how to support Python versions with and without the feature. Note that setting ``extraction_filter`` will affect any subsequent operations." msgstr "" -#: ../../library/tarfile.rst:1221 msgid "Fully trusted archive::" msgstr "" -#: ../../library/tarfile.rst:1223 msgid "" "my_tarfile.extraction_filter = (lambda member, path: member)\n" "my_tarfile.extractall()" msgstr "" -#: ../../library/tarfile.rst:1226 -msgid "" -"Use the ``'data'`` filter if available, but revert to Python 3.11 behavior " -"(``'fully_trusted'``) if this feature is not available::" +msgid "Use the ``'data'`` filter if available, but revert to Python 3.11 behavior (``'fully_trusted'``) if this feature is not available::" msgstr "" -#: ../../library/tarfile.rst:1229 msgid "" "my_tarfile.extraction_filter = getattr(tarfile, 'data_filter',\n" " (lambda member, path: member))\n" "my_tarfile.extractall()" msgstr "" -#: ../../library/tarfile.rst:1233 msgid "Use the ``'data'`` filter; *fail* if it is not available::" msgstr "" -#: ../../library/tarfile.rst:1235 msgid "my_tarfile.extractall(filter=tarfile.data_filter)" msgstr "" -#: ../../library/tarfile.rst:1237 msgid "or::" msgstr "" -#: ../../library/tarfile.rst:1239 msgid "" "my_tarfile.extraction_filter = tarfile.data_filter\n" "my_tarfile.extractall()" msgstr "" -#: ../../library/tarfile.rst:1242 msgid "Use the ``'data'`` filter; *warn* if it is not available::" msgstr "" -#: ../../library/tarfile.rst:1244 msgid "" "if hasattr(tarfile, 'data_filter'):\n" " my_tarfile.extractall(filter='data')\n" @@ -1688,28 +959,20 @@ msgid "" " my_tarfile.extractall()" msgstr "" -#: ../../library/tarfile.rst:1253 msgid "Stateful extraction filter example" msgstr "" -#: ../../library/tarfile.rst:1255 -msgid "" -"While *tarfile*'s extraction methods take a simple *filter* callable, custom " -"filters may be more complex objects with an internal state. It may be useful " -"to write these as context managers, to be used like this::" +msgid "While *tarfile*'s extraction methods take a simple *filter* callable, custom filters may be more complex objects with an internal state. It may be useful to write these as context managers, to be used like this::" msgstr "" -#: ../../library/tarfile.rst:1259 msgid "" "with StatefulFilter() as filter_func:\n" " tar.extractall(path, filter=filter_func)" msgstr "" -#: ../../library/tarfile.rst:1262 msgid "Such a filter can be written as, for example::" msgstr "" -#: ../../library/tarfile.rst:1264 msgid "" "class StatefulFilter:\n" " def __init__(self):\n" @@ -1726,108 +989,72 @@ msgid "" " print(f'{self.file_count} files extracted')" msgstr "" -#: ../../library/tarfile.rst:1284 msgid "Command-Line Interface" msgstr "" -#: ../../library/tarfile.rst:1288 -msgid "" -"The :mod:`!tarfile` module provides a simple command-line interface to " -"interact with tar archives." +msgid "The :mod:`!tarfile` module provides a simple command-line interface to interact with tar archives." msgstr "" -#: ../../library/tarfile.rst:1291 -msgid "" -"If you want to create a new tar archive, specify its name after " -"the :option:`-c` option and then list the filename(s) that should be " -"included:" +msgid "If you want to create a new tar archive, specify its name after the :option:`-c` option and then list the filename(s) that should be included:" msgstr "" -#: ../../library/tarfile.rst:1294 msgid "$ python -m tarfile -c monty.tar spam.txt eggs.txt" msgstr "" -#: ../../library/tarfile.rst:1298 msgid "Passing a directory is also acceptable:" msgstr "" -#: ../../library/tarfile.rst:1300 msgid "$ python -m tarfile -c monty.tar life-of-brian_1979/" msgstr "" -#: ../../library/tarfile.rst:1304 -msgid "" -"If you want to extract a tar archive into the current directory, use " -"the :option:`-e` option:" +msgid "If you want to extract a tar archive into the current directory, use the :option:`-e` option:" msgstr "" -#: ../../library/tarfile.rst:1307 msgid "$ python -m tarfile -e monty.tar" msgstr "" -#: ../../library/tarfile.rst:1311 -msgid "" -"You can also extract a tar archive into a different directory by passing the " -"directory's name:" +msgid "You can also extract a tar archive into a different directory by passing the directory's name:" msgstr "" -#: ../../library/tarfile.rst:1314 msgid "$ python -m tarfile -e monty.tar other-dir/" msgstr "" -#: ../../library/tarfile.rst:1318 msgid "For a list of the files in a tar archive, use the :option:`-l` option:" msgstr "" -#: ../../library/tarfile.rst:1320 msgid "$ python -m tarfile -l monty.tar" msgstr "" -#: ../../library/tarfile.rst:1326 msgid "Command-line options" msgstr "" -#: ../../library/tarfile.rst:1331 msgid "List files in a tarfile." msgstr "" -#: ../../library/tarfile.rst:1336 msgid "Create tarfile from source files." msgstr "" -#: ../../library/tarfile.rst:1341 -msgid "" -"Extract tarfile into the current directory if *output_dir* is not specified." +msgid "Extract tarfile into the current directory if *output_dir* is not specified." msgstr "" -#: ../../library/tarfile.rst:1346 msgid "Test whether the tarfile is valid or not." msgstr "" -#: ../../library/tarfile.rst:1350 msgid "Verbose output." msgstr "" -#: ../../library/tarfile.rst:1354 -msgid "" -"Specifies the *filter* for ``--extract``. See :ref:`tarfile-extraction-" -"filter` for details. Only string names are accepted (that is, " -"``fully_trusted``, ``tar``, and ``data``)." +msgid "Specifies the *filter* for ``--extract``. See :ref:`tarfile-extraction-filter` for details. Only string names are accepted (that is, ``fully_trusted``, ``tar``, and ``data``)." msgstr "" -#: ../../library/tarfile.rst:1362 msgid "Examples" msgstr "" -#: ../../library/tarfile.rst:1365 msgid "Reading examples" msgstr "" -#: ../../library/tarfile.rst:1367 msgid "How to extract an entire tar archive to the current working directory::" msgstr "" -#: ../../library/tarfile.rst:1369 msgid "" "import tarfile\n" "tar = tarfile.open(\"sample.tar.gz\")\n" @@ -1835,13 +1062,9 @@ msgid "" "tar.close()" msgstr "" -#: ../../library/tarfile.rst:1374 -msgid "" -"How to extract a subset of a tar archive with :meth:`TarFile.extractall` " -"using a generator function instead of a list::" +msgid "How to extract a subset of a tar archive with :meth:`TarFile.extractall` using a generator function instead of a list::" msgstr "" -#: ../../library/tarfile.rst:1377 msgid "" "import os\n" "import tarfile\n" @@ -1856,19 +1079,14 @@ msgid "" "tar.close()" msgstr "" -#: ../../library/tarfile.rst:1389 -msgid "" -"How to read a gzip compressed tar archive and display some member " -"information::" +msgid "How to read a gzip compressed tar archive and display some member information::" msgstr "" -#: ../../library/tarfile.rst:1391 msgid "" "import tarfile\n" "tar = tarfile.open(\"sample.tar.gz\", \"r:gz\")\n" "for tarinfo in tar:\n" -" print(tarinfo.name, \"is\", tarinfo.size, \"bytes in size and is \", " -"end=\"\")\n" +" print(tarinfo.name, \"is\", tarinfo.size, \"bytes in size and is \", end=\"\")\n" " if tarinfo.isreg():\n" " print(\"a regular file.\")\n" " elif tarinfo.isdir():\n" @@ -1878,15 +1096,12 @@ msgid "" "tar.close()" msgstr "" -#: ../../library/tarfile.rst:1404 msgid "Writing examples" msgstr "" -#: ../../library/tarfile.rst:1406 msgid "How to create an uncompressed tar archive from a list of filenames::" msgstr "" -#: ../../library/tarfile.rst:1408 msgid "" "import tarfile\n" "tar = tarfile.open(\"sample.tar\", \"w\")\n" @@ -1895,11 +1110,9 @@ msgid "" "tar.close()" msgstr "" -#: ../../library/tarfile.rst:1414 msgid "The same example using the :keyword:`with` statement::" msgstr "" -#: ../../library/tarfile.rst:1416 msgid "" "import tarfile\n" "with tarfile.open(\"sample.tar\", \"w\") as tar:\n" @@ -1907,29 +1120,20 @@ msgid "" " tar.add(name)" msgstr "" -#: ../../library/tarfile.rst:1421 -msgid "" -"How to create and write an archive to stdout using :data:`sys.stdout.buffer " -"` in the *fileobj* parameter in :meth:`TarFile.add`::" +msgid "How to create and write an archive to stdout using :data:`sys.stdout.buffer ` in the *fileobj* parameter in :meth:`TarFile.add`::" msgstr "" -#: ../../library/tarfile.rst:1425 msgid "" "import sys\n" "import tarfile\n" -"with tarfile.open(\"sample.tar.gz\", \"w|gz\", fileobj=sys.stdout.buffer) as " -"tar:\n" +"with tarfile.open(\"sample.tar.gz\", \"w|gz\", fileobj=sys.stdout.buffer) as tar:\n" " for name in [\"foo\", \"bar\", \"quux\"]:\n" " tar.add(name)" msgstr "" -#: ../../library/tarfile.rst:1431 -msgid "" -"How to create an archive and reset the user information using the *filter* " -"parameter in :meth:`TarFile.add`::" +msgid "How to create an archive and reset the user information using the *filter* parameter in :meth:`TarFile.add`::" msgstr "" -#: ../../library/tarfile.rst:1434 msgid "" "import tarfile\n" "def reset(tarinfo):\n" @@ -1941,119 +1145,47 @@ msgid "" "tar.close()" msgstr "" -#: ../../library/tarfile.rst:1447 msgid "Supported tar formats" msgstr "" -#: ../../library/tarfile.rst:1449 -msgid "" -"There are three tar formats that can be created with the :mod:`!tarfile` " -"module:" +msgid "There are three tar formats that can be created with the :mod:`!tarfile` module:" msgstr "" -#: ../../library/tarfile.rst:1451 -msgid "" -"The POSIX.1-1988 ustar format (:const:`USTAR_FORMAT`). It supports filenames " -"up to a length of at best 256 characters and linknames up to 100 characters. " -"The maximum file size is 8 GiB. This is an old and limited but widely " -"supported format." +msgid "The POSIX.1-1988 ustar format (:const:`USTAR_FORMAT`). It supports filenames up to a length of at best 256 characters and linknames up to 100 characters. The maximum file size is 8 GiB. This is an old and limited but widely supported format." msgstr "" -#: ../../library/tarfile.rst:1456 -msgid "" -"The GNU tar format (:const:`GNU_FORMAT`). It supports long filenames and " -"linknames, files bigger than 8 GiB and sparse files. It is the de facto " -"standard on GNU/Linux systems. :mod:`!tarfile` fully supports the GNU tar " -"extensions for long names, sparse file support is read-only." +msgid "The GNU tar format (:const:`GNU_FORMAT`). It supports long filenames and linknames, files bigger than 8 GiB and sparse files. It is the de facto standard on GNU/Linux systems. :mod:`!tarfile` fully supports the GNU tar extensions for long names, sparse file support is read-only." msgstr "" -#: ../../library/tarfile.rst:1461 -msgid "" -"The POSIX.1-2001 pax format (:const:`PAX_FORMAT`). It is the most flexible " -"format with virtually no limits. It supports long filenames and linknames, " -"large files and stores pathnames in a portable way. Modern tar " -"implementations, including GNU tar, bsdtar/libarchive and star, fully " -"support extended *pax* features; some old or unmaintained libraries may not, " -"but should treat *pax* archives as if they were in the universally supported " -"*ustar* format. It is the current default format for new archives." +msgid "The POSIX.1-2001 pax format (:const:`PAX_FORMAT`). It is the most flexible format with virtually no limits. It supports long filenames and linknames, large files and stores pathnames in a portable way. Modern tar implementations, including GNU tar, bsdtar/libarchive and star, fully support extended *pax* features; some old or unmaintained libraries may not, but should treat *pax* archives as if they were in the universally supported *ustar* format. It is the current default format for new archives." msgstr "" -#: ../../library/tarfile.rst:1469 -msgid "" -"It extends the existing *ustar* format with extra headers for information " -"that cannot be stored otherwise. There are two flavours of pax headers: " -"Extended headers only affect the subsequent file header, global headers are " -"valid for the complete archive and affect all following files. All the data " -"in a pax header is encoded in *UTF-8* for portability reasons." +msgid "It extends the existing *ustar* format with extra headers for information that cannot be stored otherwise. There are two flavours of pax headers: Extended headers only affect the subsequent file header, global headers are valid for the complete archive and affect all following files. All the data in a pax header is encoded in *UTF-8* for portability reasons." msgstr "" -#: ../../library/tarfile.rst:1475 -msgid "" -"There are some more variants of the tar format which can be read, but not " -"created:" +msgid "There are some more variants of the tar format which can be read, but not created:" msgstr "" -#: ../../library/tarfile.rst:1478 -msgid "" -"The ancient V7 format. This is the first tar format from Unix Seventh " -"Edition, storing only regular files and directories. Names must not be " -"longer than 100 characters, there is no user/group name information. Some " -"archives have miscalculated header checksums in case of fields with non-" -"ASCII characters." +msgid "The ancient V7 format. This is the first tar format from Unix Seventh Edition, storing only regular files and directories. Names must not be longer than 100 characters, there is no user/group name information. Some archives have miscalculated header checksums in case of fields with non-ASCII characters." msgstr "" -#: ../../library/tarfile.rst:1483 -msgid "" -"The SunOS tar extended format. This format is a variant of the POSIX.1-2001 " -"pax format, but is not compatible." +msgid "The SunOS tar extended format. This format is a variant of the POSIX.1-2001 pax format, but is not compatible." msgstr "" -#: ../../library/tarfile.rst:1489 msgid "Unicode issues" msgstr "" -#: ../../library/tarfile.rst:1491 -msgid "" -"The tar format was originally conceived to make backups on tape drives with " -"the main focus on preserving file system information. Nowadays tar archives " -"are commonly used for file distribution and exchanging archives over " -"networks. One problem of the original format (which is the basis of all " -"other formats) is that there is no concept of supporting different character " -"encodings. For example, an ordinary tar archive created on a *UTF-8* system " -"cannot be read correctly on a *Latin-1* system if it contains non-*ASCII* " -"characters. Textual metadata (like filenames, linknames, user/group names) " -"will appear damaged. Unfortunately, there is no way to autodetect the " -"encoding of an archive. The pax format was designed to solve this problem. " -"It stores non-ASCII metadata using the universal character encoding *UTF-8*." -msgstr "" - -#: ../../library/tarfile.rst:1503 -msgid "" -"The details of character conversion in :mod:`!tarfile` are controlled by the " -"*encoding* and *errors* keyword arguments of the :class:`TarFile` class." +msgid "The tar format was originally conceived to make backups on tape drives with the main focus on preserving file system information. Nowadays tar archives are commonly used for file distribution and exchanging archives over networks. One problem of the original format (which is the basis of all other formats) is that there is no concept of supporting different character encodings. For example, an ordinary tar archive created on a *UTF-8* system cannot be read correctly on a *Latin-1* system if it contains non-*ASCII* characters. Textual metadata (like filenames, linknames, user/group names) will appear damaged. Unfortunately, there is no way to autodetect the encoding of an archive. The pax format was designed to solve this problem. It stores non-ASCII metadata using the universal character encoding *UTF-8*." msgstr "" -#: ../../library/tarfile.rst:1506 -msgid "" -"*encoding* defines the character encoding to use for the metadata in the " -"archive. The default value is :func:`sys.getfilesystemencoding` or " -"``'ascii'`` as a fallback. Depending on whether the archive is read or " -"written, the metadata must be either decoded or encoded. If *encoding* is " -"not set appropriately, this conversion may fail." +msgid "The details of character conversion in :mod:`!tarfile` are controlled by the *encoding* and *errors* keyword arguments of the :class:`TarFile` class." msgstr "" -#: ../../library/tarfile.rst:1512 -msgid "" -"The *errors* argument defines how characters are treated that cannot be " -"converted. Possible values are listed in section :ref:`error-handlers`. The " -"default scheme is ``'surrogateescape'`` which Python also uses for its file " -"system calls, see :ref:`os-filenames`." +msgid "*encoding* defines the character encoding to use for the metadata in the archive. The default value is :func:`sys.getfilesystemencoding` or ``'ascii'`` as a fallback. Depending on whether the archive is read or written, the metadata must be either decoded or encoded. If *encoding* is not set appropriately, this conversion may fail." msgstr "" -#: ../../library/tarfile.rst:1517 -msgid "" -"For :const:`PAX_FORMAT` archives (the default), *encoding* is generally not " -"needed because all the metadata is stored using *UTF-8*. *encoding* is only " -"used in the rare cases when binary pax headers are decoded or when strings " -"with surrogate characters are stored." +msgid "The *errors* argument defines how characters are treated that cannot be converted. Possible values are listed in section :ref:`error-handlers`. The default scheme is ``'surrogateescape'`` which Python also uses for its file system calls, see :ref:`os-filenames`." +msgstr "" + +msgid "For :const:`PAX_FORMAT` archives (the default), *encoding* is generally not needed because all the metadata is stored using *UTF-8*. *encoding* is only used in the rare cases when binary pax headers are decoded or when strings with surrogate characters are stored." msgstr "" diff --git a/library/telnetlib.po b/library/telnetlib.po index c999be57..8a5d4ad1 100644 --- a/library/telnetlib.po +++ b/library/telnetlib.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2024-11-19 01:03+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,26 +21,14 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/telnetlib.rst:2 msgid ":mod:`!telnetlib` --- Telnet client" msgstr "" -#: ../../library/telnetlib.rst:10 -msgid "" -"This module is no longer part of the Python standard library. It " -"was :ref:`removed in Python 3.13 ` after being " -"deprecated in Python 3.11. The removal was decided in :pep:`594`." +msgid "This module is no longer part of the Python standard library. It was :ref:`removed in Python 3.13 ` after being deprecated in Python 3.11. The removal was decided in :pep:`594`." msgstr "" -#: ../../library/telnetlib.rst:14 -msgid "" -"Possible replacements are third-party libraries from " -"PyPI: :pypi:`telnetlib3` or :pypi:`Exscript`. These are not supported or " -"maintained by the Python core team." +msgid "Possible replacements are third-party libraries from PyPI: :pypi:`telnetlib3` or :pypi:`Exscript`. These are not supported or maintained by the Python core team." msgstr "" -#: ../../library/telnetlib.rst:18 -msgid "" -"The last version of Python that provided the :mod:`!telnetlib` module was " -"`Python 3.12 `_." +msgid "The last version of Python that provided the :mod:`!telnetlib` module was `Python 3.12 `_." msgstr "" diff --git a/library/tempfile.po b/library/tempfile.po index 21b667ac..40d7f736 100644 --- a/library/tempfile.po +++ b/library/tempfile.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:14+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,526 +24,240 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/tempfile.rst:2 msgid ":mod:`!tempfile` --- Generate temporary files and directories" msgstr "" -#: ../../library/tempfile.rst:9 msgid "**Source code:** :source:`Lib/tempfile.py`" msgstr "" -#: ../../library/tempfile.rst:17 -msgid "" -"This module creates temporary files and directories. It works on all " -"supported " -"platforms. :class:`TemporaryFile`, :class:`NamedTemporaryFile`, :class:`TemporaryDirectory`, " -"and :class:`SpooledTemporaryFile` are high-level interfaces which provide " -"automatic cleanup and can be used as :term:`context managers `. :func:`mkstemp` and :func:`mkdtemp` are lower-level functions " -"which require manual cleanup." +msgid "This module creates temporary files and directories. It works on all supported platforms. :class:`TemporaryFile`, :class:`NamedTemporaryFile`, :class:`TemporaryDirectory`, and :class:`SpooledTemporaryFile` are high-level interfaces which provide automatic cleanup and can be used as :term:`context managers `. :func:`mkstemp` and :func:`mkdtemp` are lower-level functions which require manual cleanup." msgstr "" -#: ../../library/tempfile.rst:24 -msgid "" -"All the user-callable functions and constructors take additional arguments " -"which allow direct control over the location and name of temporary files and " -"directories. Files names used by this module include a string of random " -"characters which allows those files to be securely created in shared " -"temporary directories. To maintain backward compatibility, the argument " -"order is somewhat odd; it is recommended to use keyword arguments for " -"clarity." +msgid "All the user-callable functions and constructors take additional arguments which allow direct control over the location and name of temporary files and directories. Files names used by this module include a string of random characters which allows those files to be securely created in shared temporary directories. To maintain backward compatibility, the argument order is somewhat odd; it is recommended to use keyword arguments for clarity." msgstr "" -#: ../../library/tempfile.rst:32 msgid "The module defines the following user-callable items:" msgstr "" -#: ../../library/tempfile.rst:36 -msgid "" -"Return a :term:`file-like object` that can be used as a temporary storage " -"area. The file is created securely, using the same rules as :func:`mkstemp`. " -"It will be destroyed as soon as it is closed (including an implicit close " -"when the object is garbage collected). Under Unix, the directory entry for " -"the file is either not created at all or is removed immediately after the " -"file is created. Other platforms do not support this; your code should not " -"rely on a temporary file created using this function having or not having a " -"visible name in the file system." +msgid "Return a :term:`file-like object` that can be used as a temporary storage area. The file is created securely, using the same rules as :func:`mkstemp`. It will be destroyed as soon as it is closed (including an implicit close when the object is garbage collected). Under Unix, the directory entry for the file is either not created at all or is removed immediately after the file is created. Other platforms do not support this; your code should not rely on a temporary file created using this function having or not having a visible name in the file system." msgstr "" -#: ../../library/tempfile.rst:44 -msgid "" -"The resulting object can be used as a :term:`context manager` " -"(see :ref:`tempfile-examples`). On completion of the context or destruction " -"of the file object the temporary file will be removed from the filesystem." +msgid "The resulting object can be used as a :term:`context manager` (see :ref:`tempfile-examples`). On completion of the context or destruction of the file object the temporary file will be removed from the filesystem." msgstr "" -#: ../../library/tempfile.rst:49 -msgid "" -"The *mode* parameter defaults to ``'w+b'`` so that the file created can be " -"read and written without being closed. Binary mode is used so that it " -"behaves consistently on all platforms without regard for the data that is " -"stored. *buffering*, *encoding*, *errors* and *newline* are interpreted as " -"for :func:`open`." +msgid "The *mode* parameter defaults to ``'w+b'`` so that the file created can be read and written without being closed. Binary mode is used so that it behaves consistently on all platforms without regard for the data that is stored. *buffering*, *encoding*, *errors* and *newline* are interpreted as for :func:`open`." msgstr "" -#: ../../library/tempfile.rst:55 -msgid "" -"The *dir*, *prefix* and *suffix* parameters have the same meaning and " -"defaults as with :func:`mkstemp`." +msgid "The *dir*, *prefix* and *suffix* parameters have the same meaning and defaults as with :func:`mkstemp`." msgstr "" -#: ../../library/tempfile.rst:58 -msgid "" -"The returned object is a true file object on POSIX platforms. On other " -"platforms, it is a file-like object whose :attr:`!file` attribute is the " -"underlying true file object." +msgid "The returned object is a true file object on POSIX platforms. On other platforms, it is a file-like object whose :attr:`!file` attribute is the underlying true file object." msgstr "" -#: ../../library/tempfile.rst:62 -msgid "" -"The :py:const:`os.O_TMPFILE` flag is used if it is available and works " -"(Linux-specific, requires Linux kernel 3.11 or later)." +msgid "The :py:const:`os.O_TMPFILE` flag is used if it is available and works (Linux-specific, requires Linux kernel 3.11 or later)." msgstr "" -#: ../../library/tempfile.rst:65 -msgid "" -"On platforms that are neither Posix nor Cygwin, TemporaryFile is an alias " -"for NamedTemporaryFile." +msgid "On platforms that are neither Posix nor Cygwin, TemporaryFile is an alias for NamedTemporaryFile." msgstr "" -#: ../../library/tempfile.rst:68 ../../library/tempfile.rst:137 -#: ../../library/tempfile.rst:266 -msgid "" -"Raises an :ref:`auditing event ` ``tempfile.mkstemp`` with " -"argument ``fullpath``." +msgid "Raises an :ref:`auditing event ` ``tempfile.mkstemp`` with argument ``fullpath``." msgstr "" -#: ../../library/tempfile.rst:72 msgid "The :py:const:`os.O_TMPFILE` flag is now used if available." msgstr "" -#: ../../library/tempfile.rst:74 ../../library/tempfile.rst:139 -#: ../../library/tempfile.rst:169 msgid "Added *errors* parameter." msgstr "" -#: ../../library/tempfile.rst:80 -msgid "" -"This function operates exactly as :func:`TemporaryFile` does, except the " -"following differences:" +msgid "This function operates exactly as :func:`TemporaryFile` does, except the following differences:" msgstr "" -#: ../../library/tempfile.rst:83 -msgid "" -"This function returns a file that is guaranteed to have a visible name in " -"the file system." +msgid "This function returns a file that is guaranteed to have a visible name in the file system." msgstr "" -#: ../../library/tempfile.rst:85 -msgid "" -"To manage the named file, it extends the parameters of :func:`TemporaryFile` " -"with *delete* and *delete_on_close* parameters that determine whether and " -"how the named file should be automatically deleted." +msgid "To manage the named file, it extends the parameters of :func:`TemporaryFile` with *delete* and *delete_on_close* parameters that determine whether and how the named file should be automatically deleted." msgstr "" -#: ../../library/tempfile.rst:89 -msgid "" -"The returned object is always a :term:`file-like object` whose :attr:`!file` " -"attribute is the underlying true file object. This file-like object can be " -"used in a :keyword:`with` statement, just like a normal file. The name of " -"the temporary file can be retrieved from the :attr:`!name` attribute of the " -"returned file-like object. On Unix, unlike with the :func:`TemporaryFile`, " -"the directory entry does not get unlinked immediately after the file " -"creation." +msgid "The returned object is always a :term:`file-like object` whose :attr:`!file` attribute is the underlying true file object. This file-like object can be used in a :keyword:`with` statement, just like a normal file. The name of the temporary file can be retrieved from the :attr:`!name` attribute of the returned file-like object. On Unix, unlike with the :func:`TemporaryFile`, the directory entry does not get unlinked immediately after the file creation." msgstr "" -#: ../../library/tempfile.rst:97 -msgid "" -"If *delete* is true (the default) and *delete_on_close* is true (the " -"default), the file is deleted as soon as it is closed. If *delete* is true " -"and *delete_on_close* is false, the file is deleted on context manager exit " -"only, or else when the :term:`file-like object` is finalized. Deletion is " -"not always guaranteed in this case (see :meth:`object.__del__`). If *delete* " -"is false, the value of *delete_on_close* is ignored." +msgid "If *delete* is true (the default) and *delete_on_close* is true (the default), the file is deleted as soon as it is closed. If *delete* is true and *delete_on_close* is false, the file is deleted on context manager exit only, or else when the :term:`file-like object` is finalized. Deletion is not always guaranteed in this case (see :meth:`object.__del__`). If *delete* is false, the value of *delete_on_close* is ignored." msgstr "" -#: ../../library/tempfile.rst:104 -msgid "" -"Therefore to use the name of the temporary file to reopen the file after " -"closing it, either make sure not to delete the file upon closure (set the " -"*delete* parameter to be false) or, in case the temporary file is created in " -"a :keyword:`with` statement, set the *delete_on_close* parameter to be " -"false. The latter approach is recommended as it provides assistance in " -"automatic cleaning of the temporary file upon the context manager exit." +msgid "Therefore to use the name of the temporary file to reopen the file after closing it, either make sure not to delete the file upon closure (set the *delete* parameter to be false) or, in case the temporary file is created in a :keyword:`with` statement, set the *delete_on_close* parameter to be false. The latter approach is recommended as it provides assistance in automatic cleaning of the temporary file upon the context manager exit." msgstr "" -#: ../../library/tempfile.rst:111 -msgid "" -"Opening the temporary file again by its name while it is still open works as " -"follows:" +msgid "Opening the temporary file again by its name while it is still open works as follows:" msgstr "" -#: ../../library/tempfile.rst:114 msgid "On POSIX the file can always be opened again." msgstr "" -#: ../../library/tempfile.rst:115 -msgid "" -"On Windows, make sure that at least one of the following conditions are " -"fulfilled:" +msgid "On Windows, make sure that at least one of the following conditions are fulfilled:" msgstr "" -#: ../../library/tempfile.rst:118 msgid "*delete* is false" msgstr "" -#: ../../library/tempfile.rst:119 -msgid "" -"additional open shares delete access (e.g. by calling :func:`os.open` with " -"the flag ``O_TEMPORARY``)" +msgid "additional open shares delete access (e.g. by calling :func:`os.open` with the flag ``O_TEMPORARY``)" msgstr "" -#: ../../library/tempfile.rst:121 -msgid "" -"*delete* is true but *delete_on_close* is false. Note, that in this case the " -"additional opens that do not share delete access (e.g. created via " -"builtin :func:`open`) must be closed before exiting the context manager, " -"else the :func:`os.unlink` call on context manager exit will fail with " -"a :exc:`PermissionError`." +msgid "*delete* is true but *delete_on_close* is false. Note, that in this case the additional opens that do not share delete access (e.g. created via builtin :func:`open`) must be closed before exiting the context manager, else the :func:`os.unlink` call on context manager exit will fail with a :exc:`PermissionError`." msgstr "" -#: ../../library/tempfile.rst:127 -msgid "" -"On Windows, if *delete_on_close* is false, and the file is created in a " -"directory for which the user lacks delete access, then the :func:`os.unlink` " -"call on exit of the context manager will fail with a :exc:`PermissionError`. " -"This cannot happen when *delete_on_close* is true because delete access is " -"requested by the open, which fails immediately if the requested access is " -"not granted." +msgid "On Windows, if *delete_on_close* is false, and the file is created in a directory for which the user lacks delete access, then the :func:`os.unlink` call on exit of the context manager will fail with a :exc:`PermissionError`. This cannot happen when *delete_on_close* is true because delete access is requested by the open, which fails immediately if the requested access is not granted." msgstr "" -#: ../../library/tempfile.rst:134 -msgid "" -"On POSIX (only), a process that is terminated abruptly with SIGKILL cannot " -"automatically delete any NamedTemporaryFiles it created." +msgid "On POSIX (only), a process that is terminated abruptly with SIGKILL cannot automatically delete any NamedTemporaryFiles it created." msgstr "" -#: ../../library/tempfile.rst:142 msgid "Added *delete_on_close* parameter." msgstr "" -#: ../../library/tempfile.rst:148 -msgid "" -"This class operates exactly as :func:`TemporaryFile` does, except that data " -"is spooled in memory until the file size exceeds *max_size*, or until the " -"file's :func:`~io.IOBase.fileno` method is called, at which point the " -"contents are written to disk and operation proceeds as " -"with :func:`TemporaryFile`." +msgid "This class operates exactly as :func:`TemporaryFile` does, except that data is spooled in memory until the file size exceeds *max_size*, or until the file's :func:`~io.IOBase.fileno` method is called, at which point the contents are written to disk and operation proceeds as with :func:`TemporaryFile`." msgstr "" -#: ../../library/tempfile.rst:156 -msgid "" -"The resulting file has one additional method, :meth:`!rollover`, which " -"causes the file to roll over to an on-disk file regardless of its size." +msgid "The resulting file has one additional method, :meth:`!rollover`, which causes the file to roll over to an on-disk file regardless of its size." msgstr "" -#: ../../library/tempfile.rst:159 -msgid "" -"The returned object is a file-like object whose :attr:`!_file` attribute is " -"either an :class:`io.BytesIO` or :class:`io.TextIOWrapper` object (depending " -"on whether binary or text *mode* was specified) or a true file object, " -"depending on whether :meth:`rollover` has been called. This file-like " -"object can be used in a :keyword:`with` statement, just like a normal file." +msgid "The returned object is a file-like object whose :attr:`!_file` attribute is either an :class:`io.BytesIO` or :class:`io.TextIOWrapper` object (depending on whether binary or text *mode* was specified) or a true file object, depending on whether :meth:`rollover` has been called. This file-like object can be used in a :keyword:`with` statement, just like a normal file." msgstr "" -#: ../../library/tempfile.rst:166 msgid "the truncate method now accepts a *size* argument." msgstr "" -#: ../../library/tempfile.rst:172 -msgid "" -"Fully implements the :class:`io.BufferedIOBase` and :class:`io.TextIOBase` " -"abstract base classes (depending on whether binary or text *mode* was " -"specified)." +msgid "Fully implements the :class:`io.BufferedIOBase` and :class:`io.TextIOBase` abstract base classes (depending on whether binary or text *mode* was specified)." msgstr "" -#: ../../library/tempfile.rst:180 -msgid "" -"This class securely creates a temporary directory using the same rules " -"as :func:`mkdtemp`. The resulting object can be used as a :term:`context " -"manager` (see :ref:`tempfile-examples`). On completion of the context or " -"destruction of the temporary directory object, the newly created temporary " -"directory and all its contents are removed from the filesystem." +msgid "This class securely creates a temporary directory using the same rules as :func:`mkdtemp`. The resulting object can be used as a :term:`context manager` (see :ref:`tempfile-examples`). On completion of the context or destruction of the temporary directory object, the newly created temporary directory and all its contents are removed from the filesystem." msgstr "" -#: ../../library/tempfile.rst:188 -msgid "" -"The directory name can be retrieved from the :attr:`!name` attribute of the " -"returned object. When the returned object is used as a :term:`context " -"manager`, the :attr:`!name` will be assigned to the target of the :keyword:`!" -"as` clause in the :keyword:`with` statement, if there is one." +msgid "The directory name can be retrieved from the :attr:`!name` attribute of the returned object. When the returned object is used as a :term:`context manager`, the :attr:`!name` will be assigned to the target of the :keyword:`!as` clause in the :keyword:`with` statement, if there is one." msgstr "" -#: ../../library/tempfile.rst:195 -msgid "" -"The directory can be explicitly cleaned up by calling the :meth:`!cleanup` " -"method. If *ignore_cleanup_errors* is true, any unhandled exceptions during " -"explicit or implicit cleanup (such as a :exc:`PermissionError` removing open " -"files on Windows) will be ignored, and the remaining removable items deleted " -"on a \"best-effort\" basis. Otherwise, errors will be raised in whatever " -"context cleanup occurs (the :meth:`!cleanup` call, exiting the context " -"manager, when the object is garbage-collected or during interpreter " -"shutdown)." +msgid "The directory can be explicitly cleaned up by calling the :meth:`!cleanup` method. If *ignore_cleanup_errors* is true, any unhandled exceptions during explicit or implicit cleanup (such as a :exc:`PermissionError` removing open files on Windows) will be ignored, and the remaining removable items deleted on a \"best-effort\" basis. Otherwise, errors will be raised in whatever context cleanup occurs (the :meth:`!cleanup` call, exiting the context manager, when the object is garbage-collected or during interpreter shutdown)." msgstr "" -#: ../../library/tempfile.rst:204 -msgid "" -"The *delete* parameter can be used to disable cleanup of the directory tree " -"upon exiting the context. While it may seem unusual for a context manager " -"to disable the action taken when exiting the context, it can be useful " -"during debugging or when you need your cleanup behavior to be conditional " -"based on other logic." +msgid "The *delete* parameter can be used to disable cleanup of the directory tree upon exiting the context. While it may seem unusual for a context manager to disable the action taken when exiting the context, it can be useful during debugging or when you need your cleanup behavior to be conditional based on other logic." msgstr "" -#: ../../library/tempfile.rst:210 ../../library/tempfile.rst:292 -msgid "" -"Raises an :ref:`auditing event ` ``tempfile.mkdtemp`` with " -"argument ``fullpath``." +msgid "Raises an :ref:`auditing event ` ``tempfile.mkdtemp`` with argument ``fullpath``." msgstr "" -#: ../../library/tempfile.rst:214 msgid "Added *ignore_cleanup_errors* parameter." msgstr "" -#: ../../library/tempfile.rst:217 msgid "Added the *delete* parameter." msgstr "" -#: ../../library/tempfile.rst:223 -msgid "" -"Creates a temporary file in the most secure manner possible. There are no " -"race conditions in the file's creation, assuming that the platform properly " -"implements the :const:`os.O_EXCL` flag for :func:`os.open`. The file is " -"readable and writable only by the creating user ID. If the platform uses " -"permission bits to indicate whether a file is executable, the file is " -"executable by no one." +msgid "Creates a temporary file in the most secure manner possible. There are no race conditions in the file's creation, assuming that the platform properly implements the :const:`os.O_EXCL` flag for :func:`os.open`. The file is readable and writable only by the creating user ID. If the platform uses permission bits to indicate whether a file is executable, the file is executable by no one." msgstr "" -#: ../../library/tempfile.rst:230 -msgid "" -"The file descriptor is :ref:`not inherited by child processes " -"`." +msgid "The file descriptor is :ref:`not inherited by child processes `." msgstr "" -#: ../../library/tempfile.rst:232 -msgid "" -"Unlike :func:`TemporaryFile`, the user of :func:`mkstemp` is responsible for " -"closing the file descriptor (for example, using :func:`os.close`) and " -"deleting the temporary file (for example, using :func:`os.remove`)." +msgid "Unlike :func:`TemporaryFile`, the user of :func:`mkstemp` is responsible for closing the file descriptor (for example, using :func:`os.close`) and deleting the temporary file (for example, using :func:`os.remove`)." msgstr "" -#: ../../library/tempfile.rst:236 -msgid "" -"If *suffix* is not ``None``, the file name will end with that suffix, " -"otherwise there will be no suffix. :func:`mkstemp` does not put a dot " -"between the file name and the suffix; if you need one, put it at the " -"beginning of *suffix*." +msgid "If *suffix* is not ``None``, the file name will end with that suffix, otherwise there will be no suffix. :func:`mkstemp` does not put a dot between the file name and the suffix; if you need one, put it at the beginning of *suffix*." msgstr "" -#: ../../library/tempfile.rst:241 -msgid "" -"If *prefix* is not ``None``, the file name will begin with that prefix; " -"otherwise, a default prefix is used. The default is the return value " -"of :func:`gettempprefix` or :func:`gettempprefixb`, as appropriate." +msgid "If *prefix* is not ``None``, the file name will begin with that prefix; otherwise, a default prefix is used. The default is the return value of :func:`gettempprefix` or :func:`gettempprefixb`, as appropriate." msgstr "" -#: ../../library/tempfile.rst:245 -msgid "" -"If *dir* is not ``None``, the file will be created in that directory; " -"otherwise, a default directory is used. The default directory is chosen " -"from a platform-dependent list, but the user of the application can control " -"the directory location by setting the *TMPDIR*, *TEMP* or *TMP* environment " -"variables. There is thus no guarantee that the generated filename will have " -"any nice properties, such as not requiring quoting when passed to external " -"commands via ``os.popen()``." +msgid "If *dir* is not ``None``, the file will be created in that directory; otherwise, a default directory is used. The default directory is chosen from a platform-dependent list, but the user of the application can control the directory location by setting the *TMPDIR*, *TEMP* or *TMP* environment variables. There is thus no guarantee that the generated filename will have any nice properties, such as not requiring quoting when passed to external commands via ``os.popen()``." msgstr "" -#: ../../library/tempfile.rst:253 -msgid "" -"If any of *suffix*, *prefix*, and *dir* are not ``None``, they must be the " -"same type. If they are bytes, the returned name will be bytes instead of " -"str. If you want to force a bytes return value with otherwise default " -"behavior, pass ``suffix=b''``." +msgid "If any of *suffix*, *prefix*, and *dir* are not ``None``, they must be the same type. If they are bytes, the returned name will be bytes instead of str. If you want to force a bytes return value with otherwise default behavior, pass ``suffix=b''``." msgstr "" -#: ../../library/tempfile.rst:259 -msgid "" -"If *text* is specified and true, the file is opened in text mode. Otherwise, " -"(the default) the file is opened in binary mode." +msgid "If *text* is specified and true, the file is opened in text mode. Otherwise, (the default) the file is opened in binary mode." msgstr "" -#: ../../library/tempfile.rst:262 -msgid "" -":func:`mkstemp` returns a tuple containing an OS-level handle to an open " -"file (as would be returned by :func:`os.open`) and the absolute pathname of " -"that file, in that order." +msgid ":func:`mkstemp` returns a tuple containing an OS-level handle to an open file (as would be returned by :func:`os.open`) and the absolute pathname of that file, in that order." msgstr "" -#: ../../library/tempfile.rst:268 ../../library/tempfile.rst:294 -msgid "" -"*suffix*, *prefix*, and *dir* may now be supplied in bytes in order to " -"obtain a bytes return value. Prior to this, only str was allowed. *suffix* " -"and *prefix* now accept and default to ``None`` to cause an appropriate " -"default value to be used." +msgid "*suffix*, *prefix*, and *dir* may now be supplied in bytes in order to obtain a bytes return value. Prior to this, only str was allowed. *suffix* and *prefix* now accept and default to ``None`` to cause an appropriate default value to be used." msgstr "" -#: ../../library/tempfile.rst:274 ../../library/tempfile.rst:300 msgid "The *dir* parameter now accepts a :term:`path-like object`." msgstr "" -#: ../../library/tempfile.rst:280 -msgid "" -"Creates a temporary directory in the most secure manner possible. There are " -"no race conditions in the directory's creation. The directory is readable, " -"writable, and searchable only by the creating user ID." +msgid "Creates a temporary directory in the most secure manner possible. There are no race conditions in the directory's creation. The directory is readable, writable, and searchable only by the creating user ID." msgstr "" -#: ../../library/tempfile.rst:284 -msgid "" -"The user of :func:`mkdtemp` is responsible for deleting the temporary " -"directory and its contents when done with it." +msgid "The user of :func:`mkdtemp` is responsible for deleting the temporary directory and its contents when done with it." msgstr "" -#: ../../library/tempfile.rst:287 -msgid "" -"The *prefix*, *suffix*, and *dir* arguments are the same as " -"for :func:`mkstemp`." +msgid "The *prefix*, *suffix*, and *dir* arguments are the same as for :func:`mkstemp`." msgstr "" -#: ../../library/tempfile.rst:290 msgid ":func:`mkdtemp` returns the absolute pathname of the new directory." msgstr "" -#: ../../library/tempfile.rst:303 -msgid "" -":func:`mkdtemp` now always returns an absolute path, even if *dir* is " -"relative." +msgid ":func:`mkdtemp` now always returns an absolute path, even if *dir* is relative." msgstr "" -#: ../../library/tempfile.rst:309 -msgid "" -"Return the name of the directory used for temporary files. This defines the " -"default value for the *dir* argument to all functions in this module." +msgid "Return the name of the directory used for temporary files. This defines the default value for the *dir* argument to all functions in this module." msgstr "" -#: ../../library/tempfile.rst:313 -msgid "" -"Python searches a standard list of directories to find one which the calling " -"user can create files in. The list is:" +msgid "Python searches a standard list of directories to find one which the calling user can create files in. The list is:" msgstr "" -#: ../../library/tempfile.rst:316 msgid "The directory named by the :envvar:`TMPDIR` environment variable." msgstr "" -#: ../../library/tempfile.rst:318 msgid "The directory named by the :envvar:`TEMP` environment variable." msgstr "" -#: ../../library/tempfile.rst:320 msgid "The directory named by the :envvar:`TMP` environment variable." msgstr "" -#: ../../library/tempfile.rst:322 msgid "A platform-specific location:" msgstr "" -#: ../../library/tempfile.rst:324 -msgid "" -"On Windows, the directories :file:`C:\\\\TEMP`, :file:`C:\\\\TMP`, :file:`\\" -"\\TEMP`, and :file:`\\\\TMP`, in that order." +msgid "On Windows, the directories :file:`C:\\\\TEMP`, :file:`C:\\\\TMP`, :file:`\\\\TEMP`, and :file:`\\\\TMP`, in that order." msgstr "" -#: ../../library/tempfile.rst:327 -msgid "" -"On all other platforms, the directories :file:`/tmp`, :file:`/var/tmp`, " -"and :file:`/usr/tmp`, in that order." +msgid "On all other platforms, the directories :file:`/tmp`, :file:`/var/tmp`, and :file:`/usr/tmp`, in that order." msgstr "" -#: ../../library/tempfile.rst:330 msgid "As a last resort, the current working directory." msgstr "" -#: ../../library/tempfile.rst:332 -msgid "" -"The result of this search is cached, see the description of :data:`tempdir` " -"below." +msgid "The result of this search is cached, see the description of :data:`tempdir` below." msgstr "" -#: ../../library/tempfile.rst:337 -msgid "" -"Always returns a str. Previously it would return any :data:`tempdir` value " -"regardless of type so long as it was not ``None``." +msgid "Always returns a str. Previously it would return any :data:`tempdir` value regardless of type so long as it was not ``None``." msgstr "" -#: ../../library/tempfile.rst:342 msgid "Same as :func:`gettempdir` but the return value is in bytes." msgstr "" -#: ../../library/tempfile.rst:348 -msgid "" -"Return the filename prefix used to create temporary files. This does not " -"contain the directory component." +msgid "Return the filename prefix used to create temporary files. This does not contain the directory component." msgstr "" -#: ../../library/tempfile.rst:353 msgid "Same as :func:`gettempprefix` but the return value is in bytes." msgstr "" -#: ../../library/tempfile.rst:357 -msgid "" -"The module uses a global variable to store the name of the directory used " -"for temporary files returned by :func:`gettempdir`. It can be set directly " -"to override the selection process, but this is discouraged. All functions in " -"this module take a *dir* argument which can be used to specify the " -"directory. This is the recommended approach that does not surprise other " -"unsuspecting code by changing global API behavior." +msgid "The module uses a global variable to store the name of the directory used for temporary files returned by :func:`gettempdir`. It can be set directly to override the selection process, but this is discouraged. All functions in this module take a *dir* argument which can be used to specify the directory. This is the recommended approach that does not surprise other unsuspecting code by changing global API behavior." msgstr "" -#: ../../library/tempfile.rst:366 -msgid "" -"When set to a value other than ``None``, this variable defines the default " -"value for the *dir* argument to the functions defined in this module, " -"including its type, bytes or str. It cannot be a :term:`path-like object`." +msgid "When set to a value other than ``None``, this variable defines the default value for the *dir* argument to the functions defined in this module, including its type, bytes or str. It cannot be a :term:`path-like object`." msgstr "" -#: ../../library/tempfile.rst:371 -msgid "" -"If ``tempdir`` is ``None`` (the default) at any call to any of the above " -"functions except :func:`gettempprefix` it is initialized following the " -"algorithm described in :func:`gettempdir`." +msgid "If ``tempdir`` is ``None`` (the default) at any call to any of the above functions except :func:`gettempprefix` it is initialized following the algorithm described in :func:`gettempdir`." msgstr "" -#: ../../library/tempfile.rst:377 -msgid "" -"Beware that if you set ``tempdir`` to a bytes value, there is a nasty side " -"effect: The global default return type of :func:`mkstemp` " -"and :func:`mkdtemp` changes to bytes when no explicit ``prefix``, " -"``suffix``, or ``dir`` arguments of type str are supplied. Please do not " -"write code expecting or depending on this. This awkward behavior is " -"maintained for compatibility with the historical implementation." +msgid "Beware that if you set ``tempdir`` to a bytes value, there is a nasty side effect: The global default return type of :func:`mkstemp` and :func:`mkdtemp` changes to bytes when no explicit ``prefix``, ``suffix``, or ``dir`` arguments of type str are supplied. Please do not write code expecting or depending on this. This awkward behavior is maintained for compatibility with the historical implementation." msgstr "" -#: ../../library/tempfile.rst:388 msgid "Examples" msgstr "" -#: ../../library/tempfile.rst:390 -msgid "" -"Here are some examples of typical usage of the :mod:`!tempfile` module::" +msgid "Here are some examples of typical usage of the :mod:`!tempfile` module::" msgstr "" -#: ../../library/tempfile.rst:392 msgid "" ">>> import tempfile\n" "\n" @@ -586,43 +300,21 @@ msgid "" "# directory and contents have been removed" msgstr "" -#: ../../library/tempfile.rst:435 msgid "Deprecated functions and variables" msgstr "" -#: ../../library/tempfile.rst:437 -msgid "" -"A historical way to create temporary files was to first generate a file name " -"with the :func:`mktemp` function and then create a file using this name. " -"Unfortunately this is not secure, because a different process may create a " -"file with this name in the time between the call to :func:`mktemp` and the " -"subsequent attempt to create the file by the first process. The solution is " -"to combine the two steps and create the file immediately. This approach is " -"used by :func:`mkstemp` and the other functions described above." +msgid "A historical way to create temporary files was to first generate a file name with the :func:`mktemp` function and then create a file using this name. Unfortunately this is not secure, because a different process may create a file with this name in the time between the call to :func:`mktemp` and the subsequent attempt to create the file by the first process. The solution is to combine the two steps and create the file immediately. This approach is used by :func:`mkstemp` and the other functions described above." msgstr "" -#: ../../library/tempfile.rst:448 msgid "Use :func:`mkstemp` instead." msgstr "" -#: ../../library/tempfile.rst:451 -msgid "" -"Return an absolute pathname of a file that did not exist at the time the " -"call is made. The *prefix*, *suffix*, and *dir* arguments are similar to " -"those of :func:`mkstemp`, except that bytes file names, ``suffix=None`` and " -"``prefix=None`` are not supported." +msgid "Return an absolute pathname of a file that did not exist at the time the call is made. The *prefix*, *suffix*, and *dir* arguments are similar to those of :func:`mkstemp`, except that bytes file names, ``suffix=None`` and ``prefix=None`` are not supported." msgstr "" -#: ../../library/tempfile.rst:458 -msgid "" -"Use of this function may introduce a security hole in your program. By the " -"time you get around to doing anything with the file name it returns, someone " -"else may have beaten you to the punch. :func:`mktemp` usage can be replaced " -"easily with :func:`NamedTemporaryFile`, passing it the ``delete=False`` " -"parameter::" +msgid "Use of this function may introduce a security hole in your program. By the time you get around to doing anything with the file name it returns, someone else may have beaten you to the punch. :func:`mktemp` usage can be replaced easily with :func:`NamedTemporaryFile`, passing it the ``delete=False`` parameter::" msgstr "" -#: ../../library/tempfile.rst:464 msgid "" ">>> f = NamedTemporaryFile(delete=False)\n" ">>> f.name\n" @@ -635,14 +327,11 @@ msgid "" "False" msgstr "" -#: ../../library/tempfile.rst:11 msgid "temporary" msgstr "" -#: ../../library/tempfile.rst:11 msgid "file name" msgstr "" -#: ../../library/tempfile.rst:11 msgid "file" msgstr "" diff --git a/library/termios.po b/library/termios.po index 3b1af55e..84c0d3cd 100644 --- a/library/termios.po +++ b/library/termios.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:14+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,136 +24,69 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/termios.rst:2 msgid ":mod:`!termios` --- POSIX style tty control" msgstr "" -#: ../../library/termios.rst:13 -msgid "" -"This module provides an interface to the POSIX calls for tty I/O control. " -"For a complete description of these calls, see :manpage:`termios(3)` Unix " -"manual page. It is only available for those Unix versions that support " -"POSIX *termios* style tty I/O control configured during installation." +msgid "This module provides an interface to the POSIX calls for tty I/O control. For a complete description of these calls, see :manpage:`termios(3)` Unix manual page. It is only available for those Unix versions that support POSIX *termios* style tty I/O control configured during installation." msgstr "" -#: ../../library/termios.rst:18 msgid "Availability" msgstr "" -#: ../../library/termios.rst:20 -msgid "" -"All functions in this module take a file descriptor *fd* as their first " -"argument. This can be an integer file descriptor, such as returned by " -"``sys.stdin.fileno()``, or a :term:`file object`, such as ``sys.stdin`` " -"itself." +msgid "All functions in this module take a file descriptor *fd* as their first argument. This can be an integer file descriptor, such as returned by ``sys.stdin.fileno()``, or a :term:`file object`, such as ``sys.stdin`` itself." msgstr "" -#: ../../library/termios.rst:24 -msgid "" -"This module also defines all the constants needed to work with the functions " -"provided here; these have the same name as their counterparts in C. Please " -"refer to your system documentation for more information on using these " -"terminal control interfaces." +msgid "This module also defines all the constants needed to work with the functions provided here; these have the same name as their counterparts in C. Please refer to your system documentation for more information on using these terminal control interfaces." msgstr "" -#: ../../library/termios.rst:29 msgid "The module defines the following functions:" msgstr "" -#: ../../library/termios.rst:34 -msgid "" -"Return a list containing the tty attributes for file descriptor *fd*, as " -"follows: ``[iflag, oflag, cflag, lflag, ispeed, ospeed, cc]`` where *cc* is " -"a list of the tty special characters (each a string of length 1, except the " -"items with indices :const:`VMIN` and :const:`VTIME`, which are integers when " -"these fields are defined). The interpretation of the flags and the speeds " -"as well as the indexing in the *cc* array must be done using the symbolic " -"constants defined in the :mod:`!termios` module." +msgid "Return a list containing the tty attributes for file descriptor *fd*, as follows: ``[iflag, oflag, cflag, lflag, ispeed, ospeed, cc]`` where *cc* is a list of the tty special characters (each a string of length 1, except the items with indices :const:`VMIN` and :const:`VTIME`, which are integers when these fields are defined). The interpretation of the flags and the speeds as well as the indexing in the *cc* array must be done using the symbolic constants defined in the :mod:`!termios` module." msgstr "" -#: ../../library/termios.rst:45 -msgid "" -"Set the tty attributes for file descriptor *fd* from the *attributes*, which " -"is a list like the one returned by :func:`tcgetattr`. The *when* argument " -"determines when the attributes are changed:" +msgid "Set the tty attributes for file descriptor *fd* from the *attributes*, which is a list like the one returned by :func:`tcgetattr`. The *when* argument determines when the attributes are changed:" msgstr "" -#: ../../library/termios.rst:51 msgid "Change attributes immediately." msgstr "" -#: ../../library/termios.rst:55 msgid "Change attributes after transmitting all queued output." msgstr "" -#: ../../library/termios.rst:59 -msgid "" -"Change attributes after transmitting all queued output and discarding all " -"queued input." +msgid "Change attributes after transmitting all queued output and discarding all queued input." msgstr "" -#: ../../library/termios.rst:65 -msgid "" -"Send a break on file descriptor *fd*. A zero *duration* sends a break for " -"0.25--0.5 seconds; a nonzero *duration* has a system dependent meaning." +msgid "Send a break on file descriptor *fd*. A zero *duration* sends a break for 0.25--0.5 seconds; a nonzero *duration* has a system dependent meaning." msgstr "" -#: ../../library/termios.rst:71 -msgid "" -"Wait until all output written to file descriptor *fd* has been transmitted." +msgid "Wait until all output written to file descriptor *fd* has been transmitted." msgstr "" -#: ../../library/termios.rst:76 -msgid "" -"Discard queued data on file descriptor *fd*. The *queue* selector specifies " -"which queue: :const:`TCIFLUSH` for the input queue, :const:`TCOFLUSH` for " -"the output queue, or :const:`TCIOFLUSH` for both queues." +msgid "Discard queued data on file descriptor *fd*. The *queue* selector specifies which queue: :const:`TCIFLUSH` for the input queue, :const:`TCOFLUSH` for the output queue, or :const:`TCIOFLUSH` for both queues." msgstr "" -#: ../../library/termios.rst:83 -msgid "" -"Suspend or resume input or output on file descriptor *fd*. The *action* " -"argument can be :const:`TCOOFF` to suspend output, :const:`TCOON` to restart " -"output, :const:`TCIOFF` to suspend input, or :const:`TCION` to restart input." +msgid "Suspend or resume input or output on file descriptor *fd*. The *action* argument can be :const:`TCOOFF` to suspend output, :const:`TCOON` to restart output, :const:`TCIOFF` to suspend input, or :const:`TCION` to restart input." msgstr "" -#: ../../library/termios.rst:90 -msgid "" -"Return a tuple ``(ws_row, ws_col)`` containing the tty window size for file " -"descriptor *fd*. Requires :const:`termios.TIOCGWINSZ` " -"or :const:`termios.TIOCGSIZE`." +msgid "Return a tuple ``(ws_row, ws_col)`` containing the tty window size for file descriptor *fd*. Requires :const:`termios.TIOCGWINSZ` or :const:`termios.TIOCGSIZE`." msgstr "" -#: ../../library/termios.rst:99 -msgid "" -"Set the tty window size for file descriptor *fd* from *winsize*, which is a " -"two-item tuple ``(ws_row, ws_col)`` like the one returned " -"by :func:`tcgetwinsize`. Requires at least one of the pairs " -"(:const:`termios.TIOCGWINSZ`, :const:`termios.TIOCSWINSZ`); " -"(:const:`termios.TIOCGSIZE`, :const:`termios.TIOCSSIZE`) to be defined." +msgid "Set the tty window size for file descriptor *fd* from *winsize*, which is a two-item tuple ``(ws_row, ws_col)`` like the one returned by :func:`tcgetwinsize`. Requires at least one of the pairs (:const:`termios.TIOCGWINSZ`, :const:`termios.TIOCSWINSZ`); (:const:`termios.TIOCGSIZE`, :const:`termios.TIOCSSIZE`) to be defined." msgstr "" -#: ../../library/termios.rst:110 msgid "Module :mod:`tty`" msgstr "" -#: ../../library/termios.rst:111 msgid "Convenience functions for common terminal control operations." msgstr "" -#: ../../library/termios.rst:117 msgid "Example" msgstr "" -#: ../../library/termios.rst:119 -msgid "" -"Here's a function that prompts for a password with echoing turned off. Note " -"the technique using a separate :func:`tcgetattr` call and " -"a :keyword:`try` ... :keyword:`finally` statement to ensure that the old tty " -"attributes are restored exactly no matter what happens::" +msgid "Here's a function that prompts for a password with echoing turned off. Note the technique using a separate :func:`tcgetattr` call and a :keyword:`try` ... :keyword:`finally` statement to ensure that the old tty attributes are restored exactly no matter what happens::" msgstr "" -#: ../../library/termios.rst:124 msgid "" "def getpass(prompt=\"Password: \"):\n" " import termios, sys\n" @@ -169,14 +102,11 @@ msgid "" " return passwd" msgstr "" -#: ../../library/termios.rst:7 msgid "POSIX" msgstr "" -#: ../../library/termios.rst:7 msgid "I/O control" msgstr "" -#: ../../library/termios.rst:7 msgid "tty" msgstr "" diff --git a/library/test.po b/library/test.po index 4d27222e..5f294c15 100644 --- a/library/test.po +++ b/library/test.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:14+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,75 +23,39 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/test.rst:2 msgid ":mod:`!test` --- Regression tests package for Python" msgstr "" -#: ../../library/test.rst:10 -msgid "" -"The :mod:`!test` package is meant for internal use by Python only. It is " -"documented for the benefit of the core developers of Python. Any use of this " -"package outside of Python's standard library is discouraged as code " -"mentioned here can change or be removed without notice between releases of " -"Python." +msgid "The :mod:`!test` package is meant for internal use by Python only. It is documented for the benefit of the core developers of Python. Any use of this package outside of Python's standard library is discouraged as code mentioned here can change or be removed without notice between releases of Python." msgstr "" -#: ../../library/test.rst:18 -msgid "" -"The :mod:`!test` package contains all regression tests for Python as well as " -"the modules :mod:`test.support` " -"and :mod:`test.regrtest`. :mod:`test.support` is used to enhance your tests " -"while :mod:`test.regrtest` drives the testing suite." +msgid "The :mod:`!test` package contains all regression tests for Python as well as the modules :mod:`test.support` and :mod:`test.regrtest`. :mod:`test.support` is used to enhance your tests while :mod:`test.regrtest` drives the testing suite." msgstr "" -#: ../../library/test.rst:23 -msgid "" -"Each module in the :mod:`!test` package whose name starts with ``test_`` is " -"a testing suite for a specific module or feature. All new tests should be " -"written using the :mod:`unittest` or :mod:`doctest` module. Some older " -"tests are written using a \"traditional\" testing style that compares output " -"printed to ``sys.stdout``; this style of test is considered deprecated." +msgid "Each module in the :mod:`!test` package whose name starts with ``test_`` is a testing suite for a specific module or feature. All new tests should be written using the :mod:`unittest` or :mod:`doctest` module. Some older tests are written using a \"traditional\" testing style that compares output printed to ``sys.stdout``; this style of test is considered deprecated." msgstr "" -#: ../../library/test.rst:32 msgid "Module :mod:`unittest`" msgstr "" -#: ../../library/test.rst:33 msgid "Writing PyUnit regression tests." msgstr "" -#: ../../library/test.rst:35 msgid "Module :mod:`doctest`" msgstr "" -#: ../../library/test.rst:36 msgid "Tests embedded in documentation strings." msgstr "" -#: ../../library/test.rst:42 msgid "Writing Unit Tests for the :mod:`!test` package" msgstr "" -#: ../../library/test.rst:44 -msgid "" -"It is preferred that tests that use the :mod:`unittest` module follow a few " -"guidelines. One is to name the test module by starting it with ``test_`` and " -"end it with the name of the module being tested. The test methods in the " -"test module should start with ``test_`` and end with a description of what " -"the method is testing. This is needed so that the methods are recognized by " -"the test driver as test methods. Also, no documentation string for the " -"method should be included. A comment (such as ``# Tests function returns " -"only True or False``) should be used to provide documentation for test " -"methods. This is done because documentation strings get printed out if they " -"exist and thus what test is being run is not stated." -msgstr "" - -#: ../../library/test.rst:55 +msgid "It is preferred that tests that use the :mod:`unittest` module follow a few guidelines. One is to name the test module by starting it with ``test_`` and end it with the name of the module being tested. The test methods in the test module should start with ``test_`` and end with a description of what the method is testing. This is needed so that the methods are recognized by the test driver as test methods. Also, no documentation string for the method should be included. A comment (such as ``# Tests function returns only True or False``) should be used to provide documentation for test methods. This is done because documentation strings get printed out if they exist and thus what test is being run is not stated." +msgstr "" + msgid "A basic boilerplate is often used::" msgstr "" -#: ../../library/test.rst:57 msgid "" "import unittest\n" "from test import support\n" @@ -125,81 +89,39 @@ msgid "" " unittest.main()" msgstr "" -#: ../../library/test.rst:88 -msgid "" -"This code pattern allows the testing suite to be run " -"by :mod:`test.regrtest`, on its own as a script that supports " -"the :mod:`unittest` CLI, or via the ``python -m unittest`` CLI." +msgid "This code pattern allows the testing suite to be run by :mod:`test.regrtest`, on its own as a script that supports the :mod:`unittest` CLI, or via the ``python -m unittest`` CLI." msgstr "" -#: ../../library/test.rst:92 -msgid "" -"The goal for regression testing is to try to break code. This leads to a few " -"guidelines to be followed:" +msgid "The goal for regression testing is to try to break code. This leads to a few guidelines to be followed:" msgstr "" -#: ../../library/test.rst:95 -msgid "" -"The testing suite should exercise all classes, functions, and constants. " -"This includes not just the external API that is to be presented to the " -"outside world but also \"private\" code." +msgid "The testing suite should exercise all classes, functions, and constants. This includes not just the external API that is to be presented to the outside world but also \"private\" code." msgstr "" -#: ../../library/test.rst:99 -msgid "" -"Whitebox testing (examining the code being tested when the tests are being " -"written) is preferred. Blackbox testing (testing only the published user " -"interface) is not complete enough to make sure all boundary and edge cases " -"are tested." +msgid "Whitebox testing (examining the code being tested when the tests are being written) is preferred. Blackbox testing (testing only the published user interface) is not complete enough to make sure all boundary and edge cases are tested." msgstr "" -#: ../../library/test.rst:104 -msgid "" -"Make sure all possible values are tested including invalid ones. This makes " -"sure that not only all valid values are acceptable but also that improper " -"values are handled correctly." +msgid "Make sure all possible values are tested including invalid ones. This makes sure that not only all valid values are acceptable but also that improper values are handled correctly." msgstr "" -#: ../../library/test.rst:108 -msgid "" -"Exhaust as many code paths as possible. Test where branching occurs and thus " -"tailor input to make sure as many different paths through the code are taken." +msgid "Exhaust as many code paths as possible. Test where branching occurs and thus tailor input to make sure as many different paths through the code are taken." msgstr "" -#: ../../library/test.rst:111 -msgid "" -"Add an explicit test for any bugs discovered for the tested code. This will " -"make sure that the error does not crop up again if the code is changed in " -"the future." +msgid "Add an explicit test for any bugs discovered for the tested code. This will make sure that the error does not crop up again if the code is changed in the future." msgstr "" -#: ../../library/test.rst:115 -msgid "" -"Make sure to clean up after your tests (such as close and remove all " -"temporary files)." +msgid "Make sure to clean up after your tests (such as close and remove all temporary files)." msgstr "" -#: ../../library/test.rst:118 -msgid "" -"If a test is dependent on a specific condition of the operating system then " -"verify the condition already exists before attempting the test." +msgid "If a test is dependent on a specific condition of the operating system then verify the condition already exists before attempting the test." msgstr "" -#: ../../library/test.rst:121 -msgid "" -"Import as few modules as possible and do it as soon as possible. This " -"minimizes external dependencies of tests and also minimizes possible " -"anomalous behavior from side-effects of importing a module." +msgid "Import as few modules as possible and do it as soon as possible. This minimizes external dependencies of tests and also minimizes possible anomalous behavior from side-effects of importing a module." msgstr "" -#: ../../library/test.rst:125 -msgid "" -"Try to maximize code reuse. On occasion, tests will vary by something as " -"small as what type of input is used. Minimize code duplication by " -"subclassing a basic test class with a class that specifies the input::" +msgid "Try to maximize code reuse. On occasion, tests will vary by something as small as what type of input is used. Minimize code duplication by subclassing a basic test class with a class that specifies the input::" msgstr "" -#: ../../library/test.rst:129 msgid "" "class TestFuncAcceptsSequencesMixin:\n" "\n" @@ -218,370 +140,207 @@ msgid "" " arg = (1, 2, 3)" msgstr "" -#: ../../library/test.rst:145 -msgid "" -"When using this pattern, remember that all classes that inherit " -"from :class:`unittest.TestCase` are run as tests. The :class:`!" -"TestFuncAcceptsSequencesMixin` class in the example above does not have any " -"data and so can't be run by itself, thus it does not inherit " -"from :class:`unittest.TestCase`." +msgid "When using this pattern, remember that all classes that inherit from :class:`unittest.TestCase` are run as tests. The :class:`!TestFuncAcceptsSequencesMixin` class in the example above does not have any data and so can't be run by itself, thus it does not inherit from :class:`unittest.TestCase`." msgstr "" -#: ../../library/test.rst:153 msgid "Test Driven Development" msgstr "" -#: ../../library/test.rst:154 msgid "A book by Kent Beck on writing tests before code." msgstr "" -#: ../../library/test.rst:160 msgid "Running tests using the command-line interface" msgstr "" -#: ../../library/test.rst:165 -msgid "" -"The :mod:`!test` package can be run as a script to drive Python's regression " -"test suite, thanks to the :option:`-m` option: :program:`python -m test`. " -"Under the hood, it uses :mod:`!test.regrtest`; the call :program:`python -m " -"test.regrtest` used in previous Python versions still works. Running the " -"script by itself automatically starts running all regression tests in " -"the :mod:`!test` package. It does this by finding all modules in the package " -"whose name starts with ``test_``, importing them, and executing the " -"function :func:`test_main` if present or loading the tests via " -"unittest.TestLoader.loadTestsFromModule if ``test_main`` does not exist. " -"The names of tests to execute may also be passed to the script. Specifying a " -"single regression test (:program:`python -m test test_spam`) will minimize " -"output and only print whether the test passed or failed." -msgstr "" - -#: ../../library/test.rst:178 -msgid "" -"Running :mod:`!test` directly allows what resources are available for tests " -"to use to be set. You do this by using the ``-u`` command-line option. " -"Specifying ``all`` as the value for the ``-u`` option enables all possible " -"resources: :program:`python -m test -uall`. If all but one resource is " -"desired (a more common case), a comma-separated list of resources that are " -"not desired may be listed after ``all``. The command :program:`python -m " -"test -uall,-audio,-largefile` will run :mod:`!test` with all resources " -"except the ``audio`` and ``largefile`` resources. For a list of all " -"resources and more command-line options, run :program:`python -m test -h`." -msgstr "" - -#: ../../library/test.rst:189 -msgid "" -"Some other ways to execute the regression tests depend on what platform the " -"tests are being executed on. On Unix, you can run :program:`make test` at " -"the top-level directory where Python was built. On Windows, " -"executing :program:`rt.bat` from your :file:`PCbuild` directory will run all " -"regression tests." +msgid "The :mod:`!test` package can be run as a script to drive Python's regression test suite, thanks to the :option:`-m` option: :program:`python -m test`. Under the hood, it uses :mod:`!test.regrtest`; the call :program:`python -m test.regrtest` used in previous Python versions still works. Running the script by itself automatically starts running all regression tests in the :mod:`!test` package. It does this by finding all modules in the package whose name starts with ``test_``, importing them, and executing the function :func:`test_main` if present or loading the tests via unittest.TestLoader.loadTestsFromModule if ``test_main`` does not exist. The names of tests to execute may also be passed to the script. Specifying a single regression test (:program:`python -m test test_spam`) will minimize output and only print whether the test passed or failed." msgstr "" -#: ../../library/test.rst:195 -msgid "" -"Output is colorized by default and can be :ref:`controlled using environment " -"variables `." +msgid "Running :mod:`!test` directly allows what resources are available for tests to use to be set. You do this by using the ``-u`` command-line option. Specifying ``all`` as the value for the ``-u`` option enables all possible resources: :program:`python -m test -uall`. If all but one resource is desired (a more common case), a comma-separated list of resources that are not desired may be listed after ``all``. The command :program:`python -m test -uall,-audio,-largefile` will run :mod:`!test` with all resources except the ``audio`` and ``largefile`` resources. For a list of all resources and more command-line options, run :program:`python -m test -h`." +msgstr "" + +msgid "Some other ways to execute the regression tests depend on what platform the tests are being executed on. On Unix, you can run :program:`make test` at the top-level directory where Python was built. On Windows, executing :program:`rt.bat` from your :file:`PCbuild` directory will run all regression tests." +msgstr "" + +msgid "Output is colorized by default and can be :ref:`controlled using environment variables `." msgstr "" -#: ../../library/test.rst:201 msgid ":mod:`!test.support` --- Utilities for the Python test suite" msgstr "" -#: ../../library/test.rst:207 -msgid "" -"The :mod:`!test.support` module provides support for Python's regression " -"test suite." +msgid "The :mod:`!test.support` module provides support for Python's regression test suite." msgstr "" -#: ../../library/test.rst:212 -msgid "" -":mod:`!test.support` is not a public module. It is documented here to help " -"Python developers write tests. The API of this module is subject to change " -"without backwards compatibility concerns between releases." +msgid ":mod:`!test.support` is not a public module. It is documented here to help Python developers write tests. The API of this module is subject to change without backwards compatibility concerns between releases." msgstr "" -#: ../../library/test.rst:217 msgid "This module defines the following exceptions:" msgstr "" -#: ../../library/test.rst:221 -msgid "" -"Exception to be raised when a test fails. This is deprecated in favor " -"of :mod:`unittest`\\ -based tests and :class:`unittest.TestCase`'s assertion " -"methods." +msgid "Exception to be raised when a test fails. This is deprecated in favor of :mod:`unittest`\\ -based tests and :class:`unittest.TestCase`'s assertion methods." msgstr "" -#: ../../library/test.rst:228 -msgid "" -"Subclass of :exc:`unittest.SkipTest`. Raised when a resource (such as a " -"network connection) is not available. Raised by the :func:`requires` " -"function." +msgid "Subclass of :exc:`unittest.SkipTest`. Raised when a resource (such as a network connection) is not available. Raised by the :func:`requires` function." msgstr "" -#: ../../library/test.rst:233 msgid "The :mod:`!test.support` module defines the following constants:" msgstr "" -#: ../../library/test.rst:237 -msgid "" -"``True`` when verbose output is enabled. Should be checked when more " -"detailed information is desired about a running test. *verbose* is set " -"by :mod:`test.regrtest`." +msgid "``True`` when verbose output is enabled. Should be checked when more detailed information is desired about a running test. *verbose* is set by :mod:`test.regrtest`." msgstr "" -#: ../../library/test.rst:244 msgid "``True`` if the running interpreter is Jython." msgstr "" -#: ../../library/test.rst:249 msgid "``True`` if ``sys.platform`` is ``android``." msgstr "" -#: ../../library/test.rst:254 msgid "``True`` if ``sys.platform`` is ``emscripten``." msgstr "" -#: ../../library/test.rst:259 msgid "``True`` if ``sys.platform`` is ``wasi``." msgstr "" -#: ../../library/test.rst:264 msgid "``True`` if ``sys.platform`` is ``ios``, ``tvos``, or ``watchos``." msgstr "" -#: ../../library/test.rst:269 -msgid "" -"``True`` if ``sys.platform`` is ``darwin`` or ``is_apple_mobile`` is " -"``True``." +msgid "``True`` if ``sys.platform`` is ``darwin`` or ``is_apple_mobile`` is ``True``." msgstr "" -#: ../../library/test.rst:274 msgid "Path for shell if not on Windows; otherwise ``None``." msgstr "" -#: ../../library/test.rst:279 -msgid "" -"Timeout in seconds for tests using a network server listening on the network " -"local loopback interface like ``127.0.0.1``." +msgid "Timeout in seconds for tests using a network server listening on the network local loopback interface like ``127.0.0.1``." msgstr "" -#: ../../library/test.rst:282 -msgid "" -"The timeout is long enough to prevent test failure: it takes into account " -"that the client and the server can run in different threads or even " -"different processes." +msgid "The timeout is long enough to prevent test failure: it takes into account that the client and the server can run in different threads or even different processes." msgstr "" -#: ../../library/test.rst:286 -msgid "" -"The timeout should be long enough " -"for :meth:`~socket.socket.connect`, :meth:`~socket.socket.recv` " -"and :meth:`~socket.socket.send` methods of :class:`socket.socket`." +msgid "The timeout should be long enough for :meth:`~socket.socket.connect`, :meth:`~socket.socket.recv` and :meth:`~socket.socket.send` methods of :class:`socket.socket`." msgstr "" -#: ../../library/test.rst:290 msgid "Its default value is 5 seconds." msgstr "" -#: ../../library/test.rst:292 msgid "See also :data:`INTERNET_TIMEOUT`." msgstr "" -#: ../../library/test.rst:297 msgid "Timeout in seconds for network requests going to the internet." msgstr "" -#: ../../library/test.rst:299 -msgid "" -"The timeout is short enough to prevent a test to wait for too long if the " -"internet request is blocked for whatever reason." +msgid "The timeout is short enough to prevent a test to wait for too long if the internet request is blocked for whatever reason." msgstr "" -#: ../../library/test.rst:302 -msgid "" -"Usually, a timeout using :data:`INTERNET_TIMEOUT` should not mark a test as " -"failed, but skip the test instead: " -"see :func:`~test.support.socket_helper.transient_internet`." +msgid "Usually, a timeout using :data:`INTERNET_TIMEOUT` should not mark a test as failed, but skip the test instead: see :func:`~test.support.socket_helper.transient_internet`." msgstr "" -#: ../../library/test.rst:306 msgid "Its default value is 1 minute." msgstr "" -#: ../../library/test.rst:308 msgid "See also :data:`LOOPBACK_TIMEOUT`." msgstr "" -#: ../../library/test.rst:313 -msgid "" -"Timeout in seconds to mark a test as failed if the test takes \"too long\"." +msgid "Timeout in seconds to mark a test as failed if the test takes \"too long\"." msgstr "" -#: ../../library/test.rst:315 -msgid "" -"The timeout value depends on the regrtest ``--timeout`` command line option." +msgid "The timeout value depends on the regrtest ``--timeout`` command line option." msgstr "" -#: ../../library/test.rst:317 -msgid "" -"If a test using :data:`SHORT_TIMEOUT` starts to fail randomly on slow " -"buildbots, use :data:`LONG_TIMEOUT` instead." +msgid "If a test using :data:`SHORT_TIMEOUT` starts to fail randomly on slow buildbots, use :data:`LONG_TIMEOUT` instead." msgstr "" -#: ../../library/test.rst:320 msgid "Its default value is 30 seconds." msgstr "" -#: ../../library/test.rst:325 msgid "Timeout in seconds to detect when a test hangs." msgstr "" -#: ../../library/test.rst:327 -msgid "" -"It is long enough to reduce the risk of test failure on the slowest Python " -"buildbots. It should not be used to mark a test as failed if the test takes " -"\"too long\". The timeout value depends on the regrtest ``--timeout`` " -"command line option." +msgid "It is long enough to reduce the risk of test failure on the slowest Python buildbots. It should not be used to mark a test as failed if the test takes \"too long\". The timeout value depends on the regrtest ``--timeout`` command line option." msgstr "" -#: ../../library/test.rst:332 msgid "Its default value is 5 minutes." msgstr "" -#: ../../library/test.rst:334 -msgid "" -"See also :data:`LOOPBACK_TIMEOUT`, :data:`INTERNET_TIMEOUT` " -"and :data:`SHORT_TIMEOUT`." +msgid "See also :data:`LOOPBACK_TIMEOUT`, :data:`INTERNET_TIMEOUT` and :data:`SHORT_TIMEOUT`." msgstr "" -#: ../../library/test.rst:340 msgid "Set when tests can be skipped when they are not useful for PGO." msgstr "" -#: ../../library/test.rst:345 -msgid "" -"A constant that is likely larger than the underlying OS pipe buffer size, to " -"make writes blocking." +msgid "A constant that is likely larger than the underlying OS pipe buffer size, to make writes blocking." msgstr "" -#: ../../library/test.rst:351 -msgid "" -"``True`` if Python was built with the :c:macro:`Py_DEBUG` macro defined, " -"that is, if Python was :ref:`built in debug mode `." +msgid "``True`` if Python was built with the :c:macro:`Py_DEBUG` macro defined, that is, if Python was :ref:`built in debug mode `." msgstr "" -#: ../../library/test.rst:360 -msgid "" -"A constant that is likely larger than the underlying OS socket buffer size, " -"to make writes blocking." +msgid "A constant that is likely larger than the underlying OS socket buffer size, to make writes blocking." msgstr "" -#: ../../library/test.rst:366 msgid "Set to the top level directory that contains :mod:`!test.support`." msgstr "" -#: ../../library/test.rst:371 msgid "Set to the top level directory for the test package." msgstr "" -#: ../../library/test.rst:376 msgid "Set to the ``data`` directory within the test package." msgstr "" -#: ../../library/test.rst:381 msgid "Set to :data:`sys.maxsize` for big memory tests." msgstr "" -#: ../../library/test.rst:386 -msgid "" -"Set by :func:`set_memlimit` as the memory limit for big memory tests. " -"Limited by :data:`MAX_Py_ssize_t`." +msgid "Set by :func:`set_memlimit` as the memory limit for big memory tests. Limited by :data:`MAX_Py_ssize_t`." msgstr "" -#: ../../library/test.rst:392 -msgid "" -"Set by :func:`set_memlimit` as the memory limit for big memory tests. Not " -"limited by :data:`MAX_Py_ssize_t`." +msgid "Set by :func:`set_memlimit` as the memory limit for big memory tests. Not limited by :data:`MAX_Py_ssize_t`." msgstr "" -#: ../../library/test.rst:398 -msgid "" -"Set to ``True`` if Python is built without docstrings " -"(the :c:macro:`WITH_DOC_STRINGS` macro is not defined). See " -"the :option:`configure --without-doc-strings <--without-doc-strings>` option." +msgid "Set to ``True`` if Python is built without docstrings (the :c:macro:`WITH_DOC_STRINGS` macro is not defined). See the :option:`configure --without-doc-strings <--without-doc-strings>` option." msgstr "" -#: ../../library/test.rst:402 msgid "See also the :data:`HAVE_DOCSTRINGS` variable." msgstr "" -#: ../../library/test.rst:407 -msgid "" -"Set to ``True`` if function docstrings are available. See " -"the :option:`python -OO <-O>` option, which strips docstrings of functions " -"implemented in Python." +msgid "Set to ``True`` if function docstrings are available. See the :option:`python -OO <-O>` option, which strips docstrings of functions implemented in Python." msgstr "" -#: ../../library/test.rst:410 msgid "See also the :data:`MISSING_C_DOCSTRINGS` variable." msgstr "" -#: ../../library/test.rst:415 msgid "Define the URL of a dedicated HTTP server for the network tests." msgstr "" -#: ../../library/test.rst:420 msgid "Object that is equal to anything. Used to test mixed type comparison." msgstr "" -#: ../../library/test.rst:425 -msgid "" -"Object that is not equal to anything (even to :data:`ALWAYS_EQ`). Used to " -"test mixed type comparison." +msgid "Object that is not equal to anything (even to :data:`ALWAYS_EQ`). Used to test mixed type comparison." msgstr "" -#: ../../library/test.rst:431 -msgid "" -"Object that is greater than anything (except itself). Used to test mixed " -"type comparison." +msgid "Object that is greater than anything (except itself). Used to test mixed type comparison." msgstr "" -#: ../../library/test.rst:437 -msgid "" -"Object that is less than anything (except itself). Used to test mixed type " -"comparison." +msgid "Object that is less than anything (except itself). Used to test mixed type comparison." msgstr "" -#: ../../library/test.rst:441 msgid "The :mod:`!test.support` module defines the following functions:" msgstr "" -#: ../../library/test.rst:445 msgid "Run the loop body until ``break`` stops the loop." msgstr "" -#: ../../library/test.rst:447 -msgid "" -"After *timeout* seconds, raise an :exc:`AssertionError` if *error* is true, " -"or just stop the loop if *error* is false." +msgid "After *timeout* seconds, raise an :exc:`AssertionError` if *error* is true, or just stop the loop if *error* is false." msgstr "" -#: ../../library/test.rst:450 msgid "Example::" msgstr "" -#: ../../library/test.rst:452 msgid "" "for _ in support.busy_retry(support.SHORT_TIMEOUT):\n" " if check():\n" " break" msgstr "" -#: ../../library/test.rst:456 ../../library/test.rst:480 msgid "Example of error=False usage::" msgstr "" -#: ../../library/test.rst:458 msgid "" "for _ in support.busy_retry(support.SHORT_TIMEOUT, error=False):\n" " if check():\n" @@ -590,33 +349,24 @@ msgid "" " raise RuntimeError('my custom error')" msgstr "" -#: ../../library/test.rst:466 msgid "Wait strategy that applies exponential backoff." msgstr "" -#: ../../library/test.rst:468 -msgid "" -"Run the loop body until ``break`` stops the loop. Sleep at each loop " -"iteration, but not at the first iteration. The sleep delay is doubled at " -"each iteration (up to *max_delay* seconds)." +msgid "Run the loop body until ``break`` stops the loop. Sleep at each loop iteration, but not at the first iteration. The sleep delay is doubled at each iteration (up to *max_delay* seconds)." msgstr "" -#: ../../library/test.rst:472 msgid "See :func:`busy_retry` documentation for the parameters usage." msgstr "" -#: ../../library/test.rst:474 msgid "Example raising an exception after SHORT_TIMEOUT seconds::" msgstr "" -#: ../../library/test.rst:476 msgid "" "for _ in support.sleeping_retry(support.SHORT_TIMEOUT):\n" " if check():\n" " break" msgstr "" -#: ../../library/test.rst:482 msgid "" "for _ in support.sleeping_retry(support.SHORT_TIMEOUT, error=False):\n" " if check():\n" @@ -625,117 +375,66 @@ msgid "" " raise RuntimeError('my custom error')" msgstr "" -#: ../../library/test.rst:490 -msgid "" -"Return ``True`` if *resource* is enabled and available. The list of " -"available resources is only set when :mod:`test.regrtest` is executing the " -"tests." +msgid "Return ``True`` if *resource* is enabled and available. The list of available resources is only set when :mod:`test.regrtest` is executing the tests." msgstr "" -#: ../../library/test.rst:497 -msgid "" -"Return the value specified for *resource* (as :samp:`-u {resource}={value}" -"`). Return ``None`` if *resource* is disabled or no value is specified." +msgid "Return the value specified for *resource* (as :samp:`-u {resource}={value}`). Return ``None`` if *resource* is disabled or no value is specified." msgstr "" -#: ../../library/test.rst:503 msgid "Return ``True`` if Python was not built with ``-O0`` or ``-Og``." msgstr "" -#: ../../library/test.rst:508 msgid "Return :const:`_testcapi.WITH_PYMALLOC`." msgstr "" -#: ../../library/test.rst:513 -msgid "" -"Raise :exc:`ResourceDenied` if *resource* is not available. *msg* is the " -"argument to :exc:`ResourceDenied` if it is raised. Always returns ``True`` " -"if called by a function whose ``__name__`` is ``'__main__'``. Used when " -"tests are executed by :mod:`test.regrtest`." +msgid "Raise :exc:`ResourceDenied` if *resource* is not available. *msg* is the argument to :exc:`ResourceDenied` if it is raised. Always returns ``True`` if called by a function whose ``__name__`` is ``'__main__'``. Used when tests are executed by :mod:`test.regrtest`." msgstr "" -#: ../../library/test.rst:521 msgid "Return a repr of *dict* with keys sorted." msgstr "" -#: ../../library/test.rst:526 -msgid "" -"Return the path to the file named *filename*. If no match is found " -"*filename* is returned. This does not equal a failure since it could be the " -"path to the file." +msgid "Return the path to the file named *filename*. If no match is found *filename* is returned. This does not equal a failure since it could be the path to the file." msgstr "" -#: ../../library/test.rst:530 -msgid "" -"Setting *subdir* indicates a relative path to use to find the file rather " -"than looking directly in the path directories." +msgid "Setting *subdir* indicates a relative path to use to find the file rather than looking directly in the path directories." msgstr "" -#: ../../library/test.rst:536 msgid "Get size of a page in bytes." msgstr "" -#: ../../library/test.rst:543 -msgid "" -"Set the :func:`sys.setswitchinterval` to the given *interval*. Defines a " -"minimum interval for Android systems to prevent the system from hanging." +msgid "Set the :func:`sys.setswitchinterval` to the given *interval*. Defines a minimum interval for Android systems to prevent the system from hanging." msgstr "" -#: ../../library/test.rst:549 -msgid "" -"Use this check to guard CPython's implementation-specific tests or to run " -"them only on the implementations guarded by the arguments. This function " -"returns ``True`` or ``False`` depending on the host platform. Example usage::" +msgid "Use this check to guard CPython's implementation-specific tests or to run them only on the implementations guarded by the arguments. This function returns ``True`` or ``False`` depending on the host platform. Example usage::" msgstr "" -#: ../../library/test.rst:554 msgid "" "check_impl_detail() # Only on CPython (default).\n" "check_impl_detail(jython=True) # Only on Jython.\n" "check_impl_detail(cpython=False) # Everywhere except CPython." msgstr "" -#: ../../library/test.rst:561 -msgid "" -"Set the values for :data:`max_memuse` and :data:`real_max_memuse` for big " -"memory tests." +msgid "Set the values for :data:`max_memuse` and :data:`real_max_memuse` for big memory tests." msgstr "" -#: ../../library/test.rst:567 -msgid "" -"Store the value from *stdout*. It is meant to hold the stdout at the time " -"the regrtest began." +msgid "Store the value from *stdout*. It is meant to hold the stdout at the time the regrtest began." msgstr "" -#: ../../library/test.rst:573 -msgid "" -"Return the original stdout set by :func:`record_original_stdout` or " -"``sys.stdout`` if it's not set." +msgid "Return the original stdout set by :func:`record_original_stdout` or ``sys.stdout`` if it's not set." msgstr "" -#: ../../library/test.rst:579 -msgid "" -"Return a list of command line arguments reproducing the current settings in " -"``sys.flags`` and ``sys.warnoptions``." +msgid "Return a list of command line arguments reproducing the current settings in ``sys.flags`` and ``sys.warnoptions``." msgstr "" -#: ../../library/test.rst:585 -msgid "" -"Return a list of command line arguments reproducing the current optimization " -"settings in ``sys.flags``." +msgid "Return a list of command line arguments reproducing the current optimization settings in ``sys.flags``." msgstr "" -#: ../../library/test.rst:593 -msgid "" -"A context managers that temporarily replaces the named stream " -"with :class:`io.StringIO` object." +msgid "A context managers that temporarily replaces the named stream with :class:`io.StringIO` object." msgstr "" -#: ../../library/test.rst:596 msgid "Example use with output streams::" msgstr "" -#: ../../library/test.rst:598 msgid "" "with captured_stdout() as stdout, captured_stderr() as stderr:\n" " print(\"hello\")\n" @@ -744,11 +443,9 @@ msgid "" "assert stderr.getvalue() == \"error\\n\"" msgstr "" -#: ../../library/test.rst:604 msgid "Example use with input stream::" msgstr "" -#: ../../library/test.rst:606 msgid "" "with captured_stdin() as stdin:\n" " stdin.write('hello\\n')\n" @@ -758,316 +455,166 @@ msgid "" "self.assertEqual(captured, \"hello\")" msgstr "" -#: ../../library/test.rst:616 msgid "A context manager that temporary disables :mod:`faulthandler`." msgstr "" -#: ../../library/test.rst:621 -msgid "" -"Force as many objects as possible to be collected. This is needed because " -"timely deallocation is not guaranteed by the garbage collector. This means " -"that ``__del__`` methods may be called later than expected and weakrefs may " -"remain alive for longer than expected." +msgid "Force as many objects as possible to be collected. This is needed because timely deallocation is not guaranteed by the garbage collector. This means that ``__del__`` methods may be called later than expected and weakrefs may remain alive for longer than expected." msgstr "" -#: ../../library/test.rst:629 -msgid "" -"A context manager that disables the garbage collector on entry. On exit, the " -"garbage collector is restored to its prior state." +msgid "A context manager that disables the garbage collector on entry. On exit, the garbage collector is restored to its prior state." msgstr "" -#: ../../library/test.rst:635 msgid "Context manager to swap out an attribute with a new object." msgstr "" -#: ../../library/test.rst:637 ../../library/test.rst:655 -#: ../../library/test.rst:910 ../../library/test.rst:1429 msgid "Usage::" msgstr "" -#: ../../library/test.rst:639 msgid "" "with swap_attr(obj, \"attr\", 5):\n" " ..." msgstr "" -#: ../../library/test.rst:642 -msgid "" -"This will set ``obj.attr`` to 5 for the duration of the ``with`` block, " -"restoring the old value at the end of the block. If ``attr`` doesn't exist " -"on ``obj``, it will be created and then deleted at the end of the block." +msgid "This will set ``obj.attr`` to 5 for the duration of the ``with`` block, restoring the old value at the end of the block. If ``attr`` doesn't exist on ``obj``, it will be created and then deleted at the end of the block." msgstr "" -#: ../../library/test.rst:647 ../../library/test.rst:665 -msgid "" -"The old value (or ``None`` if it doesn't exist) will be assigned to the " -"target of the \"as\" clause, if there is one." +msgid "The old value (or ``None`` if it doesn't exist) will be assigned to the target of the \"as\" clause, if there is one." msgstr "" -#: ../../library/test.rst:653 msgid "Context manager to swap out an item with a new object." msgstr "" -#: ../../library/test.rst:657 msgid "" "with swap_item(obj, \"item\", 5):\n" " ..." msgstr "" -#: ../../library/test.rst:660 -msgid "" -"This will set ``obj[\"item\"]`` to 5 for the duration of the ``with`` block, " -"restoring the old value at the end of the block. If ``item`` doesn't exist " -"on ``obj``, it will be created and then deleted at the end of the block." +msgid "This will set ``obj[\"item\"]`` to 5 for the duration of the ``with`` block, restoring the old value at the end of the block. If ``item`` doesn't exist on ``obj``, it will be created and then deleted at the end of the block." msgstr "" -#: ../../library/test.rst:671 -msgid "" -"Call the ``flush()`` method on :data:`sys.stdout` and then " -"on :data:`sys.stderr`. It can be used to make sure that the logs order is " -"consistent before writing into stderr." +msgid "Call the ``flush()`` method on :data:`sys.stdout` and then on :data:`sys.stderr`. It can be used to make sure that the logs order is consistent before writing into stderr." msgstr "" -#: ../../library/test.rst:680 -msgid "" -"Print a warning into :data:`sys.__stderr__`. Format the message as: " -"``f\"Warning -- {msg}\"``. If *msg* is made of multiple lines, add " -"``\"Warning -- \"`` prefix to each line." +msgid "Print a warning into :data:`sys.__stderr__`. Format the message as: ``f\"Warning -- {msg}\"``. If *msg* is made of multiple lines, add ``\"Warning -- \"`` prefix to each line." msgstr "" -#: ../../library/test.rst:689 -msgid "" -"Wait until process *pid* completes and check that the process exit code is " -"*exitcode*." +msgid "Wait until process *pid* completes and check that the process exit code is *exitcode*." msgstr "" -#: ../../library/test.rst:692 -msgid "" -"Raise an :exc:`AssertionError` if the process exit code is not equal to " -"*exitcode*." +msgid "Raise an :exc:`AssertionError` if the process exit code is not equal to *exitcode*." msgstr "" -#: ../../library/test.rst:695 -msgid "" -"If the process runs longer than *timeout* seconds (:data:`SHORT_TIMEOUT` by " -"default), kill the process and raise an :exc:`AssertionError`. The timeout " -"feature is not available on Windows." +msgid "If the process runs longer than *timeout* seconds (:data:`SHORT_TIMEOUT` by default), kill the process and raise an :exc:`AssertionError`. The timeout feature is not available on Windows." msgstr "" -#: ../../library/test.rst:704 -msgid "" -"Return the size of the :c:type:`PyObject` whose structure members are " -"defined by *fmt*. The returned value includes the size of the Python object " -"header and alignment." +msgid "Return the size of the :c:type:`PyObject` whose structure members are defined by *fmt*. The returned value includes the size of the Python object header and alignment." msgstr "" -#: ../../library/test.rst:710 -msgid "" -"Return the size of the :c:type:`PyVarObject` whose structure members are " -"defined by *fmt*. The returned value includes the size of the Python object " -"header and alignment." +msgid "Return the size of the :c:type:`PyVarObject` whose structure members are defined by *fmt*. The returned value includes the size of the Python object header and alignment." msgstr "" -#: ../../library/test.rst:716 -msgid "" -"For testcase *test*, assert that the ``sys.getsizeof`` for *o* plus the GC " -"header size equals *size*." +msgid "For testcase *test*, assert that the ``sys.getsizeof`` for *o* plus the GC header size equals *size*." msgstr "" -#: ../../library/test.rst:722 -msgid "" -"A decorator to conditionally mark tests " -"with :deco:`unittest.expectedFailure`. Any use of this decorator should have " -"an associated comment identifying the relevant tracker issue." +msgid "A decorator to conditionally mark tests with :deco:`unittest.expectedFailure`. Any use of this decorator should have an associated comment identifying the relevant tracker issue." msgstr "" -#: ../../library/test.rst:729 -msgid "" -"A decorator that skips the decorated test on TLS certification validation " -"failures." +msgid "A decorator that skips the decorated test on TLS certification validation failures." msgstr "" -#: ../../library/test.rst:734 -msgid "" -"A decorator for running a function in a different locale, correctly " -"resetting it after it has finished. *catstr* is the locale category as a " -"string (for example ``\"LC_ALL\"``). The *locales* passed will be tried " -"sequentially, and the first valid locale will be used." +msgid "A decorator for running a function in a different locale, correctly resetting it after it has finished. *catstr* is the locale category as a string (for example ``\"LC_ALL\"``). The *locales* passed will be tried sequentially, and the first valid locale will be used." msgstr "" -#: ../../library/test.rst:742 -msgid "" -"A decorator for running a function in a specific timezone, correctly " -"resetting it after it has finished." +msgid "A decorator for running a function in a specific timezone, correctly resetting it after it has finished." msgstr "" -#: ../../library/test.rst:748 -msgid "" -"Decorator for the minimum version when running test on FreeBSD. If the " -"FreeBSD version is less than the minimum, the test is skipped." +msgid "Decorator for the minimum version when running test on FreeBSD. If the FreeBSD version is less than the minimum, the test is skipped." msgstr "" -#: ../../library/test.rst:754 -msgid "" -"Decorator for the minimum version when running test on Linux. If the Linux " -"version is less than the minimum, the test is skipped." +msgid "Decorator for the minimum version when running test on Linux. If the Linux version is less than the minimum, the test is skipped." msgstr "" -#: ../../library/test.rst:760 -msgid "" -"Decorator for the minimum version when running test on macOS. If the macOS " -"version is less than the minimum, the test is skipped." +msgid "Decorator for the minimum version when running test on macOS. If the macOS version is less than the minimum, the test is skipped." msgstr "" -#: ../../library/test.rst:766 -msgid "" -"Decorator for skipping tests on the free-threaded build. If the :term:`GIL` " -"is disabled, the test is skipped." +msgid "Decorator for skipping tests on the free-threaded build. If the :term:`GIL` is disabled, the test is skipped." msgstr "" -#: ../../library/test.rst:772 msgid "Decorator for skipping tests on non-IEEE 754 platforms." msgstr "" -#: ../../library/test.rst:777 msgid "Decorator for skipping tests if :mod:`zlib` doesn't exist." msgstr "" -#: ../../library/test.rst:782 msgid "Decorator for skipping tests if :mod:`gzip` doesn't exist." msgstr "" -#: ../../library/test.rst:787 msgid "Decorator for skipping tests if :mod:`bz2` doesn't exist." msgstr "" -#: ../../library/test.rst:792 msgid "Decorator for skipping tests if :mod:`lzma` doesn't exist." msgstr "" -#: ../../library/test.rst:797 msgid "Decorator for skipping tests if *resource* is not available." msgstr "" -#: ../../library/test.rst:802 msgid "Decorator for only running the test if :data:`HAVE_DOCSTRINGS`." msgstr "" -#: ../../library/test.rst:807 -msgid "" -"Decorator for only running the test if :ref:`Limited C API ` " -"is available." +msgid "Decorator for only running the test if :ref:`Limited C API ` is available." msgstr "" -#: ../../library/test.rst:813 msgid "Decorator for tests only applicable to CPython." msgstr "" -#: ../../library/test.rst:818 -msgid "" -"Decorator for invoking :func:`check_impl_detail` on *guards*. If that " -"returns ``False``, then uses *msg* as the reason for skipping the test." +msgid "Decorator for invoking :func:`check_impl_detail` on *guards*. If that returns ``False``, then uses *msg* as the reason for skipping the test." msgstr "" -#: ../../library/test.rst:823 -msgid "" -"Decorator for marking tests as thread-unsafe. This test always runs in one " -"thread even when invoked with ``--parallel-threads``." +msgid "Decorator for marking tests as thread-unsafe. This test always runs in one thread even when invoked with ``--parallel-threads``." msgstr "" -#: ../../library/test.rst:829 msgid "Decorator to temporarily turn off tracing for the duration of the test." msgstr "" -#: ../../library/test.rst:834 -msgid "" -"Decorator for tests which involve reference counting. The decorator does " -"not run the test if it is not run by CPython. Any trace function is unset " -"for the duration of the test to prevent unexpected refcounts caused by the " -"trace function." +msgid "Decorator for tests which involve reference counting. The decorator does not run the test if it is not run by CPython. Any trace function is unset for the duration of the test to prevent unexpected refcounts caused by the trace function." msgstr "" -#: ../../library/test.rst:842 msgid "Decorator for bigmem tests." msgstr "" -#: ../../library/test.rst:844 -msgid "" -"*size* is a requested size for the test (in arbitrary, test-interpreted " -"units.) *memuse* is the number of bytes per unit for the test, or a good " -"estimate of it. For example, a test that needs two byte buffers, of 4 GiB " -"each, could be decorated with ``@bigmemtest(size=_4G, memuse=2)``." +msgid "*size* is a requested size for the test (in arbitrary, test-interpreted units.) *memuse* is the number of bytes per unit for the test, or a good estimate of it. For example, a test that needs two byte buffers, of 4 GiB each, could be decorated with ``@bigmemtest(size=_4G, memuse=2)``." msgstr "" -#: ../../library/test.rst:849 -msgid "" -"The *size* argument is normally passed to the decorated test method as an " -"extra argument. If *dry_run* is ``True``, the value passed to the test " -"method may be less than the requested value. If *dry_run* is ``False``, it " -"means the test doesn't support dummy runs when ``-M`` is not specified." +msgid "The *size* argument is normally passed to the decorated test method as an extra argument. If *dry_run* is ``True``, the value passed to the test method may be less than the requested value. If *dry_run* is ``False``, it means the test doesn't support dummy runs when ``-M`` is not specified." msgstr "" -#: ../../library/test.rst:857 msgid "Decorator for tests that fill the address space." msgstr "" -#: ../../library/test.rst:862 -msgid "" -"Return ``False`` if there is no evidence the interpreter was compiled with " -"``musl``, otherwise return a version triple, either ``(0, 0, 0)`` if the " -"version is unknown, or the actual version if it is known. Intended for use " -"in ``skip`` decorators. ``emscripten`` and ``wasi`` are assumed to be " -"compiled with ``musl``; otherwise ``platform.libc_ver`` is checked." +msgid "Return ``False`` if there is no evidence the interpreter was compiled with ``musl``, otherwise return a version triple, either ``(0, 0, 0)`` if the version is unknown, or the actual version if it is known. Intended for use in ``skip`` decorators. ``emscripten`` and ``wasi`` are assumed to be compiled with ``musl``; otherwise ``platform.libc_ver`` is checked." msgstr "" -#: ../../library/test.rst:871 -msgid "" -"Test for syntax errors in *statement* by attempting to compile *statement*. " -"*testcase* is the :mod:`unittest` instance for the test. *errtext* is the " -"regular expression which should match the string representation of the " -"raised :exc:`SyntaxError`. If *lineno* is not ``None``, compares to the " -"line of the exception. If *offset* is not ``None``, compares to the offset " -"of the exception." +msgid "Test for syntax errors in *statement* by attempting to compile *statement*. *testcase* is the :mod:`unittest` instance for the test. *errtext* is the regular expression which should match the string representation of the raised :exc:`SyntaxError`. If *lineno* is not ``None``, compares to the line of the exception. If *offset* is not ``None``, compares to the offset of the exception." msgstr "" -#: ../../library/test.rst:881 msgid "Open *url*. If open fails, raises :exc:`TestFailed`." msgstr "" -#: ../../library/test.rst:886 -msgid "" -"Use this at the end of ``test_main`` whenever sub-processes are started. " -"This will help ensure that no extra children (zombies) stick around to hog " -"resources and create problems when looking for refleaks." +msgid "Use this at the end of ``test_main`` whenever sub-processes are started. This will help ensure that no extra children (zombies) stick around to hog resources and create problems when looking for refleaks." msgstr "" -#: ../../library/test.rst:893 -msgid "" -"Get an attribute, raising :exc:`unittest.SkipTest` if :exc:`AttributeError` " -"is raised." +msgid "Get an attribute, raising :exc:`unittest.SkipTest` if :exc:`AttributeError` is raised." msgstr "" -#: ../../library/test.rst:899 -msgid "" -"Context manager catching unraisable exception " -"using :func:`sys.unraisablehook`." +msgid "Context manager catching unraisable exception using :func:`sys.unraisablehook`." msgstr "" -#: ../../library/test.rst:902 -msgid "" -"Storing the exception value (``cm.unraisable.exc_value``) creates a " -"reference cycle. The reference cycle is broken explicitly when the context " -"manager exits." +msgid "Storing the exception value (``cm.unraisable.exc_value``) creates a reference cycle. The reference cycle is broken explicitly when the context manager exits." msgstr "" -#: ../../library/test.rst:906 -msgid "" -"Storing the object (``cm.unraisable.object``) can resurrect it if it is set " -"to an object which is being finalized. Exiting the context manager clears " -"the stored object." +msgid "Storing the object (``cm.unraisable.object``) can resurrect it if it is set to an object which is being finalized. Exiting the context manager clears the stored object." msgstr "" -#: ../../library/test.rst:912 msgid "" "with support.catch_unraisable_exception() as cm:\n" " # code creating an \"unraisable exception\"\n" @@ -1080,16 +627,9 @@ msgid "" "# (to break a reference cycle)" msgstr "" -#: ../../library/test.rst:927 -msgid "" -"Generic implementation of the :mod:`unittest` ``load_tests`` protocol for " -"use in test packages. *pkg_dir* is the root directory of the package; " -"*loader*, *standard_tests*, and *pattern* are the arguments expected by " -"``load_tests``. In simple cases, the test package's ``__init__.py`` can be " -"the following::" +msgid "Generic implementation of the :mod:`unittest` ``load_tests`` protocol for use in test packages. *pkg_dir* is the root directory of the package; *loader*, *standard_tests*, and *pattern* are the arguments expected by ``load_tests``. In simple cases, the test package's ``__init__.py`` can be the following::" msgstr "" -#: ../../library/test.rst:933 msgid "" "import os\n" "from test.support import load_package_tests\n" @@ -1098,137 +638,60 @@ msgid "" " return load_package_tests(os.path.dirname(__file__), *args)" msgstr "" -#: ../../library/test.rst:942 -msgid "" -"Returns the set of attributes, functions or methods of *ref_api* not found " -"on *other_api*, except for a defined list of items to be ignored in this " -"check specified in *ignore*." +msgid "Returns the set of attributes, functions or methods of *ref_api* not found on *other_api*, except for a defined list of items to be ignored in this check specified in *ignore*." msgstr "" -#: ../../library/test.rst:946 -msgid "" -"By default this skips private attributes beginning with '_' but includes all " -"magic methods, i.e. those starting and ending in '__'." +msgid "By default this skips private attributes beginning with '_' but includes all magic methods, i.e. those starting and ending in '__'." msgstr "" -#: ../../library/test.rst:954 -msgid "" -"Override *object_to_patch.attr_name* with *new_value*. Also add cleanup " -"procedure to *test_instance* to restore *object_to_patch* for *attr_name*. " -"The *attr_name* should be a valid attribute for *object_to_patch*." +msgid "Override *object_to_patch.attr_name* with *new_value*. Also add cleanup procedure to *test_instance* to restore *object_to_patch* for *attr_name*. The *attr_name* should be a valid attribute for *object_to_patch*." msgstr "" -#: ../../library/test.rst:962 -msgid "" -"Run *code* in subinterpreter. Raise :exc:`unittest.SkipTest` " -"if :mod:`tracemalloc` is enabled." +msgid "Run *code* in subinterpreter. Raise :exc:`unittest.SkipTest` if :mod:`tracemalloc` is enabled." msgstr "" -#: ../../library/test.rst:970 -msgid "" -"Decorator that runs the decorated test in a fresh interpreter subprocess, in " -"isolation, so that it does not share global or interpreter state with the " -"rest of the test run. It can decorate a test method or a " -"whole :class:`~unittest.TestCase` subclass. Decorated methods must take no " -"extra arguments. A failure, error or skip in the subprocess is reported for " -"the corresponding test, and individual :meth:`subtests " -"` that fail or are skipped are reported " -"individually. A reported failure or error shows the original subprocess " -"traceback as the cause of the exception." -msgstr "" - -#: ../../library/test.rst:980 -msgid "" -"When a **method** is decorated, only that method runs in a subprocess; all " -"fixtures " -"(:meth:`~unittest.TestCase.setUp` / :meth:`~unittest.TestCase.tearDown`, :meth:`~unittest.TestCase.setUpClass` / :meth:`~unittest.TestCase.tearDownClass` " -"and ``setUpModule()`` / ``tearDownModule()``) run both in the parent process " -"(as usual) and in the subprocess around the method." +msgid "Decorator that runs the decorated test in a fresh interpreter subprocess, in isolation, so that it does not share global or interpreter state with the rest of the test run. It can decorate a test method or a whole :class:`~unittest.TestCase` subclass. Decorated methods must take no extra arguments. A failure, error or skip in the subprocess is reported for the corresponding test, and individual :meth:`subtests ` that fail or are skipped are reported individually. A reported failure or error shows the original subprocess traceback as the cause of the exception." msgstr "" -#: ../../library/test.rst:986 -msgid "" -"When a **class** is decorated, the whole class runs in a single subprocess, " -"and :meth:`~unittest.TestCase.setUpClass`, :meth:`~unittest.TestCase.tearDownClass`, :meth:`~unittest.TestCase.setUp` " -"and :meth:`~unittest.TestCase.tearDown` run once each in the subprocess and " -"are skipped in the parent process. A failure or skip " -"of :meth:`~unittest.TestCase.setUpClass` in the subprocess is reported for " -"the whole class. ``setUpModule()`` cannot be controlled by a class " -"decorator, so it still runs in the parent process too; test it " -"with :data:`runningInSubprocess` if needed." +msgid "When a **method** is decorated, only that method runs in a subprocess; all fixtures (:meth:`~unittest.TestCase.setUp` / :meth:`~unittest.TestCase.tearDown`, :meth:`~unittest.TestCase.setUpClass` / :meth:`~unittest.TestCase.tearDownClass` and ``setUpModule()`` / ``tearDownModule()``) run both in the parent process (as usual) and in the subprocess around the method." msgstr "" -#: ../../library/test.rst:996 -msgid "" -"The subprocess inherits the enabled resources (``-u``), memory limit (``-" -"M``) and verbosity (``-v``) of the parent test run, so " -"that :func:`~test.support.requires_resource`, :func:`~test.support.requires`, :func:`~test.support.bigmemtest` " -"and the like behave consistently in both processes." +msgid "When a **class** is decorated, the whole class runs in a single subprocess, and :meth:`~unittest.TestCase.setUpClass`, :meth:`~unittest.TestCase.tearDownClass`, :meth:`~unittest.TestCase.setUp` and :meth:`~unittest.TestCase.tearDown` run once each in the subprocess and are skipped in the parent process. A failure or skip of :meth:`~unittest.TestCase.setUpClass` in the subprocess is reported for the whole class. ``setUpModule()`` cannot be controlled by a class decorator, so it still runs in the parent process too; test it with :data:`runningInSubprocess` if needed." +msgstr "" + +msgid "The subprocess inherits the enabled resources (``-u``), memory limit (``-M``) and verbosity (``-v``) of the parent test run, so that :func:`~test.support.requires_resource`, :func:`~test.support.requires`, :func:`~test.support.bigmemtest` and the like behave consistently in both processes." msgstr "" -#: ../../library/test.rst:1002 msgid "The test is skipped on platforms without subprocess support." msgstr "" -#: ../../library/test.rst:1007 -msgid "" -"``True`` while the code runs in the isolated subprocess spawned " -"by :func:`runInSubprocess`, and ``False`` otherwise (including in the parent " -"process and in a normal, non-isolated test run). Fixtures such " -"as :meth:`~unittest.TestCase.setUp`, :meth:`~unittest.TestCase.tearDown`, :meth:`~unittest.TestCase.setUpClass`, :meth:`~unittest.TestCase.tearDownClass`, " -"``setUpModule()`` and ``tearDownModule()`` can test it to choose which code " -"to run in the subprocess." +msgid "``True`` while the code runs in the isolated subprocess spawned by :func:`runInSubprocess`, and ``False`` otherwise (including in the parent process and in a normal, non-isolated test run). Fixtures such as :meth:`~unittest.TestCase.setUp`, :meth:`~unittest.TestCase.tearDown`, :meth:`~unittest.TestCase.setUpClass`, :meth:`~unittest.TestCase.tearDownClass`, ``setUpModule()`` and ``tearDownModule()`` can test it to choose which code to run in the subprocess." msgstr "" -#: ../../library/test.rst:1021 msgid "Assert instances of *cls* are deallocated after iterating." msgstr "" -#: ../../library/test.rst:1026 -msgid "" -"Check for the existence of the compiler executables whose names are listed " -"in *cmd_names* or all the compiler executables when *cmd_names* is empty and " -"return the first missing executable or ``None`` when none is found missing." +msgid "Check for the existence of the compiler executables whose names are listed in *cmd_names* or all the compiler executables when *cmd_names* is empty and return the first missing executable or ``None`` when none is found missing." msgstr "" -#: ../../library/test.rst:1034 -msgid "" -"Assert that the ``__all__`` variable of *module* contains all public names." +msgid "Assert that the ``__all__`` variable of *module* contains all public names." msgstr "" -#: ../../library/test.rst:1036 -msgid "" -"The module's public names (its API) are detected automatically based on " -"whether they match the public name convention and were defined in *module*." +msgid "The module's public names (its API) are detected automatically based on whether they match the public name convention and were defined in *module*." msgstr "" -#: ../../library/test.rst:1040 -msgid "" -"The *name_of_module* argument can specify (as a string or tuple thereof) " -"what module(s) an API could be defined in order to be detected as a public " -"API. One case for this is when *module* imports part of its public API from " -"other modules, possibly a C backend (like ``csv`` and its ``_csv``)." +msgid "The *name_of_module* argument can specify (as a string or tuple thereof) what module(s) an API could be defined in order to be detected as a public API. One case for this is when *module* imports part of its public API from other modules, possibly a C backend (like ``csv`` and its ``_csv``)." msgstr "" -#: ../../library/test.rst:1045 -msgid "" -"The *extra* argument can be a set of names that wouldn't otherwise be " -"automatically detected as \"public\", like objects without a " -"proper :attr:`~definition.__module__` attribute. If provided, it will be " -"added to the automatically detected ones." +msgid "The *extra* argument can be a set of names that wouldn't otherwise be automatically detected as \"public\", like objects without a proper :attr:`~definition.__module__` attribute. If provided, it will be added to the automatically detected ones." msgstr "" -#: ../../library/test.rst:1049 -msgid "" -"The *not_exported* argument can be a set of names that must not be treated " -"as part of the public API even though their names indicate otherwise." +msgid "The *not_exported* argument can be a set of names that must not be treated as part of the public API even though their names indicate otherwise." msgstr "" -#: ../../library/test.rst:1052 ../../library/test.rst:1689 msgid "Example use::" msgstr "" -#: ../../library/test.rst:1054 msgid "" "import bar\n" "import foo\n" @@ -1248,396 +711,204 @@ msgid "" " extra=extra, not_exported=not_exported)" msgstr "" -#: ../../library/test.rst:1075 -msgid "" -"Skip tests if the :mod:`multiprocessing.synchronize` module is missing, if " -"there is no available semaphore implementation, or if creating a lock raises " -"an :exc:`OSError`." +msgid "Skip tests if the :mod:`multiprocessing.synchronize` module is missing, if there is no available semaphore implementation, or if creating a lock raises an :exc:`OSError`." msgstr "" -#: ../../library/test.rst:1084 msgid "Assert that type *tp* cannot be instantiated using *args* and *kwds*." msgstr "" -#: ../../library/test.rst:1091 -msgid "" -"This function returns a context manager that will change the " -"global :func:`sys.set_int_max_str_digits` setting for the duration of the " -"context to allow execution of test code that needs a different limit on the " -"number of digits when converting between an integer and string." +msgid "This function returns a context manager that will change the global :func:`sys.set_int_max_str_digits` setting for the duration of the context to allow execution of test code that needs a different limit on the number of digits when converting between an integer and string." msgstr "" -#: ../../library/test.rst:1099 msgid "The :mod:`!test.support` module defines the following classes:" msgstr "" -#: ../../library/test.rst:1104 -msgid "" -"A context manager used to try to prevent crash dialog popups on tests that " -"are expected to crash a subprocess." +msgid "A context manager used to try to prevent crash dialog popups on tests that are expected to crash a subprocess." msgstr "" -#: ../../library/test.rst:1107 -msgid "" -"On Windows, it disables Windows Error Reporting dialogs using `SetErrorMode " -"`_." +msgid "On Windows, it disables Windows Error Reporting dialogs using `SetErrorMode `_." msgstr "" -#: ../../library/test.rst:1110 -msgid "" -"On UNIX, :func:`resource.setrlimit` is used to " -"set :const:`resource.RLIMIT_CORE`'s soft limit to 0 to prevent coredump file " -"creation." +msgid "On UNIX, :func:`resource.setrlimit` is used to set :const:`resource.RLIMIT_CORE`'s soft limit to 0 to prevent coredump file creation." msgstr "" -#: ../../library/test.rst:1114 -msgid "" -"On both platforms, the old value is restored by :meth:`~object.__exit__`." +msgid "On both platforms, the old value is restored by :meth:`~object.__exit__`." msgstr "" -#: ../../library/test.rst:1119 -msgid "" -"Class to save and restore signal handlers registered by the Python signal " -"handler." +msgid "Class to save and restore signal handlers registered by the Python signal handler." msgstr "" -#: ../../library/test.rst:1124 -msgid "" -"Save the signal handlers to a dictionary mapping signal numbers to the " -"current signal handler." +msgid "Save the signal handlers to a dictionary mapping signal numbers to the current signal handler." msgstr "" -#: ../../library/test.rst:1129 -msgid "" -"Set the signal numbers from the :meth:`save` dictionary to the saved handler." +msgid "Set the signal numbers from the :meth:`save` dictionary to the saved handler." msgstr "" -#: ../../library/test.rst:1137 msgid "Try to match a single dict with the supplied arguments." msgstr "" -#: ../../library/test.rst:1142 msgid "Try to match a single stored value (*dv*) with a supplied value (*v*)." msgstr "" -#: ../../library/test.rst:1146 msgid ":mod:`!test.support.socket_helper` --- Utilities for socket tests" msgstr "" -#: ../../library/test.rst:1152 -msgid "" -"The :mod:`!test.support.socket_helper` module provides support for socket " -"tests." +msgid "The :mod:`!test.support.socket_helper` module provides support for socket tests." msgstr "" -#: ../../library/test.rst:1159 msgid "Set to ``True`` if IPv6 is enabled on this host, ``False`` otherwise." msgstr "" -#: ../../library/test.rst:1164 -msgid "" -"Returns an unused port that should be suitable for binding. This is " -"achieved by creating a temporary socket with the same family and type as the " -"``sock`` parameter (default " -"is :const:`~socket.AF_INET`, :const:`~socket.SOCK_STREAM`), and binding it " -"to the specified host address (defaults to ``0.0.0.0``) with the port set to " -"0, eliciting an unused ephemeral port from the OS. The temporary socket is " -"then closed and deleted, and the ephemeral port is returned." +msgid "Returns an unused port that should be suitable for binding. This is achieved by creating a temporary socket with the same family and type as the ``sock`` parameter (default is :const:`~socket.AF_INET`, :const:`~socket.SOCK_STREAM`), and binding it to the specified host address (defaults to ``0.0.0.0``) with the port set to 0, eliciting an unused ephemeral port from the OS. The temporary socket is then closed and deleted, and the ephemeral port is returned." msgstr "" -#: ../../library/test.rst:1173 -msgid "" -"Either this method or :func:`bind_port` should be used for any tests where a " -"server socket needs to be bound to a particular port for the duration of the " -"test. Which one to use depends on whether the calling code is creating a " -"Python socket, or if an unused port needs to be provided in a constructor or " -"passed to an external program (i.e. the ``-accept`` argument to openssl's " -"s_server mode). Always prefer :func:`bind_port` " -"over :func:`find_unused_port` where possible. Using a hard coded port is " -"discouraged since it can make multiple instances of the test impossible to " -"run simultaneously, which is a problem for buildbots." -msgstr "" - -#: ../../library/test.rst:1187 -msgid "" -"Bind the socket to a free port and return the port number. Relies on " -"ephemeral ports in order to ensure we are using an unbound port. This is " -"important as many tests may be running simultaneously, especially in a " -"buildbot environment. This method raises an exception if the " -"``sock.family`` is :const:`~socket.AF_INET` and ``sock.type`` " -"is :const:`~socket.SOCK_STREAM`, and the socket " -"has :const:`~socket.SO_REUSEADDR` or :const:`~socket.SO_REUSEPORT` set on " -"it. Tests should never set these socket options for TCP/IP sockets. The only " -"case for setting these options is testing multicasting via multiple UDP " -"sockets." -msgstr "" - -#: ../../library/test.rst:1198 -msgid "" -"Additionally, if the :const:`~socket.SO_EXCLUSIVEADDRUSE` socket option is " -"available (i.e. on Windows), it will be set on the socket. This will " -"prevent anyone else from binding to our host/port for the duration of the " -"test." +msgid "Either this method or :func:`bind_port` should be used for any tests where a server socket needs to be bound to a particular port for the duration of the test. Which one to use depends on whether the calling code is creating a Python socket, or if an unused port needs to be provided in a constructor or passed to an external program (i.e. the ``-accept`` argument to openssl's s_server mode). Always prefer :func:`bind_port` over :func:`find_unused_port` where possible. Using a hard coded port is discouraged since it can make multiple instances of the test impossible to run simultaneously, which is a problem for buildbots." msgstr "" -#: ../../library/test.rst:1206 -msgid "" -"Bind a Unix socket, raising :exc:`unittest.SkipTest` " -"if :exc:`PermissionError` is raised." +msgid "Bind the socket to a free port and return the port number. Relies on ephemeral ports in order to ensure we are using an unbound port. This is important as many tests may be running simultaneously, especially in a buildbot environment. This method raises an exception if the ``sock.family`` is :const:`~socket.AF_INET` and ``sock.type`` is :const:`~socket.SOCK_STREAM`, and the socket has :const:`~socket.SO_REUSEADDR` or :const:`~socket.SO_REUSEPORT` set on it. Tests should never set these socket options for TCP/IP sockets. The only case for setting these options is testing multicasting via multiple UDP sockets." msgstr "" -#: ../../library/test.rst:1212 -msgid "" -"A decorator for running tests that require a functional ``bind()`` for Unix " -"sockets." +msgid "Additionally, if the :const:`~socket.SO_EXCLUSIVEADDRUSE` socket option is available (i.e. on Windows), it will be set on the socket. This will prevent anyone else from binding to our host/port for the duration of the test." msgstr "" -#: ../../library/test.rst:1218 -msgid "" -"A context manager that raises :exc:`~test.support.ResourceDenied` when " -"various issues with the internet connection manifest themselves as " -"exceptions." +msgid "Bind a Unix socket, raising :exc:`unittest.SkipTest` if :exc:`PermissionError` is raised." msgstr "" -#: ../../library/test.rst:1224 -msgid "" -":mod:`!test.support.script_helper` --- Utilities for the Python execution " -"tests" +msgid "A decorator for running tests that require a functional ``bind()`` for Unix sockets." msgstr "" -#: ../../library/test.rst:1230 -msgid "" -"The :mod:`!test.support.script_helper` module provides support for Python's " -"script execution tests." +msgid "A context manager that raises :exc:`~test.support.ResourceDenied` when various issues with the internet connection manifest themselves as exceptions." msgstr "" -#: ../../library/test.rst:1235 -msgid "" -"Return ``True`` if ``sys.executable interpreter`` requires environment " -"variables in order to be able to run at all." +msgid ":mod:`!test.support.script_helper` --- Utilities for the Python execution tests" msgstr "" -#: ../../library/test.rst:1238 -msgid "" -"This is designed to be used with ``@unittest.skipIf()`` to annotate tests " -"that need to use an ``assert_python*()`` function to launch an isolated mode " -"(``-I``) or no environment mode (``-E``) sub-interpreter process." +msgid "The :mod:`!test.support.script_helper` module provides support for Python's script execution tests." msgstr "" -#: ../../library/test.rst:1242 -msgid "" -"A normal build & test does not run into this situation but it can happen " -"when trying to run the standard library test suite from an interpreter that " -"doesn't have an obvious home with Python's current home finding logic." +msgid "Return ``True`` if ``sys.executable interpreter`` requires environment variables in order to be able to run at all." msgstr "" -#: ../../library/test.rst:1246 -msgid "" -"Setting :envvar:`PYTHONHOME` is one way to get most of the testsuite to run " -"in that situation. :envvar:`PYTHONPATH` or :envvar:`PYTHONUSERSITE` are " -"other common environment variables that might impact whether or not the " -"interpreter can start." +msgid "This is designed to be used with ``@unittest.skipIf()`` to annotate tests that need to use an ``assert_python*()`` function to launch an isolated mode (``-I``) or no environment mode (``-E``) sub-interpreter process." msgstr "" -#: ../../library/test.rst:1254 -msgid "" -"Set up the environment based on *env_vars* for running the interpreter in a " -"subprocess. The values can include ``__isolated``, ``__cleanenv``, " -"``__cwd``, and ``TERM``." +msgid "A normal build & test does not run into this situation but it can happen when trying to run the standard library test suite from an interpreter that doesn't have an obvious home with Python's current home finding logic." +msgstr "" + +msgid "Setting :envvar:`PYTHONHOME` is one way to get most of the testsuite to run in that situation. :envvar:`PYTHONPATH` or :envvar:`PYTHONUSERSITE` are other common environment variables that might impact whether or not the interpreter can start." +msgstr "" + +msgid "Set up the environment based on *env_vars* for running the interpreter in a subprocess. The values can include ``__isolated``, ``__cleanenv``, ``__cwd``, and ``TERM``." msgstr "" -#: ../../library/test.rst:1258 ../../library/test.rst:1274 -#: ../../library/test.rst:1286 msgid "The function no longer strips whitespaces from *stderr*." msgstr "" -#: ../../library/test.rst:1264 -msgid "" -"Assert that running the interpreter with *args* and optional environment " -"variables *env_vars* succeeds (``rc == 0``) and return a ``(return code, " -"stdout, stderr)`` tuple." +msgid "Assert that running the interpreter with *args* and optional environment variables *env_vars* succeeds (``rc == 0``) and return a ``(return code, stdout, stderr)`` tuple." msgstr "" -#: ../../library/test.rst:1268 -msgid "" -"If the *__cleanenv* keyword-only parameter is set, *env_vars* is used as a " -"fresh environment." +msgid "If the *__cleanenv* keyword-only parameter is set, *env_vars* is used as a fresh environment." msgstr "" -#: ../../library/test.rst:1271 -msgid "" -"Python is started in isolated mode (command line option ``-I``), except if " -"the *__isolated* keyword-only parameter is set to ``False``." +msgid "Python is started in isolated mode (command line option ``-I``), except if the *__isolated* keyword-only parameter is set to ``False``." msgstr "" -#: ../../library/test.rst:1280 -msgid "" -"Assert that running the interpreter with *args* and optional environment " -"variables *env_vars* fails (``rc != 0``) and return a ``(return code, " -"stdout, stderr)`` tuple." +msgid "Assert that running the interpreter with *args* and optional environment variables *env_vars* fails (``rc != 0``) and return a ``(return code, stdout, stderr)`` tuple." msgstr "" -#: ../../library/test.rst:1284 msgid "See :func:`assert_python_ok` for more options." msgstr "" -#: ../../library/test.rst:1292 msgid "Run a Python subprocess with the given arguments." msgstr "" -#: ../../library/test.rst:1294 -msgid "" -"*kw* is extra keyword args to pass to :func:`subprocess.Popen`. Returns " -"a :class:`subprocess.Popen` object." +msgid "*kw* is extra keyword args to pass to :func:`subprocess.Popen`. Returns a :class:`subprocess.Popen` object." msgstr "" -#: ../../library/test.rst:1300 -msgid "" -"Run the given :class:`subprocess.Popen` process until completion and return " -"stdout." +msgid "Run the given :class:`subprocess.Popen` process until completion and return stdout." msgstr "" -#: ../../library/test.rst:1306 -msgid "" -"Create script containing *source* in path *script_dir* and " -"*script_basename*. If *omit_suffix* is ``False``, append ``.py`` to the " -"name. Return the full script path." +msgid "Create script containing *source* in path *script_dir* and *script_basename*. If *omit_suffix* is ``False``, append ``.py`` to the name. Return the full script path." msgstr "" -#: ../../library/test.rst:1313 -msgid "" -"Create zip file at *zip_dir* and *zip_basename* with extension ``zip`` which " -"contains the files in *script_name*. *name_in_zip* is the archive name. " -"Return a tuple containing ``(full path, full path of archive name)``." +msgid "Create zip file at *zip_dir* and *zip_basename* with extension ``zip`` which contains the files in *script_name*. *name_in_zip* is the archive name. Return a tuple containing ``(full path, full path of archive name)``." msgstr "" -#: ../../library/test.rst:1320 -msgid "" -"Create a directory named *pkg_dir* containing an ``__init__`` file with " -"*init_source* as its contents." +msgid "Create a directory named *pkg_dir* containing an ``__init__`` file with *init_source* as its contents." msgstr "" -#: ../../library/test.rst:1327 -msgid "" -"Create a zip package directory with a path of *zip_dir* and *zip_basename* " -"containing an empty ``__init__`` file and a file *script_basename* " -"containing the *source*. If *compiled* is ``True``, both source files will " -"be compiled and added to the zip package. Return a tuple of the full zip " -"path and the archive name for the zip file." +msgid "Create a zip package directory with a path of *zip_dir* and *zip_basename* containing an empty ``__init__`` file and a file *script_basename* containing the *source*. If *compiled* is ``True``, both source files will be compiled and added to the zip package. Return a tuple of the full zip path and the archive name for the zip file." msgstr "" -#: ../../library/test.rst:1335 -msgid "" -":mod:`!test.support.bytecode_helper` --- Support tools for testing correct " -"bytecode generation" +msgid ":mod:`!test.support.bytecode_helper` --- Support tools for testing correct bytecode generation" msgstr "" -#: ../../library/test.rst:1340 -msgid "" -"The :mod:`!test.support.bytecode_helper` module provides support for testing " -"and inspecting bytecode generation." +msgid "The :mod:`!test.support.bytecode_helper` module provides support for testing and inspecting bytecode generation." msgstr "" -#: ../../library/test.rst:1345 msgid "The module defines the following class:" msgstr "" -#: ../../library/test.rst:1349 msgid "This class has custom assertion methods for inspecting bytecode." msgstr "" -#: ../../library/test.rst:1353 msgid "Return the disassembly of *co* as string." msgstr "" -#: ../../library/test.rst:1358 -msgid "" -"Return instr if *opname* is found, otherwise throws :exc:`AssertionError`." +msgid "Return instr if *opname* is found, otherwise throws :exc:`AssertionError`." msgstr "" -#: ../../library/test.rst:1363 msgid "Throws :exc:`AssertionError` if *opname* is found." msgstr "" -#: ../../library/test.rst:1367 msgid ":mod:`!test.support.threading_helper` --- Utilities for threading tests" msgstr "" -#: ../../library/test.rst:1372 -msgid "" -"The :mod:`!test.support.threading_helper` module provides support for " -"threading tests." +msgid "The :mod:`!test.support.threading_helper` module provides support for threading tests." msgstr "" -#: ../../library/test.rst:1379 -msgid "" -"Join a *thread* within *timeout*. Raise an :exc:`AssertionError` if thread " -"is still alive after *timeout* seconds." +msgid "Join a *thread* within *timeout*. Raise an :exc:`AssertionError` if thread is still alive after *timeout* seconds." msgstr "" -#: ../../library/test.rst:1385 msgid "Decorator to ensure the threads are cleaned up even if the test fails." msgstr "" -#: ../../library/test.rst:1390 -msgid "" -"Context manager to start *threads*, which is a sequence of threads. *unlock* " -"is a function called after the threads are started, even if an exception was " -"raised; an example would be :meth:`threading.Event.set`. ``start_threads`` " -"will attempt to join the started threads upon exit." +msgid "Context manager to start *threads*, which is a sequence of threads. *unlock* is a function called after the threads are started, even if an exception was raised; an example would be :meth:`threading.Event.set`. ``start_threads`` will attempt to join the started threads upon exit." msgstr "" -#: ../../library/test.rst:1398 -msgid "" -"Cleanup up threads not specified in *original_values*. Designed to emit a " -"warning if a test leaves running threads in the background." +msgid "Cleanup up threads not specified in *original_values*. Designed to emit a warning if a test leaves running threads in the background." msgstr "" -#: ../../library/test.rst:1404 msgid "Return current thread count and copy of dangling threads." msgstr "" -#: ../../library/test.rst:1409 -msgid "" -"Context manager to wait until all threads created in the ``with`` statement " -"exit." +msgid "Context manager to wait until all threads created in the ``with`` statement exit." msgstr "" -#: ../../library/test.rst:1415 -msgid "" -"Context manager catching :class:`threading.Thread` exception " -"using :func:`threading.excepthook`." +msgid "Context manager catching :class:`threading.Thread` exception using :func:`threading.excepthook`." msgstr "" -#: ../../library/test.rst:1418 msgid "Attributes set when an exception is caught:" msgstr "" -#: ../../library/test.rst:1420 msgid "``exc_type``" msgstr "" -#: ../../library/test.rst:1421 msgid "``exc_value``" msgstr "" -#: ../../library/test.rst:1422 msgid "``exc_traceback``" msgstr "" -#: ../../library/test.rst:1423 msgid "``thread``" msgstr "" -#: ../../library/test.rst:1425 msgid "See :func:`threading.excepthook` documentation." msgstr "" -#: ../../library/test.rst:1427 msgid "These attributes are deleted at the context manager exit." msgstr "" -#: ../../library/test.rst:1431 msgid "" "with threading_helper.catch_threading_exception() as cm:\n" " # code spawning a thread which raises an exception\n" @@ -1652,262 +923,138 @@ msgid "" "# (to avoid reference cycles)" msgstr "" -#: ../../library/test.rst:1448 -msgid "" -"Run the worker function concurrently in multiple threads. Re-raises an " -"exception if any thread raises one, after all threads have finished." +msgid "Run the worker function concurrently in multiple threads. Re-raises an exception if any thread raises one, after all threads have finished." msgstr "" -#: ../../library/test.rst:1454 msgid ":mod:`!test.support.os_helper` --- Utilities for os tests" msgstr "" -#: ../../library/test.rst:1459 -msgid "" -"The :mod:`!test.support.os_helper` module provides support for os tests." +msgid "The :mod:`!test.support.os_helper` module provides support for os tests." msgstr "" -#: ../../library/test.rst:1466 msgid "A non-ASCII character encodable by :func:`os.fsencode`." msgstr "" -#: ../../library/test.rst:1471 msgid "Set to :func:`os.getcwd`." msgstr "" -#: ../../library/test.rst:1476 -msgid "" -"Set to a name that is safe to use as the name of a temporary file. Any " -"temporary file that is created should be closed and unlinked (removed)." +msgid "Set to a name that is safe to use as the name of a temporary file. Any temporary file that is created should be closed and unlinked (removed)." msgstr "" -#: ../../library/test.rst:1482 -msgid "" -"Set to a filename containing the :data:`FS_NONASCII` character, if it " -"exists. This guarantees that if the filename exists, it can be encoded and " -"decoded with the default filesystem encoding. This allows tests that require " -"a non-ASCII filename to be easily skipped on platforms where they can't work." +msgid "Set to a filename containing the :data:`FS_NONASCII` character, if it exists. This guarantees that if the filename exists, it can be encoded and decoded with the default filesystem encoding. This allows tests that require a non-ASCII filename to be easily skipped on platforms where they can't work." msgstr "" -#: ../../library/test.rst:1490 -msgid "" -"Set to a filename (str type) that should not be able to be encoded by file " -"system encoding in strict mode. It may be ``None`` if it's not possible to " -"generate such a filename." +msgid "Set to a filename (str type) that should not be able to be encoded by file system encoding in strict mode. It may be ``None`` if it's not possible to generate such a filename." msgstr "" -#: ../../library/test.rst:1497 -msgid "" -"Set to a filename (bytes type) that should not be able to be decoded by file " -"system encoding in strict mode. It may be ``None`` if it's not possible to " -"generate such a filename." +msgid "Set to a filename (bytes type) that should not be able to be decoded by file system encoding in strict mode. It may be ``None`` if it's not possible to generate such a filename." msgstr "" -#: ../../library/test.rst:1504 msgid "Set to a non-ASCII name for a temporary file." msgstr "" -#: ../../library/test.rst:1509 -msgid "" -"Class used to temporarily set or unset environment variables. Instances can " -"be used as a context manager and have a complete dictionary interface for " -"querying/modifying the underlying ``os.environ``. After exit from the " -"context manager all changes to environment variables done through this " -"instance will be rolled back." +msgid "Class used to temporarily set or unset environment variables. Instances can be used as a context manager and have a complete dictionary interface for querying/modifying the underlying ``os.environ``. After exit from the context manager all changes to environment variables done through this instance will be rolled back." msgstr "" -#: ../../library/test.rst:1515 msgid "Added dictionary interface." msgstr "" -#: ../../library/test.rst:1521 -msgid "" -"Simple :term:`path-like object`. It implements " -"the :meth:`~os.PathLike.__fspath__` method which just returns the *path* " -"argument. If *path* is an exception, it will be raised in :meth:`!" -"__fspath__`." +msgid "Simple :term:`path-like object`. It implements the :meth:`~os.PathLike.__fspath__` method which just returns the *path* argument. If *path* is an exception, it will be raised in :meth:`!__fspath__`." msgstr "" -#: ../../library/test.rst:1529 -msgid "" -"Temporarily set the environment variable ``envvar`` to the value of " -"``value``." +msgid "Temporarily set the environment variable ``envvar`` to the value of ``value``." msgstr "" -#: ../../library/test.rst:1535 msgid "Temporarily unset one or more environment variables." msgstr "" -#: ../../library/test.rst:1537 msgid "More than one environment variable can be unset." msgstr "" -#: ../../library/test.rst:1543 msgid "Return ``True`` if the OS supports symbolic links, ``False`` otherwise." msgstr "" -#: ../../library/test.rst:1549 msgid "Return ``True`` if the OS supports xattr, ``False`` otherwise." msgstr "" -#: ../../library/test.rst:1555 -msgid "" -"A context manager that temporarily changes the current working directory to " -"*path* and yields the directory." +msgid "A context manager that temporarily changes the current working directory to *path* and yields the directory." msgstr "" -#: ../../library/test.rst:1558 -msgid "" -"If *quiet* is ``False``, the context manager raises an exception on error. " -"Otherwise, it issues only a warning and keeps the current working directory " -"the same." +msgid "If *quiet* is ``False``, the context manager raises an exception on error. Otherwise, it issues only a warning and keeps the current working directory the same." msgstr "" -#: ../../library/test.rst:1565 -msgid "" -"Create an empty file with *filename*. If it already exists, truncate it." +msgid "Create an empty file with *filename*. If it already exists, truncate it." msgstr "" -#: ../../library/test.rst:1570 msgid "Count the number of open file descriptors." msgstr "" -#: ../../library/test.rst:1575 msgid "Return ``True`` if the file system for *directory* is case-insensitive." msgstr "" -#: ../../library/test.rst:1580 -msgid "" -"Create an invalid file descriptor by opening and closing a temporary file, " -"and returning its descriptor." +msgid "Create an invalid file descriptor by opening and closing a temporary file, and returning its descriptor." msgstr "" -#: ../../library/test.rst:1586 -msgid "" -"Call :func:`os.rmdir` on *filename*. On Windows platforms, this is wrapped " -"with a wait loop that checks for the existence of the file, which is needed " -"due to antivirus programs that can hold files open and prevent deletion." +msgid "Call :func:`os.rmdir` on *filename*. On Windows platforms, this is wrapped with a wait loop that checks for the existence of the file, which is needed due to antivirus programs that can hold files open and prevent deletion." msgstr "" -#: ../../library/test.rst:1594 -msgid "" -"Call :func:`shutil.rmtree` on *path* or call :func:`os.lstat` " -"and :func:`os.rmdir` to remove a path and its contents. As " -"with :func:`rmdir`, on Windows platforms this is wrapped with a wait loop " -"that checks for the existence of the files." +msgid "Call :func:`shutil.rmtree` on *path* or call :func:`os.lstat` and :func:`os.rmdir` to remove a path and its contents. As with :func:`rmdir`, on Windows platforms this is wrapped with a wait loop that checks for the existence of the files." msgstr "" -#: ../../library/test.rst:1602 msgid "A decorator for running tests that require support for symbolic links." msgstr "" -#: ../../library/test.rst:1607 msgid "A decorator for running tests that require support for xattr." msgstr "" -#: ../../library/test.rst:1612 -msgid "" -"A context manager that temporarily creates a new directory and changes the " -"current working directory (CWD)." +msgid "A context manager that temporarily creates a new directory and changes the current working directory (CWD)." msgstr "" -#: ../../library/test.rst:1615 -msgid "" -"The context manager creates a temporary directory in the current directory " -"with name *name* before temporarily changing the current working directory. " -"If *name* is ``None``, the temporary directory is created " -"using :func:`tempfile.mkdtemp`." +msgid "The context manager creates a temporary directory in the current directory with name *name* before temporarily changing the current working directory. If *name* is ``None``, the temporary directory is created using :func:`tempfile.mkdtemp`." msgstr "" -#: ../../library/test.rst:1620 -msgid "" -"If *quiet* is ``False`` and it is not possible to create or change the CWD, " -"an error is raised. Otherwise, only a warning is raised and the original " -"CWD is used." +msgid "If *quiet* is ``False`` and it is not possible to create or change the CWD, an error is raised. Otherwise, only a warning is raised and the original CWD is used." msgstr "" -#: ../../library/test.rst:1627 -msgid "" -"A context manager that creates a temporary directory at *path* and yields " -"the directory." +msgid "A context manager that creates a temporary directory at *path* and yields the directory." msgstr "" -#: ../../library/test.rst:1630 -msgid "" -"If *path* is ``None``, the temporary directory is created " -"using :func:`tempfile.mkdtemp`. If *quiet* is ``False``, the context " -"manager raises an exception on error. Otherwise, if *path* is specified and " -"cannot be created, only a warning is issued." +msgid "If *path* is ``None``, the temporary directory is created using :func:`tempfile.mkdtemp`. If *quiet* is ``False``, the context manager raises an exception on error. Otherwise, if *path* is specified and cannot be created, only a warning is issued." msgstr "" -#: ../../library/test.rst:1638 msgid "A context manager that temporarily sets the process umask." msgstr "" -#: ../../library/test.rst:1643 -msgid "" -"Call :func:`os.unlink` on *filename*. As with :func:`rmdir`, on Windows " -"platforms, this is wrapped with a wait loop that checks for the existence of " -"the file." +msgid "Call :func:`os.unlink` on *filename*. As with :func:`rmdir`, on Windows platforms, this is wrapped with a wait loop that checks for the existence of the file." msgstr "" -#: ../../library/test.rst:1649 msgid ":mod:`!test.support.import_helper` --- Utilities for import tests" msgstr "" -#: ../../library/test.rst:1654 -msgid "" -"The :mod:`!test.support.import_helper` module provides support for import " -"tests." +msgid "The :mod:`!test.support.import_helper` module provides support for import tests." msgstr "" -#: ../../library/test.rst:1661 -msgid "" -"Remove the module named *module_name* from ``sys.modules`` and delete any " -"byte-compiled files of the module." +msgid "Remove the module named *module_name* from ``sys.modules`` and delete any byte-compiled files of the module." msgstr "" -#: ../../library/test.rst:1667 -msgid "" -"This function imports and returns a fresh copy of the named Python module by " -"removing the named module from ``sys.modules`` before doing the import. Note " -"that unlike :func:`reload`, the original module is not affected by this " -"operation." +msgid "This function imports and returns a fresh copy of the named Python module by removing the named module from ``sys.modules`` before doing the import. Note that unlike :func:`reload`, the original module is not affected by this operation." msgstr "" -#: ../../library/test.rst:1672 -msgid "" -"*fresh* is an iterable of additional module names that are also removed from " -"the ``sys.modules`` cache before doing the import." +msgid "*fresh* is an iterable of additional module names that are also removed from the ``sys.modules`` cache before doing the import." msgstr "" -#: ../../library/test.rst:1675 -msgid "" -"*blocked* is an iterable of module names that are replaced with ``None`` in " -"the module cache during the import to ensure that attempts to import them " -"raise :exc:`ImportError`." +msgid "*blocked* is an iterable of module names that are replaced with ``None`` in the module cache during the import to ensure that attempts to import them raise :exc:`ImportError`." msgstr "" -#: ../../library/test.rst:1679 -msgid "" -"The named module and any modules named in the *fresh* and *blocked* " -"parameters are saved before starting the import and then reinserted into " -"``sys.modules`` when the fresh import is complete." +msgid "The named module and any modules named in the *fresh* and *blocked* parameters are saved before starting the import and then reinserted into ``sys.modules`` when the fresh import is complete." msgstr "" -#: ../../library/test.rst:1683 -msgid "" -"Module and package deprecation messages are suppressed during this import if " -"*deprecated* is ``True``." +msgid "Module and package deprecation messages are suppressed during this import if *deprecated* is ``True``." msgstr "" -#: ../../library/test.rst:1686 -msgid "" -"This function will raise :exc:`ImportError` if the named module cannot be " -"imported." +msgid "This function will raise :exc:`ImportError` if the named module cannot be imported." msgstr "" -#: ../../library/test.rst:1691 msgid "" "# Get copies of the warnings module for testing without affecting the\n" "# version being used by the rest of the test suite. One copy uses the\n" @@ -1917,175 +1064,86 @@ msgid "" "c_warnings = import_fresh_module('warnings', fresh=['_warnings'])" msgstr "" -#: ../../library/test.rst:1703 -msgid "" -"This function imports and returns the named module. Unlike a normal import, " -"this function raises :exc:`unittest.SkipTest` if the module cannot be " -"imported." +msgid "This function imports and returns the named module. Unlike a normal import, this function raises :exc:`unittest.SkipTest` if the module cannot be imported." msgstr "" -#: ../../library/test.rst:1707 -msgid "" -"Module and package deprecation messages are suppressed during this import if " -"*deprecated* is ``True``. If a module is required on a platform but " -"optional for others, set *required_on* to an iterable of platform prefixes " -"which will be compared against :data:`sys.platform`." +msgid "Module and package deprecation messages are suppressed during this import if *deprecated* is ``True``. If a module is required on a platform but optional for others, set *required_on* to an iterable of platform prefixes which will be compared against :data:`sys.platform`." msgstr "" -#: ../../library/test.rst:1717 msgid "Return a copy of :data:`sys.modules`." msgstr "" -#: ../../library/test.rst:1722 -msgid "" -"Remove modules except for *oldmodules* and ``encodings`` in order to " -"preserve internal cache." +msgid "Remove modules except for *oldmodules* and ``encodings`` in order to preserve internal cache." msgstr "" -#: ../../library/test.rst:1728 msgid "Delete *name* from ``sys.modules``." msgstr "" -#: ../../library/test.rst:1733 -msgid "" -"Move a :pep:`3147`/:pep:`488` pyc file to its legacy pyc location and return " -"the file system path to the legacy pyc file. The *source* value is the file " -"system path to the source file. It does not need to exist, however the PEP " -"3147/488 pyc file must exist." +msgid "Move a :pep:`3147`/:pep:`488` pyc file to its legacy pyc location and return the file system path to the legacy pyc file. The *source* value is the file system path to the source file. It does not need to exist, however the PEP 3147/488 pyc file must exist." msgstr "" -#: ../../library/test.rst:1741 -msgid "" -"A context manager to force import to return a new module reference. This is " -"useful for testing module-level behaviors, such as the emission of " -"a :exc:`DeprecationWarning` on import. Example usage::" +msgid "A context manager to force import to return a new module reference. This is useful for testing module-level behaviors, such as the emission of a :exc:`DeprecationWarning` on import. Example usage::" msgstr "" -#: ../../library/test.rst:1745 msgid "" "with CleanImport('foo'):\n" " importlib.import_module('foo') # New reference." msgstr "" -#: ../../library/test.rst:1751 msgid "A context manager to temporarily add directories to :data:`sys.path`." msgstr "" -#: ../../library/test.rst:1753 -msgid "" -"This makes a copy of :data:`sys.path`, appends any directories given as " -"positional arguments, then reverts :data:`sys.path` to the copied settings " -"when the context ends." +msgid "This makes a copy of :data:`sys.path`, appends any directories given as positional arguments, then reverts :data:`sys.path` to the copied settings when the context ends." msgstr "" -#: ../../library/test.rst:1757 -msgid "" -"Note that *all* :data:`sys.path` modifications in the body of the context " -"manager, including replacement of the object, will be reverted at the end of " -"the block." +msgid "Note that *all* :data:`sys.path` modifications in the body of the context manager, including replacement of the object, will be reverted at the end of the block." msgstr "" -#: ../../library/test.rst:1763 msgid ":mod:`!test.support.warnings_helper` --- Utilities for warnings tests" msgstr "" -#: ../../library/test.rst:1768 -msgid "" -"The :mod:`!test.support.warnings_helper` module provides support for " -"warnings tests." +msgid "The :mod:`!test.support.warnings_helper` module provides support for warnings tests." msgstr "" -#: ../../library/test.rst:1775 -msgid "" -"Suppress warnings that are instances of *category*, which must " -"be :exc:`Warning` or a subclass. Roughly equivalent " -"to :func:`warnings.catch_warnings` " -"with :meth:`warnings.simplefilter('ignore', category=category) " -"`. For example::" +msgid "Suppress warnings that are instances of *category*, which must be :exc:`Warning` or a subclass. Roughly equivalent to :func:`warnings.catch_warnings` with :meth:`warnings.simplefilter('ignore', category=category) `. For example::" msgstr "" -#: ../../library/test.rst:1781 msgid "" "@warning_helper.ignore_warnings(category=DeprecationWarning)\n" "def test_suppress_warning():\n" " # do something" msgstr "" -#: ../../library/test.rst:1790 -msgid "" -"Context manager to check that no :exc:`ResourceWarning` was raised. You " -"must remove the object which may emit :exc:`ResourceWarning` before the end " -"of the context manager." +msgid "Context manager to check that no :exc:`ResourceWarning` was raised. You must remove the object which may emit :exc:`ResourceWarning` before the end of the context manager." msgstr "" -#: ../../library/test.rst:1797 -msgid "" -"Test for syntax warning in *statement* by attempting to compile *statement*. " -"Test also that the :exc:`SyntaxWarning` is emitted only once, and that it " -"will be converted to a :exc:`SyntaxError` when turned into error. *testcase* " -"is the :mod:`unittest` instance for the test. *errtext* is the regular " -"expression which should match the string representation of the " -"emitted :exc:`SyntaxWarning` and raised :exc:`SyntaxError`. If *lineno* is " -"not ``None``, compares to the line of the warning and exception. If *offset* " -"is not ``None``, compares to the offset of the exception." +msgid "Test for syntax warning in *statement* by attempting to compile *statement*. Test also that the :exc:`SyntaxWarning` is emitted only once, and that it will be converted to a :exc:`SyntaxError` when turned into error. *testcase* is the :mod:`unittest` instance for the test. *errtext* is the regular expression which should match the string representation of the emitted :exc:`SyntaxWarning` and raised :exc:`SyntaxError`. If *lineno* is not ``None``, compares to the line of the warning and exception. If *offset* is not ``None``, compares to the offset of the exception." msgstr "" -#: ../../library/test.rst:1811 -msgid "" -"A convenience wrapper for :func:`warnings.catch_warnings` that makes it " -"easier to test that a warning was correctly raised. It is approximately " -"equivalent to calling ``warnings.catch_warnings(record=True)`` " -"with :meth:`warnings.simplefilter` set to ``always`` and with the option to " -"automatically validate the results that are recorded." +msgid "A convenience wrapper for :func:`warnings.catch_warnings` that makes it easier to test that a warning was correctly raised. It is approximately equivalent to calling ``warnings.catch_warnings(record=True)`` with :meth:`warnings.simplefilter` set to ``always`` and with the option to automatically validate the results that are recorded." msgstr "" -#: ../../library/test.rst:1817 -msgid "" -"``check_warnings`` accepts 2-tuples of the form ``(\"message regexp\", " -"WarningCategory)`` as positional arguments. If one or more *filters* are " -"provided, or if the optional keyword argument *quiet* is ``False``, it " -"checks to make sure the warnings are as expected: each specified filter " -"must match at least one of the warnings raised by the enclosed code or the " -"test fails, and if any warnings are raised that do not match any of the " -"specified filters the test fails. To disable the first of these checks, set " -"*quiet* to ``True``." +msgid "``check_warnings`` accepts 2-tuples of the form ``(\"message regexp\", WarningCategory)`` as positional arguments. If one or more *filters* are provided, or if the optional keyword argument *quiet* is ``False``, it checks to make sure the warnings are as expected: each specified filter must match at least one of the warnings raised by the enclosed code or the test fails, and if any warnings are raised that do not match any of the specified filters the test fails. To disable the first of these checks, set *quiet* to ``True``." msgstr "" -#: ../../library/test.rst:1826 msgid "If no arguments are specified, it defaults to::" msgstr "" -#: ../../library/test.rst:1828 msgid "check_warnings((\"\", Warning), quiet=True)" msgstr "" -#: ../../library/test.rst:1830 msgid "In this case all warnings are caught and no errors are raised." msgstr "" -#: ../../library/test.rst:1832 -msgid "" -"On entry to the context manager, a :class:`WarningRecorder` instance is " -"returned. The underlying warnings list from :func:`~warnings.catch_warnings` " -"is available via the recorder object's :attr:`warnings` attribute. As a " -"convenience, the attributes of the object representing the most recent " -"warning can also be accessed directly through the recorder object (see " -"example below). If no warning has been raised, then any of the attributes " -"that would otherwise be expected on an object representing a warning will " -"return ``None``." +msgid "On entry to the context manager, a :class:`WarningRecorder` instance is returned. The underlying warnings list from :func:`~warnings.catch_warnings` is available via the recorder object's :attr:`warnings` attribute. As a convenience, the attributes of the object representing the most recent warning can also be accessed directly through the recorder object (see example below). If no warning has been raised, then any of the attributes that would otherwise be expected on an object representing a warning will return ``None``." msgstr "" -#: ../../library/test.rst:1841 -msgid "" -"The recorder object also has a :meth:`reset` method, which clears the " -"warnings list." +msgid "The recorder object also has a :meth:`reset` method, which clears the warnings list." msgstr "" -#: ../../library/test.rst:1844 msgid "The context manager is designed to be used like this::" msgstr "" -#: ../../library/test.rst:1846 msgid "" "with check_warnings((\"assertion is always true\", SyntaxWarning),\n" " (\"\", UserWarning)):\n" @@ -2093,19 +1151,12 @@ msgid "" " warnings.warn(UserWarning(\"Hide me!\"))" msgstr "" -#: ../../library/test.rst:1851 -msgid "" -"In this case if either warning was not raised, or some other warning was " -"raised, :func:`check_warnings` would raise an error." +msgid "In this case if either warning was not raised, or some other warning was raised, :func:`check_warnings` would raise an error." msgstr "" -#: ../../library/test.rst:1854 -msgid "" -"When a test needs to look more deeply into the warnings, rather than just " -"checking whether or not they occurred, code like this can be used::" +msgid "When a test needs to look more deeply into the warnings, rather than just checking whether or not they occurred, code like this can be used::" msgstr "" -#: ../../library/test.rst:1857 msgid "" "with check_warnings(quiet=True) as w:\n" " warnings.warn(\"foo\")\n" @@ -2118,18 +1169,11 @@ msgid "" " assert len(w.warnings) == 0" msgstr "" -#: ../../library/test.rst:1868 -msgid "" -"Here all warnings will be caught, and the test code tests the captured " -"warnings directly." +msgid "Here all warnings will be caught, and the test code tests the captured warnings directly." msgstr "" -#: ../../library/test.rst:1871 msgid "New optional arguments *filters* and *quiet*." msgstr "" -#: ../../library/test.rst:1877 -msgid "" -"Class used to record warnings for unit tests. See documentation " -"of :func:`check_warnings` above for more details." +msgid "Class used to record warnings for unit tests. See documentation of :func:`check_warnings` above for more details." msgstr "" diff --git a/library/text.po b/library/text.po index 25bbb80a..184d8d79 100644 --- a/library/text.po +++ b/library/text.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:15+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,19 +21,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/text.rst:6 msgid "Text Processing Services" msgstr "" -#: ../../library/text.rst:8 -msgid "" -"The modules described in this chapter provide a wide range of string " -"manipulation operations and other text processing services." +msgid "The modules described in this chapter provide a wide range of string manipulation operations and other text processing services." msgstr "" -#: ../../library/text.rst:11 -msgid "" -"The :mod:`codecs` module described under :ref:`binaryservices` is also " -"highly relevant to text processing. In addition, see the documentation for " -"Python's built-in string type in :ref:`textseq`." +msgid "The :mod:`codecs` module described under :ref:`binaryservices` is also highly relevant to text processing. In addition, see the documentation for Python's built-in string type in :ref:`textseq`." msgstr "" diff --git a/library/textwrap.po b/library/textwrap.po index 8d0af6c3..2d63b1dd 100644 --- a/library/textwrap.po +++ b/library/textwrap.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:15+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,71 +23,39 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/textwrap.rst:2 msgid ":mod:`!textwrap` --- Text wrapping and filling" msgstr "" -#: ../../library/textwrap.rst:10 msgid "**Source code:** :source:`Lib/textwrap.py`" msgstr "" -#: ../../library/textwrap.rst:14 -msgid "" -"The :mod:`!textwrap` module provides some convenience functions, as well " -"as :class:`TextWrapper`, the class that does all the work. If you're just " -"wrapping or filling one or two text strings, the convenience functions " -"should be good enough; otherwise, you should use an instance " -"of :class:`TextWrapper` for efficiency." +msgid "The :mod:`!textwrap` module provides some convenience functions, as well as :class:`TextWrapper`, the class that does all the work. If you're just wrapping or filling one or two text strings, the convenience functions should be good enough; otherwise, you should use an instance of :class:`TextWrapper` for efficiency." msgstr "" -#: ../../library/textwrap.rst:27 -msgid "" -"Wraps the single paragraph in *text* (a string) so every line is at most " -"*width* characters long. Returns a list of output lines, without final " -"newlines." +msgid "Wraps the single paragraph in *text* (a string) so every line is at most *width* characters long. Returns a list of output lines, without final newlines." msgstr "" -#: ../../library/textwrap.rst:31 -msgid "" -"Optional keyword arguments correspond to the instance attributes " -"of :class:`TextWrapper`, documented below." +msgid "Optional keyword arguments correspond to the instance attributes of :class:`TextWrapper`, documented below." msgstr "" -#: ../../library/textwrap.rst:34 -msgid "" -"See the :meth:`TextWrapper.wrap` method for additional details on " -"how :func:`wrap` behaves." +msgid "See the :meth:`TextWrapper.wrap` method for additional details on how :func:`wrap` behaves." msgstr "" -#: ../../library/textwrap.rst:45 -msgid "" -"Wraps the single paragraph in *text*, and returns a single string containing " -"the wrapped paragraph. :func:`fill` is shorthand for ::" +msgid "Wraps the single paragraph in *text*, and returns a single string containing the wrapped paragraph. :func:`fill` is shorthand for ::" msgstr "" -#: ../../library/textwrap.rst:48 msgid "\"\\n\".join(wrap(text, ...))" msgstr "" -#: ../../library/textwrap.rst:50 -msgid "" -"In particular, :func:`fill` accepts exactly the same keyword arguments " -"as :func:`wrap`." +msgid "In particular, :func:`fill` accepts exactly the same keyword arguments as :func:`wrap`." msgstr "" -#: ../../library/textwrap.rst:58 msgid "Collapse and truncate the given *text* to fit in the given *width*." msgstr "" -#: ../../library/textwrap.rst:60 -msgid "" -"First the whitespace in *text* is collapsed (all whitespace is replaced by " -"single spaces). If the result fits in the *width*, it is returned. " -"Otherwise, enough words are dropped from the end so that the remaining words " -"plus the *placeholder* fit within *width*::" +msgid "First the whitespace in *text* is collapsed (all whitespace is replaced by single spaces). If the result fits in the *width*, it is returned. Otherwise, enough words are dropped from the end so that the remaining words plus the *placeholder* fit within *width*::" msgstr "" -#: ../../library/textwrap.rst:65 msgid "" ">>> textwrap.shorten(\"Hello world!\", width=12)\n" "'Hello world!'\n" @@ -97,44 +65,24 @@ msgid "" "'Hello...'" msgstr "" -#: ../../library/textwrap.rst:72 -msgid "" -"Optional keyword arguments correspond to the instance attributes " -"of :class:`TextWrapper`, documented below. Note that the whitespace is " -"collapsed before the text is passed to the :class:`TextWrapper` :meth:`fill` " -"function, so changing the value " -"of :attr:`.tabsize`, :attr:`.expand_tabs`, :attr:`.drop_whitespace`, " -"and :attr:`.replace_whitespace` will have no effect." +msgid "Optional keyword arguments correspond to the instance attributes of :class:`TextWrapper`, documented below. Note that the whitespace is collapsed before the text is passed to the :class:`TextWrapper` :meth:`fill` function, so changing the value of :attr:`.tabsize`, :attr:`.expand_tabs`, :attr:`.drop_whitespace`, and :attr:`.replace_whitespace` will have no effect." msgstr "" -#: ../../library/textwrap.rst:82 msgid "Remove any common leading whitespace from every line in *text*." msgstr "" -#: ../../library/textwrap.rst:84 -msgid "" -"This can be used to make triple-quoted strings line up with the left edge of " -"the display, while still presenting them in the source code in indented form." +msgid "This can be used to make triple-quoted strings line up with the left edge of the display, while still presenting them in the source code in indented form." msgstr "" -#: ../../library/textwrap.rst:87 -msgid "" -"Note that tabs and spaces are both treated as whitespace, but they are not " -"equal: the lines ``\" hello\"`` and ``\"\\thello\"`` are considered to have " -"no common leading whitespace." +msgid "Note that tabs and spaces are both treated as whitespace, but they are not equal: the lines ``\" hello\"`` and ``\"\\thello\"`` are considered to have no common leading whitespace." msgstr "" -#: ../../library/textwrap.rst:91 -msgid "" -"Lines containing only whitespace are ignored in the input and normalized to " -"a single newline character in the output." +msgid "Lines containing only whitespace are ignored in the input and normalized to a single newline character in the output." msgstr "" -#: ../../library/textwrap.rst:94 ../../library/textwrap.rst:119 msgid "For example::" msgstr "" -#: ../../library/textwrap.rst:96 msgid "" "def test():\n" " # end first line with \\ to avoid the empty line!\n" @@ -146,42 +94,27 @@ msgid "" " print(repr(dedent(s))) # prints 'hello\\n world\\n'" msgstr "" -#: ../../library/textwrap.rst:105 -msgid "" -"The :func:`!dedent` function now correctly normalizes blank lines containing " -"only whitespace characters. Previously, the implementation only normalized " -"blank lines containing tabs and spaces." +msgid "The :func:`!dedent` function now correctly normalizes blank lines containing only whitespace characters. Previously, the implementation only normalized blank lines containing tabs and spaces." msgstr "" -#: ../../library/textwrap.rst:112 msgid "Add *prefix* to the beginning of selected lines in *text*." msgstr "" -#: ../../library/textwrap.rst:114 msgid "Lines are separated by calling ``text.splitlines(True)``." msgstr "" -#: ../../library/textwrap.rst:116 -msgid "" -"By default, *prefix* is added to all lines that do not consist solely of " -"whitespace (including any line endings)." +msgid "By default, *prefix* is added to all lines that do not consist solely of whitespace (including any line endings)." msgstr "" -#: ../../library/textwrap.rst:121 msgid "" ">>> s = 'hello\\n\\n \\nworld'\n" ">>> indent(s, ' ')\n" "' hello\\n\\n \\n world'" msgstr "" -#: ../../library/textwrap.rst:125 -msgid "" -"The optional *predicate* argument can be used to control which lines are " -"indented. For example, it is easy to add *prefix* to even empty and " -"whitespace-only lines::" +msgid "The optional *predicate* argument can be used to control which lines are indented. For example, it is easy to add *prefix* to even empty and whitespace-only lines::" msgstr "" -#: ../../library/textwrap.rst:129 msgid "" ">>> print(indent(s, '+ ', lambda line: True))\n" "+ hello\n" @@ -190,215 +123,100 @@ msgid "" "+ world" msgstr "" -#: ../../library/textwrap.rst:138 -msgid "" -":func:`wrap`, :func:`fill` and :func:`shorten` work by creating " -"a :class:`TextWrapper` instance and calling a single method on it. That " -"instance is not reused, so for applications that process many text strings " -"using :func:`wrap` and/or :func:`fill`, it may be more efficient to create " -"your own :class:`TextWrapper` object." +msgid ":func:`wrap`, :func:`fill` and :func:`shorten` work by creating a :class:`TextWrapper` instance and calling a single method on it. That instance is not reused, so for applications that process many text strings using :func:`wrap` and/or :func:`fill`, it may be more efficient to create your own :class:`TextWrapper` object." msgstr "" -#: ../../library/textwrap.rst:144 -msgid "" -"Text is preferably wrapped on whitespaces and right after the hyphens in " -"hyphenated words; only then will long words be broken if necessary, " -"unless :attr:`TextWrapper.break_long_words` is set to false." +msgid "Text is preferably wrapped on whitespaces and right after the hyphens in hyphenated words; only then will long words be broken if necessary, unless :attr:`TextWrapper.break_long_words` is set to false." msgstr "" -#: ../../library/textwrap.rst:150 -msgid "" -"The :class:`TextWrapper` constructor accepts a number of optional keyword " -"arguments. Each keyword argument corresponds to an instance attribute, so " -"for example ::" +msgid "The :class:`TextWrapper` constructor accepts a number of optional keyword arguments. Each keyword argument corresponds to an instance attribute, so for example ::" msgstr "" -#: ../../library/textwrap.rst:154 msgid "wrapper = TextWrapper(initial_indent=\"* \")" msgstr "" -#: ../../library/textwrap.rst:156 msgid "is the same as ::" msgstr "" -#: ../../library/textwrap.rst:158 msgid "" "wrapper = TextWrapper()\n" "wrapper.initial_indent = \"* \"" msgstr "" -#: ../../library/textwrap.rst:161 -msgid "" -"You can reuse the same :class:`TextWrapper` object many times, and you can " -"change any of its options through direct assignment to instance attributes " -"between uses." +msgid "You can reuse the same :class:`TextWrapper` object many times, and you can change any of its options through direct assignment to instance attributes between uses." msgstr "" -#: ../../library/textwrap.rst:165 -msgid "" -"The :class:`TextWrapper` instance attributes (and keyword arguments to the " -"constructor) are as follows:" +msgid "The :class:`TextWrapper` instance attributes (and keyword arguments to the constructor) are as follows:" msgstr "" -#: ../../library/textwrap.rst:171 -msgid "" -"(default: ``70``) The maximum length of wrapped lines. As long as there are " -"no individual words in the input text longer " -"than :attr:`width`, :class:`TextWrapper` guarantees that no output line will " -"be longer than :attr:`width` characters." +msgid "(default: ``70``) The maximum length of wrapped lines. As long as there are no individual words in the input text longer than :attr:`width`, :class:`TextWrapper` guarantees that no output line will be longer than :attr:`width` characters." msgstr "" -#: ../../library/textwrap.rst:179 -msgid "" -"(default: ``True``) If true, then all tab characters in *text* will be " -"expanded to spaces using the :meth:`~str.expandtabs` method of *text*." +msgid "(default: ``True``) If true, then all tab characters in *text* will be expanded to spaces using the :meth:`~str.expandtabs` method of *text*." msgstr "" -#: ../../library/textwrap.rst:185 -msgid "" -"(default: ``8``) If :attr:`expand_tabs` is true, then all tab characters in " -"*text* will be expanded to zero or more spaces, depending on the current " -"column and the given tab size." +msgid "(default: ``8``) If :attr:`expand_tabs` is true, then all tab characters in *text* will be expanded to zero or more spaces, depending on the current column and the given tab size." msgstr "" -#: ../../library/textwrap.rst:194 -msgid "" -"(default: ``True``) If true, after tab expansion but before wrapping, " -"the :meth:`wrap` method will replace each whitespace character with a single " -"space. The whitespace characters replaced are as follows: tab, newline, " -"vertical tab, formfeed, and carriage return (``'\\t\\n\\v\\f\\r'``)." +msgid "(default: ``True``) If true, after tab expansion but before wrapping, the :meth:`wrap` method will replace each whitespace character with a single space. The whitespace characters replaced are as follows: tab, newline, vertical tab, formfeed, and carriage return (``'\\t\\n\\v\\f\\r'``)." msgstr "" -#: ../../library/textwrap.rst:202 -msgid "" -"If :attr:`expand_tabs` is false and :attr:`replace_whitespace` is true, each " -"tab character will be replaced by a single space, which is *not* the same as " -"tab expansion." +msgid "If :attr:`expand_tabs` is false and :attr:`replace_whitespace` is true, each tab character will be replaced by a single space, which is *not* the same as tab expansion." msgstr "" -#: ../../library/textwrap.rst:208 -msgid "" -"If :attr:`replace_whitespace` is false, newlines may appear in the middle of " -"a line and cause strange output. For this reason, text should be split into " -"paragraphs (using :meth:`str.splitlines` or similar) which are wrapped " -"separately." +msgid "If :attr:`replace_whitespace` is false, newlines may appear in the middle of a line and cause strange output. For this reason, text should be split into paragraphs (using :meth:`str.splitlines` or similar) which are wrapped separately." msgstr "" -#: ../../library/textwrap.rst:216 -msgid "" -"(default: ``True``) If true, whitespace at the beginning and ending of every " -"line (after wrapping but before indenting) is dropped. Whitespace at the " -"beginning of the paragraph, however, is not dropped if non-whitespace " -"follows it. If whitespace being dropped takes up an entire line, the whole " -"line is dropped." +msgid "(default: ``True``) If true, whitespace at the beginning and ending of every line (after wrapping but before indenting) is dropped. Whitespace at the beginning of the paragraph, however, is not dropped if non-whitespace follows it. If whitespace being dropped takes up an entire line, the whole line is dropped." msgstr "" -#: ../../library/textwrap.rst:225 -msgid "" -"(default: ``''``) String that will be prepended to the first line of wrapped " -"output. Counts towards the length of the first line. The empty string is " -"not indented." +msgid "(default: ``''``) String that will be prepended to the first line of wrapped output. Counts towards the length of the first line. The empty string is not indented." msgstr "" -#: ../../library/textwrap.rst:232 -msgid "" -"(default: ``''``) String that will be prepended to all lines of wrapped " -"output except the first. Counts towards the length of each line except the " -"first." +msgid "(default: ``''``) String that will be prepended to all lines of wrapped output except the first. Counts towards the length of each line except the first." msgstr "" -#: ../../library/textwrap.rst:239 -msgid "" -"(default: ``False``) If true, :class:`TextWrapper` attempts to detect " -"sentence endings and ensure that sentences are always separated by exactly " -"two spaces. This is generally desired for text in a monospaced font. " -"However, the sentence detection algorithm is imperfect: it assumes that a " -"sentence ending consists of a lowercase letter followed by one of ``'.'``, " -"``'!'``, or ``'?'``, possibly followed by one of ``'\"'`` or ``\"'\"``, " -"followed by a space. One problem with this algorithm is that it is unable " -"to detect the difference between \"Dr.\" in ::" +msgid "(default: ``False``) If true, :class:`TextWrapper` attempts to detect sentence endings and ensure that sentences are always separated by exactly two spaces. This is generally desired for text in a monospaced font. However, the sentence detection algorithm is imperfect: it assumes that a sentence ending consists of a lowercase letter followed by one of ``'.'``, ``'!'``, or ``'?'``, possibly followed by one of ``'\"'`` or ``\"'\"``, followed by a space. One problem with this algorithm is that it is unable to detect the difference between \"Dr.\" in ::" msgstr "" -#: ../../library/textwrap.rst:248 msgid "[...] Dr. Frankenstein's monster [...]" msgstr "" -#: ../../library/textwrap.rst:250 msgid "and \"Spot.\" in ::" msgstr "" -#: ../../library/textwrap.rst:252 msgid "[...] See Spot. See Spot run [...]" msgstr "" -#: ../../library/textwrap.rst:254 msgid ":attr:`fix_sentence_endings` is false by default." msgstr "" -#: ../../library/textwrap.rst:256 -msgid "" -"Since the sentence detection algorithm relies on ``string.lowercase`` for " -"the definition of \"lowercase letter\", and a convention of using two spaces " -"after a period to separate sentences on the same line, it is specific to " -"English-language texts." +msgid "Since the sentence detection algorithm relies on ``string.lowercase`` for the definition of \"lowercase letter\", and a convention of using two spaces after a period to separate sentences on the same line, it is specific to English-language texts." msgstr "" -#: ../../library/textwrap.rst:264 -msgid "" -"(default: ``True``) If true, then words longer than :attr:`width` will be " -"broken in order to ensure that no lines are longer than :attr:`width`. If " -"it is false, long words will not be broken, and some lines may be longer " -"than :attr:`width`. (Long words will be put on a line by themselves, in " -"order to minimize the amount by which :attr:`width` is exceeded.)" +msgid "(default: ``True``) If true, then words longer than :attr:`width` will be broken in order to ensure that no lines are longer than :attr:`width`. If it is false, long words will not be broken, and some lines may be longer than :attr:`width`. (Long words will be put on a line by themselves, in order to minimize the amount by which :attr:`width` is exceeded.)" msgstr "" -#: ../../library/textwrap.rst:273 -msgid "" -"(default: ``True``) If true, wrapping will occur preferably on whitespaces " -"and right after hyphens in compound words, as it is customary in English. If " -"false, only whitespaces will be considered as potentially good places for " -"line breaks, but you need to set :attr:`break_long_words` to false if you " -"want truly insecable words. Default behaviour in previous versions was to " -"always allow breaking hyphenated words." +msgid "(default: ``True``) If true, wrapping will occur preferably on whitespaces and right after hyphens in compound words, as it is customary in English. If false, only whitespaces will be considered as potentially good places for line breaks, but you need to set :attr:`break_long_words` to false if you want truly insecable words. Default behaviour in previous versions was to always allow breaking hyphenated words." msgstr "" -#: ../../library/textwrap.rst:283 -msgid "" -"(default: ``None``) If not ``None``, then the output will contain at most " -"*max_lines* lines, with *placeholder* appearing at the end of the output." +msgid "(default: ``None``) If not ``None``, then the output will contain at most *max_lines* lines, with *placeholder* appearing at the end of the output." msgstr "" -#: ../../library/textwrap.rst:293 -msgid "" -"(default: ``' [...]'``) String that will appear at the end of the output " -"text if it has been truncated." +msgid "(default: ``' [...]'``) String that will appear at the end of the output text if it has been truncated." msgstr "" -#: ../../library/textwrap.rst:299 -msgid "" -":class:`TextWrapper` also provides some public methods, analogous to the " -"module-level convenience functions:" +msgid ":class:`TextWrapper` also provides some public methods, analogous to the module-level convenience functions:" msgstr "" -#: ../../library/textwrap.rst:304 -msgid "" -"Wraps the single paragraph in *text* (a string) so every line is at " -"most :attr:`width` characters long. All wrapping options are taken from " -"instance attributes of the :class:`TextWrapper` instance. Returns a list of " -"output lines, without final newlines. If the wrapped output has no content, " -"the returned list is empty." +msgid "Wraps the single paragraph in *text* (a string) so every line is at most :attr:`width` characters long. All wrapping options are taken from instance attributes of the :class:`TextWrapper` instance. Returns a list of output lines, without final newlines. If the wrapped output has no content, the returned list is empty." msgstr "" -#: ../../library/textwrap.rst:313 -msgid "" -"Wraps the single paragraph in *text*, and returns a single string containing " -"the wrapped paragraph." +msgid "Wraps the single paragraph in *text*, and returns a single string containing the wrapped paragraph." msgstr "" -#: ../../library/textwrap.rst:289 msgid "..." msgstr "" -#: ../../library/textwrap.rst:289 msgid "placeholder" msgstr "" diff --git a/library/threading.po b/library/threading.po index 441016d9..43ffbfbc 100644 --- a/library/threading.po +++ b/library/threading.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:15+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,54 +23,30 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/threading.rst:2 msgid ":mod:`!threading` --- Thread-based parallelism" msgstr "" -#: ../../library/threading.rst:7 msgid "**Source code:** :source:`Lib/threading.py`" msgstr "" -#: ../../library/threading.rst:11 -msgid "" -"This module constructs higher-level threading interfaces on top of the lower " -"level :mod:`_thread` module." +msgid "This module constructs higher-level threading interfaces on top of the lower level :mod:`_thread` module." msgstr "" -#: ../../library/threading.rst:194 ../../library/threading.rst:293 -#: ../../library/threading.rst:678 ../../includes/wasm-notavail.rst:3 msgid "Availability" msgstr "" -#: ../../includes/wasm-notavail.rst:5 -msgid "" -"This module does not work or is not available on WebAssembly. See :ref:`wasm-" -"availability` for more information." +msgid "This module does not work or is not available on WebAssembly. See :ref:`wasm-availability` for more information." msgstr "" -#: ../../library/threading.rst:17 msgid "Introduction" msgstr "" -#: ../../library/threading.rst:19 -msgid "" -"The :mod:`!threading` module provides a way to run multiple `threads " -"`_ (smaller units of a " -"process) concurrently within a single process. It allows for the creation " -"and management of threads, making it possible to execute tasks in parallel, " -"sharing memory space. Threads are particularly useful when tasks are I/O " -"bound, such as file operations or making network requests, where much of the " -"time is spent waiting for external resources." +msgid "The :mod:`!threading` module provides a way to run multiple `threads `_ (smaller units of a process) concurrently within a single process. It allows for the creation and management of threads, making it possible to execute tasks in parallel, sharing memory space. Threads are particularly useful when tasks are I/O bound, such as file operations or making network requests, where much of the time is spent waiting for external resources." msgstr "" -#: ../../library/threading.rst:27 -msgid "" -"A typical use case for :mod:`!threading` includes managing a pool of worker " -"threads that can process multiple tasks concurrently. Here's a basic " -"example of creating and starting threads using :class:`~threading.Thread`::" +msgid "A typical use case for :mod:`!threading` includes managing a pool of worker threads that can process multiple tasks concurrently. Here's a basic example of creating and starting threads using :class:`~threading.Thread`::" msgstr "" -#: ../../library/threading.rst:31 msgid "" "import threading\n" "import time\n" @@ -89,8 +65,7 @@ msgid "" "# Start threads for each link\n" "threads = []\n" "for link in links:\n" -" # Using `args` to pass positional arguments and `kwargs` for keyword " -"arguments\n" +" # Using `args` to pass positional arguments and `kwargs` for keyword arguments\n" " t = threading.Thread(target=crawl, args=(link,), kwargs={\"delay\": 2})\n" " threads.append(t)\n" "\n" @@ -103,318 +78,156 @@ msgid "" " t.join()" msgstr "" -#: ../../library/threading.rst:60 msgid "This module used to be optional, it is now always available." msgstr "" -#: ../../library/threading.rst:65 -msgid "" -":class:`concurrent.futures.ThreadPoolExecutor` offers a higher level " -"interface to push tasks to a background thread without blocking execution of " -"the calling thread, while still being able to retrieve their results when " -"needed." +msgid ":class:`concurrent.futures.ThreadPoolExecutor` offers a higher level interface to push tasks to a background thread without blocking execution of the calling thread, while still being able to retrieve their results when needed." msgstr "" -#: ../../library/threading.rst:69 -msgid "" -":mod:`queue` provides a thread-safe interface for exchanging data between " -"running threads." +msgid ":mod:`queue` provides a thread-safe interface for exchanging data between running threads." msgstr "" -#: ../../library/threading.rst:72 -msgid "" -":mod:`asyncio` offers an alternative approach to achieving task level " -"concurrency without requiring the use of multiple operating system threads." +msgid ":mod:`asyncio` offers an alternative approach to achieving task level concurrency without requiring the use of multiple operating system threads." msgstr "" -#: ../../library/threading.rst:77 -msgid "" -"In the Python 2.x series, this module contained ``camelCase`` names for some " -"methods and functions. These are deprecated as of Python 3.10, but they are " -"still supported for compatibility with Python 2.5 and lower." +msgid "In the Python 2.x series, this module contained ``camelCase`` names for some methods and functions. These are deprecated as of Python 3.10, but they are still supported for compatibility with Python 2.5 and lower." msgstr "" -#: ../../library/threading.rst:84 -msgid "" -"In CPython, due to the :term:`Global Interpreter Lock `, only one thread can execute Python code at once (even though certain " -"performance-oriented libraries might overcome this limitation). If you want " -"your application to make better use of the computational resources of multi-" -"core machines, you are advised to use :mod:`multiprocessing` " -"or :class:`concurrent.futures.ProcessPoolExecutor`. However, threading is " -"still an appropriate model if you want to run multiple I/O-bound tasks " -"simultaneously." +msgid "In CPython, due to the :term:`Global Interpreter Lock `, only one thread can execute Python code at once (even though certain performance-oriented libraries might overcome this limitation). If you want your application to make better use of the computational resources of multi-core machines, you are advised to use :mod:`multiprocessing` or :class:`concurrent.futures.ProcessPoolExecutor`. However, threading is still an appropriate model if you want to run multiple I/O-bound tasks simultaneously." msgstr "" -#: ../../library/threading.rst:95 msgid "GIL and performance considerations" msgstr "" -#: ../../library/threading.rst:97 -msgid "" -"Unlike the :mod:`multiprocessing` module, which uses separate processes to " -"bypass the :term:`global interpreter lock` (GIL), the threading module " -"operates within a single process, meaning that all threads share the same " -"memory space. However, the GIL limits the performance gains of threading " -"when it comes to CPU-bound tasks, as only one thread can execute Python " -"bytecode at a time. Despite this, threads remain a useful tool for achieving " -"concurrency in many scenarios." +msgid "Unlike the :mod:`multiprocessing` module, which uses separate processes to bypass the :term:`global interpreter lock` (GIL), the threading module operates within a single process, meaning that all threads share the same memory space. However, the GIL limits the performance gains of threading when it comes to CPU-bound tasks, as only one thread can execute Python bytecode at a time. Despite this, threads remain a useful tool for achieving concurrency in many scenarios." msgstr "" -#: ../../library/threading.rst:105 -msgid "" -"As of Python 3.13, :term:`free-threaded ` builds can disable " -"the GIL, enabling true parallel execution of threads, but this feature is " -"not available by default (see :pep:`703`)." +msgid "As of Python 3.13, :term:`free-threaded ` builds can disable the GIL, enabling true parallel execution of threads, but this feature is not available by default (see :pep:`703`)." msgstr "" -#: ../../library/threading.rst:112 msgid "Reference" msgstr "" -#: ../../library/threading.rst:114 msgid "This module defines the following functions:" msgstr "" -#: ../../library/threading.rst:119 -msgid "" -"Return the number of :class:`Thread` objects currently alive. The returned " -"count is equal to the length of the list returned by :func:`.enumerate`." +msgid "Return the number of :class:`Thread` objects currently alive. The returned count is equal to the length of the list returned by :func:`.enumerate`." msgstr "" -#: ../../library/threading.rst:122 msgid "The function ``activeCount`` is a deprecated alias for this function." msgstr "" -#: ../../library/threading.rst:127 -msgid "" -"Return the current :class:`Thread` object, corresponding to the caller's " -"thread of control. If the caller's thread of control was not created " -"through the :mod:`!threading` module, a dummy thread object with limited " -"functionality is returned." +msgid "Return the current :class:`Thread` object, corresponding to the caller's thread of control. If the caller's thread of control was not created through the :mod:`!threading` module, a dummy thread object with limited functionality is returned." msgstr "" -#: ../../library/threading.rst:132 msgid "The function ``currentThread`` is a deprecated alias for this function." msgstr "" -#: ../../library/threading.rst:137 msgid "Handle uncaught exception raised by :func:`Thread.run`." msgstr "" -#: ../../library/threading.rst:139 msgid "The *args* argument has the following attributes:" msgstr "" -#: ../../library/threading.rst:141 msgid "*exc_type*: Exception type." msgstr "" -#: ../../library/threading.rst:142 msgid "*exc_value*: Exception value, can be ``None``." msgstr "" -#: ../../library/threading.rst:143 msgid "*exc_traceback*: Exception traceback, can be ``None``." msgstr "" -#: ../../library/threading.rst:144 msgid "*thread*: Thread which raised the exception, can be ``None``." msgstr "" -#: ../../library/threading.rst:146 -msgid "" -"If *exc_type* is :exc:`SystemExit`, the exception is silently ignored. " -"Otherwise, the exception is printed out on :data:`sys.stderr`." +msgid "If *exc_type* is :exc:`SystemExit`, the exception is silently ignored. Otherwise, the exception is printed out on :data:`sys.stderr`." msgstr "" -#: ../../library/threading.rst:149 -msgid "" -"If this function raises an exception, :func:`sys.excepthook` is called to " -"handle it." +msgid "If this function raises an exception, :func:`sys.excepthook` is called to handle it." msgstr "" -#: ../../library/threading.rst:152 -msgid "" -":func:`threading.excepthook` can be overridden to control how uncaught " -"exceptions raised by :func:`Thread.run` are handled." +msgid ":func:`threading.excepthook` can be overridden to control how uncaught exceptions raised by :func:`Thread.run` are handled." msgstr "" -#: ../../library/threading.rst:155 -msgid "" -"Storing *exc_value* using a custom hook can create a reference cycle. It " -"should be cleared explicitly to break the reference cycle when the exception " -"is no longer needed." +msgid "Storing *exc_value* using a custom hook can create a reference cycle. It should be cleared explicitly to break the reference cycle when the exception is no longer needed." msgstr "" -#: ../../library/threading.rst:159 -msgid "" -"Storing *thread* using a custom hook can resurrect it if it is set to an " -"object which is being finalized. Avoid storing *thread* after the custom " -"hook completes to avoid resurrecting objects." +msgid "Storing *thread* using a custom hook can resurrect it if it is set to an object which is being finalized. Avoid storing *thread* after the custom hook completes to avoid resurrecting objects." msgstr "" -#: ../../library/threading.rst:164 msgid ":func:`sys.excepthook` handles uncaught exceptions." msgstr "" -#: ../../library/threading.rst:170 -msgid "" -"Holds the original value of :func:`threading.excepthook`. It is saved so " -"that the original value can be restored in case they happen to get replaced " -"with broken or alternative objects." +msgid "Holds the original value of :func:`threading.excepthook`. It is saved so that the original value can be restored in case they happen to get replaced with broken or alternative objects." msgstr "" -#: ../../library/threading.rst:178 -msgid "" -"Return the 'thread identifier' of the current thread. This is a nonzero " -"integer. Its value has no direct meaning; it is intended as a magic cookie " -"to be used e.g. to index a dictionary of thread-specific data. Thread " -"identifiers may be recycled when a thread exits and another thread is " -"created." +msgid "Return the 'thread identifier' of the current thread. This is a nonzero integer. Its value has no direct meaning; it is intended as a magic cookie to be used e.g. to index a dictionary of thread-specific data. Thread identifiers may be recycled when a thread exits and another thread is created." msgstr "" -#: ../../library/threading.rst:189 -msgid "" -"Return the native integral Thread ID of the current thread assigned by the " -"kernel. This is a non-negative integer. Its value may be used to uniquely " -"identify this particular thread system-wide (until the thread terminates, " -"after which the value may be recycled by the OS)." +msgid "Return the native integral Thread ID of the current thread assigned by the kernel. This is a non-negative integer. Its value may be used to uniquely identify this particular thread system-wide (until the thread terminates, after which the value may be recycled by the OS)." msgstr "" -#: ../../library/threading.rst:198 msgid "Added support for GNU/kFreeBSD." msgstr "" -#: ../../library/threading.rst:204 -msgid "" -"Return a list of all :class:`Thread` objects currently active. The list " -"includes daemonic threads and dummy thread objects created " -"by :func:`current_thread`. It excludes terminated threads and threads that " -"have not yet been started. However, the main thread is always part of the " -"result, even when terminated." +msgid "Return a list of all :class:`Thread` objects currently active. The list includes daemonic threads and dummy thread objects created by :func:`current_thread`. It excludes terminated threads and threads that have not yet been started. However, the main thread is always part of the result, even when terminated." msgstr "" -#: ../../library/threading.rst:213 -msgid "" -"Return the main :class:`Thread` object. In normal conditions, the main " -"thread is the thread from which the Python interpreter was started." +msgid "Return the main :class:`Thread` object. In normal conditions, the main thread is the thread from which the Python interpreter was started." msgstr "" -#: ../../library/threading.rst:224 -msgid "" -"Set a trace function for all threads started from the :mod:`!threading` " -"module. The *func* will be passed to :func:`sys.settrace` for each thread, " -"before its :meth:`~Thread.run` method is called." +msgid "Set a trace function for all threads started from the :mod:`!threading` module. The *func* will be passed to :func:`sys.settrace` for each thread, before its :meth:`~Thread.run` method is called." msgstr "" -#: ../../library/threading.rst:230 -msgid "" -"Set a trace function for all threads started from the :mod:`!threading` " -"module and all Python threads that are currently executing." +msgid "Set a trace function for all threads started from the :mod:`!threading` module and all Python threads that are currently executing." msgstr "" -#: ../../library/threading.rst:233 -msgid "" -"The *func* will be passed to :func:`sys.settrace` for each thread, before " -"its :meth:`~Thread.run` method is called." +msgid "The *func* will be passed to :func:`sys.settrace` for each thread, before its :meth:`~Thread.run` method is called." msgstr "" -#: ../../library/threading.rst:244 msgid "Get the trace function as set by :func:`settrace`." msgstr "" -#: ../../library/threading.rst:253 -msgid "" -"Set a profile function for all threads started from the :mod:`!threading` " -"module. The *func* will be passed to :func:`sys.setprofile` for each " -"thread, before its :meth:`~Thread.run` method is called." +msgid "Set a profile function for all threads started from the :mod:`!threading` module. The *func* will be passed to :func:`sys.setprofile` for each thread, before its :meth:`~Thread.run` method is called." msgstr "" -#: ../../library/threading.rst:259 -msgid "" -"Set a profile function for all threads started from the :mod:`!threading` " -"module and all Python threads that are currently executing." +msgid "Set a profile function for all threads started from the :mod:`!threading` module and all Python threads that are currently executing." msgstr "" -#: ../../library/threading.rst:262 -msgid "" -"The *func* will be passed to :func:`sys.setprofile` for each thread, before " -"its :meth:`~Thread.run` method is called." +msgid "The *func* will be passed to :func:`sys.setprofile` for each thread, before its :meth:`~Thread.run` method is called." msgstr "" -#: ../../library/threading.rst:271 msgid "Get the profiler function as set by :func:`setprofile`." msgstr "" -#: ../../library/threading.rst:278 -msgid "" -"Return the thread stack size used when creating new threads. The optional " -"*size* argument specifies the stack size to be used for subsequently created " -"threads, and must be 0 (use platform or configured default) or a positive " -"integer value of at least 32,768 (32 KiB). If *size* is not specified, 0 is " -"used. If changing the thread stack size is unsupported, " -"a :exc:`RuntimeError` is raised. If the specified stack size is invalid, " -"a :exc:`ValueError` is raised and the stack size is unmodified. 32 KiB is " -"currently the minimum supported stack size value to guarantee sufficient " -"stack space for the interpreter itself. Note that some platforms may have " -"particular restrictions on values for the stack size, such as requiring a " -"minimum stack size > 32 KiB or requiring allocation in multiples of the " -"system memory page size - platform documentation should be referred to for " -"more information (4 KiB pages are common; using multiples of 4096 for the " -"stack size is the suggested approach in the absence of more specific " -"information)." -msgstr "" - -#: ../../library/threading.rst:295 +msgid "Return the thread stack size used when creating new threads. The optional *size* argument specifies the stack size to be used for subsequently created threads, and must be 0 (use platform or configured default) or a positive integer value of at least 32,768 (32 KiB). If *size* is not specified, 0 is used. If changing the thread stack size is unsupported, a :exc:`RuntimeError` is raised. If the specified stack size is invalid, a :exc:`ValueError` is raised and the stack size is unmodified. 32 KiB is currently the minimum supported stack size value to guarantee sufficient stack space for the interpreter itself. Note that some platforms may have particular restrictions on values for the stack size, such as requiring a minimum stack size > 32 KiB or requiring allocation in multiples of the system memory page size - platform documentation should be referred to for more information (4 KiB pages are common; using multiples of 4096 for the stack size is the suggested approach in the absence of more specific information)." +msgstr "" + msgid "Unix platforms with POSIX threads support." msgstr "" -#: ../../library/threading.rst:298 msgid "This module also defines the following constant:" msgstr "" -#: ../../library/threading.rst:302 -msgid "" -"The maximum value allowed for the *timeout* parameter of blocking functions " -"(:meth:`Lock.acquire`, :meth:`RLock.acquire`, :meth:`Condition.wait`, etc.). " -"Specifying a timeout greater than this value will raise " -"an :exc:`OverflowError`." +msgid "The maximum value allowed for the *timeout* parameter of blocking functions (:meth:`Lock.acquire`, :meth:`RLock.acquire`, :meth:`Condition.wait`, etc.). Specifying a timeout greater than this value will raise an :exc:`OverflowError`." msgstr "" -#: ../../library/threading.rst:310 -msgid "" -"This module defines a number of classes, which are detailed in the sections " -"below." +msgid "This module defines a number of classes, which are detailed in the sections below." msgstr "" -#: ../../library/threading.rst:313 -msgid "" -"The design of this module is loosely based on Java's threading model. " -"However, where Java makes locks and condition variables basic behavior of " -"every object, they are separate objects in Python. Python's :class:`Thread` " -"class supports a subset of the behavior of Java's Thread class; currently, " -"there are no priorities, no thread groups, and threads cannot be destroyed, " -"stopped, suspended, resumed, or interrupted. The static methods of Java's " -"Thread class, when implemented, are mapped to module-level functions." +msgid "The design of this module is loosely based on Java's threading model. However, where Java makes locks and condition variables basic behavior of every object, they are separate objects in Python. Python's :class:`Thread` class supports a subset of the behavior of Java's Thread class; currently, there are no priorities, no thread groups, and threads cannot be destroyed, stopped, suspended, resumed, or interrupted. The static methods of Java's Thread class, when implemented, are mapped to module-level functions." msgstr "" -#: ../../library/threading.rst:321 msgid "All of the methods described below are executed atomically." msgstr "" -#: ../../library/threading.rst:325 msgid "Thread-local data" msgstr "" -#: ../../library/threading.rst:327 -msgid "" -"Thread-local data is data whose values are thread specific. If you have data " -"that you want to be local to a thread, create a :class:`local` object and " -"use its attributes::" +msgid "Thread-local data is data whose values are thread specific. If you have data that you want to be local to a thread, create a :class:`local` object and use its attributes::" msgstr "" -#: ../../library/threading.rst:331 msgid "" ">>> mydata = local()\n" ">>> mydata.number = 42\n" @@ -422,11 +235,9 @@ msgid "" "42" msgstr "" -#: ../../library/threading.rst:336 msgid "You can also access the :class:`local`-object's dictionary::" msgstr "" -#: ../../library/threading.rst:338 msgid "" ">>> mydata.__dict__\n" "{'number': 42}\n" @@ -436,11 +247,9 @@ msgid "" "[]" msgstr "" -#: ../../library/threading.rst:345 msgid "If we access the data in a different thread::" msgstr "" -#: ../../library/threading.rst:347 msgid "" ">>> log = []\n" ">>> def f():\n" @@ -457,34 +266,20 @@ msgid "" "[[], 11]" msgstr "" -#: ../../library/threading.rst:361 -msgid "" -"we get different data. Furthermore, changes made in the other thread don't " -"affect data seen in this thread::" +msgid "we get different data. Furthermore, changes made in the other thread don't affect data seen in this thread::" msgstr "" -#: ../../library/threading.rst:364 msgid "" ">>> mydata.number\n" "42" msgstr "" -#: ../../library/threading.rst:367 -msgid "" -"Of course, values you get from a :class:`local` object, including " -"their :attr:`~object.__dict__` attribute, are for whatever thread was " -"current at the time the attribute was read. For that reason, you generally " -"don't want to save these values across threads, as they apply only to the " -"thread they came from." +msgid "Of course, values you get from a :class:`local` object, including their :attr:`~object.__dict__` attribute, are for whatever thread was current at the time the attribute was read. For that reason, you generally don't want to save these values across threads, as they apply only to the thread they came from." msgstr "" -#: ../../library/threading.rst:373 -msgid "" -"You can create custom :class:`local` objects by subclassing " -"the :class:`local` class::" +msgid "You can create custom :class:`local` objects by subclassing the :class:`local` class::" msgstr "" -#: ../../library/threading.rst:376 msgid "" ">>> class MyLocal(local):\n" "... number = 2\n" @@ -494,58 +289,43 @@ msgid "" "... return self.number ** 2" msgstr "" -#: ../../library/threading.rst:383 -msgid "" -"This can be useful to support default values, methods and initialization. " -"Note that if you define an :py:meth:`~object.__init__` method, it will be " -"called each time the :class:`local` object is used in a separate thread. " -"This is necessary to initialize each thread's dictionary." +msgid "This can be useful to support default values, methods and initialization. Note that if you define an :py:meth:`~object.__init__` method, it will be called each time the :class:`local` object is used in a separate thread. This is necessary to initialize each thread's dictionary." msgstr "" -#: ../../library/threading.rst:389 msgid "Now if we create a :class:`local` object::" msgstr "" -#: ../../library/threading.rst:391 msgid ">>> mydata = MyLocal(color='red')" msgstr "" -#: ../../library/threading.rst:393 msgid "we have a default number::" msgstr "" -#: ../../library/threading.rst:395 msgid "" ">>> mydata.number\n" "2" msgstr "" -#: ../../library/threading.rst:398 msgid "an initial color::" msgstr "" -#: ../../library/threading.rst:400 msgid "" ">>> mydata.color\n" "'red'\n" ">>> del mydata.color" msgstr "" -#: ../../library/threading.rst:404 msgid "And a method that operates on the data::" msgstr "" -#: ../../library/threading.rst:406 msgid "" ">>> mydata.squared()\n" "4" msgstr "" -#: ../../library/threading.rst:409 msgid "As before, we can access the data in a separate thread::" msgstr "" -#: ../../library/threading.rst:411 msgid "" ">>> log = []\n" ">>> thread = threading.Thread(target=f)\n" @@ -555,11 +335,9 @@ msgid "" "[[('color', 'red')], 11]" msgstr "" -#: ../../library/threading.rst:418 msgid "without affecting this thread's data::" msgstr "" -#: ../../library/threading.rst:420 msgid "" ">>> mydata.number\n" "2\n" @@ -569,13 +347,9 @@ msgid "" "AttributeError: 'MyLocal' object has no attribute 'color'" msgstr "" -#: ../../library/threading.rst:427 -msgid "" -"Note that subclasses can define :term:`__slots__`, but they are not thread " -"local. They are shared across threads::" +msgid "Note that subclasses can define :term:`__slots__`, but they are not thread local. They are shared across threads::" msgstr "" -#: ../../library/threading.rst:430 msgid "" ">>> class MyLocal(local):\n" "... __slots__ = 'number'\n" @@ -585,242 +359,122 @@ msgid "" ">>> mydata.color = 'red'" msgstr "" -#: ../../library/threading.rst:437 msgid "So, the separate thread::" msgstr "" -#: ../../library/threading.rst:439 msgid "" ">>> thread = threading.Thread(target=f)\n" ">>> thread.start()\n" ">>> thread.join()" msgstr "" -#: ../../library/threading.rst:443 msgid "affects what we see::" msgstr "" -#: ../../library/threading.rst:445 msgid "" ">>> mydata.number\n" "11" msgstr "" -#: ../../library/threading.rst:451 msgid "A class that represents thread-local data." msgstr "" -#: ../../library/threading.rst:457 msgid "Thread objects" msgstr "" -#: ../../library/threading.rst:459 -msgid "" -"The :class:`Thread` class represents an activity that is run in a separate " -"thread of control. There are two ways to specify the activity: by passing a " -"callable object to the constructor, or by overriding the :meth:`~Thread.run` " -"method in a subclass. No other methods (except for the constructor) should " -"be overridden in a subclass. In other words, *only* override the " -"``__init__()`` and :meth:`~Thread.run` methods of this class." +msgid "The :class:`Thread` class represents an activity that is run in a separate thread of control. There are two ways to specify the activity: by passing a callable object to the constructor, or by overriding the :meth:`~Thread.run` method in a subclass. No other methods (except for the constructor) should be overridden in a subclass. In other words, *only* override the ``__init__()`` and :meth:`~Thread.run` methods of this class." msgstr "" -#: ../../library/threading.rst:466 -msgid "" -"Once a thread object is created, its activity must be started by calling the " -"thread's :meth:`~Thread.start` method. This invokes the :meth:`~Thread.run` " -"method in a separate thread of control." +msgid "Once a thread object is created, its activity must be started by calling the thread's :meth:`~Thread.start` method. This invokes the :meth:`~Thread.run` method in a separate thread of control." msgstr "" -#: ../../library/threading.rst:470 -msgid "" -"Once the thread's activity is started, the thread is considered 'alive'. It " -"stops being alive when its :meth:`~Thread.run` method terminates -- either " -"normally, or by raising an unhandled exception. " -"The :meth:`~Thread.is_alive` method tests whether the thread is alive." +msgid "Once the thread's activity is started, the thread is considered 'alive'. It stops being alive when its :meth:`~Thread.run` method terminates -- either normally, or by raising an unhandled exception. The :meth:`~Thread.is_alive` method tests whether the thread is alive." msgstr "" -#: ../../library/threading.rst:475 -msgid "" -"Other threads can call a thread's :meth:`~Thread.join` method. This blocks " -"the calling thread until the thread whose :meth:`~Thread.join` method is " -"called is terminated." +msgid "Other threads can call a thread's :meth:`~Thread.join` method. This blocks the calling thread until the thread whose :meth:`~Thread.join` method is called is terminated." msgstr "" -#: ../../library/threading.rst:479 -msgid "" -"A thread has a name. The name can be passed to the constructor, and read or " -"changed through the :attr:`~Thread.name` attribute." +msgid "A thread has a name. The name can be passed to the constructor, and read or changed through the :attr:`~Thread.name` attribute." msgstr "" -#: ../../library/threading.rst:482 -msgid "" -"If the :meth:`~Thread.run` method raises an " -"exception, :func:`threading.excepthook` is called to handle it. By " -"default, :func:`threading.excepthook` ignores silently :exc:`SystemExit`." +msgid "If the :meth:`~Thread.run` method raises an exception, :func:`threading.excepthook` is called to handle it. By default, :func:`threading.excepthook` ignores silently :exc:`SystemExit`." msgstr "" -#: ../../library/threading.rst:486 -msgid "" -"A thread can be flagged as a \"daemon thread\". The significance of this " -"flag is that the entire Python program exits when only daemon threads are " -"left. The initial value is inherited from the creating thread. The flag " -"can be set through the :attr:`~Thread.daemon` property or the *daemon* " -"constructor argument." +msgid "A thread can be flagged as a \"daemon thread\". The significance of this flag is that the entire Python program exits when only daemon threads are left. The initial value is inherited from the creating thread. The flag can be set through the :attr:`~Thread.daemon` property or the *daemon* constructor argument." msgstr "" -#: ../../library/threading.rst:493 -msgid "" -"Daemon threads are abruptly stopped at shutdown. Their resources (such as " -"open files, database transactions, etc.) may not be released properly. If " -"you want your threads to stop gracefully, make them non-daemonic and use a " -"suitable signalling mechanism such as an :class:`Event`." +msgid "Daemon threads are abruptly stopped at shutdown. Their resources (such as open files, database transactions, etc.) may not be released properly. If you want your threads to stop gracefully, make them non-daemonic and use a suitable signalling mechanism such as an :class:`Event`." msgstr "" -#: ../../library/threading.rst:498 -msgid "" -"There is a \"main thread\" object; this corresponds to the initial thread of " -"control in the Python program. It is not a daemon thread." +msgid "There is a \"main thread\" object; this corresponds to the initial thread of control in the Python program. It is not a daemon thread." msgstr "" -#: ../../library/threading.rst:501 -msgid "" -"There is the possibility that \"dummy thread objects\" are created. These " -"are thread objects corresponding to \"alien threads\", which are threads of " -"control started outside the threading module, such as directly from C code. " -"Dummy thread objects have limited functionality; they are always considered " -"alive and daemonic, and cannot be :ref:`joined `. They " -"are never deleted, since it is impossible to detect the termination of alien " -"threads." +msgid "There is the possibility that \"dummy thread objects\" are created. These are thread objects corresponding to \"alien threads\", which are threads of control started outside the threading module, such as directly from C code. Dummy thread objects have limited functionality; they are always considered alive and daemonic, and cannot be :ref:`joined `. They are never deleted, since it is impossible to detect the termination of alien threads." msgstr "" -#: ../../library/threading.rst:512 -msgid "" -"This constructor should always be called with keyword arguments. Arguments " -"are:" +msgid "This constructor should always be called with keyword arguments. Arguments are:" msgstr "" -#: ../../library/threading.rst:515 -msgid "" -"*group* must be ``None`` as it is reserved for future extension when " -"a :class:`!ThreadGroup` class is implemented." +msgid "*group* must be ``None`` as it is reserved for future extension when a :class:`!ThreadGroup` class is implemented." msgstr "" -#: ../../library/threading.rst:518 -msgid "" -"*target* is the callable object to be invoked by the :meth:`run` method. " -"Defaults to ``None``, meaning nothing is called." +msgid "*target* is the callable object to be invoked by the :meth:`run` method. Defaults to ``None``, meaning nothing is called." msgstr "" -#: ../../library/threading.rst:521 -msgid "" -"*name* is the thread name. By default, a unique name is constructed of the " -"form \"Thread-*N*\" where *N* is a small decimal number, or \"Thread-*N* " -"(target)\" where \"target\" is ``target.__name__`` if the *target* argument " -"is specified." +msgid "*name* is the thread name. By default, a unique name is constructed of the form \"Thread-*N*\" where *N* is a small decimal number, or \"Thread-*N* (target)\" where \"target\" is ``target.__name__`` if the *target* argument is specified." msgstr "" -#: ../../library/threading.rst:526 -msgid "" -"*args* is a list or tuple of arguments for the target invocation. Defaults " -"to ``()``." +msgid "*args* is a list or tuple of arguments for the target invocation. Defaults to ``()``." msgstr "" -#: ../../library/threading.rst:528 -msgid "" -"*kwargs* is a dictionary of keyword arguments for the target invocation. " -"Defaults to ``{}``." +msgid "*kwargs* is a dictionary of keyword arguments for the target invocation. Defaults to ``{}``." msgstr "" -#: ../../library/threading.rst:531 -msgid "" -"If not ``None``, *daemon* explicitly sets whether the thread is daemonic. If " -"``None`` (the default), the daemonic property is inherited from the current " -"thread." +msgid "If not ``None``, *daemon* explicitly sets whether the thread is daemonic. If ``None`` (the default), the daemonic property is inherited from the current thread." msgstr "" -#: ../../library/threading.rst:535 -msgid "" -"*context* is the :class:`~contextvars.Context` value to use when starting " -"the thread. The default value is ``None`` which indicates that " -"the :data:`sys.flags.thread_inherit_context` flag controls the behaviour. " -"If the flag is true, threads will start with a copy of the context of the " -"caller of :meth:`~Thread.start`. If false, they will start with an empty " -"context. To explicitly start with an empty context, pass a new instance " -"of :class:`~contextvars.Context()`. To explicitly start with a copy of the " -"current context, pass the value from :func:`~contextvars.copy_context`. The " -"flag defaults true on free-threaded builds and false otherwise." -msgstr "" - -#: ../../library/threading.rst:545 -msgid "" -"If the subclass overrides the constructor, it must make sure to invoke the " -"base class constructor (``Thread.__init__()``) before doing anything else to " -"the thread." +msgid "*context* is the :class:`~contextvars.Context` value to use when starting the thread. The default value is ``None`` which indicates that the :data:`sys.flags.thread_inherit_context` flag controls the behaviour. If the flag is true, threads will start with a copy of the context of the caller of :meth:`~Thread.start`. If false, they will start with an empty context. To explicitly start with an empty context, pass a new instance of :class:`~contextvars.Context()`. To explicitly start with a copy of the current context, pass the value from :func:`~contextvars.copy_context`. The flag defaults true on free-threaded builds and false otherwise." +msgstr "" + +msgid "If the subclass overrides the constructor, it must make sure to invoke the base class constructor (``Thread.__init__()``) before doing anything else to the thread." msgstr "" -#: ../../library/threading.rst:549 msgid "Added the *daemon* parameter." msgstr "" -#: ../../library/threading.rst:552 msgid "Use the *target* name if *name* argument is omitted." msgstr "" -#: ../../library/threading.rst:555 msgid "Added the *context* parameter." msgstr "" -#: ../../library/threading.rst:560 msgid "Start the thread's activity." msgstr "" -#: ../../library/threading.rst:562 -msgid "" -"It must be called at most once per thread object. It arranges for the " -"object's :meth:`~Thread.run` method to be invoked in a separate thread of " -"control." +msgid "It must be called at most once per thread object. It arranges for the object's :meth:`~Thread.run` method to be invoked in a separate thread of control." msgstr "" -#: ../../library/threading.rst:566 -msgid "" -"This method will raise a :exc:`RuntimeError` if called more than once on the " -"same thread object." +msgid "This method will raise a :exc:`RuntimeError` if called more than once on the same thread object." msgstr "" -#: ../../library/threading.rst:569 -msgid "" -"If supported, set the operating system thread name " -"to :attr:`threading.Thread.name`. The name can be truncated depending on the " -"operating system thread name limits." +msgid "If supported, set the operating system thread name to :attr:`threading.Thread.name`. The name can be truncated depending on the operating system thread name limits." msgstr "" -#: ../../library/threading.rst:573 msgid "Set the operating system thread name." msgstr "" -#: ../../library/threading.rst:578 msgid "Method representing the thread's activity." msgstr "" -#: ../../library/threading.rst:580 -msgid "" -"You may override this method in a subclass. The standard :meth:`run` method " -"invokes the callable object passed to the object's constructor as the " -"*target* argument, if any, with positional and keyword arguments taken from " -"the *args* and *kwargs* arguments, respectively." +msgid "You may override this method in a subclass. The standard :meth:`run` method invokes the callable object passed to the object's constructor as the *target* argument, if any, with positional and keyword arguments taken from the *args* and *kwargs* arguments, respectively." msgstr "" -#: ../../library/threading.rst:585 -msgid "" -"Using list or tuple as the *args* argument which passed to " -"the :class:`Thread` could achieve the same effect." +msgid "Using list or tuple as the *args* argument which passed to the :class:`Thread` could achieve the same effect." msgstr "" -#: ../../library/threading.rst:588 msgid "Example::" msgstr "" -#: ../../library/threading.rst:590 msgid "" ">>> from threading import Thread\n" ">>> t = Thread(target=print, args=[1])\n" @@ -831,465 +485,213 @@ msgid "" "1" msgstr "" -#: ../../library/threading.rst:602 -msgid "" -"Wait until the thread terminates. This blocks the calling thread until the " -"thread whose :meth:`~Thread.join` method is called terminates -- either " -"normally or through an unhandled exception -- or until the optional timeout " -"occurs." +msgid "Wait until the thread terminates. This blocks the calling thread until the thread whose :meth:`~Thread.join` method is called terminates -- either normally or through an unhandled exception -- or until the optional timeout occurs." msgstr "" -#: ../../library/threading.rst:607 -msgid "" -"When the *timeout* argument is present and not ``None``, it should be a " -"floating-point number specifying a timeout for the operation in seconds (or " -"fractions thereof). As :meth:`~Thread.join` always returns ``None``, you " -"must call :meth:`~Thread.is_alive` after :meth:`~Thread.join` to decide " -"whether a timeout happened -- if the thread is still alive, " -"the :meth:`~Thread.join` call timed out." +msgid "When the *timeout* argument is present and not ``None``, it should be a floating-point number specifying a timeout for the operation in seconds (or fractions thereof). As :meth:`~Thread.join` always returns ``None``, you must call :meth:`~Thread.is_alive` after :meth:`~Thread.join` to decide whether a timeout happened -- if the thread is still alive, the :meth:`~Thread.join` call timed out." msgstr "" -#: ../../library/threading.rst:614 -msgid "" -"When the *timeout* argument is not present or ``None``, the operation will " -"block until the thread terminates." +msgid "When the *timeout* argument is not present or ``None``, the operation will block until the thread terminates." msgstr "" -#: ../../library/threading.rst:617 msgid "A thread can be joined many times." msgstr "" -#: ../../library/threading.rst:619 -msgid "" -":meth:`~Thread.join` raises a :exc:`RuntimeError` if an attempt is made to " -"join the current thread as that would cause a deadlock. It is also an error " -"to :meth:`~Thread.join` a thread before it has been started and attempts to " -"do so raise the same exception." +msgid ":meth:`~Thread.join` raises a :exc:`RuntimeError` if an attempt is made to join the current thread as that would cause a deadlock. It is also an error to :meth:`~Thread.join` a thread before it has been started and attempts to do so raise the same exception." msgstr "" -#: ../../library/threading.rst:624 -msgid "" -"If an attempt is made to join a running daemonic thread in late stages " -"of :term:`Python finalization ` :meth:`!join` raises " -"a :exc:`PythonFinalizationError`." +msgid "If an attempt is made to join a running daemonic thread in late stages of :term:`Python finalization ` :meth:`!join` raises a :exc:`PythonFinalizationError`." msgstr "" -#: ../../library/threading.rst:630 msgid "May raise :exc:`PythonFinalizationError`." msgstr "" -#: ../../library/threading.rst:634 -msgid "" -"A string used for identification purposes only. It has no semantics. " -"Multiple threads may be given the same name. The initial name is set by the " -"constructor." +msgid "A string used for identification purposes only. It has no semantics. Multiple threads may be given the same name. The initial name is set by the constructor." msgstr "" -#: ../../library/threading.rst:638 -msgid "" -"On some platforms, the thread name is set at the operating system level when " -"the thread starts, so that it is visible in task managers. This name may be " -"truncated to fit in a system-specific limit (for example, 15 bytes on Linux " -"or 63 bytes on macOS)." +msgid "On some platforms, the thread name is set at the operating system level when the thread starts, so that it is visible in task managers. This name may be truncated to fit in a system-specific limit (for example, 15 bytes on Linux or 63 bytes on macOS)." msgstr "" -#: ../../library/threading.rst:643 -msgid "" -"Changes to *name* are only reflected at the OS level when the currently " -"running thread is renamed. (Setting the *name* attribute of a different " -"thread only updates the Python Thread object.)" +msgid "Changes to *name* are only reflected at the OS level when the currently running thread is renamed. (Setting the *name* attribute of a different thread only updates the Python Thread object.)" msgstr "" -#: ../../library/threading.rst:650 -msgid "" -"Deprecated getter/setter API for :attr:`~Thread.name`; use it directly as a " -"property instead." +msgid "Deprecated getter/setter API for :attr:`~Thread.name`; use it directly as a property instead." msgstr "" -#: ../../library/threading.rst:657 -msgid "" -"The 'thread identifier' of this thread or ``None`` if the thread has not " -"been started. This is a nonzero integer. See the :func:`get_ident` " -"function. Thread identifiers may be recycled when a thread exits and " -"another thread is created. The identifier is available even after the " -"thread has exited." +msgid "The 'thread identifier' of this thread or ``None`` if the thread has not been started. This is a nonzero integer. See the :func:`get_ident` function. Thread identifiers may be recycled when a thread exits and another thread is created. The identifier is available even after the thread has exited." msgstr "" -#: ../../library/threading.rst:665 -msgid "" -"The Thread ID (``TID``) of this thread, as assigned by the OS (kernel). This " -"is a non-negative integer, or ``None`` if the thread has not been started. " -"See the :func:`get_native_id` function. This value may be used to uniquely " -"identify this particular thread system-wide (until the thread terminates, " -"after which the value may be recycled by the OS)." +msgid "The Thread ID (``TID``) of this thread, as assigned by the OS (kernel). This is a non-negative integer, or ``None`` if the thread has not been started. See the :func:`get_native_id` function. This value may be used to uniquely identify this particular thread system-wide (until the thread terminates, after which the value may be recycled by the OS)." msgstr "" -#: ../../library/threading.rst:674 -msgid "" -"Similar to Process IDs, Thread IDs are only valid (guaranteed unique system-" -"wide) from the time the thread is created until the thread has been " -"terminated." +msgid "Similar to Process IDs, Thread IDs are only valid (guaranteed unique system-wide) from the time the thread is created until the thread has been terminated." msgstr "" -#: ../../library/threading.rst:684 msgid "Return whether the thread is alive." msgstr "" -#: ../../library/threading.rst:686 -msgid "" -"This method returns ``True`` just before the :meth:`~Thread.run` method " -"starts until just after the :meth:`~Thread.run` method terminates. The " -"module function :func:`.enumerate` returns a list of all alive threads." +msgid "This method returns ``True`` just before the :meth:`~Thread.run` method starts until just after the :meth:`~Thread.run` method terminates. The module function :func:`.enumerate` returns a list of all alive threads." msgstr "" -#: ../../library/threading.rst:692 -msgid "" -"A boolean value indicating whether this thread is a daemon thread (``True``) " -"or not (``False``). This must be set before :meth:`~Thread.start` is " -"called, otherwise :exc:`RuntimeError` is raised. Its initial value is " -"inherited from the creating thread; the main thread is not a daemon thread " -"and therefore all threads created in the main thread default " -"to :attr:`~Thread.daemon` = ``False``." +msgid "A boolean value indicating whether this thread is a daemon thread (``True``) or not (``False``). This must be set before :meth:`~Thread.start` is called, otherwise :exc:`RuntimeError` is raised. Its initial value is inherited from the creating thread; the main thread is not a daemon thread and therefore all threads created in the main thread default to :attr:`~Thread.daemon` = ``False``." msgstr "" -#: ../../library/threading.rst:699 -msgid "" -"The entire Python program exits when no alive non-daemon threads are left." +msgid "The entire Python program exits when no alive non-daemon threads are left." msgstr "" -#: ../../library/threading.rst:704 -msgid "" -"Deprecated getter/setter API for :attr:`~Thread.daemon`; use it directly as " -"a property instead." +msgid "Deprecated getter/setter API for :attr:`~Thread.daemon`; use it directly as a property instead." msgstr "" -#: ../../library/threading.rst:713 msgid "Lock objects" msgstr "" -#: ../../library/threading.rst:715 -msgid "" -"A primitive lock is a synchronization primitive that is not owned by a " -"particular thread when locked. In Python, it is currently the lowest level " -"synchronization primitive available, implemented directly by " -"the :mod:`_thread` extension module." +msgid "A primitive lock is a synchronization primitive that is not owned by a particular thread when locked. In Python, it is currently the lowest level synchronization primitive available, implemented directly by the :mod:`_thread` extension module." +msgstr "" + +msgid "A primitive lock is in one of two states, \"locked\" or \"unlocked\". It is created in the unlocked state. It has two basic methods, :meth:`~Lock.acquire` and :meth:`~Lock.release`. When the state is unlocked, :meth:`~Lock.acquire` changes the state to locked and returns immediately. When the state is locked, :meth:`~Lock.acquire` blocks until a call to :meth:`~Lock.release` in another thread changes it to unlocked, then the :meth:`~Lock.acquire` call resets it to locked and returns. The :meth:`~Lock.release` method should only be called in the locked state; it changes the state to unlocked and returns immediately. If an attempt is made to release an unlocked lock, a :exc:`RuntimeError` will be raised." msgstr "" -#: ../../library/threading.rst:720 -msgid "" -"A primitive lock is in one of two states, \"locked\" or \"unlocked\". It is " -"created in the unlocked state. It has two basic " -"methods, :meth:`~Lock.acquire` and :meth:`~Lock.release`. When the state is " -"unlocked, :meth:`~Lock.acquire` changes the state to locked and returns " -"immediately. When the state is locked, :meth:`~Lock.acquire` blocks until a " -"call to :meth:`~Lock.release` in another thread changes it to unlocked, then " -"the :meth:`~Lock.acquire` call resets it to locked and returns. " -"The :meth:`~Lock.release` method should only be called in the locked state; " -"it changes the state to unlocked and returns immediately. If an attempt is " -"made to release an unlocked lock, a :exc:`RuntimeError` will be raised." -msgstr "" - -#: ../../library/threading.rst:731 msgid "Locks also support the :ref:`context management protocol `." msgstr "" -#: ../../library/threading.rst:733 -msgid "" -"When more than one thread is blocked in :meth:`~Lock.acquire` waiting for " -"the state to turn to unlocked, only one thread proceeds when " -"a :meth:`~Lock.release` call resets the state to unlocked; which one of the " -"waiting threads proceeds is not defined, and may vary across implementations." +msgid "When more than one thread is blocked in :meth:`~Lock.acquire` waiting for the state to turn to unlocked, only one thread proceeds when a :meth:`~Lock.release` call resets the state to unlocked; which one of the waiting threads proceeds is not defined, and may vary across implementations." msgstr "" -#: ../../library/threading.rst:738 msgid "All methods are executed atomically." msgstr "" -#: ../../library/threading.rst:743 -msgid "" -"The class implementing primitive lock objects. Once a thread has acquired a " -"lock, subsequent attempts to acquire it block, until it is released; any " -"thread may release it." +msgid "The class implementing primitive lock objects. Once a thread has acquired a lock, subsequent attempts to acquire it block, until it is released; any thread may release it." msgstr "" -#: ../../library/threading.rst:747 -msgid "" -"``Lock`` is now a class. In earlier Pythons, ``Lock`` was a factory function " -"which returned an instance of the underlying private lock type." +msgid "``Lock`` is now a class. In earlier Pythons, ``Lock`` was a factory function which returned an instance of the underlying private lock type." msgstr "" -#: ../../library/threading.rst:755 ../../library/threading.rst:849 msgid "Acquire a lock, blocking or non-blocking." msgstr "" -#: ../../library/threading.rst:757 -msgid "" -"When invoked with the *blocking* argument set to ``True`` (the default), " -"block until the lock is unlocked, then set it to locked and return ``True``." +msgid "When invoked with the *blocking* argument set to ``True`` (the default), block until the lock is unlocked, then set it to locked and return ``True``." msgstr "" -#: ../../library/threading.rst:760 -msgid "" -"When invoked with the *blocking* argument set to ``False``, do not block. If " -"a call with *blocking* set to ``True`` would block, return ``False`` " -"immediately; otherwise, set the lock to locked and return ``True``." +msgid "When invoked with the *blocking* argument set to ``False``, do not block. If a call with *blocking* set to ``True`` would block, return ``False`` immediately; otherwise, set the lock to locked and return ``True``." msgstr "" -#: ../../library/threading.rst:764 -msgid "" -"When invoked with the floating-point *timeout* argument set to a positive " -"value, block for at most the number of seconds specified by *timeout* and as " -"long as the lock cannot be acquired. A *timeout* argument of ``-1`` " -"specifies an unbounded wait. It is forbidden to specify a *timeout* when " -"*blocking* is ``False``." +msgid "When invoked with the floating-point *timeout* argument set to a positive value, block for at most the number of seconds specified by *timeout* and as long as the lock cannot be acquired. A *timeout* argument of ``-1`` specifies an unbounded wait. It is forbidden to specify a *timeout* when *blocking* is ``False``." msgstr "" -#: ../../library/threading.rst:770 -msgid "" -"The return value is ``True`` if the lock is acquired successfully, ``False`` " -"if not (for example if the *timeout* expired)." +msgid "The return value is ``True`` if the lock is acquired successfully, ``False`` if not (for example if the *timeout* expired)." msgstr "" -#: ../../library/threading.rst:773 ../../library/threading.rst:887 -#: ../../library/threading.rst:1147 msgid "The *timeout* parameter is new." msgstr "" -#: ../../library/threading.rst:776 -msgid "" -"Lock acquisition can now be interrupted by signals on POSIX if the " -"underlying threading implementation supports it." +msgid "Lock acquisition can now be interrupted by signals on POSIX if the underlying threading implementation supports it." msgstr "" -#: ../../library/threading.rst:780 msgid "Lock acquisition can now be interrupted by signals on Windows." msgstr "" -#: ../../library/threading.rst:786 -msgid "" -"Release a lock. This can be called from any thread, not only the thread " -"which has acquired the lock." +msgid "Release a lock. This can be called from any thread, not only the thread which has acquired the lock." msgstr "" -#: ../../library/threading.rst:789 -msgid "" -"When the lock is locked, reset it to unlocked, and return. If any other " -"threads are blocked waiting for the lock to become unlocked, allow exactly " -"one of them to proceed." +msgid "When the lock is locked, reset it to unlocked, and return. If any other threads are blocked waiting for the lock to become unlocked, allow exactly one of them to proceed." msgstr "" -#: ../../library/threading.rst:793 msgid "When invoked on an unlocked lock, a :exc:`RuntimeError` is raised." msgstr "" -#: ../../library/threading.rst:795 ../../library/threading.rst:903 msgid "There is no return value." msgstr "" -#: ../../library/threading.rst:799 msgid "Return ``True`` if the lock is acquired." msgstr "" -#: ../../library/threading.rst:806 msgid "RLock objects" msgstr "" -#: ../../library/threading.rst:808 -msgid "" -"A reentrant lock is a synchronization primitive that may be acquired " -"multiple times by the same thread. Internally, it uses the concepts of " -"\"owning thread\" and \"recursion level\" in addition to the locked/unlocked " -"state used by primitive locks. In the locked state, some thread owns the " -"lock; in the unlocked state, no thread owns it." +msgid "A reentrant lock is a synchronization primitive that may be acquired multiple times by the same thread. Internally, it uses the concepts of \"owning thread\" and \"recursion level\" in addition to the locked/unlocked state used by primitive locks. In the locked state, some thread owns the lock; in the unlocked state, no thread owns it." msgstr "" -#: ../../library/threading.rst:814 -msgid "" -"Threads call a lock's :meth:`~RLock.acquire` method to lock it, and " -"its :meth:`~Lock.release` method to unlock it." +msgid "Threads call a lock's :meth:`~RLock.acquire` method to lock it, and its :meth:`~Lock.release` method to unlock it." msgstr "" -#: ../../library/threading.rst:819 -msgid "" -"Reentrant locks support the :ref:`context management protocol `, " -"so it is recommended to use :keyword:`with` instead of manually " -"calling :meth:`~RLock.acquire` and :meth:`~RLock.release` to handle " -"acquiring and releasing the lock for a block of code." +msgid "Reentrant locks support the :ref:`context management protocol `, so it is recommended to use :keyword:`with` instead of manually calling :meth:`~RLock.acquire` and :meth:`~RLock.release` to handle acquiring and releasing the lock for a block of code." msgstr "" -#: ../../library/threading.rst:824 -msgid "" -"RLock's :meth:`~RLock.acquire`/:meth:`~RLock.release` call pairs may be " -"nested, unlike Lock's :meth:`~Lock.acquire`/:meth:`~Lock.release`. Only the " -"final :meth:`~RLock.release` (the :meth:`~Lock.release` of the outermost " -"pair) resets the lock to an unlocked state and allows another thread blocked " -"in :meth:`~RLock.acquire` to proceed." +msgid "RLock's :meth:`~RLock.acquire`/:meth:`~RLock.release` call pairs may be nested, unlike Lock's :meth:`~Lock.acquire`/:meth:`~Lock.release`. Only the final :meth:`~RLock.release` (the :meth:`~Lock.release` of the outermost pair) resets the lock to an unlocked state and allows another thread blocked in :meth:`~RLock.acquire` to proceed." msgstr "" -#: ../../library/threading.rst:830 -msgid "" -":meth:`~RLock.acquire`/:meth:`~RLock.release` must be used in pairs: each " -"acquire must have a release in the thread that has acquired the lock. " -"Failing to call release as many times the lock has been acquired can lead to " -"deadlock." +msgid ":meth:`~RLock.acquire`/:meth:`~RLock.release` must be used in pairs: each acquire must have a release in the thread that has acquired the lock. Failing to call release as many times the lock has been acquired can lead to deadlock." msgstr "" -#: ../../library/threading.rst:837 -msgid "" -"This class implements reentrant lock objects. A reentrant lock must be " -"released by the thread that acquired it. Once a thread has acquired a " -"reentrant lock, the same thread may acquire it again without blocking; the " -"thread must release it once for each time it has acquired it." +msgid "This class implements reentrant lock objects. A reentrant lock must be released by the thread that acquired it. Once a thread has acquired a reentrant lock, the same thread may acquire it again without blocking; the thread must release it once for each time it has acquired it." msgstr "" -#: ../../library/threading.rst:842 -msgid "" -"Note that ``RLock`` is actually a factory function which returns an instance " -"of the most efficient version of the concrete RLock class that is supported " -"by the platform." +msgid "Note that ``RLock`` is actually a factory function which returns an instance of the most efficient version of the concrete RLock class that is supported by the platform." msgstr "" -#: ../../library/threading.rst:853 msgid ":ref:`Using RLock as a context manager `" msgstr "" -#: ../../library/threading.rst:854 -msgid "" -"Recommended over manual :meth:`!acquire` and :meth:`release` calls whenever " -"practical." +msgid "Recommended over manual :meth:`!acquire` and :meth:`release` calls whenever practical." msgstr "" -#: ../../library/threading.rst:858 -msgid "" -"When invoked with the *blocking* argument set to ``True`` (the default):" +msgid "When invoked with the *blocking* argument set to ``True`` (the default):" msgstr "" -#: ../../library/threading.rst:860 ../../library/threading.rst:872 msgid "If no thread owns the lock, acquire the lock and return immediately." msgstr "" -#: ../../library/threading.rst:862 -msgid "" -"If another thread owns the lock, block until we are able to acquire lock, or " -"*timeout*, if set to a positive float value." +msgid "If another thread owns the lock, block until we are able to acquire lock, or *timeout*, if set to a positive float value." msgstr "" -#: ../../library/threading.rst:865 -msgid "" -"If the same thread owns the lock, acquire the lock again, and return " -"immediately. This is the difference between :class:`Lock` and :class:`!" -"RLock`; :class:`Lock` handles this case the same as the previous, blocking " -"until the lock can be acquired." +msgid "If the same thread owns the lock, acquire the lock again, and return immediately. This is the difference between :class:`Lock` and :class:`!RLock`; :class:`Lock` handles this case the same as the previous, blocking until the lock can be acquired." msgstr "" -#: ../../library/threading.rst:870 msgid "When invoked with the *blocking* argument set to ``False``:" msgstr "" -#: ../../library/threading.rst:874 msgid "If another thread owns the lock, return immediately." msgstr "" -#: ../../library/threading.rst:876 -msgid "" -"If the same thread owns the lock, acquire the lock again and return " -"immediately." +msgid "If the same thread owns the lock, acquire the lock again and return immediately." msgstr "" -#: ../../library/threading.rst:879 -msgid "" -"In all cases, if the thread was able to acquire the lock, return ``True``. " -"If the thread was unable to acquire the lock (i.e. if not blocking or the " -"timeout was reached) return ``False``." +msgid "In all cases, if the thread was able to acquire the lock, return ``True``. If the thread was unable to acquire the lock (i.e. if not blocking or the timeout was reached) return ``False``." msgstr "" -#: ../../library/threading.rst:883 -msgid "" -"If called multiple times, failing to call :meth:`~RLock.release` as many " -"times may lead to deadlock. Consider using :class:`!RLock` as a context " -"manager rather than calling acquire/release directly." +msgid "If called multiple times, failing to call :meth:`~RLock.release` as many times may lead to deadlock. Consider using :class:`!RLock` as a context manager rather than calling acquire/release directly." msgstr "" -#: ../../library/threading.rst:893 -msgid "" -"Release a lock, decrementing the recursion level. If after the decrement it " -"is zero, reset the lock to unlocked (not owned by any thread), and if any " -"other threads are blocked waiting for the lock to become unlocked, allow " -"exactly one of them to proceed. If after the decrement the recursion level " -"is still nonzero, the lock remains locked and owned by the calling thread." +msgid "Release a lock, decrementing the recursion level. If after the decrement it is zero, reset the lock to unlocked (not owned by any thread), and if any other threads are blocked waiting for the lock to become unlocked, allow exactly one of them to proceed. If after the decrement the recursion level is still nonzero, the lock remains locked and owned by the calling thread." msgstr "" -#: ../../library/threading.rst:899 -msgid "" -"Only call this method when the calling thread owns the lock. " -"A :exc:`RuntimeError` is raised if this method is called when the lock is " -"not acquired." +msgid "Only call this method when the calling thread owns the lock. A :exc:`RuntimeError` is raised if this method is called when the lock is not acquired." msgstr "" -#: ../../library/threading.rst:908 ../../library/threading.rst:1007 msgid "Return a boolean indicating whether this object is locked right now." msgstr "" -#: ../../library/threading.rst:916 msgid "Condition objects" msgstr "" -#: ../../library/threading.rst:918 -msgid "" -"A condition variable is always associated with some kind of lock; this can " -"be passed in or one will be created by default. Passing one in is useful " -"when several condition variables must share the same lock. The lock is part " -"of the condition object: you don't have to track it separately." +msgid "A condition variable is always associated with some kind of lock; this can be passed in or one will be created by default. Passing one in is useful when several condition variables must share the same lock. The lock is part of the condition object: you don't have to track it separately." msgstr "" -#: ../../library/threading.rst:923 -msgid "" -"A condition variable obeys the :ref:`context management protocol `: using the ``with`` statement acquires the associated lock for the " -"duration of the enclosed block. The :meth:`~Condition.acquire` " -"and :meth:`~Condition.release` methods also call the corresponding methods " -"of the associated lock." +msgid "A condition variable obeys the :ref:`context management protocol `: using the ``with`` statement acquires the associated lock for the duration of the enclosed block. The :meth:`~Condition.acquire` and :meth:`~Condition.release` methods also call the corresponding methods of the associated lock." msgstr "" -#: ../../library/threading.rst:929 -msgid "" -"Other methods must be called with the associated lock held. " -"The :meth:`~Condition.wait` method releases the lock, and then blocks until " -"another thread awakens it by calling :meth:`~Condition.notify` " -"or :meth:`~Condition.notify_all`. Once awakened, :meth:`~Condition.wait` re-" -"acquires the lock and returns. It is also possible to specify a timeout." +msgid "Other methods must be called with the associated lock held. The :meth:`~Condition.wait` method releases the lock, and then blocks until another thread awakens it by calling :meth:`~Condition.notify` or :meth:`~Condition.notify_all`. Once awakened, :meth:`~Condition.wait` re-acquires the lock and returns. It is also possible to specify a timeout." msgstr "" -#: ../../library/threading.rst:935 -msgid "" -"The :meth:`~Condition.notify` method wakes up one of the threads waiting for " -"the condition variable, if any are waiting. " -"The :meth:`~Condition.notify_all` method wakes up all threads waiting for " -"the condition variable." +msgid "The :meth:`~Condition.notify` method wakes up one of the threads waiting for the condition variable, if any are waiting. The :meth:`~Condition.notify_all` method wakes up all threads waiting for the condition variable." msgstr "" -#: ../../library/threading.rst:939 -msgid "" -"Note: the :meth:`~Condition.notify` and :meth:`~Condition.notify_all` " -"methods don't release the lock; this means that the thread or threads " -"awakened will not return from their :meth:`~Condition.wait` call " -"immediately, but only when the thread that called :meth:`~Condition.notify` " -"or :meth:`~Condition.notify_all` finally relinquishes ownership of the lock." +msgid "Note: the :meth:`~Condition.notify` and :meth:`~Condition.notify_all` methods don't release the lock; this means that the thread or threads awakened will not return from their :meth:`~Condition.wait` call immediately, but only when the thread that called :meth:`~Condition.notify` or :meth:`~Condition.notify_all` finally relinquishes ownership of the lock." msgstr "" -#: ../../library/threading.rst:945 -msgid "" -"The typical programming style using condition variables uses the lock to " -"synchronize access to some shared state; threads that are interested in a " -"particular change of state call :meth:`~Condition.wait` repeatedly until " -"they see the desired state, while threads that modify the state " -"call :meth:`~Condition.notify` or :meth:`~Condition.notify_all` when they " -"change the state in such a way that it could possibly be a desired state for " -"one of the waiters. For example, the following code is a generic producer-" -"consumer situation with unlimited buffer capacity::" +msgid "The typical programming style using condition variables uses the lock to synchronize access to some shared state; threads that are interested in a particular change of state call :meth:`~Condition.wait` repeatedly until they see the desired state, while threads that modify the state call :meth:`~Condition.notify` or :meth:`~Condition.notify_all` when they change the state in such a way that it could possibly be a desired state for one of the waiters. For example, the following code is a generic producer-consumer situation with unlimited buffer capacity::" msgstr "" -#: ../../library/threading.rst:954 msgid "" "# Consume one item\n" "with cv:\n" @@ -1303,17 +705,9 @@ msgid "" " cv.notify()" msgstr "" -#: ../../library/threading.rst:965 -msgid "" -"The ``while`` loop checking for the application's condition is necessary " -"because :meth:`~Condition.wait` can return after an arbitrary long time, and " -"the condition which prompted the :meth:`~Condition.notify` call may no " -"longer hold true. This is inherent to multi-threaded programming. " -"The :meth:`~Condition.wait_for` method can be used to automate the condition " -"checking, and eases the computation of timeouts::" +msgid "The ``while`` loop checking for the application's condition is necessary because :meth:`~Condition.wait` can return after an arbitrary long time, and the condition which prompted the :meth:`~Condition.notify` call may no longer hold true. This is inherent to multi-threaded programming. The :meth:`~Condition.wait_for` method can be used to automate the condition checking, and eases the computation of timeouts::" msgstr "" -#: ../../library/threading.rst:972 msgid "" "# Consume an item\n" "with cv:\n" @@ -1321,287 +715,137 @@ msgid "" " get_an_available_item()" msgstr "" -#: ../../library/threading.rst:977 -msgid "" -"To choose between :meth:`~Condition.notify` " -"and :meth:`~Condition.notify_all`, consider whether one state change can be " -"interesting for only one or several waiting threads. E.g. in a typical " -"producer-consumer situation, adding one item to the buffer only needs to " -"wake up one consumer thread." +msgid "To choose between :meth:`~Condition.notify` and :meth:`~Condition.notify_all`, consider whether one state change can be interesting for only one or several waiting threads. E.g. in a typical producer-consumer situation, adding one item to the buffer only needs to wake up one consumer thread." msgstr "" -#: ../../library/threading.rst:985 -msgid "" -"This class implements condition variable objects. A condition variable " -"allows one or more threads to wait until they are notified by another thread." +msgid "This class implements condition variable objects. A condition variable allows one or more threads to wait until they are notified by another thread." msgstr "" -#: ../../library/threading.rst:988 -msgid "" -"If the *lock* argument is given and not ``None``, it must be a :class:`Lock` " -"or :class:`RLock` object, and it is used as the underlying lock. Otherwise, " -"a new :class:`RLock` object is created and used as the underlying lock." +msgid "If the *lock* argument is given and not ``None``, it must be a :class:`Lock` or :class:`RLock` object, and it is used as the underlying lock. Otherwise, a new :class:`RLock` object is created and used as the underlying lock." msgstr "" -#: ../../library/threading.rst:992 ../../library/threading.rst:1122 -#: ../../library/threading.rst:1168 ../../library/threading.rst:1220 -#: ../../library/threading.rst:1288 msgid "changed from a factory function to a class." msgstr "" -#: ../../library/threading.rst:997 -msgid "" -"Acquire the underlying lock. This method calls the corresponding method on " -"the underlying lock; the return value is whatever that method returns." +msgid "Acquire the underlying lock. This method calls the corresponding method on the underlying lock; the return value is whatever that method returns." msgstr "" -#: ../../library/threading.rst:1002 -msgid "" -"Release the underlying lock. This method calls the corresponding method on " -"the underlying lock; there is no return value." +msgid "Release the underlying lock. This method calls the corresponding method on the underlying lock; there is no return value." msgstr "" -#: ../../library/threading.rst:1013 -msgid "" -"Wait until notified or until a timeout occurs. If the calling thread has not " -"acquired the lock when this method is called, a :exc:`RuntimeError` is " -"raised." +msgid "Wait until notified or until a timeout occurs. If the calling thread has not acquired the lock when this method is called, a :exc:`RuntimeError` is raised." msgstr "" -#: ../../library/threading.rst:1017 -msgid "" -"This method releases the underlying lock, and then blocks until it is " -"awakened by a :meth:`notify` or :meth:`notify_all` call for the same " -"condition variable in another thread, or until the optional timeout occurs. " -"Once awakened or timed out, it re-acquires the lock and returns." +msgid "This method releases the underlying lock, and then blocks until it is awakened by a :meth:`notify` or :meth:`notify_all` call for the same condition variable in another thread, or until the optional timeout occurs. Once awakened or timed out, it re-acquires the lock and returns." msgstr "" -#: ../../library/threading.rst:1022 -msgid "" -"When the *timeout* argument is present and not ``None``, it should be a " -"floating-point number specifying a timeout for the operation in seconds (or " -"fractions thereof)." +msgid "When the *timeout* argument is present and not ``None``, it should be a floating-point number specifying a timeout for the operation in seconds (or fractions thereof)." msgstr "" -#: ../../library/threading.rst:1026 -msgid "" -"When the underlying lock is an :class:`RLock`, it is not released using " -"its :meth:`release` method, since this may not actually unlock the lock when " -"it was acquired multiple times recursively. Instead, an internal interface " -"of the :class:`RLock` class is used, which really unlocks it even when it " -"has been recursively acquired several times. Another internal interface is " -"then used to restore the recursion level when the lock is reacquired." +msgid "When the underlying lock is an :class:`RLock`, it is not released using its :meth:`release` method, since this may not actually unlock the lock when it was acquired multiple times recursively. Instead, an internal interface of the :class:`RLock` class is used, which really unlocks it even when it has been recursively acquired several times. Another internal interface is then used to restore the recursion level when the lock is reacquired." msgstr "" -#: ../../library/threading.rst:1034 -msgid "" -"The return value is ``True`` unless a given *timeout* expired, in which case " -"it is ``False``." +msgid "The return value is ``True`` unless a given *timeout* expired, in which case it is ``False``." msgstr "" -#: ../../library/threading.rst:1037 ../../library/threading.rst:1253 msgid "Previously, the method always returned ``None``." msgstr "" -#: ../../library/threading.rst:1042 -msgid "" -"Wait until a condition evaluates to true. *predicate* should be a callable " -"which result will be interpreted as a boolean value. A *timeout* may be " -"provided giving the maximum time to wait." +msgid "Wait until a condition evaluates to true. *predicate* should be a callable which result will be interpreted as a boolean value. A *timeout* may be provided giving the maximum time to wait." msgstr "" -#: ../../library/threading.rst:1046 -msgid "" -"This utility method may call :meth:`wait` repeatedly until the predicate is " -"satisfied, or until a timeout occurs. The return value is the last return " -"value of the predicate and will evaluate to ``False`` if the method timed " -"out." +msgid "This utility method may call :meth:`wait` repeatedly until the predicate is satisfied, or until a timeout occurs. The return value is the last return value of the predicate and will evaluate to ``False`` if the method timed out." msgstr "" -#: ../../library/threading.rst:1051 -msgid "" -"Ignoring the timeout feature, calling this method is roughly equivalent to " -"writing::" +msgid "Ignoring the timeout feature, calling this method is roughly equivalent to writing::" msgstr "" -#: ../../library/threading.rst:1054 msgid "" "while not predicate():\n" " cv.wait()" msgstr "" -#: ../../library/threading.rst:1057 -msgid "" -"Therefore, the same rules apply as with :meth:`wait`: The lock must be held " -"when called and is re-acquired on return. The predicate is evaluated with " -"the lock held." +msgid "Therefore, the same rules apply as with :meth:`wait`: The lock must be held when called and is re-acquired on return. The predicate is evaluated with the lock held." msgstr "" -#: ../../library/threading.rst:1065 -msgid "" -"By default, wake up one thread waiting on this condition, if any. If the " -"calling thread has not acquired the lock when this method is called, " -"a :exc:`RuntimeError` is raised." +msgid "By default, wake up one thread waiting on this condition, if any. If the calling thread has not acquired the lock when this method is called, a :exc:`RuntimeError` is raised." msgstr "" -#: ../../library/threading.rst:1069 -msgid "" -"This method wakes up at most *n* of the threads waiting for the condition " -"variable; it is a no-op if no threads are waiting." +msgid "This method wakes up at most *n* of the threads waiting for the condition variable; it is a no-op if no threads are waiting." msgstr "" -#: ../../library/threading.rst:1072 -msgid "" -"The current implementation wakes up exactly *n* threads, if at least *n* " -"threads are waiting. However, it's not safe to rely on this behavior. A " -"future, optimized implementation may occasionally wake up more than *n* " -"threads." +msgid "The current implementation wakes up exactly *n* threads, if at least *n* threads are waiting. However, it's not safe to rely on this behavior. A future, optimized implementation may occasionally wake up more than *n* threads." msgstr "" -#: ../../library/threading.rst:1077 -msgid "" -"Note: an awakened thread does not actually return from its :meth:`wait` call " -"until it can reacquire the lock. Since :meth:`notify` does not release the " -"lock, its caller should." +msgid "Note: an awakened thread does not actually return from its :meth:`wait` call until it can reacquire the lock. Since :meth:`notify` does not release the lock, its caller should." msgstr "" -#: ../../library/threading.rst:1083 -msgid "" -"Wake up all threads waiting on this condition. This method acts " -"like :meth:`notify`, but wakes up all waiting threads instead of one. If the " -"calling thread has not acquired the lock when this method is called, " -"a :exc:`RuntimeError` is raised." +msgid "Wake up all threads waiting on this condition. This method acts like :meth:`notify`, but wakes up all waiting threads instead of one. If the calling thread has not acquired the lock when this method is called, a :exc:`RuntimeError` is raised." msgstr "" -#: ../../library/threading.rst:1088 msgid "The method ``notifyAll`` is a deprecated alias for this method." msgstr "" -#: ../../library/threading.rst:1094 msgid "Semaphore objects" msgstr "" -#: ../../library/threading.rst:1096 -msgid "" -"This is one of the oldest synchronization primitives in the history of " -"computer science, invented by the early Dutch computer scientist Edsger W. " -"Dijkstra (he used the names ``P()`` and ``V()`` instead " -"of :meth:`~Semaphore.acquire` and :meth:`~Semaphore.release`)." +msgid "This is one of the oldest synchronization primitives in the history of computer science, invented by the early Dutch computer scientist Edsger W. Dijkstra (he used the names ``P()`` and ``V()`` instead of :meth:`~Semaphore.acquire` and :meth:`~Semaphore.release`)." msgstr "" -#: ../../library/threading.rst:1101 -msgid "" -"A semaphore manages an internal counter which is decremented by " -"each :meth:`~Semaphore.acquire` call and incremented by " -"each :meth:`~Semaphore.release` call. The counter can never go below zero; " -"when :meth:`~Semaphore.acquire` finds that it is zero, it blocks, waiting " -"until some other thread calls :meth:`~Semaphore.release`." +msgid "A semaphore manages an internal counter which is decremented by each :meth:`~Semaphore.acquire` call and incremented by each :meth:`~Semaphore.release` call. The counter can never go below zero; when :meth:`~Semaphore.acquire` finds that it is zero, it blocks, waiting until some other thread calls :meth:`~Semaphore.release`." msgstr "" -#: ../../library/threading.rst:1107 -msgid "" -"Semaphores also support the :ref:`context management protocol `." +msgid "Semaphores also support the :ref:`context management protocol `." msgstr "" -#: ../../library/threading.rst:1112 -msgid "" -"This class implements semaphore objects. A semaphore manages an atomic " -"counter representing the number of :meth:`release` calls minus the number " -"of :meth:`acquire` calls, plus an initial value. The :meth:`acquire` method " -"blocks if necessary until it can return without making the counter negative. " -"If not given, *value* defaults to 1." +msgid "This class implements semaphore objects. A semaphore manages an atomic counter representing the number of :meth:`release` calls minus the number of :meth:`acquire` calls, plus an initial value. The :meth:`acquire` method blocks if necessary until it can return without making the counter negative. If not given, *value* defaults to 1." msgstr "" -#: ../../library/threading.rst:1118 -msgid "" -"The optional argument gives the initial *value* for the internal counter; it " -"defaults to ``1``. If the *value* given is less than 0, :exc:`ValueError` is " -"raised." +msgid "The optional argument gives the initial *value* for the internal counter; it defaults to ``1``. If the *value* given is less than 0, :exc:`ValueError` is raised." msgstr "" -#: ../../library/threading.rst:1127 msgid "Acquire a semaphore." msgstr "" -#: ../../library/threading.rst:1129 msgid "When invoked without arguments:" msgstr "" -#: ../../library/threading.rst:1131 -msgid "" -"If the internal counter is larger than zero on entry, decrement it by one " -"and return ``True`` immediately." +msgid "If the internal counter is larger than zero on entry, decrement it by one and return ``True`` immediately." msgstr "" -#: ../../library/threading.rst:1133 -msgid "" -"If the internal counter is zero on entry, block until awoken by a call " -"to :meth:`~Semaphore.release`. Once awoken (and the counter is greater than " -"0), decrement the counter by 1 and return ``True``. Exactly one thread will " -"be awoken by each call to :meth:`~Semaphore.release`. The order in which " -"threads are awoken should not be relied on." +msgid "If the internal counter is zero on entry, block until awoken by a call to :meth:`~Semaphore.release`. Once awoken (and the counter is greater than 0), decrement the counter by 1 and return ``True``. Exactly one thread will be awoken by each call to :meth:`~Semaphore.release`. The order in which threads are awoken should not be relied on." msgstr "" -#: ../../library/threading.rst:1139 -msgid "" -"When invoked with *blocking* set to ``False``, do not block. If a call " -"without an argument would block, return ``False`` immediately; otherwise, do " -"the same thing as when called without arguments, and return ``True``." +msgid "When invoked with *blocking* set to ``False``, do not block. If a call without an argument would block, return ``False`` immediately; otherwise, do the same thing as when called without arguments, and return ``True``." msgstr "" -#: ../../library/threading.rst:1143 -msgid "" -"When invoked with a *timeout* other than ``None``, it will block for at most " -"*timeout* seconds. If acquire does not complete successfully in that " -"interval, return ``False``. Return ``True`` otherwise." +msgid "When invoked with a *timeout* other than ``None``, it will block for at most *timeout* seconds. If acquire does not complete successfully in that interval, return ``False``. Return ``True`` otherwise." msgstr "" -#: ../../library/threading.rst:1152 -msgid "" -"Release a semaphore, incrementing the internal counter by *n*. When it was " -"zero on entry and other threads are waiting for it to become larger than " -"zero again, wake up *n* of those threads." +msgid "Release a semaphore, incrementing the internal counter by *n*. When it was zero on entry and other threads are waiting for it to become larger than zero again, wake up *n* of those threads." msgstr "" -#: ../../library/threading.rst:1156 msgid "Added the *n* parameter to release multiple waiting threads at once." msgstr "" -#: ../../library/threading.rst:1162 -msgid "" -"Class implementing bounded semaphore objects. A bounded semaphore checks to " -"make sure its current value doesn't exceed its initial value. If it " -"does, :exc:`ValueError` is raised. In most situations semaphores are used to " -"guard resources with limited capacity. If the semaphore is released too " -"many times it's a sign of a bug. If not given, *value* defaults to 1." +msgid "Class implementing bounded semaphore objects. A bounded semaphore checks to make sure its current value doesn't exceed its initial value. If it does, :exc:`ValueError` is raised. In most situations semaphores are used to guard resources with limited capacity. If the semaphore is released too many times it's a sign of a bug. If not given, *value* defaults to 1." msgstr "" -#: ../../library/threading.rst:1175 msgid ":class:`Semaphore` example" msgstr "" -#: ../../library/threading.rst:1177 -msgid "" -"Semaphores are often used to guard resources with limited capacity, for " -"example, a database server. In any situation where the size of the resource " -"is fixed, you should use a bounded semaphore. Before spawning any worker " -"threads, your main thread would initialize the semaphore::" +msgid "Semaphores are often used to guard resources with limited capacity, for example, a database server. In any situation where the size of the resource is fixed, you should use a bounded semaphore. Before spawning any worker threads, your main thread would initialize the semaphore::" msgstr "" -#: ../../library/threading.rst:1182 msgid "" "maxconnections = 5\n" "# ...\n" "pool_sema = BoundedSemaphore(value=maxconnections)" msgstr "" -#: ../../library/threading.rst:1186 -msgid "" -"Once spawned, worker threads call the semaphore's acquire and release " -"methods when they need to connect to the server::" +msgid "Once spawned, worker threads call the semaphore's acquire and release methods when they need to connect to the server::" msgstr "" -#: ../../library/threading.rst:1189 msgid "" "with pool_sema:\n" " conn = connectdb()\n" @@ -1611,103 +855,51 @@ msgid "" " conn.close()" msgstr "" -#: ../../library/threading.rst:1196 -msgid "" -"The use of a bounded semaphore reduces the chance that a programming error " -"which causes the semaphore to be released more than it's acquired will go " -"undetected." +msgid "The use of a bounded semaphore reduces the chance that a programming error which causes the semaphore to be released more than it's acquired will go undetected." msgstr "" -#: ../../library/threading.rst:1203 msgid "Event objects" msgstr "" -#: ../../library/threading.rst:1205 -msgid "" -"This is one of the simplest mechanisms for communication between threads: " -"one thread signals an event and other threads wait for it." +msgid "This is one of the simplest mechanisms for communication between threads: one thread signals an event and other threads wait for it." msgstr "" -#: ../../library/threading.rst:1208 -msgid "" -"An event object manages an internal flag that can be set to true with " -"the :meth:`~Event.set` method and reset to false with " -"the :meth:`~Event.clear` method. The :meth:`~Event.wait` method blocks " -"until the flag is true." +msgid "An event object manages an internal flag that can be set to true with the :meth:`~Event.set` method and reset to false with the :meth:`~Event.clear` method. The :meth:`~Event.wait` method blocks until the flag is true." msgstr "" -#: ../../library/threading.rst:1215 -msgid "" -"Class implementing event objects. An event manages a flag that can be set " -"to true with the :meth:`~Event.set` method and reset to false with " -"the :meth:`clear` method. The :meth:`wait` method blocks until the flag is " -"true. The flag is initially false." +msgid "Class implementing event objects. An event manages a flag that can be set to true with the :meth:`~Event.set` method and reset to false with the :meth:`clear` method. The :meth:`wait` method blocks until the flag is true. The flag is initially false." msgstr "" -#: ../../library/threading.rst:1225 msgid "Return ``True`` if and only if the internal flag is true." msgstr "" -#: ../../library/threading.rst:1227 msgid "The method ``isSet`` is a deprecated alias for this method." msgstr "" -#: ../../library/threading.rst:1231 -msgid "" -"Set the internal flag to true. All threads waiting for it to become true are " -"awakened. Threads that call :meth:`wait` once the flag is true will not " -"block at all." +msgid "Set the internal flag to true. All threads waiting for it to become true are awakened. Threads that call :meth:`wait` once the flag is true will not block at all." msgstr "" -#: ../../library/threading.rst:1237 -msgid "" -"Reset the internal flag to false. Subsequently, threads calling :meth:`wait` " -"will block until :meth:`.set` is called to set the internal flag to true " -"again." +msgid "Reset the internal flag to false. Subsequently, threads calling :meth:`wait` will block until :meth:`.set` is called to set the internal flag to true again." msgstr "" -#: ../../library/threading.rst:1243 -msgid "" -"Block as long as the internal flag is false and the timeout, if given, has " -"not expired. The return value represents the reason that this blocking " -"method returned; ``True`` if returning because the internal flag is set to " -"true, or ``False`` if a timeout is given and the internal flag did not " -"become true within the given wait time." +msgid "Block as long as the internal flag is false and the timeout, if given, has not expired. The return value represents the reason that this blocking method returned; ``True`` if returning because the internal flag is set to true, or ``False`` if a timeout is given and the internal flag did not become true within the given wait time." msgstr "" -#: ../../library/threading.rst:1249 -msgid "" -"When the timeout argument is present and not ``None``, it should be a " -"floating-point number specifying a timeout for the operation in seconds, or " -"fractions thereof." +msgid "When the timeout argument is present and not ``None``, it should be a floating-point number specifying a timeout for the operation in seconds, or fractions thereof." msgstr "" -#: ../../library/threading.rst:1260 msgid "Timer objects" msgstr "" -#: ../../library/threading.rst:1262 -msgid "" -"This class represents an action that should be run only after a certain " -"amount of time has passed --- a timer. :class:`Timer` is a subclass " -"of :class:`Thread` and as such also functions as an example of creating " -"custom threads." +msgid "This class represents an action that should be run only after a certain amount of time has passed --- a timer. :class:`Timer` is a subclass of :class:`Thread` and as such also functions as an example of creating custom threads." msgstr "" -#: ../../library/threading.rst:1266 -msgid "" -"Timers are started, as with threads, by calling their :meth:`Timer.start " -"` method. The timer can be stopped (before its action has " -"begun) by calling the :meth:`~Timer.cancel` method. The interval the timer " -"will wait before executing its action may not be exactly the same as the " -"interval specified by the user." +msgid "Timers are started, as with threads, by calling their :meth:`Timer.start ` method. The timer can be stopped (before its action has begun) by calling the :meth:`~Timer.cancel` method. The interval the timer will wait before executing its action may not be exactly the same as the interval specified by the user." msgstr "" -#: ../../library/threading.rst:1272 msgid "For example::" msgstr "" -#: ../../library/threading.rst:1274 msgid "" "def hello():\n" " print(\"hello, world\")\n" @@ -1716,45 +908,24 @@ msgid "" "t.start() # after 30 seconds, \"hello, world\" will be printed" msgstr "" -#: ../../library/threading.rst:1283 -msgid "" -"Create a timer that will run *function* with arguments *args* and keyword " -"arguments *kwargs*, after *interval* seconds have passed. If *args* is " -"``None`` (the default) then an empty list will be used. If *kwargs* is " -"``None`` (the default) then an empty dict will be used." +msgid "Create a timer that will run *function* with arguments *args* and keyword arguments *kwargs*, after *interval* seconds have passed. If *args* is ``None`` (the default) then an empty list will be used. If *kwargs* is ``None`` (the default) then an empty dict will be used." msgstr "" -#: ../../library/threading.rst:1293 -msgid "" -"Stop the timer, and cancel the execution of the timer's action. This will " -"only work if the timer is still in its waiting stage." +msgid "Stop the timer, and cancel the execution of the timer's action. This will only work if the timer is still in its waiting stage." msgstr "" -#: ../../library/threading.rst:1298 msgid "Barrier objects" msgstr "" -#: ../../library/threading.rst:1302 -msgid "" -"This class provides a simple synchronization primitive for use by a fixed " -"number of threads that need to wait for each other. Each of the threads " -"tries to pass the barrier by calling the :meth:`~Barrier.wait` method and " -"will block until all of the threads have made their :meth:`~Barrier.wait` " -"calls. At this point, the threads are released simultaneously." +msgid "This class provides a simple synchronization primitive for use by a fixed number of threads that need to wait for each other. Each of the threads tries to pass the barrier by calling the :meth:`~Barrier.wait` method and will block until all of the threads have made their :meth:`~Barrier.wait` calls. At this point, the threads are released simultaneously." msgstr "" -#: ../../library/threading.rst:1308 -msgid "" -"The barrier can be reused any number of times for the same number of threads." +msgid "The barrier can be reused any number of times for the same number of threads." msgstr "" -#: ../../library/threading.rst:1310 -msgid "" -"As an example, here is a simple way to synchronize a client and server " -"thread::" +msgid "As an example, here is a simple way to synchronize a client and server thread::" msgstr "" -#: ../../library/threading.rst:1312 msgid "" "b = Barrier(2, timeout=5)\n" "\n" @@ -1772,30 +943,15 @@ msgid "" " process_client_connection(connection)" msgstr "" -#: ../../library/threading.rst:1330 -msgid "" -"Create a barrier object for *parties* number of threads. An *action*, when " -"provided, is a callable to be called by one of the threads when they are " -"released. *timeout* is the default timeout value if none is specified for " -"the :meth:`wait` method." +msgid "Create a barrier object for *parties* number of threads. An *action*, when provided, is a callable to be called by one of the threads when they are released. *timeout* is the default timeout value if none is specified for the :meth:`wait` method." msgstr "" -#: ../../library/threading.rst:1337 -msgid "" -"Pass the barrier. When all the threads party to the barrier have called " -"this function, they are all released simultaneously. If a *timeout* is " -"provided, it is used in preference to any that was supplied to the class " -"constructor." +msgid "Pass the barrier. When all the threads party to the barrier have called this function, they are all released simultaneously. If a *timeout* is provided, it is used in preference to any that was supplied to the class constructor." msgstr "" -#: ../../library/threading.rst:1342 -msgid "" -"The return value is an integer in the range 0 to *parties* -- 1, different " -"for each thread. This can be used to select a thread to do some special " -"housekeeping, e.g.::" +msgid "The return value is an integer in the range 0 to *parties* -- 1, different for each thread. This can be used to select a thread to do some special housekeeping, e.g.::" msgstr "" -#: ../../library/threading.rst:1346 msgid "" "i = barrier.wait()\n" "if i == 0:\n" @@ -1803,93 +959,53 @@ msgid "" " print(\"passed the barrier\")" msgstr "" -#: ../../library/threading.rst:1351 -msgid "" -"If an *action* was provided to the constructor, one of the threads will have " -"called it prior to being released. Should this call raise an error, the " -"barrier is put into the broken state." +msgid "If an *action* was provided to the constructor, one of the threads will have called it prior to being released. Should this call raise an error, the barrier is put into the broken state." msgstr "" -#: ../../library/threading.rst:1355 msgid "If the call times out, the barrier is put into the broken state." msgstr "" -#: ../../library/threading.rst:1357 -msgid "" -"This method may raise a :class:`BrokenBarrierError` exception if the barrier " -"is broken or reset while a thread is waiting." +msgid "This method may raise a :class:`BrokenBarrierError` exception if the barrier is broken or reset while a thread is waiting." msgstr "" -#: ../../library/threading.rst:1362 -msgid "" -"Return the barrier to the default, empty state. Any threads waiting on it " -"will receive the :class:`BrokenBarrierError` exception." +msgid "Return the barrier to the default, empty state. Any threads waiting on it will receive the :class:`BrokenBarrierError` exception." msgstr "" -#: ../../library/threading.rst:1365 -msgid "" -"Note that using this function may require some external synchronization if " -"there are other threads whose state is unknown. If a barrier is broken it " -"may be better to just leave it and create a new one." +msgid "Note that using this function may require some external synchronization if there are other threads whose state is unknown. If a barrier is broken it may be better to just leave it and create a new one." msgstr "" -#: ../../library/threading.rst:1371 -msgid "" -"Put the barrier into a broken state. This causes any active or future calls " -"to :meth:`wait` to fail with the :class:`BrokenBarrierError`. Use this for " -"example if one of the threads needs to abort, to avoid deadlocking the " -"application." +msgid "Put the barrier into a broken state. This causes any active or future calls to :meth:`wait` to fail with the :class:`BrokenBarrierError`. Use this for example if one of the threads needs to abort, to avoid deadlocking the application." msgstr "" -#: ../../library/threading.rst:1376 -msgid "" -"It may be preferable to simply create the barrier with a sensible *timeout* " -"value to automatically guard against one of the threads going awry." +msgid "It may be preferable to simply create the barrier with a sensible *timeout* value to automatically guard against one of the threads going awry." msgstr "" -#: ../../library/threading.rst:1382 msgid "The number of threads required to pass the barrier." msgstr "" -#: ../../library/threading.rst:1386 msgid "The number of threads currently waiting in the barrier." msgstr "" -#: ../../library/threading.rst:1390 msgid "A boolean that is ``True`` if the barrier is in the broken state." msgstr "" -#: ../../library/threading.rst:1395 -msgid "" -"This exception, a subclass of :exc:`RuntimeError`, is raised when " -"the :class:`Barrier` object is reset or broken." +msgid "This exception, a subclass of :exc:`RuntimeError`, is raised when the :class:`Barrier` object is reset or broken." msgstr "" -#: ../../library/threading.rst:1402 -msgid "" -"Using locks, conditions, and semaphores in the :keyword:`!with` statement" +msgid "Using locks, conditions, and semaphores in the :keyword:`!with` statement" msgstr "" -#: ../../library/threading.rst:1404 -msgid "" -"All of the objects provided by this module that have ``acquire`` and " -"``release`` methods can be used as context managers for a :keyword:`with` " -"statement. The ``acquire`` method will be called when the block is entered, " -"and ``release`` will be called when the block is exited. Hence, the " -"following snippet::" +msgid "All of the objects provided by this module that have ``acquire`` and ``release`` methods can be used as context managers for a :keyword:`with` statement. The ``acquire`` method will be called when the block is entered, and ``release`` will be called when the block is exited. Hence, the following snippet::" msgstr "" -#: ../../library/threading.rst:1410 msgid "" "with some_lock:\n" " # do something..." msgstr "" -#: ../../library/threading.rst:1413 msgid "is equivalent to::" msgstr "" -#: ../../library/threading.rst:1415 msgid "" "some_lock.acquire()\n" "try:\n" @@ -1898,21 +1014,14 @@ msgid "" " some_lock.release()" msgstr "" -#: ../../library/threading.rst:1421 -msgid "" -"Currently, :class:`Lock`, :class:`RLock`, :class:`Condition`, :class:`Semaphore`, " -"and :class:`BoundedSemaphore` objects may be used as :keyword:`with` " -"statement context managers." +msgid "Currently, :class:`Lock`, :class:`RLock`, :class:`Condition`, :class:`Semaphore`, and :class:`BoundedSemaphore` objects may be used as :keyword:`with` statement context managers." msgstr "" -#: ../../library/threading.rst:222 ../../library/threading.rst:240 msgid "trace function" msgstr "" -#: ../../library/threading.rst:240 msgid "debugger" msgstr "" -#: ../../library/threading.rst:251 ../../library/threading.rst:269 msgid "profile function" msgstr "" diff --git a/library/threadsafety.po b/library/threadsafety.po index 85524e06..2845cca9 100644 --- a/library/threadsafety.po +++ b/library/threadsafety.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2026-07-25 12:59+0330\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: none\n" @@ -19,262 +19,137 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../library/threadsafety.rst:5 msgid "Thread Safety Guarantees" msgstr "" -#: ../../library/threadsafety.rst:7 -msgid "" -"This page documents thread-safety guarantees for built-in types in Python's " -"free-threaded build. The guarantees described here apply when using Python " -"with the :term:`GIL` disabled (free-threaded mode). When the GIL is enabled, " -"most operations are implicitly serialized." +msgid "This page documents thread-safety guarantees for built-in types in Python's free-threaded build. The guarantees described here apply when using Python with the :term:`GIL` disabled (free-threaded mode). When the GIL is enabled, most operations are implicitly serialized." msgstr "" -#: ../../library/threadsafety.rst:12 -msgid "" -"For general guidance on writing thread-safe code in free-threaded Python, " -"see :ref:`freethreading-python-howto`." +msgid "For general guidance on writing thread-safe code in free-threaded Python, see :ref:`freethreading-python-howto`." msgstr "" -#: ../../library/threadsafety.rst:19 msgid "Thread safety levels" msgstr "" -#: ../../library/threadsafety.rst:21 -msgid "" -"The C API documentation uses the following levels to describe the thread " -"safety guarantees of each function. The levels are listed from least to most " -"safe." +msgid "The C API documentation uses the following levels to describe the thread safety guarantees of each function. The levels are listed from least to most safe." msgstr "" -#: ../../library/threadsafety.rst:28 msgid "Incompatible" msgstr "" -#: ../../library/threadsafety.rst:30 -msgid "" -"A function or operation that cannot be made safe for concurrent use even " -"with external synchronization. Incompatible code typically accesses global " -"state in an unsynchronized way and must only be called from a single thread " -"throughout the program's lifetime." +msgid "A function or operation that cannot be made safe for concurrent use even with external synchronization. Incompatible code typically accesses global state in an unsynchronized way and must only be called from a single thread throughout the program's lifetime." msgstr "" -#: ../../library/threadsafety.rst:35 -msgid "" -"Example: a function that modifies process-wide state such as signal handlers " -"or environment variables, where concurrent calls from any threads, even with " -"external locking, can conflict with the runtime or other libraries." +msgid "Example: a function that modifies process-wide state such as signal handlers or environment variables, where concurrent calls from any threads, even with external locking, can conflict with the runtime or other libraries." msgstr "" -#: ../../library/threadsafety.rst:42 msgid "Compatible" msgstr "" -#: ../../library/threadsafety.rst:44 -msgid "" -"A function or operation that is safe to call from multiple threads " -"*provided* the caller supplies appropriate external synchronization, for " -"example by holding a :term:`lock` for the duration of each call. Without " -"such synchronization, concurrent calls may produce :term:`race conditions " -"` or :term:`data races `." +msgid "A function or operation that is safe to call from multiple threads *provided* the caller supplies appropriate external synchronization, for example by holding a :term:`lock` for the duration of each call. Without such synchronization, concurrent calls may produce :term:`race conditions ` or :term:`data races `." msgstr "" -#: ../../library/threadsafety.rst:50 -msgid "" -"Example: a function that reads from or writes to an object whose internal " -"state is not protected by a lock. Callers must ensure that no two threads " -"access the same object at the same time." +msgid "Example: a function that reads from or writes to an object whose internal state is not protected by a lock. Callers must ensure that no two threads access the same object at the same time." msgstr "" -#: ../../library/threadsafety.rst:57 msgid "Safe on distinct objects" msgstr "" -#: ../../library/threadsafety.rst:59 -msgid "" -"A function or operation that is safe to call from multiple threads without " -"external synchronization, as long as each thread operates on a **different** " -"object. Two threads may call the function at the same time, but they must " -"not pass the same object (or objects that share underlying state) as " -"arguments." +msgid "A function or operation that is safe to call from multiple threads without external synchronization, as long as each thread operates on a **different** object. Two threads may call the function at the same time, but they must not pass the same object (or objects that share underlying state) as arguments." msgstr "" -#: ../../library/threadsafety.rst:65 -msgid "" -"Example: a function that modifies fields of a struct using non-atomic " -"writes. Two threads can each call the function on their own struct instance " -"safely, but concurrent calls on the *same* instance require external " -"synchronization." +msgid "Example: a function that modifies fields of a struct using non-atomic writes. Two threads can each call the function on their own struct instance safely, but concurrent calls on the *same* instance require external synchronization." msgstr "" -#: ../../library/threadsafety.rst:73 msgid "Safe on shared objects" msgstr "" -#: ../../library/threadsafety.rst:75 -msgid "" -"A function or operation that is safe for concurrent use on the **same** " -"object. The implementation uses internal synchronization (such as :term:`per-" -"object locks ` or :ref:`critical sections `) to protect shared mutable state, so callers do not need to " -"supply their own locking." +msgid "A function or operation that is safe for concurrent use on the **same** object. The implementation uses internal synchronization (such as :term:`per-object locks ` or :ref:`critical sections `) to protect shared mutable state, so callers do not need to supply their own locking." msgstr "" -#: ../../library/threadsafety.rst:81 -msgid "" -"Example: :c:func:`PyList_GetItemRef` can be called from multiple threads on " -"the same :c:type:`PyListObject` - it uses internal synchronization to " -"serialize access." +msgid "Example: :c:func:`PyList_GetItemRef` can be called from multiple threads on the same :c:type:`PyListObject` - it uses internal synchronization to serialize access." msgstr "" -#: ../../library/threadsafety.rst:88 msgid "Atomic" msgstr "" -#: ../../library/threadsafety.rst:90 -msgid "" -"A function or operation that appears :term:`atomic ` with " -"respect to other threads - it executes instantaneously from the perspective " -"of other threads. This is the strongest form of thread safety." +msgid "A function or operation that appears :term:`atomic ` with respect to other threads - it executes instantaneously from the perspective of other threads. This is the strongest form of thread safety." msgstr "" -#: ../../library/threadsafety.rst:94 -msgid "" -"Example: :c:func:`PyMutex_IsLocked` performs an atomic read of the mutex " -"state and can be called from any thread at any time." +msgid "Example: :c:func:`PyMutex_IsLocked` performs an atomic read of the mutex state and can be called from any thread at any time." msgstr "" -#: ../../library/threadsafety.rst:101 msgid "Thread safety for list objects" msgstr "" -#: ../../library/threadsafety.rst:103 -msgid "" -"Reading a single element from a :class:`list` is :term:`atomic `:" +msgid "Reading a single element from a :class:`list` is :term:`atomic `:" msgstr "" -#: ../../library/threadsafety.rst:106 msgid "lst[i] # list.__getitem__" msgstr "" -#: ../../library/threadsafety.rst:111 -msgid "" -"The following methods traverse the list and use :term:`atomic ` reads of each item to perform their function. That means that " -"they may return results affected by concurrent modifications:" +msgid "The following methods traverse the list and use :term:`atomic ` reads of each item to perform their function. That means that they may return results affected by concurrent modifications:" msgstr "" -#: ../../library/threadsafety.rst:115 msgid "" "item in lst\n" "lst.index(item)\n" "lst.count(item)" msgstr "" -#: ../../library/threadsafety.rst:122 -msgid "" -"All of the above operations avoid acquiring :term:`per-object locks `. They do not block concurrent modifications. Other operations " -"that hold a lock will not block these from observing intermediate states." +msgid "All of the above operations avoid acquiring :term:`per-object locks `. They do not block concurrent modifications. Other operations that hold a lock will not block these from observing intermediate states." msgstr "" -#: ../../library/threadsafety.rst:127 -msgid "" -"All other operations from here on block using the :term:`per-object lock`." +msgid "All other operations from here on block using the :term:`per-object lock`." msgstr "" -#: ../../library/threadsafety.rst:129 -msgid "" -"Writing a single item via ``lst[i] = x`` is safe to call from multiple " -"threads and will not corrupt the list." +msgid "Writing a single item via ``lst[i] = x`` is safe to call from multiple threads and will not corrupt the list." msgstr "" -#: ../../library/threadsafety.rst:132 -msgid "" -"The following operations return new objects and appear :term:`atomic ` to other threads:" +msgid "The following operations return new objects and appear :term:`atomic ` to other threads:" msgstr "" -#: ../../library/threadsafety.rst:135 msgid "" "lst1 + lst2 # concatenates two lists into a new list\n" "x * lst # repeats lst x times into a new list\n" "lst.copy() # returns a shallow copy of the list" msgstr "" -#: ../../library/threadsafety.rst:142 -msgid "" -"The following methods that only operate on a single element with no shifting " -"required are :term:`atomic `:" +msgid "The following methods that only operate on a single element with no shifting required are :term:`atomic `:" msgstr "" -#: ../../library/threadsafety.rst:145 msgid "" "lst.append(x) # append to the end of the list, no shifting required\n" "lst.pop() # pop element from the end of the list, no shifting required" msgstr "" -#: ../../library/threadsafety.rst:151 -msgid "" -"The :meth:`~list.clear` method is also :term:`atomic `. " -"Other threads cannot observe elements being removed." +msgid "The :meth:`~list.clear` method is also :term:`atomic `. Other threads cannot observe elements being removed." msgstr "" -#: ../../library/threadsafety.rst:154 -msgid "" -"The :meth:`~list.sort` method is not :term:`atomic `. " -"Other threads cannot observe intermediate states during sorting, but the " -"list appears empty for the duration of the sort." +msgid "The :meth:`~list.sort` method is not :term:`atomic `. Other threads cannot observe intermediate states during sorting, but the list appears empty for the duration of the sort." msgstr "" -#: ../../library/threadsafety.rst:158 -msgid "" -"The following operations may allow :term:`lock-free` operations to observe " -"intermediate states since they modify multiple elements in place:" +msgid "The following operations may allow :term:`lock-free` operations to observe intermediate states since they modify multiple elements in place:" msgstr "" -#: ../../library/threadsafety.rst:161 msgid "" "lst.insert(idx, item) # shifts elements\n" "lst.pop(idx) # idx not at the end of the list, shifts elements\n" "lst *= x # copies elements in place" msgstr "" -#: ../../library/threadsafety.rst:168 -msgid "" -"The :meth:`~list.remove` method may allow concurrent modifications since " -"element comparison may execute arbitrary Python code " -"(via :meth:`~object.__eq__`)." +msgid "The :meth:`~list.remove` method may allow concurrent modifications since element comparison may execute arbitrary Python code (via :meth:`~object.__eq__`)." msgstr "" -#: ../../library/threadsafety.rst:172 -msgid "" -":meth:`~list.extend` is safe to call from multiple threads. However, its " -"guarantees depend on the iterable passed to it. If it is a :class:`list`, " -"a :class:`tuple`, a :class:`set`, a :class:`frozenset`, a :class:`dict` or " -"a :ref:`dictionary view object ` (but not their subclasses), the " -"``extend`` operation is safe from concurrent modifications to the iterable. " -"Otherwise, an iterator is created which can be concurrently modified by " -"another thread. The same applies to inplace concatenation of a list with " -"other iterables when using ``lst += iterable``." +msgid ":meth:`~list.extend` is safe to call from multiple threads. However, its guarantees depend on the iterable passed to it. If it is a :class:`list`, a :class:`tuple`, a :class:`set`, a :class:`frozenset`, a :class:`dict` or a :ref:`dictionary view object ` (but not their subclasses), the ``extend`` operation is safe from concurrent modifications to the iterable. Otherwise, an iterator is created which can be concurrently modified by another thread. The same applies to inplace concatenation of a list with other iterables when using ``lst += iterable``." msgstr "" -#: ../../library/threadsafety.rst:181 -msgid "" -"Similarly, assigning to a list slice with ``lst[i:j] = iterable`` is safe to " -"call from multiple threads, but ``iterable`` is only locked when it is also " -"a :class:`list` (but not its subclasses)." +msgid "Similarly, assigning to a list slice with ``lst[i:j] = iterable`` is safe to call from multiple threads, but ``iterable`` is only locked when it is also a :class:`list` (but not its subclasses)." msgstr "" -#: ../../library/threadsafety.rst:185 -msgid "" -"Operations that involve multiple accesses, as well as iteration, are never " -"atomic. For example:" +msgid "Operations that involve multiple accesses, as well as iteration, are never atomic. For example:" msgstr "" -#: ../../library/threadsafety.rst:188 msgid "" "# NOT atomic: read-modify-write\n" "lst[i] = lst[i] + 1\n" @@ -288,32 +163,18 @@ msgid "" " process(item) # another thread may modify lst" msgstr "" -#: ../../library/threadsafety.rst:202 -msgid "" -"Consider external synchronization when sharing :class:`list` instances " -"across threads." +msgid "Consider external synchronization when sharing :class:`list` instances across threads." msgstr "" -#: ../../library/threadsafety.rst:209 msgid "Thread safety for dict objects" msgstr "" -#: ../../library/threadsafety.rst:211 -msgid "" -"Creating a dictionary with the :class:`dict` constructor is atomic when the " -"argument to it is a :class:`dict` or a :class:`tuple`. When using " -"the :meth:`dict.fromkeys` method, dictionary creation is atomic when the " -"argument is a :class:`dict`, :class:`tuple`, :class:`set` " -"or :class:`frozenset`." +msgid "Creating a dictionary with the :class:`dict` constructor is atomic when the argument to it is a :class:`dict` or a :class:`tuple`. When using the :meth:`dict.fromkeys` method, dictionary creation is atomic when the argument is a :class:`dict`, :class:`tuple`, :class:`set` or :class:`frozenset`." msgstr "" -#: ../../library/threadsafety.rst:217 -msgid "" -"The following operations and functions are :term:`lock-free` " -"and :term:`atomic `." +msgid "The following operations and functions are :term:`lock-free` and :term:`atomic `." msgstr "" -#: ../../library/threadsafety.rst:220 msgid "" "d[key] # dict.__getitem__\n" "d.get(key) # dict.get\n" @@ -321,17 +182,12 @@ msgid "" "len(d) # dict.__len__" msgstr "" -#: ../../library/threadsafety.rst:228 msgid "All other operations from here on hold the :term:`per-object lock`." msgstr "" -#: ../../library/threadsafety.rst:230 -msgid "" -"Writing or removing a single item is safe to call from multiple threads and " -"will not corrupt the dictionary:" +msgid "Writing or removing a single item is safe to call from multiple threads and will not corrupt the dictionary:" msgstr "" -#: ../../library/threadsafety.rst:233 msgid "" "d[key] = value # write\n" "del d[key] # delete\n" @@ -340,23 +196,12 @@ msgid "" "d.setdefault(key, v) # insert if missing" msgstr "" -#: ../../library/threadsafety.rst:242 -msgid "" -"These operations may compare keys using :meth:`~object.__eq__`, which can " -"execute arbitrary Python code. During such comparisons, the dictionary may " -"be modified by another thread. For built-in types " -"like :class:`str`, :class:`int`, and :class:`float`, that " -"implement :meth:`~object.__eq__` in C, the underlying lock is not released " -"during comparisons and this is not a concern." +msgid "These operations may compare keys using :meth:`~object.__eq__`, which can execute arbitrary Python code. During such comparisons, the dictionary may be modified by another thread. For built-in types like :class:`str`, :class:`int`, and :class:`float`, that implement :meth:`~object.__eq__` in C, the underlying lock is not released during comparisons and this is not a concern." msgstr "" -#: ../../library/threadsafety.rst:249 -msgid "" -"The following operations return new objects and hold the :term:`per-object " -"lock` for the duration of the operation:" +msgid "The following operations return new objects and hold the :term:`per-object lock` for the duration of the operation:" msgstr "" -#: ../../library/threadsafety.rst:252 msgid "" "d.copy() # returns a shallow copy of the dictionary\n" "d | other # merges two dicts into a new dict\n" @@ -365,70 +210,42 @@ msgid "" "d.items() # returns a new dict_items view object" msgstr "" -#: ../../library/threadsafety.rst:261 -msgid "" -"The :meth:`~dict.clear` method holds the lock for its duration. Other " -"threads cannot observe elements being removed." +msgid "The :meth:`~dict.clear` method holds the lock for its duration. Other threads cannot observe elements being removed." msgstr "" -#: ../../library/threadsafety.rst:264 -msgid "" -"The following operations lock both dictionaries. For :meth:`~dict.update` " -"and ``|=``, this applies only when the other operand is a :class:`dict` that " -"uses the standard dict iterator (but not subclasses that override " -"iteration). For equality comparison, this applies to :class:`dict` and its " -"subclasses:" +msgid "The following operations lock both dictionaries. For :meth:`~dict.update` and ``|=``, this applies only when the other operand is a :class:`dict` that uses the standard dict iterator (but not subclasses that override iteration). For equality comparison, this applies to :class:`dict` and its subclasses:" msgstr "" -#: ../../library/threadsafety.rst:270 msgid "" "d.update(other_dict) # both locked when other_dict is a dict\n" "d |= other_dict # both locked when other_dict is a dict\n" "d == other_dict # both locked for dict and subclasses" msgstr "" -#: ../../library/threadsafety.rst:277 -msgid "" -"All comparison operations also compare values using :meth:`~object.__eq__`, " -"so for non-built-in types the lock may be released during comparison." +msgid "All comparison operations also compare values using :meth:`~object.__eq__`, so for non-built-in types the lock may be released during comparison." msgstr "" -#: ../../library/threadsafety.rst:280 -msgid "" -":meth:`~dict.fromkeys` locks both the new dictionary and the iterable when " -"the iterable is exactly a :class:`dict`, :class:`set`, or :class:`frozenset` " -"(not subclasses):" +msgid ":meth:`~dict.fromkeys` locks both the new dictionary and the iterable when the iterable is exactly a :class:`dict`, :class:`set`, or :class:`frozenset` (not subclasses):" msgstr "" -#: ../../library/threadsafety.rst:284 msgid "" "dict.fromkeys(a_dict) # locks both\n" "dict.fromkeys(a_set) # locks both\n" "dict.fromkeys(a_frozenset) # locks both" msgstr "" -#: ../../library/threadsafety.rst:291 -msgid "" -"When updating from a non-dict iterable, only the target dictionary is " -"locked. The iterable may be concurrently modified by another thread:" +msgid "When updating from a non-dict iterable, only the target dictionary is locked. The iterable may be concurrently modified by another thread:" msgstr "" -#: ../../library/threadsafety.rst:294 msgid "" "d.update(iterable) # iterable is not a dict: only d locked\n" "d |= iterable # iterable is not a dict: only d locked\n" -"dict.fromkeys(iterable) # iterable is not a dict/set/frozenset: only " -"result locked" +"dict.fromkeys(iterable) # iterable is not a dict/set/frozenset: only result locked" msgstr "" -#: ../../library/threadsafety.rst:301 ../../library/threadsafety.rst:434 -#: ../../library/threadsafety.rst:525 -msgid "" -"Operations that involve multiple accesses, as well as iteration, are never " -"atomic:" +msgid "Operations that involve multiple accesses, as well as iteration, are never atomic:" msgstr "" -#: ../../library/threadsafety.rst:304 msgid "" "# NOT atomic: read-modify-write\n" "d[key] = d[key] + 1\n" @@ -442,13 +259,9 @@ msgid "" " process(key) # another thread may modify d" msgstr "" -#: ../../library/threadsafety.rst:318 -msgid "" -"To avoid time-of-check to time-of-use (TOCTOU) issues, use atomic operations " -"or handle exceptions:" +msgid "To avoid time-of-check to time-of-use (TOCTOU) issues, use atomic operations or handle exceptions:" msgstr "" -#: ../../library/threadsafety.rst:321 msgid "" "# Use pop() with default instead of check-then-delete\n" "d.pop(key, None)\n" @@ -460,65 +273,39 @@ msgid "" " pass" msgstr "" -#: ../../library/threadsafety.rst:333 -msgid "" -"To safely iterate over a dictionary that may be modified by another thread, " -"iterate over a copy:" +msgid "To safely iterate over a dictionary that may be modified by another thread, iterate over a copy:" msgstr "" -#: ../../library/threadsafety.rst:336 msgid "" "# Make a copy to iterate safely\n" "for key, value in d.copy().items():\n" " process(key)" msgstr "" -#: ../../library/threadsafety.rst:343 -msgid "" -"Consider external synchronization when sharing :class:`dict` instances " -"across threads." +msgid "Consider external synchronization when sharing :class:`dict` instances across threads." msgstr "" -#: ../../library/threadsafety.rst:350 msgid "Thread safety for set objects" msgstr "" -#: ../../library/threadsafety.rst:352 ../../library/threadsafety.rst:457 -msgid "" -"The :func:`len` function is lock-free and :term:`atomic `." +msgid "The :func:`len` function is lock-free and :term:`atomic `." msgstr "" -#: ../../library/threadsafety.rst:354 -msgid "" -"The following read operation is lock-free. It does not block concurrent " -"modifications and may observe intermediate states from operations that hold " -"the per-object lock:" +msgid "The following read operation is lock-free. It does not block concurrent modifications and may observe intermediate states from operations that hold the per-object lock:" msgstr "" -#: ../../library/threadsafety.rst:358 msgid "elem in s # set.__contains__" msgstr "" -#: ../../library/threadsafety.rst:363 -msgid "" -"This operation may compare elements using :meth:`~object.__eq__`, which can " -"execute arbitrary Python code. During such comparisons, the set may be " -"modified by another thread. For built-in types " -"like :class:`str`, :class:`int`, and :class:`float`, :meth:`!__eq__` does " -"not release the underlying lock during comparisons and this is not a concern." +msgid "This operation may compare elements using :meth:`~object.__eq__`, which can execute arbitrary Python code. During such comparisons, the set may be modified by another thread. For built-in types like :class:`str`, :class:`int`, and :class:`float`, :meth:`!__eq__` does not release the underlying lock during comparisons and this is not a concern." msgstr "" -#: ../../library/threadsafety.rst:369 ../../library/threadsafety.rst:470 msgid "All other operations from here on hold the per-object lock." msgstr "" -#: ../../library/threadsafety.rst:371 -msgid "" -"Adding or removing a single element is safe to call from multiple threads " -"and will not corrupt the set:" +msgid "Adding or removing a single element is safe to call from multiple threads and will not corrupt the set:" msgstr "" -#: ../../library/threadsafety.rst:374 msgid "" "s.add(elem) # add element\n" "s.remove(elem) # remove element, raise if missing\n" @@ -526,31 +313,18 @@ msgid "" "s.pop() # remove and return arbitrary element" msgstr "" -#: ../../library/threadsafety.rst:382 -msgid "" -"These operations also compare elements, so the same :meth:`~object.__eq__` " -"considerations as above apply." +msgid "These operations also compare elements, so the same :meth:`~object.__eq__` considerations as above apply." msgstr "" -#: ../../library/threadsafety.rst:385 -msgid "" -"The :meth:`~set.copy` method returns a new object and holds the per-object " -"lock for the duration so that it is always atomic." +msgid "The :meth:`~set.copy` method returns a new object and holds the per-object lock for the duration so that it is always atomic." msgstr "" -#: ../../library/threadsafety.rst:388 -msgid "" -"The :meth:`~set.clear` method holds the lock for its duration. Other threads " -"cannot observe elements being removed." +msgid "The :meth:`~set.clear` method holds the lock for its duration. Other threads cannot observe elements being removed." msgstr "" -#: ../../library/threadsafety.rst:391 -msgid "" -"The following operations only accept :class:`set` or :class:`frozenset` as " -"operands and always lock both objects:" +msgid "The following operations only accept :class:`set` or :class:`frozenset` as operands and always lock both objects:" msgstr "" -#: ../../library/threadsafety.rst:394 msgid "" "s |= other # other must be set/frozenset\n" "s &= other # other must be set/frozenset\n" @@ -562,69 +336,48 @@ msgid "" "s ^ other # other must be set/frozenset" msgstr "" -#: ../../library/threadsafety.rst:406 -msgid "" -":meth:`set.update`, :meth:`set.union`, :meth:`set.intersection` " -"and :meth:`set.difference` can take multiple iterables as arguments. They " -"all iterate through all the passed iterables and do the following:" +msgid ":meth:`set.update`, :meth:`set.union`, :meth:`set.intersection` and :meth:`set.difference` can take multiple iterables as arguments. They all iterate through all the passed iterables and do the following:" msgstr "" -#: ../../library/threadsafety.rst:410 msgid ":meth:`set.update` and :meth:`set.union` lock both objects only when" msgstr "" -#: ../../library/threadsafety.rst:411 -msgid "" -"the other operand is a :class:`set`, :class:`frozenset`, or :class:`dict`." +msgid "the other operand is a :class:`set`, :class:`frozenset`, or :class:`dict`." msgstr "" -#: ../../library/threadsafety.rst:412 msgid ":meth:`set.intersection` and :meth:`set.difference` always try to lock" msgstr "" -#: ../../library/threadsafety.rst:413 msgid "all objects." msgstr "" -#: ../../library/threadsafety.rst:415 msgid ":meth:`set.symmetric_difference` tries to lock both objects." msgstr "" -#: ../../library/threadsafety.rst:417 -msgid "" -"The update variants of the above methods also have some differences between " -"them:" +msgid "The update variants of the above methods also have some differences between them:" msgstr "" -#: ../../library/threadsafety.rst:420 msgid ":meth:`set.difference_update` and :meth:`set.intersection_update` try" msgstr "" -#: ../../library/threadsafety.rst:421 msgid "to lock all objects one-by-one." msgstr "" -#: ../../library/threadsafety.rst:422 -msgid "" -":meth:`set.symmetric_difference_update` only locks the arguments if it is" +msgid ":meth:`set.symmetric_difference_update` only locks the arguments if it is" msgstr "" -#: ../../library/threadsafety.rst:423 msgid "of type :class:`set`, :class:`frozenset`, or :class:`dict`." msgstr "" -#: ../../library/threadsafety.rst:425 msgid "The following methods always try to lock both objects:" msgstr "" -#: ../../library/threadsafety.rst:427 msgid "" "s.isdisjoint(other) # both locked\n" "s.issubset(other) # both locked\n" "s.issuperset(other) # both locked" msgstr "" -#: ../../library/threadsafety.rst:437 msgid "" "# NOT atomic: check-then-act\n" "if elem in s:\n" @@ -635,48 +388,32 @@ msgid "" " process(elem) # another thread may modify s" msgstr "" -#: ../../library/threadsafety.rst:448 -msgid "" -"Consider external synchronization when sharing :class:`set` instances across " -"threads. See :ref:`freethreading-python-howto` for more information." +msgid "Consider external synchronization when sharing :class:`set` instances across threads. See :ref:`freethreading-python-howto` for more information." msgstr "" -#: ../../library/threadsafety.rst:455 msgid "Thread safety for bytearray objects" msgstr "" -#: ../../library/threadsafety.rst:459 -msgid "" -"Concatenation and comparisons use the buffer protocol, which prevents " -"resizing but does not hold the per-object lock. These operations may observe " -"intermediate states from concurrent modifications:" +msgid "Concatenation and comparisons use the buffer protocol, which prevents resizing but does not hold the per-object lock. These operations may observe intermediate states from concurrent modifications:" msgstr "" -#: ../../library/threadsafety.rst:463 msgid "" "ba + other # may observe concurrent writes\n" "ba == other # may observe concurrent writes\n" "ba < other # may observe concurrent writes" msgstr "" -#: ../../library/threadsafety.rst:472 -msgid "" -"Reading a single element or slice is safe to call from multiple threads:" +msgid "Reading a single element or slice is safe to call from multiple threads:" msgstr "" -#: ../../library/threadsafety.rst:474 msgid "" "ba[i] # bytearray.__getitem__\n" "ba[i:j] # slice" msgstr "" -#: ../../library/threadsafety.rst:480 -msgid "" -"The following operations are safe to call from multiple threads and will not " -"corrupt the bytearray:" +msgid "The following operations are safe to call from multiple threads and will not corrupt the bytearray:" msgstr "" -#: ../../library/threadsafety.rst:483 msgid "" "ba[i] = x # write single byte\n" "ba[i:j] = values # write slice\n" @@ -690,43 +427,29 @@ msgid "" "ba.clear() # remove all bytes" msgstr "" -#: ../../library/threadsafety.rst:497 -msgid "" -"Slice assignment locks both objects when *values* is a :class:`bytearray`:" +msgid "Slice assignment locks both objects when *values* is a :class:`bytearray`:" msgstr "" -#: ../../library/threadsafety.rst:499 msgid "ba[i:j] = other_bytearray # both locked" msgstr "" -#: ../../library/threadsafety.rst:504 -msgid "" -"The following operations return new objects and hold the per-object lock for " -"the duration:" +msgid "The following operations return new objects and hold the per-object lock for the duration:" msgstr "" -#: ../../library/threadsafety.rst:507 msgid "" "ba.copy() # returns a shallow copy\n" "ba * n # repeat into new bytearray" msgstr "" -#: ../../library/threadsafety.rst:513 msgid "The membership test holds the lock for its duration:" msgstr "" -#: ../../library/threadsafety.rst:515 msgid "x in ba # bytearray.__contains__" msgstr "" -#: ../../library/threadsafety.rst:520 -msgid "" -"All other bytearray methods (such " -"as :meth:`~bytearray.find`, :meth:`~bytearray.replace`, :meth:`~bytearray.split`, :meth:`~bytearray.decode`, " -"etc.) hold the per-object lock for their duration." +msgid "All other bytearray methods (such as :meth:`~bytearray.find`, :meth:`~bytearray.replace`, :meth:`~bytearray.split`, :meth:`~bytearray.decode`, etc.) hold the per-object lock for their duration." msgstr "" -#: ../../library/threadsafety.rst:528 msgid "" "# NOT atomic: check-then-act\n" "if x in ba:\n" @@ -737,69 +460,36 @@ msgid "" " process(byte) # another thread may modify ba" msgstr "" -#: ../../library/threadsafety.rst:539 -msgid "" -"To safely iterate over a bytearray that may be modified by another thread, " -"iterate over a copy:" +msgid "To safely iterate over a bytearray that may be modified by another thread, iterate over a copy:" msgstr "" -#: ../../library/threadsafety.rst:542 msgid "" "# Make a copy to iterate safely\n" "for byte in ba.copy():\n" " process(byte)" msgstr "" -#: ../../library/threadsafety.rst:549 -msgid "" -"Consider external synchronization when sharing :class:`bytearray` instances " -"across threads. See :ref:`freethreading-python-howto` for more information." +msgid "Consider external synchronization when sharing :class:`bytearray` instances across threads. See :ref:`freethreading-python-howto` for more information." msgstr "" -#: ../../library/threadsafety.rst:556 msgid "Thread safety for memoryview objects" msgstr "" -#: ../../library/threadsafety.rst:558 -msgid "" -":class:`memoryview` objects provide access to the internal data of an " -"underlying object without copying. Thread safety depends on both the " -"memoryview itself and the underlying buffer exporter." +msgid ":class:`memoryview` objects provide access to the internal data of an underlying object without copying. Thread safety depends on both the memoryview itself and the underlying buffer exporter." msgstr "" -#: ../../library/threadsafety.rst:562 -msgid "" -"The memoryview implementation uses atomic operations to track its own " -"exports in the :term:`free-threaded build`. Creating and releasing a " -"memoryview are thread-safe. Attribute access " -"(e.g., :attr:`~memoryview.shape`, :attr:`~memoryview.format`) reads fields " -"that are immutable for the lifetime of the memoryview, so concurrent reads " -"are safe as long as the memoryview has not been released." +msgid "The memoryview implementation uses atomic operations to track its own exports in the :term:`free-threaded build`. Creating and releasing a memoryview are thread-safe. Attribute access (e.g., :attr:`~memoryview.shape`, :attr:`~memoryview.format`) reads fields that are immutable for the lifetime of the memoryview, so concurrent reads are safe as long as the memoryview has not been released." msgstr "" -#: ../../library/threadsafety.rst:569 -msgid "" -"However, the actual data accessed through the memoryview is owned by the " -"underlying object. Concurrent access to this data is only safe if the " -"underlying object supports it:" +msgid "However, the actual data accessed through the memoryview is owned by the underlying object. Concurrent access to this data is only safe if the underlying object supports it:" msgstr "" -#: ../../library/threadsafety.rst:573 -msgid "" -"For immutable objects like :class:`bytes`, concurrent reads through multiple " -"memoryviews are safe." +msgid "For immutable objects like :class:`bytes`, concurrent reads through multiple memoryviews are safe." msgstr "" -#: ../../library/threadsafety.rst:576 -msgid "" -"For mutable objects like :class:`bytearray`, reading and writing the same " -"memory region from multiple threads without external synchronization is not " -"safe and may result in data corruption. Note that even read-only memoryviews " -"of mutable objects do not prevent data races if the underlying object is " -"modified from another thread." +msgid "For mutable objects like :class:`bytearray`, reading and writing the same memory region from multiple threads without external synchronization is not safe and may result in data corruption. Note that even read-only memoryviews of mutable objects do not prevent data races if the underlying object is modified from another thread." msgstr "" -#: ../../library/threadsafety.rst:583 msgid "" "# NOT safe: concurrent writes to the same buffer\n" "data = bytearray(1000)\n" @@ -808,7 +498,6 @@ msgid "" "# Thread 2: view[0:500] = b'y' * 500" msgstr "" -#: ../../library/threadsafety.rst:592 msgid "" "# Safe: use a lock for concurrent access\n" "import threading\n" @@ -820,9 +509,5 @@ msgid "" " view[0:500] = b'x' * 500" msgstr "" -#: ../../library/threadsafety.rst:604 -msgid "" -"Resizing or reallocating the underlying object (such as " -"calling :meth:`bytearray.resize`) while a memoryview is exported " -"raises :exc:`BufferError`. This is enforced regardless of threading." +msgid "Resizing or reallocating the underlying object (such as calling :meth:`bytearray.resize`) while a memoryview is exported raises :exc:`BufferError`. This is enforced regardless of threading." msgstr "" diff --git a/library/time.po b/library/time.po index be0d34f4..f28886b9 100644 --- a/library/time.po +++ b/library/time.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:15+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -25,1258 +25,711 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/time.rst:2 msgid ":mod:`!time` --- Time access and conversions" msgstr "" -#: ../../library/time.rst:9 -msgid "" -"This module provides various time-related functions. For related " -"functionality, see also the :mod:`datetime` and :mod:`calendar` modules." +msgid "This module provides various time-related functions. For related functionality, see also the :mod:`datetime` and :mod:`calendar` modules." msgstr "" -#: ../../library/time.rst:12 -msgid "" -"Although this module is always available, not all functions are available on " -"all platforms. Most of the functions defined in this module call platform C " -"library functions with the same name. It may sometimes be helpful to " -"consult the platform documentation, because the semantics of these functions " -"varies among platforms." +msgid "Although this module is always available, not all functions are available on all platforms. Most of the functions defined in this module call platform C library functions with the same name. It may sometimes be helpful to consult the platform documentation, because the semantics of these functions varies among platforms." msgstr "" -#: ../../library/time.rst:18 msgid "An explanation of some terminology and conventions is in order." msgstr "" -#: ../../library/time.rst:24 -msgid "" -"The :dfn:`epoch` is the point where the time starts, the return value of " -"``time.gmtime(0)``. It is January 1, 1970, 00:00:00 (UTC) on all platforms." +msgid "The :dfn:`epoch` is the point where the time starts, the return value of ``time.gmtime(0)``. It is January 1, 1970, 00:00:00 (UTC) on all platforms." msgstr "" -#: ../../library/time.rst:31 -msgid "" -"The term :dfn:`seconds since the epoch` refers to the total number of " -"elapsed seconds since the epoch, typically excluding `leap seconds`_. Leap " -"seconds are excluded from this total on all POSIX-compliant platforms." +msgid "The term :dfn:`seconds since the epoch` refers to the total number of elapsed seconds since the epoch, typically excluding `leap seconds`_. Leap seconds are excluded from this total on all POSIX-compliant platforms." msgstr "" -#: ../../library/time.rst:38 -msgid "" -"The functions in this module may not handle dates and times before the " -"epoch_ or far in the future. The cut-off point in the future is determined " -"by the C library; for 32-bit systems, it is typically in 2038." +msgid "The functions in this module may not handle dates and times before the epoch_ or far in the future. The cut-off point in the future is determined by the C library; for 32-bit systems, it is typically in 2038." msgstr "" -#: ../../library/time.rst:45 -msgid "" -"Function :func:`strptime` can parse 2-digit years when given ``%y`` format " -"code. When 2-digit years are parsed, they are converted according to the " -"POSIX and ISO C standards: values 69--99 are mapped to 1969--1999, and " -"values 0--68 are mapped to 2000--2068." +msgid "Function :func:`strptime` can parse 2-digit years when given ``%y`` format code. When 2-digit years are parsed, they are converted according to the POSIX and ISO C standards: values 69--99 are mapped to 1969--1999, and values 0--68 are mapped to 2000--2068." msgstr "" -#: ../../library/time.rst:55 -msgid "" -"UTC is `Coordinated Universal Time`_ and superseded `Greenwich Mean Time`_ " -"or GMT as the basis of international timekeeping. The acronym UTC is not a " -"mistake but conforms to an earlier, language-agnostic naming scheme for time " -"standards such as UT0, UT1, and UT2." +msgid "UTC is `Coordinated Universal Time`_ and superseded `Greenwich Mean Time`_ or GMT as the basis of international timekeeping. The acronym UTC is not a mistake but conforms to an earlier, language-agnostic naming scheme for time standards such as UT0, UT1, and UT2." msgstr "" -#: ../../library/time.rst:65 -msgid "" -"DST is Daylight Saving Time, an adjustment of the timezone by (usually) one " -"hour during part of the year. DST rules are magic (determined by local law) " -"and can change from year to year. The C library has a table containing the " -"local rules (often it is read from a system file for flexibility) and is the " -"only source of True Wisdom in this respect." +msgid "DST is Daylight Saving Time, an adjustment of the timezone by (usually) one hour during part of the year. DST rules are magic (determined by local law) and can change from year to year. The C library has a table containing the local rules (often it is read from a system file for flexibility) and is the only source of True Wisdom in this respect." msgstr "" -#: ../../library/time.rst:71 -msgid "" -"The precision of the various real-time functions may be less than suggested " -"by the units in which their value or argument is expressed. E.g. on most " -"Unix systems, the clock \"ticks\" only 50 or 100 times a second." +msgid "The precision of the various real-time functions may be less than suggested by the units in which their value or argument is expressed. E.g. on most Unix systems, the clock \"ticks\" only 50 or 100 times a second." msgstr "" -#: ../../library/time.rst:75 -msgid "" -"On the other hand, the precision of :func:`.time` and :func:`sleep` is " -"better than their Unix equivalents: times are expressed as floating-point " -"numbers, :func:`.time` returns the most accurate time available (using " -"Unix :c:func:`!gettimeofday` where available), and :func:`sleep` will accept " -"a time with a nonzero fraction (Unix :c:func:`!select` is used to implement " -"this, where available)." +msgid "On the other hand, the precision of :func:`.time` and :func:`sleep` is better than their Unix equivalents: times are expressed as floating-point numbers, :func:`.time` returns the most accurate time available (using Unix :c:func:`!gettimeofday` where available), and :func:`sleep` will accept a time with a nonzero fraction (Unix :c:func:`!select` is used to implement this, where available)." msgstr "" -#: ../../library/time.rst:82 -msgid "" -"The time value as returned by :func:`gmtime`, :func:`localtime`, " -"and :func:`strptime`, and accepted by :func:`asctime`, :func:`mktime` " -"and :func:`strftime`, is a sequence of 9 integers. The return values " -"of :func:`gmtime`, :func:`localtime`, and :func:`strptime` also offer " -"attribute names for individual fields." +msgid "The time value as returned by :func:`gmtime`, :func:`localtime`, and :func:`strptime`, and accepted by :func:`asctime`, :func:`mktime` and :func:`strftime`, is a sequence of 9 integers. The return values of :func:`gmtime`, :func:`localtime`, and :func:`strptime` also offer attribute names for individual fields." msgstr "" -#: ../../library/time.rst:88 msgid "See :class:`struct_time` for a description of these objects." msgstr "" -#: ../../library/time.rst:90 -msgid "" -"The :class:`struct_time` type was extended to provide " -"the :attr:`~struct_time.tm_gmtoff` and :attr:`~struct_time.tm_zone` " -"attributes when platform supports corresponding ``struct tm`` members." +msgid "The :class:`struct_time` type was extended to provide the :attr:`~struct_time.tm_gmtoff` and :attr:`~struct_time.tm_zone` attributes when platform supports corresponding ``struct tm`` members." msgstr "" -#: ../../library/time.rst:96 -msgid "" -"The :class:`struct_time` attributes :attr:`~struct_time.tm_gmtoff` " -"and :attr:`~struct_time.tm_zone` are now available on all platforms." +msgid "The :class:`struct_time` attributes :attr:`~struct_time.tm_gmtoff` and :attr:`~struct_time.tm_zone` are now available on all platforms." msgstr "" -#: ../../library/time.rst:101 msgid "Use the following functions to convert between time representations:" msgstr "" -#: ../../library/time.rst:104 msgid "From" msgstr "" -#: ../../library/time.rst:104 msgid "To" msgstr "" -#: ../../library/time.rst:104 msgid "Use" msgstr "" -#: ../../library/time.rst:29 ../../library/time.rst:106 -#: ../../library/time.rst:109 ../../library/time.rst:112 -#: ../../library/time.rst:115 msgid "seconds since the epoch" msgstr "" -#: ../../library/time.rst:106 ../../library/time.rst:112 msgid ":class:`struct_time` in UTC" msgstr "" -#: ../../library/time.rst:106 msgid ":func:`gmtime`" msgstr "" -#: ../../library/time.rst:109 ../../library/time.rst:115 msgid ":class:`struct_time` in local time" msgstr "" -#: ../../library/time.rst:109 msgid ":func:`localtime`" msgstr "" -#: ../../library/time.rst:112 msgid ":func:`calendar.timegm`" msgstr "" -#: ../../library/time.rst:115 msgid ":func:`mktime`" msgstr "" -#: ../../library/time.rst:123 msgid "Functions" msgstr "" -#: ../../library/time.rst:127 -msgid "" -"Convert a tuple or :class:`struct_time` representing a time as returned " -"by :func:`gmtime` or :func:`localtime` to a string of the following form: " -"``'Sun Jun 20 23:21:05 1993'``. The day field is two characters long and is " -"space padded if the day is a single digit, e.g.: ``'Wed Jun 9 04:26:40 " -"1993'``." +msgid "Convert a tuple or :class:`struct_time` representing a time as returned by :func:`gmtime` or :func:`localtime` to a string of the following form: ``'Sun Jun 20 23:21:05 1993'``. The day field is two characters long and is space padded if the day is a single digit, e.g.: ``'Wed Jun 9 04:26:40 1993'``." msgstr "" -#: ../../library/time.rst:133 -msgid "" -"If *t* is not provided, the current time as returned by :func:`localtime` is " -"used. Locale information is not used by :func:`asctime`." +msgid "If *t* is not provided, the current time as returned by :func:`localtime` is used. Locale information is not used by :func:`asctime`." msgstr "" -#: ../../library/time.rst:138 -msgid "" -"Unlike the C function of the same name, :func:`asctime` does not add a " -"trailing newline." +msgid "Unlike the C function of the same name, :func:`asctime` does not add a trailing newline." msgstr "" -#: ../../library/time.rst:143 -msgid "" -"Return the *clk_id* of the thread-specific CPU-time clock for the specified " -"*thread_id*." +msgid "Return the *clk_id* of the thread-specific CPU-time clock for the specified *thread_id*." msgstr "" -#: ../../library/time.rst:145 -msgid "" -"Use :func:`threading.get_ident` or the :attr:`~threading.Thread.ident` " -"attribute of :class:`threading.Thread` objects to get a suitable value for " -"*thread_id*." +msgid "Use :func:`threading.get_ident` or the :attr:`~threading.Thread.ident` attribute of :class:`threading.Thread` objects to get a suitable value for *thread_id*." +msgstr "" + +msgid "Passing an invalid or expired *thread_id* may result in undefined behavior, such as segmentation fault." msgstr "" -#: ../../library/time.rst:150 -msgid "" -"Passing an invalid or expired *thread_id* may result in undefined behavior, " -"such as segmentation fault." -msgstr "" - -#: ../../library/time.rst:153 ../../library/time.rst:165 -#: ../../library/time.rst:178 ../../library/time.rst:187 -#: ../../library/time.rst:200 ../../library/time.rst:209 -#: ../../library/time.rst:754 ../../library/time.rst:778 -#: ../../library/time.rst:874 ../../library/time.rst:885 -#: ../../library/time.rst:895 ../../library/time.rst:905 -#: ../../library/time.rst:914 ../../library/time.rst:923 -#: ../../library/time.rst:932 ../../library/time.rst:943 -#: ../../library/time.rst:951 ../../library/time.rst:962 -#: ../../library/time.rst:973 ../../library/time.rst:982 -#: ../../library/time.rst:995 msgid "Availability" msgstr "" -#: ../../library/time.rst:155 -msgid "" -"See the man page for :manpage:`pthread_getcpuclockid(3)` for further " -"information." +msgid "See the man page for :manpage:`pthread_getcpuclockid(3)` for further information." msgstr "" -#: ../../library/time.rst:162 -msgid "" -"Return the resolution (precision) of the specified clock *clk_id*. Refer " -"to :ref:`time-clock-id-constants` for a list of accepted values for *clk_id*." +msgid "Return the resolution (precision) of the specified clock *clk_id*. Refer to :ref:`time-clock-id-constants` for a list of accepted values for *clk_id*." msgstr "" -#: ../../library/time.rst:172 -msgid "" -"Return the time of the specified clock *clk_id*. Refer to :ref:`time-clock-" -"id-constants` for a list of accepted values for *clk_id*." +msgid "Return the time of the specified clock *clk_id*. Refer to :ref:`time-clock-id-constants` for a list of accepted values for *clk_id*." msgstr "" -#: ../../library/time.rst:175 -msgid "" -"Use :func:`clock_gettime_ns` to avoid the precision loss caused by " -"the :class:`float` type." +msgid "Use :func:`clock_gettime_ns` to avoid the precision loss caused by the :class:`float` type." msgstr "" -#: ../../library/time.rst:185 msgid "Similar to :func:`clock_gettime` but return time as nanoseconds." msgstr "" -#: ../../library/time.rst:194 -msgid "" -"Set the time of the specified clock *clk_id*. " -"Currently, :data:`CLOCK_REALTIME` is the only accepted value for *clk_id*." +msgid "Set the time of the specified clock *clk_id*. Currently, :data:`CLOCK_REALTIME` is the only accepted value for *clk_id*." msgstr "" -#: ../../library/time.rst:197 -msgid "" -"Use :func:`clock_settime_ns` to avoid the precision loss caused by " -"the :class:`float` type." +msgid "Use :func:`clock_settime_ns` to avoid the precision loss caused by the :class:`float` type." msgstr "" -#: ../../library/time.rst:207 msgid "Similar to :func:`clock_settime` but set time with nanoseconds." msgstr "" -#: ../../library/time.rst:216 -msgid "" -"Convert a time expressed in seconds since the epoch_ to a string of a form: " -"``'Sun Jun 20 23:21:05 1993'`` representing local time. The day field is two " -"characters long and is space padded if the day is a single digit, e.g.: " -"``'Wed Jun 9 04:26:40 1993'``." +msgid "Convert a time expressed in seconds since the epoch_ to a string of a form: ``'Sun Jun 20 23:21:05 1993'`` representing local time. The day field is two characters long and is space padded if the day is a single digit, e.g.: ``'Wed Jun 9 04:26:40 1993'``." msgstr "" -#: ../../library/time.rst:221 -msgid "" -"If *secs* is not provided or :const:`None`, the current time as returned " -"by :func:`.time` is used. ``ctime(secs)`` is equivalent to " -"``asctime(localtime(secs))``. Locale information is not used " -"by :func:`ctime`." +msgid "If *secs* is not provided or :const:`None`, the current time as returned by :func:`.time` is used. ``ctime(secs)`` is equivalent to ``asctime(localtime(secs))``. Locale information is not used by :func:`ctime`." msgstr "" -#: ../../library/time.rst:229 -msgid "" -"Get information on the specified clock as a namespace object. Supported " -"clock names and the corresponding functions to read their value are:" +msgid "Get information on the specified clock as a namespace object. Supported clock names and the corresponding functions to read their value are:" msgstr "" -#: ../../library/time.rst:233 msgid "``'monotonic'``: :func:`time.monotonic`" msgstr "" -#: ../../library/time.rst:234 msgid "``'perf_counter'``: :func:`time.perf_counter`" msgstr "" -#: ../../library/time.rst:235 msgid "``'process_time'``: :func:`time.process_time`" msgstr "" -#: ../../library/time.rst:236 msgid "``'thread_time'``: :func:`time.thread_time`" msgstr "" -#: ../../library/time.rst:237 msgid "``'time'``: :func:`time.time`" msgstr "" -#: ../../library/time.rst:239 msgid "The result has the following attributes:" msgstr "" -#: ../../library/time.rst:241 -msgid "" -"*adjustable*: ``True`` if the clock can be set to jump forward or backward " -"in time, ``False`` otherwise. Does not refer to gradual NTP rate adjustments." +msgid "*adjustable*: ``True`` if the clock can be set to jump forward or backward in time, ``False`` otherwise. Does not refer to gradual NTP rate adjustments." msgstr "" -#: ../../library/time.rst:243 -msgid "" -"*implementation*: The name of the underlying C function used to get the " -"clock value. Refer to :ref:`time-clock-id-constants` for possible values." +msgid "*implementation*: The name of the underlying C function used to get the clock value. Refer to :ref:`time-clock-id-constants` for possible values." msgstr "" -#: ../../library/time.rst:245 -msgid "" -"*monotonic*: ``True`` if the clock cannot go backward, ``False`` otherwise" +msgid "*monotonic*: ``True`` if the clock cannot go backward, ``False`` otherwise" msgstr "" -#: ../../library/time.rst:247 msgid "*resolution*: The resolution of the clock in seconds (:class:`float`)" msgstr "" -#: ../../library/time.rst:254 -msgid "" -"Convert a time expressed in seconds since the epoch_ to " -"a :class:`struct_time` in UTC in which the dst flag is always zero. If " -"*secs* is not provided or :const:`None`, the current time as returned " -"by :func:`.time` is used. Fractions of a second are ignored. See above for " -"a description of the :class:`struct_time` object. " -"See :func:`calendar.timegm` for the inverse of this function." +msgid "Convert a time expressed in seconds since the epoch_ to a :class:`struct_time` in UTC in which the dst flag is always zero. If *secs* is not provided or :const:`None`, the current time as returned by :func:`.time` is used. Fractions of a second are ignored. See above for a description of the :class:`struct_time` object. See :func:`calendar.timegm` for the inverse of this function." msgstr "" -#: ../../library/time.rst:264 -msgid "" -"Like :func:`gmtime` but converts to local time. If *secs* is not provided " -"or :const:`None`, the current time as returned by :func:`.time` is used. " -"The dst flag is set to ``1`` when DST applies to the given time." +msgid "Like :func:`gmtime` but converts to local time. If *secs* is not provided or :const:`None`, the current time as returned by :func:`.time` is used. The dst flag is set to ``1`` when DST applies to the given time." msgstr "" -#: ../../library/time.rst:268 -msgid "" -":func:`localtime` may raise :exc:`OverflowError`, if the timestamp is " -"outside the range of values supported by the platform C :c:func:`localtime` " -"or :c:func:`gmtime` functions, and :exc:`OSError` on :c:func:`localtime` " -"or :c:func:`gmtime` failure. It's common for this to be restricted to years " -"between 1970 and 2038." +msgid ":func:`localtime` may raise :exc:`OverflowError`, if the timestamp is outside the range of values supported by the platform C :c:func:`localtime` or :c:func:`gmtime` functions, and :exc:`OSError` on :c:func:`localtime` or :c:func:`gmtime` failure. It's common for this to be restricted to years between 1970 and 2038." msgstr "" -#: ../../library/time.rst:277 -msgid "" -"This is the inverse function of :func:`localtime`. Its argument is " -"the :class:`struct_time` or full 9-tuple (since the dst flag is needed; use " -"``-1`` as the dst flag if it is unknown) which expresses the time in *local* " -"time, not UTC. It returns a floating-point number, for compatibility " -"with :func:`.time`. If the input value cannot be represented as a valid " -"time, either :exc:`OverflowError` or :exc:`ValueError` will be raised (which " -"depends on whether the invalid value is caught by Python or the underlying C " -"libraries). The earliest date for which it can generate a time is platform-" -"dependent." -msgstr "" - -#: ../../library/time.rst:289 -msgid "" -"Return the value (in fractional seconds) of a monotonic clock, i.e. a clock " -"that cannot go backwards. The clock is not affected by system clock " -"updates. The reference point of the returned value is undefined, so that " -"only the difference between the results of two calls is valid." +msgid "This is the inverse function of :func:`localtime`. Its argument is the :class:`struct_time` or full 9-tuple (since the dst flag is needed; use ``-1`` as the dst flag if it is unknown) which expresses the time in *local* time, not UTC. It returns a floating-point number, for compatibility with :func:`.time`. If the input value cannot be represented as a valid time, either :exc:`OverflowError` or :exc:`ValueError` will be raised (which depends on whether the invalid value is caught by Python or the underlying C libraries). The earliest date for which it can generate a time is platform-dependent." +msgstr "" + +msgid "Return the value (in fractional seconds) of a monotonic clock, i.e. a clock that cannot go backwards. The clock is not affected by system clock updates. The reference point of the returned value is undefined, so that only the difference between the results of two calls is valid." msgstr "" -#: ../../library/time.rst:294 ../../library/time.rst:715 msgid "Clock:" msgstr "" -#: ../../library/time.rst:296 -msgid "" -"On Windows, call ``QueryPerformanceCounter()`` and " -"``QueryPerformanceFrequency()``." +msgid "On Windows, call ``QueryPerformanceCounter()`` and ``QueryPerformanceFrequency()``." msgstr "" -#: ../../library/time.rst:298 msgid "On macOS, call ``mach_absolute_time()`` and ``mach_timebase_info()``." msgstr "" -#: ../../library/time.rst:299 msgid "On HP-UX, call ``gethrtime()``." msgstr "" -#: ../../library/time.rst:300 msgid "Call ``clock_gettime(CLOCK_HIGHRES)`` if available." msgstr "" -#: ../../library/time.rst:301 msgid "Otherwise, call ``clock_gettime(CLOCK_MONOTONIC)``." msgstr "" -#: ../../library/time.rst:303 -msgid "" -"Use :func:`monotonic_ns` to avoid the precision loss caused by " -"the :class:`float` type." +msgid "Use :func:`monotonic_ns` to avoid the precision loss caused by the :class:`float` type." msgstr "" -#: ../../library/time.rst:308 -msgid "" -"The function is now always available and the clock is now the same for all " -"processes." +msgid "The function is now always available and the clock is now the same for all processes." msgstr "" -#: ../../library/time.rst:312 msgid "On macOS, the clock is now the same for all processes." msgstr "" -#: ../../library/time.rst:318 msgid "Similar to :func:`monotonic`, but return time as nanoseconds." msgstr "" -#: ../../library/time.rst:327 -msgid "" -"Return the value (in fractional seconds) of a performance counter, i.e. a " -"clock with the highest available resolution to measure a short duration. It " -"does include time elapsed during sleep. The clock is the same for all " -"processes. The reference point of the returned value is undefined, so that " -"only the difference between the results of two calls is valid." +msgid "Return the value (in fractional seconds) of a performance counter, i.e. a clock with the highest available resolution to measure a short duration. It does include time elapsed during sleep. The clock is the same for all processes. The reference point of the returned value is undefined, so that only the difference between the results of two calls is valid." msgstr "" -#: ../../library/time.rst:336 -msgid "" -"On CPython, use the same clock as :func:`time.monotonic` and is a monotonic " -"clock, i.e. a clock that cannot go backwards." +msgid "On CPython, use the same clock as :func:`time.monotonic` and is a monotonic clock, i.e. a clock that cannot go backwards." msgstr "" -#: ../../library/time.rst:339 -msgid "" -"Use :func:`perf_counter_ns` to avoid the precision loss caused by " -"the :class:`float` type." +msgid "Use :func:`perf_counter_ns` to avoid the precision loss caused by the :class:`float` type." msgstr "" -#: ../../library/time.rst:344 msgid "On Windows, the clock is now the same for all processes." msgstr "" -#: ../../library/time.rst:347 msgid "Use the same clock as :func:`time.monotonic`." msgstr "" -#: ../../library/time.rst:353 msgid "Similar to :func:`perf_counter`, but return time as nanoseconds." msgstr "" -#: ../../library/time.rst:365 -msgid "" -"Return the value (in fractional seconds) of the sum of the system and user " -"CPU time of the current process. It does not include time elapsed during " -"sleep. It is process-wide by definition. The reference point of the " -"returned value is undefined, so that only the difference between the results " -"of two calls is valid." +msgid "Return the value (in fractional seconds) of the sum of the system and user CPU time of the current process. It does not include time elapsed during sleep. It is process-wide by definition. The reference point of the returned value is undefined, so that only the difference between the results of two calls is valid." msgstr "" -#: ../../library/time.rst:371 -msgid "" -"Use :func:`process_time_ns` to avoid the precision loss caused by " -"the :class:`float` type." +msgid "Use :func:`process_time_ns` to avoid the precision loss caused by the :class:`float` type." msgstr "" -#: ../../library/time.rst:378 msgid "Similar to :func:`process_time` but return time as nanoseconds." msgstr "" -#: ../../library/time.rst:384 -msgid "" -"Suspend execution of the calling thread for the given number of seconds. The " -"argument may be a floating-point number to indicate a more precise sleep " -"time." +msgid "Suspend execution of the calling thread for the given number of seconds. The argument may be a floating-point number to indicate a more precise sleep time." msgstr "" -#: ../../library/time.rst:388 -msgid "" -"If the sleep is interrupted by a signal and no exception is raised by the " -"signal handler, the sleep is restarted with a recomputed timeout." +msgid "If the sleep is interrupted by a signal and no exception is raised by the signal handler, the sleep is restarted with a recomputed timeout." msgstr "" -#: ../../library/time.rst:391 -msgid "" -"The suspension time may be longer than requested by an arbitrary amount, " -"because of the scheduling of other activity in the system." +msgid "The suspension time may be longer than requested by an arbitrary amount, because of the scheduling of other activity in the system." msgstr "" -#: ../../library/time.rst:395 msgid "Windows implementation" msgstr "" -#: ../../library/time.rst:396 -msgid "" -"On Windows, if *secs* is zero, the thread relinquishes the remainder of its " -"time slice to any other thread that is ready to run. If there are no other " -"threads ready to run, the function returns immediately, and the thread " -"continues execution. On Windows 10 and newer the implementation uses a " -"`high-resolution timer `_ which provides resolution of " -"100 nanoseconds. If *secs* is zero, ``Sleep(0)`` is used." +msgid "On Windows, if *secs* is zero, the thread relinquishes the remainder of its time slice to any other thread that is ready to run. If there are no other threads ready to run, the function returns immediately, and the thread continues execution. On Windows 10 and newer the implementation uses a `high-resolution timer `_ which provides resolution of 100 nanoseconds. If *secs* is zero, ``Sleep(0)`` is used." msgstr "" -#: ../../library/time.rst:405 msgid "Unix implementation" msgstr "" -#: ../../library/time.rst:406 msgid "Use ``clock_nanosleep()`` if available (resolution: 1 nanosecond);" msgstr "" -#: ../../library/time.rst:407 msgid "Or use ``nanosleep()`` if available (resolution: 1 nanosecond);" msgstr "" -#: ../../library/time.rst:408 msgid "Or use ``select()`` (resolution: 1 microsecond)." msgstr "" -#: ../../library/time.rst:412 -msgid "" -"To emulate a \"no-op\", use :keyword:`pass` instead of ``time.sleep(0)``." +msgid "To emulate a \"no-op\", use :keyword:`pass` instead of ``time.sleep(0)``." msgstr "" -#: ../../library/time.rst:414 -msgid "" -"To voluntarily relinquish the CPU, specify a real-time :ref:`scheduling " -"policy ` and use :func:`os.sched_yield` instead." +msgid "To voluntarily relinquish the CPU, specify a real-time :ref:`scheduling policy ` and use :func:`os.sched_yield` instead." msgstr "" -#: ../../library/time.rst:417 -msgid "" -"Raises an :ref:`auditing event ` ``time.sleep`` with argument " -"``secs``." +msgid "Raises an :ref:`auditing event ` ``time.sleep`` with argument ``secs``." msgstr "" -#: ../../library/time.rst:419 -msgid "" -"The function now sleeps at least *secs* even if the sleep is interrupted by " -"a signal, except if the signal handler raises an exception (see :pep:`475` " -"for the rationale)." +msgid "The function now sleeps at least *secs* even if the sleep is interrupted by a signal, except if the signal handler raises an exception (see :pep:`475` for the rationale)." msgstr "" -#: ../../library/time.rst:424 -msgid "" -"On Unix, the ``clock_nanosleep()`` and ``nanosleep()`` functions are now " -"used if available. On Windows, a waitable timer is now used." +msgid "On Unix, the ``clock_nanosleep()`` and ``nanosleep()`` functions are now used if available. On Windows, a waitable timer is now used." msgstr "" -#: ../../library/time.rst:428 msgid "Raises an auditing event." msgstr "" -#: ../../library/time.rst:436 -msgid "" -"Convert a tuple or :class:`struct_time` representing a time as returned " -"by :func:`gmtime` or :func:`localtime` to a string as specified by the " -"*format* argument. If *t* is not provided, the current time as returned " -"by :func:`localtime` is used. *format* must be a string. :exc:`ValueError` " -"is raised if any field in *t* is outside of the allowed range." +msgid "Convert a tuple or :class:`struct_time` representing a time as returned by :func:`gmtime` or :func:`localtime` to a string as specified by the *format* argument. If *t* is not provided, the current time as returned by :func:`localtime` is used. *format* must be a string. :exc:`ValueError` is raised if any field in *t* is outside of the allowed range." msgstr "" -#: ../../library/time.rst:442 -msgid "" -"0 is a legal argument for any position in the time tuple; if it is normally " -"illegal the value is forced to a correct one." +msgid "0 is a legal argument for any position in the time tuple; if it is normally illegal the value is forced to a correct one." msgstr "" -#: ../../library/time.rst:445 -msgid "" -"The following directives can be embedded in the *format* string. They are " -"shown without the optional field width and precision specification, and are " -"replaced by the indicated characters in the :func:`strftime` result:" +msgid "The following directives can be embedded in the *format* string. They are shown without the optional field width and precision specification, and are replaced by the indicated characters in the :func:`strftime` result:" msgstr "" -#: ../../library/time.rst:450 msgid "Directive" msgstr "" -#: ../../library/time.rst:450 msgid "Meaning" msgstr "" -#: ../../library/time.rst:450 msgid "Notes" msgstr "" -#: ../../library/time.rst:452 msgid "``%a``" msgstr "" -#: ../../library/time.rst:452 msgid "Locale's abbreviated weekday name." msgstr "" -#: ../../library/time.rst:455 msgid "``%A``" msgstr "" -#: ../../library/time.rst:455 msgid "Locale's full weekday name." msgstr "" -#: ../../library/time.rst:457 msgid "``%b``" msgstr "" -#: ../../library/time.rst:457 msgid "Locale's abbreviated month name." msgstr "" -#: ../../library/time.rst:460 msgid "``%B``" msgstr "" -#: ../../library/time.rst:460 msgid "Locale's full month name." msgstr "" -#: ../../library/time.rst:462 msgid "``%c``" msgstr "" -#: ../../library/time.rst:462 msgid "Locale's appropriate date and time representation." msgstr "" -#: ../../library/time.rst:465 msgid "``%d``" msgstr "" -#: ../../library/time.rst:465 msgid "Day of the month as a decimal number [01,31]." msgstr "" -#: ../../library/time.rst:468 msgid "``%f``" msgstr "" -#: ../../library/time.rst:468 msgid "Microseconds as a decimal number" msgstr "" -#: ../../library/time.rst:469 msgid "[000000,999999]." msgstr "" -#: ../../library/time.rst:468 msgid "\\(1)" msgstr "" -#: ../../library/time.rst:472 msgid "``%H``" msgstr "" -#: ../../library/time.rst:472 msgid "Hour (24-hour clock) as a decimal number [00,23]." msgstr "" -#: ../../library/time.rst:475 msgid "``%I``" msgstr "" -#: ../../library/time.rst:475 msgid "Hour (12-hour clock) as a decimal number [01,12]." msgstr "" -#: ../../library/time.rst:478 msgid "``%j``" msgstr "" -#: ../../library/time.rst:478 msgid "Day of the year as a decimal number [001,366]." msgstr "" -#: ../../library/time.rst:481 msgid "``%m``" msgstr "" -#: ../../library/time.rst:481 msgid "Month as a decimal number [01,12]." msgstr "" -#: ../../library/time.rst:484 msgid "``%M``" msgstr "" -#: ../../library/time.rst:484 msgid "Minute as a decimal number [00,59]." msgstr "" -#: ../../library/time.rst:487 msgid "``%p``" msgstr "" -#: ../../library/time.rst:487 msgid "Locale's equivalent of either AM or PM." msgstr "" -#: ../../library/time.rst:487 msgid "\\(2)" msgstr "" -#: ../../library/time.rst:490 msgid "``%S``" msgstr "" -#: ../../library/time.rst:490 msgid "Second as a decimal number [00,61]." msgstr "" -#: ../../library/time.rst:490 msgid "\\(3)" msgstr "" -#: ../../library/time.rst:493 msgid "``%U``" msgstr "" -#: ../../library/time.rst:493 -msgid "" -"Week number of the year (Sunday as the first day of the week) as a decimal " -"number [00,53]. All days in a new year preceding the first Sunday are " -"considered to be in week 0." +msgid "Week number of the year (Sunday as the first day of the week) as a decimal number [00,53]. All days in a new year preceding the first Sunday are considered to be in week 0." msgstr "" -#: ../../library/time.rst:493 ../../library/time.rst:507 msgid "\\(4)" msgstr "" -#: ../../library/time.rst:501 msgid "``%u``" msgstr "" -#: ../../library/time.rst:501 msgid "Day of the week (Monday is 1; Sunday is 7) as a decimal number [1, 7]." msgstr "" -#: ../../library/time.rst:504 msgid "``%w``" msgstr "" -#: ../../library/time.rst:504 msgid "Weekday as a decimal number [0(Sunday),6]." msgstr "" -#: ../../library/time.rst:507 msgid "``%W``" msgstr "" -#: ../../library/time.rst:507 -msgid "" -"Week number of the year (Monday as the first day of the week) as a decimal " -"number [00,53]. All days in a new year preceding the first Monday are " -"considered to be in week 0." +msgid "Week number of the year (Monday as the first day of the week) as a decimal number [00,53]. All days in a new year preceding the first Monday are considered to be in week 0." msgstr "" -#: ../../library/time.rst:515 msgid "``%x``" msgstr "" -#: ../../library/time.rst:515 msgid "Locale's appropriate date representation." msgstr "" -#: ../../library/time.rst:518 msgid "``%X``" msgstr "" -#: ../../library/time.rst:518 msgid "Locale's appropriate time representation." msgstr "" -#: ../../library/time.rst:521 msgid "``%y``" msgstr "" -#: ../../library/time.rst:521 msgid "Year without century as a decimal number [00,99]." msgstr "" -#: ../../library/time.rst:524 msgid "``%Y``" msgstr "" -#: ../../library/time.rst:524 msgid "Year with century as a decimal number." msgstr "" -#: ../../library/time.rst:527 msgid "``%z``" msgstr "" -#: ../../library/time.rst:527 -msgid "" -"Time zone offset indicating a positive or negative time difference from UTC/" -"GMT of the form +HHMM or -HHMM, where H represents decimal hour digits and M " -"represents decimal minute digits [-23:59, +23:59]. [1]_" +msgid "Time zone offset indicating a positive or negative time difference from UTC/GMT of the form +HHMM or -HHMM, where H represents decimal hour digits and M represents decimal minute digits [-23:59, +23:59]. [1]_" msgstr "" -#: ../../library/time.rst:533 msgid "``%Z``" msgstr "" -#: ../../library/time.rst:533 msgid "Time zone name (no characters if no time zone exists). Deprecated. [1]_" msgstr "" -#: ../../library/time.rst:536 msgid "``%G``" msgstr "" -#: ../../library/time.rst:536 -msgid "" -"ISO 8601 year (similar to ``%Y`` but follows the rules for the ISO 8601 " -"calendar year). The year starts with the week that contains the first " -"Thursday of the calendar year." +msgid "ISO 8601 year (similar to ``%Y`` but follows the rules for the ISO 8601 calendar year). The year starts with the week that contains the first Thursday of the calendar year." msgstr "" -#: ../../library/time.rst:541 msgid "``%V``" msgstr "" -#: ../../library/time.rst:541 -msgid "" -"ISO 8601 week number (as a decimal number [01,53]). The first week of the " -"year is the one that contains the first Thursday of the year. Weeks start on " -"Monday." +msgid "ISO 8601 week number (as a decimal number [01,53]). The first week of the year is the one that contains the first Thursday of the year. Weeks start on Monday." msgstr "" -#: ../../library/time.rst:546 msgid "``%%``" msgstr "" -#: ../../library/time.rst:546 msgid "A literal ``'%'`` character." msgstr "" -#: ../../library/time.rst:549 msgid "Notes:" msgstr "" -#: ../../library/time.rst:552 -msgid "" -"The ``%f`` format directive only applies to :func:`strptime`, not " -"to :func:`strftime`. However, see also :meth:`datetime.datetime.strptime` " -"and :meth:`datetime.datetime.strftime` where the ``%f`` format " -"directive :ref:`applies to microseconds `." +msgid "The ``%f`` format directive only applies to :func:`strptime`, not to :func:`strftime`. However, see also :meth:`datetime.datetime.strptime` and :meth:`datetime.datetime.strftime` where the ``%f`` format directive :ref:`applies to microseconds `." msgstr "" -#: ../../library/time.rst:558 -msgid "" -"When used with the :func:`strptime` function, the ``%p`` directive only " -"affects the output hour field if the ``%I`` directive is used to parse the " -"hour." +msgid "When used with the :func:`strptime` function, the ``%p`` directive only affects the output hour field if the ``%I`` directive is used to parse the hour." msgstr "" -#: ../../library/time.rst:564 -msgid "" -"The range really is ``0`` to ``61``; value ``60`` is valid in timestamps " -"representing `leap seconds`_ and value ``61`` is supported for historical " -"reasons." +msgid "The range really is ``0`` to ``61``; value ``60`` is valid in timestamps representing `leap seconds`_ and value ``61`` is supported for historical reasons." msgstr "" -#: ../../library/time.rst:569 -msgid "" -"When used with the :func:`strptime` function, ``%U`` and ``%W`` are only " -"used in calculations when the day of the week and the year are specified." +msgid "When used with the :func:`strptime` function, ``%U`` and ``%W`` are only used in calculations when the day of the week and the year are specified." msgstr "" -#: ../../library/time.rst:572 -msgid "" -"Here is an example, a format for dates compatible with that specified in " -"the :rfc:`5322` Internet email standard. [1]_ ::" +msgid "Here is an example, a format for dates compatible with that specified in the :rfc:`5322` Internet email standard. [1]_ ::" msgstr "" -#: ../../library/time.rst:575 msgid "" ">>> from time import gmtime, strftime\n" ">>> strftime(\"%a, %d %b %Y %H:%M:%S +0000\", gmtime())\n" "'Thu, 28 Jun 2001 14:17:15 +0000'" msgstr "" -#: ../../library/time.rst:579 -msgid "" -"Additional directives may be supported on certain platforms, but only the " -"ones listed here have a meaning standardized by ANSI C. To see the full set " -"of format codes supported on your platform, consult " -"the :manpage:`strftime(3)` documentation." +msgid "Additional directives may be supported on certain platforms, but only the ones listed here have a meaning standardized by ANSI C. To see the full set of format codes supported on your platform, consult the :manpage:`strftime(3)` documentation." msgstr "" -#: ../../library/time.rst:584 -msgid "" -"On some platforms, an optional field width and precision specification can " -"immediately follow the initial ``'%'`` of a directive in the following " -"order; this is also not portable. The field width is normally 2 except for " -"``%j`` where it is 3." +msgid "On some platforms, an optional field width and precision specification can immediately follow the initial ``'%'`` of a directive in the following order; this is also not portable. The field width is normally 2 except for ``%j`` where it is 3." msgstr "" -#: ../../library/time.rst:595 -msgid "" -"Parse a string representing a time according to a format. The return value " -"is a :class:`struct_time` as returned by :func:`gmtime` or :func:`localtime`." +msgid "Parse a string representing a time according to a format. The return value is a :class:`struct_time` as returned by :func:`gmtime` or :func:`localtime`." msgstr "" -#: ../../library/time.rst:599 -msgid "" -"The *format* parameter uses the same directives as those used " -"by :func:`strftime`; it defaults to ``\"%a %b %d %H:%M:%S %Y\"`` which " -"matches the formatting returned by :func:`ctime`. If *string* cannot be " -"parsed according to *format*, or if it has excess data after " -"parsing, :exc:`ValueError` is raised. The default values used to fill in any " -"missing data when more accurate values cannot be inferred are ``(1900, 1, 1, " -"0, 0, 0, 0, 1, -1)``. Both *string* and *format* must be strings." +msgid "The *format* parameter uses the same directives as those used by :func:`strftime`; it defaults to ``\"%a %b %d %H:%M:%S %Y\"`` which matches the formatting returned by :func:`ctime`. If *string* cannot be parsed according to *format*, or if it has excess data after parsing, :exc:`ValueError` is raised. The default values used to fill in any missing data when more accurate values cannot be inferred are ``(1900, 1, 1, 0, 0, 0, 0, 1, -1)``. Both *string* and *format* must be strings." msgstr "" -#: ../../library/time.rst:607 msgid "For example:" msgstr "" -#: ../../library/time.rst:614 -msgid "" -"Support for the ``%Z`` directive is based on the values contained in " -"``tzname`` and whether ``daylight`` is true. Because of this, it is " -"platform-specific except for recognizing UTC and GMT which are always known " -"(and are considered to be non-daylight savings timezones)." +msgid "Support for the ``%Z`` directive is based on the values contained in ``tzname`` and whether ``daylight`` is true. Because of this, it is platform-specific except for recognizing UTC and GMT which are always known (and are considered to be non-daylight savings timezones)." msgstr "" -#: ../../library/time.rst:619 -msgid "" -"Only the directives specified in the documentation are supported. Because " -"``strftime()`` is implemented per platform it can sometimes offer more " -"directives than those listed. But ``strptime()`` is independent of any " -"platform and thus does not necessarily support all directives available that " -"are not documented as supported." +msgid "Only the directives specified in the documentation are supported. Because ``strftime()`` is implemented per platform it can sometimes offer more directives than those listed. But ``strptime()`` is independent of any platform and thus does not necessarily support all directives available that are not documented as supported." msgstr "" -#: ../../library/time.rst:628 -msgid "" -"The type of the time value sequence returned " -"by :func:`gmtime`, :func:`localtime`, and :func:`strptime`. It is an object " -"with a :term:`named tuple` interface: values can be accessed by index and by " -"attribute name. The following values are present:" +msgid "The type of the time value sequence returned by :func:`gmtime`, :func:`localtime`, and :func:`strptime`. It is an object with a :term:`named tuple` interface: values can be accessed by index and by attribute name. The following values are present:" msgstr "" -#: ../../library/time.rst:635 msgid "Index" msgstr "" -#: ../../library/time.rst:636 msgid "Attribute" msgstr "" -#: ../../library/time.rst:637 msgid "Values" msgstr "" -#: ../../library/time.rst:639 msgid "0" msgstr "" -#: ../../library/time.rst:641 msgid "(for example, 1993)" msgstr "" -#: ../../library/time.rst:643 msgid "1" msgstr "" -#: ../../library/time.rst:645 msgid "range [1, 12]" msgstr "" -#: ../../library/time.rst:647 msgid "2" msgstr "" -#: ../../library/time.rst:649 msgid "range [1, 31]" msgstr "" -#: ../../library/time.rst:651 msgid "3" msgstr "" -#: ../../library/time.rst:653 msgid "range [0, 23]" msgstr "" -#: ../../library/time.rst:655 msgid "4" msgstr "" -#: ../../library/time.rst:657 msgid "range [0, 59]" msgstr "" -#: ../../library/time.rst:659 msgid "5" msgstr "" -#: ../../library/time.rst:661 msgid "range [0, 61]; see :ref:`Note (2) ` in :func:`strftime`" msgstr "" -#: ../../library/time.rst:663 msgid "6" msgstr "" -#: ../../library/time.rst:665 msgid "range [0, 6]; Monday is 0" msgstr "" -#: ../../library/time.rst:667 msgid "7" msgstr "" -#: ../../library/time.rst:669 msgid "range [1, 366]" msgstr "" -#: ../../library/time.rst:671 msgid "8" msgstr "" -#: ../../library/time.rst:673 msgid "0, 1 or -1; see below" msgstr "" -#: ../../library/time.rst:675 ../../library/time.rst:679 msgid "N/A" msgstr "" -#: ../../library/time.rst:677 msgid "abbreviation of timezone name" msgstr "" -#: ../../library/time.rst:681 msgid "offset east of UTC in seconds" msgstr "" -#: ../../library/time.rst:683 -msgid "" -"Note that unlike the C structure, the month value is a range of [1, 12], not " -"[0, 11]." +msgid "Note that unlike the C structure, the month value is a range of [1, 12], not [0, 11]." msgstr "" -#: ../../library/time.rst:686 -msgid "" -"In calls to :func:`mktime`, :attr:`tm_isdst` may be set to 1 when daylight " -"savings time is in effect, and 0 when it is not. A value of -1 indicates " -"that this is not known, and will usually result in the correct state being " -"filled in." +msgid "In calls to :func:`mktime`, :attr:`tm_isdst` may be set to 1 when daylight savings time is in effect, and 0 when it is not. A value of -1 indicates that this is not known, and will usually result in the correct state being filled in." msgstr "" -#: ../../library/time.rst:690 -msgid "" -"When a tuple with an incorrect length is passed to a function expecting " -"a :class:`struct_time`, or having elements of the wrong type, " -"a :exc:`TypeError` is raised." +msgid "When a tuple with an incorrect length is passed to a function expecting a :class:`struct_time`, or having elements of the wrong type, a :exc:`TypeError` is raised." msgstr "" -#: ../../library/time.rst:696 -msgid "" -"Return the time in seconds since the epoch_ as a floating-point number. The " -"handling of `leap seconds`_ is platform dependent. On Windows and most Unix " -"systems, the leap seconds are not counted towards the time in seconds since " -"the epoch_. This is commonly referred to as `Unix time `_." +msgid "Return the time in seconds since the epoch_ as a floating-point number. The handling of `leap seconds`_ is platform dependent. On Windows and most Unix systems, the leap seconds are not counted towards the time in seconds since the epoch_. This is commonly referred to as `Unix time `_." msgstr "" -#: ../../library/time.rst:702 -msgid "" -"Note that even though the time is always returned as a floating-point " -"number, not all systems provide time with a better precision than 1 second. " -"While this function normally returns non-decreasing values, it can return a " -"lower value than a previous call if the system clock has been set back " -"between the two calls." +msgid "Note that even though the time is always returned as a floating-point number, not all systems provide time with a better precision than 1 second. While this function normally returns non-decreasing values, it can return a lower value than a previous call if the system clock has been set back between the two calls." msgstr "" -#: ../../library/time.rst:708 -msgid "" -"The number returned by :func:`.time` may be converted into a more common " -"time format (i.e. year, month, day, hour, etc...) in UTC by passing it " -"to :func:`gmtime` function or in local time by passing it to " -"the :func:`localtime` function. In both cases a :class:`struct_time` object " -"is returned, from which the components of the calendar date may be accessed " -"as attributes." +msgid "The number returned by :func:`.time` may be converted into a more common time format (i.e. year, month, day, hour, etc...) in UTC by passing it to :func:`gmtime` function or in local time by passing it to the :func:`localtime` function. In both cases a :class:`struct_time` object is returned, from which the components of the calendar date may be accessed as attributes." msgstr "" -#: ../../library/time.rst:717 msgid "On Windows, call ``GetSystemTimePreciseAsFileTime()``." msgstr "" -#: ../../library/time.rst:718 msgid "Call ``clock_gettime(CLOCK_REALTIME)`` if available." msgstr "" -#: ../../library/time.rst:719 msgid "Otherwise, call ``gettimeofday()``." msgstr "" -#: ../../library/time.rst:721 -msgid "" -"Use :func:`time_ns` to avoid the precision loss caused by the :class:`float` " -"type." +msgid "Use :func:`time_ns` to avoid the precision loss caused by the :class:`float` type." msgstr "" -#: ../../library/time.rst:726 -msgid "" -"On Windows, calls ``GetSystemTimePreciseAsFileTime()`` instead of " -"``GetSystemTimeAsFileTime()``." +msgid "On Windows, calls ``GetSystemTimePreciseAsFileTime()`` instead of ``GetSystemTimeAsFileTime()``." msgstr "" -#: ../../library/time.rst:732 -msgid "" -"Similar to :func:`~time.time` but returns time as an integer number of " -"nanoseconds since the epoch_." +msgid "Similar to :func:`~time.time` but returns time as an integer number of nanoseconds since the epoch_." msgstr "" -#: ../../library/time.rst:745 -msgid "" -"Return the value (in fractional seconds) of the sum of the system and user " -"CPU time of the current thread. It does not include time elapsed during " -"sleep. It is thread-specific by definition. The reference point of the " -"returned value is undefined, so that only the difference between the results " -"of two calls in the same thread is valid." +msgid "Return the value (in fractional seconds) of the sum of the system and user CPU time of the current thread. It does not include time elapsed during sleep. It is thread-specific by definition. The reference point of the returned value is undefined, so that only the difference between the results of two calls in the same thread is valid." msgstr "" -#: ../../library/time.rst:751 -msgid "" -"Use :func:`thread_time_ns` to avoid the precision loss caused by " -"the :class:`float` type." +msgid "Use :func:`thread_time_ns` to avoid the precision loss caused by the :class:`float` type." msgstr "" -#: ../../library/time.rst:756 msgid "Unix systems supporting ``CLOCK_THREAD_CPUTIME_ID``." msgstr "" -#: ../../library/time.rst:763 msgid "Similar to :func:`thread_time` but return time as nanoseconds." msgstr "" -#: ../../library/time.rst:770 -msgid "" -"Reset the time conversion rules used by the library routines. The " -"environment variable :envvar:`TZ` specifies how this is done. It will also " -"set the variables ``tzname`` (from the :envvar:`TZ` environment variable), " -"``timezone`` (non-DST seconds West of UTC), ``altzone`` (DST seconds west of " -"UTC) and ``daylight`` (to 0 if this timezone does not have any daylight " -"saving time rules, or to nonzero if there is a time, past, present or future " -"when daylight saving time applies)." +msgid "Reset the time conversion rules used by the library routines. The environment variable :envvar:`TZ` specifies how this is done. It will also set the variables ``tzname`` (from the :envvar:`TZ` environment variable), ``timezone`` (non-DST seconds West of UTC), ``altzone`` (DST seconds west of UTC) and ``daylight`` (to 0 if this timezone does not have any daylight saving time rules, or to nonzero if there is a time, past, present or future when daylight saving time applies)." msgstr "" -#: ../../library/time.rst:782 -msgid "" -"Although in many cases, changing the :envvar:`TZ` environment variable may " -"affect the output of functions like :func:`localtime` without " -"calling :func:`tzset`, this behavior should not be relied on." +msgid "Although in many cases, changing the :envvar:`TZ` environment variable may affect the output of functions like :func:`localtime` without calling :func:`tzset`, this behavior should not be relied on." msgstr "" -#: ../../library/time.rst:786 msgid "The :envvar:`TZ` environment variable should contain no whitespace." msgstr "" -#: ../../library/time.rst:788 -msgid "" -"The standard format of the :envvar:`TZ` environment variable is (whitespace " -"added for clarity)::" +msgid "The standard format of the :envvar:`TZ` environment variable is (whitespace added for clarity)::" msgstr "" -#: ../../library/time.rst:791 msgid "std offset [dst [offset [,start[/time], end[/time]]]]" msgstr "" -#: ../../library/time.rst:793 msgid "Where the components are:" msgstr "" -#: ../../library/time.rst:795 msgid "``std`` and ``dst``" msgstr "" -#: ../../library/time.rst:796 -msgid "" -"Three or more alphanumerics giving the timezone abbreviations. These will be " -"propagated into time.tzname" +msgid "Three or more alphanumerics giving the timezone abbreviations. These will be propagated into time.tzname" msgstr "" -#: ../../library/time.rst:799 msgid "``offset``" msgstr "" -#: ../../library/time.rst:800 -msgid "" -"The offset has the form: ``± hh[:mm[:ss]]``. This indicates the value added " -"the local time to arrive at UTC. If preceded by a '-', the timezone is east " -"of the Prime Meridian; otherwise, it is west. If no offset follows dst, " -"summer time is assumed to be one hour ahead of standard time." +msgid "The offset has the form: ``± hh[:mm[:ss]]``. This indicates the value added the local time to arrive at UTC. If preceded by a '-', the timezone is east of the Prime Meridian; otherwise, it is west. If no offset follows dst, summer time is assumed to be one hour ahead of standard time." msgstr "" -#: ../../library/time.rst:805 msgid "``start[/time], end[/time]``" msgstr "" -#: ../../library/time.rst:806 -msgid "" -"Indicates when to change to and back from DST. The format of the start and " -"end dates are one of the following:" +msgid "Indicates when to change to and back from DST. The format of the start and end dates are one of the following:" msgstr "" -#: ../../library/time.rst:809 msgid ":samp:`J{n}`" msgstr "" -#: ../../library/time.rst:810 -msgid "" -"The Julian day *n* (1 <= *n* <= 365). Leap days are not counted, so in all " -"years February 28 is day 59 and March 1 is day 60." +msgid "The Julian day *n* (1 <= *n* <= 365). Leap days are not counted, so in all years February 28 is day 59 and March 1 is day 60." msgstr "" -#: ../../library/time.rst:813 msgid ":samp:`{n}`" msgstr "" -#: ../../library/time.rst:814 -msgid "" -"The zero-based Julian day (0 <= *n* <= 365). Leap days are counted, and it " -"is possible to refer to February 29." +msgid "The zero-based Julian day (0 <= *n* <= 365). Leap days are counted, and it is possible to refer to February 29." msgstr "" -#: ../../library/time.rst:817 msgid ":samp:`M{m}.{n}.{d}`" msgstr "" -#: ../../library/time.rst:818 -msgid "" -"The *d*'th day (0 <= *d* <= 6) of week *n* of month *m* of the year (1 <= " -"*n* <= 5, 1 <= *m* <= 12, where week 5 means \"the last *d* day in month " -"*m*\" which may occur in either the fourth or the fifth week). Week 1 is the " -"first week in which the *d*'th day occurs. Day zero is a Sunday." +msgid "The *d*'th day (0 <= *d* <= 6) of week *n* of month *m* of the year (1 <= *n* <= 5, 1 <= *m* <= 12, where week 5 means \"the last *d* day in month *m*\" which may occur in either the fourth or the fifth week). Week 1 is the first week in which the *d*'th day occurs. Day zero is a Sunday." msgstr "" -#: ../../library/time.rst:824 -msgid "" -"``time`` has the same format as ``offset`` except that no leading sign ('-' " -"or '+') is allowed. The default, if time is not given, is 02:00:00." +msgid "``time`` has the same format as ``offset`` except that no leading sign ('-' or '+') is allowed. The default, if time is not given, is 02:00:00." msgstr "" -#: ../../library/time.rst:829 msgid "" ">>> os.environ['TZ'] = 'EST+05EDT,M4.1.0,M10.5.0'\n" ">>> time.tzset()\n" @@ -1288,18 +741,9 @@ msgid "" "'16:08:12 05/08/03 AEST'" msgstr "" -#: ../../library/time.rst:838 -msgid "" -"On many Unix systems (including \\*BSD, Linux, Solaris, and Darwin), it is " -"more convenient to use the system's zoneinfo (:manpage:`tzfile(5)`) " -"database to specify the timezone rules. To do this, set the :envvar:`TZ` " -"environment variable to the path of the required timezone datafile, " -"relative to the root of the systems 'zoneinfo' timezone database, usually " -"located at :file:`/usr/share/zoneinfo`. For example, ``'US/Eastern'``, " -"``'Australia/Melbourne'``, ``'Egypt'`` or ``'Europe/Amsterdam'``. ::" +msgid "On many Unix systems (including \\*BSD, Linux, Solaris, and Darwin), it is more convenient to use the system's zoneinfo (:manpage:`tzfile(5)`) database to specify the timezone rules. To do this, set the :envvar:`TZ` environment variable to the path of the required timezone datafile, relative to the root of the systems 'zoneinfo' timezone database, usually located at :file:`/usr/share/zoneinfo`. For example, ``'US/Eastern'``, ``'Australia/Melbourne'``, ``'Egypt'`` or ``'Europe/Amsterdam'``. ::" msgstr "" -#: ../../library/time.rst:846 msgid "" ">>> os.environ['TZ'] = 'US/Eastern'\n" ">>> time.tzset()\n" @@ -1311,236 +755,131 @@ msgid "" "('EET', 'EEST')" msgstr "" -#: ../../library/time.rst:859 msgid "Clock ID Constants" msgstr "" -#: ../../library/time.rst:861 -msgid "" -"These constants are used as parameters for :func:`clock_getres` " -"and :func:`clock_gettime`." +msgid "These constants are used as parameters for :func:`clock_getres` and :func:`clock_gettime`." msgstr "" -#: ../../library/time.rst:866 -msgid "" -"Identical to :data:`CLOCK_MONOTONIC`, except it also includes any time that " -"the system is suspended." +msgid "Identical to :data:`CLOCK_MONOTONIC`, except it also includes any time that the system is suspended." msgstr "" -#: ../../library/time.rst:869 -msgid "" -"This allows applications to get a suspend-aware monotonic clock without " -"having to deal with the complications of :data:`CLOCK_REALTIME`, which may " -"have discontinuities if the time is changed using ``settimeofday()`` or " -"similar." +msgid "This allows applications to get a suspend-aware monotonic clock without having to deal with the complications of :data:`CLOCK_REALTIME`, which may have discontinuities if the time is changed using ``settimeofday()`` or similar." msgstr "" -#: ../../library/time.rst:881 -msgid "" -"The Solaris OS has a ``CLOCK_HIGHRES`` timer that attempts to use an optimal " -"hardware source, and may give close to nanosecond resolution. " -"``CLOCK_HIGHRES`` is the nonadjustable, high-resolution clock." +msgid "The Solaris OS has a ``CLOCK_HIGHRES`` timer that attempts to use an optimal hardware source, and may give close to nanosecond resolution. ``CLOCK_HIGHRES`` is the nonadjustable, high-resolution clock." msgstr "" -#: ../../library/time.rst:892 -msgid "" -"Clock that cannot be set and represents monotonic time since some " -"unspecified starting point." +msgid "Clock that cannot be set and represents monotonic time since some unspecified starting point." msgstr "" -#: ../../library/time.rst:902 -msgid "" -"Similar to :data:`CLOCK_MONOTONIC`, but provides access to a raw hardware-" -"based time that is not subject to NTP adjustments." +msgid "Similar to :data:`CLOCK_MONOTONIC`, but provides access to a raw hardware-based time that is not subject to NTP adjustments." msgstr "" -#: ../../library/time.rst:911 -msgid "" -"Similar to :data:`CLOCK_MONOTONIC_RAW`, but reads a value cached by the " -"system at context switch and hence has less accuracy." +msgid "Similar to :data:`CLOCK_MONOTONIC_RAW`, but reads a value cached by the system at context switch and hence has less accuracy." msgstr "" -#: ../../library/time.rst:921 ../../library/time.rst:930 msgid "High-resolution per-process timer from the CPU." msgstr "" -#: ../../library/time.rst:938 -msgid "" -"`International Atomic Time `_" +msgid "`International Atomic Time `_" msgstr "" -#: ../../library/time.rst:940 -msgid "" -"The system must have a current leap second table in order for this to give " -"the correct answer. PTP or NTP software can maintain a leap second table." +msgid "The system must have a current leap second table in order for this to give the correct answer. PTP or NTP software can maintain a leap second table." msgstr "" -#: ../../library/time.rst:949 msgid "Thread-specific CPU-time clock." msgstr "" -#: ../../library/time.rst:958 -msgid "" -"Time whose absolute value is the time the system has been running and not " -"suspended, providing accurate uptime measurement, both absolute and interval." +msgid "Time whose absolute value is the time the system has been running and not suspended, providing accurate uptime measurement, both absolute and interval." msgstr "" -#: ../../library/time.rst:969 -msgid "" -"Clock that increments monotonically, tracking the time since an arbitrary " -"point, unaffected by frequency or time adjustments and not incremented while " -"the system is asleep." +msgid "Clock that increments monotonically, tracking the time since an arbitrary point, unaffected by frequency or time adjustments and not incremented while the system is asleep." msgstr "" -#: ../../library/time.rst:979 -msgid "" -"Like :data:`CLOCK_UPTIME_RAW`, but the value is cached by the system at " -"context switches and therefore has less accuracy." +msgid "Like :data:`CLOCK_UPTIME_RAW`, but the value is cached by the system at context switches and therefore has less accuracy." msgstr "" -#: ../../library/time.rst:986 -msgid "" -"The following constant is the only parameter that can be sent " -"to :func:`clock_settime`." +msgid "The following constant is the only parameter that can be sent to :func:`clock_settime`." msgstr "" -#: ../../library/time.rst:992 -msgid "" -"Real-time clock. Setting this clock requires appropriate privileges. The " -"clock is the same for all processes." +msgid "Real-time clock. Setting this clock requires appropriate privileges. The clock is the same for all processes." msgstr "" -#: ../../library/time.rst:1003 msgid "Timezone Constants" msgstr "" -#: ../../library/time.rst:1007 -msgid "" -"The offset of the local DST timezone, in seconds west of UTC, if one is " -"defined. This is negative if the local DST timezone is east of UTC (as in " -"Western Europe, including the UK). Only use this if ``daylight`` is " -"nonzero. See note below." +msgid "The offset of the local DST timezone, in seconds west of UTC, if one is defined. This is negative if the local DST timezone is east of UTC (as in Western Europe, including the UK). Only use this if ``daylight`` is nonzero. See note below." msgstr "" -#: ../../library/time.rst:1013 msgid "Nonzero if a DST timezone is defined. See note below." msgstr "" -#: ../../library/time.rst:1017 -msgid "" -"The offset of the local (non-DST) timezone, in seconds west of UTC (negative " -"in most of Western Europe, positive in the US, zero in the UK). See note " -"below." +msgid "The offset of the local (non-DST) timezone, in seconds west of UTC (negative in most of Western Europe, positive in the US, zero in the UK). See note below." msgstr "" -#: ../../library/time.rst:1022 -msgid "" -"A tuple of two strings: the first is the name of the local non-DST timezone, " -"the second is the name of the local DST timezone. If no DST timezone is " -"defined, the second string should not be used. See note below." +msgid "A tuple of two strings: the first is the name of the local non-DST timezone, the second is the name of the local DST timezone. If no DST timezone is defined, the second string should not be used. See note below." msgstr "" -#: ../../library/time.rst:1028 -msgid "" -"For the above Timezone constants " -"(:data:`altzone`, :data:`daylight`, :data:`timezone`, and :data:`tzname`), " -"the value is determined by the timezone rules in effect at module load time " -"or the last time :func:`tzset` is called and may be incorrect for times in " -"the past. It is recommended to use the :attr:`~struct_time.tm_gmtoff` " -"and :attr:`~struct_time.tm_zone` results from :func:`localtime` to obtain " -"timezone information." +msgid "For the above Timezone constants (:data:`altzone`, :data:`daylight`, :data:`timezone`, and :data:`tzname`), the value is determined by the timezone rules in effect at module load time or the last time :func:`tzset` is called and may be incorrect for times in the past. It is recommended to use the :attr:`~struct_time.tm_gmtoff` and :attr:`~struct_time.tm_zone` results from :func:`localtime` to obtain timezone information." msgstr "" -#: ../../library/time.rst:1037 msgid "Module :mod:`datetime`" msgstr "" -#: ../../library/time.rst:1038 msgid "More object-oriented interface to dates and times." msgstr "" -#: ../../library/time.rst:1040 msgid "Module :mod:`locale`" msgstr "" -#: ../../library/time.rst:1041 -msgid "" -"Internationalization services. The locale setting affects the " -"interpretation of many format specifiers in :func:`strftime` " -"and :func:`strptime`." +msgid "Internationalization services. The locale setting affects the interpretation of many format specifiers in :func:`strftime` and :func:`strptime`." msgstr "" -#: ../../library/time.rst:1044 msgid "Module :mod:`calendar`" msgstr "" -#: ../../library/time.rst:1045 -msgid "" -"General calendar-related functions. :func:`~calendar.timegm` is the " -"inverse of :func:`gmtime` from this module." +msgid "General calendar-related functions. :func:`~calendar.timegm` is the inverse of :func:`gmtime` from this module." msgstr "" -#: ../../library/time.rst:1049 msgid "Footnotes" msgstr "" -#: ../../library/time.rst:1050 -msgid "" -"The use of ``%Z`` is now deprecated, but the ``%z`` escape that expands to " -"the preferred hour/minute offset is not supported by all ANSI C libraries. " -"Also, a strict reading of the original 1982 :rfc:`822` standard calls for a " -"two-digit year (``%y`` rather than ``%Y``), but practice moved to 4-digit " -"years long before the year 2000. After that, :rfc:`822` became obsolete and " -"the 4-digit year has been first recommended by :rfc:`1123` and then mandated " -"by :rfc:`2822`, with :rfc:`5322` continuing this requirement." +msgid "The use of ``%Z`` is now deprecated, but the ``%z`` escape that expands to the preferred hour/minute offset is not supported by all ANSI C libraries. Also, a strict reading of the original 1982 :rfc:`822` standard calls for a two-digit year (``%y`` rather than ``%Y``), but practice moved to 4-digit years long before the year 2000. After that, :rfc:`822` became obsolete and the 4-digit year has been first recommended by :rfc:`1123` and then mandated by :rfc:`2822`, with :rfc:`5322` continuing this requirement." msgstr "" -#: ../../library/time.rst:22 msgid "epoch" msgstr "" -#: ../../library/time.rst:36 msgid "Year 2038" msgstr "" -#: ../../library/time.rst:42 msgid "2-digit years" msgstr "" -#: ../../library/time.rst:50 msgid "UTC" msgstr "" -#: ../../library/time.rst:50 msgid "Coordinated Universal Time" msgstr "" -#: ../../library/time.rst:50 msgid "Greenwich Mean Time" msgstr "" -#: ../../library/time.rst:63 msgid "Daylight Saving Time" msgstr "" -#: ../../library/time.rst:324 ../../library/time.rst:360 -#: ../../library/time.rst:740 msgid "benchmarking" msgstr "" -#: ../../library/time.rst:360 ../../library/time.rst:740 msgid "CPU time" msgstr "" -#: ../../library/time.rst:360 ../../library/time.rst:740 msgid "processor time" msgstr "" -#: ../../library/time.rst:431 ../../library/time.rst:590 msgid "% (percent)" msgstr "" -#: ../../library/time.rst:431 ../../library/time.rst:590 msgid "datetime format" msgstr "" diff --git a/library/timeit.po b/library/timeit.po index 681d0c17..c4a23dcb 100644 --- a/library/timeit.po +++ b/library/timeit.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:15+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,34 +24,21 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/timeit.rst:2 msgid ":mod:`!timeit` --- Measure execution time of small code snippets" msgstr "" -#: ../../library/timeit.rst:7 msgid "**Source code:** :source:`Lib/timeit.py`" msgstr "" -#: ../../library/timeit.rst:15 -msgid "" -"This module provides a simple way to time small bits of Python code. It has " -"both a :ref:`timeit-command-line-interface` as well as a :ref:`callable " -"` one. It avoids a number of common traps for measuring " -"execution times. See also Tim Peters' introduction to the \"Algorithms\" " -"chapter in the second edition of *Python Cookbook*, published by O'Reilly." +msgid "This module provides a simple way to time small bits of Python code. It has both a :ref:`timeit-command-line-interface` as well as a :ref:`callable ` one. It avoids a number of common traps for measuring execution times. See also Tim Peters' introduction to the \"Algorithms\" chapter in the second edition of *Python Cookbook*, published by O'Reilly." msgstr "" -#: ../../library/timeit.rst:23 msgid "Basic Examples" msgstr "" -#: ../../library/timeit.rst:25 -msgid "" -"The following example shows how the :ref:`timeit-command-line-interface` can " -"be used to compare three different expressions:" +msgid "The following example shows how the :ref:`timeit-command-line-interface` can be used to compare three different expressions:" msgstr "" -#: ../../library/timeit.rst:28 msgid "" "$ python -m timeit \"'-'.join(str(n) for n in range(100))\"\n" "10000 loops, best of 5: 30.2 usec per loop\n" @@ -61,11 +48,9 @@ msgid "" "10000 loops, best of 5: 23.2 usec per loop" msgstr "" -#: ../../library/timeit.rst:37 msgid "This can be achieved from the :ref:`python-interface` with::" msgstr "" -#: ../../library/timeit.rst:39 msgid "" ">>> import timeit\n" ">>> timeit.timeit('\"-\".join(str(n) for n in range(100))', number=10000)\n" @@ -76,178 +61,89 @@ msgid "" "0.23702679807320237" msgstr "" -#: ../../library/timeit.rst:47 msgid "A callable can also be passed from the :ref:`python-interface`::" msgstr "" -#: ../../library/timeit.rst:49 msgid "" ">>> timeit.timeit(lambda: \"-\".join(map(str, range(100))), number=10000)\n" "0.19665591977536678" msgstr "" -#: ../../library/timeit.rst:52 -msgid "" -"Note however that :func:`.timeit` will automatically determine the number of " -"repetitions only when the command-line interface is used. In " -"the :ref:`timeit-examples` section you can find more advanced examples." +msgid "Note however that :func:`.timeit` will automatically determine the number of repetitions only when the command-line interface is used. In the :ref:`timeit-examples` section you can find more advanced examples." msgstr "" -#: ../../library/timeit.rst:60 msgid "Python Interface" msgstr "" -#: ../../library/timeit.rst:62 msgid "The module defines three convenience functions and a public class:" msgstr "" -#: ../../library/timeit.rst:67 -msgid "" -"Create a :class:`Timer` instance with the given statement, *setup* code and " -"*timer* function and run its :meth:`.timeit` method with *number* " -"executions. The optional *globals* argument specifies a namespace in which " -"to execute the code." +msgid "Create a :class:`Timer` instance with the given statement, *setup* code and *timer* function and run its :meth:`.timeit` method with *number* executions. The optional *globals* argument specifies a namespace in which to execute the code." msgstr "" -#: ../../library/timeit.rst:72 ../../library/timeit.rst:83 -#: ../../library/timeit.rst:122 msgid "The optional *globals* parameter was added." msgstr "" -#: ../../library/timeit.rst:78 -msgid "" -"Create a :class:`Timer` instance with the given statement, *setup* code and " -"*timer* function and run its :meth:`.repeat` method with the given *repeat* " -"count and *number* executions. The optional *globals* argument specifies a " -"namespace in which to execute the code." +msgid "Create a :class:`Timer` instance with the given statement, *setup* code and *timer* function and run its :meth:`.repeat` method with the given *repeat* count and *number* executions. The optional *globals* argument specifies a namespace in which to execute the code." msgstr "" -#: ../../library/timeit.rst:86 ../../library/timeit.rst:183 msgid "Default value of *repeat* changed from 3 to 5." msgstr "" -#: ../../library/timeit.rst:92 -msgid "" -"The default timer, which is always time.perf_counter(), returns float " -"seconds. An alternative, time.perf_counter_ns, returns integer nanoseconds." +msgid "The default timer, which is always time.perf_counter(), returns float seconds. An alternative, time.perf_counter_ns, returns integer nanoseconds." msgstr "" -#: ../../library/timeit.rst:95 msgid ":func:`time.perf_counter` is now the default timer." msgstr "" -#: ../../library/timeit.rst:101 msgid "Class for timing execution speed of small code snippets." msgstr "" -#: ../../library/timeit.rst:103 -msgid "" -"The constructor takes a statement to be timed, an additional statement used " -"for setup, and a timer function. Both statements default to ``'pass'``; the " -"timer function is platform-dependent (see the module doc string). *stmt* and " -"*setup* may also contain multiple statements separated by ``;`` or newlines, " -"as long as they don't contain multi-line string literals. The statement " -"will by default be executed within timeit's namespace; this behavior can be " -"controlled by passing a namespace to *globals*." +msgid "The constructor takes a statement to be timed, an additional statement used for setup, and a timer function. Both statements default to ``'pass'``; the timer function is platform-dependent (see the module doc string). *stmt* and *setup* may also contain multiple statements separated by ``;`` or newlines, as long as they don't contain multi-line string literals. The statement will by default be executed within timeit's namespace; this behavior can be controlled by passing a namespace to *globals*." msgstr "" -#: ../../library/timeit.rst:111 -msgid "" -"To measure the execution time of the first statement, use " -"the :meth:`.timeit` method. The :meth:`.repeat` and :meth:`.autorange` " -"methods are convenience methods to call :meth:`.timeit` multiple times." +msgid "To measure the execution time of the first statement, use the :meth:`.timeit` method. The :meth:`.repeat` and :meth:`.autorange` methods are convenience methods to call :meth:`.timeit` multiple times." msgstr "" -#: ../../library/timeit.rst:115 -msgid "" -"The execution time of *setup* is excluded from the overall timed execution " -"run." +msgid "The execution time of *setup* is excluded from the overall timed execution run." msgstr "" -#: ../../library/timeit.rst:117 -msgid "" -"The *stmt* and *setup* parameters can also take objects that are callable " -"without arguments. This will embed calls to them in a timer function that " -"will then be executed by :meth:`.timeit`. Note that the timing overhead is " -"a little larger in this case because of the extra function calls." +msgid "The *stmt* and *setup* parameters can also take objects that are callable without arguments. This will embed calls to them in a timer function that will then be executed by :meth:`.timeit`. Note that the timing overhead is a little larger in this case because of the extra function calls." msgstr "" -#: ../../library/timeit.rst:127 -msgid "" -"Time *number* executions of the main statement. This executes the setup " -"statement once, and then returns the time it takes to execute the main " -"statement a number of times. The default timer returns seconds as a float. " -"The argument is the number of times through the loop, defaulting to one " -"million. The main statement, the setup statement and the timer function to " -"be used are passed to the constructor." +msgid "Time *number* executions of the main statement. This executes the setup statement once, and then returns the time it takes to execute the main statement a number of times. The default timer returns seconds as a float. The argument is the number of times through the loop, defaulting to one million. The main statement, the setup statement and the timer function to be used are passed to the constructor." msgstr "" -#: ../../library/timeit.rst:136 -msgid "" -"By default, :meth:`.timeit` temporarily turns off :term:`garbage collection` " -"during the timing. The advantage of this approach is that it makes " -"independent timings more comparable. The disadvantage is that GC may be an " -"important component of the performance of the function being measured. If " -"so, GC can be re-enabled as the first statement in the *setup* string. For " -"example::" +msgid "By default, :meth:`.timeit` temporarily turns off :term:`garbage collection` during the timing. The advantage of this approach is that it makes independent timings more comparable. The disadvantage is that GC may be an important component of the performance of the function being measured. If so, GC can be re-enabled as the first statement in the *setup* string. For example::" msgstr "" -#: ../../library/timeit.rst:143 msgid "timeit.Timer('for i in range(10): oct(i)', 'gc.enable()').timeit()" msgstr "" -#: ../../library/timeit.rst:148 msgid "Automatically determine how many times to call :meth:`.timeit`." msgstr "" -#: ../../library/timeit.rst:150 -msgid "" -"This is a convenience function that calls :meth:`.timeit` repeatedly so that " -"the total time >= 0.2 second, returning the eventual (number of loops, time " -"taken for that number of loops). It calls :meth:`.timeit` with increasing " -"numbers from the sequence 1, 2, 5, 10, 20, 50, ... until the time taken is " -"at least 0.2 seconds." +msgid "This is a convenience function that calls :meth:`.timeit` repeatedly so that the total time >= 0.2 second, returning the eventual (number of loops, time taken for that number of loops). It calls :meth:`.timeit` with increasing numbers from the sequence 1, 2, 5, 10, 20, 50, ... until the time taken is at least 0.2 seconds." msgstr "" -#: ../../library/timeit.rst:156 -msgid "" -"If *callback* is given and is not ``None``, it will be called after each " -"trial with two arguments: ``callback(number, time_taken)``." +msgid "If *callback* is given and is not ``None``, it will be called after each trial with two arguments: ``callback(number, time_taken)``." msgstr "" -#: ../../library/timeit.rst:164 msgid "Call :meth:`.timeit` a few times." msgstr "" -#: ../../library/timeit.rst:166 -msgid "" -"This is a convenience function that calls the :meth:`.timeit` repeatedly, " -"returning a list of results. The first argument specifies how many times to " -"call :meth:`.timeit`. The second argument specifies the *number* argument " -"for :meth:`.timeit`." +msgid "This is a convenience function that calls the :meth:`.timeit` repeatedly, returning a list of results. The first argument specifies how many times to call :meth:`.timeit`. The second argument specifies the *number* argument for :meth:`.timeit`." msgstr "" -#: ../../library/timeit.rst:173 -msgid "" -"It's tempting to calculate mean and standard deviation from the result " -"vector and report these. However, this is not very useful. In a typical " -"case, the lowest value gives a lower bound for how fast your machine can run " -"the given code snippet; higher values in the result vector are typically not " -"caused by variability in Python's speed, but by other processes interfering " -"with your timing accuracy. So the :func:`min` of the result is probably the " -"only number you should be interested in. After that, you should look at the " -"entire vector and apply common sense rather than statistics." +msgid "It's tempting to calculate mean and standard deviation from the result vector and report these. However, this is not very useful. In a typical case, the lowest value gives a lower bound for how fast your machine can run the given code snippet; higher values in the result vector are typically not caused by variability in Python's speed, but by other processes interfering with your timing accuracy. So the :func:`min` of the result is probably the only number you should be interested in. After that, you should look at the entire vector and apply common sense rather than statistics." msgstr "" -#: ../../library/timeit.rst:189 msgid "Helper to print a traceback from the timed code." msgstr "" -#: ../../library/timeit.rst:191 msgid "Typical use::" msgstr "" -#: ../../library/timeit.rst:193 msgid "" "t = Timer(...) # outside the try/except\n" "try:\n" @@ -256,177 +152,105 @@ msgid "" " t.print_exc()" msgstr "" -#: ../../library/timeit.rst:199 -msgid "" -"The advantage over the standard traceback is that source lines in the " -"compiled template will be displayed. The optional *file* argument directs " -"where the traceback is sent; it defaults to :data:`sys.stderr`." +msgid "The advantage over the standard traceback is that source lines in the compiled template will be displayed. The optional *file* argument directs where the traceback is sent; it defaults to :data:`sys.stderr`." msgstr "" -#: ../../library/timeit.rst:207 msgid "Command-Line Interface" msgstr "" -#: ../../library/timeit.rst:209 -msgid "" -"When called as a program from the command line, the following form is used::" +msgid "When called as a program from the command line, the following form is used::" msgstr "" -#: ../../library/timeit.rst:211 -msgid "" -"python -m timeit [-n N] [-r N] [-u U] [-s S] [-p] [-v] [-h] [statement ...]" +msgid "python -m timeit [-n N] [-r N] [-u U] [-s S] [-p] [-v] [-h] [statement ...]" msgstr "" -#: ../../library/timeit.rst:213 msgid "Where the following options are understood:" msgstr "" -#: ../../library/timeit.rst:219 msgid "how many times to execute 'statement'" msgstr "" -#: ../../library/timeit.rst:223 msgid "how many times to repeat the timer (default 5)" msgstr "" -#: ../../library/timeit.rst:227 msgid "statement to be executed once initially (default ``pass``)" msgstr "" -#: ../../library/timeit.rst:231 -msgid "" -"measure process time, not wallclock time, using :func:`time.process_time` " -"instead of :func:`time.perf_counter`, which is the default" +msgid "measure process time, not wallclock time, using :func:`time.process_time` instead of :func:`time.perf_counter`, which is the default" msgstr "" -#: ../../library/timeit.rst:238 -msgid "" -"specify a time unit for timer output; can select ``nsec``, ``usec``, " -"``msec``, or ``sec``" +msgid "specify a time unit for timer output; can select ``nsec``, ``usec``, ``msec``, or ``sec``" msgstr "" -#: ../../library/timeit.rst:244 msgid "print raw timing results; repeat for more digits precision" msgstr "" -#: ../../library/timeit.rst:248 msgid "print a short usage message and exit" msgstr "" -#: ../../library/timeit.rst:250 -msgid "" -"A multi-line statement may be given by specifying each line as a separate " -"statement argument; indented lines are possible by enclosing an argument in " -"quotes and using leading spaces. Multiple :option:`-s` options are treated " -"similarly." +msgid "A multi-line statement may be given by specifying each line as a separate statement argument; indented lines are possible by enclosing an argument in quotes and using leading spaces. Multiple :option:`-s` options are treated similarly." msgstr "" -#: ../../library/timeit.rst:255 -msgid "" -"If :option:`-n` is not given, a suitable number of loops is calculated by " -"trying increasing numbers from the sequence 1, 2, 5, 10, 20, 50, ... until " -"the total time is at least 0.2 seconds." +msgid "If :option:`-n` is not given, a suitable number of loops is calculated by trying increasing numbers from the sequence 1, 2, 5, 10, 20, 50, ... until the total time is at least 0.2 seconds." msgstr "" -#: ../../library/timeit.rst:259 -msgid "" -":func:`default_timer` measurements can be affected by other programs running " -"on the same machine, so the best thing to do when accurate timing is " -"necessary is to repeat the timing a few times and use the best time. " -"The :option:`-r` option is good for this; the default of 5 repetitions is " -"probably enough in most cases. You can use :func:`time.process_time` to " -"measure CPU time." +msgid ":func:`default_timer` measurements can be affected by other programs running on the same machine, so the best thing to do when accurate timing is necessary is to repeat the timing a few times and use the best time. The :option:`-r` option is good for this; the default of 5 repetitions is probably enough in most cases. You can use :func:`time.process_time` to measure CPU time." msgstr "" -#: ../../library/timeit.rst:267 -msgid "" -"There is a certain baseline overhead associated with executing a pass " -"statement. The code here doesn't try to hide it, but you should be aware of " -"it. The baseline overhead can be measured by invoking the program without " -"arguments, and it might differ between Python versions." +msgid "There is a certain baseline overhead associated with executing a pass statement. The code here doesn't try to hide it, but you should be aware of it. The baseline overhead can be measured by invoking the program without arguments, and it might differ between Python versions." msgstr "" -#: ../../library/timeit.rst:276 msgid "Examples" msgstr "" -#: ../../library/timeit.rst:278 -msgid "" -"It is possible to provide a setup statement that is executed only once at " -"the beginning:" +msgid "It is possible to provide a setup statement that is executed only once at the beginning:" msgstr "" -#: ../../library/timeit.rst:280 msgid "" -"$ python -m timeit -s \"text = 'sample string'; char = 'g'\" \"char in " -"text\"\n" +"$ python -m timeit -s \"text = 'sample string'; char = 'g'\" \"char in text\"\n" "5000000 loops, best of 5: 0.0877 usec per loop\n" -"$ python -m timeit -s \"text = 'sample string'; char = 'g'\" " -"\"text.find(char)\"\n" +"$ python -m timeit -s \"text = 'sample string'; char = 'g'\" \"text.find(char)\"\n" "1000000 loops, best of 5: 0.342 usec per loop" msgstr "" -#: ../../library/timeit.rst:287 -msgid "" -"In the output, there are three fields. The loop count, which tells you how " -"many times the statement body was run per timing loop repetition. The " -"repetition count ('best of 5') which tells you how many times the timing " -"loop was repeated, and finally the time the statement body took on average " -"within the best repetition of the timing loop. That is, the time the fastest " -"repetition took divided by the loop count." +msgid "In the output, there are three fields. The loop count, which tells you how many times the statement body was run per timing loop repetition. The repetition count ('best of 5') which tells you how many times the timing loop was repeated, and finally the time the statement body took on average within the best repetition of the timing loop. That is, the time the fastest repetition took divided by the loop count." msgstr "" -#: ../../library/timeit.rst:296 msgid "" ">>> import timeit\n" -">>> timeit.timeit('char in text', setup='text = \"sample string\"; char = " -"\"g\"')\n" +">>> timeit.timeit('char in text', setup='text = \"sample string\"; char = \"g\"')\n" "0.41440500499993504\n" -">>> timeit.timeit('text.find(char)', setup='text = \"sample string\"; char = " -"\"g\"')\n" +">>> timeit.timeit('text.find(char)', setup='text = \"sample string\"; char = \"g\"')\n" "1.7246671520006203" msgstr "" -#: ../../library/timeit.rst:302 msgid "The same can be done using the :class:`Timer` class and its methods::" msgstr "" -#: ../../library/timeit.rst:304 msgid "" ">>> import timeit\n" -">>> t = timeit.Timer('char in text', setup='text = \"sample string\"; char = " -"\"g\"')\n" +">>> t = timeit.Timer('char in text', setup='text = \"sample string\"; char = \"g\"')\n" ">>> t.timeit()\n" "0.3955516149999312\n" ">>> t.repeat()\n" -"[0.40183617287970225, 0.37027556854118704, 0.38344867356679524, " -"0.3712595970846668, 0.37866875250654886]" +"[0.40183617287970225, 0.37027556854118704, 0.38344867356679524, 0.3712595970846668, 0.37866875250654886]" msgstr "" -#: ../../library/timeit.rst:312 -msgid "" -"The following examples show how to time expressions that contain multiple " -"lines. Here we compare the cost of using :func:`hasattr` " -"vs. :keyword:`try`/:keyword:`except` to test for missing and present object " -"attributes:" +msgid "The following examples show how to time expressions that contain multiple lines. Here we compare the cost of using :func:`hasattr` vs. :keyword:`try`/:keyword:`except` to test for missing and present object attributes:" msgstr "" -#: ../../library/timeit.rst:316 msgid "" -"$ python -m timeit \"try:\" \" str.__bool__\" \"except AttributeError:\" " -"\" pass\"\n" +"$ python -m timeit \"try:\" \" str.__bool__\" \"except AttributeError:\" \" pass\"\n" "20000 loops, best of 5: 15.7 usec per loop\n" "$ python -m timeit \"if hasattr(str, '__bool__'): pass\"\n" "50000 loops, best of 5: 4.26 usec per loop\n" "\n" -"$ python -m timeit \"try:\" \" int.__bool__\" \"except AttributeError:\" " -"\" pass\"\n" +"$ python -m timeit \"try:\" \" int.__bool__\" \"except AttributeError:\" \" pass\"\n" "200000 loops, best of 5: 1.43 usec per loop\n" "$ python -m timeit \"if hasattr(int, '__bool__'): pass\"\n" "100000 loops, best of 5: 2.23 usec per loop" msgstr "" -#: ../../library/timeit.rst:330 msgid "" ">>> import timeit\n" ">>> # attribute is missing\n" @@ -456,13 +280,9 @@ msgid "" "0.08588060699912603" msgstr "" -#: ../../library/timeit.rst:358 -msgid "" -"To give the :mod:`!timeit` module access to functions you define, you can " -"pass a *setup* parameter which contains an import statement::" +msgid "To give the :mod:`!timeit` module access to functions you define, you can pass a *setup* parameter which contains an import statement::" msgstr "" -#: ../../library/timeit.rst:361 msgid "" "def test():\n" " \"\"\"Stupid test function\"\"\"\n" @@ -473,14 +293,9 @@ msgid "" " print(timeit.timeit(\"test()\", setup=\"from __main__ import test\"))" msgstr "" -#: ../../library/timeit.rst:369 -msgid "" -"Another option is to pass :func:`globals` to the *globals* parameter, which " -"will cause the code to be executed within your current global namespace. " -"This can be more convenient than individually specifying imports::" +msgid "Another option is to pass :func:`globals` to the *globals* parameter, which will cause the code to be executed within your current global namespace. This can be more convenient than individually specifying imports::" msgstr "" -#: ../../library/timeit.rst:373 msgid "" "def f(x):\n" " return x**2\n" @@ -493,10 +308,8 @@ msgid "" "print(timeit.timeit('[func(42) for func in (f,g,h)]', globals=globals()))" msgstr "" -#: ../../library/timeit.rst:9 msgid "Benchmarking" msgstr "" -#: ../../library/timeit.rst:9 msgid "Performance" msgstr "" diff --git a/library/tk.po b/library/tk.po index 79c37b41..d01183bc 100644 --- a/library/tk.po +++ b/library/tk.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:15+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -23,51 +23,26 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/tk.rst:5 msgid "Graphical user interfaces with Tk" msgstr "" -#: ../../library/tk.rst:13 -msgid "" -"Tk/Tcl has long been an integral part of Python. It provides a robust and " -"platform independent windowing toolkit, that is available to Python " -"programmers using the :mod:`tkinter` package, and its extension, " -"the :mod:`tkinter.ttk` module." +msgid "Tk/Tcl has long been an integral part of Python. It provides a robust and platform independent windowing toolkit, that is available to Python programmers using the :mod:`tkinter` package, and its extension, the :mod:`tkinter.ttk` module." msgstr "" -#: ../../library/tk.rst:17 -msgid "" -"The :mod:`tkinter` package is a thin object-oriented layer on top of Tcl/Tk. " -"To use :mod:`tkinter`, you don't need to write Tcl code, but you will need " -"to consult the Tk documentation, and occasionally the Tcl " -"documentation. :mod:`tkinter` is a set of wrappers that implement the Tk " -"widgets as Python classes." +msgid "The :mod:`tkinter` package is a thin object-oriented layer on top of Tcl/Tk. To use :mod:`tkinter`, you don't need to write Tcl code, but you will need to consult the Tk documentation, and occasionally the Tcl documentation. :mod:`tkinter` is a set of wrappers that implement the Tk widgets as Python classes." msgstr "" -#: ../../library/tk.rst:23 -msgid "" -":mod:`tkinter`'s chief virtues are that it is fast, and that it usually " -"comes bundled with Python. Although its standard documentation is weak, good " -"material is available, which includes: references, tutorials, a book and " -"others. :mod:`tkinter` is also famous for having an outdated look and feel, " -"which has been vastly improved in Tk 8.5. Nevertheless, there are many other " -"GUI libraries that you could be interested in. The Python wiki lists several " -"alternative `GUI frameworks and tools `_." +msgid ":mod:`tkinter`'s chief virtues are that it is fast, and that it usually comes bundled with Python. Although its standard documentation is weak, good material is available, which includes: references, tutorials, a book and others. :mod:`tkinter` is also famous for having an outdated look and feel, which has been vastly improved in Tk 8.5. Nevertheless, there are many other GUI libraries that you could be interested in. The Python wiki lists several alternative `GUI frameworks and tools `_." msgstr "" -#: ../../library/tk.rst:7 msgid "GUI" msgstr "" -#: ../../library/tk.rst:7 msgid "Graphical User Interface" msgstr "" -#: ../../library/tk.rst:7 msgid "Tkinter" msgstr "" -#: ../../library/tk.rst:7 msgid "Tk" msgstr "" diff --git a/library/tkinter.colorchooser.po b/library/tkinter.colorchooser.po index 1a587b24..a172ef6e 100644 --- a/library/tkinter.colorchooser.po +++ b/library/tkinter.colorchooser.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:15+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,49 +21,26 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/tkinter.colorchooser.rst:2 msgid ":mod:`!tkinter.colorchooser` --- Color choosing dialog" msgstr "" -#: ../../library/tkinter.colorchooser.rst:7 msgid "**Source code:** :source:`Lib/tkinter/colorchooser.py`" msgstr "" -#: ../../library/tkinter.colorchooser.rst:11 -msgid "" -"The :mod:`!tkinter.colorchooser` module provides the :class:`Chooser` class " -"as an interface to the native color picker dialog. ``Chooser`` implements a " -"modal color choosing dialog window. The ``Chooser`` class inherits from " -"the :class:`~tkinter.commondialog.Dialog` class." +msgid "The :mod:`!tkinter.colorchooser` module provides the :class:`Chooser` class as an interface to the native color picker dialog. ``Chooser`` implements a modal color choosing dialog window. The ``Chooser`` class inherits from the :class:`~tkinter.commondialog.Dialog` class." msgstr "" -#: ../../library/tkinter.colorchooser.rst:18 -msgid "" -"The class implementing the modal color-choosing dialog. Most applications " -"use the :func:`askcolor` convenience function rather than instantiating this " -"class directly." +msgid "The class implementing the modal color-choosing dialog. Most applications use the :func:`askcolor` convenience function rather than instantiating this class directly." msgstr "" -#: ../../library/tkinter.colorchooser.rst:24 -msgid "" -"Show a modal color-choosing dialog and return the chosen color. *color* is " -"the color selected when the dialog opens. The return value is a tuple ``((r, " -"g, b), hexstr)``, where ``r``, ``g`` and ``b`` are the red, green and blue " -"components as integers in the range 0–255 and *hexstr* is the equivalent Tk " -"color string, such as ``'#ff8000'``. If the user cancels the dialog, " -"``(None, None)`` is returned." +msgid "Show a modal color-choosing dialog and return the chosen color. *color* is the color selected when the dialog opens. The return value is a tuple ``((r, g, b), hexstr)``, where ``r``, ``g`` and ``b`` are the red, green and blue components as integers in the range 0–255 and *hexstr* is the equivalent Tk color string, such as ``'#ff8000'``. If the user cancels the dialog, ``(None, None)`` is returned." msgstr "" -#: ../../library/tkinter.colorchooser.rst:31 -msgid "" -"The RGB values in the returned color are now integers in the range 0–255 " -"instead of floats." +msgid "The RGB values in the returned color are now integers in the range 0–255 instead of floats." msgstr "" -#: ../../library/tkinter.colorchooser.rst:38 msgid "Module :mod:`tkinter.commondialog`" msgstr "" -#: ../../library/tkinter.colorchooser.rst:39 msgid "Tkinter standard dialog module" msgstr "" diff --git a/library/tkinter.dnd.po b/library/tkinter.dnd.po index b0b44c2e..1b71b331 100644 --- a/library/tkinter.dnd.po +++ b/library/tkinter.dnd.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:15+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,101 +21,62 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/tkinter.dnd.rst:2 msgid ":mod:`!tkinter.dnd` --- Drag and drop support" msgstr "" -#: ../../library/tkinter.dnd.rst:7 msgid "**Source code:** :source:`Lib/tkinter/dnd.py`" msgstr "" -#: ../../library/tkinter.dnd.rst:11 -msgid "" -"This is experimental and due to be deprecated when it is replaced with the " -"Tk DND." +msgid "This is experimental and due to be deprecated when it is replaced with the Tk DND." msgstr "" -#: ../../library/tkinter.dnd.rst:14 -msgid "" -"The :mod:`!tkinter.dnd` module provides drag-and-drop support for objects " -"within a single application, within the same window or between windows. To " -"enable an object to be dragged, you must create an event binding for it that " -"starts the drag-and-drop process. Typically, you bind a ButtonPress event to " -"a callback function that you write (see :ref:`Bindings-and-Events`). The " -"function should call :func:`dnd_start`, where *source* is the object to be " -"dragged, and *event* is the event that invoked the call (the argument to " -"your callback function)." +msgid "The :mod:`!tkinter.dnd` module provides drag-and-drop support for objects within a single application, within the same window or between windows. To enable an object to be dragged, you must create an event binding for it that starts the drag-and-drop process. Typically, you bind a ButtonPress event to a callback function that you write (see :ref:`Bindings-and-Events`). The function should call :func:`dnd_start`, where *source* is the object to be dragged, and *event* is the event that invoked the call (the argument to your callback function)." msgstr "" -#: ../../library/tkinter.dnd.rst:22 msgid "Selection of a target object occurs as follows:" msgstr "" -#: ../../library/tkinter.dnd.rst:24 msgid "Top-down search of the area under the mouse for a target widget:" msgstr "" -#: ../../library/tkinter.dnd.rst:26 msgid "the target widget should have a callable *dnd_accept* attribute;" msgstr "" -#: ../../library/tkinter.dnd.rst:27 -msgid "" -"if *dnd_accept* is not present or returns ``None``, the search moves to the " -"parent widget;" +msgid "if *dnd_accept* is not present or returns ``None``, the search moves to the parent widget;" msgstr "" -#: ../../library/tkinter.dnd.rst:29 msgid "if no target widget is found, the target object is ``None``." msgstr "" -#: ../../library/tkinter.dnd.rst:31 msgid "Call to ``.dnd_leave(source, event)``." msgstr "" -#: ../../library/tkinter.dnd.rst:32 msgid "Call to ``.dnd_enter(source, event)``." msgstr "" -#: ../../library/tkinter.dnd.rst:33 msgid "Call to ``.dnd_commit(source, event)`` to notify of the drop." msgstr "" -#: ../../library/tkinter.dnd.rst:34 -msgid "" -"Call to ``.dnd_end(target, event)`` to signal the end of drag-and-" -"drop." +msgid "Call to ``.dnd_end(target, event)`` to signal the end of drag-and-drop." msgstr "" -#: ../../library/tkinter.dnd.rst:39 -msgid "" -"The *DndHandler* class handles drag-and-drop events tracking Motion and " -"ButtonRelease events on the root of the event widget." +msgid "The *DndHandler* class handles drag-and-drop events tracking Motion and ButtonRelease events on the root of the event widget." msgstr "" -#: ../../library/tkinter.dnd.rst:44 msgid "Cancel the drag-and-drop process." msgstr "" -#: ../../library/tkinter.dnd.rst:48 msgid "Execute end of drag-and-drop functions." msgstr "" -#: ../../library/tkinter.dnd.rst:52 msgid "Inspect area below mouse for target objects while a drag is performed." msgstr "" -#: ../../library/tkinter.dnd.rst:57 msgid "Signal end of drag when the release pattern is triggered." msgstr "" -#: ../../library/tkinter.dnd.rst:61 -msgid "" -"Factory function for the drag-and-drop process. Return " -"the :class:`DndHandler` instance managing the drag, or ``None`` if a drag " -"could not be started." +msgid "Factory function for the drag-and-drop process. Return the :class:`DndHandler` instance managing the drag, or ``None`` if a drag could not be started." msgstr "" -#: ../../library/tkinter.dnd.rst:67 msgid ":ref:`Bindings-and-Events`" msgstr "" diff --git a/library/tkinter.font.po b/library/tkinter.font.po index f22e243b..700c070b 100644 --- a/library/tkinter.font.po +++ b/library/tkinter.font.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:15+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,179 +21,113 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/tkinter.font.rst:2 msgid ":mod:`!tkinter.font` --- Tkinter font wrapper" msgstr "" -#: ../../library/tkinter.font.rst:7 msgid "**Source code:** :source:`Lib/tkinter/font.py`" msgstr "" -#: ../../library/tkinter.font.rst:11 -msgid "" -"The :mod:`!tkinter.font` module provides the :class:`Font` class for " -"creating and using named fonts." +msgid "The :mod:`!tkinter.font` module provides the :class:`Font` class for creating and using named fonts." msgstr "" -#: ../../library/tkinter.font.rst:14 msgid "The different font weights and slants are:" msgstr "" -#: ../../library/tkinter.font.rst:23 -msgid "" -"The :class:`Font` class represents a named font. *Font* instances are given " -"unique names and can be specified by their family, size, and style " -"configuration. Named fonts are Tk's method of creating and identifying fonts " -"as a single object, rather than specifying a font by its attributes with " -"each occurrence." +msgid "The :class:`Font` class represents a named font. *Font* instances are given unique names and can be specified by their family, size, and style configuration. Named fonts are Tk's method of creating and identifying fonts as a single object, rather than specifying a font by its attributes with each occurrence." msgstr "" -#: ../../library/tkinter.font.rst:29 -msgid "" -"Two fonts now compare equal (``==``) only when both are :class:`Font` " -"instances with the same name belonging to the same Tcl interpreter." +msgid "Two fonts now compare equal (``==``) only when both are :class:`Font` instances with the same name belonging to the same Tcl interpreter." msgstr "" -#: ../../library/tkinter.font.rst:33 msgid "arguments:" msgstr "" -#: ../../library/tkinter.font.rst:0 msgid "*font* - font specifier tuple (family, size, options)" msgstr "" -#: ../../library/tkinter.font.rst:0 msgid "*name* - unique font name" msgstr "" -#: ../../library/tkinter.font.rst:0 msgid "*exists* - self points to existing named font if true" msgstr "" -#: ../../library/tkinter.font.rst:39 msgid "additional keyword options (ignored if *font* is specified):" msgstr "" -#: ../../library/tkinter.font.rst:0 msgid "*family* - font family, for example, Courier, Times" msgstr "" -#: ../../library/tkinter.font.rst:0 msgid "*size* - font size" msgstr "" -#: ../../library/tkinter.font.rst:0 msgid "If *size* is positive it is interpreted as size in points." msgstr "" -#: ../../library/tkinter.font.rst:0 msgid "If *size* is a negative number its absolute value is treated" msgstr "" -#: ../../library/tkinter.font.rst:0 msgid "as size in pixels." msgstr "" -#: ../../library/tkinter.font.rst:0 msgid "*weight* - font emphasis (NORMAL, BOLD)" msgstr "" -#: ../../library/tkinter.font.rst:0 msgid "*slant* - ROMAN, ITALIC" msgstr "" -#: ../../library/tkinter.font.rst:0 msgid "*underline* - font underlining (0 - none, 1 - underline)" msgstr "" -#: ../../library/tkinter.font.rst:0 msgid "*overstrike* - font strikeout (0 - none, 1 - strikeout)" msgstr "" -#: ../../library/tkinter.font.rst:53 -msgid "" -"Return the actual attributes of the font, which may differ from the " -"requested ones because of platform limitations. With no *option*, return a " -"dictionary of all the attributes; if *option* is given, return the value of " -"that single attribute. The attributes are resolved on the display of the " -"*displayof* widget, or the main application window if it is not specified." +msgid "Return the actual attributes of the font, which may differ from the requested ones because of platform limitations. With no *option*, return a dictionary of all the attributes; if *option* is given, return the value of that single attribute. The attributes are resolved on the display of the *displayof* widget, or the main application window if it is not specified." msgstr "" -#: ../../library/tkinter.font.rst:62 msgid "Retrieve an attribute of the font." msgstr "" -#: ../../library/tkinter.font.rst:69 -msgid "" -"Modify one or more attributes of the font. With no arguments, return a " -"dictionary of the current attributes." +msgid "Modify one or more attributes of the font. With no arguments, return a dictionary of the current attributes." msgstr "" -#: ../../library/tkinter.font.rst:72 msgid ":meth:`config` is an alias of :meth:`!configure`." msgstr "" -#: ../../library/tkinter.font.rst:76 -msgid "" -"Return a distinct copy of the current font: a new named font with the same " -"attributes but a different name, which can be reconfigured independently of " -"the original. If the current font wraps a font description, the copy is " -"instead a named font with its resolved attributes." +msgid "Return a distinct copy of the current font: a new named font with the same attributes but a different name, which can be reconfigured independently of the original. If the current font wraps a font description, the copy is instead a named font with its resolved attributes." msgstr "" -#: ../../library/tkinter.font.rst:84 -msgid "" -"Return amount of space the text would occupy on the specified display when " -"formatted in the current font, as an integer number of pixels. If no display " -"is specified then the main application window is assumed." +msgid "Return amount of space the text would occupy on the specified display when formatted in the current font, as an integer number of pixels. If no display is specified then the main application window is assumed." msgstr "" -#: ../../library/tkinter.font.rst:90 -msgid "" -"Return font-specific data. With no options, return a dictionary mapping each " -"metric name to its integer value; if one option name is given, return that " -"metric's value as an integer. Options include:" +msgid "Return font-specific data. With no options, return a dictionary mapping each metric name to its integer value; if one option name is given, return that metric's value as an integer. Options include:" msgstr "" -#: ../../library/tkinter.font.rst:96 msgid "*ascent* - distance between baseline and highest point that a" msgstr "" -#: ../../library/tkinter.font.rst:97 ../../library/tkinter.font.rst:100 msgid "character of the font can occupy" msgstr "" -#: ../../library/tkinter.font.rst:99 msgid "*descent* - distance between baseline and lowest point that a" msgstr "" -#: ../../library/tkinter.font.rst:102 msgid "*linespace* - minimum vertical separation necessary between any two" msgstr "" -#: ../../library/tkinter.font.rst:103 msgid "characters of the font that ensures no vertical overlap between lines." msgstr "" -#: ../../library/tkinter.font.rst:105 msgid "*fixed* - 1 if font is fixed-width else 0" msgstr "" -#: ../../library/tkinter.font.rst:109 msgid "Return a tuple of the names of the available font families." msgstr "" -#: ../../library/tkinter.font.rst:113 msgid "Return a tuple of the names of all the defined fonts." msgstr "" -#: ../../library/tkinter.font.rst:117 -msgid "" -"Return a :class:`Font` representation of the existing named font *name*. " -"*root* is the widget whose Tcl interpreter owns the font; if omitted, the " -"default root window is used." +msgid "Return a :class:`Font` representation of the existing named font *name*. *root* is the widget whose Tcl interpreter owns the font; if omitted, the default root window is used." msgstr "" -#: ../../library/tkinter.font.rst:121 msgid "The *root* parameter was added." msgstr "" diff --git a/library/tkinter.messagebox.po b/library/tkinter.messagebox.po index d3c08f04..9aed0be7 100644 --- a/library/tkinter.messagebox.po +++ b/library/tkinter.messagebox.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:15+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,235 +21,131 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/tkinter.messagebox.rst:2 msgid ":mod:`!tkinter.messagebox` --- Tkinter message prompts" msgstr "" -#: ../../library/tkinter.messagebox.rst:7 msgid "**Source code:** :source:`Lib/tkinter/messagebox.py`" msgstr "" -#: ../../library/tkinter.messagebox.rst:11 -msgid "" -"The :mod:`!tkinter.messagebox` module provides a template base class as well " -"as a variety of convenience methods for commonly used configurations. The " -"message boxes are modal: each blocks until the user responds, then returns a " -"value that depends on the function. The ``show*`` functions " -"and :meth:`Message.show` return the symbolic name of the button the user " -"pressed, as a string (such as :data:`OK` or :data:`YES`). Common message box " -"styles and layouts include but are not limited to:" +msgid "The :mod:`!tkinter.messagebox` module provides a template base class as well as a variety of convenience methods for commonly used configurations. The message boxes are modal: each blocks until the user responds, then returns a value that depends on the function. The ``show*`` functions and :meth:`Message.show` return the symbolic name of the button the user pressed, as a string (such as :data:`OK` or :data:`YES`). Common message box styles and layouts include but are not limited to:" msgstr "" -#: ../../library/tkinter.messagebox.rst:23 -msgid "" -"Create a message window with an application-specified message, an icon and a " -"set of buttons. Each of the buttons in the message window is identified by a " -"unique symbolic name (see the *type* options)." +msgid "Create a message window with an application-specified message, an icon and a set of buttons. Each of the buttons in the message window is identified by a unique symbolic name (see the *type* options)." msgstr "" -#: ../../library/tkinter.messagebox.rst:27 msgid "The following options are supported:" msgstr "" -#: ../../library/tkinter.messagebox.rst:29 msgid "*command*" msgstr "" -#: ../../library/tkinter.messagebox.rst:30 -msgid "" -"Specifies the function to invoke when the user closes the dialog. The name " -"of the button clicked by the user to close the dialog is passed as argument. " -"This is only available on macOS." +msgid "Specifies the function to invoke when the user closes the dialog. The name of the button clicked by the user to close the dialog is passed as argument. This is only available on macOS." msgstr "" -#: ../../library/tkinter.messagebox.rst:35 msgid "*default*" msgstr "" -#: ../../library/tkinter.messagebox.rst:36 -msgid "" -"Gives the :ref:`symbolic name ` of the default button " -"for this message window (:data:`OK`, :data:`CANCEL`, and so on). If this " -"option is not specified, the first button in the dialog will be made the " -"default." +msgid "Gives the :ref:`symbolic name ` of the default button for this message window (:data:`OK`, :data:`CANCEL`, and so on). If this option is not specified, the first button in the dialog will be made the default." msgstr "" -#: ../../library/tkinter.messagebox.rst:41 msgid "*detail*" msgstr "" -#: ../../library/tkinter.messagebox.rst:42 -msgid "" -"Specifies an auxiliary message to the main message given by the *message* " -"option. The message detail will be presented beneath the main message and, " -"where supported by the OS, in a less emphasized font than the main message." +msgid "Specifies an auxiliary message to the main message given by the *message* option. The message detail will be presented beneath the main message and, where supported by the OS, in a less emphasized font than the main message." msgstr "" -#: ../../library/tkinter.messagebox.rst:48 msgid "*icon*" msgstr "" -#: ../../library/tkinter.messagebox.rst:49 -msgid "" -"Specifies an :ref:`icon ` to display. If this option is " -"not specified, then the :data:`INFO` icon will be displayed." +msgid "Specifies an :ref:`icon ` to display. If this option is not specified, then the :data:`INFO` icon will be displayed." msgstr "" -#: ../../library/tkinter.messagebox.rst:53 msgid "*message*" msgstr "" -#: ../../library/tkinter.messagebox.rst:54 -msgid "" -"Specifies the message to display in this message box. The default value is " -"an empty string." +msgid "Specifies the message to display in this message box. The default value is an empty string." msgstr "" -#: ../../library/tkinter.messagebox.rst:57 msgid "*parent*" msgstr "" -#: ../../library/tkinter.messagebox.rst:58 -msgid "" -"Makes the specified window the logical parent of the message box. The " -"message box is displayed on top of its parent window." +msgid "Makes the specified window the logical parent of the message box. The message box is displayed on top of its parent window." msgstr "" -#: ../../library/tkinter.messagebox.rst:61 msgid "*title*" msgstr "" -#: ../../library/tkinter.messagebox.rst:62 -msgid "" -"Specifies a string to display as the title of the message box. This option " -"is ignored on macOS, where platform guidelines forbid the use of a title on " -"this kind of dialog." +msgid "Specifies a string to display as the title of the message box. This option is ignored on macOS, where platform guidelines forbid the use of a title on this kind of dialog." msgstr "" -#: ../../library/tkinter.messagebox.rst:66 msgid "*type*" msgstr "" -#: ../../library/tkinter.messagebox.rst:67 -msgid "" -"Arranges for a :ref:`predefined set of buttons ` to be " -"displayed." +msgid "Arranges for a :ref:`predefined set of buttons ` to be displayed." msgstr "" -#: ../../library/tkinter.messagebox.rst:72 msgid "Tk 8.6 added the *command* option." msgstr "" -#: ../../library/tkinter.messagebox.rst:76 -msgid "" -"Display a message window and wait for the user to select one of the buttons. " -"Then return the symbolic name of the selected button. Keyword arguments can " -"override options specified in the constructor." +msgid "Display a message window and wait for the user to select one of the buttons. Then return the symbolic name of the selected button. Keyword arguments can override options specified in the constructor." msgstr "" -#: ../../library/tkinter.messagebox.rst:80 msgid "**Information message box**" msgstr "" -#: ../../library/tkinter.messagebox.rst:84 -msgid "" -"Creates and displays an information message box with the specified title and " -"message." +msgid "Creates and displays an information message box with the specified title and message." msgstr "" -#: ../../library/tkinter.messagebox.rst:87 msgid "**Warning message boxes**" msgstr "" -#: ../../library/tkinter.messagebox.rst:91 -msgid "" -"Creates and displays a warning message box with the specified title and " -"message." +msgid "Creates and displays a warning message box with the specified title and message." msgstr "" -#: ../../library/tkinter.messagebox.rst:96 -msgid "" -"Creates and displays an error message box with the specified title and " -"message." +msgid "Creates and displays an error message box with the specified title and message." msgstr "" -#: ../../library/tkinter.messagebox.rst:99 msgid "**Question message boxes**" msgstr "" -#: ../../library/tkinter.messagebox.rst:103 -msgid "" -"Ask a question. By default shows buttons :data:`YES` and :data:`NO`. Returns " -"the symbolic name of the selected button." +msgid "Ask a question. By default shows buttons :data:`YES` and :data:`NO`. Returns the symbolic name of the selected button." msgstr "" -#: ../../library/tkinter.messagebox.rst:108 -msgid "" -"Ask if operation should proceed. Shows buttons :data:`OK` " -"and :data:`CANCEL`. Returns ``True`` if the answer is ok and ``False`` " -"otherwise." +msgid "Ask if operation should proceed. Shows buttons :data:`OK` and :data:`CANCEL`. Returns ``True`` if the answer is ok and ``False`` otherwise." msgstr "" -#: ../../library/tkinter.messagebox.rst:113 -msgid "" -"Ask if operation should be retried. Shows buttons :data:`RETRY` " -"and :data:`CANCEL`. Return ``True`` if the answer is retry and ``False`` " -"otherwise." +msgid "Ask if operation should be retried. Shows buttons :data:`RETRY` and :data:`CANCEL`. Return ``True`` if the answer is retry and ``False`` otherwise." msgstr "" -#: ../../library/tkinter.messagebox.rst:118 -msgid "" -"Ask a question. Shows buttons :data:`YES` and :data:`NO`. Returns ``True`` " -"if the answer is yes and ``False`` otherwise." +msgid "Ask a question. Shows buttons :data:`YES` and :data:`NO`. Returns ``True`` if the answer is yes and ``False`` otherwise." msgstr "" -#: ../../library/tkinter.messagebox.rst:123 -msgid "" -"Ask a question. Shows buttons :data:`YES`, :data:`NO` and :data:`CANCEL`. " -"Return ``True`` if the answer is yes, ``None`` if cancelled, and ``False`` " -"otherwise." +msgid "Ask a question. Shows buttons :data:`YES`, :data:`NO` and :data:`CANCEL`. Return ``True`` if the answer is yes, ``None`` if cancelled, and ``False`` otherwise." msgstr "" -#: ../../library/tkinter.messagebox.rst:130 msgid "Symbolic names of buttons:" msgstr "" -#: ../../library/tkinter.messagebox.rst:149 msgid "Predefined sets of buttons:" msgstr "" -#: ../../library/tkinter.messagebox.rst:154 -msgid "" -"Displays three buttons whose symbolic names are :data:`ABORT`, :data:`RETRY` " -"and :data:`IGNORE`." +msgid "Displays three buttons whose symbolic names are :data:`ABORT`, :data:`RETRY` and :data:`IGNORE`." msgstr "" -#: ../../library/tkinter.messagebox.rst:161 msgid "Displays one button whose symbolic name is :data:`OK`." msgstr "" -#: ../../library/tkinter.messagebox.rst:166 -msgid "" -"Displays two buttons whose symbolic names are :data:`OK` and :data:`CANCEL`." +msgid "Displays two buttons whose symbolic names are :data:`OK` and :data:`CANCEL`." msgstr "" -#: ../../library/tkinter.messagebox.rst:172 -msgid "" -"Displays two buttons whose symbolic names are :data:`RETRY` " -"and :data:`CANCEL`." +msgid "Displays two buttons whose symbolic names are :data:`RETRY` and :data:`CANCEL`." msgstr "" -#: ../../library/tkinter.messagebox.rst:178 -msgid "" -"Displays two buttons whose symbolic names are :data:`YES` and :data:`NO`." +msgid "Displays two buttons whose symbolic names are :data:`YES` and :data:`NO`." msgstr "" -#: ../../library/tkinter.messagebox.rst:184 -msgid "" -"Displays three buttons whose symbolic names are :data:`YES`, :data:`NO` " -"and :data:`CANCEL`." +msgid "Displays three buttons whose symbolic names are :data:`YES`, :data:`NO` and :data:`CANCEL`." msgstr "" -#: ../../library/tkinter.messagebox.rst:189 msgid "Icon images:" msgstr "" diff --git a/library/tkinter.po b/library/tkinter.po index a69f4d7d..70b41a61 100644 --- a/library/tkinter.po +++ b/library/tkinter.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:15+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,409 +24,233 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/tkinter.rst:2 msgid ":mod:`!tkinter` --- Python interface to Tcl/Tk" msgstr "" -#: ../../library/tkinter.rst:9 msgid "**Source code:** :source:`Lib/tkinter/__init__.py`" msgstr "" -#: ../../library/tkinter.rst:13 -msgid "" -"The :mod:`!tkinter` package (\"Tk interface\") is the standard Python " -"interface to the Tcl/Tk GUI toolkit. Both Tk and :mod:`!tkinter` are " -"available on most Unix platforms, including macOS, as well as on Windows " -"systems." +msgid "The :mod:`!tkinter` package (\"Tk interface\") is the standard Python interface to the Tcl/Tk GUI toolkit. Both Tk and :mod:`!tkinter` are available on most Unix platforms, including macOS, as well as on Windows systems." msgstr "" -#: ../../library/tkinter.rst:17 -msgid "" -"Running ``python -m tkinter`` from the command line should open a window " -"demonstrating a simple Tk interface, letting you know that :mod:`!tkinter` " -"is properly installed on your system, and also showing what version of Tcl/" -"Tk is installed, so you can read the Tcl/Tk documentation specific to that " -"version." +msgid "Running ``python -m tkinter`` from the command line should open a window demonstrating a simple Tk interface, letting you know that :mod:`!tkinter` is properly installed on your system, and also showing what version of Tcl/Tk is installed, so you can read the Tcl/Tk documentation specific to that version." msgstr "" -#: ../../library/tkinter.rst:22 -msgid "" -"Tkinter supports a range of Tcl/Tk versions, built either with or without " -"thread support. Tcl/Tk 8.5.12 is the minimum supported version; the official " -"Python binary release bundles Tcl/Tk 8.6. See the source code for " -"the :mod:`_tkinter` module for more information about supported versions." +msgid "Tkinter supports a range of Tcl/Tk versions, built either with or without thread support. Tcl/Tk 8.5.12 is the minimum supported version; the official Python binary release bundles Tcl/Tk 8.6. See the source code for the :mod:`_tkinter` module for more information about supported versions." msgstr "" -#: ../../library/tkinter.rst:29 msgid "Support for Tcl/Tk versions older than 8.5.12 was removed." msgstr "" -#: ../../library/tkinter.rst:32 -msgid "" -"Tkinter is not a thin wrapper, but adds a fair amount of its own logic to " -"make the experience more pythonic. This documentation will concentrate on " -"these additions and changes, and refer to the official Tcl/Tk documentation " -"for details that are unchanged." +msgid "Tkinter is not a thin wrapper, but adds a fair amount of its own logic to make the experience more pythonic. This documentation will concentrate on these additions and changes, and refer to the official Tcl/Tk documentation for details that are unchanged." msgstr "" -#: ../../library/tkinter.rst:39 -msgid "" -"Tcl/Tk 8.5 (2007) introduced a modern set of themed user interface " -"components along with a new API to use them (see :mod:`tkinter.ttk`). Both " -"old and new APIs are still available. Most documentation you will find " -"online still uses the old API and can be woefully outdated." +msgid "Tcl/Tk 8.5 (2007) introduced a modern set of themed user interface components along with a new API to use them (see :mod:`tkinter.ttk`). Both old and new APIs are still available. Most documentation you will find online still uses the old API and can be woefully outdated." msgstr "" -#: ../../includes/optional-module.rst:1 -msgid "" -"This is an :term:`optional module`. If it is missing from your copy of " -"CPython, look for documentation from your distributor (that is, whoever " -"provided Python to you). If you are the distributor, see :ref:`optional-" -"module-requirements`." +msgid "This is an :term:`optional module`. If it is missing from your copy of CPython, look for documentation from your distributor (that is, whoever provided Python to you). If you are the distributor, see :ref:`optional-module-requirements`." msgstr "" -#: ../../library/tkinter.rst:49 msgid "`TkDocs `_" msgstr "" -#: ../../library/tkinter.rst:50 -msgid "" -"Extensive tutorial on creating user interfaces with Tkinter. Explains key " -"concepts, and illustrates recommended approaches using the modern API." +msgid "Extensive tutorial on creating user interfaces with Tkinter. Explains key concepts, and illustrates recommended approaches using the modern API." msgstr "" -#: ../../library/tkinter.rst:53 -msgid "" -"`Tkinter 8.5 reference: a GUI for Python `_" +msgid "`Tkinter 8.5 reference: a GUI for Python `_" msgstr "" -#: ../../library/tkinter.rst:54 -msgid "" -"Reference documentation for Tkinter 8.5 detailing available classes, " -"methods, and options." +msgid "Reference documentation for Tkinter 8.5 detailing available classes, methods, and options." msgstr "" -#: ../../library/tkinter.rst:56 msgid "Tcl/Tk Resources:" msgstr "" -#: ../../library/tkinter.rst:58 msgid "`Tk commands `_" msgstr "" -#: ../../library/tkinter.rst:59 -msgid "" -"Comprehensive reference to each of the underlying Tcl/Tk commands used by " -"Tkinter." +msgid "Comprehensive reference to each of the underlying Tcl/Tk commands used by Tkinter." msgstr "" -#: ../../library/tkinter.rst:61 msgid "`Tcl/Tk Home Page `_" msgstr "" -#: ../../library/tkinter.rst:62 msgid "Additional documentation, and links to Tcl/Tk core development." msgstr "" -#: ../../library/tkinter.rst:64 msgid "Books:" msgstr "" -#: ../../library/tkinter.rst:66 -msgid "" -"`Modern Tkinter for Busy Python Developers `_" +msgid "`Modern Tkinter for Busy Python Developers `_" msgstr "" -#: ../../library/tkinter.rst:67 msgid "By Mark Roseman. (ISBN 978-1999149567)" msgstr "" -#: ../../library/tkinter.rst:69 -msgid "" -"`Python GUI programming with Tkinter `_" +msgid "`Python GUI programming with Tkinter `_" msgstr "" -#: ../../library/tkinter.rst:70 msgid "By Alan D. Moore. (ISBN 978-1788835886)" msgstr "" -#: ../../library/tkinter.rst:72 msgid "`Programming Python `_" msgstr "" -#: ../../library/tkinter.rst:73 msgid "By Mark Lutz; has excellent coverage of Tkinter. (ISBN 978-0596158101)" msgstr "" -#: ../../library/tkinter.rst:75 -msgid "" -"`Tcl and the Tk Toolkit (2nd edition) `_" +msgid "`Tcl and the Tk Toolkit (2nd edition) `_" msgstr "" -#: ../../library/tkinter.rst:76 -msgid "" -"By John Ousterhout, inventor of Tcl/Tk, and Ken Jones; does not cover " -"Tkinter. (ISBN 978-0321336330)" +msgid "By John Ousterhout, inventor of Tcl/Tk, and Ken Jones; does not cover Tkinter. (ISBN 978-0321336330)" msgstr "" -#: ../../library/tkinter.rst:80 msgid "Architecture" msgstr "" -#: ../../library/tkinter.rst:82 -msgid "" -"Tcl/Tk is not a single library but rather consists of a few distinct " -"modules, each with separate functionality and its own official " -"documentation. Python's binary releases also ship an add-on module together " -"with it." +msgid "Tcl/Tk is not a single library but rather consists of a few distinct modules, each with separate functionality and its own official documentation. Python's binary releases also ship an add-on module together with it." msgstr "" -#: ../../library/tkinter.rst:87 msgid "Tcl" msgstr "" -#: ../../library/tkinter.rst:88 -msgid "" -"Tcl is a dynamic interpreted programming language, just like Python. Though " -"it can be used on its own as a general-purpose programming language, it is " -"most commonly embedded into C applications as a scripting engine or an " -"interface to the Tk toolkit. The Tcl library has a C interface to create and " -"manage one or more instances of a Tcl interpreter, run Tcl commands and " -"scripts in those instances, and add custom commands implemented in either " -"Tcl or C. Each interpreter has an event queue, and there are facilities to " -"send events to it and process them. Unlike Python, Tcl's execution model is " -"designed around cooperative multitasking, and Tkinter bridges this " -"difference (see `Threading model`_ for details)." -msgstr "" - -#: ../../library/tkinter.rst:100 ../../library/tkinter.rst:900 +msgid "Tcl is a dynamic interpreted programming language, just like Python. Though it can be used on its own as a general-purpose programming language, it is most commonly embedded into C applications as a scripting engine or an interface to the Tk toolkit. The Tcl library has a C interface to create and manage one or more instances of a Tcl interpreter, run Tcl commands and scripts in those instances, and add custom commands implemented in either Tcl or C. Each interpreter has an event queue, and there are facilities to send events to it and process them. Unlike Python, Tcl's execution model is designed around cooperative multitasking, and Tkinter bridges this difference (see `Threading model`_ for details)." +msgstr "" + msgid "Tk" msgstr "" -#: ../../library/tkinter.rst:101 -msgid "" -"Tk is a `Tcl package `_ implemented in C " -"that adds custom commands to create and manipulate GUI widgets. " -"Each :class:`Tk` object embeds its own Tcl interpreter instance with Tk " -"loaded into it. Tk's widgets are very customizable, though at the cost of a " -"dated appearance. Tk uses Tcl's event queue to generate and process GUI " -"events." +msgid "Tk is a `Tcl package `_ implemented in C that adds custom commands to create and manipulate GUI widgets. Each :class:`Tk` object embeds its own Tcl interpreter instance with Tk loaded into it. Tk's widgets are very customizable, though at the cost of a dated appearance. Tk uses Tcl's event queue to generate and process GUI events." msgstr "" -#: ../../library/tkinter.rst:107 msgid "Ttk" msgstr "" -#: ../../library/tkinter.rst:108 -msgid "" -"Themed Tk (Ttk) is a newer family of Tk widgets that provide a much better " -"appearance on different platforms than many of the classic Tk widgets. Ttk " -"is distributed as part of Tk, starting with Tk version 8.5. Python bindings " -"are provided in a separate module, :mod:`tkinter.ttk`." +msgid "Themed Tk (Ttk) is a newer family of Tk widgets that provide a much better appearance on different platforms than many of the classic Tk widgets. Ttk is distributed as part of Tk, starting with Tk version 8.5. Python bindings are provided in a separate module, :mod:`tkinter.ttk`." msgstr "" -#: ../../library/tkinter.rst:113 -msgid "" -"Internally, Tk and Ttk use facilities of the underlying operating system, " -"that is, Xlib on Unix/X11, Cocoa on macOS, GDI on Windows." +msgid "Internally, Tk and Ttk use facilities of the underlying operating system, that is, Xlib on Unix/X11, Cocoa on macOS, GDI on Windows." msgstr "" -#: ../../library/tkinter.rst:116 -msgid "" -"When your Python application uses a class in Tkinter, for example, to create " -"a widget, the :mod:`!tkinter` module first assembles a Tcl/Tk command " -"string. It passes that Tcl command string to an internal :mod:`_tkinter` " -"binary module, which then calls the Tcl interpreter to evaluate it. The Tcl " -"interpreter will then call into the Tk and/or Ttk packages, which will in " -"turn make calls to Xlib, Cocoa, or GDI." +msgid "When your Python application uses a class in Tkinter, for example, to create a widget, the :mod:`!tkinter` module first assembles a Tcl/Tk command string. It passes that Tcl command string to an internal :mod:`_tkinter` binary module, which then calls the Tcl interpreter to evaluate it. The Tcl interpreter will then call into the Tk and/or Ttk packages, which will in turn make calls to Xlib, Cocoa, or GDI." msgstr "" -#: ../../library/tkinter.rst:124 msgid "Tkinter modules" msgstr "" -#: ../../library/tkinter.rst:126 -msgid "" -"Support for Tkinter is spread across several modules. Most applications will " -"need the main :mod:`!tkinter` module, as well as the :mod:`tkinter.ttk` " -"module, which provides the modern themed widget set and API::" +msgid "Support for Tkinter is spread across several modules. Most applications will need the main :mod:`!tkinter` module, as well as the :mod:`tkinter.ttk` module, which provides the modern themed widget set and API::" msgstr "" -#: ../../library/tkinter.rst:131 msgid "" "from tkinter import *\n" "from tkinter import ttk" msgstr "" -#: ../../library/tkinter.rst:135 msgid "The modules that provide Tk support include:" msgstr "" -#: ../../library/tkinter.rst:137 msgid ":mod:`!tkinter`" msgstr "" -#: ../../library/tkinter.rst:138 msgid "Main Tkinter module." msgstr "" -#: ../../library/tkinter.rst:140 msgid ":mod:`tkinter.colorchooser`" msgstr "" -#: ../../library/tkinter.rst:141 msgid "Dialog to let the user choose a color." msgstr "" -#: ../../library/tkinter.rst:143 msgid ":mod:`tkinter.commondialog`" msgstr "" -#: ../../library/tkinter.rst:144 msgid "Base class for the dialogs defined in the other modules listed here." msgstr "" -#: ../../library/tkinter.rst:146 msgid ":mod:`tkinter.filedialog`" msgstr "" -#: ../../library/tkinter.rst:147 msgid "Common dialogs to allow the user to specify a file to open or save." msgstr "" -#: ../../library/tkinter.rst:149 msgid ":mod:`tkinter.font`" msgstr "" -#: ../../library/tkinter.rst:150 msgid "Utilities to help work with fonts." msgstr "" -#: ../../library/tkinter.rst:152 msgid ":mod:`tkinter.messagebox`" msgstr "" -#: ../../library/tkinter.rst:153 msgid "Access to standard Tk dialog boxes." msgstr "" -#: ../../library/tkinter.rst:155 msgid ":mod:`tkinter.scrolledtext`" msgstr "" -#: ../../library/tkinter.rst:156 msgid "Text widget with a vertical scroll bar built in." msgstr "" -#: ../../library/tkinter.rst:158 msgid ":mod:`tkinter.simpledialog`" msgstr "" -#: ../../library/tkinter.rst:159 msgid "Basic dialogs and convenience functions." msgstr "" -#: ../../library/tkinter.rst:161 msgid ":mod:`tkinter.ttk`" msgstr "" -#: ../../library/tkinter.rst:162 -msgid "" -"Themed widget set introduced in Tk 8.5, providing modern alternatives for " -"many of the classic widgets in the main :mod:`!tkinter` module." +msgid "Themed widget set introduced in Tk 8.5, providing modern alternatives for many of the classic widgets in the main :mod:`!tkinter` module." msgstr "" -#: ../../library/tkinter.rst:165 msgid "Additional modules:" msgstr "" -#: ../../library/tkinter.rst:170 msgid ":mod:`_tkinter`" msgstr "" -#: ../../library/tkinter.rst:171 -msgid "" -"A binary module that contains the low-level interface to Tcl/Tk. It is " -"automatically imported by the main :mod:`!tkinter` module, and should never " -"be used directly by application programmers. It is usually a shared library " -"(or DLL), but might in some cases be statically linked with the Python " -"interpreter." +msgid "A binary module that contains the low-level interface to Tcl/Tk. It is automatically imported by the main :mod:`!tkinter` module, and should never be used directly by application programmers. It is usually a shared library (or DLL), but might in some cases be statically linked with the Python interpreter." msgstr "" -#: ../../library/tkinter.rst:177 msgid ":mod:`idlelib`" msgstr "" -#: ../../library/tkinter.rst:178 -msgid "" -"Python's Integrated Development and Learning Environment (IDLE). Based " -"on :mod:`!tkinter`." +msgid "Python's Integrated Development and Learning Environment (IDLE). Based on :mod:`!tkinter`." msgstr "" -#: ../../library/tkinter.rst:181 msgid ":mod:`!tkinter.constants`" msgstr "" -#: ../../library/tkinter.rst:182 -msgid "" -"Symbolic constants that can be used in place of strings when passing various " -"parameters to Tkinter calls. Automatically imported by the main :mod:`!" -"tkinter` module." +msgid "Symbolic constants that can be used in place of strings when passing various parameters to Tkinter calls. Automatically imported by the main :mod:`!tkinter` module." msgstr "" -#: ../../library/tkinter.rst:186 msgid ":mod:`tkinter.dnd`" msgstr "" -#: ../../library/tkinter.rst:187 -msgid "" -"(experimental) Drag-and-drop support for :mod:`!tkinter`. This will become " -"deprecated when it is replaced with the Tk DND." +msgid "(experimental) Drag-and-drop support for :mod:`!tkinter`. This will become deprecated when it is replaced with the Tk DND." msgstr "" -#: ../../library/tkinter.rst:190 msgid ":mod:`turtle`" msgstr "" -#: ../../library/tkinter.rst:191 msgid "Turtle graphics in a Tk window." msgstr "" -#: ../../library/tkinter.rst:197 msgid "Tkinter life preserver" msgstr "" -#: ../../library/tkinter.rst:199 -msgid "" -"This section is not designed to be an exhaustive tutorial on either Tk or " -"Tkinter. For that, refer to one of the external resources noted earlier. " -"Instead, this section provides a very quick orientation to what a Tkinter " -"application looks like, identifies foundational Tk concepts, and explains " -"how the Tkinter wrapper is structured." +msgid "This section is not designed to be an exhaustive tutorial on either Tk or Tkinter. For that, refer to one of the external resources noted earlier. Instead, this section provides a very quick orientation to what a Tkinter application looks like, identifies foundational Tk concepts, and explains how the Tkinter wrapper is structured." msgstr "" -#: ../../library/tkinter.rst:205 -msgid "" -"The remainder of this section will help you to identify the classes, " -"methods, and options you'll need in your Tkinter application, and where to " -"find more detailed documentation on them, including in the official Tcl/Tk " -"reference manual." +msgid "The remainder of this section will help you to identify the classes, methods, and options you'll need in your Tkinter application, and where to find more detailed documentation on them, including in the official Tcl/Tk reference manual." msgstr "" -#: ../../library/tkinter.rst:212 msgid "A Hello World program" msgstr "" -#: ../../library/tkinter.rst:214 -msgid "" -"We'll start by walking through a \"Hello World\" application in Tkinter. " -"This isn't the smallest one we could write, but has enough to illustrate " -"some key concepts you'll need to know." +msgid "We'll start by walking through a \"Hello World\" application in Tkinter. This isn't the smallest one we could write, but has enough to illustrate some key concepts you'll need to know." msgstr "" -#: ../../library/tkinter.rst:220 msgid "" "from tkinter import *\n" "from tkinter import ttk\n" @@ -438,741 +262,375 @@ msgid "" "root.mainloop()" msgstr "" -#: ../../library/tkinter.rst:230 -msgid "" -"After the imports, the next line creates an instance of the :class:`Tk` " -"class, which initializes Tk and creates its associated Tcl interpreter. It " -"also creates a toplevel window, known as the root window, which serves as " -"the main window of the application." +msgid "After the imports, the next line creates an instance of the :class:`Tk` class, which initializes Tk and creates its associated Tcl interpreter. It also creates a toplevel window, known as the root window, which serves as the main window of the application." msgstr "" -#: ../../library/tkinter.rst:235 -msgid "" -"The following line creates a frame widget, which in this case will contain a " -"label and a button we'll create next. The frame is fit inside the root " -"window." +msgid "The following line creates a frame widget, which in this case will contain a label and a button we'll create next. The frame is fit inside the root window." msgstr "" -#: ../../library/tkinter.rst:239 -msgid "" -"The next line creates a label widget holding a static text string. " -"The :meth:`~Grid.grid` method is used to specify the relative layout " -"(position) of the label within its containing frame widget, similar to how " -"tables in HTML work." +msgid "The next line creates a label widget holding a static text string. The :meth:`~Grid.grid` method is used to specify the relative layout (position) of the label within its containing frame widget, similar to how tables in HTML work." msgstr "" -#: ../../library/tkinter.rst:244 -msgid "" -"A button widget is then created, and placed to the right of the label. When " -"pressed, it will call the :meth:`~Misc.destroy` method of the root window." +msgid "A button widget is then created, and placed to the right of the label. When pressed, it will call the :meth:`~Misc.destroy` method of the root window." msgstr "" -#: ../../library/tkinter.rst:247 -msgid "" -"Finally, the :meth:`mainloop` method puts everything on the display, and " -"responds to user input until the program terminates." +msgid "Finally, the :meth:`mainloop` method puts everything on the display, and responds to user input until the program terminates." msgstr "" -#: ../../library/tkinter.rst:253 msgid "Important Tk concepts" msgstr "" -#: ../../library/tkinter.rst:255 msgid "Even this simple program illustrates the following key Tk concepts:" msgstr "" -#: ../../library/tkinter.rst:257 msgid "widgets" msgstr "" -#: ../../library/tkinter.rst:258 -msgid "" -"A Tkinter user interface is made up of individual *widgets*. Each widget is " -"represented as a Python object, instantiated from classes " -"like :class:`ttk.Frame`, :class:`ttk.Label`, and :class:`ttk.Button`." +msgid "A Tkinter user interface is made up of individual *widgets*. Each widget is represented as a Python object, instantiated from classes like :class:`ttk.Frame`, :class:`ttk.Label`, and :class:`ttk.Button`." msgstr "" -#: ../../library/tkinter.rst:262 msgid "widget hierarchy" msgstr "" -#: ../../library/tkinter.rst:263 -msgid "" -"Widgets are arranged in a *hierarchy*. The label and button were contained " -"within a frame, which in turn was contained within the root window. When " -"creating each *child* widget, its *parent* widget is passed as the first " -"argument to the widget constructor." +msgid "Widgets are arranged in a *hierarchy*. The label and button were contained within a frame, which in turn was contained within the root window. When creating each *child* widget, its *parent* widget is passed as the first argument to the widget constructor." msgstr "" -#: ../../library/tkinter.rst:268 msgid "configuration options" msgstr "" -#: ../../library/tkinter.rst:269 -msgid "" -"Widgets have *configuration options*, which modify their appearance and " -"behavior, such as the text to display in a label or button. Different " -"classes of widgets will have different sets of options." +msgid "Widgets have *configuration options*, which modify their appearance and behavior, such as the text to display in a label or button. Different classes of widgets will have different sets of options." msgstr "" -#: ../../library/tkinter.rst:273 msgid "geometry management" msgstr "" -#: ../../library/tkinter.rst:274 -msgid "" -"Widgets aren't automatically added to the user interface when they are " -"created. A *geometry manager* like ``grid`` controls where in the user " -"interface they are placed." +msgid "Widgets aren't automatically added to the user interface when they are created. A *geometry manager* like ``grid`` controls where in the user interface they are placed." msgstr "" -#: ../../library/tkinter.rst:278 msgid "event loop" msgstr "" -#: ../../library/tkinter.rst:279 -msgid "" -"Tkinter reacts to user input, changes from your program, and even refreshes " -"the display only when actively running an *event loop*. If your program " -"isn't running the event loop, your user interface won't update." +msgid "Tkinter reacts to user input, changes from your program, and even refreshes the display only when actively running an *event loop*. If your program isn't running the event loop, your user interface won't update." msgstr "" -#: ../../library/tkinter.rst:285 msgid "Understanding how Tkinter wraps Tcl/Tk" msgstr "" -#: ../../library/tkinter.rst:287 -msgid "" -"When your application uses Tkinter's classes and methods, internally Tkinter " -"is assembling strings representing Tcl/Tk commands, and executing those " -"commands in the Tcl interpreter attached to your application's :class:`Tk` " -"instance." +msgid "When your application uses Tkinter's classes and methods, internally Tkinter is assembling strings representing Tcl/Tk commands, and executing those commands in the Tcl interpreter attached to your application's :class:`Tk` instance." msgstr "" -#: ../../library/tkinter.rst:292 -msgid "" -"Whether it's trying to navigate reference documentation, trying to find the " -"right method or option, adapting some existing code, or debugging your " -"Tkinter application, there are times that it will be useful to understand " -"what those underlying Tcl/Tk commands look like." +msgid "Whether it's trying to navigate reference documentation, trying to find the right method or option, adapting some existing code, or debugging your Tkinter application, there are times that it will be useful to understand what those underlying Tcl/Tk commands look like." msgstr "" -#: ../../library/tkinter.rst:297 -msgid "" -"To illustrate, here is the Tcl/Tk equivalent of the main part of the Tkinter " -"script above." +msgid "To illustrate, here is the Tcl/Tk equivalent of the main part of the Tkinter script above." msgstr "" -#: ../../library/tkinter.rst:302 msgid "" "ttk::frame .frm -padding 10\n" "grid .frm\n" "grid [ttk::label .frm.lbl -text \"Hello World!\"] -column 0 -row 0\n" -"grid [ttk::button .frm.btn -text \"Quit\" -command \"destroy .\"] -column 1 " -"-row 0" +"grid [ttk::button .frm.btn -text \"Quit\" -command \"destroy .\"] -column 1 -row 0" msgstr "" -#: ../../library/tkinter.rst:308 -msgid "" -"Tcl's syntax is similar to many shell languages, where the first word is the " -"command to be executed, with arguments to that command following it, " -"separated by spaces. Without getting into too many details, notice the " -"following:" +msgid "Tcl's syntax is similar to many shell languages, where the first word is the command to be executed, with arguments to that command following it, separated by spaces. Without getting into too many details, notice the following:" msgstr "" -#: ../../library/tkinter.rst:312 -msgid "" -"The commands used to create widgets (like ``ttk::frame``) correspond to " -"widget classes in Tkinter." +msgid "The commands used to create widgets (like ``ttk::frame``) correspond to widget classes in Tkinter." msgstr "" -#: ../../library/tkinter.rst:315 -msgid "" -"Tcl widget options (like ``-text``) correspond to keyword arguments in " -"Tkinter." +msgid "Tcl widget options (like ``-text``) correspond to keyword arguments in Tkinter." msgstr "" -#: ../../library/tkinter.rst:318 -msgid "" -"Widgets are referred to by a *pathname* in Tcl (like ``.frm.btn``), whereas " -"Tkinter doesn't use names but object references." +msgid "Widgets are referred to by a *pathname* in Tcl (like ``.frm.btn``), whereas Tkinter doesn't use names but object references." msgstr "" -#: ../../library/tkinter.rst:321 -msgid "" -"A widget's place in the widget hierarchy is encoded in its (hierarchical) " -"pathname, which uses a ``.`` (dot) as a path separator. The pathname for the " -"root window is just ``.`` (dot). In Tkinter, the hierarchy is defined not by " -"pathname but by specifying the parent widget when creating each child widget." +msgid "A widget's place in the widget hierarchy is encoded in its (hierarchical) pathname, which uses a ``.`` (dot) as a path separator. The pathname for the root window is just ``.`` (dot). In Tkinter, the hierarchy is defined not by pathname but by specifying the parent widget when creating each child widget." msgstr "" -#: ../../library/tkinter.rst:327 -msgid "" -"Operations which are implemented as separate *commands* in Tcl (like " -"``grid`` or ``destroy``) are represented as *methods* on Tkinter widget " -"objects. As you'll see shortly, at other times Tcl uses what appear to be " -"method calls on widget objects, which more closely mirror what is used in " -"Tkinter." +msgid "Operations which are implemented as separate *commands* in Tcl (like ``grid`` or ``destroy``) are represented as *methods* on Tkinter widget objects. As you'll see shortly, at other times Tcl uses what appear to be method calls on widget objects, which more closely mirror what is used in Tkinter." msgstr "" -#: ../../library/tkinter.rst:335 msgid "How do I...? What option does...?" msgstr "" -#: ../../library/tkinter.rst:337 -msgid "" -"If you're not sure how to do something in Tkinter, and you can't immediately " -"find it in the tutorial or reference documentation you're using, there are a " -"few strategies that can be helpful." +msgid "If you're not sure how to do something in Tkinter, and you can't immediately find it in the tutorial or reference documentation you're using, there are a few strategies that can be helpful." msgstr "" -#: ../../library/tkinter.rst:341 -msgid "" -"First, remember that the details of how individual widgets work may vary " -"across different versions of both Tkinter and Tcl/Tk. If you're searching " -"documentation, make sure it corresponds to the Python and Tcl/Tk versions " -"installed on your system." +msgid "First, remember that the details of how individual widgets work may vary across different versions of both Tkinter and Tcl/Tk. If you're searching documentation, make sure it corresponds to the Python and Tcl/Tk versions installed on your system." msgstr "" -#: ../../library/tkinter.rst:346 -msgid "" -"When searching for how to use an API, it helps to know the exact name of the " -"class, option, or method that you're using. Introspection, either in an " -"interactive Python shell or with :func:`print`, can help you identify what " -"you need." +msgid "When searching for how to use an API, it helps to know the exact name of the class, option, or method that you're using. Introspection, either in an interactive Python shell or with :func:`print`, can help you identify what you need." msgstr "" -#: ../../library/tkinter.rst:351 -msgid "" -"To find out what configuration options are available on any widget, call " -"its :meth:`~Misc.configure` method, which returns a dictionary containing a " -"variety of information about each object, including its default and current " -"values. Use :meth:`~Misc.keys` to get just the names of each option." +msgid "To find out what configuration options are available on any widget, call its :meth:`~Misc.configure` method, which returns a dictionary containing a variety of information about each object, including its default and current values. Use :meth:`~Misc.keys` to get just the names of each option." msgstr "" -#: ../../library/tkinter.rst:358 msgid "" "btn = ttk.Button(frm, ...)\n" "print(btn.configure().keys())" msgstr "" -#: ../../library/tkinter.rst:361 -msgid "" -"As most widgets have many configuration options in common, it can be useful " -"to find out which are specific to a particular widget class. Comparing the " -"list of options to that of a simpler widget, like a frame, is one way to do " -"that." +msgid "As most widgets have many configuration options in common, it can be useful to find out which are specific to a particular widget class. Comparing the list of options to that of a simpler widget, like a frame, is one way to do that." msgstr "" -#: ../../library/tkinter.rst:368 msgid "print(set(btn.configure().keys()) - set(frm.configure().keys()))" msgstr "" -#: ../../library/tkinter.rst:370 -msgid "" -"Similarly, you can find the available methods for a widget object using the " -"standard :func:`dir` function. If you try it, you'll see there are over 200 " -"common widget methods, so again identifying those specific to a widget class " -"is helpful." +msgid "Similarly, you can find the available methods for a widget object using the standard :func:`dir` function. If you try it, you'll see there are over 200 common widget methods, so again identifying those specific to a widget class is helpful." msgstr "" -#: ../../library/tkinter.rst:377 msgid "" "print(dir(btn))\n" "print(set(dir(btn)) - set(dir(frm)))" msgstr "" -#: ../../library/tkinter.rst:382 msgid "Navigating the Tcl/Tk reference manual" msgstr "" -#: ../../library/tkinter.rst:384 -msgid "" -"As noted, the official `Tk commands `_ reference manual (man pages) is often the most accurate " -"description of what specific operations on widgets do. Even when you know " -"the name of the option or method that you need, you may still have a few " -"places to look." +msgid "As noted, the official `Tk commands `_ reference manual (man pages) is often the most accurate description of what specific operations on widgets do. Even when you know the name of the option or method that you need, you may still have a few places to look." msgstr "" -#: ../../library/tkinter.rst:391 -msgid "" -"While all operations in Tkinter are implemented as method calls on widget " -"objects, you've seen that many Tcl/Tk operations appear as commands that " -"take a widget pathname as its first parameter, followed by optional " -"parameters, for example" +msgid "While all operations in Tkinter are implemented as method calls on widget objects, you've seen that many Tcl/Tk operations appear as commands that take a widget pathname as its first parameter, followed by optional parameters, for example" msgstr "" -#: ../../library/tkinter.rst:398 msgid "" "destroy .\n" "grid .frm.btn -column 0 -row 0" msgstr "" -#: ../../library/tkinter.rst:401 -msgid "" -"Others, however, look more like methods called on a widget object (in fact, " -"when you create a widget in Tcl/Tk, it creates a Tcl command with the name " -"of the widget pathname, with the first parameter to that command being the " -"name of a method to call)." +msgid "Others, however, look more like methods called on a widget object (in fact, when you create a widget in Tcl/Tk, it creates a Tcl command with the name of the widget pathname, with the first parameter to that command being the name of a method to call)." msgstr "" -#: ../../library/tkinter.rst:408 msgid "" ".frm.btn invoke\n" ".frm.lbl configure -text \"Goodbye\"" msgstr "" -#: ../../library/tkinter.rst:412 -msgid "" -"In the official Tcl/Tk reference documentation, you'll find most operations " -"that look like method calls on the man page for a specific widget (for " -"example, you'll find the :meth:`~tkinter.ttk.Button.invoke` method on the " -"`ttk::button `_ " -"man page), while functions that take a widget as a parameter often have " -"their own man page (for example, `grid `_)." +msgid "In the official Tcl/Tk reference documentation, you'll find most operations that look like method calls on the man page for a specific widget (for example, you'll find the :meth:`~tkinter.ttk.Button.invoke` method on the `ttk::button `_ man page), while functions that take a widget as a parameter often have their own man page (for example, `grid `_)." msgstr "" -#: ../../library/tkinter.rst:420 -msgid "" -"You'll find many common options and methods in the `options `_ or `ttk::widget `_ man pages, while others are " -"found in the man page for a specific widget class." +msgid "You'll find many common options and methods in the `options `_ or `ttk::widget `_ man pages, while others are found in the man page for a specific widget class." msgstr "" -#: ../../library/tkinter.rst:425 -msgid "" -"You'll also find that many Tkinter methods have compound names, for " -"example, :meth:`~Misc.winfo_x`, :meth:`~Misc.winfo_height`, :meth:`~Misc.winfo_viewable`. " -"You'd find documentation for all of these in the `winfo `_ man page." +msgid "You'll also find that many Tkinter methods have compound names, for example, :meth:`~Misc.winfo_x`, :meth:`~Misc.winfo_height`, :meth:`~Misc.winfo_viewable`. You'd find documentation for all of these in the `winfo `_ man page." msgstr "" -#: ../../library/tkinter.rst:432 -msgid "" -"Somewhat confusingly, there are also methods on all Tkinter widgets that " -"don't actually operate on the widget, but operate at a global scope, " -"independent of any widget. Examples are methods for accessing the clipboard " -"or the system bell. (They happen to be implemented as methods in the " -"base :class:`Widget` class that all Tkinter widgets inherit from)." +msgid "Somewhat confusingly, there are also methods on all Tkinter widgets that don't actually operate on the widget, but operate at a global scope, independent of any widget. Examples are methods for accessing the clipboard or the system bell. (They happen to be implemented as methods in the base :class:`Widget` class that all Tkinter widgets inherit from)." msgstr "" -#: ../../library/tkinter.rst:441 msgid "Threading model" msgstr "" -#: ../../library/tkinter.rst:443 -msgid "" -"Python and Tcl/Tk have very different threading models, which :mod:`!" -"tkinter` tries to bridge. If you use threads, you may need to be aware of " -"this." +msgid "Python and Tcl/Tk have very different threading models, which :mod:`!tkinter` tries to bridge. If you use threads, you may need to be aware of this." msgstr "" -#: ../../library/tkinter.rst:446 -msgid "" -"A Python interpreter may have many threads associated with it. In Tcl, " -"multiple threads can be created, but each thread has a separate Tcl " -"interpreter instance associated with it. Threads can also create more than " -"one interpreter instance, though each interpreter instance can be used only " -"by the one thread that created it." +msgid "A Python interpreter may have many threads associated with it. In Tcl, multiple threads can be created, but each thread has a separate Tcl interpreter instance associated with it. Threads can also create more than one interpreter instance, though each interpreter instance can be used only by the one thread that created it." msgstr "" -#: ../../library/tkinter.rst:451 -msgid "" -"Each :class:`Tk` object created by :mod:`!tkinter` contains a Tcl " -"interpreter. It also keeps track of which thread created that interpreter. " -"Calls to :mod:`!tkinter` can be made from any Python thread. Internally, if " -"a call comes from a thread other than the one that created the :class:`Tk` " -"object, an event is posted to the interpreter's event queue, and when " -"executed, the result is returned to the calling Python thread." +msgid "Each :class:`Tk` object created by :mod:`!tkinter` contains a Tcl interpreter. It also keeps track of which thread created that interpreter. Calls to :mod:`!tkinter` can be made from any Python thread. Internally, if a call comes from a thread other than the one that created the :class:`Tk` object, an event is posted to the interpreter's event queue, and when executed, the result is returned to the calling Python thread." msgstr "" -#: ../../library/tkinter.rst:458 -msgid "" -"Tcl/Tk applications are normally event-driven, meaning that after " -"initialization, the interpreter runs an event loop (that " -"is, :meth:`Tk.mainloop `) and responds to events. Because it " -"is single-threaded, event handlers must respond quickly, otherwise they will " -"block other events from being processed. To avoid this, any long-running " -"computations should not run in an event handler, but are either broken into " -"smaller pieces using timers, or run in another thread. This is different " -"from many GUI toolkits where the GUI runs in a completely separate thread " -"from all application code including event handlers." -msgstr "" - -#: ../../library/tkinter.rst:469 -msgid "" -"If the Tcl interpreter is not running the event loop and processing events, " -"any :mod:`!tkinter` calls made from threads other than the one running the " -"Tcl interpreter will fail." +msgid "Tcl/Tk applications are normally event-driven, meaning that after initialization, the interpreter runs an event loop (that is, :meth:`Tk.mainloop `) and responds to events. Because it is single-threaded, event handlers must respond quickly, otherwise they will block other events from being processed. To avoid this, any long-running computations should not run in an event handler, but are either broken into smaller pieces using timers, or run in another thread. This is different from many GUI toolkits where the GUI runs in a completely separate thread from all application code including event handlers." +msgstr "" + +msgid "If the Tcl interpreter is not running the event loop and processing events, any :mod:`!tkinter` calls made from threads other than the one running the Tcl interpreter will fail." msgstr "" -#: ../../library/tkinter.rst:473 msgid "A number of special cases exist:" msgstr "" -#: ../../library/tkinter.rst:475 -msgid "" -"Tcl/Tk libraries built without thread support are now rare: the bundled Tcl/" -"Tk 8.6 is built with thread support, so this case only arises with some " -"older non-threaded builds. When the library is not thread-aware, :mod:`!" -"tkinter` calls the library from the originating Python thread, even if this " -"is different than the thread that created the Tcl interpreter. A global lock " -"ensures only one call occurs at a time." +msgid "Tcl/Tk libraries built without thread support are now rare: the bundled Tcl/Tk 8.6 is built with thread support, so this case only arises with some older non-threaded builds. When the library is not thread-aware, :mod:`!tkinter` calls the library from the originating Python thread, even if this is different than the thread that created the Tcl interpreter. A global lock ensures only one call occurs at a time." msgstr "" -#: ../../library/tkinter.rst:482 -msgid "" -"While :mod:`!tkinter` allows you to create more than one instance of " -"a :class:`Tk` object (with its own interpreter), all interpreters that are " -"part of the same thread share a common event queue, which gets ugly fast. In " -"practice, don't create more than one instance of :class:`Tk` at a time. " -"Otherwise, it's best to create them in separate threads and ensure you're " -"running a thread-aware Tcl/Tk build." +msgid "While :mod:`!tkinter` allows you to create more than one instance of a :class:`Tk` object (with its own interpreter), all interpreters that are part of the same thread share a common event queue, which gets ugly fast. In practice, don't create more than one instance of :class:`Tk` at a time. Otherwise, it's best to create them in separate threads and ensure you're running a thread-aware Tcl/Tk build." msgstr "" -#: ../../library/tkinter.rst:488 -msgid "" -"Blocking event handlers are not the only way to prevent the Tcl interpreter " -"from reentering the event loop. It is even possible to run multiple nested " -"event loops or abandon the event loop entirely. If you're doing anything " -"tricky when it comes to events or threads, be aware of these possibilities." +msgid "Blocking event handlers are not the only way to prevent the Tcl interpreter from reentering the event loop. It is even possible to run multiple nested event loops or abandon the event loop entirely. If you're doing anything tricky when it comes to events or threads, be aware of these possibilities." msgstr "" -#: ../../library/tkinter.rst:493 -msgid "" -"There are a few select :mod:`!tkinter` functions that presently work only " -"when called from the thread that created the Tcl interpreter." +msgid "There are a few select :mod:`!tkinter` functions that presently work only when called from the thread that created the Tcl interpreter." msgstr "" -#: ../../library/tkinter.rst:498 msgid "Handy reference" msgstr "" -#: ../../library/tkinter.rst:504 msgid "Setting options" msgstr "" -#: ../../library/tkinter.rst:506 -msgid "" -"Options control things like the color and border width of a widget. Options " -"can be set in three ways:" +msgid "Options control things like the color and border width of a widget. Options can be set in three ways:" msgstr "" -#: ../../library/tkinter.rst:509 msgid "At object creation time, using keyword arguments" msgstr "" -#: ../../library/tkinter.rst:512 msgid "fred = Button(self, fg=\"red\", bg=\"blue\")" msgstr "" -#: ../../library/tkinter.rst:514 msgid "After object creation, treating the option name like a dictionary index" msgstr "" -#: ../../library/tkinter.rst:517 msgid "" "fred[\"fg\"] = \"red\"\n" "fred[\"bg\"] = \"blue\"" msgstr "" -#: ../../library/tkinter.rst:520 -msgid "" -"Use the config() method to update multiple attrs subsequent to object " -"creation" +msgid "Use the config() method to update multiple attrs subsequent to object creation" msgstr "" -#: ../../library/tkinter.rst:523 msgid "fred.config(fg=\"red\", bg=\"blue\")" msgstr "" -#: ../../library/tkinter.rst:527 -msgid "" -"The ``fg`` and ``bg`` options used here, and other options that control a " -"widget's appearance, belong to the classic :mod:`!tkinter` widgets. The " -"themed :mod:`tkinter.ttk` widgets recommended in the introduction do not " -"accept them; style a themed widget through the :class:`ttk.Style " -"` class instead. The three ways of setting an option " -"shown above apply to both widget sets." +msgid "The ``fg`` and ``bg`` options used here, and other options that control a widget's appearance, belong to the classic :mod:`!tkinter` widgets. The themed :mod:`tkinter.ttk` widgets recommended in the introduction do not accept them; style a themed widget through the :class:`ttk.Style ` class instead. The three ways of setting an option shown above apply to both widget sets." msgstr "" -#: ../../library/tkinter.rst:536 -msgid "" -"For a complete explanation of a given option and its behavior, see the Tk " -"man pages for the widget in question." +msgid "For a complete explanation of a given option and its behavior, see the Tk man pages for the widget in question." msgstr "" -#: ../../library/tkinter.rst:539 -msgid "" -"Note that the man pages list \"STANDARD OPTIONS\" and \"WIDGET SPECIFIC " -"OPTIONS\" for each widget. The former is a list of options that are common " -"to many widgets, the latter are the options that are idiosyncratic to that " -"particular widget. The Standard Options are documented on " -"the :manpage:`options(3)` man page." +msgid "Note that the man pages list \"STANDARD OPTIONS\" and \"WIDGET SPECIFIC OPTIONS\" for each widget. The former is a list of options that are common to many widgets, the latter are the options that are idiosyncratic to that particular widget. The Standard Options are documented on the :manpage:`options(3)` man page." msgstr "" -#: ../../library/tkinter.rst:545 -msgid "" -"No distinction between standard and widget-specific options is made in this " -"document. Some options don't apply to some kinds of widgets. Whether a " -"given widget responds to a particular option depends on the class of the " -"widget; buttons have a ``command`` option, labels do not." +msgid "No distinction between standard and widget-specific options is made in this document. Some options don't apply to some kinds of widgets. Whether a given widget responds to a particular option depends on the class of the widget; buttons have a ``command`` option, labels do not." msgstr "" -#: ../../library/tkinter.rst:550 -msgid "" -"The options supported by a given widget are listed in that widget's man " -"page, or can be queried at runtime by calling the :meth:`~Misc.config` " -"method without arguments, or by calling the :meth:`~Misc.keys` method on " -"that widget. The return value of these calls is a dictionary whose key is " -"the name of the option as a string (for example, ``'relief'``) and whose " -"values are 5-tuples." +msgid "The options supported by a given widget are listed in that widget's man page, or can be queried at runtime by calling the :meth:`~Misc.config` method without arguments, or by calling the :meth:`~Misc.keys` method on that widget. The return value of these calls is a dictionary whose key is the name of the option as a string (for example, ``'relief'``) and whose values are 5-tuples." msgstr "" -#: ../../library/tkinter.rst:556 -msgid "" -"Some options, like ``bg``, are synonyms for common options with long names " -"(``bg`` is shorthand for \"background\")." +msgid "Some options, like ``bg``, are synonyms for common options with long names (``bg`` is shorthand for \"background\")." msgstr "" -#: ../../library/tkinter.rst:560 msgid "Index" msgstr "" -#: ../../library/tkinter.rst:560 msgid "Meaning" msgstr "" -#: ../../library/tkinter.rst:560 msgid "Example" msgstr "" -#: ../../library/tkinter.rst:562 msgid "0" msgstr "" -#: ../../library/tkinter.rst:562 msgid "option name" msgstr "" -#: ../../library/tkinter.rst:562 ../../library/tkinter.rst:564 msgid "``'relief'``" msgstr "" -#: ../../library/tkinter.rst:564 msgid "1" msgstr "" -#: ../../library/tkinter.rst:564 msgid "option name for database lookup" msgstr "" -#: ../../library/tkinter.rst:566 msgid "2" msgstr "" -#: ../../library/tkinter.rst:566 msgid "option class for database lookup" msgstr "" -#: ../../library/tkinter.rst:566 msgid "``'Relief'``" msgstr "" -#: ../../library/tkinter.rst:569 msgid "3" msgstr "" -#: ../../library/tkinter.rst:569 msgid "default value" msgstr "" -#: ../../library/tkinter.rst:569 msgid "``'raised'``" msgstr "" -#: ../../library/tkinter.rst:571 msgid "4" msgstr "" -#: ../../library/tkinter.rst:571 msgid "current value" msgstr "" -#: ../../library/tkinter.rst:571 msgid "``'groove'``" msgstr "" -#: ../../library/tkinter.rst:574 msgid "Example::" msgstr "" -#: ../../library/tkinter.rst:576 msgid "" ">>> print(fred.config())\n" "{'relief': ('relief', 'relief', 'Relief', 'raised', 'groove')}" msgstr "" -#: ../../library/tkinter.rst:579 -msgid "" -"Of course, the dictionary printed will include all the options available and " -"their values. This is meant only as an example." +msgid "Of course, the dictionary printed will include all the options available and their values. This is meant only as an example." msgstr "" -#: ../../library/tkinter.rst:589 msgid "Geometry management" msgstr "" -#: ../../library/tkinter.rst:595 -msgid "" -"Creating a widget does not display it. A widget appears only after it has " -"been handed to a *geometry manager*, which works out its size and position " -"inside its container and keeps the layout up to date as the container is " -"resized or its content changes. Forgetting to call a geometry manager is a " -"common early mistake: the widget is created, but nothing shows up." +msgid "Creating a widget does not display it. A widget appears only after it has been handed to a *geometry manager*, which works out its size and position inside its container and keeps the layout up to date as the container is resized or its content changes. Forgetting to call a geometry manager is a common early mistake: the widget is created, but nothing shows up." msgstr "" -#: ../../library/tkinter.rst:602 -msgid "" -"Tk provides three geometry managers. Each is inherited by every widget, so " -"any widget can be managed by any of them (but see the warning below about " -"the incompatibility of grid and pack). The choice depends on the kind of " -"layout you want." +msgid "Tk provides three geometry managers. Each is inherited by every widget, so any widget can be managed by any of them (but see the warning below about the incompatibility of grid and pack). The choice depends on the kind of layout you want." msgstr "" -#: ../../library/tkinter.rst:607 msgid ":meth:`grid `" msgstr "" -#: ../../library/tkinter.rst:608 -msgid "" -"Arranges widgets in a two-dimensional table of rows and columns. It is the " -"most flexible manager and the one to reach for by default: layouts that " -"would otherwise need several nested frames can often be expressed as a " -"single grid, and rows and columns can be told how to absorb extra space." +msgid "Arranges widgets in a two-dimensional table of rows and columns. It is the most flexible manager and the one to reach for by default: layouts that would otherwise need several nested frames can often be expressed as a single grid, and rows and columns can be told how to absorb extra space." msgstr "" -#: ../../library/tkinter.rst:616 msgid "" "ttk.Label(frm, text=\"Name:\").grid(column=0, row=0, sticky=\"w\")\n" "ttk.Entry(frm).grid(column=1, row=0)\n" "ttk.Button(frm, text=\"OK\").grid(column=1, row=1, sticky=\"e\")" msgstr "" -#: ../../library/tkinter.rst:620 msgid ":meth:`pack `" msgstr "" -#: ../../library/tkinter.rst:621 -msgid "" -"Stacks widgets against one side of their container -- ``\"top\"`` (the " -"default), ``\"bottom\"``, ``\"left\"`` or ``\"right\"`` -- and can make them " -"fill or expand into the space that is left. It is convenient for simple " -"arrangements, such as a single row or column of widgets or a content area " -"framed by a toolbar and a status bar." +msgid "Stacks widgets against one side of their container -- ``\"top\"`` (the default), ``\"bottom\"``, ``\"left\"`` or ``\"right\"`` -- and can make them fill or expand into the space that is left. It is convenient for simple arrangements, such as a single row or column of widgets or a content area framed by a toolbar and a status bar." msgstr "" -#: ../../library/tkinter.rst:630 msgid "" "toolbar.pack(side=\"top\", fill=\"x\")\n" "status.pack(side=\"bottom\", fill=\"x\")\n" "body.pack(side=\"left\", expand=True, fill=\"both\")" msgstr "" -#: ../../library/tkinter.rst:634 msgid ":meth:`place `" msgstr "" -#: ../../library/tkinter.rst:635 -msgid "" -"Positions each widget at an explicit spot, given either as absolute screen " -"distances or as a fraction of the container's size. It offers the most " -"control but the least automatic behavior, and is used the least; it suits " -"special cases such as overlapping widgets or precise custom layouts." +msgid "Positions each widget at an explicit spot, given either as absolute screen distances or as a fraction of the container's size. It offers the most control but the least automatic behavior, and is used the least; it suits special cases such as overlapping widgets or precise custom layouts." msgstr "" -#: ../../library/tkinter.rst:642 msgid "" "background.place(x=0, y=0, relwidth=1.0, relheight=1.0)\n" "badge.place(relx=1.0, rely=0.0, anchor=\"ne\")" msgstr "" -#: ../../library/tkinter.rst:645 -msgid "" -"Layouts are built up by nesting: grid or pack widgets, including frames, " -"inside a frame or toplevel. Toplevels are managed by the OS window manager. " -"Classic and themed :mod:`tkinter.ttk` widgets can be managed interchangeably." +msgid "Layouts are built up by nesting: grid or pack widgets, including frames, inside a frame or toplevel. Toplevels are managed by the OS window manager. Classic and themed :mod:`tkinter.ttk` widgets can be managed interchangeably." msgstr "" -#: ../../library/tkinter.rst:652 -msgid "" -"Do not apply :meth:`!pack` and :meth:`!grid` to two widgets that share the " -"same container. The two managers negotiate sizes in incompatible ways, and " -"the application can hang as they repeatedly resize the container against " -"each other. To combine them, keep each manager's widgets in a separate frame." +msgid "Do not apply :meth:`!pack` and :meth:`!grid` to two widgets that share the same container. The two managers negotiate sizes in incompatible ways, and the application can hang as they repeatedly resize the container against each other. To combine them, keep each manager's widgets in a separate frame." msgstr "" -#: ../../library/tkinter.rst:657 -msgid "" -"The full set of options accepted by each manager, with their values and " -"defaults, is documented " -"under :meth:`Grid.grid_configure`, :meth:`Pack.pack_configure` " -"and :meth:`Place.place_configure`; see also " -"the :manpage:`grid(3tk)`, :manpage:`pack(3tk)` and :manpage:`place(3tk)` man " -"pages." +msgid "The full set of options accepted by each manager, with their values and defaults, is documented under :meth:`Grid.grid_configure`, :meth:`Pack.pack_configure` and :meth:`Place.place_configure`; see also the :manpage:`grid(3tk)`, :manpage:`pack(3tk)` and :manpage:`place(3tk)` man pages." msgstr "" -#: ../../library/tkinter.rst:667 msgid "Coupling widget variables" msgstr "" -#: ../../library/tkinter.rst:669 -msgid "" -"Some widgets can tie their current value directly to a program variable, so " -"that the two stay in sync. Options such as ``variable``, ``textvariable``, " -"``value``, ``onvalue`` and ``offvalue`` set up this connection: when the " -"user changes the widget the variable is updated, and when the variable is " -"set the widget redraws to match." +msgid "Some widgets can tie their current value directly to a program variable, so that the two stay in sync. Options such as ``variable``, ``textvariable``, ``value``, ``onvalue`` and ``offvalue`` set up this connection: when the user changes the widget the variable is updated, and when the variable is set the widget redraws to match." msgstr "" -#: ../../library/tkinter.rst:676 -msgid "" -"A widget can be linked only to a :class:`Variable` object, not to an " -"ordinary Python variable. This is not a limitation of :mod:`!tkinter` but a " -"consequence of how the two languages differ: the link relies on Tcl being " -"notified every time the value changes, and Python offers no way to react " -"when a plain variable is reassigned. A :class:`Variable` sidesteps this by " -"keeping its value inside the Tcl interpreter and exposing it through " -"explicit :meth:`~Variable.get` and :meth:`~Variable.set` methods." +msgid "A widget can be linked only to a :class:`Variable` object, not to an ordinary Python variable. This is not a limitation of :mod:`!tkinter` but a consequence of how the two languages differ: the link relies on Tcl being notified every time the value changes, and Python offers no way to react when a plain variable is reassigned. A :class:`Variable` sidesteps this by keeping its value inside the Tcl interpreter and exposing it through explicit :meth:`~Variable.get` and :meth:`~Variable.set` methods." msgstr "" -#: ../../library/tkinter.rst:685 -msgid "" -"Ready-made subclasses cover the common " -"types: :class:`StringVar`, :class:`IntVar`, :class:`DoubleVar` " -"and :class:`BooleanVar`. Pass one as a widget's ``textvariable`` (or " -"``variable``) option, then read and update it with :meth:`~Variable.get` " -"and :meth:`~Variable.set`; the widget tracks it with no further work on your " -"part." +msgid "Ready-made subclasses cover the common types: :class:`StringVar`, :class:`IntVar`, :class:`DoubleVar` and :class:`BooleanVar`. Pass one as a widget's ``textvariable`` (or ``variable``) option, then read and update it with :meth:`~Variable.get` and :meth:`~Variable.set`; the widget tracks it with no further work on your part." msgstr "" -#: ../../library/tkinter.rst:691 -msgid "" -"Keep a reference to the variable for as long as the widget uses it -- for " -"example by storing it as an attribute. A :class:`Variable` that is garbage " -"collected removes its underlying Tcl variable, breaking the connection to " -"the widget (see :class:`Variable`)." +msgid "Keep a reference to the variable for as long as the widget uses it -- for example by storing it as an attribute. A :class:`Variable` that is garbage collected removes its underlying Tcl variable, breaking the connection to the widget (see :class:`Variable`)." msgstr "" -#: ../../library/tkinter.rst:696 ../../library/tkinter.rst:746 -#: ../../library/tkinter.rst:887 msgid "For example::" msgstr "" -#: ../../library/tkinter.rst:698 msgid "" "import tkinter as tk\n" "from tkinter import ttk\n" @@ -1202,31 +660,15 @@ msgid "" "root.mainloop()" msgstr "" -#: ../../library/tkinter.rst:728 msgid "The window manager" msgstr "" -#: ../../library/tkinter.rst:732 -msgid "" -"The *window manager* is the part of the desktop responsible for the title " -"bar, border and controls drawn around each top-level window, and for such " -"things as its title, position, size and icon. Tk gives access to these " -"through the :class:`Wm` mixin, which is inherited by the :class:`Tk` root " -"window and by every :class:`Toplevel`. You therefore call the window-manager " -"methods directly on a top-level window. Each has a short name and an " -"equivalent ``wm_``-prefixed name, for example :meth:`~Wm.title` " -"and :meth:`~Wm.wm_title`." +msgid "The *window manager* is the part of the desktop responsible for the title bar, border and controls drawn around each top-level window, and for such things as its title, position, size and icon. Tk gives access to these through the :class:`Wm` mixin, which is inherited by the :class:`Tk` root window and by every :class:`Toplevel`. You therefore call the window-manager methods directly on a top-level window. Each has a short name and an equivalent ``wm_``-prefixed name, for example :meth:`~Wm.title` and :meth:`~Wm.wm_title`." msgstr "" -#: ../../library/tkinter.rst:741 -msgid "" -"These methods act on the top-level window whether its content is built from " -"the classic widgets or the themed :mod:`tkinter.ttk` widgets. To reach the " -"top-level window containing an arbitrary widget, call " -"its :meth:`~Misc.winfo_toplevel` method." +msgid "These methods act on the top-level window whether its content is built from the classic widgets or the themed :mod:`tkinter.ttk` widgets. To reach the top-level window containing an arbitrary widget, call its :meth:`~Misc.winfo_toplevel` method." msgstr "" -#: ../../library/tkinter.rst:748 msgid "" "import tkinter as tk\n" "from tkinter import ttk\n" @@ -1241,241 +683,135 @@ msgid "" "root.mainloop()" msgstr "" -#: ../../library/tkinter.rst:760 msgid "See :class:`Wm` for the full set of window-manager methods." msgstr "" -#: ../../library/tkinter.rst:766 msgid "Tk option data types" msgstr "" -#: ../../library/tkinter.rst:770 -msgid "" -"Many widget options documented in the reference accept values of a small " -"number of common types, described here." +msgid "Many widget options documented in the reference accept values of a small number of common types, described here." msgstr "" -#: ../../library/tkinter.rst:773 msgid "anchor" msgstr "" -#: ../../library/tkinter.rst:774 -msgid "" -"Legal values are points of the compass: ``\"n\"``, ``\"ne\"``, ``\"e\"``, " -"``\"se\"``, ``\"s\"``, ``\"sw\"``, ``\"w\"``, ``\"nw\"``, and also " -"``\"center\"``." +msgid "Legal values are points of the compass: ``\"n\"``, ``\"ne\"``, ``\"e\"``, ``\"se\"``, ``\"s\"``, ``\"sw\"``, ``\"w\"``, ``\"nw\"``, and also ``\"center\"``." msgstr "" -#: ../../library/tkinter.rst:777 msgid "bitmap" msgstr "" -#: ../../library/tkinter.rst:778 -msgid "" -"There are ten built-in, named bitmaps: ``'error'``, ``'gray12'``, " -"``'gray25'``, ``'gray50'``, ``'gray75'``, ``'hourglass'``, ``'info'``, " -"``'questhead'``, ``'question'``, ``'warning'``. To specify an X bitmap " -"filename, give the full path to the file, preceded with an ``@``, as in " -"``\"@/usr/contrib/bitmap/gumby.bit\"``." +msgid "There are ten built-in, named bitmaps: ``'error'``, ``'gray12'``, ``'gray25'``, ``'gray50'``, ``'gray75'``, ``'hourglass'``, ``'info'``, ``'questhead'``, ``'question'``, ``'warning'``. To specify an X bitmap filename, give the full path to the file, preceded with an ``@``, as in ``\"@/usr/contrib/bitmap/gumby.bit\"``." msgstr "" -#: ../../library/tkinter.rst:784 msgid "boolean" msgstr "" -#: ../../library/tkinter.rst:785 msgid "You can pass integers 0 or 1 or the strings ``\"yes\"`` or ``\"no\"``." msgstr "" -#: ../../library/tkinter.rst:787 msgid "callback" msgstr "" -#: ../../library/tkinter.rst:788 msgid "This is any Python function that takes no arguments. For example::" msgstr "" -#: ../../library/tkinter.rst:790 msgid "" "def print_it():\n" " print(\"hi there\")\n" "fred[\"command\"] = print_it" msgstr "" -#: ../../library/tkinter.rst:794 msgid "color" msgstr "" -#: ../../library/tkinter.rst:795 -msgid "" -"Colors can be given as the names of X colors in the rgb.txt file, or as " -"strings representing RGB values in 4 bit: ``\"#RGB\"``, 8 bit: " -"``\"#RRGGBB\"``, 12 bit: ``\"#RRRGGGBBB\"``, or 16 bit: " -"``\"#RRRRGGGGBBBB\"`` ranges, where R,G,B here represent any legal hex " -"digit. See the :manpage:`colors(3tk)` man page for the list of named colors." +msgid "Colors can be given as the names of X colors in the rgb.txt file, or as strings representing RGB values in 4 bit: ``\"#RGB\"``, 8 bit: ``\"#RRGGBB\"``, 12 bit: ``\"#RRRGGGBBB\"``, or 16 bit: ``\"#RRRRGGGGBBBB\"`` ranges, where R,G,B here represent any legal hex digit. See the :manpage:`colors(3tk)` man page for the list of named colors." msgstr "" -#: ../../library/tkinter.rst:801 msgid "cursor" msgstr "" -#: ../../library/tkinter.rst:802 -msgid "" -"The name of the mouse cursor to display while the pointer is over the " -"widget. Tk provides a portable set of cursor names available on all " -"platforms (for example ``\"arrow\"``, ``\"watch\"``, ``\"cross\"``, or " -"``\"hand2\"``); the standard X cursor names from :file:`cursorfont.h` may " -"also be used, without the ``XC_`` prefix (so ``XC_hand2`` becomes " -"``\"hand2\"``). The full list of names, including the platform-specific " -"ones, is given in the :manpage:`cursors(3tk)` manual page. You can also " -"specify a bitmap and mask file of your own. On Windows a cursor file " -"(:file:`.cur` or :file:`.ani`) may be used directly, giving its path " -"preceded with an ``@``, as in ``\"@C:/cursors/bart.ani\"``." -msgstr "" - -#: ../../library/tkinter.rst:813 +msgid "The name of the mouse cursor to display while the pointer is over the widget. Tk provides a portable set of cursor names available on all platforms (for example ``\"arrow\"``, ``\"watch\"``, ``\"cross\"``, or ``\"hand2\"``); the standard X cursor names from :file:`cursorfont.h` may also be used, without the ``XC_`` prefix (so ``XC_hand2`` becomes ``\"hand2\"``). The full list of names, including the platform-specific ones, is given in the :manpage:`cursors(3tk)` manual page. You can also specify a bitmap and mask file of your own. On Windows a cursor file (:file:`.cur` or :file:`.ani`) may be used directly, giving its path preceded with an ``@``, as in ``\"@C:/cursors/bart.ani\"``." +msgstr "" + msgid "distance" msgstr "" -#: ../../library/tkinter.rst:814 -msgid "" -"Screen distances can be specified in either pixels or absolute distances. " -"Pixels are given as numbers and absolute distances as strings, with the " -"trailing character denoting units: ``c`` for centimetres, ``i`` for inches, " -"``m`` for millimetres, ``p`` for printer's points. For example, 3.5 inches " -"is expressed as ``\"3.5i\"``." +msgid "Screen distances can be specified in either pixels or absolute distances. Pixels are given as numbers and absolute distances as strings, with the trailing character denoting units: ``c`` for centimetres, ``i`` for inches, ``m`` for millimetres, ``p`` for printer's points. For example, 3.5 inches is expressed as ``\"3.5i\"``." msgstr "" -#: ../../library/tkinter.rst:820 msgid "font" msgstr "" -#: ../../library/tkinter.rst:821 -msgid "" -"Tk uses a font description such as ``{courier 10 bold}``; in :mod:`!tkinter` " -"this is most naturally passed as a tuple of ``(family, size, *styles)`` (or " -"as the equivalent string ``\"Courier 10 bold\"``). Font sizes with positive " -"numbers are measured in points; sizes with negative numbers are measured in " -"pixels." +msgid "Tk uses a font description such as ``{courier 10 bold}``; in :mod:`!tkinter` this is most naturally passed as a tuple of ``(family, size, *styles)`` (or as the equivalent string ``\"Courier 10 bold\"``). Font sizes with positive numbers are measured in points; sizes with negative numbers are measured in pixels." msgstr "" -#: ../../library/tkinter.rst:827 msgid "geometry" msgstr "" -#: ../../library/tkinter.rst:828 -msgid "" -"This is a string of the form ``widthxheight``, where width and height are " -"measured in pixels for most widgets (in characters for widgets displaying " -"text). For example: ``fred[\"geometry\"] = \"200x100\"``." +msgid "This is a string of the form ``widthxheight``, where width and height are measured in pixels for most widgets (in characters for widgets displaying text). For example: ``fred[\"geometry\"] = \"200x100\"``." msgstr "" -#: ../../library/tkinter.rst:832 msgid "justify" msgstr "" -#: ../../library/tkinter.rst:833 -msgid "" -"Legal values are the strings: ``\"left\"``, ``\"center\"``, and " -"``\"right\"``." +msgid "Legal values are the strings: ``\"left\"``, ``\"center\"``, and ``\"right\"``." msgstr "" -#: ../../library/tkinter.rst:835 msgid "region" msgstr "" -#: ../../library/tkinter.rst:836 -msgid "" -"This is a string with four space-delimited elements, each of which is a " -"legal distance (see above). For example: ``\"2 3 4 5\"`` and ``\"3i 2i 4.5i " -"2i\"`` and ``\"3c 2c 4c 10.43c\"`` are all legal regions." +msgid "This is a string with four space-delimited elements, each of which is a legal distance (see above). For example: ``\"2 3 4 5\"`` and ``\"3i 2i 4.5i 2i\"`` and ``\"3c 2c 4c 10.43c\"`` are all legal regions." msgstr "" -#: ../../library/tkinter.rst:840 msgid "relief" msgstr "" -#: ../../library/tkinter.rst:841 -msgid "" -"Determines what the border style of a widget will be. Legal values are: " -"``\"raised\"``, ``\"sunken\"``, ``\"flat\"``, ``\"groove\"``, ``\"ridge\"``, " -"and ``\"solid\"``." +msgid "Determines what the border style of a widget will be. Legal values are: ``\"raised\"``, ``\"sunken\"``, ``\"flat\"``, ``\"groove\"``, ``\"ridge\"``, and ``\"solid\"``." msgstr "" -#: ../../library/tkinter.rst:845 msgid "scrollcommand" msgstr "" -#: ../../library/tkinter.rst:846 -msgid "" -"This is almost always the :meth:`!set` method of some scrollbar widget, but " -"can be any widget method that takes a single argument." +msgid "This is almost always the :meth:`!set` method of some scrollbar widget, but can be any widget method that takes a single argument." msgstr "" -#: ../../library/tkinter.rst:849 msgid "wrap" msgstr "" -#: ../../library/tkinter.rst:850 msgid "Must be one of: ``\"none\"``, ``\"char\"``, or ``\"word\"``." msgstr "" -#: ../../library/tkinter.rst:855 msgid "Bindings and events" msgstr "" -#: ../../library/tkinter.rst:861 -msgid "" -"The bind method from the widget command allows you to watch for certain " -"events and to have a callback function trigger when that event type occurs. " -"The form of the bind method is::" +msgid "The bind method from the widget command allows you to watch for certain events and to have a callback function trigger when that event type occurs. The form of the bind method is::" msgstr "" -#: ../../library/tkinter.rst:865 msgid "def bind(self, sequence, func, add=''):" msgstr "" -#: ../../library/tkinter.rst:867 msgid "where:" msgstr "" -#: ../../library/tkinter.rst:869 msgid "sequence" msgstr "" -#: ../../library/tkinter.rst:870 -msgid "" -"is a string that denotes the target kind of event. Physical events use the " -"```` form (for example ``\"\"`` or " -"``\"\"``); application-defined virtual events use double " -"angle brackets, as in ``\"<>\"``. (See the :manpage:`bind(3tk)` man " -"page for details.)" +msgid "is a string that denotes the target kind of event. Physical events use the ```` form (for example ``\"\"`` or ``\"\"``); application-defined virtual events use double angle brackets, as in ``\"<>\"``. (See the :manpage:`bind(3tk)` man page for details.)" msgstr "" -#: ../../library/tkinter.rst:876 msgid "func" msgstr "" -#: ../../library/tkinter.rst:877 -msgid "" -"is a Python function, taking one argument, to be invoked when the event " -"occurs. An Event instance will be passed as the argument. (Functions " -"deployed this way are commonly known as *callbacks*.)" +msgid "is a Python function, taking one argument, to be invoked when the event occurs. An Event instance will be passed as the argument. (Functions deployed this way are commonly known as *callbacks*.)" msgstr "" -#: ../../library/tkinter.rst:881 msgid "add" msgstr "" -#: ../../library/tkinter.rst:882 -msgid "" -"is optional, either ``''`` or ``'+'``. Passing an empty string denotes that " -"this binding is to replace any other bindings that this event is associated " -"with. Passing a ``'+'`` means that this function is to be added to the list " -"of functions bound to this event type." +msgid "is optional, either ``''`` or ``'+'``. Passing an empty string denotes that this binding is to replace any other bindings that this event is associated with. Passing a ``'+'`` means that this function is to be added to the list of functions bound to this event type." msgstr "" -#: ../../library/tkinter.rst:889 msgid "" "def turn_red(self, event):\n" " event.widget[\"activeforeground\"] = \"red\"\n" @@ -1483,6189 +819,2891 @@ msgid "" "self.button.bind(\"\", self.turn_red)" msgstr "" -#: ../../library/tkinter.rst:894 -msgid "" -"Notice how the widget field of the event is being accessed in the " -"``turn_red()`` callback. This field contains the widget that caught the X " -"event. The following table lists the other event fields you can access, and " -"how they are denoted in Tk, which can be useful when referring to the Tk man " -"pages." +msgid "Notice how the widget field of the event is being accessed in the ``turn_red()`` callback. This field contains the widget that caught the X event. The following table lists the other event fields you can access, and how they are denoted in Tk, which can be useful when referring to the Tk man pages." msgstr "" -#: ../../library/tkinter.rst:900 msgid "Tkinter Event Field" msgstr "" -#: ../../library/tkinter.rst:902 msgid "%f" msgstr "" -#: ../../library/tkinter.rst:902 msgid "focus" msgstr "" -#: ../../library/tkinter.rst:902 msgid "%A" msgstr "" -#: ../../library/tkinter.rst:902 msgid "char" msgstr "" -#: ../../library/tkinter.rst:904 msgid "%h" msgstr "" -#: ../../library/tkinter.rst:904 msgid "height" msgstr "" -#: ../../library/tkinter.rst:904 msgid "%E" msgstr "" -#: ../../library/tkinter.rst:904 msgid "send_event" msgstr "" -#: ../../library/tkinter.rst:906 msgid "%k" msgstr "" -#: ../../library/tkinter.rst:906 msgid "keycode" msgstr "" -#: ../../library/tkinter.rst:906 msgid "%K" msgstr "" -#: ../../library/tkinter.rst:906 msgid "keysym" msgstr "" -#: ../../library/tkinter.rst:908 msgid "%s" msgstr "" -#: ../../library/tkinter.rst:908 msgid "state" msgstr "" -#: ../../library/tkinter.rst:908 msgid "%N" msgstr "" -#: ../../library/tkinter.rst:908 msgid "keysym_num" msgstr "" -#: ../../library/tkinter.rst:910 msgid "%t" msgstr "" -#: ../../library/tkinter.rst:910 msgid "time" msgstr "" -#: ../../library/tkinter.rst:910 msgid "%T" msgstr "" -#: ../../library/tkinter.rst:910 msgid "type" msgstr "" -#: ../../library/tkinter.rst:912 msgid "%w" msgstr "" -#: ../../library/tkinter.rst:912 msgid "width" msgstr "" -#: ../../library/tkinter.rst:912 msgid "%W" msgstr "" -#: ../../library/tkinter.rst:912 msgid "widget" msgstr "" -#: ../../library/tkinter.rst:914 msgid "%x" msgstr "" -#: ../../library/tkinter.rst:914 msgid "x" msgstr "" -#: ../../library/tkinter.rst:914 msgid "%X" msgstr "" -#: ../../library/tkinter.rst:914 msgid "x_root" msgstr "" -#: ../../library/tkinter.rst:916 msgid "%y" msgstr "" -#: ../../library/tkinter.rst:916 msgid "y" msgstr "" -#: ../../library/tkinter.rst:916 msgid "%Y" msgstr "" -#: ../../library/tkinter.rst:916 msgid "y_root" msgstr "" -#: ../../library/tkinter.rst:918 msgid "%#" msgstr "" -#: ../../library/tkinter.rst:918 msgid "serial" msgstr "" -#: ../../library/tkinter.rst:918 msgid "%b" msgstr "" -#: ../../library/tkinter.rst:918 msgid "num" msgstr "" -#: ../../library/tkinter.rst:920 msgid "%d" msgstr "" -#: ../../library/tkinter.rst:920 msgid "detail" msgstr "" -#: ../../library/tkinter.rst:920 msgid "%D" msgstr "" -#: ../../library/tkinter.rst:920 msgid "delta" msgstr "" -#: ../../library/tkinter.rst:923 -msgid "" -"The ``add`` parameter above only affects the bindings you make yourself. " -"Every widget also inherits *class bindings* that implement its standard " -"behavior -- for example a :class:`Text` widget binds :kbd:`Control-t` to " -"transpose two characters. These are described in the bindings section of the " -"widget's Tk man page (such as :manpage:`text(3tk)` or :manpage:`entry(3tk)`)." +msgid "The ``add`` parameter above only affects the bindings you make yourself. Every widget also inherits *class bindings* that implement its standard behavior -- for example a :class:`Text` widget binds :kbd:`Control-t` to transpose two characters. These are described in the bindings section of the widget's Tk man page (such as :manpage:`text(3tk)` or :manpage:`entry(3tk)`)." msgstr "" -#: ../../library/tkinter.rst:931 -msgid "" -"Class bindings are processed separately from your own, so binding an event " -"yourself does not replace the default; both run. To suppress an unwanted " -"default binding, bind the event on the widget and return the string " -"``\"break\"`` from your callback." +msgid "Class bindings are processed separately from your own, so binding an event yourself does not replace the default; both run. To suppress an unwanted default binding, bind the event on the widget and return the string ``\"break\"`` from your callback." msgstr "" -#: ../../library/tkinter.rst:939 msgid "The index parameter" msgstr "" -#: ../../library/tkinter.rst:941 -msgid "" -"A number of widgets require \"index\" parameters to be passed. These are " -"used to point at a specific place in a Text widget, or to particular " -"characters in an Entry widget, or to particular menu items in a Menu widget." +msgid "A number of widgets require \"index\" parameters to be passed. These are used to point at a specific place in a Text widget, or to particular characters in an Entry widget, or to particular menu items in a Menu widget." msgstr "" -#: ../../library/tkinter.rst:945 msgid "Entry widget indexes (index, view index, etc.)" msgstr "" -#: ../../library/tkinter.rst:946 -msgid "" -"Entry widgets have methods and options that refer to character positions in " -"the text being displayed. Anytime an index is needed, you may pass in:" +msgid "Entry widgets have methods and options that refer to character positions in the text being displayed. Anytime an index is needed, you may pass in:" msgstr "" -#: ../../library/tkinter.rst:950 -msgid "" -"an integer which refers to the numeric position of a character, counted from " -"the beginning of the text, starting with 0;" +msgid "an integer which refers to the numeric position of a character, counted from the beginning of the text, starting with 0;" msgstr "" -#: ../../library/tkinter.rst:953 -msgid "" -"the string ``\"anchor\"``, which refers to the anchor point of the " -"selection, set with the widget's selection methods;" +msgid "the string ``\"anchor\"``, which refers to the anchor point of the selection, set with the widget's selection methods;" msgstr "" -#: ../../library/tkinter.rst:957 -msgid "" -"the string ``\"end\"``, which refers to the position just after the last " -"character;" +msgid "the string ``\"end\"``, which refers to the position just after the last character;" msgstr "" -#: ../../library/tkinter.rst:960 -msgid "" -"the string ``\"insert\"``, which refers to the character just after the " -"insertion cursor;" +msgid "the string ``\"insert\"``, which refers to the character just after the insertion cursor;" msgstr "" -#: ../../library/tkinter.rst:963 -msgid "" -"the strings ``\"sel.first\"`` and ``\"sel.last\"``, which refer to the first " -"character in the selection and the position just after the last (it is an " -"error to use these if there is no selection);" +msgid "the strings ``\"sel.first\"`` and ``\"sel.last\"``, which refer to the first character in the selection and the position just after the last (it is an error to use these if there is no selection);" msgstr "" -#: ../../library/tkinter.rst:968 -msgid "" -"a string consisting of ``@`` followed by an integer, as in ``\"@6\"``, where " -"the integer is interpreted as an x pixel coordinate in the entry's " -"coordinate system, selecting the character spanning that point." +msgid "a string consisting of ``@`` followed by an integer, as in ``\"@6\"``, where the integer is interpreted as an x pixel coordinate in the entry's coordinate system, selecting the character spanning that point." msgstr "" -#: ../../library/tkinter.rst:973 msgid "Text widget indexes" msgstr "" -#: ../../library/tkinter.rst:974 -msgid "" -"The index notation for Text widgets is very rich and is best described in " -"the Tk man pages." +msgid "The index notation for Text widgets is very rich and is best described in the Tk man pages." msgstr "" -#: ../../library/tkinter.rst:977 msgid "Menu indexes (menu.invoke(), menu.entryconfig(), etc.)" msgstr "" -#: ../../library/tkinter.rst:978 -msgid "" -"Some options and methods for menus manipulate specific menu entries. Anytime " -"a menu index is needed for an option or a parameter, you may pass in:" +msgid "Some options and methods for menus manipulate specific menu entries. Anytime a menu index is needed for an option or a parameter, you may pass in:" msgstr "" -#: ../../library/tkinter.rst:981 -msgid "" -"an integer which refers to the numeric position of the entry in the widget, " -"counted from the top, starting with 0;" +msgid "an integer which refers to the numeric position of the entry in the widget, counted from the top, starting with 0;" msgstr "" -#: ../../library/tkinter.rst:984 -msgid "" -"the string ``\"active\"``, which refers to the menu position that is " -"currently under the cursor;" +msgid "the string ``\"active\"``, which refers to the menu position that is currently under the cursor;" msgstr "" -#: ../../library/tkinter.rst:987 msgid "the string ``\"last\"`` which refers to the last menu item;" msgstr "" -#: ../../library/tkinter.rst:989 -msgid "" -"a string consisting of ``@`` followed by an integer, as in ``\"@6\"``, where " -"the integer is interpreted as a y pixel coordinate in the menu's coordinate " -"system;" +msgid "a string consisting of ``@`` followed by an integer, as in ``\"@6\"``, where the integer is interpreted as a y pixel coordinate in the menu's coordinate system;" msgstr "" -#: ../../library/tkinter.rst:993 -msgid "" -"the string ``\"none\"``, which indicates no menu entry at all, most often " -"used with menu.activate() to deactivate all entries, and finally," +msgid "the string ``\"none\"``, which indicates no menu entry at all, most often used with menu.activate() to deactivate all entries, and finally," msgstr "" -#: ../../library/tkinter.rst:996 -msgid "" -"a text string that is pattern matched against the label of the menu entry, " -"as scanned from the top of the menu to the bottom. Note that this index " -"type is considered after all the others, which means that matches for menu " -"items labelled ``last``, ``active``, or ``none`` may be interpreted as the " -"above literals, instead." +msgid "a text string that is pattern matched against the label of the menu entry, as scanned from the top of the menu to the bottom. Note that this index type is considered after all the others, which means that matches for menu items labelled ``last``, ``active``, or ``none`` may be interpreted as the above literals, instead." msgstr "" -#: ../../library/tkinter.rst:1004 msgid "Images" msgstr "" -#: ../../library/tkinter.rst:1006 -msgid "" -"Images of different formats can be created through the corresponding " -"subclass of :class:`tkinter.Image`:" +msgid "Images of different formats can be created through the corresponding subclass of :class:`tkinter.Image`:" msgstr "" -#: ../../library/tkinter.rst:1009 msgid ":class:`BitmapImage` for images in XBM format." msgstr "" -#: ../../library/tkinter.rst:1011 -msgid "" -":class:`PhotoImage` for images in PGM, PPM, GIF and PNG formats. The latter " -"is supported starting with Tk 8.6." +msgid ":class:`PhotoImage` for images in PGM, PPM, GIF and PNG formats. The latter is supported starting with Tk 8.6." msgstr "" -#: ../../library/tkinter.rst:1014 -msgid "" -"Either type of image is created through either the ``file`` or the ``data`` " -"option (other options are available as well)." +msgid "Either type of image is created through either the ``file`` or the ``data`` option (other options are available as well)." msgstr "" -#: ../../library/tkinter.rst:1017 -msgid "" -"Added the :class:`!PhotoImage` method :meth:`!copy_replace` to copy a region " -"from one image to other image, possibly with pixel zooming and/or " -"subsampling. Add *from_coords* parameter to :class:`!PhotoImage` " -"methods :meth:`!copy`, :meth:`!zoom` and :meth:`!subsample`. Add *zoom* and " -"*subsample* parameters to :class:`!PhotoImage` method :meth:`!copy`." +msgid "Added the :class:`!PhotoImage` method :meth:`!copy_replace` to copy a region from one image to other image, possibly with pixel zooming and/or subsampling. Add *from_coords* parameter to :class:`!PhotoImage` methods :meth:`!copy`, :meth:`!zoom` and :meth:`!subsample`. Add *zoom* and *subsample* parameters to :class:`!PhotoImage` method :meth:`!copy`." msgstr "" -#: ../../library/tkinter.rst:1026 -msgid "" -"The image object can then be used wherever an ``image`` option is supported " -"by some widget (for example, labels, buttons, menus). In these cases, Tk " -"will not keep a reference to the image. When the last Python reference to " -"the image object is deleted, the image data is deleted as well, and Tk will " -"display an empty box wherever the image was used." +msgid "The image object can then be used wherever an ``image`` option is supported by some widget (for example, labels, buttons, menus). In these cases, Tk will not keep a reference to the image. When the last Python reference to the image object is deleted, the image data is deleted as well, and Tk will display an empty box wherever the image was used." msgstr "" -#: ../../library/tkinter.rst:1034 -msgid "" -"The `Pillow `_ package adds support for formats " -"such as BMP, JPEG, TIFF, and WebP, among others." +msgid "The `Pillow `_ package adds support for formats such as BMP, JPEG, TIFF, and WebP, among others." msgstr "" -#: ../../library/tkinter.rst:1039 msgid "Reference" msgstr "" -#: ../../library/tkinter.rst:1043 -msgid "" -"This section documents the classes, methods, functions and constants of " -"the :mod:`!tkinter` module. Most of them wrap Tcl/Tk commands; consult the " -"official Tcl/Tk manual pages for the full list of widget options and further " -"details." +msgid "This section documents the classes, methods, functions and constants of the :mod:`!tkinter` module. Most of them wrap Tcl/Tk commands; consult the official Tcl/Tk manual pages for the full list of widget options and further details." msgstr "" -#: ../../library/tkinter.rst:1050 -msgid "" -"The exception raised when a call into the Tcl interpreter fails, for example " -"when a widget is given an unknown option or an invalid value." +msgid "The exception raised when a call into the Tcl interpreter fails, for example when a widget is given an unknown option or an invalid value." msgstr "" -#: ../../library/tkinter.rst:1054 msgid "Base and mixin classes" msgstr "" -#: ../../library/tkinter.rst:1058 -msgid "" -"The :class:`!Misc` class is a mix-in inherited by :class:`Tk` and, " -"through :class:`BaseWidget`, by every widget. It provides the large set of " -"methods common to all Tk objects: querying window information, managing " -"event bindings and the event loop, controlling the keyboard focus and " -"pointer grabs, accessing the selection, clipboard and option database, and " -"assorted utility and introspection services. Because they are inherited, " -"these methods are available on every widget and on the :class:`Tk` " -"application object, and are documented here once rather than repeated for " -"each widget." -msgstr "" - -#: ../../library/tkinter.rst:1070 -msgid "" -"Return the current value of the configuration option named *key* for this " -"widget, as a string. The expression ``widget[key]`` is equivalent and may be " -"used instead." +msgid "The :class:`!Misc` class is a mix-in inherited by :class:`Tk` and, through :class:`BaseWidget`, by every widget. It provides the large set of methods common to all Tk objects: querying window information, managing event bindings and the event loop, controlling the keyboard focus and pointer grabs, accessing the selection, clipboard and option database, and assorted utility and introspection services. Because they are inherited, these methods are available on every widget and on the :class:`Tk` application object, and are documented here once rather than repeated for each widget." msgstr "" -#: ../../library/tkinter.rst:1079 -msgid "" -"Query or modify the configuration options of the widget. With no arguments, " -"return a dictionary mapping every available option name to a tuple " -"describing it (its name, X resource name, X resource class, default value " -"and current value). If a single option name is given as a string, return the " -"tuple for just that option. If one or more keyword arguments are given, or a " -"dictionary is passed as *cnf*, set each named option to the corresponding " -"value; the expression ``widget[key] = value`` sets a single option in the " -"same way." +msgid "Return the current value of the configuration option named *key* for this widget, as a string. The expression ``widget[key]`` is equivalent and may be used instead." +msgstr "" + +msgid "Query or modify the configuration options of the widget. With no arguments, return a dictionary mapping every available option name to a tuple describing it (its name, X resource name, X resource class, default value and current value). If a single option name is given as a string, return the tuple for just that option. If one or more keyword arguments are given, or a dictionary is passed as *cnf*, set each named option to the corresponding value; the expression ``widget[key] = value`` sets a single option in the same way." msgstr "" -#: ../../library/tkinter.rst:1089 msgid ":meth:`config` is an alias of :meth:`!configure`." msgstr "" -#: ../../library/tkinter.rst:1093 msgid "Return a list of the names of all configuration options of this widget." msgstr "" -#: ../../library/tkinter.rst:1097 -msgid "" -"Interpret the string *s* as a Tcl boolean and return the " -"corresponding :class:`bool`. Tcl accepts values such as ``'1'``, ``'0'``, " -"``'yes'``, ``'no'``, ``'true'`` and ``'false'``. Raise :exc:`ValueError` if " -"*s* is not a valid boolean." +msgid "Interpret the string *s* as a Tcl boolean and return the corresponding :class:`bool`. Tcl accepts values such as ``'1'``, ``'0'``, ``'yes'``, ``'no'``, ``'true'`` and ``'false'``. Raise :exc:`ValueError` if *s* is not a valid boolean." msgstr "" -#: ../../library/tkinter.rst:1105 -msgid "" -"Interpret the string *s* as a Tcl floating-point number and return it as " -"a :class:`float`. Raise :exc:`ValueError` if *s* is not a valid number." +msgid "Interpret the string *s* as a Tcl floating-point number and return it as a :class:`float`. Raise :exc:`ValueError` if *s* is not a valid number." msgstr "" -#: ../../library/tkinter.rst:1114 -msgid "" -"Interpret the string *s* as a Tcl integer and return it as an :class:`int`. " -"Raise :exc:`ValueError` if *s* is not a valid integer." +msgid "Interpret the string *s* as a Tcl integer and return it as an :class:`int`. Raise :exc:`ValueError` if *s* is not a valid integer." msgstr "" -#: ../../library/tkinter.rst:1120 msgid "Return the value of the Tcl global variable named *name*." msgstr "" -#: ../../library/tkinter.rst:1124 msgid "Set the Tcl global variable named *name* to *value*." msgstr "" -#: ../../library/tkinter.rst:1126 -msgid "" -"The :meth:`!getvar` and :meth:`!setvar` methods give direct access to Tcl " -"variables. In most code you will instead use a :class:`Variable` subclass " -"such as :class:`StringVar` or :class:`IntVar`, which wraps a Tcl variable " -"and converts its value to and from a Python type." +msgid "The :meth:`!getvar` and :meth:`!setvar` methods give direct access to Tcl variables. In most code you will instead use a :class:`Variable` subclass such as :class:`StringVar` or :class:`IntVar`, which wraps a Tcl variable and converts its value to and from a Python type." msgstr "" -#: ../../library/tkinter.rst:1134 -msgid "" -"Register the Python callable *func* as a Tcl command and return the name of " -"the new command as a string. Whenever Tcl invokes that command, *func* is " -"called; if *subst* is given, it is applied to the command's arguments first. " -"This is the mechanism used internally to turn Python callbacks into the " -"command names passed to Tk options such as *command*. Unless *needcleanup* " -"is false, the command is deleted automatically when the widget is destroyed." +msgid "Register the Python callable *func* as a Tcl command and return the name of the new command as a string. Whenever Tcl invokes that command, *func* is called; if *subst* is given, it is applied to the command's arguments first. This is the mechanism used internally to turn Python callbacks into the command names passed to Tk options such as *command*. Unless *needcleanup* is false, the command is deleted automatically when the widget is destroyed." msgstr "" -#: ../../library/tkinter.rst:1143 msgid "The arguments passed to *func* are no longer converted to strings." msgstr "" -#: ../../library/tkinter.rst:1148 -msgid "" -"Delete the Tcl command named *name*, such as one previously returned " -"by :meth:`register`." +msgid "Delete the Tcl command named *name*, such as one previously returned by :meth:`register`." msgstr "" -#: ../../library/tkinter.rst:1153 msgid "Return the widget instance corresponding to the Tk pathname *name*." msgstr "" -#: ../../library/tkinter.rst:1157 -msgid "" -"Send the Tcl command *cmd*, with the given *args*, to the Tcl interpreter " -"registered under the name *interp*, and return its result. This is not " -"available on all platforms." +msgid "Send the Tcl command *cmd*, with the given *args*, to the Tcl interpreter registered under the name *interp*, and return its result. This is not available on all platforms." msgstr "" -#: ../../library/tkinter.rst:1163 -msgid "" -"Destroy this widget and all of its descendant widgets, and delete the Tcl " -"commands associated with them." +msgid "Destroy this widget and all of its descendant widgets, and delete the Tcl commands associated with them." msgstr "" -#: ../../library/tkinter.rst:1171 -msgid "" -"Raise this widget in the stacking order so that it is drawn on top of its " -"siblings. If *aboveThis* is given, the widget is moved to be just above it " -"in the stacking order instead." +msgid "Raise this widget in the stacking order so that it is drawn on top of its siblings. If *aboveThis* is given, the widget is moved to be just above it in the stacking order instead." msgstr "" -#: ../../library/tkinter.rst:1176 msgid ":meth:`lift` is an alias of :meth:`!tkraise`." msgstr "" -#: ../../library/tkinter.rst:1180 -msgid "" -"Lower this widget in the stacking order so that it is drawn beneath its " -"siblings. If *belowThis* is given, the widget is moved to be just below it " -"in the stacking order instead." +msgid "Lower this widget in the stacking order so that it is drawn beneath its siblings. If *belowThis* is given, the widget is moved to be just below it in the stacking order instead." msgstr "" -#: ../../library/tkinter.rst:1185 -msgid "" -":meth:`tkraise`/:meth:`lift` and :meth:`lower` are overridden by " -"the :class:`Canvas` widget, where they restack canvas items instead." +msgid ":meth:`tkraise`/:meth:`lift` and :meth:`lower` are overridden by the :class:`Canvas` widget, where they restack canvas items instead." msgstr "" -#: ../../library/tkinter.rst:1191 -msgid "" -"Return the names of all images that currently exist in the Tcl interpreter." +msgid "Return the names of all images that currently exist in the Tcl interpreter." msgstr "" -#: ../../library/tkinter.rst:1194 -msgid "" -"This is overridden by the :class:`Text` widget, where :meth:`!image_names` " -"returns the names of its embedded images instead." +msgid "This is overridden by the :class:`Text` widget, where :meth:`!image_names` returns the names of its embedded images instead." msgstr "" -#: ../../library/tkinter.rst:1200 msgid "Return the available image types, such as ``'photo'`` and ``'bitmap'``." msgstr "" -#: ../../library/tkinter.rst:1207 -msgid "" -"Set the anchor that controls where the grid is placed inside this container " -"when the container is larger than the grid and no row or column has a non-" -"zero weight. *anchor* is one of the usual anchor strings, such as ``'nw'`` " -"(the default) or ``'center'``. Called with no argument, this method has no " -"effect." +msgid "Set the anchor that controls where the grid is placed inside this container when the container is larger than the grid and no row or column has a non-zero weight. *anchor* is one of the usual anchor strings, such as ``'nw'`` (the default) or ``'center'``. Called with no argument, this method has no effect." msgstr "" -#: ../../library/tkinter.rst:1214 msgid ":meth:`anchor` is an alias of :meth:`!grid_anchor`." msgstr "" -#: ../../library/tkinter.rst:1223 -msgid "" -"Return the bounding box, in pixels, of a region of the grid laid out in this " -"container, as a 4-tuple ``(xoffset, yoffset, width, height)``. With no " -"arguments the bounding box of the whole grid is returned. If *column* and " -"*row* are given, the box spans from the cell at row and column 0 to that " -"cell; if *col2* and *row2* are also given, it spans from the cell (*column*, " -"*row*) to the cell (*col2*, *row2*)." +msgid "Return the bounding box, in pixels, of a region of the grid laid out in this container, as a 4-tuple ``(xoffset, yoffset, width, height)``. With no arguments the bounding box of the whole grid is returned. If *column* and *row* are given, the box spans from the cell at row and column 0 to that cell; if *col2* and *row2* are also given, it spans from the cell (*column*, *row*) to the cell (*col2*, *row2*)." msgstr "" -#: ../../library/tkinter.rst:1230 -msgid "" -":meth:`bbox` is an alias of :meth:`!grid_bbox`, except " -"on :class:`Canvas`, :class:`Listbox`, :class:`Spinbox`, :class:`Text`, :class:`ttk.Entry " -"` and :class:`ttk.Treeview `, which " -"provide their own :meth:`!bbox` method." +msgid ":meth:`bbox` is an alias of :meth:`!grid_bbox`, except on :class:`Canvas`, :class:`Listbox`, :class:`Spinbox`, :class:`Text`, :class:`ttk.Entry ` and :class:`ttk.Treeview `, which provide their own :meth:`!bbox` method." msgstr "" -#: ../../library/tkinter.rst:1241 -msgid "" -"Query or set the properties of the column (or columns) *index* of the grid " -"managed by this container. *index* may be a column number; when setting " -"options it may also be a list of column numbers, the string ``'all'`` to " -"affect every column, or a child widget whose occupied columns are affected. " -"The supported options are:" +msgid "Query or set the properties of the column (or columns) *index* of the grid managed by this container. *index* may be a column number; when setting options it may also be a list of column numbers, the string ``'all'`` to affect every column, or a child widget whose occupied columns are affected. The supported options are:" msgstr "" -#: ../../library/tkinter.rst:1248 msgid "*minsize*" msgstr "" -#: ../../library/tkinter.rst:1249 msgid "The column's minimum size, in pixels." msgstr "" -#: ../../library/tkinter.rst:1251 msgid "*weight*" msgstr "" -#: ../../library/tkinter.rst:1252 -msgid "" -"An integer setting how much of any extra space is apportioned to the column. " -"A weight of ``0`` keeps the column at its requested size, and a column of " -"weight two grows twice as fast as a column of weight one." +msgid "An integer setting how much of any extra space is apportioned to the column. A weight of ``0`` keeps the column at its requested size, and a column of weight two grows twice as fast as a column of weight one." msgstr "" -#: ../../library/tkinter.rst:1257 msgid "*uniform*" msgstr "" -#: ../../library/tkinter.rst:1258 -msgid "" -"The name of a uniform group. Columns sharing a non-empty group name are kept " -"in sizes that are strictly proportional to their weights." +msgid "The name of a uniform group. Columns sharing a non-empty group name are kept in sizes that are strictly proportional to their weights." msgstr "" -#: ../../library/tkinter.rst:1262 msgid "*pad*" msgstr "" -#: ../../library/tkinter.rst:1263 -msgid "" -"Extra space, in pixels, added to the largest widget in the column when " -"computing the column's size." +msgid "Extra space, in pixels, added to the largest widget in the column when computing the column's size." msgstr "" -#: ../../library/tkinter.rst:1266 -msgid "" -"With a single option name, return that option's value; with no options, " -"return a dictionary of all of them." +msgid "With a single option name, return that option's value; with no options, return a dictionary of all of them." msgstr "" -#: ../../library/tkinter.rst:1269 msgid ":meth:`columnconfigure` is an alias of :meth:`!grid_columnconfigure`." msgstr "" -#: ../../library/tkinter.rst:1276 -msgid "" -"Query or set the properties of the row (or rows) *index* of the grid managed " -"by this container. *index* is interpreted as " -"for :meth:`grid_columnconfigure`, and the supported options (*minsize*, " -"*weight*, *uniform* and *pad*) are the same, applied to a row instead of a " -"column." +msgid "Query or set the properties of the row (or rows) *index* of the grid managed by this container. *index* is interpreted as for :meth:`grid_columnconfigure`, and the supported options (*minsize*, *weight*, *uniform* and *pad*) are the same, applied to a row instead of a column." msgstr "" -#: ../../library/tkinter.rst:1282 msgid ":meth:`rowconfigure` is an alias of :meth:`!grid_rowconfigure`." msgstr "" -#: ../../library/tkinter.rst:1286 -msgid "" -"Return the ``(column, row)`` of the grid cell that contains the pixel at " -"position (*x*, *y*), given in pixels relative to this container. For " -"locations above or to the left of the grid, ``-1`` is returned for the " -"corresponding coordinate." +msgid "Return the ``(column, row)`` of the grid cell that contains the pixel at position (*x*, *y*), given in pixels relative to this container. For locations above or to the left of the grid, ``-1`` is returned for the corresponding coordinate." msgstr "" -#: ../../library/tkinter.rst:1294 -msgid "" -"Enable or disable geometry propagation for this container when it manages " -"its children with the grid geometry manager. When *flag* is true, the " -"container resizes itself to fit the requested sizes of its children; when it " -"is false, its size is left under your control. Called with no argument, " -"return the current setting as a boolean." +msgid "Enable or disable geometry propagation for this container when it manages its children with the grid geometry manager. When *flag* is true, the container resizes itself to fit the requested sizes of its children; when it is false, its size is left under your control. Called with no argument, return the current setting as a boolean." msgstr "" -#: ../../library/tkinter.rst:1306 -msgid "" -"Return the size of the grid managed by this container as a ``(columns, " -"rows)`` tuple." +msgid "Return the size of the grid managed by this container as a ``(columns, rows)`` tuple." msgstr "" -#: ../../library/tkinter.rst:1309 -msgid "" -":meth:`size` is an alias of :meth:`!grid_size`, except on " -"the :class:`Listbox` widget, which provides its own :meth:`!size` method." +msgid ":meth:`size` is an alias of :meth:`!grid_size`, except on the :class:`Listbox` widget, which provides its own :meth:`!size` method." msgstr "" -#: ../../library/tkinter.rst:1315 -msgid "" -"Return a list of the child widgets managed in this container's grid, most " -"recently managed first. If *row* or *column* is given, only the children in " -"that row or column are returned." +msgid "Return a list of the child widgets managed in this container's grid, most recently managed first. If *row* or *column* is given, only the children in that row or column are returned." msgstr "" -#: ../../library/tkinter.rst:1327 -msgid "" -"Enable or disable geometry propagation for this container when it manages " -"its children with the pack geometry manager. When *flag* is true, the " -"container resizes itself to fit the requested sizes of its children; when it " -"is false, its size is left under your control. Called with no argument, " -"return the current setting as a boolean." +msgid "Enable or disable geometry propagation for this container when it manages its children with the pack geometry manager. When *flag* is true, the container resizes itself to fit the requested sizes of its children; when it is false, its size is left under your control. Called with no argument, return the current setting as a boolean." msgstr "" -#: ../../library/tkinter.rst:1334 msgid ":meth:`propagate` is an alias of :meth:`!pack_propagate`." msgstr "" -#: ../../library/tkinter.rst:1341 -msgid "" -"Return a list of the child widgets managed by this container with the pack " -"geometry manager, in packing order." +msgid "Return a list of the child widgets managed by this container with the pack geometry manager, in packing order." msgstr "" -#: ../../library/tkinter.rst:1344 msgid ":meth:`slaves` is an alias of :meth:`!pack_slaves`." msgstr "" -#: ../../library/tkinter.rst:1348 -msgid "" -"Return a list of the child widgets managed by this container with the place " -"geometry manager." +msgid "Return a list of the child widgets managed by this container with the place geometry manager." msgstr "" -#: ../../library/tkinter.rst:1353 -msgid "" -"Bind the event pattern *sequence* on this widget to the callable *func*." +msgid "Bind the event pattern *sequence* on this widget to the callable *func*." msgstr "" -#: ../../library/tkinter.rst:1355 -msgid "" -"*sequence* is an event pattern, such as ``''`` (a mouse click) or " -"``''``, optionally a concatenation of several such patterns that " -"must occur shortly after one another. When the event occurs, *func* is " -"called with an :class:`Event` instance describing it as its only argument; " -"if *func* returns the string ``'break'``, no further bindings for the event " -"are invoked." +msgid "*sequence* is an event pattern, such as ``''`` (a mouse click) or ``''``, optionally a concatenation of several such patterns that must occur shortly after one another. When the event occurs, *func* is called with an :class:`Event` instance describing it as its only argument; if *func* returns the string ``'break'``, no further bindings for the event are invoked." msgstr "" -#: ../../library/tkinter.rst:1362 -msgid "" -"If *add* is true, *func* is added to any functions already bound to " -"*sequence*; otherwise it replaces them. The binding applies only to this " -"widget." +msgid "If *add* is true, *func* is added to any functions already bound to *sequence*; otherwise it replaces them. The binding applies only to this widget." msgstr "" -#: ../../library/tkinter.rst:1366 -msgid "" -":meth:`!bind` returns a string identifier (a *funcid*) that can later be " -"passed to :meth:`unbind` to remove the binding without leaking the " -"associated Tcl command." +msgid ":meth:`!bind` returns a string identifier (a *funcid*) that can later be passed to :meth:`unbind` to remove the binding without leaking the associated Tcl command." msgstr "" -#: ../../library/tkinter.rst:1370 -msgid "" -"If *func* is omitted, return the binding currently associated with " -"*sequence*; if *sequence* is also omitted, return a list of all the " -"sequences for which bindings exist on this widget." +msgid "If *func* is omitted, return the binding currently associated with *sequence*; if *sequence* is also omitted, return a list of all the sequences for which bindings exist on this widget." msgstr "" -#: ../../library/tkinter.rst:1376 -msgid "" -"Like :meth:`bind`, but bind *func* to the binding tag *className* rather " -"than to a single widget, so that the binding applies to every widget having " -"that tag. *className* is usually the name of a widget class, such as " -"``'Button'``, in which case the binding affects all widgets of that class. " -"The set of binding tags for a widget can be inspected and changed " -"with :meth:`bindtags`." +msgid "Like :meth:`bind`, but bind *func* to the binding tag *className* rather than to a single widget, so that the binding applies to every widget having that tag. *className* is usually the name of a widget class, such as ``'Button'``, in which case the binding affects all widgets of that class. The set of binding tags for a widget can be inspected and changed with :meth:`bindtags`." msgstr "" -#: ../../library/tkinter.rst:1384 ../../library/tkinter.rst:1391 msgid "The remaining arguments and the return value are as for :meth:`bind`." msgstr "" -#: ../../library/tkinter.rst:1388 -msgid "" -"Like :meth:`bind`, but bind *func* to the special binding tag ``'all'``, so " -"that the binding applies to every widget in the application." +msgid "Like :meth:`bind`, but bind *func* to the special binding tag ``'all'``, so that the binding applies to every widget in the application." msgstr "" -#: ../../library/tkinter.rst:1395 msgid "Remove bindings for the event pattern *sequence* on this widget." msgstr "" -#: ../../library/tkinter.rst:1397 -msgid "" -"If *funcid* is given, only the function identified by it (a value returned " -"from a previous call to :meth:`bind`) is removed, and its associated Tcl " -"command is deleted. Otherwise all bindings for *sequence* are destroyed, " -"leaving it unbound." +msgid "If *funcid* is given, only the function identified by it (a value returned from a previous call to :meth:`bind`) is removed, and its associated Tcl command is deleted. Otherwise all bindings for *sequence* are destroyed, leaving it unbound." msgstr "" -#: ../../library/tkinter.rst:1402 -msgid "" -"If *funcid* is given, only that callback is unbound; other callbacks bound " -"to *sequence* are kept." +msgid "If *funcid* is given, only that callback is unbound; other callbacks bound to *sequence* are kept." msgstr "" -#: ../../library/tkinter.rst:1409 -msgid "" -"Remove all bindings for the event pattern *sequence* from the binding tag " -"*className*. See :meth:`bind_class`." +msgid "Remove all bindings for the event pattern *sequence* from the binding tag *className*. See :meth:`bind_class`." msgstr "" -#: ../../library/tkinter.rst:1415 -msgid "" -"Remove all bindings for the event pattern *sequence* from the special " -"binding tag ``'all'``. See :meth:`bind_all`." +msgid "Remove all bindings for the event pattern *sequence* from the special binding tag ``'all'``. See :meth:`bind_all`." msgstr "" -#: ../../library/tkinter.rst:1421 -msgid "" -"If *tagList* is omitted, return a tuple of the binding tags associated with " -"this widget. When an event occurs in a widget, it is applied to each of the " -"widget's binding tags in order, and for each tag the most specific matching " -"binding is executed. By default a widget has four binding tags: its own " -"pathname, its widget class, the pathname of its nearest toplevel ancestor, " -"and ``'all'``, in that order." +msgid "If *tagList* is omitted, return a tuple of the binding tags associated with this widget. When an event occurs in a widget, it is applied to each of the widget's binding tags in order, and for each tag the most specific matching binding is executed. By default a widget has four binding tags: its own pathname, its widget class, the pathname of its nearest toplevel ancestor, and ``'all'``, in that order." msgstr "" -#: ../../library/tkinter.rst:1430 -msgid "" -"If *tagList* is given, it must be a sequence of strings; the widget's " -"binding tags are set to its elements, which determines the order in which " -"bindings are evaluated." +msgid "If *tagList* is given, it must be a sequence of strings; the widget's binding tags are set to its elements, which determines the order in which bindings are evaluated." msgstr "" -#: ../../library/tkinter.rst:1434 -msgid "" -"The methods with the ``event_`` prefix define virtual events and generate " -"events programmatically." +msgid "The methods with the ``event_`` prefix define virtual events and generate events programmatically." msgstr "" -#: ../../library/tkinter.rst:1439 -msgid "" -"Associate the virtual event *virtual*, whose name has the form " -"``'<>'``, with each of the physical event patterns given by " -"*sequences*, so that the virtual event triggers whenever any of them occurs. " -"If *virtual* is already defined, the new sequences are added to its existing " -"ones." +msgid "Associate the virtual event *virtual*, whose name has the form ``'<>'``, with each of the physical event patterns given by *sequences*, so that the virtual event triggers whenever any of them occurs. If *virtual* is already defined, the new sequences are added to its existing ones." msgstr "" -#: ../../library/tkinter.rst:1448 -msgid "" -"Remove each of *sequences* from those associated with the virtual event " -"*virtual*. Sequences that are not currently associated with *virtual* are " -"ignored. If no *sequences* are given, all physical event sequences are " -"removed, so that *virtual* no longer triggers." +msgid "Remove each of *sequences* from those associated with the virtual event *virtual*. Sequences that are not currently associated with *virtual* are ignored. If no *sequences* are given, all physical event sequences are removed, so that *virtual* no longer triggers." msgstr "" -#: ../../library/tkinter.rst:1456 -msgid "" -"Generate the event *sequence* on this widget and arrange for it to be " -"processed just as if it had come from the window system. *sequence* must be " -"a single event pattern, such as ``''`` or ``'<>'``, not a " -"concatenation of several. Keyword arguments specify additional fields of the " -"event, for example *x* and *y* for the pointer position, or *when* to " -"control when the event is processed; refer to the Tk ``event`` manual page " -"for the full list." +msgid "Generate the event *sequence* on this widget and arrange for it to be processed just as if it had come from the window system. *sequence* must be a single event pattern, such as ``''`` or ``'<>'``, not a concatenation of several. Keyword arguments specify additional fields of the event, for example *x* and *y* for the pointer position, or *when* to control when the event is processed; refer to the Tk ``event`` manual page for the full list." msgstr "" -#: ../../library/tkinter.rst:1466 -msgid "" -"If *virtual* is omitted, return a tuple of all the virtual events that are " -"currently defined. If *virtual* is given, return a tuple of the physical " -"event sequences currently associated with it, or an empty tuple if it is not " -"defined." +msgid "If *virtual* is omitted, return a tuple of all the virtual events that are currently defined. If *virtual* is given, return a tuple of the physical event sequences currently associated with it, or an empty tuple if it is not defined." msgstr "" -#: ../../library/tkinter.rst:1471 -msgid "" -"The methods with the ``after`` prefix schedule callbacks to run after a " -"delay or when the application is idle." +msgid "The methods with the ``after`` prefix schedule callbacks to run after a delay or when the application is idle." msgstr "" -#: ../../library/tkinter.rst:1476 -msgid "" -"Schedule the callable *func* to be called after *ms* milliseconds, with " -"*args* and *kw* passed to it as positional and keyword arguments. Return an " -"identifier that can be passed to :meth:`after_cancel` to cancel the call." +msgid "Schedule the callable *func* to be called after *ms* milliseconds, with *args* and *kw* passed to it as positional and keyword arguments. Return an identifier that can be passed to :meth:`after_cancel` to cancel the call." msgstr "" -#: ../../library/tkinter.rst:1481 -msgid "" -"If *func* is omitted, sleep for *ms* milliseconds instead, processing no " -"events during that time, and return ``None``." +msgid "If *func* is omitted, sleep for *ms* milliseconds instead, processing no events during that time, and return ``None``." msgstr "" -#: ../../library/tkinter.rst:1484 msgid "*func* can now be any callable object, not only a function." msgstr "" -#: ../../library/tkinter.rst:1487 ../../library/tkinter.rst:1512 msgid "Keyword arguments are now passed to *func*." msgstr "" -#: ../../library/tkinter.rst:1493 -msgid "" -"Cancel a callback previously scheduled with :meth:`after` " -"or :meth:`after_idle`. *id* must be an identifier returned by one of those " -"methods; passing a value that is not such an identifier " -"raises :exc:`ValueError`. If the callback has already run or been cancelled, " -"this has no effect." +msgid "Cancel a callback previously scheduled with :meth:`after` or :meth:`after_idle`. *id* must be an identifier returned by one of those methods; passing a value that is not such an identifier raises :exc:`ValueError`. If the callback has already run or been cancelled, this has no effect." msgstr "" -#: ../../library/tkinter.rst:1499 -msgid "" -"Passing ``None`` (or any false value) as *id* now raises :exc:`ValueError`." +msgid "Passing ``None`` (or any false value) as *id* now raises :exc:`ValueError`." msgstr "" -#: ../../library/tkinter.rst:1506 -msgid "" -"Schedule the callable *func* to be called, with *args* and *kw* passed to " -"it, when the Tk main loop next becomes idle, that is, when it has no other " -"events to process. Return an identifier that can be passed " -"to :meth:`after_cancel` to cancel the call." +msgid "Schedule the callable *func* to be called, with *args* and *kw* passed to it, when the Tk main loop next becomes idle, that is, when it has no other events to process. Return an identifier that can be passed to :meth:`after_cancel` to cancel the call." msgstr "" -#: ../../library/tkinter.rst:1518 -msgid "" -"If *id* is omitted, return a tuple of the identifiers of all callbacks " -"currently scheduled with :meth:`after` and :meth:`after_idle` for this " -"interpreter." +msgid "If *id* is omitted, return a tuple of the identifiers of all callbacks currently scheduled with :meth:`after` and :meth:`after_idle` for this interpreter." msgstr "" -#: ../../library/tkinter.rst:1522 -msgid "" -"If *id* is given, it must identify a callback that has not yet run or been " -"cancelled, and the return value is a tuple ``(script, type)``, where " -"*script* refers to the function to be called and *type* is either ``'idle'`` " -"or ``'timer'``. A :exc:`TclError` is raised if *id* does not exist." +msgid "If *id* is given, it must identify a callback that has not yet run or been cancelled, and the return value is a tuple ``(script, type)``, where *script* refers to the function to be called and *type* is either ``'idle'`` or ``'timer'``. A :exc:`TclError` is raised if *id* does not exist." msgstr "" -#: ../../library/tkinter.rst:1533 -msgid "" -"Enter the Tk event loop, which processes events until all windows are " -"destroyed. This is normally called once, on the root window, to run the " -"application." +msgid "Enter the Tk event loop, which processes events until all windows are destroyed. This is normally called once, on the root window, to run the application." msgstr "" -#: ../../library/tkinter.rst:1539 msgid "Quit the Tcl interpreter, causing :meth:`mainloop` to return." msgstr "" -#: ../../library/tkinter.rst:1543 -msgid "" -"Enter the event loop until all pending events, including idle callbacks, " -"have been processed. This brings the display up to date and handles any " -"events that are already queued, then returns." +msgid "Enter the event loop until all pending events, including idle callbacks, have been processed. This brings the display up to date and handles any events that are already queued, then returns." msgstr "" -#: ../../library/tkinter.rst:1550 -msgid "" -"Enter the event loop until all pending idle callbacks have been called. This " -"updates the display of windows, for example after geometry changes, but does " -"not process events caused by the user." +msgid "Enter the event loop until all pending idle callbacks have been called. This updates the display of windows, for example after geometry changes, but does not process events caused by the user." msgstr "" -#: ../../library/tkinter.rst:1559 -msgid "" -"Wait until the Tcl variable *name* is modified, continuing to process events " -"in the meantime so that the application stays responsive. *name* is usually " -"a :class:`Variable` instance, such as an :class:`IntVar` " -"or :class:`StringVar`." +msgid "Wait until the Tcl variable *name* is modified, continuing to process events in the meantime so that the application stays responsive. *name* is usually a :class:`Variable` instance, such as an :class:`IntVar` or :class:`StringVar`." msgstr "" -#: ../../library/tkinter.rst:1564 msgid ":meth:`waitvar` is an alias of :meth:`!wait_variable`." msgstr "" -#: ../../library/tkinter.rst:1568 -msgid "" -"Wait until *window* is destroyed, continuing to process events in the " -"meantime. If *window* is omitted, this widget is used. This is typically " -"used to wait for the user to finish interacting with a dialog box." +msgid "Wait until *window* is destroyed, continuing to process events in the meantime. If *window* is omitted, this widget is used. This is typically used to wait for the user to finish interacting with a dialog box." msgstr "" -#: ../../library/tkinter.rst:1576 -msgid "" -"Wait until the visibility state of *window* changes, for example when it " -"first appears on the screen, continuing to process events in the meantime. " -"If *window* is omitted, this widget is used. This is typically used to wait " -"for a newly created window to become visible before acting on it." +msgid "Wait until the visibility state of *window* changes, for example when it first appears on the screen, continuing to process events in the meantime. If *window* is omitted, this widget is used. This is typically used to wait for a newly created window to become visible before acting on it." msgstr "" -#: ../../library/tkinter.rst:1583 msgid "The methods with the ``focus_`` prefix manage the keyboard focus." msgstr "" -#: ../../library/tkinter.rst:1590 -msgid "" -"Direct the keyboard input focus for this widget's display to this widget. If " -"the application does not currently have the input focus on this widget's " -"display, the widget is remembered as the focus window for its top level, and " -"the focus will be redirected to it the next time the window manager gives " -"the focus to the top level. :meth:`focus` is an alias of :meth:`!focus_set`, " -"except on the :class:`Canvas` and :class:`ttk.Treeview " -"` widgets, which provide their own :meth:`!focus` " -"method." +msgid "Direct the keyboard input focus for this widget's display to this widget. If the application does not currently have the input focus on this widget's display, the widget is remembered as the focus window for its top level, and the focus will be redirected to it the next time the window manager gives the focus to the top level. :meth:`focus` is an alias of :meth:`!focus_set`, except on the :class:`Canvas` and :class:`ttk.Treeview ` widgets, which provide their own :meth:`!focus` method." msgstr "" -#: ../../library/tkinter.rst:1602 -msgid "" -"Direct the keyboard input focus to this widget even if the application does " -"not currently have the input focus for the widget's display. This method " -"should be used sparingly, if at all; normally an application should wait for " -"the window manager to give it the focus rather than claiming it." +msgid "Direct the keyboard input focus to this widget even if the application does not currently have the input focus for the widget's display. This method should be used sparingly, if at all; normally an application should wait for the window manager to give it the focus rather than claiming it." msgstr "" -#: ../../library/tkinter.rst:1610 -msgid "" -"Return the widget that currently has the keyboard focus in the application, " -"or ``None`` if no widget in the application has the focus. " -"Use :meth:`focus_displayof` to work correctly with several displays." +msgid "Return the widget that currently has the keyboard focus in the application, or ``None`` if no widget in the application has the focus. Use :meth:`focus_displayof` to work correctly with several displays." msgstr "" -#: ../../library/tkinter.rst:1616 -msgid "" -"Return the widget that currently has the keyboard focus on the display where " -"this widget is located, or ``None`` if no widget in the application has the " -"focus on that display." +msgid "Return the widget that currently has the keyboard focus on the display where this widget is located, or ``None`` if no widget in the application has the focus on that display." msgstr "" -#: ../../library/tkinter.rst:1622 -msgid "" -"Return the most recent widget to have had the keyboard focus among all the " -"widgets in the same top level as this widget; this is the widget that will " -"receive the focus the next time the window manager gives the focus to the " -"top level. If no widget in that top level has ever had the focus, or if the " -"most recent focus widget has been deleted, the top level itself is returned." +msgid "Return the most recent widget to have had the keyboard focus among all the widgets in the same top level as this widget; this is the widget that will receive the focus the next time the window manager gives the focus to the top level. If no widget in that top level has ever had the focus, or if the most recent focus widget has been deleted, the top level itself is returned." msgstr "" -#: ../../library/tkinter.rst:1631 -msgid "" -"Reconfigure Tk to use an implicit focus model in which the focus is set to a " -"widget whenever the mouse pointer enters it. This cannot easily be disabled " -"once enabled." +msgid "Reconfigure Tk to use an implicit focus model in which the focus is set to a widget whenever the mouse pointer enters it. This cannot easily be disabled once enabled." msgstr "" -#: ../../library/tkinter.rst:1637 -msgid "" -"Return the next widget after this one in the keyboard traversal order, or " -"``None`` if there is none. The traversal order goes first to the next child, " -"then recursively to the children of that child, and then to the next sibling " -"higher in the stacking order. A widget is skipped if its ``takefocus`` " -"option is set to ``0``. This method is used in the default bindings for " -"the :kbd:`Tab` key." +msgid "Return the next widget after this one in the keyboard traversal order, or ``None`` if there is none. The traversal order goes first to the next child, then recursively to the children of that child, and then to the next sibling higher in the stacking order. A widget is skipped if its ``takefocus`` option is set to ``0``. This method is used in the default bindings for the :kbd:`Tab` key." msgstr "" -#: ../../library/tkinter.rst:1647 -msgid "" -"Return the previous widget before this one in the keyboard traversal order, " -"or ``None`` if there is none. See :meth:`tk_focusNext` for how the order is " -"defined. This method is used in the default bindings for the :kbd:`Shift-" -"Tab` key." +msgid "Return the previous widget before this one in the keyboard traversal order, or ``None`` if there is none. See :meth:`tk_focusNext` for how the order is defined. This method is used in the default bindings for the :kbd:`Shift-Tab` key." msgstr "" -#: ../../library/tkinter.rst:1652 -msgid "" -"The methods with the ``grab_`` prefix set and query the input grab, which " -"directs all input events to a single widget." +msgid "The methods with the ``grab_`` prefix set and query the input grab, which directs all input events to a single widget." msgstr "" -#: ../../library/tkinter.rst:1657 -msgid "" -"Set a local grab on this widget. A grab confines pointer events to this " -"widget and its descendants: while the pointer is outside the widget's " -"subtree, button presses and releases and pointer motion are reported to the " -"grab widget, and windows outside the subtree become insensitive until the " -"grab is released. A local grab affects only the grabbing application. Any " -"grab previously set by this application on the widget's display is " -"automatically released. Setting a grab is the usual way to make a dialog " -"modal: while the grab is in effect the user cannot interact with the other " -"windows of the application." -msgstr "" - -#: ../../library/tkinter.rst:1671 -msgid "" -"Set a global grab on this widget. A global grab is like the local grab set " -"by :meth:`grab_set`, but it locks out all other applications on the screen, " -"so that only this widget's subtree is sensitive to pointer events, and it " -"also grabs the keyboard. Use with caution: it is easy to render a display " -"unusable with a global grab, since other applications stop receiving events " -"until it is released." +msgid "Set a local grab on this widget. A grab confines pointer events to this widget and its descendants: while the pointer is outside the widget's subtree, button presses and releases and pointer motion are reported to the grab widget, and windows outside the subtree become insensitive until the grab is released. A local grab affects only the grabbing application. Any grab previously set by this application on the widget's display is automatically released. Setting a grab is the usual way to make a dialog modal: while the grab is in effect the user cannot interact with the other windows of the application." +msgstr "" + +msgid "Set a global grab on this widget. A global grab is like the local grab set by :meth:`grab_set`, but it locks out all other applications on the screen, so that only this widget's subtree is sensitive to pointer events, and it also grabs the keyboard. Use with caution: it is easy to render a display unusable with a global grab, since other applications stop receiving events until it is released." msgstr "" -#: ../../library/tkinter.rst:1682 msgid "Release the grab on this widget if there is one; otherwise do nothing." msgstr "" -#: ../../library/tkinter.rst:1686 -msgid "" -"Return the widget that currently holds the grab in this application for this " -"widget's display, or ``None`` if there is no such widget." +msgid "Return the widget that currently holds the grab in this application for this widget's display, or ``None`` if there is no such widget." msgstr "" -#: ../../library/tkinter.rst:1691 -msgid "" -"Return ``None`` if no grab is currently set on this widget, ``\"local\"`` if " -"a local grab is set, or ``\"global\"`` if a global grab is set." +msgid "Return ``None`` if no grab is currently set on this widget, ``\"local\"`` if a local grab is set, or ``\"global\"`` if a global grab is set." msgstr "" -#: ../../library/tkinter.rst:1694 -msgid "" -"The methods with the ``selection_`` prefix retrieve and manage the X " -"selection." +msgid "The methods with the ``selection_`` prefix retrieve and manage the X selection." msgstr "" -#: ../../library/tkinter.rst:1699 -msgid "" -"Clear the X selection, so that no window owns it anymore. The selection to " -"clear is given by the keyword argument *selection*, an atom name such as " -"``'PRIMARY'`` or ``'CLIPBOARD'``; it defaults to ``PRIMARY``. The " -"*displayof* keyword argument names a widget that determines the display on " -"which to operate, and defaults to this widget." +msgid "Clear the X selection, so that no window owns it anymore. The selection to clear is given by the keyword argument *selection*, an atom name such as ``'PRIMARY'`` or ``'CLIPBOARD'``; it defaults to ``PRIMARY``. The *displayof* keyword argument names a widget that determines the display on which to operate, and defaults to this widget." msgstr "" -#: ../../library/tkinter.rst:1706 -msgid "" -"This is overridden by the :class:`Entry`, :class:`Listbox` " -"and :class:`Spinbox` widgets, where :meth:`!selection_clear` clears the " -"widget's own selection instead." +msgid "This is overridden by the :class:`Entry`, :class:`Listbox` and :class:`Spinbox` widgets, where :meth:`!selection_clear` clears the widget's own selection instead." msgstr "" -#: ../../library/tkinter.rst:1712 -msgid "" -"Return the contents of the current X selection. The keyword argument " -"*selection* names the selection and defaults to ``PRIMARY``. The keyword " -"argument *type* specifies the form in which the data is to be returned (the " -"desired conversion target), an atom name such as ``'STRING'`` or " -"``'FILE_NAME'``; it defaults to ``STRING``, except on X11, where " -"``UTF8_STRING`` is tried first and ``STRING`` is used as a fallback. The " -"*displayof* keyword argument names a widget that determines the display from " -"which to retrieve the selection, and defaults to this widget." +msgid "Return the contents of the current X selection. The keyword argument *selection* names the selection and defaults to ``PRIMARY``. The keyword argument *type* specifies the form in which the data is to be returned (the desired conversion target), an atom name such as ``'STRING'`` or ``'FILE_NAME'``; it defaults to ``STRING``, except on X11, where ``UTF8_STRING`` is tried first and ``STRING`` is used as a fallback. The *displayof* keyword argument names a widget that determines the display from which to retrieve the selection, and defaults to this widget." msgstr "" -#: ../../library/tkinter.rst:1726 -msgid "" -"Register *command* as a handler to supply the X selection owned by this " -"widget when another application requests it. When the selection is " -"retrieved, *command* is called with two arguments, the starting character " -"offset and the maximum number of characters to return, and must return at " -"most that many characters of the selection starting at that offset; for very " -"long selections it is called repeatedly with increasing offsets. The keyword " -"argument *selection* names the selection (default ``PRIMARY``) and the " -"keyword argument *type* gives the form of the selection that the handler " -"supplies (such as ``'STRING'`` or ``'FILE_NAME'``, default ``STRING``)." -msgstr "" - -#: ../../library/tkinter.rst:1740 -msgid "" -"Make this widget the owner of the X selection on its display. The previous " -"owner, if any, is notified that it has lost the selection. The keyword " -"argument *selection* names the selection and defaults to ``PRIMARY``." +msgid "Register *command* as a handler to supply the X selection owned by this widget when another application requests it. When the selection is retrieved, *command* is called with two arguments, the starting character offset and the maximum number of characters to return, and must return at most that many characters of the selection starting at that offset; for very long selections it is called repeatedly with increasing offsets. The keyword argument *selection* names the selection (default ``PRIMARY``) and the keyword argument *type* gives the form of the selection that the handler supplies (such as ``'STRING'`` or ``'FILE_NAME'``, default ``STRING``)." msgstr "" -#: ../../library/tkinter.rst:1747 -msgid "" -"Return the widget in this application that owns the X selection on the " -"display containing this widget, or ``None`` if no widget in this application " -"owns the selection. The keyword argument *selection* names the selection and " -"defaults to ``PRIMARY``. The *displayof* keyword argument names a widget " -"that determines the display to query, and defaults to this widget." +msgid "Make this widget the owner of the X selection on its display. The previous owner, if any, is notified that it has lost the selection. The keyword argument *selection* names the selection and defaults to ``PRIMARY``." +msgstr "" + +msgid "Return the widget in this application that owns the X selection on the display containing this widget, or ``None`` if no widget in this application owns the selection. The keyword argument *selection* names the selection and defaults to ``PRIMARY``. The *displayof* keyword argument names a widget that determines the display to query, and defaults to this widget." msgstr "" -#: ../../library/tkinter.rst:1755 msgid "The methods with the ``clipboard_`` prefix manage the clipboard." msgstr "" -#: ../../library/tkinter.rst:1759 -msgid "" -"Append *string* to the Tk clipboard and claim ownership of the clipboard on " -"this widget's display. Before appending, the clipboard should be emptied " -"with :meth:`clipboard_clear`; all appends should be completed before " -"returning to the event loop so that the clipboard is updated atomically. The " -"keyword argument *type* specifies the form of the data, an atom name such as " -"``'STRING'`` or ``'FILE_NAME'`` (default ``STRING``), and the keyword " -"argument *format* specifies the representation used to transmit it (default " -"``STRING``). The *displayof* keyword argument names a widget that determines " -"the target display, and defaults to this widget. The contents can be " -"retrieved with :meth:`clipboard_get` or :meth:`selection_get`." -msgstr "" - -#: ../../library/tkinter.rst:1775 -msgid "" -"Claim ownership of the clipboard on this widget's display and remove any " -"previous contents. The *displayof* keyword argument names a widget that " -"determines the target display, and defaults to this widget." +msgid "Append *string* to the Tk clipboard and claim ownership of the clipboard on this widget's display. Before appending, the clipboard should be emptied with :meth:`clipboard_clear`; all appends should be completed before returning to the event loop so that the clipboard is updated atomically. The keyword argument *type* specifies the form of the data, an atom name such as ``'STRING'`` or ``'FILE_NAME'`` (default ``STRING``), and the keyword argument *format* specifies the representation used to transmit it (default ``STRING``). The *displayof* keyword argument names a widget that determines the target display, and defaults to this widget. The contents can be retrieved with :meth:`clipboard_get` or :meth:`selection_get`." msgstr "" -#: ../../library/tkinter.rst:1782 -msgid "" -"Retrieve data from the clipboard on this widget's display. The keyword " -"argument *type* specifies the form in which the data is to be returned, an " -"atom name such as ``'STRING'`` or ``'FILE_NAME'``; it defaults to " -"``STRING``, except on X11, where ``UTF8_STRING`` is tried first and " -"``STRING`` is used as a fallback. The *displayof* keyword argument names a " -"widget that determines the display, and defaults to the root window of the " -"application. This is equivalent to ``selection_get(selection='CLIPBOARD')``." +msgid "Claim ownership of the clipboard on this widget's display and remove any previous contents. The *displayof* keyword argument names a widget that determines the target display, and defaults to this widget." msgstr "" -#: ../../library/tkinter.rst:1791 -msgid "" -"The methods with the ``option_`` prefix query and modify the Tk option " -"database." +msgid "Retrieve data from the clipboard on this widget's display. The keyword argument *type* specifies the form in which the data is to be returned, an atom name such as ``'STRING'`` or ``'FILE_NAME'``; it defaults to ``STRING``, except on X11, where ``UTF8_STRING`` is tried first and ``STRING`` is used as a fallback. The *displayof* keyword argument names a widget that determines the display, and defaults to the root window of the application. This is equivalent to ``selection_get(selection='CLIPBOARD')``." msgstr "" -#: ../../library/tkinter.rst:1796 -msgid "" -"Add an option to the Tk option database that associates *value* with " -"*pattern*. *pattern* consists of names and/or classes separated by asterisks " -"or dots, in the usual X format. *priority* is an integer between 0 and 100, " -"or one of the symbolic names ``'widgetDefault'`` (20), ``'startupFile'`` " -"(40), ``'userDefault'`` (60), or ``'interactive'`` (80); it defaults to " -"``interactive``." +msgid "The methods with the ``option_`` prefix query and modify the Tk option database." msgstr "" -#: ../../library/tkinter.rst:1806 -msgid "" -"Clear the Tk option database. Default options from the :envvar:`!" -"RESOURCE_MANAGER` property or the :file:`.Xdefaults` file are reloaded " -"automatically the next time an option is added to or removed from the " -"database." +msgid "Add an option to the Tk option database that associates *value* with *pattern*. *pattern* consists of names and/or classes separated by asterisks or dots, in the usual X format. *priority* is an integer between 0 and 100, or one of the symbolic names ``'widgetDefault'`` (20), ``'startupFile'`` (40), ``'userDefault'`` (60), or ``'interactive'`` (80); it defaults to ``interactive``." msgstr "" -#: ../../library/tkinter.rst:1813 -msgid "" -"Return the value of the option matching this widget under *name* and " -"*className* from the Tk option database, or an empty string if there is no " -"matching entry. When several entries match, the one with the highest " -"priority is returned, and among entries of equal priority the most recently " -"added one." +msgid "Clear the Tk option database. Default options from the :envvar:`!RESOURCE_MANAGER` property or the :file:`.Xdefaults` file are reloaded automatically the next time an option is added to or removed from the database." msgstr "" -#: ../../library/tkinter.rst:1822 -msgid "" -"Read the file named *fileName*, which should have the standard format for an " -"X resource database such as :file:`.Xdefaults`, and add all the options it " -"specifies to the Tk option database. *priority* is interpreted as " -"for :meth:`option_add` and defaults to ``interactive``." +msgid "Return the value of the option matching this widget under *name* and *className* from the Tk option database, or an empty string if there is no matching entry. When several entries match, the one with the highest priority is returned, and among entries of equal priority the most recently added one." msgstr "" -#: ../../library/tkinter.rst:1830 -msgid "" -"Ring the bell on the display for this widget, using the display's current " -"bell-related settings, and reset the screen saver for the screen. If " -"*displayof* is given as a widget, the bell is rung on that widget's display " -"instead." +msgid "Read the file named *fileName*, which should have the standard format for an X resource database such as :file:`.Xdefaults`, and add all the options it specifies to the Tk option database. *priority* is interpreted as for :meth:`option_add` and defaults to ``interactive``." msgstr "" -#: ../../library/tkinter.rst:1838 -msgid "" -"Set a new color scheme for all Tk widget elements. Existing widgets are " -"updated and the option database is changed so that future widgets use the " -"new colors. A single color argument is taken as the normal background color, " -"from which a complete palette is computed. Alternatively, the arguments may " -"be given as keyword *name*/*value* pairs naming individual options in the " -"option database. The recognized option names are ``activeBackground``, " -"``activeForeground``, ``background``, ``disabledForeground``, " -"``foreground``, ``highlightBackground``, ``highlightColor``, " -"``insertBackground``, ``selectColor``, ``selectBackground``, " -"``selectForeground``, and ``troughColor``; reasonable defaults are computed " -"for any that are not specified." -msgstr "" - -#: ../../library/tkinter.rst:1854 -msgid "" -"Restore the application's colors to the light brown (bisque) color scheme " -"used in Tk 3.6 and earlier versions. Provided for backward compatibility." +msgid "Ring the bell on the display for this widget, using the display's current bell-related settings, and reset the screen saver for the screen. If *displayof* is given as a widget, the bell is rung on that widget's display instead." msgstr "" -#: ../../library/tkinter.rst:1860 -msgid "" -"Query or set whether Tk's look and feel should strictly adhere to Motif. A " -"true *boolean* value enables strict Motif compliance (for example, no color " -"change when the mouse passes over a slider). Return the resulting setting." +msgid "Set a new color scheme for all Tk widget elements. Existing widgets are updated and the option database is changed so that future widgets use the new colors. A single color argument is taken as the normal background color, from which a complete palette is computed. Alternatively, the arguments may be given as keyword *name*/*value* pairs naming individual options in the option database. The recognized option names are ``activeBackground``, ``activeForeground``, ``background``, ``disabledForeground``, ``foreground``, ``highlightBackground``, ``highlightColor``, ``insertBackground``, ``selectColor``, ``selectBackground``, ``selectForeground``, and ``troughColor``; reasonable defaults are computed for any that are not specified." msgstr "" -#: ../../library/tkinter.rst:1865 -msgid "" -"The methods with the ``busy_`` prefix manage the busy state of a window, " -"which shows a busy cursor and ignores user input." +msgid "Restore the application's colors to the light brown (bisque) color scheme used in Tk 3.6 and earlier versions. Provided for backward compatibility." msgstr "" -#: ../../library/tkinter.rst:1879 -msgid "" -"Make this widget appear busy. A transparent window is placed in front of the " -"widget, so that it and all of its descendants in the widget hierarchy are " -"blocked from pointer events and display a busy cursor. " -"Normally :meth:`update` should be called immediately afterwards to ensure " -"that the hold operation is in effect before the application starts its " -"processing." +msgid "Query or set whether Tk's look and feel should strictly adhere to Motif. A true *boolean* value enables strict Motif compliance (for example, no color change when the mouse passes over a slider). Return the resulting setting." msgstr "" -#: ../../library/tkinter.rst:1887 -msgid "" -"The only supported configuration option is *cursor*, the cursor to be " -"displayed while the widget is busy; it may have any of the values accepted " -"by :meth:`!configure`." +msgid "The methods with the ``busy_`` prefix manage the busy state of a window, which shows a busy cursor and ignores user input." msgstr "" -#: ../../library/tkinter.rst:1891 -msgid "" -":meth:`busy_hold`, :meth:`busy` and :meth:`tk_busy` are aliases of :meth:`!" -"tk_busy_hold`." +msgid "Make this widget appear busy. A transparent window is placed in front of the widget, so that it and all of its descendants in the widget hierarchy are blocked from pointer events and display a busy cursor. Normally :meth:`update` should be called immediately afterwards to ensure that the hold operation is in effect before the application starts its processing." msgstr "" -#: ../../library/tkinter.rst:1908 -msgid "" -"Query or modify the configuration options of the busy window. The widget " -"must have been previously made busy by :meth:`tk_busy_hold`. With no " -"arguments, return a dictionary describing all of the available options; if " -"*cnf* is the name of an option, return a tuple describing that one option. " -"Otherwise set the given options to the given values. Options may have any of " -"the values accepted by :meth:`tk_busy_hold`." +msgid "The only supported configuration option is *cursor*, the cursor to be displayed while the widget is busy; it may have any of the values accepted by :meth:`!configure`." msgstr "" -#: ../../library/tkinter.rst:1916 -msgid "" -"The option database is referenced through the widget name or class. For " -"example, if a :class:`Frame` widget named ``frame`` is to be made busy, the " -"busy cursor can be specified for it by either of the calls::" +msgid ":meth:`busy_hold`, :meth:`busy` and :meth:`tk_busy` are aliases of :meth:`!tk_busy_hold`." +msgstr "" + +msgid "Query or modify the configuration options of the busy window. The widget must have been previously made busy by :meth:`tk_busy_hold`. With no arguments, return a dictionary describing all of the available options; if *cnf* is the name of an option, return a tuple describing that one option. Otherwise set the given options to the given values. Options may have any of the values accepted by :meth:`tk_busy_hold`." +msgstr "" + +msgid "The option database is referenced through the widget name or class. For example, if a :class:`Frame` widget named ``frame`` is to be made busy, the busy cursor can be specified for it by either of the calls::" msgstr "" -#: ../../library/tkinter.rst:1920 msgid "" "w.option_add('*frame.busyCursor', 'gumby')\n" "w.option_add('*Frame.BusyCursor', 'gumby')" msgstr "" -#: ../../library/tkinter.rst:1923 -msgid "" -":meth:`busy_configure`, :meth:`busy_config` and :meth:`tk_busy_config` are " -"aliases of :meth:`!tk_busy_configure`." +msgid ":meth:`busy_configure`, :meth:`busy_config` and :meth:`tk_busy_config` are aliases of :meth:`!tk_busy_configure`." msgstr "" -#: ../../library/tkinter.rst:1934 -msgid "" -"Return the current value of the busy configuration *option*. The widget must " -"have been previously made busy by :meth:`tk_busy_hold`, and *option* may " -"have any of the values accepted by that method." +msgid "Return the current value of the busy configuration *option*. The widget must have been previously made busy by :meth:`tk_busy_hold`, and *option* may have any of the values accepted by that method." msgstr "" -#: ../../library/tkinter.rst:1938 msgid ":meth:`busy_cget` is an alias of :meth:`!tk_busy_cget`." msgstr "" -#: ../../library/tkinter.rst:1948 -msgid "" -"Make this widget no longer busy, releasing the resources (including the " -"transparent window) allocated when it was made busy. User events will again " -"be received by the widget. These resources are also released when the widget " -"is destroyed." +msgid "Make this widget no longer busy, releasing the resources (including the transparent window) allocated when it was made busy. User events will again be received by the widget. These resources are also released when the widget is destroyed." msgstr "" -#: ../../library/tkinter.rst:1953 msgid ":meth:`busy_forget` is an alias of :meth:`!tk_busy_forget`." msgstr "" -#: ../../library/tkinter.rst:1963 msgid "Return ``True`` if the widget is currently busy, ``False`` otherwise." msgstr "" -#: ../../library/tkinter.rst:1965 msgid ":meth:`busy_status` is an alias of :meth:`!tk_busy_status`." msgstr "" -#: ../../library/tkinter.rst:1975 -msgid "" -"Return a list of widgets that are currently busy. If *pattern* is given, " -"only busy widgets whose path names match the pattern are returned." +msgid "Return a list of widgets that are currently busy. If *pattern* is given, only busy widgets whose path names match the pattern are returned." msgstr "" -#: ../../library/tkinter.rst:1979 msgid ":meth:`busy_current` is an alias of :meth:`!tk_busy_current`." msgstr "" -#: ../../library/tkinter.rst:1983 -msgid "" -"The methods with the ``winfo_`` prefix retrieve information about windows " -"managed by Tk." +msgid "The methods with the ``winfo_`` prefix retrieve information about windows managed by Tk." msgstr "" -#: ../../library/tkinter.rst:1988 -msgid "" -"Return the integer identifier for the atom whose name is *name*, creating a " -"new atom if none exists. If *displayof* is given, the atom is looked up on " -"the display of that window; otherwise it is looked up on the display of the " -"application's main window." +msgid "Return the integer identifier for the atom whose name is *name*, creating a new atom if none exists. If *displayof* is given, the atom is looked up on the display of that window; otherwise it is looked up on the display of the application's main window." msgstr "" -#: ../../library/tkinter.rst:1996 -msgid "" -"Return the textual name for the atom whose integer identifier is *id*. This " -"is the inverse of :meth:`winfo_atom`. If *displayof* is given, the " -"identifier is looked up on the display of that window; otherwise it is " -"looked up on the display of the application's main window." +msgid "Return the textual name for the atom whose integer identifier is *id*. This is the inverse of :meth:`winfo_atom`. If *displayof* is given, the identifier is looked up on the display of that window; otherwise it is looked up on the display of the application's main window." msgstr "" -#: ../../library/tkinter.rst:2004 msgid "Return the number of cells in the colormap for the widget." msgstr "" -#: ../../library/tkinter.rst:2008 -msgid "" -"Return a list containing the widgets that are children of the widget, in " -"stacking order from lowest to highest. Toplevel windows are returned as " -"children of their logical parents." +msgid "Return a list containing the widgets that are children of the widget, in stacking order from lowest to highest. Toplevel windows are returned as children of their logical parents." msgstr "" -#: ../../library/tkinter.rst:2014 msgid "Return the class name of the widget." msgstr "" -#: ../../library/tkinter.rst:2018 -msgid "" -"Return ``True`` if the colormap for the widget is known to be full, " -"``False`` otherwise." +msgid "Return ``True`` if the colormap for the widget is known to be full, ``False`` otherwise." msgstr "" -#: ../../library/tkinter.rst:2023 -msgid "" -"Return the widget containing the point given by *rootX* and *rootY*, or " -"``None`` if no window in this application contains the point. The " -"coordinates are in screen units in the coordinate system of the root window. " -"If *displayof* is given, the coordinates refer to the screen containing that " -"window; otherwise they refer to the screen of the application's main window." +msgid "Return the widget containing the point given by *rootX* and *rootY*, or ``None`` if no window in this application contains the point. The coordinates are in screen units in the coordinate system of the root window. If *displayof* is given, the coordinates refer to the screen containing that window; otherwise they refer to the screen of the application's main window." msgstr "" -#: ../../library/tkinter.rst:2033 msgid "Return the depth of the widget, that is, the number of bits per pixel." msgstr "" -#: ../../library/tkinter.rst:2037 msgid "Return true if the widget exists, false otherwise." msgstr "" -#: ../../library/tkinter.rst:2041 -msgid "" -"Return a floating-point value giving the number of pixels in the widget " -"corresponding to the screen distance *number* (for example, ``\"2.0c\"`` or " -"``\"1i\"``). The result may be fractional; for a rounded integer value " -"use :meth:`winfo_pixels`." +msgid "Return a floating-point value giving the number of pixels in the widget corresponding to the screen distance *number* (for example, ``\"2.0c\"`` or ``\"1i\"``). The result may be fractional; for a rounded integer value use :meth:`winfo_pixels`." msgstr "" -#: ../../library/tkinter.rst:2049 -msgid "" -"Return the geometry of the widget, in the form ``widthxheight+x+y``. All " -"dimensions are in pixels. An offset can be negative; " -"see :meth:`~Wm.geometry`." +msgid "Return the geometry of the widget, in the form ``widthxheight+x+y``. All dimensions are in pixels. An offset can be negative; see :meth:`~Wm.geometry`." msgstr "" -#: ../../library/tkinter.rst:2055 -msgid "" -"Return the height of the widget in pixels. When a window is first created " -"its height is 1 pixel; it is eventually changed by a geometry manager. See " -"also :meth:`winfo_reqheight`." +msgid "Return the height of the widget in pixels. When a window is first created its height is 1 pixel; it is eventually changed by a geometry manager. See also :meth:`winfo_reqheight`." msgstr "" -#: ../../library/tkinter.rst:2062 -msgid "" -"Return a low-level platform-specific identifier for the widget. On Unix this " -"is the X window identifier, and on Windows it is the window handle." +msgid "Return a low-level platform-specific identifier for the widget. On Unix this is the X window identifier, and on Windows it is the window handle." msgstr "" -#: ../../library/tkinter.rst:2068 -msgid "" -"Return a tuple of the names of all Tcl interpreters currently registered for " -"a particular display. If *displayof* is given, the return value refers to " -"the display of that window; otherwise it refers to the display of the " -"application's main window." +msgid "Return a tuple of the names of all Tcl interpreters currently registered for a particular display. If *displayof* is given, the return value refers to the display of that window; otherwise it refers to the display of the application's main window." msgstr "" -#: ../../library/tkinter.rst:2076 msgid "Return true if the widget is currently mapped, false otherwise." msgstr "" -#: ../../library/tkinter.rst:2080 -msgid "" -"Return the name of the geometry manager currently responsible for the " -"widget, or an empty string if it is not managed by any geometry manager." +msgid "Return the name of the geometry manager currently responsible for the widget, or an empty string if it is not managed by any geometry manager." msgstr "" -#: ../../library/tkinter.rst:2085 -msgid "" -"Return the widget's name within its parent, as opposed to its full path name." +msgid "Return the widget's name within its parent, as opposed to its full path name." msgstr "" -#: ../../library/tkinter.rst:2090 -msgid "" -"Return the path name of the widget's parent, or an empty string if the " -"widget is the main window of the application." +msgid "Return the path name of the widget's parent, or an empty string if the widget is the main window of the application." msgstr "" -#: ../../library/tkinter.rst:2095 -msgid "" -"Return the path name of the window whose identifier is *id*. If *displayof* " -"is given, the identifier is looked up on the display of that window; " -"otherwise it is looked up on the display of the application's main window." +msgid "Return the path name of the window whose identifier is *id*. If *displayof* is given, the identifier is looked up on the display of that window; otherwise it is looked up on the display of the application's main window." msgstr "" -#: ../../library/tkinter.rst:2102 -msgid "" -"Return the number of pixels in the widget corresponding to the screen " -"distance *number* (for example, ``\"2.0c\"`` or ``\"1i\"``). The result is " -"rounded to the nearest integer; for a fractional result " -"use :meth:`winfo_fpixels`." +msgid "Return the number of pixels in the widget corresponding to the screen distance *number* (for example, ``\"2.0c\"`` or ``\"1i\"``). The result is rounded to the nearest integer; for a fractional result use :meth:`winfo_fpixels`." msgstr "" -#: ../../library/tkinter.rst:2109 -msgid "" -"Return the pointer's *x* coordinate, in pixels, relative to the screen's " -"root window (or virtual root, if one is in use). Return ``-1`` if the " -"pointer is not on the same screen as the widget." +msgid "Return the pointer's *x* coordinate, in pixels, relative to the screen's root window (or virtual root, if one is in use). Return ``-1`` if the pointer is not on the same screen as the widget." msgstr "" -#: ../../library/tkinter.rst:2115 -msgid "" -"Return the pointer's coordinates as an ``(x, y)`` tuple, in pixels, relative " -"to the screen's root window (or virtual root, if one is in use). Both " -"coordinates are ``-1`` if the pointer is not on the same screen as the " -"widget." +msgid "Return the pointer's coordinates as an ``(x, y)`` tuple, in pixels, relative to the screen's root window (or virtual root, if one is in use). Both coordinates are ``-1`` if the pointer is not on the same screen as the widget." msgstr "" -#: ../../library/tkinter.rst:2122 -msgid "" -"Return the pointer's *y* coordinate, in pixels, relative to the screen's " -"root window (or virtual root, if one is in use). Return ``-1`` if the " -"pointer is not on the same screen as the widget." +msgid "Return the pointer's *y* coordinate, in pixels, relative to the screen's root window (or virtual root, if one is in use). Return ``-1`` if the pointer is not on the same screen as the widget." msgstr "" -#: ../../library/tkinter.rst:2128 -msgid "" -"Return the widget's requested height in pixels. This is the value used by " -"the widget's geometry manager to compute its geometry." +msgid "Return the widget's requested height in pixels. This is the value used by the widget's geometry manager to compute its geometry." msgstr "" -#: ../../library/tkinter.rst:2134 -msgid "" -"Return the widget's requested width in pixels. This is the value used by the " -"widget's geometry manager to compute its geometry." +msgid "Return the widget's requested width in pixels. This is the value used by the widget's geometry manager to compute its geometry." msgstr "" -#: ../../library/tkinter.rst:2140 -msgid "" -"Return an ``(r, g, b)`` tuple of the red, green, and blue intensities, in " -"the range 0 to 65535, that correspond to *color* in the widget. *color* may " -"be specified in any of the forms acceptable for a color option." +msgid "Return an ``(r, g, b)`` tuple of the red, green, and blue intensities, in the range 0 to 65535, that correspond to *color* in the widget. *color* may be specified in any of the forms acceptable for a color option." msgstr "" -#: ../../library/tkinter.rst:2147 -msgid "" -"Return the *x* coordinate, in the root window of the screen, of the upper-" -"left corner of the widget's border (or of the widget itself if it has no " -"border)." +msgid "Return the *x* coordinate, in the root window of the screen, of the upper-left corner of the widget's border (or of the widget itself if it has no border)." msgstr "" -#: ../../library/tkinter.rst:2153 -msgid "" -"Return the *y* coordinate, in the root window of the screen, of the upper-" -"left corner of the widget's border (or of the widget itself if it has no " -"border)." +msgid "Return the *y* coordinate, in the root window of the screen, of the upper-left corner of the widget's border (or of the widget itself if it has no border)." msgstr "" -#: ../../library/tkinter.rst:2159 -msgid "" -"Return the name of the screen associated with the widget, in the form " -"``displayName.screenIndex``." +msgid "Return the name of the screen associated with the widget, in the form ``displayName.screenIndex``." msgstr "" -#: ../../library/tkinter.rst:2164 -msgid "" -"Return the number of cells in the default colormap for the widget's screen." +msgid "Return the number of cells in the default colormap for the widget's screen." msgstr "" -#: ../../library/tkinter.rst:2169 -msgid "" -"Return the depth of the root window of the widget's screen, that is, the " -"number of bits per pixel." +msgid "Return the depth of the root window of the widget's screen, that is, the number of bits per pixel." msgstr "" -#: ../../library/tkinter.rst:2174 msgid "Return the height of the widget's screen in pixels." msgstr "" -#: ../../library/tkinter.rst:2178 msgid "Return the height of the widget's screen in millimeters." msgstr "" -#: ../../library/tkinter.rst:2182 msgid "Return the width of the widget's screen in millimeters." msgstr "" -#: ../../library/tkinter.rst:2186 -msgid "" -"Return the default visual class for the widget's screen, one of " -"``\"directcolor\"``, ``\"grayscale\"``, ``\"pseudocolor\"``, " -"``\"staticcolor\"``, ``\"staticgray\"``, or ``\"truecolor\"``." +msgid "Return the default visual class for the widget's screen, one of ``\"directcolor\"``, ``\"grayscale\"``, ``\"pseudocolor\"``, ``\"staticcolor\"``, ``\"staticgray\"``, or ``\"truecolor\"``." msgstr "" -#: ../../library/tkinter.rst:2192 msgid "Return the width of the widget's screen in pixels." msgstr "" -#: ../../library/tkinter.rst:2196 -msgid "" -"Return a string containing information about the server for the widget's " -"display. The exact format of this string may vary from platform to platform." +msgid "Return a string containing information about the server for the widget's display. The exact format of this string may vary from platform to platform." msgstr "" -#: ../../library/tkinter.rst:2202 -msgid "" -"Return the top-of-hierarchy window containing the widget. In standard Tk " -"this is always a :class:`Toplevel` widget." +msgid "Return the top-of-hierarchy window containing the widget. In standard Tk this is always a :class:`Toplevel` widget." msgstr "" -#: ../../library/tkinter.rst:2207 -msgid "" -"Return true if the widget and all of its ancestors up through the nearest " -"toplevel window are mapped, false otherwise." +msgid "Return true if the widget and all of its ancestors up through the nearest toplevel window are mapped, false otherwise." msgstr "" -#: ../../library/tkinter.rst:2212 -msgid "" -"Return the visual class for the widget, one of ``\"directcolor\"``, " -"``\"grayscale\"``, ``\"pseudocolor\"``, ``\"staticcolor\"``, " -"``\"staticgray\"``, or ``\"truecolor\"``." +msgid "Return the visual class for the widget, one of ``\"directcolor\"``, ``\"grayscale\"``, ``\"pseudocolor\"``, ``\"staticcolor\"``, ``\"staticgray\"``, or ``\"truecolor\"``." msgstr "" -#: ../../library/tkinter.rst:2218 msgid "Return the X identifier for the visual for the widget." msgstr "" -#: ../../library/tkinter.rst:2222 -msgid "" -"Return a list describing the visuals available for the widget's screen. Each " -"item consists of a visual class (see :meth:`winfo_visual`) followed by an " -"integer depth. If *includeids* is true, the X identifier for the visual is " -"also included." +msgid "Return a list describing the visuals available for the widget's screen. Each item consists of a visual class (see :meth:`winfo_visual`) followed by an integer depth. If *includeids* is true, the X identifier for the visual is also included." msgstr "" -#: ../../library/tkinter.rst:2230 -msgid "" -"Return the height of the virtual root window associated with the widget if " -"there is one; otherwise return the height of the widget's screen." +msgid "Return the height of the virtual root window associated with the widget if there is one; otherwise return the height of the widget's screen." msgstr "" -#: ../../library/tkinter.rst:2235 -msgid "" -"Return the width of the virtual root window associated with the widget if " -"there is one; otherwise return the width of the widget's screen." +msgid "Return the width of the virtual root window associated with the widget if there is one; otherwise return the width of the widget's screen." msgstr "" -#: ../../library/tkinter.rst:2240 -msgid "" -"Return the *x* offset of the virtual root window associated with the widget, " -"relative to the root window of its screen. This is normally zero or " -"negative, and is ``0`` if there is no virtual root window." +msgid "Return the *x* offset of the virtual root window associated with the widget, relative to the root window of its screen. This is normally zero or negative, and is ``0`` if there is no virtual root window." msgstr "" -#: ../../library/tkinter.rst:2247 -msgid "" -"Return the *y* offset of the virtual root window associated with the widget, " -"relative to the root window of its screen. This is normally zero or " -"negative, and is ``0`` if there is no virtual root window." +msgid "Return the *y* offset of the virtual root window associated with the widget, relative to the root window of its screen. This is normally zero or negative, and is ``0`` if there is no virtual root window." msgstr "" -#: ../../library/tkinter.rst:2254 -msgid "" -"Return the width of the widget in pixels. When a window is first created its " -"width is 1 pixel; it is eventually changed by a geometry manager. See " -"also :meth:`winfo_reqwidth`." +msgid "Return the width of the widget in pixels. When a window is first created its width is 1 pixel; it is eventually changed by a geometry manager. See also :meth:`winfo_reqwidth`." msgstr "" -#: ../../library/tkinter.rst:2261 -msgid "" -"Return the *x* coordinate, in the widget's parent, of the upper-left corner " -"of the widget's border (or of the widget itself if it has no border)." +msgid "Return the *x* coordinate, in the widget's parent, of the upper-left corner of the widget's border (or of the widget itself if it has no border)." msgstr "" -#: ../../library/tkinter.rst:2267 -msgid "" -"Return the *y* coordinate, in the widget's parent, of the upper-left corner " -"of the widget's border (or of the widget itself if it has no border)." +msgid "Return the *y* coordinate, in the widget's parent, of the upper-left corner of the widget's border (or of the widget itself if it has no border)." msgstr "" -#: ../../library/tkinter.rst:2273 -msgid "" -"Return the Tcl/Tk patch level as a named tuple with the same five fields " -"as :data:`sys.version_info`: *major*, *minor*, *micro*, *releaselevel* and " -"*serial*. *releaselevel* is ``'alpha'``, ``'beta'`` or ``'final'``. " -"Converting it to a string gives the version in the usual Tcl/Tk notation, " -"for example ``'9.0.3'`` for a final release or ``'9.1b2'`` for a pre-release." +msgid "Return the Tcl/Tk patch level as a named tuple with the same five fields as :data:`sys.version_info`: *major*, *minor*, *micro*, *releaselevel* and *serial*. *releaselevel* is ``'alpha'``, ``'beta'`` or ``'final'``. Converting it to a string gives the version in the usual Tcl/Tk notation, for example ``'9.0.3'`` for a final release or ``'9.1b2'`` for a pre-release." msgstr "" -#: ../../library/tkinter.rst:2287 -msgid "" -"The :class:`!Wm` mixin provides access to the window manager, allowing an " -"application to control such things as the title, geometry and icon of a top-" -"level window, the way it is resized, and how it responds to window manager " -"protocols. It is mixed into :class:`Tk` and :class:`Toplevel`, so its " -"methods are available on every top-level window. Each method has two " -"equivalent spellings: a short name and a ``wm_``-prefixed name (for " -"example, :meth:`title` and :meth:`wm_title`). See also :ref:`tkinter-window-" -"manager`." +msgid "The :class:`!Wm` mixin provides access to the window manager, allowing an application to control such things as the title, geometry and icon of a top-level window, the way it is resized, and how it responds to window manager protocols. It is mixed into :class:`Tk` and :class:`Toplevel`, so its methods are available on every top-level window. Each method has two equivalent spellings: a short name and a ``wm_``-prefixed name (for example, :meth:`title` and :meth:`wm_title`). See also :ref:`tkinter-window-manager`." msgstr "" -#: ../../library/tkinter.rst:2302 -msgid "" -"Constrain the aspect ratio (the ratio of width to height) of the window. If " -"all four arguments are given, the window manager keeps the ratio between " -"``minNumer/minDenom`` and ``maxNumer/maxDenom``; passing empty strings " -"removes any existing restriction. With no arguments, return a tuple of the " -"four current values, or ``None`` if no aspect restriction is in " -"effect. :meth:`wm_aspect` is an alias of :meth:`!aspect`." +msgid "Constrain the aspect ratio (the ratio of width to height) of the window. If all four arguments are given, the window manager keeps the ratio between ``minNumer/minDenom`` and ``maxNumer/maxDenom``; passing empty strings removes any existing restriction. With no arguments, return a tuple of the four current values, or ``None`` if no aspect restriction is in effect. :meth:`wm_aspect` is an alias of :meth:`!aspect`." msgstr "" -#: ../../library/tkinter.rst:2315 -msgid "" -"Query or set platform-specific attributes of the window. With no arguments, " -"return the platform-specific flags and their values; pass " -"*return_python_dict* as true to get them as a dictionary. A single option " -"name such as ``'alpha'`` returns the value of that option, and options are " -"set using keyword arguments (``alpha=0.5``)." +msgid "Query or set platform-specific attributes of the window. With no arguments, return the platform-specific flags and their values; pass *return_python_dict* as true to get them as a dictionary. A single option name such as ``'alpha'`` returns the value of that option, and options are set using keyword arguments (``alpha=0.5``)." msgstr "" -#: ../../library/tkinter.rst:2321 msgid "The available attributes differ by platform. All platforms support:" msgstr "" -#: ../../library/tkinter.rst:2324 msgid "*alpha*" msgstr "" -#: ../../library/tkinter.rst:2325 -msgid "" -"The window's opacity, from ``0.0`` (fully transparent) to ``1.0`` (opaque). " -"Where transparency is unsupported the value stays at ``1.0``." +msgid "The window's opacity, from ``0.0`` (fully transparent) to ``1.0`` (opaque). Where transparency is unsupported the value stays at ``1.0``." msgstr "" -#: ../../library/tkinter.rst:2329 msgid "*appearance*" msgstr "" -#: ../../library/tkinter.rst:2330 -msgid "" -"Whether the window is rendered in dark mode on Windows and macOS: " -"``'auto'``, ``'light'`` or ``'dark'`` (this has no effect on X11)." +msgid "Whether the window is rendered in dark mode on Windows and macOS: ``'auto'``, ``'light'`` or ``'dark'`` (this has no effect on X11)." msgstr "" -#: ../../library/tkinter.rst:2333 msgid "*fullscreen*" msgstr "" -#: ../../library/tkinter.rst:2334 msgid "Whether the window takes up the entire screen and has no borders." msgstr "" -#: ../../library/tkinter.rst:2336 msgid "*topmost*" msgstr "" -#: ../../library/tkinter.rst:2337 msgid "Whether the window is displayed above all other windows." msgstr "" -#: ../../library/tkinter.rst:2339 msgid "Windows additionally supports:" msgstr "" -#: ../../library/tkinter.rst:2341 msgid "*disabled*" msgstr "" -#: ../../library/tkinter.rst:2342 msgid "Whether the window is in a disabled state." msgstr "" -#: ../../library/tkinter.rst:2344 msgid "*toolwindow*" msgstr "" -#: ../../library/tkinter.rst:2345 msgid "Whether the window uses the tool window style." msgstr "" -#: ../../library/tkinter.rst:2347 msgid "*transparentcolor*" msgstr "" -#: ../../library/tkinter.rst:2348 msgid "The color that is made fully transparent, or an empty string for none." msgstr "" -#: ../../library/tkinter.rst:2350 msgid "macOS additionally supports:" msgstr "" -#: ../../library/tkinter.rst:2352 msgid "*class*" msgstr "" -#: ../../library/tkinter.rst:2353 -msgid "" -"Whether the underlying Aqua window is an ``nswindow`` or an ``nspanel``; " -"this can only be set before the window is created." +msgid "Whether the underlying Aqua window is an ``nswindow`` or an ``nspanel``; this can only be set before the window is created." msgstr "" -#: ../../library/tkinter.rst:2356 msgid "*modified*" msgstr "" -#: ../../library/tkinter.rst:2357 -msgid "" -"The modification state shown by the window's close button and proxy icon." +msgid "The modification state shown by the window's close button and proxy icon." msgstr "" -#: ../../library/tkinter.rst:2360 msgid "*notify*" msgstr "" -#: ../../library/tkinter.rst:2361 msgid "Whether the application's dock icon bounces to request attention." msgstr "" -#: ../../library/tkinter.rst:2363 msgid "*stylemask*" msgstr "" -#: ../../library/tkinter.rst:2364 -msgid "" -"The style mask of the underlying Aqua window, given as a list of bit names " -"such as ``titled`` or ``resizable``." +msgid "The style mask of the underlying Aqua window, given as a list of bit names such as ``titled`` or ``resizable``." msgstr "" -#: ../../library/tkinter.rst:2367 msgid "*tabbingid*" msgstr "" -#: ../../library/tkinter.rst:2368 msgid "The identifier of the tab group that the window belongs to." msgstr "" -#: ../../library/tkinter.rst:2370 msgid "*tabbingmode*" msgstr "" -#: ../../library/tkinter.rst:2371 -msgid "" -"Whether the window may be opened as a tab: ``'auto'``, ``'preferred'`` or " -"``'disallowed'``." +msgid "Whether the window may be opened as a tab: ``'auto'``, ``'preferred'`` or ``'disallowed'``." msgstr "" -#: ../../library/tkinter.rst:2374 msgid "*titlepath*" msgstr "" -#: ../../library/tkinter.rst:2375 msgid "The path of the file represented by the window's proxy icon." msgstr "" -#: ../../library/tkinter.rst:2377 msgid "*transparent*" msgstr "" -#: ../../library/tkinter.rst:2378 -msgid "" -"Whether the content area is transparent and the window shadow is turned off." +msgid "Whether the content area is transparent and the window shadow is turned off." msgstr "" -#: ../../library/tkinter.rst:2381 msgid "X11 additionally supports:" msgstr "" -#: ../../library/tkinter.rst:2383 msgid "*type*" msgstr "" -#: ../../library/tkinter.rst:2384 -msgid "" -"The window type, or a list of types in order of preference, that the window " -"manager should use to interpret the window, such as ``'dialog'`` or " -"``'splash'``." +msgid "The window type, or a list of types in order of preference, that the window manager should use to interpret the window, such as ``'dialog'`` or ``'splash'``." msgstr "" -#: ../../library/tkinter.rst:2388 msgid "*zoomed*" msgstr "" -#: ../../library/tkinter.rst:2389 msgid "Whether the window is maximized." msgstr "" -#: ../../library/tkinter.rst:2393 -msgid "" -"Tk 8.6 added the *type* attribute, and Tk 9.0 added the *appearance*, " -"*class*, *stylemask*, *tabbingid* and *tabbingmode* attributes." +msgid "Tk 8.6 added the *type* attribute, and Tk 9.0 added the *appearance*, *class*, *stylemask*, *tabbingid* and *tabbingmode* attributes." msgstr "" -#: ../../library/tkinter.rst:2396 -msgid "" -"On X11 changes are applied asynchronously, so a queried value may not yet " -"reflect the most recent request. :meth:`wm_attributes` is an alias " -"of :meth:`!attributes`." +msgid "On X11 changes are applied asynchronously, so a queried value may not yet reflect the most recent request. :meth:`wm_attributes` is an alias of :meth:`!attributes`." msgstr "" -#: ../../library/tkinter.rst:2400 -msgid "" -"A single attribute may now be queried by name without the leading ``-``, and " -"attributes may be set using keyword arguments. The *return_python_dict* " -"parameter was added." +msgid "A single attribute may now be queried by name without the leading ``-``, and attributes may be set using keyword arguments. The *return_python_dict* parameter was added." msgstr "" -#: ../../library/tkinter.rst:2405 -msgid "" -"Setting an attribute by passing the option name (with a leading ``-``) and " -"its value as two positional arguments, as in ``w.attributes('-alpha', " -"0.5)``, is deprecated; use keyword arguments instead." +msgid "Setting an attribute by passing the option name (with a leading ``-``) and its value as two positional arguments, as in ``w.attributes('-alpha', 0.5)``, is deprecated; use keyword arguments instead." msgstr "" -#: ../../library/tkinter.rst:2417 -msgid "" -"Store *name*, which should be the name of the host on which the application " -"is running, in the window's ``WM_CLIENT_MACHINE`` property for use by the " -"window or session manager. An empty string deletes the property. With no " -"argument, return the last name set, or an empty string. :meth:`wm_client` is " -"an alias of :meth:`!client`." +msgid "Store *name*, which should be the name of the host on which the application is running, in the window's ``WM_CLIENT_MACHINE`` property for use by the window or session manager. An empty string deletes the property. With no argument, return the last name set, or an empty string. :meth:`wm_client` is an alias of :meth:`!client`." msgstr "" -#: ../../library/tkinter.rst:2429 -msgid "" -"Manipulate the ``WM_COLORMAP_WINDOWS`` property, which tells the window " -"manager about windows that have private colormaps. If *wlist* is given, " -"overwrite the property with those windows (their order is a priority order " -"for installing colormaps). With no arguments, return the list of windows " -"currently named in the property. :meth:`wm_colormapwindows` is an alias " -"of :meth:`!colormapwindows`." +msgid "Manipulate the ``WM_COLORMAP_WINDOWS`` property, which tells the window manager about windows that have private colormaps. If *wlist* is given, overwrite the property with those windows (their order is a priority order for installing colormaps). With no arguments, return the list of windows currently named in the property. :meth:`wm_colormapwindows` is an alias of :meth:`!colormapwindows`." msgstr "" -#: ../../library/tkinter.rst:2442 -msgid "" -"Store *value* in the window's ``WM_COMMAND`` property for use by the window " -"or session manager; it should be a list giving the words of the command used " -"to invoke the application. An empty string deletes the property. With no " -"argument, return the last value set, or an empty string. :meth:`wm_command` " -"is an alias of :meth:`!command`." +msgid "Store *value* in the window's ``WM_COMMAND`` property for use by the window or session manager; it should be a list giving the words of the command used to invoke the application. An empty string deletes the property. With no argument, return the last value set, or an empty string. :meth:`wm_command` is an alias of :meth:`!command`." msgstr "" -#: ../../library/tkinter.rst:2454 -msgid "" -"Display the window in normal (non-iconified) form by mapping it. If the " -"window has never been mapped, this ensures it appears de-iconified when it " -"is first mapped. On Windows the window is also raised and given the " -"focus. :meth:`wm_deiconify` is an alias of :meth:`!deiconify`." +msgid "Display the window in normal (non-iconified) form by mapping it. If the window has never been mapped, this ensures it appears de-iconified when it is first mapped. On Windows the window is also raised and given the focus. :meth:`wm_deiconify` is an alias of :meth:`!deiconify`." msgstr "" -#: ../../library/tkinter.rst:2465 -msgid "" -"Set or query the focus model for the window. *model* is either ``'active'`` " -"(the window claims the input focus for itself or its descendants, even when " -"the focus is in another application) or ``'passive'`` (the window relies on " -"the window manager to give it the focus). With no argument, return the " -"current model. The default is ``'passive'``, which is what the :meth:`!" -"focus` command assumes. :meth:`wm_focusmodel` is an alias of :meth:`!" -"focusmodel`." +msgid "Set or query the focus model for the window. *model* is either ``'active'`` (the window claims the input focus for itself or its descendants, even when the focus is in another application) or ``'passive'`` (the window relies on the window manager to give it the focus). With no argument, return the current model. The default is ``'passive'``, which is what the :meth:`!focus` command assumes. :meth:`wm_focusmodel` is an alias of :meth:`!focusmodel`." msgstr "" -#: ../../library/tkinter.rst:2480 -msgid "" -"Unmap *window* from the screen so that it is no longer managed by the window " -"manager. A :class:`Toplevel` is then treated like a :class:`Frame`, although " -"its ``-menu`` configuration is remembered and the menu reappears if the " -"widget is managed again. :meth:`wm_forget` is an alias of :meth:`!forget`." +msgid "Unmap *window* from the screen so that it is no longer managed by the window manager. A :class:`Toplevel` is then treated like a :class:`Frame`, although its ``-menu`` configuration is remembered and the menu reappears if the widget is managed again. :meth:`wm_forget` is an alias of :meth:`!forget`." msgstr "" -#: ../../library/tkinter.rst:2487 msgid "Not to be confused with :meth:`Pack.forget`." msgstr "" -#: ../../library/tkinter.rst:2496 -msgid "" -"Return the platform-specific window identifier for the outermost decorative " -"frame containing the window, if the window manager has reparented it into " -"such a frame; otherwise return the identifier of the window " -"itself. :meth:`wm_frame` is an alias of :meth:`!frame`." +msgid "Return the platform-specific window identifier for the outermost decorative frame containing the window, if the window manager has reparented it into such a frame; otherwise return the identifier of the window itself. :meth:`wm_frame` is an alias of :meth:`!frame`." msgstr "" -#: ../../library/tkinter.rst:2507 -msgid "" -"Set or query the geometry of the window. *newGeometry* has the form " -"``=widthxheight+x+y``, where any of ``=``, ``widthxheight`` and the ``+x+y`` " -"position may be omitted. *width* and *height* are in pixels (or grid units " -"for a gridded window); a position preceded by ``+`` is measured from the " -"left or top edge of the screen and one preceded by ``-`` from the right or " -"bottom edge. An offset can be negative, as in ``'200x100+-9+-8'``, when the " -"window edge is positioned beyond the corresponding screen edge. An empty " -"string cancels any user-specified geometry, letting the window revert to its " -"natural size. With no argument, return the current geometry as a string of " -"the form ``'200x200+10+10'``. :meth:`wm_geometry` is an alias of :meth:`!" -"geometry`." -msgstr "" - -#: ../../library/tkinter.rst:2526 -msgid "" -"Manage the window as a gridded window and define the relationship between " -"grid units and pixels. *baseWidth* and *baseHeight* are the numbers of grid " -"units for the window's internally requested size, and *widthInc* and " -"*heightInc* are the pixel sizes of a horizontal and vertical grid unit. " -"Empty strings turn off gridded management. With no arguments, return a tuple " -"of the four current values, or ``None`` if the window is not " -"gridded. :meth:`wm_grid` is an alias of :meth:`!grid`." +msgid "Set or query the geometry of the window. *newGeometry* has the form ``=widthxheight+x+y``, where any of ``=``, ``widthxheight`` and the ``+x+y`` position may be omitted. *width* and *height* are in pixels (or grid units for a gridded window); a position preceded by ``+`` is measured from the left or top edge of the screen and one preceded by ``-`` from the right or bottom edge. An offset can be negative, as in ``'200x100+-9+-8'``, when the window edge is positioned beyond the corresponding screen edge. An empty string cancels any user-specified geometry, letting the window revert to its natural size. With no argument, return the current geometry as a string of the form ``'200x200+10+10'``. :meth:`wm_geometry` is an alias of :meth:`!geometry`." +msgstr "" + +msgid "Manage the window as a gridded window and define the relationship between grid units and pixels. *baseWidth* and *baseHeight* are the numbers of grid units for the window's internally requested size, and *widthInc* and *heightInc* are the pixel sizes of a horizontal and vertical grid unit. Empty strings turn off gridded management. With no arguments, return a tuple of the four current values, or ``None`` if the window is not gridded. :meth:`wm_grid` is an alias of :meth:`!grid`." msgstr "" -#: ../../library/tkinter.rst:2536 msgid "Not to be confused with the grid geometry manager :meth:`Grid.grid`." msgstr "" -#: ../../library/tkinter.rst:2543 -msgid "" -"Set or query the leader of a group of related windows. *pathName* gives the " -"path name of the group leader; the window manager may, for example, unmap " -"all windows in the group when the leader is iconified. An empty string " -"removes the window from any group. With no argument, return the path name of " -"the current group leader, or an empty string. :meth:`wm_group` is an alias " -"of :meth:`!group`." +msgid "Set or query the leader of a group of related windows. *pathName* gives the path name of the group leader; the window manager may, for example, unmap all windows in the group when the leader is iconified. An empty string removes the window from any group. With no argument, return the path name of the current group leader, or an empty string. :meth:`wm_group` is an alias of :meth:`!group`." msgstr "" -#: ../../library/tkinter.rst:2557 -msgid "" -"Set or query the bitmap used by the window manager for the window's icon. " -"*bitmap* names a bitmap in one of the standard forms accepted by Tk; an " -"empty string cancels the current icon bitmap. With no argument, return the " -"name of the current icon bitmap, or an empty string. On Windows the " -"*default* argument names an icon (for example an ``.ico`` file) applied to " -"all top-level windows that have no icon of their own. :meth:`wm_iconbitmap` " -"is an alias of :meth:`!iconbitmap`." +msgid "Set or query the bitmap used by the window manager for the window's icon. *bitmap* names a bitmap in one of the standard forms accepted by Tk; an empty string cancels the current icon bitmap. With no argument, return the name of the current icon bitmap, or an empty string. On Windows the *default* argument names an icon (for example an ``.ico`` file) applied to all top-level windows that have no icon of their own. :meth:`wm_iconbitmap` is an alias of :meth:`!iconbitmap`." msgstr "" -#: ../../library/tkinter.rst:2571 -msgid "" -"Iconify the window. If the window has not yet been mapped for the first " -"time, arrange for it to appear in the iconified state when it is eventually " -"mapped. :meth:`wm_iconify` is an alias of :meth:`!iconify`." +msgid "Iconify the window. If the window has not yet been mapped for the first time, arrange for it to appear in the iconified state when it is eventually mapped. :meth:`wm_iconify` is an alias of :meth:`!iconify`." msgstr "" -#: ../../library/tkinter.rst:2581 -msgid "" -"Set or query the bitmap used as a mask for the icon " -"(see :meth:`iconbitmap`). Where the mask is zero no icon is displayed; where " -"it is one, the corresponding bits of the icon bitmap are shown. An empty " -"string cancels the current mask. With no argument, return the name of the " -"current icon mask, or an empty string. :meth:`wm_iconmask` is an alias " -"of :meth:`!iconmask`." +msgid "Set or query the bitmap used as a mask for the icon (see :meth:`iconbitmap`). Where the mask is zero no icon is displayed; where it is one, the corresponding bits of the icon bitmap are shown. An empty string cancels the current mask. With no argument, return the name of the current icon mask, or an empty string. :meth:`wm_iconmask` is an alias of :meth:`!iconmask`." msgstr "" -#: ../../library/tkinter.rst:2595 -msgid "" -"Set or query the name displayed by the window manager inside the window's " -"icon. With no argument, return the current icon name, or an empty string if " -"none has been set (in which case the window manager normally displays the " -"window's title). :meth:`wm_iconname` is an alias of :meth:`!iconname`." +msgid "Set or query the name displayed by the window manager inside the window's icon. With no argument, return the current icon name, or an empty string if none has been set (in which case the window manager normally displays the window's title). :meth:`wm_iconname` is an alias of :meth:`!iconname`." msgstr "" -#: ../../library/tkinter.rst:2607 -msgid "" -"Set the titlebar icon for the window from one or more :class:`PhotoImage` " -"objects given in *images*. Several images of different sizes (for example " -"16x16 and 32x32) may be supplied so that the window manager can choose an " -"appropriate one. The image data is taken as a snapshot at the time of the " -"call; later changes to the images are not reflected. If *default* is true, " -"the icon is also applied to all top-level windows created in the future. On " -"macOS only the first image is used. :meth:`wm_iconphoto` is an alias " -"of :meth:`!iconphoto`." +msgid "Set the titlebar icon for the window from one or more :class:`PhotoImage` objects given in *images*. Several images of different sizes (for example 16x16 and 32x32) may be supplied so that the window manager can choose an appropriate one. The image data is taken as a snapshot at the time of the call; later changes to the images are not reflected. If *default* is true, the icon is also applied to all top-level windows created in the future. On macOS only the first image is used. :meth:`wm_iconphoto` is an alias of :meth:`!iconphoto`." msgstr "" -#: ../../library/tkinter.rst:2625 -msgid "" -"Set or query a hint to the window manager about where the window's icon " -"should be positioned. Empty strings cancel an existing hint. With no " -"arguments, return a tuple of the two current values, or ``None`` if no hint " -"is in effect. :meth:`wm_iconposition` is an alias of :meth:`!iconposition`." +msgid "Set or query a hint to the window manager about where the window's icon should be positioned. Empty strings cancel an existing hint. With no arguments, return a tuple of the two current values, or ``None`` if no hint is in effect. :meth:`wm_iconposition` is an alias of :meth:`!iconposition`." msgstr "" -#: ../../library/tkinter.rst:2637 -msgid "" -"Set or query the window used as the icon for the window. When the window is " -"iconified, *pathName* is mapped to serve as its icon and unmapped again when " -"it is de-iconified. An empty string cancels the association. With no " -"argument, return the path name of the current icon window, or an empty " -"string. Not all window managers support icon windows, and the concept is " -"meaningless on non-X11 platforms. :meth:`wm_iconwindow` is an alias " -"of :meth:`!iconwindow`." +msgid "Set or query the window used as the icon for the window. When the window is iconified, *pathName* is mapped to serve as its icon and unmapped again when it is de-iconified. An empty string cancels the association. With no argument, return the path name of the current icon window, or an empty string. Not all window managers support icon windows, and the concept is meaningless on non-X11 platforms. :meth:`wm_iconwindow` is an alias of :meth:`!iconwindow`." msgstr "" -#: ../../library/tkinter.rst:2652 -msgid "" -"Make *widget* a stand-alone top-level window, decorated by the window " -"manager with a title bar and so on. Only :class:`Frame`, :class:`LabelFrame` " -"and :class:`Toplevel` widgets may be used (the :mod:`tkinter.ttk` versions " -"are **not** accepted); passing any other widget type raises an " -"error. :meth:`wm_manage` is an alias of :meth:`!manage`." +msgid "Make *widget* a stand-alone top-level window, decorated by the window manager with a title bar and so on. Only :class:`Frame`, :class:`LabelFrame` and :class:`Toplevel` widgets may be used (the :mod:`tkinter.ttk` versions are **not** accepted); passing any other widget type raises an error. :meth:`wm_manage` is an alias of :meth:`!manage`." msgstr "" -#: ../../library/tkinter.rst:2666 -msgid "" -"Set or query the maximum permissible dimensions of the window, in pixels (or " -"grid units for a gridded window). The window manager restricts the window to " -"be no larger than *width* and *height*. With no arguments, return a tuple of " -"the current maximum width and height. The maximum size defaults to the size " -"of the screen. :meth:`wm_maxsize` is an alias of :meth:`!maxsize`." +msgid "Set or query the maximum permissible dimensions of the window, in pixels (or grid units for a gridded window). The window manager restricts the window to be no larger than *width* and *height*. With no arguments, return a tuple of the current maximum width and height. The maximum size defaults to the size of the screen. :meth:`wm_maxsize` is an alias of :meth:`!maxsize`." msgstr "" -#: ../../library/tkinter.rst:2680 -msgid "" -"Set or query the minimum permissible dimensions of the window, in pixels (or " -"grid units for a gridded window). The window manager restricts the window to " -"be no smaller than *width* and *height*. With no arguments, return a tuple " -"of the current minimum width and height. The minimum size defaults to one " -"pixel in each dimension. :meth:`wm_minsize` is an alias of :meth:`!minsize`." +msgid "Set or query the minimum permissible dimensions of the window, in pixels (or grid units for a gridded window). The window manager restricts the window to be no smaller than *width* and *height*. With no arguments, return a tuple of the current minimum width and height. The minimum size defaults to one pixel in each dimension. :meth:`wm_minsize` is an alias of :meth:`!minsize`." msgstr "" -#: ../../library/tkinter.rst:2694 -msgid "" -"Set or query the override-redirect flag for the window. When this flag is " -"set, the window is ignored by the window manager: it is not reparented into " -"a decorative frame and the user cannot manipulate it through the usual " -"window manager controls. With no argument, return a boolean indicating " -"whether the flag is set, or ``None`` if it has not been set. The flag is " -"reliably honored only when the window is first mapped or remapped from the " -"withdrawn state. :meth:`wm_overrideredirect` is an alias of :meth:`!" -"overrideredirect`." +msgid "Set or query the override-redirect flag for the window. When this flag is set, the window is ignored by the window manager: it is not reparented into a decorative frame and the user cannot manipulate it through the usual window manager controls. With no argument, return a boolean indicating whether the flag is set, or ``None`` if it has not been set. The flag is reliably honored only when the window is first mapped or remapped from the withdrawn state. :meth:`wm_overrideredirect` is an alias of :meth:`!overrideredirect`." msgstr "" -#: ../../library/tkinter.rst:2709 -msgid "" -"Set or query the source of the window's current position. *who* is either " -"``'program'`` or ``'user'`` and indicates whether the position was requested " -"by the program or by the user; an empty string cancels the current source. " -"With no argument, return the current source, or an empty string if none has " -"been set. Tk automatically sets the source to ``'user'`` " -"when :meth:`geometry` is called, unless it has been set explicitly to " -"``'program'``. :meth:`wm_positionfrom` is an alias of :meth:`!positionfrom`." +msgid "Set or query the source of the window's current position. *who* is either ``'program'`` or ``'user'`` and indicates whether the position was requested by the program or by the user; an empty string cancels the current source. With no argument, return the current source, or an empty string if none has been set. Tk automatically sets the source to ``'user'`` when :meth:`geometry` is called, unless it has been set explicitly to ``'program'``. :meth:`wm_positionfrom` is an alias of :meth:`!positionfrom`." msgstr "" -#: ../../library/tkinter.rst:2724 -msgid "" -"Register *func* as the handler for the window manager protocol *name*, an " -"atom such as ``'WM_DELETE_WINDOW'``, ``'WM_SAVE_YOURSELF'`` or " -"``'WM_TAKE_FOCUS'``; *func* is then called whenever the window manager sends " -"a message of that protocol. Tk installs a default ``WM_DELETE_WINDOW`` " -"handler that destroys the window, which this method can replace. If *func* " -"is an empty string, the handler is removed. With only *name*, return the " -"name of its registered handler command, or an empty string if none is set " -"(the default ``WM_DELETE_WINDOW`` handler is not reported); with no " -"arguments, return a tuple of the protocols that currently have " -"handlers. :meth:`wm_protocol` is an alias of :meth:`!protocol`." -msgstr "" - -#: ../../library/tkinter.rst:2742 -msgid "" -"Control whether the user may interactively resize the window. *width* and " -"*height* are boolean values that determine whether the window's width and " -"height may be changed. With no arguments, return a tuple of two ``0``/``1`` " -"values indicating whether each dimension is currently resizable. By default " -"a window is resizable in both dimensions. :meth:`wm_resizable` is an alias " -"of :meth:`!resizable`." +msgid "Register *func* as the handler for the window manager protocol *name*, an atom such as ``'WM_DELETE_WINDOW'``, ``'WM_SAVE_YOURSELF'`` or ``'WM_TAKE_FOCUS'``; *func* is then called whenever the window manager sends a message of that protocol. Tk installs a default ``WM_DELETE_WINDOW`` handler that destroys the window, which this method can replace. If *func* is an empty string, the handler is removed. With only *name*, return the name of its registered handler command, or an empty string if none is set (the default ``WM_DELETE_WINDOW`` handler is not reported); with no arguments, return a tuple of the protocols that currently have handlers. :meth:`wm_protocol` is an alias of :meth:`!protocol`." msgstr "" -#: ../../library/tkinter.rst:2755 -msgid "" -"Set or query the source of the window's current size. *who* is either " -"``'program'`` or ``'user'`` and indicates whether the size was requested by " -"the program or by the user; an empty string cancels the current source. With " -"no argument, return the current source, or an empty string if none has been " -"set. :meth:`wm_sizefrom` is an alias of :meth:`!sizefrom`." +msgid "Control whether the user may interactively resize the window. *width* and *height* are boolean values that determine whether the window's width and height may be changed. With no arguments, return a tuple of two ``0``/``1`` values indicating whether each dimension is currently resizable. By default a window is resizable in both dimensions. :meth:`wm_resizable` is an alias of :meth:`!resizable`." msgstr "" -#: ../../library/tkinter.rst:2768 -msgid "" -"Set or query the state of the window. With no argument, return the current " -"state: one of ``'normal'``, ``'iconic'``, ``'withdrawn'``, ``'icon'`` or, on " -"Windows and macOS only, ``'zoomed'``. ``'iconic'`` refers to a window that " -"has been iconified, while ``'icon'`` refers to a window serving as the icon " -"for another window (see :meth:`iconwindow`); the ``'icon'`` state cannot be " -"set. :meth:`wm_state` is an alias of :meth:`!state`." +msgid "Set or query the source of the window's current size. *who* is either ``'program'`` or ``'user'`` and indicates whether the size was requested by the program or by the user; an empty string cancels the current source. With no argument, return the current source, or an empty string if none has been set. :meth:`wm_sizefrom` is an alias of :meth:`!sizefrom`." msgstr "" -#: ../../library/tkinter.rst:2777 -msgid "" -"Not to be confused with :meth:`ttk.Widget.state `." +msgid "Set or query the state of the window. With no argument, return the current state: one of ``'normal'``, ``'iconic'``, ``'withdrawn'``, ``'icon'`` or, on Windows and macOS only, ``'zoomed'``. ``'iconic'`` refers to a window that has been iconified, while ``'icon'`` refers to a window serving as the icon for another window (see :meth:`iconwindow`); the ``'icon'`` state cannot be set. :meth:`wm_state` is an alias of :meth:`!state`." msgstr "" -#: ../../library/tkinter.rst:2785 -msgid "" -"Set or query the title for the window, which the window manager should " -"display in the window's title bar. With no argument, return the current " -"title. The title defaults to the window's name. :meth:`wm_title` is an alias " -"of :meth:`!title`." +msgid "Not to be confused with :meth:`ttk.Widget.state `." msgstr "" -#: ../../library/tkinter.rst:2796 -msgid "" -"Mark the window as a transient window (such as a pull-down menu or dialog) " -"working on behalf of *master*, the path name of another top-level window. An " -"empty string clears the transient status. With no argument, return the path " -"name of the current master, or an empty string. A transient window mirrors " -"state changes in its master and may be decorated differently by the window " -"manager; it is an error to make a window a transient of " -"itself. :meth:`wm_transient` is an alias of :meth:`!transient`." +msgid "Set or query the title for the window, which the window manager should display in the window's title bar. With no argument, return the current title. The title defaults to the window's name. :meth:`wm_title` is an alias of :meth:`!title`." msgstr "" -#: ../../library/tkinter.rst:2812 -msgid "" -"Withdraw the window from the screen, unmapping it and causing the window " -"manager to forget about it. If the window has never been mapped, it is " -"instead mapped in the withdrawn state. It is sometimes necessary to withdraw " -"a window and then re-map it (for example with :meth:`deiconify`) to make " -"some window managers notice changes to window " -"attributes. :meth:`wm_withdraw` is an alias of :meth:`!withdraw`." +msgid "Mark the window as a transient window (such as a pull-down menu or dialog) working on behalf of *master*, the path name of another top-level window. An empty string clears the transient status. With no argument, return the path name of the current master, or an empty string. A transient window mirrors state changes in its master and may be decorated differently by the window manager; it is an error to make a window a transient of itself. :meth:`wm_transient` is an alias of :meth:`!transient`." msgstr "" -#: ../../library/tkinter.rst:2824 -msgid "" -"Geometry manager that arranges widgets by packing them against the sides of " -"their container. The :class:`!Pack` mix-in is inherited by all widgets " -"(through :class:`Widget`) and provides the methods for managing a widget " -"with the *pack* geometry manager. See also :ref:`tkinter-geometry-" -"management`." +msgid "Withdraw the window from the screen, unmapping it and causing the window manager to forget about it. If the window has never been mapped, it is instead mapped in the withdrawn state. It is sometimes necessary to withdraw a window and then re-map it (for example with :meth:`deiconify`) to make some window managers notice changes to window attributes. :meth:`wm_withdraw` is an alias of :meth:`!withdraw`." msgstr "" -#: ../../library/tkinter.rst:2833 -msgid "" -":class:`Pack`, :class:`Place` and :class:`Grid` all define the short method " -"names :meth:`!forget`, :meth:`!info`, :meth:`!slaves`, :meth:`!content` " -"and :meth:`!propagate`. On a widget the bare names resolve to the *pack* " -"manager's versions, since :class:`Pack` and :class:`Misc` " -"precede :class:`Place` and :class:`Grid` in the method resolution order, " -"whatever manager actually manages the widget; and :meth:`!configure`/:meth:`!" -"config` configure the widget's options, not its geometry. Use the explicit " -"``pack_*``, ``grid_*`` and ``place_*`` methods (and ``pack``, ``grid``, " -"``place`` for geometry configuration) to act on a specific geometry manager." -msgstr "" - -#: ../../library/tkinter.rst:2855 -msgid "" -"Pack the widget inside its container, positioning it relative to the " -"siblings already packed there. The supported options are:" +msgid "Geometry manager that arranges widgets by packing them against the sides of their container. The :class:`!Pack` mix-in is inherited by all widgets (through :class:`Widget`) and provides the methods for managing a widget with the *pack* geometry manager. See also :ref:`tkinter-geometry-management`." +msgstr "" + +msgid ":class:`Pack`, :class:`Place` and :class:`Grid` all define the short method names :meth:`!forget`, :meth:`!info`, :meth:`!slaves`, :meth:`!content` and :meth:`!propagate`. On a widget the bare names resolve to the *pack* manager's versions, since :class:`Pack` and :class:`Misc` precede :class:`Place` and :class:`Grid` in the method resolution order, whatever manager actually manages the widget; and :meth:`!configure`/:meth:`!config` configure the widget's options, not its geometry. Use the explicit ``pack_*``, ``grid_*`` and ``place_*`` methods (and ``pack``, ``grid``, ``place`` for geometry configuration) to act on a specific geometry manager." +msgstr "" + +msgid "Pack the widget inside its container, positioning it relative to the siblings already packed there. The supported options are:" msgstr "" -#: ../../library/tkinter.rst:2859 msgid "*side*" msgstr "" -#: ../../library/tkinter.rst:2860 -msgid "" -"Which side of the container to pack the widget against: ``'top'`` (the " -"default), ``'bottom'``, ``'left'`` or ``'right'``." +msgid "Which side of the container to pack the widget against: ``'top'`` (the default), ``'bottom'``, ``'left'`` or ``'right'``." msgstr "" -#: ../../library/tkinter.rst:2863 ../../library/tkinter.rst:3487 msgid "*fill*" msgstr "" -#: ../../library/tkinter.rst:2864 -msgid "" -"Whether to stretch the widget to fill its parcel: ``'none'`` (the default), " -"``'x'``, ``'y'`` or ``'both'``." +msgid "Whether to stretch the widget to fill its parcel: ``'none'`` (the default), ``'x'``, ``'y'`` or ``'both'``." msgstr "" -#: ../../library/tkinter.rst:2867 msgid "*expand*" msgstr "" -#: ../../library/tkinter.rst:2868 -msgid "" -"Whether the widget should expand to consume any extra space in its container " -"(a boolean, default false)." +msgid "Whether the widget should expand to consume any extra space in its container (a boolean, default false)." msgstr "" -#: ../../library/tkinter.rst:2871 ../../library/tkinter.rst:2977 -#: ../../library/tkinter.rst:3597 ../../library/tkinter.rst:3616 -#: ../../library/tkinter.rst:3631 ../../library/tkinter.rst:3644 msgid "*anchor*" msgstr "" -#: ../../library/tkinter.rst:2872 -msgid "" -"Where to position the widget in its parcel when the parcel is larger than " -"the widget: an anchor such as ``'n'`` or ``'sw'`` (default ``'center'``)." +msgid "Where to position the widget in its parcel when the parcel is larger than the widget: an anchor such as ``'n'`` or ``'sw'`` (default ``'center'``)." msgstr "" -#: ../../library/tkinter.rst:2876 ../../library/tkinter.rst:3071 msgid "*ipadx*, *ipady*" msgstr "" -#: ../../library/tkinter.rst:2877 ../../library/tkinter.rst:3072 -msgid "" -"Internal padding added on the left and right (*ipadx*) or top and bottom " -"(*ipady*) of the widget, as a screen distance (default ``0``)." +msgid "Internal padding added on the left and right (*ipadx*) or top and bottom (*ipady*) of the widget, as a screen distance (default ``0``)." msgstr "" -#: ../../library/tkinter.rst:2880 ../../library/tkinter.rst:3075 msgid "*padx*, *pady*" msgstr "" -#: ../../library/tkinter.rst:2881 ../../library/tkinter.rst:3076 -msgid "" -"External padding left on the left and right (*padx*) or top and bottom " -"(*pady*) of the widget, as a screen distance or a pair of two distances for " -"the two sides (default ``0``)." +msgid "External padding left on the left and right (*padx*) or top and bottom (*pady*) of the widget, as a screen distance or a pair of two distances for the two sides (default ``0``)." msgstr "" -#: ../../library/tkinter.rst:2885 msgid "*after*" msgstr "" -#: ../../library/tkinter.rst:2886 -msgid "" -"Pack the widget after the given widget in the packing order, using the same " -"container." +msgid "Pack the widget after the given widget in the packing order, using the same container." msgstr "" -#: ../../library/tkinter.rst:2889 msgid "*before*" msgstr "" -#: ../../library/tkinter.rst:2890 -msgid "" -"Pack the widget before the given widget in the packing order, using the same " -"container." +msgid "Pack the widget before the given widget in the packing order, using the same container." msgstr "" -#: ../../library/tkinter.rst:2893 ../../library/tkinter.rst:2997 -#: ../../library/tkinter.rst:3080 msgid "*in_*" msgstr "" -#: ../../library/tkinter.rst:2894 -msgid "" -"The container in which to pack the widget; it defaults to the parent widget." +msgid "The container in which to pack the widget; it defaults to the parent widget." msgstr "" -#: ../../library/tkinter.rst:2897 -msgid "" -":meth:`pack`, :meth:`configure` and :meth:`config` are aliases of :meth:`!" -"pack_configure`." +msgid ":meth:`pack`, :meth:`configure` and :meth:`config` are aliases of :meth:`!pack_configure`." msgstr "" -#: ../../library/tkinter.rst:2905 -msgid "" -"Unmap the widget and remove it from the packing order, forgetting its " -"packing options. It can be packed again later " -"with :meth:`pack_configure`. :meth:`forget` is an alias of :meth:`!" -"pack_forget`, except on :class:`PanedWindow`, :class:`ttk.Notebook " -"` and :class:`ttk.PanedWindow " -"`, which provide their own :meth:`!forget` method." +msgid "Unmap the widget and remove it from the packing order, forgetting its packing options. It can be packed again later with :meth:`pack_configure`. :meth:`forget` is an alias of :meth:`!pack_forget`, except on :class:`PanedWindow`, :class:`ttk.Notebook ` and :class:`ttk.PanedWindow `, which provide their own :meth:`!forget` method." msgstr "" -#: ../../library/tkinter.rst:2914 msgid "Not to be confused with :meth:`Wm.forget`." msgstr "" -#: ../../library/tkinter.rst:2921 -msgid "" -"Return a dictionary of the widget's current packing options. :meth:`info` is " -"an alias of :meth:`!pack_info`." +msgid "Return a dictionary of the widget's current packing options. :meth:`info` is an alias of :meth:`!pack_info`." msgstr "" -#: ../../library/tkinter.rst:2931 -msgid "" -"Same as :meth:`Misc.pack_propagate`, treating this widget as a container: " -"enable or disable geometry propagation. :meth:`propagate` is an alias " -"of :meth:`!pack_propagate`." +msgid "Same as :meth:`Misc.pack_propagate`, treating this widget as a container: enable or disable geometry propagation. :meth:`propagate` is an alias of :meth:`!pack_propagate`." msgstr "" -#: ../../library/tkinter.rst:2940 -msgid "" -"Same as :meth:`Misc.pack_slaves`: return the list of widgets packed in this " -"widget. :meth:`slaves` is an alias of :meth:`!pack_slaves`." +msgid "Same as :meth:`Misc.pack_slaves`: return the list of widgets packed in this widget. :meth:`slaves` is an alias of :meth:`!pack_slaves`." msgstr "" -#: ../../library/tkinter.rst:2947 -msgid "" -"Geometry manager that places widgets at explicit positions and sizes within " -"their container. The :class:`!Place` mix-in is inherited by all widgets " -"(through :class:`Widget`). See also :ref:`tkinter-geometry-management`." +msgid "Geometry manager that places widgets at explicit positions and sizes within their container. The :class:`!Place` mix-in is inherited by all widgets (through :class:`Widget`). See also :ref:`tkinter-geometry-management`." msgstr "" -#: ../../library/tkinter.rst:2962 -msgid "" -"Place the widget inside its container at an absolute or relative position. " -"The supported options are:" +msgid "Place the widget inside its container at an absolute or relative position. The supported options are:" msgstr "" -#: ../../library/tkinter.rst:2966 msgid "*x*, *y*" msgstr "" -#: ../../library/tkinter.rst:2967 -msgid "" -"The absolute horizontal and vertical position of the widget's anchor point, " -"as a screen distance (default ``0``)." +msgid "The absolute horizontal and vertical position of the widget's anchor point, as a screen distance (default ``0``)." msgstr "" -#: ../../library/tkinter.rst:2970 msgid "*relx*, *rely*" msgstr "" -#: ../../library/tkinter.rst:2971 -msgid "" -"The horizontal and vertical position of the widget's anchor point as a " -"fraction of the container's width and height, where ``0.0`` is the left or " -"top edge and ``1.0`` is the right or bottom edge. If both the absolute and " -"the relative option are given, their values are summed." +msgid "The horizontal and vertical position of the widget's anchor point as a fraction of the container's width and height, where ``0.0`` is the left or top edge and ``1.0`` is the right or bottom edge. If both the absolute and the relative option are given, their values are summed." msgstr "" -#: ../../library/tkinter.rst:2978 -msgid "" -"Which point of the widget is placed at the given position: an anchor such as " -"``'n'`` or ``'se'`` (default ``'nw'``)." +msgid "Which point of the widget is placed at the given position: an anchor such as ``'n'`` or ``'se'`` (default ``'nw'``)." msgstr "" -#: ../../library/tkinter.rst:2981 ../../library/tkinter.rst:3647 msgid "*width*, *height*" msgstr "" -#: ../../library/tkinter.rst:2982 -msgid "" -"The absolute width and height of the widget, as a screen distance. By " -"default the widget's requested size is used." +msgid "The absolute width and height of the widget, as a screen distance. By default the widget's requested size is used." msgstr "" -#: ../../library/tkinter.rst:2985 msgid "*relwidth*, *relheight*" msgstr "" -#: ../../library/tkinter.rst:2986 -msgid "" -"The width and height of the widget as a fraction of the container's width " -"and height. If both the absolute and the relative option are given, their " -"values are summed." +msgid "The width and height of the widget as a fraction of the container's width and height. If both the absolute and the relative option are given, their values are summed." msgstr "" -#: ../../library/tkinter.rst:2991 msgid "*bordermode*" msgstr "" -#: ../../library/tkinter.rst:2992 -msgid "" -"How the container's border affects placement: ``'inside'`` (the default) " -"measures the area inside the border, ``'outside'`` measures the area " -"including the border, and ``'ignore'`` uses the official X area." +msgid "How the container's border affects placement: ``'inside'`` (the default) measures the area inside the border, ``'outside'`` measures the area including the border, and ``'ignore'`` uses the official X area." msgstr "" -#: ../../library/tkinter.rst:2998 -msgid "" -"The container relative to which the widget is placed; it must be the " -"widget's parent or a descendant of the parent, and defaults to the parent." +msgid "The container relative to which the widget is placed; it must be the widget's parent or a descendant of the parent, and defaults to the parent." msgstr "" -#: ../../library/tkinter.rst:3002 -msgid "" -":meth:`place`, :meth:`configure` and :meth:`config` are aliases of :meth:`!" -"place_configure`." +msgid ":meth:`place`, :meth:`configure` and :meth:`config` are aliases of :meth:`!place_configure`." msgstr "" -#: ../../library/tkinter.rst:3010 -msgid "" -"Unmap the widget and remove it from the placement, forgetting its place " -"options." +msgid "Unmap the widget and remove it from the placement, forgetting its place options." msgstr "" -#: ../../library/tkinter.rst:3018 msgid "Return a dictionary of the widget's current place options." msgstr "" -#: ../../library/tkinter.rst:3025 -msgid "" -"Same as :meth:`Misc.place_slaves`: return the list of widgets placed in this " -"widget." +msgid "Same as :meth:`Misc.place_slaves`: return the list of widgets placed in this widget." msgstr "" -#: ../../library/tkinter.rst:3031 -msgid "" -"Geometry manager that arranges widgets in a two-dimensional grid of rows and " -"columns within their container. The :class:`!Grid` mix-in is inherited by " -"all widgets (through :class:`Widget`). See also :ref:`tkinter-geometry-" -"management`." +msgid "Geometry manager that arranges widgets in a two-dimensional grid of rows and columns within their container. The :class:`!Grid` mix-in is inherited by all widgets (through :class:`Widget`). See also :ref:`tkinter-geometry-management`." msgstr "" -#: ../../library/tkinter.rst:3046 msgid "Position the widget in a cell of its container's grid." msgstr "" -#: ../../library/tkinter.rst:3048 msgid "Not to be confused with :meth:`Wm.grid`." msgstr "" -#: ../../library/tkinter.rst:3050 msgid "The supported options are:" msgstr "" -#: ../../library/tkinter.rst:3052 msgid "*row*, *column*" msgstr "" -#: ../../library/tkinter.rst:3053 -msgid "" -"The row and column of the cell to place the widget in, counting from ``0``. " -"*column* defaults to the column after the previous widget placed in the " -"same :meth:`!grid_configure` call (or ``0``), and *row* defaults to the next " -"empty row." +msgid "The row and column of the cell to place the widget in, counting from ``0``. *column* defaults to the column after the previous widget placed in the same :meth:`!grid_configure` call (or ``0``), and *row* defaults to the next empty row." msgstr "" -#: ../../library/tkinter.rst:3059 msgid "*rowspan*, *columnspan*" msgstr "" -#: ../../library/tkinter.rst:3060 msgid "The number of rows and columns the widget should span (default ``1``)." msgstr "" -#: ../../library/tkinter.rst:3062 msgid "*sticky*" msgstr "" -#: ../../library/tkinter.rst:3063 -msgid "" -"How to position or stretch the widget when its cell is larger than the " -"widget: a string containing zero or more of the characters ``'n'``, ``'s'``, " -"``'e'`` and ``'w'``, naming the cell sides the widget sticks to. Specifying " -"both ``'n'`` and ``'s'`` (or ``'e'`` and ``'w'``) stretches the widget to " -"fill the height (or width) of the cell. The default is ``''``, which centers " -"the widget at its requested size." +msgid "How to position or stretch the widget when its cell is larger than the widget: a string containing zero or more of the characters ``'n'``, ``'s'``, ``'e'`` and ``'w'``, naming the cell sides the widget sticks to. Specifying both ``'n'`` and ``'s'`` (or ``'e'`` and ``'w'``) stretches the widget to fill the height (or width) of the cell. The default is ``''``, which centers the widget at its requested size." msgstr "" -#: ../../library/tkinter.rst:3081 -msgid "" -"The container in whose grid to place the widget; it defaults to the parent " -"widget." +msgid "The container in whose grid to place the widget; it defaults to the parent widget." msgstr "" -#: ../../library/tkinter.rst:3084 -msgid "" -":meth:`grid`, :meth:`configure` and :meth:`config` are aliases of :meth:`!" -"grid_configure`." +msgid ":meth:`grid`, :meth:`configure` and :meth:`config` are aliases of :meth:`!grid_configure`." msgstr "" -#: ../../library/tkinter.rst:3092 -msgid "" -"Unmap the widget and remove it from the grid, forgetting its grid options." +msgid "Unmap the widget and remove it from the grid, forgetting its grid options." msgstr "" -#: ../../library/tkinter.rst:3097 -msgid "" -"Unmap the widget and remove it from the grid, but remember its grid options " -"so that it is restored to the same cell if it is gridded again." +msgid "Unmap the widget and remove it from the grid, but remember its grid options so that it is restored to the same cell if it is gridded again." msgstr "" -#: ../../library/tkinter.rst:3105 msgid "Return a dictionary of the widget's current grid options." msgstr "" -#: ../../library/tkinter.rst:3112 -msgid "" -"Same as :meth:`Misc.grid_bbox`. :meth:`bbox` is an alias of :meth:`!" -"grid_bbox`, except " -"on :class:`Canvas`, :class:`Listbox`, :class:`Spinbox`, :class:`Text`, :class:`ttk.Entry " -"` and :class:`ttk.Treeview `, which " -"provide their own :meth:`!bbox` method." +msgid "Same as :meth:`Misc.grid_bbox`. :meth:`bbox` is an alias of :meth:`!grid_bbox`, except on :class:`Canvas`, :class:`Listbox`, :class:`Spinbox`, :class:`Text`, :class:`ttk.Entry ` and :class:`ttk.Treeview `, which provide their own :meth:`!bbox` method." msgstr "" -#: ../../library/tkinter.rst:3124 -msgid "" -"Same as :meth:`Misc.grid_columnconfigure`: query or set the options (such as " -"*weight*, *minsize*, *pad* and *uniform*) of a grid " -"column. :meth:`columnconfigure` is an alias of :meth:`!grid_columnconfigure`." +msgid "Same as :meth:`Misc.grid_columnconfigure`: query or set the options (such as *weight*, *minsize*, *pad* and *uniform*) of a grid column. :meth:`columnconfigure` is an alias of :meth:`!grid_columnconfigure`." msgstr "" -#: ../../library/tkinter.rst:3133 -msgid "" -"Same as :meth:`Misc.grid_rowconfigure`: query or set the options of a grid " -"row. :meth:`rowconfigure` is an alias of :meth:`!grid_rowconfigure`." +msgid "Same as :meth:`Misc.grid_rowconfigure`: query or set the options of a grid row. :meth:`rowconfigure` is an alias of :meth:`!grid_rowconfigure`." msgstr "" -#: ../../library/tkinter.rst:3142 -msgid "" -"Same as :meth:`Misc.grid_location`: return the ``(column, row)`` of the cell " -"that covers the pixel at *x*, *y*. :meth:`location` is an alias of :meth:`!" -"grid_location`." +msgid "Same as :meth:`Misc.grid_location`: return the ``(column, row)`` of the cell that covers the pixel at *x*, *y*. :meth:`location` is an alias of :meth:`!grid_location`." msgstr "" -#: ../../library/tkinter.rst:3151 -msgid "" -"Same as :meth:`Misc.grid_size`: return a ``(columns, rows)`` tuple giving " -"the size of the grid. :meth:`size` is an alias of :meth:`!grid_size`, except " -"on the :class:`Listbox` widget, which provides its own :meth:`!size` method." +msgid "Same as :meth:`Misc.grid_size`: return a ``(columns, rows)`` tuple giving the size of the grid. :meth:`size` is an alias of :meth:`!grid_size`, except on the :class:`Listbox` widget, which provides its own :meth:`!size` method." msgstr "" -#: ../../library/tkinter.rst:3164 msgid "Same as :meth:`Misc.grid_propagate`." msgstr "" -#: ../../library/tkinter.rst:3171 -msgid "" -"Same as :meth:`Misc.grid_slaves`: return the widgets managed in the grid, " -"optionally restricted to a *row* and/or *column*." +msgid "Same as :meth:`Misc.grid_slaves`: return the widgets managed in the grid, optionally restricted to a *row* and/or *column*." msgstr "" -#: ../../library/tkinter.rst:3177 -msgid "" -"Mix-in providing the horizontal-scrolling interface shared by widgets such " -"as :class:`Entry`, :class:`Canvas`, :class:`Listbox`, :class:`Text` " -"and :class:`Spinbox`. A widget's :meth:`xview` method is registered as the " -"*command* of a horizontal :class:`Scrollbar`." +msgid "Mix-in providing the horizontal-scrolling interface shared by widgets such as :class:`Entry`, :class:`Canvas`, :class:`Listbox`, :class:`Text` and :class:`Spinbox`. A widget's :meth:`xview` method is registered as the *command* of a horizontal :class:`Scrollbar`." msgstr "" -#: ../../library/tkinter.rst:3185 -msgid "" -"Query or change the horizontal position of the view. With no arguments, " -"return a tuple ``(first, last)`` of two fractions between 0 and 1 giving the " -"portion of the document that is currently visible. Otherwise the arguments " -"are passed to the Tk ``xview`` widget command and are usually generated by a " -"scrollbar; :meth:`xview_moveto` and :meth:`xview_scroll` provide a more " -"convenient interface." +msgid "Query or change the horizontal position of the view. With no arguments, return a tuple ``(first, last)`` of two fractions between 0 and 1 giving the portion of the document that is currently visible. Otherwise the arguments are passed to the Tk ``xview`` widget command and are usually generated by a scrollbar; :meth:`xview_moveto` and :meth:`xview_scroll` provide a more convenient interface." msgstr "" -#: ../../library/tkinter.rst:3195 -msgid "" -"Adjust the view so that *fraction* of the total width of the document is off-" -"screen to the left. *fraction* is a number between 0 and 1." +msgid "Adjust the view so that *fraction* of the total width of the document is off-screen to the left. *fraction* is a number between 0 and 1." msgstr "" -#: ../../library/tkinter.rst:3201 -msgid "" -"Shift the view left or right by *number* units. *what* is either ``'units'`` " -"or ``'pages'``; a negative *number* scrolls left and a positive one scrolls " -"right." +msgid "Shift the view left or right by *number* units. *what* is either ``'units'`` or ``'pages'``; a negative *number* scrolls left and a positive one scrolls right." msgstr "" -#: ../../library/tkinter.rst:3208 -msgid "" -"Mix-in providing the vertical-scrolling interface shared by widgets such " -"as :class:`Canvas`, :class:`Listbox` and :class:`Text`. A " -"widget's :meth:`yview` method is registered as the *command* of a " -"vertical :class:`Scrollbar`." +msgid "Mix-in providing the vertical-scrolling interface shared by widgets such as :class:`Canvas`, :class:`Listbox` and :class:`Text`. A widget's :meth:`yview` method is registered as the *command* of a vertical :class:`Scrollbar`." msgstr "" -#: ../../library/tkinter.rst:3215 -msgid "" -"Query or change the vertical position of the view. With no arguments, return " -"a tuple ``(first, last)`` of two fractions between 0 and 1 giving the " -"portion of the document that is currently visible. Otherwise the arguments " -"are passed to the Tk ``yview`` widget command, usually generated by a " -"scrollbar; :meth:`yview_moveto` and :meth:`yview_scroll` provide a more " -"convenient interface." +msgid "Query or change the vertical position of the view. With no arguments, return a tuple ``(first, last)`` of two fractions between 0 and 1 giving the portion of the document that is currently visible. Otherwise the arguments are passed to the Tk ``yview`` widget command, usually generated by a scrollbar; :meth:`yview_moveto` and :meth:`yview_scroll` provide a more convenient interface." msgstr "" -#: ../../library/tkinter.rst:3225 -msgid "" -"Adjust the view so that *fraction* of the total height of the document is " -"off-screen above the top. *fraction* is a number between 0 and 1." +msgid "Adjust the view so that *fraction* of the total height of the document is off-screen above the top. *fraction* is a number between 0 and 1." msgstr "" -#: ../../library/tkinter.rst:3231 -msgid "" -"Shift the view up or down by *number* units. *what* is either ``'units'`` or " -"``'pages'``; a negative *number* scrolls up and a positive one scrolls down." +msgid "Shift the view up or down by *number* units. *what* is either ``'units'`` or ``'pages'``; a negative *number* scrolls up and a positive one scrolls down." msgstr "" -#: ../../library/tkinter.rst:3238 -msgid "" -"Internal base class for all widgets. It inherits from :class:`Misc` and adds " -"the machinery that creates the underlying Tk widget; application code " -"normally uses :class:`Widget` or a concrete widget class rather than " -"instantiating :class:`!BaseWidget` directly." +msgid "Internal base class for all widgets. It inherits from :class:`Misc` and adds the machinery that creates the underlying Tk widget; application code normally uses :class:`Widget` or a concrete widget class rather than instantiating :class:`!BaseWidget` directly." msgstr "" -#: ../../library/tkinter.rst:3246 -msgid "" -"Destroy this widget and all of its children, removing the corresponding Tk " -"widgets and deleting the associated Tcl commands." +msgid "Destroy this widget and all of its children, removing the corresponding Tk widgets and deleting the associated Tcl commands." msgstr "" -#: ../../library/tkinter.rst:3252 -msgid "" -"Internal base class for the standard widgets. It " -"combines :class:`BaseWidget` with the geometry-manager mix-" -"ins :class:`Pack`, :class:`Place` and :class:`Grid`, so that every widget " -"can be managed by any of the three geometry managers. The concrete widget " -"classes (:class:`Button`, :class:`Label`, and so on) derive from :class:`!" -"Widget`." +msgid "Internal base class for the standard widgets. It combines :class:`BaseWidget` with the geometry-manager mix-ins :class:`Pack`, :class:`Place` and :class:`Grid`, so that every widget can be managed by any of the three geometry managers. The concrete widget classes (:class:`Button`, :class:`Label`, and so on) derive from :class:`!Widget`." msgstr "" -#: ../../library/tkinter.rst:3261 msgid "Toplevel widgets" msgstr "" -#: ../../library/tkinter.rst:3265 -msgid "" -"Construct a toplevel Tk widget, which is usually the main window of an " -"application, and initialize a Tcl interpreter for this widget. Each " -"instance has its own associated Tcl interpreter. Inherits from :class:`Misc` " -"and :class:`Wm`." +msgid "Construct a toplevel Tk widget, which is usually the main window of an application, and initialize a Tcl interpreter for this widget. Each instance has its own associated Tcl interpreter. Inherits from :class:`Misc` and :class:`Wm`." msgstr "" -#: ../../library/tkinter.rst:3270 -msgid "" -"To create a Tcl interpreter without initializing the Tk subsystem, use " -"the :func:`Tcl` factory function instead." +msgid "To create a Tcl interpreter without initializing the Tk subsystem, use the :func:`Tcl` factory function instead." msgstr "" -#: ../../library/tkinter.rst:3273 -msgid "" -"The :class:`Tk` class is typically instantiated using all default values. " -"However, the following keyword arguments are currently recognized:" +msgid "The :class:`Tk` class is typically instantiated using all default values. However, the following keyword arguments are currently recognized:" msgstr "" -#: ../../library/tkinter.rst:3276 msgid "*screenName*" msgstr "" -#: ../../library/tkinter.rst:3277 -msgid "" -"When given (as a string), sets the :envvar:`DISPLAY` environment variable. " -"(X11 only)" +msgid "When given (as a string), sets the :envvar:`DISPLAY` environment variable. (X11 only)" msgstr "" -#: ../../library/tkinter.rst:3279 msgid "*baseName*" msgstr "" -#: ../../library/tkinter.rst:3280 -msgid "" -"Name of the profile file. By default, *baseName* is derived from the " -"program name (``sys.argv[0]``)." +msgid "Name of the profile file. By default, *baseName* is derived from the program name (``sys.argv[0]``)." msgstr "" -#: ../../library/tkinter.rst:3282 msgid "*className*" msgstr "" -#: ../../library/tkinter.rst:3283 -msgid "" -"Name of the widget class. Used as a profile file and also as the name with " -"which Tcl is invoked (*argv0* in *interp*)." +msgid "Name of the widget class. Used as a profile file and also as the name with which Tcl is invoked (*argv0* in *interp*)." msgstr "" -#: ../../library/tkinter.rst:3285 msgid "*useTk*" msgstr "" -#: ../../library/tkinter.rst:3286 -msgid "" -"If ``True``, initialize the Tk subsystem. The :func:`tkinter.Tcl() ` " -"function sets this to ``False``." +msgid "If ``True``, initialize the Tk subsystem. The :func:`tkinter.Tcl() ` function sets this to ``False``." msgstr "" -#: ../../library/tkinter.rst:3288 msgid "*sync*" msgstr "" -#: ../../library/tkinter.rst:3289 -msgid "" -"If ``True``, execute all X server commands synchronously, so that errors are " -"reported immediately. Can be used for debugging. (X11 only)" +msgid "If ``True``, execute all X server commands synchronously, so that errors are reported immediately. Can be used for debugging. (X11 only)" msgstr "" -#: ../../library/tkinter.rst:3291 msgid "*use*" msgstr "" -#: ../../library/tkinter.rst:3292 -msgid "" -"Specifies the *id* of the window in which to embed the application, instead " -"of it being created as an independent toplevel window. *id* must be " -"specified in the same way as the value for the -use option for toplevel " -"widgets (that is, it has a form like that returned " -"by :meth:`~Misc.winfo_id`)." +msgid "Specifies the *id* of the window in which to embed the application, instead of it being created as an independent toplevel window. *id* must be specified in the same way as the value for the -use option for toplevel widgets (that is, it has a form like that returned by :meth:`~Misc.winfo_id`)." msgstr "" -#: ../../library/tkinter.rst:3298 -msgid "" -"Note that on some platforms this will only work correctly if *id* refers to " -"a Tk frame or toplevel that has its -container option enabled." +msgid "Note that on some platforms this will only work correctly if *id* refers to a Tk frame or toplevel that has its -container option enabled." msgstr "" -#: ../../library/tkinter.rst:3301 -msgid "" -":class:`Tk` reads and interprets profile files, named :file:`." -"{className}.tcl` and :file:`.{baseName}.tcl`, into the Tcl interpreter and " -"calls :func:`exec` on the contents of :file:`.{className}.py` and :file:`." -"{baseName}.py`. The path for the profile files is the :envvar:`HOME` " -"environment variable or, if that isn't defined, then :data:`os.curdir`." +msgid ":class:`Tk` reads and interprets profile files, named :file:`.{className}.tcl` and :file:`.{baseName}.tcl`, into the Tcl interpreter and calls :func:`exec` on the contents of :file:`.{className}.py` and :file:`.{baseName}.py`. The path for the profile files is the :envvar:`HOME` environment variable or, if that isn't defined, then :data:`os.curdir`." msgstr "" -#: ../../library/tkinter.rst:3310 -msgid "" -"On Windows, creating a Tcl interpreter (by instantiating :class:`Tk` or " -"calling :func:`Tcl`) sets the :envvar:`HOME` environment variable for the " -"process, if it is not already set, to ``%HOMEDRIVE%%HOMEPATH%`` " -"(or :envvar:`USERPROFILE`, or ``c:\\``). This is done by Tcl and can affect " -"other code that reads :envvar:`HOME`." +msgid "On Windows, creating a Tcl interpreter (by instantiating :class:`Tk` or calling :func:`Tcl`) sets the :envvar:`HOME` environment variable for the process, if it is not already set, to ``%HOMEDRIVE%%HOMEPATH%`` (or :envvar:`USERPROFILE`, or ``c:\\``). This is done by Tcl and can affect other code that reads :envvar:`HOME`." msgstr "" -#: ../../library/tkinter.rst:3318 -msgid "" -"The Tk application object created by instantiating :class:`Tk`. This " -"provides access to the Tcl interpreter. Each widget that is attached the " -"same instance of :class:`Tk` has the same value for its :attr:`tk` attribute." +msgid "The Tk application object created by instantiating :class:`Tk`. This provides access to the Tcl interpreter. Each widget that is attached the same instance of :class:`Tk` has the same value for its :attr:`tk` attribute." msgstr "" -#: ../../library/tkinter.rst:3325 -msgid "" -"The widget object that contains this widget. For :class:`Tk`, the :attr:`!" -"master` is :const:`None` because it is the main window. The terms *master* " -"and *parent* are similar and sometimes used interchangeably as argument " -"names; however, calling :meth:`~Misc.winfo_parent` returns a string of the " -"widget name whereas :attr:`!master` returns the object. *parent*/*child* " -"reflects the tree-like relationship while *master* (or *container*)/" -"*content* reflects the container structure." +msgid "The widget object that contains this widget. For :class:`Tk`, the :attr:`!master` is :const:`None` because it is the main window. The terms *master* and *parent* are similar and sometimes used interchangeably as argument names; however, calling :meth:`~Misc.winfo_parent` returns a string of the widget name whereas :attr:`!master` returns the object. *parent*/*child* reflects the tree-like relationship while *master* (or *container*)/*content* reflects the container structure." msgstr "" -#: ../../library/tkinter.rst:3337 -msgid "" -"The immediate descendants of this widget as a :class:`dict` with the child " -"widget names as the keys and the child instance objects as the values." +msgid "The immediate descendants of this widget as a :class:`dict` with the child widget names as the keys and the child instance objects as the values." msgstr "" -#: ../../library/tkinter.rst:3343 -msgid "" -"Destroy this and all descendant widgets and, for the main window, end the " -"connection to the underlying Tcl interpreter." +msgid "Destroy this and all descendant widgets and, for the main window, end the connection to the underlying Tcl interpreter." msgstr "" -#: ../../library/tkinter.rst:3348 -msgid "" -"Finish loading and initializing the Tk subsystem. This is needed only when " -"the interpreter was created without Tk (for example through :func:`Tcl`); it " -"is called automatically when *useTk* is true." +msgid "Finish loading and initializing the Tk subsystem. This is needed only when the interpreter was created without Tk (for example through :func:`Tcl`); it is called automatically when *useTk* is true." msgstr "" -#: ../../library/tkinter.rst:3355 -msgid "" -"Read and source the user's profile files :file:`.{className}.tcl` " -"and :file:`.{baseName}.tcl` into the Tcl interpreter, and execute the " -"corresponding :file:`.{className}.py` and :file:`.{baseName}.py` files. This " -"is called during initialization; see the description of the constructor " -"above." +msgid "Read and source the user's profile files :file:`.{className}.tcl` and :file:`.{baseName}.tcl` into the Tcl interpreter, and execute the corresponding :file:`.{className}.py` and :file:`.{baseName}.py` files. This is called during initialization; see the description of the constructor above." msgstr "" -#: ../../library/tkinter.rst:3363 -msgid "" -"Report a callback exception. This is called when an exception propagates out " -"of a Tkinter callback; *exc*, *val* and *tb* are the exception type, value " -"and traceback as returned by :func:`sys.exc_info`. The default " -"implementation prints a traceback to :data:`sys.stderr`. It can be " -"overridden to customize error handling, for example to display the traceback " -"in a dialog." +msgid "Report a callback exception. This is called when an exception propagates out of a Tkinter callback; *exc*, *val* and *tb* are the exception type, value and traceback as returned by :func:`sys.exc_info`. The default implementation prints a traceback to :data:`sys.stderr`. It can be overridden to customize error handling, for example to display the traceback in a dialog." +msgstr "" + +msgid "A :class:`!Toplevel` widget is a top-level window, similar to a :class:`Frame` except that its X parent is the root window of a screen rather than its logical parent. Its primary purpose is to serve as a container for dialog boxes and other collections of widgets; its only visible features are its background and an optional 3-D border. Notable options include *menu*, which installs a :class:`Menu` as the window's menubar. Inherits from :class:`BaseWidget` and :class:`Wm`, so a toplevel is managed by the window manager. Refer to the Tk ``toplevel`` manual page for the full list of options." msgstr "" -#: ../../library/tkinter.rst:3374 -msgid "" -"A :class:`!Toplevel` widget is a top-level window, similar to " -"a :class:`Frame` except that its X parent is the root window of a screen " -"rather than its logical parent. Its primary purpose is to serve as a " -"container for dialog boxes and other collections of widgets; its only " -"visible features are its background and an optional 3-D border. Notable " -"options include *menu*, which installs a :class:`Menu` as the window's " -"menubar. Inherits from :class:`BaseWidget` and :class:`Wm`, so a toplevel is " -"managed by the window manager. Refer to the Tk ``toplevel`` manual page for " -"the full list of options." -msgstr "" - -#: ../../library/tkinter.rst:3388 msgid "Widget classes" msgstr "" -#: ../../library/tkinter.rst:3392 -msgid "" -"A :class:`!Button` widget displays a textual string, bitmap or image and " -"invokes a command when the user presses it (by clicking mouse button 1 over " -"the button or, when the button has focus, by pressing the space key). " -"Inherits from :class:`Widget`. In addition to the standard widget options, a " -"button accepts the options documented in the Tk ``button`` manual page, such " -"as *command* (the callback invoked when the button is pressed), " -"*textvariable*, *state* and *default*." +msgid "A :class:`!Button` widget displays a textual string, bitmap or image and invokes a command when the user presses it (by clicking mouse button 1 over the button or, when the button has focus, by pressing the space key). Inherits from :class:`Widget`. In addition to the standard widget options, a button accepts the options documented in the Tk ``button`` manual page, such as *command* (the callback invoked when the button is pressed), *textvariable*, *state* and *default*." msgstr "" -#: ../../library/tkinter.rst:3402 -msgid "" -"Invoke the command associated with the button, if there is one, and return " -"its result, or an empty string if no command is associated with the button. " -"This is ignored if the button's state is ``disabled``." +msgid "Invoke the command associated with the button, if there is one, and return its result, or an empty string if no command is associated with the button. This is ignored if the button's state is ``disabled``." msgstr "" -#: ../../library/tkinter.rst:3409 -msgid "" -"Flash the button by redisplaying it several times, alternating between the " -"active and normal colors. At the end of the flash the button is left in the " -"same normal or active state as when the method was called. This is ignored " -"if the button's state is ``disabled``." +msgid "Flash the button by redisplaying it several times, alternating between the active and normal colors. At the end of the flash the button is left in the same normal or active state as when the method was called. This is ignored if the button's state is ``disabled``." msgstr "" -#: ../../library/tkinter.rst:3418 -msgid "" -"A :class:`!Canvas` widget implements structured graphics. It displays any " -"number of *items*, such as arcs, lines, ovals, polygons, rectangles, text, " -"bitmaps, images and embedded windows, which may be drawn, moved, re-colored " -"and bound to events. Inherits from :class:`Widget`, :class:`XView` " -"and :class:`YView`, so the view can be scrolled horizontally and vertically " -"with :meth:`~XView.xview` and :meth:`~YView.yview`. Refer to the Tk " -"``canvas`` manual page for the full list of widget and item options." +msgid "A :class:`!Canvas` widget implements structured graphics. It displays any number of *items*, such as arcs, lines, ovals, polygons, rectangles, text, bitmaps, images and embedded windows, which may be drawn, moved, re-colored and bound to events. Inherits from :class:`Widget`, :class:`XView` and :class:`YView`, so the view can be scrolled horizontally and vertically with :meth:`~XView.xview` and :meth:`~YView.yview`. Refer to the Tk ``canvas`` manual page for the full list of widget and item options." msgstr "" -#: ../../library/tkinter.rst:3428 -msgid "" -"Each item has a unique integer *id*, assigned when it is created, and zero " -"or more string *tags*. A tag is an arbitrary string that does not have the " -"form of an integer; the same tag may be shared by many items, which makes " -"tags convenient for grouping items. The special tag ``'all'`` matches every " -"item in the canvas, and ``'current'`` matches the topmost item under the " -"mouse pointer. Most methods take a *tagOrId* argument that may be an integer " -"id naming a single item, or a tag naming zero or more items; as described in " -"the Tk ``canvas`` manual page, a tag may also be a logical expression of " -"tags combined with the operators ``&&``, ``||``, ``^``, ``!`` and " -"parentheses. When a method that operates on a single item is given a " -"*tagOrId* matching several items, it normally uses the lowest matching item " -"in the display list." -msgstr "" - -#: ../../library/tkinter.rst:3443 -msgid "" -"The items are kept in a *display list* that determines drawing order: items " -"later in the list are drawn on top of earlier ones. A newly created item is " -"placed at the top of the list; the order can be changed " -"with :meth:`tag_raise` and :meth:`tag_lower`." +msgid "Each item has a unique integer *id*, assigned when it is created, and zero or more string *tags*. A tag is an arbitrary string that does not have the form of an integer; the same tag may be shared by many items, which makes tags convenient for grouping items. The special tag ``'all'`` matches every item in the canvas, and ``'current'`` matches the topmost item under the mouse pointer. Most methods take a *tagOrId* argument that may be an integer id naming a single item, or a tag naming zero or more items; as described in the Tk ``canvas`` manual page, a tag may also be a logical expression of tags combined with the operators ``&&``, ``||``, ``^``, ``!`` and parentheses. When a method that operates on a single item is given a *tagOrId* matching several items, it normally uses the lowest matching item in the display list." msgstr "" -#: ../../library/tkinter.rst:3458 -msgid "" -"Create a new item of the corresponding type and return its integer id. Each " -"method is called as ``create_TYPE(coord..., **options)``: the leading " -"positional arguments give the coordinates that define the item (as separate " -"numbers, as a single sequence of numbers, or as coordinate pairs), and the " -"keyword arguments set item-specific options. Coordinates and screen " -"distances may be given as numbers (interpreted as pixels) or as strings with " -"a unit suffix (``'m'``, ``'c'``, ``'i'`` or ``'p'`` for millimetres, " -"centimetres, inches or printer's points), but are always stored and returned " -"in pixels." -msgstr "" - -#: ../../library/tkinter.rst:3468 -msgid "" -"The item types are: ``arc`` (an arc-shaped region that is a section of an " -"oval, defined by two diagonally opposite corners ``x1, y1, x2, y2`` of the " -"enclosing rectangle); ``bitmap`` (a two-color bitmap positioned at a point " -"``x, y``); ``image`` (a Tk image positioned at a point ``x, y``); ``line`` " -"(a line or curve through the points ``x1, y1, ..., xn, yn``); ``oval`` (a " -"circle or ellipse inscribed in the rectangle ``x1, y1, x2, y2``); " -"``polygon`` (a closed polygon through the points ``x1, y1, ..., xn, yn``); " -"``rectangle`` (a rectangle with corners ``x1, y1, x2, y2``); ``text`` (a " -"string of text positioned at a point ``x, y``); and ``window`` (a child " -"widget embedded in the canvas at a point ``x, y``, specified with the " -"*window* option)." -msgstr "" - -#: ../../library/tkinter.rst:3480 -msgid "" -"Most item types accept a common set of *standard item options*, plus a few " -"options specific to each type. Option names are passed as keyword arguments, " -"without the leading hyphen." +msgid "The items are kept in a *display list* that determines drawing order: items later in the list are drawn on top of earlier ones. A newly created item is placed at the top of the list; the order can be changed with :meth:`tag_raise` and :meth:`tag_lower`." +msgstr "" + +msgid "Create a new item of the corresponding type and return its integer id. Each method is called as ``create_TYPE(coord..., **options)``: the leading positional arguments give the coordinates that define the item (as separate numbers, as a single sequence of numbers, or as coordinate pairs), and the keyword arguments set item-specific options. Coordinates and screen distances may be given as numbers (interpreted as pixels) or as strings with a unit suffix (``'m'``, ``'c'``, ``'i'`` or ``'p'`` for millimetres, centimetres, inches or printer's points), but are always stored and returned in pixels." +msgstr "" + +msgid "The item types are: ``arc`` (an arc-shaped region that is a section of an oval, defined by two diagonally opposite corners ``x1, y1, x2, y2`` of the enclosing rectangle); ``bitmap`` (a two-color bitmap positioned at a point ``x, y``); ``image`` (a Tk image positioned at a point ``x, y``); ``line`` (a line or curve through the points ``x1, y1, ..., xn, yn``); ``oval`` (a circle or ellipse inscribed in the rectangle ``x1, y1, x2, y2``); ``polygon`` (a closed polygon through the points ``x1, y1, ..., xn, yn``); ``rectangle`` (a rectangle with corners ``x1, y1, x2, y2``); ``text`` (a string of text positioned at a point ``x, y``); and ``window`` (a child widget embedded in the canvas at a point ``x, y``, specified with the *window* option)." +msgstr "" + +msgid "Most item types accept a common set of *standard item options*, plus a few options specific to each type. Option names are passed as keyword arguments, without the leading hyphen." msgstr "" -#: ../../library/tkinter.rst:3485 msgid "The standard item options are:" msgstr "" -#: ../../library/tkinter.rst:3488 -msgid "" -"The color used to fill the item's interior, or to draw a *line* item or the " -"characters of a *text* item. An empty string (the default for all types " -"except *line* and *text*) leaves the item unfilled." +msgid "The color used to fill the item's interior, or to draw a *line* item or the characters of a *text* item. An empty string (the default for all types except *line* and *text*) leaves the item unfilled." msgstr "" -#: ../../library/tkinter.rst:3493 msgid "*outline*" msgstr "" -#: ../../library/tkinter.rst:3494 -msgid "" -"The color used to draw the item's outline. An empty string draws no outline." +msgid "The color used to draw the item's outline. An empty string draws no outline." msgstr "" -#: ../../library/tkinter.rst:3497 ../../library/tkinter.rst:3601 msgid "*width*" msgstr "" -#: ../../library/tkinter.rst:3498 -msgid "" -"The width of the outline, defaulting to ``1.0``. Has no effect if *outline* " -"is empty." +msgid "The width of the outline, defaulting to ``1.0``. Has no effect if *outline* is empty." msgstr "" -#: ../../library/tkinter.rst:3501 msgid "*dash*" msgstr "" -#: ../../library/tkinter.rst:3502 -msgid "" -"A dash pattern for the outline, given either as a sequence of segment " -"lengths in pixels or as a string of the characters ``'.'``, ``','``, " -"``'-'``, ``'_'`` and space. An empty pattern (the default) draws a solid " -"outline." +msgid "A dash pattern for the outline, given either as a sequence of segment lengths in pixels or as a string of the characters ``'.'``, ``','``, ``'-'``, ``'_'`` and space. An empty pattern (the default) draws a solid outline." msgstr "" -#: ../../library/tkinter.rst:3507 msgid "*dashoffset*" msgstr "" -#: ../../library/tkinter.rst:3508 -msgid "" -"The starting offset in pixels into the *dash* pattern. Ignored if there is " -"no *dash* pattern." +msgid "The starting offset in pixels into the *dash* pattern. Ignored if there is no *dash* pattern." msgstr "" -#: ../../library/tkinter.rst:3511 msgid "*stipple*" msgstr "" -#: ../../library/tkinter.rst:3512 -msgid "" -"A bitmap used as a stipple pattern when filling the item. Only well " -"supported on X11." +msgid "A bitmap used as a stipple pattern when filling the item. Only well supported on X11." msgstr "" -#: ../../library/tkinter.rst:3515 msgid "*outlinestipple*" msgstr "" -#: ../../library/tkinter.rst:3516 -msgid "" -"A bitmap used as a stipple pattern when drawing the outline. Has no effect " -"if *outline* is empty." +msgid "A bitmap used as a stipple pattern when drawing the outline. Has no effect if *outline* is empty." msgstr "" -#: ../../library/tkinter.rst:3519 msgid "*offset*, *outlineoffset*" msgstr "" -#: ../../library/tkinter.rst:3520 -msgid "" -"The offset of the fill and outline stipple patterns, given as ``'x,y'`` or " -"as a side such as ``'n'``, ``'se'`` or ``'center'``. Stipple offsets are " -"only supported on X11." +msgid "The offset of the fill and outline stipple patterns, given as ``'x,y'`` or as a side such as ``'n'``, ``'se'`` or ``'center'``. Stipple offsets are only supported on X11." msgstr "" -#: ../../library/tkinter.rst:3524 ../../library/tkinter.rst:4474 msgid "*state*" msgstr "" -#: ../../library/tkinter.rst:3525 -msgid "" -"Overrides the canvas state for this item; one of ``'normal'``, " -"``'disabled'`` or ``'hidden'``." +msgid "Overrides the canvas state for this item; one of ``'normal'``, ``'disabled'`` or ``'hidden'``." msgstr "" -#: ../../library/tkinter.rst:3528 msgid "*tags*" msgstr "" -#: ../../library/tkinter.rst:3529 -msgid "" -"A single tag or a sequence of tags to associate with the item, replacing any " -"existing tags." +msgid "A single tag or a sequence of tags to associate with the item, replacing any existing tags." msgstr "" -#: ../../library/tkinter.rst:3532 -msgid "" -"Many of these options have *active...* and *disabled...* variants (such as " -"*activefill*, *disabledfill*, *activewidth*, *disableddash*, " -"*activeoutline*, *disabledstipple*) that override the base option when the " -"item is the active item (under the mouse pointer) or is in the disabled " -"state." +msgid "Many of these options have *active...* and *disabled...* variants (such as *activefill*, *disabledfill*, *activewidth*, *disableddash*, *activeoutline*, *disabledstipple*) that override the base option when the item is the active item (under the mouse pointer) or is in the disabled state." msgstr "" -#: ../../library/tkinter.rst:3538 msgid "The following item types support additional options." msgstr "" -#: ../../library/tkinter.rst:3540 msgid "For ``arc`` items:" msgstr "" -#: ../../library/tkinter.rst:3542 msgid "*start*" msgstr "" -#: ../../library/tkinter.rst:3543 -msgid "" -"The start of the arc's angular range, in degrees measured counter-clockwise " -"from the 3-o'clock position." +msgid "The start of the arc's angular range, in degrees measured counter-clockwise from the 3-o'clock position." msgstr "" -#: ../../library/tkinter.rst:3546 msgid "*extent*" msgstr "" -#: ../../library/tkinter.rst:3547 -msgid "" -"The size of the angular range, in degrees counter-clockwise from *start*." +msgid "The size of the angular range, in degrees counter-clockwise from *start*." msgstr "" -#: ../../library/tkinter.rst:3550 msgid "*style*" msgstr "" -#: ../../library/tkinter.rst:3551 -msgid "" -"How the arc is drawn: ``'pieslice'`` (the default), ``'chord'`` or ``'arc'``." +msgid "How the arc is drawn: ``'pieslice'`` (the default), ``'chord'`` or ``'arc'``." msgstr "" -#: ../../library/tkinter.rst:3554 msgid "For ``line`` items:" msgstr "" -#: ../../library/tkinter.rst:3556 msgid "*arrow*" msgstr "" -#: ../../library/tkinter.rst:3557 -msgid "" -"Where to draw arrowheads: ``'none'`` (the default), ``'first'``, ``'last'`` " -"or ``'both'``." +msgid "Where to draw arrowheads: ``'none'`` (the default), ``'first'``, ``'last'`` or ``'both'``." msgstr "" -#: ../../library/tkinter.rst:3560 msgid "*arrowshape*" msgstr "" -#: ../../library/tkinter.rst:3561 msgid "A sequence of three distances describing the shape of the arrowheads." msgstr "" -#: ../../library/tkinter.rst:3564 msgid "*capstyle*" msgstr "" -#: ../../library/tkinter.rst:3565 -msgid "" -"How line ends are drawn: ``'butt'`` (the default), ``'projecting'`` or " -"``'round'``." +msgid "How line ends are drawn: ``'butt'`` (the default), ``'projecting'`` or ``'round'``." msgstr "" -#: ../../library/tkinter.rst:3568 msgid "*joinstyle*" msgstr "" -#: ../../library/tkinter.rst:3569 -msgid "" -"How line vertices are drawn: ``'round'`` (the default), ``'bevel'`` or " -"``'miter'``." +msgid "How line vertices are drawn: ``'round'`` (the default), ``'bevel'`` or ``'miter'``." msgstr "" -#: ../../library/tkinter.rst:3572 msgid "*smooth*" msgstr "" -#: ../../library/tkinter.rst:3573 -msgid "" -"The smoothing method: a false value (the default) for no smoothing, or " -"``'true'``/``'bezier'`` or ``'raw'`` to draw the line as a curve." +msgid "The smoothing method: a false value (the default) for no smoothing, or ``'true'``/``'bezier'`` or ``'raw'`` to draw the line as a curve." msgstr "" -#: ../../library/tkinter.rst:3576 msgid "*splinesteps*" msgstr "" -#: ../../library/tkinter.rst:3577 -msgid "" -"The number of line segments approximating each spline when *smooth* is " -"enabled." +msgid "The number of line segments approximating each spline when *smooth* is enabled." msgstr "" -#: ../../library/tkinter.rst:3580 msgid "For ``polygon`` items:" msgstr "" -#: ../../library/tkinter.rst:3582 msgid "*joinstyle*, *smooth*, *splinesteps*" msgstr "" -#: ../../library/tkinter.rst:3583 msgid "As for ``line`` items, applied to the polygon's outline." msgstr "" -#: ../../library/tkinter.rst:3585 msgid "For ``text`` items:" msgstr "" -#: ../../library/tkinter.rst:3587 msgid "*text*" msgstr "" -#: ../../library/tkinter.rst:3588 msgid "The string to display; newline characters start new lines." msgstr "" -#: ../../library/tkinter.rst:3590 ../../library/tkinter.rst:4488 -#: ../../library/tkinter.rst:5372 msgid "*font*" msgstr "" -#: ../../library/tkinter.rst:3591 msgid "The font used for the text." msgstr "" -#: ../../library/tkinter.rst:3593 ../../library/tkinter.rst:5412 msgid "*justify*" msgstr "" -#: ../../library/tkinter.rst:3594 -msgid "" -"How lines are justified: ``'left'`` (the default), ``'right'`` or " -"``'center'``." +msgid "How lines are justified: ``'left'`` (the default), ``'right'`` or ``'center'``." msgstr "" -#: ../../library/tkinter.rst:3598 -msgid "" -"How the text is positioned relative to its point, defaulting to ``'center'``." +msgid "How the text is positioned relative to its point, defaulting to ``'center'``." msgstr "" -#: ../../library/tkinter.rst:3602 msgid "The maximum line length; if non-zero, lines are wrapped at spaces." msgstr "" -#: ../../library/tkinter.rst:3604 msgid "*angle*" msgstr "" -#: ../../library/tkinter.rst:3605 -msgid "" -"How many degrees to rotate the text counter-clockwise about its positioning " -"point, from ``0.0`` to ``360.0`` (default ``0.0``)." +msgid "How many degrees to rotate the text counter-clockwise about its positioning point, from ``0.0`` to ``360.0`` (default ``0.0``)." msgstr "" -#: ../../library/tkinter.rst:3608 ../../library/tkinter.rst:4470 -#: ../../library/tkinter.rst:5397 msgid "*underline*" msgstr "" -#: ../../library/tkinter.rst:3609 msgid "The index of a character to underline, or ``-1`` for none." msgstr "" -#: ../../library/tkinter.rst:3611 msgid "For ``bitmap`` items:" msgstr "" -#: ../../library/tkinter.rst:3613 ../../library/tkinter.rst:4485 msgid "*bitmap*" msgstr "" -#: ../../library/tkinter.rst:3614 msgid "The bitmap to display." msgstr "" -#: ../../library/tkinter.rst:3617 msgid "How the bitmap is positioned relative to its point." msgstr "" -#: ../../library/tkinter.rst:3619 ../../library/tkinter.rst:4491 msgid "*background*, *foreground*" msgstr "" -#: ../../library/tkinter.rst:3620 -msgid "" -"The colors used for the bitmap's ``0`` and ``1`` pixels; an empty " -"*background* makes the ``0`` pixels transparent. Both have *active...* and " -"*disabled...* variants, and *bitmap* has *activebitmap* and *disabledbitmap* " -"variants." +msgid "The colors used for the bitmap's ``0`` and ``1`` pixels; an empty *background* makes the ``0`` pixels transparent. Both have *active...* and *disabled...* variants, and *bitmap* has *activebitmap* and *disabledbitmap* variants." msgstr "" -#: ../../library/tkinter.rst:3625 msgid "For ``image`` items:" msgstr "" -#: ../../library/tkinter.rst:3627 ../../library/tkinter.rst:4477 msgid "*image*" msgstr "" -#: ../../library/tkinter.rst:3628 msgid "The Tk image to display, previously created with the image protocols." msgstr "" -#: ../../library/tkinter.rst:3632 msgid "How the image is positioned relative to its point." msgstr "" -#: ../../library/tkinter.rst:3634 -msgid "" -"Both options have *active...* and *disabled...* variants (*activeimage*, " -"*disabledimage*) used in the active and disabled states." +msgid "Both options have *active...* and *disabled...* variants (*activeimage*, *disabledimage*) used in the active and disabled states." msgstr "" -#: ../../library/tkinter.rst:3638 msgid "For ``window`` items:" msgstr "" -#: ../../library/tkinter.rst:3640 msgid "*window*" msgstr "" -#: ../../library/tkinter.rst:3641 -msgid "" -"The widget to embed; it must be a child of the canvas or of one of its " -"ancestors, and may not be a top-level window." +msgid "The widget to embed; it must be a child of the canvas or of one of its ancestors, and may not be a top-level window." msgstr "" -#: ../../library/tkinter.rst:3645 msgid "How the window is positioned relative to its point." msgstr "" -#: ../../library/tkinter.rst:3648 -msgid "" -"The size to assign to the window; if zero (the default), the window is given " -"its requested size." +msgid "The size to assign to the window; if zero (the default), the window is given its requested size." msgstr "" -#: ../../library/tkinter.rst:3651 -msgid "" -"``oval`` and ``rectangle`` items have no type-specific options; they use " -"only the standard item options." +msgid "``oval`` and ``rectangle`` items have no type-specific options; they use only the standard item options." msgstr "" -#: ../../library/tkinter.rst:3656 -msgid "" -"Tk 8.6 added the *angle* option and Tk 9.0 added the *underline* option for " -"``text`` items." +msgid "Tk 8.6 added the *angle* option and Tk 9.0 added the *underline* option for ``text`` items." msgstr "" -#: ../../library/tkinter.rst:3663 -msgid "" -"Query or modify the coordinates of an item. With only *tagOrId*, return a " -"list of the floating-point coordinates of the item given by *tagOrId* (the " -"first matching item if it matches several). Given new coordinates, replace " -"the coordinates of that item with them; like the ``create_*`` methods, the " -"coordinates may be given as separate numbers, as a single sequence, or as " -"coordinate pairs. The returned coordinates are always in pixels, regardless " -"of the units used to specify them; for rectangles, ovals and arcs they are " -"ordered left, top, right, bottom." +msgid "Query or modify the coordinates of an item. With only *tagOrId*, return a list of the floating-point coordinates of the item given by *tagOrId* (the first matching item if it matches several). Given new coordinates, replace the coordinates of that item with them; like the ``create_*`` methods, the coordinates may be given as separate numbers, as a single sequence, or as coordinate pairs. The returned coordinates are always in pixels, regardless of the units used to specify them; for rectangles, ovals and arcs they are ordered left, top, right, bottom." msgstr "" -#: ../../library/tkinter.rst:3674 -msgid "" -"The arguments are now flattened: the coordinates may be given as separate " -"arguments, as a single sequence, or grouped in pairs, like the ``create_*`` " -"methods." +msgid "The arguments are now flattened: the coordinates may be given as separate arguments, as a single sequence, or grouped in pairs, like the ``create_*`` methods." msgstr "" -#: ../../library/tkinter.rst:3682 -msgid "" -"Move each of the items given by *tagOrId* in the canvas coordinate space by " -"adding *xAmount* to every x-coordinate and *yAmount* to every y-coordinate " -"of the item." +msgid "Move each of the items given by *tagOrId* in the canvas coordinate space by adding *xAmount* to every x-coordinate and *yAmount* to every y-coordinate of the item." msgstr "" -#: ../../library/tkinter.rst:3688 -msgid "" -"Move the items given by *tagOrId* so that the first coordinate pair (the " -"upper-left corner of the bounding box) of the lowest matching item is at " -"position (*x*, *y*). *x* or *y* may be an empty string, in which case the " -"corresponding coordinate is unchanged. All matching items keep their " -"positions relative to each other." +msgid "Move the items given by *tagOrId* so that the first coordinate pair (the upper-left corner of the bounding box) of the lowest matching item is at position (*x*, *y*). *x* or *y* may be an empty string, in which case the corresponding coordinate is unchanged. All matching items keep their positions relative to each other." msgstr "" -#: ../../library/tkinter.rst:3700 -msgid "" -"Rescale the coordinates of all items given by *tagOrId* in canvas coordinate " -"space. Each x-coordinate is adjusted so that its distance from *xOrigin* " -"changes by a factor of *xScale*, and each y-coordinate so that its distance " -"from *yOrigin* changes by a factor of *yScale* (a factor of ``1.0`` leaves " -"the coordinate unchanged)." +msgid "Rescale the coordinates of all items given by *tagOrId* in canvas coordinate space. Each x-coordinate is adjusted so that its distance from *xOrigin* changes by a factor of *xScale*, and each y-coordinate so that its distance from *yOrigin* changes by a factor of *yScale* (a factor of ``1.0`` leaves the coordinate unchanged)." msgstr "" -#: ../../library/tkinter.rst:3709 msgid "Delete each of the items given by the *tagOrIds* arguments." msgstr "" -#: ../../library/tkinter.rst:3714 -msgid "" -"Delete from each of the items given by *tagOrId* the characters (for text " -"items) or coordinates (for line and polygon items) in the range from *first* " -"to *last* inclusive; *last* defaults to *first*. Items that do not support " -"indexing ignore this operation." +msgid "Delete from each of the items given by *tagOrId* the characters (for text items) or coordinates (for line and polygon items) in the range from *first* to *last* inclusive; *last* defaults to *first*. Items that do not support indexing ignore this operation." msgstr "" -#: ../../library/tkinter.rst:3721 -msgid "" -"Insert *string* into each of the items given by *tagOrId* just before the " -"character or coordinate whose index is *beforeThis*. For line and polygon " -"items *string* must be a valid sequence of coordinates." +msgid "Insert *string* into each of the items given by *tagOrId* just before the character or coordinate whose index is *beforeThis*. For line and polygon items *string* must be a valid sequence of coordinates." msgstr "" -#: ../../library/tkinter.rst:3728 -msgid "" -"Return the current value of the configuration option *option* for the item " -"given by *tagOrId* (the lowest matching item if it matches several). This is " -"like :meth:`~Misc.cget` but applies to an individual item." +msgid "Return the current value of the configuration option *option* for the item given by *tagOrId* (the lowest matching item if it matches several). This is like :meth:`~Misc.cget` but applies to an individual item." msgstr "" -#: ../../library/tkinter.rst:3737 -msgid "" -"Query or modify the configuration options of the items given by *tagOrId*. " -"This mirrors :meth:`~Misc.configure`, except that it applies to individual " -"items rather than to the canvas as a whole. With no options, it returns a " -"dictionary describing the current options of the first matching item; " -"otherwise it sets the given options on every matching item. The legal " -"options are those accepted by the corresponding ``create_*`` " -"method. :meth:`itemconfig` is an alias of :meth:`!itemconfigure`." +msgid "Query or modify the configuration options of the items given by *tagOrId*. This mirrors :meth:`~Misc.configure`, except that it applies to individual items rather than to the canvas as a whole. With no options, it returns a dictionary describing the current options of the first matching item; otherwise it sets the given options on every matching item. The legal options are those accepted by the corresponding ``create_*`` method. :meth:`itemconfig` is an alias of :meth:`!itemconfigure`." msgstr "" -#: ../../library/tkinter.rst:3750 -msgid "" -"Return the type of the item given by *tagOrId* (the first matching item if " -"it matches several), such as ``'rectangle'`` or ``'text'``, or ``None`` if " -"*tagOrId* does not match any item." +msgid "Return the type of the item given by *tagOrId* (the first matching item if it matches several), such as ``'rectangle'`` or ``'text'``, or ``None`` if *tagOrId* does not match any item." msgstr "" -#: ../../library/tkinter.rst:3756 -msgid "" -"Return a tuple of the tags associated with the item given by *tagOrId* (the " -"first matching item in display-list order if it matches several). Return an " -"empty tuple if no item matches or the item has no tags." +msgid "Return a tuple of the tags associated with the item given by *tagOrId* (the first matching item in display-list order if it matches several). Return an empty tuple if no item matches or the item has no tags." msgstr "" -#: ../../library/tkinter.rst:3763 -msgid "" -"Remove the tag *tagToDelete* (which defaults to *tagOrId*) from each of the " -"items given by *tagOrId*. Items that do not have that tag are unaffected." +msgid "Remove the tag *tagToDelete* (which defaults to *tagOrId*) from each of the items given by *tagOrId*. Items that do not have that tag are unaffected." msgstr "" -#: ../../library/tkinter.rst:3769 -msgid "" -"Add the tag *newtag* to each item selected by the search specification " -"*searchSpec* (and any further *args*). *searchSpec* is one of ``'above'``, " -"``'all'``, ``'below'``, ``'closest'``, ``'enclosed'``, ``'overlapping'`` or " -"``'withtag'``; the ``addtag_*`` methods below are convenient wrappers that " -"supply each of these forms." +msgid "Add the tag *newtag* to each item selected by the search specification *searchSpec* (and any further *args*). *searchSpec* is one of ``'above'``, ``'all'``, ``'below'``, ``'closest'``, ``'enclosed'``, ``'overlapping'`` or ``'withtag'``; the ``addtag_*`` methods below are convenient wrappers that supply each of these forms." msgstr "" -#: ../../library/tkinter.rst:3778 -msgid "" -"Add the tag *newtag* to the item just above (after) *tagOrId* in the display " -"list." +msgid "Add the tag *newtag* to the item just above (after) *tagOrId* in the display list." msgstr "" -#: ../../library/tkinter.rst:3783 msgid "Add the tag *newtag* to all items in the canvas." msgstr "" -#: ../../library/tkinter.rst:3787 -msgid "" -"Add the tag *newtag* to the item just below (before) *tagOrId* in the " -"display list." +msgid "Add the tag *newtag* to the item just below (before) *tagOrId* in the display list." msgstr "" -#: ../../library/tkinter.rst:3792 -msgid "" -"Add the tag *newtag* to the item closest to the point (*x*, *y*). If *halo* " -"is given, any item within that distance of the point is treated as " -"overlapping it. If *start* is given (a tag or id), select the topmost " -"closest item that lies below *start* in the display list, which can be used " -"to step through all the closest items." +msgid "Add the tag *newtag* to the item closest to the point (*x*, *y*). If *halo* is given, any item within that distance of the point is treated as overlapping it. If *start* is given (a tag or id), select the topmost closest item that lies below *start* in the display list, which can be used to step through all the closest items." msgstr "" -#: ../../library/tkinter.rst:3801 -msgid "" -"Add the tag *newtag* to every item completely enclosed within the rectangle " -"(*x1*, *y1*, *x2*, *y2*), where *x1* <= *x2* and *y1* <= *y2*." +msgid "Add the tag *newtag* to every item completely enclosed within the rectangle (*x1*, *y1*, *x2*, *y2*), where *x1* <= *x2* and *y1* <= *y2*." msgstr "" -#: ../../library/tkinter.rst:3806 -msgid "" -"Add the tag *newtag* to every item that overlaps or is enclosed within the " -"rectangle (*x1*, *y1*, *x2*, *y2*), where *x1* <= *x2* and *y1* <= *y2*." +msgid "Add the tag *newtag* to every item that overlaps or is enclosed within the rectangle (*x1*, *y1*, *x2*, *y2*), where *x1* <= *x2* and *y1* <= *y2*." msgstr "" -#: ../../library/tkinter.rst:3812 msgid "Add the tag *newtag* to every item given by *tagOrId*." msgstr "" -#: ../../library/tkinter.rst:3816 -msgid "" -"Return a tuple of the ids of all items selected by the search specification " -"*searchSpec* (and any further *args*), in stacking order with the lowest " -"item first. The search specification has any of the forms accepted " -"by :meth:`addtag`. The ``find_*`` methods below are more convenient wrappers " -"around it." +msgid "Return a tuple of the ids of all items selected by the search specification *searchSpec* (and any further *args*), in stacking order with the lowest item first. The search specification has any of the forms accepted by :meth:`addtag`. The ``find_*`` methods below are more convenient wrappers around it." msgstr "" -#: ../../library/tkinter.rst:3824 -msgid "" -"Return a tuple containing the id of the item just above *tagOrId* in the " -"display list." +msgid "Return a tuple containing the id of the item just above *tagOrId* in the display list." msgstr "" -#: ../../library/tkinter.rst:3829 -msgid "" -"Return a tuple of the ids of all items in the canvas, in stacking order." +msgid "Return a tuple of the ids of all items in the canvas, in stacking order." msgstr "" -#: ../../library/tkinter.rst:3833 -msgid "" -"Return a tuple containing the id of the item just below *tagOrId* in the " -"display list." +msgid "Return a tuple containing the id of the item just below *tagOrId* in the display list." msgstr "" -#: ../../library/tkinter.rst:3838 -msgid "" -"Return a tuple containing the id of the item closest to the point (*x*, " -"*y*). *halo* and *start* are interpreted as for :meth:`addtag_closest`." +msgid "Return a tuple containing the id of the item closest to the point (*x*, *y*). *halo* and *start* are interpreted as for :meth:`addtag_closest`." msgstr "" -#: ../../library/tkinter.rst:3844 -msgid "" -"Return a tuple of the ids of all items completely enclosed within the " -"rectangle (*x1*, *y1*, *x2*, *y2*)." +msgid "Return a tuple of the ids of all items completely enclosed within the rectangle (*x1*, *y1*, *x2*, *y2*)." msgstr "" -#: ../../library/tkinter.rst:3849 -msgid "" -"Return a tuple of the ids of all items that overlap or are enclosed within " -"the rectangle (*x1*, *y1*, *x2*, *y2*)." +msgid "Return a tuple of the ids of all items that overlap or are enclosed within the rectangle (*x1*, *y1*, *x2*, *y2*)." msgstr "" -#: ../../library/tkinter.rst:3854 msgid "Return a tuple of the ids of all items given by *tagOrId*." msgstr "" -#: ../../library/tkinter.rst:3864 -msgid "" -"Move all items given by *tagOrId* to a new position in the display list just " -"above the item given by *aboveThis*, or to the top of the display list if " -"*aboveThis* is omitted. When several items are moved their relative order is " -"preserved. This has no effect on embedded window items, whose stacking order " -"is controlled by :meth:`Misc.tkraise` and :meth:`Misc.lower` " -"instead. :meth:`lift` and :meth:`tkraise` are aliases of :meth:`!tag_raise`." +msgid "Move all items given by *tagOrId* to a new position in the display list just above the item given by *aboveThis*, or to the top of the display list if *aboveThis* is omitted. When several items are moved their relative order is preserved. This has no effect on embedded window items, whose stacking order is controlled by :meth:`Misc.tkraise` and :meth:`Misc.lower` instead. :meth:`lift` and :meth:`tkraise` are aliases of :meth:`!tag_raise`." msgstr "" -#: ../../library/tkinter.rst:3877 -msgid "" -"Move all items given by *tagOrId* to a new position in the display list just " -"below the item given by *belowThis*, or to the bottom of the display list if " -"*belowThis* is omitted. When several items are moved their relative order is " -"preserved. This has no effect on embedded window items. :meth:`lower` is an " -"alias of :meth:`!tag_lower`." +msgid "Move all items given by *tagOrId* to a new position in the display list just below the item given by *belowThis*, or to the bottom of the display list if *belowThis* is omitted. When several items are moved their relative order is preserved. This has no effect on embedded window items. :meth:`lower` is an alias of :meth:`!tag_lower`." msgstr "" -#: ../../library/tkinter.rst:3886 -msgid "" -"On a :class:`Canvas`, :meth:`tkraise`/:meth:`lift` and :meth:`lower` restack " -"canvas items, shadowing the inherited :meth:`Misc.tkraise`/:meth:`Misc.lift` " -"and :meth:`Misc.lower` methods that restack the widget itself, which are " -"therefore not available." +msgid "On a :class:`Canvas`, :meth:`tkraise`/:meth:`lift` and :meth:`lower` restack canvas items, shadowing the inherited :meth:`Misc.tkraise`/:meth:`Misc.lift` and :meth:`Misc.lower` methods that restack the widget itself, which are therefore not available." msgstr "" -#: ../../library/tkinter.rst:3894 -msgid "" -"Bind the callback *func* to the event *sequence* for all items given by " -"*tagOrId*, so that *func* is invoked whenever that event occurs for one of " -"the items. This is like :meth:`Widget.bind ` but operates on " -"canvas items rather than on whole widgets; only mouse, keyboard and virtual " -"events may be bound. Mouse events are directed to the current item and " -"keyboard events to the focus item (see :meth:`focus`). If *add* is true the " -"new binding is added to any existing bindings for the same sequence, rather " -"than replacing them. Return the identifier of the bound function, which can " -"be passed to :meth:`tag_unbind`." -msgstr "" - -#: ../../library/tkinter.rst:3909 -msgid "" -"Remove for all items given by *tagOrId* the binding for the event " -"*sequence*. If *funcid* is given, only that callback (as returned " -"by :meth:`tag_bind`) is unbound and deregistered." +msgid "Bind the callback *func* to the event *sequence* for all items given by *tagOrId*, so that *func* is invoked whenever that event occurs for one of the items. This is like :meth:`Widget.bind ` but operates on canvas items rather than on whole widgets; only mouse, keyboard and virtual events may be bound. Mouse events are directed to the current item and keyboard events to the focus item (see :meth:`focus`). If *add* is true the new binding is added to any existing bindings for the same sequence, rather than replacing them. Return the identifier of the bound function, which can be passed to :meth:`tag_unbind`." +msgstr "" + +msgid "Remove for all items given by *tagOrId* the binding for the event *sequence*. If *funcid* is given, only that callback (as returned by :meth:`tag_bind`) is unbound and deregistered." msgstr "" -#: ../../library/tkinter.rst:3914 ../../library/tkinter.rst:5518 msgid "If *funcid* is given, only that callback is unbound." msgstr "" -#: ../../library/tkinter.rst:3920 -msgid "" -"Return a 4-tuple ``(x1, y1, x2, y2)`` giving an approximate bounding box, in " -"pixels, that encloses all the items given by *tagOrId* and any further " -"*tagOrIds*. The result may overestimate the true bounding box by a few " -"pixels. Return ``None`` if no item matches or the matching items have " -"nothing to display." +msgid "Return a 4-tuple ``(x1, y1, x2, y2)`` giving an approximate bounding box, in pixels, that encloses all the items given by *tagOrId* and any further *tagOrIds*. The result may overestimate the true bounding box by a few pixels. Return ``None`` if no item matches or the matching items have nothing to display." msgstr "" -#: ../../library/tkinter.rst:3927 ../../library/tkinter.rst:4320 -#: ../../library/tkinter.rst:5061 ../../library/tkinter.rst:5288 -msgid "" -"This shadows the inherited :meth:`!Misc.bbox`; use :meth:`~Misc.grid_bbox` " -"for the grid bounding box." +msgid "This shadows the inherited :meth:`!Misc.bbox`; use :meth:`~Misc.grid_bbox` for the grid bounding box." msgstr "" -#: ../../library/tkinter.rst:3932 -msgid "" -"Given a window x-coordinate *screenx*, return the canvas x-coordinate " -"displayed at that location. If *gridspacing* is given, the result is rounded " -"to the nearest multiple of *gridspacing* units." +msgid "Given a window x-coordinate *screenx*, return the canvas x-coordinate displayed at that location. If *gridspacing* is given, the result is rounded to the nearest multiple of *gridspacing* units." msgstr "" -#: ../../library/tkinter.rst:3939 -msgid "" -"Given a window y-coordinate *screeny*, return the canvas y-coordinate " -"displayed at that location. If *gridspacing* is given, the result is rounded " -"to the nearest multiple of *gridspacing* units." +msgid "Given a window y-coordinate *screeny*, return the canvas y-coordinate displayed at that location. If *gridspacing* is given, the result is rounded to the nearest multiple of *gridspacing* units." msgstr "" -#: ../../library/tkinter.rst:3947 -msgid "" -"With *tagOrId*, set the keyboard focus for the canvas to the first item " -"given by *tagOrId* that supports the insertion cursor; the focus is left " -"unchanged if no such item exists. If *tagOrId* is an empty string, reset the " -"focus so that no item has it. With no argument, return the id of the item " -"that currently has the focus, or an empty string if none does. An item only " -"displays the insertion cursor when both it is the focus item and its canvas " -"has the input focus." +msgid "With *tagOrId*, set the keyboard focus for the canvas to the first item given by *tagOrId* that supports the insertion cursor; the focus is left unchanged if no such item exists. If *tagOrId* is an empty string, reset the focus so that no item has it. With no argument, return the id of the item that currently has the focus, or an empty string if none does. An item only displays the insertion cursor when both it is the focus item and its canvas has the input focus." msgstr "" -#: ../../library/tkinter.rst:3956 -msgid "" -"This shadows the inherited :meth:`!Misc.focus`; use :meth:`~Misc.focus_set` " -"to focus the widget itself." +msgid "This shadows the inherited :meth:`!Misc.focus`; use :meth:`~Misc.focus_set` to focus the widget itself." msgstr "" -#: ../../library/tkinter.rst:3961 -msgid "" -"Set the insertion cursor of the items given by *tagOrId* to just before the " -"character given by *index*. Items that do not support an insertion cursor " -"are unaffected. The cursor is only displayed when the item has the focus, " -"but its position may be set at any time." +msgid "Set the insertion cursor of the items given by *tagOrId* to just before the character given by *index*. Items that do not support an insertion cursor are unaffected. The cursor is only displayed when the item has the focus, but its position may be set at any time." msgstr "" -#: ../../library/tkinter.rst:3969 -msgid "" -"Return as an integer the numerical index within *tagOrId* corresponding to " -"*index*, which is a textual description of a position (for text items an " -"index into the characters, for line and polygon items an index into the " -"coordinates). If *tagOrId* matches several items, the first one that " -"supports indexing is used." +msgid "Return as an integer the numerical index within *tagOrId* corresponding to *index*, which is a textual description of a position (for text items an index into the characters, for line and polygon items an index into the coordinates). If *tagOrId* matches several items, the first one that supports indexing is used." msgstr "" -#: ../../library/tkinter.rst:3978 -msgid "" -"Adjust the end of the selection in *tagOrId* nearest to *index* so that it " -"is at *index*, and make the other end the anchor point for " -"future :meth:`select_to` calls. If the selection is not currently in " -"*tagOrId*, this behaves like :meth:`select_to`." +msgid "Adjust the end of the selection in *tagOrId* nearest to *index* so that it is at *index*, and make the other end the anchor point for future :meth:`select_to` calls. If the selection is not currently in *tagOrId*, this behaves like :meth:`select_to`." msgstr "" -#: ../../library/tkinter.rst:3986 msgid "Clear the selection if it is in this canvas; otherwise do nothing." msgstr "" -#: ../../library/tkinter.rst:3990 -msgid "" -"Set the selection anchor point to just before the character given by *index* " -"in the item given by *tagOrId*. This does not change the selection itself; " -"it sets the fixed end for future :meth:`select_to` calls." +msgid "Set the selection anchor point to just before the character given by *index* in the item given by *tagOrId*. This does not change the selection itself; it sets the fixed end for future :meth:`select_to` calls." msgstr "" -#: ../../library/tkinter.rst:3997 -msgid "" -"Return the id of the item that holds the selection, or ``None`` if the " -"selection is not in this canvas. Unlike :meth:`find` and the ``find_*`` " -"methods, this returns the id as a string rather than an integer." +msgid "Return the id of the item that holds the selection, or ``None`` if the selection is not in this canvas. Unlike :meth:`find` and the ``find_*`` methods, this returns the id as a string rather than an integer." msgstr "" -#: ../../library/tkinter.rst:4004 -msgid "" -"Set the selection to the characters of *tagOrId* between the selection " -"anchor point and *index*, inclusive of *index*. The anchor point is the one " -"set by the most recent :meth:`select_adjust` or :meth:`select_from` call." +msgid "Set the selection to the characters of *tagOrId* between the selection anchor point and *index*, inclusive of *index*. The anchor point is the one set by the most recent :meth:`select_adjust` or :meth:`select_from` call." msgstr "" -#: ../../library/tkinter.rst:4011 ../../library/tkinter.rst:4416 -#: ../../library/tkinter.rst:5642 -msgid "" -"Record *x*, *y* and the current view, for use with later :meth:`scan_dragto` " -"calls. This is typically bound to a mouse button press in the widget." +msgid "Record *x*, *y* and the current view, for use with later :meth:`scan_dragto` calls. This is typically bound to a mouse button press in the widget." msgstr "" -#: ../../library/tkinter.rst:4017 -msgid "" -"Scroll the canvas by *gain* times the difference between *x*, *y* and the " -"coordinates passed to the last :meth:`scan_mark` call. This is typically " -"bound to mouse motion events in the widget, producing the effect of dragging " -"the canvas at high speed through its window." +msgid "Scroll the canvas by *gain* times the difference between *x*, *y* and the coordinates passed to the last :meth:`scan_mark` call. This is typically bound to mouse motion events in the widget, producing the effect of dragging the canvas at high speed through its window." msgstr "" -#: ../../library/tkinter.rst:4024 -msgid "" -"Generate a PostScript (Encapsulated PostScript, version 3.0) representation " -"of part or all of the canvas. If the *file* or *channel* option is given, " -"the PostScript is written there and an empty string is returned; otherwise " -"it is returned as a string. By default only the area currently visible in " -"the window is generated, so it is usually necessary either to " -"call :meth:`~Misc.update` first or to use the *width* and *height* options. " -"Supported options include *colormap*, *colormode*, *file*, *fontmap*, " -"*height*, *pageanchor*, *pageheight*, *pagewidth*, *pagex*, *pagey*, " -"*rotate*, *width*, *x* and *y*." -msgstr "" - -#: ../../library/tkinter.rst:4039 -msgid "" -"A :class:`!Checkbutton` widget displays a textual string, bitmap or image " -"together with a square indicator, and toggles a boolean selection when " -"pressed. It has all the behavior of a simple button and, in addition, can be " -"selected: when selected the indicator is drawn with a check mark and the " -"associated variable is set to the ``onvalue``, and when deselected the " -"indicator is drawn empty and the variable is set to the ``offvalue``. " -"Inherits from :class:`Widget`. In addition to the standard widget options, a " -"checkbutton accepts the options documented in the Tk ``checkbutton`` manual " -"page, such as *variable*, *onvalue*, *offvalue* and *command*." -msgstr "" - -#: ../../library/tkinter.rst:4053 -msgid "" -"Do just what would happen if the user pressed the checkbutton with the " -"mouse: toggle the selection state of the button and invoke the associated " -"command, if there is one. Return the result of the command, or an empty " -"string if no command is associated with the checkbutton. This is ignored if " -"the checkbutton's state is ``disabled``." +msgid "Generate a PostScript (Encapsulated PostScript, version 3.0) representation of part or all of the canvas. If the *file* or *channel* option is given, the PostScript is written there and an empty string is returned; otherwise it is returned as a string. By default only the area currently visible in the window is generated, so it is usually necessary either to call :meth:`~Misc.update` first or to use the *width* and *height* options. Supported options include *colormap*, *colormode*, *file*, *fontmap*, *height*, *pageanchor*, *pageheight*, *pagewidth*, *pagex*, *pagey*, *rotate*, *width*, *x* and *y*." msgstr "" -#: ../../library/tkinter.rst:4062 -msgid "" -"Select the checkbutton and set the associated variable to its ``onvalue``." +msgid "A :class:`!Checkbutton` widget displays a textual string, bitmap or image together with a square indicator, and toggles a boolean selection when pressed. It has all the behavior of a simple button and, in addition, can be selected: when selected the indicator is drawn with a check mark and the associated variable is set to the ``onvalue``, and when deselected the indicator is drawn empty and the variable is set to the ``offvalue``. Inherits from :class:`Widget`. In addition to the standard widget options, a checkbutton accepts the options documented in the Tk ``checkbutton`` manual page, such as *variable*, *onvalue*, *offvalue* and *command*." msgstr "" -#: ../../library/tkinter.rst:4067 -msgid "" -"Deselect the checkbutton and set the associated variable to its ``offvalue``." +msgid "Do just what would happen if the user pressed the checkbutton with the mouse: toggle the selection state of the button and invoke the associated command, if there is one. Return the result of the command, or an empty string if no command is associated with the checkbutton. This is ignored if the checkbutton's state is ``disabled``." msgstr "" -#: ../../library/tkinter.rst:4072 -msgid "" -"Toggle the selection state of the button, redisplaying it and modifying its " -"associated variable to reflect the new state." +msgid "Select the checkbutton and set the associated variable to its ``onvalue``." msgstr "" -#: ../../library/tkinter.rst:4077 -msgid "" -"Flash the checkbutton by redisplaying it several times, alternating between " -"the active and normal colors. At the end of the flash the checkbutton is " -"left in the same normal or active state as when the method was called. This " -"is ignored if the checkbutton's state is ``disabled``." +msgid "Deselect the checkbutton and set the associated variable to its ``offvalue``." msgstr "" -#: ../../library/tkinter.rst:4086 -msgid "" -"An :class:`!Entry` widget displays a single line of text and lets the user " -"edit it. Inherits from :class:`Widget` and :class:`XView`; since entries can " -"hold strings too long to fit in the window, they support horizontal " -"scrolling through :meth:`~XView.xview`." +msgid "Toggle the selection state of the button, redisplaying it and modifying its associated variable to reflect the new state." msgstr "" -#: ../../library/tkinter.rst:4092 -msgid "" -"In addition to the standard widget options, an entry accepts the options " -"documented in the Tk ``entry`` manual page. Notable ones are *textvariable* " -"(the name of a variable kept in sync with the entry's contents), *show* (if " -"set, each character is displayed as the given character rather than its true " -"value, useful for password entry), *validate* and *validatecommand* (which " -"together let a callback accept or reject edits), and *state* (one of " -"``'normal'``, ``'disabled'`` or ``'readonly'``)." +msgid "Flash the checkbutton by redisplaying it several times, alternating between the active and normal colors. At the end of the flash the checkbutton is left in the same normal or active state as when the method was called. This is ignored if the checkbutton's state is ``disabled``." msgstr "" -#: ../../library/tkinter.rst:4101 -msgid "" -"Many of the methods below take an *index* argument that selects a character " -"in the entry's string. As described in the Tk ``entry`` manual page, *index* " -"may be a number (counting from 0), ``'insert'`` (the character just after " -"the insertion cursor), ``'end'`` (just after the last character), " -"``'anchor'`` (the selection anchor point), ``'sel.first'`` and " -"``'sel.last'`` (the ends of the selection), or ``@x`` (the character " -"covering pixel x-coordinate *x* in the window). Out-of-range indices are " -"rounded to the nearest legal value." +msgid "An :class:`!Entry` widget displays a single line of text and lets the user edit it. Inherits from :class:`Widget` and :class:`XView`; since entries can hold strings too long to fit in the window, they support horizontal scrolling through :meth:`~XView.xview`." msgstr "" -#: ../../library/tkinter.rst:4113 -msgid "" -"Delete the characters from index *first* up to but not including index " -"*last*. If *last* is omitted, only the single character at *first* is " -"deleted." +msgid "In addition to the standard widget options, an entry accepts the options documented in the Tk ``entry`` manual page. Notable ones are *textvariable* (the name of a variable kept in sync with the entry's contents), *show* (if set, each character is displayed as the given character rather than its true value, useful for password entry), *validate* and *validatecommand* (which together let a callback accept or reject edits), and *state* (one of ``'normal'``, ``'disabled'`` or ``'readonly'``)." +msgstr "" + +msgid "Many of the methods below take an *index* argument that selects a character in the entry's string. As described in the Tk ``entry`` manual page, *index* may be a number (counting from 0), ``'insert'`` (the character just after the insertion cursor), ``'end'`` (just after the last character), ``'anchor'`` (the selection anchor point), ``'sel.first'`` and ``'sel.last'`` (the ends of the selection), or ``@x`` (the character covering pixel x-coordinate *x* in the window). Out-of-range indices are rounded to the nearest legal value." +msgstr "" + +msgid "Delete the characters from index *first* up to but not including index *last*. If *last* is omitted, only the single character at *first* is deleted." msgstr "" -#: ../../library/tkinter.rst:4119 msgid "Return the entry's current string." msgstr "" -#: ../../library/tkinter.rst:4123 msgid "Insert *string* just before the character given by *index*." msgstr "" -#: ../../library/tkinter.rst:4127 ../../library/tkinter.rst:5044 -msgid "" -"Arrange for the insertion cursor to be displayed just before the character " -"given by *index*." +msgid "Arrange for the insertion cursor to be displayed just before the character given by *index*." msgstr "" -#: ../../library/tkinter.rst:4132 msgid "Return the numerical index corresponding to *index*." msgstr "" -#: ../../library/tkinter.rst:4139 -msgid "" -"Locate the end of the selection nearest to the character given by *index*, " -"and adjust that end to be at *index* (including but not going beyond it); " -"the other end becomes the anchor point for future :meth:`selection_to` " -"calls. If there is no selection in the entry, a new one is created between " -"*index* and the most recent anchor point, inclusive. :meth:`select_adjust` " -"is an alias of :meth:`!selection_adjust`." +msgid "Locate the end of the selection nearest to the character given by *index*, and adjust that end to be at *index* (including but not going beyond it); the other end becomes the anchor point for future :meth:`selection_to` calls. If there is no selection in the entry, a new one is created between *index* and the most recent anchor point, inclusive. :meth:`select_adjust` is an alias of :meth:`!selection_adjust`." msgstr "" -#: ../../library/tkinter.rst:4152 -msgid "" -"Clear the selection if it is currently in this widget. If the selection is " -"not in this widget the method has no effect. :meth:`select_clear` is an " -"alias of :meth:`!selection_clear`." +msgid "Clear the selection if it is currently in this widget. If the selection is not in this widget the method has no effect. :meth:`select_clear` is an alias of :meth:`!selection_clear`." msgstr "" -#: ../../library/tkinter.rst:4158 -msgid "" -"This shadows the inherited :meth:`Misc.selection_clear`, which clears the X " -"selection; that method is not available on an :class:`Entry`." +msgid "This shadows the inherited :meth:`Misc.selection_clear`, which clears the X selection; that method is not available on an :class:`Entry`." msgstr "" -#: ../../library/tkinter.rst:4167 -msgid "" -"Set the selection anchor point to just before the character given by " -"*index*, without changing the selection. :meth:`select_from` is an alias " -"of :meth:`!selection_from`." +msgid "Set the selection anchor point to just before the character given by *index*, without changing the selection. :meth:`select_from` is an alias of :meth:`!selection_from`." msgstr "" -#: ../../library/tkinter.rst:4176 -msgid "" -"Return ``True`` if there are characters selected in the entry, ``False`` " -"otherwise. :meth:`select_present` is an alias of :meth:`!selection_present`." +msgid "Return ``True`` if there are characters selected in the entry, ``False`` otherwise. :meth:`select_present` is an alias of :meth:`!selection_present`." msgstr "" -#: ../../library/tkinter.rst:4185 -msgid "" -"Set the selection to include the characters starting with the one indexed by " -"*start* and ending with the one just before *end*. If *end* refers to the " -"same character as *start* or an earlier one, the selection is " -"cleared. :meth:`select_range` is an alias of :meth:`!selection_range`." +msgid "Set the selection to include the characters starting with the one indexed by *start* and ending with the one just before *end*. If *end* refers to the same character as *start* or an earlier one, the selection is cleared. :meth:`select_range` is an alias of :meth:`!selection_range`." msgstr "" -#: ../../library/tkinter.rst:4196 -msgid "" -"Set the selection between the anchor point and *index*: if *index* is before " -"the anchor point, the selection runs from *index* up to but not including " -"the anchor; if *index* is after it, from the anchor up to but not including " -"*index*; if they coincide, nothing happens. The anchor point is the one set " -"by the most recent :meth:`selection_from` or :meth:`selection_adjust` call. " -"If there is no selection in the entry, a new one is created using the most " -"recent anchor point. :meth:`select_to` is an alias of :meth:`!selection_to`." +msgid "Set the selection between the anchor point and *index*: if *index* is before the anchor point, the selection runs from *index* up to but not including the anchor; if *index* is after it, from the anchor up to but not including *index*; if they coincide, nothing happens. The anchor point is the one set by the most recent :meth:`selection_from` or :meth:`selection_adjust` call. If there is no selection in the entry, a new one is created using the most recent anchor point. :meth:`select_to` is an alias of :meth:`!selection_to`." msgstr "" -#: ../../library/tkinter.rst:4208 -msgid "" -"Record *x* and the current view in the entry window, for use with " -"later :meth:`scan_dragto` calls. Typically associated with a mouse button " -"press in the widget." +msgid "Record *x* and the current view in the entry window, for use with later :meth:`scan_dragto` calls. Typically associated with a mouse button press in the widget." msgstr "" -#: ../../library/tkinter.rst:4214 -msgid "" -"Compute the difference between *x* and the *x* given to the " -"last :meth:`scan_mark` call, and adjust the view left or right by 10 times " -"that difference. Typically associated with mouse motion events, to produce " -"the effect of dragging the entry at high speed through the window." +msgid "Compute the difference between *x* and the *x* given to the last :meth:`scan_mark` call, and adjust the view left or right by 10 times that difference. Typically associated with mouse motion events, to produce the effect of dragging the entry at high speed through the window." msgstr "" -#: ../../library/tkinter.rst:4223 -msgid "" -"A :class:`!Frame` widget is a simple container. Its primary purpose is to " -"act as a spacer or container for complex window layouts; its only features " -"are its background and an optional 3-D border to make the frame appear " -"raised or sunken. Inherits from :class:`Widget`. Refer to the Tk ``frame`` " -"manual page for the full list of options." +msgid "A :class:`!Frame` widget is a simple container. Its primary purpose is to act as a spacer or container for complex window layouts; its only features are its background and an optional 3-D border to make the frame appear raised or sunken. Inherits from :class:`Widget`. Refer to the Tk ``frame`` manual page for the full list of options." msgstr "" -#: ../../library/tkinter.rst:4233 -msgid "" -"A :class:`!Label` widget displays a non-interactive textual string, bitmap " -"or image. The displayed text is set with the *text* option or linked to a " -"variable through *textvariable*, and an image can be shown using the *image* " -"option. Text must all be in a single font but may occupy multiple lines, and " -"one character may be underlined with the *underline* option. Inherits " -"from :class:`Widget`. Refer to the Tk ``label`` manual page for the full " -"list of options." +msgid "A :class:`!Label` widget displays a non-interactive textual string, bitmap or image. The displayed text is set with the *text* option or linked to a variable through *textvariable*, and an image can be shown using the *image* option. Text must all be in a single font but may occupy multiple lines, and one character may be underlined with the *underline* option. Inherits from :class:`Widget`. Refer to the Tk ``label`` manual page for the full list of options." msgstr "" -#: ../../library/tkinter.rst:4245 -msgid "" -"A :class:`!LabelFrame` widget is a container that has the features of " -"a :class:`Frame` plus the ability to display a label. The label text is set " -"with the *text* option and positioned with *labelanchor*, or an arbitrary " -"widget may be used as the label by giving it as the *labelwidget* option. " -"Inherits from :class:`Widget`. Refer to the Tk ``labelframe`` manual page " -"for the full list of options." +msgid "A :class:`!LabelFrame` widget is a container that has the features of a :class:`Frame` plus the ability to display a label. The label text is set with the *text* option and positioned with *labelanchor*, or an arbitrary widget may be used as the label by giving it as the *labelwidget* option. Inherits from :class:`Widget`. Refer to the Tk ``labelframe`` manual page for the full list of options." msgstr "" -#: ../../library/tkinter.rst:4256 -msgid "" -"A :class:`!Listbox` widget displays a list of single-line text items, one " -"per line, of which the user can select one or more. The way the selection " -"behaves is governed by the *selectmode* option, which is one of ``browse`` " -"(the default; at most one item, which may be dragged with the mouse), " -"``single`` (at most one item), ``multiple`` (any number of items, toggled " -"individually), or ``extended`` (any number of items, including discontiguous " -"ranges, selected by clicking and dragging). Inherits " -"from :class:`Widget`, :class:`XView` and :class:`YView`, so the view can be " -"scrolled horizontally and vertically with :meth:`~XView.xview` " -"and :meth:`~YView.yview`. Refer to the Tk ``listbox`` manual page for the " -"full list of options." -msgstr "" - -#: ../../library/tkinter.rst:4268 -msgid "" -"Many of the methods take an *index* argument identifying a particular item. " -"As described in the Tk ``listbox`` manual page, *index* may be a numeric " -"index (counting from 0 at the top), ``'active'`` (the item with the location " -"cursor, set with :meth:`activate`), ``'anchor'`` (the selection anchor, set " -"with :meth:`selection_anchor`), ``'end'`` (the last item, or " -"for :meth:`index` and :meth:`insert` the position just after it), or " -"``@x,y`` (the item covering pixel coordinates *x*, *y* in the listbox " -"window). Arguments named *first* and *last* are indices of the same forms." +msgid "A :class:`!Listbox` widget displays a list of single-line text items, one per line, of which the user can select one or more. The way the selection behaves is governed by the *selectmode* option, which is one of ``browse`` (the default; at most one item, which may be dragged with the mouse), ``single`` (at most one item), ``multiple`` (any number of items, toggled individually), or ``extended`` (any number of items, including discontiguous ranges, selected by clicking and dragging). Inherits from :class:`Widget`, :class:`XView` and :class:`YView`, so the view can be scrolled horizontally and vertically with :meth:`~XView.xview` and :meth:`~YView.yview`. Refer to the Tk ``listbox`` manual page for the full list of options." msgstr "" -#: ../../library/tkinter.rst:4279 -msgid "" -"Insert the given *elements* as new items just before the item given by " -"*index*. If *index* is ``'end'``, the new items are appended to the end of " -"the list." +msgid "Many of the methods take an *index* argument identifying a particular item. As described in the Tk ``listbox`` manual page, *index* may be a numeric index (counting from 0 at the top), ``'active'`` (the item with the location cursor, set with :meth:`activate`), ``'anchor'`` (the selection anchor, set with :meth:`selection_anchor`), ``'end'`` (the last item, or for :meth:`index` and :meth:`insert` the position just after it), or ``@x,y`` (the item covering pixel coordinates *x*, *y* in the listbox window). Arguments named *first* and *last* are indices of the same forms." msgstr "" -#: ../../library/tkinter.rst:4286 -msgid "" -"Delete the items in the range from *first* to *last* inclusive. If *last* is " -"omitted, it defaults to *first*, so that a single item is deleted." +msgid "Insert the given *elements* as new items just before the item given by *index*. If *index* is ``'end'``, the new items are appended to the end of the list." msgstr "" -#: ../../library/tkinter.rst:4292 -msgid "" -"If *last* is omitted, return the contents of the item given by *first*, or " -"an empty string if *first* refers to a non-existent item. If *last* is " -"given, return a tuple of all the items in the range from *first* to *last* " -"inclusive." +msgid "Delete the items in the range from *first* to *last* inclusive. If *last* is omitted, it defaults to *first*, so that a single item is deleted." +msgstr "" + +msgid "If *last* is omitted, return the contents of the item given by *first*, or an empty string if *first* refers to a non-existent item. If *last* is given, return a tuple of all the items in the range from *first* to *last* inclusive." msgstr "" -#: ../../library/tkinter.rst:4299 msgid "Return the total number of items in the listbox." msgstr "" -#: ../../library/tkinter.rst:4301 -msgid "" -"This shadows the inherited :meth:`!Misc.size`; use :meth:`~Misc.grid_size` " -"for the grid size." +msgid "This shadows the inherited :meth:`!Misc.size`; use :meth:`~Misc.grid_size` for the grid size." msgstr "" -#: ../../library/tkinter.rst:4306 -msgid "" -"Return the integer index value corresponding to *index*, or ``None`` if " -"*index* is out of range. If *index* is ``'end'``, the result is a count of " -"the number of items in the listbox (not the index of the last item)." +msgid "Return the integer index value corresponding to *index*, or ``None`` if *index* is out of range. If *index* is ``'end'``, the result is a count of the number of items in the listbox (not the index of the last item)." msgstr "" -#: ../../library/tkinter.rst:4313 -msgid "" -"Return a tuple ``(x, y, width, height)`` describing the bounding box, in " -"pixels relative to the widget, of the text of the item given by *index*. " -"Return ``None`` if no part of that item is visible on the screen, or if " -"*index* refers to a non-existent item; if the item is only partly visible, " -"the result still gives the full area of the item, including the parts that " -"are not visible." +msgid "Return a tuple ``(x, y, width, height)`` describing the bounding box, in pixels relative to the widget, of the text of the item given by *index*. Return ``None`` if no part of that item is visible on the screen, or if *index* refers to a non-existent item; if the item is only partly visible, the result still gives the full area of the item, including the parts that are not visible." msgstr "" -#: ../../library/tkinter.rst:4325 -msgid "" -"Given a y-coordinate within the listbox window, return the index of the " -"visible item nearest to that y-coordinate." +msgid "Given a y-coordinate within the listbox window, return the index of the visible item nearest to that y-coordinate." msgstr "" -#: ../../library/tkinter.rst:4330 -msgid "" -"Adjust the view so that the item given by *index* is visible. If the item is " -"already visible the method has no effect; if it is near an edge of the " -"window the listbox scrolls just enough to bring it into view at that edge, " -"otherwise the listbox scrolls to center the item." +msgid "Adjust the view so that the item given by *index* is visible. If the item is already visible the method has no effect; if it is near an edge of the window the listbox scrolls just enough to bring it into view at that edge, otherwise the listbox scrolls to center the item." msgstr "" -#: ../../library/tkinter.rst:4337 -msgid "" -"Set the active item to the one given by *index*. If *index* is outside the " -"range of items, the closest item is activated instead. The active item is " -"drawn as specified by the *activestyle* option when the widget has the input " -"focus, and its index may be retrieved with the ``'active'`` index." +msgid "Set the active item to the one given by *index*. If *index* is outside the range of items, the closest item is activated instead. The active item is drawn as specified by the *activestyle* option when the widget has the input focus, and its index may be retrieved with the ``'active'`` index." msgstr "" -#: ../../library/tkinter.rst:4346 -msgid "" -"Return a tuple containing the numerical indices of all of the items that are " -"currently selected, or an empty tuple if no items are selected." +msgid "Return a tuple containing the numerical indices of all of the items that are currently selected, or an empty tuple if no items are selected." msgstr "" -#: ../../library/tkinter.rst:4354 -msgid "" -"Set the selection anchor to the item given by *index*. If *index* refers to " -"a non-existent item, the closest item is used. The selection anchor is the " -"end of the selection that is fixed while dragging out a selection with the " -"mouse, and may afterwards be referred to with the ``'anchor'`` " -"index. :meth:`select_anchor` is an alias of :meth:`!selection_anchor`." +msgid "Set the selection anchor to the item given by *index*. If *index* refers to a non-existent item, the closest item is used. The selection anchor is the end of the selection that is fixed while dragging out a selection with the mouse, and may afterwards be referred to with the ``'anchor'`` index. :meth:`select_anchor` is an alias of :meth:`!selection_anchor`." msgstr "" -#: ../../library/tkinter.rst:4366 -msgid "" -"Deselect any of the items in the range from *first* to *last* inclusive that " -"are selected. The selection state of items outside this range is not " -"changed. :meth:`select_clear` is an alias of :meth:`!selection_clear`." +msgid "Deselect any of the items in the range from *first* to *last* inclusive that are selected. The selection state of items outside this range is not changed. :meth:`select_clear` is an alias of :meth:`!selection_clear`." msgstr "" -#: ../../library/tkinter.rst:4373 -msgid "" -"This shadows the inherited :meth:`Misc.selection_clear`, which clears the X " -"selection; that method is not available on a :class:`Listbox`." +msgid "This shadows the inherited :meth:`Misc.selection_clear`, which clears the X selection; that method is not available on a :class:`Listbox`." msgstr "" -#: ../../library/tkinter.rst:4382 -msgid "" -"Return ``True`` if the item given by *index* is currently selected, " -"``False`` otherwise. :meth:`select_includes` is an alias of :meth:`!" -"selection_includes`." +msgid "Return ``True`` if the item given by *index* is currently selected, ``False`` otherwise. :meth:`select_includes` is an alias of :meth:`!selection_includes`." msgstr "" -#: ../../library/tkinter.rst:4391 -msgid "" -"Select all of the items in the range from *first* to *last* inclusive, " -"without affecting the selection state of items outside that " -"range. :meth:`select_set` is an alias of :meth:`!selection_set`." +msgid "Select all of the items in the range from *first* to *last* inclusive, without affecting the selection state of items outside that range. :meth:`select_set` is an alias of :meth:`!selection_set`." msgstr "" -#: ../../library/tkinter.rst:4397 -msgid "" -"Return the current value of the configuration option *option* for the item " -"given by *index*." +msgid "Return the current value of the configuration option *option* for the item given by *index*." msgstr "" -#: ../../library/tkinter.rst:4405 -msgid "" -"Query or modify the configuration options of the item given by *index*. This " -"mirrors :meth:`~Misc.configure`, except that it applies to an individual " -"item rather than to the listbox as a whole. With no options, it returns a " -"dictionary describing the current options of the item; otherwise it sets the " -"given options. The supported item options are *background*, *foreground*, " -"*selectbackground* and *selectforeground*. :meth:`itemconfig` is an alias " -"of :meth:`!itemconfigure`." +msgid "Query or modify the configuration options of the item given by *index*. This mirrors :meth:`~Misc.configure`, except that it applies to an individual item rather than to the listbox as a whole. With no options, it returns a dictionary describing the current options of the item; otherwise it sets the given options. The supported item options are *background*, *foreground*, *selectbackground* and *selectforeground*. :meth:`itemconfig` is an alias of :meth:`!itemconfigure`." msgstr "" -#: ../../library/tkinter.rst:4422 -msgid "" -"Scroll the listbox by 10 times the difference between *x*, *y* and the " -"coordinates passed to the last :meth:`scan_mark` call. This is typically " -"bound to mouse motion events in the widget, producing the effect of dragging " -"the list at high speed through the window." +msgid "Scroll the listbox by 10 times the difference between *x*, *y* and the coordinates passed to the last :meth:`scan_mark` call. This is typically bound to mouse motion events in the widget, producing the effect of dragging the list at high speed through the window." msgstr "" -#: ../../library/tkinter.rst:4430 -msgid "" -"A :class:`!Menu` widget displays a column of entries, each of which may be a " -"command, a checkbutton, a radiobutton, a cascade (which posts an associated " -"submenu) or a separator. Menus are used as the menubar of a toplevel window, " -"as pulldown menus posted from a cascade entry or menubutton, and as popup " -"menus. Inherits from :class:`Widget`." +msgid "A :class:`!Menu` widget displays a column of entries, each of which may be a command, a checkbutton, a radiobutton, a cascade (which posts an associated submenu) or a separator. Menus are used as the menubar of a toplevel window, as pulldown menus posted from a cascade entry or menubutton, and as popup menus. Inherits from :class:`Widget`." msgstr "" -#: ../../library/tkinter.rst:4437 -msgid "" -"Many of the entry methods take an *index* argument that selects which entry " -"to operate on. As described in the Tk ``menu`` manual page, *index* may be a " -"numeric index (counting from 0 at the top), ``'active'`` (the currently " -"active entry), ``'end'`` or ``'last'`` (the bottommost entry), ``'none'`` " -"(no entry at all, written ``{}`` in Tcl), ``@y`` (the entry covering pixel y-" -"coordinate *y* in the menu window), or a pattern matched against the labels " -"of the entries from the top down." +msgid "Many of the entry methods take an *index* argument that selects which entry to operate on. As described in the Tk ``menu`` manual page, *index* may be a numeric index (counting from 0 at the top), ``'active'`` (the currently active entry), ``'end'`` or ``'last'`` (the bottommost entry), ``'none'`` (no entry at all, written ``{}`` in Tcl), ``@y`` (the entry covering pixel y-coordinate *y* in the menu window), or a pattern matched against the labels of the entries from the top down." msgstr "" -#: ../../library/tkinter.rst:4448 -msgid "" -"Add a new entry to the bottom of the menu. *itemType* is one of " -"``'command'``, ``'cascade'``, ``'checkbutton'``, ``'radiobutton'`` or " -"``'separator'`` and determines the type of the new entry; the remaining " -"options configure it. The :meth:`!add_command`, :meth:`!" -"add_cascade`, :meth:`!add_checkbutton`, :meth:`!add_radiobutton` and :meth:`!" -"add_separator` convenience methods call this method with the corresponding " -"*itemType*." +msgid "Add a new entry to the bottom of the menu. *itemType* is one of ``'command'``, ``'cascade'``, ``'checkbutton'``, ``'radiobutton'`` or ``'separator'`` and determines the type of the new entry; the remaining options configure it. The :meth:`!add_command`, :meth:`!add_cascade`, :meth:`!add_checkbutton`, :meth:`!add_radiobutton` and :meth:`!add_separator` convenience methods call this method with the corresponding *itemType*." msgstr "" -#: ../../library/tkinter.rst:4456 -msgid "" -"The entry is configured by the following options, although not every option " -"applies to every entry type (a separator accepts none of them):" +msgid "The entry is configured by the following options, although not every option applies to every entry type (a separator accepts none of them):" msgstr "" -#: ../../library/tkinter.rst:4459 msgid "*label*" msgstr "" -#: ../../library/tkinter.rst:4460 msgid "The text to display in the entry." msgstr "" -#: ../../library/tkinter.rst:4462 msgid "*command*" msgstr "" -#: ../../library/tkinter.rst:4463 -msgid "" -"The function to call when the entry is invoked (command, checkbutton and " -"radiobutton entries)." +msgid "The function to call when the entry is invoked (command, checkbutton and radiobutton entries)." msgstr "" -#: ../../library/tkinter.rst:4466 msgid "*accelerator*" msgstr "" -#: ../../library/tkinter.rst:4467 -msgid "" -"A string displayed at the right of the entry to advertise an accelerator " -"keystroke; it does not itself create the binding." +msgid "A string displayed at the right of the entry to advertise an accelerator keystroke; it does not itself create the binding." msgstr "" -#: ../../library/tkinter.rst:4471 -msgid "" -"The index of a character in the label to underline for keyboard traversal." +msgid "The index of a character in the label to underline for keyboard traversal." msgstr "" -#: ../../library/tkinter.rst:4475 msgid "One of ``'normal'``, ``'active'`` or ``'disabled'``." msgstr "" -#: ../../library/tkinter.rst:4478 msgid "An image to display instead of, or together with, the text label." msgstr "" -#: ../../library/tkinter.rst:4480 msgid "*compound*" msgstr "" -#: ../../library/tkinter.rst:4481 -msgid "" -"Where to show the image relative to the text: ``'none'`` (the default), " -"``'text'``, ``'image'``, ``'top'``, ``'bottom'``, ``'left'`` or ``'right'``." +msgid "Where to show the image relative to the text: ``'none'`` (the default), ``'text'``, ``'image'``, ``'top'``, ``'bottom'``, ``'left'`` or ``'right'``." msgstr "" -#: ../../library/tkinter.rst:4486 msgid "A bitmap to display instead of the text label." msgstr "" -#: ../../library/tkinter.rst:4489 ../../library/tkinter.rst:5373 msgid "The font to use for the text." msgstr "" -#: ../../library/tkinter.rst:4492 -msgid "" -"The entry's background and foreground colors in its normal state (ignored on " -"macOS)." +msgid "The entry's background and foreground colors in its normal state (ignored on macOS)." msgstr "" -#: ../../library/tkinter.rst:4495 msgid "*activebackground*, *activeforeground*" msgstr "" -#: ../../library/tkinter.rst:4496 -msgid "" -"The background and foreground colors used when the entry is active (ignored " -"on macOS)." +msgid "The background and foreground colors used when the entry is active (ignored on macOS)." msgstr "" -#: ../../library/tkinter.rst:4499 msgid "*columnbreak*" msgstr "" -#: ../../library/tkinter.rst:4500 -msgid "" -"If true, the entry starts a new column instead of being placed below the " -"previous entry." +msgid "If true, the entry starts a new column instead of being placed below the previous entry." msgstr "" -#: ../../library/tkinter.rst:4503 msgid "*hidemargin*" msgstr "" -#: ../../library/tkinter.rst:4504 -msgid "" -"If true, the standard margin around the entry is omitted, which is useful " -"when a menu is used as a palette." +msgid "If true, the standard margin around the entry is omitted, which is useful when a menu is used as a palette." msgstr "" -#: ../../library/tkinter.rst:4507 msgid "*menu*" msgstr "" -#: ../../library/tkinter.rst:4508 msgid "The submenu posted by a cascade entry; it must be a child of this menu." msgstr "" -#: ../../library/tkinter.rst:4511 msgid "*variable*" msgstr "" -#: ../../library/tkinter.rst:4512 msgid "The variable associated with a checkbutton or radiobutton entry." msgstr "" -#: ../../library/tkinter.rst:4514 msgid "*onvalue*, *offvalue*" msgstr "" -#: ../../library/tkinter.rst:4515 -msgid "" -"The values stored in *variable* when a checkbutton entry is selected or " -"cleared." +msgid "The values stored in *variable* when a checkbutton entry is selected or cleared." msgstr "" -#: ../../library/tkinter.rst:4518 msgid "*value*" msgstr "" -#: ../../library/tkinter.rst:4519 msgid "The value stored in *variable* when a radiobutton entry is selected." msgstr "" -#: ../../library/tkinter.rst:4521 msgid "*indicatoron*" msgstr "" -#: ../../library/tkinter.rst:4522 msgid "Whether to display the indicator of a checkbutton or radiobutton entry." msgstr "" -#: ../../library/tkinter.rst:4525 msgid "*selectcolor*" msgstr "" -#: ../../library/tkinter.rst:4526 -msgid "" -"The color of the indicator of a checkbutton or radiobutton entry when it is " -"selected." +msgid "The color of the indicator of a checkbutton or radiobutton entry when it is selected." msgstr "" -#: ../../library/tkinter.rst:4529 msgid "*selectimage*" msgstr "" -#: ../../library/tkinter.rst:4530 -msgid "" -"The image displayed when a checkbutton or radiobutton entry is selected and " -"*image* is also given." +msgid "The image displayed when a checkbutton or radiobutton entry is selected and *image* is also given." msgstr "" -#: ../../library/tkinter.rst:4535 -msgid "" -"Add a new cascade entry to the bottom of the menu. A cascade entry has an " -"associated submenu, given by its *menu* option, which must be a child of " -"this menu; posting the entry posts the submenu next to it." +msgid "Add a new cascade entry to the bottom of the menu. A cascade entry has an associated submenu, given by its *menu* option, which must be a child of this menu; posting the entry posts the submenu next to it." msgstr "" -#: ../../library/tkinter.rst:4542 -msgid "" -"Add a new checkbutton entry to the bottom of the menu. When invoked, a " -"checkbutton entry toggles between its *onvalue* and *offvalue*, storing the " -"result in its associated *variable*, and displays an indicator showing " -"whether it is selected." +msgid "Add a new checkbutton entry to the bottom of the menu. When invoked, a checkbutton entry toggles between its *onvalue* and *offvalue*, storing the result in its associated *variable*, and displays an indicator showing whether it is selected." msgstr "" -#: ../../library/tkinter.rst:4549 -msgid "" -"Add a new command entry to the bottom of the menu. A command entry behaves " -"much like a button: when it is invoked, the callback given by its *command* " -"option is called." +msgid "Add a new command entry to the bottom of the menu. A command entry behaves much like a button: when it is invoked, the callback given by its *command* option is called." msgstr "" -#: ../../library/tkinter.rst:4555 -msgid "" -"Add a new radiobutton entry to the bottom of the menu. Radiobutton entries " -"sharing the same *variable* form a group of which only one may be selected " -"at a time; selecting an entry stores its *value* in the variable." +msgid "Add a new radiobutton entry to the bottom of the menu. Radiobutton entries sharing the same *variable* form a group of which only one may be selected at a time; selecting an entry stores its *value* in the variable." msgstr "" -#: ../../library/tkinter.rst:4562 -msgid "" -"Add a separator to the bottom of the menu. A separator is displayed as a " -"horizontal dividing line and cannot be activated or invoked." +msgid "Add a separator to the bottom of the menu. A separator is displayed as a horizontal dividing line and cannot be activated or invoked." msgstr "" -#: ../../library/tkinter.rst:4568 -msgid "" -"Same as :meth:`add`, except that the new entry is inserted just before the " -"entry given by *index* instead of being appended to the end of the menu. " -"*itemType* is one of ``'command'``, ``'cascade'``, ``'checkbutton'``, " -"``'radiobutton'`` or ``'separator'``. The :meth:`!insert_command`, :meth:`!" -"insert_cascade`, :meth:`!insert_checkbutton`, :meth:`!insert_radiobutton` " -"and :meth:`!insert_separator` convenience methods call this method with the " -"corresponding *itemType*." +msgid "Same as :meth:`add`, except that the new entry is inserted just before the entry given by *index* instead of being appended to the end of the menu. *itemType* is one of ``'command'``, ``'cascade'``, ``'checkbutton'``, ``'radiobutton'`` or ``'separator'``. The :meth:`!insert_command`, :meth:`!insert_cascade`, :meth:`!insert_checkbutton`, :meth:`!insert_radiobutton` and :meth:`!insert_separator` convenience methods call this method with the corresponding *itemType*." msgstr "" -#: ../../library/tkinter.rst:4580 -msgid "" -"Insert a new cascade entry before the entry given by *index* " -"(see :meth:`add_cascade`)." +msgid "Insert a new cascade entry before the entry given by *index* (see :meth:`add_cascade`)." msgstr "" -#: ../../library/tkinter.rst:4585 -msgid "" -"Insert a new checkbutton entry before the entry given by *index* " -"(see :meth:`add_checkbutton`)." +msgid "Insert a new checkbutton entry before the entry given by *index* (see :meth:`add_checkbutton`)." msgstr "" -#: ../../library/tkinter.rst:4590 -msgid "" -"Insert a new command entry before the entry given by *index* " -"(see :meth:`add_command`)." +msgid "Insert a new command entry before the entry given by *index* (see :meth:`add_command`)." msgstr "" -#: ../../library/tkinter.rst:4595 -msgid "" -"Insert a new radiobutton entry before the entry given by *index* " -"(see :meth:`add_radiobutton`)." +msgid "Insert a new radiobutton entry before the entry given by *index* (see :meth:`add_radiobutton`)." msgstr "" -#: ../../library/tkinter.rst:4600 -msgid "" -"Insert a separator before the entry given by *index* " -"(see :meth:`add_separator`)." +msgid "Insert a separator before the entry given by *index* (see :meth:`add_separator`)." msgstr "" -#: ../../library/tkinter.rst:4605 -msgid "" -"Delete all of the menu entries between *index1* and *index2* inclusive. If " -"*index2* is omitted, it defaults to *index1*, so that a single entry is " -"deleted. Attempts to delete a tear-off entry are ignored; remove it by " -"changing the *tearoff* option instead." +msgid "Delete all of the menu entries between *index1* and *index2* inclusive. If *index2* is omitted, it defaults to *index1*, so that a single entry is deleted. Attempts to delete a tear-off entry are ignored; remove it by changing the *tearoff* option instead." msgstr "" -#: ../../library/tkinter.rst:4613 -msgid "" -"Return the current value of the configuration option *option* for the entry " -"given by *index*." +msgid "Return the current value of the configuration option *option* for the entry given by *index*." msgstr "" -#: ../../library/tkinter.rst:4621 -msgid "" -"Query or modify the configuration options of the entry given by *index*. " -"This mirrors :meth:`~Misc.configure`, except that it applies to an " -"individual entry rather than to the menu as a whole. With no options, it " -"returns a dictionary describing the current options of the entry; otherwise " -"it sets the given options. The supported options are those accepted " -"by :meth:`add` for the entry's type. :meth:`entryconfig` is an alias " -"of :meth:`!entryconfigure`." +msgid "Query or modify the configuration options of the entry given by *index*. This mirrors :meth:`~Misc.configure`, except that it applies to an individual entry rather than to the menu as a whole. With no options, it returns a dictionary describing the current options of the entry; otherwise it sets the given options. The supported options are those accepted by :meth:`add` for the entry's type. :meth:`entryconfig` is an alias of :meth:`!entryconfigure`." msgstr "" -#: ../../library/tkinter.rst:4632 -msgid "" -"Return the numerical index corresponding to *index*, or ``None`` if *index* " -"selects no entry." +msgid "Return the numerical index corresponding to *index*, or ``None`` if *index* selects no entry." msgstr "" -#: ../../library/tkinter.rst:4637 -msgid "" -"Return the type of the entry given by *index*: one of ``'command'``, " -"``'cascade'``, ``'checkbutton'``, ``'radiobutton'``, ``'separator'`` or " -"``'tearoff'`` (for the tear-off entry)." +msgid "Return the type of the entry given by *index*: one of ``'command'``, ``'cascade'``, ``'checkbutton'``, ``'radiobutton'``, ``'separator'`` or ``'tearoff'`` (for the tear-off entry)." msgstr "" -#: ../../library/tkinter.rst:4643 -msgid "" -"Make the entry given by *index* the active entry, redisplaying it with its " -"active colors, and deactivate any previously active entry. If *index* " -"selects no entry, or the selected entry is disabled, the menu ends up with " -"no active entry." +msgid "Make the entry given by *index* the active entry, redisplaying it with its active colors, and deactivate any previously active entry. If *index* selects no entry, or the selected entry is disabled, the menu ends up with no active entry." msgstr "" -#: ../../library/tkinter.rst:4650 -msgid "" -"Invoke the action of the entry given by *index*, as if it had been clicked. " -"Nothing happens if the entry is disabled. If the entry has a *command* " -"associated with it, the result of that command is returned; otherwise the " -"result is an empty string." +msgid "Invoke the action of the entry given by *index*, as if it had been clicked. Nothing happens if the entry is disabled. If the entry has a *command* associated with it, the result of that command is returned; otherwise the result is an empty string." msgstr "" -#: ../../library/tkinter.rst:4658 -msgid "" -"Display the menu on the screen at the root-window coordinates *x* and *y*, " -"adjusting them if necessary so that the whole menu is visible. If the " -"*postcommand* option has been specified, it is evaluated before the menu is " -"posted." +msgid "Display the menu on the screen at the root-window coordinates *x* and *y*, adjusting them if necessary so that the whole menu is visible. If the *postcommand* option has been specified, it is evaluated before the menu is posted." msgstr "" -#: ../../library/tkinter.rst:4665 -msgid "" -"Post the menu as a popup at the root-window coordinates *x* and *y*. If " -"*entry* is given, the menu is positioned so that this entry is displayed " -"under the pointer." +msgid "Post the menu as a popup at the root-window coordinates *x* and *y*. If *entry* is given, the menu is positioned so that this entry is displayed under the pointer." msgstr "" -#: ../../library/tkinter.rst:4671 -msgid "" -"Unmap the menu so that it is no longer displayed, also unposting any posted " -"lower-level cascaded submenu. This has no effect on Windows and macOS, which " -"manage the unposting of menus themselves." +msgid "Unmap the menu so that it is no longer displayed, also unposting any posted lower-level cascaded submenu. This has no effect on Windows and macOS, which manage the unposting of menus themselves." msgstr "" -#: ../../library/tkinter.rst:4678 -msgid "" -"Return the x-coordinate, within the menu window, of the leftmost pixel of " -"the entry given by *index*." +msgid "Return the x-coordinate, within the menu window, of the leftmost pixel of the entry given by *index*." msgstr "" -#: ../../library/tkinter.rst:4685 -msgid "" -"Return the y-coordinate, within the menu window, of the topmost pixel of the " -"entry given by *index*." +msgid "Return the y-coordinate, within the menu window, of the topmost pixel of the entry given by *index*." msgstr "" -#: ../../library/tkinter.rst:4691 -msgid "" -"A :class:`!Menubutton` widget displays a textual string, bitmap or image and " -"posts an associated :class:`Menu`, given by its *menu* option, when the user " -"presses it. Like a :class:`Label` it can show *text*, a *textvariable*, or " -"an *image*, and the *direction* option controls where the menu appears " -"relative to the button. Inherits from :class:`Widget`. Refer to the Tk " -"``menubutton`` manual page for the full list of options." +msgid "A :class:`!Menubutton` widget displays a textual string, bitmap or image and posts an associated :class:`Menu`, given by its *menu* option, when the user presses it. Like a :class:`Label` it can show *text*, a *textvariable*, or an *image*, and the *direction* option controls where the menu appears relative to the button. Inherits from :class:`Widget`. Refer to the Tk ``menubutton`` manual page for the full list of options." msgstr "" -#: ../../library/tkinter.rst:4703 -msgid "" -"A :class:`!Message` widget displays a non-interactive textual string, given " -"by the *text* option or linked to a variable through *textvariable*. Unlike " -"a :class:`Label`, it breaks the string into multiple lines in order to " -"produce a given aspect ratio, choosing line breaks at word boundaries, and " -"it can justify the text left, centered or right. Inherits " -"from :class:`Widget`. Refer to the Tk ``message`` manual page for the full " -"list of options." +msgid "A :class:`!Message` widget displays a non-interactive textual string, given by the *text* option or linked to a variable through *textvariable*. Unlike a :class:`Label`, it breaks the string into multiple lines in order to produce a given aspect ratio, choosing line breaks at word boundaries, and it can justify the text left, centered or right. Inherits from :class:`Widget`. Refer to the Tk ``message`` manual page for the full list of options." msgstr "" -#: ../../library/tkinter.rst:4714 -msgid "" -"A helper subclass of :class:`Menubutton` that displays a pop-up menu of " -"mutually exclusive choices. *variable* is a :class:`Variable` kept in sync " -"with the selection, *value* is the initial choice, and *values* are the " -"remaining menu entries. The keyword argument *command* may be given a " -"callback that is invoked with the selected value, and the keyword argument " -"*name* sets the Tk widget name." +msgid "A helper subclass of :class:`Menubutton` that displays a pop-up menu of mutually exclusive choices. *variable* is a :class:`Variable` kept in sync with the selection, *value* is the initial choice, and *values* are the remaining menu entries. The keyword argument *command* may be given a callback that is invoked with the selected value, and the keyword argument *name* sets the Tk widget name." msgstr "" -#: ../../library/tkinter.rst:4723 msgid "Destroy the widget, also cleaning up the associated pop-up menu." msgstr "" -#: ../../library/tkinter.rst:4725 msgid "Added support for the *name* keyword argument." msgstr "" -#: ../../library/tkinter.rst:4732 -msgid "" -"A :class:`!PanedWindow` is a geometry-manager widget that arranges any " -"number of child *panes* in a row (when *orient* is ``'horizontal'``) or a " -"column (when *orient* is ``'vertical'``). Each pane holds one widget, and " -"each pair of adjacent panes is separated by a movable *sash* that the user " -"can drag with the mouse to resize the widgets on either side of it. Inherits " -"from :class:`Widget`." +msgid "A :class:`!PanedWindow` is a geometry-manager widget that arranges any number of child *panes* in a row (when *orient* is ``'horizontal'``) or a column (when *orient* is ``'vertical'``). Each pane holds one widget, and each pair of adjacent panes is separated by a movable *sash* that the user can drag with the mouse to resize the widgets on either side of it. Inherits from :class:`Widget`." msgstr "" -#: ../../library/tkinter.rst:4740 -msgid "" -"The *orient* option selects the layout direction, *sashwidth* sets the width " -"of each sash and *sashrelief* its relief. When *showhandle* is true a small " -"handle is drawn on each sash that the user can grab to drag it. Refer to the " -"Tk ``panedwindow`` manual page for the full list of options." +msgid "The *orient* option selects the layout direction, *sashwidth* sets the width of each sash and *sashrelief* its relief. When *showhandle* is true a small handle is drawn on each sash that the user can grab to drag it. Refer to the Tk ``panedwindow`` manual page for the full list of options." msgstr "" -#: ../../library/tkinter.rst:4748 -msgid "" -"Add *child* to the panedwindow as a new pane, placed after any existing " -"panes. The keyword arguments specify per-pane management options for " -"*child*; they may be any of the options accepted by :meth:`paneconfigure`." +msgid "Add *child* to the panedwindow as a new pane, placed after any existing panes. The keyword arguments specify per-pane management options for *child*; they may be any of the options accepted by :meth:`paneconfigure`." msgstr "" -#: ../../library/tkinter.rst:4758 -msgid "" -"Remove the pane containing *child* from the panedwindow. All geometry " -"management options for *child* are forgotten. :meth:`forget` is an alias " -"of :meth:`!remove`. This shadows the inherited geometry-manager :meth:`!" -"forget`; use :meth:`~Pack.pack_forget`, :meth:`~Grid.grid_forget` " -"or :meth:`~Place.place_forget` to remove the widget itself from its manager." +msgid "Remove the pane containing *child* from the panedwindow. All geometry management options for *child* are forgotten. :meth:`forget` is an alias of :meth:`!remove`. This shadows the inherited geometry-manager :meth:`!forget`; use :meth:`~Pack.pack_forget`, :meth:`~Grid.grid_forget` or :meth:`~Place.place_forget` to remove the widget itself from its manager." msgstr "" -#: ../../library/tkinter.rst:4767 -msgid "" -"Return a tuple of the widgets managed by the panedwindow, one per pane, in " -"order." +msgid "Return a tuple of the widgets managed by the panedwindow, one per pane, in order." msgstr "" -#: ../../library/tkinter.rst:4772 -msgid "" -"Return the current value of the management option *option* for the pane " -"containing *child*. *option* may be any value allowed " -"by :meth:`paneconfigure`." +msgid "Return the current value of the management option *option* for the pane containing *child*. *option* may be any value allowed by :meth:`paneconfigure`." msgstr "" -#: ../../library/tkinter.rst:4781 -msgid "" -"Query or modify the management options of the pane containing the widget " -"*tagOrId*. With no options, it returns a dictionary describing all of the " -"available options for the pane; given a single option name as a string, it " -"returns a description of that one option; otherwise it sets the given " -"options. The supported options include *after* and *before* (insert the pane " -"after or before another managed window), *height* and *width* (the outer " -"dimensions of the window, including any border), *minsize* (the minimum size " -"in the paned dimension), *padx* and *pady* (extra space to leave on each " -"side of the window), *sticky* (position or stretch the window within an " -"oversized pane, using a string of the characters ``n``, ``s``, ``e`` and " -"``w``), *hide* (hide the pane while keeping it in the list of panes) and " -"*stretch* (how extra space is allocated to the pane: one of ``'always'``, " -"``'first'``, ``'last'``, ``'middle'`` or ``'never'``). :meth:`paneconfig` is " -"an alias of :meth:`!paneconfigure`." -msgstr "" - -#: ../../library/tkinter.rst:4799 -msgid "" -"Identify the panedwindow component underneath the point given by *x* and " -"*y*, in window coordinates. If the point is over a sash or a sash handle, " -"the result is a two-element tuple containing the index of the sash or handle " -"and a word indicating whether it is over a sash or a handle, such as ``(0, " -"'sash')`` or ``(2, 'handle')``. If the point is over any other part of the " -"panedwindow, the result is an empty string." +msgid "Query or modify the management options of the pane containing the widget *tagOrId*. With no options, it returns a dictionary describing all of the available options for the pane; given a single option name as a string, it returns a description of that one option; otherwise it sets the given options. The supported options include *after* and *before* (insert the pane after or before another managed window), *height* and *width* (the outer dimensions of the window, including any border), *minsize* (the minimum size in the paned dimension), *padx* and *pady* (extra space to leave on each side of the window), *sticky* (position or stretch the window within an oversized pane, using a string of the characters ``n``, ``s``, ``e`` and ``w``), *hide* (hide the pane while keeping it in the list of panes) and *stretch* (how extra space is allocated to the pane: one of ``'always'``, ``'first'``, ``'last'``, ``'middle'`` or ``'never'``). :meth:`paneconfig` is an alias of :meth:`!paneconfigure`." msgstr "" -#: ../../library/tkinter.rst:4810 -msgid "" -"Query or change the position of the sashes in the panedwindow. This is a " -"thin wrapper around the Tk ``sash`` subcommand; the convenience " -"methods :meth:`sash_coord`, :meth:`sash_mark` and :meth:`sash_place` should " -"normally be used instead." +msgid "Identify the panedwindow component underneath the point given by *x* and *y*, in window coordinates. If the point is over a sash or a sash handle, the result is a two-element tuple containing the index of the sash or handle and a word indicating whether it is over a sash or a handle, such as ``(0, 'sash')`` or ``(2, 'handle')``. If the point is over any other part of the panedwindow, the result is an empty string." msgstr "" -#: ../../library/tkinter.rst:4817 -msgid "" -"Return the current x and y coordinate pair for the sash given by *index*, " -"which must be an integer between 0 and one less than the number of panes in " -"the panedwindow. The coordinates returned are those of the top left corner " -"of the region containing the sash." +msgid "Query or change the position of the sashes in the panedwindow. This is a thin wrapper around the Tk ``sash`` subcommand; the convenience methods :meth:`sash_coord`, :meth:`sash_mark` and :meth:`sash_place` should normally be used instead." msgstr "" -#: ../../library/tkinter.rst:4825 -msgid "" -"Record the current mouse position for the sash given by *index*, for use " -"together with later sash-drag operations to move the sash." +msgid "Return the current x and y coordinate pair for the sash given by *index*, which must be an integer between 0 and one less than the number of panes in the panedwindow. The coordinates returned are those of the top left corner of the region containing the sash." +msgstr "" + +msgid "Record the current mouse position for the sash given by *index*, for use together with later sash-drag operations to move the sash." msgstr "" -#: ../../library/tkinter.rst:4830 msgid "Place the sash given by *index* at the coordinates *x* and *y*." msgstr "" -#: ../../library/tkinter.rst:4834 -msgid "" -"Query or change the position of the sash proxy, the \"ghost\" sash shown " -"while a sash is being dragged with non-opaque resizing. This is a thin " -"wrapper around the Tk ``proxy`` subcommand; the convenience " -"methods :meth:`proxy_coord`, :meth:`proxy_forget` and :meth:`proxy_place` " -"should normally be used instead." +msgid "Query or change the position of the sash proxy, the \"ghost\" sash shown while a sash is being dragged with non-opaque resizing. This is a thin wrapper around the Tk ``proxy`` subcommand; the convenience methods :meth:`proxy_coord`, :meth:`proxy_forget` and :meth:`proxy_place` should normally be used instead." msgstr "" -#: ../../library/tkinter.rst:4842 -msgid "" -"Return a tuple containing the x and y coordinates of the most recent proxy " -"location." +msgid "Return a tuple containing the x and y coordinates of the most recent proxy location." msgstr "" -#: ../../library/tkinter.rst:4847 msgid "Remove the proxy from the display." msgstr "" -#: ../../library/tkinter.rst:4851 msgid "Place the proxy at the coordinates *x* and *y*." msgstr "" -#: ../../library/tkinter.rst:4856 -msgid "" -"A :class:`!Radiobutton` widget displays a textual string, bitmap or image " -"together with a diamond or circular indicator, and selects one choice out of " -"several. It has all the behavior of a simple button and, in addition, can be " -"selected: typically several radiobuttons share a single *variable*, and " -"selecting one sets that variable to the radiobutton's *value*; each " -"radiobutton also monitors the variable and automatically selects or " -"deselects itself when the variable changes. Inherits from :class:`Widget`. " -"In addition to the standard widget options, a radiobutton accepts the " -"options documented in the Tk ``radiobutton`` manual page, such as " -"*variable*, *value* and *command*." -msgstr "" - -#: ../../library/tkinter.rst:4871 -msgid "" -"Do just what would happen if the user pressed the radiobutton with the " -"mouse: select the button and invoke the associated command, if there is one. " -"Return the result of the command, or an empty string if no command is " -"associated with the radiobutton. This is ignored if the radiobutton's state " -"is ``disabled``." +msgid "A :class:`!Radiobutton` widget displays a textual string, bitmap or image together with a diamond or circular indicator, and selects one choice out of several. It has all the behavior of a simple button and, in addition, can be selected: typically several radiobuttons share a single *variable*, and selecting one sets that variable to the radiobutton's *value*; each radiobutton also monitors the variable and automatically selects or deselects itself when the variable changes. Inherits from :class:`Widget`. In addition to the standard widget options, a radiobutton accepts the options documented in the Tk ``radiobutton`` manual page, such as *variable*, *value* and *command*." msgstr "" -#: ../../library/tkinter.rst:4880 -msgid "" -"Select the radiobutton and set the associated variable to the value " -"corresponding to this widget." +msgid "Do just what would happen if the user pressed the radiobutton with the mouse: select the button and invoke the associated command, if there is one. Return the result of the command, or an empty string if no command is associated with the radiobutton. This is ignored if the radiobutton's state is ``disabled``." msgstr "" -#: ../../library/tkinter.rst:4885 -msgid "" -"Deselect the radiobutton and set the associated variable to an empty string. " -"If this radiobutton was not currently selected, this has no effect." +msgid "Select the radiobutton and set the associated variable to the value corresponding to this widget." msgstr "" -#: ../../library/tkinter.rst:4891 -msgid "" -"Flash the radiobutton by redisplaying it several times, alternating between " -"the active and normal colors. At the end of the flash the radiobutton is " -"left in the same normal or active state as when the method was called. This " -"is ignored if the radiobutton's state is ``disabled``." +msgid "Deselect the radiobutton and set the associated variable to an empty string. If this radiobutton was not currently selected, this has no effect." msgstr "" -#: ../../library/tkinter.rst:4900 -msgid "" -"A :class:`!Scale` widget lets the user select a numerical value by moving a " -"slider along a trough. It can be oriented vertically or horizontally and can " -"optionally display a label and the current value. Inherits " -"from :class:`Widget`." +msgid "Flash the radiobutton by redisplaying it several times, alternating between the active and normal colors. At the end of the flash the radiobutton is left in the same normal or active state as when the method was called. This is ignored if the radiobutton's state is ``disabled``." msgstr "" -#: ../../library/tkinter.rst:4906 -msgid "" -"In addition to the standard widget options, a scale accepts the options " -"documented in the Tk ``scale`` manual page, such as *from_*, *to*, " -"*resolution*, *orient*, *tickinterval*, *variable* and *command*. As " -"elsewhere in :mod:`!tkinter`, the leading ``-`` of the Tk option name is " -"dropped; *from* is spelled ``from_`` because :keyword:`from` is a Python " -"keyword." +msgid "A :class:`!Scale` widget lets the user select a numerical value by moving a slider along a trough. It can be oriented vertically or horizontally and can optionally display a label and the current value. Inherits from :class:`Widget`." msgstr "" -#: ../../library/tkinter.rst:4913 -msgid "" -"With a non-integer *resolution*, see :ref:`numeric values and the locale " -"`." +msgid "In addition to the standard widget options, a scale accepts the options documented in the Tk ``scale`` manual page, such as *from_*, *to*, *resolution*, *orient*, *tickinterval*, *variable* and *command*. As elsewhere in :mod:`!tkinter`, the leading ``-`` of the Tk option name is dropped; *from* is spelled ``from_`` because :keyword:`from` is a Python keyword." msgstr "" -#: ../../library/tkinter.rst:4918 -msgid "" -"Return the current value of the scale. The result is an integer if the " -"scale's *resolution* yields whole numbers, and a float otherwise." +msgid "With a non-integer *resolution*, see :ref:`numeric values and the locale `." msgstr "" -#: ../../library/tkinter.rst:4924 -msgid "" -"Set the scale to *value*, moving the slider accordingly. This has no effect " -"if the scale is disabled." +msgid "Return the current value of the scale. The result is an integer if the scale's *resolution* yields whole numbers, and a float otherwise." msgstr "" -#: ../../library/tkinter.rst:4929 -msgid "" -"Return a tuple ``(x, y)`` giving the pixel coordinates, relative to the " -"widget, of the point on the centerline of the trough that corresponds to " -"*value*. If *value* is omitted, the scale's current value is used." +msgid "Set the scale to *value*, moving the slider accordingly. This has no effect if the scale is disabled." msgstr "" -#: ../../library/tkinter.rst:4936 -msgid "" -"Return a string describing the part of the scale at the pixel coordinates " -"*x*, *y*: ``'slider'``, ``'trough1'`` (the part of the trough above or to " -"the left of the slider), ``'trough2'`` (below or to the right of the " -"slider), or an empty string if the point is not over any of these elements." +msgid "Return a tuple ``(x, y)`` giving the pixel coordinates, relative to the widget, of the point on the centerline of the trough that corresponds to *value*. If *value* is omitted, the scale's current value is used." msgstr "" -#: ../../library/tkinter.rst:4945 -msgid "" -"A :class:`!Scrollbar` widget displays a slider and two arrows that let the " -"user scroll an associated widget, such as " -"a :class:`Listbox`, :class:`Text`, :class:`Canvas` or :class:`Entry`. It is " -"connected to the scrolled widget by setting that widget's *xscrollcommand* " -"or *yscrollcommand* option to the scrollbar's :meth:`set` method, and the " -"scrollbar's *command* option to the scrolled widget's :meth:`~XView.xview` " -"or :meth:`~YView.yview` method. Inherits from :class:`Widget`." +msgid "Return a string describing the part of the scale at the pixel coordinates *x*, *y*: ``'slider'``, ``'trough1'`` (the part of the trough above or to the left of the slider), ``'trough2'`` (below or to the right of the slider), or an empty string if the point is not over any of these elements." msgstr "" -#: ../../library/tkinter.rst:4956 -msgid "" -"Return the current scrollbar settings as a tuple ``(first, last)`` of two " -"fractions between 0 and 1, describing the portion of the document that is " -"currently visible, as last passed to :meth:`set`." +msgid "A :class:`!Scrollbar` widget displays a slider and two arrows that let the user scroll an associated widget, such as a :class:`Listbox`, :class:`Text`, :class:`Canvas` or :class:`Entry`. It is connected to the scrolled widget by setting that widget's *xscrollcommand* or *yscrollcommand* option to the scrollbar's :meth:`set` method, and the scrollbar's *command* option to the scrolled widget's :meth:`~XView.xview` or :meth:`~YView.yview` method. Inherits from :class:`Widget`." msgstr "" -#: ../../library/tkinter.rst:4962 -msgid "" -"Set the scrollbar. *first* and *last* are fractions between 0 and 1 giving " -"the positions of the start and end of the visible portion of the associated " -"document. This method is normally registered as the scrolled widget's " -"*xscrollcommand* or *yscrollcommand* and called by that widget." +msgid "Return the current scrollbar settings as a tuple ``(first, last)`` of two fractions between 0 and 1, describing the portion of the document that is currently visible, as last passed to :meth:`set`." msgstr "" -#: ../../library/tkinter.rst:4970 -msgid "" -"Mark the element *index* (one of ``'arrow1'``, ``'slider'`` or ``'arrow2'``) " -"as active, displaying it according to the *activebackground* and " -"*activerelief* options. If *index* is omitted, return the name of the " -"currently active element, or ``None`` if no element is active." +msgid "Set the scrollbar. *first* and *last* are fractions between 0 and 1 giving the positions of the start and end of the visible portion of the associated document. This method is normally registered as the scrolled widget's *xscrollcommand* or *yscrollcommand* and called by that widget." +msgstr "" + +msgid "Mark the element *index* (one of ``'arrow1'``, ``'slider'`` or ``'arrow2'``) as active, displaying it according to the *activebackground* and *activerelief* options. If *index* is omitted, return the name of the currently active element, or ``None`` if no element is active." msgstr "" -#: ../../library/tkinter.rst:4976 msgid "The *index* argument is now optional." msgstr "" -#: ../../library/tkinter.rst:4981 -msgid "" -"Return a float indicating the fractional change in the scrollbar setting " -"that corresponds to moving the slider by *deltax* pixels horizontally (for " -"horizontal scrollbars) or *deltay* pixels vertically (for vertical " -"scrollbars)." +msgid "Return a float indicating the fractional change in the scrollbar setting that corresponds to moving the slider by *deltax* pixels horizontally (for horizontal scrollbars) or *deltay* pixels vertically (for vertical scrollbars)." msgstr "" -#: ../../library/tkinter.rst:4988 -msgid "" -"Return a float between 0 and 1 indicating where the point at pixel " -"coordinates *x*, *y* lies in the trough: 0 corresponds to the top or left of " -"the trough and 1 to the bottom or right." +msgid "Return a float between 0 and 1 indicating where the point at pixel coordinates *x*, *y* lies in the trough: 0 corresponds to the top or left of the trough and 1 to the bottom or right." msgstr "" -#: ../../library/tkinter.rst:4994 -msgid "" -"Return the name of the element under the pixel coordinates *x*, *y* (such as " -"``'arrow1'``), or an empty string if the point does not lie in any element " -"of the scrollbar." +msgid "Return the name of the element under the pixel coordinates *x*, *y* (such as ``'arrow1'``), or an empty string if the point does not lie in any element of the scrollbar." msgstr "" -#: ../../library/tkinter.rst:5001 -msgid "" -"A :class:`!Spinbox` widget is an :class:`Entry`-like widget with a pair of " -"up/down arrow buttons that let the user step through a range of values in " -"addition to editing the value directly. The set of values may be a numeric " -"range given by the *from_*, *to* and *increment* options, or an explicit " -"list of strings given by the *values* option (which takes precedence over " -"the range). Each time an arrow is invoked the *command* callback, if any, is " -"called; the *wrap* option controls whether stepping past either end of the " -"range wraps around to the other end; the *format* option specifies how " -"numeric values are formatted; and the *validate* option enables validation " -"of the entered text. Inherits from :class:`Widget` and :class:`XView`." -msgstr "" - -#: ../../library/tkinter.rst:5014 -msgid "" -"With a non-integer *increment*, see :ref:`numeric values and the locale " -"`." +msgid "A :class:`!Spinbox` widget is an :class:`Entry`-like widget with a pair of up/down arrow buttons that let the user step through a range of values in addition to editing the value directly. The set of values may be a numeric range given by the *from_*, *to* and *increment* options, or an explicit list of strings given by the *values* option (which takes precedence over the range). Each time an arrow is invoked the *command* callback, if any, is called; the *wrap* option controls whether stepping past either end of the range wraps around to the other end; the *format* option specifies how numeric values are formatted; and the *validate* option enables validation of the entered text. Inherits from :class:`Widget` and :class:`XView`." msgstr "" -#: ../../library/tkinter.rst:5017 -msgid "" -"Many of the methods take an *index* argument identifying a character in the " -"spinbox's string. As described in the Tk ``spinbox`` manual page, *index* " -"may be a numeric index (counting from 0), ``'anchor'`` (the selection anchor " -"point), ``'end'`` (just after the last character), ``'insert'`` (the " -"character just after the insertion cursor), ``'sel.first'`` or " -"``'sel.last'`` (the ends of the selection), or ``@x`` (the character " -"covering pixel x-coordinate *x* in the window)." +msgid "With a non-integer *increment*, see :ref:`numeric values and the locale `." +msgstr "" + +msgid "Many of the methods take an *index* argument identifying a character in the spinbox's string. As described in the Tk ``spinbox`` manual page, *index* may be a numeric index (counting from 0), ``'anchor'`` (the selection anchor point), ``'end'`` (just after the last character), ``'insert'`` (the character just after the insertion cursor), ``'sel.first'`` or ``'sel.last'`` (the ends of the selection), or ``@x`` (the character covering pixel x-coordinate *x* in the window)." msgstr "" -#: ../../library/tkinter.rst:5028 msgid "Return the spinbox's string." msgstr "" -#: ../../library/tkinter.rst:5032 -msgid "" -"Insert the characters of the string *s* just before the character given by " -"*index*." +msgid "Insert the characters of the string *s* just before the character given by *index*." msgstr "" -#: ../../library/tkinter.rst:5037 -msgid "" -"Delete one or more characters of the spinbox. *first* is the index of the " -"first character to delete, and *last* is the index of the character just " -"after the last one to delete. If *last* is omitted, a single character at " -"*first* is deleted." +msgid "Delete one or more characters of the spinbox. *first* is the index of the first character to delete, and *last* is the index of the character just after the last one to delete. If *last* is omitted, a single character at *first* is deleted." msgstr "" -#: ../../library/tkinter.rst:5049 msgid "Return the numerical index corresponding to *index*, as a string." msgstr "" -#: ../../library/tkinter.rst:5053 -msgid "" -"Return a tuple of four integers ``(x, y, width, height)`` describing the " -"bounding box of the character given by *index*. *x* and *y* are the pixel " -"coordinates of the upper-left corner of the character relative to the " -"widget, and *width* and *height* are its size in pixels. The bounding box " -"may refer to a region outside the visible area of the window." +msgid "Return a tuple of four integers ``(x, y, width, height)`` describing the bounding box of the character given by *index*. *x* and *y* are the pixel coordinates of the upper-left corner of the character relative to the widget, and *width* and *height* are its size in pixels. The bounding box may refer to a region outside the visible area of the window." msgstr "" -#: ../../library/tkinter.rst:5066 -msgid "" -"Return the name of the window element at the pixel coordinates *x*, *y*: one " -"of ``'buttondown'``, ``'buttonup'``, ``'entry'`` or ``'none'``." +msgid "Return the name of the window element at the pixel coordinates *x*, *y*: one of ``'buttondown'``, ``'buttonup'``, ``'entry'`` or ``'none'``." msgstr "" -#: ../../library/tkinter.rst:5071 -msgid "" -"Invoke the spin button given by *element*, either ``'buttonup'`` or " -"``'buttondown'``, triggering the action associated with it." +msgid "Invoke the spin button given by *element*, either ``'buttonup'`` or ``'buttondown'``, triggering the action associated with it." msgstr "" -#: ../../library/tkinter.rst:5076 -msgid "" -"A thin wrapper around the Tk ``scan`` widget subcommand, used to implement " -"fast dragging of the view: ``scan('mark', x)`` records *x* and the current " -"view, and ``scan('dragto', x)`` adjusts the view relative to that mark. " -"The :meth:`scan_mark` and :meth:`scan_dragto` methods wrap the two forms." +msgid "A thin wrapper around the Tk ``scan`` widget subcommand, used to implement fast dragging of the view: ``scan('mark', x)`` records *x* and the current view, and ``scan('dragto', x)`` adjusts the view relative to that mark. The :meth:`scan_mark` and :meth:`scan_dragto` methods wrap the two forms." msgstr "" -#: ../../library/tkinter.rst:5084 -msgid "" -"Record *x* and the current view in the spinbox window, for use with a " -"later :meth:`scan_dragto` call. This is typically associated with a mouse " -"button press in the widget." +msgid "Record *x* and the current view in the spinbox window, for use with a later :meth:`scan_dragto` call. This is typically associated with a mouse button press in the widget." msgstr "" -#: ../../library/tkinter.rst:5090 -msgid "" -"Adjust the view by 10 times the difference between *x* and the *x* passed to " -"the last :meth:`scan_mark` call. This is typically associated with mouse " -"motion events, producing the effect of dragging the spinbox at high speed " -"through the window." +msgid "Adjust the view by 10 times the difference between *x* and the *x* passed to the last :meth:`scan_mark` call. This is typically associated with mouse motion events, producing the effect of dragging the spinbox at high speed through the window." msgstr "" -#: ../../library/tkinter.rst:5097 -msgid "" -"A thin wrapper around the Tk ``selection`` widget subcommand, used to adjust " -"the selection within the spinbox. It has several forms depending on the " -"first argument, such as ``selection('adjust', index)``, " -"``selection('clear')``, ``selection('element', ?elem?)``, " -"``selection('from', index)``, ``selection('present')``, ``selection('range', " -"start, end)`` and ``selection('to', index)``. " -"The :meth:`selection_adjust`, :meth:`selection_clear`, :meth:`selection_element`, :meth:`selection_from`, :meth:`selection_present`, :meth:`selection_range` " -"and :meth:`selection_to` methods wrap these forms." +msgid "A thin wrapper around the Tk ``selection`` widget subcommand, used to adjust the selection within the spinbox. It has several forms depending on the first argument, such as ``selection('adjust', index)``, ``selection('clear')``, ``selection('element', ?elem?)``, ``selection('from', index)``, ``selection('present')``, ``selection('range', start, end)`` and ``selection('to', index)``. The :meth:`selection_adjust`, :meth:`selection_clear`, :meth:`selection_element`, :meth:`selection_from`, :meth:`selection_present`, :meth:`selection_range` and :meth:`selection_to` methods wrap these forms." msgstr "" -#: ../../library/tkinter.rst:5111 -msgid "" -"Locate the end of the selection nearest to the character given by *index* " -"and adjust that end of the selection to be at *index* (including but not " -"going beyond *index*). The other end becomes the anchor point for " -"future :meth:`selection_to` calls. If the selection is not currently in the " -"spinbox, a new selection is created to include the characters between " -"*index* and the most recent anchor point, inclusive." +msgid "Locate the end of the selection nearest to the character given by *index* and adjust that end of the selection to be at *index* (including but not going beyond *index*). The other end becomes the anchor point for future :meth:`selection_to` calls. If the selection is not currently in the spinbox, a new selection is created to include the characters between *index* and the most recent anchor point, inclusive." msgstr "" -#: ../../library/tkinter.rst:5122 -msgid "" -"Clear the selection if it is currently in this widget. If the selection is " -"not in this widget, the method has no effect." +msgid "Clear the selection if it is currently in this widget. If the selection is not in this widget, the method has no effect." msgstr "" -#: ../../library/tkinter.rst:5127 -msgid "" -"This shadows the inherited :meth:`Misc.selection_clear`, which clears the X " -"selection; that method is not available on a :class:`Spinbox`." +msgid "This shadows the inherited :meth:`Misc.selection_clear`, which clears the X selection; that method is not available on a :class:`Spinbox`." msgstr "" -#: ../../library/tkinter.rst:5133 -msgid "" -"Set or get the currently selected element. If *element* (one of " -"``'buttonup'``, ``'buttondown'`` or ``'none'``) is given, that spin button " -"is selected and displayed depressed; otherwise the name of the currently " -"selected element is returned." +msgid "Set or get the currently selected element. If *element* (one of ``'buttonup'``, ``'buttondown'`` or ``'none'``) is given, that spin button is selected and displayed depressed; otherwise the name of the currently selected element is returned." msgstr "" -#: ../../library/tkinter.rst:5140 -msgid "" -"Set the selection anchor point to just before the character given by " -"*index*, without changing the selection itself." +msgid "Set the selection anchor point to just before the character given by *index*, without changing the selection itself." msgstr "" -#: ../../library/tkinter.rst:5148 -msgid "" -"Return ``True`` if there are characters selected in the spinbox, ``False`` " -"otherwise." +msgid "Return ``True`` if there are characters selected in the spinbox, ``False`` otherwise." msgstr "" -#: ../../library/tkinter.rst:5156 -msgid "" -"Set the selection to include the characters starting with the one indexed by " -"*start* and ending with the one just before *end*. If *end* refers to the " -"same character as *start* or an earlier one, the selection is cleared." +msgid "Set the selection to include the characters starting with the one indexed by *start* and ending with the one just before *end*. If *end* refers to the same character as *start* or an earlier one, the selection is cleared." msgstr "" -#: ../../library/tkinter.rst:5166 -msgid "" -"Set the selection between *index* and the anchor point. If *index* is before " -"the anchor point, the selection runs from *index* up to but not including " -"the anchor point; if it is after, the selection runs from the anchor point " -"up to but not including *index*; if it is the same, nothing happens. The " -"anchor point is the one set by the most recent :meth:`selection_from` " -"or :meth:`selection_adjust` call. If the selection is not in this widget, a " -"new selection is created using the most recent anchor point." +msgid "Set the selection between *index* and the anchor point. If *index* is before the anchor point, the selection runs from *index* up to but not including the anchor point; if it is after, the selection runs from the anchor point up to but not including *index*; if it is the same, nothing happens. The anchor point is the one set by the most recent :meth:`selection_from` or :meth:`selection_adjust` call. If the selection is not in this widget, a new selection is created using the most recent anchor point." msgstr "" -#: ../../library/tkinter.rst:5182 -msgid "" -"A :class:`!Text` widget displays and edits multi-line text. Portions of the " -"text may be styled with **tags**, particular positions may be annotated with " -"floating **marks**, and arbitrary images and other widgets may be embedded " -"in the text. The widget also provides an unlimited undo/redo mechanism and " -"supports peer widgets that share the same underlying data. Inherits " -"from :class:`Widget`, :class:`XView` and :class:`YView`, so the view can be " -"scrolled horizontally and vertically with :meth:`~XView.xview` " -"and :meth:`~YView.yview`. Refer to the Tk ``text`` manual page for the full " -"list of options." -msgstr "" - -#: ../../library/tkinter.rst:5193 -msgid "" -"Most of the methods take one or more *index* arguments that identify a " -"position within the text. As described in the Tk ``text`` manual page, an " -"index is a string consisting of a base, optionally followed by one or more " -"modifiers. The base may be ``'line.char'`` (line *line*, character *char*, " -"where lines are counted from 1 and characters within a line from 0; " -"``'line.end'`` refers to the newline ending the line), ``'end'`` (the " -"position just after the last newline), the name of a mark, ``'tag.first'`` " -"or ``'tag.last'`` (the first character tagged with *tag*, or the position " -"just after the last such character), the name of an embedded image or " -"window, or ``@x,y`` (the character covering pixel coordinates *x*, *y* in " -"the widget). A modifier such as ``'+5 chars'``, ``'-3 lines'``, " -"``'linestart'``, ``'lineend'``, ``'wordstart'`` or ``'wordend'`` adjusts the " -"index relative to its base; several modifiers may be combined and are " -"applied from left to right, for example ``'insert wordstart - 1 c'``." -msgstr "" - -#: ../../library/tkinter.rst:5211 -msgid "" -"Insert the string *chars* just before the character at *index* (if *index* " -"is ``'end'``, just before the final newline). By default the new text " -"inherits any tags present on both sides of the insertion point. If *args* is " -"given, it consists of alternating *tagList*, *chars* values: the preceding " -"*chars* receives exactly the tags listed (a tag list may be a single tag " -"name or a sequence of names), overriding the surrounding tags." +msgid "A :class:`!Text` widget displays and edits multi-line text. Portions of the text may be styled with **tags**, particular positions may be annotated with floating **marks**, and arbitrary images and other widgets may be embedded in the text. The widget also provides an unlimited undo/redo mechanism and supports peer widgets that share the same underlying data. Inherits from :class:`Widget`, :class:`XView` and :class:`YView`, so the view can be scrolled horizontally and vertically with :meth:`~XView.xview` and :meth:`~YView.yview`. Refer to the Tk ``text`` manual page for the full list of options." msgstr "" -#: ../../library/tkinter.rst:5222 -msgid "" -"Delete the range of characters from *index1* up to but not including " -"*index2*. If *index2* is omitted, the single character at *index1* is " -"deleted. The widget always keeps a newline as its last character, so a " -"deletion that would remove it is adjusted accordingly." +msgid "Most of the methods take one or more *index* arguments that identify a position within the text. As described in the Tk ``text`` manual page, an index is a string consisting of a base, optionally followed by one or more modifiers. The base may be ``'line.char'`` (line *line*, character *char*, where lines are counted from 1 and characters within a line from 0; ``'line.end'`` refers to the newline ending the line), ``'end'`` (the position just after the last newline), the name of a mark, ``'tag.first'`` or ``'tag.last'`` (the first character tagged with *tag*, or the position just after the last such character), the name of an embedded image or window, or ``@x,y`` (the character covering pixel coordinates *x*, *y* in the widget). A modifier such as ``'+5 chars'``, ``'-3 lines'``, ``'linestart'``, ``'lineend'``, ``'wordstart'`` or ``'wordend'`` adjusts the index relative to its base; several modifiers may be combined and are applied from left to right, for example ``'insert wordstart - 1 c'``." msgstr "" -#: ../../library/tkinter.rst:5230 -msgid "" -"Replace the range of characters from *index1* up to but not including " -"*index2* with *chars*. This is equivalent to a :meth:`delete` followed by " -"an :meth:`insert` at *index1*; *args* is interpreted as for :meth:`insert`." +msgid "Insert the string *chars* just before the character at *index* (if *index* is ``'end'``, just before the final newline). By default the new text inherits any tags present on both sides of the insertion point. If *args* is given, it consists of alternating *tagList*, *chars* values: the preceding *chars* receives exactly the tags listed (a tag list may be a single tag name or a sequence of names), overriding the surrounding tags." msgstr "" -#: ../../library/tkinter.rst:5239 -msgid "" -"Return the text from *index1* up to but not including *index2* as a string. " -"If *index2* is omitted, return the single character at *index1*. Embedded " -"images and windows are omitted from the result." +msgid "Delete the range of characters from *index1* up to but not including *index2*. If *index2* is omitted, the single character at *index1* is deleted. The widget always keeps a newline as its last character, so a deletion that would remove it is adjusted accordingly." msgstr "" -#: ../../library/tkinter.rst:5246 -msgid "" -"Return the position corresponding to *index* in the canonical " -"``'line.char'`` form." +msgid "Replace the range of characters from *index1* up to but not including *index2* with *chars*. This is equivalent to a :meth:`delete` followed by an :meth:`insert` at *index1*; *args* is interpreted as for :meth:`insert`." msgstr "" -#: ../../library/tkinter.rst:5251 -msgid "" -"Compare the positions of *index1* and *index2* using the relational operator " -"*op*, which must be one of ``'<'``, ``'<='``, ``'=='``, ``'>='``, ``'>'`` or " -"``'!='``, and return the boolean result." +msgid "Return the text from *index1* up to but not including *index2* as a string. If *index2* is omitted, return the single character at *index1*. Embedded images and windows are omitted from the result." +msgstr "" + +msgid "Return the position corresponding to *index* in the canonical ``'line.char'`` form." +msgstr "" + +msgid "Compare the positions of *index1* and *index2* using the relational operator *op*, which must be one of ``'<'``, ``'<='``, ``'=='``, ``'>='``, ``'>'`` or ``'!='``, and return the boolean result." +msgstr "" + +msgid "Count the number of items of the requested kinds between *index1* and *index2*; the count is negative if *index1* is after *index2*. Each of *options* names a kind of item to count: ``'chars'``, ``'displaychars'``, ``'displayindices'``, ``'displaylines'``, ``'indices'``, ``'lines'``, ``'xpixels'`` or ``'ypixels'`` (the default, used when no option is given, is ``'indices'``). The pseudo-option ``'update'`` forces any out-of-date layout information to be recalculated before the following options are evaluated. When *return_ints* is true and a single counting option is given, return a plain integer; otherwise return a tuple with one integer per counting option (or ``None`` if the result is empty)." msgstr "" -#: ../../library/tkinter.rst:5257 -msgid "" -"Count the number of items of the requested kinds between *index1* and " -"*index2*; the count is negative if *index1* is after *index2*. Each of " -"*options* names a kind of item to count: ``'chars'``, ``'displaychars'``, " -"``'displayindices'``, ``'displaylines'``, ``'indices'``, ``'lines'``, " -"``'xpixels'`` or ``'ypixels'`` (the default, used when no option is given, " -"is ``'indices'``). The pseudo-option ``'update'`` forces any out-of-date " -"layout information to be recalculated before the following options are " -"evaluated. When *return_ints* is true and a single counting option is given, " -"return a plain integer; otherwise return a tuple with one integer per " -"counting option (or ``None`` if the result is empty)." -msgstr "" - -#: ../../library/tkinter.rst:5271 msgid "Added the *return_ints* parameter." msgstr "" -#: ../../library/tkinter.rst:5277 -msgid "" -"Adjust the view so that the character given by *index* is visible. If it is " -"already visible the method has no effect; if it is a short distance out of " -"view the widget scrolls just enough to bring it to the nearest edge, " -"otherwise it scrolls to center *index* in the window." +msgid "Adjust the view so that the character given by *index* is visible. If it is already visible the method has no effect; if it is a short distance out of view the widget scrolls just enough to bring it to the nearest edge, otherwise it scrolls to center *index* in the window." msgstr "" -#: ../../library/tkinter.rst:5284 -msgid "" -"Return a tuple ``(x, y, width, height)`` giving the bounding box, in pixels, " -"of the visible part of the character at *index*, or ``None`` if that " -"character is not visible on the screen." +msgid "Return a tuple ``(x, y, width, height)`` giving the bounding box, in pixels, of the visible part of the character at *index*, or ``None`` if that character is not visible on the screen." msgstr "" -#: ../../library/tkinter.rst:5293 -msgid "" -"Return a tuple ``(x, y, width, height, baseline)`` describing the display " -"line that contains *index*: the first four values give the bounding box of " -"the line in pixels and *baseline* gives the offset of the baseline measured " -"down from the top of the area. Return ``None`` if that display line is not " -"visible on the screen." +msgid "Return a tuple ``(x, y, width, height, baseline)`` describing the display line that contains *index*: the first four values give the bounding box of the line in pixels and *baseline* gives the offset of the baseline measured down from the top of the area. Return ``None`` if that display line is not visible on the screen." msgstr "" -#: ../../library/tkinter.rst:5301 -msgid "" -"Set the mark named *markName* to the position just before the character at " -"*index*, creating the mark if it does not already exist. A mark created this " -"way has right gravity by default." +msgid "Set the mark named *markName* to the position just before the character at *index*, creating the mark if it does not already exist. A mark created this way has right gravity by default." msgstr "" -#: ../../library/tkinter.rst:5307 -msgid "" -"Remove each of the marks named in *markNames*. The special ``insert`` and " -"``current`` marks may not be removed." +msgid "Remove each of the marks named in *markNames*. The special ``insert`` and ``current`` marks may not be removed." msgstr "" -#: ../../library/tkinter.rst:5312 msgid "Return a tuple of the names of all marks currently set in the widget." msgstr "" -#: ../../library/tkinter.rst:5316 -msgid "" -"If *direction* is omitted, return the gravity of mark *markName*, either " -"``'left'`` or ``'right'``. Otherwise set its gravity to *direction*. The " -"gravity determines on which side of the mark text inserted at the mark's " -"position appears: a mark with right gravity (the default) stays to the right " -"of such text." +msgid "If *direction* is omitted, return the gravity of mark *markName*, either ``'left'`` or ``'right'``. Otherwise set its gravity to *direction*. The gravity determines on which side of the mark text inserted at the mark's position appears: a mark with right gravity (the default) stays to the right of such text." msgstr "" -#: ../../library/tkinter.rst:5325 -msgid "" -"Return the name of the first mark at or after *index*, or ``None`` if there " -"is none. When *index* is the name of a mark, the search starts just after " -"that mark." +msgid "Return the name of the first mark at or after *index*, or ``None`` if there is none. When *index* is the name of a mark, the search starts just after that mark." msgstr "" -#: ../../library/tkinter.rst:5332 -msgid "" -"Return the name of the last mark at or before *index*, or ``None`` if there " -"is none. When *index* is the name of a mark, the search starts just before " -"that mark." +msgid "Return the name of the last mark at or before *index*, or ``None`` if there is none. When *index* is the name of a mark, the search starts just before that mark." msgstr "" -#: ../../library/tkinter.rst:5339 -msgid "" -"Add the tag *tagName* to the range of characters from *index1* up to but not " -"including the next index in *args*. Further pairs of indices may follow in " -"*args* to tag additional ranges; a trailing single index tags just the " -"character at that index." +msgid "Add the tag *tagName* to the range of characters from *index1* up to but not including the next index in *args*. Further pairs of indices may follow in *args* to tag additional ranges; a trailing single index tags just the character at that index." msgstr "" -#: ../../library/tkinter.rst:5346 -msgid "" -"Remove the tag *tagName* from the characters from *index1* up to but not " -"including *index2* (or from the single character at *index1* if *index2* is " -"omitted). The tag itself continues to exist even if no characters carry it." +msgid "Remove the tag *tagName* from the characters from *index1* up to but not including *index2* (or from the single character at *index1* if *index2* is omitted). The tag itself continues to exist even if no characters carry it." msgstr "" -#: ../../library/tkinter.rst:5353 -msgid "" -"Delete each of the tags named in *tagNames*, removing them from all " -"characters and discarding their options and bindings." +msgid "Delete each of the tags named in *tagNames*, removing them from all characters and discarding their options and bindings." msgstr "" -#: ../../library/tkinter.rst:5361 -msgid "" -"Query or modify the configuration options of the tag *tagName*. This " -"mirrors :meth:`~Misc.configure`, except that it applies to a tag rather than " -"to the widget as a whole: with no options it returns a dictionary describing " -"the current options, otherwise it sets the given options. Defining a tag " -"this way also gives it a priority higher than any existing tag." +msgid "Query or modify the configuration options of the tag *tagName*. This mirrors :meth:`~Misc.configure`, except that it applies to a tag rather than to the widget as a whole: with no options it returns a dictionary describing the current options, otherwise it sets the given options. Defining a tag this way also gives it a priority higher than any existing tag." msgstr "" -#: ../../library/tkinter.rst:5369 -msgid "" -"The supported tag options, all controlling the appearance of the tagged " -"text, are:" +msgid "The supported tag options, all controlling the appearance of the tagged text, are:" msgstr "" -#: ../../library/tkinter.rst:5375 msgid "*foreground*" msgstr "" -#: ../../library/tkinter.rst:5376 msgid "The color to use for the text." msgstr "" -#: ../../library/tkinter.rst:5378 msgid "*background*" msgstr "" -#: ../../library/tkinter.rst:5379 msgid "The color to use for the area behind the text." msgstr "" -#: ../../library/tkinter.rst:5381 msgid "*fgstipple*, *bgstipple*" msgstr "" -#: ../../library/tkinter.rst:5382 -msgid "" -"Bitmaps used to stipple the foreground (text) and the background; only well " -"supported on X11." +msgid "Bitmaps used to stipple the foreground (text) and the background; only well supported on X11." msgstr "" -#: ../../library/tkinter.rst:5385 msgid "*borderwidth*" msgstr "" -#: ../../library/tkinter.rst:5386 -msgid "" -"The width of the border drawn around the text according to *relief* (default " -"``0``)." +msgid "The width of the border drawn around the text according to *relief* (default ``0``)." msgstr "" -#: ../../library/tkinter.rst:5389 msgid "*relief*" msgstr "" -#: ../../library/tkinter.rst:5390 -msgid "" -"The 3-D appearance of the text's border: ``'flat'`` (the default), " -"``'raised'``, ``'sunken'``, ``'ridge'``, ``'groove'`` or ``'solid'``." +msgid "The 3-D appearance of the text's border: ``'flat'`` (the default), ``'raised'``, ``'sunken'``, ``'ridge'``, ``'groove'`` or ``'solid'``." msgstr "" -#: ../../library/tkinter.rst:5393 msgid "*offset*" msgstr "" -#: ../../library/tkinter.rst:5394 -msgid "" -"How far the text is raised above (or, if negative, lowered below) the " -"baseline, for superscripts and subscripts." +msgid "How far the text is raised above (or, if negative, lowered below) the baseline, for superscripts and subscripts." msgstr "" -#: ../../library/tkinter.rst:5398 msgid "Whether to underline the text." msgstr "" -#: ../../library/tkinter.rst:5400 msgid "*underlinefg*" msgstr "" -#: ../../library/tkinter.rst:5401 msgid "The color of the underline; it defaults to the text color." msgstr "" -#: ../../library/tkinter.rst:5403 msgid "*overstrike*" msgstr "" -#: ../../library/tkinter.rst:5404 msgid "Whether to draw a line through the middle of the text." msgstr "" -#: ../../library/tkinter.rst:5406 msgid "*overstrikefg*" msgstr "" -#: ../../library/tkinter.rst:5407 msgid "The color of the overstrike line; it defaults to the text color." msgstr "" -#: ../../library/tkinter.rst:5409 msgid "*elide*" msgstr "" -#: ../../library/tkinter.rst:5410 msgid "Whether the text is elided (hidden)." msgstr "" -#: ../../library/tkinter.rst:5413 -msgid "" -"How to justify the first character of a display line: ``'left'`` (the " -"default), ``'right'`` or ``'center'``." +msgid "How to justify the first character of a display line: ``'left'`` (the default), ``'right'`` or ``'center'``." msgstr "" -#: ../../library/tkinter.rst:5416 msgid "*wrap*" msgstr "" -#: ../../library/tkinter.rst:5417 -msgid "" -"How to wrap lines that are too long: ``'char'``, ``'word'`` or ``'none'``." +msgid "How to wrap lines that are too long: ``'char'``, ``'word'`` or ``'none'``." msgstr "" -#: ../../library/tkinter.rst:5420 msgid "*lmargin1*, *lmargin2*" msgstr "" -#: ../../library/tkinter.rst:5421 -msgid "" -"The indentation, in pixels, of the first display line of a logical line and " -"of the remaining display lines." +msgid "The indentation, in pixels, of the first display line of a logical line and of the remaining display lines." msgstr "" -#: ../../library/tkinter.rst:5424 msgid "*lmargincolor*" msgstr "" -#: ../../library/tkinter.rst:5425 msgid "The color of the left margin area." msgstr "" -#: ../../library/tkinter.rst:5427 msgid "*rmargin*" msgstr "" -#: ../../library/tkinter.rst:5428 msgid "The right-hand margin, in pixels." msgstr "" -#: ../../library/tkinter.rst:5430 msgid "*rmargincolor*" msgstr "" -#: ../../library/tkinter.rst:5431 msgid "The color of the right margin area." msgstr "" -#: ../../library/tkinter.rst:5433 msgid "*spacing1*, *spacing2*, *spacing3*" msgstr "" -#: ../../library/tkinter.rst:5434 -msgid "" -"Extra space, in pixels, above the first display line of a logical line, " -"between its display lines, and below its last display line." +msgid "Extra space, in pixels, above the first display line of a logical line, between its display lines, and below its last display line." msgstr "" -#: ../../library/tkinter.rst:5437 msgid "*tabs*" msgstr "" -#: ../../library/tkinter.rst:5438 msgid "The set of tab stops, in the same form as the widget's *tabs* option." msgstr "" -#: ../../library/tkinter.rst:5440 msgid "*tabstyle*" msgstr "" -#: ../../library/tkinter.rst:5441 msgid "How tab stops are interpreted: ``'tabular'`` or ``'wordprocessor'``." msgstr "" -#: ../../library/tkinter.rst:5443 msgid "*selectbackground*, *selectforeground*" msgstr "" -#: ../../library/tkinter.rst:5444 -msgid "" -"The background and foreground colors used for the text while it is selected." +msgid "The background and foreground colors used for the text while it is selected." msgstr "" -#: ../../library/tkinter.rst:5449 -msgid "" -"Tk 8.6 added the *lmargincolor*, *overstrikefg*, *rmargincolor*, " -"*selectbackground*, *selectforeground* and *underlinefg* options." +msgid "Tk 8.6 added the *lmargincolor*, *overstrikefg*, *rmargincolor*, *selectbackground*, *selectforeground* and *underlinefg* options." msgstr "" -#: ../../library/tkinter.rst:5452 msgid ":meth:`tag_config` is an alias of :meth:`!tag_configure`." msgstr "" -#: ../../library/tkinter.rst:5456 -msgid "" -"Return the current value of the configuration option *option* for the tag " -"*tagName*." +msgid "Return the current value of the configuration option *option* for the tag *tagName*." msgstr "" -#: ../../library/tkinter.rst:5461 -msgid "" -"If *index* is omitted, return a tuple of the names of all tags defined in " -"the widget; otherwise return only the names of the tags applied to the " -"character at *index*. The names are ordered from lowest to highest priority." +msgid "If *index* is omitted, return a tuple of the names of all tags defined in the widget; otherwise return only the names of the tags applied to the character at *index*. The names are ordered from lowest to highest priority." msgstr "" -#: ../../library/tkinter.rst:5468 -msgid "" -"Return a tuple of indices describing all ranges of text tagged with " -"*tagName*. The result alternates start and end indices, so that elements " -"``2*i`` and ``2*i+1`` bound the *i*-th range." +msgid "Return a tuple of indices describing all ranges of text tagged with *tagName*. The result alternates start and end indices, so that elements ``2*i`` and ``2*i+1`` bound the *i*-th range." msgstr "" -#: ../../library/tkinter.rst:5475 -msgid "" -"Search forward from *index1* (up to *index2* if given) for the first range " -"of characters tagged with *tagName*, and return a two-element tuple of its " -"start and end indices, or an empty tuple if there is no such range." +msgid "Search forward from *index1* (up to *index2* if given) for the first range of characters tagged with *tagName*, and return a two-element tuple of its start and end indices, or an empty tuple if there is no such range." msgstr "" -#: ../../library/tkinter.rst:5482 -msgid "" -"Search backward from *index1* (down to *index2* if given) for the nearest " -"preceding range of characters tagged with *tagName*, and return a two-" -"element tuple of its start and end indices, or an empty tuple if there is no " -"such range." +msgid "Search backward from *index1* (down to *index2* if given) for the nearest preceding range of characters tagged with *tagName*, and return a two-element tuple of its start and end indices, or an empty tuple if there is no such range." msgstr "" -#: ../../library/tkinter.rst:5489 -msgid "" -"Raise the priority of tag *tagName* so that it is just above the priority of " -"*aboveThis*, or to the highest priority of all tags if *aboveThis* is " -"omitted. When the display options of overlapping tags conflict, the higher-" -"priority tag wins." +msgid "Raise the priority of tag *tagName* so that it is just above the priority of *aboveThis*, or to the highest priority of all tags if *aboveThis* is omitted. When the display options of overlapping tags conflict, the higher-priority tag wins." msgstr "" -#: ../../library/tkinter.rst:5497 -msgid "" -"Lower the priority of tag *tagName* so that it is just below the priority of " -"*belowThis*, or to the lowest priority of all tags if *belowThis* is omitted." +msgid "Lower the priority of tag *tagName* so that it is just below the priority of *belowThis*, or to the lowest priority of all tags if *belowThis* is omitted." msgstr "" -#: ../../library/tkinter.rst:5503 -msgid "" -"Bind the event *sequence* on characters tagged with *tagName* to the " -"callback *func*, so that *func* is invoked when that event occurs over such " -"a character. If *add* is true the binding is added alongside any existing " -"bindings for *sequence*, otherwise it replaces them. Works " -"like :meth:`~Misc.bind` and returns the identifier of the new binding." +msgid "Bind the event *sequence* on characters tagged with *tagName* to the callback *func*, so that *func* is invoked when that event occurs over such a character. If *add* is true the binding is added alongside any existing bindings for *sequence*, otherwise it replaces them. Works like :meth:`~Misc.bind` and returns the identifier of the new binding." msgstr "" -#: ../../library/tkinter.rst:5513 -msgid "" -"Remove the bindings of the event *sequence* on characters tagged with " -"*tagName*. If *funcid* is given, only that binding (as returned " -"by :meth:`tag_bind`) is removed and its callback is unregistered." +msgid "Remove the bindings of the event *sequence* on characters tagged with *tagName*. If *funcid* is given, only that binding (as returned by :meth:`tag_bind`) is removed and its callback is unregistered." msgstr "" -#: ../../library/tkinter.rst:5524 -msgid "" -"Embed an image at *index* and return the name assigned to this image " -"instance, which may then be used as an index or passed to the other " -"``image_*`` methods. The options, given in *cnf* and *kw*, include *image* " -"(the Tk image to display), *name* (a base name for the instance), *align*, " -"*padx* and *pady*." +msgid "Embed an image at *index* and return the name assigned to this image instance, which may then be used as an index or passed to the other ``image_*`` methods. The options, given in *cnf* and *kw*, include *image* (the Tk image to display), *name* (a base name for the instance), *align*, *padx* and *pady*." msgstr "" -#: ../../library/tkinter.rst:5533 -msgid "" -"Return the current value of the configuration option *option* for the " -"embedded image at *index*." +msgid "Return the current value of the configuration option *option* for the embedded image at *index*." msgstr "" -#: ../../library/tkinter.rst:5538 -msgid "" -"Query or modify the configuration options of the embedded image at *index*, " -"like :meth:`~Misc.configure` but applied to that image." +msgid "Query or modify the configuration options of the embedded image at *index*, like :meth:`~Misc.configure` but applied to that image." msgstr "" -#: ../../library/tkinter.rst:5543 msgid "Return a tuple of the names of all images embedded in the widget." msgstr "" -#: ../../library/tkinter.rst:5547 -msgid "" -"This shadows the inherited :meth:`Misc.image_names`, which returns the names " -"of all images in the Tcl interpreter; that method is not available on " -"a :class:`Text`." +msgid "This shadows the inherited :meth:`Misc.image_names`, which returns the names of all images in the Tcl interpreter; that method is not available on a :class:`Text`." msgstr "" -#: ../../library/tkinter.rst:5553 -msgid "" -"Embed a window (any widget) at *index*. The options, given in *cnf* and " -"*kw*, include *window* (the widget to embed), *create* (a callback that " -"creates the widget on demand), *align*, *stretch*, *padx* and *pady*. The " -"embedded widget must be a descendant of the text widget's parent." +msgid "Embed a window (any widget) at *index*. The options, given in *cnf* and *kw*, include *window* (the widget to embed), *create* (a callback that creates the widget on demand), *align*, *stretch*, *padx* and *pady*. The embedded widget must be a descendant of the text widget's parent." msgstr "" -#: ../../library/tkinter.rst:5561 -msgid "" -"Return the current value of the configuration option *option* for the " -"embedded window at *index*." +msgid "Return the current value of the configuration option *option* for the embedded window at *index*." msgstr "" -#: ../../library/tkinter.rst:5569 -msgid "" -"Query or modify the configuration options of the embedded window at *index*, " -"like :meth:`~Misc.configure` but applied to that window." +msgid "Query or modify the configuration options of the embedded window at *index*, like :meth:`~Misc.configure` but applied to that window." msgstr "" -#: ../../library/tkinter.rst:5572 msgid ":meth:`window_config` is an alias of :meth:`!window_configure`." msgstr "" -#: ../../library/tkinter.rst:5576 msgid "Return a tuple of the names of all windows embedded in the widget." msgstr "" -#: ../../library/tkinter.rst:5580 -msgid "" -"Low-level wrapper around the Tk ``edit`` widget command that controls the " -"undo/redo mechanism and the modified flag; *args* is the ``edit`` subcommand " -"and its arguments. The :meth:`!edit_\\*` methods below are thin wrappers " -"around it and are usually more convenient." +msgid "Low-level wrapper around the Tk ``edit`` widget command that controls the undo/redo mechanism and the modified flag; *args* is the ``edit`` subcommand and its arguments. The :meth:`!edit_\\*` methods below are thin wrappers around it and are usually more convenient." msgstr "" -#: ../../library/tkinter.rst:5588 -msgid "" -"If *arg* is omitted, return the current state of the modified flag as true " -"or false; the flag is set automatically whenever the text is inserted or " -"deleted. Otherwise set the flag to the boolean *arg*." +msgid "If *arg* is omitted, return the current state of the modified flag as true or false; the flag is set automatically whenever the text is inserted or deleted. Otherwise set the flag to the boolean *arg*." msgstr "" -#: ../../library/tkinter.rst:5595 -msgid "" -"Undo the most recent edit action, that is, all the inserts and deletes " -"recorded on the undo stack since the previous separator, and move it to the " -"redo stack. Raises :exc:`TclError` if the undo stack is empty. Has no effect " -"unless the *undo* option is true. Since Tk 9.0, returns a tuple of indices " -"delimiting the ranges of text that were changed." +msgid "Undo the most recent edit action, that is, all the inserts and deletes recorded on the undo stack since the previous separator, and move it to the redo stack. Raises :exc:`TclError` if the undo stack is empty. Has no effect unless the *undo* option is true. Since Tk 9.0, returns a tuple of indices delimiting the ranges of text that were changed." msgstr "" -#: ../../library/tkinter.rst:5605 -msgid "" -"Reapply the most recently undone edit action, provided no further edits have " -"been made since, and move it back to the undo stack. Raises :exc:`TclError` " -"if the redo stack is empty. Has no effect unless the *undo* option is true. " -"Since Tk 9.0, returns a tuple of indices delimiting the ranges of text that " -"were changed." +msgid "Reapply the most recently undone edit action, provided no further edits have been made since, and move it back to the undo stack. Raises :exc:`TclError` if the redo stack is empty. Has no effect unless the *undo* option is true. Since Tk 9.0, returns a tuple of indices delimiting the ranges of text that were changed." msgstr "" -#: ../../library/tkinter.rst:5614 msgid "Clear the undo and redo stacks." msgstr "" -#: ../../library/tkinter.rst:5618 -msgid "" -"Push a separator onto the undo stack, marking a boundary between edit " -"actions for undo and redo. Has no effect unless the *undo* option is true. " -"Separators are inserted automatically when the *autoseparators* option is " -"true." +msgid "Push a separator onto the undo stack, marking a boundary between edit actions for undo and redo. Has no effect unless the *undo* option is true. Separators are inserted automatically when the *autoseparators* option is true." msgstr "" -#: ../../library/tkinter.rst:5626 -msgid "" -"Search for *pattern* starting at *index* and return the index of the first " -"character of the first match, or an empty string if there is no match. " -"Searching stops at *stopindex* if given; otherwise it wraps around the ends " -"of the text until the starting position is reached again. The following " -"boolean keyword flags control the search: *forwards* or *backwards* select " -"the direction (forward is the default); *exact* (the default) or *regexp* " -"select literal or regular-expression matching; *nocase* makes the match case-" -"insensitive; and *elide* causes hidden text to be searched as well. If " -"*count* is a :class:`Variable`, the number of index positions in the match " -"is stored in it." -msgstr "" - -#: ../../library/tkinter.rst:5648 -msgid "" -"Scroll the widget by 10 times the difference between *x*, *y* and the " -"coordinates passed to the last :meth:`scan_mark` call. This is typically " -"bound to mouse motion events, producing the effect of dragging the text at " -"high speed through the window." +msgid "Search for *pattern* starting at *index* and return the index of the first character of the first match, or an empty string if there is no match. Searching stops at *stopindex* if given; otherwise it wraps around the ends of the text until the starting position is reached again. The following boolean keyword flags control the search: *forwards* or *backwards* select the direction (forward is the default); *exact* (the default) or *regexp* select literal or regular-expression matching; *nocase* makes the match case-insensitive; and *elide* causes hidden text to be searched as well. If *count* is a :class:`Variable`, the number of index positions in the match is stored in it." msgstr "" -#: ../../library/tkinter.rst:5655 -msgid "" -"If *boolean* is omitted, return whether internal consistency checks of the B-" -"tree data structure are enabled. Otherwise enable or disable them. The " -"setting is shared by all text widgets and may noticeably slow down widgets " -"holding large amounts of text." +msgid "Scroll the widget by 10 times the difference between *x*, *y* and the coordinates passed to the last :meth:`scan_mark` call. This is typically bound to mouse motion events, producing the effect of dragging the text at high speed through the window." msgstr "" -#: ../../library/tkinter.rst:5663 -msgid "" -"Return the contents of the widget from *index1* up to but not including " -"*index2* (or just the segment at *index1* if *index2* is omitted), including " -"text and information about marks, tags, images and windows. The result is a " -"list of ``(key, value, index)`` triples, where *key* is one of ``'text'``, " -"``'mark'``, ``'tagon'``, ``'tagoff'``, ``'image'`` or ``'window'``. By " -"default all kinds are reported; passing any of the keyword arguments *all*, " -"*text*, *mark*, *tag*, *image* or *window* as true restricts the dump to the " -"selected kinds. If *command* is given, it is called once per triple with the " -"three values as arguments and nothing is returned." -msgstr "" - -#: ../../library/tkinter.rst:5677 -msgid "" -"Create a peer text widget with the path name *newPathName* that shares this " -"widget's underlying data (text, marks, tags, images and the undo stack). " -"Changes made through any peer are reflected in all of them. By default the " -"peer covers the same lines as this widget; standard text options, including " -"*startline* and *endline*, may be given to override this." +msgid "If *boolean* is omitted, return whether internal consistency checks of the B-tree data structure are enabled. Otherwise enable or disable them. The setting is shared by all text widgets and may noticeably slow down widgets holding large amounts of text." msgstr "" -#: ../../library/tkinter.rst:5689 -msgid "" -"Return a tuple of the path names of this widget's peers, not including the " -"widget itself." +msgid "Return the contents of the widget from *index1* up to but not including *index2* (or just the segment at *index1* if *index2* is omitted), including text and information about marks, tags, images and windows. The result is a list of ``(key, value, index)`` triples, where *key* is one of ``'text'``, ``'mark'``, ``'tagon'``, ``'tagoff'``, ``'image'`` or ``'window'``. By default all kinds are reported; passing any of the keyword arguments *all*, *text*, *mark*, *tag*, *image* or *window* as true restricts the dump to the selected kinds. If *command* is given, it is called once per triple with the three values as arguments and nothing is returned." msgstr "" -#: ../../library/tkinter.rst:5696 -msgid "" -"Adjust the view so that the location given by *what* is visible. This is an " -"obsolete equivalent of :meth:`see`, which should be used instead." +msgid "Create a peer text widget with the path name *newPathName* that shares this widget's underlying data (text, marks, tags, images and the undo stack). Changes made through any peer are reflected in all of them. By default the peer covers the same lines as this widget; standard text options, including *startline* and *endline*, may be given to override this." +msgstr "" + +msgid "Return a tuple of the path names of this widget's peers, not including the widget itself." +msgstr "" + +msgid "Adjust the view so that the location given by *what* is visible. This is an obsolete equivalent of :meth:`see`, which should be used instead." msgstr "" -#: ../../library/tkinter.rst:5702 msgid "Variable classes" msgstr "" -#: ../../library/tkinter.rst:5706 -msgid "" -"The base class for the Tk variable wrappers. A Tk variable is a value stored " -"in the Tcl interpreter that can be linked to widgets through their " -"*variable* or *textvariable* options (see :ref:`coupling-widget-variables`), " -"so that changes propagate both ways: updating the variable updates every " -"widget bound to it, and a user editing such a widget updates the variable." +msgid "The base class for the Tk variable wrappers. A Tk variable is a value stored in the Tcl interpreter that can be linked to widgets through their *variable* or *textvariable* options (see :ref:`coupling-widget-variables`), so that changes propagate both ways: updating the variable updates every widget bound to it, and a user editing such a widget updates the variable." msgstr "" -#: ../../library/tkinter.rst:5713 -msgid "" -"*master* is the widget whose Tcl interpreter owns the variable; if omitted, " -"the default root window is used. *value* is the initial value; if omitted, a " -"type-specific default is used. *name* is the name of the variable in the Tcl " -"interpreter; if omitted, a unique name of the form ``'PY_VARnum'`` is " -"generated. If *name* matches an existing variable and *value* is omitted, " -"the existing value is retained." +msgid "*master* is the widget whose Tcl interpreter owns the variable; if omitted, the default root window is used. *value* is the initial value; if omitted, a type-specific default is used. *name* is the name of the variable in the Tcl interpreter; if omitted, a unique name of the form ``'PY_VARnum'`` is generated. If *name* matches an existing variable and *value* is omitted, the existing value is retained." msgstr "" -#: ../../library/tkinter.rst:5721 -msgid "" -"In most cases you should use one of the typed subclasses below " -"-- :class:`StringVar`, :class:`IntVar`, :class:`DoubleVar` " -"or :class:`BooleanVar` -- rather than :class:`!Variable` directly." +msgid "In most cases you should use one of the typed subclasses below -- :class:`StringVar`, :class:`IntVar`, :class:`DoubleVar` or :class:`BooleanVar` -- rather than :class:`!Variable` directly." msgstr "" -#: ../../library/tkinter.rst:5727 -msgid "" -"When a :class:`!Variable` is garbage collected, its Tcl variable is unset. " -"Keep a reference to it for as long as a widget is linked to it, for example " -"by storing it as an attribute rather than in a local variable. Otherwise Tk " -"recreates the Tcl variable to keep the widget working, but it is never unset " -"again, leaking one Tcl variable per dropped wrapper." +msgid "When a :class:`!Variable` is garbage collected, its Tcl variable is unset. Keep a reference to it for as long as a widget is linked to it, for example by storing it as an attribute rather than in a local variable. Otherwise Tk recreates the Tcl variable to keep the widget working, but it is never unset again, leaking one Tcl variable per dropped wrapper." msgstr "" -#: ../../library/tkinter.rst:5733 -msgid "" -"Two variables now compare equal (``==``) only when they have the same name, " -"are of the same class, and belong to the same Tcl interpreter." +msgid "Two variables now compare equal (``==``) only when they have the same name, are of the same class, and belong to the same Tcl interpreter." msgstr "" -#: ../../library/tkinter.rst:5739 -msgid "" -"Return the current value of the variable. For the base class the value is " -"returned as a string; the typed subclasses convert it to the appropriate " -"Python type." +msgid "Return the current value of the variable. For the base class the value is returned as a string; the typed subclasses convert it to the appropriate Python type." msgstr "" -#: ../../library/tkinter.rst:5748 -msgid "" -"Set the variable to *value*. :meth:`initialize` is an alias of :meth:`!set`." +msgid "Set the variable to *value*. :meth:`initialize` is an alias of :meth:`!set`." msgstr "" -#: ../../library/tkinter.rst:5751 ../../library/tkinter.rst:5882 msgid "The *initialize* spelling." msgstr "" -#: ../../library/tkinter.rst:5756 -msgid "" -"Register *callback* to be called when the variable is accessed according to " -"*mode*. *mode* is one of the strings ``'array'``, ``'read'``, ``'write'`` or " -"``'unset'``, or a list or tuple of such strings." +msgid "Register *callback* to be called when the variable is accessed according to *mode*. *mode* is one of the strings ``'array'``, ``'read'``, ``'write'`` or ``'unset'``, or a list or tuple of such strings." msgstr "" -#: ../../library/tkinter.rst:5761 -msgid "" -"When triggered, *callback* is called with three arguments: the name of the " -"Tcl variable, an index (or an empty string if the variable is not an element " -"of an array), and the *mode* that triggered the call." +msgid "When triggered, *callback* is called with three arguments: the name of the Tcl variable, an index (or an empty string if the variable is not an element of an array), and the *mode* that triggered the call." msgstr "" -#: ../../library/tkinter.rst:5765 -msgid "" -"Return the internal name of the registered callback, which can be passed " -"to :meth:`trace_remove`." +msgid "Return the internal name of the registered callback, which can be passed to :meth:`trace_remove`." msgstr "" -#: ../../library/tkinter.rst:5772 -msgid "" -"Remove a trace callback from the variable. *mode* must match the *mode* that " -"was passed to :meth:`trace_add`, and *cbname* is the callback name returned " -"by :meth:`trace_add`." +msgid "Remove a trace callback from the variable. *mode* must match the *mode* that was passed to :meth:`trace_add`, and *cbname* is the callback name returned by :meth:`trace_add`." msgstr "" -#: ../../library/tkinter.rst:5780 -msgid "" -"Return a list of ``(modes, cbname)`` pairs describing all traces currently " -"set on the variable, where *modes* is a tuple of mode strings and *cbname* " -"is the internal callback name." +msgid "Return a list of ``(modes, cbname)`` pairs describing all traces currently set on the variable, where *modes* is a tuple of mode strings and *cbname* is the internal callback name." msgstr "" -#: ../../library/tkinter.rst:5791 -msgid "" -"Register *callback* to be called when the variable is accessed according to " -"*mode*. *mode* is one of the strings ``'r'``, ``'w'`` or ``'u'``, for read, " -"write or unset. Return the internal name of the registered " -"callback. :meth:`trace` is an alias of :meth:`!trace_variable`." +msgid "Register *callback* to be called when the variable is accessed according to *mode*. *mode* is one of the strings ``'r'``, ``'w'`` or ``'u'``, for read, write or unset. Return the internal name of the registered callback. :meth:`trace` is an alias of :meth:`!trace_variable`." msgstr "" -#: ../../library/tkinter.rst:5798 -msgid "" -"Use :meth:`trace_add` instead. This method wraps a Tcl feature that was " -"removed in Tcl 9.0." +msgid "Use :meth:`trace_add` instead. This method wraps a Tcl feature that was removed in Tcl 9.0." msgstr "" -#: ../../library/tkinter.rst:5804 -msgid "" -"Remove the trace callback named *cbname* registered for *mode* " -"with :meth:`trace_variable`." +msgid "Remove the trace callback named *cbname* registered for *mode* with :meth:`trace_variable`." msgstr "" -#: ../../library/tkinter.rst:5807 -msgid "" -"Use :meth:`trace_remove` instead. This method wraps a Tcl feature that was " -"removed in Tcl 9.0." +msgid "Use :meth:`trace_remove` instead. This method wraps a Tcl feature that was removed in Tcl 9.0." msgstr "" -#: ../../library/tkinter.rst:5813 -msgid "" -"Return a list of ``(mode, cbname)`` pairs for all traces set on the variable " -"with :meth:`trace_variable`." +msgid "Return a list of ``(mode, cbname)`` pairs for all traces set on the variable with :meth:`trace_variable`." msgstr "" -#: ../../library/tkinter.rst:5816 -msgid "" -"Use :meth:`trace_info` instead. This method wraps a Tcl feature that was " -"removed in Tcl 9.0." +msgid "Use :meth:`trace_info` instead. This method wraps a Tcl feature that was removed in Tcl 9.0." msgstr "" -#: ../../library/tkinter.rst:5823 -msgid "" -"A :class:`Variable` subclass that holds a string. The default value is " -"``''``." +msgid "A :class:`Variable` subclass that holds a string. The default value is ``''``." msgstr "" -#: ../../library/tkinter.rst:5828 msgid "Return the value of the variable as a :class:`str`." msgstr "" -#: ../../library/tkinter.rst:5833 -msgid "" -"A :class:`Variable` subclass that holds an integer. The default value is " -"``0``." +msgid "A :class:`Variable` subclass that holds an integer. The default value is ``0``." msgstr "" -#: ../../library/tkinter.rst:5838 msgid "Return the value of the variable as an :class:`int`." msgstr "" -#: ../../library/tkinter.rst:5843 -msgid "" -"A :class:`Variable` subclass that holds a float. The default value is " -"``0.0``." +msgid "A :class:`Variable` subclass that holds a float. The default value is ``0.0``." msgstr "" -#: ../../library/tkinter.rst:5848 msgid "Return the value of the variable as a :class:`float`." msgstr "" -#: ../../library/tkinter.rst:5854 -msgid "" -"A floating-point value is always parsed with a period (``.``) as the decimal " -"separator, but :class:`Spinbox`, :class:`Scale` and :class:`ttk.Spinbox " -"` format it according to the ``LC_NUMERIC`` locale. " -"Under a locale that uses a comma they produce a value that :meth:`get` " -"cannot read, raising :exc:`TclError`. Set ``LC_NUMERIC`` to a locale that " -"uses a period (such as ``'C'``) to avoid this." +msgid "A floating-point value is always parsed with a period (``.``) as the decimal separator, but :class:`Spinbox`, :class:`Scale` and :class:`ttk.Spinbox ` format it according to the ``LC_NUMERIC`` locale. Under a locale that uses a comma they produce a value that :meth:`get` cannot read, raising :exc:`TclError`. Set ``LC_NUMERIC`` to a locale that uses a period (such as ``'C'``) to avoid this." msgstr "" -#: ../../library/tkinter.rst:5865 -msgid "" -"A :class:`Variable` subclass that holds a boolean. The default value is " -"``False``." +msgid "A :class:`Variable` subclass that holds a boolean. The default value is ``False``." msgstr "" -#: ../../library/tkinter.rst:5870 -msgid "" -"Return the value of the variable as a :class:`bool`. Raise " -"a :exc:`ValueError` if the value cannot be interpreted as a boolean." +msgid "Return the value of the variable as a :class:`bool`. Raise a :exc:`ValueError` if the value cannot be interpreted as a boolean." msgstr "" -#: ../../library/tkinter.rst:5879 -msgid "" -"Set the variable to *value*, converting it to a boolean. :meth:`initialize` " -"is an alias of :meth:`!set`." +msgid "Set the variable to *value*, converting it to a boolean. :meth:`initialize` is an alias of :meth:`!set`." msgstr "" -#: ../../library/tkinter.rst:5887 msgid "Image classes" msgstr "" -#: ../../library/tkinter.rst:5891 -msgid "" -"Base class for Tk images. *imgtype* is the Tk image type, one of ``'photo'`` " -"or ``'bitmap'``. An image is a named object that can be displayed by widgets " -"through their *image* option; deleting all references to the :class:`!Image` " -"object deletes the underlying Tk image. Usually you create " -"a :class:`PhotoImage` or :class:`BitmapImage` rather than an :class:`!Image` " -"directly." +msgid "Base class for Tk images. *imgtype* is the Tk image type, one of ``'photo'`` or ``'bitmap'``. An image is a named object that can be displayed by widgets through their *image* option; deleting all references to the :class:`!Image` object deletes the underlying Tk image. Usually you create a :class:`PhotoImage` or :class:`BitmapImage` rather than an :class:`!Image` directly." msgstr "" -#: ../../library/tkinter.rst:5899 -msgid "" -"The image's configuration options are given by *cnf* and *kw* and may be " -"queried and changed later with the mapping protocol (using ``image[key]``) " -"or with the :meth:`configure` method." +msgid "The image's configuration options are given by *cnf* and *kw* and may be queried and changed later with the mapping protocol (using ``image[key]``) or with the :meth:`configure` method." msgstr "" -#: ../../library/tkinter.rst:5908 -msgid "" -"Modify one or more configuration options of the image. The valid options " -"depend on the image type; see :class:`PhotoImage` " -"and :class:`BitmapImage`. :meth:`config` is an alias of :meth:`!configure`." +msgid "Modify one or more configuration options of the image. The valid options depend on the image type; see :class:`PhotoImage` and :class:`BitmapImage`. :meth:`config` is an alias of :meth:`!configure`." msgstr "" -#: ../../library/tkinter.rst:5915 msgid "Return the height of the image, in pixels." msgstr "" -#: ../../library/tkinter.rst:5919 msgid "Return the width of the image, in pixels." msgstr "" -#: ../../library/tkinter.rst:5923 -msgid "" -"Return the type of the image, that is the value of *imgtype* with which it " -"was created (for example ``'photo'`` or ``'bitmap'``)." +msgid "Return the type of the image, that is the value of *imgtype* with which it was created (for example ``'photo'`` or ``'bitmap'``)." msgstr "" -#: ../../library/tkinter.rst:5929 -msgid "" -"A full-color image (the Tk ``photo`` image type), stored internally with a " -"varying degree of transparency per pixel. It can read and write GIF, PPM/PGM " -"and (in Tk 8.6 and later) PNG files, read SVG files (in Tk 9.0 and later), " -"and be drawn in widgets. Inherits from :class:`Image`." +msgid "A full-color image (the Tk ``photo`` image type), stored internally with a varying degree of transparency per pixel. It can read and write GIF, PPM/PGM and (in Tk 8.6 and later) PNG files, read SVG files (in Tk 9.0 and later), and be drawn in widgets. Inherits from :class:`Image`." msgstr "" -#: ../../library/tkinter.rst:5935 -msgid "" -"The configuration options include *data* (the image contents as a string), " -"*file* (the name of a file to read the contents from), *format* (the name of " -"the file format handler), *width* and *height* (the size of the image, used " -"when building it up piece by piece), *gamma* and *palette*." +msgid "The configuration options include *data* (the image contents as a string), *file* (the name of a file to read the contents from), *format* (the name of the file format handler), *width* and *height* (the size of the image, used when building it up piece by piece), *gamma* and *palette*." msgstr "" -#: ../../library/tkinter.rst:5942 -msgid "" -"Blank the image; that is, set the entire image to have no data, so that it " -"is displayed as transparent and the background of whatever window it is " -"displayed in shows through." +msgid "Blank the image; that is, set the entire image to have no data, so that it is displayed as transparent and the background of whatever window it is displayed in shows through." msgstr "" -#: ../../library/tkinter.rst:5948 msgid "Return the current value of the configuration option *option*." msgstr "" -#: ../../library/tkinter.rst:5952 msgid "Return a new :class:`PhotoImage` with a copy of this image." msgstr "" -#: ../../library/tkinter.rst:5954 -msgid "" -"*from_coords* specifies a rectangular sub-region of the source image to be " -"copied. It must be a tuple or a list of 1 to 4 integers ``(x1, y1, x2, " -"y2)``. ``(x1, y1)`` and ``(x2, y2)`` specify diagonally opposite corners of " -"the rectangle. If *x2* and *y2* are not specified, they default to the " -"bottom-right corner of the source image. The pixels copied include the left " -"and top edges of the rectangle but not the bottom or right edges. If " -"*from_coords* is not given, the whole source image is copied." +msgid "*from_coords* specifies a rectangular sub-region of the source image to be copied. It must be a tuple or a list of 1 to 4 integers ``(x1, y1, x2, y2)``. ``(x1, y1)`` and ``(x2, y2)`` specify diagonally opposite corners of the rectangle. If *x2* and *y2* are not specified, they default to the bottom-right corner of the source image. The pixels copied include the left and top edges of the rectangle but not the bottom or right edges. If *from_coords* is not given, the whole source image is copied." msgstr "" -#: ../../library/tkinter.rst:5965 ../../library/tkinter.rst:5997 -msgid "" -"If *zoom* or *subsample* are specified, the image is transformed as in " -"the :meth:`zoom` or :meth:`subsample` methods. The value must be a single " -"integer or a pair of integers." +msgid "If *zoom* or *subsample* are specified, the image is transformed as in the :meth:`zoom` or :meth:`subsample` methods. The value must be a single integer or a pair of integers." msgstr "" -#: ../../library/tkinter.rst:5969 msgid "Added the *from_coords*, *zoom* and *subsample* parameters." msgstr "" -#: ../../library/tkinter.rst:5977 -msgid "" -"Copy a region from *sourceImage* (which must be a :class:`PhotoImage`) into " -"this image, possibly with pixel zooming and/or subsampling. If no options " -"are specified, the whole of *sourceImage* is copied into this image, " -"starting at coordinates ``(0, 0)``." +msgid "Copy a region from *sourceImage* (which must be a :class:`PhotoImage`) into this image, possibly with pixel zooming and/or subsampling. If no options are specified, the whole of *sourceImage* is copied into this image, starting at coordinates ``(0, 0)``." msgstr "" -#: ../../library/tkinter.rst:5982 ../../library/tkinter.rst:6094 -#: ../../library/tkinter.rst:6150 -msgid "" -"*from_coords* specifies a rectangular sub-region of the source image to be " -"copied, as in the :meth:`copy` method." +msgid "*from_coords* specifies a rectangular sub-region of the source image to be copied, as in the :meth:`copy` method." msgstr "" -#: ../../library/tkinter.rst:5985 -msgid "" -"*to* specifies a rectangular sub-region of the destination image to be " -"affected. It must be a tuple or a list of 1 to 4 integers ``(x1, y1, x2, " -"y2)``. If *x2* and *y2* are not specified, they default to ``(x1, y1)`` plus " -"the size of the source region (after subsampling and zooming, if specified). " -"If *x2* and *y2* are specified, the source region is replicated if necessary " -"to fill the destination region in a tiled fashion." +msgid "*to* specifies a rectangular sub-region of the destination image to be affected. It must be a tuple or a list of 1 to 4 integers ``(x1, y1, x2, y2)``. If *x2* and *y2* are not specified, they default to ``(x1, y1)`` plus the size of the source region (after subsampling and zooming, if specified). If *x2* and *y2* are specified, the source region is replicated if necessary to fill the destination region in a tiled fashion." msgstr "" -#: ../../library/tkinter.rst:5993 -msgid "" -"If *shrink* is true, the size of the destination image is reduced, if " -"necessary, so that the region being copied into is at the bottom-right " -"corner of the image." +msgid "If *shrink* is true, the size of the destination image is reduced, if necessary, so that the region being copied into is at the bottom-right corner of the image." msgstr "" -#: ../../library/tkinter.rst:6001 -msgid "" -"*compositingrule* specifies how transparent pixels in the source image are " -"combined with the destination image. With ``'overlay'`` (the default), the " -"old contents of the destination image remain visible, as if the source image " -"were printed on a piece of transparent film and placed over the top of the " -"destination. With ``'set'``, the old contents of the destination image are " -"discarded and the source image is used as-is." +msgid "*compositingrule* specifies how transparent pixels in the source image are combined with the destination image. With ``'overlay'`` (the default), the old contents of the destination image remain visible, as if the source image were printed on a piece of transparent film and placed over the top of the destination. With ``'set'``, the old contents of the destination image are discarded and the source image is used as-is." msgstr "" -#: ../../library/tkinter.rst:6015 msgid "Return the image data." msgstr "" -#: ../../library/tkinter.rst:6017 -msgid "" -"*format* specifies the name of the image file format handler to use. If it " -"is not given, the data is returned as a tuple (one element per row) of " -"strings containing space-separated (one element per pixel/column) colors in " -"``#RRGGBB`` format." +msgid "*format* specifies the name of the image file format handler to use. If it is not given, the data is returned as a tuple (one element per row) of strings containing space-separated (one element per pixel/column) colors in ``#RRGGBB`` format." msgstr "" -#: ../../library/tkinter.rst:6022 -msgid "" -"*from_coords* specifies a rectangular region of the image to be returned. It " -"must be a tuple or a list of 1 to 4 integers ``(x1, y1, x2, y2)``. If only " -"*x1* and *y1* are specified, the region extends from ``(x1, y1)`` to the " -"bottom-right corner of the image. If all four coordinates are given, they " -"specify diagonally opposite corners of the region, including ``(x1, y1)`` " -"and excluding ``(x2, y2)``. If *from_coords* is not given, the whole image " -"is returned." +msgid "*from_coords* specifies a rectangular region of the image to be returned. It must be a tuple or a list of 1 to 4 integers ``(x1, y1, x2, y2)``. If only *x1* and *y1* are specified, the region extends from ``(x1, y1)`` to the bottom-right corner of the image. If all four coordinates are given, they specify diagonally opposite corners of the region, including ``(x1, y1)`` and excluding ``(x2, y2)``. If *from_coords* is not given, the whole image is returned." msgstr "" -#: ../../library/tkinter.rst:6030 ../../library/tkinter.rst:6133 -msgid "" -"If *background* is specified, the data does not contain any transparency " -"information; in all transparent pixels the color is replaced by the " -"specified color." +msgid "If *background* is specified, the data does not contain any transparency information; in all transparent pixels the color is replaced by the specified color." msgstr "" -#: ../../library/tkinter.rst:6034 ../../library/tkinter.rst:6137 -msgid "" -"If *grayscale* is true, the data does not contain color information; all " -"pixel data is transformed into grayscale." +msgid "If *grayscale* is true, the data does not contain color information; all pixel data is transformed into grayscale." msgstr "" -#: ../../library/tkinter.rst:6042 -msgid "" -"Return the color of the pixel at coordinates (*x*, *y*) as an ``(r, g, b)`` " -"tuple of three integers between 0 and 255, representing the red, green and " -"blue components respectively." +msgid "Return the color of the pixel at coordinates (*x*, *y*) as an ``(r, g, b)`` tuple of three integers between 0 and 255, representing the red, green and blue components respectively." msgstr "" -#: ../../library/tkinter.rst:6048 -msgid "" -"Set pixels of the image to the colors given in *data*, which must be a " -"string or a nested sequence of horizontal rows of pixel colors (for example " -"``\"{red green} {blue yellow}\"``)." +msgid "Set pixels of the image to the colors given in *data*, which must be a string or a nested sequence of horizontal rows of pixel colors (for example ``\"{red green} {blue yellow}\"``)." msgstr "" -#: ../../library/tkinter.rst:6052 -msgid "" -"*to* specifies the coordinates of the region of the image into which the " -"data are copied. It must be a tuple or a list of 2 or 4 integers ``(x1, " -"y1)`` or ``(x1, y1, x2, y2)`` giving the top-left corner, and optionally the " -"bottom-right corner, of the region. The default position is ``(0, 0)``." +msgid "*to* specifies the coordinates of the region of the image into which the data are copied. It must be a tuple or a list of 2 or 4 integers ``(x1, y1)`` or ``(x1, y1, x2, y2)`` giving the top-left corner, and optionally the bottom-right corner, of the region. The default position is ``(0, 0)``." msgstr "" -#: ../../library/tkinter.rst:6062 msgid "Read image data from the file named *filename* into the image." msgstr "" -#: ../../library/tkinter.rst:6064 msgid "*format* specifies the format of the image data in the file." msgstr "" -#: ../../library/tkinter.rst:6066 -msgid "" -"*from_coords* specifies a rectangular sub-region of the image file data to " -"be copied to the destination image. It must be a tuple or a list of 1 to 4 " -"integers ``(x1, y1, x2, y2)``. If only *x1* and *y1* are specified, the " -"region extends from ``(x1, y1)`` to the bottom-right corner of the image in " -"the file. If all four coordinates are given, they specify diagonally " -"opposite corners of the region. If *from_coords* is not given, the whole of " -"the image in the file is read." +msgid "*from_coords* specifies a rectangular sub-region of the image file data to be copied to the destination image. It must be a tuple or a list of 1 to 4 integers ``(x1, y1, x2, y2)``. If only *x1* and *y1* are specified, the region extends from ``(x1, y1)`` to the bottom-right corner of the image in the file. If all four coordinates are given, they specify diagonally opposite corners of the region. If *from_coords* is not given, the whole of the image in the file is read." msgstr "" -#: ../../library/tkinter.rst:6076 -msgid "" -"*to* specifies the coordinates of the top-left corner of the region of the " -"image into which the data are read. The default is ``(0, 0)``." +msgid "*to* specifies the coordinates of the top-left corner of the region of the image into which the data are read. The default is ``(0, 0)``." msgstr "" -#: ../../library/tkinter.rst:6080 -msgid "" -"If *shrink* is true, the size of the image is reduced, if necessary, so that " -"the region into which the file data are read is at the bottom-right corner " -"of the image." +msgid "If *shrink* is true, the size of the image is reduced, if necessary, so that the region into which the file data are read is at the bottom-right corner of the image." msgstr "" -#: ../../library/tkinter.rst:6089 -msgid "" -"Return a new :class:`PhotoImage` based on this image but using only every " -"*x*-th pixel in the X direction and every *y*-th pixel in the Y direction. " -"If *y* is not given, it defaults to the same value as *x*." +msgid "Return a new :class:`PhotoImage` based on this image but using only every *x*-th pixel in the X direction and every *y*-th pixel in the Y direction. If *y* is not given, it defaults to the same value as *x*." msgstr "" -#: ../../library/tkinter.rst:6097 ../../library/tkinter.rst:6153 msgid "Added the *from_coords* parameter." msgstr "" -#: ../../library/tkinter.rst:6103 -msgid "" -"Return ``True`` if the pixel at coordinates (*x*, *y*) is fully transparent, " -"``False`` otherwise." +msgid "Return ``True`` if the pixel at coordinates (*x*, *y*) is fully transparent, ``False`` otherwise." msgstr "" -#: ../../library/tkinter.rst:6111 -msgid "" -"Make the pixel at coordinates (*x*, *y*) fully transparent if *boolean* is " -"true, fully opaque otherwise." +msgid "Make the pixel at coordinates (*x*, *y*) fully transparent if *boolean* is true, fully opaque otherwise." msgstr "" -#: ../../library/tkinter.rst:6120 msgid "Write image data from the image to the file named *filename*." msgstr "" -#: ../../library/tkinter.rst:6122 -msgid "" -"*format* specifies the name of the image file format handler to use. If it " -"is not given, the format is guessed from the file extension." +msgid "*format* specifies the name of the image file format handler to use. If it is not given, the format is guessed from the file extension." msgstr "" -#: ../../library/tkinter.rst:6125 -msgid "" -"*from_coords* specifies a rectangular region of the image to be written. It " -"must be a tuple or a list of 1 to 4 integers ``(x1, y1, x2, y2)``. If only " -"*x1* and *y1* are specified, the region extends from ``(x1, y1)`` to the " -"bottom-right corner of the image. If all four coordinates are given, they " -"specify diagonally opposite corners of the region. If *from_coords* is not " -"given, the whole image is written." +msgid "*from_coords* specifies a rectangular region of the image to be written. It must be a tuple or a list of 1 to 4 integers ``(x1, y1, x2, y2)``. If only *x1* and *y1* are specified, the region extends from ``(x1, y1)`` to the bottom-right corner of the image. If all four coordinates are given, they specify diagonally opposite corners of the region. If *from_coords* is not given, the whole image is written." msgstr "" -#: ../../library/tkinter.rst:6140 msgid "Added the *background* and *grayscale* parameters." msgstr "" -#: ../../library/tkinter.rst:6146 -msgid "" -"Return a new :class:`PhotoImage` with this image magnified by a factor of " -"*x* in the X direction and *y* in the Y direction. If *y* is not given, it " -"defaults to the same value as *x*." +msgid "Return a new :class:`PhotoImage` with this image magnified by a factor of *x* in the X direction and *y* in the Y direction. If *y* is not given, it defaults to the same value as *x*." msgstr "" -#: ../../library/tkinter.rst:6160 -msgid "" -"A two-color image (the Tk ``bitmap`` image type) created from an X11 bitmap. " -"Each pixel displays a foreground color, a background color, or nothing " -"(producing a transparent effect). Inherits from :class:`Image`." +msgid "A two-color image (the Tk ``bitmap`` image type) created from an X11 bitmap. Each pixel displays a foreground color, a background color, or nothing (producing a transparent effect). Inherits from :class:`Image`." msgstr "" -#: ../../library/tkinter.rst:6165 -msgid "" -"The configuration options are *data* or *file* (the source bitmap, given as " -"a string in X11 bitmap format or as the name of a file in that format), " -"*maskdata* or *maskfile* (the mask bitmap, in the same forms), and " -"*foreground* and *background* (the two colors). For pixels where the mask is " -"zero the image displays nothing; for other pixels it displays the foreground " -"color where the source is one and the background color where the source is " -"zero. If *background* is set to an empty string, the background pixels are " -"transparent." +msgid "The configuration options are *data* or *file* (the source bitmap, given as a string in X11 bitmap format or as the name of a file in that format), *maskdata* or *maskfile* (the mask bitmap, in the same forms), and *foreground* and *background* (the two colors). For pixels where the mask is zero the image displays nothing; for other pixels it displays the foreground color where the source is one and the background color where the source is zero. If *background* is set to an empty string, the background pixels are transparent." msgstr "" -#: ../../library/tkinter.rst:6175 -msgid "" -":class:`!BitmapImage` has no methods of its own beyond those inherited " -"from :class:`Image`." +msgid ":class:`!BitmapImage` has no methods of its own beyond those inherited from :class:`Image`." msgstr "" -#: ../../library/tkinter.rst:6180 msgid "Other classes" msgstr "" -#: ../../library/tkinter.rst:6184 -msgid "" -"A container for the attributes of an event passed to a callback bound " -"with :meth:`Misc.bind`. An :class:`!Event` instance has the following " -"attributes, each corresponding to a field of the underlying Tk event; " -"depending on the event type, some attributes may be set to the string " -"``'??'`` to indicate that they are not meaningful. See :ref:`bindings-and-" -"events`." +msgid "A container for the attributes of an event passed to a callback bound with :meth:`Misc.bind`. An :class:`!Event` instance has the following attributes, each corresponding to a field of the underlying Tk event; depending on the event type, some attributes may be set to the string ``'??'`` to indicate that they are not meaningful. See :ref:`bindings-and-events`." msgstr "" -#: ../../library/tkinter.rst:6194 msgid "The serial number of the event." msgstr "" -#: ../../library/tkinter.rst:6198 msgid "The mouse button that was pressed or released (for button events)." msgstr "" -#: ../../library/tkinter.rst:6202 msgid "Whether the window has the focus (for ``Enter`` and ``Leave`` events)." msgstr "" -#: ../../library/tkinter.rst:6207 -msgid "" -"The new height and width of the window (for ``Configure`` and ``Expose`` " -"events)." +msgid "The new height and width of the window (for ``Configure`` and ``Expose`` events)." msgstr "" -#: ../../library/tkinter.rst:6212 msgid "The keycode of the key that was pressed or released." msgstr "" -#: ../../library/tkinter.rst:6216 -msgid "" -"The state of the event, as a number (for most events) or a string (for " -"``Visibility`` events)." +msgid "The state of the event, as a number (for most events) or a string (for ``Visibility`` events)." msgstr "" -#: ../../library/tkinter.rst:6221 msgid "The timestamp of the event, in milliseconds." msgstr "" -#: ../../library/tkinter.rst:6226 msgid "The pointer position relative to the widget, in pixels." msgstr "" -#: ../../library/tkinter.rst:6231 -msgid "" -"The pointer position relative to the top-left corner of the screen, in " -"pixels." +msgid "The pointer position relative to the top-left corner of the screen, in pixels." msgstr "" -#: ../../library/tkinter.rst:6236 msgid "The character typed, as a string (for key events)." msgstr "" -#: ../../library/tkinter.rst:6240 msgid "``True`` if the event was sent by another application." msgstr "" -#: ../../library/tkinter.rst:6244 msgid "The symbolic name of the key that was pressed or released." msgstr "" -#: ../../library/tkinter.rst:6248 msgid "The numeric value of :attr:`keysym`." msgstr "" -#: ../../library/tkinter.rst:6252 msgid "The :class:`EventType` of the event." msgstr "" -#: ../../library/tkinter.rst:6256 msgid "The widget on which the event occurred." msgstr "" -#: ../../library/tkinter.rst:6260 msgid "The amount the mouse wheel was rotated (for ``MouseWheel`` events)." msgstr "" -#: ../../library/tkinter.rst:6265 -msgid "" -"An :class:`enum.StrEnum` enumerating the Tk event types, used as the value " -"of :attr:`Event.type`. Its members include, among others, ``KeyPress``, " -"``KeyRelease``, ``ButtonPress``, ``ButtonRelease``, ``Motion``, ``Enter``, " -"``Leave``, ``FocusIn``, ``FocusOut``, ``Configure``, ``Map``, ``Unmap``, " -"``Expose``, ``Destroy`` and ``MouseWheel``." +msgid "An :class:`enum.StrEnum` enumerating the Tk event types, used as the value of :attr:`Event.type`. Its members include, among others, ``KeyPress``, ``KeyRelease``, ``ButtonPress``, ``ButtonRelease``, ``Motion``, ``Enter``, ``Leave``, ``FocusIn``, ``FocusOut``, ``Configure``, ``Map``, ``Unmap``, ``Expose``, ``Destroy`` and ``MouseWheel``." msgstr "" -#: ../../library/tkinter.rst:6278 -msgid "" -"Internal helper that wraps a Python callback so that it can be invoked from " -"Tcl. *func* is the Python function, *subst* is an optional function that pre-" -"processes the Tcl arguments, and *widget* is the widget used for error " -"reporting. Instances are created automatically by :meth:`Misc.register`; " -"this class is not normally used directly." +msgid "Internal helper that wraps a Python callback so that it can be invoked from Tcl. *func* is the Python function, *subst* is an optional function that pre-processes the Tcl arguments, and *widget* is the widget used for error reporting. Instances are created automatically by :meth:`Misc.register`; this class is not normally used directly." msgstr "" -#: ../../library/tkinter.rst:6288 msgid "Module-level functions" msgstr "" -#: ../../library/tkinter.rst:6292 -msgid "" -"The :func:`Tcl` function is a factory function which creates an object much " -"like that created by the :class:`Tk` class, except that it does not " -"initialize the Tk subsystem. This is most often useful when driving the Tcl " -"interpreter in an environment where one doesn't want to create extraneous " -"toplevel windows, or where one cannot (such as Unix/Linux systems without an " -"X server). An object created by the :func:`Tcl` object can have a Toplevel " -"window created (and the Tk subsystem initialized) by calling " -"its :meth:`~Tk.loadtk` method." +msgid "The :func:`Tcl` function is a factory function which creates an object much like that created by the :class:`Tk` class, except that it does not initialize the Tk subsystem. This is most often useful when driving the Tcl interpreter in an environment where one doesn't want to create extraneous toplevel windows, or where one cannot (such as Unix/Linux systems without an X server). An object created by the :func:`Tcl` object can have a Toplevel window created (and the Tk subsystem initialized) by calling its :meth:`~Tk.loadtk` method." msgstr "" -#: ../../library/tkinter.rst:6304 -msgid "" -"Inhibit the creation of an implicit default root window. Afterwards :mod:`!" -"tkinter` no longer creates a shared default root automatically, and " -"operations that rely on one --- such as constructing a widget without an " -"explicit *master* --- raise a :exc:`RuntimeError`. Call this early in larger " -"applications to make the root window explicit." +msgid "Inhibit the creation of an implicit default root window. Afterwards :mod:`!tkinter` no longer creates a shared default root automatically, and operations that rely on one --- such as constructing a widget without an explicit *master* --- raise a :exc:`RuntimeError`. Call this early in larger applications to make the root window explicit." msgstr "" -#: ../../library/tkinter.rst:6312 -msgid "" -"Run the Tk main event loop on the default root window until all windows are " -"destroyed. Equivalent to calling :meth:`Misc.mainloop` on the default root." +msgid "Run the Tk main event loop on the default root window until all windows are destroyed. Equivalent to calling :meth:`Misc.mainloop` on the default root." msgstr "" -#: ../../library/tkinter.rst:6318 -msgid "" -"Convert the Tcl boolean string *s* (one of ``'1'``, ``'true'``, ``'yes'``, " -"``'on'`` and similar, or their false counterparts) to a " -"Python :class:`bool`. Raise :exc:`TclError` for an invalid value." +msgid "Convert the Tcl boolean string *s* (one of ``'1'``, ``'true'``, ``'yes'``, ``'on'`` and similar, or their false counterparts) to a Python :class:`bool`. Raise :exc:`TclError` for an invalid value." msgstr "" -#: ../../library/tkinter.rst:6325 -msgid "" -"Convert *s* to a floating-point number. This is the built-in :class:`float`." +msgid "Convert *s* to a floating-point number. This is the built-in :class:`float`." msgstr "" -#: ../../library/tkinter.rst:6330 msgid "Convert *s* to an integer. This is the built-in :class:`int`." msgstr "" -#: ../../library/tkinter.rst:6335 -msgid "" -"Return the names of all existing images in the default root's interpreter." +msgid "Return the names of all existing images in the default root's interpreter." msgstr "" -#: ../../library/tkinter.rst:6339 -msgid "" -"Return the available image types (such as ``'photo'`` and ``'bitmap'``) in " -"the default root's interpreter." +msgid "Return the available image types (such as ``'photo'`` and ``'bitmap'``) in the default root's interpreter." msgstr "" -#: ../../library/tkinter.rst:6346 msgid "File handlers" msgstr "" -#: ../../library/tkinter.rst:6348 -msgid "" -"Tk allows you to register and unregister a callback function which will be " -"called from the Tk mainloop when I/O is possible on a file descriptor. Only " -"one handler may be registered per file descriptor. Example code::" +msgid "Tk allows you to register and unregister a callback function which will be called from the Tk mainloop when I/O is possible on a file descriptor. Only one handler may be registered per file descriptor. Example code::" msgstr "" -#: ../../library/tkinter.rst:6352 msgid "" "import tkinter\n" "widget = tkinter.Tk()\n" @@ -7675,185 +3713,107 @@ msgid "" "widget.tk.deletefilehandler(file)" msgstr "" -#: ../../library/tkinter.rst:6359 msgid "This feature is not available on Windows." msgstr "" -#: ../../library/tkinter.rst:6361 -msgid "" -"Since you don't know how many bytes are available for reading, you may not " -"want to use the :class:`~io.BufferedIOBase` " -"or :class:`~io.TextIOBase` :meth:`~io.BufferedIOBase.read` " -"or :meth:`~io.IOBase.readline` methods, since these will insist on reading a " -"predefined number of bytes. For sockets, the :meth:`~socket.socket.recv` " -"or :meth:`~socket.socket.recvfrom` methods will work fine; for other files, " -"use raw reads or ``os.read(file.fileno(), maxbytecount)``." +msgid "Since you don't know how many bytes are available for reading, you may not want to use the :class:`~io.BufferedIOBase` or :class:`~io.TextIOBase` :meth:`~io.BufferedIOBase.read` or :meth:`~io.IOBase.readline` methods, since these will insist on reading a predefined number of bytes. For sockets, the :meth:`~socket.socket.recv` or :meth:`~socket.socket.recvfrom` methods will work fine; for other files, use raw reads or ``os.read(file.fileno(), maxbytecount)``." msgstr "" -#: ../../library/tkinter.rst:6372 -msgid "" -"Registers the file handler callback function *func*. The *file* argument may " -"either be an object with a :meth:`~io.IOBase.fileno` method (such as a file " -"or socket object), or an integer file descriptor. The *mask* argument is an " -"ORed combination of any of the three constants below. The callback is called " -"as follows::" +msgid "Registers the file handler callback function *func*. The *file* argument may either be an object with a :meth:`~io.IOBase.fileno` method (such as a file or socket object), or an integer file descriptor. The *mask* argument is an ORed combination of any of the three constants below. The callback is called as follows::" msgstr "" -#: ../../library/tkinter.rst:6378 msgid "callback(file, mask)" msgstr "" -#: ../../library/tkinter.rst:6383 msgid "Unregisters a file handler." msgstr "" -#: ../../library/tkinter.rst:6390 msgid "Constants used in the *mask* arguments." msgstr "" -#: ../../library/tkinter.rst:6394 msgid "Constants" msgstr "" -#: ../../library/tkinter.rst:6396 -msgid "" -"The following symbolic constants are available in both the :mod:`!tkinter` " -"and :mod:`!tkinter.constants` namespaces." +msgid "The following symbolic constants are available in both the :mod:`!tkinter` and :mod:`!tkinter.constants` namespaces." msgstr "" -#: ../../library/tkinter.rst:6403 msgid "Truthy values, all equal to the integer ``1``." msgstr "" -#: ../../library/tkinter.rst:6409 msgid "Falsy values, all equal to the integer ``0``." msgstr "" -#: ../../library/tkinter.rst:6424 -msgid "" -"Compass directions (``'n'``, ``'s'``, ``'e'``, ``'w'`` and the diagonals and " -"edges) plus ``CENTER`` (``'center'``), used as values for the *anchor* and " -"*sticky* options and by methods such as :meth:`Misc.grid_anchor`." +msgid "Compass directions (``'n'``, ``'s'``, ``'e'``, ``'w'`` and the diagonals and edges) plus ``CENTER`` (``'center'``), used as values for the *anchor* and *sticky* options and by methods such as :meth:`Misc.grid_anchor`." msgstr "" -#: ../../library/tkinter.rst:6433 -msgid "" -"Sides for the *side* option of the packer (see :meth:`Pack.pack_configure`)." +msgid "Sides for the *side* option of the packer (see :meth:`Pack.pack_configure`)." msgstr "" -#: ../../library/tkinter.rst:6440 -msgid "" -"Values for the *fill* option of the packer: ``'x'``, ``'y'``, ``'both'`` or " -"``'none'``." +msgid "Values for the *fill* option of the packer: ``'x'``, ``'y'``, ``'both'`` or ``'none'``." msgstr "" -#: ../../library/tkinter.rst:6450 msgid "Values for the *relief* option, which controls a widget's 3-D border." msgstr "" -#: ../../library/tkinter.rst:6455 -msgid "" -"Values for the *orient* option of widgets such " -"as :class:`Scale`, :class:`Scrollbar` and :class:`PanedWindow`." +msgid "Values for the *orient* option of widgets such as :class:`Scale`, :class:`Scrollbar` and :class:`PanedWindow`." msgstr "" -#: ../../library/tkinter.rst:6461 -msgid "" -"Values for the *wrap* option of the :class:`Text` widget, selecting line " -"wrapping on character or word boundaries." +msgid "Values for the *wrap* option of the :class:`Text` widget, selecting line wrapping on character or word boundaries." msgstr "" -#: ../../library/tkinter.rst:6466 msgid "The text-alignment value ``'baseline'``." msgstr "" -#: ../../library/tkinter.rst:6471 -msgid "" -"Values for the *bordermode* option of the placer " -"(see :meth:`Place.place_configure`)." +msgid "Values for the *bordermode* option of the placer (see :meth:`Place.place_configure`)." msgstr "" -#: ../../library/tkinter.rst:6482 -msgid "" -"Symbolic indices used by the :class:`Text`, :class:`Entry`, :class:`Listbox` " -"and :class:`Canvas` widgets, such as ``'insert'`` (the insertion cursor), " -"``'current'``, ``'end'``, ``'anchor'`` and the bounds of the selection " -"(``'sel.first'`` and ``'sel.last'``)." +msgid "Symbolic indices used by the :class:`Text`, :class:`Entry`, :class:`Listbox` and :class:`Canvas` widgets, such as ``'insert'`` (the insertion cursor), ``'current'``, ``'end'``, ``'anchor'`` and the bounds of the selection (``'sel.first'`` and ``'sel.last'``)." msgstr "" -#: ../../library/tkinter.rst:6489 -msgid "" -"The special tag ``'all'``, which matches every item of a :class:`Canvas` or " -"every character of a :class:`Text` (for example ``canvas.delete(ALL)``)." +msgid "The special tag ``'all'``, which matches every item of a :class:`Canvas` or every character of a :class:`Text` (for example ``canvas.delete(ALL)``)." msgstr "" -#: ../../library/tkinter.rst:6497 msgid "Values for the *state* option of various widgets and items." msgstr "" -#: ../../library/tkinter.rst:6505 -msgid "" -"Menu entry types, used as the *itemType* argument of :meth:`Menu.add` " -"and :meth:`Menu.insert`." +msgid "Menu entry types, used as the *itemType* argument of :meth:`Menu.add` and :meth:`Menu.insert`." msgstr "" -#: ../../library/tkinter.rst:6513 msgid "Values for the *selectmode* option of the :class:`Listbox` widget." msgstr "" -#: ../../library/tkinter.rst:6519 msgid "Values for the *style* option of :class:`Canvas` arc items." msgstr "" -#: ../../library/tkinter.rst:6527 -msgid "" -"Values for the *capstyle* (``'butt'``, ``'projecting'``, ``'round'``) and " -"*joinstyle* (``'round'``, ``'bevel'``, ``'miter'``) options " -"of :class:`Canvas` line items." +msgid "Values for the *capstyle* (``'butt'``, ``'projecting'``, ``'round'``) and *joinstyle* (``'round'``, ``'bevel'``, ``'miter'``) options of :class:`Canvas` line items." msgstr "" -#: ../../library/tkinter.rst:6534 -msgid "" -"Values for the *arrow* option of :class:`Canvas` line items, indicating " -"which ends have arrowheads." +msgid "Values for the *arrow* option of :class:`Canvas` line items, indicating which ends have arrowheads." msgstr "" -#: ../../library/tkinter.rst:6540 -msgid "" -"The first argument passed by a :class:`Scrollbar` to the :meth:`XView.xview` " -"or :meth:`YView.yview` method of the scrolled widget." +msgid "The first argument passed by a :class:`Scrollbar` to the :meth:`XView.xview` or :meth:`YView.yview` method of the scrolled widget." msgstr "" -#: ../../library/tkinter.rst:6546 -msgid "" -"Values for the *what* argument of :meth:`XView.xview_scroll` " -"and :meth:`YView.yview_scroll`." +msgid "Values for the *what* argument of :meth:`XView.xview_scroll` and :meth:`YView.yview_scroll`." msgstr "" -#: ../../library/tkinter.rst:6553 msgid "Other option values: ``'underline'``, ``'numeric'`` and ``'dotbox'``." msgstr "" -#: ../../library/tkinter.rst:591 msgid "geometry management (widgets)" msgstr "" -#: ../../library/tkinter.rst:591 msgid "packing (widgets)" msgstr "" -#: ../../library/tkinter.rst:730 msgid "window manager (widgets)" msgstr "" -#: ../../library/tkinter.rst:768 msgid "Tk Option Data Types" msgstr "" -#: ../../library/tkinter.rst:857 msgid "bind (widgets)" msgstr "" -#: ../../library/tkinter.rst:857 msgid "events (widgets)" msgstr "" diff --git a/library/tkinter.scrolledtext.po b/library/tkinter.scrolledtext.po index 98dd8502..0e63983b 100644 --- a/library/tkinter.scrolledtext.po +++ b/library/tkinter.scrolledtext.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:15+0000\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" "Language: fa\n" @@ -21,43 +21,23 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/tkinter.scrolledtext.rst:2 msgid ":mod:`!tkinter.scrolledtext` --- Scrolled text widget" msgstr "" -#: ../../library/tkinter.scrolledtext.rst:9 msgid "**Source code:** :source:`Lib/tkinter/scrolledtext.py`" msgstr "" -#: ../../library/tkinter.scrolledtext.rst:13 -msgid "" -"The :mod:`!tkinter.scrolledtext` module provides a class of the same name " -"which implements a basic text widget which has a vertical scroll bar " -"configured to do the \"right thing.\" Using the :class:`ScrolledText` class " -"is a lot easier than setting up a text widget and scroll bar directly." +msgid "The :mod:`!tkinter.scrolledtext` module provides a class of the same name which implements a basic text widget which has a vertical scroll bar configured to do the \"right thing.\" Using the :class:`ScrolledText` class is a lot easier than setting up a text widget and scroll bar directly." msgstr "" -#: ../../library/tkinter.scrolledtext.rst:18 -msgid "" -"The text widget and scrollbar are packed together in " -"a :class:`~tkinter.Frame`, and the methods of " -"the :class:`~tkinter.Pack`, :class:`~tkinter.Grid` " -"and :class:`~tkinter.Place` geometry managers are acquired from " -"the :class:`~tkinter.Frame` object. This allows the :class:`ScrolledText` " -"widget to be used directly to achieve most normal geometry management " -"behavior." +msgid "The text widget and scrollbar are packed together in a :class:`~tkinter.Frame`, and the methods of the :class:`~tkinter.Pack`, :class:`~tkinter.Grid` and :class:`~tkinter.Place` geometry managers are acquired from the :class:`~tkinter.Frame` object. This allows the :class:`ScrolledText` widget to be used directly to achieve most normal geometry management behavior." msgstr "" -#: ../../library/tkinter.scrolledtext.rst:25 -msgid "" -"Should more specific control be necessary, the following attributes are " -"available:" +msgid "Should more specific control be necessary, the following attributes are available:" msgstr "" -#: ../../library/tkinter.scrolledtext.rst:33 msgid "The frame which surrounds the text and scroll bar widgets." msgstr "" -#: ../../library/tkinter.scrolledtext.rst:38 msgid "The scroll bar widget." msgstr "" diff --git a/library/tkinter.ttk.po b/library/tkinter.ttk.po index 13701f47..1956dbbf 100644 --- a/library/tkinter.ttk.po +++ b/library/tkinter.ttk.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-08-25 20:39+0330\n" +"POT-Creation-Date: 2026-08-26 03:59+0000\n" "PO-Revision-Date: 2021-06-28 01:15+0000\n" "Last-Translator: Sepehr Rasouli , 2026\n" "Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" @@ -24,130 +24,73 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../library/tkinter.ttk.rst:2 msgid ":mod:`!tkinter.ttk` --- Tk themed widgets" msgstr "" -#: ../../library/tkinter.ttk.rst:9 msgid "**Source code:** :source:`Lib/tkinter/ttk.py`" msgstr "" -#: ../../library/tkinter.ttk.rst:15 -msgid "" -"The :mod:`!tkinter.ttk` module provides access to the Tk themed widget set, " -"introduced in Tk 8.5. Its widgets adapt their appearance to the platform's " -"native theme, giving an application a better and more consistent look and " -"feel than the classic :mod:`tkinter` widgets, whose appearance is fixed." +msgid "The :mod:`!tkinter.ttk` module provides access to the Tk themed widget set, introduced in Tk 8.5. Its widgets adapt their appearance to the platform's native theme, giving an application a better and more consistent look and feel than the classic :mod:`tkinter` widgets, whose appearance is fixed." msgstr "" -#: ../../library/tkinter.ttk.rst:21 -msgid "" -"The basic idea for :mod:`!tkinter.ttk` is to separate, to the extent " -"possible, the code implementing a widget's behavior from the code " -"implementing its appearance." +msgid "The basic idea for :mod:`!tkinter.ttk` is to separate, to the extent possible, the code implementing a widget's behavior from the code implementing its appearance." msgstr "" -#: ../../library/tkinter.ttk.rst:25 -msgid "" -"Ttk widgets are used just like the classic :mod:`tkinter` widgets and share " -"the same machinery: the widget hierarchy, the geometry managers, variable " -"coupling and event binding. Those foundational concepts are covered in " -"the :mod:`tkinter` documentation and are not repeated here." +msgid "Ttk widgets are used just like the classic :mod:`tkinter` widgets and share the same machinery: the widget hierarchy, the geometry managers, variable coupling and event binding. Those foundational concepts are covered in the :mod:`tkinter` documentation and are not repeated here." msgstr "" -#: ../../library/tkinter.ttk.rst:36 -msgid "" -"`Tk Widget Styling Support (TIP #48) `_" +msgid "`Tk Widget Styling Support (TIP #48) `_" msgstr "" -#: ../../library/tkinter.ttk.rst:37 -msgid "" -"The Tcl Improvement Proposal that introduced the themed widget styling " -"engine." +msgid "The Tcl Improvement Proposal that introduced the themed widget styling engine." msgstr "" -#: ../../library/tkinter.ttk.rst:41 msgid "Using Ttk" msgstr "" -#: ../../library/tkinter.ttk.rst:43 msgid "To start using Ttk, import its module::" msgstr "" -#: ../../library/tkinter.ttk.rst:45 msgid "from tkinter import ttk" msgstr "" -#: ../../library/tkinter.ttk.rst:47 -msgid "" -"To override the basic Tk widgets, the import should follow the Tk import::" +msgid "To override the basic Tk widgets, the import should follow the Tk import::" msgstr "" -#: ../../library/tkinter.ttk.rst:49 msgid "" "from tkinter import *\n" "from tkinter.ttk import *" msgstr "" -#: ../../library/tkinter.ttk.rst:52 -msgid "" -"That code causes several :mod:`!tkinter.ttk` widgets " -"(:class:`Button`, :class:`Checkbutton`, :class:`Entry`, :class:`Frame`, :class:`Label`, :class:`LabelFrame`, :class:`Menubutton`, :class:`OptionMenu`, :class:`PanedWindow`, :class:`Radiobutton`, :class:`Scale`, :class:`Scrollbar` " -"and :class:`Spinbox`) to automatically replace the Tk widgets." +msgid "That code causes several :mod:`!tkinter.ttk` widgets (:class:`Button`, :class:`Checkbutton`, :class:`Entry`, :class:`Frame`, :class:`Label`, :class:`LabelFrame`, :class:`Menubutton`, :class:`OptionMenu`, :class:`PanedWindow`, :class:`Radiobutton`, :class:`Scale`, :class:`Scrollbar` and :class:`Spinbox`) to automatically replace the Tk widgets." msgstr "" -#: ../../library/tkinter.ttk.rst:61 -msgid "" -"Overriding the classic widgets with ``from tkinter.ttk import *`` is " -"convenient for adapting existing code, but new code is usually clearer if it " -"imports the module as ``from tkinter import ttk`` and refers to the themed " -"widgets explicitly, such as ``ttk.Button``." +msgid "Overriding the classic widgets with ``from tkinter.ttk import *`` is convenient for adapting existing code, but new code is usually clearer if it imports the module as ``from tkinter import ttk`` and refers to the themed widgets explicitly, such as ``ttk.Button``." msgstr "" -#: ../../library/tkinter.ttk.rst:67 -msgid "" -"This has the direct benefit of using the new widgets which gives a better " -"look and feel across platforms; however, the replacement widgets are not " -"completely compatible. The main difference is that widget options such as " -"``fg``, ``bg`` and others related to widget styling are no longer present in " -"Ttk widgets. Instead, use the :class:`ttk.Style